diff --git a/.plastic/plastic.changes b/.plastic/plastic.changes new file mode 100644 index 0000000..42334f5 Binary files /dev/null and b/.plastic/plastic.changes differ diff --git a/.plastic/plastic.selector b/.plastic/plastic.selector new file mode 100644 index 0000000..dfa7f94 --- /dev/null +++ b/.plastic/plastic.selector @@ -0,0 +1,4 @@ +repository "Interface Minimale 2025-10-26_23-16-10/Interface Minimale@1375855504218@cloud" + path "/" + br "/main" + co "/main" diff --git a/.plastic/plastic.wktree b/.plastic/plastic.wktree new file mode 100644 index 0000000..c854f10 Binary files /dev/null and b/.plastic/plastic.wktree differ diff --git a/.plastic/plastic.workspace b/.plastic/plastic.workspace new file mode 100644 index 0000000..d9fac30 --- /dev/null +++ b/.plastic/plastic.workspace @@ -0,0 +1,2 @@ +Interface Minimale 2025-10-26_23-16-10-Interface Minimale_2 +6144cda6-b7d6-4cc5-a619-8b5a38fc154b diff --git a/.vsconfig b/.vsconfig new file mode 100644 index 0000000..f019fd0 --- /dev/null +++ b/.vsconfig @@ -0,0 +1,6 @@ +{ + "version": "1.0", + "components": [ + "Microsoft.VisualStudio.Workload.ManagedGame" + ] +} diff --git a/Assets/Audio.meta b/Assets/Audio.meta new file mode 100644 index 0000000..6e84f38 --- /dev/null +++ b/Assets/Audio.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 962d479610e064a4d94df8ef2954127f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Audio/Salut j'espère que tu vas vien.wav b/Assets/Audio/Salut j'espère que tu vas vien.wav new file mode 100644 index 0000000..c497340 Binary files /dev/null and b/Assets/Audio/Salut j'espère que tu vas vien.wav differ diff --git a/Assets/Audio/Salut j'espère que tu vas vien.wav.meta b/Assets/Audio/Salut j'espère que tu vas vien.wav.meta new file mode 100644 index 0000000..36dc0bd --- /dev/null +++ b/Assets/Audio/Salut j'espère que tu vas vien.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 3cad417272bfe7a4689c562342c0978e +AudioImporter: + externalObjects: {} + serializedVersion: 8 + defaultSettings: + serializedVersion: 2 + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + preloadAudioData: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor.meta b/Assets/Editor.meta new file mode 100644 index 0000000..662b067 --- /dev/null +++ b/Assets/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e29c7d308ab4cbe4eaf43aa9c6549a52 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor/IPPreprocessing.cs b/Assets/Editor/IPPreprocessing.cs new file mode 100644 index 0000000..38c19b8 --- /dev/null +++ b/Assets/Editor/IPPreprocessing.cs @@ -0,0 +1,58 @@ +using System.IO; +using System.Net.NetworkInformation; +using System.Net.Sockets; +using UnityEditor.Build; +using UnityEditor.Build.Reporting; +using UnityEngine; +using System.Linq; + +/*Ce script permet d'injecter l'adresse IP du PC au casque (ce qui permet terme de se connecter au serveur du PC s'il est disponible depuis le casque.*/ +public class IPPreprocessing : IPreprocessBuildWithReport +{ + public int callbackOrder => 0; + + public void OnPreprocessBuild(BuildReport report) + { + string ip = GetLocalIPv4() ?? "127.0.0.1"; + string code = $@" +public static class BuildConstants +{{ + public const string LocalIP = ""{ip}""; +}}"; + File.WriteAllText("Assets/Scripts/BuildConstants.cs", code); + Debug.Log($"[BuildPreprocessor] Adresse IP injecte dans BuildConstants.cs : {ip}"); + } + private string GetLocalIPv4() + { + // Parcourir toutes les interfaces rseau du systme + foreach (NetworkInterface ni in NetworkInterface.GetAllNetworkInterfaces()) + { + // 1. Filtrer les interfaces non oprationnelles ou non physiques + if (ni.OperationalStatus != OperationalStatus.Up || + (ni.NetworkInterfaceType != NetworkInterfaceType.Wireless80211 && // Wi-Fi + ni.NetworkInterfaceType != NetworkInterfaceType.Ethernet)) // Ethernet + { + continue; + } + + // 2. Trouver l'information IP + IPInterfaceProperties ipProps = ni.GetIPProperties(); + + // 3. Parcourir les adresses IP lies cette interface + foreach (UnicastIPAddressInformation ip in ipProps.UnicastAddresses) + { + // 4. Filtrer pour obtenir uniquement une IPv4 publique (non-boucle locale) + if (ip.Address.AddressFamily == AddressFamily.InterNetwork && + !System.Net.IPAddress.IsLoopback(ip.Address)) + { + // Optionnel mais recommand : Assurez-vous qu'il y a une passerelle (Gateway) + if (ipProps.GatewayAddresses.Any()) + { + return ip.Address.ToString(); + } + } + } + } + return null; + } +} diff --git a/Assets/Editor/IPPreprocessing.cs.meta b/Assets/Editor/IPPreprocessing.cs.meta new file mode 100644 index 0000000..758ffdb --- /dev/null +++ b/Assets/Editor/IPPreprocessing.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: ed3ef2b26df5dbc4ba1ed3c7c35f21d5 \ No newline at end of file diff --git a/Assets/Images.meta b/Assets/Images.meta new file mode 100644 index 0000000..e038448 --- /dev/null +++ b/Assets/Images.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a80212a7193358e48a280b4766cdb4be +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Images/Shaders.meta b/Assets/Images/Shaders.meta new file mode 100644 index 0000000..4a012c0 --- /dev/null +++ b/Assets/Images/Shaders.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c71f37d0280f9e24cb1028bf5f5a4318 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Images/Shaders/TriangleMask.shadergraph b/Assets/Images/Shaders/TriangleMask.shadergraph new file mode 100644 index 0000000..b8437ca --- /dev/null +++ b/Assets/Images/Shaders/TriangleMask.shadergraph @@ -0,0 +1,1240 @@ +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.GraphData", + "m_ObjectId": "109005af3c6a412581188faa2adaaea1", + "m_Properties": [ + { + "m_Id": "fa424e386f0c43b49808bc5ba492f68e" + } + ], + "m_Keywords": [], + "m_Dropdowns": [], + "m_CategoryData": [ + { + "m_Id": "1eeeaa4f905f401dacc841851b6d4409" + } + ], + "m_Nodes": [ + { + "m_Id": "f68e8c6b499d44a585eab5bfd6a88ea5" + }, + { + "m_Id": "459e5488c5e84e7a8e86b3babd4897fc" + }, + { + "m_Id": "fbe5e53bacf246d9872bfab7540578a6" + }, + { + "m_Id": "369edd89ab404d418e17ffc97e911a67" + }, + { + "m_Id": "3045ff7df69b4983a7931862cfbb3a69" + }, + { + "m_Id": "335f86bffdde46e1902a1271e9731b31" + }, + { + "m_Id": "86aa4b387dd44835b75d776bf3cdc8f1" + }, + { + "m_Id": "6d43e4e119dd418f89df14b6b3be0850" + }, + { + "m_Id": "d6d8ba099d534492b9f8851ec4f59cdc" + }, + { + "m_Id": "cf4e95177fcc4bf086edb36f4b5423ce" + }, + { + "m_Id": "2d0ee978e88b4b289e0c23bf566bf89f" + } + ], + "m_GroupDatas": [], + "m_StickyNoteDatas": [], + "m_Edges": [ + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2d0ee978e88b4b289e0c23bf566bf89f" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3045ff7df69b4983a7931862cfbb3a69" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "335f86bffdde46e1902a1271e9731b31" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "86aa4b387dd44835b75d776bf3cdc8f1" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6d43e4e119dd418f89df14b6b3be0850" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2d0ee978e88b4b289e0c23bf566bf89f" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "86aa4b387dd44835b75d776bf3cdc8f1" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6d43e4e119dd418f89df14b6b3be0850" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "86aa4b387dd44835b75d776bf3cdc8f1" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6d43e4e119dd418f89df14b6b3be0850" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "cf4e95177fcc4bf086edb36f4b5423ce" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2d0ee978e88b4b289e0c23bf566bf89f" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d6d8ba099d534492b9f8851ec4f59cdc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "369edd89ab404d418e17ffc97e911a67" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d6d8ba099d534492b9f8851ec4f59cdc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cf4e95177fcc4bf086edb36f4b5423ce" + }, + "m_SlotId": 0 + } + } + ], + "m_VertexContext": { + "m_Position": { + "x": -36.80003356933594, + "y": -305.6000061035156 + }, + "m_Blocks": [ + { + "m_Id": "f68e8c6b499d44a585eab5bfd6a88ea5" + }, + { + "m_Id": "459e5488c5e84e7a8e86b3babd4897fc" + }, + { + "m_Id": "fbe5e53bacf246d9872bfab7540578a6" + } + ] + }, + "m_FragmentContext": { + "m_Position": { + "x": -161.6000213623047, + "y": -3.1999824047088625 + }, + "m_Blocks": [ + { + "m_Id": "369edd89ab404d418e17ffc97e911a67" + }, + { + "m_Id": "3045ff7df69b4983a7931862cfbb3a69" + } + ] + }, + "m_PreviewData": { + "serializedMesh": { + "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "preventRotation": false + }, + "m_Path": "Shader Graphs", + "m_GraphPrecision": 1, + "m_PreviewMode": 2, + "m_OutputNode": { + "m_Id": "" + }, + "m_SubDatas": [], + "m_ActiveTargets": [ + { + "m_Id": "e6bde374f373425387d105d31205525a" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0af2010c29f74f02809bcea4e4d68bc4", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0b788afdf9cf4e01b31c210fa934fa2e", + "m_Id": 0, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 2, + "m_Value": 1.0, + "m_DefaultValue": 1.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "13419405b8584f3c8c95e0ecb5ea3fe7", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1c3822f074324dca81ac635b90cb5414", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "1eeeaa4f905f401dacc841851b6d4409", + "m_Name": "", + "m_ChildObjectList": [ + { + "m_Id": "fa424e386f0c43b49808bc5ba492f68e" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "26e013dc562d4b52a0486df083c8d716", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "2d0ee978e88b4b289e0c23bf566bf89f", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -386.3998718261719, + "y": -288.0, + "width": 207.99993896484376, + "height": 301.6000061035156 + } + }, + "m_Slots": [ + { + "m_Id": "4fec290a6466483e8267286cd13bbfd6" + }, + { + "m_Id": "1c3822f074324dca81ac635b90cb5414" + }, + { + "m_Id": "808d3e9915494b1cb3a6ac017a21dc2f" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", + "m_ObjectId": "2db271c048964eb4b1865c07dcc47b53", + "m_Id": 0, + "m_DisplayName": "Position", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Position", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "3045ff7df69b4983a7931862cfbb3a69", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Alpha", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "0b788afdf9cf4e01b31c210fa934fa2e" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Alpha" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "32fdfafb0cb34e43b753495f787fd199", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "335f86bffdde46e1902a1271e9731b31", + "m_Group": { + "m_Id": "" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1127.2000732421875, + "y": -75.19998168945313, + "width": 208.00006103515626, + "height": 310.3999938964844 + } + }, + "m_Slots": [ + { + "m_Id": "7b43a5bdbc3849ad83ed9bf18211bcaf" + } + ], + "synonyms": [ + "texcoords", + "coords", + "coordinates" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 2, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget", + "m_ObjectId": "34270c4c34084d8eb0c092d4024dd689" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "369edd89ab404d418e17ffc97e911a67", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BaseColor", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "dee10fbbb1414b0993f80bde7fe5df7c" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BaseColor" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3c8d3edc13924eddb236b6a170563774", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "459e5488c5e84e7a8e86b3babd4897fc", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Normal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "ccfd9a537b6240e7852f7acab298361b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Normal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "4fec290a6466483e8267286cd13bbfd6", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "514ec83ea1ce48e9876af5219cef0c91", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "6ab19cf5db5948d38242405e8fa85879", + "m_Id": 0, + "m_DisplayName": "Couleur Flèche", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ComparisonNode", + "m_ObjectId": "6d43e4e119dd418f89df14b6b3be0850", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Comparison", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -564.7999267578125, + "y": -288.0, + "width": 145.60003662109376, + "height": 133.6000213623047 + } + }, + "m_Slots": [ + { + "m_Id": "bbcc83f1604a403b8ff7130fb4d3d035" + }, + { + "m_Id": "e80f9e366fb148db98ac820b854523f1" + }, + { + "m_Id": "a4d52359f6e74dbfa51b2395032758f3" + } + ], + "synonyms": [ + "equal", + "greater than", + "less than" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_ComparisonType": 5 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "7b43a5bdbc3849ad83ed9bf18211bcaf", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "808d3e9915494b1cb3a6ac017a21dc2f", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "83f995edf05c455f9b75c85dd37d02b0", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "86aa4b387dd44835b75d776bf3cdc8f1", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -892.0, + "y": -284.7999572753906, + "width": 119.2000732421875, + "height": 148.79998779296876 + } + }, + "m_Slots": [ + { + "m_Id": "e141f045ac55405ebd1ea1bbe03eccc8" + }, + { + "m_Id": "3c8d3edc13924eddb236b6a170563774" + }, + { + "m_Id": "32fdfafb0cb34e43b753495f787fd199" + }, + { + "m_Id": "83f995edf05c455f9b75c85dd37d02b0" + }, + { + "m_Id": "13419405b8584f3c8c95e0ecb5ea3fe7" + } + ], + "synonyms": [ + "separate" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "a4d52359f6e74dbfa51b2395032758f3", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "bbcc83f1604a403b8ff7130fb4d3d035", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c1993ecf8bb14a389b252cb7e481adbb", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c2325a89785b4649881a905543a974c1", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "ccfd9a537b6240e7852f7acab298361b", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "cf4e95177fcc4bf086edb36f4b5423ce", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -532.7999267578125, + "y": -130.39996337890626, + "width": 119.20004272460938, + "height": 148.7999725341797 + } + }, + "m_Slots": [ + { + "m_Id": "26e013dc562d4b52a0486df083c8d716" + }, + { + "m_Id": "c2325a89785b4649881a905543a974c1" + }, + { + "m_Id": "0af2010c29f74f02809bcea4e4d68bc4" + }, + { + "m_Id": "c1993ecf8bb14a389b252cb7e481adbb" + }, + { + "m_Id": "514ec83ea1ce48e9876af5219cef0c91" + } + ], + "synonyms": [ + "separate" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "d6d8ba099d534492b9f8851ec4f59cdc", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -703.9999389648438, + "y": 37.60000228881836, + "width": 156.0, + "height": 33.5999870300293 + } + }, + "m_Slots": [ + { + "m_Id": "6ab19cf5db5948d38242405e8fa85879" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "fa424e386f0c43b49808bc5ba492f68e" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "dee10fbbb1414b0993f80bde7fe5df7c", + "m_Id": 0, + "m_DisplayName": "Base Color", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BaseColor", + "m_StageCapability": 2, + "m_Value": { + "x": 0.5, + "y": 0.5, + "z": 0.5 + }, + "m_DefaultValue": { + "x": 0.5, + "y": 0.5, + "z": 0.5 + }, + "m_Labels": [], + "m_ColorMode": 0, + "m_DefaultColor": { + "r": 0.5, + "g": 0.5, + "b": 0.5, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "e141f045ac55405ebd1ea1bbe03eccc8", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget", + "m_ObjectId": "e6bde374f373425387d105d31205525a", + "m_Datas": [], + "m_ActiveSubTarget": { + "m_Id": "34270c4c34084d8eb0c092d4024dd689" + }, + "m_AllowMaterialOverride": false, + "m_SurfaceType": 1, + "m_ZTestMode": 4, + "m_ZWriteControl": 0, + "m_AlphaMode": 0, + "m_RenderFace": 2, + "m_AlphaClip": false, + "m_CastShadows": true, + "m_ReceiveShadows": true, + "m_DisableTint": false, + "m_AdditionalMotionVectorMode": 0, + "m_AlembicMotionVectors": false, + "m_SupportsLODCrossFade": false, + "m_CustomEditorGUI": "", + "m_SupportVFX": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e80f9e366fb148db98ac820b854523f1", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot", + "m_ObjectId": "ee25b7cc00a142b1a1f2d3384272fad4", + "m_Id": 0, + "m_DisplayName": "Tangent", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tangent", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "f68e8c6b499d44a585eab5bfd6a88ea5", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "2db271c048964eb4b1865c07dcc47b53" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Position" +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "fa424e386f0c43b49808bc5ba492f68e", + "m_Guid": { + "m_GuidSerialized": "839533b5-6647-4d86-bfc9-f3d1b2d6883a" + }, + "m_Name": "Couleur Flèche", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Couleur Flèche", + "m_DefaultReferenceName": "_Couleur_Fl_che", + "m_OverrideReferenceName": "_Color", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 0.9716981053352356, + "b": 0.9716981053352356, + "a": 0.21176470816135407 + }, + "isMainColor": false, + "m_ColorMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "fbe5e53bacf246d9872bfab7540578a6", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Tangent", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "ee25b7cc00a142b1a1f2d3384272fad4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Tangent" +} + diff --git a/Assets/Images/Shaders/TriangleMask.shadergraph.meta b/Assets/Images/Shaders/TriangleMask.shadergraph.meta new file mode 100644 index 0000000..1472fbb --- /dev/null +++ b/Assets/Images/Shaders/TriangleMask.shadergraph.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ab249bb4f6c5bad41afde3165b0f98b9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} diff --git a/Assets/Images/Shaders/UI_MasqueBulle.shader b/Assets/Images/Shaders/UI_MasqueBulle.shader new file mode 100644 index 0000000..1c13451 --- /dev/null +++ b/Assets/Images/Shaders/UI_MasqueBulle.shader @@ -0,0 +1,117 @@ +Shader "Custom/UI_Masque" +{ + Properties + { + _MainTex ("Sprite Texture", 2D) = "white" {} + _Color ("Tint", Color) = (1,1,1,1) + + // Proprits requises pour l'UI Unity + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + _ColorMask ("Color Mask", Float) = 15 + } + + SubShader + { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + "PreviewType"="Plane" + "CanUseSpriteAtlas"="True" + "ForceStereoDrawCall"="True" + } + + // C'est ici qu'on force l'criture dans le Pochoir (Stencil) + Stencil + { + Ref 1 // On crit le chiffre 1 + Comp Always // Toujours (peu importe ce qu'il y avait avant) + Pass Replace // On remplace la valeur existante par 1 + } + + Cull Off + Lighting Off + ZWrite Off + ZTest [unity_GUIZTestMode] + Blend SrcAlpha OneMinusSrcAlpha + + // MAGIE : ColorMask 0 empche le dessin des couleurs (Rend l'objet invisible) + ColorMask 0 + + Pass + { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "UnityShaderVariables.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + float4 color : COLOR; + float2 texcoord : TEXCOORD0; + UNITY_VERTEX_INPUT_INSTANCE_ID + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + float2 texcoord : TEXCOORD0; + float4 worldPosition : TEXCOORD1; + UNITY_VERTEX_OUTPUT_STEREO + }; + + sampler2D _MainTex; + fixed4 _Color; + float4 _MainTex_ST; + fixed4 _TextureSampleAdd; + + v2f vert(appdata_t v) + { + v2f o; + + UNITY_SETUP_INSTANCE_ID(v); + o.worldPosition = v.vertex; + o.vertex = UnityObjectToClipPos(o.worldPosition); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(o); + + o.texcoord = TRANSFORM_TEX(v.texcoord, _MainTex); + o.color = v.color * _Color; + return o; + } + + fixed4 frag(v2f i) : SV_Target + { + // On lit la texture (le sprite flou) + half4 color = (tex2D(_MainTex, i.texcoord) + _TextureSampleAdd) * i.color; + + // Ancien code : Dtecte le bord et lisse la coupure avec une largeur dynamique. + // float alphaWidth = fwidth(color.a) * 0.5; + + // NOUVEAU CODE : Rayon de flou plus grand pour le smoothstep. + // Nous dfinissons une largeur de lissage fixe et lgrement plus grande (0.001) + // pour garantir la prsence du lissage. + float alphaWidth = fwidth(color.a) * 3.0; // Multiplier fwidth par 1.5 ou 2.0 + if (alphaWidth < 0.001) alphaWidth = 0.001; // S'assurer qu'il y a toujours un minimum de flou + + // Utilise smoothstep pour lisser la coupure alpha + float smoothedAlpha = smoothstep(0.0, alphaWidth, color.a); + + // Coupure finale pour le Stencil (on ne veut pas crire dans le pochoir si c'est transparent) + // On utilise la valeur lisse. + clip (smoothedAlpha - 0.01); + + return color; // ColorMask 0 empche le dessin de la couleur + } + ENDCG + } + } +} \ No newline at end of file diff --git a/Assets/Images/Shaders/UI_MasqueBulle.shader.meta b/Assets/Images/Shaders/UI_MasqueBulle.shader.meta new file mode 100644 index 0000000..41ba551 --- /dev/null +++ b/Assets/Images/Shaders/UI_MasqueBulle.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: ca8928164d5f11042802759025fe69a7 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Images/Shaders/UI_PeintureBulle.shader b/Assets/Images/Shaders/UI_PeintureBulle.shader new file mode 100644 index 0000000..752d30b --- /dev/null +++ b/Assets/Images/Shaders/UI_PeintureBulle.shader @@ -0,0 +1,94 @@ +Shader "Custom/UI_Peinture" +{ + Properties + { + _MainTex ("Sprite Texture", 2D) = "white" {} + _Color ("Tint", Color) = (1,1,1,1) // Rglez votre Alpha (54/255) ici dans le matriau + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + _ColorMask ("Color Mask", Float) = 15 + } + + SubShader + { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + "PreviewType"="Plane" + "CanUseSpriteAtlas"="True" + "ForceStereoDrawCall"="True" + } + + // C'est ici qu'on vrifie le Pochoir + Stencil + { + Ref 1 // On cherche le chiffre 1 + Comp Equal // On dessine SEULEMENT si la valeur est gale 1 + } + + Cull Off + Lighting Off + ZWrite Off + ZTest [unity_GUIZTestMode] + Blend SrcAlpha OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass + { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "UnityShaderVariables.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + float4 color : COLOR; + float2 texcoord : TEXCOORD0; + UNITY_VERTEX_INPUT_INSTANCE_ID + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + float2 texcoord : TEXCOORD0; + float4 worldPosition : TEXCOORD1; + UNITY_VERTEX_OUTPUT_STEREO + }; + + fixed4 _Color; + + v2f vert(appdata_t v) + { + v2f o; + UNITY_SETUP_INSTANCE_ID(v); + + o.worldPosition = v.vertex; + o.vertex = UnityObjectToClipPos(o.worldPosition); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(o); + + o.texcoord = v.texcoord; + + o.color = _Color; + + return o; + } + + fixed4 frag(v2f i) : SV_Target + { + // On renvoie la couleur passe par le vertex shader + return i.color; + } + ENDCG + } + } +} \ No newline at end of file diff --git a/Assets/Images/Shaders/UI_PeintureBulle.shader.meta b/Assets/Images/Shaders/UI_PeintureBulle.shader.meta new file mode 100644 index 0000000..546e106 --- /dev/null +++ b/Assets/Images/Shaders/UI_PeintureBulle.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 26fffa4494d1573488412b39b243dd4a +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Inference Engine.meta b/Assets/Inference Engine.meta new file mode 100644 index 0000000..1c4b409 --- /dev/null +++ b/Assets/Inference Engine.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3575c103108945444bd5e7a0887ab23e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Inference Engine/Speech Recognition.meta b/Assets/Inference Engine/Speech Recognition.meta new file mode 100644 index 0000000..4ee3017 --- /dev/null +++ b/Assets/Inference Engine/Speech Recognition.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 21a950f95c3a68e459ba4ae44f40eeb4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Inference Engine/Speech Recognition/Data.meta b/Assets/Inference Engine/Speech Recognition/Data.meta new file mode 100644 index 0000000..8930aae --- /dev/null +++ b/Assets/Inference Engine/Speech Recognition/Data.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c9cdf72c775d73d429924143b33de13c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Inference Engine/Speech Recognition/Data/answering-machine16kHz.wav b/Assets/Inference Engine/Speech Recognition/Data/answering-machine16kHz.wav new file mode 100644 index 0000000..ad7663e Binary files /dev/null and b/Assets/Inference Engine/Speech Recognition/Data/answering-machine16kHz.wav differ diff --git a/Assets/Inference Engine/Speech Recognition/Data/answering-machine16kHz.wav.meta b/Assets/Inference Engine/Speech Recognition/Data/answering-machine16kHz.wav.meta new file mode 100644 index 0000000..72c0645 --- /dev/null +++ b/Assets/Inference Engine/Speech Recognition/Data/answering-machine16kHz.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 955a5179d92d8004190ace238da2faa0 +AudioImporter: + externalObjects: {} + serializedVersion: 8 + defaultSettings: + serializedVersion: 2 + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + preloadAudioData: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Inference Engine/Speech Recognition/Data/vocab.json b/Assets/Inference Engine/Speech Recognition/Data/vocab.json new file mode 100644 index 0000000..90e797d --- /dev/null +++ b/Assets/Inference Engine/Speech Recognition/Data/vocab.json @@ -0,0 +1,50260 @@ +{ + "": 50256, + "!": 0, + "!!": 1432, + "!!!": 4589, + "!!!!": 8153, + "!!!!!": 28493, + "!!!!!!": 50199, + "!!!!!!!!": 28618, + "!!\"": 44556, + "!!)": 33826, + "!!]": 46990, + "!\"": 2963, + "!\",": 44815, + "!\".": 35323, + "!'": 13840, + "!(": 46824, + "!)": 5700, + "!*": 32854, + "!,": 32652, + "!.": 37817, + "!..": 44311, + "!...": 34205, + "!": 21732, + "\"?": 8930, + "\"]": 23711, + "#": 2, + "$": 3, + "%": 4, + "%,": 8923, + "%.": 6856, + "&": 5, + "'": 6, + "'!": 30159, + "''": 15025, + "')": 37380, + "',": 6098, + "'.": 5004, + "'...": 37474, + "'?": 16265, + "'D": 41063, + "'M": 25310, + "'RE": 39040, + "'S": 11460, + "'T": 18010, + "']": 48038, + "'d": 1116, + "'ll": 603, + "'m": 478, + "'re": 434, + "'s": 311, + "'t": 380, + "'ve": 600, + "(": 7, + "()": 45191, + "(?)": 20396, + ")": 8, + ")!": 36380, + ")\"": 33739, + ")(": 29422, + "))": 9383, + "),": 3824, + ").": 3050, + ")...": 40144, + "):": 4507, + ");": 34446, + ")?": 25107, + ")]": 8245, + "*": 9, + "*)": 34634, + "**": 4852, + "***": 13684, + "****": 24396, + "+": 10, + "++": 25472, + "+,": 46797, + "+.": 45585, + ",": 11, + ",\"": 2494, + ",'": 12529, + ",)": 36881, + ",,": 20387, + ",-": 44013, + ",.": 40698, + ",...": 16007, + ",": 50257, + "=": 28, + "=\"": 13114, + "=\"#": 34106, + "=#": 49872, + "==": 2945, + ">": 29, + ">-": 33335, + "><": 29986, + ">>": 893, + "?": 30, + "?!": 3529, + "?!\"": 35271, + "?!?": 38825, + "?!?!": 44587, + "?\"": 1811, + "?\",": 29359, + "?\".": 25760, + "?'": 8569, + "?)": 4827, + "?,": 22753, + "?-": 38337, + "?.": 27552, + "?..": 46863, + "?...": 32865, + "?": 14350, + "Ġ-...": 41975, + "Ġ->": 33798, + "Ġ-[": 14635, + "Ġ-âĻª": 45499, + "Ġ.": 2411, + "Ġ..": 4386, + "Ġ...": 1097, + "Ġ...\"": 39463, + "Ġ....": 13368, + "Ġ.....": 46915, + "Ġ/": 2460, + "Ġ//": 29178, + "Ġ0": 1958, + "Ġ00": 7143, + "Ġ000": 13711, + "Ġ01": 23185, + "Ġ02": 37202, + "Ġ03": 43677, + "Ġ04": 50022, + "Ġ09": 48729, + "Ġ1": 502, + "Ġ10": 1266, + "Ġ100": 2319, + "Ġ1000": 9714, + "Ġ101": 21055, + "Ġ102": 45937, + "Ġ103": 48784, + "Ġ104": 47757, + "Ġ105": 33705, + "Ġ108": 41342, + "Ġ1080": 24547, + "Ġ11": 2975, + "Ġ110": 20154, + "Ġ112": 45835, + "Ġ115": 39436, + "Ġ12": 2272, + "Ġ120": 10411, + "Ġ1200": 29139, + "Ġ123": 34466, + "Ġ125": 25276, + "Ġ127": 47561, + "Ġ128": 29810, + "Ġ13": 3705, + "Ġ130": 19966, + "Ġ1300": 48156, + "Ġ135": 42652, + "Ġ14": 3499, + "Ġ140": 21548, + "Ġ1400": 46795, + "Ġ144": 45218, + "Ġ15": 2119, + "Ġ150": 8451, + "Ġ1500": 22671, + "Ġ16": 3165, + "Ġ160": 21243, + "Ġ1600": 36885, + "Ġ17": 3282, + "Ġ170": 27228, + "Ġ1700": 43373, + "Ġ175": 41165, + "Ġ18": 2443, + "Ġ180": 11971, + "Ġ1800": 24327, + "Ġ1890": 47725, + "Ġ19": 1294, + "Ġ190": 37609, + "Ġ1900": 28898, + "Ġ1914": 45131, + "Ġ1917": 42757, + "Ġ1918": 36588, + "Ġ1919": 46484, + "Ġ1920": 22003, + "Ġ1930": 22350, + "Ġ1933": 48390, + "Ġ1938": 46398, + "Ġ1939": 37785, + "Ġ194": 9754, + "Ġ1940": 24158, + "Ġ1941": 35364, + "Ġ1942": 37549, + "Ġ1943": 40402, + "Ġ1944": 35133, + "Ġ1945": 28253, + "Ġ1946": 46062, + "Ġ1947": 40417, + "Ġ1948": 38833, + "Ġ1949": 46476, + "Ġ195": 10858, + "Ġ1950": 18141, + "Ġ1953": 48528, + "Ġ1954": 46590, + "Ġ1955": 46881, + "Ġ1956": 46379, + "Ġ1957": 46256, + "Ġ1958": 45868, + "Ġ1959": 45608, + "Ġ196": 7998, + "Ġ1960": 16157, + "Ġ1961": 41720, + "Ġ1962": 39498, + "Ġ1963": 38698, + "Ġ1964": 34314, + "Ġ1965": 33809, + "Ġ1966": 39157, + "Ġ1967": 33193, + "Ġ1968": 29930, + "Ġ1969": 32090, + "Ġ197": 7560, + "Ġ1970": 14577, + "Ġ1971": 34578, + "Ġ1972": 32952, + "Ġ1973": 33530, + "Ġ1974": 33422, + "Ġ1975": 32454, + "Ġ1976": 33978, + "Ġ1977": 35092, + "Ġ1978": 33191, + "Ġ1979": 30595, + "Ġ198": 6375, + "Ġ1980": 13626, + "Ġ1981": 33117, + "Ġ1982": 31352, + "Ġ1983": 31758, + "Ġ1984": 27127, + "Ġ1985": 28962, + "Ġ1986": 27895, + "Ġ1987": 29008, + "Ġ1988": 27816, + "Ġ1989": 22427, + "Ġ199": 4303, + "Ġ1990": 13384, + "Ġ1991": 24097, + "Ġ1992": 23952, + "Ġ1993": 25137, + "Ġ1994": 22736, + "Ġ1995": 22601, + "Ġ1996": 22690, + "Ġ1997": 22383, + "Ġ1998": 21404, + "Ġ1999": 19952, + "Ġ2": 568, + "Ġ20": 945, + "Ġ200": 2331, + "Ġ2000": 8132, + "Ġ2001": 16382, + "Ġ2002": 17822, + "Ġ2003": 16416, + "Ġ2004": 15817, + "Ġ2005": 14394, + "Ġ2006": 14062, + "Ġ2007": 12656, + "Ġ2008": 10389, + "Ġ2009": 11453, + "Ġ201": 1525, + "Ġ2010": 9657, + "Ġ2011": 10154, + "Ġ2012": 9125, + "Ġ2013": 9012, + "Ġ2014": 8227, + "Ġ2015": 7546, + "Ġ2016": 6549, + "Ġ2017": 6591, + "Ġ2018": 6096, + "Ġ2019": 6071, + "Ġ2020": 4808, + "Ġ2021": 7201, + "Ġ2022": 20229, + "Ġ2023": 44377, + "Ġ2024": 45237, + "Ġ2025": 39209, + "Ġ2030": 28638, + "Ġ2050": 38308, + "Ġ21": 5080, + "Ġ210": 42692, + "Ġ22": 5853, + "Ġ220": 29387, + "Ġ23": 6673, + "Ġ230": 35311, + "Ġ24": 4022, + "Ġ240": 26837, + "Ġ25": 3552, + "Ġ250": 11650, + "Ġ2500": 41171, + "Ġ256": 38882, + "Ġ26": 7551, + "Ġ260": 44624, + "Ġ27": 7634, + "Ġ270": 40774, + "Ġ28": 7562, + "Ġ280": 41229, + "Ġ29": 9413, + "Ġ3": 805, + "Ġ30": 2217, + "Ġ300": 6641, + "Ġ3000": 20984, + "Ġ31": 10353, + "Ġ32": 8858, + "Ġ320": 42429, + "Ġ33": 11816, + "Ġ330": 45374, + "Ġ34": 12790, + "Ġ35": 6976, + "Ġ350": 18065, + "Ġ36": 8652, + "Ġ360": 13898, + "Ġ365": 22046, + "Ġ37": 13435, + "Ġ38": 12843, + "Ġ39": 15238, + "Ġ4": 1017, + "Ġ40": 3356, + "Ġ400": 8423, + "Ġ4000": 31104, + "Ġ401": 37510, + "Ġ41": 18173, + "Ġ42": 14034, + "Ġ43": 17914, + "Ġ44": 16408, + "Ġ45": 6905, + "Ġ450": 26034, + "Ġ46": 17835, + "Ġ47": 16953, + "Ġ48": 11174, + "Ġ49": 16513, + "Ġ5": 1025, + "Ġ50": 2625, + "Ġ500": 5923, + "Ġ5000": 23777, + "Ġ51": 18485, + "Ġ52": 18079, + "Ġ53": 21860, + "Ġ54": 20793, + "Ġ55": 12330, + "Ġ550": 42514, + "Ġ56": 19687, + "Ġ57": 21423, + "Ġ58": 21786, + "Ġ59": 24624, + "Ġ6": 1386, + "Ġ60": 4060, + "Ġ600": 11849, + "Ġ6000": 41789, + "Ġ61": 28294, + "Ġ62": 24536, + "Ġ63": 25082, + "Ġ64": 12145, + "Ġ65": 11624, + "Ġ650": 38566, + "Ġ66": 21126, + "Ġ67": 23879, + "Ġ68": 23317, + "Ġ69": 28267, + "Ġ7": 1614, + "Ġ70": 5285, + "Ġ700": 15204, + "Ġ71": 30942, + "Ġ72": 18731, + "Ġ720": 40881, + "Ġ73": 28387, + "Ġ74": 28868, + "Ġ75": 9562, + "Ġ750": 31682, + "Ġ76": 24733, + "Ġ77": 25546, + "Ġ78": 26369, + "Ġ79": 32803, + "Ġ8": 1649, + "Ġ80": 4688, + "Ġ800": 13083, + "Ġ81": 30827, + "Ġ82": 29097, + "Ġ83": 30997, + "Ġ84": 29018, + "Ġ85": 14695, + "Ġ86": 26687, + "Ġ87": 27990, + "Ġ88": 24587, + "Ġ89": 31877, + "Ġ9": 1722, + "Ġ90": 4289, + "Ġ900": 22016, + "Ġ91": 31064, + "Ġ911": 26901, + "Ġ92": 28225, + "Ġ93": 28876, + "Ġ94": 30849, + "Ġ95": 13420, + "Ġ96": 24124, + "Ġ97": 23399, + "Ġ98": 20860, + "Ġ99": 11803, + "Ġ:": 1982, + "Ġ:(": 35495, + "Ġ:)": 11201, + "Ġ;": 12562, + "Ġ;)": 41540, + "Ġ<": 2627, + "Ġ": 12331, + "Ġ>>": 902, + "Ġ>>:": 22040, + "Ġ>>>": 13793, + "Ġ>>[": 45687, + "Ġ?": 2506, + "Ġ?!": 31363, + "Ġ?\"": 37266, + "Ġ??": 37969, + "Ġ???": 29678, + "Ġ?]": 16587, + "Ġ@": 10428, + "ĠA": 316, + "ĠAA": 30680, + "ĠAAA": 34347, + "ĠAB": 13838, + "ĠABC": 22342, + "ĠABOUT": 50249, + "ĠABS": 41707, + "ĠAC": 8157, + "ĠACC": 42251, + "ĠACE": 44606, + "ĠACL": 43873, + "ĠACT": 40341, + "ĠAD": 9135, + "ĠADA": 39354, + "ĠADAM": 34938, + "ĠADHD": 38680, + "ĠAE": 32207, + "ĠAF": 20389, + "ĠAG": 28406, + "ĠAGA": 49133, + "ĠAH": 25888, + "ĠAI": 7318, + "ĠAIDS": 27929, + "ĠAJ": 32759, + "ĠAK": 24789, + "ĠAKA": 45933, + "ĠAL": 7056, + "ĠALEX": 27351, + "ĠALISSA": 39430, + "ĠALL": 14824, + "ĠAM": 6475, + "ĠAMD": 34808, + "ĠAMP": 31616, + "ĠAMY": 31410, + "ĠAN": 5252, + "ĠAND": 8093, + "ĠANDREW": 34504, + "ĠANNOUNCER": 35629, + "ĠANY": 39222, + "ĠAO": 40684, + "ĠAP": 5372, + "ĠAPI": 9362, + "ĠAPIs": 21445, + "ĠAPP": 22513, + "ĠAPPLAUSE": 35298, + "ĠAR": 8943, + "ĠARE": 22515, + "ĠARM": 45209, + "ĠAS": 7469, + "ĠASH": 20146, + "ĠASHLEY": 23834, + "ĠASMR": 31300, + "ĠAT": 8872, + "ĠATM": 46455, + "ĠATP": 39202, + "ĠAU": 7171, + "ĠAUDI": 8029, + "ĠAUDIENCE": 8155, + "ĠAV": 30198, + "ĠAW": 25815, + "ĠAWS": 17650, + "ĠAZ": 49698, + "ĠAa": 21460, + "ĠAaa": 35820, + "ĠAaah": 48381, + "ĠAah": 32616, + "ĠAaron": 14018, + "ĠAb": 2847, + "ĠAbb": 32673, + "ĠAbby": 27726, + "ĠAbd": 27548, + "ĠAbdul": 42591, + "ĠAbdullah": 45625, + "ĠAbe": 38472, + "ĠAbend": 36194, + "ĠAber": 5992, + "ĠAbg": 35407, + "ĠAbgeord": 40730, + "ĠAbi": 31205, + "ĠAbigail": 47174, + "ĠAboriginal": 36577, + "ĠAbout": 7769, + "ĠAbove": 32691, + "ĠAbr": 31717, + "ĠAbraham": 17782, + "ĠAbs": 5813, + "ĠAbsol": 43965, + "ĠAbsolutely": 7021, + "ĠAbst": 46853, + "ĠAbu": 26874, + "ĠAc": 5097, + "ĠAcad": 9740, + "ĠAcademic": 36139, + "ĠAcademy": 11735, + "ĠAcc": 5725, + "ĠAccept": 39957, + "ĠAccess": 17166, + "ĠAccording": 7328, + "ĠAccount": 24558, + "ĠAce": 24900, + "ĠAch": 15847, + "ĠAcho": 40731, + "ĠAcross": 34527, + "ĠAct": 3251, + "ĠActing": 42413, + "ĠAction": 16261, + "ĠActiv": 28550, + "ĠActive": 26635, + "ĠActor": 45457, + "ĠActs": 32363, + "ĠActually": 5135, + "ĠAd": 1999, + "ĠAda": 32276, + "ĠAdam": 7938, + "ĠAdams": 25214, + "ĠAdapt": 49643, + "ĠAdd": 5349, + "ĠAdding": 31204, + "ĠAdditional": 44272, + "ĠAdditionally": 19927, + "ĠAde": 43177, + "ĠAdemás": 34621, + "ĠAdjust": 34049, + "ĠAdm": 46292, + "ĠAdminist": 13322, + "ĠAdministration": 17187, + "ĠAdmiral": 38097, + "ĠAdobe": 24862, + "ĠAdri": 32447, + "ĠAdrian": 31746, + "ĠAds": 44325, + "ĠAdult": 47987, + "ĠAdv": 13634, + "ĠAdvance": 44425, + "ĠAdvanced": 26951, + "ĠAdvent": 17856, + "ĠAdventure": 26718, + "ĠAdventures": 48818, + "ĠAdvis": 31407, + "ĠAdvisor": 49719, + "ĠAdvisory": 39816, + "ĠAeg": 46085, + "ĠAer": 32459, + "ĠAf": 3325, + "ĠAfD": 28413, + "ĠAff": 12840, + "ĠAffairs": 21721, + "ĠAffordable": 41337, + "ĠAfghan": 11393, + "ĠAfghanistan": 13658, + "ĠAfric": 4390, + "ĠAfrica": 7349, + "ĠAfrican": 7312, + "ĠAfricans": 42228, + "ĠAfter": 2381, + "ĠAfterwards": 41357, + "ĠAg": 2725, + "ĠAgain": 3764, + "ĠAgainst": 29995, + "ĠAge": 16280, + "ĠAgency": 21649, + "ĠAgent": 27174, + "ĠAges": 37362, + "ĠAgg": 41512, + "ĠAgora": 16023, + "ĠAgr": 24454, + "ĠAgre": 29324, + "ĠAgreement": 40572, + "ĠAgric": 27587, + "ĠAgriculture": 35966, + "ĠAh": 2438, + "ĠAha": 27448, + "ĠAhh": 17116, + "ĠAhhh": 27185, + "ĠAhmad": 35911, + "ĠAhmed": 39189, + "ĠAhora": 18840, + "ĠAhÃŃ": 49924, + "ĠAi": 16993, + "ĠAid": 39916, + "ĠAim": 47796, + "ĠAin": 29672, + "ĠAir": 5774, + "ĠAirPods": 43247, + "ĠAirbnb": 38232, + "ĠAires": 47058, + "ĠAirl": 34421, + "ĠAirlines": 38788, + "ĠAirport": 25784, + "ĠAixò": 31869, + "ĠAj": 25862, + "ĠAk": 9629, + "ĠAkbar": 48665, + "ĠAkt": 32850, + "ĠAku": 41120, + "ĠAl": 967, + "ĠAla": 46289, + "ĠAlab": 20302, + "ĠAlabama": 20898, + "ĠAladdin": 45071, + "ĠAlan": 16442, + "ĠAlaska": 19553, + "ĠAlb": 32223, + "ĠAlban": 41547, + "ĠAlber": 26361, + "ĠAlbert": 20812, + "ĠAlberta": 43279, + "ĠAlberto": 45709, + "ĠAlcohol": 48779, + "ĠAld": 24031, + "ĠAle": 9366, + "ĠAlej": 44568, + "ĠAlert": 44939, + "ĠAlex": 5202, + "ĠAlexa": 22595, + "ĠAlexand": 28800, + "ĠAlexander": 14845, + "ĠAlexandra": 45546, + "ĠAlexandria": 41943, + "ĠAlexis": 39826, + "ĠAlf": 21996, + "ĠAlfred": 28327, + "ĠAlg": 35014, + "ĠAlger": 48681, + "ĠAlgun": 46816, + "ĠAli": 12020, + "ĠAlice": 16004, + "ĠAlicia": 38153, + "ĠAlien": 32396, + "ĠAlison": 41001, + "ĠAll": 1057, + "ĠAllah": 4574, + "ĠAllahu": 44351, + "ĠAllan": 45902, + "ĠAlle": 25318, + "ĠAlleg": 47486, + "ĠAllen": 17160, + "ĠAlles": 27633, + "ĠAllez": 29616, + "ĠAlliance": 21859, + "ĠAllied": 45620, + "ĠAllies": 44949, + "ĠAllison": 32638, + "ĠAllow": 32225, + "ĠAlly": 46776, + "ĠAllÄģh": 41778, + "ĠAlm": 14344, + "ĠAlma": 42439, + "ĠAlmighty": 16849, + "ĠAlmost": 12627, + "ĠAlo": 35625, + "ĠAlone": 42056, + "ĠAlong": 17457, + "ĠAlors": 9946, + "ĠAlpha": 20588, + "ĠAlready": 23741, + "ĠAlright": 2798, + "ĠAlrighty": 43301, + "ĠAls": 12948, + "ĠAlso": 2743, + "ĠAlt": 15992, + "ĠAlter": 32608, + "ĠAltern": 23830, + "ĠAlternatively": 46167, + "ĠAlthough": 5780, + "ĠAlto": 50066, + "ĠAlum": 33134, + "ĠAlumni": 35699, + "ĠAlways": 11270, + "ĠAly": 27008, + "ĠAlz": 26804, + "ĠAlzheimer": 27932, + "ĠAlém": 44457, + "ĠAm": 2012, + "ĠAma": 14171, + "ĠAman": 35466, + "ĠAmanda": 20431, + "ĠAmazing": 14165, + "ĠAmazon": 6795, + "ĠAmb": 17196, + "ĠAmbassador": 28506, + "ĠAmber": 29407, + "ĠAmelia": 42814, + "ĠAmen": 14092, + "ĠAmend": 20404, + "ĠAmendment": 21443, + "ĠAmer": 22597, + "ĠAmeric": 1656, + "ĠAmerica": 3374, + "ĠAmerican": 2665, + "ĠAmericans": 6280, + "ĠAmericas": 38415, + "ĠAmerika": 42345, + "ĠAmong": 16119, + "ĠAmsterdam": 28291, + "ĠAmy": 12651, + "ĠAmérica": 48053, + "ĠAn": 1107, + "ĠAna": 21202, + "ĠAnakin": 47218, + "ĠAnal": 16128, + "ĠAnalysis": 38172, + "ĠAnalyt": 23688, + "ĠAnalytics": 25944, + "ĠAnat": 42628, + "ĠAnch": 39547, + "ĠAncient": 28352, + "ĠAnd": 400, + "ĠAnda": 40480, + "ĠAnders": 33988, + "ĠAnderson": 18768, + "ĠAndre": 20667, + "ĠAndrea": 24215, + "ĠAndreas": 38785, + "ĠAndrew": 10110, + "ĠAndroid": 8853, + "ĠAndy": 13285, + "ĠAnfang": 25856, + "ĠAng": 4521, + "ĠAngeb": 44301, + "ĠAngel": 14902, + "ĠAngela": 20848, + "ĠAngeles": 12292, + "ĠAngels": 37950, + "ĠAngie": 48829, + "ĠAnglo": 49570, + "ĠAngry": 49860, + "ĠAngst": 28622, + "ĠAngular": 34107, + "ĠAnh": 23574, + "ĠAnim": 21691, + "ĠAnimal": 24358, + "ĠAnimals": 47164, + "ĠAnimation": 44635, + "ĠAnime": 48615, + "ĠAnita": 44528, + "ĠAnk": 42483, + "ĠAnn": 8860, + "ĠAnna": 12899, + "ĠAnne": 13706, + "ĠAnnie": 26781, + "ĠAnnouncer": 36640, + "ĠAnnual": 46030, + "ĠAnother": 3996, + "ĠAns": 14590, + "ĠAnsch": 45062, + "ĠAnswer": 24545, + "ĠAnt": 5130, + "ĠAntar": 30536, + "ĠAntarctica": 39866, + "ĠAntes": 39325, + "ĠAnth": 12727, + "ĠAnthony": 15853, + "ĠAnti": 27757, + "ĠAnton": 15291, + "ĠAntonio": 22527, + "ĠAntrag": 34807, + "ĠAntwort": 34693, + "ĠAny": 2639, + "ĠAnybody": 19082, + "ĠAnyone": 14643, + "ĠAnything": 11998, + "ĠAnytime": 39401, + "ĠAnyway": 5684, + "ĠAnyways": 15585, + "ĠAo": 35208, + "ĠAp": 8723, + "ĠApa": 37831, + "ĠApache": 46597, + "ĠApart": 24111, + "ĠAph": 41775, + "ĠApollo": 25187, + "ĠApost": 31467, + "ĠApp": 3132, + "ĠApparently": 16755, + "ĠAppe": 41322, + "ĠApplause": 19281, + "ĠApple": 6373, + "ĠApplic": 26519, + "ĠApplication": 39512, + "ĠApply": 25264, + "ĠAppreci": 33669, + "ĠAppreciate": 37601, + "ĠAppro": 29551, + "ĠApps": 32231, + "ĠApr": 6305, + "ĠApril": 6929, + "ĠAprès": 29265, + "ĠAqu": 8728, + "ĠAqua": 45591, + "ĠAqui": 23089, + "ĠAquÃŃ": 24386, + "ĠAr": 1587, + "ĠAra": 18601, + "ĠArab": 8625, + "ĠArabia": 21610, + "ĠArabic": 19938, + "ĠArabs": 39770, + "ĠArbeit": 18604, + "ĠArbeits": 23262, + "ĠArc": 21727, + "ĠArch": 10984, + "ĠArchitect": 29306, + "ĠArchitecture": 43049, + "ĠArchives": 39258, + "ĠArctic": 27241, + "ĠArduino": 39539, + "ĠAre": 2014, + "ĠArea": 19405, + "ĠAren": 15464, + "ĠArena": 34290, + "ĠArg": 40081, + "ĠArgent": 15183, + "ĠArgentina": 18336, + "ĠArgh": 45851, + "ĠArgu": 48560, + "ĠAri": 9433, + "ĠAriana": 43296, + "ĠAriel": 37201, + "ĠArin": 24209, + "ĠArist": 31310, + "ĠAristotle": 42368, + "ĠArizona": 14723, + "ĠArk": 16427, + "ĠArkansas": 31386, + "ĠArm": 11893, + "ĠArmed": 42024, + "ĠArmen": 22302, + "ĠArmenia": 45925, + "ĠArmenian": 41581, + "ĠArmor": 44679, + "ĠArms": 42561, + "ĠArmstrong": 36100, + "ĠArmy": 9583, + "ĠArnold": 30406, + "ĠAround": 17633, + "ĠArri": 45188, + "ĠArrow": 40269, + "ĠArsen": 41218, + "ĠArsenal": 49156, + "ĠArt": 5735, + "ĠArtem": 39210, + "ĠArthur": 19624, + "ĠArticle": 35230, + "ĠArtist": 39504, + "ĠArts": 12407, + "ĠAry": 39960, + "ĠAs": 1018, + "ĠAsh": 10279, + "ĠAshe": 45006, + "ĠAshley": 19571, + "ĠAsia": 10038, + "ĠAsian": 10645, + "ĠAsians": 47724, + "ĠAside": 33726, + "ĠAsk": 12320, + "ĠAss": 6281, + "ĠAssad": 40122, + "ĠAssass": 35355, + "ĠAssassin": 43176, + "ĠAssembly": 20399, + "ĠAssessment": 47643, + "ĠAssim": 40376, + "ĠAssist": 49633, + "ĠAssistance": 46805, + "ĠAssistant": 14890, + "ĠAssoci": 8619, + "ĠAssociate": 28520, + "ĠAssociation": 10734, + "ĠAst": 12884, + "ĠAstra": 45242, + "ĠAstron": 36819, + "ĠAsÃŃ": 17419, + "ĠAt": 1711, + "ĠAtari": 41381, + "ĠAth": 16487, + "ĠAthena": 36827, + "ĠAthens": 32530, + "ĠAthlet": 34318, + "ĠAtl": 11000, + "ĠAtlanta": 20225, + "ĠAtlantic": 20233, + "ĠAtlas": 32485, + "ĠAtt": 7298, + "ĠAttack": 22477, + "ĠAttend": 46827, + "ĠAttention": 31858, + "ĠAttorney": 23283, + "ĠAté": 31793, + "ĠAu": 12160, + "ĠAub": 36927, + "ĠAuch": 13382, + "ĠAuckland": 33976, + "ĠAud": 8821, + "ĠAudi": 28943, + "ĠAudience": 23517, + "ĠAudio": 25706, + "ĠAudrey": 31808, + "ĠAuf": 9462, + "ĠAufg": 29648, + "ĠAufgabe": 40070, + "ĠAuft": 39119, + "ĠAug": 6088, + "ĠAugen": 29692, + "ĠAugust": 6897, + "ĠAujourd": 32650, + "ĠAun": 30265, + "ĠAunque": 45068, + "ĠAunt": 17535, + "ĠAuntie": 33878, + "ĠAur": 26945, + "ĠAurora": 40663, + "ĠAus": 9039, + "ĠAuss": 21286, + "ĠAust": 4126, + "ĠAustin": 15356, + "ĠAustral": 5273, + "ĠAustralia": 7060, + "ĠAustralian": 13337, + "ĠAustralians": 38108, + "ĠAustria": 26501, + "ĠAustrian": 41507, + "ĠAusw": 48500, + "ĠAut": 6049, + "ĠAuth": 40231, + "ĠAuthor": 20216, + "ĠAuthority": 29824, + "ĠAuto": 13738, + "ĠAutob": 49909, + "ĠAutom": 24619, + "ĠAutumn": 45597, + "ĠAuÃŁerdem": 47834, + "ĠAv": 11667, + "ĠAvant": 44822, + "ĠAvatar": 44748, + "ĠAve": 23650, + "ĠAvec": 31720, + "ĠAven": 13573, + "ĠAvengers": 25430, + "ĠAvenue": 22454, + "ĠAvi": 40712, + "ĠAvo": 36175, + "ĠAvoid": 41061, + "ĠAw": 6381, + "ĠAwak": 25274, + "ĠAward": 13894, + "ĠAwards": 22187, + "ĠAware": 43949, + "ĠAway": 36957, + "ĠAwesome": 10391, + "ĠAww": 22007, + "ĠAx": 20118, + "ĠAy": 9081, + "ĠAye": 13377, + "ĠAz": 7607, + "ĠAzer": 32580, + "ĠAzerbai": 41937, + "ĠAzerbaijan": 48815, + "ĠAzure": 11969, + "ĠAÃŃ": 22175, + "ĠB": 363, + "ĠBA": 21050, + "ĠBACK": 42467, + "ĠBAR": 27952, + "ĠBB": 19168, + "ĠBBC": 22669, + "ĠBBQ": 40969, + "ĠBC": 14359, + "ĠBCE": 49369, + "ĠBE": 13513, + "ĠBEC": 45090, + "ĠBEN": 31613, + "ĠBER": 42488, + "ĠBET": 41804, + "ĠBETH": 36480, + "ĠBH": 40342, + "ĠBI": 23524, + "ĠBIG": 39761, + "ĠBILL": 28062, + "ĠBJ": 37830, + "ĠBL": 15132, + "ĠBLACK": 43408, + "ĠBM": 15901, + "ĠBMW": 21355, + "ĠBO": 22785, + "ĠBOB": 43765, + "ĠBON": 48524, + "ĠBOY": 34909, + "ĠBP": 40533, + "ĠBR": 10262, + "ĠBRA": 30777, + "ĠBRAND": 41466, + "ĠBRANDON": 46940, + "ĠBRE": 41450, + "ĠBRI": 27466, + "ĠBRIAN": 31434, + "ĠBROWN": 37705, + "ĠBS": 27253, + "ĠBT": 31144, + "ĠBTS": 17951, + "ĠBU": 31142, + "ĠBUR": 37270, + "ĠBUT": 23073, + "ĠBY": 26930, + "ĠBa": 6777, + "ĠBab": 15820, + "ĠBaba": 22529, + "ĠBabe": 44127, + "ĠBaby": 9425, + "ĠBabylon": 30278, + "ĠBach": 30920, + "ĠBachelor": 23193, + "ĠBack": 5833, + "ĠBackground": 36904, + "ĠBacon": 42460, + "ĠBad": 11523, + "ĠBaek": 38913, + "ĠBag": 24377, + "ĠBagh": 45487, + "ĠBah": 14782, + "ĠBahn": 44337, + "ĠBai": 25269, + "ĠBailey": 28192, + "ĠBak": 12063, + "ĠBake": 42597, + "ĠBaker": 25780, + "ĠBal": 13140, + "ĠBalance": 41899, + "ĠBald": 27306, + "ĠBaldwin": 46050, + "ĠBali": 40664, + "ĠBalk": 36289, + "ĠBall": 10744, + "ĠBalt": 18294, + "ĠBaltimore": 22749, + "ĠBam": 26630, + "ĠBan": 13850, + "ĠBana": 33942, + "ĠBanana": 39588, + "ĠBand": 15462, + "ĠBang": 11538, + "ĠBangkok": 43055, + "ĠBangl": 32123, + "ĠBangladesh": 35260, + "ĠBank": 8915, + "ĠBanks": 33081, + "ĠBao": 42099, + "ĠBapt": 25991, + "ĠBaptist": 32410, + "ĠBar": 4156, + "ĠBarack": 31705, + "ĠBarb": 14876, + "ĠBarbara": 19214, + "ĠBarbie": 33884, + "ĠBarcel": 20496, + "ĠBarcelona": 21247, + "ĠBard": 26841, + "ĠBardzo": 38559, + "ĠBare": 43957, + "ĠBark": 36275, + "ĠBarn": 21605, + "ĠBarnes": 43903, + "ĠBaron": 30978, + "ĠBarr": 28694, + "ĠBarry": 21639, + "ĠBart": 22338, + "ĠBas": 5859, + "ĠBase": 21054, + "ĠBased": 18785, + "ĠBash": 43068, + "ĠBasic": 31598, + "ĠBasically": 8537, + "ĠBasil": 43175, + "ĠBasket": 45360, + "ĠBass": 29626, + "ĠBast": 31915, + "ĠBat": 10066, + "ĠBath": 36167, + "ĠBatman": 15432, + "ĠBatt": 29439, + "ĠBatter": 33066, + "ĠBattery": 47410, + "ĠBattle": 11846, + "ĠBattlefield": 41091, + "ĠBau": 28772, + "ĠBaum": 40165, + "ĠBay": 7840, + "ĠBayern": 29163, + "ĠBaz": 42220, + "ĠBaÅŁ": 28942, + "ĠBe": 879, + "ĠBea": 45786, + "ĠBeach": 14866, + "ĠBead": 31315, + "ĠBeam": 40916, + "ĠBean": 38454, + "ĠBear": 19836, + "ĠBears": 50180, + "ĠBeast": 24100, + "ĠBeat": 16031, + "ĠBeatles": 38376, + "ĠBeau": 43702, + "ĠBeaut": 10584, + "ĠBeautiful": 14724, + "ĠBeauty": 21450, + "ĠBecause": 1436, + "ĠBecca": 33148, + "ĠBeck": 19184, + "ĠBecky": 30059, + "ĠBecome": 44308, + "ĠBed": 19893, + "ĠBee": 31141, + "ĠBeef": 36465, + "ĠBeen": 32839, + "ĠBeer": 41453, + "ĠBeet": 28798, + "ĠBeethoven": 38651, + "ĠBefore": 4546, + "ĠBegin": 20660, + "ĠBeginning": 45705, + "ĠBeh": 13068, + "ĠBehavior": 45807, + "ĠBehind": 20475, + "ĠBei": 16188, + "ĠBeij": 18995, + "ĠBeijing": 20240, + "ĠBeim": 45113, + "ĠBeing": 8891, + "ĠBeispiel": 13772, + "ĠBeit": 43637, + "ĠBel": 6248, + "ĠBelarus": 35855, + "ĠBelg": 19234, + "ĠBelgian": 47127, + "ĠBelgium": 28094, + "ĠBelieve": 21486, + "ĠBell": 11485, + "ĠBella": 29133, + "ĠBelle": 31905, + "ĠBelo": 49244, + "ĠBelow": 36261, + "ĠBelt": 38869, + "ĠBem": 32846, + "ĠBen": 3964, + "ĠBend": 32451, + "ĠBene": 27702, + "ĠBened": 39753, + "ĠBenedict": 47837, + "ĠBeng": 29425, + "ĠBengal": 50221, + "ĠBeni": 44460, + "ĠBenim": 27051, + "ĠBenjamin": 22231, + "ĠBenn": 29686, + "ĠBennett": 40620, + "ĠBenny": 44531, + "ĠBenson": 48601, + "ĠBent": 28894, + "ĠBentley": 43147, + "ĠBer": 5637, + "ĠBere": 17684, + "ĠBereich": 26489, + "ĠBerg": 27511, + "ĠBerkeley": 23684, + "ĠBerlin": 13848, + "ĠBern": 10781, + "ĠBernard": 30116, + "ĠBernie": 22426, + "ĠBerry": 34084, + "ĠBert": 29594, + "ĠBeruf": 36688, + "ĠBes": 8190, + "ĠBesch": 30860, + "ĠBesides": 13212, + "ĠBest": 9752, + "ĠBet": 6279, + "ĠBeta": 33286, + "ĠBeth": 14011, + "ĠBets": 49352, + "ĠBett": 45083, + "ĠBetter": 15753, + "ĠBetty": 30270, + "ĠBetween": 18967, + "ĠBev": 41159, + "ĠBever": 39236, + "ĠBeverly": 43598, + "ĠBevölker": 48313, + "ĠBew": 40512, + "ĠBeweg": 46757, + "ĠBey": 15550, + "ĠBeyonce": 48416, + "ĠBeyond": 19707, + "ĠBh": 13550, + "ĠBhag": 33797, + "ĠBhar": 49104, + "ĠBi": 13007, + "ĠBian": 39509, + "ĠBib": 31520, + "ĠBible": 6544, + "ĠBiden": 9877, + "ĠBie": 34972, + "ĠBieber": 42377, + "ĠBien": 16956, + "ĠBier": 50222, + "ĠBig": 5429, + "ĠBigQuery": 43422, + "ĠBij": 41809, + "ĠBike": 45699, + "ĠBil": 22879, + "ĠBild": 15746, + "ĠBilder": 44719, + "ĠBill": 5477, + "ĠBillboard": 40351, + "ĠBillie": 46021, + "ĠBilly": 18179, + "ĠBin": 18983, + "ĠBing": 30755, + "ĠBio": 26840, + "ĠBiology": 48132, + "ĠBir": 7145, + "ĠBiraz": 48542, + "ĠBird": 15931, + "ĠBirds": 41456, + "ĠBirmingham": 34673, + "ĠBirth": 24299, + "ĠBirthday": 29236, + "ĠBis": 25271, + "ĠBishop": 30113, + "ĠBism": 34594, + "ĠBit": 9101, + "ĠBitch": 40678, + "ĠBitcoin": 11414, + "ĠBite": 48012, + "ĠBitte": 42890, + "ĠBiz": 16619, + "ĠBizim": 45180, + "ĠBj": 49660, + "ĠBl": 2177, + "ĠBla": 18925, + "ĠBlack": 4076, + "ĠBlade": 32230, + "ĠBlair": 42157, + "ĠBlake": 23451, + "ĠBlaze": 49894, + "ĠBle": 30721, + "ĠBlend": 44836, + "ĠBless": 21562, + "ĠBlessed": 37501, + "ĠBlick": 32556, + "ĠBlind": 34126, + "ĠBliss": 50034, + "ĠBlizzard": 40976, + "ĠBlo": 9865, + "ĠBlock": 17500, + "ĠBlockchain": 48916, + "ĠBlog": 46693, + "ĠBlood": 17428, + "ĠBloody": 46877, + "ĠBloom": 25927, + "ĠBloomberg": 40363, + "ĠBlow": 46391, + "ĠBlue": 8510, + "ĠBlues": 44979, + "ĠBluetooth": 20286, + "ĠBo": 3286, + "ĠBoard": 10008, + "ĠBob": 6085, + "ĠBobby": 19573, + "ĠBock": 47672, + "ĠBod": 19482, + "ĠBoden": 34971, + "ĠBody": 21329, + "ĠBoeing": 30831, + "ĠBog": 24339, + "ĠBoh": 32484, + "ĠBol": 14331, + "ĠBold": 48954, + "ĠBolsonaro": 46710, + "ĠBolt": 37884, + "ĠBom": 19812, + "ĠBomb": 25463, + "ĠBon": 7368, + "ĠBond": 23604, + "ĠBone": 45915, + "ĠBong": 39813, + "ĠBonjour": 25431, + "ĠBonnie": 32170, + "ĠBonus": 44917, + "ĠBoo": 23351, + "ĠBook": 9476, + "ĠBooks": 33843, + "ĠBoom": 15523, + "ĠBoost": 43902, + "ĠBoot": 37263, + "ĠBor": 13739, + "ĠBora": 49967, + "ĠBorder": 36985, + "ĠBoris": 27158, + "ĠBorn": 29808, + "ĠBos": 22264, + "ĠBose": 45206, + "ĠBoss": 15215, + "ĠBoston": 12333, + "ĠBot": 25486, + "ĠBoth": 6767, + "ĠBots": 47224, + "ĠBott": 28479, + "ĠBottom": 38289, + "ĠBou": 43833, + "ĠBoulder": 48052, + "ĠBoule": 50121, + "ĠBour": 35866, + "ĠBow": 12903, + "ĠBowl": 25044, + "ĠBowser": 46102, + "ĠBox": 15112, + "ĠBoy": 9486, + "ĠBoys": 21963, + "ĠBr": 1603, + "ĠBra": 4991, + "ĠBrad": 11895, + "ĠBradley": 36607, + "ĠBrady": 31773, + "ĠBrah": 36569, + "ĠBrain": 29783, + "ĠBran": 45265, + "ĠBranch": 40482, + "ĠBrand": 11119, + "ĠBrandon": 22606, + "ĠBrasil": 14861, + "ĠBraun": 46939, + "ĠBrave": 38545, + "ĠBravo": 28861, + "ĠBrazil": 9435, + "ĠBrazilian": 23435, + "ĠBre": 7090, + "ĠBread": 35357, + "ĠBreak": 16925, + "ĠBreakfast": 45371, + "ĠBreaking": 36715, + "ĠBreat": 20093, + "ĠBreath": 38672, + "ĠBreathe": 36323, + "ĠBree": 49188, + "ĠBref": 49957, + "ĠBren": 31200, + "ĠBrend": 25425, + "ĠBrenda": 39610, + "ĠBrendan": 48484, + "ĠBrent": 31665, + "ĠBret": 42000, + "ĠBrett": 29447, + "ĠBrew": 42906, + "ĠBrexit": 24480, + "ĠBri": 32851, + "ĠBrian": 10765, + "ĠBrid": 30552, + "ĠBridge": 18917, + "ĠBrief": 39805, + "ĠBrig": 29675, + "ĠBright": 24271, + "ĠBrill": 30132, + "ĠBrilliant": 34007, + "ĠBring": 12842, + "ĠBringing": 45241, + "ĠBris": 30554, + "ĠBrisbane": 32222, + "ĠBristol": 41208, + "ĠBrit": 4760, + "ĠBritain": 12960, + "ĠBritish": 6221, + "ĠBritney": 46161, + "ĠBritt": 30750, + "ĠBrittany": 41067, + "ĠBro": 5425, + "ĠBroad": 14074, + "ĠBroadway": 19414, + "ĠBrock": 32093, + "ĠBroken": 46624, + "ĠBron": 19544, + "ĠBronx": 41862, + "ĠBronze": 44916, + "ĠBrook": 13945, + "ĠBrooke": 43092, + "ĠBrooklyn": 21872, + "ĠBrooks": 33493, + "ĠBros": 27651, + "ĠBrother": 8904, + "ĠBrothers": 19886, + "ĠBrown": 8030, + "ĠBru": 12792, + "ĠBruce": 15429, + "ĠBruno": 23046, + "ĠBrus": 32894, + "ĠBrush": 33142, + "ĠBrussels": 38717, + "ĠBry": 12812, + "ĠBryan": 23730, + "ĠBryant": 46466, + "ĠBryce": 35109, + "ĠBu": 4078, + "ĠBub": 25489, + "ĠBubble": 43072, + "ĠBuch": 25818, + "ĠBuck": 22006, + "ĠBud": 6384, + "ĠBudd": 8845, + "ĠBuddh": 13522, + "ĠBuddha": 16375, + "ĠBuddhism": 24744, + "ĠBuddhist": 22764, + "ĠBuddy": 27829, + "ĠBudget": 33751, + "ĠBueno": 16046, + "ĠBuenos": 38058, + "ĠBuff": 20254, + "ĠBuffalo": 33855, + "ĠBug": 23821, + "ĠBugün": 48017, + "ĠBuild": 11875, + "ĠBuilding": 18974, + "ĠBuilt": 49822, + "ĠBul": 19825, + "ĠBulgar": 31125, + "ĠBulgaria": 47737, + "ĠBull": 14131, + "ĠBullet": 44975, + "ĠBun": 14661, + "ĠBund": 10203, + "ĠBundes": 14031, + "ĠBundesregierung": 46876, + "ĠBundest": 43825, + "ĠBunny": 38803, + "ĠBunu": 35919, + "ĠBunun": 45160, + "ĠBur": 7031, + "ĠBurada": 43776, + "ĠBurch": 48370, + "ĠBureau": 19738, + "ĠBurg": 32911, + "ĠBurger": 28936, + "ĠBurke": 37396, + "ĠBurn": 18328, + "ĠBurning": 43905, + "ĠBurns": 41195, + "ĠBurton": 46011, + "ĠBus": 8006, + "ĠBusan": 43538, + "ĠBush": 15782, + "ĠBusiness": 10715, + "ĠBut": 583, + "ĠButler": 27571, + "ĠButt": 40801, + "ĠButter": 22646, + "ĠButton": 38435, + "ĠBuy": 19146, + "ĠBuzz": 29209, + "ĠBy": 3146, + "ĠBye": 4621, + "ĠByz": 41014, + "ĠBä": 47571, + "ĠBöyle": 30734, + "ĠBü": 37186, + "ĠBür": 22596, + "ĠBürger": 28514, + "ĠBÃľNDNIS": 25667, + "ĠC": 383, + "ĠCA": 22852, + "ĠCAD": 41143, + "ĠCAL": 50188, + "ĠCAM": 27040, + "ĠCAN": 22931, + "ĠCAP": 33636, + "ĠCAR": 15939, + "ĠCAS": 43268, + "ĠCAT": 41192, + "ĠCB": 18745, + "ĠCBD": 41584, + "ĠCBS": 35856, + "ĠCC": 12630, + "ĠCCP": 27876, + "ĠCCTV": 44838, + "ĠCD": 6743, + "ĠCDC": 17133, + "ĠCDU": 19181, + "ĠCDs": 45257, + "ĠCE": 28109, + "ĠCEO": 9282, + "ĠCEOs": 40736, + "ĠCF": 21792, + "ĠCG": 38007, + "ĠCGI": 48448, + "ĠCH": 5995, + "ĠCHA": 35732, + "ĠCHAN": 39235, + "ĠCHAR": 35494, + "ĠCHEERING": 45465, + "ĠCHRIS": 17353, + "ĠCI": 37777, + "ĠCIA": 25143, + "ĠCJ": 42285, + "ĠCL": 12855, + "ĠCM": 20424, + "ĠCMS": 33124, + "ĠCN": 14589, + "ĠCNC": 48714, + "ĠCNN": 24859, + "ĠCO": 3002, + "ĠCOB": 34812, + "ĠCOL": 31286, + "ĠCOM": 35074, + "ĠCOME": 49563, + "ĠCOMM": 36041, + "ĠCON": 16596, + "ĠCOP": 48988, + "ĠCOR": 43137, + "ĠCOSTA": 36537, + "ĠCOVID": 4566, + "ĠCP": 22431, + "ĠCPA": 48672, + "ĠCPR": 47536, + "ĠCPU": 13199, + "ĠCR": 14123, + "ĠCRA": 34425, + "ĠCRIS": 49256, + "ĠCS": 9460, + "ĠCSS": 24387, + "ĠCSV": 48814, + "ĠCT": 19529, + "ĠCU": 29777, + "ĠCV": 22995, + "ĠCa": 7544, + "ĠCab": 14704, + "ĠCabinet": 31398, + "ĠCad": 22323, + "ĠCada": 38603, + "ĠCaesar": 26678, + "ĠCaf": 46701, + "ĠCafe": 35864, + "ĠCage": 48677, + "ĠCai": 30983, + "ĠCait": 28250, + "ĠCaitlin": 50131, + "ĠCake": 36773, + "ĠCal": 3511, + "ĠCaleb": 30331, + "ĠCalendar": 43583, + "ĠCaliforn": 5284, + "ĠCalifornia": 5384, + "ĠCall": 7807, + "ĠCalled": 45001, + "ĠCalling": 44150, + "ĠCalm": 23086, + "ĠCalvin": 28025, + "ĠCam": 6886, + "ĠCamb": 29287, + "ĠCambodia": 47347, + "ĠCambridge": 24876, + "ĠCame": 36042, + "ĠCamera": 23734, + "ĠCameron": 24962, + "ĠCamp": 9189, + "ĠCampaign": 38256, + "ĠCampbell": 25914, + "ĠCampus": 28095, + "ĠCan": 1664, + "ĠCanad": 10380, + "ĠCanada": 6309, + "ĠCanadian": 12641, + "ĠCanadians": 30053, + "ĠCanal": 38250, + "ĠCancer": 26127, + "ĠCand": 20466, + "ĠCandy": 31470, + "ĠCann": 29866, + "ĠCannon": 43102, + "ĠCanon": 27666, + "ĠCant": 26697, + "ĠCanton": 44170, + "ĠCanvas": 25725, + "ĠCanyon": 29170, + "ĠCao": 38176, + "ĠCap": 8363, + "ĠCape": 27517, + "ĠCapital": 21502, + "ĠCapitol": 25081, + "ĠCapt": 9480, + "ĠCaptain": 10873, + "ĠCar": 2741, + "ĠCara": 33006, + "ĠCarbon": 31453, + "ĠCard": 11877, + "ĠCare": 9532, + "ĠCareer": 31690, + "ĠCareful": 32932, + "ĠCarib": 23438, + "ĠCaribbean": 24356, + "ĠCarl": 14256, + "ĠCarla": 41325, + "ĠCarlo": 45112, + "ĠCarlos": 19646, + "ĠCarm": 44530, + "ĠCarmen": 35778, + "ĠCarn": 32254, + "ĠCarne": 42799, + "ĠCarnegie": 47301, + "ĠCarney": 29351, + "ĠCaro": 37265, + "ĠCarol": 7925, + "ĠCarolina": 11480, + "ĠCaroline": 30245, + "ĠCarolyn": 42731, + "ĠCarr": 17715, + "ĠCarrie": 34654, + "ĠCarroll": 48456, + "ĠCarry": 44168, + "ĠCars": 43595, + "ĠCarson": 38731, + "ĠCart": 22478, + "ĠCarter": 21622, + "ĠCarwyn": 47021, + "ĠCas": 16100, + "ĠCasa": 44843, + "ĠCase": 17791, + "ĠCasey": 27369, + "ĠCash": 27016, + "ĠCass": 18208, + "ĠCast": 11019, + "ĠCastle": 21076, + "ĠCastro": 43221, + "ĠCat": 9565, + "ĠCatal": 24994, + "ĠCatalunya": 46039, + "ĠCatch": 23869, + "ĠCath": 8764, + "ĠCathedral": 46794, + "ĠCatherine": 23098, + "ĠCatholic": 11981, + "ĠCatholics": 36333, + "ĠCathy": 39799, + "ĠCats": 40902, + "ĠCau": 49788, + "ĠCauc": 44044, + "ĠCaucas": 44941, + "ĠCause": 10865, + "ĠCav": 28066, + "ĠCave": 41100, + "ĠCay": 38287, + "ĠCe": 8257, + "ĠCec": 38807, + "ĠCel": 19967, + "ĠCela": 37348, + "ĠCelebr": 30413, + "ĠCeline": 42704, + "ĠCell": 28859, + "ĠCelsius": 22658, + "ĠCelt": 44591, + "ĠCem": 48852, + "ĠCen": 38065, + "ĠCena": 48131, + "ĠCensus": 34273, + "ĠCent": 3408, + "ĠCenter": 5169, + "ĠCenters": 41911, + "ĠCentral": 9701, + "ĠCentre": 20764, + "ĠCentury": 28555, + "ĠCer": 26402, + "ĠCert": 31036, + "ĠCertain": 13407, + "ĠCertainly": 16628, + "ĠCes": 28414, + "ĠCette": 25556, + "ĠCh": 761, + "ĠCha": 12374, + "ĠChad": 22268, + "ĠChain": 33252, + "ĠChair": 8678, + "ĠChairman": 17866, + "ĠChall": 14398, + "ĠChallenge": 17517, + "ĠCham": 18054, + "ĠChamber": 25401, + "ĠChamp": 9863, + "ĠChampion": 23160, + "ĠChampions": 14391, + "ĠChampionship": 24310, + "ĠChampionships": 46917, + "ĠChan": 16064, + "ĠChance": 16428, + "ĠChancellor": 24778, + "ĠChand": 32244, + "ĠChanel": 42698, + "ĠChang": 17179, + "ĠChange": 15060, + "ĠChanging": 45773, + "ĠChannel": 13553, + "ĠChaos": 32644, + "ĠChap": 24187, + "ĠChapel": 48203, + "ĠChapter": 18874, + "ĠChar": 4327, + "ĠCharacter": 36786, + "ĠCharge": 40546, + "ĠCharl": 14130, + "ĠCharles": 10523, + "ĠCharlie": 13754, + "ĠCharlotte": 19059, + "ĠChart": 49762, + "ĠChase": 21384, + "ĠChat": 27503, + "ĠChe": 3351, + "ĠCheck": 6881, + "ĠCheer": 39899, + "ĠCheers": 13006, + "ĠCheese": 23738, + "ĠChef": 14447, + "ĠChel": 24345, + "ĠChelsea": 26527, + "ĠChem": 21357, + "ĠChemical": 42754, + "ĠChemistry": 46038, + "ĠChen": 13682, + "ĠCheng": 24363, + "ĠCher": 14825, + "ĠChern": 49504, + "ĠCherry": 34831, + "ĠCheryl": 38331, + "ĠChest": 47981, + "ĠChev": 44236, + "ĠChevy": 49426, + "ĠChi": 17730, + "ĠChic": 9010, + "ĠChicago": 9525, + "ĠChick": 38930, + "ĠChicken": 16765, + "ĠChief": 10068, + "ĠChild": 9004, + "ĠChildren": 13354, + "ĠChile": 22238, + "ĠChili": 45624, + "ĠChill": 41368, + "ĠChin": 4430, + "ĠChina": 3533, + "ĠChinese": 4649, + "ĠChing": 47818, + "ĠChip": 29751, + "ĠChloe": 29694, + "ĠCho": 12366, + "ĠChocolate": 26832, + "ĠChoi": 33479, + "ĠChoice": 37080, + "ĠChong": 43040, + "ĠChoose": 21661, + "ĠChop": 25615, + "ĠChr": 1721, + "ĠChris": 6688, + "ĠChrist": 2040, + "ĠChristian": 5778, + "ĠChristianity": 17326, + "ĠChristians": 12254, + "ĠChristie": 46111, + "ĠChristina": 25466, + "ĠChristine": 24038, + "ĠChristmas": 5272, + "ĠChristopher": 20649, + "ĠChrome": 15327, + "ĠChron": 34038, + "ĠChry": 43183, + "ĠChu": 25585, + "ĠChuck": 21607, + "ĠChun": 32527, + "ĠChung": 38314, + "ĠChurch": 7882, + "ĠChurchill": 39837, + "ĠCi": 20188, + "ĠCiao": 28473, + "ĠCin": 18310, + "ĠCinc": 44142, + "ĠCincinn": 45323, + "ĠCincinnati": 45951, + "ĠCind": 23863, + "ĠCinderella": 47980, + "ĠCindy": 32185, + "ĠCinema": 42502, + "ĠCinnamon": 40446, + "ĠCir": 13791, + "ĠCirc": 28938, + "ĠCircle": 29381, + "ĠCircuit": 36939, + "ĠCisco": 38528, + "ĠCit": 18435, + "ĠCities": 36672, + "ĠCitizen": 44371, + "ĠCitizens": 44120, + "ĠCity": 4392, + "ĠCiv": 35452, + "ĠCivic": 46237, + "ĠCivil": 13405, + "ĠCl": 2033, + "ĠCla": 12947, + "ĠClaire": 22605, + "ĠClan": 45117, + "ĠClap": 45297, + "ĠClar": 28410, + "ĠClara": 32048, + "ĠClark": 18572, + "ĠClaro": 33380, + "ĠClass": 9471, + "ĠClassic": 25008, + "ĠClaud": 24858, + "ĠClaudia": 36785, + "ĠClaus": 33153, + "ĠClay": 21392, + "ĠCle": 8834, + "ĠClean": 18463, + "ĠClear": 14993, + "ĠClearly": 24120, + "ĠClement": 49517, + "ĠCler": 36984, + "ĠClerk": 45175, + "ĠCleveland": 27846, + "ĠClick": 8230, + "ĠCliff": 33638, + "ĠClimate": 27025, + "ĠClin": 24240, + "ĠClinic": 37918, + "ĠClinical": 47942, + "ĠClint": 45311, + "ĠClinton": 15445, + "ĠClo": 31901, + "ĠClock": 46986, + "ĠClone": 45536, + "ĠClose": 16346, + "ĠCloud": 8061, + "ĠClub": 11288, + "ĠCly": 44752, + "ĠCo": 3066, + "ĠCoach": 17369, + "ĠCoalition": 40586, + "ĠCoast": 14960, + "ĠCob": 31395, + "ĠCoc": 30430, + "ĠCoca": 32719, + "ĠCock": 39410, + "ĠCoco": 29787, + "ĠCoconut": 45875, + "ĠCode": 15549, + "ĠCody": 34524, + "ĠCoffee": 25481, + "ĠCoh": 29000, + "ĠCohen": 32968, + "ĠCoin": 39054, + "ĠCoke": 32996, + "ĠCol": 4004, + "ĠCola": 48037, + "ĠCold": 16918, + "ĠCole": 20394, + "ĠColeman": 49930, + "ĠColin": 29253, + "ĠColl": 4586, + "ĠCollabor": 44483, + "ĠCollect": 31896, + "ĠCollection": 30981, + "ĠCollege": 6745, + "ĠCollins": 27973, + "ĠColomb": 18514, + "ĠColombia": 22677, + "ĠColon": 21408, + "ĠColonel": 28478, + "ĠColor": 10458, + "ĠColorado": 15786, + "ĠColumb": 13056, + "ĠColumbia": 17339, + "ĠColumbus": 31258, + "ĠCom": 2432, + "ĠComb": 25939, + "ĠCombat": 41019, + "ĠCome": 2492, + "ĠComedy": 47217, + "ĠComes": 47290, + "ĠComic": 40945, + "ĠComics": 43533, + "ĠComing": 12473, + "ĠComm": 3046, + "ĠCommand": 17901, + "ĠCommander": 20857, + "ĠComme": 24308, + "ĠComment": 16328, + "ĠCommerce": 34493, + "ĠCommercial": 47171, + "ĠCommission": 10766, + "ĠCommissioner": 25410, + "ĠCommittee": 11556, + "ĠCommon": 18235, + "ĠCommons": 34894, + "ĠCommonwealth": 35295, + "ĠComms": 42664, + "ĠCommun": 6800, + "ĠCommunication": 34930, + "ĠCommunications": 38998, + "ĠCommunist": 23253, + "ĠCommunity": 10421, + "ĠComo": 11913, + "ĠComp": 6620, + "ĠCompan": 31827, + "ĠCompanies": 44031, + "ĠCompany": 13918, + "ĠCompare": 48523, + "ĠCompared": 30539, + "ĠCompass": 50179, + "ĠCompet": 32216, + "ĠCompetition": 43634, + "ĠCompl": 33736, + "ĠComplet": 31804, + "ĠComplete": 34687, + "ĠCompletely": 39978, + "ĠComplex": 41184, + "ĠComput": 37804, + "ĠComputer": 22289, + "ĠCon": 2656, + "ĠConan": 47691, + "ĠConc": 18200, + "ĠConcept": 47482, + "ĠCond": 21793, + "ĠConf": 11701, + "ĠConfeder": 31201, + "ĠConfederate": 45000, + "ĠConference": 22131, + "ĠConfig": 44151, + "ĠCong": 4280, + "ĠCongo": 42839, + "ĠCongrats": 40219, + "ĠCongratulations": 9694, + "ĠCongress": 6426, + "ĠCongressman": 38071, + "ĠConnect": 11653, + "ĠConnecticut": 29433, + "ĠConnie": 49558, + "ĠConnor": 33133, + "ĠCons": 6923, + "ĠConse": 39706, + "ĠConserv": 26870, + "ĠConservation": 40131, + "ĠConservative": 46054, + "ĠConsider": 17416, + "ĠConsidering": 33854, + "ĠConsole": 44152, + "ĠConsort": 31719, + "ĠConst": 8574, + "ĠConstant": 37413, + "ĠConstitution": 14505, + "ĠConstruction": 40017, + "ĠConsult": 40057, + "ĠConsumer": 39494, + "ĠCont": 4839, + "ĠContact": 30683, + "ĠContain": 43732, + "ĠContent": 30078, + "ĠContin": 14674, + "ĠContinue": 24472, + "ĠContinuing": 47585, + "ĠContract": 44659, + "ĠControl": 12912, + "ĠController": 44969, + "ĠConven": 45992, + "ĠConvention": 26793, + "ĠConvers": 33247, + "ĠCook": 12259, + "ĠCookie": 42011, + "ĠCooking": 36647, + "ĠCool": 8561, + "ĠCooper": 20355, + "ĠCoordin": 39620, + "ĠCoordinator": 47173, + "ĠCop": 11579, + "ĠCopenh": 50135, + "ĠCopper": 47243, + "ĠCopy": 25653, + "ĠCor": 3925, + "ĠCord": 40267, + "ĠCore": 14798, + "ĠCorey": 39136, + "ĠCorin": 25567, + "ĠCorinth": 29455, + "ĠCorinthians": 34778, + "ĠCorn": 21590, + "ĠCornell": 43257, + "ĠCorner": 42391, + "ĠCoron": 24199, + "ĠCorona": 18075, + "ĠCoronavirus": 32737, + "ĠCorpor": 19665, + "ĠCorporation": 26464, + "ĠCorps": 20169, + "ĠCorrect": 12753, + "ĠCort": 28522, + "ĠCory": 41695, + "ĠCos": 15855, + "ĠCost": 20863, + "ĠCosta": 28440, + "ĠCostco": 43453, + "ĠCott": 35485, + "ĠCotton": 46195, + "ĠCou": 26180, + "ĠCould": 7497, + "ĠCouldn": 35800, + "ĠCoun": 4780, + "ĠCouncil": 7076, + "ĠCouncill": 10778, + "ĠCouncillor": 11731, + "ĠCouncillors": 44912, + "ĠCounsel": 35157, + "ĠCount": 5247, + "ĠCounter": 35607, + "ĠCountry": 23216, + "ĠCounty": 6658, + "ĠCouple": 38266, + "ĠCour": 6413, + "ĠCourse": 27327, + "ĠCourt": 7873, + "ĠCourtney": 33489, + "ĠCover": 19106, + "ĠCovid": 14633, + "ĠCow": 21933, + "ĠCox": 41576, + "ĠCr": 4779, + "ĠCra": 11138, + "ĠCraft": 29991, + "ĠCraig": 19732, + "ĠCrash": 31787, + "ĠCraw": 37877, + "ĠCrazy": 22509, + "ĠCre": 9549, + "ĠCream": 25358, + "ĠCreat": 11972, + "ĠCreate": 20248, + "ĠCreating": 40002, + "ĠCreation": 42874, + "ĠCreative": 26598, + "ĠCreator": 28208, + "ĠCred": 47560, + "ĠCredit": 36006, + "ĠCreed": 39103, + "ĠCreek": 24200, + "ĠCreo": 40640, + "ĠCrew": 29857, + "ĠCrim": 30691, + "ĠCrime": 26140, + "ĠCrimea": 48495, + "ĠCriminal": 43698, + "ĠCrisis": 42846, + "ĠCrisp": 49077, + "ĠCrist": 23199, + "ĠCristo": 36524, + "ĠCrit": 23202, + "ĠCritical": 39482, + "ĠCro": 18965, + "ĠCroat": 37614, + "ĠCroatia": 50186, + "ĠCross": 11623, + "ĠCrossing": 41675, + "ĠCrow": 27072, + "ĠCrowd": 40110, + "ĠCrown": 22375, + "ĠCru": 13586, + "ĠCruise": 39165, + "ĠCrunch": 44233, + "ĠCrus": 34484, + "ĠCrush": 44211, + "ĠCruz": 23008, + "ĠCry": 12267, + "ĠCrypt": 34809, + "ĠCrystal": 23489, + "ĠCtrl": 35233, + "ĠCu": 13205, + "ĠCuando": 21907, + "ĠCub": 21300, + "ĠCuba": 20604, + "ĠCuban": 31547, + "ĠCube": 33003, + "ĠCul": 49037, + "ĠCult": 41550, + "ĠCultural": 31450, + "ĠCulture": 27539, + "ĠCum": 26337, + "ĠCup": 13751, + "ĠCur": 7907, + "ĠCuriosity": 48998, + "ĠCurrent": 15629, + "ĠCurrently": 19964, + "ĠCurry": 34789, + "ĠCurt": 26587, + "ĠCurtis": 42140, + "ĠCustom": 16649, + "ĠCustomer": 37168, + "ĠCut": 9431, + "ĠCute": 29121, + "ĠCuz": 27017, + "ĠCy": 10295, + "ĠCyber": 22935, + "ĠCyberpunk": 46927, + "ĠCycl": 49173, + "ĠCynthia": 38163, + "ĠCyr": 33146, + "ĠCyrus": 47439, + "ĠCzech": 25227, + "ĠCzy": 19832, + "ĠCzyli": 37099, + "ĠCó": 41306, + "ĠD": 413, + "ĠDA": 9578, + "ĠDAC": 39038, + "ĠDAM": 48093, + "ĠDAN": 15331, + "ĠDANIEL": 38958, + "ĠDAR": 49274, + "ĠDAVID": 16764, + "ĠDAY": 27665, + "ĠDB": 26754, + "ĠDC": 9114, + "ĠDD": 30778, + "ĠDDR": 49272, + "ĠDE": 10113, + "ĠDENNIS": 47172, + "ĠDES": 27083, + "ĠDF": 48336, + "ĠDH": 28606, + "ĠDI": 11953, + "ĠDID": 35345, + "ĠDIE": 32188, + "ĠDIRE": 32990, + "ĠDIRECTOR": 35929, + "ĠDIS": 49028, + "ĠDIY": 22194, + "ĠDJ": 13078, + "ĠDK": 31934, + "ĠDLC": 30272, + "ĠDM": 15322, + "ĠDN": 21500, + "ĠDNA": 8272, + "ĠDNS": 35153, + "ĠDO": 10699, + "ĠDOM": 35727, + "ĠDON": 20403, + "ĠDOT": 50142, + "ĠDOU": 45723, + "ĠDOWN": 48897, + "ĠDP": 42796, + "ĠDR": 12118, + "ĠDS": 15816, + "ĠDU": 28423, + "ĠDV": 17021, + "ĠDVD": 21187, + "ĠDW": 45318, + "ĠDX": 48817, + "ĠDY": 48427, + "ĠDa": 3933, + "ĠDaar": 29883, + "ĠDabei": 39606, + "ĠDad": 5639, + "ĠDaddy": 15323, + "ĠDae": 42361, + "ĠDaf": 31582, + "ĠDafür": 35865, + "ĠDag": 41866, + "ĠDah": 36977, + "ĠDaha": 35658, + "ĠDai": 39521, + "ĠDaily": 19685, + "ĠDais": 31109, + "ĠDaisy": 37472, + "ĠDak": 18051, + "ĠDakota": 22429, + "ĠDal": 17357, + "ĠDale": 31329, + "ĠDallas": 22923, + "ĠDam": 5885, + "ĠDamas": 49327, + "ĠDame": 34447, + "ĠDamen": 21131, + "ĠDamit": 24495, + "ĠDamn": 11907, + "ĠDamon": 47197, + "ĠDan": 3394, + "ĠDana": 23759, + "ĠDance": 16114, + "ĠDancing": 36890, + "ĠDang": 29580, + "ĠDanger": 36619, + "ĠDani": 42136, + "ĠDaniel": 8033, + "ĠDanielle": 21182, + "ĠDanish": 36944, + "ĠDank": 14148, + "ĠDanke": 26508, + "ĠDann": 7455, + "ĠDanny": 16682, + "ĠDans": 16897, + "ĠDante": 35602, + "ĠDar": 7803, + "ĠDare": 42320, + "ĠDark": 9563, + "ĠDarkness": 38198, + "ĠDarling": 38697, + "ĠDarr": 44007, + "ĠDarren": 36691, + "ĠDarrin": 47368, + "ĠDart": 30271, + "ĠDarth": 40696, + "ĠDartmouth": 47883, + "ĠDarwin": 30233, + "ĠDas": 2846, + "ĠDash": 23453, + "ĠDass": 22306, + "ĠDat": 9315, + "ĠData": 11888, + "ĠDatab": 40461, + "ĠDate": 31805, + "ĠDaten": 31126, + "ĠDav": 3724, + "ĠDave": 11017, + "ĠDavid": 4389, + "ĠDavidson": 44401, + "ĠDavis": 15658, + "ĠDaw": 28407, + "ĠDawn": 26001, + "ĠDay": 5226, + "ĠDays": 26007, + "ĠDayton": 44718, + "ĠDazu": 34667, + "ĠDe": 1346, + "ĠDead": 12550, + "ĠDeadpool": 45493, + "ĠDeaf": 31389, + "ĠDeal": 27227, + "ĠDean": 13324, + "ĠDear": 14383, + "ĠDeath": 13703, + "ĠDeb": 27347, + "ĠDebat": 42167, + "ĠDebatte": 48930, + "ĠDebbie": 35834, + "ĠDeborah": 39695, + "ĠDec": 12427, + "ĠDecember": 7687, + "ĠDeck": 38196, + "ĠDeclaration": 40844, + "ĠDed": 41300, + "ĠDee": 38894, + "ĠDeep": 14895, + "ĠDef": 9548, + "ĠDefence": 43291, + "ĠDefense": 17410, + "ĠDefin": 46245, + "ĠDefinitely": 12151, + "ĠDeixa": 46589, + "ĠDel": 5831, + "ĠDelaware": 37655, + "ĠDelete": 49452, + "ĠDelhi": 26680, + "ĠDelicious": 28518, + "ĠDell": 33319, + "ĠDelta": 18183, + "ĠDem": 4686, + "ĠDemocr": 7141, + "ĠDemocracy": 43062, + "ĠDemocrat": 27827, + "ĠDemocratic": 14928, + "ĠDemocrats": 12217, + "ĠDemokrat": 27802, + "ĠDemokraten": 41139, + "ĠDemon": 29683, + "ĠDen": 6458, + "ĠDenis": 45351, + "ĠDenise": 38133, + "ĠDenmark": 28065, + "ĠDenn": 19027, + "ĠDennis": 23376, + "ĠDent": 41622, + "ĠDenver": 26270, + "ĠDep": 4056, + "ĠDepartment": 5982, + "ĠDepending": 22539, + "ĠDepois": 34231, + "ĠDepot": 45445, + "ĠDepression": 33044, + "ĠDeputy": 21560, + "ĠDer": 5618, + "ĠDerek": 22887, + "ĠDes": 3885, + "ĠDesde": 37985, + "ĠDesert": 33340, + "ĠDeshalb": 27969, + "ĠDesign": 12748, + "ĠDesigner": 48027, + "ĠDesktop": 49044, + "ĠDesp": 9891, + "ĠDespite": 11334, + "ĠDespués": 40995, + "ĠDest": 16339, + "ĠDestiny": 31898, + "ĠDestroy": 41719, + "ĠDeswegen": 24864, + "ĠDet": 4237, + "ĠDetails": 42811, + "ĠDetective": 35210, + "ĠDetroit": 20887, + "ĠDeus": 15057, + "ĠDeuts": 10514, + "ĠDeutsch": 12699, + "ĠDeutsche": 45567, + "ĠDeutschen": 45070, + "ĠDeutschland": 14802, + "ĠDev": 9096, + "ĠDevOps": 43051, + "ĠDevelop": 11442, + "ĠDeveloper": 44915, + "ĠDevelopment": 15041, + "ĠDevi": 48565, + "ĠDevice": 50140, + "ĠDevil": 25221, + "ĠDew": 43079, + "ĠDh": 34414, + "ĠDharma": 40552, + "ĠDi": 8789, + "ĠDia": 22157, + "ĠDial": 29658, + "ĠDiam": 21706, + "ĠDiamond": 26593, + "ĠDiana": 21470, + "ĠDiane": 30460, + "ĠDick": 18754, + "ĠDid": 2589, + "ĠDidn": 11151, + "ĠDie": 3229, + "ĠDiego": 16377, + "ĠDienst": 43932, + "ĠDies": 10796, + "ĠDiese": 18993, + "ĠDiesel": 47037, + "ĠDieser": 39609, + "ĠDieses": 39201, + "ĠDiet": 29606, + "ĠDieu": 25610, + "ĠDif": 35940, + "ĠDifferent": 20825, + "ĠDig": 10976, + "ĠDigital": 15522, + "ĠDil": 36475, + "ĠDim": 20975, + "ĠDin": 27156, + "ĠDing": 20558, + "ĠDinge": 25102, + "ĠDingen": 49351, + "ĠDinner": 46678, + "ĠDion": 45212, + "ĠDios": 21838, + "ĠDip": 33486, + "ĠDir": 34422, + "ĠDire": 5822, + "ĠDirect": 18308, + "ĠDirector": 7680, + "ĠDirectory": 49598, + "ĠDis": 4208, + "ĠDisability": 47636, + "ĠDisc": 19839, + "ĠDiscord": 32623, + "ĠDiscover": 40386, + "ĠDiscovery": 34129, + "ĠDise": 30161, + "ĠDisease": 35360, + "ĠDisk": 30609, + "ĠDiskuss": 45963, + "ĠDisney": 8653, + "ĠDisneyland": 34797, + "ĠDisplay": 32229, + "ĠDist": 9840, + "ĠDistrict": 14374, + "ĠDit": 25270, + "ĠDiv": 9886, + "ĠDiversity": 44187, + "ĠDivine": 26098, + "ĠDivision": 17183, + "ĠDj": 33464, + "ĠDlatego": 47184, + "ĠDo": 1144, + "ĠDob": 29679, + "ĠDoc": 16024, + "ĠDoch": 21533, + "ĠDocker": 33772, + "ĠDoctor": 10143, + "ĠDoctors": 39090, + "ĠDocument": 37684, + "ĠDod": 26904, + "ĠDodge": 41883, + "ĠDoes": 4402, + "ĠDoesn": 12955, + "ĠDog": 13472, + "ĠDogs": 35504, + "ĠDoing": 18496, + "ĠDok": 29768, + "ĠDol": 18786, + "ĠDoll": 20059, + "ĠDollar": 32370, + "ĠDom": 16674, + "ĠDomin": 18027, + "ĠDominican": 45486, + "ĠDon": 1468, + "ĠDonald": 8632, + "ĠDonc": 7477, + "ĠDoncs": 38641, + "ĠDone": 18658, + "ĠDong": 13609, + "ĠDonkey": 44217, + "ĠDonna": 31938, + "ĠDont": 49271, + "ĠDoo": 46612, + "ĠDoom": 30168, + "ĠDoor": 29636, + "ĠDop": 42657, + "ĠDor": 13643, + "ĠDorothy": 41105, + "ĠDort": 32308, + "ĠDos": 33474, + "ĠDot": 38753, + "ĠDou": 13200, + "ĠDouble": 16633, + "ĠDoug": 12742, + "ĠDouglas": 23010, + "ĠDow": 20947, + "ĠDown": 9506, + "ĠDownload": 32282, + "ĠDownt": 44386, + "ĠDowntown": 49255, + "ĠDoy": 40059, + "ĠDr": 2491, + "ĠDra": 15971, + "ĠDracula": 48950, + "ĠDrag": 8832, + "ĠDragon": 11517, + "ĠDragons": 37437, + "ĠDrake": 27465, + "ĠDrama": 45406, + "ĠDraw": 20386, + "ĠDre": 31635, + "ĠDream": 12105, + "ĠDreams": 41887, + "ĠDrew": 25550, + "ĠDri": 19150, + "ĠDrink": 24529, + "ĠDrive": 15622, + "ĠDriver": 36048, + "ĠDriving": 44028, + "ĠDro": 35305, + "ĠDrop": 17675, + "ĠDru": 36744, + "ĠDruck": 33320, + "ĠDrug": 35806, + "ĠDrum": 40320, + "ĠDry": 31562, + "ĠDu": 5153, + "ĠDual": 37625, + "ĠDub": 16488, + "ĠDubai": 29100, + "ĠDublin": 42323, + "ĠDuch": 44267, + "ĠDuck": 29266, + "ĠDud": 42622, + "ĠDude": 12042, + "ĠDue": 18980, + "ĠDuke": 17380, + "ĠDul": 50115, + "ĠDum": 29572, + "ĠDun": 11959, + "ĠDuncan": 31942, + "ĠDunk": 47183, + "ĠDuo": 46123, + "ĠDur": 13710, + "ĠDurch": 28557, + "ĠDurham": 46540, + "ĠDuring": 6842, + "ĠDus": 17916, + "ĠDust": 26483, + "ĠDustin": 46782, + "ĠDutch": 15719, + "ĠDuty": 33045, + "ĠDuygusal": 50090, + "ĠDw": 41448, + "ĠDy": 31193, + "ĠDylan": 28160, + "ĠDynam": 22947, + "ĠDynamic": 45440, + "ĠDynasty": 37339, + "ĠDz": 39448, + "ĠDziÄĻkujÄĻ": 43721, + "ĠDá": 49794, + "ĠDär": 40291, + "ĠDÃ¥": 26339, + "ĠDé": 31153, + "ĠDü": 41835, + "ĠE": 462, + "ĠEA": 35747, + "ĠEB": 50148, + "ĠEC": 19081, + "ĠED": 18050, + "ĠEE": 33685, + "ĠEH": 39416, + "ĠEK": 46078, + "ĠEL": 14426, + "ĠEM": 16237, + "ĠEN": 15244, + "ĠEP": 25330, + "ĠEPA": 27447, + "ĠEQ": 33580, + "ĠER": 14929, + "ĠERIC": 36137, + "ĠES": 12564, + "ĠEST": 47140, + "ĠET": 36953, + "ĠETF": 37436, + "ĠEU": 10887, + "ĠEV": 15733, + "ĠEVER": 27843, + "ĠEVERY": 35163, + "ĠEX": 16385, + "ĠEach": 6947, + "ĠEagle": 27926, + "ĠEagles": 48807, + "ĠEar": 3929, + "ĠEarl": 38936, + "ĠEarlier": 24552, + "ĠEarly": 18344, + "ĠEarn": 24820, + "ĠEarnest": 28214, + "ĠEarth": 4755, + "ĠEas": 46879, + "ĠEast": 6747, + "ĠEaster": 9403, + "ĠEastern": 12901, + "ĠEasy": 16002, + "ĠEat": 14429, + "ĠEating": 29234, + "ĠEb": 20418, + "ĠEbola": 37846, + "ĠEc": 28993, + "ĠEcho": 31887, + "ĠEck": 46354, + "ĠEco": 40263, + "ĠEconom": 14821, + "ĠEconomic": 25776, + "ĠEconomics": 39024, + "ĠEconomy": 48223, + "ĠEcu": 40675, + "ĠEcuador": 41558, + "ĠEd": 3977, + "ĠEddie": 23911, + "ĠEddy": 35062, + "ĠEden": 35322, + "ĠEdgar": 42981, + "ĠEdge": 19328, + "ĠEdin": 39697, + "ĠEdinburgh": 41215, + "ĠEdison": 47497, + "ĠEdit": 33241, + "ĠEdition": 25301, + "ĠEditor": 24281, + "ĠEdu": 31900, + "ĠEduardo": 45819, + "ĠEduc": 9517, + "ĠEducation": 10680, + "ĠEdward": 18456, + "ĠEdwards": 35836, + "ĠEe": 25046, + "ĠEen": 25374, + "ĠEf": 31840, + "ĠEfendi": 43472, + "ĠEfendimiz": 50120, + "ĠEff": 34192, + "ĠEffect": 17764, + "ĠEffects": 34515, + "ĠEg": 43515, + "ĠEgg": 16960, + "ĠEggs": 42486, + "ĠEgypt": 9582, + "ĠEgyptian": 24257, + "ĠEgyptians": 44119, + "ĠEh": 9663, + "ĠEi": 29786, + "ĠEig": 40561, + "ĠEigen": 30586, + "ĠEight": 17708, + "ĠEin": 6391, + "ĠEine": 17664, + "ĠEink": 49128, + "ĠEins": 22790, + "ĠEinsatz": 38474, + "ĠEinstein": 23486, + "ĠEis": 43174, + "ĠEisen": 35619, + "ĠEither": 13746, + "ĠEk": 33089, + "ĠEl": 2699, + "ĠEla": 17637, + "ĠElaine": 42322, + "ĠEld": 19705, + "ĠElder": 28390, + "ĠEle": 8024, + "ĠElect": 12575, + "ĠElection": 45074, + "ĠElectric": 24677, + "ĠElectronic": 46921, + "ĠElekt": 40321, + "ĠElement": 20900, + "ĠElementary": 33099, + "ĠElena": 39603, + "ĠEles": 31096, + "ĠEleven": 48548, + "ĠEli": 16943, + "ĠElijah": 36147, + "ĠEliot": 44023, + "ĠElise": 40545, + "ĠElite": 34404, + "ĠEliz": 11991, + "ĠElizabeth": 12978, + "ĠEll": 8353, + "ĠElla": 29261, + "ĠElle": 16227, + "ĠEllen": 20306, + "ĠEller": 45719, + "ĠElli": 40612, + "ĠEllie": 27151, + "ĠElliot": 38986, + "ĠElliott": 46170, + "ĠEllis": 38171, + "ĠElmo": 38722, + "ĠElo": 41784, + "ĠElon": 28498, + "ĠEls": 33437, + "ĠElsa": 36342, + "ĠElse": 45472, + "ĠEltern": 29101, + "ĠElvis": 39944, + "ĠEm": 3968, + "ĠEmail": 49482, + "ĠEmb": 24234, + "ĠEmbassy": 49637, + "ĠEmer": 18477, + "ĠEmergency": 30524, + "ĠEmil": 36983, + "ĠEmily": 15034, + "ĠEmin": 40695, + "ĠEmir": 38426, + "ĠEmm": 28237, + "ĠEmma": 17124, + "ĠEmmanuel": 44421, + "ĠEmmy": 45580, + "ĠEmp": 8599, + "ĠEmperor": 17913, + "ĠEmpire": 12197, + "ĠEmploy": 26878, + "ĠEmpress": 28559, + "ĠEn": 2193, + "ĠEnc": 29584, + "ĠEnd": 6967, + "ĠEnde": 15152, + "ĠEnemy": 48886, + "ĠEner": 11132, + "ĠEnerg": 48195, + "ĠEnergie": 35309, + "ĠEnergy": 14939, + "ĠEnfin": 35861, + "ĠEng": 2469, + "ĠEngagement": 43931, + "ĠEngine": 7659, + "ĠEngineer": 15808, + "ĠEngineering": 16215, + "ĠEngineers": 43950, + "ĠEngland": 8196, + "ĠEnglish": 3669, + "ĠEnjoy": 15411, + "ĠEnlight": 46037, + "ĠEnough": 19401, + "ĠEns": 25979, + "ĠEnsuite": 37366, + "ĠEnt": 3951, + "ĠEnter": 10399, + "ĠEnterprise": 26696, + "ĠEntertain": 24684, + "ĠEntertainment": 25758, + "ĠEntonces": 15097, + "ĠEntre": 27979, + "ĠEntreprene": 49049, + "ĠEntscheid": 30862, + "ĠEntscheidung": 44667, + "ĠEntwick": 29397, + "ĠEntwicklung": 39654, + "ĠEntão": 6469, + "ĠEnviron": 19286, + "ĠEnvironment": 35354, + "ĠEnvironmental": 27813, + "ĠEp": 9970, + "ĠEph": 35445, + "ĠEpic": 26785, + "ĠEpisode": 19882, + "ĠEqu": 15624, + "ĠEquity": 47675, + "ĠEr": 3300, + "ĠEra": 23071, + "ĠErde": 43720, + "ĠEren": 49479, + "ĠErfahr": 34137, + "ĠErfahrung": 49318, + "ĠErfolg": 45232, + "ĠErgeb": 34657, + "ĠErgebnis": 46229, + "ĠEric": 9336, + "ĠErica": 37429, + "ĠErik": 33143, + "ĠErin": 27983, + "ĠErm": 45794, + "ĠErn": 24147, + "ĠErst": 31183, + "ĠEs": 2313, + "ĠEsc": 30379, + "ĠEscape": 42960, + "ĠEso": 27795, + "ĠEsp": 24978, + "ĠEspa": 27907, + "ĠEspaña": 31729, + "ĠEspecially": 8545, + "ĠEsper": 24142, + "ĠEspero": 41831, + "ĠEss": 14357, + "ĠEssa": 22818, + "ĠEsse": 18814, + "ĠEssen": 42098, + "ĠEssential": 49736, + "ĠEssentially": 23596, + "ĠEst": 4410, + "ĠEsta": 20547, + "ĠEstado": 29740, + "ĠEstados": 22362, + "ĠEstamos": 34563, + "ĠEstate": 48097, + "ĠEste": 16105, + "ĠEsther": 37731, + "ĠEsto": 20880, + "ĠEstoy": 49651, + "ĠEstá": 27304, + "ĠEt": 3790, + "ĠEternal": 44432, + "ĠEth": 10540, + "ĠEthan": 23984, + "ĠEther": 38636, + "ĠEthereum": 26894, + "ĠEthi": 29380, + "ĠEthiopia": 39445, + "ĠEts": 47170, + "ĠEtt": 48426, + "ĠEu": 2186, + "ĠEuch": 46668, + "ĠEugene": 37059, + "ĠEuh": 47320, + "ĠEun": 17965, + "ĠEuro": 3010, + "ĠEurop": 12201, + "ĠEuropa": 16642, + "ĠEurope": 3315, + "ĠEuropean": 6473, + "ĠEuropeans": 29746, + "ĠEuros": 46662, + "ĠEv": 5689, + "ĠEva": 29377, + "ĠEvan": 22613, + "ĠEvangel": 36635, + "ĠEvans": 30055, + "ĠEve": 15544, + "ĠEven": 2754, + "ĠEvent": 13222, + "ĠEvents": 45314, + "ĠEventually": 17586, + "ĠEver": 12123, + "ĠEverest": 47591, + "ĠEvery": 2048, + "ĠEverybody": 7646, + "ĠEveryday": 37689, + "ĠEveryone": 5198, + "ĠEverything": 5471, + "ĠEverywhere": 37322, + "ĠEvet": 16729, + "ĠEvil": 20528, + "ĠEvolution": 40800, + "ĠEw": 28101, + "ĠEx": 2111, + "ĠExact": 7199, + "ĠExactly": 7587, + "ĠExam": 24755, + "ĠExamples": 48591, + "ĠExc": 9368, + "ĠExcel": 19060, + "ĠExcellence": 44684, + "ĠExcellent": 16723, + "ĠExcept": 16192, + "ĠExchange": 31169, + "ĠExcuse": 11359, + "ĠExec": 17662, + "ĠExecutive": 20658, + "ĠExerc": 37502, + "ĠExercise": 44307, + "ĠExhale": 31911, + "ĠExodus": 44472, + "ĠExp": 21391, + "ĠExpect": 46318, + "ĠExped": 48603, + "ĠExper": 12522, + "ĠExperience": 28503, + "ĠExperiment": 37933, + "ĠExpert": 41255, + "ĠExpl": 12514, + "ĠExplain": 39574, + "ĠExplorer": 31895, + "ĠExport": 50130, + "ĠExpress": 20212, + "ĠExt": 9881, + "ĠExtension": 37034, + "ĠExternal": 48277, + "ĠExtra": 29429, + "ĠExtrem": 24921, + "ĠExtremadura": 34713, + "ĠExtreme": 39525, + "ĠEy": 23236, + "ĠEye": 21603, + "ĠEyes": 28925, + "ĠEz": 27211, + "ĠEÄŁer": 41930, + "ĠF": 479, + "ĠFA": 19894, + "ĠFAR": 27235, + "ĠFBI": 17441, + "ĠFC": 27168, + "ĠFCC": 48671, + "ĠFDA": 18933, + "ĠFDP": 31763, + "ĠFE": 31778, + "ĠFEL": 46943, + "ĠFEMA": 31519, + "ĠFER": 47882, + "ĠFIFA": 39497, + "ĠFIL": 48563, + "ĠFIN": 43022, + "ĠFIR": 41538, + "ĠFL": 24720, + "ĠFM": 29614, + "ĠFO": 23501, + "ĠFOR": 15174, + "ĠFP": 36655, + "ĠFPS": 26429, + "ĠFR": 15288, + "ĠFRE": 26276, + "ĠFREE": 48511, + "ĠFROM": 36848, + "ĠFS": 41138, + "ĠFT": 46675, + "ĠFUCK": 26154, + "ĠFX": 37849, + "ĠFY": 42730, + "ĠFa": 12710, + "ĠFab": 17440, + "ĠFac": 17667, + "ĠFace": 4047, + "ĠFacebook": 4384, + "ĠFach": 38213, + "ĠFact": 33375, + "ĠFactory": 36868, + "ĠFaculty": 32689, + "ĠFahr": 19843, + "ĠFahren": 29109, + "ĠFahrenheit": 31199, + "ĠFail": 39094, + "ĠFair": 12157, + "ĠFairy": 37631, + "ĠFaith": 23642, + "ĠFake": 40469, + "ĠFal": 15202, + "ĠFalcon": 31801, + "ĠFall": 7465, + "ĠFallout": 38457, + "ĠFalls": 23245, + "ĠFalse": 50040, + "ĠFam": 7342, + "ĠFame": 35922, + "ĠFamil": 15672, + "ĠFamilie": 26021, + "ĠFamilien": 36451, + "ĠFamilies": 45081, + "ĠFamily": 11661, + "ĠFan": 18564, + "ĠFang": 25409, + "ĠFans": 25065, + "ĠFant": 12885, + "ĠFantastic": 21320, + "ĠFantasy": 25503, + "ĠFar": 9067, + "ĠFare": 46989, + "ĠFarm": 19991, + "ĠFasc": 49098, + "ĠFashion": 32782, + "ĠFast": 15968, + "ĠFaster": 46665, + "ĠFat": 16948, + "ĠFate": 40900, + "ĠFather": 7085, + "ĠFau": 48820, + "ĠFavor": 34240, + "ĠFavorite": 43697, + "ĠFay": 48889, + "ĠFaz": 33154, + "ĠFe": 3697, + "ĠFear": 28054, + "ĠFebru": 8534, + "ĠFebruary": 8711, + "ĠFed": 7772, + "ĠFeder": 45545, + "ĠFederal": 12380, + "ĠFederation": 27237, + "ĠFeed": 33720, + "ĠFeel": 14113, + "ĠFeeling": 29945, + "ĠFeels": 31578, + "ĠFeh": 35576, + "ĠFehler": 48101, + "ĠFei": 39587, + "ĠFel": 13298, + "ĠFeld": 42677, + "ĠFelipe": 34811, + "ĠFelix": 30169, + "ĠFell": 29709, + "ĠFellow": 44794, + "ĠFellows": 40011, + "ĠFemale": 27288, + "ĠFen": 30993, + "ĠFeng": 23715, + "ĠFer": 10728, + "ĠFergus": 36790, + "ĠFerguson": 40823, + "ĠFerm": 43261, + "ĠFern": 16675, + "ĠFernando": 30190, + "ĠFerr": 25443, + "ĠFerrari": 29828, + "ĠFest": 12993, + "ĠFestival": 16512, + "ĠFeuer": 39972, + "ĠFew": 33468, + "ĠFey": 46530, + "ĠFi": 38245, + "ĠField": 17952, + "ĠFields": 48190, + "ĠFif": 21501, + "ĠFifth": 33588, + "ĠFig": 22443, + "ĠFight": 12371, + "ĠFighter": 33387, + "ĠFighting": 25694, + "ĠFigure": 43225, + "ĠFil": 7905, + "ĠFile": 26196, + "ĠFilip": 28241, + "ĠFilipino": 41266, + "ĠFill": 25315, + "ĠFilm": 13801, + "ĠFilter": 39592, + "ĠFin": 3773, + "ĠFinal": 13443, + "ĠFinally": 6288, + "ĠFinance": 25765, + "ĠFinancial": 25560, + "ĠFinanz": 39141, + "ĠFind": 11809, + "ĠFinding": 31947, + "ĠFine": 12024, + "ĠFinger": 37318, + "ĠFinish": 31583, + "ĠFinished": 48188, + "ĠFinland": 24869, + "ĠFinn": 21066, + "ĠFinnish": 38429, + "ĠFiona": 42556, + "ĠFir": 28164, + "ĠFire": 7652, + "ĠFirebase": 35173, + "ĠFirefox": 46613, + "ĠFirma": 50206, + "ĠFirst": 2386, + "ĠFirstly": 20042, + "ĠFish": 18096, + "ĠFisher": 26676, + "ĠFit": 29263, + "ĠFitness": 45750, + "ĠFitz": 37815, + "ĠFive": 9436, + "ĠFix": 25538, + "ĠFl": 3235, + "ĠFlag": 37461, + "ĠFlame": 42792, + "ĠFlash": 20232, + "ĠFlat": 36172, + "ĠFle": 18612, + "ĠFleet": 47821, + "ĠFleisch": 44911, + "ĠFlex": 29208, + "ĠFlight": 28954, + "ĠFlint": 35587, + "ĠFlip": 28210, + "ĠFlo": 15153, + "ĠFlor": 8328, + "ĠFloren": 32637, + "ĠFlorence": 34631, + "ĠFlorida": 9117, + "ĠFlow": 32792, + "ĠFlower": 34993, + "ĠFlowers": 48194, + "ĠFloyd": 28494, + "ĠFlu": 33612, + "ĠFlug": 33326, + "ĠFly": 25294, + "ĠFlying": 34287, + "ĠFlynn": 40391, + "ĠFo": 8564, + "ĠFocus": 21862, + "ĠFoi": 30995, + "ĠFol": 15255, + "ĠFold": 24609, + "ĠFolge": 43597, + "ĠFolks": 39275, + "ĠFollow": 9876, + "ĠFollowing": 19192, + "ĠFont": 43901, + "ĠFood": 11675, + "ĠFoods": 40724, + "ĠFool": 41583, + "ĠFoot": 20989, + "ĠFootball": 31406, + "ĠFor": 1171, + "ĠForbes": 45950, + "ĠForce": 10580, + "ĠForces": 27445, + "ĠFord": 11961, + "ĠFore": 9018, + "ĠForeign": 20430, + "ĠForest": 18124, + "ĠForever": 30703, + "ĠForget": 18675, + "ĠForgive": 34060, + "ĠForm": 10126, + "ĠFormer": 36514, + "ĠFormula": 35872, + "ĠFors": 48202, + "ĠForsch": 42938, + "ĠFort": 11002, + "ĠFortnite": 28712, + "ĠFortunately": 20652, + "ĠFortune": 38508, + "ĠForum": 29704, + "ĠForward": 35524, + "ĠFoster": 38756, + "ĠFot": 46771, + "ĠFound": 8207, + "ĠFoundation": 10335, + "ĠFour": 7451, + "ĠFourier": 36810, + "ĠFourth": 23773, + "ĠFox": 11388, + "ĠFr": 1526, + "ĠFra": 5849, + "ĠFrage": 13685, + "ĠFragen": 25588, + "ĠFraktion": 30648, + "ĠFrame": 31628, + "ĠFran": 17288, + "ĠFranc": 8686, + "ĠFrance": 6190, + "ĠFrances": 31441, + "ĠFrancis": 19648, + "ĠFrancisco": 12279, + "ĠFranco": 34695, + "ĠFrank": 6823, + "ĠFranken": 39678, + "ĠFrankf": 32571, + "ĠFrankfurt": 36530, + "ĠFrankie": 47263, + "ĠFranklin": 22010, + "ĠFrankly": 41344, + "ĠFranz": 33084, + "ĠFrançais": 39023, + "ĠFraser": 49119, + "ĠFrau": 13930, + "ĠFrauen": 24191, + "ĠFre": 6142, + "ĠFred": 10112, + "ĠFreddie": 41264, + "ĠFreddy": 31445, + "ĠFreder": 27535, + "ĠFrederick": 35617, + "ĠFree": 11551, + "ĠFreedom": 22208, + "ĠFreeman": 42163, + "ĠFreeze": 48096, + "ĠFrei": 35939, + "ĠFreiheit": 47825, + "ĠFrench": 5522, + "ĠFres": 42618, + "ĠFresh": 22843, + "ĠFreud": 41590, + "ĠFreund": 29685, + "ĠFreunde": 40016, + "ĠFriday": 6984, + "ĠFridays": 46306, + "ĠFried": 17605, + "ĠFriend": 22812, + "ĠFriends": 14042, + "ĠFro": 25028, + "ĠFrog": 40103, + "ĠFrom": 3358, + "ĠFront": 17348, + "ĠFrost": 32910, + "ĠFrozen": 39422, + "ĠFruit": 39989, + "ĠFry": 31822, + "ĠFrüh": 47400, + "ĠFu": 12807, + "ĠFuck": 10965, + "ĠFucking": 33342, + "ĠFuel": 46837, + "ĠFuj": 43915, + "ĠFuji": 38119, + "ĠFuk": 33043, + "ĠFull": 13841, + "ĠFun": 11166, + "ĠFund": 13493, + "ĠFunk": 45285, + "ĠFunny": 36484, + "ĠFur": 11705, + "ĠFurther": 15364, + "ĠFurthermore": 23999, + "ĠFury": 40327, + "ĠFusion": 36721, + "ĠFut": 16569, + "ĠFuture": 20805, + "ĠFuÃŁ": 31419, + "ĠFuÃŁball": 49487, + "ĠFör": 20665, + "ĠFür": 14990, + "ĠG": 460, + "ĠGA": 22841, + "ĠGB": 26809, + "ĠGC": 29435, + "ĠGDP": 19599, + "ĠGE": 18003, + "ĠGEOR": 24992, + "ĠGEORGE": 26675, + "ĠGET": 28091, + "ĠGG": 42240, + "ĠGH": 40690, + "ĠGI": 26634, + "ĠGIR": 44027, + "ĠGIS": 47860, + "ĠGL": 16225, + "ĠGLORIA": 24074, + "ĠGM": 16609, + "ĠGN": 46411, + "ĠGO": 10365, + "ĠGOD": 26831, + "ĠGOOD": 28771, + "ĠGORD": 34746, + "ĠGORDON": 35269, + "ĠGOT": 36525, + "ĠGP": 26039, + "ĠGPA": 41321, + "ĠGPS": 19462, + "ĠGPU": 18407, + "ĠGR": 10903, + "ĠGRA": 26121, + "ĠGRANT": 30204, + "ĠGRE": 20830, + "ĠGREEN": 47262, + "ĠGREG": 48793, + "ĠGRÃľ": 21100, + "ĠGRÃľNEN": 21584, + "ĠGS": 32047, + "ĠGSA": 41754, + "ĠGT": 17530, + "ĠGTA": 35575, + "ĠGU": 17917, + "ĠGUY": 37931, + "ĠGW": 36704, + "ĠGa": 10384, + "ĠGab": 11995, + "ĠGabe": 39524, + "ĠGabrie": 50053, + "ĠGabriel": 20985, + "ĠGad": 37171, + "ĠGaga": 41465, + "ĠGal": 7336, + "ĠGalaxy": 13520, + "ĠGalile": 46576, + "ĠGall": 14588, + "ĠGallery": 29733, + "ĠGam": 24723, + "ĠGamb": 44643, + "ĠGame": 7522, + "ĠGames": 12761, + "ĠGaming": 30288, + "ĠGan": 19461, + "ĠGand": 23962, + "ĠGandhi": 34717, + "ĠGang": 17984, + "ĠGanz": 32496, + "ĠGanze": 35206, + "ĠGao": 32235, + "ĠGar": 7995, + "ĠGarage": 47918, + "ĠGarcia": 33738, + "ĠGard": 12882, + "ĠGarden": 19429, + "ĠGardens": 45268, + "ĠGarlic": 41124, + "ĠGarr": 42326, + "ĠGarrett": 40266, + "ĠGary": 13788, + "ĠGas": 24025, + "ĠGast": 31988, + "ĠGate": 21913, + "ĠGates": 26494, + "ĠGateway": 48394, + "ĠGather": 39841, + "ĠGaussian": 39148, + "ĠGavin": 24020, + "ĠGay": 23081, + "ĠGaz": 38468, + "ĠGaza": 37800, + "ĠGe": 2876, + "ĠGear": 26810, + "ĠGeb": 24984, + "ĠGed": 28166, + "ĠGedanken": 44612, + "ĠGee": 39840, + "ĠGeez": 43836, + "ĠGef": 17873, + "ĠGefühl": 29715, + "ĠGeg": 27826, + "ĠGegen": 38631, + "ĠGel": 16142, + "ĠGeld": 16535, + "ĠGem": 22894, + "ĠGeme": 31266, + "ĠGen": 3632, + "ĠGenau": 22340, + "ĠGender": 48039, + "ĠGene": 18083, + "ĠGener": 15409, + "ĠGeneral": 6996, + "ĠGenerally": 21082, + "ĠGeneration": 23898, + "ĠGenesis": 20587, + "ĠGeneva": 37285, + "ĠGenius": 45818, + "ĠGent": 33070, + "ĠGente": 38799, + "ĠGentle": 26214, + "ĠGentlemen": 38316, + "ĠGeoff": 26119, + "ĠGeor": 27909, + "ĠGeorg": 10114, + "ĠGeorge": 7136, + "ĠGeorget": 33932, + "ĠGeorgetown": 34848, + "ĠGeorgia": 11859, + "ĠGer": 9409, + "ĠGerade": 48175, + "ĠGeral": 48527, + "ĠGerald": 38332, + "ĠGerilim": 30687, + "ĠGerm": 3848, + "ĠGerman": 6521, + "ĠGermans": 18116, + "ĠGermany": 7244, + "ĠGerry": 39154, + "ĠGes": 6761, + "ĠGesch": 14241, + "ĠGeschichte": 28896, + "ĠGeschäft": 40440, + "ĠGesellschaft": 30006, + "ĠGesetz": 20685, + "ĠGesetzent": 37792, + "ĠGesetzentwurf": 42040, + "ĠGesicht": 47777, + "ĠGespr": 38746, + "ĠGest": 39909, + "ĠGesund": 33057, + "ĠGesundheits": 44709, + "ĠGet": 3240, + "ĠGetting": 13674, + "ĠGew": 19063, + "ĠGh": 20321, + "ĠGhana": 38779, + "ĠGhost": 16323, + "ĠGi": 15334, + "ĠGian": 41958, + "ĠGiant": 29391, + "ĠGib": 17256, + "ĠGibbs": 30199, + "ĠGibson": 42250, + "ĠGift": 44890, + "ĠGig": 40489, + "ĠGil": 17654, + "ĠGilbert": 39003, + "ĠGill": 27709, + "ĠGimme": 48047, + "ĠGin": 36846, + "ĠGina": 34711, + "ĠGinger": 34637, + "ĠGins": 41728, + "ĠGinsburg": 49347, + "ĠGiov": 47089, + "ĠGir": 36306, + "ĠGirl": 8502, + "ĠGirls": 16245, + "ĠGit": 16939, + "ĠGitHub": 23331, + "ĠGiul": 38679, + "ĠGive": 5303, + "ĠGiven": 18600, + "ĠGiving": 28983, + "ĠGl": 5209, + "ĠGla": 47895, + "ĠGlad": 28301, + "ĠGlas": 29078, + "ĠGlasgow": 40457, + "ĠGlass": 23752, + "ĠGleich": 33858, + "ĠGlen": 38125, + "ĠGlenn": 30119, + "ĠGlo": 10786, + "ĠGlobal": 14465, + "ĠGlobe": 46570, + "ĠGloria": 34288, + "ĠGlory": 28524, + "ĠGlue": 49832, + "ĠGlück": 33508, + "ĠGmail": 36732, + "ĠGo": 1037, + "ĠGoPro": 30259, + "ĠGob": 24287, + "ĠGobierno": 41963, + "ĠGod": 1265, + "ĠGoddess": 33498, + "ĠGods": 30151, + "ĠGodzilla": 38046, + "ĠGoes": 44471, + "ĠGog": 39690, + "ĠGoing": 10963, + "ĠGoku": 29138, + "ĠGol": 36319, + "ĠGold": 6731, + "ĠGolden": 13410, + "ĠGoldman": 45378, + "ĠGolf": 30176, + "ĠGom": 46961, + "ĠGomez": 43537, + "ĠGon": 47403, + "ĠGone": 39068, + "ĠGong": 33231, + "ĠGonna": 20341, + "ĠGonz": 28458, + "ĠGonzalez": 46708, + "ĠGoo": 47609, + "ĠGood": 2205, + "ĠGoodbye": 15528, + "ĠGoodness": 39863, + "ĠGoodnight": 45889, + "ĠGoog": 45005, + "ĠGoogle": 3329, + "ĠGor": 26144, + "ĠGordon": 19369, + "ĠGore": 45450, + "ĠGos": 41272, + "ĠGosh": 19185, + "ĠGospel": 23163, + "ĠGot": 5803, + "ĠGotcha": 42109, + "ĠGoth": 27305, + "ĠGothic": 47143, + "ĠGott": 19133, + "ĠGotta": 21527, + "ĠGottes": 49569, + "ĠGovern": 5515, + "ĠGovernment": 7321, + "ĠGovernor": 14550, + "ĠGr": 2606, + "ĠGra": 8985, + "ĠGrab": 20357, + "ĠGrac": 20586, + "ĠGrace": 15742, + "ĠGracias": 26909, + "ĠGrad": 16710, + "ĠGrade": 44452, + "ĠGraduate": 38124, + "ĠGraham": 22691, + "ĠGram": 22130, + "ĠGrammy": 47332, + "ĠGran": 23554, + "ĠGrand": 6757, + "ĠGrande": 28384, + "ĠGrandma": 22657, + "ĠGrandpa": 27139, + "ĠGranny": 40746, + "ĠGrant": 17529, + "ĠGraph": 21884, + "ĠGrass": 39891, + "ĠGravity": 49478, + "ĠGray": 22668, + "ĠGre": 14986, + "ĠGreat": 3769, + "ĠGreater": 38410, + "ĠGree": 7229, + "ĠGreece": 17214, + "ĠGreek": 10281, + "ĠGreeks": 31029, + "ĠGreen": 6969, + "ĠGreens": 39314, + "ĠGreet": 18678, + "ĠGreetings": 20032, + "ĠGreg": 11490, + "ĠGregory": 37915, + "ĠGren": 24913, + "ĠGrey": 24854, + "ĠGri": 46082, + "ĠGrid": 42905, + "ĠGriff": 23765, + "ĠGriffin": 39188, + "ĠGrill": 43592, + "ĠGrind": 47938, + "ĠGro": 12981, + "ĠGross": 34256, + "ĠGround": 28371, + "ĠGroup": 10500, + "ĠGrove": 43111, + "ĠGrow": 18476, + "ĠGrowing": 32569, + "ĠGrowth": 48345, + "ĠGroÃŁ": 34534, + "ĠGru": 10459, + "ĠGrund": 13941, + "ĠGrö": 45778, + "ĠGrü": 38908, + "ĠGu": 2694, + "ĠGuan": 41431, + "ĠGuang": 35815, + "ĠGuard": 11549, + "ĠGuardian": 27684, + "ĠGuardians": 45236, + "ĠGuatem": 39462, + "ĠGuatemala": 43120, + "ĠGucci": 46052, + "ĠGud": 45986, + "ĠGue": 44847, + "ĠGuer": 28305, + "ĠGuerra": 45725, + "ĠGuess": 17795, + "ĠGuid": 49036, + "ĠGuide": 18727, + "ĠGuild": 38968, + "ĠGuill": 48149, + "ĠGuin": 44117, + "ĠGuinea": 46793, + "ĠGuitar": 48758, + "ĠGul": 43314, + "ĠGulf": 23033, + "ĠGum": 48862, + "ĠGun": 14153, + "ĠGund": 38299, + "ĠGuo": 34175, + "ĠGur": 33716, + "ĠGuru": 22389, + "ĠGus": 40619, + "ĠGust": 32337, + "ĠGut": 24481, + "ĠGuten": 42833, + "ĠGuy": 14690, + "ĠGuys": 7855, + "ĠGwen": 42499, + "ĠGy": 25911, + "ĠGym": 38635, + "ĠGö": 47894, + "ĠGör": 35493, + "ĠGü": 38139, + "ĠGün": 50225, + "ĠH": 389, + "ĠHA": 11979, + "ĠHAM": 45561, + "ĠHAR": 19819, + "ĠHARF": 27602, + "ĠHARR": 38892, + "ĠHARRIS": 47714, + "ĠHAS": 38461, + "ĠHAVE": 30309, + "ĠHBO": 37409, + "ĠHC": 30440, + "ĠHD": 12149, + "ĠHDMI": 30811, + "ĠHDR": 29650, + "ĠHE": 11827, + "ĠHEL": 38856, + "ĠHER": 29060, + "ĠHERE": 37438, + "ĠHEY": 43821, + "ĠHI": 44376, + "ĠHIM": 43854, + "ĠHIS": 45470, + "ĠHIV": 15907, + "ĠHJ": 35755, + "ĠHK": 39378, + "ĠHO": 23097, + "ĠHOL": 44069, + "ĠHOR": 48064, + "ĠHOW": 30561, + "ĠHOY": 46120, + "ĠHP": 12557, + "ĠHQ": 43209, + "ĠHR": 19460, + "ĠHS": 34194, + "ĠHT": 11751, + "ĠHTML": 17995, + "ĠHTTP": 33283, + "ĠHU": 26887, + "ĠHUD": 46867, + "ĠHY": 34189, + "ĠHa": 4064, + "ĠHab": 14225, + "ĠHaben": 47007, + "ĠHack": 35170, + "ĠHad": 12298, + "ĠHadi": 18908, + "ĠHae": 44245, + "ĠHaf": 47933, + "ĠHag": 34758, + "ĠHah": 31944, + "ĠHaha": 19131, + "ĠHahah": 42656, + "ĠHahaha": 25122, + "ĠHahn": 45303, + "ĠHai": 24055, + "ĠHail": 32495, + "ĠHair": 27957, + "ĠHait": 25752, + "ĠHaiti": 35231, + "ĠHaj": 43347, + "ĠHak": 21750, + "ĠHal": 13896, + "ĠHalf": 15917, + "ĠHall": 5434, + "ĠHallelujah": 32359, + "ĠHallo": 21242, + "ĠHalloween": 13860, + "ĠHalo": 29795, + "ĠHam": 8234, + "ĠHamb": 27551, + "ĠHamburg": 34118, + "ĠHamilton": 18484, + "ĠHamm": 34842, + "ĠHammer": 33722, + "ĠHamp": 30303, + "ĠHampshire": 35688, + "ĠHan": 7820, + "ĠHana": 47946, + "ĠHand": 8854, + "ĠHands": 21369, + "ĠHandy": 47006, + "ĠHang": 14070, + "ĠHani": 39731, + "ĠHank": 26427, + "ĠHann": 33461, + "ĠHannah": 21754, + "ĠHans": 17926, + "ĠHanım": 37182, + "ĠHao": 36702, + "ĠHapp": 7412, + "ĠHappiness": 46224, + "ĠHappy": 8277, + "ĠHar": 3653, + "ĠHarbor": 33740, + "ĠHard": 11817, + "ĠHardy": 43930, + "ĠHare": 34836, + "ĠHari": 47221, + "ĠHarlem": 44196, + "ĠHarley": 34921, + "ĠHarm": 43523, + "ĠHarmon": 40599, + "ĠHarold": 36076, + "ĠHarper": 37216, + "ĠHarr": 13321, + "ĠHarriet": 46437, + "ĠHarris": 17426, + "ĠHarrison": 34272, + "ĠHarry": 9378, + "ĠHarsh": 48914, + "ĠHart": 21414, + "ĠHarvard": 13378, + "ĠHarvey": 28796, + "ĠHas": 8646, + "ĠHasan": 46513, + "ĠHash": 30775, + "ĠHass": 32711, + "ĠHast": 30987, + "ĠHasta": 45027, + "ĠHat": 15867, + "ĠHate": 46000, + "ĠHaupt": 30573, + "ĠHaus": 22725, + "ĠHause": 26217, + "ĠHaush": 39581, + "ĠHaut": 49668, + "ĠHave": 3560, + "ĠHaven": 23770, + "ĠHaving": 10222, + "ĠHaw": 9325, + "ĠHawai": 13613, + "ĠHawaii": 17930, + "ĠHawaiian": 36581, + "ĠHawk": 42219, + "ĠHay": 8721, + "ĠHayır": 30102, + "ĠHaz": 15852, + "ĠHazrat": 32423, + "ĠHe": 634, + "ĠHead": 11398, + "ĠHealing": 48997, + "ĠHealth": 5912, + "ĠHealthcare": 45548, + "ĠHealthy": 37733, + "ĠHear": 30685, + "ĠHearing": 37875, + "ĠHeart": 13569, + "ĠHearts": 39309, + "ĠHeat": 27359, + "ĠHeath": 46622, + "ĠHeather": 21728, + "ĠHeaven": 13676, + "ĠHeavenly": 38352, + "ĠHeavy": 26473, + "ĠHeb": 15606, + "ĠHebrew": 17895, + "ĠHebrews": 44604, + "ĠHeck": 41948, + "ĠHee": 26545, + "ĠHeh": 34984, + "ĠHehe": 45185, + "ĠHeidi": 40947, + "ĠHeights": 44039, + "ĠHeil": 45650, + "ĠHein": 32789, + "ĠHej": 44567, + "ĠHel": 6128, + "ĠHelen": 26294, + "ĠHelena": 49294, + "ĠHell": 12090, + "ĠHello": 2425, + "ĠHelp": 10773, + "ĠHels": 45429, + "ĠHem": 18568, + "ĠHen": 8651, + "ĠHence": 22229, + "ĠHend": 28594, + "ĠHenderson": 45013, + "ĠHenri": 45365, + "ĠHenry": 11085, + "ĠHep": 30578, + "ĠHer": 3204, + "ĠHera": 30808, + "ĠHeraus": 36795, + "ĠHerausforder": 37888, + "ĠHerbert": 41942, + "ĠHere": 1692, + "ĠHeritage": 27406, + "ĠHerm": 21842, + "ĠHerman": 44676, + "ĠHern": 35651, + "ĠHernandez": 47985, + "ĠHero": 14731, + "ĠHeroes": 32070, + "ĠHerr": 10367, + "ĠHerren": 20810, + "ĠHerrn": 41791, + "ĠHers": 41222, + "ĠHert": 41898, + "ĠHertz": 46910, + "ĠHerz": 24749, + "ĠHess": 35960, + "ĠHessen": 24951, + "ĠHet": 12045, + "ĠHeute": 27978, + "ĠHey": 1911, + "ĠHi": 2421, + "ĠHidden": 41156, + "ĠHide": 35118, + "ĠHier": 10886, + "ĠHigh": 5229, + "ĠHigher": 31997, + "ĠHighness": 17284, + "ĠHighway": 30911, + "ĠHij": 27832, + "ĠHil": 19914, + "ĠHilfe": 37448, + "ĠHill": 9109, + "ĠHillary": 23284, + "ĠHills": 25663, + "ĠHim": 5920, + "ĠHimself": 26821, + "ĠHin": 29571, + "ĠHind": 15307, + "ĠHindi": 36225, + "ĠHindu": 21231, + "ĠHindus": 49726, + "ĠHinter": 35006, + "ĠHip": 29596, + "ĠHir": 23192, + "ĠHis": 2812, + "ĠHispan": 25912, + "ĠHispanic": 29559, + "ĠHist": 9038, + "ĠHistor": 25108, + "ĠHistorical": 46124, + "ĠHistory": 12486, + "ĠHit": 9217, + "ĠHitler": 19038, + "ĠHiç": 33410, + "ĠHm": 17989, + "ĠHmm": 8239, + "ĠHmmm": 32317, + "ĠHo": 3631, + "ĠHob": 22966, + "ĠHobby": 49705, + "ĠHoch": 29193, + "ĠHod": 45151, + "ĠHoe": 33979, + "ĠHof": 37379, + "ĠHoff": 29135, + "ĠHog": 30553, + "ĠHogwarts": 46539, + "ĠHoje": 34104, + "ĠHok": 46792, + "ĠHol": 11086, + "ĠHola": 22637, + "ĠHold": 6962, + "ĠHolding": 40818, + "ĠHole": 47635, + "ĠHoliday": 40898, + "ĠHoll": 17712, + "ĠHolland": 27201, + "ĠHollow": 46731, + "ĠHolly": 10055, + "ĠHollywood": 11628, + "ĠHolmes": 27474, + "ĠHolo": 24298, + "ĠHolocaust": 28399, + "ĠHoly": 6295, + "ĠHolz": 45455, + "ĠHom": 20903, + "ĠHome": 8719, + "ĠHomeland": 45800, + "ĠHomer": 42273, + "ĠHon": 6625, + "ĠHond": 45260, + "ĠHonda": 26989, + "ĠHonestly": 12348, + "ĠHoney": 16187, + "ĠHong": 8868, + "ĠHonor": 16922, + "ĠHonors": 48801, + "ĠHoo": 26796, + "ĠHood": 33213, + "ĠHook": 33132, + "ĠHoover": 46382, + "ĠHop": 13438, + "ĠHope": 6483, + "ĠHopefully": 10429, + "ĠHopkins": 29999, + "ĠHor": 10691, + "ĠHoriz": 42141, + "ĠHorizon": 40102, + "ĠHorn": 31792, + "ĠHorror": 42993, + "ĠHorse": 33208, + "ĠHos": 44004, + "ĠHosp": 14516, + "ĠHospital": 15645, + "ĠHost": 22047, + "ĠHot": 9423, + "ĠHotel": 20354, + "ĠHou": 16273, + "ĠHour": 38369, + "ĠHouse": 4928, + "ĠHousing": 31340, + "ĠHouston": 18717, + "ĠHow": 1012, + "ĠHoward": 17626, + "ĠHowever": 2908, + "ĠHoy": 28664, + "ĠHoÅŁ": 45958, + "ĠHu": 11874, + "ĠHua": 19094, + "ĠHuang": 28073, + "ĠHuawei": 28542, + "ĠHub": 18986, + "ĠHubble": 42317, + "ĠHud": 27767, + "ĠHudson": 32959, + "ĠHue": 40015, + "ĠHug": 46892, + "ĠHuge": 37043, + "ĠHugh": 25893, + "ĠHughes": 41102, + "ĠHugo": 32504, + "ĠHuh": 8063, + "ĠHui": 39340, + "ĠHulk": 30167, + "ĠHum": 12877, + "ĠHuman": 10294, + "ĠHumans": 35809, + "ĠHun": 11648, + "ĠHund": 43361, + "ĠHundred": 32869, + "ĠHundreds": 45785, + "ĠHung": 15063, + "ĠHungarian": 38034, + "ĠHungary": 32380, + "ĠHunger": 46549, + "ĠHunt": 31740, + "ĠHunter": 18704, + "ĠHunting": 44793, + "ĠHur": 8598, + "ĠHurricane": 35574, + "ĠHurry": 12944, + "ĠHus": 21282, + "ĠHut": 39012, + "ĠHutch": 48499, + "ĠHy": 5701, + "ĠHybrid": 47088, + "ĠHyd": 24231, + "ĠHye": 31103, + "ĠHyp": 45649, + "ĠHyper": 29592, + "ĠHyun": 18398, + "ĠHyundai": 44133, + "ĠHyung": 36917, + "ĠHz": 39747, + "ĠHä": 45763, + "ĠHär": 35539, + "ĠHé": 42318, + "ĠHö": 30824, + "ĠI": 286, + "ĠIB": 40385, + "ĠIBM": 23487, + "ĠIC": 14360, + "ĠICE": 43337, + "ĠICU": 38123, + "ĠID": 7348, + "ĠIDE": 40930, + "ĠIDs": 48212, + "ĠIF": 26080, + "ĠIG": 26367, + "ĠII": 6351, + "ĠIII": 16317, + "ĠIKE": 46492, + "ĠIKEA": 47728, + "ĠIL": 40413, + "ĠIM": 21463, + "ĠIN": 6892, + "ĠINF": 35971, + "ĠINT": 43140, + "ĠINTER": 30219, + "ĠINTERVIE": 46761, + "ĠINTERVIEWER": 49667, + "ĠIO": 39839, + "ĠIP": 8671, + "ĠIPO": 50220, + "ĠIPS": 50021, + "ĠIQ": 28921, + "ĠIR": 16486, + "ĠIRA": 37993, + "ĠIRS": 33848, + "ĠIS": 6205, + "ĠISBN": 47874, + "ĠISIL": 45518, + "ĠISIS": 25639, + "ĠISO": 25042, + "ĠISS": 48534, + "ĠIT": 6783, + "ĠIU": 44218, + "ĠIV": 15967, + "ĠIX": 49497, + "ĠIan": 19595, + "ĠIb": 40790, + "ĠIce": 15332, + "ĠIceland": 28004, + "ĠIch": 3141, + "ĠIci": 39049, + "ĠId": 11506, + "ĠIdaho": 36628, + "ĠIde": 13090, + "ĠIdea": 47245, + "ĠIdeally": 40817, + "ĠIdee": 32651, + "ĠIdent": 25905, + "ĠIdi": 40187, + "ĠIdol": 33266, + "ĠIf": 759, + "ĠIg": 19271, + "ĠIgn": 24754, + "ĠIgor": 40356, + "ĠIh": 10485, + "ĠIhnen": 17280, + "ĠIhr": 14773, + "ĠIhre": 26247, + "ĠIhrer": 47087, + "ĠIk": 8316, + "ĠIl": 4416, + "ĠIll": 10597, + "ĠIllinois": 17508, + "ĠIllust": 37788, + "ĠIls": 17979, + "ĠIm": 4331, + "ĠImag": 34223, + "ĠImage": 29903, + "ĠImagine": 11739, + "ĠImam": 39875, + "ĠImm": 17322, + "ĠImma": 50089, + "ĠImmedi": 32157, + "ĠImmediately": 34457, + "ĠImmer": 42676, + "ĠImp": 8270, + "ĠImpact": 31005, + "ĠImper": 18360, + "ĠImperial": 21395, + "ĠImpf": 32591, + "ĠImport": 26391, + "ĠImportant": 42908, + "ĠImpossible": 36808, + "ĠImprove": 46366, + "ĠIn": 682, + "ĠInaudible": 48655, + "ĠInc": 7779, + "ĠIncluding": 27137, + "ĠIncor": 39120, + "ĠIncre": 30367, + "ĠIncred": 27792, + "ĠIncredible": 35261, + "ĠInd": 2333, + "ĠIndeed": 15061, + "ĠIndepend": 21809, + "ĠIndependence": 33631, + "ĠIndependent": 40310, + "ĠIndex": 33552, + "ĠIndia": 5282, + "ĠIndian": 6427, + "ĠIndiana": 21858, + "ĠIndians": 23838, + "ĠIndigenous": 22699, + "ĠIndividual": 37292, + "ĠIndo": 46489, + "ĠIndones": 13942, + "ĠIndonesia": 16879, + "ĠIndonesian": 39772, + "ĠIndust": 16018, + "ĠIndustrial": 32059, + "ĠIndustries": 45375, + "ĠIndustry": 38178, + "ĠInf": 11537, + "ĠInfin": 22145, + "ĠInfinite": 43368, + "ĠInfinity": 34762, + "ĠInform": 34301, + "ĠInformation": 15357, + "ĠInformationen": 46753, + "ĠInfrast": 38425, + "ĠIng": 25731, + "ĠIngred": 46670, + "ĠInhale": 27586, + "ĠIni": 28929, + "ĠInit": 22937, + "ĠIniti": 23613, + "ĠInitially": 29446, + "ĠInitiative": 26166, + "ĠInk": 31147, + "ĠInn": 34066, + "ĠInnen": 43617, + "ĠInner": 36705, + "ĠInnov": 22203, + "ĠInnovation": 27092, + "ĠIns": 9442, + "ĠInsert": 36487, + "ĠInside": 15123, + "ĠInsp": 32671, + "ĠInspect": 29552, + "ĠInspector": 33402, + "ĠInst": 2730, + "ĠInstagram": 5281, + "ĠInstall": 31982, + "ĠInstant": 38707, + "ĠInstead": 7156, + "ĠInstit": 33897, + "ĠInstitute": 9446, + "ĠInstr": 39785, + "ĠInsurance": 39971, + "ĠInt": 5681, + "ĠInte": 21525, + "ĠIntegr": 23894, + "ĠIntegration": 47713, + "ĠIntel": 19762, + "ĠIntell": 18762, + "ĠIntelligence": 27274, + "ĠInter": 5751, + "ĠInteresting": 14711, + "ĠInterestingly": 30564, + "ĠInterior": 44346, + "ĠIntern": 4844, + "ĠInternal": 47836, + "ĠInternational": 9157, + "ĠInternet": 7703, + "ĠInterview": 35599, + "ĠInterviewer": 43184, + "ĠInto": 23373, + "ĠIntro": 47406, + "ĠIntrodu": 27193, + "ĠInv": 31124, + "ĠInvest": 14008, + "ĠInvestig": 42030, + "ĠInvestment": 43427, + "ĠIo": 19239, + "ĠIoT": 30112, + "ĠIowa": 14514, + "ĠIr": 9151, + "ĠIra": 10954, + "ĠIran": 8283, + "ĠIranian": 24934, + "ĠIraq": 11818, + "ĠIraqi": 35149, + "ĠIre": 13151, + "ĠIreland": 15880, + "ĠIrene": 40834, + "ĠIris": 40789, + "ĠIrish": 16801, + "ĠIron": 13720, + "ĠIs": 1119, + "ĠIsa": 19718, + "ĠIsaac": 22505, + "ĠIsab": 35686, + "ĠIsaiah": 27263, + "ĠIsh": 42854, + "ĠIslam": 8571, + "ĠIslamic": 17970, + "ĠIsland": 7637, + "ĠIslands": 23492, + "ĠIsn": 6998, + "ĠIsrael": 5674, + "ĠIsraeli": 19974, + "ĠIsraelis": 45086, + "ĠIsraelites": 48308, + "ĠIss": 38195, + "ĠIsso": 14887, + "ĠIst": 12810, + "ĠIstanbul": 36340, + "ĠIt": 467, + "ĠItal": 8158, + "ĠItalia": 41355, + "ĠItalian": 10003, + "ĠItalians": 43620, + "ĠItaly": 10705, + "ĠItem": 31066, + "ĠIts": 6953, + "ĠItu": 39109, + "ĠItÃŃs": 47806, + "ĠIv": 26546, + "ĠIvan": 28893, + "ĠIvy": 38592, + "ĠIya": 47600, + "ĠIz": 30296, + "ĠIÃŃm": 34925, + "ĠJ": 508, + "ĠJA": 26401, + "ĠJAC": 48904, + "ĠJACK": 40281, + "ĠJAKE": 45452, + "ĠJAM": 26238, + "ĠJAMES": 35510, + "ĠJASON": 33524, + "ĠJAY": 29116, + "ĠJB": 43019, + "ĠJC": 49802, + "ĠJD": 37082, + "ĠJE": 21072, + "ĠJEFF": 30214, + "ĠJEN": 50245, + "ĠJENN": 35635, + "ĠJER": 29257, + "ĠJERRY": 48650, + "ĠJES": 49350, + "ĠJESS": 49439, + "ĠJF": 40951, + "ĠJH": 27473, + "ĠJI": 50172, + "ĠJIM": 37650, + "ĠJJ": 21386, + "ĠJJonak": 42805, + "ĠJK": 35973, + "ĠJM": 35162, + "ĠJO": 9787, + "ĠJOE": 44114, + "ĠJOHN": 13844, + "ĠJON": 27838, + "ĠJOSH": 36883, + "ĠJP": 34336, + "ĠJR": 32849, + "ĠJS": 33063, + "ĠJSON": 31828, + "ĠJU": 38852, + "ĠJUD": 16418, + "ĠJUDGE": 30042, + "ĠJUDY": 23820, + "ĠJUL": 40820, + "ĠJUN": 45801, + "ĠJUST": 33310, + "ĠJUSTIN": 41987, + "ĠJW": 49885, + "ĠJY": 43587, + "ĠJa": 3530, + "ĠJab": 40319, + "ĠJac": 9538, + "ĠJack": 4718, + "ĠJackie": 23402, + "ĠJackson": 10647, + "ĠJacob": 14117, + "ĠJacobs": 44068, + "ĠJacqu": 49770, + "ĠJacques": 42691, + "ĠJade": 37021, + "ĠJadi": 21662, + "ĠJae": 20916, + "ĠJag": 9014, + "ĠJah": 12443, + "ĠJahr": 11674, + "ĠJahre": 15557, + "ĠJahren": 13080, + "ĠJahres": 44360, + "ĠJaime": 46119, + "ĠJak": 15029, + "ĠJake": 15822, + "ĠJam": 10372, + "ĠJama": 26803, + "ĠJamaica": 42927, + "ĠJames": 5678, + "ĠJamie": 19309, + "ĠJan": 4956, + "ĠJana": 49164, + "ĠJane": 13048, + "ĠJaneiro": 44711, + "ĠJanet": 26948, + "ĠJang": 29912, + "ĠJanuary": 7061, + "ĠJap": 35642, + "ĠJapan": 3367, + "ĠJapanese": 5433, + "ĠJapon": 47594, + "ĠJar": 23941, + "ĠJared": 24160, + "ĠJas": 34023, + "ĠJasmine": 36224, + "ĠJason": 11181, + "ĠJava": 10745, + "ĠJavaScript": 15778, + "ĠJaw": 48547, + "ĠJay": 11146, + "ĠJaz": 45640, + "ĠJazz": 32213, + "ĠJe": 2588, + "ĠJean": 13854, + "ĠJed": 27076, + "ĠJeder": 47274, + "ĠJedi": 21746, + "ĠJeep": 31748, + "ĠJeez": 48516, + "ĠJeff": 7506, + "ĠJefferson": 25747, + "ĠJeffrey": 28721, + "ĠJeg": 17119, + "ĠJeju": 42966, + "ĠJelly": 38815, + "ĠJen": 9228, + "ĠJenkins": 41273, + "ĠJenn": 12342, + "ĠJenna": 35391, + "ĠJennifer": 14351, + "ĠJenny": 20580, + "ĠJeong": 31761, + "ĠJer": 8139, + "ĠJeremiah": 40460, + "ĠJeremy": 17809, + "ĠJerome": 44965, + "ĠJerry": 17454, + "ĠJersey": 16601, + "ĠJerusalem": 15393, + "ĠJes": 2547, + "ĠJess": 10484, + "ĠJesse": 21895, + "ĠJessica": 15570, + "ĠJessie": 36627, + "ĠJest": 24918, + "ĠJesus": 2705, + "ĠJesús": 47710, + "ĠJet": 28730, + "ĠJetzt": 12592, + "ĠJew": 5679, + "ĠJewish": 9246, + "ĠJews": 11041, + "ĠJeżeli": 35090, + "ĠJeÅĽli": 37086, + "ĠJi": 9702, + "ĠJia": 29242, + "ĠJian": 35423, + "ĠJiang": 23458, + "ĠJie": 41731, + "ĠJill": 24690, + "ĠJim": 6637, + "ĠJimin": 33657, + "ĠJimmy": 15709, + "ĠJin": 10617, + "ĠJing": 19534, + "ĠJinping": 45898, + "ĠJo": 3139, + "ĠJoan": 25748, + "ĠJoanna": 49314, + "ĠJob": 18602, + "ĠJobs": 29169, + "ĠJoe": 6807, + "ĠJoel": 21522, + "ĠJoey": 23764, + "ĠJoh": 19180, + "ĠJohann": 34094, + "ĠJohannes": 48455, + "ĠJohn": 2619, + "ĠJohnny": 15999, + "ĠJohns": 37016, + "ĠJohnson": 9779, + "ĠJoin": 19642, + "ĠJoining": 40229, + "ĠJoint": 37866, + "ĠJoker": 27453, + "ĠJon": 7745, + "ĠJonah": 42353, + "ĠJonas": 34630, + "ĠJonathan": 15471, + "ĠJones": 10512, + "ĠJong": 19589, + "ĠJoo": 35169, + "ĠJord": 32752, + "ĠJordan": 10979, + "ĠJorge": 36875, + "ĠJos": 18541, + "ĠJose": 8635, + "ĠJoseph": 11170, + "ĠJosh": 9785, + "ĠJoshua": 24005, + "ĠJosé": 34342, + "ĠJour": 13483, + "ĠJournal": 16936, + "ĠJourney": 37724, + "ĠJoy": 15571, + "ĠJoyce": 40044, + "ĠJoão": 21302, + "ĠJr": 17261, + "ĠJu": 13582, + "ĠJuan": 17064, + "ĠJub": 43560, + "ĠJud": 7661, + "ĠJuda": 35300, + "ĠJudah": 46828, + "ĠJudaism": 37797, + "ĠJudas": 49632, + "ĠJude": 36521, + "ĠJudge": 19476, + "ĠJudith": 45395, + "ĠJudy": 24577, + "ĠJug": 27892, + "ĠJugend": 35303, + "ĠJuice": 47776, + "ĠJul": 7174, + "ĠJulia": 18551, + "ĠJulian": 25151, + "ĠJulie": 18794, + "ĠJuliet": 33532, + "ĠJulius": 47666, + "ĠJuly": 7370, + "ĠJump": 18697, + "ĠJun": 8492, + "ĠJune": 6928, + "ĠJung": 12739, + "ĠJungkook": 48928, + "ĠJungle": 44021, + "ĠJunior": 21954, + "ĠJup": 22125, + "ĠJupiter": 24567, + "ĠJur": 27544, + "ĠJurassic": 44730, + "ĠJust": 1449, + "ĠJustice": 10422, + "ĠJustin": 11320, + "ĠJá": 21237, + "ĠK": 591, + "ĠKA": 31233, + "ĠKAR": 42976, + "ĠKAT": 39274, + "ĠKE": 21887, + "ĠKELL": 48109, + "ĠKENN": 34773, + "ĠKENNETH": 42303, + "ĠKEVIN": 50006, + "ĠKH": 34854, + "ĠKI": 47261, + "ĠKIM": 38985, + "ĠKIR": 29927, + "ĠKIRBY": 34553, + "ĠKL": 47991, + "ĠKN": 26967, + "ĠKNOW": 39429, + "ĠKO": 34245, + "ĠKP": 41371, + "ĠKR": 37522, + "ĠKRIS": 36449, + "ĠKY": 41150, + "ĠKa": 10988, + "ĠKab": 25848, + "ĠKabul": 48103, + "ĠKad": 32248, + "ĠKaf": 36813, + "ĠKafka": 47064, + "ĠKag": 48751, + "ĠKah": 39444, + "ĠKai": 20753, + "ĠKaiser": 42066, + "ĠKait": 45791, + "ĠKak": 36775, + "ĠKal": 12655, + "ĠKalau": 36366, + "ĠKam": 11934, + "ĠKamera": 42728, + "ĠKampf": 45126, + "ĠKan": 11120, + "ĠKanal": 38643, + "ĠKane": 39161, + "ĠKang": 20360, + "ĠKann": 29074, + "ĠKansas": 19422, + "ĠKant": 40927, + "ĠKanye": 37654, + "ĠKap": 21216, + "ĠKar": 8009, + "ĠKara": 34838, + "ĠKard": 31050, + "ĠKardash": 37959, + "ĠKardashian": 46044, + "ĠKaren": 14834, + "ĠKarena": 45724, + "ĠKarere": 48442, + "ĠKarl": 20405, + "ĠKarma": 39063, + "ĠKart": 27365, + "ĠKas": 28059, + "ĠKash": 32356, + "ĠKat": 8365, + "ĠKate": 16251, + "ĠKath": 20067, + "ĠKatherine": 33478, + "ĠKathleen": 41648, + "ĠKathryn": 49655, + "ĠKathy": 30740, + "ĠKatie": 19602, + "ĠKatrina": 42550, + "ĠKaty": 42959, + "ĠKauf": 44590, + "ĠKaw": 31795, + "ĠKay": 14179, + "ĠKayla": 36797, + "ĠKaz": 16264, + "ĠKazakh": 38438, + "ĠKazakhstan": 47394, + "ĠKazu": 41038, + "ĠKazuto": 38031, + "ĠKazuya": 47730, + "ĠKe": 3189, + "ĠKeep": 5527, + "ĠKeeping": 30187, + "ĠKeith": 20613, + "ĠKel": 19158, + "ĠKell": 28554, + "ĠKeller": 48352, + "ĠKelly": 12345, + "ĠKelsey": 44714, + "ĠKelvin": 36955, + "ĠKem": 30097, + "ĠKen": 8273, + "ĠKend": 20891, + "ĠKendall": 38794, + "ĠKenn": 12369, + "ĠKennedy": 16517, + "ĠKenneth": 33735, + "ĠKenny": 33681, + "ĠKens": 33265, + "ĠKensuke": 44708, + "ĠKent": 15843, + "ĠKentucky": 22369, + "ĠKenya": 31011, + "ĠKer": 20706, + "ĠKern": 40224, + "ĠKerry": 28528, + "ĠKes": 26898, + "ĠKevin": 9954, + "ĠKey": 12759, + "ĠKeys": 43733, + "ĠKh": 11681, + "ĠKhal": 27724, + "ĠKhan": 18136, + "ĠKhông": 49125, + "ĠKi": 17459, + "ĠKia": 45505, + "ĠKick": 20886, + "ĠKickstarter": 41288, + "ĠKid": 18978, + "ĠKids": 15694, + "ĠKiev": 48559, + "ĠKil": 23912, + "ĠKill": 17526, + "ĠKiller": 39846, + "ĠKim": 5652, + "ĠKimberly": 39804, + "ĠKimchi": 38428, + "ĠKin": 27950, + "ĠKind": 9242, + "ĠKinda": 35553, + "ĠKinder": 14193, + "ĠKindern": 43987, + "ĠKing": 3819, + "ĠKingdom": 11277, + "ĠKings": 21855, + "ĠKingston": 33419, + "ĠKir": 11305, + "ĠKirby": 37423, + "ĠKirk": 27834, + "ĠKirsty": 31166, + "ĠKiss": 24297, + "ĠKit": 23037, + "ĠKita": 27329, + "ĠKitchen": 23135, + "ĠKitty": 36393, + "ĠKivol": 27506, + "ĠKivolowitz": 27507, + "ĠKl": 16053, + "ĠKlar": 44893, + "ĠKle": 17053, + "ĠKlein": 33327, + "ĠKlim": 25136, + "ĠKn": 10519, + "ĠKne": 32708, + "ĠKnight": 18708, + "ĠKnights": 37685, + "ĠKnock": 34017, + "ĠKnow": 10265, + "ĠKnowing": 25499, + "ĠKnowledge": 32906, + "ĠKnox": 48510, + "ĠKo": 10509, + "ĠKob": 46353, + "ĠKobe": 46296, + "ĠKoch": 40401, + "ĠKoh": 30861, + "ĠKok": 36915, + "ĠKol": 26137, + "ĠKoll": 11621, + "ĠKolleg": 25213, + "ĠKollege": 28505, + "ĠKollegen": 23713, + "ĠKollegin": 46632, + "ĠKolleginnen": 35950, + "ĠKom": 14286, + "ĠKomb": 34678, + "ĠKombat": 49131, + "ĠKomm": 18400, + "ĠKomment": 33708, + "ĠKommentare": 46203, + "ĠKommun": 28832, + "ĠKommunen": 42566, + "ĠKon": 12718, + "ĠKong": 9832, + "ĠKons": 48163, + "ĠKonst": 44200, + "ĠKont": 20629, + "ĠKontakt": 43396, + "ĠKook": 47719, + "ĠKop": 49656, + "ĠKopf": 28231, + "ĠKor": 21690, + "ĠKore": 3893, + "ĠKorea": 6307, + "ĠKorean": 6933, + "ĠKoreans": 32130, + "ĠKos": 36909, + "ĠKosten": 47391, + "ĠKot": 30123, + "ĠKr": 6332, + "ĠKra": 26988, + "ĠKraft": 31313, + "ĠKrank": 48896, + "ĠKranken": 39950, + "ĠKre": 23625, + "ĠKrie": 35579, + "ĠKris": 28486, + "ĠKrishna": 27153, + "ĠKrist": 19562, + "ĠKristen": 35107, + "ĠKristin": 42189, + "ĠKrit": 46372, + "ĠKrsna": 33035, + "ĠKry": 37747, + "ĠKu": 20311, + "ĠKub": 35805, + "ĠKubernetes": 23145, + "ĠKultur": 46744, + "ĠKum": 28039, + "ĠKumar": 46500, + "ĠKun": 19089, + "ĠKund": 49759, + "ĠKunden": 38192, + "ĠKung": 44317, + "ĠKunst": 40099, + "ĠKur": 16481, + "ĠKurd": 32305, + "ĠKurt": 26168, + "ĠKurz": 45307, + "ĠKush": 49709, + "ĠKw": 43432, + "ĠKwang": 46561, + "ĠKy": 12237, + "ĠKyle": 18023, + "ĠKylie": 39424, + "ĠKyoto": 48470, + "ĠKyung": 40285, + "ĠKä": 40502, + "ĠKö": 43197, + "ĠKön": 29077, + "ĠKörper": 33501, + "ĠKü": 30726, + "ĠKız": 36223, + "ĠKá¹Ľá¹£á¹ĩa": 36777, + "ĠL": 441, + "ĠLA": 9855, + "ĠLAKE": 42193, + "ĠLAN": 37387, + "ĠLAU": 8150, + "ĠLAUGH": 26355, + "ĠLAUGHTER": 46760, + "ĠLAURA": 10105, + "ĠLC": 42198, + "ĠLCD": 33158, + "ĠLD": 33936, + "ĠLE": 11378, + "ĠLED": 11261, + "ĠLEDs": 33366, + "ĠLEE": 38784, + "ĠLEGO": 36072, + "ĠLEO": 49692, + "ĠLET": 40866, + "ĠLG": 25449, + "ĠLGB": 15452, + "ĠLGBT": 16179, + "ĠLGBTQ": 26862, + "ĠLI": 7169, + "ĠLIAM": 13194, + "ĠLIKE": 24705, + "ĠLIN": 19763, + "ĠLINKE": 32445, + "ĠLISA": 42448, + "ĠLIVE": 33880, + "ĠLLC": 33698, + "ĠLM": 46529, + "ĠLO": 15731, + "ĠLOL": 15086, + "ĠLOOK": 45648, + "ĠLORD": 29818, + "ĠLOT": 42930, + "ĠLOU": 49486, + "ĠLOVE": 31351, + "ĠLP": 38095, + "ĠLS": 36657, + "ĠLT": 42671, + "ĠLU": 31851, + "ĠLY": 42154, + "ĠLa": 2369, + "ĠLab": 10137, + "ĠLabor": 17250, + "ĠLaboratory": 40824, + "ĠLabour": 23361, + "ĠLabs": 40047, + "ĠLac": 40113, + "ĠLad": 12106, + "ĠLaden": 45555, + "ĠLadies": 17084, + "ĠLady": 11256, + "ĠLag": 24886, + "ĠLage": 41555, + "ĠLah": 45862, + "ĠLaink": 47195, + "ĠLak": 37327, + "ĠLake": 10582, + "ĠLakes": 36932, + "ĠLal": 47893, + "ĠLam": 18825, + "ĠLamb": 19302, + "ĠLambda": 45691, + "ĠLamborg": 48389, + "ĠLan": 17482, + "ĠLana": 48750, + "ĠLanc": 39803, + "ĠLance": 40493, + "ĠLand": 6607, + "ĠLandes": 22031, + "ĠLandesregierung": 37695, + "ĠLanding": 49458, + "ĠLands": 30527, + "ĠLane": 26226, + "ĠLang": 13313, + "ĠLanguage": 24445, + "ĠLanka": 42765, + "ĠLao": 46471, + "ĠLap": 42498, + "ĠLar": 11569, + "ĠLara": 33935, + "ĠLarge": 33092, + "ĠLarry": 18145, + "ĠLars": 41563, + "ĠLas": 10663, + "ĠLaser": 43810, + "ĠLast": 5264, + "ĠLastly": 18072, + "ĠLat": 7354, + "ĠLate": 31220, + "ĠLater": 11965, + "ĠLatin": 10803, + "ĠLatino": 25422, + "ĠLatinos": 48413, + "ĠLau": 47979, + "ĠLaughing": 46861, + "ĠLaughs": 33439, + "ĠLaughter": 13584, + "ĠLaunch": 28119, + "ĠLaur": 29906, + "ĠLaura": 13220, + "ĠLaure": 27270, + "ĠLauren": 18915, + "ĠLaurent": 49357, + "ĠLaurie": 38189, + "ĠLaut": 47344, + "ĠLav": 30966, + "ĠLaw": 7744, + "ĠLawrence": 22787, + "ĠLay": 20084, + "ĠLayer": 35166, + "ĠLaz": 46469, + "ĠLazar": 49273, + "ĠLe": 1456, + "ĠLead": 31025, + "ĠLeader": 22650, + "ĠLeaders": 24256, + "ĠLeadership": 30577, + "ĠLeaf": 32290, + "ĠLeague": 11199, + "ĠLeah": 38591, + "ĠLean": 49303, + "ĠLearn": 17216, + "ĠLearning": 15205, + "ĠLeave": 9825, + "ĠLeaving": 41253, + "ĠLeb": 19437, + "ĠLeban": 23530, + "ĠLebanon": 29532, + "ĠLeben": 15399, + "ĠLebens": 21530, + "ĠLect": 37196, + "ĠLed": 39367, + "ĠLee": 6957, + "ĠLeft": 16405, + "ĠLeg": 7470, + "ĠLegacy": 42838, + "ĠLegal": 33577, + "ĠLegend": 21480, + "ĠLegends": 28103, + "ĠLegion": 33024, + "ĠLegisl": 33074, + "ĠLego": 28761, + "ĠLeh": 42631, + "ĠLehr": 29943, + "ĠLehrer": 49718, + "ĠLei": 32593, + "ĠLeist": 39577, + "ĠLem": 16905, + "ĠLemon": 35404, + "ĠLen": 23009, + "ĠLena": 41549, + "ĠLeno": 45661, + "ĠLeo": 19344, + "ĠLeon": 13244, + "ĠLeonard": 35172, + "ĠLeonardo": 36523, + "ĠLes": 6965, + "ĠLeslie": 28140, + "ĠLess": 18649, + "ĠLet": 961, + "ĠLets": 15655, + "ĠLetter": 43426, + "ĠLeute": 13495, + "ĠLeuten": 42301, + "ĠLev": 28471, + "ĠLevel": 16872, + "ĠLevi": 33987, + "ĠLew": 14542, + "ĠLewis": 17412, + "ĠLex": 24086, + "ĠLey": 36794, + "ĠLi": 8349, + "ĠLia": 47844, + "ĠLiam": 32860, + "ĠLiang": 35842, + "ĠLib": 15834, + "ĠLiber": 14175, + "ĠLiberal": 36020, + "ĠLiberty": 27527, + "ĠLibr": 12006, + "ĠLibrary": 12806, + "ĠLibya": 36452, + "ĠLic": 40627, + "ĠLicht": 32917, + "ĠLie": 11197, + "ĠLiebe": 28790, + "ĠLieutenant": 28412, + "ĠLif": 31946, + "ĠLife": 7720, + "ĠLift": 26148, + "ĠLight": 8279, + "ĠLightning": 28848, + "ĠLights": 38226, + "ĠLike": 1743, + "ĠLikewise": 30269, + "ĠLil": 23454, + "ĠLilly": 41386, + "ĠLily": 24669, + "ĠLim": 16406, + "ĠLima": 50217, + "ĠLimited": 43231, + "ĠLin": 9355, + "ĠLincoln": 15993, + "ĠLind": 16828, + "ĠLinda": 20324, + "ĠLindsay": 35017, + "ĠLindsey": 35910, + "ĠLine": 14670, + "ĠLing": 20977, + "ĠLink": 8466, + "ĠLinked": 19322, + "ĠLinkedIn": 20657, + "ĠLinks": 37156, + "ĠLinux": 18734, + "ĠLion": 21704, + "ĠLions": 48335, + "ĠLip": 27475, + "ĠLiqu": 32331, + "ĠLiquid": 38943, + "ĠLis": 30812, + "ĠLisa": 12252, + "ĠList": 17668, + "ĠListen": 7501, + "ĠListening": 49321, + "ĠLit": 41841, + "ĠLite": 32986, + "ĠLiter": 16090, + "ĠLiterally": 23768, + "ĠLith": 32577, + "ĠLittle": 8022, + "ĠLiu": 18056, + "ĠLiv": 31738, + "ĠLive": 10385, + "ĠLiver": 28010, + "ĠLiverpool": 32473, + "ĠLives": 25791, + "ĠLiving": 18824, + "ĠLiz": 16480, + "ĠLl": 32717, + "ĠLloyd": 31401, + "ĠLo": 6130, + "ĠLoad": 48408, + "ĠLob": 30719, + "ĠLoc": 12859, + "ĠLocal": 22755, + "ĠLoch": 49912, + "ĠLock": 16736, + "ĠLog": 10824, + "ĠLogan": 22689, + "ĠLogic": 49898, + "ĠLok": 46278, + "ĠLoki": 37940, + "ĠLol": 41026, + "ĠLon": 35927, + "ĠLond": 6735, + "ĠLondon": 7042, + "ĠLong": 8282, + "ĠLook": 2053, + "ĠLooking": 11053, + "ĠLooks": 10027, + "ĠLoop": 45660, + "ĠLopez": 36077, + "ĠLor": 29358, + "ĠLord": 3257, + "ĠLords": 41870, + "ĠLore": 36994, + "ĠLoren": 37162, + "ĠLori": 32698, + "ĠLos": 7632, + "ĠLost": 23422, + "ĠLot": 20131, + "ĠLots": 15908, + "ĠLotus": 44769, + "ĠLou": 7272, + "ĠLoud": 48259, + "ĠLouis": 9763, + "ĠLouise": 35962, + "ĠLouisiana": 25413, + "ĠLove": 5956, + "ĠLovely": 33925, + "ĠLow": 17078, + "ĠLower": 25523, + "ĠLoy": 50048, + "ĠLt": 44451, + "ĠLu": 5047, + "ĠLub": 43781, + "ĠLuc": 9593, + "ĠLuca": 42076, + "ĠLucas": 19178, + "ĠLuci": 37309, + "ĠLuck": 16627, + "ĠLuckily": 19726, + "ĠLucky": 26639, + "ĠLucy": 22698, + "ĠLud": 30550, + "ĠLuego": 45665, + "ĠLuft": 26995, + "ĠLuigi": 33308, + "ĠLuis": 25133, + "ĠLuiza": 45208, + "ĠLuk": 34992, + "ĠLuke": 13044, + "ĠLulu": 45223, + "ĠLum": 35978, + "ĠLun": 32077, + "ĠLuna": 27355, + "ĠLunch": 44958, + "ĠLuo": 35155, + "ĠLup": 44319, + "ĠLust": 45834, + "ĠLuther": 20693, + "ĠLux": 25767, + "ĠLy": 12687, + "ĠLydia": 44038, + "ĠLyn": 15214, + "ĠLynch": 32345, + "ĠLynd": 48800, + "ĠLynn": 27469, + "ĠLänder": 43441, + "ĠLändern": 48321, + "ĠLö": 50123, + "ĠLös": 34642, + "ĠLösung": 46934, + "ĠLÃł": 22237, + "ĠM": 376, + "ĠMA": 12191, + "ĠMAC": 27716, + "ĠMAL": 40643, + "ĠMALE": 31642, + "ĠMAN": 15372, + "ĠMAND": 47932, + "ĠMAR": 6450, + "ĠMARC": 49433, + "ĠMARISHA": 12265, + "ĠMARK": 20606, + "ĠMARTIN": 36996, + "ĠMARY": 37640, + "ĠMAS": 42129, + "ĠMAT": 5904, + "ĠMATT": 6291, + "ĠMAX": 39549, + "ĠMAY": 28996, + "ĠMAYOR": 43967, + "ĠMB": 28866, + "ĠMBA": 26674, + "ĠMC": 8797, + "ĠMCU": 39415, + "ĠMD": 22521, + "ĠME": 12003, + "ĠMEL": 38005, + "ĠMEM": 40524, + "ĠMER": 47234, + "ĠMG": 36856, + "ĠMH": 34796, + "ĠMI": 13696, + "ĠMIC": 20565, + "ĠMICH": 41276, + "ĠMICHAEL": 23859, + "ĠMID": 32394, + "ĠMIDI": 41474, + "ĠMIKE": 25208, + "ĠMIL": 43346, + "ĠMILL": 48070, + "ĠMIN": 26186, + "ĠMIT": 13100, + "ĠMJ": 36240, + "ĠMK": 30770, + "ĠML": 21601, + "ĠMM": 34191, + "ĠMMA": 48700, + "ĠMO": 19290, + "ĠMOD": 38113, + "ĠMOM": 46840, + "ĠMON": 27398, + "ĠMOO": 49197, + "ĠMOR": 29533, + "ĠMORE": 35509, + "ĠMOS": 44219, + "ĠMP": 14146, + "ĠMR": 9808, + "ĠMRI": 32812, + "ĠMS": 7395, + "ĠMT": 37333, + "ĠMTV": 43924, + "ĠMU": 17935, + "ĠMUELLER": 42573, + "ĠMUR": 46707, + "ĠMUS": 49764, + "ĠMUSIC": 16924, + "ĠMV": 17663, + "ĠMVP": 37151, + "ĠMX": 47509, + "ĠMY": 16322, + "ĠMa": 4042, + "ĠMaar": 14294, + "ĠMac": 5707, + "ĠMacBook": 31737, + "ĠMaced": 45603, + "ĠMach": 12089, + "ĠMachine": 22155, + "ĠMacht": 40873, + "ĠMack": 24295, + "ĠMacron": 32806, + "ĠMad": 5326, + "ĠMadam": 18490, + "ĠMadame": 31077, + "ĠMade": 18330, + "ĠMadison": 22874, + "ĠMadonna": 49540, + "ĠMadrid": 22091, + "ĠMae": 31055, + "ĠMaf": 41517, + "ĠMag": 6395, + "ĠMagaz": 25994, + "ĠMagazine": 27618, + "ĠMage": 49293, + "ĠMaggie": 29107, + "ĠMagic": 16154, + "ĠMagn": 19664, + "ĠMah": 10104, + "ĠMahar": 48498, + "ĠMai": 24084, + "ĠMail": 29164, + "ĠMain": 12383, + "ĠMaine": 28180, + "ĠMainly": 47468, + "ĠMainten": 30437, + "ĠMaintenant": 36931, + "ĠMais": 6313, + "ĠMaj": 7048, + "ĠMajesty": 10665, + "ĠMajor": 15581, + "ĠMak": 16576, + "ĠMake": 4387, + "ĠMaker": 35096, + "ĠMakes": 25245, + "ĠMaking": 14595, + "ĠMal": 5746, + "ĠMalays": 21543, + "ĠMalaysia": 25465, + "ĠMalcolm": 34596, + "ĠMale": 21080, + "ĠMall": 24883, + "ĠMam": 19899, + "ĠMama": 17775, + "ĠMan": 2458, + "ĠMana": 33711, + "ĠManagement": 14781, + "ĠManager": 13821, + "ĠManchester": 27180, + "ĠMand": 15458, + "ĠMandal": 49869, + "ĠMandarin": 42292, + "ĠMandy": 47474, + "ĠMang": 35487, + "ĠMango": 48588, + "ĠManh": 21740, + "ĠManhattan": 23633, + "ĠMann": 16892, + "ĠMans": 23167, + "ĠMansion": 45572, + "ĠMant": 32829, + "ĠManual": 46173, + "ĠManuel": 34362, + "ĠManufact": 44957, + "ĠMany": 5126, + "ĠMao": 38030, + "ĠMaori": 23357, + "ĠMap": 22053, + "ĠMaple": 47604, + "ĠMaps": 28978, + "ĠMar": 2039, + "ĠMarc": 18460, + "ĠMarcel": 34738, + "ĠMarch": 6129, + "ĠMarcheg": 38081, + "ĠMarchegiani": 38092, + "ĠMarco": 26535, + "ĠMarcus": 26574, + "ĠMarg": 20000, + "ĠMargaret": 24177, + "ĠMari": 34478, + "ĠMaria": 12734, + "ĠMarian": 37497, + "ĠMarie": 15130, + "ĠMarilyn": 48340, + "ĠMarin": 43016, + "ĠMarina": 35310, + "ĠMarine": 20415, + "ĠMarines": 39331, + "ĠMario": 9343, + "ĠMarion": 49270, + "ĠMark": 3934, + "ĠMarket": 15596, + "ĠMarketing": 27402, + "ĠMarkt": 39774, + "ĠMarkus": 45041, + "ĠMarly": 50129, + "ĠMarriage": 49593, + "ĠMars": 9692, + "ĠMarsh": 14443, + "ĠMarshall": 17279, + "ĠMart": 5807, + "ĠMartha": 27787, + "ĠMartin": 9184, + "ĠMartine": 37195, + "ĠMartinez": 41886, + "ĠMarty": 29192, + "ĠMarvel": 13837, + "ĠMarvin": 48722, + "ĠMarx": 21703, + "ĠMary": 6059, + "ĠMaryland": 19939, + "ĠMarÃŃa": 48472, + "ĠMas": 5224, + "ĠMash": 42039, + "ĠMask": 25414, + "ĠMason": 25730, + "ĠMass": 10482, + "ĠMassachusetts": 19979, + "ĠMaster": 6140, + "ĠMasters": 27014, + "ĠMat": 6789, + "ĠMatch": 26178, + "ĠMate": 27594, + "ĠMater": 19188, + "ĠMaterial": 29160, + "ĠMath": 15776, + "ĠMatrix": 36274, + "ĠMats": 27204, + "ĠMatt": 7397, + "ĠMatte": 47544, + "ĠMatter": 20285, + "ĠMatth": 11327, + "ĠMatthew": 12434, + "ĠMau": 32858, + "ĠMaur": 26133, + "ĠMaurice": 49041, + "ĠMax": 7402, + "ĠMaxim": 29076, + "ĠMaxwell": 39594, + "ĠMay": 1891, + "ĠMaya": 21695, + "ĠMaybe": 2704, + "ĠMayo": 46406, + "ĠMayor": 13925, + "ĠMaz": 28568, + "ĠMaÃŁ": 28645, + "ĠMaÃŁnahmen": 36626, + "ĠMc": 4050, + "ĠMcC": 12061, + "ĠMcCain": 49725, + "ĠMcCarthy": 44085, + "ĠMcConnell": 41331, + "ĠMcD": 49269, + "ĠMcDonald": 16889, + "ĠMcG": 21865, + "ĠMcK": 21765, + "ĠMcL": 38922, + "ĠMcM": 25549, + "ĠMcMahon": 48187, + "ĠMcN": 48996, + "ĠMe": 1923, + "ĠMean": 12302, + "ĠMeaning": 19948, + "ĠMeans": 40290, + "ĠMeanwhile": 13879, + "ĠMeasure": 41436, + "ĠMeat": 30502, + "ĠMechan": 30175, + "ĠMed": 3982, + "ĠMedal": 42437, + "ĠMedia": 14741, + "ĠMedic": 11555, + "ĠMedicaid": 24779, + "ĠMedical": 15896, + "ĠMedicare": 19583, + "ĠMedicine": 20338, + "ĠMedien": 44030, + "ĠMediter": 25828, + "ĠMediterranean": 27280, + "ĠMedium": 38915, + "ĠMeer": 49758, + "ĠMeet": 22963, + "ĠMeeting": 33217, + "ĠMeg": 9986, + "ĠMega": 22834, + "ĠMegan": 21332, + "ĠMeghan": 32597, + "ĠMeh": 29337, + "ĠMehr": 30782, + "ĠMei": 34100, + "ĠMein": 18382, + "ĠMeine": 22258, + "ĠMeinung": 36519, + "ĠMel": 7375, + "ĠMelanie": 42798, + "ĠMelbourne": 27496, + "ĠMelissa": 22844, + "ĠMelt": 48425, + "ĠMem": 8731, + "ĠMember": 16037, + "ĠMembers": 21495, + "ĠMemorial": 24957, + "ĠMemory": 38203, + "ĠMemphis": 26743, + "ĠMen": 6685, + "ĠMend": 40887, + "ĠMeng": 29090, + "ĠMenge": 40723, + "ĠMens": 7364, + "ĠMensch": 27773, + "ĠMenschen": 8397, + "ĠMent": 33140, + "ĠMental": 30294, + "ĠMenu": 43343, + "ĠMeow": 42996, + "ĠMer": 6124, + "ĠMerc": 18897, + "ĠMercedes": 22899, + "ĠMerci": 19856, + "ĠMercury": 31780, + "ĠMercy": 35626, + "ĠMeredith": 29737, + "ĠMerkel": 38356, + "ĠMerry": 26572, + "ĠMes": 17485, + "ĠMess": 9847, + "ĠMessage": 45947, + "ĠMessenger": 34226, + "ĠMessi": 42969, + "ĠMessiah": 21756, + "ĠMet": 6377, + "ĠMetal": 23488, + "ĠMetall": 49447, + "ĠMete": 43328, + "ĠMeter": 38054, + "ĠMeth": 48602, + "ĠMethod": 25285, + "ĠMetro": 25598, + "ĠMetroid": 47767, + "ĠMetropolitan": 45489, + "ĠMeu": 34398, + "ĠMex": 6496, + "ĠMexican": 16164, + "ĠMexico": 8612, + "ĠMeyer": 47207, + "ĠMhm": 26272, + "ĠMi": 10204, + "ĠMia": 28545, + "ĠMiami": 18367, + "ĠMic": 5818, + "ĠMich": 3392, + "ĠMicha": 31698, + "ĠMichael": 5116, + "ĠMichaels": 45759, + "ĠMichel": 23709, + "ĠMichelle": 14933, + "ĠMichigan": 11925, + "ĠMick": 42538, + "ĠMickey": 24714, + "ĠMicro": 25642, + "ĠMicrosoft": 8116, + "ĠMid": 7033, + "ĠMiddle": 10775, + "ĠMidwest": 33483, + "ĠMig": 18951, + "ĠMight": 23964, + "ĠMighty": 45874, + "ĠMiguel": 29150, + "ĠMih": 48168, + "ĠMik": 16380, + "ĠMike": 6602, + "ĠMikey": 42344, + "ĠMil": 7036, + "ĠMilan": 32874, + "ĠMile": 47651, + "ĠMiles": 27384, + "ĠMilitary": 28460, + "ĠMilk": 26986, + "ĠMilky": 38465, + "ĠMill": 7190, + "ĠMillenn": 42007, + "ĠMiller": 16932, + "ĠMilli": 36654, + "ĠMilliarden": 44784, + "ĠMillion": 33959, + "ĠMillionen": 26096, + "ĠMills": 44277, + "ĠMilton": 40778, + "ĠMilwaukee": 35321, + "ĠMimi": 46709, + "ĠMin": 2829, + "ĠMina": 35981, + "ĠMind": 13719, + "ĠMine": 11620, + "ĠMinecraft": 21029, + "ĠMing": 19352, + "ĠMinh": 45093, + "ĠMini": 18239, + "ĠMinist": 32196, + "ĠMinister": 6506, + "ĠMinistry": 19720, + "ĠMinne": 37829, + "ĠMinneapolis": 38713, + "ĠMinnesota": 13996, + "ĠMinnie": 47654, + "ĠMinor": 36117, + "ĠMins": 49239, + "ĠMint": 36188, + "ĠMinute": 33509, + "ĠMinuten": 27593, + "ĠMir": 9421, + "ĠMira": 28394, + "ĠMiranda": 37000, + "ĠMire": 50008, + "ĠMirror": 34452, + "ĠMis": 23240, + "ĠMiss": 5275, + "ĠMission": 20170, + "ĠMississippi": 20347, + "ĠMissouri": 21334, + "ĠMist": 20166, + "ĠMister": 22058, + "ĠMistress": 48509, + "ĠMit": 10821, + "ĠMitar": 32900, + "ĠMitarbeiter": 38324, + "ĠMitch": 18546, + "ĠMitchell": 27582, + "ĠMitgl": 44167, + "ĠMits": 40897, + "ĠMitt": 18784, + "ĠMitte": 41526, + "ĠMittel": 35079, + "ĠMix": 12769, + "ĠMiy": 26195, + "ĠMiz": 37793, + "ĠMm": 8266, + "ĠMmm": 12146, + "ĠMmmm": 42992, + "ĠMo": 3335, + "ĠMob": 37920, + "ĠMobil": 47188, + "ĠMobile": 22625, + "ĠMod": 6583, + "ĠMode": 20500, + "ĠModel": 17105, + "ĠModer": 42067, + "ĠModern": 19814, + "ĠModi": 47621, + "ĠModule": 48251, + "ĠMog": 34327, + "ĠMoh": 16123, + "ĠMohammad": 43939, + "ĠMohammed": 41910, + "ĠMoi": 20256, + "ĠMol": 28278, + "ĠMole": 46914, + "ĠMolly": 26665, + "ĠMolt": 39254, + "ĠMom": 5576, + "ĠMoment": 19093, + "ĠMommy": 24602, + "ĠMomo": 47984, + "ĠMon": 4713, + "ĠMona": 43731, + "ĠMonate": 44067, + "ĠMonaten": 46193, + "ĠMond": 7492, + "ĠMonday": 8138, + "ĠMonet": 47871, + "ĠMoney": 16631, + "ĠMong": 19423, + "ĠMongo": 48380, + "ĠMongol": 43573, + "ĠMonica": 25363, + "ĠMonitor": 33799, + "ĠMonkey": 34862, + "ĠMonroe": 43900, + "ĠMonsieur": 34941, + "ĠMonst": 39768, + "ĠMonster": 21059, + "ĠMont": 7947, + "ĠMontana": 27916, + "ĠMonte": 38105, + "ĠMontgomery": 34715, + "ĠMonth": 24255, + "ĠMontreal": 34180, + "ĠMoo": 43224, + "ĠMoon": 10714, + "ĠMoore": 21644, + "ĠMor": 5146, + "ĠMore": 5048, + "ĠMoreover": 19838, + "ĠMorgan": 16724, + "ĠMorgen": 35570, + "ĠMorm": 33610, + "ĠMormon": 39515, + "ĠMorning": 17967, + "ĠMoroc": 30893, + "ĠMorocco": 38782, + "ĠMorris": 23619, + "ĠMorrison": 33767, + "ĠMort": 24977, + "ĠMortal": 45797, + "ĠMos": 19430, + "ĠMosc": 17213, + "ĠMoscow": 18298, + "ĠMoses": 17580, + "ĠMoss": 39591, + "ĠMost": 4534, + "ĠMostly": 29035, + "ĠMot": 8956, + "ĠMother": 8931, + "ĠMotion": 27771, + "ĠMoto": 37825, + "ĠMotor": 18495, + "ĠMotorola": 45871, + "ĠMotors": 40118, + "ĠMount": 8426, + "ĠMountain": 15586, + "ĠMountains": 30970, + "ĠMouse": 29383, + "ĠMov": 43756, + "ĠMove": 10475, + "ĠMovement": 26523, + "ĠMovie": 28766, + "ĠMoving": 14242, + "ĠMoy": 47254, + "ĠMoz": 30208, + "ĠMozart": 42653, + "ĠMoż": 44736, + "ĠMoże": 43774, + "ĠMr": 2221, + "ĠMrs": 9814, + "ĠMs": 7741, + "ĠMt": 39183, + "ĠMu": 15601, + "ĠMuch": 12313, + "ĠMuchas": 35669, + "ĠMud": 39231, + "ĠMueller": 38152, + "ĠMuh": 15651, + "ĠMuhammad": 19360, + "ĠMuito": 31824, + "ĠMuk": 34280, + "ĠMul": 29960, + "ĠMull": 41621, + "ĠMult": 14665, + "ĠMulti": 29238, + "ĠMultip": 31150, + "ĠMultiple": 40056, + "ĠMum": 24279, + "ĠMumbai": 34309, + "ĠMummy": 46569, + "ĠMun": 17050, + "ĠMund": 33317, + "ĠMunich": 40601, + "ĠMunicip": 47606, + "ĠMur": 9373, + "ĠMurder": 44370, + "ĠMurphy": 28549, + "ĠMurray": 27291, + "ĠMus": 3569, + "ĠMuse": 47293, + "ĠMuseum": 10967, + "ĠMush": 38188, + "ĠMusic": 7609, + "ĠMusical": 42527, + "ĠMusik": 14156, + "ĠMusk": 26019, + "ĠMuslim": 8178, + "ĠMuslims": 14793, + "ĠMuss": 43879, + "ĠMust": 13252, + "ĠMustafa": 37229, + "ĠMustang": 37115, + "ĠMut": 18517, + "ĠMutta": 46604, + "ĠMutter": 31517, + "ĠMuy": 39586, + "ĠMy": 1222, + "ĠMyan": 42297, + "ĠMyanmar": 42725, + "ĠMyers": 45088, + "ĠMys": 37795, + "ĠMyst": 28510, + "ĠMyster": 38175, + "ĠMystery": 41660, + "ĠMyth": 26371, + "ĠMythical": 44566, + "ĠMäd": 49182, + "ĠMänner": 36907, + "ĠMär": 46084, + "ĠMé": 23580, + "ĠMéxico": 28128, + "ĠMême": 42027, + "ĠMöglich": 21467, + "ĠMöglichkeit": 30662, + "ĠMöglichkeiten": 42627, + "ĠMü": 21295, + "ĠMün": 35840, + "ĠMÄģ": 45901, + "ĠMỹ": 48845, + "ĠN": 426, + "ĠNA": 16585, + "ĠNARRATOR": 10160, + "ĠNAS": 10182, + "ĠNASA": 12077, + "ĠNAT": 14500, + "ĠNATO": 19419, + "ĠNAU": 44789, + "ĠNBA": 23890, + "ĠNBC": 31504, + "ĠNC": 20786, + "ĠNCAA": 49650, + "ĠNCT": 38368, + "ĠND": 40709, + "ĠNE": 12384, + "ĠNES": 37212, + "ĠNEW": 36373, + "ĠNF": 13576, + "ĠNFL": 24817, + "ĠNFT": 50075, + "ĠNGO": 31456, + "ĠNGOs": 46454, + "ĠNH": 31118, + "ĠNHS": 22693, + "ĠNI": 18482, + "ĠNICK": 32175, + "ĠNIH": 28716, + "ĠNO": 9146, + "ĠNOR": 47904, + "ĠNOT": 12854, + "ĠNOW": 27734, + "ĠNP": 38611, + "ĠNPC": 28787, + "ĠNR": 38399, + "ĠNS": 15943, + "ĠNSA": 47299, + "ĠNT": 43452, + "ĠNV": 46512, + "ĠNXT": 38414, + "ĠNY": 26032, + "ĠNYU": 42682, + "ĠNZ": 41089, + "ĠNa": 6056, + "ĠNab": 45366, + "ĠNach": 11815, + "ĠNacht": 31133, + "ĠNacional": 36623, + "ĠNad": 23269, + "ĠNada": 40992, + "ĠNag": 18913, + "ĠNah": 13933, + "ĠNai": 50205, + "ĠNaj": 31576, + "ĠNak": 25779, + "ĠNam": 10684, + "ĠName": 13866, + "ĠNamen": 38771, + "ĠNan": 18852, + "ĠNana": 37087, + "ĠNancy": 18154, + "ĠNano": 43511, + "ĠNaomi": 35369, + "ĠNap": 18287, + "ĠNapole": 28298, + "ĠNapoleon": 31694, + "ĠNar": 13512, + "ĠNarr": 45658, + "ĠNarrator": 19242, + "ĠNaru": 42518, + "ĠNaruhodou": 44658, + "ĠNaruto": 47703, + "ĠNas": 16151, + "ĠNash": 25012, + "ĠNashville": 36370, + "ĠNast": 42185, + "ĠNasıl": 28710, + "ĠNat": 6821, + "ĠNatalie": 29574, + "ĠNatasha": 40624, + "ĠNate": 28064, + "ĠNathan": 20634, + "ĠNation": 17095, + "ĠNational": 4862, + "ĠNations": 16459, + "ĠNative": 15093, + "ĠNatomiast": 36210, + "ĠNatur": 34571, + "ĠNatural": 20137, + "ĠNaturally": 34304, + "ĠNature": 20159, + "ĠNatürlich": 33172, + "ĠNav": 9219, + "ĠNaval": 38118, + "ĠNavy": 15659, + "ĠNaw": 40315, + "ĠNay": 42019, + "ĠNaz": 11870, + "ĠNazi": 23592, + "ĠNazis": 29812, + "ĠNe": 1734, + "ĠNear": 22200, + "ĠNearly": 38000, + "ĠNeben": 48193, + "ĠNebr": 26733, + "ĠNebraska": 27171, + "ĠNed": 31355, + "ĠNeden": 46565, + "ĠNeder": 29005, + "ĠNederland": 31888, + "ĠNee": 22067, + "ĠNeed": 16984, + "ĠNeg": 19103, + "ĠNegative": 43230, + "ĠNegro": 45256, + "ĠNeigh": 35917, + "ĠNeighbor": 47729, + "ĠNeil": 18615, + "ĠNein": 18878, + "ĠNeither": 23956, + "ĠNej": 33840, + "ĠNelson": 23857, + "ĠNem": 22210, + "ĠNeo": 24458, + "ĠNep": 24875, + "ĠNepal": 36283, + "ĠNept": 45560, + "ĠNeptune": 49527, + "ĠNer": 36536, + "ĠNerd": 38367, + "ĠNered": 46352, + "ĠNest": 31581, + "ĠNet": 6188, + "ĠNetflix": 12778, + "ĠNether": 18313, + "ĠNetherlands": 20873, + "ĠNetwork": 12640, + "ĠNetz": 38889, + "ĠNev": 22673, + "ĠNevada": 25764, + "ĠNever": 7344, + "ĠNevertheless": 26554, + "ĠNew": 1873, + "ĠNewman": 49377, + "ĠNews": 7987, + "ĠNewton": 19541, + "ĠNext": 3087, + "ĠNexus": 46559, + "ĠNg": 21198, + "ĠNh": 26390, + "ĠNi": 12370, + "ĠNiagara": 45123, + "ĠNic": 14776, + "ĠNice": 5490, + "ĠNich": 17102, + "ĠNicholas": 22924, + "ĠNicht": 22629, + "ĠNick": 9449, + "ĠNickel": 45416, + "ĠNicki": 47608, + "ĠNico": 15115, + "ĠNicolas": 38268, + "ĠNicole": 18532, + "ĠNie": 12016, + "ĠNiet": 36583, + "ĠNig": 39554, + "ĠNiger": 21489, + "ĠNigeria": 28828, + "ĠNight": 10190, + "ĠNik": 13969, + "ĠNike": 30397, + "ĠNikki": 37907, + "ĠNil": 47398, + "ĠNim": 45251, + "ĠNin": 16093, + "ĠNina": 29204, + "ĠNine": 18939, + "ĠNing": 39417, + "ĠNinja": 25566, + "ĠNintendo": 11578, + "ĠNir": 44813, + "ĠNiss": 36009, + "ĠNissan": 38166, + "ĠNit": 37942, + "ĠNixon": 31130, + "ĠNiye": 40938, + "ĠNo": 883, + "ĠNoah": 20895, + "ĠNobel": 24611, + "ĠNoble": 33125, + "ĠNobody": 9297, + "ĠNoch": 38116, + "ĠNode": 38640, + "ĠNoel": 38824, + "ĠNoise": 44821, + "ĠNok": 37400, + "ĠNokia": 43980, + "ĠNolan": 43707, + "ĠNom": 31272, + "ĠNon": 8774, + "ĠNone": 14492, + "ĠNonetheless": 45437, + "ĠNoodles": 47389, + "ĠNope": 12172, + "ĠNor": 6966, + "ĠNora": 45741, + "ĠNord": 16229, + "ĠNorm": 8702, + "ĠNormal": 21277, + "ĠNormally": 17424, + "ĠNorman": 30475, + "ĠNorth": 4067, + "ĠNortheast": 42150, + "ĠNorthern": 14335, + "ĠNorthwest": 26068, + "ĠNorway": 24354, + "ĠNorweg": 31783, + "ĠNorwegian": 34875, + "ĠNos": 18749, + "ĠNossa": 36016, + "ĠNot": 1726, + "ĠNote": 11633, + "ĠNotes": 41360, + "ĠNothing": 6693, + "ĠNotice": 13428, + "ĠNotre": 34663, + "ĠNou": 28843, + "ĠNous": 15343, + "ĠNov": 31948, + "ĠNova": 27031, + "ĠNove": 7539, + "ĠNovember": 7674, + "ĠNow": 823, + "ĠNowadays": 28908, + "ĠNu": 13612, + "ĠNuclear": 42528, + "ĠNue": 47970, + "ĠNum": 22592, + "ĠNumber": 5118, + "ĠNummer": 47034, + "ĠNun": 23696, + "ĠNur": 17612, + "ĠNurs": 32992, + "ĠNurse": 48945, + "ĠNursing": 42655, + "ĠNut": 19861, + "ĠNvidia": 46284, + "ĠNy": 29214, + "ĠNão": 8010, + "ĠNä": 32731, + "ĠNär": 37306, + "ĠNós": 27626, + "ĠO": 422, + "ĠOA": 48424, + "ĠOB": 35538, + "ĠOC": 42278, + "ĠOD": 48447, + "ĠOF": 11944, + "ĠOFF": 24115, + "ĠOFFIC": 40579, + "ĠOFFICER": 44724, + "ĠOG": 32477, + "ĠOH": 13931, + "ĠOK": 2264, + "ĠOL": 39191, + "ĠOLED": 43944, + "ĠOM": 16954, + "ĠOMG": 23152, + "ĠON": 9299, + "ĠONE": 22026, + "ĠOP": 23324, + "ĠOR": 19654, + "ĠOS": 12731, + "ĠOT": 38617, + "ĠOUR": 45611, + "ĠOUT": 22451, + "ĠOVER": 46090, + "ĠOW": 38329, + "ĠOak": 19692, + "ĠOakland": 34868, + "ĠOb": 4075, + "ĠObama": 9560, + "ĠOber": 27664, + "ĠObi": 48533, + "ĠObject": 24753, + "ĠObrig": 45619, + "ĠObs": 20707, + "ĠObserv": 42547, + "ĠObviously": 7580, + "ĠOcc": 26191, + "ĠOcean": 18101, + "ĠOch": 13128, + "ĠOct": 6788, + "ĠOctober": 7617, + "ĠOculus": 49094, + "ĠOczywiÅĽcie": 42980, + "ĠOd": 12210, + "ĠOdd": 43630, + "ĠOder": 20988, + "ĠOdys": 32010, + "ĠOdyssey": 38385, + "ĠOf": 2720, + "ĠOff": 6318, + "ĠOffic": 11511, + "ĠOffice": 8935, + "ĠOfficer": 15434, + "ĠOfficial": 38577, + "ĠOft": 37112, + "ĠOften": 20043, + "ĠOftentimes": 46636, + "ĠOg": 14883, + "ĠOh": 876, + "ĠOhh": 21847, + "ĠOhhh": 29108, + "ĠOhio": 14469, + "ĠOi": 31610, + "ĠOil": 23545, + "ĠOj": 47100, + "ĠOk": 3477, + "ĠOkay": 1033, + "ĠOke": 29094, + "ĠOkey": 38544, + "ĠOklah": 20872, + "ĠOklahoma": 21183, + "ĠOl": 6141, + "ĠOlaf": 48961, + "ĠOld": 8633, + "ĠOle": 33965, + "ĠOlga": 48288, + "ĠOlha": 19450, + "ĠOliv": 42477, + "ĠOlive": 35741, + "ĠOliver": 23440, + "ĠOlivia": 26023, + "ĠOlivier": 48075, + "ĠOllie": 35089, + "ĠOlymp": 10395, + "ĠOlympic": 19169, + "ĠOlympics": 19854, + "ĠOlá": 41811, + "ĠOm": 9757, + "ĠOmaha": 49575, + "ĠOmar": 33784, + "ĠOmega": 27645, + "ĠOn": 1282, + "ĠOna": 49793, + "ĠOnce": 3443, + "ĠOnd": 40091, + "ĠOne": 1485, + "ĠOnePlus": 41352, + "ĠOnion": 46295, + "ĠOnline": 16930, + "ĠOnly": 5686, + "ĠOnt": 16980, + "ĠOntario": 19673, + "ĠOnu": 46420, + "ĠOnun": 40379, + "ĠOo": 39308, + "ĠOoh": 7951, + "ĠOok": 50081, + "ĠOoo": 25547, + "ĠOooh": 27413, + "ĠOoooh": 48762, + "ĠOops": 21726, + "ĠOp": 12011, + "ĠOpen": 7238, + "ĠOpening": 41137, + "ĠOper": 12480, + "ĠOpera": 39089, + "ĠOperation": 27946, + "ĠOperations": 36381, + "ĠOpp": 15666, + "ĠOpportun": 39441, + "ĠOprah": 43804, + "ĠOpt": 21455, + "ĠOptim": 35013, + "ĠOption": 29284, + "ĠOptions": 42934, + "ĠOr": 1610, + "ĠOra": 43672, + "ĠOracle": 25654, + "ĠOrange": 17106, + "ĠOrb": 44329, + "ĠOrchest": 42414, + "ĠOrchestra": 46692, + "ĠOrd": 29388, + "ĠOrder": 16321, + "ĠOre": 31405, + "ĠOregon": 18664, + "ĠOreo": 47628, + "ĠOrgan": 12538, + "ĠOrganisation": 49425, + "ĠOrganization": 23979, + "ĠOri": 23621, + "ĠOrient": 49544, + "ĠOrig": 13895, + "ĠOrigin": 45313, + "ĠOriginal": 30022, + "ĠOriginally": 28696, + "ĠOrion": 41028, + "ĠOrlando": 30436, + "ĠOrleans": 24715, + "ĠOrt": 22921, + "ĠOrth": 27554, + "ĠOrthodox": 32833, + "ĠOs": 8875, + "ĠOsaka": 46425, + "ĠOsc": 17406, + "ĠOscar": 20718, + "ĠOsman": 35390, + "ĠOst": 34140, + "ĠOt": 12936, + "ĠOther": 5358, + "ĠOthers": 20277, + "ĠOtherwise": 10328, + "ĠOtt": 24243, + "ĠOttawa": 40767, + "ĠOtto": 41716, + "ĠOttoman": 33435, + "ĠOu": 11710, + "ĠOuais": 25475, + "ĠOuch": 27217, + "ĠOui": 14005, + "ĠOur": 2621, + "ĠOut": 5925, + "ĠOutside": 28218, + "ĠOv": 50005, + "ĠOver": 4886, + "ĠOverall": 18420, + "ĠOverwatch": 35141, + "ĠOw": 12773, + "ĠOwen": 32867, + "ĠOwn": 25964, + "ĠOwner": 43290, + "ĠOx": 16489, + "ĠOxford": 24786, + "ĠOy": 40023, + "ĠOz": 29843, + "ĠOÄŁlum": 41783, + "ĠP": 430, + "ĠPA": 17718, + "ĠPAC": 46644, + "ĠPAL": 46390, + "ĠPAR": 21720, + "ĠPAT": 31485, + "ĠPAUL": 26379, + "ĠPB": 24056, + "ĠPBS": 33517, + "ĠPC": 6465, + "ĠPCB": 42065, + "ĠPCR": 44022, + "ĠPCs": 46913, + "ĠPD": 10464, + "ĠPDF": 17752, + "ĠPE": 24346, + "ĠPER": 26825, + "ĠPET": 21968, + "ĠPETER": 36040, + "ĠPF": 43402, + "ĠPG": 40975, + "ĠPH": 16530, + "ĠPHIL": 49933, + "ĠPHP": 47298, + "ĠPI": 27176, + "ĠPJ": 30549, + "ĠPK": 49475, + "ĠPL": 6999, + "ĠPLAY": 8726, + "ĠPLAYING": 9871, + "ĠPM": 12499, + "ĠPO": 22299, + "ĠPOL": 45682, + "ĠPOW": 39272, + "ĠPP": 37369, + "ĠPPE": 38589, + "ĠPR": 11568, + "ĠPRE": 44164, + "ĠPRES": 30247, + "ĠPRESID": 42508, + "ĠPRI": 47555, + "ĠPRO": 15008, + "ĠPROF": 24141, + "ĠPROFESS": 25460, + "ĠPROFESSOR": 25794, + "ĠPS": 8168, + "ĠPSAKI": 25104, + "ĠPT": 35460, + "ĠPTS": 31218, + "ĠPTSD": 33069, + "ĠPU": 44098, + "ĠPUB": 46631, + "ĠPUBG": 47975, + "ĠPV": 23035, + "ĠPVC": 46700, + "ĠPW": 46375, + "ĠPa": 3426, + "ĠPablo": 31554, + "ĠPac": 10702, + "ĠPacific": 13335, + "ĠPack": 18466, + "ĠPad": 18691, + "ĠPage": 21217, + "ĠPaige": 45177, + "ĠPain": 24943, + "ĠPaint": 34865, + "ĠPak": 11543, + "ĠPakistan": 15985, + "ĠPakistani": 50253, + "ĠPal": 6116, + "ĠPalace": 19121, + "ĠPale": 50007, + "ĠPalest": 14926, + "ĠPalestin": 19750, + "ĠPalestine": 33030, + "ĠPalestinian": 28202, + "ĠPalestinians": 34745, + "ĠPalm": 32668, + "ĠPalmer": 43889, + "ĠPam": 23532, + "ĠPan": 7557, + "ĠPanama": 41202, + "ĠPanch": 48792, + "ĠPand": 16995, + "ĠPanda": 44207, + "ĠPandemie": 44694, + "ĠPanel": 38996, + "ĠPang": 49499, + "ĠPanther": 33046, + "ĠPanz": 45932, + "ĠPap": 15919, + "ĠPapa": 21102, + "ĠPaper": 24990, + "ĠPar": 3457, + "ĠPara": 11107, + "ĠParad": 28527, + "ĠParadise": 35053, + "ĠParam": 34882, + "ĠParce": 20429, + "ĠPardon": 32392, + "ĠPare": 31189, + "ĠParece": 45419, + "ĠParent": 44717, + "ĠParents": 33990, + "ĠParis": 8380, + "ĠPark": 4964, + "ĠParker": 20155, + "ĠParkinson": 35823, + "ĠParks": 30431, + "ĠParl": 29666, + "ĠParlament": 37487, + "ĠParliament": 15538, + "ĠParr": 47890, + "ĠPars": 49691, + "ĠPart": 4100, + "ĠParte": 47689, + "ĠParticip": 35247, + "ĠParticularly": 32281, + "ĠPartner": 32736, + "ĠPartners": 28058, + "ĠPartnership": 49589, + "ĠParty": 8552, + "ĠPas": 14199, + "ĠPascal": 41723, + "ĠPass": 10319, + "ĠPassion": 45554, + "ĠPassover": 48016, + "ĠPast": 18408, + "ĠPaste": 43827, + "ĠPastor": 34289, + "ĠPat": 4379, + "ĠPatch": 44359, + "ĠPath": 21914, + "ĠPatient": 25173, + "ĠPatienten": 46294, + "ĠPatreon": 15692, + "ĠPatri": 31071, + "ĠPatricia": 34307, + "ĠPatrick": 13980, + "ĠPatrol": 34967, + "ĠPatt": 46332, + "ĠPatter": 34367, + "ĠPatty": 44116, + "ĠPaty": 43760, + "ĠPaul": 4552, + "ĠPaula": 31663, + "ĠPaulo": 21801, + "ĠPause": 31973, + "ĠPav": 39062, + "ĠPaw": 33551, + "ĠPay": 11431, + "ĠPayPal": 39906, + "ĠPaÅĦst": 25189, + "ĠPaÅĦstwo": 42239, + "ĠPe": 2396, + "ĠPeace": 13204, + "ĠPeach": 34138, + "ĠPeak": 43604, + "ĠPeanut": 48069, + "ĠPear": 45461, + "ĠPearl": 24639, + "ĠPearson": 39041, + "ĠPed": 16689, + "ĠPedro": 26662, + "ĠPeg": 28007, + "ĠPeki": 36598, + "ĠPel": 21083, + "ĠPelosi": 44145, + "ĠPen": 10571, + "ĠPence": 48402, + "ĠPend": 38048, + "ĠPeng": 25783, + "ĠPenguin": 49562, + "ĠPeninsula": 40922, + "ĠPenn": 12667, + "ĠPennsy": 17704, + "ĠPennsylvania": 17963, + "ĠPenny": 32009, + "ĠPens": 45035, + "ĠPent": 20165, + "ĠPentagon": 36371, + "ĠPeople": 3432, + "ĠPep": 28637, + "ĠPepper": 30231, + "ĠPepsi": 42311, + "ĠPer": 3026, + "ĠPerché": 47978, + "ĠPercy": 46216, + "ĠPerd": 47633, + "ĠPere": 49349, + "ĠPerez": 47317, + "ĠPerfect": 10246, + "ĠPerform": 19351, + "ĠPerformance": 25047, + "ĠPerhaps": 10517, + "ĠPeriod": 34976, + "ĠPerm": 41006, + "ĠPero": 9377, + "ĠPerquè": 46133, + "ĠPerry": 17334, + "ĠPers": 14006, + "ĠPersian": 30699, + "ĠPerson": 8443, + "ĠPersonal": 25317, + "ĠPersonality": 44523, + "ĠPersonally": 21079, + "ĠPersonen": 40942, + "ĠPeru": 31571, + "ĠPerò": 20533, + "ĠPet": 10472, + "ĠPete": 19013, + "ĠPeter": 6508, + "ĠPeters": 26028, + "ĠPetersburg": 42367, + "ĠPeterson": 36943, + "ĠPew": 30638, + "ĠPey": 36206, + "ĠPf": 17331, + "ĠPfizer": 34694, + "ĠPh": 2623, + "ĠPhD": 14476, + "ĠPhantom": 34689, + "ĠPhar": 45050, + "ĠPharaoh": 43444, + "ĠPharise": 47742, + "ĠPharm": 44032, + "ĠPhase": 24432, + "ĠPhew": 46679, + "ĠPhi": 41435, + "ĠPhil": 7777, + "ĠPhiladelphia": 21205, + "ĠPhilip": 21144, + "ĠPhilipp": 13694, + "ĠPhilippines": 20153, + "ĠPhill": 18433, + "ĠPhillip": 44051, + "ĠPhillips": 24565, + "ĠPhilos": 31182, + "ĠPhilosophy": 43655, + "ĠPho": 14936, + "ĠPhoenix": 18383, + "ĠPhone": 30713, + "ĠPhot": 13919, + "ĠPhoto": 39175, + "ĠPhotoshop": 20821, + "ĠPhys": 15542, + "ĠPhysical": 31918, + "ĠPhysics": 38355, + "ĠPi": 17741, + "ĠPic": 25895, + "ĠPicas": 48198, + "ĠPicasso": 49708, + "ĠPick": 14129, + "ĠPict": 23899, + "ĠPicture": 35730, + "ĠPictures": 45877, + "ĠPie": 22914, + "ĠPiece": 42868, + "ĠPier": 16676, + "ĠPierce": 45432, + "ĠPierre": 28461, + "ĠPiet": 41970, + "ĠPig": 27322, + "ĠPik": 26544, + "ĠPikachu": 35785, + "ĠPike": 46791, + "ĠPil": 18026, + "ĠPill": 44656, + "ĠPilot": 39193, + "ĠPin": 22619, + "ĠPine": 33531, + "ĠPing": 33645, + "ĠPink": 17118, + "ĠPinterest": 37986, + "ĠPione": 48844, + "ĠPip": 35396, + "ĠPir": 24161, + "ĠPis": 43263, + "ĠPit": 32136, + "ĠPitt": 22861, + "ĠPitts": 29478, + "ĠPittsburgh": 33626, + "ĠPix": 18652, + "ĠPixar": 46695, + "ĠPixel": 28323, + "ĠPizza": 24469, + "ĠPl": 2149, + "ĠPla": 19942, + "ĠPlace": 13637, + "ĠPlaid": 30030, + "ĠPlan": 8112, + "ĠPlanet": 22146, + "ĠPlanning": 29308, + "ĠPlant": 28995, + "ĠPlat": 17461, + "ĠPlate": 46043, + "ĠPlatform": 28707, + "ĠPlato": 43027, + "ĠPlatz": 27595, + "ĠPlay": 5506, + "ĠPlayStation": 20599, + "ĠPlayer": 24920, + "ĠPlayers": 35808, + "ĠPlaying": 24801, + "ĠPlaystation": 42787, + "ĠPlaza": 41890, + "ĠPle": 25658, + "ĠPlease": 2555, + "ĠPlug": 40740, + "ĠPlus": 7721, + "ĠPluto": 41205, + "ĠPo": 6165, + "ĠPocket": 44594, + "ĠPod": 12646, + "ĠPodcast": 29972, + "ĠPode": 39168, + "ĠPoint": 12387, + "ĠPoints": 44763, + "ĠPois": 48274, + "ĠPok": 14958, + "ĠPoke": 12645, + "ĠPokemon": 13796, + "ĠPokémon": 20104, + "ĠPol": 3635, + "ĠPoland": 15950, + "ĠPole": 34212, + "ĠPolice": 11882, + "ĠPolicy": 21708, + "ĠPolish": 18504, + "ĠPolit": 13812, + "ĠPolitical": 34265, + "ĠPolitics": 45348, + "ĠPolitik": 29847, + "ĠPolize": 30735, + "ĠPolizei": 35297, + "ĠPoll": 31304, + "ĠPolsce": 35567, + "ĠPolski": 44589, + "ĠPoly": 18553, + "ĠPom": 21227, + "ĠPompe": 38527, + "ĠPon": 31756, + "ĠPont": 41127, + "ĠPool": 46188, + "ĠPoor": 23591, + "ĠPop": 10215, + "ĠPope": 19291, + "ĠPoppy": 47996, + "ĠPopular": 37637, + "ĠPor": 5269, + "ĠPork": 33159, + "ĠPorque": 11287, + "ĠPors": 29416, + "ĠPorsche": 31044, + "ĠPort": 6733, + "ĠPortal": 38281, + "ĠPorter": 42609, + "ĠPortland": 25020, + "ĠPortugal": 23011, + "ĠPortuguese": 22759, + "ĠPos": 25906, + "ĠPose": 40174, + "ĠPosition": 29780, + "ĠPositive": 46326, + "ĠPoss": 33112, + "ĠPost": 10223, + "ĠPot": 9145, + "ĠPotato": 34035, + "ĠPotter": 18115, + "ĠPour": 8732, + "ĠPourquoi": 30333, + "ĠPow": 14762, + "ĠPowder": 35781, + "ĠPowell": 34176, + "ĠPower": 7086, + "ĠPowerPoint": 25584, + "ĠPowers": 47278, + "ĠPr": 2114, + "ĠPra": 12133, + "ĠPrab": 48995, + "ĠPract": 19170, + "ĠPractice": 27904, + "ĠPrag": 40067, + "ĠPrague": 45370, + "ĠPraise": 34576, + "ĠPray": 36365, + "ĠPrayer": 45226, + "ĠPre": 6001, + "ĠPrecis": 48746, + "ĠPred": 32969, + "ĠPrefer": 48401, + "ĠPreis": 47042, + "ĠPrem": 13011, + "ĠPremier": 25194, + "ĠPremiere": 39724, + "ĠPremium": 34881, + "ĠPrep": 21684, + "ĠPrepare": 29689, + "ĠPres": 2718, + "ĠPresent": 33253, + "ĠPresents": 38191, + "ĠPresident": 3117, + "ĠPresidential": 41823, + "ĠPresiding": 47365, + "ĠPress": 6776, + "ĠPrest": 35272, + "ĠPret": 9739, + "ĠPretty": 10693, + "ĠPrevention": 38699, + "ĠPreviously": 33606, + "ĠPri": 8087, + "ĠPrice": 25803, + "ĠPride": 30319, + "ĠPriest": 37052, + "ĠPrim": 19671, + "ĠPrimary": 42576, + "ĠPrime": 9655, + "ĠPrin": 9367, + "ĠPrinc": 35841, + "ĠPrince": 9821, + "ĠPrincess": 13903, + "ĠPrinceton": 36592, + "ĠPrinci": 38372, + "ĠPrincip": 32832, + "ĠPrincipal": 38575, + "ĠPrint": 34439, + "ĠPrinzip": 47572, + "ĠPrior": 24032, + "ĠPrison": 38888, + "ĠPriv": 39691, + "ĠPrivate": 30386, + "ĠPrix": 48736, + "ĠPrize": 22604, + "ĠPro": 1705, + "ĠProb": 8736, + "ĠProbably": 9210, + "ĠProblem": 11676, + "ĠProbleme": 32891, + "ĠProcess": 31093, + "ĠProdu": 11793, + "ĠProducer": 33034, + "ĠProduct": 22005, + "ĠProduction": 30088, + "ĠProducts": 47699, + "ĠProdukt": 44599, + "ĠProf": 6039, + "ĠProfess": 7487, + "ĠProfessional": 30011, + "ĠProfessor": 8419, + "ĠProgram": 8338, + "ĠProgramm": 48244, + "ĠPrograms": 44762, + "ĠProgress": 32587, + "ĠProject": 9849, + "ĠProjekt": 34804, + "ĠProm": 15833, + "ĠPromise": 34878, + "ĠPromised": 38478, + "ĠPron": 27723, + "ĠPronounce": 48483, + "ĠPronunciation": 45496, + "ĠProp": 21944, + "ĠProper": 27627, + "ĠProperty": 48966, + "ĠProphet": 12849, + "ĠPros": 26024, + "ĠProse": 50058, + "ĠProt": 10019, + "ĠProte": 43371, + "ĠProtect": 32017, + "ĠProtection": 25981, + "ĠProtest": 27259, + "ĠProtestant": 38345, + "ĠProtocol": 48753, + "ĠProv": 15685, + "ĠProvince": 40649, + "ĠProvost": 45426, + "ĠProzent": 29726, + "ĠPrzy": 39590, + "ĠPräsident": 27513, + "ĠPs": 33903, + "ĠPsaki": 50037, + "ĠPsal": 26150, + "ĠPsalm": 34134, + "ĠPsych": 17303, + "ĠPsychology": 42827, + "ĠPu": 13605, + "ĠPub": 21808, + "ĠPublic": 9489, + "ĠPuerto": 21472, + "ĠPues": 22386, + "ĠPuis": 30033, + "ĠPul": 35568, + "ĠPull": 15074, + "ĠPump": 32863, + "ĠPun": 22574, + "ĠPunch": 32408, + "ĠPunj": 44989, + "ĠPunk": 27852, + "ĠPunkt": 25487, + "ĠPunkte": 47352, + "ĠPur": 14682, + "ĠPurd": 41632, + "ĠPurdue": 42506, + "ĠPure": 29474, + "ĠPurple": 28483, + "ĠPush": 18229, + "ĠPut": 4935, + "ĠPutin": 19818, + "ĠPutting": 31367, + "ĠPv": 41896, + "ĠPy": 9953, + "ĠPython": 15329, + "ĠPÃ¥": 45133, + "ĠQ": 1249, + "ĠQR": 32784, + "ĠQU": 7246, + "ĠQUE": 46026, + "ĠQUES": 8521, + "ĠQUESTION": 8557, + "ĠQatar": 41691, + "ĠQi": 21430, + "ĠQian": 32461, + "ĠQiao": 48046, + "ĠQin": 26999, + "ĠQing": 20089, + "ĠQiu": 49024, + "ĠQu": 2326, + "ĠQuad": 29619, + "ĠQual": 13616, + "ĠQuality": 28892, + "ĠQuan": 35249, + "ĠQuand": 22015, + "ĠQuando": 18725, + "ĠQuant": 26968, + "ĠQuantum": 44964, + "ĠQuarter": 43794, + "ĠQue": 4493, + "ĠQuebec": 38903, + "ĠQueen": 10077, + "ĠQueens": 18414, + "ĠQueensborough": 40722, + "ĠQueensland": 36913, + "ĠQuel": 43521, + "ĠQuem": 32342, + "ĠQuer": 36149, + "ĠQuest": 8800, + "ĠQuestion": 14464, + "ĠQuestions": 27738, + "ĠQuesto": 38167, + "ĠQui": 27361, + "ĠQuick": 12101, + "ĠQuickly": 31800, + "ĠQuiet": 32193, + "ĠQuin": 44761, + "ĠQuindi": 32534, + "ĠQuinn": 36723, + "ĠQuit": 50139, + "ĠQuite": 20464, + "ĠQuiz": 38020, + "ĠQur": 26094, + "ĠQuran": 19375, + "ĠQuè": 31951, + "ĠQué": 23662, + "ĠQuébec": 34510, + "ĠQuá»ijc": 41494, + "ĠR": 497, + "ĠRA": 14626, + "ĠRAM": 14561, + "ĠRAMSAY": 42487, + "ĠRAW": 40539, + "ĠRB": 40302, + "ĠRC": 28987, + "ĠRD": 49488, + "ĠRE": 10869, + "ĠREAL": 48619, + "ĠREALLY": 37117, + "ĠRED": 39346, + "ĠREM": 45991, + "ĠREP": 31511, + "ĠRES": 46926, + "ĠRF": 26204, + "ĠRGB": 31231, + "ĠRH": 50209, + "ĠRI": 30474, + "ĠRICH": 33618, + "ĠRICHARD": 45302, + "ĠRIGHT": 41631, + "ĠRJ": 46810, + "ĠRM": 23790, + "ĠRN": 45702, + "ĠRNA": 22484, + "ĠRO": 9025, + "ĠROB": 38506, + "ĠROBERT": 26458, + "ĠROI": 49808, + "ĠROM": 41678, + "ĠROS": 31904, + "ĠRP": 14105, + "ĠRPG": 22614, + "ĠRPM": 37389, + "ĠRS": 25855, + "ĠRT": 21797, + "ĠRTX": 44573, + "ĠRUS": 43719, + "ĠRV": 28314, + "ĠRW": 42513, + "ĠRX": 46197, + "ĠRYAN": 32354, + "ĠRa": 7591, + "ĠRab": 16781, + "ĠRabb": 36753, + "ĠRabbi": 32768, + "ĠRabbit": 42092, + "ĠRac": 42033, + "ĠRace": 25908, + "ĠRach": 40793, + "ĠRachel": 14246, + "ĠRacing": 38832, + "ĠRad": 9654, + "ĠRadi": 37806, + "ĠRadio": 17296, + "ĠRaf": 29611, + "ĠRafael": 43173, + "ĠRag": 44289, + "ĠRah": 17844, + "ĠRahmen": 39070, + "ĠRail": 23494, + "ĠRails": 48526, + "ĠRain": 14487, + "ĠRainbow": 29477, + "ĠRais": 43374, + "ĠRaise": 30062, + "ĠRaj": 16745, + "ĠRak": 43000, + "ĠRal": 23038, + "ĠRalph": 28131, + "ĠRam": 9078, + "ĠRama": 39828, + "ĠRamadan": 39848, + "ĠRamen": 48728, + "ĠRams": 28990, + "ĠRamsay": 40721, + "ĠRan": 27948, + "ĠRanch": 37740, + "ĠRand": 23614, + "ĠRandom": 37603, + "ĠRandy": 23993, + "ĠRange": 33778, + "ĠRanger": 34222, + "ĠRangers": 40703, + "ĠRank": 35921, + "ĠRap": 16184, + "ĠRapha": 49690, + "ĠRapid": 44580, + "ĠRapt": 38115, + "ĠRare": 43920, + "ĠRas": 24649, + "ĠRash": 46298, + "ĠRaspberry": 41154, + "ĠRat": 24269, + "ĠRate": 49583, + "ĠRather": 16571, + "ĠRaum": 31359, + "ĠRaven": 28956, + "ĠRavi": 44486, + "ĠRaw": 23732, + "ĠRay": 10883, + "ĠRaymond": 42813, + "ĠRaz": 29051, + "ĠRe": 1300, + "ĠReach": 35904, + "ĠReact": 30644, + "ĠRead": 17604, + "ĠReading": 29766, + "ĠReady": 9944, + "ĠReagan": 26534, + "ĠReal": 8467, + "ĠReality": 33822, + "ĠReally": 4083, + "ĠRealm": 44723, + "ĠReaper": 49956, + "ĠReason": 39693, + "ĠRebecca": 19381, + "ĠRebel": 48782, + "ĠRec": 9647, + "ĠRece": 41962, + "ĠRecent": 17553, + "ĠRecently": 20072, + "ĠRecht": 36840, + "ĠRechts": 36597, + "ĠRecogn": 44682, + "ĠRecomm": 49545, + "ĠRecord": 27401, + "ĠRecords": 31928, + "ĠRecovery": 35254, + "ĠRed": 4477, + "ĠReddit": 32210, + "ĠRede": 39056, + "ĠRedmi": 47766, + "ĠRee": 38231, + "ĠReed": 32071, + "ĠReese": 49474, + "ĠRef": 16957, + "ĠRefer": 36889, + "ĠReform": 38489, + "ĠReg": 4791, + "ĠRegard": 16613, + "ĠRegarding": 35523, + "ĠRegardless": 25148, + "ĠRegel": 33139, + "ĠRegent": 36687, + "ĠRegierung": 42979, + "ĠRegina": 48407, + "ĠRegion": 25121, + "ĠRegional": 30341, + "ĠRegister": 43167, + "ĠRegular": 45659, + "ĠRei": 34549, + "ĠReich": 33111, + "ĠReid": 46912, + "ĠRein": 42116, + "ĠRel": 8738, + "ĠRelations": 28663, + "ĠRelax": 25886, + "ĠRelease": 34278, + "ĠRelig": 33436, + "ĠReligion": 40127, + "ĠRem": 4080, + "ĠRemember": 5459, + "ĠRemo": 46445, + "ĠRemote": 44858, + "ĠRemove": 18831, + "ĠRen": 12883, + "ĠRena": 23068, + "ĠRenaissance": 32642, + "ĠRend": 48174, + "ĠRenee": 47790, + "ĠReno": 44404, + "ĠRent": 42743, + "ĠRep": 3696, + "ĠRepe": 24927, + "ĠRepeat": 28523, + "ĠRepl": 47762, + "ĠReport": 16057, + "ĠReporter": 26520, + "ĠReporting": 44229, + "ĠReports": 45910, + "ĠRepresent": 19945, + "ĠRepresentative": 33421, + "ĠRepresentatives": 37543, + "ĠRepublic": 5564, + "ĠRepublican": 10937, + "ĠRepublicans": 12017, + "ĠRepública": 45917, + "ĠRequ": 42029, + "ĠRes": 5015, + "ĠRescue": 39379, + "ĠResearch": 10303, + "ĠResearchers": 43555, + "ĠReserve": 26049, + "ĠResident": 29563, + "ĠResistance": 45647, + "ĠResource": 35200, + "ĠResources": 29706, + "ĠResp": 22480, + "ĠRespect": 39079, + "ĠRespons": 46003, + "ĠResponse": 43937, + "ĠRest": 13094, + "ĠRestaur": 31712, + "ĠRestaurant": 38870, + "ĠRet": 11495, + "ĠReturn": 24350, + "ĠRev": 12127, + "ĠRevel": 26211, + "ĠRevelation": 28979, + "ĠRever": 26314, + "ĠReverend": 44896, + "ĠReview": 19954, + "ĠRevolution": 16617, + "ĠRex": 35678, + "ĠRey": 17547, + "ĠReynolds": 29516, + "ĠRh": 16111, + "ĠRhod": 36951, + "ĠRhode": 40202, + "ĠRhodes": 45973, + "ĠRi": 33668, + "ĠRib": 38554, + "ĠRic": 21215, + "ĠRica": 42080, + "ĠRicardo": 42634, + "ĠRice": 19386, + "ĠRich": 6781, + "ĠRichard": 9809, + "ĠRichards": 33021, + "ĠRichardson": 48492, + "ĠRichmond": 39060, + "ĠRicht": 22659, + "ĠRichtung": 33023, + "ĠRick": 11224, + "ĠRicky": 25247, + "ĠRico": 22643, + "ĠRid": 30619, + "ĠRide": 35042, + "ĠRider": 40150, + "ĠRidge": 32313, + "ĠRif": 48549, + "ĠRig": 42720, + "ĠRight": 1779, + "ĠRights": 16352, + "ĠRiley": 31373, + "ĠRim": 44034, + "ĠRin": 33170, + "ĠRing": 19844, + "ĠRings": 38543, + "ĠRio": 18719, + "ĠRiot": 49536, + "ĠRip": 34677, + "ĠRis": 30897, + "ĠRise": 34482, + "ĠRising": 45957, + "ĠRisk": 45892, + "ĠRita": 32672, + "ĠRiv": 47620, + "ĠRiver": 8640, + "ĠRivera": 47388, + "ĠRivers": 36646, + "ĠRo": 3101, + "ĠRoad": 11507, + "ĠRob": 5424, + "ĠRobbie": 45749, + "ĠRober": 15800, + "ĠRobert": 7977, + "ĠRoberto": 40354, + "ĠRoberts": 20919, + "ĠRobin": 16533, + "ĠRobinson": 25105, + "ĠRobot": 29601, + "ĠRoc": 32661, + "ĠRochester": 39895, + "ĠRock": 6922, + "ĠRockef": 50178, + "ĠRocket": 29651, + "ĠRocky": 26916, + "ĠRod": 11097, + "ĠRodrig": 25904, + "ĠRodriguez": 37304, + "ĠRog": 11860, + "ĠRoger": 17666, + "ĠRogers": 29877, + "ĠRogue": 43770, + "ĠRoh": 27490, + "ĠRoland": 39357, + "ĠRolex": 36234, + "ĠRoll": 9926, + "ĠRolle": 35376, + "ĠRolling": 36457, + "ĠRom": 10141, + "ĠRoma": 31892, + "ĠRoman": 8566, + "ĠRomania": 36678, + "ĠRomanian": 49963, + "ĠRomans": 20252, + "ĠRome": 12043, + "ĠRomeo": 33563, + "ĠRon": 9949, + "ĠRonald": 27397, + "ĠRonaldo": 46132, + "ĠRong": 43383, + "ĠRonnie": 46131, + "ĠRoom": 19190, + "ĠRoose": 27349, + "ĠRoosevelt": 28515, + "ĠRos": 11144, + "ĠRosa": 30572, + "ĠRose": 12765, + "ĠRosen": 33630, + "ĠRosie": 40521, + "ĠRoss": 16140, + "ĠRot": 17681, + "ĠRoth": 28089, + "ĠRou": 28392, + "ĠRouge": 47607, + "ĠRough": 42791, + "ĠRound": 18525, + "ĠRoute": 39142, + "ĠRover": 43278, + "ĠRow": 20309, + "ĠRox": 44427, + "ĠRoy": 8751, + "ĠRoyal": 12717, + "ĠRoz": 43313, + "ĠRs": 21643, + "ĠRu": 15702, + "ĠRub": 10518, + "ĠRuby": 19907, + "ĠRud": 18636, + "ĠRudolph": 47292, + "ĠRudy": 38690, + "ĠRug": 50057, + "ĠRule": 27533, + "ĠRules": 38897, + "ĠRum": 31963, + "ĠRun": 8950, + "ĠRunner": 50105, + "ĠRunning": 28136, + "ĠRus": 13155, + "ĠRush": 28389, + "ĠRusia": 48520, + "ĠRuss": 3878, + "ĠRussell": 20937, + "ĠRussia": 6797, + "ĠRussian": 7220, + "ĠRussians": 20605, + "ĠRust": 34952, + "ĠRut": 42723, + "ĠRuth": 23544, + "ĠRy": 13654, + "ĠRyan": 9116, + "ĠRyu": 41599, + "ĠRép": 41587, + "ĠRépublique": 46646, + "ĠRück": 35001, + "ĠS": 318, + "ĠSA": 16482, + "ĠSAL": 40713, + "ĠSAM": 9617, + "ĠSAN": 49557, + "ĠSAND": 44097, + "ĠSAP": 27743, + "ĠSAR": 18748, + "ĠSARAH": 41666, + "ĠSARS": 34233, + "ĠSAS": 33441, + "ĠSAT": 31536, + "ĠSAY": 42948, + "ĠSB": 26944, + "ĠSBS": 41788, + "ĠSC": 9028, + "ĠSCH": 23539, + "ĠSCOTT": 41181, + "ĠSCP": 18489, + "ĠSD": 14638, + "ĠSDK": 37135, + "ĠSE": 10269, + "ĠSEC": 22399, + "ĠSECRET": 47627, + "ĠSEE": 44712, + "ĠSEN": 47770, + "ĠSEO": 22964, + "ĠSER": 36772, + "ĠSEÃij": 40677, + "ĠSF": 31095, + "ĠSG": 34520, + "ĠSH": 7405, + "ĠSHA": 38820, + "ĠSHE": 44179, + "ĠSI": 29083, + "ĠSIM": 24738, + "ĠSJ": 44883, + "ĠSK": 21483, + "ĠSL": 22999, + "ĠSM": 13115, + "ĠSMITH": 46156, + "ĠSMS": 38107, + "ĠSN": 13955, + "ĠSO": 10621, + "ĠSOL": 36011, + "ĠSOUND": 45383, + "ĠSP": 8420, + "ĠSPD": 19572, + "ĠSPE": 37173, + "ĠSPEAK": 11824, + "ĠSPEAKER": 12081, + "ĠSQL": 19200, + "ĠSR": 20840, + "ĠSS": 12238, + "ĠSSD": 30262, + "ĠST": 4904, + "ĠSTACK": 49114, + "ĠSTAR": 47816, + "ĠSTART": 49326, + "ĠSTE": 20039, + "ĠSTEM": 25043, + "ĠSTEP": 28143, + "ĠSTEPHAN": 46423, + "ĠSTEVE": 40878, + "ĠSTEVEN": 48312, + "ĠSTOP": 38344, + "ĠSTR": 43013, + "ĠSTUD": 36988, + "ĠSTUDENT": 41833, + "ĠSU": 9872, + "ĠSUBSCRI": 32563, + "ĠSUBSCRIBE": 33817, + "ĠSUN": 42596, + "ĠSUPER": 49342, + "ĠSUR": 37269, + "ĠSUS": 40117, + "ĠSUV": 28452, + "ĠSV": 31910, + "ĠSW": 20346, + "ĠSY": 32624, + "ĠSa": 6299, + "ĠSaaS": 49733, + "ĠSab": 13915, + "ĠSabb": 34003, + "ĠSabbath": 36618, + "ĠSabrina": 45439, + "ĠSac": 19356, + "ĠSach": 25626, + "ĠSache": 31452, + "ĠSachen": 26074, + "ĠSacramento": 38360, + "ĠSacred": 47074, + "ĠSad": 12269, + "ĠSadhguru": 40000, + "ĠSadly": 29628, + "ĠSaf": 14152, + "ĠSafari": 43820, + "ĠSafe": 27030, + "ĠSafety": 21340, + "ĠSag": 34551, + "ĠSage": 33812, + "ĠSah": 18280, + "ĠSahib": 43545, + "ĠSai": 27987, + "ĠSaid": 26490, + "ĠSail": 42014, + "ĠSaint": 12902, + "ĠSaints": 39022, + "ĠSak": 18025, + "ĠSakura": 48051, + "ĠSal": 5996, + "ĠSale": 48922, + "ĠSalem": 49619, + "ĠSales": 23467, + "ĠSalesforce": 40398, + "ĠSally": 26385, + "ĠSalt": 19503, + "ĠSalut": 33559, + "ĠSalv": 28596, + "ĠSalvador": 32586, + "ĠSalz": 46283, + "ĠSam": 4832, + "ĠSamantha": 33521, + "ĠSame": 10635, + "ĠSami": 44029, + "ĠSammy": 44316, + "ĠSams": 12666, + "ĠSamsung": 13173, + "ĠSamuel": 23036, + "ĠSan": 5271, + "ĠSana": 29200, + "ĠSand": 7985, + "ĠSanders": 21734, + "ĠSandra": 28184, + "ĠSandy": 27390, + "ĠSang": 19037, + "ĠSans": 21504, + "ĠSanskrit": 44392, + "ĠSant": 17315, + "ĠSanta": 9933, + "ĠSanti": 34815, + "ĠSantiago": 37621, + "ĠSanto": 49639, + "ĠSantos": 36962, + "ĠSap": 49287, + "ĠSapp": 46814, + "ĠSar": 6894, + "ĠSara": 18694, + "ĠSarah": 9519, + "ĠSas": 36613, + "ĠSasha": 29276, + "ĠSask": 48963, + "ĠSat": 5344, + "ĠSatan": 16583, + "ĠSaturday": 8803, + "ĠSaturn": 24601, + "ĠSau": 22557, + "ĠSauce": 36720, + "ĠSaud": 15717, + "ĠSaudi": 18121, + "ĠSaul": 35661, + "ĠSav": 12346, + "ĠSavage": 46699, + "ĠSavannah": 47902, + "ĠSave": 15541, + "ĠSavior": 29310, + "ĠSaw": 27307, + "ĠSax": 48379, + "ĠSay": 6463, + "ĠSaya": 16568, + "ĠSaying": 34087, + "ĠSays": 36780, + "ĠSc": 2747, + "ĠSca": 47082, + "ĠScale": 42999, + "ĠScalia": 47899, + "ĠScan": 41177, + "ĠScandin": 42403, + "ĠScar": 23181, + "ĠScary": 45504, + "ĠScene": 46297, + "ĠSch": 2065, + "ĠSche": 25321, + "ĠSched": 44926, + "ĠSchl": 16420, + "ĠSchluss": 36573, + "ĠSchmidt": 42621, + "ĠSchn": 45748, + "ĠSchne": 30343, + "ĠSchol": 27866, + "ĠScholars": 33846, + "ĠSchon": 46049, + "ĠSchool": 5070, + "ĠSchools": 26997, + "ĠSchr": 46191, + "ĠSchritt": 33062, + "ĠSchul": 21223, + "ĠSchuld": 50153, + "ĠSchule": 32953, + "ĠSchulen": 41909, + "ĠSchutz": 37469, + "ĠSchw": 17576, + "ĠSchwar": 46487, + "ĠSchwe": 24343, + "ĠSchweiz": 46834, + "ĠSchön": 41060, + "ĠSchüler": 39776, + "ĠSci": 16942, + "ĠScience": 8976, + "ĠSciences": 21108, + "ĠScient": 18944, + "ĠScientific": 47437, + "ĠScientists": 32958, + "ĠSco": 27682, + "ĠScore": 47901, + "ĠScorp": 38814, + "ĠScot": 9534, + "ĠScotland": 11180, + "ĠScott": 6659, + "ĠScottish": 13777, + "ĠScout": 33971, + "ĠScr": 34944, + "ĠScreen": 25823, + "ĠScrew": 42630, + "ĠScript": 15675, + "ĠScripture": 22888, + "ĠScriptures": 46522, + "ĠScroll": 35395, + "ĠSe": 1100, + "ĠSea": 11352, + "ĠSeal": 46207, + "ĠSean": 14839, + "ĠSearch": 17180, + "ĠSeason": 16465, + "ĠSeattle": 15721, + "ĠSeb": 22374, + "ĠSebastian": 31102, + "ĠSec": 3306, + "ĠSecond": 5736, + "ĠSecondly": 19483, + "ĠSecret": 7400, + "ĠSecretary": 9126, + "ĠSect": 46244, + "ĠSection": 21804, + "ĠSecurity": 11164, + "ĠSed": 31213, + "ĠSee": 3008, + "ĠSeeing": 19703, + "ĠSeems": 22524, + "ĠSeg": 21595, + "ĠSega": 32114, + "ĠSehr": 32028, + "ĠSei": 49229, + "ĠSeit": 34321, + "ĠSeite": 19748, + "ĠSeiten": 45200, + "ĠSek": 24285, + "ĠSel": 10736, + "ĠSelbst": 29712, + "ĠSelect": 13638, + "ĠSelena": 39146, + "ĠSelf": 16348, + "ĠSell": 44296, + "ĠSem": 14421, + "ĠSempre": 49724, + "ĠSen": 3862, + "ĠSenate": 9867, + "ĠSenator": 10893, + "ĠSend": 17908, + "ĠSenhor": 43792, + "ĠSeni": 42752, + "ĠSenin": 36134, + "ĠSenior": 18370, + "ĠSens": 40926, + "ĠSense": 33123, + "ĠSent": 23652, + "ĠSentinel": 49498, + "ĠSeo": 30877, + "ĠSeok": 34565, + "ĠSeong": 40333, + "ĠSeoul": 17100, + "ĠSep": 22012, + "ĠSepar": 43480, + "ĠSept": 6978, + "ĠSeptember": 7216, + "ĠSequ": 46859, + "ĠSer": 4210, + "ĠSerbia": 39461, + "ĠSerge": 18885, + "ĠSergeant": 31149, + "ĠSergey": 49238, + "ĠSergio": 45078, + "ĠSerie": 49135, + "ĠSeries": 13934, + "ĠSeriously": 14063, + "ĠServ": 6213, + "ĠServe": 45663, + "ĠServer": 25684, + "ĠService": 9561, + "ĠServices": 12124, + "ĠSerá": 42968, + "ĠSes": 29827, + "ĠSesame": 47686, + "ĠSet": 8928, + "ĠSeth": 25353, + "ĠSetting": 21063, + "ĠSettings": 27286, + "ĠSeung": 20384, + "ĠSev": 28960, + "ĠSeven": 14868, + "ĠSever": 19635, + "ĠSeveral": 22246, + "ĠSew": 42697, + "ĠSex": 29037, + "ĠSexual": 45449, + "ĠSeñ": 30807, + "ĠSeñor": 35054, + "ĠSh": 1160, + "ĠSha": 14944, + "ĠShadow": 19036, + "ĠShah": 21159, + "ĠShak": 47459, + "ĠShake": 27809, + "ĠShakes": 22094, + "ĠShakespeare": 22825, + "ĠShakt": 40867, + "ĠShall": 12128, + "ĠSham": 42912, + "ĠShame": 46835, + "ĠShan": 25536, + "ĠShane": 25865, + "ĠShang": 19316, + "ĠShanghai": 26135, + "ĠShank": 45264, + "ĠShannon": 28974, + "ĠShap": 44160, + "ĠShape": 49148, + "ĠShar": 22030, + "ĠShare": 14945, + "ĠSharing": 49060, + "ĠShark": 36347, + "ĠSharon": 28573, + "ĠSharp": 31654, + "ĠShaun": 49363, + "ĠShaw": 27132, + "ĠShawn": 28634, + "ĠShay": 31212, + "ĠShe": 1240, + "ĠSheikh": 46160, + "ĠSheila": 48832, + "ĠShel": 24415, + "ĠShelby": 37517, + "ĠShell": 22863, + "ĠShelley": 42337, + "ĠShen": 22636, + "ĠSheng": 40544, + "ĠShepherd": 43395, + "ĠSher": 11789, + "ĠSheriff": 32492, + "ĠSherlock": 37769, + "ĠSherman": 45130, + "ĠShh": 41429, + "ĠShi": 25580, + "ĠShield": 28539, + "ĠShift": 28304, + "ĠShim": 32683, + "ĠShin": 17347, + "ĠShine": 46460, + "ĠShiny": 49683, + "ĠShip": 38407, + "ĠShir": 27239, + "ĠShirley": 43275, + "ĠShit": 19593, + "ĠShiv": 47839, + "ĠShiva": 34729, + "ĠSho": 31404, + "ĠShock": 39474, + "ĠShoot": 19760, + "ĠShooting": 45739, + "ĠShop": 16319, + "ĠShopify": 43991, + "ĠShore": 47977, + "ĠShort": 16881, + "ĠShortly": 40109, + "ĠShot": 28845, + "ĠShould": 6454, + "ĠShouldn": 34170, + "ĠShout": 32749, + "ĠShow": 6895, + "ĠShrim": 47827, + "ĠShu": 26655, + "ĠShut": 13870, + "ĠShy": 45250, + "ĠSi": 4909, + "ĠSiber": 42608, + "ĠSic": 39155, + "ĠSich": 47135, + "ĠSicher": 25292, + "ĠSicherheit": 38778, + "ĠSicht": 36615, + "ĠSick": 43471, + "ĠSid": 19797, + "ĠSide": 19026, + "ĠSie": 3559, + "ĠSierra": 25182, + "ĠSig": 37763, + "ĠSigma": 36595, + "ĠSign": 13515, + "ĠSignal": 43414, + "ĠSikh": 46657, + "ĠSil": 6943, + "ĠSilence": 34570, + "ĠSilent": 40862, + "ĠSilicon": 25351, + "ĠSilk": 43853, + "ĠSilva": 50171, + "ĠSilver": 15861, + "ĠSim": 3998, + "ĠSimilar": 10905, + "ĠSimilarly": 13157, + "ĠSimmons": 42516, + "ĠSimon": 13193, + "ĠSimone": 41652, + "ĠSimple": 21532, + "ĠSimply": 19596, + "ĠSimpson": 38184, + "ĠSims": 33289, + "ĠSin": 11187, + "ĠSince": 4162, + "ĠSind": 35405, + "ĠSing": 7474, + "ĠSingapore": 14491, + "ĠSinger": 44184, + "ĠSingh": 27529, + "ĠSinging": 39483, + "ĠSingle": 31248, + "ĠSinn": 37962, + "ĠSinne": 47041, + "ĠSir": 6144, + "ĠSiri": 33682, + "ĠSis": 33514, + "ĠSister": 14145, + "ĠSisters": 43166, + "ĠSit": 14523, + "ĠSite": 34027, + "ĠSith": 43860, + "ĠSitting": 43129, + "ĠSituation": 22247, + "ĠSix": 11678, + "ĠSixt": 47374, + "ĠSiz": 26672, + "ĠSize": 35818, + "ĠSk": 7324, + "ĠSke": 32344, + "ĠSket": 45012, + "ĠSketch": 49245, + "ĠSkill": 40737, + "ĠSkills": 27856, + "ĠSkillshare": 42991, + "ĠSkin": 26333, + "ĠSkip": 46405, + "ĠSky": 9879, + "ĠSkype": 31743, + "ĠSkywalker": 49220, + "ĠSl": 6187, + "ĠSlack": 37211, + "ĠSleep": 19383, + "ĠSleeping": 49618, + "ĠSlide": 26405, + "ĠSlim": 47428, + "ĠSlo": 22497, + "ĠSloven": 50122, + "ĠSlow": 17703, + "ĠSlowly": 29674, + "ĠSm": 3915, + "ĠSmack": 35399, + "ĠSmall": 15287, + "ĠSmart": 12923, + "ĠSmash": 25768, + "ĠSmells": 44355, + "ĠSmile": 38499, + "ĠSmith": 8538, + "ĠSmithson": 44350, + "ĠSmithsonian": 46013, + "ĠSmoke": 36191, + "ĠSmooth": 42404, + "ĠSn": 9264, + "ĠSna": 41539, + "ĠSnake": 33885, + "ĠSnap": 18254, + "ĠSnapchat": 31579, + "ĠSnapdragon": 48211, + "ĠSne": 41336, + "ĠSno": 42902, + "ĠSnow": 14827, + "ĠSny": 49464, + "ĠSo": 407, + "ĠSoc": 43627, + "ĠSoci": 12276, + "ĠSocial": 9909, + "ĠSociety": 13742, + "ĠSod": 42059, + "ĠSofia": 42611, + "ĠSoft": 16985, + "ĠSoftware": 27428, + "ĠSol": 7026, + "ĠSolar": 22385, + "ĠSold": 20064, + "ĠSoldier": 34660, + "ĠSole": 48073, + "ĠSolid": 26664, + "ĠSolo": 26452, + "ĠSolomon": 32209, + "ĠSolutions": 36295, + "ĠSom": 12297, + "ĠSome": 2188, + "ĠSomebody": 13463, + "ĠSomehow": 28357, + "ĠSomeone": 8734, + "ĠSomet": 3379, + "ĠSomething": 6595, + "ĠSometimes": 4803, + "ĠSomewhere": 34500, + "ĠSommer": 35022, + "ĠSon": 5185, + "ĠSong": 11862, + "ĠSongs": 48541, + "ĠSonic": 14290, + "ĠSono": 48344, + "ĠSonra": 41379, + "ĠSony": 13575, + "ĠSoo": 28784, + "ĠSoon": 17610, + "ĠSoph": 18921, + "ĠSophia": 35152, + "ĠSophie": 29645, + "ĠSor": 21421, + "ĠSora": 46639, + "ĠSorry": 4919, + "ĠSort": 26149, + "ĠSou": 31458, + "ĠSoul": 13588, + "ĠSouls": 30258, + "ĠSound": 14673, + "ĠSounds": 14576, + "ĠSoup": 40648, + "ĠSource": 29629, + "ĠSouth": 4242, + "ĠSoutheast": 27906, + "ĠSouthern": 13724, + "ĠSouthwest": 31708, + "ĠSovi": 37477, + "ĠSoviet": 11348, + "ĠSoviets": 41354, + "ĠSow": 48644, + "ĠSoy": 24758, + "ĠSozial": 36867, + "ĠSp": 1738, + "ĠSpa": 23729, + "ĠSpace": 8705, + "ĠSpaceX": 30585, + "ĠSpain": 12838, + "ĠSpanish": 8058, + "ĠSpark": 23424, + "ĠSpart": 36014, + "ĠSpaÃŁ": 27460, + "ĠSpe": 3550, + "ĠSpeak": 27868, + "ĠSpeaker": 8454, + "ĠSpeaking": 13069, + "ĠSpec": 20484, + "ĠSpecial": 11863, + "ĠSpecifically": 26058, + "ĠSpect": 27078, + "ĠSpeech": 48385, + "ĠSpeed": 18774, + "ĠSpencer": 31996, + "ĠSpicy": 35999, + "ĠSpider": 17733, + "ĠSpiel": 14266, + "ĠSpieler": 44053, + "ĠSpike": 46286, + "ĠSpin": 29185, + "ĠSpirit": 7218, + "ĠSpiritual": 38929, + "ĠSpit": 39108, + "ĠSpl": 19788, + "ĠSplit": 45111, + "ĠSpo": 45011, + "ĠSponge": 43742, + "ĠSport": 17549, + "ĠSports": 20191, + "ĠSpot": 19102, + "ĠSpotify": 29036, + "ĠSpr": 7702, + "ĠSpread": 30308, + "ĠSpring": 14013, + "ĠSprings": 33065, + "ĠSprinkle": 47331, + "ĠSpy": 35854, + "ĠSqu": 8683, + "ĠSquad": 26596, + "ĠSquare": 16463, + "ĠSque": 31449, + "ĠSqueeze": 47603, + "ĠSquid": 46178, + "ĠSr": 38988, + "ĠSri": 25120, + "ĠSt": 745, + "ĠSta": 16959, + "ĠStaat": 45559, + "ĠStaats": 33928, + "ĠStack": 37649, + "ĠStacy": 43644, + "ĠStadium": 32976, + "ĠStadt": 20550, + "ĠStaff": 16440, + "ĠStage": 25907, + "ĠStalin": 32126, + "ĠStall": 48010, + "ĠStamp": 48011, + "ĠStan": 10061, + "ĠStand": 9133, + "ĠStandard": 21298, + "ĠStandards": 44546, + "ĠStanding": 33655, + "ĠStanford": 20374, + "ĠStanley": 28329, + "ĠStar": 5705, + "ĠStarbucks": 26303, + "ĠStark": 28967, + "ĠStars": 20957, + "ĠStart": 6481, + "ĠStarted": 39715, + "ĠStarting": 16217, + "ĠStat": 16249, + "ĠState": 4533, + "ĠStates": 3040, + "ĠStation": 14467, + "ĠStatistics": 49226, + "ĠStatus": 47409, + "ĠStay": 8691, + "ĠSte": 3592, + "ĠSteam": 22517, + "ĠSteel": 26038, + "ĠStef": 43421, + "ĠStefan": 32158, + "ĠStein": 29453, + "ĠStell": 37364, + "ĠStella": 45073, + "ĠStelle": 26629, + "ĠStellen": 41893, + "ĠStep": 5470, + "ĠSteph": 31418, + "ĠStephan": 16672, + "ĠStephanie": 18634, + "ĠStephen": 13391, + "ĠSter": 33539, + "ĠStern": 39538, + "ĠSteuer": 44250, + "ĠSteve": 7466, + "ĠSteven": 12754, + "ĠStevens": 41727, + "ĠStevie": 47499, + "ĠStew": 22735, + "ĠStewart": 25951, + "ĠStick": 22744, + "ĠStill": 8291, + "ĠStir": 23353, + "ĠStitch": 44871, + "ĠStock": 17857, + "ĠStockholm": 38730, + "ĠStone": 15012, + "ĠStones": 49982, + "ĠStop": 5535, + "ĠStorage": 36308, + "ĠStore": 17242, + "ĠStories": 31797, + "ĠStorm": 20494, + "ĠStory": 14484, + "ĠStr": 8251, + "ĠStra": 12875, + "ĠStraight": 26908, + "ĠStrand": 47517, + "ĠStrange": 29068, + "ĠStrateg": 30064, + "ĠStrategic": 47805, + "ĠStrategy": 40915, + "ĠStraw": 35104, + "ĠStrawberry": 45906, + "ĠStraÃŁe": 43817, + "ĠStraÃŁen": 48925, + "ĠStre": 19597, + "ĠStream": 24904, + "ĠStreet": 7638, + "ĠStrength": 39251, + "ĠStress": 38258, + "ĠStretch": 38817, + "ĠStri": 20390, + "ĠStrike": 32788, + "ĠStro": 42196, + "ĠStrom": 39126, + "ĠStrong": 22792, + "ĠStu": 25203, + "ĠStuart": 36236, + "ĠStud": 4541, + "ĠStudent": 12464, + "ĠStudents": 17244, + "ĠStudien": 49496, + "ĠStudies": 17515, + "ĠStudio": 13500, + "ĠStudios": 23005, + "ĠStudy": 27039, + "ĠStuff": 31347, + "ĠStunde": 42781, + "ĠStunden": 30496, + "ĠStupid": 37659, + "ĠSty": 30415, + "ĠStyle": 27004, + "ĠStyles": 46845, + "ĠStück": 31146, + "ĠSu": 2746, + "ĠSub": 8511, + "ĠSubaru": 43044, + "ĠSubs": 37471, + "ĠSubscribe": 10611, + "ĠSubst": 42090, + "ĠSuccess": 23669, + "ĠSuch": 9653, + "ĠSud": 12323, + "ĠSudan": 36013, + "ĠSuddenly": 21194, + "ĠSue": 25332, + "ĠSuff": 40178, + "ĠSug": 39131, + "ĠSugar": 24576, + "ĠSuit": 48854, + "ĠSuite": 36637, + "ĠSuk": 37898, + "ĠSul": 35897, + "ĠSull": 34901, + "ĠSullivan": 37226, + "ĠSultan": 23528, + "ĠSum": 8626, + "ĠSummer": 16161, + "ĠSummit": 28726, + "ĠSun": 6163, + "ĠSund": 6942, + "ĠSunday": 7776, + "ĠSundays": 44857, + "ĠSung": 24857, + "ĠSunny": 34665, + "ĠSunshine": 48618, + "ĠSup": 9141, + "ĠSuper": 4548, + "ĠSuperintendent": 49623, + "ĠSuperior": 48953, + "ĠSuperman": 22455, + "ĠSupp": 9391, + "ĠSupport": 18073, + "ĠSuppose": 21360, + "ĠSupreme": 11032, + "ĠSur": 6732, + "ĠSure": 4894, + "ĠSurely": 29803, + "ĠSurf": 43124, + "ĠSurface": 36052, + "ĠSurprise": 36701, + "ĠSurprisingly": 49908, + "ĠSurv": 40716, + "ĠSurvey": 33365, + "ĠSurviv": 48859, + "ĠSus": 9545, + "ĠSusan": 15160, + "ĠSustain": 34407, + "ĠSut": 40492, + "ĠSuz": 24232, + "ĠSuzanne": 48901, + "ĠSuzuki": 49457, + "ĠSven": 49787, + "ĠSver": 29490, + "ĠSverige": 33973, + "ĠSw": 3926, + "ĠSwami": 33018, + "ĠSwan": 40884, + "ĠSwe": 29918, + "ĠSwed": 21617, + "ĠSweden": 17727, + "ĠSwedish": 23523, + "ĠSweet": 14653, + "ĠSwift": 25539, + "ĠSwiss": 21965, + "ĠSwitch": 13893, + "ĠSwitzerland": 23312, + "ĠSword": 27070, + "ĠSy": 3902, + "ĠSyd": 19918, + "ĠSydney": 21065, + "ĠSyl": 33349, + "ĠSym": 28877, + "ĠSymphony": 46891, + "ĠSyn": 26155, + "ĠSynd": 35284, + "ĠSyndrome": 44545, + "ĠSyria": 13314, + "ĠSyrian": 24081, + "ĠSystem": 8910, + "ĠSystems": 27059, + "ĠSz": 24699, + "ĠSão": 22401, + "ĠSÃ¥": 12728, + "ĠSé": 49556, + "ĠSó": 19961, + "ĠSü": 25697, + "ĠSÃŃ": 12375, + "ĠT": 314, + "ĠTA": 20094, + "ĠTALI": 13763, + "ĠTALIESIN": 13787, + "ĠTB": 29711, + "ĠTC": 34150, + "ĠTCP": 48965, + "ĠTD": 42606, + "ĠTE": 19744, + "ĠTED": 43036, + "ĠTER": 41305, + "ĠTF": 40964, + "ĠTH": 3578, + "ĠTHAT": 15532, + "ĠTHE": 5663, + "ĠTHERE": 40562, + "ĠTHEY": 34970, + "ĠTHIS": 17371, + "ĠTHOM": 40933, + "ĠTI": 28819, + "ĠTIM": 20187, + "ĠTIME": 36096, + "ĠTJ": 46402, + "ĠTL": 40277, + "ĠTM": 33550, + "ĠTO": 8232, + "ĠTOM": 29473, + "ĠTON": 25867, + "ĠTONER": 36557, + "ĠTOP": 40925, + "ĠTP": 44462, + "ĠTR": 15176, + "ĠTRA": 10841, + "ĠTRAVIS": 12317, + "ĠTS": 37645, + "ĠTT": 32576, + "ĠTU": 42408, + "ĠTV": 3558, + "ĠTVs": 38085, + "ĠTW": 23737, + "ĠTWO": 48664, + "ĠTY": 36187, + "ĠTa": 6551, + "ĠTab": 14106, + "ĠTabii": 41770, + "ĠTable": 25535, + "ĠTac": 38848, + "ĠTack": 38405, + "ĠTaco": 37992, + "ĠTact": 47111, + "ĠTada": 39303, + "ĠTae": 24478, + "ĠTag": 11204, + "ĠTage": 29724, + "ĠTagen": 41721, + "ĠTages": 33601, + "ĠTah": 31027, + "ĠTai": 9623, + "ĠTail": 46074, + "ĠTails": 49888, + "ĠTaiwan": 12296, + "ĠTaiwanese": 45187, + "ĠTaj": 44837, + "ĠTak": 9118, + "ĠTake": 3664, + "ĠTakes": 44347, + "ĠTaking": 17837, + "ĠTal": 10516, + "ĠTale": 49846, + "ĠTalent": 44081, + "ĠTales": 50099, + "ĠTaliban": 26478, + "ĠTalk": 8780, + "ĠTalking": 22445, + "ĠTall": 42633, + "ĠTam": 8540, + "ĠTamam": 18224, + "ĠTamara": 40424, + "ĠTamb": 18176, + "ĠTambién": 25682, + "ĠTamil": 39938, + "ĠTammy": 48030, + "ĠTampa": 40583, + "ĠTan": 17046, + "ĠTang": 22063, + "ĠTank": 28746, + "ĠTanner": 47253, + "ĠTanz": 42420, + "ĠTao": 26580, + "ĠTap": 13445, + "ĠTapi": 25386, + "ĠTar": 10537, + "ĠTara": 32182, + "ĠTarget": 24586, + "ĠTas": 27293, + "ĠTask": 30428, + "ĠTaste": 33770, + "ĠTat": 19645, + "ĠTax": 23263, + "ĠTay": 10132, + "ĠTaylor": 12060, + "ĠTe": 1989, + "ĠTea": 26614, + "ĠTeach": 26816, + "ĠTeacher": 19745, + "ĠTeachers": 40596, + "ĠTeaching": 34244, + "ĠTeam": 7606, + "ĠTeams": 24702, + "ĠTech": 13795, + "ĠTechn": 8337, + "ĠTechnical": 35512, + "ĠTechnically": 42494, + "ĠTechnologies": 46993, + "ĠTechnology": 15037, + "ĠTed": 14985, + "ĠTeddy": 34330, + "ĠTeen": 33297, + "ĠTeil": 16357, + "ĠTek": 27821, + "ĠTel": 27729, + "ĠTele": 14889, + "ĠTeles": 48595, + "ĠTelevision": 37329, + "ĠTell": 5115, + "ĠTem": 8095, + "ĠTemper": 34864, + "ĠTempl": 39563, + "ĠTemple": 17642, + "ĠTen": 9380, + "ĠTenemos": 44903, + "ĠTenn": 19418, + "ĠTennessee": 21127, + "ĠTensor": 34306, + "ĠTensorFlow": 37624, + "ĠTer": 6564, + "ĠTeraz": 41810, + "ĠTeresa": 35039, + "ĠTerm": 19835, + "ĠTerr": 36591, + "ĠTerra": 25366, + "ĠTerre": 47870, + "ĠTerror": 36174, + "ĠTerry": 21983, + "ĠTes": 12262, + "ĠTesla": 13666, + "ĠTest": 9279, + "ĠTestament": 15473, + "ĠTesting": 45517, + "ĠTet": 31580, + "ĠTex": 7479, + "ĠTexas": 7885, + "ĠText": 18643, + "ĠTh": 334, + "ĠThai": 19254, + "ĠThailand": 19434, + "ĠThan": 18289, + "ĠThank": 1044, + "ĠThankfully": 28344, + "ĠThanks": 2561, + "ĠThanksgiving": 21230, + "ĠThanos": 35993, + "ĠThat": 663, + "ĠThats": 30085, + "ĠThe": 440, + "ĠTheater": 26548, + "ĠTheatre": 27782, + "ĠTheir": 6710, + "ĠThem": 37354, + "ĠThema": 16306, + "ĠTheme": 42428, + "ĠThemen": 39229, + "ĠThen": 1396, + "ĠTheo": 42519, + "ĠTheory": 29009, + "ĠTherap": 36812, + "ĠThere": 821, + "ĠTherefore": 7504, + "ĠTheres": 33902, + "ĠTheresa": 42595, + "ĠTherm": 38957, + "ĠThese": 1981, + "ĠThey": 814, + "ĠThi": 48197, + "ĠThing": 30902, + "ĠThings": 9514, + "ĠThink": 6557, + "ĠThinking": 24460, + "ĠThird": 12548, + "ĠThirty": 41490, + "ĠThis": 639, + "ĠThom": 19409, + "ĠThomas": 8500, + "ĠThompson": 23460, + "ĠThor": 17777, + "ĠThose": 3950, + "ĠThough": 10404, + "ĠThought": 23058, + "ĠThous": 29852, + "ĠThousands": 40535, + "ĠThr": 41645, + "ĠThree": 6244, + "ĠThrones": 31659, + "ĠThrough": 8927, + "ĠThroughout": 22775, + "ĠThrow": 22228, + "ĠThunder": 21023, + "ĠThursday": 10383, + "ĠThus": 13827, + "ĠThy": 40010, + "ĠTi": 20456, + "ĠTian": 19736, + "ĠTib": 24474, + "ĠTibet": 28884, + "ĠTibetan": 44963, + "ĠTie": 36804, + "ĠTier": 24224, + "ĠTiere": 38810, + "ĠTiffany": 28104, + "ĠTig": 44550, + "ĠTiger": 22025, + "ĠTigers": 37699, + "ĠTight": 47967, + "ĠTik": 15613, + "ĠTikTok": 20211, + "ĠTil": 45141, + "ĠTill": 20227, + "ĠTim": 7172, + "ĠTime": 6161, + "ĠTimes": 11366, + "ĠTimothy": 29418, + "ĠTin": 47741, + "ĠTina": 28504, + "ĠTinder": 49341, + "ĠTing": 43196, + "ĠTiny": 39992, + "ĠTip": 18210, + "ĠTipp": 42102, + "ĠTips": 36887, + "ĠTir": 45523, + "ĠTisch": 48192, + "ĠTit": 14489, + "ĠTitan": 17731, + "ĠTitanic": 42183, + "ĠTitans": 45574, + "ĠTitle": 26768, + "ĠTo": 1407, + "ĠTob": 26350, + "ĠToby": 40223, + "ĠTod": 2465, + "ĠToday": 2692, + "ĠTodd": 21488, + "ĠTodo": 26466, + "ĠTodos": 35447, + "ĠTogether": 15911, + "ĠTok": 11036, + "ĠTokyo": 15147, + "ĠTol": 21402, + "ĠTold": 48220, + "ĠTolkien": 48824, + "ĠTom": 5041, + "ĠTomato": 35936, + "ĠTomb": 37150, + "ĠTommy": 19448, + "ĠTomorrow": 17499, + "ĠTon": 11385, + "ĠTong": 26946, + "ĠToni": 41374, + "ĠTonight": 18702, + "ĠTony": 10902, + "ĠToo": 11395, + "ĠTook": 38288, + "ĠTool": 15934, + "ĠTools": 30302, + "ĠTop": 8840, + "ĠTor": 7160, + "ĠTorah": 29676, + "ĠToronto": 14140, + "ĠTorres": 41506, + "ĠTort": 48415, + "ĠTory": 48743, + "ĠTot": 11236, + "ĠTotal": 23170, + "ĠTotally": 22837, + "ĠTou": 30850, + "ĠTouch": 20029, + "ĠTough": 48568, + "ĠTour": 13077, + "ĠTous": 47277, + "ĠTout": 20453, + "ĠTow": 33814, + "ĠTowards": 48938, + "ĠTower": 17877, + "ĠTown": 15954, + "ĠToy": 15708, + "ĠToyota": 22926, + "ĠTr": 1765, + "ĠTra": 5403, + "ĠTrack": 31903, + "ĠTracy": 33724, + "ĠTrad": 22017, + "ĠTrade": 23923, + "ĠTrading": 49929, + "ĠTraditional": 46738, + "ĠTraffic": 46950, + "ĠTrail": 30080, + "ĠTrain": 28029, + "ĠTrainer": 48494, + "ĠTraining": 20620, + "ĠTran": 42971, + "ĠTrans": 6531, + "ĠTransfer": 35025, + "ĠTransform": 27938, + "ĠTransit": 48870, + "ĠTransport": 22309, + "ĠTransportation": 35095, + "ĠTravel": 20610, + "ĠTravis": 24430, + "ĠTre": 8648, + "ĠTreasure": 49884, + "ĠTreasury": 34113, + "ĠTreat": 20298, + "ĠTreaty": 35920, + "ĠTree": 22291, + "ĠTrek": 25845, + "ĠTrend": 37417, + "ĠTrent": 40119, + "ĠTrevor": 26245, + "ĠTri": 10931, + "ĠTrib": 23304, + "ĠTribe": 44984, + "ĠTrick": 43367, + "ĠTrinity": 33121, + "ĠTrip": 33141, + "ĠTriple": 32159, + "ĠTro": 19406, + "ĠTrop": 43917, + "ĠTroy": 32898, + "ĠTru": 21388, + "ĠTruck": 44600, + "ĠTrue": 13587, + "ĠTruly": 43548, + "ĠTruman": 49723, + "ĠTrump": 3899, + "ĠTrung": 40555, + "ĠTrust": 11580, + "ĠTrustee": 34373, + "ĠTrustees": 45099, + "ĠTruth": 20522, + "ĠTry": 6526, + "ĠTrying": 20180, + "ĠTs": 16518, + "ĠTsch": 44461, + "ĠTu": 7836, + "ĠTub": 48258, + "ĠTube": 39313, + "ĠTuc": 42272, + "ĠTucker": 35581, + "ĠTucson": 47417, + "ĠTudo": 29871, + "ĠTuesday": 10017, + "ĠTul": 33585, + "ĠTumb": 50088, + "ĠTun": 21363, + "ĠTur": 5712, + "ĠTurbo": 35848, + "ĠTurk": 15714, + "ĠTurkey": 12647, + "ĠTurkish": 18565, + "ĠTurks": 42275, + "ĠTurn": 7956, + "ĠTurner": 28950, + "ĠTurning": 39660, + "ĠTurns": 29524, + "ĠTurtle": 48406, + "ĠTus": 42026, + "ĠTut": 18392, + "ĠTutaj": 41819, + "ĠTw": 2574, + "ĠTwe": 47763, + "ĠTwelve": 48063, + "ĠTwenty": 28789, + "ĠTwice": 46964, + "ĠTwilight": 38525, + "ĠTwin": 27444, + "ĠTwist": 47016, + "ĠTwitch": 22222, + "ĠTwitter": 5794, + "ĠTwo": 4453, + "ĠTy": 5569, + "ĠTyl": 49286, + "ĠTyler": 16869, + "ĠTyp": 17722, + "ĠType": 15576, + "ĠTypically": 23129, + "ĠTyr": 43126, + "ĠTyson": 43382, + "ĠTá": 20907, + "ĠTä": 41204, + "ĠTôi": 43345, + "ĠTú": 46341, + "ĠTür": 16728, + "ĠTürk": 36673, + "ĠTürkiye": 32901, + "ĠU": 624, + "ĠUA": 32765, + "ĠUC": 14079, + "ĠUCLA": 42862, + "ĠUE": 42260, + "ĠUFC": 48072, + "ĠUFO": 28318, + "ĠUH": 50030, + "ĠUI": 15682, + "ĠUK": 7051, + "ĠUM": 31335, + "ĠUN": 8229, + "ĠUNC": 44886, + "ĠUP": 20074, + "ĠURL": 12905, + "ĠURLs": 43267, + "ĠUS": 2546, + "ĠUSA": 10827, + "ĠUSB": 10109, + "ĠUSC": 44066, + "ĠUSD": 24375, + "ĠUSDA": 41244, + "ĠUSS": 30385, + "ĠUSSR": 45956, + "ĠUT": 35514, + "ĠUV": 17887, + "ĠUW": 35691, + "ĠUX": 40176, + "ĠUb": 30230, + "ĠUber": 21839, + "ĠUg": 28690, + "ĠUganda": 48764, + "ĠUgh": 16506, + "ĠUh": 4019, + "ĠUhh": 29365, + "ĠUhm": 32287, + "ĠUhr": 30084, + "ĠUk": 9816, + "ĠUkrain": 21481, + "ĠUkraine": 14081, + "ĠUkrainian": 24682, + "ĠUl": 24853, + "ĠUlt": 9523, + "ĠUltimate": 26570, + "ĠUltimately": 23921, + "ĠUltra": 20925, + "ĠUm": 3301, + "ĠUma": 21939, + "ĠUmm": 18918, + "ĠUms": 46963, + "ĠUmwelt": 48900, + "ĠUn": 1156, + "ĠUna": 15491, + "ĠUnbelievable": 39523, + "ĠUncle": 12347, + "ĠUnd": 2719, + "ĠUnder": 6974, + "ĠUnderground": 47569, + "ĠUnderstand": 26093, + "ĠUnderstanding": 36858, + "ĠUnderstood": 42832, + "ĠUndert": 48649, + "ĠUne": 16701, + "ĠUnf": 8170, + "ĠUnfortunately": 8590, + "ĠUng": 43559, + "ĠUni": 35191, + "ĠUnidos": 23087, + "ĠUnion": 8133, + "ĠUnit": 27894, + "ĠUnited": 2824, + "ĠUnity": 27913, + "ĠUnivers": 14052, + "ĠUniversal": 22617, + "ĠUniverse": 18307, + "ĠUniversity": 3535, + "ĠUnknown": 32766, + "ĠUnless": 16581, + "ĠUnlike": 17657, + "ĠUno": 37468, + "ĠUnreal": 34464, + "ĠUns": 25017, + "ĠUnt": 8256, + "ĠUnter": 12065, + "ĠUnternehmen": 27577, + "ĠUnters": 30240, + "ĠUnterschied": 41414, + "ĠUnterstüt": 42128, + "ĠUnterstützung": 47216, + "ĠUntil": 9088, + "ĠUp": 5858, + "ĠUpdate": 28923, + "ĠUpon": 25184, + "ĠUpper": 36926, + "ĠUr": 9533, + "ĠUran": 44407, + "ĠUrban": 24885, + "ĠUrs": 41303, + "ĠUs": 4958, + "ĠUse": 8278, + "ĠUsed": 43237, + "ĠUser": 32127, + "ĠUsers": 47092, + "ĠUsing": 11142, + "ĠUsually": 11419, + "ĠUt": 12555, + "ĠUtah": 20226, + "ĠUz": 38564, + "ĠV": 691, + "ĠVA": 18527, + "ĠVAN": 49090, + "ĠVC": 41922, + "ĠVER": 27686, + "ĠVERY": 45655, + "ĠVI": 27619, + "ĠVIC": 41519, + "ĠVID": 47619, + "ĠVII": 48087, + "ĠVIP": 29732, + "ĠVIS": 29421, + "ĠVISTA": 35199, + "ĠVM": 18038, + "ĠVMware": 40146, + "ĠVND": 39777, + "ĠVO": 15216, + "ĠVOICE": 46973, + "ĠVOICES": 44623, + "ĠVP": 35812, + "ĠVPN": 24512, + "ĠVR": 13722, + "ĠVS": 25091, + "ĠVa": 16822, + "ĠVac": 44442, + "ĠVacc": 48579, + "ĠVad": 24788, + "ĠVader": 36337, + "ĠVai": 24206, + "ĠVal": 7188, + "ĠVale": 26415, + "ĠValent": 17961, + "ĠValentine": 24359, + "ĠValerie": 46656, + "ĠVall": 48177, + "ĠVallahi": 35454, + "ĠValley": 10666, + "ĠValue": 39352, + "ĠValve": 41369, + "ĠVamos": 10894, + "ĠVamp": 38796, + "ĠVan": 8979, + "ĠVanc": 26417, + "ĠVancouver": 26563, + "ĠVander": 46588, + "ĠVanessa": 27928, + "ĠVanguard": 46648, + "ĠVar": 14662, + "ĠVari": 32511, + "ĠVas": 23299, + "ĠVater": 36173, + "ĠVatic": 36268, + "ĠVatican": 37904, + "ĠVault": 46071, + "ĠVay": 39556, + "ĠVe": 9706, + "ĠVed": 26084, + "ĠVeg": 12895, + "ĠVega": 48796, + "ĠVegan": 49688, + "ĠVegas": 15841, + "ĠVeget": 28092, + "ĠVegeta": 47297, + "ĠVeh": 41230, + "ĠVel": 17814, + "ĠVelvet": 47086, + "ĠVen": 11182, + "ĠVenez": 19656, + "ĠVenezuela": 24153, + "ĠVenice": 32707, + "ĠVent": 28290, + "ĠVenus": 23994, + "ĠVer": 4281, + "ĠVera": 46982, + "ĠVerantwort": 39082, + "ĠVerantwortung": 43423, + "ĠVerb": 27034, + "ĠVerd": 41257, + "ĠVere": 33110, + "ĠVerein": 47431, + "ĠVerf": 24583, + "ĠVerfüg": 41611, + "ĠVerfügung": 43026, + "ĠVerg": 26610, + "ĠVergleich": 47998, + "ĠVerizon": 44456, + "ĠVerkehr": 40706, + "ĠVerm": 20185, + "ĠVermont": 34754, + "ĠVern": 33220, + "ĠVernon": 47516, + "ĠVeron": 38600, + "ĠVeronica": 43498, + "ĠVers": 12226, + "ĠVerse": 31640, + "ĠVersion": 35965, + "ĠVert": 21044, + "ĠVery": 4372, + "ĠVet": 50111, + "ĠVeter": 21881, + "ĠVeterans": 30066, + "ĠVi": 6626, + "ĠVia": 49232, + "ĠVic": 33316, + "ĠVice": 13276, + "ĠVict": 8676, + "ĠVictor": 15777, + "ĠVictoria": 16656, + "ĠVictorian": 37302, + "ĠVictory": 37976, + "ĠVid": 31185, + "ĠVide": 7926, + "ĠVideo": 9777, + "ĠVideos": 25903, + "ĠVie": 24130, + "ĠViel": 35931, + "ĠViele": 36022, + "ĠVielen": 22502, + "ĠVielleicht": 29838, + "ĠVienna": 31024, + "ĠVietnam": 11013, + "ĠVietnamese": 25934, + "ĠView": 13909, + "ĠVij": 41201, + "ĠVik": 29465, + "ĠViking": 40375, + "ĠVikings": 48761, + "ĠVikt": 42500, + "ĠViktor": 46844, + "ĠVil": 35653, + "ĠVill": 14244, + "ĠVilla": 40280, + "ĠVillage": 22651, + "ĠVin": 15011, + "ĠVince": 34876, + "ĠVincent": 28003, + "ĠVine": 40569, + "ĠViol": 24383, + "ĠViolence": 49279, + "ĠVir": 7566, + "ĠVirgin": 9281, + "ĠVirginia": 10956, + "ĠVirt": 19447, + "ĠVirtual": 23887, + "ĠVirus": 39790, + "ĠVis": 10410, + "ĠVisa": 44907, + "ĠVish": 36752, + "ĠVision": 25170, + "ĠVisit": 24548, + "ĠVisual": 23187, + "ĠVit": 22463, + "ĠVital": 48307, + "ĠVitamin": 33515, + "ĠViv": 28188, + "ĠVive": 44288, + "ĠViá»ĩt": 32936, + "ĠVlad": 21958, + "ĠVladimir": 31669, + "ĠVlog": 33256, + "ĠVo": 7518, + "ĠVoc": 8993, + "ĠVocê": 9781, + "ĠVocês": 40262, + "ĠVog": 46359, + "ĠVoice": 15229, + "ĠVoiceover": 46117, + "ĠVoilÃł": 18677, + "ĠVol": 8911, + "ĠVold": 48791, + "ĠVolks": 30213, + "ĠVolkswagen": 39856, + "ĠVoll": 39602, + "ĠVolt": 40332, + "ĠVolume": 38448, + "ĠVolunte": 46698, + "ĠVolvo": 43381, + "ĠVon": 20700, + "ĠVoor": 43114, + "ĠVor": 12231, + "ĠVors": 31438, + "ĠVorte": 46968, + "ĠVote": 44354, + "ĠVou": 24361, + "ĠVous": 10802, + "ĠVoy": 25563, + "ĠVu": 37703, + "ĠVul": 41434, + "ĠVä": 45199, + "ĠVÃł": 44851, + "ĠW": 343, + "ĠWA": 26915, + "ĠWAR": 48331, + "ĠWAS": 28984, + "ĠWAT": 36086, + "ĠWAY": 42274, + "ĠWE": 15813, + "ĠWH": 8183, + "ĠWHAT": 18090, + "ĠWHO": 23256, + "ĠWHY": 32720, + "ĠWIL": 32095, + "ĠWILL": 18194, + "ĠWILLIAM": 32613, + "ĠWIN": 32353, + "ĠWITH": 25371, + "ĠWO": 48388, + "ĠWOMAN": 30837, + "ĠWOO": 16864, + "ĠWOODR": 24265, + "ĠWOODRUFF": 24309, + "ĠWOR": 30029, + "ĠWOW": 34728, + "ĠWR": 44175, + "ĠWW": 12040, + "ĠWWE": 15110, + "ĠWY": 46410, + "ĠWa": 15405, + "ĠWaar": 43123, + "ĠWade": 28001, + "ĠWag": 49921, + "ĠWagner": 38146, + "ĠWah": 24598, + "ĠWahl": 27437, + "ĠWahr": 36357, + "ĠWait": 3802, + "ĠWaiting": 37291, + "ĠWak": 45077, + "ĠWake": 21062, + "ĠWal": 9707, + "ĠWald": 29223, + "ĠWales": 16495, + "ĠWalk": 10818, + "ĠWalker": 23974, + "ĠWalking": 26964, + "ĠWall": 9551, + "ĠWallace": 32626, + "ĠWalmart": 25237, + "ĠWalt": 28260, + "ĠWalter": 21572, + "ĠWam": 41226, + "ĠWan": 28932, + "ĠWand": 40772, + "ĠWang": 14499, + "ĠWanna": 24336, + "ĠWant": 11773, + "ĠWar": 3630, + "ĠWard": 23794, + "ĠWare": 49978, + "ĠWarm": 40353, + "ĠWarner": 31769, + "ĠWarning": 45140, + "ĠWarren": 20538, + "ĠWarri": 23385, + "ĠWarrior": 33834, + "ĠWarriors": 40161, + "ĠWars": 9818, + "ĠWarsaw": 41662, + "ĠWarsz": 48479, + "ĠWarum": 25541, + "ĠWas": 3027, + "ĠWash": 28891, + "ĠWashington": 6149, + "ĠWasn": 28782, + "ĠWass": 42998, + "ĠWasser": 17351, + "ĠWat": 12593, + "ĠWatch": 7277, + "ĠWatching": 28482, + "ĠWater": 8772, + "ĠWaters": 46743, + "ĠWatson": 25640, + "ĠWatts": 42933, + "ĠWave": 28530, + "ĠWay": 9558, + "ĠWayne": 22101, + "ĠWe": 492, + "ĠWear": 34514, + "ĠWeather": 34441, + "ĠWeb": 9573, + "ĠWebb": 49649, + "ĠWeber": 42690, + "ĠWebs": 45347, + "ĠWed": 9589, + "ĠWednesday": 10579, + "ĠWeek": 12615, + "ĠWeekly": 35945, + "ĠWeg": 18919, + "ĠWei": 21174, + "ĠWeight": 44464, + "ĠWeihn": 42181, + "ĠWeil": 18665, + "ĠWein": 34477, + "ĠWeird": 32033, + "ĠWeise": 41947, + "ĠWeiter": 48050, + "ĠWel": 3778, + "ĠWelcome": 4027, + "ĠWell": 1042, + "ĠWellington": 45812, + "ĠWellness": 50166, + "ĠWells": 36363, + "ĠWelsh": 27129, + "ĠWelt": 14761, + "ĠWen": 23716, + "ĠWendy": 21850, + "ĠWenn": 7899, + "ĠWent": 31809, + "ĠWer": 14255, + "ĠWere": 12448, + "ĠWerk": 42911, + "ĠWert": 37205, + "ĠWes": 23843, + "ĠWesley": 43908, + "ĠWest": 4055, + "ĠWestern": 8724, + "ĠWestminster": 49714, + "ĠWet": 46046, + "ĠWh": 506, + "ĠWha": 45040, + "ĠWhat": 708, + "ĠWhatever": 8541, + "ĠWhats": 22051, + "ĠWhatsApp": 30513, + "ĠWhe": 17040, + "ĠWheel": 31392, + "ĠWheels": 49372, + "ĠWhen": 1133, + "ĠWhenever": 14159, + "ĠWhere": 2305, + "ĠWhereas": 13813, + "ĠWherever": 30903, + "ĠWhether": 8503, + "ĠWhew": 46029, + "ĠWhich": 3013, + "ĠWhile": 3987, + "ĠWhilst": 45790, + "ĠWhis": 41132, + "ĠWhit": 21693, + "ĠWhite": 5552, + "ĠWhitney": 39466, + "ĠWho": 2102, + "ĠWhoa": 7521, + "ĠWhoever": 24743, + "ĠWhole": 30336, + "ĠWhoo": 23381, + "ĠWhoops": 45263, + "ĠWhose": 28463, + "ĠWhy": 1545, + "ĠWi": 14035, + "ĠWiFi": 32885, + "ĠWick": 47702, + "ĠWid": 28331, + "ĠWide": 42543, + "ĠWie": 9233, + "ĠWieder": 45742, + "ĠWii": 27865, + "ĠWij": 46721, + "ĠWik": 23377, + "ĠWiki": 35892, + "ĠWikipedia": 28999, + "ĠWil": 9483, + "ĠWild": 10904, + "ĠWildlife": 35811, + "ĠWill": 3099, + "ĠWilliam": 6740, + "ĠWilliams": 12929, + "ĠWillie": 39912, + "ĠWilly": 42238, + "ĠWilson": 15388, + "ĠWin": 10427, + "ĠWind": 6320, + "ĠWindow": 44933, + "ĠWindows": 8591, + "ĠWinds": 43082, + "ĠWine": 39253, + "ĠWing": 28785, + "ĠWinston": 33051, + "ĠWinter": 16444, + "ĠWir": 4347, + "ĠWire": 32598, + "ĠWireless": 49962, + "ĠWirtschaft": 29412, + "ĠWis": 34143, + "ĠWisconsin": 17977, + "ĠWise": 46933, + "ĠWish": 27697, + "ĠWissenschaft": 38774, + "ĠWit": 42299, + "ĠWitch": 23522, + "ĠWitcher": 47383, + "ĠWith": 2022, + "ĠWithin": 15996, + "ĠWithout": 9129, + "ĠWitness": 41366, + "ĠWiz": 43490, + "ĠWizard": 37449, + "ĠWiÄĻ": 30127, + "ĠWiÄĻc": 32508, + "ĠWo": 6622, + "ĠWoah": 19668, + "ĠWoche": 24511, + "ĠWochen": 23126, + "ĠWohn": 22741, + "ĠWohnung": 50087, + "ĠWol": 19925, + "ĠWolf": 16634, + "ĠWolver": 49059, + "ĠWoman": 15794, + "ĠWomen": 11065, + "ĠWon": 14710, + "ĠWonder": 13224, + "ĠWonderful": 22768, + "ĠWong": 41638, + "ĠWoo": 10468, + "ĠWood": 11558, + "ĠWoods": 31559, + "ĠWoody": 40618, + "ĠWool": 46307, + "ĠWor": 26363, + "ĠWord": 8725, + "ĠWordPress": 23239, + "ĠWords": 32857, + "ĠWork": 6603, + "ĠWorkers": 42375, + "ĠWorking": 18337, + "ĠWorks": 27914, + "ĠWorkshop": 48366, + "ĠWorld": 3937, + "ĠWorlds": 43003, + "ĠWort": 22748, + "ĠWorth": 37228, + "ĠWould": 6068, + "ĠWouldn": 26291, + "ĠWow": 3153, + "ĠWr": 10159, + "ĠWrap": 41291, + "ĠWrest": 23719, + "ĠWrestle": 34744, + "ĠWrestleMania": 49014, + "ĠWrestling": 43508, + "ĠWright": 25578, + "ĠWrite": 23499, + "ĠWriting": 32774, + "ĠWrong": 28150, + "ĠWu": 17287, + "ĠWuhan": 42101, + "ĠWy": 14458, + "ĠWyatt": 46430, + "ĠWyoming": 30810, + "ĠWäh": 40084, + "ĠWür": 43846, + "ĠX": 1783, + "ĠXD": 32336, + "ĠXL": 37210, + "ĠXML": 43484, + "ĠXP": 33984, + "ĠXV": 44707, + "ĠXX": 27050, + "ĠXY": 48826, + "ĠXavier": 44653, + "ĠXbox": 14544, + "ĠXi": 15712, + "ĠXia": 11956, + "ĠXian": 47581, + "ĠXiang": 37935, + "ĠXiao": 13134, + "ĠXiaomi": 33806, + "ĠXin": 24368, + "ĠXing": 33040, + "ĠXu": 23082, + "ĠXuan": 45292, + "ĠXue": 43999, + "ĠY": 398, + "ĠYA": 40771, + "ĠYE": 21760, + "ĠYEAH": 43549, + "ĠYES": 25268, + "ĠYH": 49389, + "ĠYJ": 49535, + "ĠYO": 33565, + "ĠYOU": 7928, + "ĠYOUR": 25166, + "ĠYT": 49002, + "ĠYU": 33471, + "ĠYa": 6080, + "ĠYah": 19740, + "ĠYahoo": 41757, + "ĠYak": 31484, + "ĠYale": 26711, + "ĠYam": 18992, + "ĠYan": 13633, + "ĠYang": 11978, + "ĠYani": 14262, + "ĠYao": 40575, + "ĠYap": 38724, + "ĠYar": 41554, + "ĠYas": 30557, + "ĠYay": 13268, + "ĠYaz": 44962, + "ĠYe": 835, + "ĠYea": 21145, + "ĠYeah": 865, + "ĠYear": 10289, + "ĠYears": 24569, + "ĠYellow": 17550, + "ĠYemen": 30784, + "ĠYeon": 30892, + "ĠYep": 7010, + "ĠYes": 1079, + "ĠYeshua": 43885, + "ĠYesterday": 19765, + "ĠYet": 10890, + "ĠYi": 16747, + "ĠYin": 33254, + "ĠYing": 28125, + "ĠYo": 7616, + "ĠYoda": 48697, + "ĠYog": 49328, + "ĠYoga": 32983, + "ĠYok": 18480, + "ĠYong": 20085, + "ĠYoo": 22330, + "ĠYoon": 27893, + "ĠYork": 3609, + "ĠYosh": 38949, + "ĠYoshi": 45676, + "ĠYou": 509, + "ĠYouT": 2898, + "ĠYouTube": 3088, + "ĠYouTuber": 23349, + "ĠYouTubers": 30571, + "ĠYoung": 8160, + "ĠYour": 2260, + "ĠYours": 37922, + "ĠYout": 10717, + "ĠYouth": 24312, + "ĠYoutube": 12132, + "ĠYoutuber": 49219, + "ĠYu": 10767, + "ĠYuan": 22730, + "ĠYue": 30166, + "ĠYug": 41949, + "ĠYuk": 27975, + "ĠYum": 29890, + "ĠYummy": 40590, + "ĠYun": 18007, + "ĠYup": 13593, + "ĠYuri": 33901, + "ĠZ": 1176, + "ĠZa": 31440, + "ĠZac": 48082, + "ĠZach": 21028, + "ĠZack": 36034, + "ĠZahl": 42592, + "ĠZahlen": 44096, + "ĠZak": 46546, + "ĠZam": 45492, + "ĠZap": 34018, + "ĠZar": 41580, + "ĠZe": 4853, + "ĠZealand": 13883, + "ĠZeit": 9394, + "ĠZeiten": 48334, + "ĠZel": 20952, + "ĠZelda": 25298, + "ĠZen": 22387, + "ĠZent": 44091, + "ĠZero": 17182, + "ĠZeus": 35003, + "ĠZh": 7790, + "ĠZhan": 49550, + "ĠZhang": 17729, + "ĠZhao": 25132, + "ĠZhen": 27042, + "ĠZheng": 31408, + "ĠZhi": 43835, + "ĠZhong": 41664, + "ĠZhou": 25601, + "ĠZhu": 31680, + "ĠZi": 26190, + "ĠZie": 46340, + "ĠZiel": 25391, + "ĠZig": 50004, + "ĠZimmer": 37243, + "ĠZion": 32240, + "ĠZo": 10337, + "ĠZoe": 38234, + "ĠZomb": 33945, + "ĠZombie": 48952, + "ĠZone": 22800, + "ĠZoo": 34589, + "ĠZoom": 13453, + "ĠZu": 23164, + "ĠZucker": 34032, + "ĠZug": 34722, + "ĠZuk": 20991, + "ĠZukunft": 22782, + "ĠZum": 23906, + "ĠZur": 30518, + "ĠZus": 18742, + "ĠZusammen": 29442, + "ĠZusch": 48333, + "ĠZust": 46322, + "ĠZw": 29385, + "ĠZwe": 32475, + "Ġ[": 542, + "Ġ[\"": 29799, + "Ġ[#": 40726, + "Ġ[(": 9128, + "Ġ[...]": 35467, + "Ġ[?": 16127, + "Ġ[âĻª": 44529, + "Ġ\\": 12033, + "Ġ]": 4183, + "Ġ^": 18956, + "Ġ^^": 35500, + "Ġ_": 26161, + "Ġ__": 49264, + "Ġ`": 28279, + "Ġa": 257, + "Ġaa": 40079, + "Ġaan": 9904, + "Ġab": 410, + "Ġaba": 46981, + "Ġabajo": 30613, + "Ġabandon": 9072, + "Ġabandoned": 13732, + "Ġabb": 16903, + "Ġabbiamo": 22815, + "Ġabbrevi": 35839, + "Ġabdom": 22191, + "Ġabdomen": 36494, + "Ġabdominal": 38701, + "Ġabduct": 46465, + "Ġaber": 4340, + "Ġabge": 37301, + "Ġabges": 49848, + "Ġabi": 17905, + "Ġabide": 39663, + "Ġabilities": 11582, + "Ġability": 3485, + "Ġabla": 43899, + "Ġable": 1075, + "Ġabnorm": 47104, + "Ġabnormal": 32847, + "Ġaboard": 27488, + "Ġabol": 23183, + "Ġabolition": 39999, + "Ġabonn": 40676, + "Ġabord": 48727, + "Ġabort": 38117, + "Ġabortion": 22902, + "Ġabout": 466, + "Ġabove": 3673, + "Ġabra": 33693, + "Ġabras": 37351, + "Ġabre": 41594, + "Ġabrir": 27446, + "Ġabroad": 12637, + "Ġabrupt": 33401, + "Ġabruptly": 49642, + "Ġabs": 1950, + "Ġabsence": 17145, + "Ġabsent": 25185, + "Ġabsol": 7305, + "Ġabsolument": 34508, + "Ġabsolut": 18757, + "Ġabsolutamente": 49285, + "Ġabsolute": 8236, + "Ġabsolutely": 3122, + "Ġabsor": 7672, + "Ġabsorb": 15631, + "Ġabsorbed": 20799, + "Ġabsorbing": 38720, + "Ġabsorbs": 40745, + "Ġabsorption": 27557, + "Ġabst": 10823, + "Ġabstract": 12649, + "Ġabstraction": 37765, + "Ġabsurd": 19774, + "Ġabund": 14809, + "Ġabundance": 23391, + "Ġabundant": 30657, + "Ġabus": 48819, + "Ġabuse": 9852, + "Ġabused": 27075, + "Ġabuses": 47681, + "Ġabusive": 32828, + "Ġaby": 24457, + "Ġac": 696, + "Ġacab": 13281, + "Ġacaba": 23485, + "Ġacabar": 35041, + "Ġacabou": 38043, + "Ġacad": 5558, + "Ġacadem": 19267, + "Ġacademia": 28937, + "Ġacademic": 7778, + "Ġacademically": 48944, + "Ġacademics": 25695, + "Ġacademy": 25525, + "Ġacc": 1317, + "Ġacceler": 10172, + "Ġaccelerate": 21341, + "Ġaccelerated": 29763, + "Ġaccelerating": 34391, + "Ġacceleration": 17162, + "Ġaccelerator": 39889, + "Ġaccent": 11982, + "Ġaccents": 35012, + "Ġaccept": 3241, + "Ġacceptable": 15513, + "Ġacceptance": 20351, + "Ġaccepted": 9035, + "Ġaccepting": 17391, + "Ġaccepts": 33538, + "Ġacces": 35707, + "Ġacceso": 49284, + "Ġaccess": 2105, + "Ġaccessed": 34211, + "Ġaccessibility": 15002, + "Ġaccessible": 9515, + "Ġaccessing": 26440, + "Ġaccessories": 18207, + "Ġaccessory": 30617, + "Ġaccident": 6398, + "Ġaccidental": 38094, + "Ġaccidentally": 15715, + "Ġaccidents": 23875, + "Ġaccom": 4223, + "Ġaccommod": 11713, + "Ġaccommodate": 21410, + "Ġaccommodation": 27363, + "Ġaccommodations": 38907, + "Ġaccomp": 18037, + "Ġaccompan": 19307, + "Ġaccompanied": 24202, + "Ġaccompany": 21627, + "Ġaccompanying": 43648, + "Ġaccompl": 6548, + "Ġaccomplish": 9021, + "Ġaccomplished": 15419, + "Ġaccomplishment": 29144, + "Ġaccomplishments": 25943, + "Ġaccord": 18640, + "Ġaccordance": 31110, + "Ġaccording": 4650, + "Ġaccordingly": 19717, + "Ġaccount": 2696, + "Ġaccountability": 19380, + "Ġaccountable": 18024, + "Ġaccountant": 43898, + "Ġaccounted": 43138, + "Ġaccounting": 19163, + "Ġaccounts": 9402, + "Ġaccred": 33877, + "Ġaccum": 12989, + "Ġaccumulate": 33384, + "Ġaccumulated": 31346, + "Ġaccumulation": 35647, + "Ġaccur": 5771, + "Ġaccuracy": 14170, + "Ġaccurate": 8559, + "Ġaccurately": 20095, + "Ġaccus": 11168, + "Ġaccusations": 38556, + "Ġaccuse": 43610, + "Ġaccused": 17085, + "Ġaccusing": 47436, + "Ġaccustomed": 35980, + "Ġace": 17117, + "Ġaceite": 48913, + "Ġacept": 43568, + "Ġacerca": 46321, + "Ġacesso": 49543, + "Ġacet": 37848, + "Ġach": 2800, + "Ġacha": 37338, + "Ġache": 29677, + "Ġachei": 44961, + "Ġachie": 3538, + "Ġachieve": 4584, + "Ġachieved": 11042, + "Ġachievement": 15838, + "Ġachievements": 21420, + "Ġachieving": 19626, + "Ġacho": 14253, + "Ġacht": 43048, + "Ġachter": 35557, + "Ġacid": 8258, + "Ġacidic": 39514, + "Ġacids": 21667, + "Ġacknow": 7791, + "Ġacknowled": 15195, + "Ġacknowledge": 10692, + "Ġacknowledged": 27262, + "Ġacknowledgement": 47227, + "Ġacknowledging": 30904, + "Ġacne": 26480, + "Ġacom": 22298, + "Ġacompa": 39226, + "Ġacompan": 34839, + "Ġacompañ": 43142, + "Ġaconte": 14888, + "Ġacontec": 35846, + "Ġacontece": 19786, + "Ġacontecendo": 47623, + "Ġacontecer": 35011, + "Ġaconteceu": 34028, + "Ġacord": 38077, + "Ġacordo": 49392, + "Ġacost": 44126, + "Ġacoust": 22740, + "Ġacoustic": 26753, + "Ġacqu": 6667, + "Ġacquaint": 36954, + "Ġacquainted": 50224, + "Ġacquire": 20001, + "Ġacquired": 17554, + "Ġacquiring": 37374, + "Ġacquis": 17883, + "Ġacquisition": 21668, + "Ġacre": 32656, + "Ġacred": 34548, + "Ġacres": 19852, + "Ġacron": 31713, + "Ġacronym": 39195, + "Ġacross": 2108, + "Ġacrylic": 25389, + "Ġact": 605, + "Ġacted": 20359, + "Ġacting": 6577, + "Ġaction": 3069, + "Ġactionable": 45098, + "Ġactions": 5909, + "Ġactiv": 2430, + "Ġactivate": 13615, + "Ġactivated": 18157, + "Ġactivates": 43869, + "Ġactivating": 42481, + "Ġactivation": 24433, + "Ġactive": 4967, + "Ġactively": 13022, + "Ġactivism": 29040, + "Ġactivist": 24836, + "Ġactivists": 23042, + "Ġactivities": 5354, + "Ġactivity": 5191, + "Ġactor": 8747, + "Ġactors": 10037, + "Ġactress": 15410, + "Ġacts": 10672, + "Ġactu": 34964, + "Ġactual": 3539, + "Ġactually": 767, + "Ġacuerdo": 28113, + "Ġacum": 41343, + "Ġacute": 24390, + "Ġacá": 23496, + "Ġad": 614, + "Ġada": 11063, + "Ġadalah": 23555, + "Ġadam": 16368, + "Ġadap": 23169, + "Ġadapt": 6231, + "Ġadaptation": 21549, + "Ġadaptations": 44465, + "Ġadapted": 20871, + "Ġadapter": 22860, + "Ġadapting": 34942, + "Ġadaptive": 27912, + "Ġadd": 909, + "Ġadded": 3869, + "Ġaddict": 22072, + "Ġaddicted": 24629, + "Ġaddiction": 16835, + "Ġaddictive": 36486, + "Ġadding": 5127, + "Ġaddition": 4500, + "Ġadditional": 4497, + "Ġadditionally": 43181, + "Ġadditions": 35113, + "Ġadditive": 45558, + "Ġaddress": 2985, + "Ġaddressed": 13847, + "Ġaddresses": 16862, + "Ġaddressing": 14329, + "Ġadds": 10860, + "Ġadel": 30069, + "Ġadelante": 40214, + "Ġademás": 21251, + "Ġadequ": 15747, + "Ġadequate": 20927, + "Ġadequately": 41822, + "Ġadesso": 39552, + "Ġadher": 30106, + "Ġadhere": 33584, + "Ġadhesive": 25485, + "Ġadjac": 22940, + "Ġadjacent": 24441, + "Ġadject": 29378, + "Ġadjective": 44129, + "Ġadjour": 46236, + "Ġadjust": 4369, + "Ġadjustable": 27804, + "Ġadjusted": 19871, + "Ġadjusting": 23559, + "Ġadjustment": 17132, + "Ġadjustments": 18624, + "Ġadm": 5910, + "Ġadmin": 24236, + "Ġadminist": 4968, + "Ġadminister": 22096, + "Ġadministered": 36123, + "Ġadministr": 9737, + "Ġadministration": 7236, + "Ġadministrative": 17900, + "Ġadministrator": 25529, + "Ġadministrators": 27754, + "Ġadmir": 48252, + "Ġadmiration": 44597, + "Ġadmire": 21951, + "Ġadmired": 39987, + "Ġadmission": 24668, + "Ġadmissions": 29856, + "Ġadmit": 9796, + "Ġadmits": 46682, + "Ġadmitted": 14920, + "Ġadmitting": 44056, + "Ġado": 22450, + "Ġadoles": 21383, + "Ġadolescent": 40193, + "Ġadolescents": 48191, + "Ġadop": 22486, + "Ġadopt": 6878, + "Ġadopted": 12175, + "Ġadopting": 32328, + "Ġadoption": 19215, + "Ġadorable": 18698, + "Ġadore": 32060, + "Ġadrenal": 26511, + "Ġadrenaline": 35649, + "Ġads": 10342, + "Ġadul": 26885, + "Ġadult": 5075, + "Ġadulthood": 42328, + "Ġadults": 8865, + "Ġadv": 1551, + "Ġadvance": 7295, + "Ġadvanced": 7339, + "Ġadvancement": 35764, + "Ġadvances": 25297, + "Ġadvancing": 27267, + "Ġadvant": 14652, + "Ġadvantage": 5002, + "Ġadvantages": 14906, + "Ġadvent": 7045, + "Ġadventure": 9868, + "Ġadventures": 20905, + "Ġadventurous": 46163, + "Ġadvers": 17641, + "Ġadversary": 48222, + "Ġadverse": 27590, + "Ġadversity": 40018, + "Ġadvert": 7756, + "Ġadvertis": 18427, + "Ġadvertise": 35379, + "Ġadvertised": 42310, + "Ġadvertisement": 31370, + "Ġadvertisements": 42897, + "Ġadvertisers": 42679, + "Ġadvertising": 13097, + "Ġadvice": 5192, + "Ġadvis": 10280, + "Ġadvise": 18312, + "Ġadvised": 26269, + "Ġadviser": 43547, + "Ġadvising": 35598, + "Ġadvisor": 19161, + "Ġadvisors": 29136, + "Ġadvisory": 26289, + "Ġadvoc": 7915, + "Ġadvocacy": 22011, + "Ġadvocate": 14608, + "Ġadvocates": 25160, + "Ġadvocating": 32050, + "Ġaer": 11207, + "Ġaerial": 31026, + "Ġaerospace": 46817, + "Ġaest": 14413, + "Ġaesthet": 27837, + "Ġaesthetic": 20092, + "Ġaesthetics": 35517, + "Ġaf": 3238, + "Ġafar": 41795, + "Ġafect": 30626, + "Ġaff": 2096, + "Ġaffair": 22987, + "Ġaffairs": 17478, + "Ġaffect": 3345, + "Ġaffected": 8028, + "Ġaffecting": 17476, + "Ġaffection": 20080, + "Ġaffects": 11807, + "Ġaffili": 14863, + "Ġaffiliate": 23975, + "Ġaffiliated": 42174, + "Ġaffinity": 39703, + "Ġaffir": 36315, + "Ġaffirm": 21260, + "Ġaffirmative": 45270, + "Ġafflict": 48287, + "Ġafford": 6157, + "Ġaffordable": 12028, + "Ġafin": 34709, + "Ġafore": 48927, + "Ġafraid": 4638, + "Ġafter": 934, + "Ġafterlife": 47637, + "Ġaftermath": 34095, + "Ġafternoon": 6499, + "Ġafterward": 40411, + "Ġafterwards": 10543, + "Ġag": 623, + "Ġagain": 797, + "Ġagainst": 1970, + "Ġage": 3205, + "Ġaged": 21213, + "Ġagencies": 9504, + "Ġagency": 7934, + "Ġagenda": 9829, + "Ġagent": 9461, + "Ġagents": 12554, + "Ġages": 12357, + "Ġaggi": 42254, + "Ġaggrav": 47339, + "Ġaggreg": 16743, + "Ġaggregate": 26118, + "Ġaggress": 8939, + "Ġaggression": 30268, + "Ġaggressive": 10762, + "Ġaggressively": 32024, + "Ġagile": 30072, + "Ġagility": 39794, + "Ġaging": 19090, + "Ġago": 2057, + "Ġagony": 46025, + "Ġagora": 9851, + "Ġagrad": 49463, + "Ġagrade": 31469, + "Ġagre": 4554, + "Ġagree": 3986, + "Ġagreed": 9166, + "Ġagreeing": 36900, + "Ġagreement": 8106, + "Ġagreements": 21422, + "Ġagrees": 26383, + "Ġagric": 9682, + "Ġagricultural": 19587, + "Ġagriculture": 14837, + "Ġagu": 34438, + "Ġagua": 19330, + "Ġah": 3716, + "Ġaha": 47340, + "Ġahead": 2286, + "Ġahh": 28612, + "Ġahor": 44249, + "Ġahora": 9923, + "ĠahÃŃ": 12571, + "Ġai": 9783, + "Ġaid": 9418, + "Ġaide": 40890, + "Ġaider": 36669, + "Ġaids": 28447, + "Ġaik": 37537, + "Ġaika": 39704, + "Ġail": 48283, + "Ġaim": 5939, + "Ġaime": 46527, + "Ġaimed": 20540, + "Ġaiming": 20253, + "Ġaims": 24683, + "Ġain": 7862, + "Ġainda": 11804, + "Ġainsi": 26552, + "Ġair": 1988, + "Ġairborne": 49278, + "Ġaircraft": 9465, + "Ġaire": 42885, + "Ġaired": 34503, + "Ġairflow": 45291, + "Ġairl": 18856, + "Ġairline": 29528, + "Ġairlines": 37147, + "Ġairpl": 13781, + "Ġairplane": 17130, + "Ġairplanes": 32947, + "Ġairport": 10155, + "Ġairports": 36561, + "Ġais": 24938, + "Ġaisle": 30916, + "Ġait": 31684, + "Ġaixò": 16312, + "ĠaixÃŃ": 40217, + "Ġaj": 17680, + "Ġaja": 26579, + "Ġajud": 16126, + "Ġajuda": 32842, + "Ġajudar": 28883, + "Ġajust": 41023, + "Ġak": 9308, + "Ġaka": 28042, + "Ġakan": 16281, + "Ġakhir": 49843, + "Ġakin": 47540, + "Ġakkor": 44439, + "Ġakl": 43380, + "Ġako": 43567, + "Ġakt": 13680, + "Ġaktiv": 31658, + "Ġaktuell": 36267, + "Ġaku": 21093, + "Ġal": 419, + "Ġalan": 48146, + "Ġalar": 27597, + "Ġalarm": 14183, + "Ġalarming": 44043, + "Ġalarms": 45039, + "Ġalbeit": 43654, + "Ġalbo": 22622, + "Ġalbum": 6030, + "Ġalbums": 24795, + "Ġalc": 20005, + "Ġalcanz": 50200, + "Ġalcohol": 7658, + "Ġalcoholic": 38075, + "Ġald": 16798, + "Ġale": 6775, + "Ġaleg": 44491, + "Ġalert": 9615, + "Ġalerts": 28061, + "Ġalg": 3501, + "Ġalgae": 32658, + "Ġalgebra": 21989, + "Ġalgo": 8655, + "Ġalgorith": 7028, + "Ġalgorithm": 9284, + "Ġalgorithms": 14642, + "Ġalgu": 16527, + "Ġalguien": 25814, + "Ġalgum": 15468, + "Ġalguma": 20259, + "Ġalgumas": 23207, + "Ġalgun": 9813, + "Ġalguna": 20651, + "Ġalgunas": 27316, + "Ġalgunos": 21078, + "Ġalguns": 20210, + "Ġalguém": 27052, + "Ġalgún": 26300, + "Ġali": 10198, + "Ġalien": 12319, + "Ġaliens": 21594, + "Ġalign": 7975, + "Ġaligned": 17962, + "Ġalignment": 18515, + "Ġalike": 20025, + "Ġaliment": 17043, + "Ġalimentos": 38563, + "Ġalive": 5465, + "Ġalk": 37688, + "Ġalkal": 44220, + "Ġall": 439, + "Ġalla": 11591, + "Ġalle": 5430, + "Ġalleen": 32259, + "Ġalleg": 10364, + "Ġallegations": 29259, + "Ġalleged": 26317, + "Ġallegedly": 26794, + "Ġallegiance": 44706, + "Ġallein": 37673, + "Ġalleine": 37780, + "Ġallem": 17585, + "Ġallemaal": 29352, + "Ġallen": 18440, + "Ġaller": 8722, + "Ġallerdings": 35489, + "Ġallergic": 31606, + "Ġallergies": 37007, + "Ġallergy": 41505, + "Ġalles": 7874, + "Ġallevi": 33201, + "Ġalleviate": 42701, + "Ġalley": 26660, + "Ġallez": 18146, + "Ġalliance": 20995, + "Ġalliances": 45855, + "Ġallied": 41969, + "Ġallies": 14719, + "Ġalligator": 48095, + "Ġalloc": 12660, + "Ġallocate": 35713, + "Ġallocated": 29772, + "Ġallocation": 27599, + "Ġallons": 34405, + "Ġallora": 44141, + "Ġallow": 2089, + "Ġallowance": 30647, + "Ġallowed": 4350, + "Ġallowing": 8293, + "Ġallows": 4045, + "Ġalloy": 37819, + "Ġallt": 23612, + "Ġalltid": 45861, + "ĠalltsÃ¥": 43505, + "Ġalluded": 33919, + "Ġally": 23356, + "Ġallá": 30642, + "ĠallÃŃ": 34294, + "Ġalm": 18667, + "Ġalma": 32634, + "Ġalmighty": 47534, + "Ġalmond": 29506, + "Ġalmonds": 40973, + "Ġalmost": 1920, + "Ġalone": 3312, + "Ġalong": 2051, + "Ġalongside": 12385, + "Ġalors": 11246, + "Ġalot": 37762, + "Ġaloud": 43888, + "Ġalpha": 8961, + "Ġalphabet": 23339, + "Ġalready": 1217, + "Ġalred": 41290, + "Ġalrededor": 43663, + "Ġalright": 5845, + "Ġals": 3907, + "Ġalso": 611, + "Ġalt": 4955, + "Ġalta": 26495, + "Ġaltar": 31435, + "Ġalte": 38973, + "Ġalten": 41217, + "Ġalter": 11337, + "Ġaltered": 28783, + "Ġaltern": 5400, + "Ġalternate": 18873, + "Ġalternating": 40062, + "Ġalternative": 8535, + "Ġalternatives": 20478, + "Ġalthough": 4878, + "Ġaltijd": 29191, + "Ġaltitude": 24003, + "Ġalto": 21275, + "Ġaltogether": 19051, + "Ġaltre": 34983, + "Ġaltri": 33707, + "Ġaltro": 40924, + "Ġaltura": 39398, + "Ġalum": 12064, + "Ġalumin": 12787, + "Ġaluminium": 35239, + "Ġaluminum": 15656, + "Ġalumni": 16347, + "Ġalways": 1009, + "Ġalém": 30388, + "Ġam": 669, + "Ġama": 10889, + "Ġaman": 42943, + "Ġamar": 42171, + "Ġamateur": 29339, + "Ġamazed": 20507, + "Ġamazing": 2243, + "Ġamazingly": 31762, + "Ġamazon": 47010, + "Ġamb": 3913, + "Ġambassador": 25445, + "Ġambassadors": 44235, + "Ġamber": 48304, + "Ġambient": 22997, + "Ġambiente": 34957, + "Ġambigu": 40390, + "Ġambiguity": 46519, + "Ġambiguous": 39465, + "Ġambition": 22814, + "Ġambitions": 34475, + "Ġambitious": 20239, + "Ġambos": 41425, + "Ġambul": 21574, + "Ġambulance": 26744, + "Ġambush": 38143, + "Ġamen": 18497, + "Ġamend": 11704, + "Ġamended": 43641, + "Ġamendment": 17920, + "Ġamendments": 27009, + "Ġamenities": 47260, + "Ġamer": 16116, + "Ġamerican": 31229, + "Ġami": 33206, + "Ġamid": 30153, + "Ġamiga": 45322, + "Ġamigo": 24671, + "Ġamigos": 18243, + "Ġamino": 24674, + "Ġamis": 32929, + "Ġammo": 27340, + "Ġammon": 36431, + "Ġammonia": 46833, + "Ġammunition": 32251, + "Ġamo": 43155, + "Ġamong": 3654, + "Ġamongst": 12918, + "Ġamor": 15543, + "Ġamount": 2372, + "Ġamounts": 11663, + "Ġamp": 18648, + "Ġamph": 40077, + "Ġampl": 9731, + "Ġample": 42857, + "Ġamplified": 49237, + "Ġamplifier": 27439, + "Ġamplify": 41174, + "Ġamplitude": 27433, + "Ġamps": 43970, + "Ġamusement": 39970, + "Ġamusing": 47809, + "Ġaméric": 39902, + "Ġan": 364, + "Ġana": 34178, + "Ġanak": 38042, + "Ġanal": 2624, + "Ġanalog": 16660, + "Ġanalogy": 21663, + "Ġanaly": 6459, + "Ġanalys": 23014, + "Ġanalyse": 37840, + "Ġanalyses": 37560, + "Ġanalysis": 5215, + "Ġanalyst": 19085, + "Ġanalysts": 31388, + "Ġanalyt": 10783, + "Ġanalytic": 40358, + "Ġanalytical": 29579, + "Ġanalytics": 15370, + "Ġanalyze": 12477, + "Ġanalyzed": 28181, + "Ġanalyzing": 23663, + "Ġanar": 37378, + "Ġanarch": 41957, + "Ġanat": 21618, + "Ġanatomy": 31566, + "Ġanc": 9789, + "Ġancest": 11749, + "Ġancestor": 40032, + "Ġancestors": 18069, + "Ġancestral": 40049, + "Ġancestry": 44729, + "Ġanch": 12723, + "Ġanche": 11585, + "Ġanchor": 18487, + "Ġanci": 34856, + "Ġancient": 7832, + "Ġancora": 30656, + "Ġand": 293, + "Ġanda": 21851, + "Ġandar": 50009, + "Ġandare": 42742, + "Ġander": 49466, + "Ġandere": 10490, + "Ġanderen": 11122, + "Ġanderer": 48108, + "Ġanderes": 31426, + "Ġanders": 17999, + "Ġandra": 25299, + "Ġandroid": 36157, + "Ġanecd": 26652, + "Ġanecdote": 49845, + "Ġanest": 31750, + "Ġanf": 33709, + "Ġang": 2562, + "Ġange": 15495, + "Ġangef": 43907, + "Ġangel": 14250, + "Ġangels": 18175, + "Ġanger": 10240, + "Ġanges": 31138, + "Ġangle": 5802, + "Ġangled": 48843, + "Ġangles": 14708, + "Ġangry": 6884, + "Ġangular": 24413, + "Ġanh": 18931, + "Ġani": 40477, + "Ġanim": 2383, + "Ġanimal": 5496, + "Ġanimales": 45102, + "Ġanimals": 4882, + "Ġanimate": 36439, + "Ġanimated": 18947, + "Ġanimation": 9603, + "Ġanimations": 22868, + "Ġanime": 12435, + "Ġank": 30890, + "Ġankle": 21999, + "Ġankles": 40962, + "Ġanlam": 28940, + "Ġanlat": 27691, + "Ġann": 2324, + "Ġannat": 42786, + "Ġanne": 22256, + "Ġannex": 41012, + "Ġanni": 31164, + "Ġannih": 40430, + "Ġanniversary": 12962, + "Ġanno": 46277, + "Ġannot": 25339, + "Ġannotation": 48654, + "Ġannoun": 4262, + "Ġannounce": 7478, + "Ġannounced": 7548, + "Ġannouncement": 12847, + "Ġannouncements": 23785, + "Ġannouncer": 49574, + "Ġannouncing": 28706, + "Ġannoy": 8759, + "Ġannoyed": 25921, + "Ġannoying": 11304, + "Ġannual": 9784, + "Ġannually": 29974, + "Ġannée": 30488, + "Ġannées": 21203, + "Ġano": 19816, + "Ġanom": 24769, + "Ġanomaly": 42737, + "Ġanonym": 37293, + "Ġanonymous": 24932, + "Ġanos": 13592, + "Ġanother": 1071, + "Ġans": 1567, + "Ġansch": 31508, + "Ġanswer": 1867, + "Ġanswered": 10103, + "Ġanswering": 13430, + "Ġanswers": 6338, + "Ġant": 2511, + "Ġantagon": 32590, + "Ġante": 23411, + "Ġanten": 18858, + "Ġantenna": 24573, + "Ġanterior": 22272, + "Ġantes": 11014, + "Ġanth": 25820, + "Ġanthem": 42383, + "Ġanthrop": 22727, + "Ġanthropology": 44518, + "Ġanti": 6061, + "Ġantib": 11533, + "Ġantibiot": 19388, + "Ġantibiotic": 37828, + "Ġantibiotics": 26922, + "Ġantibodies": 28356, + "Ġantibody": 34507, + "Ġantic": 49172, + "Ġanticip": 10416, + "Ġanticipate": 21685, + "Ġanticipated": 23267, + "Ġanticipating": 40568, + "Ġanticipation": 35979, + "Ġantid": 47962, + "Ġantig": 44417, + "Ġantim": 46141, + "Ġantioxid": 33369, + "Ġantioxidants": 48767, + "Ġantiqu": 41036, + "Ġantique": 41220, + "Ġantis": 44474, + "Ġants": 23355, + "Ġanunci": 39350, + "Ġanvänd": 41559, + "Ġanx": 6739, + "Ġanxiety": 9119, + "Ġanxious": 15166, + "Ġany": 604, + "Ġanybody": 4472, + "Ġanyhow": 44995, + "Ġanymore": 3602, + "Ġanyone": 2878, + "Ġanys": 32319, + "Ġanything": 1340, + "Ġanytime": 13038, + "Ġanyway": 4033, + "Ġanyways": 13448, + "Ġanywhere": 4992, + "Ġanál": 44113, + "Ġao": 8130, + "Ġaos": 25458, + "Ġap": 1882, + "Ġapa": 15951, + "Ġapar": 34115, + "Ġapare": 15004, + "Ġaparece": 37863, + "Ġaparecer": 43336, + "Ġapart": 4936, + "Ġapartment": 9587, + "Ġapartments": 29056, + "Ġape": 44315, + "Ġapenas": 18561, + "Ġaper": 43139, + "Ġapert": 22939, + "Ġaperture": 29848, + "Ġapex": 48115, + "Ġapl": 25522, + "Ġaplic": 18221, + "Ġapo": 50165, + "Ġapocalypse": 42600, + "Ġapolog": 9472, + "Ġapologies": 34929, + "Ġapologise": 50128, + "Ġapologize": 12328, + "Ġapologized": 47815, + "Ġapology": 28006, + "Ġapost": 19484, + "Ġapostle": 50244, + "Ġapostles": 39397, + "Ġapoy": 41535, + "Ġapoyo": 46151, + "Ġapp": 724, + "Ġappar": 45914, + "Ġapparat": 36564, + "Ġapparatus": 38573, + "Ġapparent": 18335, + "Ġapparently": 7970, + "Ġappe": 2363, + "Ġappeal": 13668, + "Ġappealing": 23842, + "Ġappeals": 32603, + "Ġappear": 4204, + "Ġappearance": 8967, + "Ġappearances": 29174, + "Ġappeared": 8516, + "Ġappearing": 19870, + "Ġappears": 7038, + "Ġappel": 36332, + "Ġappelle": 34216, + "Ġappend": 34116, + "Ġappet": 16159, + "Ġappetite": 23996, + "Ġappl": 4988, + "Ġapplaud": 9644, + "Ġapplauding": 15865, + "Ġapplauds": 20783, + "Ġapplause": 9969, + "Ġapple": 10606, + "Ġapples": 16814, + "Ġappli": 33330, + "Ġappliance": 45646, + "Ġappliances": 35480, + "Ġapplic": 2580, + "Ġapplicable": 21142, + "Ġapplicant": 30915, + "Ġapplicants": 28767, + "Ġapplication": 3861, + "Ġapplications": 5821, + "Ġapplied": 6456, + "Ġapplies": 13165, + "Ġapply": 3079, + "Ġapplying": 9275, + "Ġappoint": 7602, + "Ġappointed": 17653, + "Ġappointment": 13653, + "Ġappointments": 25084, + "Ġappreci": 3616, + "Ġappreciate": 4449, + "Ġappreciated": 17169, + "Ġappreciation": 18909, + "Ġappreciative": 43239, + "Ġappreh": 38675, + "Ġapprendre": 46609, + "Ġapprent": 21435, + "Ġapprentice": 40207, + "Ġapprentices": 31715, + "Ġapprenticeship": 47070, + "Ġappro": 2075, + "Ġapproach": 3109, + "Ġapproached": 17247, + "Ġapproaches": 11587, + "Ġapproaching": 14908, + "Ġappropri": 5745, + "Ġappropriate": 6854, + "Ġappropriately": 23505, + "Ġapproval": 13317, + "Ġapprove": 18827, + "Ġapproved": 10826, + "Ġapprox": 28080, + "Ġapproxim": 8542, + "Ġapproximate": 30874, + "Ġapproximately": 10447, + "Ġapproximation": 28023, + "Ġapps": 7733, + "Ġapr": 10992, + "Ġaprend": 21003, + "Ġaprender": 24916, + "Ġapresent": 36181, + "Ġapro": 14602, + "Ġapron": 46742, + "Ġaprove": 29015, + "Ġaproxim": 31270, + "Ġaproximadamente": 48892, + "Ġaprès": 13274, + "Ġapt": 29427, + "Ġaqu": 2373, + "Ġaquarium": 30149, + "Ġaquatic": 44020, + "Ġaquela": 25996, + "Ġaquele": 23640, + "Ġaqueles": 49831, + "Ġaquell": 33635, + "Ġaquellos": 49835, + "Ġaquest": 19269, + "Ġaquesta": 24062, + "Ġaqui": 3871, + "Ġaquilo": 32304, + "ĠaquÃŃ": 6661, + "Ġar": 594, + "Ġara": 15186, + "Ġarab": 38557, + "Ġarada": 40479, + "Ġarb": 25613, + "Ġarbe": 40476, + "Ġarbeiten": 23162, + "Ġarbeitet": 49907, + "Ġarbets": 47539, + "Ġarbit": 14931, + "Ġarbitr": 19071, + "Ġarbitrary": 23211, + "Ġarc": 10346, + "Ġarcade": 25664, + "Ġarch": 3912, + "Ġarchae": 21894, + "Ġarchaeological": 42139, + "Ġarche": 37897, + "Ġarchety": 41852, + "Ġarchitect": 6331, + "Ġarchitects": 30491, + "Ġarchitectural": 26621, + "Ġarchitecture": 9482, + "Ġarchive": 23507, + "Ġarchives": 25607, + "Ġard": 44856, + "Ġare": 366, + "Ġarea": 1859, + "Ġareas": 3179, + "Ġaren": 3212, + "Ġarena": 18451, + "Ġarg": 3882, + "Ġargent": 33977, + "Ġargu": 10171, + "Ġarguably": 26771, + "Ġargue": 9695, + "Ġargued": 20219, + "Ġargues": 38218, + "Ġarguing": 19697, + "Ġargument": 6770, + "Ġarguments": 12869, + "Ġarise": 20288, + "Ġarises": 27388, + "Ġarising": 44900, + "Ġarist": 40105, + "Ġarithmetic": 42973, + "Ġark": 14408, + "ĠarkadaÅŁ": 19153, + "ĠarkadaÅŁlar": 27550, + "Ġarm": 3726, + "Ġarma": 46422, + "Ġarmas": 44611, + "Ġarmed": 16297, + "Ġarmies": 28217, + "Ġarmor": 13124, + "Ġarmored": 41879, + "Ġarmour": 36554, + "Ġarmp": 44541, + "Ġarms": 5812, + "Ġarmy": 7267, + "Ġaroma": 28687, + "Ġaromatic": 45831, + "Ġarose": 37192, + "Ġaround": 926, + "Ġarqu": 40258, + "Ġarr": 5539, + "Ġarran": 50235, + "Ġarrange": 9424, + "Ġarranged": 18721, + "Ġarrangement": 17620, + "Ġarrangements": 22435, + "Ġarray": 10225, + "Ġarrays": 41011, + "Ġarrest": 7823, + "Ġarrested": 12469, + "Ġarrests": 48813, + "Ġarri": 3399, + "Ġarrib": 21620, + "Ġarriba": 28469, + "Ġarriv": 30697, + "Ġarrival": 18365, + "Ġarrive": 8881, + "Ġarrived": 6678, + "Ġarriver": 34142, + "Ġarrives": 20116, + "Ġarriving": 22436, + "Ġarrivé": 47112, + "Ġarrog": 22149, + "Ġarrogance": 46444, + "Ġarrogant": 30467, + "Ġarrow": 11610, + "Ġarrows": 19669, + "Ġarsen": 28636, + "Ġarsenal": 42227, + "Ġart": 1523, + "Ġarte": 29159, + "Ġarter": 30455, + "Ġarteries": 44801, + "Ġartery": 38520, + "Ġarth": 31546, + "Ġarthritis": 35956, + "Ġartic": 15228, + "Ġarticle": 7222, + "Ġarticles": 11290, + "Ġarticulate": 30305, + "Ġarticulated": 43322, + "Ġartif": 17851, + "Ġartifact": 34806, + "Ġartifacts": 24617, + "Ġartific": 39905, + "Ġartificial": 11677, + "Ġartillery": 31115, + "Ġartist": 5748, + "Ġartistic": 17090, + "Ġartists": 6910, + "Ġarts": 8609, + "Ġartwork": 15829, + "Ġartık": 22241, + "Ġas": 382, + "Ġasc": 15526, + "Ġascend": 41604, + "Ġaseg": 38174, + "Ġash": 12588, + "Ġashamed": 19489, + "Ġashes": 32942, + "Ġasi": 28644, + "Ġaside": 7359, + "Ġask": 1029, + "Ġasked": 2351, + "Ġasking": 3365, + "Ġasks": 8962, + "Ġasleep": 11039, + "Ġaslında": 34541, + "Ġasp": 16817, + "Ġaspect": 4171, + "Ġaspects": 7270, + "Ġasphalt": 46076, + "Ġaspir": 20003, + "Ġaspiration": 44565, + "Ġaspirations": 32458, + "Ġaspire": 41224, + "Ġaspiring": 45405, + "Ġass": 1256, + "Ġassass": 16475, + "Ġassassin": 36294, + "Ġassassination": 40195, + "Ġassault": 12458, + "Ġassaulted": 44910, + "Ġasse": 5907, + "Ġassemb": 8438, + "Ġassemble": 22364, + "Ġassembled": 24204, + "Ġassembling": 43867, + "Ġassembly": 12103, + "Ġassert": 19810, + "Ġassess": 5877, + "Ġassessed": 36051, + "Ġassessing": 34348, + "Ġassessment": 9687, + "Ġassessments": 24338, + "Ġasset": 11999, + "Ġassets": 9769, + "Ġassez": 15774, + "Ġasshole": 28599, + "Ġassign": 6269, + "Ġassigned": 13279, + "Ġassigning": 49602, + "Ġassignment": 15187, + "Ġassignments": 22546, + "Ġassim": 8249, + "Ġassist": 4255, + "Ġassistance": 9683, + "Ġassistant": 10994, + "Ġassistants": 34949, + "Ġassisted": 30291, + "Ġassisting": 40368, + "Ġassistir": 45983, + "Ġassists": 49416, + "Ġassoci": 4180, + "Ġassociate": 14644, + "Ġassociated": 6615, + "Ġassociates": 36914, + "Ġassociation": 14598, + "Ġassociations": 26597, + "Ġassum": 5339, + "Ġassume": 6552, + "Ġassumed": 15895, + "Ġassumes": 37808, + "Ġassuming": 11926, + "Ġassumption": 15302, + "Ġassumptions": 17695, + "Ġassunto": 50219, + "Ġassurance": 32189, + "Ġassure": 20968, + "Ġassured": 23426, + "Ġast": 5357, + "Ġasta": 43405, + "Ġastero": 24711, + "Ġasteroid": 33833, + "Ġasteroids": 50230, + "Ġasthma": 33409, + "Ġaston": 25687, + "Ġastonishing": 35264, + "Ġastrolog": 30122, + "Ġastrology": 44385, + "Ġastron": 11117, + "Ġastronaut": 18516, + "Ġastronauts": 28273, + "Ġastronom": 26302, + "Ġastronomers": 43151, + "Ġastronomical": 49035, + "Ġastronomy": 37844, + "Ġasylum": 31601, + "Ġasymm": 37277, + "Ġasympt": 35114, + "Ġasynchron": 42642, + "Ġasynchronous": 49174, + "ĠasÃŃ": 8582, + "Ġat": 412, + "Ġata": 48639, + "Ġatac": 41015, + "Ġataque": 46166, + "Ġatau": 22823, + "Ġate": 8468, + "Ġaten": 21723, + "Ġatención": 33488, + "Ġatenção": 39044, + "Ġathe": 27033, + "Ġatheist": 43977, + "Ġathlet": 7650, + "Ġathlete": 18002, + "Ġathletes": 13820, + "Ġathletic": 22496, + "Ġathletics": 37964, + "Ġatm": 22582, + "Ġatmos": 7722, + "Ġatmosphere": 8018, + "Ġatmospheric": 28854, + "Ġatom": 12018, + "Ġatomic": 22275, + "Ġatoms": 16871, + "Ġatra": 44192, + "Ġatrav": 33325, + "Ġatravés": 39941, + "Ġatroc": 43530, + "Ġatrás": 22906, + "Ġatt": 951, + "Ġattach": 5085, + "Ġattached": 8570, + "Ġattaches": 49404, + "Ġattaching": 39074, + "Ġattachment": 19431, + "Ġattachments": 37987, + "Ġattack": 2690, + "Ġattacked": 12692, + "Ġattacker": 35871, + "Ġattackers": 45129, + "Ġattacking": 15010, + "Ġattacks": 8122, + "Ġattain": 23766, + "Ġattained": 46633, + "Ġatte": 42783, + "Ġattempt": 5217, + "Ġattempted": 18997, + "Ġattempting": 22001, + "Ġattempts": 15257, + "Ġattend": 6888, + "Ġattendance": 24337, + "Ġattendant": 39339, + "Ġattended": 15990, + "Ġattendees": 34826, + "Ġattending": 15862, + "Ġattends": 49837, + "Ġattent": 30980, + "Ġattention": 3202, + "Ġattentive": 43661, + "Ġattic": 40766, + "Ġattitude": 10157, + "Ġattitudes": 25853, + "Ġattorney": 13469, + "Ġattorneys": 30019, + "Ġattract": 5049, + "Ġattracted": 15912, + "Ġattracting": 36594, + "Ġattraction": 17672, + "Ġattractions": 35005, + "Ġattractive": 12609, + "Ġattracts": 37026, + "Ġattrib": 9080, + "Ġattribute": 19667, + "Ġattributed": 30976, + "Ġattributes": 17212, + "Ġatual": 39241, + "Ġaté": 8784, + "Ġau": 1609, + "Ġauc": 23788, + "Ġauch": 2168, + "Ġauction": 24139, + "Ġaucun": 35361, + "Ġaucune": 40076, + "Ġaud": 2379, + "Ġaudi": 27435, + "Ġaudible": 41317, + "Ġaudience": 4034, + "Ġaudiences": 15479, + "Ġaudio": 6278, + "Ġaudiobook": 40031, + "Ġaudit": 17748, + "Ġaudition": 20015, + "Ġauditor": 33970, + "Ġauf": 2501, + "Ġaufge": 35031, + "Ġaug": 14501, + "Ġaugment": 29919, + "Ġaugmented": 36155, + "Ġaujourd": 14023, + "Ġaula": 41642, + "Ġaument": 17128, + "Ġaumentar": 43504, + "Ġaumento": 43600, + "Ġaun": 15879, + "Ġaunque": 21962, + "Ġaunt": 15654, + "Ġaur": 19145, + "Ġaura": 18355, + "Ġaurait": 29531, + "Ġaus": 3437, + "Ġausge": 31899, + "Ġauss": 5730, + "Ġaussi": 6212, + "Ġaust": 34916, + "Ġauster": 49867, + "Ġaut": 1476, + "Ġautant": 34081, + "Ġauth": 6979, + "Ġauthent": 9214, + "Ġauthentic": 12466, + "Ġauthentication": 26643, + "Ġauthenticity": 34215, + "Ġauthor": 3793, + "Ġauthoritarian": 37883, + "Ġauthorities": 12076, + "Ġauthority": 8281, + "Ġauthorization": 33697, + "Ġauthorized": 28312, + "Ġauthors": 16552, + "Ġautism": 21471, + "Ġautistic": 33272, + "Ġauto": 8399, + "Ġautobi": 45747, + "Ġautoc": 45833, + "Ġautograph": 36660, + "Ġautom": 3553, + "Ġautomat": 28034, + "Ġautomate": 31605, + "Ġautomated": 18473, + "Ġautomatic": 12509, + "Ġautomatically": 6772, + "Ġautomation": 17769, + "Ġautomobile": 38809, + "Ġautomotive": 32866, + "Ġautonom": 18203, + "Ġautonomous": 23797, + "Ġautonomy": 27278, + "Ġautop": 31090, + "Ġautor": 19510, + "Ġautour": 30249, + "Ġautre": 15081, + "Ġautres": 17093, + "Ġautumn": 24604, + "Ġaux": 7865, + "Ġauxiliary": 43741, + "ĠauÃŁer": 39428, + "Ġav": 1305, + "Ġavaient": 38703, + "Ġavail": 2327, + "Ġavailability": 17945, + "Ġavailable": 2435, + "Ġavait": 11853, + "Ġavant": 13439, + "Ġavanz": 42444, + "Ġavatar": 36205, + "Ġave": 3472, + "Ġavec": 4163, + "Ġaven": 18469, + "Ġavent": 36399, + "Ġavenue": 39230, + "Ġavenues": 43039, + "Ġaver": 18247, + "Ġaverage": 4274, + "Ġaverages": 42257, + "Ġaveraging": 47308, + "Ġavere": 37914, + "Ġavete": 48201, + "Ġavez": 11766, + "Ġaviation": 28831, + "Ġavis": 34588, + "Ġavo": 3641, + "Ġavocado": 27041, + "Ġavoid": 5042, + "Ġavoided": 24890, + "Ġavoiding": 20220, + "Ġavoir": 10853, + "Ġavons": 18990, + "Ġaw": 1714, + "Ġawait": 19670, + "Ġawaiting": 43759, + "Ġawaits": 45955, + "Ġawak": 13726, + "Ġawake": 15994, + "Ġawaken": 43566, + "Ġawakened": 46468, + "Ġawakening": 31550, + "Ġaward": 7130, + "Ġawarded": 19100, + "Ġawards": 15193, + "Ġaware": 3650, + "Ġawareness": 8888, + "Ġaway": 1314, + "Ġawe": 30912, + "Ġawesome": 3476, + "Ġawful": 11232, + "Ġawfully": 47976, + "Ġawhile": 22224, + "Ġawkward": 11411, + "Ġax": 6360, + "Ġaxe": 30195, + "Ġaxes": 35387, + "Ġaxial": 46851, + "Ġaxis": 10298, + "Ġaxle": 31192, + "Ġay": 7494, + "Ġaye": 19259, + "Ġaynı": 30281, + "Ġayr": 35767, + "Ġayud": 20333, + "Ġayuda": 30737, + "Ġayudar": 38759, + "Ġaz": 7883, + "Ġazt": 39566, + "Ġazul": 39580, + "Ġaç": 12930, + "Ġaçık": 33282, + "Ġaçıl": 43236, + "Ġañ": 37837, + "Ġañad": 44980, + "Ġaño": 15984, + "Ġaños": 11424, + "Ġaún": 31676, + "ĠaÃŃ": 7461, + "ĠaÄŁ": 21294, + "Ġaż": 48134, + "ĠaÅŁ": 21002, + "ĠaÅŁk": 36730, + "Ġb": 272, + "Ġba": 4773, + "Ġbab": 7564, + "Ġbaba": 31568, + "Ġbabe": 24655, + "Ġbabies": 10917, + "Ġbaby": 3186, + "Ġbabys": 39764, + "Ġbac": 6857, + "Ġbachelor": 25947, + "Ġback": 646, + "Ġbackbone": 34889, + "Ġbackdrop": 32697, + "Ġbacked": 20391, + "Ġbackend": 38087, + "Ġbackground": 3678, + "Ġbackgrounds": 17336, + "Ġbacking": 19373, + "Ġbackl": 32449, + "Ġbacklash": 37572, + "Ġbacklog": 47364, + "Ġbackpack": 17969, + "Ġbacks": 19513, + "Ġbackside": 35370, + "Ġbackstage": 31764, + "Ġbackstory": 36899, + "Ġbackup": 14807, + "Ġbackups": 50160, + "Ġbackward": 23897, + "Ġbackwards": 12204, + "Ġbackyard": 20036, + "Ġbacon": 16400, + "Ġbacter": 9755, + "Ġbacteria": 11763, + "Ġbacterial": 35632, + "Ġbad": 1578, + "Ġbadass": 33907, + "Ġbadge": 25797, + "Ġbadges": 43894, + "Ġbadly": 13425, + "Ġbag": 3411, + "Ġbaggage": 41567, + "Ġbags": 10405, + "Ġbagus": 48348, + "Ġbah": 12913, + "Ġbaht": 49254, + "Ġbaik": 34867, + "Ġbail": 19313, + "Ġbait": 16865, + "Ġbaix": 40447, + "Ġbaixo": 30934, + "Ġbaj": 23589, + "Ġbaja": 49427, + "Ġbajo": 30139, + "Ġbak": 5657, + "Ġbakalım": 28812, + "Ġbakayım": 42918, + "Ġbake": 16562, + "Ġbaked": 19453, + "Ġbaker": 48148, + "Ġbakery": 37519, + "Ġbaking": 12102, + "Ġbakın": 43307, + "Ġbal": 3119, + "Ġbalance": 4772, + "Ġbalanced": 13902, + "Ġbalances": 33993, + "Ġbalancing": 22495, + "Ġbalcon": 26450, + "Ġbalcony": 29468, + "Ġbald": 21096, + "Ġball": 2594, + "Ġballet": 30512, + "Ġballistic": 44478, + "Ġballoon": 16994, + "Ġballoons": 26193, + "Ġballot": 21880, + "Ġballots": 36410, + "Ġballs": 9803, + "Ġbalm": 42532, + "Ġbam": 18132, + "Ġbamboo": 26156, + "Ġban": 5643, + "Ġbana": 16832, + "Ġbanana": 14194, + "Ġbananas": 22742, + "Ġbanc": 39612, + "Ġbanco": 45498, + "Ġband": 4116, + "Ġbanda": 38727, + "Ġbande": 46836, + "Ġbandits": 49043, + "Ġbands": 13543, + "Ġbandwidth": 23647, + "Ġbang": 8550, + "Ġbanget": 24909, + "Ġbanging": 36982, + "Ġbangs": 32802, + "Ġbank": 3765, + "Ġbanker": 48008, + "Ġbanking": 18261, + "Ġbankrupt": 21780, + "Ġbankruptcy": 33457, + "Ġbanks": 10237, + "Ġbanned": 19564, + "Ġbanner": 24348, + "Ġbanquet": 49796, + "Ġbanyak": 25808, + "Ġbao": 45296, + "Ġbapt": 18222, + "Ġbaptism": 34352, + "Ġbaptized": 34006, + "Ġbar": 2159, + "Ġbara": 19519, + "Ġbarbar": 35822, + "Ġbarbecue": 21877, + "Ġbarber": 49906, + "Ġbard": 7685, + "Ġbardziej": 27209, + "Ġbardzo": 9034, + "Ġbare": 6949, + "Ġbarely": 10268, + "Ġbarg": 22351, + "Ġbargain": 34302, + "Ġbargaining": 42108, + "Ġbark": 16202, + "Ġbarking": 32995, + "Ġbarley": 47761, + "Ġbarn": 18492, + "Ġbarr": 38236, + "Ġbarre": 43834, + "Ġbarrel": 13257, + "Ġbarrels": 33138, + "Ġbarrier": 13357, + "Ġbarriers": 13565, + "Ġbars": 10228, + "Ġbart": 44768, + "Ġbaru": 36171, + "Ġbas": 987, + "Ġbase": 3096, + "Ġbaseball": 14323, + "Ġbased": 2361, + "Ġbaseline": 20518, + "Ġbasement": 16893, + "Ġbases": 17949, + "Ġbash": 46183, + "Ġbasic": 3875, + "Ġbasically": 1936, + "Ġbasics": 14688, + "Ġbasil": 29862, + "Ġbasin": 34863, + "Ġbasis": 5143, + "Ġbask": 34055, + "Ġbasket": 8390, + "Ġbasketball": 11767, + "Ġbaskets": 42853, + "Ġbass": 10136, + "Ġbast": 8414, + "Ġbasta": 45282, + "Ġbastante": 14651, + "Ġbastard": 23569, + "Ġbastards": 49346, + "Ġbat": 7362, + "Ġbatch": 15245, + "Ġbate": 37936, + "Ġbater": 25735, + "Ġbath": 6079, + "Ġbathing": 38948, + "Ġbathroom": 8687, + "Ġbathrooms": 39537, + "Ġbatht": 40708, + "Ġbathtub": 42901, + "Ġbats": 26943, + "Ġbatt": 9591, + "Ġbatter": 4220, + "Ġbatteries": 13070, + "Ġbattery": 5809, + "Ġbattle": 4635, + "Ġbattlefield": 21818, + "Ġbattles": 14648, + "Ġbattling": 33752, + "Ġbauen": 43787, + "Ġbaw": 40463, + "Ġbay": 13642, + "Ġbaz": 27147, + "ĠbaÄŁ": 33071, + "ĠbaÅŁ": 8694, + "ĠbaÅŁka": 27883, + "Ġbe": 312, + "Ġbeach": 7534, + "Ġbeaches": 27560, + "Ġbeacon": 41669, + "Ġbead": 24117, + "Ġbeads": 20369, + "Ġbeak": 48663, + "Ġbeam": 14269, + "Ġbeams": 31040, + "Ġbean": 16230, + "Ġbeans": 12010, + "Ġbear": 6155, + "Ġbeard": 17455, + "Ġbearing": 17350, + "Ġbearings": 36297, + "Ġbears": 17276, + "Ġbeast": 13464, + "Ġbeasts": 37386, + "Ġbeat": 4224, + "Ġbeaten": 17909, + "Ġbeating": 13497, + "Ġbeats": 16447, + "Ġbeau": 29891, + "Ġbeaucoup": 8796, + "Ġbeaut": 1869, + "Ġbeautiful": 2238, + "Ġbeautifully": 16525, + "Ġbeauty": 6643, + "Ġbeb": 35348, + "Ġbeber": 40069, + "Ġbecame": 3062, + "Ġbecause": 570, + "Ġbecom": 2683, + "Ġbecome": 1813, + "Ġbecomes": 3643, + "Ġbecoming": 5617, + "Ġbed": 2901, + "Ġbede": 22466, + "Ġbedeutet": 27018, + "Ġbedroom": 11211, + "Ġbedrooms": 39955, + "Ġbeds": 18068, + "Ġbedtime": 45850, + "Ġbee": 17479, + "Ġbeef": 9256, + "Ġbeen": 668, + "Ġbeep": 28678, + "Ġbeeping": 34800, + "Ġbeeps": 27722, + "Ġbeer": 8795, + "Ġbeers": 34159, + "Ġbees": 17511, + "Ġbeet": 16658, + "Ġbeetje": 27459, + "Ġbeetle": 49735, + "Ġbef": 21312, + "Ġbefore": 949, + "Ġbeforehand": 22893, + "Ġbeg": 4612, + "Ġbegan": 4283, + "Ġbege": 41832, + "Ġbegg": 44914, + "Ġbegged": 47653, + "Ġbegging": 26600, + "Ġbegin": 1841, + "Ġbeginnen": 40326, + "Ġbeginner": 22080, + "Ġbeginners": 26992, + "Ġbeginning": 2863, + "Ġbeginnings": 37281, + "Ġbegins": 7338, + "Ġbegitu": 49707, + "Ġbegr": 38972, + "Ġbegun": 16009, + "Ġbeh": 1540, + "Ġbehalf": 9490, + "Ġbehand": 43122, + "Ġbehav": 3851, + "Ġbehave": 15158, + "Ġbehaved": 48249, + "Ġbehaves": 36896, + "Ġbehavi": 15475, + "Ġbehaving": 35263, + "Ġbehavior": 5223, + "Ġbehavioral": 19124, + "Ġbehaviors": 15501, + "Ġbehaviour": 17229, + "Ġbehind": 2261, + "Ġbehold": 27234, + "Ġbehö": 26187, + "Ġbehöver": 32138, + "Ġbei": 4643, + "Ġbeide": 35831, + "Ġbeiden": 23446, + "Ġbeige": 40274, + "Ġbeim": 13922, + "Ġbeing": 885, + "Ġbeings": 8958, + "Ġbeispiel": 37155, + "Ġbeispielsweise": 40152, + "Ġbek": 9393, + "Ġbekannt": 39167, + "Ġbekommen": 19256, + "Ġbekommt": 33429, + "Ġbel": 989, + "Ġbelang": 33746, + "Ġbelangrijk": 42330, + "Ġbele": 29620, + "Ġbeleza": 46429, + "Ġbelie": 1351, + "Ġbelief": 7107, + "Ġbeliefs": 13585, + "Ġbelieve": 1697, + "Ġbelieved": 7847, + "Ġbeliever": 23892, + "Ġbelievers": 23125, + "Ġbelieves": 12307, + "Ġbelieving": 16594, + "Ġbelki": 44596, + "Ġbell": 4549, + "Ġbelle": 28770, + "Ġbelli": 48006, + "Ġbells": 25474, + "Ġbelly": 11696, + "Ġbelo": 13878, + "Ġbelong": 5784, + "Ġbelonged": 28611, + "Ġbelonging": 22957, + "Ġbelongings": 43554, + "Ġbelongs": 12953, + "Ġbeloved": 14553, + "Ġbelow": 2507, + "Ġbelt": 10750, + "Ġbelts": 33689, + "Ġbelum": 48532, + "Ġbem": 7577, + "Ġben": 3271, + "Ġbench": 10638, + "Ġbenchmark": 18927, + "Ġbenchmarks": 43751, + "Ġbend": 11229, + "Ġbending": 22487, + "Ġbends": 42990, + "Ġbene": 2537, + "Ġbeneath": 17149, + "Ġbenef": 3070, + "Ġbenefic": 10304, + "Ġbenefici": 38534, + "Ġbeneficial": 14072, + "Ġbeneficiaries": 49937, + "Ġbenefit": 5121, + "Ġbenefited": 33605, + "Ġbenefiting": 47515, + "Ġbenefits": 5311, + "Ġbenevol": 48567, + "Ġbeni": 19723, + "Ġbenim": 13818, + "Ġbent": 14075, + "Ġbenut": 38424, + "Ġbenz": 44335, + "Ġber": 5948, + "Ġberaber": 39855, + "Ġbere": 13375, + "Ġbereit": 38758, + "Ġbereits": 23703, + "Ġberm": 50001, + "Ġberries": 29898, + "Ġberry": 44955, + "Ġbers": 32147, + "Ġbert": 50098, + "Ġbes": 4097, + "Ġbesar": 48327, + "Ġbesch": 17498, + "Ġbeschäft": 38768, + "Ġbeside": 15726, + "Ġbesides": 11868, + "Ġbesl": 47118, + "Ġbesoin": 19207, + "Ġbesond": 20114, + "Ġbesonders": 25258, + "Ġbess": 42410, + "Ġbesser": 18021, + "Ġbest": 1151, + "Ġbeste": 22245, + "Ġbesteht": 43680, + "Ġbesten": 30930, + "Ġbestimm": 35180, + "Ġbestimmt": 46871, + "Ġbet": 778, + "Ġbeta": 9861, + "Ġbeter": 45425, + "Ġbetray": 15560, + "Ġbetrayal": 42700, + "Ġbetrayed": 29515, + "Ġbets": 39922, + "Ġbetter": 1101, + "Ġbetting": 34246, + "Ġbetween": 1296, + "Ġbever": 46524, + "Ġbeverage": 35519, + "Ġbeverages": 47401, + "Ġbevor": 37591, + "Ġbew": 17897, + "Ġbewe": 46638, + "Ġbewusst": 46221, + "Ġbey": 39977, + "Ġbeyond": 4399, + "Ġbez": 10782, + "Ġbezel": 37179, + "Ġbezpie": 47153, + "ĠbeÄŁ": 44863, + "ĠbeÅŁ": 39213, + "Ġbh": 41221, + "Ġbi": 3228, + "Ġbias": 12577, + "Ġbiased": 28035, + "Ġbiases": 32152, + "Ġbib": 24557, + "Ġbible": 34956, + "Ġbibli": 34344, + "Ġbiblical": 26083, + "Ġbic": 34472, + "Ġbicy": 16703, + "Ġbicycle": 20888, + "Ġbicycles": 47913, + "Ġbid": 12957, + "Ġbidding": 39702, + "Ġbien": 3610, + "Ġbientôt": 34653, + "Ġbig": 955, + "Ġbigger": 3801, + "Ġbiggest": 3880, + "Ġbij": 10317, + "Ġbijvoorbeeld": 43061, + "Ġbik": 26730, + "Ġbike": 5656, + "Ġbikes": 16035, + "Ġbiking": 40276, + "Ġbil": 8588, + "Ġbilang": 46712, + "Ġbilateral": 38772, + "Ġbild": 22105, + "Ġbile": 18729, + "Ġbili": 20709, + "Ġbilingual": 48757, + "Ġbiliyor": 35424, + "Ġbill": 2961, + "Ġbilling": 35618, + "Ġbillion": 5218, + "Ġbillionaire": 42358, + "Ġbillions": 17375, + "Ġbills": 12433, + "Ġbilmiyorum": 48699, + "Ġbin": 5171, + "Ġbinary": 17434, + "Ġbind": 14786, + "Ġbinder": 45630, + "Ġbinding": 17359, + "Ġbinds": 41515, + "Ġbinge": 41487, + "Ġbinnen": 35958, + "Ġbins": 41275, + "Ġbio": 12198, + "Ġbiod": 26977, + "Ġbiodiversity": 36453, + "Ġbiography": 37062, + "Ġbiological": 13910, + "Ġbiology": 14956, + "Ġbiom": 27450, + "Ġbiomass": 47420, + "Ġbiomedical": 49775, + "Ġbios": 36997, + "Ġbip": 19016, + "Ġbipart": 28741, + "Ġbipartisan": 31954, + "Ġbipolar": 42469, + "Ġbir": 1904, + "Ġbiraz": 19696, + "Ġbird": 5255, + "Ġbirds": 9009, + "Ġbiri": 38530, + "Ġbirl": 37476, + "Ġbirlikte": 44642, + "Ġbirth": 3965, + "Ġbirthday": 6154, + "Ġbirthdays": 48739, + "Ġbis": 7393, + "Ġbisa": 14386, + "Ġbisc": 23261, + "Ġbiscuit": 39327, + "Ġbiscuits": 36301, + "Ġbisexual": 42570, + "Ġbisher": 33598, + "Ġbishop": 34470, + "Ġbisog": 40505, + "Ġbiss": 10627, + "Ġbisschen": 10763, + "Ġbist": 18209, + "Ġbit": 857, + "Ġbitch": 11960, + "Ġbitches": 42094, + "Ġbitcoin": 24973, + "Ġbite": 7988, + "Ġbites": 26030, + "Ġbiting": 32912, + "Ġbits": 9239, + "Ġbitte": 23231, + "Ġbitten": 34608, + "Ġbitter": 13871, + "Ġbitterness": 44224, + "Ġbiz": 7390, + "Ġbizarre": 18265, + "Ġbize": 28825, + "Ġbizi": 36033, + "Ġbizim": 23439, + "Ġbiết": 28432, + "Ġbl": 888, + "Ġbla": 16379, + "Ġblack": 2211, + "Ġblacks": 30720, + "Ġbladder": 37032, + "Ġblade": 10959, + "Ġblades": 20066, + "Ġblah": 12288, + "Ġblame": 10127, + "Ġblamed": 32027, + "Ġblaming": 32364, + "Ġblanc": 34437, + "Ġbland": 29849, + "Ġblank": 8247, + "Ġblanket": 17907, + "Ġblankets": 38710, + "Ġblas": 46409, + "Ġblast": 12035, + "Ġblasting": 47134, + "Ġblat": 42780, + "Ġble": 5408, + "Ġbleach": 39631, + "Ġbleed": 28385, + "Ġbleeding": 19312, + "Ġbleiben": 24912, + "Ġbleibt": 24814, + "Ġblend": 10628, + "Ġblended": 27048, + "Ġblender": 24564, + "Ġblending": 23124, + "Ġblends": 37619, + "Ġbless": 5227, + "Ġblessed": 12351, + "Ġblessing": 13869, + "Ġblessings": 19296, + "Ġblev": 37332, + "Ġblew": 19075, + "Ġbli": 27182, + "Ġblij": 26486, + "Ġblind": 6865, + "Ġblindfold": 44846, + "Ġblindly": 47744, + "Ġblindness": 46101, + "Ġblink": 24667, + "Ġblinking": 45879, + "Ġblir": 19504, + "Ġbliss": 31522, + "Ġbliver": 45329, + "Ġblo": 1749, + "Ġblob": 46115, + "Ġblock": 3461, + "Ġblockchain": 17176, + "Ġblocked": 15470, + "Ġblocking": 17776, + "Ġblocks": 8474, + "Ġblog": 6968, + "Ġblogs": 31038, + "Ġblond": 48537, + "Ġblonde": 30043, + "Ġblood": 3390, + "Ġbloody": 18938, + "Ġbloom": 26899, + "Ġblooming": 45294, + "Ġbloque": 41592, + "Ġbloss": 22956, + "Ġblossom": 38524, + "Ġblossoms": 47789, + "Ġblow": 6327, + "Ġblowing": 15068, + "Ġblown": 16479, + "Ġblows": 18458, + "Ġblue": 3344, + "Ġblueberries": 43722, + "Ġblueberry": 48243, + "Ġblueprint": 35868, + "Ġblues": 24244, + "Ġbluetooth": 48225, + "Ġbluff": 44191, + "Ġblunt": 32246, + "Ġblur": 14257, + "Ġblurred": 43525, + "Ġblurry": 37644, + "Ġblush": 25218, + "Ġbo": 748, + "Ġboa": 22422, + "Ġboard": 3150, + "Ġboarding": 30528, + "Ġboards": 13293, + "Ġboast": 46988, + "Ġboat": 6582, + "Ġboats": 17772, + "Ġbob": 27292, + "Ġboca": 34624, + "Ġbod": 16737, + "Ġbodies": 7510, + "Ġbodily": 39576, + "Ġbody": 1772, + "Ġbog": 26132, + "Ġboil": 13329, + "Ġboiled": 21058, + "Ġboiler": 39228, + "Ġboiling": 16208, + "Ġboils": 35049, + "Ġbois": 44808, + "Ġbok": 41882, + "Ġbol": 8986, + "Ġbola": 41110, + "Ġbolag": 48452, + "Ġbold": 11928, + "Ġboleh": 25835, + "Ġbolt": 13436, + "Ġbolts": 18127, + "Ġbom": 7957, + "Ġbomb": 7851, + "Ġbombard": 42894, + "Ġbomber": 44889, + "Ġbombers": 50055, + "Ġbombing": 31292, + "Ġbombs": 19043, + "Ġbon": 4428, + "Ġbona": 49012, + "Ġbond": 6086, + "Ġbonded": 41194, + "Ġbonding": 28824, + "Ġbonds": 14713, + "Ġbone": 9026, + "Ġbones": 10491, + "Ġbonito": 31209, + "Ġbonne": 20577, + "Ġbons": 33922, + "Ġbonus": 10882, + "Ġbonuses": 33205, + "Ġboo": 23113, + "Ġboobs": 40439, + "Ġbook": 1446, + "Ġbooked": 26735, + "Ġbooking": 34424, + "Ġbooklet": 48469, + "Ġbooks": 3642, + "Ġbookstore": 43478, + "Ġboom": 9351, + "Ġbooming": 45883, + "Ġboost": 9194, + "Ġbooster": 29275, + "Ġboosting": 43117, + "Ġboot": 11450, + "Ġbooth": 20912, + "Ġboots": 15194, + "Ġbooty": 34793, + "Ġbor": 14828, + "Ġbord": 25872, + "Ġborder": 7838, + "Ġborders": 16287, + "Ġbore": 26002, + "Ġbored": 13521, + "Ġboring": 9989, + "Ġborn": 4232, + "Ġborrow": 11172, + "Ġborrowed": 26805, + "Ġborrowing": 35024, + "Ġbos": 30641, + "Ġboss": 5741, + "Ġbosses": 24201, + "Ġbot": 10592, + "Ġboth": 1293, + "Ġbother": 8677, + "Ġbothered": 22996, + "Ġbothering": 31432, + "Ġbothers": 33980, + "Ġbots": 35410, + "Ġbott": 2274, + "Ġbottle": 7817, + "Ġbottlene": 44641, + "Ġbottles": 15923, + "Ġbottom": 2767, + "Ġbottoms": 43413, + "Ġbou": 15345, + "Ġboug": 46553, + "Ġbought": 4243, + "Ġboun": 15521, + "Ġbounce": 15894, + "Ġbounced": 46482, + "Ġbounces": 46901, + "Ġbouncing": 27380, + "Ġbouncy": 49704, + "Ġbound": 5472, + "Ġboundaries": 13180, + "Ġboundary": 12866, + "Ġbounded": 37498, + "Ġbounds": 29905, + "Ġbounty": 40773, + "Ġbour": 32373, + "Ġbout": 15738, + "Ġbow": 4503, + "Ġbowel": 40094, + "Ġbowl": 6571, + "Ġbowling": 35537, + "Ġbowls": 28513, + "Ġbows": 43158, + "Ġbox": 2424, + "Ġboxer": 47252, + "Ġboxes": 9002, + "Ġboxing": 24424, + "Ġboy": 3237, + "Ġboyfriend": 11457, + "Ġboys": 6347, + "Ġboî": 50127, + "ĠboÅŁ": 37636, + "Ġbr": 738, + "Ġbra": 1548, + "Ġbrac": 17848, + "Ġbrace": 38458, + "Ġbracelet": 23021, + "Ġbracelets": 48795, + "Ġbraces": 41537, + "Ġbrack": 12305, + "Ġbracket": 16904, + "Ġbrackets": 26179, + "Ġbrag": 41995, + "Ġbraid": 33109, + "Ġbrain": 3567, + "Ġbrains": 15442, + "Ġbrainstorm": 35245, + "Ġbrake": 13997, + "Ġbrakes": 19950, + "Ġbraking": 32140, + "Ġbran": 12029, + "Ġbranch": 9819, + "Ġbranches": 14770, + "Ġbrand": 3360, + "Ġbranded": 38510, + "Ġbranding": 27279, + "Ġbrands": 11324, + "Ġbras": 19993, + "Ġbrasile": 28435, + "Ġbrass": 26257, + "Ġbrat": 47869, + "Ġbrauch": 45522, + "Ġbrauchen": 19543, + "Ġbraucht": 22623, + "Ġbrave": 12653, + "Ġbravery": 43271, + "Ġbre": 1403, + "Ġbreach": 31086, + "Ġbread": 5961, + "Ġbreadth": 35862, + "Ġbreak": 1821, + "Ġbreakdown": 18188, + "Ġbreaker": 35375, + "Ġbreakfast": 8201, + "Ġbreaking": 7697, + "Ġbreakout": 30067, + "Ġbreaks": 9857, + "Ġbreakthrough": 22397, + "Ġbreakup": 38492, + "Ġbreast": 9934, + "Ġbreasts": 34331, + "Ġbreat": 3656, + "Ġbreath": 6045, + "Ġbreathe": 10192, + "Ġbreathing": 9570, + "Ġbreaths": 33769, + "Ġbreathtaking": 48393, + "Ġbred": 34133, + "Ġbree": 20082, + "Ġbreed": 18971, + "Ġbreeding": 26051, + "Ġbreeds": 41609, + "Ġbreeze": 24532, + "Ġbrethren": 47854, + "Ġbreve": 48517, + "Ġbrew": 34619, + "Ġbrewer": 39440, + "Ġbrewing": 39019, + "Ġbri": 33713, + "Ġbrick": 16725, + "Ġbricks": 25497, + "Ġbrid": 16362, + "Ġbride": 22292, + "Ġbridge": 7283, + "Ġbridges": 21114, + "Ġbrief": 5353, + "Ġbriefing": 28878, + "Ġbriefly": 10515, + "Ġbrig": 30743, + "Ġbrigade": 47501, + "Ġbright": 4730, + "Ġbrighten": 49007, + "Ġbrighter": 19764, + "Ġbrightest": 36271, + "Ġbrightly": 47418, + "Ġbrightness": 21367, + "Ġbrill": 8695, + "Ġbrilliant": 10248, + "Ġbrinc": 46545, + "Ġbring": 1565, + "Ġbringen": 27519, + "Ġbringing": 5062, + "Ġbrings": 5607, + "Ġbringt": 36008, + "Ġbrit": 38389, + "Ġbrittle": 49325, + "Ġbro": 2006, + "Ġbroad": 4152, + "Ġbroadband": 37718, + "Ġbroadcast": 9975, + "Ġbroadcasting": 30024, + "Ġbroaden": 47045, + "Ġbroader": 13227, + "Ġbroadly": 19511, + "Ġbroccoli": 29044, + "Ġbroch": 48147, + "Ġbroke": 6902, + "Ġbroken": 5463, + "Ġbroker": 26502, + "Ġbrokers": 47549, + "Ġbrom": 50134, + "Ġbron": 16586, + "Ġbronze": 25454, + "Ġbroom": 41544, + "Ġbroth": 18872, + "Ġbrother": 3708, + "Ġbrothers": 8452, + "Ġbrought": 3038, + "Ġbrow": 19299, + "Ġbrown": 6292, + "Ġbrows": 8333, + "Ġbrowse": 31442, + "Ġbrowser": 11185, + "Ġbrowsers": 36069, + "Ġbrowsing": 38602, + "Ġbru": 25267, + "Ġbruk": 48316, + "Ġbrunch": 49761, + "Ġbrush": 5287, + "Ġbrushed": 40694, + "Ġbrushes": 23260, + "Ġbrushing": 33130, + "Ġbrut": 12603, + "Ġbrutal": 17878, + "Ġbrutality": 41745, + "Ġbrutally": 48476, + "Ġbrute": 47909, + "Ġbu": 758, + "Ġbuat": 22186, + "Ġbubb": 13045, + "Ġbubble": 12212, + "Ġbubbles": 16295, + "Ġbubbling": 46360, + "Ġbuck": 14894, + "Ġbucket": 13058, + "Ġbuckets": 32191, + "Ġbuckle": 37686, + "Ġbucks": 11829, + "Ġbud": 3265, + "Ġbuddies": 30649, + "Ġbuddy": 10340, + "Ġbudget": 4706, + "Ġbudgeting": 47855, + "Ġbudgets": 26708, + "Ġbuds": 33916, + "Ġbuen": 30037, + "Ġbuena": 25710, + "Ġbuenas": 43852, + "Ġbueno": 11974, + "Ġbuenos": 49617, + "Ġbuff": 9204, + "Ġbuffalo": 39681, + "Ġbuffer": 21762, + "Ġbuffet": 42904, + "Ġbuffs": 50164, + "Ġbug": 7426, + "Ġbugs": 15120, + "Ġbugün": 37141, + "Ġbuild": 1322, + "Ġbuilder": 27377, + "Ġbuilders": 36281, + "Ġbuilding": 2390, + "Ġbuildings": 7446, + "Ġbuilds": 15182, + "Ġbuilt": 3094, + "Ġbukan": 31794, + "Ġbul": 6493, + "Ġbulb": 21122, + "Ġbulbs": 32871, + "Ġbuld": 37134, + "Ġbulk": 16139, + "Ġbulky": 42986, + "Ġbull": 4693, + "Ġbullet": 11632, + "Ġbullets": 20132, + "Ġbullied": 33603, + "Ġbullish": 38692, + "Ġbullshit": 22676, + "Ġbully": 29123, + "Ġbullying": 25633, + "Ġbulun": 48419, + "Ġbum": 13309, + "Ġbump": 9961, + "Ġbumped": 42696, + "Ġbumper": 23992, + "Ġbumps": 27719, + "Ġbumpy": 49400, + "Ġbun": 6702, + "Ġbuna": 44257, + "Ġbunch": 3840, + "Ġbund": 13882, + "Ġbundle": 24438, + "Ġbung": 50045, + "Ġbunk": 25125, + "Ġbunker": 39579, + "Ġbunlar": 37921, + "Ġbunları": 45695, + "Ġbunny": 28588, + "Ġbuns": 33452, + "Ġbunu": 18155, + "Ġbunun": 31697, + "Ġbuoy": 42841, + "Ġbur": 2779, + "Ġburada": 19167, + "Ġburadan": 49443, + "Ġburaya": 33548, + "Ġburden": 12578, + "Ġburdens": 37882, + "Ġbure": 23425, + "Ġbureau": 35343, + "Ġbureauc": 26360, + "Ġbureaucracy": 44671, + "Ġburg": 41000, + "Ġburger": 16393, + "Ġburgers": 28403, + "Ġburial": 35751, + "Ġburied": 14101, + "Ġburn": 5064, + "Ġburned": 13490, + "Ġburner": 36116, + "Ġburning": 9488, + "Ġburnout": 44841, + "Ġburns": 22684, + "Ġburnt": 18901, + "Ġburst": 12712, + "Ġbursting": 45713, + "Ġbursts": 41663, + "Ġbury": 28919, + "Ġbus": 1255, + "Ġbusca": 37492, + "Ġbuscando": 46804, + "Ġbuscar": 26170, + "Ġbuses": 20519, + "Ġbush": 19910, + "Ġbushes": 34303, + "Ġbusiness": 1606, + "Ġbusinesses": 6011, + "Ġbusinessman": 35317, + "Ġbust": 19432, + "Ġbusted": 41074, + "Ġbusy": 5856, + "Ġbut": 457, + "Ġbutcher": 41579, + "Ġbutt": 6660, + "Ġbutter": 5517, + "Ġbutterflies": 31987, + "Ġbutterfly": 22140, + "Ġbutton": 2960, + "Ġbuttons": 9905, + "Ġbutts": 46789, + "Ġbuy": 2256, + "Ġbuyer": 24645, + "Ġbuyers": 23465, + "Ġbuying": 6382, + "Ġbuys": 28153, + "Ġbuzz": 13036, + "Ġbuzzing": 29659, + "Ġby": 538, + "Ġbye": 6543, + "Ġbypass": 24996, + "Ġbyte": 40846, + "Ġbytes": 36088, + "ĠbyÄĩ": 15069, + "ĠbyÅĤ": 16673, + "ĠbyÅĤa": 23936, + "ĠbyÅĤo": 14811, + "ĠbyÅĤy": 26366, + "Ġbzw": 39998, + "Ġbás": 25545, + "Ġbásicamente": 48282, + "Ġbättre": 44842, + "ĠbÃ¥": 32758, + "ĠbÃ¥de": 39845, + "Ġbé": 15807, + "Ġbén": 41249, + "Ġbên": 43730, + "Ġbö": 41715, + "Ġböl": 36413, + "Ġbör": 21175, + "Ġbörjar": 49534, + "Ġböyle": 11018, + "Ġbütün": 27977, + "Ġbüy": 19445, + "Ġbüyük": 24059, + "Ġbı": 19902, + "Ġbırak": 24179, + "ĠbÄĻd": 8218, + "ĠbÄĻdzie": 10562, + "ĠbÄĻdziemy": 31966, + "ĠbÄĻdÄħ": 26239, + "ĠbÄĻdÄĻ": 39240, + "Ġbạn": 14647, + "Ġbá»ĭ": 32113, + "Ġc": 269, + "Ġca": 1335, + "Ġcab": 5487, + "Ġcabbage": 22944, + "Ġcabe": 18893, + "Ġcabeza": 34615, + "Ġcabeça": 33056, + "Ġcabin": 9401, + "Ġcabinet": 15188, + "Ġcabinets": 37427, + "Ġcable": 8220, + "Ġcables": 17555, + "Ġcabo": 41335, + "Ġcach": 32773, + "Ġcache": 19459, + "Ġcactus": 44287, + "Ġcad": 12209, + "Ġcada": 8411, + "Ġcade": 37571, + "Ġcadence": 46109, + "Ġcadre": 39546, + "Ġcaf": 15246, + "Ġcafe": 17773, + "Ġcafes": 48851, + "Ġcafeter": 38719, + "Ġcafeteria": 42230, + "Ġcaffe": 29118, + "Ġcaffeine": 31261, + "Ġcafé": 25118, + "Ġcage": 17302, + "Ġcages": 45888, + "Ġcai": 46523, + "Ġcake": 5908, + "Ġcakes": 19932, + "Ġcal": 2104, + "Ġcalam": 43936, + "Ġcalcium": 20918, + "Ġcalcul": 4322, + "Ġcalculate": 8873, + "Ġcalculated": 15598, + "Ġcalculating": 28258, + "Ġcalculation": 17108, + "Ġcalculations": 20448, + "Ġcalculator": 24993, + "Ġcalculus": 33400, + "Ġcalend": 37022, + "Ġcalendar": 12183, + "Ġcalf": 31893, + "Ġcalib": 21583, + "Ġcaliber": 41946, + "Ġcalibration": 38732, + "Ġcalidad": 42955, + "Ġcall": 818, + "Ġcalle": 45092, + "Ġcalled": 1219, + "Ġcaller": 48324, + "Ġcalling": 5141, + "Ġcalls": 5498, + "Ġcalm": 7151, + "Ġcalming": 39723, + "Ġcalmly": 39740, + "Ġcalor": 31575, + "Ġcalorie": 35004, + "Ġcalories": 14904, + "Ġcalves": 43755, + "Ġcam": 1945, + "Ġcama": 50197, + "Ġcamar": 43764, + "Ġcamb": 18751, + "Ġcambi": 19569, + "Ġcambiar": 37738, + "Ġcambio": 28731, + "Ġcame": 1361, + "Ġcamel": 37755, + "Ġcamer": 38946, + "Ġcamera": 2799, + "Ġcameraman": 46858, + "Ġcameras": 8622, + "Ġcaminho": 37215, + "Ġcamino": 34124, + "Ġcamoufl": 39491, + "Ġcamouflage": 47625, + "Ġcamp": 2255, + "Ġcampa": 37597, + "Ġcampaign": 5129, + "Ġcampaigns": 16840, + "Ġcampe": 48566, + "Ġcamper": 45936, + "Ġcamping": 19470, + "Ġcampo": 29691, + "Ġcamps": 16573, + "Ġcampus": 4828, + "Ġcampuses": 24233, + "Ġcan": 393, + "Ġcanal": 9911, + "Ġcancel": 10373, + "Ġcanceled": 24839, + "Ġcancell": 19114, + "Ġcancellation": 45867, + "Ġcancelled": 25103, + "Ġcancer": 5592, + "Ġcancers": 31063, + "Ġcanción": 41897, + "Ġcand": 3955, + "Ġcandid": 6268, + "Ġcandidate": 11532, + "Ġcandidates": 11255, + "Ġcandies": 43877, + "Ġcandle": 17968, + "Ġcandles": 23774, + "Ġcandy": 11237, + "Ġcane": 27518, + "Ġcann": 12361, + "Ġcannabis": 26066, + "Ġcanned": 36462, + "Ġcannon": 25938, + "Ġcannons": 47649, + "Ġcannot": 2644, + "Ġcanoe": 47650, + "Ġcanon": 21985, + "Ġcanonical": 46491, + "Ġcanopy": 38235, + "Ġcans": 21835, + "Ġcant": 11223, + "Ġcantidad": 33757, + "Ġcanvas": 16267, + "Ġcanvi": 47920, + "Ġcanyon": 45424, + "Ġcanım": 30535, + "Ġcap": 1410, + "Ġcapabilities": 10862, + "Ġcapability": 13759, + "Ġcapable": 8189, + "Ġcapac": 4637, + "Ġcapacidad": 43507, + "Ġcapacit": 38961, + "Ġcapacitance": 50241, + "Ġcapacities": 39396, + "Ġcapacitor": 29372, + "Ġcapacity": 6042, + "Ġcapaz": 35453, + "Ġcape": 30414, + "Ġcapit": 33807, + "Ġcapita": 39727, + "Ġcapital": 4238, + "Ġcapitalism": 19704, + "Ġcapitalist": 31354, + "Ġcapitalize": 48114, + "Ġcaps": 13855, + "Ġcapsule": 29247, + "Ġcapt": 3770, + "Ġcaptain": 14871, + "Ġcaption": 31974, + "Ġcaptions": 44832, + "Ġcaptiv": 40769, + "Ġcaptive": 41762, + "Ġcaptivity": 48607, + "Ġcapture": 7983, + "Ġcaptured": 11828, + "Ġcaptures": 27986, + "Ġcapturing": 23384, + "Ġcar": 1032, + "Ġcara": 10962, + "Ġcaracter": 28760, + "ĠcaracterÃŃst": 34297, + "ĠcaracterÃŃsticas": 47990, + "Ġcaramel": 22793, + "Ġcarb": 12143, + "Ġcarboh": 24429, + "Ġcarbohyd": 26328, + "Ġcarbohydrate": 47048, + "Ġcarbohydrates": 36817, + "Ġcarbon": 5954, + "Ġcarbono": 48491, + "Ġcarbs": 30801, + "Ġcard": 2920, + "Ġcardboard": 22248, + "Ġcardi": 37051, + "Ġcardiac": 32129, + "Ġcardio": 34274, + "Ġcardiovascular": 31786, + "Ġcards": 5632, + "Ġcare": 1127, + "Ġcared": 19779, + "Ġcareer": 3988, + "Ġcareers": 16409, + "Ġcareful": 5026, + "Ġcarefully": 7500, + "Ġcareg": 25087, + "Ġcaregiver": 44305, + "Ġcaregivers": 35440, + "Ġcareless": 46187, + "Ġcares": 12310, + "Ġcarga": 41964, + "Ġcargo": 19449, + "Ġcaric": 45732, + "Ġcaring": 15365, + "Ġcarn": 23796, + "Ġcarne": 30089, + "Ġcarp": 26103, + "Ġcarpet": 18119, + "Ġcarr": 15910, + "Ġcarre": 30919, + "Ġcarriage": 31811, + "Ġcarried": 9094, + "Ġcarrier": 17574, + "Ġcarriers": 28541, + "Ġcarries": 16402, + "Ġcarro": 23428, + "Ġcarrot": 22767, + "Ġcarrots": 21005, + "Ġcarry": 3985, + "Ġcarrying": 9792, + "Ġcars": 5163, + "Ġcart": 5467, + "Ġcarta": 41815, + "Ġcarte": 31483, + "Ġcartoon": 18569, + "Ġcartoons": 34855, + "Ġcartridge": 27753, + "Ġcartridges": 47036, + "Ġcarts": 48128, + "Ġcarve": 33832, + "Ġcarved": 28613, + "Ġcarving": 31872, + "Ġcas": 3058, + "Ġcasa": 9022, + "Ġcascade": 50080, + "Ġcase": 1389, + "Ġcases": 3331, + "Ġcash": 6388, + "Ġcasi": 22567, + "Ġcasing": 45109, + "Ġcasino": 36278, + "Ġcaso": 9666, + "Ġcasos": 25135, + "Ġcass": 21943, + "Ġcassette": 40514, + "Ġcast": 4193, + "Ġcaste": 39262, + "Ġcasting": 17301, + "Ġcastle": 14114, + "Ġcasts": 41921, + "Ġcasual": 13052, + "Ġcasually": 34872, + "Ġcasualties": 35628, + "Ġcat": 3857, + "Ġcatal": 13192, + "Ġcatalog": 19746, + "Ġcatalyst": 23868, + "Ġcatast": 19754, + "Ġcatastroph": 28363, + "Ġcatastrophe": 36043, + "Ġcatastrophic": 34915, + "Ġcatch": 3745, + "Ġcatches": 25496, + "Ġcatching": 16124, + "Ġcatchy": 47168, + "Ġcateg": 4847, + "Ġcategor": 19250, + "Ġcategories": 10479, + "Ġcategory": 7719, + "Ġcater": 21557, + "Ġcaterp": 44982, + "Ġcath": 17763, + "Ġcathedral": 45346, + "Ġcats": 11111, + "Ġcattle": 19992, + "Ġcau": 42951, + "Ġcaucus": 47950, + "Ġcaught": 5415, + "Ġcauliflower": 43125, + "Ġcaus": 3302, + "Ġcausa": 23667, + "Ġcausal": 38755, + "Ġcause": 3082, + "Ġcaused": 7008, + "Ġcauses": 7700, + "Ġcausing": 9853, + "Ġcaut": 21130, + "Ġcaution": 23585, + "Ġcautious": 25278, + "Ġcav": 13971, + "Ġcaval": 32805, + "Ġcavalry": 41010, + "Ġcave": 11730, + "Ġcaveat": 43012, + "Ġcaves": 32288, + "Ġcavity": 32425, + "Ġcay": 45776, + "ĠcaÅĤ": 35224, + "ĠcaÅĤe": 47631, + "ĠcaÅĤy": 35226, + "Ġce": 1769, + "Ġcease": 27887, + "Ġceased": 49917, + "Ġceiling": 13655, + "Ġcel": 9277, + "Ġcela": 15437, + "Ġcele": 43165, + "Ġcelebr": 3886, + "Ġcelebrate": 8098, + "Ġcelebrated": 19366, + "Ġcelebrates": 47182, + "Ġcelebrating": 15252, + "Ġcelebration": 14184, + "Ġcelebrations": 38504, + "Ġcelebrities": 23200, + "Ġcelebrity": 18597, + "Ġcelery": 37643, + "Ġcelestial": 41003, + "Ġcell": 2815, + "Ġcelle": 25722, + "Ġcellphone": 42524, + "Ġcells": 5438, + "Ġcellular": 29267, + "Ġcelui": 22829, + "Ġcelular": 32378, + "Ġcement": 19729, + "Ġcemetery": 31176, + "Ġcen": 27900, + "Ġcena": 41777, + "Ġcens": 19019, + "Ġcensorship": 40985, + "Ġcensus": 23725, + "Ġcent": 1489, + "Ġcenter": 3056, + "Ġcentered": 18988, + "Ġcenters": 10898, + "Ġcentigrade": 44731, + "Ġcentimet": 44755, + "Ġcentimeter": 31914, + "Ġcentimeters": 23300, + "Ġcentr": 32199, + "Ġcentral": 5777, + "Ġcentralized": 32395, + "Ġcentre": 10093, + "Ġcentres": 30096, + "Ġcentrif": 44828, + "Ġcentro": 24607, + "Ġcents": 14941, + "Ġcenturies": 13926, + "Ġcentury": 4901, + "Ġcep": 45026, + "Ġcer": 10146, + "Ġceram": 49678, + "Ġceramic": 29996, + "Ġcerc": 36099, + "Ġcerca": 26770, + "Ġcere": 11643, + "Ġcereal": 26199, + "Ġcerebral": 43561, + "Ġceremon": 25920, + "Ġceremonies": 36176, + "Ġceremony": 12813, + "Ġcert": 5351, + "Ġcerta": 44438, + "Ġcertain": 1629, + "Ġcertaines": 36993, + "Ġcertainly": 3297, + "Ġcertains": 25263, + "Ġcertainty": 27022, + "Ġcerteza": 30424, + "Ġcertific": 12378, + "Ġcertificate": 15953, + "Ġcertificates": 32941, + "Ġcertification": 21775, + "Ġcertified": 18580, + "Ġcerto": 22261, + "Ġcerv": 39543, + "Ġcerve": 33792, + "Ġcervical": 49883, + "Ġces": 7879, + "Ġcess": 47052, + "Ġcet": 8603, + "Ġcetera": 11458, + "Ġcette": 5550, + "Ġceux": 21314, + "Ġcev": 43266, + "Ġch": 417, + "Ġcha": 6294, + "Ġchacun": 42241, + "Ġchain": 5021, + "Ġchains": 12626, + "Ġchair": 6090, + "Ġchairman": 22770, + "Ġchairs": 18299, + "Ġchakra": 46068, + "Ġchalk": 28660, + "Ġchall": 2076, + "Ġchalleng": 3333, + "Ġchallenge": 3430, + "Ġchallenged": 17737, + "Ġchallenges": 4759, + "Ġchallenging": 7595, + "Ġcham": 8268, + "Ġchama": 40954, + "Ġchamado": 43475, + "Ġchamber": 13610, + "Ġchambers": 34513, + "Ġchamp": 5921, + "Ġchampagne": 33336, + "Ġchampion": 10971, + "Ġchampions": 11230, + "Ġchampionship": 19070, + "Ġchampionships": 41433, + "Ġchance": 2931, + "Ġchancellor": 49225, + "Ġchances": 10486, + "Ġchang": 1534, + "Ġchange": 1319, + "Ġchanged": 3105, + "Ġchanger": 22822, + "Ġchanges": 2962, + "Ġchanging": 4473, + "Ġchann": 2078, + "Ġchannel": 2269, + "Ġchannels": 9235, + "Ġchant": 28280, + "Ġchanting": 35775, + "Ġchaos": 14158, + "Ġchaotic": 27013, + "Ġchap": 13223, + "Ġchapel": 42617, + "Ġchapter": 7187, + "Ġchapters": 20013, + "Ġchaque": 18920, + "Ġchar": 1290, + "Ġcharac": 1926, + "Ġcharacter": 2517, + "Ġcharacteristic": 16282, + "Ġcharacteristics": 10891, + "Ġcharacterization": 49246, + "Ġcharacterize": 38463, + "Ġcharacterized": 29361, + "Ġcharacters": 4342, + "Ġcharcoal": 30625, + "Ġcharge": 4602, + "Ġcharged": 11109, + "Ġcharger": 22213, + "Ġcharges": 12235, + "Ġcharging": 11379, + "Ġcharisma": 45969, + "Ġcharismatic": 41109, + "Ġcharitable": 44609, + "Ġcharities": 42006, + "Ġcharity": 16863, + "Ġcharm": 18904, + "Ġcharming": 23387, + "Ġcharms": 41383, + "Ġchart": 6927, + "Ġcharter": 27472, + "Ġcharts": 17767, + "Ġchase": 15359, + "Ġchased": 33091, + "Ġchasing": 17876, + "Ġchassis": 28262, + "Ġchat": 5081, + "Ġchats": 38057, + "Ġchatter": 26929, + "Ġchattering": 37432, + "Ġchatting": 24654, + "Ġchaud": 46548, + "Ġchauff": 49211, + "Ġchaîne": 28036, + "Ġchce": 28928, + "Ġchcia": 26497, + "Ġche": 947, + "Ġcheap": 7084, + "Ġcheaper": 12284, + "Ġcheapest": 29167, + "Ġcheat": 17470, + "Ġcheated": 28079, + "Ġcheating": 18309, + "Ġcheck": 1520, + "Ġchecked": 10033, + "Ġchecking": 8568, + "Ġchecklist": 30357, + "Ġcheckout": 37153, + "Ġcheckpoint": 42269, + "Ġchecks": 13834, + "Ġcheddar": 47435, + "Ġcheek": 12839, + "Ġcheeks": 24135, + "Ġcheer": 12581, + "Ġcheerful": 36942, + "Ġcheering": 11060, + "Ġcheers": 15301, + "Ġcheese": 5399, + "Ġcheesecake": 41348, + "Ġcheesy": 32549, + "Ġchef": 10530, + "Ġchefs": 30191, + "Ġcheg": 22115, + "Ġchega": 40157, + "Ġchegar": 25512, + "Ġchegou": 36799, + "Ġchem": 4771, + "Ġchemical": 7313, + "Ġchemicals": 16152, + "Ġchemin": 46006, + "Ġchemistry": 12558, + "Ġchemotherapy": 39238, + "Ġcher": 12085, + "Ġcherche": 41644, + "Ġchercher": 38747, + "Ġcherish": 38277, + "Ġcherry": 20164, + "Ġchess": 24122, + "Ġchest": 7443, + "Ġchests": 49142, + "Ġchew": 21200, + "Ġchewing": 31444, + "Ġchewy": 28139, + "Ġchez": 17855, + "Ġchi": 13228, + "Ġchia": 45793, + "Ġchiar": 47454, + "Ġchic": 33590, + "Ġchick": 14371, + "Ġchicken": 4662, + "Ġchickens": 22329, + "Ġchicks": 42214, + "Ġchicos": 46070, + "Ġchief": 9588, + "Ġchiff": 37627, + "Ġchil": 38002, + "Ġchild": 1440, + "Ġchildcare": 35330, + "Ġchildhood": 9278, + "Ġchildish": 42203, + "Ġchildren": 2227, + "Ġchili": 15575, + "Ġchill": 11355, + "Ġchilled": 45552, + "Ġchilli": 32523, + "Ġchilling": 31047, + "Ġchills": 48676, + "Ġchilly": 39815, + "Ġchim": 18375, + "Ġchime": 40921, + "Ġchimney": 45920, + "Ġchin": 14210, + "Ġchina": 43668, + "Ġchinese": 47272, + "Ġchip": 11409, + "Ġchips": 11583, + "Ġchir": 23782, + "Ġchirping": 36682, + "Ġchlor": 18178, + "Ġchloride": 35434, + "Ġchlorine": 39888, + "Ġcho": 1586, + "Ġchociaż": 48929, + "Ġchocol": 29792, + "Ġchocolate": 6215, + "Ġchocolates": 42018, + "Ġchodzi": 23998, + "Ġchoice": 3922, + "Ġchoices": 7994, + "Ġchoir": 31244, + "Ġchois": 37827, + "Ġchoix": 32688, + "Ġchoke": 34427, + "Ġchoking": 48540, + "Ġchol": 20961, + "Ġcholesterol": 24716, + "Ġchoose": 2826, + "Ġchooses": 25963, + "Ġchoosing": 10875, + "Ġchop": 7931, + "Ġchopped": 16497, + "Ġchopping": 35205, + "Ġchops": 47514, + "Ġchopsticks": 39443, + "Ġchor": 14965, + "Ġchord": 14137, + "Ġchords": 21733, + "Ġchore": 14625, + "Ġchoreography": 23482, + "Ġchores": 39551, + "Ġchorus": 22632, + "Ġchose": 5111, + "Ġchosen": 8614, + "Ġchoses": 14488, + "Ġchrist": 26586, + "Ġchrom": 16209, + "Ġchrome": 33120, + "Ġchromos": 26824, + "Ġchromosome": 42896, + "Ġchromosomes": 45228, + "Ġchron": 19393, + "Ġchronic": 14493, + "Ġchu": 40215, + "Ġchuck": 20870, + "Ġchuckles": 29151, + "Ġchuckling": 48167, + "Ġchunk": 16635, + "Ġchunks": 24004, + "Ġchunky": 45392, + "Ġchurch": 4128, + "Ġchurches": 15381, + "Ġchut": 45373, + "Ġchuy": 35522, + "Ġchw": 26237, + "Ġchwil": 41941, + "Ġchyba": 31532, + "Ġchúng": 24322, + "ĠchÃŃnh": 42178, + "Ġchưa": 46575, + "Ġchá»": 23579, + "Ġchá»ī": 33566, + "Ġchá»ĭ": 45167, + "Ġci": 6983, + "Ġciao": 42860, + "Ġcic": 27464, + "Ġcidade": 27882, + "Ġcider": 40515, + "Ġcie": 30596, + "Ġciek": 46419, + "Ġciel": 34380, + "Ġcielo": 49549, + "Ġcient": 31590, + "Ġciento": 47361, + "ĠcientÃŃfic": 37053, + "Ġcier": 39769, + "Ġciert": 49252, + "Ġcierto": 28558, + "Ġcig": 13474, + "Ġcigar": 41952, + "Ġcigarette": 26184, + "Ġcigarettes": 29244, + "Ġcilantro": 43626, + "Ġcima": 22586, + "Ġcin": 6539, + "Ġcinco": 21350, + "Ġcine": 45144, + "Ġcinema": 17178, + "Ġcinemat": 43520, + "Ġcinematic": 32250, + "Ġcinnamon": 22969, + "Ġcinq": 43335, + "Ġcioè": 41827, + "Ġcir": 2450, + "Ġcirc": 3510, + "Ġcirca": 45972, + "Ġcircle": 6329, + "Ġcircles": 13040, + "Ġcircuit": 9048, + "Ġcircuits": 26354, + "Ġcircul": 12515, + "Ġcircular": 16476, + "Ġcirculating": 39749, + "Ġcirculation": 23168, + "Ġcircum": 7125, + "Ġcircumst": 7982, + "Ġcircumstance": 27640, + "Ġcircumstances": 9121, + "Ġcircus": 32155, + "Ġcis": 37847, + "Ġcit": 4814, + "Ġcitation": 45590, + "Ġcite": 37771, + "Ġcited": 30134, + "Ġcities": 6486, + "Ġciting": 48749, + "Ġcitiz": 5655, + "Ġcitizen": 13326, + "Ġcitizens": 7180, + "Ġcitizenship": 23808, + "Ġcitoy": 47652, + "Ġcitrus": 37217, + "Ġcity": 2307, + "Ġciud": 18186, + "Ġciudad": 24329, + "Ġciv": 13779, + "Ġcivic": 29089, + "Ġcivil": 5605, + "Ġcivilian": 23386, + "Ġcivilians": 26073, + "Ġcivilization": 18036, + "Ġcivilizations": 40749, + "ĠciÄħ": 42398, + "ĠciÄĻ": 35484, + "Ġcl": 596, + "Ġcla": 3583, + "Ġclaim": 3932, + "Ġclaimed": 12941, + "Ġclaiming": 19232, + "Ġclaims": 9441, + "Ġclair": 41375, + "Ġclairement": 47754, + "Ġclam": 34112, + "Ġclamp": 17690, + "Ġclamps": 44423, + "Ġclams": 46377, + "Ġclan": 25887, + "Ġclap": 20760, + "Ġclapping": 19978, + "Ġclaps": 38542, + "Ġclar": 6093, + "Ġclarification": 34449, + "Ġclarified": 47605, + "Ġclarify": 17594, + "Ġclarity": 16992, + "Ġclaro": 16742, + "Ġclase": 44578, + "Ġclash": 36508, + "Ġclass": 1508, + "Ġclasse": 32400, + "Ġclasses": 5359, + "Ġclassic": 7230, + "Ġclassical": 13735, + "Ġclassics": 36110, + "Ġclassification": 21538, + "Ġclassified": 20627, + "Ġclassify": 33872, + "Ġclassmates": 24964, + "Ġclassroom": 7419, + "Ġclassrooms": 22890, + "Ġclassy": 43989, + "Ġclause": 25925, + "Ġclauses": 49072, + "Ġclaw": 32019, + "Ġclaws": 34258, + "Ġclay": 13517, + "Ġcle": 1233, + "Ġclean": 2541, + "Ġcleaned": 16146, + "Ġcleaner": 16532, + "Ġcleaning": 8924, + "Ġcleans": 16912, + "Ġcleanse": 36085, + "Ġcleansing": 29345, + "Ġcleanup": 40991, + "Ġclear": 1850, + "Ġclearance": 27218, + "Ġcleared": 19725, + "Ġclearer": 26131, + "Ġclearing": 23937, + "Ġclearly": 4448, + "Ġclears": 47033, + "Ġcler": 25902, + "Ġclergy": 45995, + "Ġclerk": 31402, + "Ġclever": 13494, + "Ġclic": 33661, + "Ġclich": 39190, + "Ġcliche": 46705, + "Ġclick": 2052, + "Ġclicked": 23370, + "Ġclicking": 9697, + "Ġclicks": 18521, + "Ġclient": 6423, + "Ġclients": 6982, + "Ġcliff": 22316, + "Ġcliffs": 50039, + "Ġclim": 5644, + "Ġclimate": 5659, + "Ġclimax": 41329, + "Ġclimb": 10724, + "Ġclimbed": 28691, + "Ġclimbing": 14780, + "Ġclimbs": 48439, + "Ġclin": 5538, + "Ġcling": 35986, + "Ġclinic": 14947, + "Ġclinical": 9115, + "Ġclinically": 48392, + "Ġclinician": 45962, + "Ġclinicians": 32862, + "Ġclinics": 27252, + "Ġclip": 7353, + "Ġclipping": 49320, + "Ġclips": 13117, + "Ġclique": 44467, + "Ġclo": 20123, + "Ġcloak": 45004, + "Ġclock": 7830, + "Ġclocks": 41528, + "Ġclockwise": 35790, + "Ġclog": 34455, + "Ġclone": 26506, + "Ġclones": 43803, + "Ġclos": 2611, + "Ġclose": 1998, + "Ġclosed": 5395, + "Ġclosely": 8185, + "Ġcloser": 4966, + "Ġcloses": 24157, + "Ġclosest": 13699, + "Ġcloset": 16669, + "Ġclosing": 10377, + "Ġclosure": 24653, + "Ġclot": 48587, + "Ġcloth": 13619, + "Ġclothes": 5534, + "Ġclothing": 11502, + "Ġcloud": 4588, + "Ġclouds": 12193, + "Ġcloudy": 33060, + "Ġcloves": 39139, + "Ġclown": 22209, + "Ġclub": 6482, + "Ġclubs": 15428, + "Ġclue": 13602, + "Ġclues": 20936, + "Ġclumsy": 44640, + "Ġcluster": 13630, + "Ġclusters": 23313, + "Ġclutch": 20597, + "Ġclutter": 40614, + "Ġclás": 47434, + "Ġcm": 14668, + "Ġco": 598, + "Ġcoach": 6560, + "Ġcoaches": 17503, + "Ġcoaching": 15818, + "Ġcoal": 10209, + "Ġcoalition": 21371, + "Ġcoarse": 39312, + "Ġcoast": 8684, + "Ġcoastal": 25050, + "Ġcoaster": 28442, + "Ġcoat": 10690, + "Ġcoated": 28489, + "Ġcoating": 20163, + "Ġcoats": 30036, + "Ġcob": 39527, + "Ġcobra": 48790, + "Ġcoc": 21047, + "Ġcocaine": 33933, + "Ġcoch": 48599, + "Ġcock": 11241, + "Ġcockpit": 35990, + "Ġcockro": 45927, + "Ġcocktail": 26382, + "Ġcocktails": 49006, + "Ġcoco": 21611, + "Ġcocoa": 30634, + "Ġcocon": 12893, + "Ġcoconut": 13551, + "Ġcod": 17656, + "Ġcode": 3089, + "Ġcoded": 34874, + "Ġcodes": 14211, + "Ġcoding": 17720, + "Ġcoe": 12155, + "Ġcoefficient": 17619, + "Ġcoefficients": 31994, + "Ġcoerc": 49741, + "Ġcoeur": 45781, + "Ġcoexist": 48086, + "Ġcoff": 24768, + "Ġcoffee": 4982, + "Ġcoffin": 38361, + "Ġcog": 46521, + "Ġcogn": 11786, + "Ġcognition": 46905, + "Ġcognitive": 15605, + "Ġcoh": 21683, + "Ġcoher": 26528, + "Ġcoherent": 36239, + "Ġcohesive": 43025, + "Ġcohort": 28902, + "Ġcoil": 22225, + "Ġcoils": 43639, + "Ġcoin": 11464, + "Ġcoinc": 13001, + "Ġcoincidence": 22137, + "Ġcoined": 45222, + "Ġcoins": 13561, + "Ġcoisa": 9614, + "Ġcoisas": 14567, + "Ġcoke": 33659, + "Ġcol": 1173, + "Ġcola": 40495, + "Ġcolabor": 49629, + "Ġcold": 3554, + "Ġcolder": 31020, + "Ġcole": 45139, + "Ġcoll": 1263, + "Ġcollab": 44228, + "Ġcollabor": 5091, + "Ġcollaborate": 18338, + "Ġcollaborated": 42463, + "Ġcollaborating": 30188, + "Ġcollaboration": 9363, + "Ġcollaborations": 36908, + "Ġcollaborative": 16555, + "Ġcollaborators": 39789, + "Ġcollagen": 40444, + "Ġcollaps": 16567, + "Ġcollapse": 15584, + "Ġcollapsed": 24578, + "Ġcollapses": 48765, + "Ġcollapsing": 45339, + "Ġcollar": 20672, + "Ġcollateral": 41875, + "Ġcolle": 5913, + "Ġcolleague": 13532, + "Ġcolleagues": 7734, + "Ġcollect": 2500, + "Ġcollected": 11087, + "Ġcollecting": 12510, + "Ġcollection": 5765, + "Ġcollections": 16641, + "Ġcollective": 12590, + "Ġcollectively": 24341, + "Ġcollector": 23960, + "Ġcollectors": 35384, + "Ġcollects": 39897, + "Ġcolleg": 13300, + "Ġcollege": 3859, + "Ġcolleges": 15272, + "Ġcollide": 49093, + "Ġcollision": 24644, + "Ġcollisions": 46537, + "Ġcoloc": 12327, + "Ġcoloca": 41231, + "Ġcolocar": 17568, + "Ġcolon": 8255, + "Ġcolonial": 19066, + "Ġcolonialism": 50033, + "Ġcolonies": 27981, + "Ġcolony": 23028, + "Ġcolor": 2017, + "Ġcolored": 14332, + "Ġcolorful": 18506, + "Ġcoloring": 23198, + "Ġcolors": 4577, + "Ġcoloss": 48683, + "Ġcolour": 8267, + "Ġcoloured": 42042, + "Ġcolours": 16484, + "Ġcolum": 5970, + "Ġcolumn": 7738, + "Ġcolumns": 13766, + "Ġcom": 395, + "Ġcoma": 35106, + "Ġcomb": 2512, + "Ġcombat": 8361, + "Ġcombien": 48975, + "Ġcombin": 38514, + "Ġcombination": 6562, + "Ġcombinations": 21267, + "Ġcombine": 10432, + "Ġcombined": 9354, + "Ġcombines": 29520, + "Ġcombining": 21928, + "Ġcombo": 16859, + "Ġcombos": 44079, + "Ġcombust": 21161, + "Ġcombustion": 28121, + "Ġcome": 808, + "Ġcomeback": 23464, + "Ġcomed": 18418, + "Ġcomedian": 30212, + "Ġcomedy": 13394, + "Ġcomen": 36222, + "Ġcoment": 14541, + "Ġcomentarios": 36842, + "Ġcomentários": 43739, + "Ġcomenz": 29564, + "Ġcomer": 16510, + "Ġcomercial": 43163, + "Ġcomes": 1487, + "Ġcomet": 33696, + "Ġcomeç": 14596, + "Ġcomeça": 32568, + "Ġcomeçar": 24379, + "Ġcomeço": 48958, + "Ġcomeçou": 37393, + "Ġcomfort": 3400, + "Ġcomfortable": 4619, + "Ġcomfortably": 25101, + "Ġcomforting": 38439, + "Ġcomfy": 34523, + "Ġcomic": 13900, + "Ġcomics": 18756, + "Ġcomida": 30779, + "Ġcomigo": 35696, + "Ġcomin": 35814, + "Ġcoming": 1348, + "Ġcomm": 800, + "Ġcomma": 22117, + "Ġcommand": 5622, + "Ġcommanded": 34359, + "Ġcommander": 17885, + "Ġcommanders": 42932, + "Ġcommandments": 40289, + "Ġcommands": 16901, + "Ġcomme": 5173, + "Ġcommemor": 30461, + "Ġcommen": 29199, + "Ġcommence": 18137, + "Ġcommencement": 34558, + "Ġcommencer": 32817, + "Ġcommencé": 37561, + "Ġcommend": 35987, + "Ġcomment": 2871, + "Ġcommentaires": 46663, + "Ġcommentary": 23527, + "Ġcommented": 26940, + "Ġcommenting": 29590, + "Ġcomments": 3053, + "Ġcommer": 5906, + "Ġcommerce": 26320, + "Ġcommercial": 6841, + "Ġcommercially": 41751, + "Ġcommercials": 33666, + "Ġcommission": 9221, + "Ġcommissioned": 32372, + "Ġcommissioner": 33678, + "Ġcommissions": 38912, + "Ġcommit": 5599, + "Ġcommitment": 8371, + "Ġcommitments": 26230, + "Ġcommits": 48311, + "Ġcommitted": 7784, + "Ġcommittee": 7482, + "Ġcommittees": 25998, + "Ġcommitting": 26659, + "Ġcommod": 19931, + "Ġcommodities": 40777, + "Ġcommodity": 29125, + "Ġcommon": 2689, + "Ġcommonly": 12719, + "Ġcommun": 1199, + "Ġcommunal": 43893, + "Ġcommunaut": 38074, + "Ġcommunauté": 49056, + "Ġcommunic": 3363, + "Ġcommunicate": 7890, + "Ġcommunicated": 34989, + "Ġcommunicating": 17559, + "Ġcommunication": 6101, + "Ġcommunications": 15163, + "Ġcommunion": 42808, + "Ġcommunism": 42160, + "Ġcommunist": 29347, + "Ġcommunities": 4456, + "Ġcommunity": 1768, + "Ġcommute": 36750, + "Ġcomo": 2617, + "Ġcomp": 715, + "Ġcompact": 14679, + "Ġcompan": 3168, + "Ġcompanies": 3431, + "Ġcompanion": 22363, + "Ġcompanions": 28009, + "Ġcompany": 2237, + "Ġcompar": 6311, + "Ġcomparable": 25323, + "Ġcomparative": 39292, + "Ġcompare": 6794, + "Ġcompared": 5347, + "Ġcompares": 38334, + "Ġcomparing": 15763, + "Ġcomparison": 9660, + "Ġcomparisons": 33157, + "Ġcompart": 18113, + "Ġcompartil": 40204, + "Ġcompartir": 40667, + "Ġcompartment": 26505, + "Ġcompass": 10707, + "Ġcompassion": 12601, + "Ġcompassionate": 30531, + "Ġcompat": 13147, + "Ġcompatibility": 34237, + "Ġcompatible": 18218, + "Ġcompañ": 29953, + "Ġcompe": 16291, + "Ġcompelled": 40021, + "Ġcompelling": 20050, + "Ġcompens": 11598, + "Ġcompensate": 29458, + "Ġcompensation": 19644, + "Ġcompet": 2850, + "Ġcompete": 11831, + "Ġcompeted": 43619, + "Ġcompetence": 39965, + "Ġcompetency": 50097, + "Ġcompetent": 29998, + "Ġcompeting": 15439, + "Ġcompetit": 41131, + "Ġcompetition": 6211, + "Ġcompetitions": 26185, + "Ġcompetitive": 10043, + "Ġcompetitor": 27266, + "Ġcompetitors": 18333, + "Ġcompilation": 40261, + "Ġcompile": 31413, + "Ġcompiled": 36548, + "Ġcompiler": 31958, + "Ġcompl": 1209, + "Ġcomplac": 49546, + "Ġcomplain": 11024, + "Ġcomplained": 33951, + "Ġcomplaining": 20740, + "Ġcomplaint": 20100, + "Ġcomplaints": 19585, + "Ġcomple": 44424, + "Ġcomplement": 17103, + "Ġcomplementary": 40705, + "Ġcomplet": 1557, + "Ġcompleta": 46822, + "Ġcompletamente": 28381, + "Ġcomplete": 3566, + "Ġcompleted": 7365, + "Ġcompletely": 2584, + "Ġcompletes": 36362, + "Ġcompleting": 19472, + "Ġcompletion": 19372, + "Ġcompleto": 40135, + "Ġcomplex": 3997, + "Ġcomplexes": 43676, + "Ġcomplexities": 48705, + "Ġcomplexity": 14024, + "Ġcompliance": 15882, + "Ġcompliant": 36248, + "Ġcomplic": 16060, + "Ġcomplicado": 49850, + "Ġcomplicated": 6179, + "Ġcomplications": 26566, + "Ġcompliment": 16250, + "Ġcomplimentary": 47162, + "Ġcompliments": 35468, + "Ġcompliqué": 44290, + "Ġcomply": 27956, + "Ġcomplètement": 31331, + "Ġcompon": 4026, + "Ġcomponent": 6542, + "Ġcomponents": 6677, + "Ġcomport": 25883, + "Ġcompos": 10199, + "Ġcompose": 35925, + "Ġcomposed": 18204, + "Ġcomposer": 26003, + "Ġcomposers": 43872, + "Ġcomposite": 25557, + "Ġcomposition": 12686, + "Ġcompositions": 43401, + "Ġcompost": 20203, + "Ġcompound": 14154, + "Ġcompounds": 21810, + "Ġcompr": 16802, + "Ġcompra": 39323, + "Ġcomprar": 22077, + "Ġcompreh": 10753, + "Ġcomprehend": 38183, + "Ġcomprehension": 44991, + "Ġcomprehensive": 13914, + "Ġcomprend": 30765, + "Ġcomprendre": 26856, + "Ġcompress": 14778, + "Ġcompressed": 30353, + "Ġcompression": 19355, + "Ġcompressor": 28765, + "Ġcompris": 31711, + "Ġcomprised": 38062, + "Ġcomprom": 11482, + "Ġcompromise": 18577, + "Ġcompromised": 32463, + "Ġcompt": 15660, + "Ġcompte": 19424, + "Ġcompuls": 42773, + "Ġcomput": 2807, + "Ġcomputation": 24903, + "Ġcomputational": 28270, + "Ġcompute": 14722, + "Ġcomputed": 40610, + "Ġcomputer": 3820, + "Ġcomputers": 10807, + "Ġcomputing": 15866, + "Ġcomrades": 42249, + "Ġcomum": 44324, + "Ġcomun": 11040, + "Ġcomunic": 31710, + "Ġcomunidad": 35695, + "Ġcomunque": 45736, + "Ġcomún": 45448, + "Ġcon": 416, + "Ġconc": 1588, + "Ġconce": 10413, + "Ġconceal": 40170, + "Ġconcealed": 46305, + "Ġconcealer": 30672, + "Ġconceive": 48605, + "Ġconceived": 34898, + "Ġconcent": 5512, + "Ġconcentrate": 18089, + "Ġconcentrated": 21321, + "Ġconcentrating": 40571, + "Ġconcentration": 9856, + "Ġconcentrations": 33512, + "Ġconcept": 3410, + "Ġconception": 30698, + "Ġconcepts": 10392, + "Ġconceptual": 24106, + "Ġconcer": 16311, + "Ġconcern": 3136, + "Ġconcerned": 5922, + "Ġconcerning": 18087, + "Ġconcerns": 7389, + "Ġconcert": 8543, + "Ġconcerts": 24924, + "Ġconcise": 44882, + "Ġconclud": 9312, + "Ġconclude": 16886, + "Ġconcluded": 22960, + "Ġconcludes": 24643, + "Ġconclus": 18646, + "Ġconclusion": 10063, + "Ġconclusions": 22865, + "Ġconcret": 39481, + "Ġconcrete": 9859, + "Ġconcur": 23702, + "Ġconcurrent": 37702, + "Ġcond": 2224, + "Ġcondem": 18510, + "Ġcondemn": 30733, + "Ġcondemned": 36472, + "Ġcondensed": 36398, + "Ġcondiciones": 45960, + "Ġcondition": 4188, + "Ġconditional": 27708, + "Ġconditioned": 35833, + "Ġconditioner": 33558, + "Ġconditioning": 21901, + "Ġconditions": 4487, + "Ġcondu": 15504, + "Ġconduc": 45095, + "Ġconduct": 6018, + "Ġconducted": 13809, + "Ġconducting": 21749, + "Ġconduction": 43842, + "Ġconductivity": 42982, + "Ġconductor": 29957, + "Ġcone": 19749, + "Ġconect": 30458, + "Ġcones": 40548, + "Ġconex": 49509, + "Ġconf": 1497, + "Ġconfer": 13765, + "Ġconference": 7586, + "Ġconferences": 22032, + "Ġconfess": 19367, + "Ġconfessed": 41428, + "Ġconfession": 29154, + "Ġconfian": 49081, + "Ġconfiance": 43213, + "Ġconfidence": 6687, + "Ġconfident": 6679, + "Ġconfidential": 27054, + "Ġconfidently": 41956, + "Ġconfig": 6662, + "Ġconfigur": 22192, + "Ġconfiguration": 11694, + "Ġconfigurations": 31493, + "Ġconfigure": 22162, + "Ġconfigured": 30538, + "Ġconfined": 31745, + "Ġconfinement": 41064, + "Ġconfir": 9186, + "Ġconfirm": 9064, + "Ġconfirmation": 21871, + "Ġconfirmed": 11341, + "Ġconfirming": 42861, + "Ġconfirms": 39982, + "Ġconfisc": 49868, + "Ġconflict": 6596, + "Ġconflicting": 43784, + "Ġconflicts": 19807, + "Ġconform": 18975, + "Ġconfort": 43392, + "Ġconfront": 12422, + "Ġconfrontation": 35363, + "Ġconfronted": 31257, + "Ġconfronting": 47449, + "Ġconfuse": 28584, + "Ġconfused": 9019, + "Ġconfusing": 13181, + "Ġconfusion": 15075, + "Ġcongest": 31871, + "Ġcongestion": 40816, + "Ġcongr": 8882, + "Ġcongrat": 9774, + "Ġcongratulate": 24353, + "Ġcongratulations": 13568, + "Ġcongreg": 23002, + "Ġcongregation": 34782, + "Ġcongress": 17546, + "Ġcongressional": 32962, + "Ġconhe": 15440, + "Ġconhecer": 46235, + "Ġconj": 20295, + "Ġconjug": 29456, + "Ġconjugate": 45064, + "Ġconjun": 18244, + "Ġconjunction": 27482, + "Ġconjunto": 37776, + "Ġconn": 46264, + "Ġconna": 15477, + "Ġconnais": 45784, + "Ġconnect": 1745, + "Ġconnected": 4582, + "Ġconnecting": 11015, + "Ġconnection": 4984, + "Ġconnections": 9271, + "Ġconnectivity": 21095, + "Ġconnector": 19127, + "Ġconnectors": 31865, + "Ġconnects": 16967, + "Ġconnot": 46371, + "Ġcono": 33029, + "Ġconoc": 15871, + "Ġconocer": 35241, + "Ġconos": 49892, + "Ġconqu": 15592, + "Ġconquer": 24136, + "Ġconquered": 32695, + "Ġconquest": 43241, + "Ġcons": 1014, + "Ġconsci": 39271, + "Ġconscience": 20537, + "Ġconscient": 44507, + "Ġconscious": 6648, + "Ġconsciously": 32538, + "Ġconsciousness": 10081, + "Ġconse": 4425, + "Ġconsec": 40526, + "Ġconsecut": 27154, + "Ġconsecutive": 30497, + "Ġconsegu": 12706, + "Ġconsegue": 27179, + "Ġconseguir": 21229, + "Ġconsensus": 19115, + "Ġconsent": 14546, + "Ġconsequ": 7242, + "Ġconsequence": 18326, + "Ġconsequences": 10098, + "Ġconsequently": 47259, + "Ġconserv": 9704, + "Ġconservation": 16185, + "Ġconservative": 13780, + "Ġconservatives": 39607, + "Ġconserve": 45240, + "Ġconsid": 30376, + "Ġconsider": 1949, + "Ġconsiderable": 24167, + "Ġconsiderably": 31308, + "Ġconsideration": 12381, + "Ġconsiderations": 24070, + "Ġconsidered": 4888, + "Ġconsidering": 8079, + "Ġconsiders": 33095, + "Ġconsig": 40233, + "Ġconsigo": 43688, + "Ġconsist": 4603, + "Ġconsiste": 49066, + "Ġconsisted": 38227, + "Ġconsistency": 14416, + "Ġconsistent": 8398, + "Ġconsistently": 14961, + "Ġconsisting": 33921, + "Ġconsists": 14689, + "Ġconsol": 16054, + "Ġconsole": 11076, + "Ġconsoles": 28948, + "Ġconsolid": 19045, + "Ġconsolidate": 49521, + "Ġconsolidated": 49008, + "Ġconsolidation": 39114, + "Ġconsomm": 47688, + "Ġconson": 30843, + "Ġconsonant": 43647, + "Ġconsort": 38343, + "Ġconspir": 17719, + "Ġconspiracy": 20439, + "Ġconst": 1817, + "Ġconstant": 5754, + "Ġconstante": 47343, + "Ġconstantly": 6460, + "Ġconstants": 35870, + "Ġconstell": 32436, + "Ġconstellation": 42336, + "Ġconstit": 23079, + "Ġconstitu": 16085, + "Ġconstituency": 46146, + "Ġconstituents": 30847, + "Ġconstitute": 41658, + "Ġconstitutes": 44204, + "Ġconstitution": 11937, + "Ġconstitutional": 20176, + "Ġconstra": 11525, + "Ġconstrained": 38901, + "Ġconstraint": 25534, + "Ġconstraints": 18491, + "Ġconstru": 12946, + "Ġconstruct": 7690, + "Ġconstructed": 17083, + "Ġconstructing": 39969, + "Ġconstruction": 6435, + "Ġconstructive": 30223, + "Ġconstructor": 47479, + "Ġconstruir": 38445, + "Ġconsult": 7189, + "Ġconsultant": 24676, + "Ġconsultants": 38935, + "Ġconsultation": 20932, + "Ġconsulted": 47941, + "Ġconsulting": 23682, + "Ġconsum": 3978, + "Ġconsume": 14732, + "Ġconsumed": 21226, + "Ġconsumer": 9711, + "Ġconsumers": 11883, + "Ġconsumes": 48823, + "Ġconsuming": 19867, + "Ġconsumo": 42505, + "Ġconsumption": 12126, + "Ġconséqu": 47648, + "Ġcont": 660, + "Ġconta": 24001, + "Ġcontact": 3385, + "Ġcontacted": 21546, + "Ġcontacting": 41482, + "Ġcontacts": 15836, + "Ġcontag": 28525, + "Ġcontagious": 40666, + "Ġcontain": 5304, + "Ġcontained": 16212, + "Ġcontainer": 10129, + "Ġcontainers": 17089, + "Ġcontaining": 19273, + "Ġcontainment": 44058, + "Ġcontains": 8306, + "Ġcontam": 20463, + "Ġcontamin": 27562, + "Ġcontaminated": 34492, + "Ġcontamination": 33012, + "Ġcontar": 27045, + "Ġconte": 34444, + "Ġcontempl": 19935, + "Ġcontempor": 13046, + "Ġcontemporary": 14878, + "Ġcontempt": 47202, + "Ġconten": 21795, + "Ġcontenido": 47117, + "Ġcontent": 2701, + "Ġcontents": 15768, + "Ġcontest": 10287, + "Ġcontestants": 39676, + "Ġcontext": 4319, + "Ġcontexto": 47685, + "Ġcontexts": 30628, + "Ġcontextual": 35526, + "Ġconteú": 39065, + "Ġconteúdo": 44144, + "Ġcontin": 1421, + "Ġcontinent": 18932, + "Ġcontinental": 42479, + "Ġcontinents": 38598, + "Ġconting": 27820, + "Ġcontinu": 2993, + "Ġcontinua": 40861, + "Ġcontinually": 22277, + "Ġcontinuar": 29980, + "Ġcontinuation": 29357, + "Ġcontinue": 2354, + "Ġcontinued": 7014, + "Ġcontinuer": 35660, + "Ġcontinues": 6515, + "Ġcontinuing": 9289, + "Ġcontinuity": 23807, + "Ġcontinuous": 10957, + "Ġcontinuously": 15684, + "Ġcontinuum": 36120, + "Ġcontour": 21234, + "Ġcontr": 10273, + "Ġcontra": 10742, + "Ġcontrac": 48118, + "Ġcontract": 4364, + "Ġcontracted": 37629, + "Ġcontracting": 36095, + "Ġcontraction": 37372, + "Ġcontractor": 26463, + "Ġcontractors": 28377, + "Ġcontracts": 13952, + "Ġcontrad": 15858, + "Ġcontradict": 28900, + "Ġcontradiction": 34937, + "Ġcontradictory": 49555, + "Ġcontrario": 47642, + "Ġcontrary": 19506, + "Ġcontrast": 8712, + "Ġcontrat": 40944, + "Ġcontre": 14927, + "Ġcontrib": 4226, + "Ġcontribute": 10586, + "Ġcontributed": 18434, + "Ġcontributes": 32035, + "Ġcontributing": 19270, + "Ġcontribution": 13150, + "Ġcontributions": 15725, + "Ġcontributor": 42859, + "Ġcontributors": 45627, + "Ġcontro": 1583, + "Ġcontrol": 1969, + "Ġcontrolar": 47843, + "Ġcontrole": 46215, + "Ġcontroll": 45159, + "Ġcontrolled": 10164, + "Ġcontroller": 10561, + "Ġcontrollers": 26903, + "Ġcontrolling": 14905, + "Ġcontrols": 9003, + "Ġcontrovers": 11542, + "Ġcontroversial": 17323, + "Ġcontroversy": 22976, + "Ġcontrôle": 46518, + "Ġconv": 3754, + "Ġconve": 18053, + "Ġconvection": 49080, + "Ġconven": 7158, + "Ġconvenience": 19283, + "Ġconvenient": 10851, + "Ġconveniently": 44375, + "Ġconvention": 10286, + "Ġconventional": 16011, + "Ġconventions": 33520, + "Ġconver": 9652, + "Ġconverge": 41881, + "Ġconvergence": 32181, + "Ġconvers": 2615, + "Ġconversation": 3761, + "Ġconversations": 7315, + "Ġconversion": 14298, + "Ġconversions": 42256, + "Ġconvert": 7620, + "Ġconverted": 16424, + "Ġconverter": 33905, + "Ġconverting": 29942, + "Ġconverts": 38874, + "Ġconvex": 42432, + "Ġconvey": 16965, + "Ġconveyed": 49340, + "Ġconvicted": 26942, + "Ġconviction": 24837, + "Ġconvictions": 44757, + "Ġconvin": 9854, + "Ġconvince": 13447, + "Ġconvinced": 12561, + "Ġconvincing": 24823, + "Ġconvolution": 45216, + "Ġcook": 2543, + "Ġcooked": 9267, + "Ġcooker": 31476, + "Ġcookie": 14417, + "Ġcookies": 13670, + "Ġcooking": 6361, + "Ġcooks": 30709, + "Ġcool": 1627, + "Ġcooldown": 40782, + "Ġcooled": 27491, + "Ġcooler": 15566, + "Ġcoolest": 22013, + "Ġcooling": 14785, + "Ġcools": 42883, + "Ġcoop": 13215, + "Ġcooper": 13414, + "Ġcooperate": 26667, + "Ġcooperation": 14968, + "Ġcooperative": 31772, + "Ġcoord": 14230, + "Ġcoordin": 8285, + "Ġcoordinate": 15670, + "Ġcoordinated": 29591, + "Ġcoordinates": 21056, + "Ġcoordinating": 37824, + "Ġcoordination": 21252, + "Ġcoordinator": 27394, + "Ġcop": 2971, + "Ġcope": 22598, + "Ġcopied": 25365, + "Ġcopies": 14341, + "Ġcoping": 32893, + "Ġcopper": 15007, + "Ġcops": 19012, + "Ġcopy": 5055, + "Ġcopying": 27976, + "Ġcopyright": 17996, + "Ġcor": 1181, + "Ġcoral": 24955, + "Ġcoraz": 25899, + "Ġcorazón": 34518, + "Ġcoração": 41408, + "Ġcord": 12250, + "Ġcords": 36302, + "Ġcore": 4965, + "Ġcores": 24826, + "Ġcoriander": 34013, + "Ġcorn": 9046, + "Ġcorner": 4538, + "Ġcorners": 12413, + "Ġcoron": 10451, + "Ġcorona": 27103, + "Ġcoronavirus": 13043, + "Ġcorpo": 23257, + "Ġcorpor": 6804, + "Ġcorporate": 10896, + "Ġcorporation": 22197, + "Ġcorporations": 17676, + "Ġcorps": 18271, + "Ġcorpse": 30324, + "Ġcorpses": 46416, + "Ġcorr": 38576, + "Ġcorre": 29731, + "Ġcorrect": 3006, + "Ġcorrected": 31687, + "Ġcorrecting": 47032, + "Ġcorrection": 19984, + "Ġcorrections": 36406, + "Ġcorrectly": 8944, + "Ġcorrel": 13983, + "Ġcorrelate": 48742, + "Ġcorrelated": 38574, + "Ġcorrelation": 20009, + "Ġcorrer": 49568, + "Ġcorrespond": 6805, + "Ġcorrespondence": 38135, + "Ġcorrespondent": 44406, + "Ġcorresponding": 11760, + "Ġcorresponds": 23249, + "Ġcorri": 47908, + "Ġcorrid": 20322, + "Ġcorridor": 25602, + "Ġcorridors": 46920, + "Ġcorro": 45125, + "Ġcorros": 28957, + "Ġcorrosion": 33876, + "Ġcorrupt": 17366, + "Ġcorrupted": 39480, + "Ġcorruption": 17959, + "Ġcors": 46511, + "Ġcort": 11278, + "Ġcortar": 48117, + "Ġcortex": 33312, + "Ġcortisol": 45618, + "Ġcos": 3792, + "Ġcosa": 10163, + "Ġcosas": 12218, + "Ġcose": 30261, + "Ġcoses": 31860, + "Ġcosine": 23565, + "Ġcosm": 22207, + "Ġcosmetic": 35828, + "Ġcosmetics": 37416, + "Ġcosmic": 27614, + "Ġcosmos": 41794, + "Ġcosplay": 39403, + "Ġcost": 2063, + "Ġcosting": 37917, + "Ġcostly": 28328, + "Ġcosts": 5497, + "Ġcostume": 14850, + "Ġcostumes": 22695, + "Ġcosì": 23278, + "Ġcot": 26529, + "Ġcott": 11550, + "Ġcottage": 37209, + "Ġcotton": 13764, + "Ġcou": 1384, + "Ġcouch": 16511, + "Ġcough": 22777, + "Ġcoughing": 39375, + "Ġcould": 727, + "Ġcouldn": 2809, + "Ġcoule": 33644, + "Ġcouleur": 49462, + "Ġcoun": 3465, + "Ġcouncil": 9209, + "Ġcouncils": 39187, + "Ġcounsel": 10351, + "Ġcounseling": 23889, + "Ġcounselor": 27851, + "Ġcounselors": 36925, + "Ġcount": 1207, + "Ġcountdown": 35985, + "Ġcounted": 20150, + "Ġcounter": 5682, + "Ġcounterpart": 22335, + "Ġcounterparts": 33287, + "Ġcounters": 39338, + "Ġcounties": 20583, + "Ġcounting": 13251, + "Ġcountless": 19223, + "Ġcountries": 3517, + "Ġcountry": 1941, + "Ġcountryside": 28252, + "Ġcounts": 14893, + "Ġcounty": 9928, + "Ġcoup": 8682, + "Ġcoupe": 45136, + "Ġcouple": 1916, + "Ġcoupled": 29482, + "Ġcouples": 20368, + "Ġcoupling": 37447, + "Ġcoupon": 33390, + "Ġcour": 1005, + "Ġcourage": 9892, + "Ġcourageous": 33233, + "Ġcours": 25452, + "Ġcourse": 1164, + "Ġcourses": 7712, + "Ġcourt": 4753, + "Ġcourtesy": 41704, + "Ġcourtroom": 44050, + "Ġcourts": 14141, + "Ġcourtyard": 41364, + "Ġcous": 12304, + "Ġcousin": 16207, + "Ġcousins": 29246, + "Ġcovari": 49851, + "Ġcovenant": 26661, + "Ġcover": 2060, + "Ġcoverage": 9645, + "Ġcovered": 5343, + "Ġcovering": 10322, + "Ġcovers": 10538, + "Ġcovert": 45985, + "Ġcovet": 48497, + "Ġcovid": 25616, + "Ġcow": 8408, + "Ġcoward": 30776, + "Ġcowboy": 39174, + "Ġcowork": 31998, + "Ġcoworkers": 43465, + "Ġcows": 19148, + "Ġcoy": 41485, + "Ġcoz": 36747, + "Ġcozy": 29414, + "Ġcoû": 49743, + "ĠcoÅĽ": 19241, + "Ġcr": 941, + "Ġcra": 2094, + "Ġcrab": 17870, + "Ġcrabs": 35147, + "Ġcrack": 6226, + "Ġcracked": 25140, + "Ġcrackers": 41407, + "Ġcracking": 25229, + "Ġcracks": 21770, + "Ġcradle": 48081, + "Ġcraft": 8448, + "Ġcrafted": 36213, + "Ġcrafting": 29048, + "Ġcrafts": 27831, + "Ġcran": 39685, + "Ġcrane": 36345, + "Ġcrank": 21263, + "Ġcrap": 12426, + "Ġcrappy": 36531, + "Ġcrash": 8252, + "Ġcrashed": 24190, + "Ġcrashes": 28642, + "Ġcrashing": 26900, + "Ġcrate": 42426, + "Ġcrater": 38981, + "Ġcrave": 46875, + "Ġcraving": 27320, + "Ġcraw": 13999, + "Ġcrawl": 24767, + "Ġcrawling": 32979, + "Ġcray": 33073, + "Ġcraz": 46348, + "Ġcraziest": 46339, + "Ġcrazy": 3219, + "Ġcre": 1197, + "Ġcream": 4689, + "Ġcreams": 46573, + "Ġcreamy": 23215, + "Ġcrear": 31984, + "Ġcrease": 30098, + "Ġcreat": 1428, + "Ġcreate": 1884, + "Ġcreated": 2942, + "Ġcreates": 7829, + "Ġcreating": 4084, + "Ġcreation": 8016, + "Ġcreations": 37836, + "Ġcreative": 5880, + "Ġcreatively": 43750, + "Ġcreativity": 12915, + "Ġcreator": 14181, + "Ġcreators": 16039, + "Ġcreature": 12797, + "Ġcreatures": 12281, + "Ġcrec": 31668, + "Ġcred": 3864, + "Ġcredential": 22034, + "Ġcredentials": 27404, + "Ġcredibility": 28852, + "Ġcredible": 32757, + "Ġcredit": 5397, + "Ġcredited": 41155, + "Ġcredits": 16816, + "Ġcree": 48895, + "Ġcreek": 41868, + "Ġcreep": 9626, + "Ġcreeping": 47753, + "Ġcreepy": 14717, + "Ġcreo": 14336, + "Ġcres": 20964, + "Ġcrest": 43799, + "Ġcrew": 7260, + "Ġcrews": 31477, + "Ġcri": 12815, + "Ġcrian": 27659, + "Ġcriança": 43300, + "Ġcrianças": 45280, + "Ġcriar": 36882, + "Ġcrib": 47163, + "Ġcricket": 31626, + "Ġcried": 16266, + "Ġcries": 29206, + "Ġcrim": 7857, + "Ġcrime": 7206, + "Ġcrimes": 13916, + "Ġcrimin": 19044, + "Ġcriminal": 8628, + "Ġcriminals": 23474, + "Ġcringe": 47081, + "Ġcripp": 37667, + "Ġcris": 4661, + "Ġcrise": 32398, + "Ġcrises": 31403, + "Ġcrisis": 5869, + "Ġcrisp": 22952, + "Ġcrispy": 17509, + "Ġcrist": 35608, + "Ġcrit": 3113, + "Ġcriter": 9912, + "Ġcriteria": 11101, + "Ġcriterion": 46691, + "Ġcritic": 7850, + "Ġcritical": 4924, + "Ġcritically": 22797, + "Ġcriticism": 15835, + "Ġcriticisms": 48519, + "Ġcriticize": 31010, + "Ġcriticized": 28011, + "Ġcriticizing": 45474, + "Ġcritics": 22503, + "Ġcritique": 25673, + "Ġcro": 4848, + "Ġcroch": 8191, + "Ġcrochet": 9387, + "Ġcrochets": 27115, + "Ġcrocod": 32727, + "Ġcrocodile": 43652, + "Ġcrois": 21724, + "Ġcrooked": 41710, + "Ġcrop": 9086, + "Ġcrops": 16829, + "Ġcros": 28108, + "Ġcross": 3278, + "Ġcrossed": 14622, + "Ġcrosses": 28467, + "Ġcrossing": 14712, + "Ġcrossover": 33837, + "Ġcrouch": 46704, + "Ġcrow": 6401, + "Ġcrowd": 6919, + "Ġcrowded": 21634, + "Ġcrowds": 26070, + "Ġcrown": 11841, + "Ġcru": 5140, + "Ġcruc": 28154, + "Ġcrucial": 11462, + "Ġcrucified": 46846, + "Ġcrude": 30796, + "Ġcruel": 16022, + "Ġcruelty": 40145, + "Ġcruise": 17754, + "Ġcruising": 42180, + "Ġcrumble": 47478, + "Ġcrumbs": 42675, + "Ġcrunch": 13386, + "Ġcrunchy": 24942, + "Ġcrus": 42603, + "Ġcrush": 10321, + "Ġcrushed": 19889, + "Ġcrushing": 31317, + "Ġcrust": 18156, + "Ġcry": 3305, + "Ġcrying": 8554, + "Ġcrypt": 9844, + "Ġcrypto": 17240, + "Ġcryptocur": 22070, + "Ġcryptocurrencies": 44369, + "Ġcryptocurrency": 28809, + "Ġcryst": 17035, + "Ġcrystal": 13662, + "Ġcrystall": 31924, + "Ġcrystals": 23772, + "Ġcré": 15609, + "Ġcréd": 37368, + "Ġcréer": 32062, + "ĠcrÃŃt": 39927, + "Ġcs": 28277, + "Ġcsak": 47927, + "Ġcu": 2702, + "Ġcuad": 34434, + "Ġcual": 10911, + "Ġcuales": 46932, + "Ġcualquier": 21004, + "Ġcuando": 7767, + "Ġcuanto": 36685, + "Ġcuarto": 48368, + "Ġcuatro": 28795, + "Ġcub": 10057, + "Ġcube": 13728, + "Ġcubed": 36510, + "Ġcubes": 25415, + "Ġcubic": 28733, + "Ġcuc": 18488, + "Ġcucumber": 28725, + "Ġcucumbers": 43354, + "Ġcud": 40287, + "Ġcue": 22656, + "Ġcuent": 46414, + "Ġcuenta": 17868, + "Ġcuer": 18363, + "Ġcuerpo": 20264, + "Ġcues": 32192, + "Ġcuest": 36978, + "Ġcuestión": 50216, + "Ġcuff": 35997, + "Ġcui": 22929, + "Ġcuid": 20770, + "Ġcuidado": 31891, + "Ġcuisine": 25257, + "Ġcuk": 37485, + "Ġcul": 11021, + "Ġculinary": 39273, + "Ġculmin": 28583, + "Ġculpa": 44870, + "Ġculprit": 39220, + "Ġcult": 2376, + "Ġcultiv": 15298, + "Ġcultivate": 33341, + "Ġcultivated": 46770, + "Ġcultivation": 45924, + "Ġcultura": 30576, + "Ġcultural": 6988, + "Ġculturally": 28879, + "Ġculture": 3713, + "Ġcultures": 12951, + "Ġcum": 12713, + "Ġcuma": 44630, + "Ġcumin": 40950, + "Ġcumpl": 37483, + "Ġcumulative": 38379, + "Ġcunning": 45891, + "Ġcup": 4414, + "Ġcupboard": 47847, + "Ġcupcake": 42153, + "Ġcupcakes": 44515, + "Ġcups": 13381, + "Ġcur": 1262, + "Ġcurated": 47851, + "Ġcurator": 38519, + "Ġcurb": 33731, + "Ġcurd": 47443, + "Ġcure": 13698, + "Ġcured": 29617, + "Ġcurios": 13625, + "Ġcuriosity": 18769, + "Ġcurious": 6369, + "Ġcurl": 22591, + "Ġcurling": 45085, + "Ġcurls": 36950, + "Ġcurly": 32066, + "Ġcurrencies": 36886, + "Ġcurrency": 13346, + "Ġcurrent": 2190, + "Ġcurrently": 4362, + "Ġcurrents": 30110, + "Ġcurric": 13179, + "Ġcurriculum": 14302, + "Ġcurry": 18123, + "Ġcurs": 13946, + "Ġcurse": 17139, + "Ġcursed": 29498, + "Ġcurso": 31085, + "Ġcursor": 28169, + "Ġcurt": 28087, + "Ġcurtain": 26789, + "Ġcurtains": 36539, + "Ġcurv": 33900, + "Ġcurvature": 37638, + "Ġcurve": 7605, + "Ġcurved": 24991, + "Ġcurves": 19490, + "Ġcush": 18422, + "Ġcushion": 21908, + "Ġcust": 14884, + "Ġcustard": 46972, + "Ġcustody": 26976, + "Ġcustom": 2375, + "Ġcustomer": 5474, + "Ġcustomers": 4581, + "Ġcustomizable": 47922, + "Ġcustomization": 39387, + "Ġcustomize": 19734, + "Ġcustomized": 30581, + "Ġcustoms": 27330, + "Ġcut": 1723, + "Ġcute": 4052, + "Ġcutest": 46582, + "Ġcuts": 9992, + "Ġcutter": 25531, + "Ġcutting": 6492, + "Ġcuz": 11910, + "Ġcuál": 44318, + "Ġcuánt": 44256, + "Ġcuá»Ļc": 50138, + "Ġcy": 3185, + "Ġcyan": 47463, + "Ġcyber": 13411, + "Ġcybersecurity": 38765, + "Ġcyc": 38154, + "Ġcycl": 19474, + "Ġcycle": 6586, + "Ġcycles": 17796, + "Ġcycling": 22425, + "Ġcyl": 13446, + "Ġcylind": 28044, + "Ġcylinder": 17884, + "Ġcylinders": 42166, + "Ġcyn": 28365, + "Ġcynical": 46345, + "Ġcyst": 48915, + "Ġcyt": 40248, + "Ġcz": 6472, + "Ġczas": 13190, + "Ġczasie": 42667, + "Ġczasu": 40860, + "Ġczego": 36559, + "Ġczy": 6430, + "Ġczyli": 16591, + "Ġczym": 31466, + "ĠczÄĻ": 18544, + "ĠczÄĻsto": 34369, + "ĠczÄĻÅĽci": 41314, + "ĠczÄĻÅĽÄĩ": 47149, + "ĠczÅĤ": 31083, + "ĠczÅĤowie": 36282, + "Ġcá": 6476, + "Ġcác": 13250, + "Ġcách": 45762, + "Ġcái": 14830, + "Ġcámara": 44273, + "Ġcâ": 19288, + "Ġcâmera": 43640, + "Ġcé": 30560, + "Ġcél": 29064, + "Ġcélulas": 49092, + "Ġcéu": 50052, + "Ġcòn": 31394, + "Ġcó": 6333, + "Ġcód": 40210, + "Ġcódigo": 44195, + "Ġcómo": 12826, + "Ġcô": 35167, + "Ġcông": 35451, + "Ġcôt": 16857, + "Ġcôté": 18437, + "Ġcùng": 45701, + "ĠcÄĥ": 21957, + "ĠcÅ": 17846, + "ĠcÅ©ng": 22747, + "ĠcÅĵ": 41388, + "ĠcÅĵur": 43207, + "Ġcả": 22227, + "Ġcảm": 47593, + "Ġcần": 47580, + "Ġcá»": 9613, + "Ġcá»§a": 11990, + "Ġcứ": 46619, + "Ġd": 274, + "ĠdB": 43116, + "Ġda": 1120, + "Ġdaar": 12390, + "Ġdab": 28964, + "Ġdabei": 14967, + "Ġdachte": 39775, + "Ġdad": 3546, + "Ġdaddy": 16785, + "Ġdado": 29568, + "Ġdados": 39915, + "Ġdads": 41798, + "Ġdadurch": 35472, + "Ġdafür": 13747, + "Ġdag": 15460, + "Ġdage": 41557, + "Ġdagegen": 45387, + "Ġdagen": 49638, + "Ġdagger": 36972, + "Ġdah": 16800, + "Ġdaha": 10545, + "Ġdaher": 36971, + "Ġdai": 38586, + "Ġdaily": 5212, + "Ġdairy": 21276, + "Ġdak": 25329, + "Ġdakika": 34323, + "Ġdal": 11702, + "Ġdalam": 23063, + "Ġdale": 27326, + "Ġdalej": 34257, + "Ġdall": 43351, + "Ġdalla": 35566, + "Ġdam": 2422, + "Ġdamage": 4344, + "Ġdamaged": 14080, + "Ġdamages": 28536, + "Ġdamaging": 25342, + "Ġdamals": 26067, + "Ġdamit": 9479, + "Ġdamn": 8151, + "Ġdamned": 46397, + "Ġdamp": 19498, + "Ġdamping": 49588, + "Ġdan": 3277, + "Ġdanach": 37784, + "Ġdance": 4489, + "Ġdanced": 32909, + "Ġdancer": 21621, + "Ġdancers": 25199, + "Ġdances": 28322, + "Ġdancing": 8898, + "Ġdando": 29854, + "Ġdane": 49206, + "Ġdang": 21892, + "Ġdanger": 4330, + "Ġdangerous": 5795, + "Ġdangers": 27701, + "Ġdank": 35121, + "Ġdanke": 46434, + "Ġdann": 3594, + "Ġdans": 2680, + "Ġdapat": 35161, + "Ġdaqui": 30485, + "Ġdar": 4072, + "Ġdaran": 24520, + "Ġdarauf": 18654, + "Ġdare": 8955, + "Ġdared": 44564, + "Ġdares": 50213, + "Ġdarf": 19374, + "Ġdari": 15597, + "Ġdaring": 43128, + "Ġdark": 2877, + "Ġdarker": 12741, + "Ġdarkest": 33460, + "Ġdarkness": 11262, + "Ġdarle": 37666, + "Ġdarling": 22405, + "Ġdarn": 29063, + "Ġdart": 39010, + "Ġdarum": 27313, + "Ġdarüber": 21737, + "Ġdas": 1482, + "Ġdash": 8240, + "Ġdashboard": 18342, + "Ġdass": 2658, + "Ġdat": 1137, + "Ġdata": 1412, + "Ġdatab": 7104, + "Ġdatabase": 8149, + "Ġdatabases": 22380, + "Ġdatas": 20377, + "Ġdataset": 28872, + "Ġdatasets": 42856, + "Ġdate": 4002, + "Ġdated": 23804, + "Ġdates": 11691, + "Ġdating": 10689, + "Ġdato": 46971, + "Ġdatos": 27721, + "Ġdau": 37359, + "Ġdaughter": 4653, + "Ġdaughters": 17070, + "Ġdaunting": 37657, + "Ġdav": 11753, + "Ġdavon": 18574, + "Ġdaw": 43438, + "Ġdawn": 18192, + "Ġday": 786, + "Ġdaylight": 29964, + "Ġdays": 1708, + "Ġdaytime": 31908, + "Ġdazu": 13034, + "Ġdazz": 44078, + "ĠdaÃŃ": 48113, + "Ġde": 368, + "Ġdeactiv": 45428, + "Ġdead": 3116, + "Ġdeadline": 20615, + "Ġdeadlines": 37548, + "Ġdeadly": 18232, + "Ġdeaf": 15559, + "Ġdeal": 2028, + "Ġdealer": 24896, + "Ġdealers": 25955, + "Ġdealing": 6260, + "Ġdeals": 11215, + "Ġdealt": 15991, + "Ġdean": 31120, + "Ġdear": 6875, + "Ġdeath": 2966, + "Ġdeaths": 13027, + "Ġdeb": 3001, + "Ġdebate": 7958, + "Ġdebated": 42212, + "Ġdebates": 24203, + "Ġdebating": 40647, + "Ġdebe": 27422, + "Ġdeben": 49187, + "Ġdeber": 29671, + "Ġdebido": 50003, + "Ġdebit": 39709, + "Ġdebr": 19958, + "Ġdebris": 21942, + "Ġdebt": 7831, + "Ġdebts": 32528, + "Ġdebug": 24083, + "Ġdebugging": 45592, + "Ġdebut": 13828, + "Ġdebuted": 33392, + "Ġdec": 979, + "Ġdecade": 10378, + "Ġdecades": 7878, + "Ġdecay": 21039, + "Ġdece": 14088, + "Ġdeceased": 33156, + "Ġdeceive": 43440, + "Ġdeceived": 41304, + "Ġdecent": 8681, + "Ġdecentral": 26515, + "Ġdecentralized": 32870, + "Ġdeception": 40451, + "Ġdeci": 46358, + "Ġdecid": 21937, + "Ġdecide": 4536, + "Ġdecided": 3047, + "Ġdecides": 14898, + "Ġdeciding": 17990, + "Ġdecimal": 26601, + "Ġdecipher": 49859, + "Ġdecir": 10235, + "Ġdecis": 18206, + "Ġdecision": 3537, + "Ġdecisions": 5327, + "Ġdecisive": 34998, + "Ġdeck": 9341, + "Ġdecks": 32607, + "Ġdecl": 7488, + "Ġdeclar": 16694, + "Ġdeclaration": 27606, + "Ġdeclare": 19710, + "Ġdeclared": 15489, + "Ġdeclaring": 40374, + "Ġdecline": 15635, + "Ġdeclined": 29213, + "Ġdeclining": 34298, + "Ġdecomp": 22867, + "Ġdecomposition": 48356, + "Ġdeconst": 49473, + "Ġdecor": 7919, + "Ġdecorate": 24229, + "Ġdecorated": 28422, + "Ġdecorating": 39172, + "Ġdecoration": 26538, + "Ġdecorations": 32367, + "Ġdecorative": 35185, + "Ġdecre": 6853, + "Ġdecrease": 11514, + "Ġdecreased": 24436, + "Ġdecreases": 24108, + "Ġdecreasing": 23223, + "Ġdecree": 41071, + "ĠdecÃŃa": 37599, + "Ġded": 4172, + "Ġdedans": 48680, + "Ġdedi": 19731, + "Ġdedic": 37071, + "Ġdedicate": 30718, + "Ġdedicated": 8374, + "Ġdedication": 21813, + "Ġdedim": 31848, + "Ġdeduct": 31513, + "Ġdeduction": 46385, + "Ġdeed": 30299, + "Ġdeeds": 24539, + "Ġdeemed": 27637, + "Ġdeep": 2452, + "Ġdeepen": 45806, + "Ġdeeper": 7731, + "Ġdeepest": 28288, + "Ġdeeply": 8760, + "Ġdeer": 17120, + "Ġdef": 1060, + "Ġdefault": 7576, + "Ġdefe": 7486, + "Ġdefeat": 11785, + "Ġdefeated": 15563, + "Ġdefeating": 38381, + "Ġdefect": 16445, + "Ġdefects": 32655, + "Ġdefence": 25913, + "Ġdefend": 8602, + "Ġdefendant": 34053, + "Ġdefended": 34135, + "Ġdefender": 26537, + "Ġdefenders": 36063, + "Ġdefending": 21377, + "Ġdefens": 47746, + "Ġdefense": 7654, + "Ġdefenses": 35989, + "Ġdefensive": 16468, + "Ġdefer": 25704, + "Ġdefic": 19248, + "Ġdeficiency": 37500, + "Ġdeficit": 22132, + "Ġdeficits": 49616, + "Ġdefin": 1561, + "Ġdefine": 6964, + "Ġdefined": 7642, + "Ġdefines": 23122, + "Ġdefining": 17827, + "Ġdefinit": 28781, + "Ġdefinite": 25131, + "Ġdefinitely": 2138, + "Ġdefinition": 7123, + "Ġdefinitions": 21988, + "Ġdefinitive": 28152, + "Ġdeflect": 41373, + "Ġdeform": 36094, + "Ġdeformation": 34364, + "Ġdeg": 2821, + "Ġdegener": 40520, + "Ġdegli": 32079, + "Ġdegrad": 24740, + "Ġdegradation": 40519, + "Ġdegree": 4314, + "Ġdegrees": 5310, + "Ġdeh": 36892, + "Ġdehyd": 32102, + "Ġdei": 13874, + "Ġdein": 25641, + "Ġdeine": 28395, + "Ġdeinen": 49362, + "Ġdeity": 37939, + "Ġdeix": 9963, + "Ġdeixa": 26208, + "Ġdeixar": 19701, + "Ġdej": 21259, + "Ġdeja": 38260, + "Ġdejar": 24391, + "Ġdel": 1103, + "Ġdela": 21820, + "Ġdelay": 8577, + "Ġdelayed": 20268, + "Ġdelays": 28610, + "Ġdele": 16376, + "Ġdeleg": 15824, + "Ġdelegate": 40999, + "Ġdelegates": 45756, + "Ġdelegation": 36602, + "Ġdeles": 30789, + "Ġdelete": 12097, + "Ġdeleted": 22981, + "Ġdeleting": 48946, + "Ġdeliber": 14207, + "Ġdeliberate": 30515, + "Ġdeliberately": 23506, + "Ġdelic": 29831, + "Ġdelicate": 21417, + "Ġdelicious": 4809, + "Ġdelight": 11627, + "Ġdelighted": 18783, + "Ġdelightful": 35194, + "Ġdeliver": 4239, + "Ġdelivered": 10144, + "Ġdeliveries": 46448, + "Ġdelivering": 14666, + "Ġdelivers": 24860, + "Ġdelivery": 8982, + "Ġdell": 19781, + "Ġdella": 11618, + "Ġdelle": 16485, + "Ġdels": 23724, + "Ġdelta": 8289, + "Ġdelve": 43098, + "Ġdem": 1371, + "Ġdemain": 44389, + "Ġdemais": 36879, + "Ġdemand": 4733, + "Ġdemande": 26982, + "Ġdemanded": 28276, + "Ġdemander": 39169, + "Ġdemanding": 19960, + "Ġdemands": 15107, + "Ġdemandé": 48468, + "Ġdemasi": 35259, + "Ġdemasiado": 39820, + "Ġdeme": 35465, + "Ġdemek": 32491, + "Ġdement": 29950, + "Ġdementia": 31734, + "Ġdemi": 42188, + "Ġdemise": 45982, + "ĠdemiÅŁ": 46334, + "Ġdemo": 10723, + "Ġdemocr": 6366, + "Ġdemocracy": 10528, + "Ġdemocrat": 37221, + "Ġdemocratic": 15337, + "Ġdemocrats": 47665, + "Ġdemographic": 26331, + "Ġdemographics": 36884, + "Ġdemokrat": 49432, + "Ġdemol": 26933, + "Ġdemon": 14283, + "Ġdemonic": 41297, + "Ġdemons": 19733, + "Ġdemonst": 5516, + "Ġdemonstrate": 11698, + "Ġdemonstrated": 18772, + "Ġdemonstrates": 31034, + "Ġdemonstrating": 29889, + "Ġdemonstration": 16520, + "Ġdemonstrations": 34714, + "Ġdemos": 33788, + "Ġdemost": 41556, + "Ġdemás": 34682, + "Ġden": 1441, + "Ġdenen": 19998, + "Ġdengan": 13877, + "Ġdenial": 28754, + "Ġdenied": 17774, + "Ġdenim": 43535, + "Ġdenk": 21285, + "Ġdenke": 27245, + "Ġdenken": 28780, + "Ġdenkt": 38658, + "Ġdenn": 10471, + "Ġdenomin": 16244, + "Ġdenominator": 20687, + "Ġdenote": 45708, + "Ġdens": 24505, + "Ġdense": 18011, + "Ġdensity": 10305, + "Ġdent": 7059, + "Ġdental": 24473, + "Ġdentist": 28666, + "Ġdentro": 10856, + "Ġdeny": 15744, + "Ġdenying": 30363, + "Ġdep": 1367, + "Ġdepart": 9110, + "Ġdeparted": 47018, + "Ġdepartment": 5882, + "Ġdepartments": 15326, + "Ġdeparture": 25866, + "Ġdepend": 5672, + "Ġdepende": 47091, + "Ġdependence": 31704, + "Ġdependencies": 36606, + "Ġdependency": 33621, + "Ġdependent": 12334, + "Ġdepending": 5413, + "Ġdepends": 5946, + "Ġdepict": 31553, + "Ġdepicted": 30207, + "Ġdepiction": 47740, + "Ġdepicts": 48949, + "Ġdepl": 37546, + "Ġdeploy": 7274, + "Ġdeployed": 17826, + "Ġdeploying": 34198, + "Ġdeployment": 19317, + "Ġdepois": 13880, + "Ġdeport": 33485, + "Ġdepos": 19930, + "Ġdeposit": 19107, + "Ġdeposited": 42002, + "Ġdeposits": 30958, + "Ġdepreci": 40609, + "Ġdepress": 44248, + "Ġdepressed": 18713, + "Ġdepressing": 36355, + "Ġdepression": 10799, + "Ġdepri": 27095, + "Ġdeprived": 42086, + "Ġdepth": 7161, + "Ġdepths": 28439, + "Ġdepuis": 16062, + "Ġdeputy": 26692, + "Ġder": 1163, + "Ġdere": 15969, + "Ġderecho": 39055, + "Ġderechos": 47508, + "Ġderen": 48300, + "Ġderiv": 10151, + "Ġderivative": 13760, + "Ġderivatives": 33733, + "Ġderive": 28446, + "Ġderived": 18949, + "Ġderm": 33080, + "Ġdermat": 43706, + "Ġderni": 20562, + "Ġdernier": 29332, + "Ġdernière": 29028, + "Ġderrière": 31465, + "Ġders": 39636, + "Ġdes": 730, + "Ġdesaf": 34587, + "Ġdesap": 36546, + "Ġdesapare": 42316, + "Ġdesar": 21464, + "Ġdesarroll": 32501, + "Ġdesarrollo": 38295, + "Ġdesc": 7471, + "Ġdescend": 16333, + "Ġdescendants": 31693, + "Ġdescended": 41311, + "Ġdescending": 40182, + "Ġdescent": 23475, + "Ġdescob": 31700, + "Ġdescobrir": 45900, + "Ġdescon": 49801, + "Ġdescri": 2189, + "Ġdescribe": 6786, + "Ġdescribed": 7619, + "Ġdescribes": 15626, + "Ġdescribing": 16141, + "Ġdescript": 31280, + "Ġdescription": 3855, + "Ġdescriptions": 24406, + "Ġdescriptive": 42585, + "Ġdescrição": 42051, + "Ġdescub": 32592, + "Ġdesde": 10188, + "Ġdese": 27118, + "Ġdesem": 38850, + "Ġdesen": 18291, + "Ġdesenvol": 28683, + "Ġdesenvolv": 47835, + "Ġdesert": 11029, + "Ġdeserted": 47983, + "Ġdeserve": 9948, + "Ġdeserved": 27964, + "Ġdeserves": 17037, + "Ġdeserving": 48781, + "Ġdeshalb": 28457, + "Ġdesign": 1715, + "Ġdesignated": 21688, + "Ġdesignation": 40838, + "Ġdesigned": 4761, + "Ġdesigner": 11795, + "Ġdesigners": 16196, + "Ġdesigning": 14685, + "Ġdesigns": 11347, + "Ġdesirable": 30533, + "Ġdesire": 7516, + "Ġdesired": 14721, + "Ġdesires": 18005, + "Ġdesk": 10026, + "Ġdesktop": 14502, + "Ġdesp": 4887, + "Ġdespair": 25763, + "Ġdesper": 10679, + "Ġdesperate": 17601, + "Ġdesperately": 23726, + "Ġdesperation": 48980, + "Ġdespite": 7228, + "Ġdesprés": 42237, + "Ġdespués": 15283, + "Ġdess": 6874, + "Ġdessa": 18554, + "Ġdessas": 40083, + "Ġdesse": 17864, + "Ġdessert": 14593, + "Ġdesserts": 37913, + "Ġdesses": 36409, + "Ġdessus": 30677, + "Ġdest": 2677, + "Ġdesta": 45943, + "Ġdestac": 46393, + "Ġdeste": 38738, + "Ġdestin": 40254, + "Ġdestination": 12236, + "Ġdestinations": 37787, + "Ġdestined": 33169, + "Ġdestiny": 17893, + "Ġdestro": 15311, + "Ġdestroy": 5293, + "Ġdestroyed": 8937, + "Ġdestroying": 19926, + "Ġdestroys": 36714, + "Ġdestru": 34235, + "Ġdestruction": 13563, + "Ġdestructive": 26960, + "Ġdeswegen": 26482, + "Ġdet": 1141, + "Ġdetach": 43245, + "Ġdetached": 42050, + "Ġdetail": 2607, + "Ġdetailed": 9942, + "Ġdetailing": 42459, + "Ġdetails": 4365, + "Ġdetained": 41452, + "Ġdetal": 33185, + "Ġdetect": 5531, + "Ġdetected": 21896, + "Ġdetecting": 40237, + "Ġdetection": 17784, + "Ġdetective": 25571, + "Ġdetector": 25712, + "Ġdetectors": 46866, + "Ġdetention": 31291, + "Ġdeter": 15092, + "Ġdeterior": 26431, + "Ġdeterm": 3618, + "Ġdetermin": 15957, + "Ġdeterminant": 41296, + "Ġdetermination": 18432, + "Ġdetermine": 6997, + "Ġdetermined": 9540, + "Ġdetermines": 24799, + "Ġdetermining": 23751, + "Ġdeton": 39920, + "Ġdetox": 34904, + "Ġdetriment": 35430, + "Ġdetrimental": 45694, + "Ġdetta": 48888, + "Ġdette": 47126, + "Ġdetto": 41031, + "Ġdeu": 25661, + "Ġdeutlich": 24344, + "Ġdeuts": 23004, + "Ġdeutsche": 47502, + "Ġdeutschen": 39707, + "Ġdeux": 8208, + "Ġdeuxième": 29112, + "Ġdev": 1905, + "Ġdevam": 25645, + "Ġdevant": 28982, + "Ġdevast": 13959, + "Ġdevastated": 34880, + "Ġdevastating": 21280, + "Ġdeve": 17761, + "Ġdevelop": 1499, + "Ġdeveloped": 4743, + "Ġdeveloper": 10754, + "Ġdevelopers": 8849, + "Ġdeveloping": 6416, + "Ġdevelopment": 3250, + "Ġdevelopmental": 30160, + "Ġdevelopments": 20862, + "Ġdevelops": 25453, + "Ġdeven": 43115, + "Ġdevenir": 41271, + "Ġdever": 40739, + "Ġdevi": 31219, + "Ġdeviation": 25163, + "Ġdevice": 4302, + "Ġdevices": 5759, + "Ġdevient": 42100, + "Ġdevil": 13297, + "Ġdevo": 49717, + "Ġdevoir": 48920, + "Ġdevot": 13697, + "Ġdevote": 23184, + "Ġdevoted": 21815, + "Ġdevotees": 46960, + "Ġdevotion": 30671, + "Ġdevrait": 43356, + "Ġdew": 48745, + "Ġdez": 45057, + "Ġdeze": 18040, + "ĠdeÄŁ": 7725, + "ĠdeÄŁer": 47584, + "ĠdeÄŁil": 9920, + "ĠdeÄŁild": 49587, + "ĠdeÄŁiÅŁ": 30435, + "Ġdi": 1026, + "Ġdia": 6801, + "Ġdiab": 33227, + "Ġdiabetes": 13881, + "Ġdiabetic": 50238, + "Ġdiagn": 7234, + "Ġdiagnose": 36238, + "Ġdiagnosed": 16899, + "Ġdiagnosis": 15217, + "Ġdiagnost": 43215, + "Ġdiagnostic": 27897, + "Ġdiagon": 17405, + "Ġdiagonal": 21539, + "Ġdiagram": 10686, + "Ġdiagrams": 36709, + "Ġdial": 5502, + "Ġdialect": 24652, + "Ġdialog": 19308, + "Ġdialogue": 10221, + "Ġdialogues": 45551, + "Ġdiam": 7484, + "Ġdiameter": 14196, + "Ġdiamond": 16059, + "Ġdiamonds": 22612, + "Ġdiaper": 45121, + "Ġdiapers": 48496, + "Ġdiaphrag": 46711, + "Ġdiarr": 37565, + "Ġdiarrhea": 41282, + "Ġdiary": 26492, + "Ġdias": 21084, + "Ġdib": 23064, + "Ġdibuj": 46621, + "Ġdic": 14285, + "Ġdice": 10313, + "Ġdicen": 33816, + "Ġdich": 10390, + "Ġdicho": 27346, + "Ġdicht": 48774, + "Ġdiciendo": 42797, + "Ġdick": 18659, + "Ġdict": 12569, + "Ġdictate": 36071, + "Ġdictator": 42852, + "Ġdictators": 34708, + "Ġdictatorship": 44349, + "Ġdiction": 22352, + "Ġdictionary": 25890, + "Ġdid": 630, + "Ġdidn": 994, + "Ġdidnt": 38634, + "Ġdie": 978, + "Ġdied": 4539, + "Ġdies": 2714, + "Ġdiese": 6705, + "Ġdiesel": 21258, + "Ġdiesem": 10975, + "Ġdiesen": 12862, + "Ġdieser": 9053, + "Ġdieses": 12113, + "Ġdiet": 6339, + "Ġdieta": 37967, + "Ġdietary": 37421, + "Ġdiets": 33867, + "Ġdiez": 48165, + "Ġdif": 679, + "Ġdifer": 10918, + "Ġdiferen": 18959, + "Ġdiferencia": 38844, + "Ġdiferente": 20973, + "Ġdiferentes": 17686, + "Ġdiferença": 38336, + "Ġdiff": 7593, + "Ġdiffer": 743, + "Ġdifference": 2649, + "Ġdifferences": 7300, + "Ġdifferent": 819, + "Ġdifferenti": 27372, + "Ġdifferential": 15756, + "Ġdifferentiate": 23203, + "Ġdifferentiation": 38902, + "Ġdifferently": 7614, + "Ġdiffers": 37761, + "Ġdiffic": 2204, + "Ġdifficile": 26607, + "Ġdifficult": 2252, + "Ġdifficulties": 14399, + "Ġdifficulty": 10360, + "Ġdiffuse": 42165, + "Ġdiffusion": 25242, + "Ġdiffé": 14397, + "Ġdifférence": 45952, + "Ġdifférent": 19384, + "Ġdifférentes": 35438, + "Ġdifférents": 33948, + "Ġdific": 29615, + "ĠdifÃŃ": 16774, + "ĠdifÃŃcil": 17258, + "Ġdig": 2528, + "Ġdigamos": 36430, + "Ġdigest": 13884, + "Ġdigestion": 40560, + "Ġdigestive": 32696, + "Ġdigging": 17343, + "Ġdigit": 14293, + "Ġdigital": 4562, + "Ġdigitally": 36938, + "Ġdigits": 27011, + "Ġdign": 15308, + "Ġdignity": 19672, + "Ġdigo": 22990, + "Ġdij": 47709, + "Ġdije": 39414, + "Ġdijo": 27024, + "Ġdikk": 48926, + "Ġdil": 11504, + "Ġdile": 25623, + "Ġdilemma": 34312, + "Ġdilig": 47646, + "Ġdiligence": 40046, + "Ġdiligent": 50251, + "Ġdiligently": 49013, + "Ġdim": 5013, + "Ġdime": 36330, + "Ġdimension": 10139, + "Ġdimensional": 18795, + "Ġdimensions": 12819, + "Ġdimin": 15739, + "Ġdiminish": 48696, + "Ġdiminished": 40206, + "Ġdin": 3791, + "Ġdinero": 27923, + "Ġding": 21211, + "Ġdingen": 40870, + "Ġdings": 32724, + "Ġdinheiro": 23760, + "Ġdining": 17874, + "Ġdinner": 6148, + "Ġdinosaur": 23627, + "Ġdinosaurs": 25851, + "Ġdio": 31965, + "Ġdiode": 40787, + "Ġdiox": 18982, + "Ġdioxide": 19590, + "Ġdip": 10460, + "Ġdipl": 11432, + "Ġdiplom": 20053, + "Ġdiploma": 35770, + "Ġdiplomacy": 35184, + "Ġdiplomatic": 26553, + "Ġdipped": 45162, + "Ġdipping": 35584, + "Ġdips": 47814, + "Ġdir": 4746, + "Ġdire": 1264, + "Ġdirect": 2047, + "Ġdirectamente": 46230, + "Ġdirected": 12898, + "Ġdirectement": 37297, + "Ġdirecting": 26979, + "Ġdirection": 3513, + "Ġdirectional": 42242, + "Ġdirections": 11095, + "Ġdirective": 45444, + "Ġdirectly": 3838, + "Ġdirector": 5391, + "Ġdirectors": 17307, + "Ġdirectory": 21120, + "Ġdireito": 36601, + "Ġdirekt": 20315, + "Ġdiret": 48196, + "Ġdirig": 35243, + "Ġdirt": 11483, + "Ġdirty": 9360, + "Ġdis": 717, + "Ġdisabilities": 13367, + "Ġdisability": 11090, + "Ġdisable": 28362, + "Ġdisabled": 15191, + "Ġdisad": 15828, + "Ġdisadvant": 26380, + "Ġdisadvantage": 24292, + "Ġdisadvantaged": 46826, + "Ġdisadvantages": 37431, + "Ġdisag": 10414, + "Ġdisagre": 23926, + "Ġdisagree": 14091, + "Ġdisagreement": 38947, + "Ġdisapp": 4518, + "Ġdisappe": 6657, + "Ġdisappear": 11596, + "Ġdisappearance": 37049, + "Ġdisappeared": 13954, + "Ġdisappearing": 34900, + "Ġdisappears": 25527, + "Ġdisappoint": 8505, + "Ġdisappointed": 13856, + "Ġdisappointing": 25054, + "Ġdisappointment": 28175, + "Ġdisast": 42103, + "Ġdisaster": 11293, + "Ġdisasters": 27966, + "Ġdisastrous": 44502, + "Ġdisbel": 36105, + "Ġdisc": 2983, + "Ġdiscard": 31597, + "Ġdiscarded": 45469, + "Ġdiscern": 30868, + "Ġdischarge": 21718, + "Ġdischarged": 37081, + "Ġdisci": 6507, + "Ġdiscipl": 8644, + "Ġdisciple": 32100, + "Ġdisciples": 17209, + "Ġdiscipline": 13635, + "Ġdisciplined": 40061, + "Ġdisciplines": 21919, + "Ġdiscl": 17092, + "Ġdisclaimer": 40896, + "Ġdisclose": 36146, + "Ġdisclosure": 30392, + "Ġdisco": 3622, + "Ġdiscomfort": 28552, + "Ġdisconnect": 14299, + "Ġdisconnected": 29426, + "Ġdiscontin": 31420, + "Ġdiscord": 32989, + "Ġdiscount": 11635, + "Ġdiscounts": 37930, + "Ġdiscour": 21497, + "Ġdiscouraged": 35010, + "Ġdiscours": 43609, + "Ġdiscourse": 23938, + "Ġdiscover": 4411, + "Ġdiscovered": 6941, + "Ġdiscoveries": 28400, + "Ġdiscovering": 24773, + "Ġdiscovers": 44522, + "Ġdiscovery": 12114, + "Ġdiscret": 25656, + "Ġdiscrete": 27706, + "Ġdiscretion": 30140, + "Ġdiscrimin": 20828, + "Ġdiscriminate": 47833, + "Ġdiscrimination": 15973, + "Ġdiscs": 37525, + "Ġdiscuss": 2248, + "Ġdiscussed": 7152, + "Ġdiscussing": 10850, + "Ġdiscussion": 5017, + "Ġdiscussions": 11088, + "Ġdiscut": 42085, + "Ġdise": 3814, + "Ġdisease": 4752, + "Ġdiseases": 11044, + "Ġdisent": 37313, + "Ġdisfr": 37114, + "Ġdisg": 14116, + "Ġdisgr": 32632, + "Ġdisgrace": 41702, + "Ġdisgu": 23333, + "Ġdisguise": 32751, + "Ġdisgusting": 17552, + "Ġdish": 5025, + "Ġdishes": 10814, + "Ġdishon": 37127, + "Ġdishwas": 35992, + "Ġdishwasher": 38009, + "Ġdisinfect": 33334, + "Ġdisintegr": 45354, + "Ġdisk": 12355, + "Ġdisks": 41617, + "Ġdiskut": 36760, + "Ġdisl": 43186, + "Ġdislike": 26006, + "Ġdisloc": 39025, + "Ġdism": 12456, + "Ġdismant": 30506, + "Ġdismiss": 16974, + "Ġdismissed": 29970, + "Ġdisobed": 49171, + "Ġdisorder": 13399, + "Ġdisorders": 20261, + "Ġdisp": 4920, + "Ġdispar": 14548, + "Ġdisparities": 32514, + "Ġdisparity": 47415, + "Ġdispatch": 36729, + "Ġdispers": 24631, + "Ġdispersed": 48059, + "Ġdispl": 14996, + "Ġdisplaced": 33692, + "Ġdisplacement": 21899, + "Ġdisplay": 4674, + "Ġdisplayed": 16372, + "Ġdisplaying": 36834, + "Ġdisplays": 20119, + "Ġdispon": 23311, + "Ġdispos": 15885, + "Ġdisposable": 41578, + "Ġdisposal": 26400, + "Ġdispose": 42537, + "Ġdisposit": 34769, + "Ġdisposition": 40293, + "Ġdisproportion": 28734, + "Ġdisproportionately": 43397, + "Ġdisput": 37669, + "Ġdispute": 25379, + "Ġdisputes": 39666, + "Ġdisreg": 36405, + "Ġdisregard": 44493, + "Ġdisrespect": 27058, + "Ġdisrespectful": 47750, + "Ġdisrupt": 14124, + "Ġdisrupted": 42271, + "Ġdisruption": 28751, + "Ġdisruptive": 37865, + "Ġdiss": 7802, + "Ġdisse": 17581, + "Ġdissect": 48332, + "Ġdissemin": 34585, + "Ġdissert": 36828, + "Ġdissertation": 39555, + "Ġdissip": 29544, + "Ġdisso": 20088, + "Ġdissoci": 44446, + "Ġdissol": 15840, + "Ġdissolve": 30150, + "Ġdissolved": 30651, + "Ġdist": 1483, + "Ġdistance": 4560, + "Ġdistances": 22182, + "Ġdistancing": 18567, + "Ġdistant": 17275, + "Ġdistill": 42923, + "Ġdistinct": 10644, + "Ġdistinction": 16844, + "Ġdistinctive": 27766, + "Ġdistingu": 11365, + "Ġdistinguish": 20206, + "Ġdistinguished": 21702, + "Ġdistint": 31489, + "Ġdistintos": 49337, + "Ġdistort": 37555, + "Ġdistorted": 33431, + "Ġdistortion": 28426, + "Ġdistract": 9945, + "Ġdistracted": 21658, + "Ġdistracting": 36689, + "Ġdistraction": 30217, + "Ġdistractions": 37887, + "Ġdistress": 24516, + "Ġdistrib": 4400, + "Ġdistribute": 20594, + "Ġdistributed": 12631, + "Ġdistributing": 41406, + "Ġdistribution": 7316, + "Ġdistributions": 37870, + "Ġdistributor": 49192, + "Ġdistrict": 6566, + "Ġdistricts": 16815, + "Ġdistur": 10242, + "Ġdisturb": 18071, + "Ġdisturbance": 35684, + "Ġdisturbed": 30558, + "Ġdisturbing": 21903, + "Ġdit": 6176, + "Ġditch": 25325, + "Ġdites": 48291, + "Ġdiu": 40297, + "Ġdiv": 3414, + "Ġdive": 9192, + "Ġdiver": 18558, + "Ġdivergence": 47387, + "Ġdivers": 6111, + "Ġdiverse": 9521, + "Ġdiversion": 49422, + "Ġdiversity": 8811, + "Ġdivert": 23781, + "Ġdivid": 4996, + "Ġdivide": 9845, + "Ġdivided": 6666, + "Ġdividend": 29796, + "Ġdividends": 39675, + "Ġdivides": 41347, + "Ġdividing": 26764, + "Ġdivine": 13678, + "Ġdiving": 20241, + "Ġdivis": 25974, + "Ġdivision": 10044, + "Ġdivisions": 24328, + "Ġdivor": 11861, + "Ġdivorce": 16052, + "Ġdivorced": 27670, + "Ġdivul": 47291, + "Ġdiy": 34275, + "Ġdiye": 12968, + "Ġdiyor": 17587, + "Ġdiyorsun": 38537, + "Ġdiyorum": 37190, + "Ġdiz": 12098, + "Ġdizendo": 47026, + "Ġdizer": 17159, + "Ġdizzy": 31098, + "ĠdiÄŁer": 44525, + "Ġdl": 37873, + "Ġdla": 12285, + "Ġdlatego": 32205, + "Ġdni": 46125, + "Ġdo": 360, + "Ġdoable": 41183, + "Ġdob": 27082, + "Ġdobr": 23067, + "Ġdobre": 41959, + "Ġdobry": 35884, + "Ġdobrze": 28335, + "Ġdoc": 3211, + "Ġdoch": 9243, + "Ġdock": 20929, + "Ġdocs": 45623, + "Ġdoct": 17112, + "Ġdoctor": 4631, + "Ġdoctoral": 41419, + "Ġdoctors": 8778, + "Ġdoctr": 46040, + "Ġdoctrine": 23290, + "Ġdocument": 4166, + "Ġdocumentaries": 41630, + "Ġdocumentary": 15674, + "Ġdocumentation": 14333, + "Ġdocumented": 23007, + "Ġdocumenting": 42360, + "Ġdocuments": 8512, + "Ġdod": 13886, + "Ġdodge": 27238, + "Ġdoe": 35319, + "Ġdoen": 15159, + "Ġdoes": 775, + "Ġdoesn": 1177, + "Ġdoet": 44138, + "Ġdog": 3000, + "Ġdogs": 7197, + "Ġdoin": 23503, + "Ġdoing": 884, + "Ġdois": 11854, + "Ġdoit": 19193, + "Ġdoivent": 44341, + "Ġdok": 25037, + "Ġdokument": 40858, + "ĠdokÅĤad": 45864, + "Ġdol": 17858, + "Ġdoll": 2722, + "Ġdollar": 7241, + "Ġdollars": 3808, + "Ġdolls": 29134, + "Ġdolor": 42416, + "Ġdolph": 29188, + "Ġdolphin": 46759, + "Ġdolphins": 44835, + "Ġdom": 3285, + "Ġdomain": 9274, + "Ġdomains": 25514, + "Ġdome": 27191, + "Ġdomest": 39125, + "Ġdomestic": 10939, + "Ġdomin": 8859, + "Ġdominance": 34987, + "Ġdominant": 15657, + "Ġdominate": 28246, + "Ġdominated": 23755, + "Ġdominating": 43306, + "Ġdomination": 41502, + "Ġdomu": 48465, + "Ġdon": 500, + "Ġdona": 48583, + "Ġdonate": 17751, + "Ġdonated": 23723, + "Ġdonating": 36686, + "Ġdonation": 19724, + "Ġdonations": 22705, + "Ġdonc": 5926, + "Ġdonde": 10488, + "Ġdone": 1096, + "Ġdong": 33079, + "Ġdonkey": 34834, + "Ġdonn": 33258, + "Ġdonne": 21837, + "Ġdonner": 20882, + "Ġdonné": 31165, + "Ġdonnées": 40101, + "Ġdonor": 25493, + "Ġdonors": 25521, + "Ġdont": 9400, + "Ġdonut": 33782, + "Ġdonuts": 36826, + "ĠdonÃŃt": 36311, + "Ġdoo": 27572, + "Ġdoom": 37131, + "Ġdoomed": 33847, + "Ġdoor": 2853, + "Ġdoors": 8077, + "Ġdoorway": 41992, + "Ġdop": 21900, + "Ġdopamine": 37219, + "Ġdope": 23383, + "Ġdopo": 35196, + "Ġdopp": 44862, + "Ġdor": 26313, + "Ġdorm": 12521, + "Ġdormir": 33098, + "Ġdort": 15775, + "Ġdos": 4491, + "Ġdose": 14041, + "Ġdoses": 22576, + "Ġdoss": 47831, + "Ġdost": 20568, + "ĠdostÄĻp": 48209, + "Ġdot": 5893, + "Ġdots": 15026, + "Ġdotted": 37459, + "Ġdou": 2482, + "Ġdoub": 10831, + "Ġdouble": 3834, + "Ġdoubled": 24405, + "Ġdoubles": 31634, + "Ġdoubling": 33651, + "Ġdoubt": 6385, + "Ġdoubts": 22618, + "Ġdough": 7984, + "Ġdoute": 41984, + "Ġdov": 30870, + "Ġdove": 23287, + "Ġdow": 9459, + "Ġdown": 760, + "Ġdownhill": 29929, + "Ġdownload": 5484, + "Ġdownloaded": 21748, + "Ġdownloading": 32529, + "Ġdownloads": 36553, + "Ġdowns": 21554, + "Ġdownside": 25060, + "Ġdownstairs": 20148, + "Ġdownstream": 30621, + "Ġdownt": 11655, + "Ġdowntime": 49648, + "Ġdowntown": 14209, + "Ġdownward": 24805, + "Ġdownwards": 39880, + "Ġdozen": 16654, + "Ġdozens": 18431, + "ĠdoÄŁ": 18557, + "ĠdoÄŁru": 28297, + "ĠdoÅĽwiad": 46661, + "ĠdoÅĽÄĩ": 49333, + "Ġdr": 1224, + "Ġdra": 1617, + "Ġdraft": 11206, + "Ġdrafted": 36288, + "Ġdrafting": 46378, + "Ġdrag": 5286, + "Ġdragged": 25717, + "Ġdragging": 24385, + "Ġdragon": 12165, + "Ġdragons": 27240, + "Ġdrain": 12339, + "Ġdrainage": 32973, + "Ġdrained": 37018, + "Ġdraining": 42916, + "Ġdrains": 47694, + "Ġdram": 7538, + "Ġdrama": 9412, + "Ġdramas": 36739, + "Ġdramat": 42749, + "Ġdramatic": 12023, + "Ġdramatically": 17548, + "Ġdran": 32801, + "Ġdrank": 21011, + "Ġdrastic": 36821, + "Ġdrastically": 29673, + "Ġdrauf": 22763, + "ĠdrauÃŁen": 44602, + "Ġdraw": 2642, + "Ġdrawer": 24039, + "Ġdrawers": 38302, + "Ġdrawing": 6316, + "Ġdrawings": 18618, + "Ġdrawn": 10117, + "Ġdraws": 20045, + "Ġdre": 22540, + "Ġdread": 22236, + "Ġdream": 3055, + "Ġdreamed": 26726, + "Ġdreaming": 21475, + "Ġdreams": 7505, + "Ġdrei": 16809, + "Ġdress": 5231, + "Ġdressed": 12386, + "Ġdresses": 25156, + "Ġdressing": 17211, + "Ġdrew": 12804, + "Ġdri": 1630, + "Ġdrie": 50049, + "Ġdried": 13538, + "Ġdries": 33997, + "Ġdrift": 19699, + "Ġdrifting": 37973, + "Ġdrill": 11392, + "Ġdrilled": 38210, + "Ġdrilling": 26290, + "Ġdrills": 36126, + "Ġdrin": 24534, + "Ġdrink": 2822, + "Ġdrinking": 7583, + "Ġdrinks": 12142, + "Ġdrip": 29376, + "Ġdripping": 37460, + "Ġdrive": 3332, + "Ġdriven": 9555, + "Ġdriver": 6787, + "Ġdrivers": 11590, + "Ġdrives": 11754, + "Ġdriveway": 38276, + "Ġdriving": 4840, + "Ġdrizzle": 48695, + "Ġdro": 3789, + "Ġdroit": 25971, + "Ġdroite": 37321, + "Ġdrone": 13852, + "Ġdrones": 23823, + "Ġdrop": 3270, + "Ġdropdown": 47599, + "Ġdroplets": 41573, + "Ġdropped": 8119, + "Ġdropping": 13601, + "Ġdrops": 11438, + "Ġdrought": 22900, + "Ġdrove": 13226, + "Ġdrown": 20337, + "Ġdrowned": 38233, + "Ġdrowning": 37198, + "Ġdru": 38864, + "Ġdrug": 4110, + "Ġdrugiej": 47373, + "Ġdrugs": 7766, + "Ġdruk": 47995, + "Ġdrum": 10206, + "Ġdrummer": 38535, + "Ġdrums": 20420, + "Ġdrunk": 11192, + "Ġdry": 4016, + "Ġdryer": 29880, + "Ġdrying": 22709, + "Ġdt": 36423, + "Ġdu": 1581, + "Ġdua": 40173, + "Ġdual": 11848, + "Ġduas": 19463, + "Ġdub": 18540, + "Ġdubbed": 43686, + "Ġduck": 12482, + "Ġducks": 34468, + "Ġduct": 25954, + "Ġdud": 38512, + "Ġduda": 43881, + "Ġdude": 6449, + "Ġdudes": 27717, + "Ġdue": 3462, + "Ġduel": 36296, + "Ġdues": 41753, + "Ġdug": 22954, + "Ġduh": 43763, + "Ġdul": 44012, + "Ġdull": 23471, + "Ġdulu": 31643, + "Ġdum": 16784, + "Ġdumb": 10316, + "Ġdumbbell": 39316, + "Ġdummy": 35064, + "Ġdump": 11430, + "Ġdumped": 32131, + "Ġdumping": 42224, + "Ġdumpling": 46517, + "Ġdumplings": 31721, + "Ġdun": 10234, + "Ġdungeon": 27919, + "Ġdungeons": 48347, + "Ġdunk": 33555, + "Ġdunno": 22751, + "Ġduo": 28127, + "Ġduplic": 17154, + "Ġduplicate": 23976, + "Ġdur": 4861, + "Ġdura": 43416, + "Ġdurability": 33664, + "Ġdurable": 22308, + "Ġdurant": 43941, + "Ġdurante": 14427, + "Ġduration": 16365, + "Ġdurch": 7131, + "Ġdurchaus": 42840, + "Ġduring": 1830, + "Ġdurum": 35218, + "Ġdus": 14284, + "Ġdust": 8634, + "Ġdusty": 41973, + "Ġduties": 20910, + "Ġduty": 9776, + "Ġduy": 37385, + "Ġduż": 21783, + "Ġdużo": 26673, + "Ġdw": 27379, + "Ġdwa": 35045, + "Ġdwar": 24524, + "Ġdwarf": 35527, + "Ġdwell": 24355, + "Ġdwelling": 41750, + "Ġdx": 30017, + "Ġdy": 14584, + "Ġdye": 20179, + "Ġdyed": 43199, + "Ġdying": 8639, + "Ġdynam": 5999, + "Ġdynamic": 8546, + "Ġdynamically": 43492, + "Ġdynamics": 15679, + "Ġdynasty": 32841, + "Ġdys": 15243, + "Ġdysfunction": 32002, + "Ġdz": 9758, + "Ġdzi": 31981, + "ĠdziaÅĤ": 27121, + "ĠdziaÅĤa": 37903, + "Ġdzie": 17953, + "Ġdzieci": 38612, + "ĠdzieÅĦ": 47568, + "Ġdzisiaj": 25772, + "ĠdziÄĻki": 45003, + "Ġdá": 14401, + "Ġdär": 12976, + "ĠdÃ¥": 13762, + "Ġdès": 34163, + "Ġdé": 2795, + "Ġdéb": 36529, + "Ġdébut": 22594, + "Ġdéc": 9198, + "Ġdécidé": 43206, + "Ġdécouv": 35687, + "Ġdécouvrir": 47756, + "Ġdéf": 30456, + "Ġdéfin": 40763, + "ĠdéjÃł": 12027, + "Ġdém": 22761, + "Ġdémocr": 47146, + "Ġdép": 27998, + "Ġdépart": 37745, + "Ġdépend": 45768, + "Ġdépl": 47687, + "Ġdés": 18963, + "Ġdét": 22312, + "Ġdévelop": 22558, + "Ġdévelopp": 33379, + "Ġdéveloppement": 45128, + "Ġdó": 18816, + "Ġdólares": 32596, + "Ġdónde": 34264, + "Ġdö": 26089, + "Ġdön": 24782, + "Ġdú": 39299, + "Ġdû": 42300, + "Ġdü": 19378, + "Ġdüny": 32262, + "Ġdür": 23637, + "Ġdürfen": 29493, + "ĠdÃ¼ÅŁ": 12856, + "ĠdÃ¼ÅŁÃ¼n": 21755, + "ĠdÃŃa": 12271, + "ĠdÃŃas": 19527, + "ĠdÄ±ÅŁ": 26602, + "ĠdÅĤ": 44042, + "Ġe": 308, + "ĠeBay": 33803, + "Ġeach": 1184, + "Ġeager": 18259, + "Ġeagle": 30745, + "Ġear": 1273, + "Ġearbuds": 40441, + "Ġearlier": 3071, + "Ġearliest": 20573, + "Ġearly": 2440, + "Ġearn": 6012, + "Ġearned": 12283, + "Ġearnest": 48171, + "Ġearning": 12353, + "Ġearnings": 20548, + "Ġearns": 46936, + "Ġearrings": 31902, + "Ġears": 8798, + "Ġearth": 4120, + "Ġearthly": 46262, + "Ġearthqu": 14814, + "Ġearthquake": 18778, + "Ġearthquakes": 34048, + "Ġeas": 1195, + "Ġease": 12708, + "Ġeasier": 3571, + "Ġeasiest": 12889, + "Ġeasily": 3612, + "Ġeast": 10648, + "Ġeastern": 19346, + "Ġeasy": 1858, + "Ġeat": 1862, + "Ġeaten": 12158, + "Ġeater": 40362, + "Ġeating": 3936, + "Ġeats": 18109, + "Ġeben": 11375, + "Ġebenfalls": 48977, + "Ġec": 11437, + "Ġecc": 29613, + "Ġeccentric": 42629, + "Ġech": 36803, + "Ġecho": 14300, + "Ġechoes": 47051, + "Ġecht": 13972, + "Ġeclipse": 35722, + "Ġeco": 30226, + "Ġecological": 31054, + "Ġecology": 39683, + "Ġecon": 23692, + "Ġeconom": 2520, + "Ġeconomic": 4836, + "Ġeconomical": 42473, + "Ġeconomically": 26811, + "Ġeconomics": 14564, + "Ġeconomies": 23158, + "Ġeconomist": 36696, + "Ġeconomists": 32431, + "Ġeconomy": 5010, + "Ġeconóm": 33537, + "Ġecos": 11007, + "Ġecosystem": 11311, + "Ġecosystems": 32647, + "Ġed": 1257, + "Ġede": 25959, + "Ġeden": 47727, + "Ġeder": 23252, + "Ġederim": 37749, + "Ġedge": 4691, + "Ġedges": 8819, + "Ġedible": 30666, + "Ġedit": 8129, + "Ġedited": 23016, + "Ġediting": 10000, + "Ġedition": 11377, + "Ġeditions": 44840, + "Ġeditor": 9839, + "Ġeditorial": 33412, + "Ġeditors": 31446, + "Ġedits": 41752, + "Ġediyor": 30761, + "Ġediyorum": 39203, + "Ġeduc": 2400, + "Ġeducación": 48861, + "Ġeducate": 16092, + "Ġeducated": 15872, + "Ġeducating": 28835, + "Ġeducation": 3309, + "Ġeducational": 10189, + "Ġeducator": 31237, + "Ġeducators": 22819, + "Ġeel": 47521, + "Ġeen": 3881, + "Ġeens": 31246, + "Ġeer": 25937, + "Ġeerste": 35586, + "Ġef": 31482, + "Ġefect": 22565, + "Ġefecto": 46783, + "Ġefendim": 43556, + "Ġeff": 1244, + "Ġeffect": 1802, + "Ġeffective": 4942, + "Ġeffectively": 8659, + "Ġeffectivement": 40126, + "Ġeffectiveness": 21208, + "Ġeffects": 5065, + "Ġeffet": 30960, + "Ġeffic": 4703, + "Ġefficacy": 33492, + "Ġefficiency": 10493, + "Ġefficient": 7148, + "Ġefficiently": 19621, + "Ġeffort": 4630, + "Ġefforts": 6484, + "Ġefic": 49510, + "Ġefter": 24827, + "Ġeg": 24263, + "Ġegal": 31528, + "Ġegent": 41170, + "Ġegg": 3777, + "Ġeggplant": 43018, + "Ġeggs": 6466, + "Ġego": 14495, + "Ġegy": 16524, + "Ġeh": 7670, + "Ġeher": 24332, + "Ġehkä": 47559, + "Ġehrlich": 40872, + "Ġei": 14020, + "Ġeig": 9728, + "Ġeigen": 10446, + "Ġeigene": 38549, + "Ġeigenen": 28702, + "Ġeigenlijk": 23116, + "Ġeigentlich": 10926, + "Ġeight": 3180, + "Ġeighteen": 31755, + "Ġeighth": 19495, + "Ġeighty": 26348, + "Ġein": 1343, + "Ġeine": 3018, + "Ġeinem": 6827, + "Ġeinen": 4891, + "Ġeiner": 6850, + "Ġeines": 18599, + "Ġeinf": 38627, + "Ġeinfach": 7281, + "Ġeing": 17002, + "Ġeinge": 30061, + "Ġeinges": 49821, + "Ġeinige": 28338, + "Ġeinmal": 11078, + "Ġeins": 21889, + "Ġeinz": 21586, + "Ġeinzel": 36731, + "Ġeinzige": 47743, + "Ġeither": 2139, + "Ġej": 10012, + "Ġeje": 39564, + "Ġeject": 32520, + "Ġejemplo": 13358, + "Ġejerc": 39151, + "Ġek": 13359, + "Ġeks": 30724, + "Ġel": 806, + "Ġela": 7175, + "Ġelabor": 16298, + "Ġelaborate": 20945, + "Ġelas": 23003, + "Ġelastic": 17115, + "Ġelasticity": 46260, + "Ġelbow": 18507, + "Ġelbows": 26620, + "Ġeld": 8912, + "Ġelder": 12995, + "Ġelderly": 19682, + "Ġelders": 22737, + "Ġeldest": 38096, + "Ġele": 1118, + "Ġelect": 2185, + "Ġelected": 11776, + "Ġelection": 6618, + "Ġelections": 12870, + "Ġelector": 45948, + "Ġelectoral": 28633, + "Ġelectr": 7072, + "Ġelectric": 5210, + "Ġelectrical": 12147, + "Ġelectricity": 10356, + "Ġelectro": 16717, + "Ġelectrod": 44216, + "Ġelectrode": 38346, + "Ġelectrodes": 47824, + "Ġelectroly": 39197, + "Ġelectromagn": 27528, + "Ġelectromagnetic": 32214, + "Ġelectron": 6084, + "Ġelectronic": 10092, + "Ġelectronically": 49677, + "Ġelectronics": 20611, + "Ġelectrons": 14265, + "Ġeleg": 14459, + "Ġelegant": 21117, + "Ġelekt": 26991, + "Ġelement": 4478, + "Ġelemental": 39427, + "Ġelementary": 16429, + "Ġelemento": 47961, + "Ġelementos": 35797, + "Ġelements": 4959, + "Ġelephant": 19791, + "Ġelephants": 33015, + "Ġeles": 10244, + "Ġelev": 7701, + "Ġelevate": 33054, + "Ġelevated": 23457, + "Ġelevation": 25827, + "Ġelevator": 18782, + "Ġeleven": 21090, + "Ġelf": 35565, + "Ġeli": 34486, + "Ġelig": 31089, + "Ġeligibility": 32826, + "Ġeligible": 14728, + "Ġelim": 24333, + "Ġelimin": 7892, + "Ġeliminate": 13819, + "Ġeliminated": 20308, + "Ġeliminates": 49893, + "Ġeliminating": 31203, + "Ġelimination": 29224, + "Ġelite": 17801, + "Ġelites": 44678, + "Ġelk": 44818, + "Ġelkaar": 35930, + "Ġell": 8284, + "Ġella": 18823, + "Ġellas": 38397, + "Ġelle": 8404, + "Ġeller": 12519, + "Ġelles": 23576, + "Ġello": 33549, + "Ġellos": 16353, + "Ġelo": 38682, + "Ġelong": 40786, + "Ġels": 10302, + "Ġelse": 1646, + "Ġelsewhere": 14517, + "Ġelves": 43087, + "Ġelét": 36920, + "Ġem": 846, + "Ġemail": 3796, + "Ġemailed": 45460, + "Ġemails": 12524, + "Ġeman": 28211, + "Ġemb": 4605, + "Ġemba": 32660, + "Ġembaixo": 36612, + "Ġembar": 18801, + "Ġembargo": 23955, + "Ġembark": 29832, + "Ġembarrass": 9187, + "Ġembarrassed": 16843, + "Ġembarrassing": 17299, + "Ġembarrassment": 43536, + "Ġembassy": 38012, + "Ġembed": 12240, + "Ġembedded": 16741, + "Ġemblem": 35949, + "Ġembod": 28935, + "Ġembodied": 42046, + "Ġembody": 42575, + "Ġembora": 44681, + "Ġembr": 9392, + "Ġembrace": 14038, + "Ġembraced": 28673, + "Ġembracing": 31596, + "Ġembro": 27925, + "Ġembroider": 29833, + "Ġembroidery": 43762, + "Ġembry": 31588, + "Ġemer": 4345, + "Ġemerge": 21511, + "Ġemerged": 20178, + "Ġemergen": 33983, + "Ġemergence": 36211, + "Ġemergencies": 43483, + "Ġemergency": 7473, + "Ġemerges": 38965, + "Ġemerging": 14989, + "Ġemission": 29513, + "Ġemissions": 14607, + "Ġemit": 32084, + "Ġemitted": 44897, + "Ġemo": 19611, + "Ġemoc": 28283, + "Ġemoji": 31595, + "Ġemot": 3626, + "Ġemotion": 8913, + "Ġemotional": 6863, + "Ġemotionally": 17991, + "Ġemotions": 8462, + "Ġemp": 4012, + "Ġempath": 27155, + "Ġempathy": 18701, + "Ġemperor": 20255, + "Ġempez": 18730, + "Ġempezar": 31168, + "Ġemphas": 7896, + "Ġemphasis": 16271, + "Ġemphasize": 16078, + "Ġemphasized": 34068, + "Ġemphasizes": 48856, + "Ġemphasizing": 45550, + "Ġempieza": 44577, + "Ġempir": 25790, + "Ġempire": 17506, + "Ġempirical": 31886, + "Ġemple": 36820, + "Ġemploy": 3188, + "Ġemployed": 20115, + "Ġemployee": 10738, + "Ġemployees": 6619, + "Ġemployer": 16205, + "Ġemployers": 16744, + "Ġemployment": 11949, + "Ġempower": 11071, + "Ġempowered": 27898, + "Ġempowering": 28261, + "Ġempowerment": 34825, + "Ġempre": 43223, + "Ġempres": 13627, + "Ġempresa": 22682, + "Ġempresas": 26433, + "Ġempt": 6113, + "Ġemptiness": 41993, + "Ġempty": 6707, + "Ġemulate": 45497, + "Ġen": 465, + "Ġenable": 9528, + "Ġenabled": 15172, + "Ġenables": 17077, + "Ġenabling": 23148, + "Ġenact": 25909, + "Ġenacted": 41313, + "Ġenam": 44549, + "Ġenc": 2058, + "Ġenca": 28934, + "Ġencant": 42380, + "Ġencanta": 47597, + "Ġencaps": 38745, + "Ġencara": 47287, + "Ġench": 35213, + "Ġencima": 40265, + "Ġencl": 20987, + "Ġenclosed": 42089, + "Ġenclosure": 34093, + "Ġencoding": 43430, + "Ġencompass": 28268, + "Ġencompasses": 49866, + "Ġencont": 10176, + "Ġencontra": 43621, + "Ġencontramos": 45049, + "Ġencontrar": 17525, + "Ġencore": 10122, + "Ġencoun": 7669, + "Ġencounter": 8593, + "Ġencountered": 20381, + "Ġencounters": 26310, + "Ġencour": 3959, + "Ġencourage": 5373, + "Ġencouraged": 14658, + "Ġencouragement": 25683, + "Ġencourages": 28071, + "Ġencouraging": 14580, + "Ġencry": 17972, + "Ġencrypted": 36663, + "Ġencryption": 29575, + "Ġencuent": 23708, + "Ġencuentra": 43274, + "Ġend": 917, + "Ġendanger": 31975, + "Ġendangered": 37539, + "Ġende": 19099, + "Ġendeavor": 34975, + "Ġendeavors": 49608, + "Ġended": 4590, + "Ġending": 8121, + "Ġendings": 42474, + "Ġendless": 16144, + "Ġendlessly": 44920, + "Ġendlich": 32574, + "Ġendors": 37676, + "Ġendorse": 29228, + "Ġendorsed": 50094, + "Ġendpoint": 35795, + "Ġendroit": 47390, + "Ġends": 5314, + "Ġendurance": 30325, + "Ġendure": 24732, + "Ġendured": 39017, + "Ġenduring": 36562, + "Ġenem": 7255, + "Ġenemies": 7805, + "Ġenemy": 5945, + "Ġener": 2043, + "Ġenerg": 10575, + "Ġenergetic": 24935, + "Ġenergia": 29469, + "Ġenergies": 25737, + "Ġenergized": 49231, + "Ġenergy": 2281, + "ĠenergÃŃa": 34315, + "Ġenf": 10667, + "Ġenfant": 44888, + "Ġenfants": 22649, + "Ġenfer": 27341, + "Ġenfermed": 42695, + "Ġenfim": 48937, + "Ġenfin": 25059, + "Ġenfor": 25495, + "Ġenforce": 24825, + "Ġenforced": 40953, + "Ġenforcement": 11475, + "Ġenfrent": 33771, + "Ġeng": 1741, + "Ġengag": 46730, + "Ġengage": 4683, + "Ġengaged": 8237, + "Ġengagement": 8742, + "Ġengagements": 44978, + "Ġengages": 45576, + "Ġengaging": 11268, + "Ġengine": 2848, + "Ġengineer": 11403, + "Ġengineered": 38648, + "Ġengineering": 7043, + "Ġengineers": 11955, + "Ġengines": 12982, + "Ġenglish": 32169, + "Ġengra": 25842, + "Ġenh": 10944, + "Ġenhan": 15780, + "Ġenhance": 11985, + "Ġenhanced": 21191, + "Ġenhancement": 40776, + "Ġenhances": 46628, + "Ġenhancing": 36579, + "Ġenjo": 27803, + "Ġenjoy": 2103, + "Ġenjoyable": 20305, + "Ġenjoyed": 4626, + "Ġenjoying": 9929, + "Ġenjoyment": 32013, + "Ġenjoys": 29750, + "Ġenlar": 31976, + "Ġenlight": 18690, + "Ġenlightened": 36975, + "Ġenlightenment": 34661, + "Ġenm": 48786, + "Ġenorm": 8473, + "Ġenorme": 33648, + "Ġenormous": 11322, + "Ġenormously": 39669, + "Ġenough": 1547, + "Ġenqu": 21304, + "Ġenquanto": 31749, + "Ġenrich": 18849, + "Ġenriched": 48624, + "Ġenrichment": 49900, + "Ġenroll": 12266, + "Ġenrolled": 25896, + "Ġenrollment": 22420, + "Ġens": 3489, + "Ġense": 12567, + "Ġensemble": 19492, + "Ġenseñ": 31275, + "Ġensl": 30434, + "Ġenslaved": 32119, + "Ġensuite": 25080, + "Ġensure": 5586, + "Ġensures": 28111, + "Ġensuring": 16882, + "Ġent": 948, + "Ġentails": 50133, + "Ġentend": 16612, + "Ġentender": 20054, + "Ġentendeu": 49622, + "Ġentendu": 41489, + "Ġenter": 3242, + "Ġentered": 9065, + "Ġentering": 11104, + "Ġenterprise": 14132, + "Ġenterprises": 29034, + "Ġenters": 18780, + "Ġentertain": 7655, + "Ġentertained": 44783, + "Ġentertaining": 20402, + "Ġentertainment": 12393, + "Ġentfer": 41940, + "Ġenthal": 46475, + "Ġenthalpy": 48869, + "Ġenthus": 12616, + "Ġenthusi": 18076, + "Ġenthusiasm": 23417, + "Ġenthusiastic": 28574, + "Ġenthusiasts": 45873, + "Ġentire": 2302, + "Ġentirely": 7696, + "Ġentirety": 31557, + "Ġentit": 14789, + "Ġentities": 16667, + "Ġentitled": 17838, + "Ġentity": 13977, + "Ġentonces": 13003, + "Ġentr": 8041, + "Ġentra": 22284, + "Ġentrada": 37119, + "Ġentrance": 12014, + "Ġentrar": 20913, + "Ġentre": 3962, + "Ġentreg": 32843, + "Ġentren": 45069, + "Ġentreprene": 8354, + "Ġentrepreneur": 14307, + "Ġentrepreneurial": 33094, + "Ġentrepreneurs": 12639, + "Ġentrepreneurship": 26582, + "Ġentreprises": 41657, + "Ġentrev": 39095, + "Ġentries": 23041, + "Ġentropy": 30867, + "Ġentry": 8729, + "Ġents": 12834, + "Ġentsche": 28398, + "Ġentscheiden": 44560, + "Ġentschieden": 49807, + "Ġentsprech": 29967, + "Ġentsprechend": 47823, + "Ġentste": 35955, + "Ġentwic": 28449, + "Ġentwickelt": 43208, + "Ġentão": 9071, + "Ġenv": 2267, + "Ġenvelop": 33860, + "Ġenvelope": 19989, + "Ġenvie": 24149, + "Ġenviron": 2571, + "Ġenvironment": 2823, + "Ġenvironmental": 8303, + "Ġenvironmentally": 42236, + "Ġenvironments": 12388, + "Ġenvision": 24739, + "Ġenvisioned": 47733, + "Ġenvol": 49995, + "Ġenvoy": 35351, + "Ġenvy": 30530, + "Ġenzy": 16272, + "Ġenzyme": 24521, + "Ġenzymes": 29299, + "Ġep": 2388, + "Ġepic": 13581, + "Ġepid": 13510, + "Ġepidemi": 35761, + "Ġepidemic": 20982, + "Ġepile": 41855, + "Ġepilepsy": 49680, + "Ġepis": 2927, + "Ġepisod": 39200, + "Ġepisode": 3500, + "Ġepisodes": 9313, + "Ġepisód": 42736, + "Ġepisódio": 50056, + "Ġepo": 30992, + "Ġepoxy": 45397, + "Ġepsilon": 17889, + "Ġequ": 1267, + "Ġequal": 2681, + "Ġequality": 14949, + "Ġequally": 12309, + "Ġequals": 6915, + "Ġequation": 5367, + "Ġequations": 11787, + "Ġequator": 45544, + "Ġequilib": 14204, + "Ġequilibrium": 15625, + "Ġequip": 5037, + "Ġequipment": 5927, + "Ġequipo": 30048, + "Ġequipped": 15218, + "Ġequitable": 33730, + "Ġequity": 10769, + "Ġequiv": 48726, + "Ġequival": 9052, + "Ġequivalent": 10344, + "Ġer": 1189, + "Ġera": 4249, + "Ġerad": 33078, + "Ġeram": 34664, + "Ġeran": 32762, + "Ġerase": 23525, + "Ġerased": 38359, + "Ġeraser": 46018, + "Ġere": 25022, + "Ġerect": 34201, + "Ġeres": 30065, + "Ġerf": 20228, + "Ġerfahren": 49472, + "Ġerfolg": 39447, + "Ġerfolgreich": 48270, + "Ġerg": 26585, + "Ġergon": 42735, + "Ġerhalten": 38051, + "Ġerhö": 49058, + "Ġerk": 31879, + "Ġerkennen": 45720, + "Ġerkl": 27570, + "Ġerklären": 46528, + "Ġerle": 26826, + "Ġerlebt": 47372, + "Ġerm": 25253, + "Ġern": 36061, + "Ġernst": 43412, + "Ġerosion": 32173, + "Ġerr": 45267, + "Ġerrado": 48571, + "Ġerrand": 45810, + "Ġerre": 28641, + "Ġerreichen": 39464, + "Ġerreicht": 46250, + "Ġerro": 45935, + "Ġerror": 6713, + "Ġerrors": 13603, + "Ġers": 33743, + "Ġersch": 41673, + "Ġerst": 11301, + "Ġerste": 20951, + "Ġersten": 17324, + "Ġerstmal": 38607, + "Ġeru": 20999, + "Ġeruption": 42584, + "Ġerw": 21715, + "Ġerzäh": 28337, + "Ġerzählt": 47110, + "Ġes": 785, + "Ġesa": 11342, + "Ġesas": 23388, + "Ġesc": 4721, + "Ġesca": 12663, + "Ġescal": 17871, + "Ġescape": 7615, + "Ġescaped": 20397, + "Ġescapes": 43769, + "Ġescaping": 32554, + "Ġescol": 25603, + "Ġescola": 42501, + "Ġescort": 37353, + "Ġescr": 49865, + "Ġescre": 30004, + "Ġescrever": 44909, + "Ġescri": 30598, + "Ġescrito": 49451, + "Ġescuch": 22483, + "Ġescuela": 47817, + "Ġese": 10167, + "Ġesemp": 32340, + "Ġesempio": 33627, + "Ġesf": 41614, + "Ġesfuer": 49213, + "Ġesimerk": 50029, + "Ġeso": 7287, + "Ġesos": 22411, + "Ġesp": 7089, + "Ġespa": 17488, + "Ġespacio": 33845, + "Ġespaço": 34270, + "Ġespañ": 25726, + "Ġespañol": 31177, + "Ġespe": 10049, + "Ġespec": 31620, + "Ġespecial": 15342, + "Ġespecially": 2318, + "Ġespecialmente": 41546, + "Ġespecie": 49368, + "Ġespect": 38244, + "ĠespecÃŃfic": 32741, + "Ġesper": 10045, + "Ġespera": 37862, + "Ġesperando": 46587, + "Ġesperar": 37577, + "Ġespero": 26823, + "Ġespresso": 44140, + "ĠespÃŃ": 48987, + "Ġesqu": 34611, + "Ġesque": 28147, + "Ġesquer": 40428, + "Ġess": 2097, + "Ġessa": 7208, + "Ġessas": 19277, + "Ġessay": 16238, + "Ġessayer": 32421, + "Ġessays": 35123, + "Ġesse": 6755, + "Ġessen": 41749, + "Ġessence": 12801, + "Ġessent": 47056, + "Ġessential": 7115, + "Ġessentially": 4476, + "Ġessentials": 46884, + "Ġessere": 19799, + "Ġesses": 18966, + "Ġest": 871, + "Ġesta": 5283, + "Ġestab": 3947, + "Ġestaba": 17544, + "Ġestaban": 36713, + "Ġestable": 37444, + "Ġestablish": 8327, + "Ġestablished": 7545, + "Ġestablishing": 22494, + "Ġestablishment": 20971, + "Ġestad": 39160, + "Ġestado": 18372, + "Ġestamos": 10382, + "Ġestan": 42058, + "Ġestar": 8755, + "Ġestas": 13897, + "Ġestat": 30883, + "Ġestate": 9749, + "Ġestava": 15662, + "Ġestavam": 43711, + "Ġeste": 4065, + "Ġestem": 50185, + "Ġestilo": 37470, + "Ġestim": 8017, + "Ġestimate": 12539, + "Ġestimated": 14109, + "Ġestimates": 20561, + "Ġestimation": 35701, + "Ġestiver": 46578, + "Ġesto": 7433, + "Ġestos": 12585, + "Ġestou": 17660, + "Ġestoy": 15796, + "Ġestr": 35680, + "Ġestran": 49461, + "Ġestrat": 42746, + "Ġestratég": 46603, + "Ġestre": 36665, + "Ġestrogen": 44754, + "Ġestruct": 43935, + "Ġestrut": 45899, + "Ġestud": 13542, + "Ġestudio": 44286, + "Ġestuv": 49777, + "Ġestá": 3192, + "Ġestán": 10368, + "Ġestás": 24389, + "Ġestão": 14775, + "Ġesté": 34584, + "ĠestÃł": 22093, + "Ġet": 1030, + "Ġeta": 32415, + "Ġetap": 47634, + "Ġetc": 5183, + "Ġetcetera": 22066, + "Ġetern": 10533, + "Ġeternal": 14503, + "Ġeternity": 27162, + "Ġeth": 6468, + "Ġethanol": 43150, + "Ġether": 37096, + "Ġethic": 37820, + "Ġethical": 18890, + "Ġethics": 19769, + "Ġethn": 42589, + "Ġethnic": 14363, + "Ġethnicity": 33774, + "Ġetiqu": 42177, + "Ġetme": 34469, + "Ġetmek": 46005, + "Ġett": 5431, + "Ġetti": 41523, + "Ġettä": 9894, + "Ġetwa": 28369, + "Ġetwas": 9569, + "Ġeu": 2228, + "Ġeuch": 10403, + "Ġeuh": 32678, + "Ġeure": 32845, + "Ġeuro": 14206, + "Ġeurop": 22139, + "Ġeurope": 27207, + "Ġeuropé": 32055, + "Ġeuros": 14160, + "Ġeux": 22648, + "Ġev": 1073, + "Ġevac": 20245, + "Ġevacuate": 48570, + "Ġevacuation": 42740, + "Ġevalu": 6133, + "Ġevaluate": 13059, + "Ġevaluated": 25509, + "Ġevaluating": 27479, + "Ġevaluation": 13344, + "Ġevaluations": 43085, + "Ġevangel": 24546, + "Ġevangelical": 45471, + "Ġevapor": 26315, + "Ġeve": 34225, + "Ġeven": 754, + "Ġevening": 5634, + "Ġevenings": 42835, + "Ġevenly": 17658, + "Ġevent": 2280, + "Ġevento": 40655, + "Ġevents": 3931, + "Ġeventual": 33160, + "Ġeventually": 4728, + "Ġever": 1562, + "Ġeverlasting": 43710, + "Ġevery": 633, + "Ġeverybody": 2201, + "Ġeveryday": 7429, + "Ġeveryone": 1518, + "Ġeverything": 1203, + "Ġeverytime": 46162, + "Ġeverywhere": 5315, + "Ġevet": 38016, + "Ġeviden": 43699, + "Ġevidence": 4467, + "Ġevident": 16371, + "Ġevil": 6724, + "Ġevitar": 31326, + "Ġevol": 7117, + "Ġevolution": 9303, + "Ġevolutionary": 27567, + "Ġevolve": 16693, + "Ġevolved": 14178, + "Ġevolves": 43737, + "Ġevolving": 21085, + "Ġew": 43364, + "Ġex": 454, + "Ġexacer": 38362, + "Ġexacerb": 38819, + "Ġexact": 1900, + "Ġexactamente": 48686, + "Ġexactement": 38111, + "Ġexactly": 2293, + "Ġexagger": 19123, + "Ġexaggerated": 36196, + "Ġexam": 1139, + "Ġexamination": 23874, + "Ġexamine": 17496, + "Ġexamined": 30972, + "Ġexamining": 34662, + "Ġexample": 1365, + "Ġexamples": 5110, + "Ġexams": 20514, + "Ġexatamente": 35937, + "Ġexc": 1624, + "Ġexca": 24933, + "Ġexcav": 34351, + "Ġexceed": 14048, + "Ġexceeded": 38026, + "Ġexceeds": 43305, + "Ġexcel": 24015, + "Ġexcell": 45817, + "Ġexcellence": 21268, + "Ġexcellent": 7103, + "Ġexcept": 3993, + "Ġexception": 11183, + "Ġexceptional": 19279, + "Ġexceptionally": 37807, + "Ġexceptions": 22847, + "Ġexcer": 42760, + "Ġexcess": 9310, + "Ġexcessive": 22704, + "Ġexch": 6210, + "Ġexchange": 7742, + "Ġexchanged": 38378, + "Ġexchanges": 27374, + "Ġexcit": 13101, + "Ġexcited": 2919, + "Ġexcitement": 14755, + "Ġexciting": 4670, + "Ġexclud": 16269, + "Ġexclude": 33536, + "Ġexcluded": 29486, + "Ġexcluding": 49999, + "Ġexclus": 15085, + "Ġexclusion": 33049, + "Ġexclusive": 13005, + "Ġexclusively": 20638, + "Ġexcus": 20974, + "Ġexcuse": 8960, + "Ġexcuses": 24666, + "Ġexec": 4454, + "Ġexecut": 7568, + "Ġexecute": 14483, + "Ġexecuted": 17577, + "Ġexecuting": 32368, + "Ġexecution": 15058, + "Ġexecutive": 10140, + "Ġexecutives": 28485, + "Ġexem": 9659, + "Ġexempel": 34999, + "Ġexempl": 24112, + "Ġexemple": 12223, + "Ġexemplo": 16496, + "Ġexempt": 30425, + "Ġexemption": 43154, + "Ġexerc": 4057, + "Ġexercise": 5380, + "Ġexercises": 11900, + "Ġexercising": 27272, + "Ġexert": 31941, + "Ġexfol": 46935, + "Ġexh": 31052, + "Ġexha": 9059, + "Ġexhale": 19652, + "Ġexhaust": 14687, + "Ġexhausted": 17992, + "Ġexhausting": 34076, + "Ġexhaustion": 47408, + "Ġexhib": 8144, + "Ġexhibit": 20487, + "Ġexhibited": 49446, + "Ġexhibition": 14414, + "Ġexhibitions": 41522, + "Ġexhibits": 39205, + "Ġexile": 37984, + "Ġexist": 2514, + "Ġexiste": 16304, + "Ġexisted": 13135, + "Ġexistem": 44345, + "Ġexistence": 9123, + "Ġexistential": 37133, + "Ġexisting": 6741, + "Ġexists": 8198, + "Ġexit": 11043, + "Ġexiting": 48868, + "Ġexits": 44183, + "Ġexotic": 27063, + "Ġexp": 1278, + "Ġexpand": 5268, + "Ġexpanded": 14342, + "Ġexpanding": 14702, + "Ġexpands": 33706, + "Ġexpans": 9672, + "Ġexpansion": 11260, + "Ġexpansive": 46949, + "Ġexpect": 2066, + "Ġexpectancy": 42574, + "Ġexpectation": 14334, + "Ġexpectations": 9843, + "Ġexpected": 5176, + "Ġexpecting": 9650, + "Ġexpects": 33280, + "Ġexped": 19348, + "Ġexpedition": 30359, + "Ġexpelled": 44368, + "Ġexpend": 24439, + "Ġexpenditure": 40377, + "Ġexpenditures": 46381, + "Ġexpense": 18406, + "Ġexpenses": 15506, + "Ġexpensive": 5124, + "Ġexper": 1086, + "Ġexperi": 33589, + "Ġexperien": 3135, + "Ġexperience": 1752, + "Ġexperienced": 6751, + "Ġexperiences": 5235, + "Ġexperiencia": 36489, + "Ġexperiencing": 11139, + "Ġexperient": 49611, + "Ġexperiment": 5120, + "Ġexperimental": 17069, + "Ġexperimentation": 37142, + "Ġexperimenting": 29070, + "Ġexperiments": 12050, + "Ġexperiência": 41238, + "Ġexpert": 5844, + "Ġexpertise": 11769, + "Ġexperts": 8572, + "Ġexpiration": 39657, + "Ġexpire": 45447, + "Ġexpired": 36587, + "Ġexpl": 1490, + "Ġexplain": 2903, + "Ġexplained": 8825, + "Ġexplaining": 13468, + "Ġexplains": 13948, + "Ġexplan": 9045, + "Ġexplanation": 10835, + "Ġexplanations": 28708, + "Ġexplic": 28021, + "Ġexplicar": 26682, + "Ġexplicit": 13691, + "Ġexplicitly": 20803, + "Ġexplo": 12382, + "Ġexplode": 21411, + "Ġexploded": 27049, + "Ġexplodes": 42610, + "Ġexploding": 35175, + "Ġexploit": 25924, + "Ġexploitation": 33122, + "Ġexploited": 40918, + "Ġexplor": 24765, + "Ġexploration": 16197, + "Ġexplore": 6839, + "Ġexplored": 24016, + "Ġexplorer": 39680, + "Ġexplores": 45473, + "Ġexploring": 12736, + "Ġexplos": 9215, + "Ġexplosion": 15673, + "Ġexplosions": 36872, + "Ġexplosive": 24630, + "Ġexplosives": 46421, + "Ġexpon": 12680, + "Ġexponent": 37871, + "Ġexponential": 21510, + "Ġexponentially": 37330, + "Ġexport": 10725, + "Ġexported": 42055, + "Ġexporting": 44686, + "Ġexports": 31428, + "Ġexpos": 30076, + "Ġexpose": 19219, + "Ġexposed": 9495, + "Ġexposing": 33178, + "Ġexposure": 10420, + "Ġexpres": 33397, + "Ġexpress": 5109, + "Ġexpressed": 12675, + "Ġexpresses": 39204, + "Ġexpressing": 22171, + "Ġexpression": 6114, + "Ġexpressions": 15277, + "Ġexpressive": 40189, + "Ġext": 1279, + "Ġextend": 10101, + "Ġextended": 10913, + "Ġextending": 24360, + "Ġextends": 26448, + "Ġextension": 10320, + "Ġextensions": 25129, + "Ġextensive": 13246, + "Ġextensively": 32636, + "Ġextent": 8396, + "Ġexterior": 20677, + "Ġextermin": 48628, + "Ġextern": 30360, + "Ġexternal": 8320, + "Ġexternally": 40899, + "Ġextinct": 35094, + "Ġextinction": 33163, + "Ġexting": 33829, + "Ġextr": 16455, + "Ġextra": 2857, + "Ġextract": 8947, + "Ġextracted": 34086, + "Ġextracting": 49844, + "Ġextraction": 30197, + "Ġextraord": 10149, + "Ġextraordin": 27396, + "Ġextraordinarily": 34557, + "Ġextraordinary": 10581, + "Ġextrapol": 48224, + "Ġextras": 40961, + "Ġextrater": 43324, + "Ġextrem": 4040, + "Ġextreme": 8084, + "Ġextremely": 4664, + "Ġextremes": 41119, + "Ġextrêmement": 38148, + "Ġey": 9817, + "Ġeye": 3313, + "Ġeyeball": 38868, + "Ġeyeballs": 43758, + "Ġeyebr": 15713, + "Ġeyebrow": 35875, + "Ġeyebrows": 19916, + "Ġeyel": 13197, + "Ġeyelashes": 37017, + "Ġeyelid": 39386, + "Ġeyelids": 42419, + "Ġeyeliner": 30788, + "Ġeyes": 2575, + "Ġeyeshadow": 34174, + "Ġeyesight": 49887, + "Ġez": 25220, + "ĠeÄŁ": 49681, + "ĠeÅŁ": 40600, + "Ġf": 283, + "Ġfa": 2050, + "Ġfab": 5355, + "Ġfabric": 7253, + "Ġfabrication": 44820, + "Ġfabrics": 32424, + "Ġfabulous": 17692, + "Ġfac": 1915, + "Ġfacade": 46261, + "Ġface": 1851, + "Ġfacebook": 23372, + "Ġfaced": 11446, + "Ġfaces": 8475, + "Ġfacets": 49752, + "Ġfacial": 15642, + "Ġfacil": 10217, + "Ġfacile": 23670, + "Ġfacilit": 38770, + "Ġfacilitate": 20207, + "Ġfacilitating": 47558, + "Ġfacilities": 9406, + "Ġfacility": 8973, + "Ġfacing": 7170, + "Ġfact": 1186, + "Ġfaction": 37249, + "Ġfactions": 41252, + "Ġfacto": 42225, + "Ġfactor": 5952, + "Ġfactorial": 36916, + "Ġfactories": 24813, + "Ġfactors": 6771, + "Ġfactory": 9265, + "Ġfacts": 9130, + "Ġfactual": 48029, + "Ġfacult": 44137, + "Ġfaculty": 6389, + "Ġfade": 21626, + "Ġfaded": 36352, + "Ġfades": 32679, + "Ġfading": 38644, + "Ġfahren": 25593, + "Ġfail": 3061, + "Ġfailed": 7612, + "Ġfailing": 18223, + "Ġfails": 18199, + "Ġfailure": 7763, + "Ġfailures": 20774, + "Ġfaint": 21104, + "Ġfair": 3143, + "Ġfaire": 4865, + "Ġfairly": 6457, + "Ġfairness": 29765, + "Ġfairy": 19104, + "Ġfais": 12153, + "Ġfaisait": 42795, + "Ġfait": 3887, + "Ġfaites": 29902, + "Ġfaith": 4522, + "Ġfaithful": 17808, + "Ġfaj": 34001, + "Ġfak": 33647, + "Ġfake": 7592, + "Ġfakt": 21310, + "Ġfaktiskt": 35988, + "Ġfal": 3704, + "Ġfala": 21580, + "Ġfalan": 21474, + "Ġfalando": 21236, + "Ġfalar": 13536, + "Ġfale": 26772, + "Ġfalei": 29800, + "Ġfall": 2100, + "Ġfallait": 49170, + "Ġfallen": 11547, + "Ġfalling": 7440, + "Ġfalls": 8804, + "Ġfalou": 28443, + "Ġfals": 16720, + "Ġfalsch": 43340, + "Ġfalse": 7908, + "Ġfalt": 37108, + "Ġfalta": 22111, + "Ġfam": 1087, + "Ġfame": 16874, + "Ġfamil": 4085, + "Ġfamili": 42155, + "Ġfamilia": 24050, + "Ġfamiliar": 4963, + "Ġfamiliarity": 49828, + "Ġfamilies": 4466, + "Ġfamille": 28123, + "Ġfamily": 1605, + "Ġfamine": 42790, + "Ġfamoso": 49526, + "Ġfamous": 4618, + "Ġfamously": 34360, + "ĠfamÃŃlia": 26716, + "Ġfan": 3429, + "Ġfancy": 10247, + "Ġfand": 38138, + "Ġfandom": 41591, + "Ġfans": 4499, + "Ġfant": 4115, + "Ġfantas": 31255, + "Ġfantast": 30665, + "Ġfantastic": 5456, + "Ġfantasy": 13861, + "Ġfar": 1400, + "Ġfare": 11994, + "Ġfarewell": 35442, + "Ġfark": 27047, + "Ġfarklı": 43953, + "Ġfarm": 5421, + "Ġfarmer": 17891, + "Ġfarmers": 11339, + "Ġfarming": 16557, + "Ġfarms": 20366, + "Ġfart": 24575, + "Ġfarther": 20344, + "Ġfas": 30632, + "Ġfasc": 7184, + "Ġfascinated": 24597, + "Ġfascinating": 10343, + "Ġfase": 33931, + "Ġfashion": 6700, + "Ġfashionable": 40735, + "Ġfashioned": 40646, + "Ġfast": 2370, + "Ġfasten": 38716, + "Ġfaster": 4663, + "Ġfastest": 14573, + "Ġfasting": 22371, + "Ġfat": 4046, + "Ġfatal": 24069, + "Ġfate": 12738, + "Ġfather": 3086, + "Ġfathers": 23450, + "Ġfatigue": 20574, + "Ġfato": 33351, + "Ġfats": 29885, + "Ġfatto": 23228, + "Ġfatty": 24898, + "Ġfauc": 49567, + "Ġfaud": 38694, + "Ġfault": 7441, + "Ġfaults": 36090, + "Ġfaut": 8487, + "Ġfaux": 36659, + "Ġfav": 33801, + "Ġfavor": 2294, + "Ġfavorable": 29557, + "Ġfavored": 44420, + "Ġfavorite": 2954, + "Ġfavorites": 16907, + "Ġfavors": 40554, + "Ġfavour": 8182, + "Ġfavourite": 10696, + "Ġfaz": 4375, + "Ġfazem": 41748, + "Ġfazendo": 20741, + "Ġfazer": 6736, + "Ġfazla": 30611, + "Ġfaço": 38091, + "Ġfaçon": 20725, + "Ġfe": 579, + "Ġfear": 4240, + "Ġfeared": 30629, + "Ġfearful": 33014, + "Ġfearless": 44139, + "Ġfears": 15649, + "Ġfeas": 21781, + "Ġfeasible": 26648, + "Ġfeast": 23707, + "Ġfeat": 15425, + "Ġfeather": 25852, + "Ġfeathers": 27044, + "Ġfeature": 4111, + "Ġfeatured": 13822, + "Ġfeatures": 4122, + "Ġfeaturing": 19742, + "Ġfed": 4636, + "Ġfeder": 38024, + "Ġfederal": 6019, + "Ġfee": 12054, + "Ġfeed": 3154, + "Ġfeedback": 5824, + "Ġfeeder": 48778, + "Ġfeeding": 12919, + "Ġfeeds": 23712, + "Ġfeel": 841, + "Ġfeeling": 2633, + "Ġfeelings": 6640, + "Ġfeels": 3417, + "Ġfees": 13370, + "Ġfeet": 3521, + "Ġfeh": 34741, + "Ġfehlt": 47994, + "Ġfeito": 31243, + "Ġfel": 11094, + "Ġfelic": 49986, + "Ġfeliz": 28544, + "Ġfell": 5696, + "Ġfella": 49820, + "Ġfellas": 47242, + "Ġfellow": 7177, + "Ġfellows": 35595, + "Ġfellowship": 24989, + "Ġfelony": 46255, + "Ġfelt": 2762, + "Ġfem": 4010, + "Ġfemale": 6556, + "Ġfemales": 21529, + "Ġfemin": 11155, + "Ġfeminine": 24648, + "Ġfeminism": 37187, + "Ġfeminist": 26229, + "Ġfemme": 27427, + "Ġfemmes": 27997, + "Ġfen": 26830, + "Ġfence": 15422, + "Ġfences": 45796, + "Ġfender": 49746, + "Ġfent": 39395, + "Ġfer": 7202, + "Ġfera": 50169, + "Ġferm": 26558, + "Ġferment": 38300, + "Ġfermentation": 43161, + "Ġfermented": 38649, + "Ġferry": 32967, + "Ġfert": 10700, + "Ġfertig": 31362, + "Ġfertil": 18512, + "Ġfertile": 43509, + "Ġfertility": 31707, + "Ġfertilizer": 31549, + "Ġfest": 6633, + "Ġfesta": 48080, + "Ġfestival": 12091, + "Ġfestivals": 28040, + "Ġfestive": 42729, + "Ġfet": 15136, + "Ġfetch": 23673, + "Ġfeu": 29539, + "Ġfeud": 36377, + "Ġfever": 18277, + "Ġfew": 1326, + "Ġfewer": 13366, + "Ġfez": 21714, + "Ġfi": 15848, + "Ġfian": 49513, + "Ġfiance": 46552, + "Ġfib": 13116, + "Ġfiber": 12874, + "Ġfibers": 25252, + "Ġfibre": 36738, + "Ġfic": 14591, + "Ġfica": 16868, + "Ġficar": 13646, + "Ġfick": 35368, + "Ġficou": 25518, + "Ġfiction": 13266, + "Ġfictional": 28911, + "Ġfid": 24553, + "Ġfidelity": 46404, + "Ġfield": 2519, + "Ġfields": 7909, + "Ġfier": 16334, + "Ġfierce": 25341, + "Ġfiery": 43897, + "Ġfif": 5782, + "Ġfifteen": 18126, + "Ġfifth": 9266, + "Ġfifty": 13442, + "Ġfig": 2147, + "Ġfight": 2092, + "Ġfighter": 15932, + "Ġfighters": 19714, + "Ġfighting": 5237, + "Ġfights": 14512, + "Ġfigur": 31094, + "Ġfigura": 44691, + "Ġfigure": 2573, + "Ġfigured": 8932, + "Ġfigures": 9624, + "Ġfiguring": 15213, + "Ġfij": 42001, + "Ġfik": 35562, + "Ġfil": 1387, + "Ġfilament": 44280, + "Ġfile": 3991, + "Ġfiled": 18789, + "Ġfiles": 7098, + "Ġfilho": 36919, + "Ġfiling": 26854, + "Ġfill": 2836, + "Ġfille": 39216, + "Ġfilled": 6412, + "Ġfiller": 34676, + "Ġfilling": 10623, + "Ġfills": 22498, + "Ġfilm": 2007, + "Ġfilme": 26488, + "Ġfilmed": 15133, + "Ġfilming": 8869, + "Ġfilmmaker": 34700, + "Ġfilmmakers": 35018, + "Ġfilmmaking": 43133, + "Ġfilms": 7796, + "Ġfilos": 46045, + "Ġfils": 46190, + "Ġfilt": 29148, + "Ġfilter": 6608, + "Ġfiltered": 37111, + "Ġfiltering": 30822, + "Ġfilters": 15995, + "Ġfilthy": 40384, + "Ġfiltration": 43623, + "Ġfim": 31603, + "Ġfin": 962, + "Ġfinal": 2572, + "Ġfinale": 23510, + "Ġfinalement": 28623, + "Ġfinally": 2721, + "Ġfinalmente": 35577, + "Ġfinals": 25526, + "Ġfinan": 3682, + "Ġfinance": 10719, + "Ġfinances": 25123, + "Ġfinanci": 24323, + "Ġfinancial": 4669, + "Ġfinancially": 20469, + "Ġfinancing": 22286, + "Ġfinans": 38843, + "Ġfind": 915, + "Ġfinde": 17841, + "Ġfinden": 20734, + "Ġfindet": 27752, + "Ġfinding": 5006, + "Ġfindings": 16483, + "Ġfinds": 10704, + "Ġfine": 2489, + "Ġfinely": 31529, + "Ġfiner": 39130, + "Ġfines": 37989, + "Ġfinest": 28141, + "Ġfing": 3823, + "Ġfinger": 5984, + "Ġfingerna": 48880, + "Ġfingerprint": 30715, + "Ġfingerprints": 42170, + "Ġfingers": 7350, + "Ġfingert": 25948, + "Ġfingertips": 27715, + "Ġfini": 40634, + "Ġfinish": 2413, + "Ġfinished": 4335, + "Ġfinishes": 23615, + "Ġfinishing": 12693, + "Ġfinite": 19362, + "Ġfinns": 17152, + "Ġfino": 42560, + "Ġfins": 25106, + "Ġfique": 35497, + "Ġfiquei": 49647, + "Ġfir": 12159, + "Ġfire": 2610, + "Ġfirearm": 43253, + "Ġfirearms": 38398, + "Ġfired": 11777, + "Ġfirefight": 25256, + "Ġfirefighters": 37218, + "Ġfireplace": 39511, + "Ġfires": 15044, + "Ġfirewall": 36109, + "Ġfireworks": 28453, + "Ġfiring": 16045, + "Ġfirm": 6174, + "Ġfirmly": 20031, + "Ġfirms": 18055, + "Ġfirmware": 30289, + "Ġfirst": 700, + "Ġfirsthand": 38599, + "Ġfirstly": 27376, + "Ġfis": 36609, + "Ġfiscal": 15897, + "Ġfish": 3506, + "Ġfisher": 20698, + "Ġfisherman": 48657, + "Ġfishermen": 42670, + "Ġfishes": 41734, + "Ġfishing": 10180, + "Ġfishy": 41991, + "Ġfist": 21849, + "Ġfists": 49384, + "Ġfit": 3318, + "Ġfitness": 15303, + "Ġfits": 9001, + "Ġfitt": 48876, + "Ġfitted": 26321, + "Ġfitting": 15669, + "Ġfive": 1732, + "Ġfix": 3191, + "Ġfixed": 6806, + "Ġfixes": 32539, + "Ġfixing": 19442, + "Ġfixture": 47680, + "Ġfiz": 21000, + "Ġfizer": 46627, + "Ġfl": 932, + "Ġfla": 46338, + "Ġflag": 7166, + "Ġflags": 23265, + "Ġflagship": 30400, + "Ġflakes": 35392, + "Ġflame": 13287, + "Ġflames": 23743, + "Ġflaming": 45718, + "Ġflank": 36318, + "Ġflap": 30781, + "Ġflaps": 50065, + "Ġflare": 32446, + "Ġflash": 7319, + "Ġflashes": 39665, + "Ġflashing": 31049, + "Ġflashlight": 30835, + "Ġflashy": 47873, + "Ġflat": 4962, + "Ġflats": 43075, + "Ġflatten": 24183, + "Ġflatter": 41247, + "Ġflattering": 49722, + "Ġflav": 37737, + "Ġflavor": 6813, + "Ġflavored": 37261, + "Ġflavors": 16303, + "Ġflavour": 22190, + "Ġflavours": 49450, + "Ġflaw": 13717, + "Ġflawed": 38823, + "Ġflawless": 45693, + "Ġflaws": 27108, + "Ġfle": 7025, + "Ġfled": 24114, + "Ġflee": 25146, + "Ġfleeing": 41885, + "Ġfleet": 19396, + "Ġflesh": 12497, + "Ġflew": 15728, + "Ġflex": 5896, + "Ġflexibility": 12635, + "Ġflexible": 11358, + "Ġflick": 22774, + "Ġflies": 17414, + "Ġflight": 7018, + "Ġflights": 21089, + "Ġflip": 7929, + "Ġflipped": 26273, + "Ġflipping": 26886, + "Ġflips": 40249, + "Ġflirt": 40532, + "Ġflirting": 45777, + "Ġflo": 2591, + "Ġfloat": 15706, + "Ġfloating": 12607, + "Ġfloats": 37878, + "Ġflock": 34819, + "Ġflood": 10481, + "Ġflooded": 31594, + "Ġflooding": 24132, + "Ġfloods": 35536, + "Ġfloor": 4123, + "Ġfloors": 21008, + "Ġflop": 25343, + "Ġflor": 37342, + "Ġfloral": 38900, + "Ġfloss": 49697, + "Ġflour": 7693, + "Ġflourish": 38311, + "Ġflow": 3095, + "Ġflower": 8617, + "Ġflowers": 8085, + "Ġflowing": 13974, + "Ġflown": 34536, + "Ġflows": 12867, + "Ġflu": 5029, + "Ġfluct": 23448, + "Ġfluctuations": 45276, + "Ġfluent": 40799, + "Ġfluff": 41533, + "Ġfluffy": 22778, + "Ġfluid": 9113, + "Ġfluids": 33033, + "Ġfluor": 40540, + "Ġfluores": 32471, + "Ġfluorescent": 46735, + "Ġflush": 19568, + "Ġflute": 33088, + "Ġflux": 19298, + "Ġfly": 3603, + "Ġflying": 7137, + "Ġfo": 726, + "Ġfoam": 12958, + "Ġfoarte": 46499, + "Ġfocal": 26592, + "Ġfocus": 1879, + "Ġfocused": 5178, + "Ġfocuses": 16109, + "Ġfocusing": 8416, + "Ġfod": 47698, + "Ġfog": 13648, + "Ġfoi": 6901, + "Ġfoil": 22444, + "Ġfois": 9576, + "Ġfol": 3339, + "Ġfold": 4860, + "Ġfolded": 23940, + "Ġfolder": 10820, + "Ġfolders": 31082, + "Ġfolding": 25335, + "Ġfolds": 31341, + "Ġfoliage": 49767, + "Ġfolk": 15748, + "Ġfolklore": 49195, + "Ġfolks": 4024, + "Ġfoll": 25483, + "Ġfollow": 1524, + "Ġfollowed": 6263, + "Ġfollower": 35413, + "Ġfollowers": 13071, + "Ġfollowing": 3480, + "Ġfollows": 10002, + "Ġfon": 17290, + "Ġfonction": 20172, + "Ġfonctionne": 49216, + "Ġfond": 9557, + "Ġfondo": 38101, + "Ġfont": 10703, + "Ġfonts": 35316, + "Ġfood": 1755, + "Ġfoods": 8656, + "Ġfool": 7979, + "Ġfooled": 33372, + "Ġfoolish": 23478, + "Ġfools": 38625, + "Ġfoot": 2671, + "Ġfootage": 9556, + "Ġfootball": 7346, + "Ġfooting": 45959, + "Ġfootprint": 24222, + "Ġfootprints": 45715, + "Ġfootsteps": 26883, + "Ġfor": 337, + "Ġfora": 24530, + "Ġforam": 23102, + "Ġforb": 16603, + "Ġforbid": 34117, + "Ġforbidden": 25990, + "Ġforce": 3464, + "Ġforced": 7579, + "Ġforces": 5874, + "Ġforcing": 19030, + "Ġforcé": 30137, + "Ġforcément": 31358, + "Ġfordi": 47830, + "Ġfore": 2091, + "Ġforearm": 47712, + "Ġforecast": 14330, + "Ġforecasting": 44331, + "Ġforecasts": 49421, + "Ġforefront": 27287, + "Ġforeground": 32058, + "Ġforehead": 20472, + "Ġforeign": 5329, + "Ġforeigner": 42764, + "Ġforeigners": 28201, + "Ġforemost": 18864, + "Ġforens": 32034, + "Ġforensic": 39084, + "Ġforesee": 38736, + "Ġforest": 6719, + "Ġforests": 21700, + "Ġforever": 5680, + "Ġforg": 3667, + "Ġforge": 38741, + "Ġforged": 40226, + "Ġforget": 2870, + "Ġforgetting": 25428, + "Ġforgive": 10718, + "Ġforgiven": 30391, + "Ġforgiveness": 18396, + "Ġforgiving": 37701, + "Ġforgot": 5298, + "Ġforgotten": 11832, + "Ġfork": 17716, + "Ġform": 1254, + "Ġforma": 8366, + "Ġformal": 9860, + "Ġformally": 25983, + "Ġformas": 33463, + "Ġformat": 7877, + "Ġformation": 11723, + "Ġformations": 39652, + "Ġformats": 25879, + "Ġformatting": 39366, + "Ġforme": 28670, + "Ġformed": 8693, + "Ġformer": 5819, + "Ġformerly": 34777, + "Ġformidable": 41246, + "Ġforming": 15745, + "Ġforms": 6422, + "Ġformul": 49990, + "Ġformula": 8513, + "Ġformulas": 30546, + "Ġformulate": 47881, + "Ġformulated": 48936, + "Ġformulation": 37642, + "Ġfors": 32299, + "Ġforsk": 45321, + "Ġfort": 5009, + "Ġforte": 23235, + "Ġforth": 5220, + "Ġfortress": 31826, + "Ġforts": 30589, + "Ġfortun": 10506, + "Ġfortunate": 14096, + "Ġfortunately": 25511, + "Ġfortune": 16531, + "Ġforty": 15815, + "Ġforum": 17542, + "Ġforums": 26998, + "Ġforward": 2128, + "Ġforwards": 30126, + "Ġforça": 32878, + "Ġfoss": 14090, + "Ġfosse": 24528, + "Ġfossil": 18737, + "Ġfossils": 39159, + "Ġfoster": 17114, + "Ġfot": 15418, + "Ġfoto": 19176, + "Ġfotograf": 34341, + "Ġfotos": 32301, + "Ġfou": 32012, + "Ġfought": 11391, + "Ġfoul": 23491, + "Ġfound": 1352, + "Ġfoundation": 7030, + "Ġfoundational": 32195, + "Ġfoundations": 22467, + "Ġfounded": 13234, + "Ġfounder": 14917, + "Ġfounders": 25608, + "Ġfounding": 22223, + "Ġfountain": 29451, + "Ġfour": 1451, + "Ġfourteen": 32253, + "Ġfourth": 6409, + "Ġfout": 41907, + "Ġfox": 21026, + "Ġfps": 44981, + "Ġfr": 431, + "Ġfra": 6600, + "Ġfract": 17948, + "Ġfraction": 14135, + "Ġfractions": 36058, + "Ġfracture": 36877, + "Ġfrag": 9241, + "Ġfragen": 39129, + "Ġfragile": 23847, + "Ġfragment": 26424, + "Ġfragments": 29197, + "Ġfragr": 17599, + "Ġfragrance": 25826, + "Ġfragrant": 37296, + "Ġfram": 21405, + "Ġframe": 3920, + "Ġframed": 30420, + "Ġframes": 12083, + "Ġframework": 8388, + "Ġframeworks": 29834, + "Ġframing": 28971, + "Ġfranc": 30514, + "Ġfranch": 13002, + "Ġfranchise": 16222, + "Ġfrank": 10455, + "Ġfrankly": 11939, + "Ġfrança": 43660, + "Ġfrançais": 21425, + "Ġfrançaise": 43832, + "Ġfrase": 38406, + "Ġfrater": 41168, + "Ġfraud": 14560, + "Ġfre": 2130, + "Ġfreak": 21853, + "Ġfreaked": 37853, + "Ġfreakin": 39571, + "Ġfreaking": 14612, + "Ġfree": 1737, + "Ġfreed": 21796, + "Ġfreedom": 5645, + "Ġfreedoms": 40671, + "Ġfreel": 27931, + "Ġfreelance": 47875, + "Ġfreely": 16433, + "Ġfreestyle": 40910, + "Ġfreeze": 15959, + "Ġfreezer": 20189, + "Ġfreezing": 20200, + "Ġfrei": 32542, + "Ġfreight": 37181, + "Ġfren": 33596, + "Ġfrench": 27598, + "Ġfrente": 19873, + "Ġfrequ": 4459, + "Ġfrequencies": 20250, + "Ġfrequency": 7893, + "Ġfrequent": 18004, + "Ġfrequently": 10374, + "Ġfres": 25235, + "Ġfresh": 4451, + "Ġfreshly": 34412, + "Ġfreshman": 22154, + "Ġfreshmen": 43694, + "Ġfreshwater": 50234, + "Ġfret": 24189, + "Ġfreue": 43195, + "Ġfreuen": 41913, + "Ġfrick": 46756, + "Ġfriction": 17710, + "Ġfridge": 13023, + "Ġfried": 10425, + "Ġfriend": 1277, + "Ġfriendly": 9208, + "Ġfriends": 1855, + "Ġfriendship": 13216, + "Ġfriendships": 30003, + "Ġfries": 20733, + "Ġfrig": 34697, + "Ġfright": 15545, + "Ġfrightened": 28839, + "Ġfrightening": 31043, + "Ġfringe": 38764, + "Ġfro": 9795, + "Ġfrog": 17259, + "Ġfrogs": 37107, + "Ġfrom": 490, + "Ġfront": 1868, + "Ġfrontal": 34647, + "Ġfrontier": 35853, + "Ġfrontline": 38033, + "Ġfronts": 40426, + "Ġfrost": 19623, + "Ġfrosting": 37048, + "Ġfroze": 46077, + "Ġfrozen": 12496, + "Ġfruit": 6773, + "Ġfruitful": 49795, + "Ġfruition": 48738, + "Ġfruits": 12148, + "Ġfrust": 7454, + "Ġfrustrated": 15751, + "Ġfrustrating": 16522, + "Ġfrustration": 20491, + "Ġfry": 13776, + "Ġfrying": 24596, + "ĠfrÃ¥": 13237, + "ĠfrÃ¥gor": 48306, + "ĠfrÃ¥n": 18669, + "Ġfrüh": 45029, + "Ġfrüher": 32349, + "Ġft": 31842, + "Ġfu": 8536, + "Ġfuck": 3275, + "Ġfucked": 22518, + "Ġfuckin": 20022, + "Ġfucking": 5546, + "Ġfue": 9248, + "Ġfuego": 43934, + "Ġfuel": 6616, + "Ġfueled": 45446, + "Ġfuels": 24616, + "Ġfuer": 17669, + "Ġfuera": 24818, + "Ġfueron": 28739, + "Ġfuerte": 37129, + "Ġfuerza": 39730, + "Ġfug": 31838, + "Ġfui": 27863, + "Ġfulf": 8081, + "Ġfulfil": 41054, + "Ġfulfill": 13875, + "Ġfulfilled": 21380, + "Ġfulfilling": 25800, + "Ġfulfillment": 32615, + "Ġfull": 1577, + "Ġfullest": 45154, + "Ġfullness": 45262, + "Ġfully": 4498, + "Ġfum": 43845, + "Ġfun": 1019, + "Ġfuncion": 14186, + "Ġfunciona": 26210, + "Ġfunción": 43735, + "Ġfunction": 2445, + "Ġfunctional": 11745, + "Ġfunctionality": 14980, + "Ġfunctioning": 18483, + "Ġfunctions": 6828, + "Ġfund": 2374, + "Ġfundament": 6073, + "Ġfundamental": 8088, + "Ġfundamentally": 17879, + "Ġfundamentals": 29505, + "Ġfunded": 14385, + "Ġfunding": 6137, + "Ġfundo": 40201, + "Ġfundra": 24844, + "Ġfundraising": 32643, + "Ġfunds": 8271, + "Ġfuneral": 20231, + "Ġfungi": 48772, + "Ġfungus": 39788, + "Ġfunk": 26476, + "Ġfunktion": 20454, + "Ġfunktioniert": 26160, + "Ġfunky": 33499, + "Ġfunnel": 24515, + "Ġfunniest": 42681, + "Ġfunny": 4074, + "Ġfunz": 49345, + "Ġfunção": 37588, + "Ġfur": 2687, + "Ġfurious": 33470, + "Ġfurn": 11433, + "Ġfurnace": 34046, + "Ġfurniture": 15671, + "Ġfurry": 47073, + "Ġfurther": 3052, + "Ġfury": 48887, + "Ġfus": 34326, + "Ġfuse": 31328, + "Ġfusion": 23100, + "Ġfuss": 34792, + "Ġfut": 1877, + "Ġfutur": 25840, + "Ġfuture": 2027, + "Ġfutures": 26071, + "Ġfuturistic": 44932, + "Ġfuturo": 23953, + "Ġfuzzy": 34710, + "Ġfy": 38777, + "Ġfá": 15299, + "Ġfácil": 17474, + "Ġfällt": 42870, + "ĠfÃ¥": 14251, + "ĠfÃ¥r": 14865, + "ĠfÃ¥tt": 43651, + "Ġfé": 34271, + "Ġfö": 25309, + "Ġför": 4816, + "Ġföret": 47099, + "Ġförs": 30864, + "Ġförst": 32864, + "Ġförsta": 44203, + "Ġförsö": 45020, + "Ġfø": 50177, + "Ġfør": 40314, + "Ġfüh": 18813, + "Ġführen": 35498, + "Ġführt": 39671, + "Ġfünf": 28723, + "Ġfür": 2959, + "Ġfürs": 46577, + "ĠfÃŃs": 27538, + "ĠfÃŃsica": 46436, + "Ġfır": 47305, + "Ġg": 290, + "Ġga": 5959, + "Ġgaan": 14118, + "Ġgaat": 17829, + "Ġgab": 17964, + "Ġgad": 21318, + "Ġgadget": 38090, + "Ġgadgets": 37635, + "Ġgag": 34833, + "Ġgagn": 49177, + "Ġgagner": 45343, + "Ġgain": 6052, + "Ġgained": 12634, + "Ġgaining": 19752, + "Ġgains": 16823, + "Ġgak": 30045, + "Ġgal": 7660, + "Ġgalax": 26285, + "Ġgalaxies": 28755, + "Ġgalaxy": 17639, + "Ġgalera": 31912, + "Ġgall": 8527, + "Ġgalleries": 40141, + "Ġgallery": 18378, + "Ġgallon": 30339, + "Ġgallons": 32238, + "Ġgam": 8019, + "Ġgamb": 38871, + "Ġgamble": 44128, + "Ġgambling": 27077, + "Ġgame": 1216, + "Ġgameplay": 11421, + "Ġgamer": 30266, + "Ġgamers": 26774, + "Ġgames": 2813, + "Ġgaming": 9703, + "Ġgamma": 15546, + "Ġgan": 7574, + "Ġgang": 10145, + "Ġgangs": 42834, + "Ġgangster": 50104, + "Ġganhar": 40200, + "Ġganska": 34526, + "Ġganz": 6312, + "Ġganze": 18898, + "Ġganzen": 23966, + "Ġgap": 7417, + "Ġgaps": 15031, + "Ġgar": 3691, + "Ġgarage": 14400, + "Ġgarant": 22251, + "Ġgarbage": 14150, + "Ġgard": 5628, + "Ġgarde": 47903, + "Ġgarden": 7431, + "Ġgardening": 31799, + "Ġgardens": 23803, + "Ġgarder": 47167, + "Ġgarlic": 9168, + "Ġgarment": 35084, + "Ġgarments": 44881, + "Ġgarn": 25067, + "Ġgarnish": 42430, + "Ġgars": 35542, + "Ġgas": 4211, + "Ġgases": 21452, + "Ġgasket": 47671, + "Ġgasoline": 28914, + "Ġgasps": 43035, + "Ġgast": 17898, + "Ġgat": 44092, + "Ġgate": 8539, + "Ġgates": 19792, + "Ġgateway": 28532, + "Ġgather": 5448, + "Ġgathered": 13032, + "Ġgathering": 13519, + "Ġgatherings": 36247, + "Ġgauche": 36724, + "Ġgauge": 17924, + "Ġgave": 2729, + "Ġgay": 9049, + "Ġgaz": 26232, + "Ġgaze": 24294, + "Ġgdy": 28405, + "Ġgdzie": 18922, + "ĠgdzieÅĽ": 41359, + "Ġge": 1519, + "Ġgear": 7394, + "Ġgearbox": 35291, + "Ġgeared": 35924, + "Ġgears": 20915, + "Ġgeb": 21125, + "Ġgebaut": 49203, + "Ġgebe": 29073, + "Ġgeben": 17191, + "Ġgebracht": 40744, + "Ġgebru": 33857, + "Ġgece": 48173, + "Ġged": 19238, + "Ġgedaan": 44419, + "Ġgedacht": 33296, + "Ġgee": 24105, + "Ġgeehr": 40886, + "Ġgeek": 36162, + "Ġgeen": 21773, + "Ġgeez": 46108, + "Ġgef": 11271, + "Ġgefallen": 39935, + "Ġgefragt": 42638, + "Ġgefunden": 36923, + "Ġgefähr": 41484, + "Ġgeg": 23982, + "Ġgegangen": 44415, + "Ġgegeben": 32572, + "Ġgegen": 13953, + "Ġgegenüber": 41830, + "Ġgeh": 13218, + "Ġgehabt": 37092, + "Ġgehe": 34252, + "Ġgehen": 13230, + "Ġgeht": 7095, + "Ġgehört": 21544, + "Ġgeil": 47165, + "Ġgek": 14037, + "Ġgekommen": 32732, + "Ġgel": 4087, + "Ġgelatin": 45174, + "Ġgeld": 25114, + "Ġgeldi": 22121, + "Ġgele": 20234, + "Ġgelecek": 47158, + "Ġgelen": 43353, + "Ġgelernt": 49224, + "Ġgelir": 44011, + "Ġgeliyor": 29776, + "ĠgelmiÅŁ": 45849, + "Ġgels": 39196, + "Ġgem": 7173, + "Ġgema": 46126, + "Ġgemaakt": 49666, + "Ġgemacht": 12293, + "Ġgeme": 18111, + "Ġgemeins": 22971, + "Ġgemeinsam": 29701, + "Ġgems": 29296, + "Ġgen": 1049, + "Ġgenau": 12535, + "Ġgenauso": 37694, + "Ġgender": 7898, + "Ġgene": 12186, + "Ġgener": 1337, + "Ġgeneral": 2674, + "Ġgeneralized": 44498, + "Ġgenerally": 5101, + "Ġgenerals": 41346, + "Ġgenerate": 8460, + "Ġgenerated": 10833, + "Ġgenerates": 23815, + "Ġgenerating": 17746, + "Ġgeneration": 5125, + "Ġgenerational": 48320, + "Ġgenerations": 10593, + "Ġgenerator": 19265, + "Ġgenerators": 38662, + "Ġgenere": 41553, + "Ġgeneric": 19577, + "Ġgenerosity": 30178, + "Ġgenerous": 14537, + "Ġgenerously": 48983, + "Ġgenes": 14424, + "Ġgenetic": 12462, + "Ġgenetically": 37582, + "Ġgenetics": 26516, + "Ġgenial": 48228, + "Ġgenius": 14017, + "Ġgenocide": 31867, + "Ġgenom": 41441, + "Ġgenome": 21953, + "Ġgenommen": 38715, + "Ġgenre": 11022, + "Ġgenres": 30057, + "Ġgens": 10668, + "Ġgent": 16108, + "Ġgente": 3788, + "Ġgentle": 6424, + "Ġgentleman": 15761, + "Ġgentlemen": 11669, + "Ġgently": 13073, + "Ġgenug": 33194, + "Ġgenuine": 16699, + "Ġgenuinely": 17839, + "Ġgeo": 43198, + "Ġgeograph": 25435, + "Ġgeographic": 32318, + "Ġgeographical": 39872, + "Ġgeography": 26695, + "Ġgeology": 48788, + "Ġgeomet": 12956, + "Ġgeometric": 33246, + "Ġgeometry": 18426, + "Ġgeopolit": 46615, + "Ġgep": 30979, + "Ġger": 5713, + "Ġgera": 41289, + "Ġgerade": 12117, + "Ġgeral": 35412, + "Ġgere": 18635, + "Ġgerek": 34736, + "Ġgereki": 45038, + "Ġgeri": 41018, + "Ġgerm": 19858, + "Ġgerman": 46572, + "Ġgerms": 44010, + "Ġgern": 38531, + "Ġgerne": 15689, + "Ġgerçek": 24944, + "Ġgerçekten": 35784, + "Ġges": 5019, + "Ġgesagt": 12260, + "Ġgesam": 39746, + "Ġgesch": 13511, + "Ġgeschafft": 45215, + "Ġgeschrieben": 47397, + "Ġgesehen": 21535, + "Ġgespannt": 47355, + "Ġgesprochen": 42714, + "Ġgest": 7219, + "Ġgestellt": 42259, + "Ġgesture": 22252, + "Ġgestures": 28475, + "Ġgesund": 49176, + "Ġget": 483, + "Ġgetan": 45599, + "Ġgetir": 38610, + "Ġgets": 2170, + "Ġgettin": 34568, + "Ġgetting": 1242, + "Ġgev": 47103, + "Ġgeven": 49437, + "Ġgew": 6906, + "Ġgewe": 45707, + "Ġgewesen": 27653, + "Ġgewoon": 19751, + "Ġgeworden": 26281, + "Ġgez": 18110, + "Ġgezeigt": 48661, + "Ġgeç": 13110, + "Ġgh": 33937, + "Ġghee": 45172, + "Ġghetto": 47371, + "Ġghost": 8359, + "Ġghosts": 21744, + "Ġgi": 1735, + "Ġgia": 39689, + "Ġgiant": 7410, + "Ġgiants": 31894, + "Ġgib": 4553, + "Ġgibi": 11033, + "Ġgibt": 6089, + "Ġgid": 19805, + "Ġgide": 34255, + "Ġgider": 42291, + "Ġgift": 5306, + "Ġgifted": 27104, + "Ġgifts": 11449, + "Ġgig": 8741, + "Ġgigabytes": 42741, + "Ġgigantic": 26800, + "Ġgiggles": 50032, + "Ġgigs": 34586, + "Ġgilt": 29487, + "Ġgim": 27071, + "Ġgimbal": 43667, + "Ġgimm": 37214, + "Ġgin": 36604, + "Ġging": 21924, + "Ġginger": 14966, + "Ġgio": 48508, + "Ġgiorn": 36937, + "Ġgiorno": 42202, + "Ġgir": 14703, + "Ġgiraffe": 49897, + "Ġgird": 48219, + "Ġgirl": 2013, + "Ġgirlfriend": 10369, + "Ġgirlfriends": 46558, + "Ġgirls": 4519, + "Ġgit": 18331, + "Ġgitti": 37700, + "Ġgitu": 20156, + "Ġgive": 976, + "Ġgiveaway": 23508, + "Ġgiven": 2212, + "Ġgives": 2709, + "Ġgiving": 2902, + "ĠgiÃł": 30469, + "Ġgiá»Ŀ": 28689, + "Ġgj": 20249, + "Ġgjorde": 47670, + "Ġgjort": 37420, + "Ġgl": 1563, + "Ġgla": 8771, + "Ġglac": 29700, + "Ġglacier": 48021, + "Ġglad": 5404, + "Ġgladly": 47307, + "Ġglam": 28133, + "Ġglamorous": 48760, + "Ġglance": 21094, + "Ġgland": 43284, + "Ġglands": 49533, + "Ġglare": 49159, + "Ġglass": 4276, + "Ġglasses": 10812, + "Ġglaub": 23210, + "Ġglaube": 13756, + "Ġglauben": 47139, + "Ġglaze": 39390, + "Ġgle": 48956, + "Ġgleich": 11699, + "Ġgleichen": 49069, + "Ġgleichzeitig": 44242, + "Ġgli": 17161, + "Ġglide": 41848, + "Ġglimp": 25727, + "Ġglimpse": 25838, + "Ġglitch": 23552, + "Ġglitter": 18620, + "Ġglo": 3114, + "Ġglob": 16125, + "Ġglobal": 4338, + "Ġglobalization": 40518, + "Ġglobally": 18958, + "Ġglobe": 15371, + "Ġglor": 26623, + "Ġglorious": 24026, + "Ġglory": 11924, + "Ġgloss": 19574, + "Ġglossy": 38285, + "Ġglove": 26928, + "Ġgloves": 14976, + "Ġglow": 17513, + "Ġglowing": 27064, + "Ġgluc": 19636, + "Ġglucose": 23997, + "Ġglue": 8998, + "Ġglued": 28008, + "Ġglut": 33249, + "Ġgluten": 24326, + "Ġgly": 22633, + "Ġgn": 49819, + "Ġgo": 352, + "Ġgoal": 3387, + "Ġgoals": 5493, + "Ġgoat": 23608, + "Ġgoats": 34219, + "Ġgob": 20489, + "Ġgobierno": 29254, + "Ġgod": 3044, + "Ġgoddamn": 32951, + "Ġgoddess": 24508, + "Ġgods": 14049, + "Ġgodt": 35427, + "Ġgoed": 16987, + "Ġgoes": 1709, + "Ġgogg": 36653, + "Ġgoggles": 39808, + "Ġgoin": 21582, + "Ġgoing": 516, + "Ġgol": 9988, + "Ġgold": 3821, + "Ġgolden": 9729, + "Ġgolf": 12880, + "Ġgolpe": 42032, + "Ġgon": 26307, + "Ġgone": 2780, + "Ġgonna": 799, + "Ġgoo": 33192, + "Ġgood": 665, + "Ġgoodbye": 12084, + "Ġgoodies": 44072, + "Ġgoodness": 8387, + "Ġgoods": 10179, + "Ġgoof": 30356, + "Ġgoofy": 42995, + "Ġgoog": 50061, + "Ġgoogle": 20742, + "Ġgoose": 24717, + "Ġgoosebumps": 48305, + "Ġgor": 24012, + "Ġgord": 42443, + "Ġgorgeous": 12291, + "Ġgorilla": 45066, + "Ġgosh": 6502, + "Ġgosp": 37250, + "Ġgospel": 14943, + "Ġgossip": 31788, + "Ġgost": 13188, + "Ġgosta": 39874, + "Ġgosto": 32022, + "Ġgot": 658, + "Ġgotta": 3428, + "Ġgotten": 5768, + "Ġgou": 21301, + "Ġgour": 46651, + "Ġgouvern": 24894, + "Ġgouvernement": 27504, + "Ġgover": 27526, + "Ġgovern": 1980, + "Ġgovernance": 17449, + "Ġgoverned": 35529, + "Ġgoverning": 30054, + "Ġgovernment": 2463, + "Ġgovernmental": 43391, + "Ġgovernments": 11280, + "Ġgoverno": 34685, + "Ġgovernor": 12965, + "Ġgovernors": 36571, + "Ġgown": 34428, + "Ġgr": 677, + "Ġgra": 1295, + "Ġgrab": 4444, + "Ġgrabbed": 18607, + "Ġgrabbing": 23771, + "Ġgrabs": 30028, + "Ġgrac": 11625, + "Ġgrace": 10042, + "Ġgracias": 16611, + "Ġgracious": 36113, + "Ġgrad": 2771, + "Ġgrade": 7204, + "Ġgraders": 46703, + "Ġgrades": 18041, + "Ġgradient": 16235, + "Ġgrading": 35540, + "Ġgradu": 4138, + "Ġgradual": 32890, + "Ġgradually": 13145, + "Ġgraduate": 8080, + "Ġgraduated": 13693, + "Ġgraduates": 13577, + "Ġgraduating": 18843, + "Ġgraduation": 15652, + "Ġgraffiti": 40531, + "Ġgraft": 44767, + "Ġgrain": 12837, + "Ġgrains": 22908, + "Ġgram": 21353, + "Ġgramm": 17570, + "Ġgrammar": 22317, + "Ġgrams": 11899, + "Ġgran": 9370, + "Ġgrand": 2697, + "Ġgrandchildren": 28112, + "Ġgranddaughter": 44411, + "Ġgrande": 8883, + "Ġgrandes": 16640, + "Ġgrandfather": 14754, + "Ġgrandi": 45155, + "Ġgrandma": 15766, + "Ġgrandmother": 14317, + "Ġgrandpa": 24129, + "Ġgrandparents": 21876, + "Ġgrands": 33298, + "Ġgrandson": 31657, + "Ġgranny": 44797, + "Ġgrant": 6386, + "Ġgranted": 12344, + "Ġgranting": 50204, + "Ġgrants": 16101, + "Ġgranular": 39962, + "Ġgrape": 23978, + "Ġgrapes": 28032, + "Ġgraph": 4295, + "Ġgraphic": 14089, + "Ġgraphical": 35942, + "Ġgraphics": 11837, + "Ġgraphs": 24877, + "Ġgrapp": 27165, + "Ġgrappling": 50086, + "Ġgras": 29444, + "Ġgrasp": 21743, + "Ġgrass": 8054, + "Ġgrasses": 49701, + "Ġgrassroots": 39522, + "Ġgrat": 10158, + "Ġgrate": 46214, + "Ġgrated": 43319, + "Ġgrateful": 7941, + "Ġgratitude": 16935, + "Ġgratuit": 38342, + "Ġgrav": 7427, + "Ġgrave": 12525, + "Ġgravel": 30001, + "Ġgraves": 31664, + "Ġgraveyard": 42607, + "Ġgravit": 26048, + "Ġgravitational": 28538, + "Ġgravity": 12110, + "Ġgravy": 31535, + "Ġgray": 10855, + "Ġgrazing": 48112, + "Ġgre": 6066, + "Ġgrease": 24867, + "Ġgreasy": 36401, + "Ġgreat": 869, + "Ġgreater": 5044, + "Ġgreatest": 6636, + "Ġgreatly": 14147, + "Ġgreatness": 31196, + "Ġgreed": 29230, + "Ġgreedy": 28228, + "Ġgreen": 3092, + "Ġgreenhouse": 22126, + "Ġgreens": 22897, + "Ġgreet": 12044, + "Ġgreeted": 38441, + "Ġgreeting": 28174, + "Ġgreetings": 33667, + "Ġgren": 20313, + "Ġgrenade": 31527, + "Ġgrenades": 43529, + "Ġgrew": 6109, + "Ġgrey": 16578, + "Ġgri": 17865, + "Ġgrid": 10748, + "Ġgrief": 18998, + "Ġgriev": 49260, + "Ġgrieving": 48454, + "Ġgrill": 16492, + "Ġgrille": 49011, + "Ġgrilled": 25183, + "Ġgrilling": 49961, + "Ġgrim": 36010, + "Ġgrin": 49179, + "Ġgrind": 16700, + "Ġgrinder": 41424, + "Ġgrinding": 25300, + "Ġgrip": 12007, + "Ġgrips": 38037, + "Ġgrit": 30133, + "Ġgro": 4634, + "Ġgroans": 44657, + "Ġgrocer": 11884, + "Ġgroceries": 31391, + "Ġgrocery": 14410, + "Ġgroo": 42156, + "Ġgroom": 22198, + "Ġgrooming": 49700, + "Ġgroot": 41906, + "Ġgroove": 26910, + "Ġgrooves": 49359, + "Ġgros": 18638, + "Ġgross": 11367, + "Ġgrosse": 40009, + "Ġgrote": 39928, + "Ġground": 2727, + "Ġgroundbreaking": 42491, + "Ġgrounded": 23535, + "Ġgrounding": 46727, + "Ġgrounds": 19196, + "Ġgroundwater": 40511, + "Ġgroup": 1594, + "Ġgroupe": 32980, + "Ġgrouped": 41877, + "Ġgrouping": 40149, + "Ġgroups": 3935, + "Ġgrow": 1852, + "Ġgrowers": 45946, + "Ġgrowing": 4194, + "Ġgrown": 7709, + "Ġgrows": 13156, + "Ġgrowth": 4599, + "ĠgroÃŁ": 17253, + "ĠgroÃŁe": 19691, + "ĠgroÃŁen": 23076, + "ĠgroÃŁer": 46220, + "ĠgroÃŁes": 48875, + "Ġgrues": 48238, + "Ġgrund": 30886, + "Ġgrup": 12740, + "Ġgrupo": 20190, + "Ġgrupos": 33758, + "Ġgrupp": 47477, + "Ġgry": 41974, + "Ġgráfic": 34613, + "Ġgrâce": 31180, + "ĠgrÃ¶ÃŁ": 20691, + "Ġgu": 695, + "Ġgua": 30081, + "Ġguar": 7498, + "Ġguarante": 14203, + "Ġguarantee": 10815, + "Ġguaranteed": 18031, + "Ġguarantees": 32567, + "Ġguard": 6290, + "Ġguarded": 44157, + "Ġguardian": 30355, + "Ġguardians": 40525, + "Ġguarding": 44077, + "Ġguards": 17652, + "Ġgucken": 33135, + "Ġgue": 13987, + "Ġguer": 14486, + "Ġguerra": 27542, + "Ġguerre": 31400, + "Ġguess": 2041, + "Ġguessed": 21852, + "Ġguesses": 42703, + "Ġguessing": 17939, + "Ġguest": 8341, + "Ġguests": 9804, + "Ġguid": 6489, + "Ġguidance": 10056, + "Ġguide": 5934, + "Ġguided": 19663, + "Ġguideline": 41653, + "Ġguidelines": 12470, + "Ġguides": 17007, + "Ġguiding": 25061, + "Ġguild": 37435, + "Ġguilt": 20421, + "Ġguilty": 12341, + "Ġguit": 31108, + "Ġguitar": 7531, + "Ġguitars": 36809, + "Ġgum": 19973, + "Ġgummy": 45617, + "Ġgun": 3874, + "Ġguns": 10153, + "Ġgur": 40642, + "Ġguru": 29949, + "Ġgust": 9679, + "Ġgusta": 20576, + "Ġgustado": 45221, + "ĠgustarÃŃa": 45896, + "Ġgusto": 38723, + "Ġgut": 5228, + "Ġgute": 21476, + "Ġguten": 31277, + "Ġgutes": 45859, + "Ġguts": 28560, + "Ġguy": 2146, + "Ġguys": 1074, + "Ġgw": 29255, + "Ġgy": 15823, + "Ġgym": 9222, + "Ġgymn": 35760, + "Ġgymnastics": 48461, + "Ġgä": 37612, + "Ġgäller": 48771, + "ĠgÃ¥": 22098, + "ĠgÃ¥ng": 36528, + "ĠgÃ¥r": 19831, + "Ġgé": 38462, + "Ġgén": 14575, + "Ġgénér": 45622, + "Ġgénéral": 27796, + "Ġgì": 22804, + "Ġgö": 7105, + "Ġgör": 8362, + "Ġgöra": 20541, + "Ġgörd": 27407, + "Ġgöre": 21032, + "Ġgörün": 49676, + "ĠgörÃ¼ÅŁ": 38488, + "Ġgöst": 42594, + "Ġgöster": 40968, + "Ġgöt": 39630, + "Ġgöz": 23234, + "Ġgü": 18148, + "Ġgün": 14472, + "Ġgüzel": 14746, + "Ġgüç": 48015, + "ĠgÅĤ": 18117, + "ĠgÅĤos": 43767, + "Ġh": 276, + "Ġha": 324, + "Ġhaar": 39371, + "Ġhab": 3025, + "Ġhabe": 6015, + "Ġhaben": 3084, + "Ġhaber": 15811, + "Ġhabil": 36565, + "Ġhabit": 7164, + "Ġhabitat": 20110, + "Ġhabitats": 42159, + "Ġhabits": 14100, + "Ġhabitual": 46883, + "Ġhabl": 26280, + "Ġhabla": 42135, + "Ġhablando": 29369, + "Ġhablar": 21014, + "Ġhabr": 32794, + "Ġhabt": 23660, + "ĠhabÃŃa": 16395, + "ĠhabÃŃan": 44466, + "Ġhac": 46093, + "Ġhace": 10032, + "Ġhacemos": 33839, + "Ġhacen": 27434, + "Ġhacer": 6720, + "Ġhacerlo": 32039, + "Ġhacia": 21365, + "Ġhaciendo": 20509, + "Ġhack": 10339, + "Ġhacked": 36218, + "Ġhacker": 38155, + "Ġhackers": 39766, + "Ġhacking": 31422, + "Ġhacks": 33617, + "Ġhad": 632, + "Ġhade": 25027, + "Ġhadi": 25789, + "Ġhadn": 8782, + "Ġhaft": 32329, + "Ġhag": 42386, + "Ġhaga": 46726, + "Ġhago": 38721, + "Ġhah": 17206, + "Ġhaha": 17236, + "Ġhahaha": 28142, + "Ġhai": 21822, + "Ġhail": 38157, + "Ġhair": 2578, + "Ġhaircut": 30328, + "Ġhaird": 41954, + "Ġhairs": 26525, + "Ġhairst": 30658, + "Ġhairstyle": 32770, + "Ġhairy": 42346, + "Ġhak": 35720, + "Ġhakk": 37949, + "Ġhal": 7523, + "Ġhalf": 1922, + "Ġhalfway": 15461, + "Ġhall": 6500, + "Ġhalls": 26177, + "Ġhalluc": 35212, + "Ġhallway": 23903, + "Ġhalo": 46268, + "Ġhalt": 12479, + "Ġhalten": 27184, + "Ġhalves": 38490, + "Ġham": 7852, + "Ġhamb": 25172, + "Ġhamburger": 34575, + "Ġhamm": 36600, + "Ġhammer": 13017, + "Ġhan": 7276, + "Ġhand": 1011, + "Ġhandc": 46175, + "Ġhanded": 16013, + "Ġhandful": 16458, + "Ġhandheld": 37634, + "Ġhandic": 31369, + "Ġhandicap": 45975, + "Ġhanding": 34774, + "Ġhandlar": 42572, + "Ġhandle": 4813, + "Ġhandled": 18033, + "Ġhandler": 41967, + "Ġhandles": 18722, + "Ġhandling": 13175, + "Ġhandmade": 39446, + "Ġhandout": 48785, + "Ġhands": 2377, + "Ġhandsome": 13421, + "Ġhandwriting": 39179, + "Ġhandy": 13239, + "Ġhang": 3967, + "Ġhanger": 48034, + "Ġhanging": 8345, + "Ġhangs": 35947, + "Ġhani": 45108, + "Ġhanno": 26595, + "Ġhanya": 46291, + "Ġhapp": 782, + "Ġhappen": 1051, + "Ġhappened": 2011, + "Ġhappening": 2737, + "Ġhappens": 2314, + "Ġhappier": 20423, + "Ġhappiest": 37584, + "Ġhappily": 19909, + "Ġhappiness": 8324, + "Ġhappy": 2055, + "Ġhar": 2233, + "Ġharass": 16910, + "Ġharassment": 25836, + "Ġharbor": 36947, + "Ġhard": 1152, + "Ġhardcore": 28196, + "Ġharden": 50203, + "Ġhardened": 42605, + "Ġharder": 6081, + "Ġhardest": 13158, + "Ġhardly": 13572, + "Ġhardness": 44019, + "Ġhardship": 24172, + "Ġhardships": 41351, + "Ġhardware": 8837, + "Ġhare": 39921, + "Ġhari": 33264, + "Ġharm": 6491, + "Ġharmed": 41478, + "Ġharmful": 19727, + "Ġharmless": 40160, + "Ġharmon": 14750, + "Ġharmonic": 32270, + "Ġharmony": 19410, + "Ġharms": 48505, + "Ġharness": 19700, + "Ġharp": 50093, + "Ġharsh": 14897, + "Ġhart": 36644, + "Ġharus": 28219, + "Ġharvest": 11917, + "Ġharvested": 40994, + "Ġharvesting": 35679, + "Ġhas": 575, + "Ġhash": 22019, + "Ġhasht": 17462, + "Ġhashtag": 20379, + "Ġhashtags": 50016, + "Ġhasn": 6132, + "Ġhass": 33690, + "Ġhassle": 39526, + "Ġhast": 6581, + "Ġhasta": 10764, + "Ġhat": 2385, + "Ġhatch": 17387, + "Ġhate": 4700, + "Ġhated": 17398, + "Ġhaters": 43675, + "Ġhates": 23000, + "Ġhating": 45082, + "Ġhatred": 21890, + "Ġhats": 20549, + "Ġhatte": 13299, + "Ġhatten": 20441, + "Ġhatır": 47323, + "Ġhaul": 21167, + "Ġhaunted": 24878, + "Ġhaunting": 44512, + "Ġhaut": 29032, + "Ġhav": 26139, + "Ġhave": 362, + "Ġhaven": 2378, + "Ġhaver": 41912, + "Ġhavia": 28855, + "Ġhaving": 1419, + "Ġhavoc": 47367, + "Ġhaw": 33634, + "Ġhay": 4842, + "Ġhaya": 24693, + "Ġhayat": 26918, + "Ġhayır": 40148, + "Ġhaz": 11008, + "Ġhazard": 20790, + "Ġhazardous": 40020, + "Ġhazards": 34516, + "Ġhazır": 29573, + "Ġhe": 415, + "Ġhead": 1378, + "Ġheadache": 23520, + "Ġheadaches": 35046, + "Ġheaded": 12798, + "Ġheader": 23117, + "Ġheaders": 45101, + "Ġheading": 9864, + "Ġheadlights": 38487, + "Ġheadline": 28380, + "Ġheadlines": 23867, + "Ġheadphone": 35028, + "Ġheadphones": 16278, + "Ġheadquarters": 21052, + "Ġheads": 8050, + "Ġheadset": 26850, + "Ġheal": 10526, + "Ġhealed": 20482, + "Ġhealing": 9745, + "Ġheals": 45653, + "Ġhealth": 1585, + "Ġhealthcare": 8884, + "Ġhealthier": 19580, + "Ġhealthy": 4627, + "Ġheap": 33591, + "Ġhear": 1568, + "Ġheard": 2198, + "Ġhearing": 4763, + "Ġhearings": 34052, + "Ġhears": 25688, + "Ġheart": 1917, + "Ġheartbeat": 34851, + "Ġheartbreaking": 41030, + "Ġheartfelt": 49332, + "Ġhearts": 8852, + "Ġheat": 3738, + "Ġheated": 18806, + "Ġheater": 30408, + "Ġheating": 15082, + "Ġheats": 41035, + "Ġheav": 3577, + "Ġheaven": 7162, + "Ġheavenly": 29406, + "Ġheavens": 26011, + "Ġheavier": 18279, + "Ġheavily": 10950, + "Ġheavy": 4676, + "Ġheb": 8007, + "Ġhebben": 12116, + "Ġhebt": 28339, + "Ġhecho": 13064, + "Ġheck": 12872, + "Ġhect": 37358, + "Ġhed": 33653, + "Ġhedge": 25304, + "Ġheed": 49781, + "Ġheeft": 17425, + "Ġheel": 9430, + "Ġheels": 19502, + "Ġheft": 43674, + "Ġheh": 37791, + "Ġhehe": 42683, + "Ġheight": 6681, + "Ġheightened": 46154, + "Ġheights": 25930, + "Ġhein": 16464, + "Ġheir": 30038, + "ĠheiÃŁ": 39124, + "ĠheiÃŁt": 13139, + "Ġhel": 801, + "Ġhela": 30158, + "Ġheld": 5167, + "Ġhele": 16812, + "Ġhelemaal": 33595, + "Ġhelfen": 29966, + "Ġhelicop": 16061, + "Ġhelicopter": 19803, + "Ġhelicopters": 39016, + "Ġhelium": 40175, + "Ġhell": 4921, + "Ġhello": 7751, + "Ġhelm": 29554, + "Ġhelmet": 15922, + "Ġhelmets": 42022, + "Ġhelp": 854, + "Ġhelped": 4254, + "Ġhelper": 36133, + "Ġhelpful": 4961, + "Ġhelping": 4315, + "Ġhelpless": 27596, + "Ġhelps": 3665, + "Ġhelt": 24821, + "Ġhem": 8636, + "Ġhemen": 32466, + "Ġhemisphere": 38453, + "Ġhemos": 15396, + "Ġhemp": 48266, + "Ġhen": 22253, + "Ġhence": 16678, + "Ġhep": 26299, + "Ġhepat": 48372, + "Ġheps": 38341, + "Ġher": 720, + "Ġheraus": 25089, + "Ġherb": 22662, + "Ġherbal": 44255, + "Ġherbs": 21426, + "Ġherd": 29484, + "Ġhere": 510, + "Ġheritage": 16040, + "Ġherkes": 42122, + "Ġherman": 39458, + "Ġhero": 5316, + "Ġheroes": 12332, + "Ġheroic": 32915, + "Ġheroin": 35551, + "Ġherramient": 38271, + "Ġhers": 6820, + "Ġherself": 7530, + "Ġhertz": 45830, + "Ġherum": 49675, + "Ġherzlich": 45919, + "Ġhes": 10453, + "Ġhesit": 28336, + "Ġhesitant": 36290, + "Ġhesitate": 20842, + "Ġhesitation": 36125, + "Ġhet": 3639, + "Ġheter": 20789, + "Ġheure": 30027, + "Ġheures": 28509, + "Ġheut": 42793, + "Ġheute": 9801, + "Ġhex": 23291, + "Ġhey": 4177, + "Ġhi": 4879, + "Ġhic": 23697, + "Ġhice": 50026, + "Ġhid": 16253, + "Ġhidden": 7633, + "Ġhide": 6479, + "Ġhides": 35953, + "Ġhiding": 10596, + "Ġhier": 3296, + "Ġhierarch": 35250, + "Ġhierarchy": 22333, + "Ġhigh": 1090, + "Ġhigher": 2946, + "Ġhighest": 6343, + "Ġhighlight": 5078, + "Ġhighlighted": 17173, + "Ġhighlighter": 40455, + "Ġhighlighting": 26551, + "Ġhighlights": 14254, + "Ġhighly": 5405, + "Ġhighness": 49235, + "Ġhighs": 29687, + "Ġhighway": 17205, + "Ġhighways": 43747, + "Ġhij": 10625, + "Ġhijo": 38390, + "Ġhijos": 42590, + "Ġhike": 23282, + "Ġhiking": 23784, + "Ġhil": 28315, + "Ġhilar": 18661, + "Ġhilarious": 19796, + "Ġhilft": 42493, + "Ġhill": 10997, + "Ġhills": 21379, + "Ġhim": 796, + "Ġhimself": 3647, + "Ġhin": 14102, + "Ġhina": 41844, + "Ġhinaus": 46056, + "Ġhind": 20138, + "Ġhindsight": 44357, + "Ġhine": 47551, + "Ġhing": 24895, + "Ġhinge": 28822, + "Ġhinges": 46686, + "Ġhint": 12075, + "Ġhinten": 36417, + "Ġhinter": 23219, + "Ġhints": 27271, + "Ġhip": 8103, + "Ġhipp": 27745, + "Ġhips": 15233, + "Ġhire": 11158, + "Ġhired": 13144, + "Ġhiring": 15335, + "Ġhis": 702, + "Ġhiss": 33182, + "Ġhist": 1758, + "Ġhistogram": 49816, + "Ġhistoire": 31202, + "Ġhistor": 4058, + "Ġhistoria": 18385, + "Ġhistorian": 25139, + "Ġhistorians": 26442, + "Ġhistoric": 13236, + "Ġhistorical": 8584, + "Ġhistorically": 16180, + "Ġhistories": 30631, + "Ġhistory": 2503, + "Ġhistó": 33196, + "Ġhistória": 20670, + "Ġhit": 2045, + "Ġhitch": 33259, + "Ġhits": 8664, + "Ġhitting": 8850, + "Ġhive": 42523, + "Ġhizo": 28803, + "Ġhiç": 15169, + "Ġhiçbir": 31151, + "Ġhiá»ĩn": 48079, + "Ġhj": 23731, + "Ġhjäl": 42822, + "Ġhm": 35481, + "Ġhmm": 16478, + "Ġho": 1106, + "Ġhoard": 45940, + "Ġhob": 12959, + "Ġhobbies": 35750, + "Ġhobby": 18240, + "Ġhoc": 16708, + "Ġhoch": 19783, + "Ġhockey": 22449, + "Ġhoe": 19709, + "Ġhoffe": 34903, + "Ġhog": 24855, + "Ġhogy": 14601, + "Ġhoje": 13458, + "Ġhol": 4091, + "Ġhold": 1797, + "Ġholder": 20349, + "Ġholders": 29274, + "Ġholding": 5061, + "Ġholds": 9190, + "Ġhole": 5458, + "Ġholes": 8118, + "Ġholiday": 9960, + "Ġholidays": 15734, + "Ġholiness": 44867, + "Ġholistic": 30334, + "Ġhollow": 23972, + "Ġholog": 38541, + "Ġholy": 10622, + "Ġhom": 3655, + "Ġhomage": 44073, + "Ġhombre": 26102, + "Ġhombres": 37988, + "Ġhome": 1280, + "Ġhomeland": 32494, + "Ġhomeless": 12294, + "Ġhomelessness": 28791, + "Ġhomem": 30798, + "Ġhomemade": 23336, + "Ġhomeowners": 39868, + "Ġhomepage": 31301, + "Ġhomes": 7388, + "Ġhometown": 22112, + "Ġhomework": 14578, + "Ġhomicide": 49411, + "Ġhomme": 35794, + "Ġhommes": 34795, + "Ġhomogeneous": 42632, + "Ġhomosexual": 30490, + "Ġhon": 2157, + "Ġhone": 43212, + "Ġhonest": 3245, + "Ġhonestly": 6095, + "Ġhonesty": 26839, + "Ġhoney": 8330, + "Ġhoneymoon": 48004, + "Ġhonor": 5968, + "Ġhonorable": 36322, + "Ġhonorary": 49365, + "Ġhonored": 14556, + "Ġhonoring": 38254, + "Ġhonors": 26884, + "Ġhonour": 20631, + "Ġhoo": 30663, + "Ġhood": 13376, + "Ġhoodie": 41191, + "Ġhoof": 44974, + "Ġhook": 6328, + "Ġhooked": 20410, + "Ġhooks": 26485, + "Ġhoop": 29749, + "Ġhoor": 43330, + "Ġhop": 3818, + "Ġhope": 1454, + "Ġhoped": 19737, + "Ġhopeful": 20531, + "Ġhopefully": 4696, + "Ġhopeless": 27317, + "Ġhopes": 13681, + "Ġhoping": 7159, + "Ġhopping": 47199, + "Ġhops": 47579, + "Ġhor": 2569, + "Ġhora": 15098, + "Ġhoras": 19548, + "Ġhoriz": 7937, + "Ġhorizon": 18046, + "Ġhorizont": 10908, + "Ġhorizontal": 12750, + "Ġhorizontally": 33796, + "Ġhorm": 11876, + "Ġhormone": 24211, + "Ġhormones": 22453, + "Ġhorn": 13482, + "Ġhorns": 28818, + "Ġhorr": 17582, + "Ġhorrend": 49520, + "Ġhorrible": 9263, + "Ġhorribly": 45028, + "Ġhorrific": 29248, + "Ġhorrifying": 40227, + "Ġhorror": 11501, + "Ġhors": 11912, + "Ġhorse": 6832, + "Ġhorsepower": 25250, + "Ġhorses": 13112, + "Ġhose": 20061, + "Ġhosp": 3872, + "Ġhospital": 4530, + "Ġhospitality": 31207, + "Ġhospitalized": 42340, + "Ġhospitals": 13014, + "Ġhost": 3975, + "Ġhostage": 38434, + "Ġhosted": 19204, + "Ġhostel": 48879, + "Ġhostile": 27312, + "Ġhosting": 16058, + "Ġhosts": 21573, + "Ġhot": 2368, + "Ġhotel": 7622, + "Ġhotels": 22718, + "Ġhots": 36121, + "Ġhott": 30749, + "Ġhotter": 32149, + "Ġhottest": 32780, + "Ġhou": 36621, + "Ġhour": 1773, + "Ġhourly": 48364, + "Ġhours": 2496, + "Ġhous": 4407, + "Ġhouse": 1782, + "Ġhoused": 36084, + "Ġhousehold": 9888, + "Ġhouseholds": 22850, + "Ġhousekeeping": 48033, + "Ġhouses": 8078, + "Ġhousing": 6849, + "Ġhover": 20076, + "Ġhovering": 44923, + "Ġhow": 577, + "Ġhowever": 4461, + "Ġhoy": 13775, + "ĠhoÅŁ": 37063, + "Ġhp": 34064, + "Ġhtt": 22881, + "Ġhttp": 37428, + "Ġhttps": 34426, + "Ġhu": 2137, + "Ġhub": 11838, + "Ġhubs": 46870, + "Ġhue": 24967, + "Ġhug": 8777, + "Ġhuge": 2603, + "Ġhugely": 27417, + "Ġhugging": 41706, + "Ġhugs": 42149, + "Ġhuh": 7020, + "Ġhuis": 46526, + "Ġhull": 32335, + "Ġhum": 1484, + "Ġhuman": 1952, + "Ġhumanitarian": 25096, + "Ġhumanities": 36140, + "Ġhumanity": 10243, + "Ġhumano": 30985, + "Ġhumanos": 34555, + "Ġhumans": 6255, + "Ġhumble": 16735, + "Ġhumbled": 46199, + "Ġhumid": 34649, + "Ġhumidity": 24751, + "Ġhumili": 29981, + "Ġhumility": 27106, + "Ġhumming": 34965, + "Ġhumor": 14318, + "Ġhumour": 45138, + "Ġhump": 47093, + "Ġhun": 7396, + "Ġhunch": 47630, + "Ġhundred": 3262, + "Ġhundreds": 6779, + "Ġhung": 5753, + "Ġhunger": 19229, + "Ġhungry": 8067, + "Ġhunt": 12454, + "Ġhunted": 44943, + "Ġhunter": 22970, + "Ġhunters": 29509, + "Ġhunting": 12599, + "Ġhur": 2756, + "Ġhurdle": 47423, + "Ġhurdles": 48387, + "Ġhurricane": 27136, + "Ġhurricanes": 48026, + "Ġhurry": 11025, + "Ġhurt": 4607, + "Ġhurting": 17744, + "Ġhurts": 11051, + "Ġhus": 4788, + "Ġhusband": 5213, + "Ġhusbands": 37835, + "Ġhust": 25822, + "Ġhustle": 34639, + "Ġhut": 36755, + "Ġhvad": 48160, + "Ġhvis": 45427, + "Ġhvor": 31459, + "Ġhy": 2477, + "Ġhybrid": 13051, + "Ġhyd": 5796, + "Ġhydrated": 44960, + "Ġhydration": 43631, + "Ġhydraul": 27510, + "Ġhydraulic": 32134, + "Ġhydro": 15435, + "Ġhydrogen": 12697, + "Ġhyg": 24470, + "Ġhygiene": 29541, + "Ġhyp": 7420, + "Ġhype": 24144, + "Ġhyped": 43172, + "Ġhyper": 9848, + "Ġhypert": 37488, + "Ġhypertension": 46172, + "Ġhypnot": 42944, + "Ġhypoc": 50207, + "Ġhypocr": 39419, + "Ġhypoth": 24371, + "Ġhypothes": 14276, + "Ġhypotheses": 49969, + "Ġhypothesis": 17291, + "Ġhypothetical": 33053, + "Ġhyster": 35915, + "Ġhyung": 33216, + "Ġhyvin": 36180, + "Ġhyvä": 38526, + "Ġhá": 16448, + "Ġhä": 24054, + "Ġhält": 40751, + "Ġhär": 6533, + "Ġhät": 15344, + "Ġhätte": 20041, + "Ġhätten": 33278, + "Ġhäuf": 39735, + "Ġhäufig": 47543, + "ĠhÃ¥": 24367, + "Ġhè": 49243, + "Ġhé": 32537, + "Ġhö": 13531, + "Ġhöher": 48045, + "Ġhör": 42651, + "Ġhören": 38681, + "Ġhört": 42243, + "ĠhÃłng": 48373, + "ĠhÆ¡n": 34335, + "Ġhết": 44414, + "Ġhá»į": 27700, + "Ġhá»įc": 46786, + "Ġi": 741, + "ĠiOS": 17430, + "ĠiP": 5180, + "ĠiPad": 12945, + "ĠiPh": 42048, + "ĠiPhone": 7252, + "ĠiPhones": 43793, + "ĠiT": 30882, + "ĠiTunes": 33017, + "Ġia": 20721, + "Ġib": 39073, + "Ġiba": 33423, + "Ġic": 4376, + "Ġice": 4435, + "Ġiceberg": 38880, + "Ġiced": 46091, + "Ġich": 1893, + "Ġici": 11575, + "Ġicing": 30086, + "Ġicon": 6528, + "Ġiconic": 15762, + "Ġicons": 23308, + "Ġicy": 42015, + "Ġid": 4496, + "Ġidag": 43334, + "Ġide": 1153, + "Ġidea": 1558, + "Ġideal": 7157, + "Ġideally": 22915, + "Ġideals": 30956, + "Ġideas": 3487, + "Ġidee": 49742, + "Ġideia": 26409, + "Ġident": 2473, + "Ġidentical": 14800, + "Ġidentific": 49456, + "Ġidentification": 22065, + "Ġidentified": 9234, + "Ġidentifier": 45690, + "Ġidentifies": 34597, + "Ġidentify": 5876, + "Ġidentifying": 16696, + "Ġidentities": 24239, + "Ġidentity": 6575, + "Ġideological": 35341, + "Ġideology": 23101, + "Ġidi": 18014, + "Ġidiot": 14270, + "Ġidiots": 36454, + "Ġidle": 30650, + "Ġido": 47771, + "Ġidol": 13060, + "Ġidols": 29959, + "Ġidé": 39227, + "Ġidée": 34832, + "Ġie": 43203, + "Ġiedereen": 47529, + "Ġiemand": 48687, + "Ġiets": 24791, + "Ġif": 498, + "Ġig": 8508, + "Ġigen": 31305, + "Ġign": 5335, + "Ġignite": 49609, + "Ġignition": 37031, + "Ġignor": 14698, + "Ġignorance": 25390, + "Ġignorant": 29374, + "Ġignore": 11200, + "Ġignored": 19735, + "Ġignoring": 26258, + "Ġigual": 10953, + "Ġih": 5096, + "Ġihan": 36131, + "Ġihm": 16021, + "Ġihn": 14534, + "Ġihnen": 24623, + "Ġihr": 5553, + "Ġihre": 14280, + "Ġihrem": 30859, + "Ġihren": 22347, + "Ġihrer": 23990, + "Ġiht": 36737, + "Ġik": 4320, + "Ġiki": 20739, + "Ġikke": 13076, + "Ġil": 1930, + "Ġile": 15465, + "Ġilgili": 43542, + "Ġilk": 28912, + "Ġill": 3171, + "Ġilleg": 9976, + "Ġillegal": 11905, + "Ġillegally": 39585, + "Ġillness": 10152, + "Ġillnesses": 30791, + "Ġillum": 30579, + "Ġillumin": 28593, + "Ġilluminated": 48577, + "Ġillusion": 18854, + "Ġillusions": 49836, + "Ġillust": 8490, + "Ġillustrate": 23221, + "Ġillustrated": 33875, + "Ġillustrates": 41718, + "Ġillustration": 22645, + "Ġillustrations": 34540, + "Ġils": 9047, + "Ġim": 566, + "Ġimag": 2576, + "Ġimage": 3256, + "Ġimagem": 43824, + "Ġimagen": 40652, + "Ġimagery": 24340, + "Ġimages": 5267, + "Ġimagin": 23427, + "Ġimaginar": 49048, + "Ġimaginary": 26164, + "Ġimagination": 12938, + "Ġimagine": 3811, + "Ġimagined": 16590, + "Ġimaging": 25036, + "Ġimagining": 27798, + "Ġimbalance": 43007, + "Ġimitate": 35556, + "Ġimitation": 47624, + "Ġimm": 3397, + "Ġimmature": 49539, + "Ġimmedi": 3640, + "Ġimmediate": 11629, + "Ġimmediately": 4258, + "Ġimmens": 36893, + "Ġimmense": 22920, + "Ġimmensely": 38674, + "Ġimmer": 5578, + "Ġimmers": 16787, + "Ġimmersed": 35416, + "Ġimmersion": 40348, + "Ġimmersive": 35409, + "Ġimmig": 7730, + "Ġimmigrant": 23873, + "Ġimmigrants": 16598, + "Ġimmigration": 13554, + "Ġimmin": 40728, + "Ġimminent": 44339, + "Ġimmort": 44817, + "Ġimmortal": 31414, + "Ġimmun": 13154, + "Ġimmune": 11992, + "Ġimmunity": 22701, + "Ġimp": 704, + "Ġimpact": 2712, + "Ġimpacted": 15653, + "Ġimpactful": 30842, + "Ġimpacting": 29963, + "Ġimpacto": 49687, + "Ġimpacts": 11606, + "Ġimpair": 30256, + "Ġimpaired": 36762, + "Ġimpairment": 42025, + "Ġimpart": 32177, + "Ġimpat": 31156, + "Ġimpatient": 36895, + "Ġimpe": 19643, + "Ġimpeachment": 33663, + "Ġimped": 22584, + "Ġimpedance": 36264, + "Ġimper": 10100, + "Ġimperative": 32490, + "Ġimperfect": 26714, + "Ġimperial": 21143, + "Ġimperson": 38147, + "Ġimpl": 8484, + "Ġimplant": 28309, + "Ġimplants": 43032, + "Ġimplement": 4445, + "Ġimplementation": 11420, + "Ġimplemented": 12270, + "Ġimplementing": 18114, + "Ġimplic": 10629, + "Ġimplication": 37814, + "Ġimplications": 16602, + "Ġimplicit": 26947, + "Ġimplied": 32614, + "Ġimplies": 18779, + "Ġimply": 33616, + "Ġimport": 974, + "Ġimporta": 33218, + "Ġimportance": 7379, + "Ġimportant": 1021, + "Ġimportante": 9416, + "Ġimportantes": 27963, + "Ġimportantly": 8906, + "Ġimported": 25524, + "Ġimporting": 43866, + "Ġimports": 41596, + "Ġimpos": 38396, + "Ġimpose": 26952, + "Ġimposed": 26491, + "Ġimposing": 40288, + "Ġimposs": 38802, + "Ġimpossible": 6243, + "Ġimpost": 47804, + "Ġimpres": 35672, + "Ġimpress": 6729, + "Ġimpressed": 11679, + "Ġimpression": 9995, + "Ġimpressions": 24245, + "Ġimpressive": 8992, + "Ġimprint": 44615, + "Ġimprison": 24146, + "Ġimprisoned": 35332, + "Ġimpro": 2530, + "Ġimproper": 40651, + "Ġimprov": 29424, + "Ġimprove": 3470, + "Ġimproved": 9689, + "Ġimprovement": 10444, + "Ġimprovements": 13797, + "Ġimproves": 24771, + "Ġimproving": 11470, + "Ġimprovis": 39784, + "Ġimpul": 41767, + "Ġimpulse": 26857, + "Ġin": 294, + "Ġinability": 33162, + "Ġinac": 33230, + "Ġinacc": 37957, + "Ġinaccurate": 46443, + "Ġinad": 42148, + "Ġinadequ": 35441, + "Ġinadequate": 42107, + "Ġinadvert": 49152, + "Ġinan": 33113, + "Ġinappropri": 24728, + "Ġinappropriate": 26723, + "Ġinaug": 23541, + "Ġinaugural": 48741, + "Ġinbox": 35067, + "Ġinc": 834, + "Ġincap": 30399, + "Ġincapable": 44174, + "Ġincar": 23694, + "Ġincarcer": 24650, + "Ġincarcerated": 39059, + "Ġincarceration": 41603, + "Ġincarn": 30938, + "Ġincarnation": 49988, + "Ġincense": 50202, + "Ġincent": 11903, + "Ġincentiv": 35328, + "Ġincentive": 22346, + "Ġincentives": 23374, + "Ġinception": 49834, + "Ġinch": 7227, + "Ġinches": 8478, + "Ġincidence": 41726, + "Ġincident": 9348, + "Ġincidents": 21139, + "Ġincl": 37070, + "Ġinclined": 28173, + "Ġinclu": 25520, + "Ġinclud": 1637, + "Ġinclude": 4090, + "Ġincluded": 5556, + "Ġincludes": 5974, + "Ġincluding": 3009, + "Ġinclus": 17204, + "Ġinclusion": 15874, + "Ġinclusive": 13429, + "Ġincluso": 24018, + "Ġincom": 14036, + "Ġincome": 5742, + "Ġincomes": 42458, + "Ġincoming": 22341, + "Ġincomp": 40393, + "Ġincompet": 41602, + "Ġincomplete": 31709, + "Ġincon": 20972, + "Ġincons": 22039, + "Ġinconsistent": 36891, + "Ġinconven": 28752, + "Ġinconvenient": 46196, + "Ġincor": 7121, + "Ġincorpor": 8788, + "Ġincorporate": 16091, + "Ġincorporated": 21654, + "Ġincorporates": 50193, + "Ġincorporating": 33613, + "Ġincorrect": 18424, + "Ġincorrectly": 42892, + "Ġincr": 42211, + "Ġincre": 1946, + "Ġincrease": 3488, + "Ġincreased": 6505, + "Ġincreases": 8637, + "Ġincreasing": 5662, + "Ġincreasingly": 12980, + "Ġincred": 3267, + "Ġincredible": 4651, + "Ġincredibly": 6252, + "Ġincrement": 26200, + "Ġincremental": 35759, + "ĠincreÃŃ": 46202, + "Ġincub": 33345, + "Ġincumb": 39854, + "Ġincumbent": 45539, + "Ġincur": 35774, + "Ġind": 1016, + "Ġinde": 24162, + "Ġindeed": 6451, + "Ġindem": 37185, + "Ġindent": 44494, + "Ġindepend": 4819, + "Ġindependence": 14640, + "Ġindependent": 6695, + "Ġindependently": 21761, + "Ġindex": 8186, + "Ġindic": 4694, + "Ġindicate": 13330, + "Ġindicated": 16176, + "Ġindicates": 16203, + "Ġindicating": 25604, + "Ġindication": 18877, + "Ġindications": 44450, + "Ġindicative": 47513, + "Ġindicator": 16961, + "Ġindicators": 22176, + "Ġindices": 43840, + "Ġindict": 49981, + "Ġindie": 33184, + "Ġindifferent": 48502, + "Ġindigenous": 15511, + "Ġindirect": 19523, + "Ġindirectly": 37779, + "Ġindisp": 40637, + "Ġindispens": 42937, + "Ġindispensable": 47940, + "Ġindivid": 2461, + "Ġindividual": 2609, + "Ġindividually": 16652, + "Ġindividuals": 5346, + "Ġindo": 13770, + "Ġindoor": 24029, + "Ġindoors": 29655, + "Ġindu": 13716, + "Ġinduce": 41263, + "Ġinduced": 33991, + "Ġinduct": 31612, + "Ġinduction": 33371, + "Ġindul": 28626, + "Ġindust": 2735, + "Ġindustri": 49005, + "Ġindustrial": 9987, + "Ġindustries": 13284, + "Ġindustry": 3518, + "Ġine": 7167, + "Ġineffective": 48836, + "Ġinefficient": 43495, + "Ġinequ": 25099, + "Ġinequalities": 41874, + "Ġinequality": 16970, + "Ġinert": 25832, + "Ġinertia": 37234, + "Ġinevit": 14481, + "Ġinevitable": 21451, + "Ġinevitably": 28171, + "Ġinex": 29961, + "Ġinexpensive": 28382, + "Ġinf": 1536, + "Ġinfamous": 30769, + "Ġinfant": 16757, + "Ġinfantry": 30887, + "Ġinfants": 38829, + "Ġinfect": 5888, + "Ġinfected": 15414, + "Ġinfection": 11764, + "Ġinfections": 19478, + "Ġinfectious": 26780, + "Ġinfer": 13596, + "Ġinference": 38253, + "Ġinferior": 24249, + "Ġinfilt": 29085, + "Ġinfin": 7193, + "Ġinfinite": 13785, + "Ġinfinitely": 36227, + "Ġinfinity": 13202, + "Ġinfl": 9922, + "Ġinflam": 15987, + "Ġinflamm": 16782, + "Ġinflammation": 21613, + "Ġinflammatory": 38199, + "Ġinflation": 15860, + "Ġinflict": 38137, + "Ġinflu": 4015, + "Ġinfluen": 9024, + "Ġinfluence": 6503, + "Ġinfluenced": 15269, + "Ġinfluencer": 39503, + "Ġinfluencers": 38646, + "Ġinfluences": 21222, + "Ġinfluencing": 40396, + "Ġinfluential": 22215, + "Ġinfluenza": 36408, + "Ġinfo": 13614, + "Ġinform": 1356, + "Ġinformación": 21660, + "Ġinformal": 24342, + "Ġinformation": 1589, + "Ġinformational": 49391, + "Ġinformations": 38855, + "Ġinformative": 27759, + "Ġinformação": 48403, + "Ġinformações": 42542, + "Ġinformed": 11740, + "Ġinforming": 43969, + "Ġinforms": 45320, + "Ġinfra": 23654, + "Ġinfrared": 30361, + "Ġinfrast": 6534, + "Ġinfrastructure": 6896, + "Ġinfring": 45205, + "Ġinfused": 50083, + "Ġing": 3957, + "Ġingen": 21600, + "Ġingl": 35511, + "Ġinglés": 49766, + "Ġingred": 5621, + "Ġingredient": 14751, + "Ġingredients": 6952, + "Ġinh": 47707, + "Ġinhab": 16934, + "Ġinhabit": 21863, + "Ġinhabitants": 27740, + "Ġinhabited": 47538, + "Ġinhal": 43157, + "Ġinhale": 22071, + "Ġinher": 9484, + "Ġinherent": 26387, + "Ġinherently": 27993, + "Ġinherit": 21389, + "Ġinheritance": 32122, + "Ġinherited": 27091, + "Ġinhib": 20406, + "Ġinhibit": 49858, + "Ġini": 7408, + "Ġinic": 40380, + "Ġinici": 43043, + "Ġinicial": 44076, + "Ġinim": 45945, + "Ġinit": 3157, + "Ġiniti": 6265, + "Ġinitial": 5883, + "Ġinitially": 9105, + "Ġinitiate": 31574, + "Ġinitiated": 28578, + "Ġinitiation": 43569, + "Ġinitiative": 11552, + "Ġinitiatives": 16194, + "Ġinj": 5580, + "Ġinject": 10711, + "Ġinjected": 36967, + "Ġinjection": 22873, + "Ġinjections": 47178, + "Ġinjured": 13408, + "Ġinjuries": 14799, + "Ġinjury": 10454, + "Ġinjust": 19336, + "Ġinjustice": 24750, + "Ġink": 11276, + "Ġinland": 47009, + "Ġinlet": 36961, + "Ġinm": 41052, + "Ġinmates": 39479, + "Ġinn": 7714, + "Ġinnate": 41766, + "Ġinne": 24170, + "Ġinner": 7284, + "Ġinnerhalb": 48460, + "Ġinning": 49989, + "Ġinnoc": 10843, + "Ġinnocence": 35796, + "Ġinnocent": 13171, + "Ġinnov": 5083, + "Ġinnovate": 33444, + "Ġinnovation": 8504, + "Ġinnovations": 24283, + "Ġinnovative": 12999, + "Ġinnych": 36286, + "Ġinom": 44839, + "Ġinput": 4846, + "Ġinputs": 15743, + "Ġinqu": 13570, + "Ġinquiry": 25736, + "Ġins": 1028, + "Ġinsan": 11513, + "Ġinsane": 10838, + "Ġinsanely": 40965, + "Ġinsanity": 47505, + "Ġinsanlar": 36130, + "Ġinsbesondere": 48694, + "Ġinscre": 27824, + "Ġinscription": 49882, + "Ġinse": 33874, + "Ġinsec": 18851, + "Ġinsect": 13261, + "Ġinsects": 20201, + "Ġinsecure": 32215, + "Ġinsecurity": 35058, + "Ġinsert": 8969, + "Ġinserted": 27992, + "Ġinserting": 46567, + "Ġinserts": 49163, + "Ġinsgesamt": 41438, + "Ġinside": 1854, + "Ġinsider": 40990, + "Ġinsight": 11269, + "Ġinsightful": 46401, + "Ġinsights": 14310, + "Ġinsign": 34261, + "Ġinsignificant": 43685, + "Ġinsist": 13466, + "Ġinsisted": 28456, + "Ġinsists": 50137, + "Ġinsp": 3741, + "Ġinspect": 15018, + "Ġinspection": 22085, + "Ġinspections": 46544, + "Ġinspector": 34564, + "Ġinspir": 17432, + "Ġinspiration": 10249, + "Ġinspirational": 33554, + "Ġinspire": 15638, + "Ġinspired": 7547, + "Ġinspires": 32566, + "Ġinspiring": 15883, + "Ġinst": 1058, + "Ġinstability": 34379, + "Ġinstagram": 22102, + "Ġinstal": 34059, + "Ġinstall": 3625, + "Ġinstallation": 13260, + "Ġinstallations": 41932, + "Ġinstalled": 8899, + "Ġinstaller": 46620, + "Ġinstalling": 20762, + "Ġinstallment": 39413, + "Ġinstance": 5197, + "Ġinstances": 14519, + "Ġinstant": 9836, + "Ġinstantaneous": 45596, + "Ġinstantly": 13518, + "Ġinstead": 2602, + "Ġinstinct": 16556, + "Ġinstincts": 38997, + "Ġinstit": 4348, + "Ġinstitute": 26860, + "Ġinstitution": 7818, + "Ġinstitutional": 18391, + "Ġinstitutions": 8142, + "Ġinstr": 5488, + "Ġinstruct": 7232, + "Ġinstructed": 36384, + "Ġinstruction": 10951, + "Ġinstructional": 35716, + "Ġinstructions": 9415, + "Ġinstructor": 18499, + "Ġinstructors": 28367, + "Ġinstrument": 7198, + "Ġinstrumental": 17388, + "Ġinstruments": 12190, + "Ġinsufficient": 41709, + "Ġinsulation": 30508, + "Ġinsulin": 21587, + "Ġinsult": 15285, + "Ġinsulted": 49063, + "Ġinsulting": 44463, + "Ġinsurance": 7214, + "Ġint": 560, + "Ġintact": 23493, + "Ġintake": 18060, + "Ġinte": 2830, + "Ġinteg": 16200, + "Ġinteger": 24922, + "Ġintegers": 41674, + "Ġintegr": 3572, + "Ġintegral": 11573, + "Ġintegrate": 13365, + "Ġintegrated": 10919, + "Ġintegrating": 26889, + "Ġintegration": 10980, + "Ġintegrity": 16000, + "Ġinteiro": 45633, + "Ġintel": 24777, + "Ġintelig": 44300, + "Ġintell": 4359, + "Ġintellect": 10058, + "Ġintellectual": 12576, + "Ġintellectually": 46481, + "Ġintellig": 5613, + "Ġintelligence": 7599, + "Ġintelligent": 13232, + "Ġinten": 43094, + "Ġintend": 19759, + "Ġintended": 10226, + "Ġintens": 14056, + "Ġintense": 9447, + "Ġintensely": 43235, + "Ġintensity": 13749, + "Ġintensive": 18957, + "Ġintent": 8446, + "Ġintentar": 46596, + "Ġintention": 7789, + "Ġintentional": 21935, + "Ġintentionally": 22062, + "Ġintentions": 19354, + "Ġinter": 728, + "Ġinteract": 4648, + "Ġinteracted": 49621, + "Ġinteracting": 18017, + "Ġinteraction": 9285, + "Ġinteractions": 13280, + "Ġinteractive": 15141, + "Ġinteracts": 43582, + "Ġintercept": 24700, + "Ġinterchange": 30358, + "Ġinterconnect": 26253, + "Ġinterconnected": 36611, + "Ġinterdisciplinary": 38280, + "Ġinteres": 20157, + "Ġinteresante": 36396, + "Ġinteress": 12478, + "Ġinteressant": 37748, + "Ġinteressante": 24372, + "Ġinterest": 1179, + "Ġinterested": 3102, + "Ġinteresting": 1880, + "Ġinterestingly": 25873, + "Ġinterests": 8847, + "Ġinterf": 14510, + "Ġinterface": 9226, + "Ġinterfaces": 28416, + "Ġinterfer": 25799, + "Ġinterfere": 23946, + "Ġinterference": 24497, + "Ġinterfering": 48721, + "Ġinterim": 33500, + "Ġinterior": 10636, + "Ġinterject": 46787, + "Ġintermedi": 15184, + "Ġintermediate": 19376, + "Ġintermitt": 38548, + "Ġintermittent": 44084, + "Ġintern": 2154, + "Ġinternacional": 37382, + "Ġinternal": 6920, + "Ġinternally": 19501, + "Ġinternation": 19257, + "Ġinternational": 5058, + "Ġinternationally": 24422, + "Ġinternet": 4705, + "Ġinterns": 46145, + "Ġinternship": 16861, + "Ġinternships": 35712, + "Ġinterpersonal": 47102, + "Ġinterpol": 44902, + "Ġinterpre": 17489, + "Ġinterpret": 7302, + "Ġinterpretation": 14174, + "Ġinterpretations": 37547, + "Ġinterpreted": 26749, + "Ġinterpreter": 34132, + "Ġinterpreting": 37395, + "Ġinterrog": 24871, + "Ġinterrupt": 12729, + "Ġinterrupted": 30329, + "Ġinterrupting": 49455, + "Ġintersect": 27815, + "Ġintersection": 15236, + "Ġintersections": 47664, + "Ġintertw": 44400, + "Ġinterval": 15035, + "Ġintervals": 26651, + "Ġinterven": 17104, + "Ġintervene": 30407, + "Ġintervention": 13176, + "Ġinterventions": 20924, + "Ġinterview": 4049, + "Ġinterviewed": 19770, + "Ġinterviewing": 26524, + "Ġinterviews": 12318, + "Ġintest": 21098, + "Ġintestine": 42446, + "Ġintestines": 44429, + "Ġintim": 13148, + "Ġintimacy": 34450, + "Ġintimate": 20215, + "Ġintimid": 17042, + "Ġintimidated": 40234, + "Ġintimidating": 29714, + "Ġinto": 666, + "Ġintoler": 35278, + "Ġintox": 40809, + "Ġintr": 17467, + "Ġintra": 43358, + "Ġintric": 30242, + "Ġintricate": 38015, + "Ġintrig": 17934, + "Ġintrigued": 35140, + "Ġintriguing": 32503, + "Ġintrins": 28621, + "Ġintrinsic": 35698, + "Ġintro": 12897, + "Ġintrodu": 2814, + "Ġintroduce": 5366, + "Ġintroduced": 7268, + "Ġintroduces": 31472, + "Ġintroducing": 15424, + "Ġintroduction": 9339, + "Ġintroductions": 48032, + "Ġintroductory": 39048, + "Ġintuit": 16224, + "Ġintuition": 24002, + "Ġintuitive": 21769, + "Ġintuitively": 46506, + "Ġinté": 18555, + "Ġintéress": 23243, + "Ġintéressant": 34358, + "Ġinv": 1048, + "Ġinvade": 39171, + "Ġinvaded": 35882, + "Ġinvalid": 34702, + "Ġinvaluable": 40367, + "Ġinvari": 33270, + "Ġinvasion": 21575, + "Ġinvasive": 30894, + "Ġinve": 32957, + "Ġinvece": 36344, + "Ġinvent": 7962, + "Ġinvented": 14479, + "Ġinvention": 22265, + "Ġinventions": 43748, + "Ġinventor": 41593, + "Ġinventory": 14228, + "Ġinver": 28653, + "Ġinvers": 21378, + "Ġinverse": 17340, + "Ġinversion": 43576, + "Ġinvert": 33966, + "Ġinverted": 38969, + "Ġinverter": 47201, + "Ġinvest": 1963, + "Ġinvested": 13104, + "Ġinvestig": 4557, + "Ġinvestigación": 48919, + "Ġinvestigate": 15013, + "Ġinvestigated": 30070, + "Ġinvestigating": 22858, + "Ġinvestigation": 9627, + "Ġinvestigations": 25582, + "Ġinvestigative": 45495, + "Ġinvestigator": 38330, + "Ġinvestigators": 27079, + "Ġinvesting": 10978, + "Ġinvestir": 49646, + "Ġinvestment": 6078, + "Ġinvestments": 13784, + "Ġinvestor": 18479, + "Ġinvestors": 11519, + "Ġinvinci": 42807, + "Ġinvincible": 48514, + "Ġinvis": 13308, + "Ġinvisible": 14603, + "Ġinvit": 43714, + "Ġinvitation": 17890, + "Ġinvite": 7980, + "Ġinvited": 9185, + "Ġinvites": 35719, + "Ġinviting": 18202, + "Ġinvoice": 47919, + "Ġinvoke": 41117, + "Ġinvol": 2499, + "Ġinvolve": 9494, + "Ġinvolved": 3288, + "Ġinvolvement": 17447, + "Ġinvolves": 11626, + "Ġinvolving": 17030, + "Ġinward": 29876, + "ĠinÃŃcio": 45979, + "Ġio": 19785, + "Ġiod": 44422, + "Ġion": 17437, + "Ġions": 27362, + "Ġip": 28501, + "Ġir": 3418, + "Ġirgend": 11093, + "Ġirgendw": 26455, + "Ġirgendwann": 34313, + "Ġirgendwas": 47090, + "Ġirgendwie": 20759, + "Ġirgendwo": 40865, + "Ġirm": 33842, + "Ġiron": 6497, + "Ġironic": 33719, + "Ġironically": 41082, + "Ġirony": 35365, + "Ġirr": 29413, + "Ġirrational": 39914, + "Ġirre": 16014, + "Ġirregular": 29349, + "Ġirrelevant": 28682, + "Ġirrespons": 38626, + "Ġirresponsible": 46320, + "Ġirrig": 26129, + "Ġirrigation": 31753, + "Ġirrit": 16029, + "Ġirritated": 43650, + "Ġirritating": 45971, + "Ġirritation": 50031, + "Ġis": 307, + "Ġise": 40912, + "Ġisland": 6077, + "Ġislands": 17402, + "Ġisn": 1943, + "Ġisol": 7381, + "Ġisolate": 25660, + "Ġisolated": 14621, + "Ġisolating": 48912, + "Ġisolation": 16001, + "Ġisot": 38018, + "Ġiss": 1620, + "Ġisso": 4616, + "Ġissue": 2734, + "Ġissued": 14379, + "Ġissues": 2663, + "Ġissuing": 43214, + "Ġist": 1418, + "Ġiste": 49920, + "Ġistedi": 40058, + "Ġistem": 42785, + "Ġister": 40366, + "Ġistiyorum": 36699, + "Ġisto": 35835, + "Ġit": 309, + "Ġital": 22366, + "Ġitaliano": 48486, + "Ġitchy": 47360, + "Ġitem": 3174, + "Ġitems": 4754, + "Ġiter": 17138, + "Ġiterate": 44497, + "Ġiteration": 24784, + "Ġiterations": 36540, + "Ġits": 1080, + "Ġitself": 2564, + "Ġitt": 47786, + "Ġitu": 9032, + "ĠitÃŃs": 30924, + "Ġiv": 32412, + "Ġivory": 49218, + "Ġiy": 29861, + "Ġiyi": 16173, + "Ġiz": 14736, + "Ġizquier": 46428, + "Ġiç": 6058, + "Ġiçer": 33913, + "Ġiçin": 8457, + "Ġiçinde": 34283, + "ĠiÅŁ": 8690, + "ĠiÅŁi": 45377, + "ĠiÅŁte": 19804, + "Ġj": 361, + "Ġja": 2784, + "Ġjaar": 22579, + "Ġjab": 33475, + "Ġjack": 7109, + "Ġjacket": 11781, + "Ġjackets": 34612, + "Ġjadi": 19399, + "Ġjag": 6368, + "Ġjail": 10511, + "Ġjak": 4207, + "Ġjakby": 28976, + "Ġjaki": 24492, + "Ġjakie": 22124, + "ĠjakieÅĽ": 31163, + "Ġjakim": 49410, + "ĠjakiÅĽ": 34721, + "Ġjako": 17123, + "ĠjakÄħ": 46719, + "Ġjal": 43089, + "Ġjam": 7872, + "Ġjamais": 14540, + "Ġjan": 25442, + "Ġjangan": 45107, + "Ġjap": 48330, + "Ġjapanese": 49508, + "Ġjar": 15181, + "Ġjard": 46153, + "Ġjars": 38239, + "Ġjaw": 18162, + "Ġjaws": 44942, + "Ġjazz": 15066, + "Ġje": 1506, + "Ġjealous": 13805, + "Ġjealousy": 36103, + "Ġjeans": 18880, + "Ġjed": 5232, + "Ġjede": 34039, + "Ġjedem": 36538, + "Ġjeden": 12906, + "Ġjeder": 19610, + "Ġjedes": 36119, + "Ġjednak": 25897, + "Ġjedoch": 46311, + "Ġjeg": 10610, + "Ġjego": 26542, + "Ġjeito": 31478, + "Ġjej": 28924, + "Ġjelly": 17186, + "Ġjemand": 21717, + "Ġjeopard": 44295, + "Ġjer": 20160, + "Ġjerk": 25197, + "Ġjersey": 40700, + "Ġjest": 3492, + "Ġjeste": 25255, + "Ġjestem": 29627, + "ĠjesteÅĽmy": 35928, + "Ġjeszcze": 14168, + "Ġjet": 14452, + "Ġjets": 35124, + "Ġjetzt": 4354, + "Ġjeu": 16748, + "Ġjeune": 35610, + "Ġjeunes": 32830, + "Ġjeux": 35093, + "Ġjew": 13149, + "Ġjewe": 46534, + "Ġjewel": 16010, + "Ġjewelry": 19982, + "Ġjewels": 43256, + "Ġjeżeli": 23001, + "ĠjeÅĽli": 25630, + "Ġji": 32606, + "Ġjig": 43716, + "Ġjij": 28002, + "Ġjin": 43528, + "Ġjingle": 49495, + "Ġjo": 1488, + "Ġjob": 1691, + "Ġjobbar": 42965, + "Ġjobs": 4782, + "Ġjog": 9464, + "Ġjogar": 39248, + "Ġjogo": 20068, + "Ġjogos": 39307, + "Ġjohn": 35097, + "Ġjoin": 3917, + "Ġjoined": 6869, + "Ġjoining": 5549, + "Ġjoins": 24397, + "Ġjoint": 7225, + "Ġjointly": 46557, + "Ġjoints": 19949, + "Ġjoka": 33793, + "Ġjoke": 7647, + "Ġjokes": 14439, + "Ġjoking": 17396, + "Ġjon": 49151, + "Ġjong": 38678, + "Ġjorn": 40345, + "Ġjos": 29217, + "Ġjot": 27873, + "Ġjotka": 47005, + "Ġjou": 11110, + "Ġjoue": 46209, + "Ġjouer": 30823, + "Ġjour": 2827, + "Ġjourn": 17598, + "Ġjournal": 6708, + "Ġjournalism": 23191, + "Ġjournalist": 17277, + "Ġjournalists": 19535, + "Ġjournals": 29621, + "Ġjourney": 4671, + "Ġjourneys": 36736, + "Ġjournée": 34277, + "Ġjours": 20724, + "Ġjoy": 6258, + "Ġjoyful": 33090, + "Ġjoystick": 48074, + "Ġjs": 42713, + "Ġjsem": 47784, + "Ġju": 3649, + "Ġjud": 3747, + "Ġjudge": 6995, + "Ġjudged": 27485, + "Ġjudgement": 33473, + "Ġjudges": 14449, + "Ġjudging": 23587, + "Ġjudgment": 12216, + "Ġjudgments": 40337, + "Ġjudicial": 26581, + "Ġjudiciary": 49987, + "Ġjue": 27833, + "Ġjuego": 21344, + "Ġjuegos": 43411, + "Ġjug": 9568, + "Ġjuga": 14462, + "Ġjugar": 37692, + "Ġjuice": 8544, + "Ġjuices": 37027, + "Ġjuicy": 24696, + "Ġjul": 30764, + "Ġjullie": 29633, + "Ġjum": 29067, + "Ġjump": 3012, + "Ġjumped": 13864, + "Ġjumper": 44061, + "Ġjumping": 11233, + "Ġjumps": 16704, + "Ġjun": 8156, + "Ġjunction": 33718, + "Ġjung": 14202, + "Ġjunge": 47877, + "Ġjungle": 18228, + "Ġjunior": 16195, + "Ġjunk": 19109, + "Ġjunt": 22739, + "Ġjunto": 24663, + "Ġjuntos": 33868, + "Ġjur": 12721, + "Ġjuris": 17785, + "Ġjurisd": 19078, + "Ġjurisdiction": 27285, + "Ġjurisdictions": 37958, + "Ġjury": 19516, + "Ġjus": 17217, + "Ġjusqu": 20340, + "Ġjust": 445, + "Ġjustamente": 41056, + "Ġjuste": 13016, + "Ġjustement": 27807, + "Ġjustice": 6118, + "Ġjustification": 31591, + "Ġjustified": 27808, + "Ġjustify": 20833, + "Ġjusto": 40534, + "Ġjut": 42079, + "Ġjuven": 32641, + "Ġjuvenile": 38486, + "Ġjuż": 10678, + "Ġjá": 6242, + "Ġjätte": 46752, + "Ġjó": 31390, + "Ġjóvenes": 45110, + "ĠjÄħ": 35692, + "ĠjÄĻ": 42309, + "ĠjÄĻzy": 49055, + "Ġk": 350, + "Ġka": 6799, + "Ġkab": 27835, + "Ġkabul": 46925, + "Ġkad": 8064, + "Ġkadar": 10456, + "Ġkadın": 39421, + "Ġkaf": 35426, + "Ġkah": 21651, + "Ġkahkaha": 37357, + "Ġkaik": 30381, + "Ġkaikki": 46992, + "Ġkal": 7788, + "Ġkalau": 20218, + "Ġkald": 27110, + "Ġkale": 34699, + "Ġkali": 41690, + "Ġkalian": 34531, + "Ġkalk": 34960, + "Ġkalo": 40257, + "Ġkam": 9727, + "Ġkamera": 43246, + "Ġkami": 34502, + "Ġkamp": 45369, + "Ġkamu": 20705, + "Ġkan": 4608, + "Ġkana": 42372, + "Ġkang": 47898, + "Ġkann": 4028, + "Ġkannst": 20853, + "Ġkans": 16030, + "Ġkanske": 24487, + "Ġkanssa": 49054, + "Ġkant": 44055, + "Ġkap": 13816, + "Ġkar": 7917, + "Ġkara": 29555, + "Ġkaraoke": 41629, + "Ġkarate": 48464, + "ĠkardeÅŁ": 24073, + "ĠkardeÅŁim": 38070, + "Ġkarena": 27173, + "Ġkarma": 28396, + "Ġkart": 29120, + "ĠkarÄ±ÅŁ": 36716, + "ĠkarÅŁ": 21742, + "ĠkarÅŁÄ±": 31653, + "Ġkas": 19173, + "Ġkasih": 35894, + "Ġkat": 16536, + "Ġkau": 36273, + "Ġkaufen": 42083, + "Ġkaum": 36443, + "Ġkav": 39039, + "Ġkay": 12446, + "Ġkayak": 22438, + "Ġkaz": 30623, + "Ġkaç": 23916, + "Ġkaż": 21912, + "Ġkażdy": 31615, + "Ġke": 803, + "Ġked": 42472, + "Ġkeen": 20297, + "Ġkeep": 1066, + "Ġkeeper": 38709, + "Ġkeeping": 5145, + "Ġkeeps": 5965, + "Ġkeer": 31531, + "Ġkeh": 39616, + "Ġkein": 13424, + "Ġkeine": 9252, + "Ġkeinen": 20624, + "Ġkeiner": 37767, + "Ġkel": 31332, + "Ġkell": 41892, + "Ġkelu": 40559, + "Ġkeluar": 43365, + "Ġken": 18787, + "Ġkend": 17016, + "Ġkendi": 29723, + "Ġkenn": 36272, + "Ġkennen": 28445, + "Ġkennt": 37682, + "Ġkep": 36428, + "Ġkepada": 45598, + "Ġkept": 4305, + "Ġker": 19377, + "Ġkern": 23434, + "Ġkernel": 28256, + "Ġkes": 16050, + "Ġket": 14979, + "Ġketchup": 29301, + "Ġketo": 44299, + "Ġkettle": 39088, + "Ġkey": 2141, + "Ġkeyboard": 10186, + "Ġkeyboards": 47808, + "Ġkeynote": 33896, + "Ġkeys": 9317, + "Ġkeyword": 20428, + "Ġkeywords": 21009, + "Ġkg": 15696, + "Ġkh": 7168, + "Ġkhi": 23526, + "Ġkho": 49627, + "Ġkhác": 43713, + "Ġkhông": 11415, + "Ġki": 6315, + "Ġkick": 4437, + "Ġkicked": 14609, + "Ġkicking": 19137, + "Ġkicks": 21293, + "Ġkid": 1636, + "Ġkidding": 9287, + "Ġkidna": 20673, + "Ġkidnapped": 29300, + "Ġkidnapping": 47868, + "Ġkidney": 19000, + "Ġkidneys": 35994, + "Ġkids": 2301, + "Ġkiedy": 18777, + "Ġkier": 38767, + "Ġkij": 26106, + "Ġkijken": 30446, + "Ġkil": 5128, + "Ġkilka": 36466, + "Ġkill": 1961, + "Ġkilled": 4652, + "Ġkiller": 13364, + "Ġkillers": 39369, + "Ġkilling": 8011, + "Ġkills": 14563, + "Ġkilo": 21112, + "Ġkilogram": 21741, + "Ġkilograms": 30690, + "Ġkilomet": 9677, + "Ġkilometer": 33795, + "Ġkilometers": 13904, + "Ġkilometres": 30489, + "Ġkilos": 30000, + "Ġkilow": 41295, + "Ġkim": 10776, + "Ġkimchi": 21656, + "Ġkimse": 42005, + "Ġkin": 15784, + "Ġkind": 733, + "Ġkinda": 4144, + "Ġkinderen": 48935, + "Ġkinderg": 24514, + "Ġkindergarten": 26671, + "Ġkindly": 29736, + "Ġkindness": 18171, + "Ġkinds": 3685, + "Ġkinetic": 27135, + "Ġking": 4867, + "Ġkingdom": 10231, + "Ġkingdoms": 44171, + "Ġkings": 21581, + "Ġkir": 33497, + "Ġkiss": 7704, + "Ġkissed": 33027, + "Ġkisses": 35850, + "Ġkissing": 29495, + "Ġkit": 8260, + "Ġkita": 8965, + "Ġkitchen": 6525, + "Ġkite": 38867, + "Ġkits": 22095, + "Ġkitten": 39696, + "Ġkittens": 47363, + "Ġkitty": 33026, + "ĠkiÅŁ": 28212, + "ĠkiÅŁi": 47462, + "Ġkl": 9671, + "Ġkla": 33337, + "Ġklar": 14743, + "Ġklass": 42917, + "Ġkle": 9318, + "Ġklein": 29231, + "Ġkleine": 22278, + "Ġkleinen": 26512, + "Ġkleiner": 39496, + "Ġklim": 36816, + "Ġkm": 10698, + "Ġkn": 444, + "Ġknapp": 40979, + "Ġkne": 32704, + "Ġknead": 28602, + "Ġknee": 9434, + "Ġknees": 10546, + "Ġknew": 2586, + "Ġknife": 7976, + "Ġknight": 26054, + "Ġknights": 48218, + "Ġknit": 15594, + "Ġknitting": 25498, + "Ġknives": 26279, + "Ġknob": 26759, + "Ġknobs": 46999, + "Ġknock": 6728, + "Ġknocked": 16914, + "Ġknocking": 24085, + "Ġknocks": 40815, + "Ġknot": 16966, + "Ġknots": 27426, + "Ġknow": 458, + "Ġknowing": 5276, + "Ġknowledge": 3601, + "Ġknowledgeable": 33800, + "Ġknown": 2570, + "Ġknows": 3255, + "Ġko": 8384, + "Ġkob": 43057, + "Ġkok": 28376, + "Ġkol": 17818, + "Ġkolay": 44999, + "Ġkole": 18303, + "Ġkolej": 23749, + "Ġkoll": 44693, + "Ġkom": 5207, + "Ġkomb": 42925, + "Ġkomen": 27190, + "Ġkomm": 6669, + "Ġkomma": 41808, + "Ġkomme": 31194, + "Ġkommen": 11729, + "Ġkommer": 12589, + "Ġkommt": 10047, + "Ġkommun": 26275, + "Ġkompl": 24526, + "Ġkomplett": 32261, + "Ġkomt": 27760, + "Ġkomun": 45359, + "Ġkon": 5897, + "Ġkonk": 21428, + "Ġkonkret": 36500, + "Ġkonnte": 24058, + "Ġkonnten": 38216, + "Ġkons": 27896, + "Ġkonse": 47020, + "Ġkonst": 34208, + "Ġkont": 14373, + "Ġkontroll": 47107, + "ĠkonuÅŁ": 17311, + "Ġkop": 28920, + "Ġkor": 14784, + "Ġkork": 33445, + "Ġkort": 46980, + "Ġkos": 19532, + "Ġkoska": 49139, + "Ġkost": 27183, + "Ġkosten": 44115, + "Ġkot": 43029, + "Ġkoy": 22674, + "ĠkoÅĦ": 26470, + "ĠkoÅŁ": 49251, + "Ġkr": 15913, + "Ġkra": 28248, + "Ġkrie": 25766, + "Ġkriegen": 46882, + "Ġkrij": 27027, + "Ġkrijgen": 43460, + "Ġkrit": 42825, + "Ġkro": 45909, + "Ġkry": 34847, + "Ġkró": 42366, + "Ġksi": 35952, + "ĠksiÄħż": 39311, + "Ġkto": 23780, + "ĠktoÅĽ": 32982, + "Ġktó": 4695, + "Ġktóra": 19456, + "Ġktóre": 8864, + "Ġktórego": 46951, + "Ġktórej": 36023, + "Ġktóry": 9913, + "Ġktórych": 30382, + "Ġktórym": 30120, + "Ġktórzy": 25382, + "ĠktórÄħ": 37415, + "Ġku": 17807, + "Ġkuin": 31032, + "Ġkul": 27576, + "Ġkull": 22511, + "Ġkullan": 27443, + "Ġkun": 8215, + "Ġkung": 49304, + "Ġkunna": 32074, + "Ġkunne": 45335, + "Ġkunnen": 18377, + "Ġkunt": 34199, + "Ġkup": 37534, + "Ġkur": 10072, + "Ġkurt": 34701, + "Ġkurz": 20465, + "Ġkuv": 49275, + "Ġkw": 23846, + "Ġkwest": 42035, + "Ġky": 28740, + "Ġkys": 35573, + "Ġkä": 16563, + "Ġkän": 48293, + "Ġkäyt": 49313, + "Ġkäytt": 49811, + "Ġkö": 15881, + "Ġkön": 4798, + "Ġkönnen": 6310, + "Ġkönnt": 22541, + "Ġkönnte": 17646, + "Ġkönnten": 37411, + "Ġkör": 42889, + "Ġköt": 32629, + "Ġkötü": 38456, + "Ġkü": 24572, + "Ġküç": 39959, + "Ġküçük": 45704, + "Ġkı": 25470, + "Ġkır": 33414, + "Ġkız": 15225, + "Ġkızım": 37013, + "Ġl": 287, + "Ġla": 635, + "Ġlaat": 32769, + "Ġlab": 2715, + "Ġlabel": 7645, + "Ġlabeled": 21335, + "Ġlabeling": 40244, + "Ġlabels": 16949, + "Ġlabor": 5938, + "Ġlaboratories": 41013, + "Ġlaboratory": 16523, + "Ġlabour": 22572, + "Ġlabs": 20339, + "Ġlac": 28027, + "Ġlace": 33469, + "Ġlack": 5011, + "Ġlacked": 41481, + "Ġlacking": 20889, + "Ġlacks": 31132, + "Ġlact": 34042, + "Ġlad": 6632, + "Ġladder": 18325, + "Ġladies": 9974, + "Ġlado": 11631, + "Ġlados": 40301, + "Ġlady": 7262, + "Ġlag": 8953, + "Ġlagi": 17742, + "Ġlah": 26532, + "Ġlaid": 9897, + "Ġlain": 29272, + "Ġlaisse": 30969, + "Ġlaisser": 34463, + "Ġlake": 11001, + "Ġlakes": 25595, + "Ġlakh": 33314, + "Ġlam": 24688, + "Ġlama": 45423, + "Ġlamb": 10097, + "Ġlambda": 13607, + "Ġlame": 27635, + "Ġlament": 35888, + "Ġlamp": 12684, + "Ġlamps": 34887, + "Ġlan": 9326, + "Ġlance": 39234, + "Ġland": 2117, + "Ġlanded": 15336, + "Ġlandfill": 47031, + "Ġlanding": 11202, + "Ġlandlord": 32654, + "Ġlandlords": 48787, + "Ġlandmark": 26962, + "Ġlands": 5949, + "Ġlandsca": 23865, + "Ġlandscape": 9661, + "Ġlandscapes": 29822, + "Ġlane": 12705, + "Ġlanes": 25397, + "Ġlang": 2265, + "Ġlange": 18131, + "Ġlangsam": 39597, + "Ġlangu": 2510, + "Ġlanguage": 2856, + "Ġlanguages": 8650, + "Ġlangue": 40318, + "Ġlantern": 34031, + "Ġlanz": 38363, + "Ġlanç": 36251, + "Ġlap": 13214, + "Ġlaps": 24971, + "Ġlapse": 49757, + "Ġlapt": 9183, + "Ġlaptop": 10732, + "Ġlaptops": 27642, + "Ġlaquelle": 35668, + "Ġlar": 1613, + "Ġlarg": 11034, + "Ġlarge": 2416, + "Ġlargely": 11611, + "Ġlarger": 4833, + "Ġlargest": 6443, + "Ġlargo": 31245, + "Ġlarva": 42290, + "Ġlas": 2439, + "Ġlasci": 48451, + "Ġlaser": 12530, + "Ġlasers": 37948, + "Ġlash": 35275, + "Ġlashes": 25552, + "Ġlass": 45829, + "Ġlassen": 16168, + "Ġlast": 1036, + "Ġlasted": 21116, + "Ġlasting": 20714, + "Ġlastly": 16386, + "Ġlasts": 20669, + "Ġlat": 4465, + "Ġlata": 46722, + "Ġlatch": 31837, + "Ġlate": 3469, + "Ġlately": 12881, + "Ġlaten": 36335, + "Ġlatency": 27043, + "Ġlatent": 48994, + "Ġlater": 1780, + "Ġlateral": 25128, + "Ġlatest": 6792, + "Ġlatitude": 45436, + "Ġlatt": 29025, + "Ġlatte": 37854, + "Ġlatter": 18481, + "Ġlattice": 34011, + "Ġlaude": 48248, + "Ġlaufen": 41647, + "Ġlaugh": 5801, + "Ġlaughed": 20881, + "Ġlaughing": 5059, + "Ġlaughs": 6197, + "Ġlaughter": 13092, + "Ġlaunch": 4025, + "Ġlaunched": 8730, + "Ġlauncher": 36805, + "Ġlaunches": 31841, + "Ġlaunching": 18354, + "Ġlaund": 17245, + "Ġlaundry": 19811, + "Ġlaure": 49469, + "Ġlaut": 44330, + "Ġlav": 20923, + "Ġlava": 22097, + "Ġlavender": 43757, + "Ġlavor": 29241, + "Ġlavoro": 42060, + "Ġlaw": 2101, + "Ġlawmakers": 40988, + "Ġlawn": 19915, + "Ġlaws": 6064, + "Ġlawsuit": 22504, + "Ġlawsuits": 39493, + "Ġlawyer": 11613, + "Ġlawyers": 16219, + "Ġlay": 2360, + "Ġlayer": 4583, + "Ġlayered": 34666, + "Ġlayering": 40754, + "Ġlayers": 7914, + "Ġlaying": 14903, + "Ġlayout": 13333, + "Ġlayouts": 46100, + "Ġlays": 32714, + "Ġlaz": 19320, + "Ġlazy": 14847, + "Ġlazım": 23951, + "Ġle": 476, + "Ġlead": 1477, + "Ġleader": 5263, + "Ġleaders": 3523, + "Ġleadership": 5848, + "Ġleading": 5775, + "Ġleads": 6689, + "Ġleaf": 10871, + "Ġleague": 14957, + "Ġleagues": 48429, + "Ġleak": 17143, + "Ġleakage": 47799, + "Ġleaked": 31779, + "Ġleaking": 32856, + "Ġleaks": 28885, + "Ġlean": 11659, + "Ġleaned": 48874, + "Ġleaning": 23390, + "Ġleap": 19438, + "Ġlearn": 1466, + "Ġlearned": 3264, + "Ġlearner": 33347, + "Ġlearners": 23655, + "Ġlearning": 2539, + "Ġlearns": 27152, + "Ġlearnt": 18991, + "Ġlease": 24961, + "Ġleash": 41616, + "Ġleast": 1935, + "Ġleather": 12821, + "Ġleav": 3236, + "Ġleave": 1856, + "Ġleaves": 5510, + "Ġleaving": 5012, + "Ġleb": 17111, + "Ġleben": 26392, + "Ġlebih": 20451, + "Ġleche": 50047, + "Ġlect": 5899, + "Ġlecture": 7991, + "Ġlecturer": 49881, + "Ġlectures": 16564, + "Ġled": 4684, + "Ġledge": 47109, + "Ġlee": 46571, + "Ġleer": 34172, + "Ġleft": 1411, + "Ġleftover": 27373, + "Ġleftovers": 43011, + "Ġleg": 1676, + "Ġlegacy": 11711, + "Ġlegal": 5089, + "Ġlegally": 21106, + "Ġlegen": 48315, + "Ġlegend": 9451, + "Ġlegendary": 16698, + "Ġlegends": 27695, + "Ġlegg": 30991, + "Ġleggings": 42733, + "Ġlegisl": 6593, + "Ġlegislation": 11329, + "Ġlegislative": 21331, + "Ġlegislators": 39264, + "Ġlegislature": 21631, + "Ġlegit": 10275, + "Ġlegitim": 29754, + "Ġlegitimacy": 41339, + "Ġlegitimate": 17956, + "Ġlegitimately": 44431, + "Ġlegs": 5668, + "Ġlei": 32791, + "Ġleicht": 28333, + "Ġleider": 29115, + "Ġleisten": 47013, + "Ġleisure": 31339, + "Ġlek": 30863, + "Ġlekker": 44125, + "Ġlem": 7495, + "Ġlemon": 11356, + "Ġlemonade": 44374, + "Ġlemons": 47098, + "Ġlen": 40116, + "Ġlend": 21774, + "Ġlender": 47500, + "Ġlending": 29823, + "Ġleng": 35044, + "Ġlength": 4641, + "Ġlengths": 26329, + "Ġlengthy": 35374, + "Ġlens": 6765, + "Ġlenses": 18059, + "Ġlent": 23556, + "Ġleopard": 47161, + "Ġlequel": 39439, + "Ġler": 32068, + "Ġlernen": 36082, + "Ġles": 1512, + "Ġlesbian": 30253, + "Ġless": 1570, + "Ġlesser": 22043, + "Ġlesson": 6898, + "Ġlessons": 8820, + "Ġlet": 718, + "Ġlethal": 34562, + "Ġlets": 6653, + "Ġlett": 20689, + "Ġletter": 5063, + "Ġletters": 7825, + "Ġletting": 8295, + "Ġlettuce": 25542, + "Ġletz": 14027, + "Ġletzt": 35262, + "Ġletzte": 35236, + "Ġletzten": 18226, + "Ġleuk": 32665, + "Ġleuke": 45970, + "Ġleur": 9580, + "Ġleurs": 18341, + "Ġlev": 20445, + "Ġleva": 43410, + "Ġlevant": 30612, + "Ġlevar": 34538, + "Ġleve": 33076, + "Ġlevel": 1496, + "Ġleveling": 40617, + "Ġlevels": 4358, + "Ġleven": 45542, + "Ġlever": 12451, + "Ġleverage": 13982, + "Ġleveraging": 32666, + "Ġlevers": 45571, + "Ġley": 27786, + "Ġli": 375, + "Ġliability": 25196, + "Ġliaison": 49431, + "Ġliar": 27323, + "Ġlib": 22854, + "Ġliber": 6774, + "Ġliberal": 13767, + "Ġliberals": 48617, + "Ġliberated": 43304, + "Ġliberation": 27736, + "Ġlibert": 18058, + "Ġliberties": 47241, + "Ġliberty": 22849, + "Ġliberté": 49158, + "Ġlibr": 4939, + "Ġlibrarian": 42558, + "Ġlibrarians": 48803, + "Ġlibraries": 15148, + "Ġlibrary": 6405, + "Ġlibre": 29976, + "Ġlibro": 29354, + "Ġlic": 6169, + "Ġlicence": 49047, + "Ġlicense": 10476, + "Ġlicensed": 25225, + "Ġlicenses": 32821, + "Ġlicensing": 29759, + "Ġlick": 30940, + "Ġlid": 10252, + "Ġlider": 45341, + "Ġlidt": 40574, + "Ġlie": 4544, + "Ġliebe": 31623, + "Ġlieber": 38252, + "Ġlied": 20101, + "Ġliegen": 35100, + "Ġliegt": 22421, + "Ġlien": 32553, + "Ġlies": 9134, + "Ġlieu": 26036, + "Ġlieutenant": 45521, + "Ġlif": 4545, + "Ġlife": 993, + "Ġlifecycle": 45722, + "Ġlifelong": 27232, + "Ġlifes": 33321, + "Ġlifespan": 40361, + "Ġlifestyle": 11716, + "Ġlifetime": 11364, + "Ġlift": 5533, + "Ġlifted": 17854, + "Ġlifting": 15798, + "Ġlifts": 30501, + "Ġlig": 11742, + "Ġlige": 35450, + "Ġligger": 43187, + "Ġlight": 1442, + "Ġlighter": 11546, + "Ġlighthouse": 47481, + "Ġlighting": 9577, + "Ġlightly": 16695, + "Ġlightning": 16589, + "Ġlights": 5811, + "Ġlightweight": 22052, + "Ġligne": 34207, + "Ġlihat": 45153, + "Ġlij": 42158, + "Ġlik": 2913, + "Ġlike": 411, + "Ġliked": 4501, + "Ġlikelihood": 22119, + "Ġlikely": 3700, + "Ġliken": 36946, + "Ġlikes": 5902, + "Ġlikewise": 32407, + "Ġliking": 16933, + "Ġliksom": 35308, + "Ġlil": 36532, + "Ġlim": 2364, + "Ġlimb": 30390, + "Ġlimbs": 29315, + "Ġlime": 22035, + "Ġlimit": 4948, + "Ġlimitation": 27432, + "Ġlimitations": 15705, + "Ġlimite": 39946, + "Ġlimited": 5567, + "Ġlimiting": 22083, + "Ġlimits": 10406, + "Ġlimp": 33174, + "Ġlin": 22896, + "Ġlindo": 48436, + "Ġline": 1622, + "Ġlineage": 38257, + "Ġlinear": 8213, + "Ġlinearly": 43586, + "Ġlined": 17189, + "Ġlinen": 46602, + "Ġliner": 24468, + "Ġlines": 3876, + "Ġlineup": 26461, + "Ġling": 22949, + "Ġlinger": 45657, + "Ġlingering": 49542, + "Ġlingu": 21766, + "Ġlinguistic": 43002, + "Ġlinha": 33768, + "Ġlining": 19628, + "Ġlink": 2113, + "Ġlinkage": 49118, + "Ġlinked": 9408, + "Ġlinking": 25775, + "Ġlinks": 6123, + "Ġlion": 17226, + "Ġlions": 32564, + "Ġlip": 8280, + "Ġlips": 10118, + "Ġlipstick": 22543, + "Ġliqu": 5664, + "Ġliquid": 6553, + "Ġliquidity": 33131, + "Ġliquids": 38960, + "Ġliquor": 29162, + "Ġlira": 47723, + "Ġlire": 43254, + "Ġlis": 32670, + "Ġlist": 1329, + "Ġlista": 27764, + "Ġlisted": 10052, + "Ġlisten": 2140, + "Ġlistened": 13207, + "Ġlistener": 31569, + "Ġlisteners": 23274, + "Ġlistening": 4764, + "Ġlistens": 35959, + "Ġlisting": 22161, + "Ġlistings": 45615, + "Ġlists": 14511, + "Ġlit": 7997, + "Ġlite": 15100, + "Ġliter": 2733, + "Ġliteracy": 23166, + "Ġliteral": 20411, + "Ġliterally": 3736, + "Ġliterary": 24194, + "Ġliterature": 10394, + "Ġliters": 32323, + "Ġlith": 26324, + "Ġlithium": 32180, + "Ġlitigation": 33359, + "Ġlitres": 49259, + "Ġlitt": 30267, + "Ġlitter": 26540, + "Ġlittle": 707, + "Ġliv": 11477, + "Ġlive": 1621, + "Ġlived": 5152, + "Ġlivel": 31876, + "Ġlivelihood": 34343, + "Ġlively": 30866, + "Ġliver": 15019, + "Ġlives": 2909, + "Ġlivest": 19531, + "Ġlivestock": 31768, + "Ġlivestream": 29782, + "Ġliving": 2647, + "Ġlivre": 24735, + "Ġlivres": 50020, + "Ġlivro": 33545, + "Ġliz": 28632, + "Ġlizard": 39215, + "Ġll": 4849, + "Ġllam": 16848, + "Ġllama": 23272, + "Ġllamado": 47055, + "Ġlle": 12038, + "Ġlleg": 11234, + "Ġllega": 40423, + "Ġllegar": 24892, + "Ġllegó": 46182, + "Ġllev": 27124, + "Ġlleva": 37681, + "Ġllevar": 30374, + "Ġln": 44166, + "Ġlo": 450, + "Ġload": 3677, + "Ġloaded": 13210, + "Ġloading": 15114, + "Ġloads": 12668, + "Ġloaf": 40743, + "Ġloan": 10529, + "Ġloans": 15443, + "Ġlob": 14366, + "Ġlobb": 35673, + "Ġlobby": 21067, + "Ġlobbying": 47142, + "Ġlobster": 33198, + "Ġloc": 1628, + "Ġloca": 47965, + "Ġlocal": 2654, + "Ġlocalized": 44574, + "Ġlocally": 16143, + "Ġlocals": 23335, + "Ġlocate": 22370, + "Ġlocated": 6870, + "Ġlocation": 4914, + "Ġlocations": 9253, + "Ġlock": 4017, + "Ġlockdown": 17267, + "Ġlocked": 9376, + "Ġlocker": 25707, + "Ġlocking": 23954, + "Ġlocks": 20703, + "Ġlocom": 36369, + "Ġlod": 33311, + "Ġlodge": 47706, + "Ġloft": 34419, + "Ġlog": 3565, + "Ġlogar": 41473, + "Ġlogged": 27231, + "Ġlogging": 27991, + "Ġlogic": 9952, + "Ġlogical": 14978, + "Ġlogically": 38887, + "Ġlogin": 24276, + "Ġlogistics": 27420, + "Ġlogo": 9699, + "Ġlogos": 40654, + "Ġlogr": 31013, + "Ġlogs": 20820, + "Ġloh": 46957, + "Ġloi": 34607, + "Ġloin": 25048, + "Ġlok": 43578, + "Ġlol": 10065, + "Ġlon": 9155, + "Ġlone": 35314, + "Ġloneliness": 28144, + "Ġlonely": 14236, + "Ġlong": 938, + "Ġlonge": 26052, + "Ġlonger": 2854, + "Ġlongest": 15438, + "Ġlongevity": 36556, + "Ġlonging": 35050, + "Ġlongitud": 39596, + "Ġlongitudinal": 48250, + "Ġlongo": 40558, + "Ġlongtemps": 32437, + "Ġlongtime": 44363, + "Ġlongue": 44445, + "Ġlook": 574, + "Ġlooked": 2956, + "Ġlookin": 36186, + "Ġlooking": 1237, + "Ġlookout": 41025, + "Ġlooks": 1542, + "Ġloop": 6367, + "Ġloops": 16121, + "Ġloos": 40454, + "Ġloose": 9612, + "Ġloosely": 37966, + "Ġloosen": 26169, + "Ġloot": 26206, + "Ġlord": 15448, + "Ġlore": 27258, + "Ġloro": 28810, + "Ġlors": 20653, + "Ġlorsqu": 46581, + "Ġlorsque": 40629, + "Ġlos": 1750, + "Ġlose": 3624, + "Ġloser": 24606, + "Ġlosers": 37713, + "Ġloses": 18293, + "Ġlosing": 7027, + "Ġloss": 4470, + "Ġlosses": 15352, + "Ġlost": 2731, + "Ġlot": 688, + "Ġlotion": 41044, + "Ġlots": 3195, + "Ġlotta": 38144, + "Ġlottery": 27391, + "Ġlotus": 39105, + "Ġlou": 15185, + "Ġloud": 6588, + "Ġlouder": 22717, + "Ġloudly": 22958, + "Ġlounge": 33408, + "Ġlove": 959, + "Ġloved": 4333, + "Ġlovely": 7496, + "Ġlover": 18009, + "Ġlovers": 22697, + "Ġloves": 6752, + "Ġloving": 9344, + "Ġlow": 2295, + "Ġlower": 3126, + "Ġlowered": 28466, + "Ġlowering": 28124, + "Ġlowers": 44936, + "Ġlowest": 12437, + "Ġlows": 34794, + "Ġloyal": 12682, + "Ġloyalty": 22831, + "Ġlt": 37818, + "Ġlu": 10438, + "Ġlub": 15980, + "Ġlubric": 31116, + "Ġluc": 21296, + "Ġluck": 3668, + "Ġluckily": 22880, + "Ġlucky": 6356, + "Ġlud": 15946, + "Ġludzi": 29586, + "Ġludzie": 37025, + "Ġluego": 17222, + "Ġlug": 23025, + "Ġlugar": 11467, + "Ġlugares": 33105, + "Ġluggage": 27744, + "Ġlui": 8783, + "Ġlum": 24635, + "Ġlumber": 41686, + "Ġlumin": 32476, + "Ġlumière": 43193, + "Ġlump": 25551, + "Ġlumps": 44948, + "Ġlun": 19039, + "Ġlunar": 32581, + "Ġlunch": 6349, + "Ġlung": 16730, + "Ġlungs": 19467, + "Ġlur": 35583, + "Ġlure": 32350, + "Ġlush": 49729, + "Ġlust": 24672, + "Ġlut": 38319, + "Ġlux": 11363, + "Ġluxurious": 30840, + "Ġluxury": 15558, + "Ġluz": 20671, + "Ġluôn": 35690, + "Ġly": 17293, + "Ġlying": 8493, + "Ġlymph": 31070, + "Ġlyn": 46137, + "Ġlyric": 42409, + "Ġlyrics": 12189, + "Ġlys": 48670, + "Ġlá": 7453, + "Ġlâ": 48835, + "Ġlä": 8235, + "Ġläh": 49383, + "Ġläng": 22566, + "Ġlänger": 40935, + "Ġlässt": 29335, + "Ġläuft": 31807, + "ĠlÃ¥": 33939, + "ĠlÃ¥ng": 39756, + "Ġlæ": 44584, + "Ġlég": 27122, + "Ġlên": 33368, + "Ġlóg": 48475, + "Ġlö": 25209, + "ĠlÃł": 3684, + "ĠlÃłm": 22319, + "ĠlÃŃ": 16118, + "ĠlÃŃder": 44190, + "ĠlÃŃnea": 37452, + "Ġlại": 23017, + "ĠlỼ": 47864, + "Ġm": 275, + "ĠmRNA": 50103, + "Ġma": 463, + "Ġmaar": 10314, + "Ġmac": 7912, + "Ġmacam": 44921, + "Ġmacaron": 49686, + "Ġmach": 2246, + "Ġmache": 28289, + "Ġmachen": 7069, + "Ġmachine": 3479, + "Ġmachinery": 27302, + "Ġmachines": 8379, + "Ġmachst": 43350, + "Ġmacht": 10857, + "Ġmacro": 18887, + "Ġmad": 5244, + "Ġmadam": 28882, + "Ġmade": 1027, + "Ġmadness": 28736, + "Ġmadre": 32966, + "Ġmae": 43783, + "Ġmafia": 36412, + "Ġmag": 2258, + "Ġmagari": 49932, + "Ġmagaz": 9044, + "Ġmagazine": 11332, + "Ġmagazines": 22975, + "Ġmagg": 44639, + "Ġmagic": 5585, + "Ġmagical": 12066, + "Ġmagically": 39763, + "Ġmagician": 38614, + "Ġmagist": 48894, + "Ġmagn": 4944, + "Ġmagnes": 28860, + "Ġmagnesium": 32950, + "Ġmagnet": 15211, + "Ġmagnetic": 12688, + "Ġmagnets": 33022, + "Ġmagnific": 21623, + "Ġmagnificent": 23690, + "Ġmagnitude": 15668, + "Ġmah": 29926, + "Ġmahd": 44194, + "Ġmahdoll": 45158, + "Ġmai": 12698, + "Ġmaid": 30410, + "Ġmaiden": 48515, + "Ġmail": 10071, + "Ġmailbox": 43602, + "Ġmailing": 41612, + "Ġmain": 2135, + "Ġmainland": 32365, + "Ġmainly": 8704, + "Ġmains": 32519, + "Ġmainstream": 15960, + "Ġmaint": 3604, + "Ġmaintain": 6909, + "Ġmaintained": 17578, + "Ġmaintaining": 14916, + "Ġmaintains": 33385, + "Ġmainten": 7780, + "Ġmaintenance": 11258, + "Ġmaintenant": 14817, + "Ġmaior": 15859, + "Ġmaioria": 44384, + "Ġmais": 2420, + "Ġmaison": 28511, + "Ġmaj": 13673, + "Ġmajestic": 49561, + "Ġmajesty": 32146, + "Ġmajor": 2563, + "Ġmajority": 6286, + "Ġmajors": 31770, + "ĠmajÄħ": 26064, + "Ġmak": 963, + "Ġmakan": 46616, + "Ġmake": 652, + "Ġmaken": 24703, + "Ġmaker": 17127, + "Ġmakers": 19323, + "Ġmakes": 1669, + "Ġmakeup": 6567, + "Ġmaking": 1455, + "Ġmal": 2806, + "Ġmala": 37508, + "Ġmalad": 39500, + "Ġmalaria": 45182, + "Ġmale": 7133, + "Ġmales": 20776, + "Ġmalf": 41318, + "Ġmalfunction": 50229, + "Ġmalicious": 33496, + "Ġmall": 16026, + "Ġmalt": 45654, + "Ġmalware": 40747, + "Ġmam": 13524, + "Ġmama": 18775, + "Ġmamm": 19033, + "Ġmammal": 49312, + "Ġmammals": 35408, + "Ġmamy": 17335, + "Ġman": 587, + "Ġmana": 21225, + "Ġmanage": 3067, + "Ġmanageable": 38798, + "Ġmanaged": 6453, + "Ġmanagement": 4592, + "Ġmanager": 6598, + "Ġmanagers": 14084, + "Ġmanages": 22489, + "Ġmanaging": 11642, + "Ġmanchmal": 32092, + "Ġmand": 7411, + "Ġmandar": 48689, + "Ġmandate": 23885, + "Ġmandated": 47563, + "Ġmandates": 48662, + "Ġmandatory": 22173, + "Ġmane": 12743, + "Ġmaneira": 30255, + "Ġmanera": 13913, + "Ġmaneu": 22474, + "Ġmaneuver": 25976, + "Ġmang": 32432, + "Ġmanga": 23316, + "Ġmange": 30465, + "Ġmanger": 34372, + "Ġmango": 23481, + "Ġmaniac": 47193, + "Ġmanic": 48139, + "Ġmanif": 8173, + "Ġmanifest": 10067, + "Ġmanifestation": 29550, + "Ġmanifestations": 46931, + "Ġmanifested": 42775, + "Ġmanifests": 50252, + "Ġmanifold": 47138, + "Ġmanip": 9258, + "Ġmanipulate": 20459, + "Ġmanipulated": 37161, + "Ġmanipulating": 40805, + "Ġmanipulation": 26475, + "Ġmanière": 22267, + "Ġmankind": 21220, + "Ġmanne": 49815, + "Ġmanner": 9060, + "Ġmanners": 34672, + "Ġmano": 18384, + "Ġmanos": 36650, + "Ġmanque": 48124, + "Ġmans": 18868, + "Ġmansion": 25599, + "Ġmant": 10845, + "Ġmanten": 38417, + "Ġmantener": 42759, + "Ġmanter": 48170, + "Ġmantle": 45031, + "Ġmantra": 32094, + "Ġmanual": 9688, + "Ġmanually": 16945, + "Ġmanufact": 5793, + "Ġmanufacture": 27400, + "Ġmanufactured": 25738, + "Ġmanufacturer": 18022, + "Ġmanufacturers": 18455, + "Ġmanufacturing": 11096, + "Ġmanure": 48020, + "Ġmanus": 21550, + "Ġmanuscript": 23928, + "Ġmanuscripts": 42849, + "Ġmany": 867, + "Ġmap": 4471, + "Ġmapa": 44025, + "Ġmaple": 31191, + "Ġmapped": 33318, + "Ġmapping": 18350, + "Ġmaps": 11317, + "Ġmar": 1849, + "Ġmarathon": 27601, + "Ġmaravil": 41009, + "Ġmarble": 26844, + "Ġmarc": 42365, + "Ġmarca": 30582, + "Ġmarch": 8368, + "Ġmarche": 32631, + "Ġmarched": 43565, + "Ġmarching": 30523, + "Ġmarché": 37441, + "Ġmare": 31471, + "Ġmargin": 10270, + "Ġmarginal": 16885, + "Ġmarginalized": 32522, + "Ġmargins": 30317, + "Ġmari": 35555, + "Ġmarijuana": 24956, + "Ġmarin": 34652, + "Ġmarinade": 49386, + "Ġmarine": 20246, + "Ġmaritime": 43892, + "Ġmark": 1491, + "Ġmarked": 12658, + "Ġmarker": 15247, + "Ġmarkers": 19175, + "Ġmarket": 2142, + "Ġmarketed": 49089, + "Ġmarketers": 48003, + "Ġmarketing": 6370, + "Ġmarketplace": 19455, + "Ġmarkets": 8383, + "Ġmarking": 25482, + "Ġmarkings": 39087, + "Ġmarks": 10640, + "Ġmarque": 41024, + "Ġmarriage": 7194, + "Ġmarriages": 39760, + "Ġmarried": 5259, + "Ġmarrow": 47739, + "Ġmarry": 9747, + "Ġmarrying": 36376, + "Ġmars": 30517, + "Ġmarsh": 21653, + "Ġmarshm": 29817, + "Ġmarshmallow": 43896, + "Ġmart": 12396, + "Ġmartial": 20755, + "Ġmartyr": 41005, + "Ġmarvel": 23893, + "Ġmarvelous": 34920, + "Ġmas": 2300, + "Ġmasa": 29216, + "Ġmasala": 35614, + "Ġmasc": 18792, + "Ġmascara": 26016, + "Ġmascot": 42339, + "Ġmascul": 19255, + "Ġmasculine": 28992, + "Ġmasculinity": 45195, + "Ġmash": 31344, + "Ġmashed": 38964, + "Ġmasih": 31510, + "Ġmask": 6094, + "Ġmasked": 45249, + "Ġmasking": 31226, + "Ġmasks": 11830, + "Ġmass": 2758, + "Ġmassa": 26689, + "Ġmassacre": 41076, + "Ġmassage": 16145, + "Ġmasse": 42313, + "Ġmasses": 23935, + "Ġmassive": 5994, + "Ġmassively": 29379, + "Ġmast": 27055, + "Ġmaster": 4505, + "Ġmastered": 38686, + "Ġmastering": 49382, + "Ġmasterpiece": 32208, + "Ġmasters": 19294, + "Ġmastery": 37951, + "Ġmasturb": 48921, + "Ġmasuk": 42364, + "Ġmat": 3803, + "Ġmata": 46106, + "Ġmatar": 39208, + "Ġmatch": 2995, + "Ġmatched": 21447, + "Ġmatches": 10676, + "Ġmatching": 14324, + "Ġmate": 11709, + "Ġmateix": 42770, + "Ġmater": 2389, + "Ġmateria": 34083, + "Ġmaterial": 2527, + "Ġmaterials": 5319, + "Ġmaternal": 37944, + "Ġmates": 31488, + "Ġmath": 5221, + "Ġmathemat": 11619, + "Ġmathematic": 32811, + "Ġmathematical": 18894, + "Ġmathematically": 44003, + "Ġmathematician": 48281, + "Ġmathematics": 18666, + "Ġmaths": 36287, + "Ġmatin": 33389, + "Ġmating": 49955, + "Ġmatière": 46600, + "Ġmatrices": 32284, + "Ġmatrix": 8141, + "Ġmats": 43366, + "Ġmatt": 16539, + "Ġmatte": 21592, + "Ġmatter": 1871, + "Ġmattered": 44282, + "Ġmatters": 7001, + "Ġmattress": 20625, + "Ġmature": 14442, + "Ġmaturity": 28874, + "Ġmatéri": 45731, + "Ġmau": 22074, + "Ġmauv": 49631, + "Ġmauvais": 50018, + "Ġmax": 11469, + "Ġmaxim": 5138, + "Ġmaximal": 49336, + "Ġmaximize": 19874, + "Ġmaximum": 6674, + "Ġmay": 815, + "Ġmaybe": 1310, + "Ġmayo": 38485, + "Ġmayonnaise": 34406, + "Ġmayor": 10120, + "ĠmayorÃŃa": 35342, + "Ġmaze": 33032, + "Ġmañana": 33573, + "Ġme": 385, + "Ġmeal": 6791, + "Ġmeals": 12832, + "Ġmean": 914, + "Ġmeaning": 3620, + "Ġmeaningful": 10995, + "Ġmeaningless": 33232, + "Ġmeanings": 28138, + "Ġmeans": 1355, + "Ġmeant": 4140, + "Ġmeantime": 14991, + "Ġmeanwhile": 29252, + "Ġmeas": 5731, + "Ġmeasurable": 43615, + "Ġmeasure": 3481, + "Ġmeasured": 12690, + "Ġmeasurement": 13160, + "Ġmeasurements": 15383, + "Ġmeasures": 8000, + "Ġmeasuring": 13389, + "Ġmeat": 4615, + "Ġmeatballs": 44741, + "Ġmeats": 38106, + "Ġmec": 25186, + "Ġmechan": 4236, + "Ġmechanic": 23860, + "Ġmechanical": 12070, + "Ġmechanics": 12939, + "Ġmechanism": 7513, + "Ġmechanisms": 15902, + "Ġmed": 1205, + "Ġmedal": 21364, + "Ġmedals": 38647, + "Ġmedi": 17269, + "Ġmedia": 3021, + "Ġmedian": 26779, + "Ġmedic": 4355, + "Ġmedical": 4625, + "Ġmedically": 49230, + "Ġmedication": 13851, + "Ġmedications": 17504, + "Ġmedicinal": 46073, + "Ġmedicine": 7195, + "Ġmedicines": 24251, + "Ġmedida": 32984, + "Ġmedidas": 37295, + "Ġmedieval": 24078, + "Ġmedio": 22123, + "Ġmediocre": 45415, + "Ġmedios": 46017, + "Ġmeditate": 29989, + "Ġmeditating": 46850, + "Ġmeditation": 12537, + "Ġmedium": 6399, + "Ġmedo": 37144, + "Ġmee": 24442, + "Ġmeer": 16318, + "Ġmeet": 1677, + "Ġmeeting": 3440, + "Ġmeetings": 8410, + "Ġmeets": 13961, + "Ġmeg": 10816, + "Ġmega": 17986, + "Ġmegap": 34733, + "Ġmeget": 36411, + "Ġmeglio": 48911, + "Ġmehr": 5417, + "Ġmehrere": 44677, + "Ġmeidän": 44751, + "Ġmeille": 25039, + "Ġmeilleur": 41457, + "Ġmeillä": 45211, + "Ġmein": 10777, + "Ġmeine": 10946, + "Ġmeinem": 24171, + "Ġmeinen": 22738, + "Ġmeiner": 20529, + "Ġmeio": 17706, + "Ġmeist": 36894, + "Ġmeisten": 29708, + "Ġmej": 37758, + "Ġmejor": 11479, + "Ġmejorar": 48858, + "Ġmejores": 42284, + "Ġmel": 4795, + "Ġmelan": 47969, + "Ġmelee": 35810, + "Ġmelhor": 13714, + "Ġmelhores": 46807, + "Ġmellan": 46494, + "Ġmelod": 32834, + "Ġmelodies": 47085, + "Ġmelody": 17997, + "Ġmelon": 41722, + "Ġmelt": 10083, + "Ġmelted": 19057, + "Ġmelting": 20493, + "Ġmelts": 30136, + "Ġmem": 1334, + "Ġmemang": 39290, + "Ġmemb": 27942, + "Ġmember": 4006, + "Ġmembers": 2679, + "Ġmembership": 16560, + "Ġmembr": 15595, + "Ġmembrane": 19651, + "Ġmeme": 21701, + "Ġmemes": 29730, + "Ġmemo": 35900, + "Ġmemoir": 38306, + "Ġmemor": 10560, + "Ġmemorable": 20723, + "Ġmemorial": 24089, + "Ġmemories": 8495, + "Ġmemorize": 27478, + "Ġmemorized": 46677, + "Ġmemory": 4675, + "Ġmen": 1706, + "Ġmencion": 37030, + "Ġmend": 31161, + "Ġmeng": 15330, + "Ġmening": 46890, + "Ġmenjadi": 39964, + "Ġmeno": 40236, + "Ġmenor": 26343, + "Ġmenos": 8902, + "Ġmens": 10923, + "Ġmensen": 18062, + "Ġmenstru": 38827, + "Ġment": 3074, + "Ġmental": 4973, + "Ġmentality": 21976, + "Ġmentally": 17072, + "Ġmente": 26577, + "Ġmention": 2152, + "Ġmentioned": 2835, + "Ġmentioning": 18315, + "Ġmentions": 23844, + "Ġmentor": 14478, + "Ġmentoring": 30257, + "Ġmentors": 21798, + "Ġmentorship": 40422, + "Ġmentre": 49601, + "Ġmenu": 6510, + "Ġmenus": 30347, + "Ġmeny": 46975, + "Ġmeow": 45132, + "Ġmer": 3551, + "Ġmerak": 39668, + "Ġmerc": 10811, + "Ġmercado": 24775, + "Ġmerch": 12618, + "Ġmerchand": 30234, + "Ġmerchandise": 34485, + "Ġmerchant": 32267, + "Ġmerchants": 36253, + "Ġmerci": 30532, + "Ġmerciful": 48756, + "Ġmercury": 33307, + "Ġmercy": 13174, + "Ġmerde": 45772, + "Ġmere": 8401, + "Ġmereka": 23171, + "Ġmerely": 17003, + "Ġmerge": 22183, + "Ġmerged": 36427, + "Ġmerger": 48002, + "Ġmerging": 44559, + "Ġmering": 46643, + "Ġmeringue": 50044, + "Ġmerit": 24527, + "Ġmerits": 40923, + "Ġmerk": 43541, + "Ġmermaid": 43146, + "Ġmerry": 41545, + "Ġmes": 3813, + "Ġmesa": 37024, + "Ġmesela": 45814, + "Ġmeses": 23922, + "Ġmesh": 17407, + "Ġmesma": 21921, + "Ġmesmo": 9082, + "Ġmess": 2082, + "Ġmessage": 3636, + "Ġmessages": 7897, + "Ġmessaging": 21812, + "Ġmessed": 16507, + "Ġmessenger": 26599, + "Ġmessing": 23258, + "Ġmessy": 16191, + "Ġmest": 35621, + "Ġmesure": 37981, + "Ġmesures": 42265, + "Ġmet": 1131, + "Ġmeta": 19616, + "Ġmetabol": 19110, + "Ġmetabolic": 36464, + "Ġmetabolism": 31190, + "Ġmetabolismo": 47889, + "Ġmetadata": 26603, + "Ġmetal": 5760, + "Ġmetall": 20866, + "Ġmetallic": 25759, + "Ġmetals": 22548, + "Ġmetaph": 30946, + "Ġmetaphor": 19157, + "Ġmete": 21245, + "Ġmeteor": 25313, + "Ġmeter": 9255, + "Ġmeters": 8146, + "Ġmeth": 23416, + "Ġmethane": 32521, + "Ġmethod": 3170, + "Ġmethodology": 24850, + "Ġmethods": 7150, + "Ġmethy": 36599, + "Ġmethyl": 48441, + "Ġmetic": 41566, + "Ġmetre": 42431, + "Ġmetres": 23861, + "Ġmetric": 20678, + "Ġmetrics": 16367, + "Ġmetro": 27334, + "Ġmetropolitan": 44645, + "Ġmetros": 34761, + "Ġmets": 37231, + "Ġmett": 27812, + "Ġmettre": 14997, + "Ġmeu": 9230, + "Ġmeus": 28033, + "Ġmeva": 40530, + "Ġmex": 28759, + "Ġmez": 28966, + "Ġmg": 49566, + "Ġmi": 2752, + "Ġmia": 21290, + "ĠmiaÅĤ": 27989, + "Ġmic": 3123, + "Ġmica": 32483, + "Ġmice": 22257, + "Ġmich": 6031, + "Ġmicro": 4532, + "Ġmicrob": 49713, + "Ġmicrobes": 35996, + "Ġmicrobi": 33234, + "Ġmicrof": 42763, + "Ġmicron": 45094, + "Ġmicroorgan": 49129, + "Ġmicrophone": 10952, + "Ġmicrophones": 30495, + "Ġmicros": 15547, + "Ġmicroscop": 30483, + "Ġmicroscope": 29753, + "Ġmicroscopic": 47897, + "Ġmicrow": 17177, + "Ġmicrowave": 19025, + "Ġmics": 45481, + "Ġmid": 2062, + "Ġmiddle": 2808, + "Ġmidnight": 19006, + "Ġmidst": 18629, + "Ġmie": 12597, + "Ġmiedo": 40383, + "Ġmiej": 18522, + "Ġmiejsc": 32754, + "Ġmiejsce": 38122, + "Ġmiel": 41392, + "Ġmieli": 41214, + "Ġmientras": 26010, + "Ġmier": 47448, + "Ġmies": 41543, + "Ġmiesz": 33039, + "Ġmieux": 20401, + "ĠmieÄĩ": 35612, + "Ġmig": 6186, + "Ġmight": 1062, + "Ġmighty": 21556, + "Ġmigrant": 38547, + "Ġmigrants": 31263, + "Ġmigrate": 31821, + "Ġmigrated": 48329, + "Ġmigration": 17011, + "Ġmij": 22953, + "Ġmijn": 19884, + "Ġmik": 23959, + "Ġmike": 43357, + "Ġmikä": 48482, + "Ġmil": 1962, + "Ġmild": 15154, + "Ġmile": 12620, + "Ġmileage": 43121, + "Ġmiles": 6193, + "Ġmilestone": 28048, + "Ġmilestones": 42038, + "Ġmilhões": 39252, + "Ġmilieu": 34276, + "Ġmilit": 19142, + "Ġmilitar": 30653, + "Ġmilitary": 4632, + "Ġmilj": 41128, + "Ġmilk": 5392, + "Ġmilks": 48773, + "Ġmill": 1728, + "Ġmillenn": 21362, + "Ġmillennials": 45543, + "Ġmillet": 47722, + "Ġmilli": 26176, + "Ġmilliards": 47382, + "Ġmilligram": 38298, + "Ġmilligrams": 45147, + "Ġmillimeter": 17942, + "Ġmillimeters": 24388, + "Ġmillion": 2459, + "Ġmillionaire": 41114, + "Ġmillions": 6803, + "Ġmillise": 27940, + "Ġmilliseconds": 34184, + "Ġmillones": 22416, + "Ġmillor": 48638, + "Ġmily": 38728, + "Ġmim": 12247, + "Ġmimic": 31075, + "Ġmin": 923, + "Ġmina": 48412, + "Ġminced": 36442, + "Ġmind": 1575, + "Ġminded": 36707, + "Ġminder": 44146, + "Ġmindful": 14618, + "Ġmindfulness": 25655, + "Ġminds": 9634, + "Ġmindset": 12543, + "Ġmine": 3892, + "Ġminer": 18746, + "Ġmineral": 21630, + "Ġminerals": 22959, + "Ġminers": 35640, + "Ġmines": 25398, + "Ġminha": 11720, + "Ġmini": 8382, + "Ġminiature": 34674, + "Ġminim": 4464, + "Ġminimal": 13206, + "Ġminimalist": 50192, + "Ġminimize": 17522, + "Ġminimizing": 46608, + "Ġminimum": 7285, + "Ġmining": 15512, + "Ġminion": 49361, + "Ġminions": 39288, + "Ġminist": 16182, + "Ġminister": 10563, + "Ġministers": 26220, + "Ġministre": 31122, + "Ġministry": 15024, + "Ġminor": 6696, + "Ġminorities": 30373, + "Ġminority": 16166, + "Ġmins": 31539, + "Ġmint": 18189, + "Ġminus": 3175, + "Ġminut": 13951, + "Ġminute": 3456, + "Ġminutes": 2077, + "Ġminutos": 19421, + "Ġmio": 29908, + "Ġmir": 3149, + "Ġmira": 30286, + "Ġmirac": 30686, + "Ġmiracle": 14660, + "Ġmiracles": 24685, + "Ġmiraculous": 41101, + "Ġmirror": 8013, + "Ġmirrors": 24238, + "Ġmis": 3346, + "Ġmiscon": 27631, + "Ġmisconception": 41350, + "Ġmisconceptions": 50012, + "Ġmise": 36845, + "Ġmiser": 17725, + "Ġmiserable": 22321, + "Ġmisery": 32309, + "Ġmisf": 47351, + "Ġmisin": 32333, + "Ġmisinformation": 34238, + "Ġmisleading": 36429, + "Ġmism": 23220, + "Ġmisma": 24946, + "Ġmismo": 12461, + "Ġmismos": 47458, + "Ġmiss": 1713, + "Ġmisschien": 42047, + "Ġmissed": 6721, + "Ġmisses": 29394, + "Ġmissile": 19321, + "Ġmissiles": 23133, + "Ġmissing": 5361, + "Ġmission": 4447, + "Ġmissionary": 45418, + "Ġmissions": 13744, + "Ġmist": 3544, + "Ġmistake": 6146, + "Ġmistaken": 21333, + "Ġmistakes": 8038, + "Ġmister": 26562, + "Ġmistress": 46635, + "Ġmisunder": 15736, + "Ġmisunderstand": 35736, + "Ġmisunderstanding": 29227, + "Ġmisunderstood": 33870, + "Ġmit": 2194, + "Ġmitad": 46895, + "Ġmite": 36190, + "Ġmiteinander": 43127, + "Ġmiten": 43265, + "Ġmitig": 15699, + "Ġmitigate": 27336, + "Ġmitigation": 32649, + "Ġmitochond": 41008, + "Ġmitt": 19130, + "Ġmittlerweile": 41999, + "Ġmitä": 30451, + "Ġmix": 2890, + "Ġmixed": 7467, + "Ġmixer": 24063, + "Ġmixes": 37121, + "Ġmixing": 11983, + "Ġmixture": 9925, + "ĠmiÄĻdzy": 33964, + "Ġml": 23271, + "Ġmm": 11169, + "Ġmmm": 26159, + "Ġmnie": 17661, + "Ġmniej": 39513, + "Ġmo": 705, + "Ġmob": 4298, + "Ġmobil": 15891, + "Ġmobile": 6013, + "Ġmobility": 16199, + "Ġmobilize": 48637, + "Ġmoc": 34962, + "Ġmock": 17362, + "Ġmocking": 49792, + "Ġmod": 1072, + "Ġmodal": 39745, + "Ġmode": 4391, + "Ġmodel": 2316, + "Ġmodeled": 37140, + "Ġmodeling": 15983, + "Ġmodelling": 42253, + "Ġmodelo": 27825, + "Ġmodels": 5245, + "Ġmoder": 10494, + "Ġmoderate": 18174, + "Ġmoderation": 49471, + "Ġmoderator": 37778, + "Ġmodern": 4363, + "Ġmodes": 14068, + "Ġmodest": 25403, + "Ġmodification": 26747, + "Ġmodifications": 26881, + "Ġmodified": 15873, + "Ġmodifier": 38011, + "Ġmodify": 16927, + "Ġmodifying": 42626, + "Ġmodo": 16664, + "Ġmods": 30899, + "Ġmodular": 31111, + "Ġmodulation": 42288, + "Ġmodule": 10088, + "Ġmodules": 16679, + "Ġmodulus": 42287, + "Ġmodèle": 45631, + "Ġmoet": 12677, + "Ġmoeten": 26175, + "Ġmog": 13172, + "Ġmogelijk": 46617, + "ĠmogÄħ": 34123, + "ĠmogÄĻ": 41737, + "Ġmoi": 7748, + "Ġmoim": 48569, + "Ġmoins": 13099, + "Ġmois": 19230, + "Ġmoist": 8641, + "Ġmoistur": 21531, + "Ġmoisture": 13814, + "Ġmoisturizer": 47588, + "Ġmoisturizing": 44134, + "Ġmoje": 36383, + "Ġmol": 8015, + "Ġmolar": 45712, + "Ġmold": 11102, + "Ġmolds": 48257, + "Ġmole": 6353, + "Ġmolec": 10646, + "Ġmolecular": 19046, + "Ġmolecule": 15582, + "Ġmolecules": 13093, + "Ġmoles": 34286, + "Ġmolt": 10739, + "Ġmolta": 48564, + "Ġmolten": 44845, + "Ġmolto": 16394, + "Ġmolé": 49300, + "Ġmom": 1225, + "Ġmomencie": 40883, + "Ġmoment": 1623, + "Ġmomento": 9333, + "Ġmomentos": 34583, + "Ġmoments": 6065, + "Ġmomentum": 11244, + "Ġmommy": 25606, + "Ġmoms": 25399, + "Ġmon": 1108, + "Ġmonarch": 33658, + "Ġmonaster": 31412, + "Ġmonastery": 37821, + "Ġmond": 17606, + "Ġmonde": 10431, + "Ġmondo": 40499, + "Ġmonet": 15556, + "Ġmonetary": 26388, + "Ġmoney": 1460, + "Ġmonit": 32001, + "Ġmonitor": 6002, + "Ġmonitored": 36255, + "Ġmonitoring": 11028, + "Ġmonitors": 26518, + "Ġmonk": 27698, + "Ġmonkey": 17847, + "Ġmonkeys": 29534, + "Ġmonks": 32201, + "Ġmono": 35624, + "Ġmonopol": 47721, + "Ġmonopoly": 37061, + "Ġmonsieur": 36507, + "Ġmonster": 10090, + "Ġmonsters": 15785, + "Ġmonstr": 47137, + "Ġmont": 8143, + "Ġmontage": 40184, + "Ġmonte": 35437, + "Ġmonter": 47945, + "Ġmonth": 1618, + "Ġmonthly": 12878, + "Ġmonths": 2493, + "Ġmontre": 44132, + "Ġmontrer": 33116, + "Ġmontón": 45259, + "Ġmonument": 20289, + "Ġmonumental": 43105, + "Ġmonuments": 36864, + "Ġmoo": 37284, + "Ġmood": 9268, + "Ġmooi": 38583, + "Ġmoon": 7135, + "Ġmoonlight": 48058, + "Ġmoons": 34139, + "Ġmop": 48106, + "Ġmor": 1896, + "Ġmoral": 9723, + "Ġmorale": 37455, + "Ġmorality": 29106, + "Ġmorally": 38622, + "Ġmorals": 46849, + "Ġmorb": 46510, + "Ġmore": 544, + "Ġmorgen": 36593, + "Ġmorning": 2446, + "Ġmornings": 37143, + "Ġmorph": 25778, + "Ġmort": 6599, + "Ġmortal": 27624, + "Ġmortality": 23330, + "Ġmortar": 33956, + "Ġmorte": 37392, + "Ġmortgage": 20236, + "Ġmos": 13659, + "Ġmosque": 31501, + "Ġmosquito": 23970, + "Ġmosquitoes": 39394, + "Ġmoss": 36193, + "Ġmost": 881, + "Ġmostly": 5240, + "Ġmostra": 43101, + "Ġmostrar": 21487, + "Ġmot": 2184, + "Ġmote": 49071, + "Ġmother": 2895, + "Ġmotherboard": 32916, + "Ġmotherf": 29537, + "Ġmotherfucker": 47069, + "Ġmothers": 17941, + "Ġmotif": 39478, + "Ġmotion": 5394, + "Ġmotions": 27500, + "Ġmotiv": 5426, + "Ġmotivate": 28497, + "Ġmotivated": 14515, + "Ġmotivates": 42569, + "Ġmotivating": 41066, + "Ġmotivation": 12335, + "Ġmotivational": 48186, + "Ġmotivations": 39034, + "Ġmotive": 28827, + "Ġmotives": 39812, + "Ġmotivo": 35804, + "Ġmoto": 42192, + "Ġmotor": 5932, + "Ġmotorcycle": 20554, + "Ġmotorcycles": 46813, + "Ġmotors": 25035, + "Ġmots": 34009, + "Ġmotto": 32680, + "Ġmould": 34803, + "Ġmound": 49034, + "Ġmount": 3746, + "Ġmountain": 6937, + "Ġmountains": 10233, + "Ġmounted": 19138, + "Ġmounting": 22986, + "Ġmounts": 40982, + "Ġmour": 22235, + "Ġmourning": 42947, + "Ġmouse": 9719, + "Ġmouth": 4525, + "Ġmouths": 33171, + "Ġmouve": 33415, + "Ġmouvement": 41219, + "Ġmov": 2402, + "Ġmove": 1286, + "Ġmoved": 4259, + "Ġmovement": 3963, + "Ġmovements": 9981, + "Ġmover": 39945, + "Ġmoves": 6067, + "Ġmovie": 3169, + "Ġmovies": 6233, + "Ġmovimento": 40798, + "Ġmovimiento": 43180, + "Ġmoving": 2684, + "Ġmoy": 32018, + "Ġmoyen": 42009, + "Ġmoyens": 47040, + "Ġmozzarella": 44135, + "Ġmoż": 10697, + "Ġmoże": 12034, + "Ġmożemy": 26500, + "Ġmożli": 30854, + "Ġmożna": 17790, + "Ġmph": 46351, + "Ġmr": 33660, + "Ġmu": 2992, + "Ġmuch": 709, + "Ġmucha": 25248, + "Ġmuchas": 16072, + "Ġmucho": 9824, + "Ġmuchos": 17061, + "ĠmuchÃŃs": 29353, + "ĠmuchÃŃsimo": 44722, + "Ġmud": 8933, + "Ġmudar": 42281, + "Ġmuddy": 38540, + "Ġmue": 49532, + "Ġmuerte": 38497, + "Ġmuff": 22635, + "Ġmuffin": 48400, + "Ġmug": 23610, + "Ġmuit": 4146, + "Ġmuita": 21025, + "Ġmuitas": 25705, + "Ġmuito": 4945, + "Ġmuitos": 28918, + "Ġmuj": 30008, + "Ġmujer": 32032, + "Ġmujeres": 31683, + "Ġmuk": 31475, + "Ġmul": 14077, + "Ġmulher": 33211, + "Ġmulheres": 43244, + "Ġmult": 2120, + "Ġmulti": 4825, + "Ġmultic": 30608, + "Ġmulticultural": 47684, + "Ġmultif": 39824, + "Ġmultim": 32972, + "Ġmultimedia": 49202, + "Ġmultin": 45872, + "Ġmultip": 3311, + "Ġmultipl": 12788, + "Ġmultiplayer": 27325, + "Ġmultiple": 3866, + "Ġmultiples": 46099, + "Ġmultiplic": 17596, + "Ġmultiplication": 27290, + "Ġmultiplied": 17207, + "Ġmultiplier": 44106, + "Ġmultiply": 12972, + "Ġmultiplying": 30955, + "Ġmultit": 42338, + "Ġmultitude": 36358, + "Ġmum": 14697, + "Ġmummy": 45295, + "Ġmun": 11864, + "Ġmund": 23175, + "Ġmundane": 43497, + "Ġmundial": 41740, + "Ġmundo": 7968, + "Ġmungkin": 32633, + "Ġmunicip": 14998, + "Ġmunicipal": 27177, + "Ġmunicipalities": 39748, + "Ġmunicipality": 44186, + "Ġmur": 5257, + "Ġmural": 40595, + "Ġmurder": 6568, + "Ġmurdered": 18486, + "Ġmurderer": 28703, + "Ġmurders": 30479, + "Ġmurm": 39729, + "Ġmus": 1038, + "Ġmuscle": 8679, + "Ġmuscles": 9530, + "Ġmuscular": 31641, + "Ġmuse": 39138, + "Ġmuseum": 8441, + "Ġmuseums": 23248, + "Ġmush": 11559, + "Ġmushroom": 12094, + "Ġmushrooms": 17973, + "Ġmusi": 37587, + "Ġmusic": 1318, + "Ġmusical": 9165, + "Ġmusician": 19570, + "Ġmusicians": 16916, + "Ġmusimy": 43449, + "Ġmusique": 34108, + "Ġmuss": 6425, + "Ġmusst": 31716, + "Ġmusste": 34497, + "Ġmust": 1633, + "Ġmustache": 37798, + "Ġmustard": 23659, + "Ġmustn": 42818, + "Ġmusun": 25447, + "Ġmut": 5839, + "Ġmutant": 47198, + "Ġmutation": 27960, + "Ġmutations": 29243, + "Ġmute": 24523, + "Ġmuted": 32808, + "Ġmutta": 26265, + "Ġmutual": 16917, + "Ġmutually": 39144, + "Ġmuut": 46785, + "Ġmuy": 5323, + "Ġmuá»ijn": 42453, + "Ġmy": 452, + "Ġmycket": 16780, + "Ġmyself": 2059, + "Ġmyst": 9111, + "Ġmyster": 11010, + "Ġmysteries": 30785, + "Ġmysterious": 13831, + "Ġmystery": 11422, + "Ġmystical": 40565, + "Ġmyth": 9474, + "Ġmythical": 40843, + "Ġmythology": 30871, + "Ġmyths": 28205, + "Ġmyös": 23623, + "ĠmyÅĽ": 48633, + "ĠmyÅĽlÄĻ": 37730, + "Ġmá": 12228, + "Ġmáqu": 39701, + "Ġmáquina": 49360, + "Ġmár": 40331, + "Ġmás": 3573, + "Ġmáxim": 31031, + "Ġmáximo": 38876, + "Ġmã": 22410, + "Ġmãe": 29392, + "Ġmão": 31639, + "Ġmä": 25117, + "Ġmänn": 39550, + "Ġmännisk": 45220, + "Ġmänniskor": 48091, + "ĠmÃ¥": 10254, + "ĠmÃ¥nga": 25068, + "ĠmÃ¥ste": 23958, + "Ġmère": 35935, + "Ġmé": 13191, + "Ġméd": 16978, + "Ġmédi": 42436, + "Ġmédia": 49503, + "Ġmédico": 44853, + "Ġmég": 43510, + "Ġmél": 41953, + "Ġmés": 12545, + "Ġmét": 20275, + "Ġméth": 45404, + "Ġmême": 5698, + "Ġmêmes": 42588, + "Ġmês": 41400, + "Ġmình": 14526, + "Ġmó": 32515, + "Ġmón": 37803, + "Ġmów": 13489, + "Ġmówi": 24592, + "ĠmówiÄħ": 46591, + "Ġmö": 7667, + "Ġmöchte": 14570, + "Ġmöchten": 49699, + "Ġmöglich": 16294, + "Ġmöglichst": 44850, + "Ġmöj": 37606, + "Ġmús": 38886, + "Ġmúsica": 20091, + "Ġmü": 6047, + "Ġmüs": 28802, + "Ġmüssen": 9013, + "Ġmüsst": 49481, + "Ġmüsste": 42962, + "ĠmÃł": 13901, + "ĠmÃły": 45464, + "ĠmÃŃ": 14692, + "ĠmÃŃn": 33656, + "ĠmÃŃnimo": 47393, + "Ġmı": 9251, + "ĠmÅĤ": 40770, + "Ġmá»Ļt": 15486, + "ĠmỼi": 37328, + "Ġn": 297, + "Ġna": 1667, + "Ġnaar": 12762, + "Ġnac": 42071, + "Ġnach": 5168, + "Ġnacional": 29836, + "Ġnad": 12617, + "Ġnada": 8096, + "Ġnadie": 28060, + "Ġnadzie": 43693, + "ĠnadziejÄĻ": 48881, + "Ġnag": 17096, + "Ġnagyon": 46259, + "Ġnah": 17170, + "Ġnail": 10173, + "Ġnailed": 30790, + "Ġnails": 15394, + "Ġnaive": 29052, + "Ġnaj": 11212, + "Ġnajbardziej": 41857, + "Ġnajle": 41903, + "ĠnajwiÄĻ": 48636, + "Ġnak": 20332, + "Ġnaked": 15791, + "Ġnam": 8835, + "Ġname": 1315, + "Ġnamed": 4926, + "Ġnamely": 20926, + "Ġnames": 5288, + "Ġnaming": 25290, + "Ġnan": 14067, + "Ġnano": 30129, + "Ġnap": 9296, + "ĠnaprawdÄĻ": 20970, + "Ġnar": 6714, + "Ġnarc": 21328, + "Ġnarciss": 25771, + "Ġnarcissist": 49130, + "Ġnarr": 6397, + "Ġnarration": 43299, + "Ġnarrative": 9977, + "Ġnarratives": 28016, + "Ġnarrator": 32646, + "Ġnarrow": 9432, + "Ġnarrower": 46751, + "Ġnas": 5382, + "Ġnasal": 41575, + "Ġnast": 26088, + "Ġnasty": 17923, + "ĠnastÄĻp": 39662, + "Ġnasze": 43394, + "Ġnaszego": 44517, + "Ġnaszej": 42946, + "Ġnaszych": 45002, + "Ġnaszym": 48094, + "Ġnasıl": 16963, + "Ġnat": 2249, + "Ġnation": 4790, + "Ġnational": 4048, + "Ġnationale": 49974, + "Ġnationalism": 39186, + "Ġnationalist": 49654, + "Ġnationally": 27652, + "Ġnations": 11035, + "Ġnationwide": 29102, + "Ġnative": 8470, + "Ġnatives": 47964, + "Ġnatomiast": 43169, + "Ġnatur": 26389, + "Ġnatural": 3303, + "Ġnaturale": 40877, + "Ġnaturally": 8195, + "Ġnature": 3687, + "Ġnatuur": 24414, + "Ġnatuurlijk": 26892, + "Ġnatürlich": 8762, + "Ġnau": 35616, + "Ġnauc": 49103, + "Ġnaught": 13138, + "Ġnaughty": 32154, + "Ġnause": 34735, + "Ġnav": 5947, + "Ġnaval": 33050, + "Ġnave": 39376, + "Ġnavig": 7407, + "Ġnavigate": 12350, + "Ġnavigating": 32054, + "Ġnavigation": 17346, + "Ġnavy": 31319, + "Ġnaw": 18969, + "Ġnawet": 22696, + "Ġnay": 34227, + "Ġnaz": 20151, + "Ġne": 408, + "Ġnear": 2651, + "Ġnearby": 11184, + "Ġnearest": 23831, + "Ġnearly": 6217, + "Ġneat": 10654, + "Ġneatly": 36634, + "Ġneben": 36098, + "Ġneces": 11909, + "Ġnecesario": 44095, + "Ġnecesit": 38661, + "Ġnecesita": 45485, + "Ġnecess": 2688, + "Ġnecessarily": 4725, + "Ġnecessary": 4818, + "Ġnecessity": 24217, + "Ġneck": 6189, + "Ġnecklace": 24563, + "Ġnectar": 49943, + "Ġned": 25614, + "Ġneden": 34828, + "Ġnee": 41694, + "Ġneed": 643, + "Ġneeded": 2978, + "Ġneeding": 18006, + "Ġneedle": 11037, + "Ġneedles": 24792, + "Ġneeds": 2203, + "Ġneg": 2485, + "Ġnegative": 3671, + "Ġnegatively": 29519, + "Ġnegatives": 40019, + "Ġnegativity": 39297, + "Ġneglect": 17745, + "Ġneglected": 32701, + "Ġneglig": 32570, + "Ġnego": 26722, + "Ġnegoti": 9542, + "Ġnegotiate": 21713, + "Ġnegotiated": 39028, + "Ġnegotiating": 30396, + "Ġnegotiation": 27573, + "Ġnegotiations": 20476, + "Ġnegro": 40008, + "Ġnegó": 31008, + "Ġnegócio": 35532, + "Ġneh": 40857, + "Ġnehme": 48276, + "Ġnehmen": 19905, + "Ġnei": 34517, + "Ġneigh": 4168, + "Ġneighb": 7888, + "Ġneighbor": 5987, + "Ġneighborhood": 7630, + "Ġneighborhoods": 20052, + "Ġneighboring": 31521, + "Ġneighbors": 12512, + "Ġneighbour": 19755, + "Ġneighbourhood": 30471, + "Ġneighbours": 35548, + "Ġnein": 40041, + "Ġneither": 9662, + "Ġnel": 15373, + "Ġnell": 44666, + "Ġnella": 23878, + "Ġnelle": 46350, + "Ġnem": 9939, + "Ġnen": 16399, + "Ġnenhum": 32584, + "Ġnenhuma": 43273, + "Ġneo": 41977, + "Ġneol": 49512, + "Ġneon": 30820, + "Ġnep": 24901, + "Ġnephew": 30799, + "Ġner": 18219, + "Ġnerd": 23229, + "Ġnered": 28085, + "Ġnerede": 44906, + "Ġnerv": 5724, + "Ġnerve": 16355, + "Ġnerves": 23078, + "Ġnervous": 6296, + "Ġness": 39787, + "Ġnessa": 23246, + "Ġnesse": 18270, + "Ġnest": 15646, + "Ġneste": 34739, + "Ġnet": 2533, + "Ġnets": 36170, + "Ġnett": 42084, + "Ġnetwork": 3209, + "Ġnetworking": 17985, + "Ġnetworks": 9590, + "Ġneu": 22510, + "Ġneue": 16842, + "Ġneuen": 21387, + "Ġneues": 43979, + "Ġneur": 12087, + "Ġneural": 18161, + "Ġneuro": 16499, + "Ġneurolog": 28351, + "Ġneurological": 48185, + "Ġneuron": 34090, + "Ġneurons": 22027, + "Ġneuros": 28813, + "Ġneuroscience": 42762, + "Ġneurot": 43286, + "Ġneut": 7989, + "Ġneutr": 39913, + "Ġneutral": 10598, + "Ġneutron": 44362, + "Ġnever": 1128, + "Ġnevertheless": 26924, + "Ġnew": 777, + "Ġnewborn": 32928, + "Ġnewcom": 40014, + "Ġnewer": 17628, + "Ġnewest": 17569, + "Ġnewly": 15109, + "Ġnews": 2583, + "Ġnewsletter": 26469, + "Ġnewsp": 10202, + "Ġnewspaper": 13669, + "Ġnewspapers": 20781, + "Ġnext": 958, + "Ġng": 6415, + "Ġnggak": 28631, + "Ġngh": 29338, + "Ġnghi": 46889, + "ĠnghÄ©": 41077, + "Ġngo": 45843, + "ĠngÃły": 34481, + "Ġngưá»Ŀi": 15898, + "Ġnh": 6245, + "Ġnhi": 20575, + "Ġnhiá»ģu": 28272, + "Ġnhân": 47931, + "ĠnhÃł": 35398, + "Ġnhư": 16228, + "Ġnhưng": 37504, + "Ġnhất": 41081, + "Ġnhững": 20136, + "Ġni": 3867, + "Ġnib": 38956, + "Ġnic": 6201, + "Ġnice": 1481, + "Ġnicely": 9594, + "Ġnicer": 22842, + "Ġnicest": 45516, + "Ġnich": 25570, + "Ġniche": 19956, + "Ġnicht": 1979, + "Ġnichts": 13004, + "Ġnick": 15416, + "Ġnickel": 30542, + "Ġnickname": 21641, + "Ġnie": 2838, + "Ġniece": 39991, + "Ġnied": 32488, + "Ġniego": 49615, + "Ġniemand": 32390, + "Ġnies": 48100, + "Ġniet": 6899, + "Ġnieu": 26829, + "Ġnieuwe": 37029, + "Ġniew": 43622, + "Ġniez": 33511, + "Ġnig": 26996, + "Ġnigga": 41626, + "Ġnight": 1818, + "Ġnightmare": 18724, + "Ġnightmares": 36911, + "Ġnights": 13249, + "Ġnighttime": 38595, + "Ġnih": 27438, + "Ġniin": 16077, + "Ġnik": 44336, + "Ġnim": 24887, + "Ġnimmt": 38891, + "Ġnin": 9616, + "Ġnine": 4949, + "Ġninete": 26286, + "Ġnineteen": 31555, + "Ġninety": 25063, + "Ġning": 17210, + "Ġninguna": 36073, + "Ġninguém": 30091, + "Ġningún": 30394, + "Ġninja": 31604, + "Ġninth": 28207, + "Ġnit": 10900, + "Ġnitrogen": 17903, + "Ġnive": 11461, + "Ġniveau": 19144, + "Ġnivel": 24423, + "Ġniye": 30493, + "Ġniño": 42307, + "Ġniños": 30712, + "Ġniż": 28502, + "Ġno": 572, + "Ġnoble": 20171, + "Ġnobody": 5079, + "Ġnoch": 3514, + "Ġnoche": 29735, + "Ġnochmal": 26509, + "Ġnod": 15224, + "Ġnode": 9984, + "Ġnodes": 13891, + "Ġnodig": 43409, + "Ġnog": 9638, + "Ġnoget": 34574, + "Ġnogle": 48713, + "Ġnoi": 22447, + "Ġnoir": 39359, + "Ġnoise": 5658, + "Ġnoises": 14620, + "Ġnoisy": 24518, + "Ġnoite": 34429, + "Ġnok": 33811, + "Ġnom": 5369, + "Ġnombre": 13000, + "Ġnombreux": 43260, + "Ġnome": 19003, + "Ġnominal": 41641, + "Ġnominated": 25159, + "Ġnomination": 30375, + "Ġnominations": 46331, + "Ġnominee": 37170, + "Ġnominees": 49774, + "Ġnomés": 40052, + "Ġnon": 2107, + "Ġnone": 6022, + "Ġnonetheless": 26756, + "Ġnonprofit": 23348, + "Ġnonprofits": 42851, + "Ġnonsense": 14925, + "Ġnood": 8422, + "Ġnoodle": 21873, + "Ġnoodles": 10480, + "Ġnooit": 48286, + "Ġnoon": 24040, + "Ġnope": 23444, + "Ġnor": 6051, + "Ġnord": 39284, + "Ġnorm": 2026, + "Ġnormal": 2710, + "Ġnormale": 43646, + "Ġnormalized": 48704, + "Ġnormally": 5646, + "Ġnormalmente": 38217, + "Ġnorms": 24357, + "Ġnorte": 41966, + "Ġnorth": 6830, + "Ġnortheast": 40984, + "Ġnorthern": 14197, + "Ġnorthwest": 36930, + "Ġnos": 3269, + "Ġnosaltres": 49100, + "Ġnose": 6690, + "Ġnosotros": 13863, + "Ġnoss": 24970, + "Ġnossa": 15821, + "Ġnossas": 44041, + "Ġnosso": 14347, + "Ġnossos": 35378, + "Ġnost": 10397, + "Ġnostalgia": 34618, + "Ġnostalgic": 40240, + "Ġnostra": 34311, + "Ġnostro": 35779, + "Ġnot": 406, + "Ġnota": 36192, + "Ġnotable": 22556, + "Ġnotably": 31357, + "Ġnotamment": 26165, + "Ġnotation": 24657, + "Ġnotch": 26109, + "Ġnote": 3637, + "Ġnotebook": 21060, + "Ġnotebooks": 43782, + "Ġnoted": 12964, + "Ġnotes": 5570, + "Ġnothin": 47562, + "Ġnothing": 1825, + "Ġnotice": 3449, + "Ġnoticeable": 26041, + "Ġnoticed": 5694, + "Ġnotices": 32978, + "Ġnoticing": 21814, + "Ġnotification": 11554, + "Ġnotifications": 13426, + "Ġnotified": 18013, + "Ġnotify": 36560, + "Ġnoting": 26801, + "Ġnotion": 10710, + "Ġnotions": 35799, + "Ġnotor": 46772, + "Ġnotorious": 38045, + "Ġnotre": 10349, + "Ġnotwend": 41308, + "Ġnou": 23641, + "Ġnoun": 23307, + "Ġnouns": 48184, + "Ġnour": 22683, + "Ġnous": 4666, + "Ġnouve": 11456, + "Ġnouveau": 23326, + "Ġnouveaux": 44952, + "Ġnouvelle": 24156, + "Ġnouvelles": 37172, + "Ġnov": 23883, + "Ġnova": 28265, + "Ġnovamente": 49960, + "Ġnove": 26972, + "Ġnovel": 7613, + "Ġnovels": 24574, + "Ġnovelty": 44805, + "Ġnovo": 18246, + "Ġnow": 586, + "Ġnowadays": 13434, + "Ġnowhere": 11159, + "Ġnozzle": 28998, + "Ġnp": 33808, + "Ġnu": 3822, + "Ġnuance": 42625, + "Ġnuanced": 45115, + "Ġnuances": 38775, + "Ġnuc": 6304, + "Ġnucle": 14962, + "Ġnuclear": 8179, + "Ġnuclei": 49919, + "Ġnucleus": 28055, + "Ġnud": 40045, + "Ġnude": 36505, + "Ġnue": 10412, + "Ġnuest": 7717, + "Ġnuestra": 16825, + "Ġnuestras": 32809, + "Ġnuestro": 14726, + "Ġnuestros": 24099, + "Ġnueva": 28963, + "Ġnuevas": 42817, + "Ġnuevo": 18591, + "Ġnuevos": 42010, + "Ġnug": 30279, + "Ġnuggets": 42663, + "Ġnuit": 38467, + "Ġnull": 18184, + "Ġnum": 1031, + "Ġnuma": 29080, + "Ġnumb": 32200, + "Ġnumber": 1230, + "Ġnumbered": 40936, + "Ġnumbers": 3547, + "Ġnumer": 7866, + "Ġnumerator": 30380, + "Ġnumerical": 29054, + "Ġnumero": 46839, + "Ġnumerous": 12546, + "Ġnuméro": 49525, + "Ġnun": 8905, + "Ġnunca": 13768, + "Ġnuo": 37802, + "Ġnuovo": 49348, + "Ġnur": 4343, + "Ġnurs": 9070, + "Ġnurse": 14012, + "Ġnursery": 37538, + "Ġnurses": 17446, + "Ġnursing": 15423, + "Ġnurt": 23705, + "Ġnurture": 41451, + "Ġnurturing": 48116, + "Ġnut": 5393, + "Ġnutr": 12289, + "Ġnutri": 13242, + "Ġnutrient": 32694, + "Ġnutrients": 17617, + "Ġnutrit": 37972, + "Ġnutrition": 14718, + "Ġnutritional": 34707, + "Ġnutritious": 40850, + "Ġnuts": 10483, + "Ġnutshell": 37711, + "Ġnutzen": 36905, + "Ġny": 18052, + "Ġnya": 24450, + "Ġnylon": 43503, + "Ġnyt": 21508, + "Ġnão": 2431, + "Ġnä": 6433, + "Ġnäch": 13201, + "Ġnächste": 30661, + "Ġnächsten": 19101, + "Ġnäm": 17534, + "Ġnämlich": 21219, + "Ġnär": 15457, + "ĠnÃ¥": 11594, + "ĠnÃ¥gon": 25418, + "ĠnÃ¥gonting": 43998, + "ĠnÃ¥got": 36586, + "ĠnÃ¥gra": 40842, + "ĠnÃ¥r": 36522, + "Ġné": 7024, + "Ġnécess": 31956, + "Ġnécessaire": 46396, + "Ġnên": 40606, + "Ġnó": 6604, + "Ġnói": 27508, + "Ġnós": 9738, + "Ġnú": 11908, + "Ġnúmer": 12803, + "Ġnúmero": 14959, + "Ġnúmeros": 36545, + "ĠnÃło": 29069, + "ĠnÃły": 12542, + "ĠnÃŃvel": 41747, + "ĠnÄĥm": 38098, + "ĠnÄĽ": 46911, + "ĠnÆ°á»Ľc": 30728, + "Ġnữa": 35047, + "Ġo": 277, + "Ġoak": 31322, + "Ġoat": 36792, + "Ġoath": 29450, + "Ġoatmeal": 47223, + "Ġoats": 43095, + "Ġob": 1111, + "Ġobe": 36346, + "Ġobec": 49141, + "Ġobed": 24330, + "Ġobedience": 36585, + "Ġobedient": 42541, + "Ġoben": 21279, + "Ġobes": 26395, + "Ġobese": 50060, + "Ġobesity": 29744, + "Ġobey": 19297, + "Ġobject": 2657, + "Ġobjection": 35756, + "Ġobjections": 44649, + "Ġobjective": 10024, + "Ġobjectively": 46067, + "Ġobjectives": 15961, + "Ġobjects": 6565, + "Ġobjet": 14964, + "Ġobjetivo": 29809, + "Ġobjeto": 40438, + "Ġobjetos": 49605, + "Ġobl": 23740, + "Ġoblig": 9270, + "Ġobligation": 20326, + "Ġobligations": 26234, + "Ġobliged": 47194, + "Ġobliv": 47039, + "Ġobra": 22798, + "Ġobras": 47618, + "Ġobrig": 29126, + "Ġobrigado": 41774, + "Ġobs": 3181, + "Ġobsc": 22082, + "Ġobscure": 34443, + "Ġobser": 12887, + "Ġobserv": 9951, + "Ġobservation": 14816, + "Ġobservations": 18163, + "Ġobserve": 11441, + "Ġobserved": 13095, + "Ġobserver": 27878, + "Ġobservers": 48090, + "Ġobserving": 22107, + "Ġobsess": 35803, + "Ġobsessed": 16923, + "Ġobsession": 30521, + "Ġobsol": 43053, + "Ġobsolete": 46333, + "Ġobst": 9579, + "Ġobstacle": 23112, + "Ġobstacles": 17735, + "Ġobstruct": 45579, + "Ġobstruction": 49711, + "Ġobt": 7464, + "Ġobtain": 12701, + "Ġobtained": 14879, + "Ġobtaining": 36749, + "Ġobten": 28326, + "Ġobviamente": 36325, + "Ġobvious": 6322, + "Ġobviously": 2745, + "Ġobwohl": 48428, + "Ġoc": 10409, + "Ġocas": 44534, + "Ġocc": 2678, + "Ġoccas": 15319, + "Ġoccasion": 9674, + "Ġoccasional": 31644, + "Ġoccasionally": 16895, + "Ġoccasions": 20641, + "Ġoccup": 8073, + "Ġoccupation": 24482, + "Ġoccupational": 43544, + "Ġoccupied": 19629, + "Ġoccupy": 30645, + "Ġoccur": 5160, + "Ġoccurred": 11068, + "Ġoccurrence": 36122, + "Ġoccurring": 18386, + "Ġoccurs": 11843, + "Ġocean": 7810, + "Ġoceans": 25004, + "Ġoch": 3795, + "ĠocksÃ¥": 13312, + "Ġoct": 13350, + "Ġoctave": 44441, + "Ġoctopus": 27962, + "Ġocup": 37305, + "Ġocur": 26430, + "ĠoczywiÅĽcie": 23862, + "Ġod": 3611, + "Ġodc": 36471, + "Ġodd": 7401, + "Ġoddly": 46083, + "Ġodds": 17439, + "Ġode": 45711, + "Ġoder": 4513, + "Ġodor": 41176, + "Ġodpow": 24314, + "Ġodpowied": 36574, + "Ġof": 295, + "Ġofere": 47084, + "Ġoff": 766, + "Ġoffen": 35253, + "Ġoffend": 41836, + "Ġoffended": 26776, + "Ġoffenders": 49079, + "Ġoffense": 17834, + "Ġoffenses": 49765, + "Ġoffensive": 15710, + "Ġoffer": 2626, + "Ġoffered": 8059, + "Ġoffering": 8745, + "Ġofferings": 25898, + "Ġoffers": 7736, + "Ġoffic": 2832, + "Ġoffice": 3398, + "Ġofficer": 8456, + "Ġofficers": 9199, + "Ġoffices": 14434, + "Ġofficial": 4783, + "Ġofficially": 12053, + "Ġofficials": 9798, + "Ġoffline": 21857, + "Ġoffs": 39457, + "Ġoffset": 18687, + "Ġoffshore": 34567, + "Ġoffspring": 36857, + "Ġoficial": 37189, + "Ġoft": 11649, + "Ġoften": 2049, + "Ġoftentimes": 18349, + "Ġog": 5360, + "Ġoggi": 34768, + "Ġogl": 49424, + "Ġogni": 33189, + "Ġogr": 34416, + "ĠogsÃ¥": 23864, + "Ġogóle": 29229, + "Ġoh": 1954, + "Ġohh": 50101, + "Ġohne": 15716, + "Ġoike": 38432, + "Ġoil": 3184, + "Ġoils": 22177, + "Ġoily": 27693, + "Ġojos": 39519, + "Ġok": 3133, + "Ġokay": 1392, + "Ġoke": 40043, + "Ġoko": 45730, + "Ġol": 2545, + "Ġolabilir": 38049, + "Ġolacak": 23172, + "Ġolan": 17771, + "Ġolar": 17318, + "Ġolarak": 17728, + "Ġold": 1331, + "Ġolder": 4906, + "Ġoldest": 14026, + "Ġolds": 41972, + "Ġoldu": 9761, + "ĠolduÄŁ": 15049, + "ĠolduÄŁu": 30588, + "ĠolduÄŁunu": 28619, + "Ġole": 18726, + "Ġoleh": 50051, + "Ġolha": 23550, + "Ġolhar": 37446, + "Ġolho": 50147, + "Ġolhos": 47944, + "Ġoli": 24072, + "Ġolika": 26025, + "Ġolive": 15981, + "Ġolives": 46746, + "Ġoll": 37995, + "Ġolla": 26876, + "Ġollut": 41851, + "Ġolm": 13583, + "Ġolmak": 45535, + "Ġolmas": 40307, + "Ġolması": 47528, + "Ġolmay": 35954, + "Ġolmaz": 31593, + "ĠolmuÅŁ": 32548, + "Ġolsa": 44655, + "Ġolsun": 17632, + "Ġolun": 38084, + "Ġolur": 16538, + "Ġolurs": 41607, + "Ġoluyor": 23597, + "ĠoluÅŁ": 49849, + "Ġolv": 43851, + "Ġolvid": 43194, + "Ġom": 3406, + "Ġomdat": 34982, + "Ġomega": 10498, + "Ġomin": 46812, + "Ġomn": 36874, + "Ġon": 322, + "Ġona": 20325, + "Ġonboard": 24033, + "Ġonc": 40592, + "Ġonce": 1564, + "Ġonda": 45671, + "Ġondan": 49228, + "Ġonde": 14396, + "Ġonder": 20756, + "Ġone": 472, + "Ġones": 2306, + "Ġoneself": 32265, + "Ġongoing": 10452, + "Ġoni": 36317, + "Ġonion": 10916, + "Ġonions": 13146, + "Ġonlar": 43179, + "Ġonline": 2950, + "Ġonly": 787, + "Ġons": 18818, + "Ġonset": 34948, + "Ġont": 6592, + "Ġonto": 3911, + "Ġonu": 20801, + "Ġonun": 27295, + "Ġonwards": 34230, + "Ġonze": 29460, + "Ġoo": 32685, + "Ġooh": 17024, + "Ġook": 7839, + "Ġoops": 34166, + "Ġop": 999, + "Ġopacity": 41693, + "Ġopaque": 42687, + "Ġopen": 1269, + "Ġopened": 5625, + "Ġopener": 43850, + "Ġopening": 5193, + "Ġopenings": 35941, + "Ġopenly": 23109, + "Ġopenness": 36200, + "Ġopens": 9870, + "Ġoper": 2208, + "Ġopera": 22202, + "Ġoperate": 9651, + "Ġoperated": 20826, + "Ġoperates": 22577, + "Ġoperating": 7447, + "Ġoperation": 6916, + "Ġoperational": 16607, + "Ġoperations": 7705, + "Ġoperator": 12973, + "Ġoperators": 19077, + "Ġopin": 3980, + "Ġopini": 46784, + "Ġopinion": 4800, + "Ġopinions": 11819, + "Ġopio": 24434, + "Ġopioid": 32837, + "Ġopioids": 47845, + "Ġopis": 45477, + "Ġoportun": 24237, + "Ġoportunidad": 42794, + "Ġopp": 1458, + "Ġoppon": 8292, + "Ġopponent": 10620, + "Ġopponents": 19001, + "Ġopportun": 2070, + "Ġopportunities": 4786, + "Ġopportunity": 2650, + "Ġoppos": 4665, + "Ġoppose": 28355, + "Ġopposed": 8851, + "Ġopposing": 27890, + "Ġopposite": 6182, + "Ġopposition": 13504, + "Ġoppress": 50240, + "Ġoppressed": 39640, + "Ġoppression": 27337, + "Ġops": 44663, + "Ġopt": 2427, + "Ġopted": 40768, + "Ġoptic": 48269, + "Ġoptical": 20674, + "Ġoptics": 42599, + "Ġoptim": 5028, + "Ġoptimal": 16252, + "Ġoptimism": 31074, + "Ġoptimistic": 19397, + "Ġoptimization": 19618, + "Ġoptimize": 19719, + "Ġoptimized": 26941, + "Ġoptimizing": 40425, + "Ġoptimum": 39326, + "Ġoption": 3614, + "Ġoptional": 17312, + "Ġoptions": 3956, + "Ġor": 420, + "Ġora": 33714, + "Ġorada": 33570, + "Ġoral": 19338, + "Ġorang": 17481, + "Ġorange": 7671, + "Ġoranges": 35474, + "Ġoraz": 28905, + "Ġorb": 14715, + "Ġorbit": 13991, + "Ġorbital": 27677, + "Ġorbitals": 50015, + "Ġorbiting": 48985, + "Ġorbits": 43522, + "Ġorch": 34850, + "Ġorchest": 14161, + "Ġorchestra": 25280, + "Ġorchestral": 36244, + "Ġord": 4792, + "Ġorden": 28615, + "Ġorder": 1668, + "Ġordered": 8866, + "Ġordering": 21739, + "Ġorders": 9470, + "Ġordin": 25376, + "Ġordinance": 40260, + "Ġordinary": 10547, + "Ġore": 20865, + "Ġorg": 14045, + "Ġorgan": 1798, + "Ġorganic": 10220, + "Ġorganis": 15223, + "Ġorganisation": 18641, + "Ġorganisations": 22270, + "Ġorganise": 50110, + "Ġorganised": 36866, + "Ġorganism": 24128, + "Ġorganisms": 22110, + "Ġorganiz": 4645, + "Ġorganization": 4475, + "Ġorganizational": 24730, + "Ġorganizations": 6150, + "Ġorganize": 13859, + "Ġorganized": 9983, + "Ġorganizer": 41363, + "Ġorganizers": 35071, + "Ġorganizing": 17608, + "Ġorgans": 20659, + "Ġorgas": 44834, + "Ġorient": 8579, + "Ġorientation": 14764, + "Ġoriented": 21841, + "Ġorig": 2349, + "Ġorigin": 4957, + "Ġoriginal": 3380, + "Ġoriginally": 7993, + "Ġoriginated": 31129, + "Ġorigins": 22721, + "Ġornament": 35689, + "Ġornaments": 47233, + "Ġoro": 45150, + "Ġorph": 23896, + "Ġorphan": 28711, + "Ġort": 23564, + "Ġorth": 19052, + "Ġorthog": 38130, + "Ġorthogonal": 41488, + "Ġos": 3003, + "Ġoscill": 18225, + "Ġoscillator": 43859, + "Ġoso": 19116, + "Ġosob": 41518, + "Ġosoby": 39737, + "Ġoss": 19508, + "Ġost": 32946, + "Ġostat": 32686, + "Ġoste": 42804, + "Ġostr": 44024, + "Ġosób": 32089, + "Ġot": 4337, + "Ġother": 661, + "Ġothers": 2357, + "Ġotherwise": 5911, + "Ġotra": 13623, + "Ġotras": 20244, + "Ġotro": 11921, + "Ġotros": 16422, + "Ġott": 42772, + "Ġotur": 41598, + "Ġou": 2820, + "Ġouais": 30570, + "Ġought": 13416, + "Ġoui": 14367, + "Ġounce": 29860, + "Ġounces": 27343, + "Ġour": 527, + "Ġours": 11896, + "Ġourselves": 4175, + "Ġout": 484, + "Ġoutbreak": 20963, + "Ġoutbreaks": 39097, + "Ġoutcome": 9700, + "Ġoutcomes": 10070, + "Ġoutdated": 36313, + "Ġoutdoor": 15942, + "Ġoutdoors": 20980, + "Ġouter": 10847, + "Ġoutfit": 11263, + "Ġoutfits": 22331, + "Ġoutgoing": 41565, + "Ġoutlet": 20656, + "Ġoutlets": 27416, + "Ġoutline": 16387, + "Ġoutlined": 27412, + "Ġoutlines": 40125, + "Ġoutlook": 26650, + "Ġoutput": 5598, + "Ġoutputs": 23930, + "Ġoutra": 12301, + "Ġoutrage": 25933, + "Ġoutrageous": 38685, + "Ġoutras": 22221, + "Ġoutreach": 19638, + "Ġoutright": 35189, + "Ġoutro": 13170, + "Ġoutros": 18282, + "Ġouts": 14758, + "Ġoutset": 44618, + "Ġoutside": 2380, + "Ġoutsider": 40484, + "Ġoutsiders": 49825, + "Ġoutstanding": 14485, + "Ġoutta": 21327, + "Ġoutward": 26914, + "Ġouv": 21157, + "Ġouvert": 47683, + "Ġov": 14187, + "Ġoval": 37175, + "Ġovat": 31802, + "Ġoven": 9090, + "Ġover": 670, + "Ġoverall": 4787, + "Ġoverarching": 45501, + "Ġoverboard": 49480, + "Ġoverc": 40027, + "Ġovercome": 10473, + "Ġovercoming": 38047, + "Ġoverd": 19853, + "Ġoverdose": 42206, + "Ġovere": 38657, + "Ġoverflow": 37772, + "Ġoverhe": 29807, + "Ġoverhead": 19922, + "Ġoverl": 15986, + "Ġoverlap": 19959, + "Ġoverlapping": 33535, + "Ġoverlay": 31741, + "Ġoverload": 28777, + "Ġoverlook": 37826, + "Ġoverlooked": 32269, + "Ġoverly": 24324, + "Ġovernight": 13935, + "Ġoverride": 42321, + "Ġovers": 15488, + "Ġoverse": 11916, + "Ġoverseas": 16274, + "Ġoversee": 46543, + "Ġoversight": 29146, + "Ġoversized": 49408, + "Ġoverst": 48834, + "Ġovert": 17038, + "Ġoverth": 30998, + "Ġoverthrow": 46924, + "Ġovertime": 29863, + "Ġoverturn": 42865, + "Ġoverview": 12492, + "Ġoverweight": 40523, + "Ġoverwhel": 9103, + "Ġoverwhelmed": 19042, + "Ġoverwhelming": 13373, + "Ġoverwhelmingly": 42926, + "Ġow": 11492, + "Ġowe": 16655, + "Ġowed": 41262, + "Ġowes": 50028, + "Ġowl": 34488, + "Ġown": 1065, + "Ġowned": 11684, + "Ġowner": 7289, + "Ġowners": 7710, + "Ġownership": 15279, + "Ġowning": 29820, + "Ġowns": 19143, + "Ġox": 5976, + "Ġoxid": 19924, + "Ġoxidation": 36767, + "Ġoxide": 28421, + "Ġoxygen": 9169, + "Ġoy": 15376, + "Ġoyn": 42753, + "Ġoyster": 32005, + "Ġoysters": 42296, + "Ġoyun": 41773, + "Ġozone": 46769, + "Ġoù": 9068, + "ĠoÄŁlum": 26984, + "Ġp": 280, + "ĠpH": 21677, + "Ġpa": 2502, + "Ġpaar": 16509, + "Ġpac": 15165, + "Ġpace": 11638, + "Ġpacing": 43285, + "Ġpack": 2844, + "Ġpackage": 7372, + "Ġpackaged": 38162, + "Ġpackages": 17401, + "Ġpackaging": 16836, + "Ġpacked": 13265, + "Ġpacket": 20300, + "Ġpackets": 30364, + "Ġpacking": 20815, + "Ġpacks": 19403, + "Ġpact": 38104, + "Ġpad": 6887, + "Ġpada": 26069, + "Ġpadding": 39562, + "Ġpaddle": 31834, + "Ġpadre": 34781, + "Ġpadres": 48295, + "Ġpads": 19179, + "Ġpag": 11812, + "Ġpagan": 38238, + "Ġpagar": 28024, + "Ġpage": 3028, + "Ġpages": 7183, + "Ġpai": 32227, + "Ġpaid": 4835, + "Ġpain": 1822, + "Ġpainful": 11697, + "Ġpains": 29774, + "Ġpaint": 4225, + "Ġpainted": 11797, + "Ġpainter": 26619, + "Ġpainters": 48643, + "Ġpainting": 5370, + "Ġpaintings": 14880, + "Ġpaints": 28076, + "Ġpair": 6119, + "Ġpaired": 25699, + "Ġpairing": 32735, + "Ġpairs": 15494, + "Ġpais": 34955, + "Ġpaj": 33819, + "Ġpajamas": 43625, + "Ġpak": 20843, + "Ġpakai": 49062, + "Ġpal": 3984, + "Ġpalab": 21119, + "Ġpalabra": 31702, + "Ġpalabras": 35240, + "Ġpalace": 15207, + "Ġpalate": 48247, + "Ġpalav": 27069, + "Ġpalavra": 40960, + "Ġpalavras": 46169, + "Ġpale": 19546, + "Ġpalette": 15851, + "Ġpaling": 49626, + "Ġpaljon": 34824, + "Ġpall": 24075, + "Ġpalm": 17018, + "Ġpalms": 30819, + "Ġpals": 43806, + "Ġpam": 30738, + "ĠpamiÄĻ": 31088, + "Ġpan": 2462, + "Ġpana": 47296, + "Ġpancake": 28916, + "Ġpancakes": 27859, + "Ġpand": 4565, + "Ġpanda": 46685, + "Ġpandemia": 33245, + "Ġpandemic": 5388, + "Ġpane": 32605, + "Ġpanel": 4831, + "Ġpanelists": 20162, + "Ġpanels": 13419, + "Ġpani": 43916, + "Ġpanic": 14783, + "Ġpans": 32905, + "Ġpant": 14869, + "Ġpantalla": 44449, + "Ġpantry": 40689, + "Ġpants": 10082, + "Ġpap": 5806, + "Ġpapa": 31015, + "Ġpapel": 24710, + "Ġpaper": 3035, + "Ġpapers": 10577, + "Ġpaperwork": 27953, + "Ġpapier": 37410, + "Ġpaprika": 46781, + "Ġpar": 971, + "Ġpara": 1690, + "Ġparab": 45729, + "Ġparach": 33927, + "Ġparachute": 44665, + "Ġparad": 13480, + "Ġparade": 26128, + "Ġparadigm": 24709, + "Ġparadise": 25919, + "Ġparadox": 26221, + "Ġparag": 17372, + "Ġparagraph": 18865, + "Ġparagraphs": 48910, + "Ġparal": 26009, + "Ġparall": 8069, + "Ġparallel": 8952, + "Ġparallels": 44223, + "Ġparaly": 32645, + "Ġparalysis": 49507, + "Ġparalyzed": 41919, + "Ġparam": 6220, + "Ġparameter": 13075, + "Ġparameters": 9834, + "Ġparan": 32369, + "Ġparano": 31416, + "Ġparanoid": 43948, + "Ġparanormal": 37125, + "Ġparap": 36992, + "Ġparar": 37193, + "Ġparas": 21012, + "Ġparasite": 49756, + "Ġparasites": 45289, + "Ġparc": 30511, + "Ġparce": 6992, + "Ġparcel": 34082, + "Ġparch": 35765, + "Ġparchment": 37208, + "Ġpardon": 22440, + "Ġpare": 7448, + "Ġparece": 14120, + "Ġparecer": 44885, + "Ġpareil": 46020, + "Ġparent": 2596, + "Ġparental": 41113, + "Ġparenth": 23350, + "Ġparentheses": 34153, + "Ġparenting": 30896, + "Ġparents": 3152, + "Ġparf": 19743, + "Ġparfait": 36102, + "Ġparfois": 30125, + "Ġparish": 45325, + "Ġparity": 44747, + "Ġpark": 3884, + "Ġparked": 28491, + "Ġparking": 9893, + "Ġparks": 16213, + "Ġparl": 13734, + "Ġparlament": 46024, + "Ġparlar": 45803, + "Ġparle": 18508, + "Ġparler": 16421, + "Ġparliament": 19520, + "Ġparliamentary": 43067, + "Ġparlé": 38570, + "Ġparody": 43386, + "Ġparole": 26783, + "Ġparrot": 42462, + "Ġpars": 21156, + "Ġparse": 48377, + "Ġparsley": 33632, + "Ġpart": 644, + "Ġpartager": 44006, + "Ġparte": 6975, + "Ġpartes": 31210, + "Ġparti": 24408, + "Ġpartial": 14641, + "Ġpartially": 18886, + "Ġpartic": 1276, + "Ġparticip": 3421, + "Ġparticipant": 24950, + "Ġparticipants": 10503, + "Ġparticipar": 48703, + "Ġparticipate": 8197, + "Ġparticipated": 17978, + "Ġparticipating": 13950, + "Ġparticipation": 13487, + "Ġparticle": 12359, + "Ġparticles": 10007, + "Ġparticul": 21861, + "Ġparticular": 1729, + "Ġparticularly": 4098, + "Ġparticulier": 40400, + "Ġpartido": 41310, + "Ġpartie": 17465, + "Ġparties": 8265, + "Ġparting": 46607, + "Ġpartir": 13906, + "Ġpartis": 44634, + "Ġpartisan": 37721, + "Ġpartition": 24808, + "Ġpartly": 17031, + "Ġpartner": 4975, + "Ġpartnered": 29865, + "Ġpartnering": 31290, + "Ġpartners": 4462, + "Ġpartnership": 9982, + "Ġpartnerships": 18245, + "Ġpartout": 32955, + "Ġparts": 3166, + "Ġparty": 3595, + "Ġpas": 1736, + "Ġpasa": 20260, + "Ġpasado": 24794, + "Ġpasando": 45412, + "Ġpasar": 25344, + "Ġpase": 47125, + "Ġpaso": 29212, + "Ġpass": 1320, + "Ġpassa": 23880, + "Ġpassado": 42490, + "Ġpassage": 11497, + "Ġpassages": 31589, + "Ġpassar": 20630, + "Ġpassat": 50050, + "Ġpasse": 14530, + "Ġpassed": 4678, + "Ġpassenger": 18707, + "Ġpassengers": 18436, + "Ġpasser": 18509, + "Ġpasses": 11335, + "Ġpassieren": 46223, + "Ġpassiert": 21671, + "Ġpassing": 8437, + "Ġpassion": 5418, + "Ġpassionate": 11410, + "Ġpassions": 30640, + "Ġpassive": 14975, + "Ġpasso": 38159, + "Ġpassou": 44740, + "Ġpassport": 24694, + "Ġpasst": 37154, + "Ġpassword": 11524, + "Ġpasswords": 33149, + "Ġpassé": 24093, + "Ġpast": 1791, + "Ġpasta": 13296, + "Ġpaste": 9163, + "Ġpastel": 38100, + "Ġpasti": 48145, + "Ġpastor": 21193, + "Ġpastors": 42452, + "Ġpastry": 29198, + "Ġpasture": 48423, + "Ġpasó": 41382, + "Ġpat": 1947, + "Ġpatch": 9972, + "Ġpatches": 26531, + "Ġpatent": 20495, + "Ġpatents": 38142, + "Ġpater": 42302, + "Ġpath": 3100, + "Ġpathetic": 35506, + "Ġpathogens": 44760, + "Ġpaths": 14518, + "Ġpathway": 18590, + "Ġpathways": 22988, + "Ġpatience": 14826, + "Ġpatient": 4537, + "Ġpatiently": 49001, + "Ġpatients": 4209, + "Ġpatio": 42924, + "Ġpatreon": 33161, + "Ġpatri": 18311, + "Ġpatriarch": 46012, + "Ġpatrim": 48369, + "Ġpatriot": 44210, + "Ġpatrol": 26305, + "Ġpatron": 21843, + "Ġpatrons": 27559, + "Ġpatt": 49916, + "Ġpatter": 3829, + "Ġpattern": 5102, + "Ġpatterns": 8294, + "Ġpau": 34221, + "Ġpause": 10465, + "Ġpaused": 46860, + "Ġpave": 28870, + "Ġpaved": 42989, + "Ġpavement": 38305, + "Ġpaw": 38959, + "Ġpawn": 30905, + "Ġpaws": 46768, + "Ġpay": 1689, + "Ġpaycheck": 35639, + "Ġpayer": 38230, + "Ġpaying": 6229, + "Ġpayload": 30918, + "Ġpayment": 10224, + "Ġpayments": 14348, + "Ġpayoff": 46547, + "Ġpayroll": 36873, + "Ġpays": 10604, + "Ġpaz": 30032, + "ĠpaÃŃs": 10572, + "ĠpaÃŃses": 23070, + "ĠpaÅĦst": 21868, + "ĠpaÅĦstwa": 43289, + "ĠpaÅĦstwo": 42233, + "Ġpc": 43451, + "Ġpe": 520, + "Ġpea": 49178, + "Ġpeac": 43370, + "Ġpeace": 4336, + "Ġpeaceful": 13962, + "Ġpeacefully": 36485, + "Ġpeach": 25917, + "Ġpeak": 10651, + "Ġpeaks": 26897, + "Ġpean": 14882, + "Ġpeanut": 19209, + "Ġpeanuts": 32895, + "Ġpear": 37320, + "Ġpearl": 20287, + "Ġpearls": 35111, + "Ġpeas": 24494, + "Ġpec": 42451, + "Ġpeculiar": 27149, + "Ġped": 5670, + "Ġpedal": 19122, + "Ġpedals": 35217, + "Ġpedest": 20497, + "Ġpedestrian": 33947, + "Ġpedestrians": 48339, + "Ġpediatric": 27477, + "Ġpedir": 33533, + "Ġpee": 21343, + "Ġpeek": 19604, + "Ġpeel": 13889, + "Ġpeeled": 39033, + "Ġpeeling": 39926, + "Ġpeer": 15108, + "Ġpeers": 16739, + "Ġpeg": 17199, + "Ġpega": 43005, + "Ġpegar": 22418, + "Ġpeine": 46655, + "Ġpel": 6178, + "Ġpela": 14820, + "Ġpele": 41615, + "Ġpelig": 43839, + "Ġpell": 33836, + "Ġpelo": 12167, + "Ġpelos": 38304, + "Ġpelvic": 40959, + "Ġpelvis": 34617, + "ĠpelÃŃcul": 31810, + "ĠpelÃŃcula": 40154, + "Ġpem": 47690, + "Ġpen": 3435, + "Ġpena": 29222, + "Ġpenal": 13661, + "Ġpenalties": 35389, + "Ġpenalty": 16263, + "Ġpencil": 10985, + "Ġpencils": 30857, + "Ġpend": 12179, + "Ġpendant": 17338, + "Ġpending": 32110, + "Ġpendulum": 44103, + "Ġpenet": 16183, + "Ġpenetrate": 36307, + "Ġpenetration": 35187, + "Ġpeng": 17289, + "Ġpenguin": 45752, + "Ġpeninsula": 45065, + "Ġpenis": 28282, + "Ġpenn": 34911, + "Ġpenny": 24178, + "Ġpens": 6099, + "Ġpensa": 46909, + "Ġpensando": 34525, + "Ġpensar": 18321, + "Ġpense": 11209, + "Ġpenser": 38940, + "Ġpension": 21927, + "Ġpenso": 48005, + "Ġpent": 16834, + "Ġpentru": 31718, + "Ġpeople": 561, + "Ġpeoples": 16915, + "Ġpepp": 39759, + "Ġpepper": 8532, + "Ġpeppers": 21345, + "Ġpept": 41781, + "Ġpequ": 26758, + "Ġpeque": 19132, + "Ġpequeña": 47177, + "Ġpequeño": 38181, + "Ġper": 680, + "Ġperce": 9016, + "Ġperceber": 49376, + "Ġperceive": 20281, + "Ġperceived": 19049, + "Ġpercent": 3043, + "Ġpercentage": 9668, + "Ġpercentages": 42270, + "Ġpercept": 43276, + "Ġperception": 12860, + "Ġperceptions": 35258, + "Ġperch": 29240, + "Ġperché": 14303, + "Ġpercussion": 44430, + "Ġperd": 12611, + "Ġperde": 44182, + "Ġperder": 26971, + "Ġperdre": 46254, + "Ġperdu": 44759, + "Ġperf": 13826, + "Ġperfect": 2176, + "Ġperfection": 19708, + "Ġperfectly": 6239, + "Ġperfekt": 49134, + "Ġperform": 2042, + "Ġperformance": 3389, + "Ġperformances": 16087, + "Ġperformed": 10332, + "Ġperformer": 30248, + "Ġperformers": 30768, + "Ġperforming": 10205, + "Ġperforms": 26213, + "Ġperfume": 28464, + "Ġpergi": 46857, + "Ġpergunt": 31060, + "Ġpergunta": 34908, + "Ġperhaps": 4317, + "Ġperil": 46118, + "Ġperimeter": 32404, + "Ġperiod": 2896, + "Ġperiodic": 27790, + "Ġperiodically": 38916, + "Ġperiods": 13804, + "Ġperipher": 26807, + "Ġperipheral": 40235, + "Ġperish": 41586, + "Ġperk": 38839, + "Ġperks": 36991, + "Ġperlu": 39779, + "Ġperm": 4784, + "Ġperman": 8105, + "Ġpermanent": 10996, + "Ġpermanently": 24042, + "Ġperme": 30287, + "Ġpermet": 20696, + "Ġpermett": 21540, + "Ġpermettre": 37350, + "Ġpermis": 44744, + "Ġpermission": 11226, + "Ġpermissions": 32723, + "Ġpermit": 13423, + "Ġpermite": 31105, + "Ġpermitir": 46865, + "Ġpermits": 30990, + "Ġpermitted": 28658, + "Ġpernah": 41136, + "Ġpero": 4768, + "Ġperpend": 26095, + "Ġperpendicular": 26734, + "Ġperpet": 16211, + "Ġperpetual": 48216, + "Ġperquè": 16839, + "Ġpers": 868, + "Ġperse": 20607, + "Ġpersec": 23783, + "Ġpersecuted": 49903, + "Ġpersecution": 36878, + "Ġpersever": 29917, + "Ġperseverance": 39674, + "Ġpersist": 13233, + "Ġpersistence": 37617, + "Ġpersistent": 24315, + "Ġperson": 954, + "Ġpersona": 12184, + "Ġpersonagem": 49502, + "Ġpersonaje": 41746, + "Ġpersonajes": 43960, + "Ġpersonal": 2973, + "Ġpersonalities": 25308, + "Ġpersonality": 9033, + "Ġpersonalized": 28415, + "Ġpersonally": 5665, + "Ġpersonas": 12019, + "Ġpersone": 29944, + "Ġpersones": 46232, + "Ġpersonn": 30194, + "Ġpersonnage": 43952, + "Ġpersonne": 17219, + "Ġpersonnel": 14988, + "Ġpersonnes": 16246, + "Ġpersons": 14453, + "Ġperspect": 4096, + "Ġperspective": 4585, + "Ġperspectives": 16766, + "Ġpersu": 16336, + "Ġpersuade": 31781, + "Ġpersuaded": 47693, + "Ġpersön": 31228, + "Ġpersönlich": 42699, + "Ġpert": 13269, + "Ġpertaining": 49582, + "Ġpertama": 49109, + "Ġperto": 42855, + "Ġperturb": 40468, + "Ġperò": 12673, + "ĠperÃŃ": 38933, + "ĠperÃŃodo": 44699, + "Ġpes": 9262, + "Ġpesar": 41951, + "Ġpeso": 28149, + "Ġpesos": 33204, + "Ġpess": 35895, + "Ġpessim": 37399, + "Ġpesso": 6818, + "Ġpessoa": 16366, + "Ġpessoal": 24811, + "Ġpessoas": 10021, + "Ġpest": 31068, + "Ġpestic": 28904, + "Ġpesticides": 39015, + "Ġpests": 47645, + "Ġpet": 3817, + "Ġpetals": 31530, + "Ġpetit": 9686, + "Ġpetite": 18319, + "Ġpetites": 34063, + "Ġpetition": 22661, + "Ġpetits": 26487, + "Ġpetrol": 32377, + "Ġpetroleum": 47641, + "Ġpets": 19897, + "Ġpetty": 39334, + "Ġpeu": 5604, + "Ġpeuple": 49186, + "Ġpeur": 30071, + "Ġpeut": 5977, + "Ġpeuvent": 24335, + "Ġpeux": 14844, + "Ġpew": 25889, + "Ġpewn": 47160, + "Ġpewno": 33002, + "ĠpeÅĤ": 43205, + "Ġph": 903, + "Ġpharm": 13105, + "Ġpharmac": 31818, + "Ġpharmaceutical": 27130, + "Ġpharmacy": 30639, + "Ġphase": 5574, + "Ġphases": 18764, + "Ġphen": 7279, + "Ġphenomen": 9388, + "Ġphenomena": 22004, + "Ġphenomenal": 17778, + "Ġphenomenon": 14029, + "Ġphi": 13107, + "Ġphilan": 28797, + "Ġphilanthrop": 28941, + "Ġphilanthropy": 47180, + "Ġphilos": 7012, + "Ġphilosop": 9237, + "Ġphilosoph": 14529, + "Ġphilosopher": 29805, + "Ġphilosophers": 36839, + "Ġphilosophical": 25066, + "Ġphilosophy": 10675, + "Ġphon": 30754, + "Ġphone": 2593, + "Ġphones": 10216, + "Ġphosph": 19775, + "Ġphosphate": 46542, + "Ġphosphorus": 46741, + "Ġphot": 2409, + "Ġphoto": 5052, + "Ġphotograph": 8348, + "Ġphotographed": 45067, + "Ġphotographer": 19494, + "Ġphotographers": 33835, + "Ġphotographs": 17649, + "Ġphotography": 13865, + "Ġphoton": 37443, + "Ġphotons": 40209, + "Ġphotos": 5787, + "Ġphr": 7636, + "Ġphrase": 9535, + "Ġphrases": 20312, + "Ġphys": 2529, + "Ġphysi": 21265, + "Ġphysic": 27903, + "Ġphysical": 4001, + "Ġphysically": 9762, + "Ġphysician": 16456, + "Ġphysicians": 21966, + "Ġphysicist": 42466, + "Ġphysicists": 48716, + "Ġphysics": 10649, + "Ġphysiological": 41234, + "Ġphysiology": 43585, + "Ġphysique": 37058, + "Ġphải": 23394, + "Ġpi": 3895, + "Ġpiace": 50062, + "Ġpian": 32198, + "Ġpiano": 9211, + "Ġpic": 13363, + "Ġpick": 1888, + "Ġpicked": 6183, + "Ġpicking": 8867, + "Ġpickle": 31433, + "Ġpickled": 38076, + "Ġpickles": 38910, + "Ġpicks": 16137, + "Ġpickup": 25328, + "Ġpicky": 41099, + "Ġpicnic": 32137, + "Ġpics": 46690, + "Ġpict": 2317, + "Ġpicture": 3036, + "Ġpictured": 49896, + "Ġpictures": 5242, + "Ġpid": 44540, + "Ġpie": 1730, + "Ġpiece": 2522, + "Ġpieces": 3755, + "Ġpied": 24186, + "Ġpiel": 46065, + "Ġpien": 26274, + "Ġpier": 9766, + "Ġpiercing": 42972, + "Ġpierws": 27623, + "Ġpierwsze": 45994, + "Ġpierwszy": 34016, + "Ġpies": 29640, + "Ġpig": 8120, + "Ġpige": 26704, + "Ġpigeon": 37886, + "Ġpigeons": 48297, + "Ġpiggy": 39349, + "Ġpigment": 31325, + "Ġpigs": 24380, + "Ġpik": 49928, + "Ġpike": 36242, + "Ġpil": 6429, + "Ġpile": 14375, + "Ġpiles": 34861, + "Ġpilgr": 30760, + "Ġpilgrimage": 49954, + "Ġpill": 8100, + "Ġpillar": 27592, + "Ġpillars": 26729, + "Ġpillow": 18581, + "Ġpillows": 38630, + "Ġpills": 23871, + "Ġpilot": 9691, + "Ġpilots": 21506, + "Ġpim": 33917, + "Ġpin": 5447, + "Ġpinch": 14614, + "Ġpine": 15113, + "Ġpineapple": 25740, + "Ġping": 26151, + "Ġpink": 7022, + "Ġpinky": 42616, + "Ġpinned": 33802, + "Ġpinpoint": 40837, + "Ġpins": 16392, + "Ġpint": 23924, + "Ġpione": 19761, + "Ġpioneer": 37668, + "Ġpioneers": 47381, + "Ġpior": 45974, + "Ġpip": 8489, + "Ġpipe": 11240, + "Ġpipeline": 15517, + "Ġpipelines": 40168, + "Ġpipes": 21882, + "Ġpiping": 35204, + "Ġpir": 13528, + "Ġpirate": 27424, + "Ġpirates": 33859, + "Ġpis": 26584, + "Ġpiss": 15171, + "Ġpissed": 23795, + "Ġpist": 12273, + "Ġpista": 49516, + "Ġpistol": 25385, + "Ġpiston": 30002, + "Ġpit": 10147, + "Ġpitch": 7293, + "Ġpitched": 32994, + "Ġpitcher": 42147, + "Ġpitches": 43110, + "Ġpitching": 37499, + "Ġpits": 40312, + "Ġpity": 21103, + "Ġpivot": 14538, + "Ġpivotal": 39078, + "Ġpix": 11273, + "Ġpixel": 19261, + "Ġpixels": 18668, + "Ġpizz": 36075, + "Ġpizza": 8298, + "Ġpizzas": 44037, + "Ġpiù": 10589, + "ĠpiÄĻ": 32677, + "ĠpiÄĻk": 48085, + "ĠpiÅŁ": 47461, + "Ġpl": 499, + "Ġpla": 15256, + "Ġplac": 20831, + "Ġplace": 1081, + "Ġplacebo": 42779, + "Ġplaced": 7074, + "Ġplacement": 17257, + "Ġplaces": 3190, + "Ġplacing": 17221, + "Ġplag": 33756, + "Ġplague": 28185, + "Ġplain": 11121, + "Ġplains": 47362, + "Ġplaint": 39112, + "Ġplais": 29286, + "Ġplaisir": 32756, + "Ġplan": 1393, + "Ġplane": 5720, + "Ġplanes": 14952, + "Ġplanet": 5054, + "Ġplaneta": 34186, + "Ġplanetary": 35788, + "Ġplanets": 15126, + "Ġplank": 27861, + "Ġplanned": 8589, + "Ġplanner": 31268, + "Ġplanners": 49674, + "Ġplanning": 5038, + "Ġplano": 40259, + "Ġplans": 5482, + "Ġplant": 3709, + "Ġplantation": 45328, + "Ġplante": 36829, + "Ġplanted": 17395, + "Ġplanting": 20585, + "Ġplants": 5972, + "Ġplaque": 36542, + "Ġplasma": 22564, + "Ġplast": 35636, + "Ġplaster": 34467, + "Ġplastic": 5900, + "Ġplastics": 34356, + "Ġplat": 3403, + "Ġplata": 30780, + "Ġplataform": 36448, + "Ġplataforma": 46243, + "Ġplate": 5924, + "Ġplateau": 39885, + "Ġplates": 14231, + "Ġplatform": 3663, + "Ġplatforms": 9473, + "Ġplatinum": 37475, + "Ġplats": 48328, + "Ġplaus": 34946, + "Ġplausible": 39925, + "Ġplay": 862, + "Ġplayable": 37146, + "Ġplayback": 37223, + "Ġplayed": 3737, + "Ġplayer": 4256, + "Ġplayers": 4150, + "Ġplayful": 30730, + "Ġplayground": 24646, + "Ġplaying": 2433, + "Ġplaylist": 16788, + "Ġplayoffs": 41142, + "Ġplays": 5749, + "Ġplaythrough": 48752, + "Ġple": 3362, + "Ġplea": 42152, + "Ġplead": 48642, + "Ġpleas": 35122, + "Ġpleasant": 16232, + "Ġplease": 1767, + "Ġpleased": 10587, + "Ġpleasing": 32798, + "Ġpleasure": 6834, + "Ġpleasures": 48627, + "Ġpled": 34263, + "Ġpledge": 26819, + "Ġplein": 21088, + "Ġplenty": 7140, + "Ġpliers": 33982, + "Ġplot": 7542, + "Ġplots": 28609, + "Ġplotted": 43288, + "Ġplotting": 41178, + "Ġplu": 44373, + "Ġpluck": 41514, + "Ġplug": 5452, + "Ġplugged": 25679, + "Ġplugging": 42975, + "Ġplugin": 23407, + "Ġplugins": 33759, + "Ġplugs": 33899, + "Ġplum": 25854, + "Ġplumbing": 39993, + "Ġplung": 37663, + "Ġplup": 45312, + "Ġplupart": 45403, + "Ġplural": 25377, + "Ġplus": 1804, + "Ġplusieurs": 20208, + "Ġplut": 18419, + "Ġplutôt": 20856, + "Ġply": 35318, + "Ġplywood": 43633, + "Ġplötzlich": 49033, + "Ġpm": 23023, + "Ġpne": 26710, + "Ġpneum": 30039, + "Ġpneumonia": 43097, + "Ġpo": 714, + "Ġpobl": 30548, + "Ġpoblación": 42769, + "Ġpobre": 40819, + "Ġpocket": 8963, + "Ġpockets": 16491, + "Ġpoco": 10639, + "Ġpocz": 26423, + "ĠpoczÄħt": 34397, + "ĠpoczÄħtku": 43959, + "Ġpod": 2497, + "Ġpodcast": 7367, + "Ġpodcasts": 24045, + "Ġpode": 7468, + "Ġpodem": 20934, + "Ġpodemos": 12234, + "Ġpoder": 8152, + "Ġpoderia": 33674, + "Ġpodia": 46689, + "Ġpodium": 26827, + "Ġpodob": 43024, + "Ġpodr": 15305, + "ĠpodrÃŃa": 27246, + "Ġpods": 31925, + "Ġpodstaw": 43443, + "Ġpodéis": 45728, + "ĠpodÃŃa": 45588, + "Ġpoem": 13065, + "Ġpoems": 24014, + "Ġpoet": 20874, + "Ġpoetic": 41080, + "Ġpoetry": 15155, + "Ġpoets": 38364, + "Ġpog": 32037, + "Ġpoi": 19260, + "Ġpoint": 935, + "Ġpointed": 10932, + "Ġpointer": 23918, + "Ġpointers": 44548, + "Ġpointing": 12166, + "Ġpointless": 32824, + "Ġpoints": 2793, + "Ġpois": 31014, + "Ġpoison": 10836, + "Ġpoisoned": 36677, + "Ġpoisoning": 36778, + "Ġpoisonous": 37376, + "Ġpojaw": 30655, + "Ġpok": 13010, + "Ġpoke": 19712, + "Ġpokemon": 41161, + "Ġpoker": 36863, + "Ġpoking": 42684, + "Ġpol": 1180, + "Ġpolar": 12367, + "Ġpolarization": 37736, + "Ġpolarized": 48623, + "Ġpole": 13208, + "Ġpoles": 24760, + "Ġpolic": 6285, + "Ġpolice": 3804, + "Ġpoliceman": 42658, + "Ġpolicies": 7657, + "Ġpolicing": 28799, + "Ġpolicy": 3897, + "Ġpolicymakers": 47325, + "Ġpolish": 20452, + "Ġpolished": 29079, + "Ġpolishing": 47258, + "Ġpolit": 2453, + "Ġpolite": 25171, + "Ġpolitic": 48044, + "Ġpolitical": 3905, + "Ġpolitically": 21154, + "Ġpolitician": 26453, + "Ġpoliticians": 14756, + "Ġpolitics": 7341, + "Ġpolitique": 26115, + "Ġpolitiques": 46267, + "Ġpolity": 36066, + "Ġpoll": 6418, + "Ġpollen": 42482, + "Ġpolling": 29518, + "Ġpolls": 24264, + "Ġpollut": 43415, + "Ġpollution": 16727, + "Ġpolsk": 28757, + "Ġpoly": 6754, + "Ġpolygon": 48242, + "Ġpolymer": 20073, + "Ġpolynom": 22560, + "Ġpolynomial": 26110, + "ĠpolÃŃt": 14482, + "ĠpolÃŃtica": 25029, + "ĠpolÃŃticas": 45931, + "ĠpolÃŃtico": 48641, + "Ġpom": 12991, + "Ġpomoc": 48962, + "Ġpomp": 44275, + "Ġpon": 9224, + "Ġpond": 17384, + "Ġpone": 40192, + "Ġponer": 19149, + "Ġpong": 36164, + "Ġponieważ": 32426, + "Ġpont": 18770, + "Ġponto": 17936, + "Ġpontos": 30676, + "Ġpony": 27342, + "Ġponytail": 49138, + "Ġpoo": 36743, + "Ġpool": 7005, + "Ġpools": 28688, + "Ġpoop": 17153, + "Ġpoor": 4716, + "Ġpoorer": 49740, + "Ġpoorest": 44925, + "Ġpoorly": 22271, + "Ġpop": 1665, + "Ġpopcorn": 25334, + "Ġpope": 42248, + "Ġpopped": 21545, + "Ġpopping": 18374, + "Ġpops": 16795, + "Ġpopul": 24017, + "Ġpopula": 32166, + "Ġpopular": 3743, + "Ġpopularity": 19301, + "Ġpopulated": 32998, + "Ġpopulation": 4415, + "Ġpopulations": 12822, + "Ġpoquito": 28229, + "Ġpor": 1515, + "Ġporch": 35513, + "Ġpore": 41459, + "Ġpores": 30082, + "Ġpork": 10208, + "Ġporn": 19444, + "Ġpornography": 49936, + "Ġporque": 4021, + "Ġporridge": 38872, + "Ġport": 2436, + "Ġporta": 28598, + "Ġportable": 21800, + "Ġportal": 14982, + "Ġporte": 26658, + "Ġporter": 41628, + "Ġportfol": 11688, + "Ġportfolio": 12583, + "Ġportion": 8044, + "Ġportions": 25070, + "Ġportrait": 17126, + "Ġportraits": 31880, + "Ġportray": 15676, + "Ġportrayed": 29845, + "Ġports": 18160, + "Ġpos": 1366, + "Ġpose": 10774, + "Ġposed": 31399, + "Ġposer": 39355, + "Ġposes": 26059, + "Ġposible": 26644, + "Ġposición": 46595, + "Ġposing": 40378, + "Ġposit": 11218, + "Ġposition": 2535, + "Ġpositioned": 24889, + "Ġpositioning": 26381, + "Ġpositions": 8432, + "Ġpositiv": 40806, + "Ġpositive": 3353, + "Ġpositively": 25795, + "Ġpositives": 35127, + "Ġpositivity": 35198, + "Ġpositivo": 44710, + "Ġposição": 49842, + "Ġposs": 1402, + "Ġpossa": 41564, + "Ġpossess": 17490, + "Ġpossessed": 29608, + "Ġpossession": 20935, + "Ġpossessions": 40623, + "Ġpossiamo": 44758, + "Ġpossibil": 24145, + "Ġpossibile": 50184, + "Ġpossibilities": 12178, + "Ġpossibility": 7959, + "Ġpossible": 1944, + "Ġpossibly": 6264, + "Ġposso": 22501, + "Ġpossono": 43857, + "ĠpossÃŃvel": 29322, + "Ġpost": 2183, + "Ġpostal": 49645, + "Ġposted": 9437, + "Ġposter": 17171, + "Ġposterior": 33529, + "Ġposters": 28172, + "Ġposting": 15978, + "Ġpostp": 28973, + "Ġpostponed": 49023, + "Ġposts": 12300, + "Ġposture": 18502, + "Ġpot": 1847, + "Ġpotassium": 29547, + "Ġpotato": 7445, + "Ġpotatoes": 11811, + "Ġpotem": 36513, + "Ġpotencial": 48265, + "Ġpotent": 27073, + "Ġpotential": 3995, + "Ġpotentially": 7263, + "Ġpotion": 39113, + "Ġpotrze": 28577, + "Ġpotrzeb": 37595, + "Ġpots": 22022, + "Ġpottery": 45272, + "Ġpou": 5043, + "Ġpouch": 27781, + "Ġpouco": 13920, + "Ġpound": 12013, + "Ġpounding": 40034, + "Ġpounds": 8319, + "Ġpouquinho": 31114, + "Ġpour": 2016, + "Ġpoured": 23270, + "Ġpouring": 20450, + "Ġpourquoi": 19934, + "Ġpourra": 37753, + "Ġpourrait": 25590, + "Ġpourtant": 47856, + "Ġpous": 39140, + "Ġpouv": 29663, + "Ġpouvait": 45913, + "Ġpouvez": 18248, + "Ġpouvoir": 14874, + "Ġpoverty": 10958, + "Ġpovo": 46388, + "Ġpow": 3388, + "Ġpowder": 6341, + "Ġpowdered": 35615, + "Ġpower": 1347, + "Ġpowered": 17786, + "Ġpowerful": 4005, + "Ġpowerless": 47926, + "Ġpowers": 8674, + "Ġpowiedz": 27617, + "ĠpowiedziaÅĤ": 48539, + "ĠpowiedzieÄĩ": 27886, + "Ġpowin": 27310, + "Ġpoz": 21281, + "Ġpozi": 38503, + "Ġpozw": 40557, + "Ġpozy": 49358, + "Ġpr": 582, + "Ġpra": 3206, + "Ġprac": 22404, + "Ġpract": 1927, + "Ġpractical": 8496, + "Ġpractically": 15667, + "Ġpractice": 3124, + "Ġpracticed": 19268, + "Ġpractices": 7525, + "Ġpracticing": 11350, + "Ġpractise": 38208, + "Ġpractition": 18064, + "Ġpractitioner": 32125, + "Ġpractitioners": 25742, + "Ġpracy": 35591, + "Ġprag": 33394, + "Ġpragmatic": 46904, + "Ġpraise": 13286, + "Ġpraised": 31003, + "Ġpraising": 42941, + "Ġprakt": 33721, + "Ġprank": 19794, + "Ġprat": 28844, + "Ġprata": 45895, + "Ġpratic": 33852, + "Ġpraticamente": 45734, + "Ġpratique": 43740, + "Ġpraw": 22508, + "Ġprawd": 41175, + "Ġprawda": 43607, + "Ġprawn": 37047, + "Ġpray": 3690, + "Ġprayed": 22532, + "Ġprayer": 8767, + "Ġprayers": 16860, + "Ġpraying": 15611, + "Ġpre": 659, + "Ġpreach": 21552, + "Ġpreached": 40001, + "Ġpreacher": 42078, + "Ġpreaching": 25381, + "Ġprec": 4346, + "Ġpreca": 25651, + "Ġprecautions": 34684, + "Ġpreced": 16969, + "Ġprecedent": 37388, + "Ġprecio": 46916, + "Ġprecious": 12406, + "Ġprecip": 23354, + "Ġprecipitation": 37662, + "Ġprecis": 7974, + "Ġprecisa": 18861, + "Ġprecisamente": 44901, + "Ġprecise": 13600, + "Ġprecisely": 13402, + "Ġprecision": 18356, + "Ġpreciso": 30109, + "Ġprecon": 47473, + "Ġprecurs": 41736, + "Ġpred": 3852, + "Ġpredator": 35377, + "Ġpredators": 29194, + "Ġprede": 24874, + "Ġpredecessor": 34991, + "Ġpredic": 47336, + "Ġpredict": 6069, + "Ġpredictable": 27737, + "Ġpredicted": 19147, + "Ġpredicting": 32884, + "Ġprediction": 17630, + "Ġpredictions": 21264, + "Ġpredictive": 35521, + "Ġpredomin": 21456, + "Ġpredominantly": 29893, + "Ġpref": 18417, + "Ġprefer": 4382, + "Ġpreferably": 45916, + "Ġpreference": 17502, + "Ġpreferences": 21910, + "Ġpreferred": 16494, + "Ġprefers": 44334, + "Ġprefix": 46969, + "Ġpregn": 7681, + "Ġpregnancy": 16120, + "Ġpregnant": 10435, + "Ġpregunt": 19860, + "Ġpregunta": 24252, + "Ġpreguntas": 39722, + "Ġprehe": 35528, + "Ġprejud": 23121, + "Ġprejudice": 34260, + "Ġprelim": 26414, + "Ġpreliminary": 28817, + "Ġprem": 5624, + "Ġpremature": 34877, + "Ġpremi": 11222, + "Ġpremier": 12689, + "Ġpremiere": 28372, + "Ġpremiers": 45166, + "Ġpremise": 22045, + "Ġpremises": 34266, + "Ġpremium": 12049, + "Ġpremière": 17872, + "Ġpren": 43149, + "Ġprend": 9866, + "Ġprendre": 16566, + "Ġprends": 46750, + "Ġpreoc": 18250, + "Ġpreoccup": 44388, + "Ġpreocup": 23080, + "Ġprep": 2666, + "Ġprepar": 8231, + "Ġpreparation": 13081, + "Ġpreparations": 34122, + "Ġprepare": 5940, + "Ġprepared": 4927, + "Ġpreparedness": 48445, + "Ġprepares": 39418, + "Ġpreparing": 10075, + "Ġprere": 38333, + "Ġpres": 1183, + "Ġpreschool": 39809, + "Ġprescribe": 49292, + "Ġprescribed": 29099, + "Ġprescription": 22456, + "Ġpresence": 6814, + "Ġpresent": 1974, + "Ġpresentation": 5860, + "Ġpresentations": 18964, + "Ġpresente": 28709, + "Ġpresented": 8212, + "Ġpresenter": 35594, + "Ġpresenters": 36987, + "Ġpresenting": 15578, + "Ġpresents": 13533, + "Ġpreserv": 45905, + "Ġpreservation": 27257, + "Ġpreserve": 15665, + "Ġpreserved": 22242, + "Ġpreserving": 33173, + "Ġpreset": 32081, + "Ġpresets": 41865, + "Ġpresidency": 26702, + "Ġpresident": 3868, + "Ġpresidente": 23852, + "Ġpresidential": 16902, + "Ġpresidents": 27611, + "Ġpresque": 37843, + "Ġpress": 1886, + "Ġpressed": 17355, + "Ġpresses": 40892, + "Ġpressing": 12417, + "Ġpressure": 3321, + "Ġpressured": 45306, + "Ġpressures": 23573, + "Ġprest": 16305, + "Ġprestige": 42531, + "Ġprestigious": 33510, + "Ġpresum": 18028, + "Ġpresumably": 26742, + "Ġpresume": 43283, + "Ġpresup": 47640, + "Ġpret": 1162, + "Ġpretend": 11865, + "Ġpretended": 45056, + "Ġpretending": 22106, + "Ġprett": 45421, + "Ġprettier": 36825, + "Ġpretty": 1238, + "Ġprev": 12642, + "Ġprevail": 46059, + "Ġpreval": 22239, + "Ġprevalence": 42583, + "Ġprevalent": 30652, + "Ġprevent": 4871, + "Ġprevented": 27314, + "Ġpreventing": 19965, + "Ġprevention": 14630, + "Ġprevents": 22367, + "Ġpreview": 14281, + "Ġprevious": 3894, + "Ġpreviously": 8046, + "Ġprey": 21107, + "Ġpreço": 42295, + "Ġpri": 1790, + "Ġprice": 3218, + "Ġpriced": 30349, + "Ġprices": 7901, + "Ġpricing": 17621, + "Ġprick": 43986, + "Ġpride": 10936, + "Ġpriest": 15703, + "Ġpriests": 27192, + "Ġprim": 2886, + "Ġprima": 19507, + "Ġprimarily": 10029, + "Ġprimary": 6194, + "Ġprime": 5835, + "Ġprimeira": 21158, + "Ġprimeiro": 18314, + "Ġprimer": 12595, + "Ġprimera": 17382, + "Ġprimero": 21289, + "Ġprimitive": 28540, + "Ġprimo": 38671, + "Ġprin": 3024, + "Ġprince": 16467, + "Ġprinces": 41536, + "Ġprincess": 14742, + "Ġprinci": 3681, + "Ġprincip": 6959, + "Ġprincipal": 9716, + "Ġprincipalmente": 32258, + "Ġprincipals": 45333, + "Ġprincipe": 47656, + "Ġprincipio": 34308, + "Ġprinciple": 8665, + "Ġprinciples": 9156, + "Ġprint": 4482, + "Ġprinted": 13567, + "Ġprinter": 16671, + "Ġprinters": 40007, + "Ġprinting": 14699, + "Ġprints": 22305, + "Ġprior": 4059, + "Ġpriorit": 14846, + "Ġpriorities": 15503, + "Ġprioritize": 25164, + "Ġpriority": 9365, + "Ġpris": 16163, + "Ġprise": 49468, + "Ġprison": 6168, + "Ġprisoner": 28114, + "Ġprisoners": 20417, + "Ġprisons": 31396, + "Ġpriv": 2915, + "Ġprivacy": 11427, + "Ġprivat": 31856, + "Ġprivate": 4551, + "Ġprivately": 31919, + "Ġprivile": 8670, + "Ġprivilege": 12122, + "Ġprivileged": 25293, + "Ġprivileges": 32588, + "Ġprix": 31061, + "Ġprize": 12818, + "Ġprizes": 27350, + "Ġpro": 447, + "Ġproactive": 28028, + "Ġprob": 1239, + "Ġprobabil": 31959, + "Ġprobabilities": 33783, + "Ġprobability": 8482, + "Ġprobable": 21759, + "Ġprobably": 1391, + "Ġprobation": 41821, + "Ġprobe": 22715, + "Ġprobiot": 45710, + "Ġprobl": 15201, + "Ġproblem": 1154, + "Ġproblema": 12395, + "Ġproblemas": 20720, + "Ġproblematic": 19011, + "Ġproblems": 2740, + "Ġproblème": 21111, + "Ġproblèmes": 37317, + "Ġproc": 9510, + "Ġproced": 6682, + "Ġprocedural": 43951, + "Ġprocedure": 10747, + "Ġprocedures": 13846, + "Ġproceed": 8991, + "Ġproceeded": 39053, + "Ġproceeding": 41163, + "Ġproceedings": 37254, + "Ġproceeds": 32280, + "Ġprocent": 38826, + "Ġproces": 17565, + "Ġproceso": 29314, + "Ġprocess": 1399, + "Ġprocessed": 18846, + "Ġprocesses": 7555, + "Ġprocessing": 9007, + "Ġprocesso": 27939, + "Ġprocessor": 15321, + "Ġprocessors": 27751, + "Ġproch": 31847, + "Ġprochain": 39389, + "Ġprochaine": 35306, + "Ġproclaim": 34604, + "Ġproclaimed": 49091, + "Ġprocrast": 39306, + "Ġprocure": 26846, + "Ġprocurement": 35183, + "Ġprod": 15792, + "Ġprodu": 1082, + "Ġproducción": 48586, + "Ġproduce": 5258, + "Ġproduced": 7126, + "Ġproducer": 12314, + "Ġproducers": 16080, + "Ġproduces": 14725, + "Ġproducing": 10501, + "Ġproduct": 1674, + "Ġproduction": 4265, + "Ġproductions": 32612, + "Ġproductive": 13304, + "Ġproductivity": 15604, + "Ġproducto": 47583, + "Ġproductos": 46363, + "Ġproducts": 3383, + "Ġproduit": 35703, + "Ġproduits": 38866, + "Ġproduk": 33699, + "Ġprodukt": 42816, + "Ġproduto": 45823, + "Ġproduz": 28093, + "Ġprodução": 49147, + "Ġprof": 1740, + "Ġprofes": 22912, + "Ġprofesional": 42882, + "Ġprofess": 2668, + "Ġprofession": 7032, + "Ġprofessional": 4843, + "Ġprofessionally": 27941, + "Ġprofessionals": 11954, + "Ġprofessions": 38129, + "Ġprofessor": 8304, + "Ġprofessors": 15924, + "Ġprofile": 7964, + "Ġprofiles": 23693, + "Ġprofit": 7475, + "Ġprofitability": 46249, + "Ġprofitable": 21608, + "Ġprofits": 17982, + "Ġprofound": 14382, + "Ġprofoundly": 39954, + "Ġprofund": 40958, + "Ġprogram": 1461, + "Ġprograma": 21846, + "Ġprogramm": 37648, + "Ġprogramme": 14001, + "Ġprogrammed": 31092, + "Ġprogrammer": 32116, + "Ġprogrammers": 41504, + "Ġprogrammes": 31097, + "Ġprogramming": 9410, + "Ġprograms": 4268, + "Ġprogress": 4205, + "Ġprogressed": 36789, + "Ġprogresses": 41929, + "Ġprogressing": 36305, + "Ġprogression": 18733, + "Ġprogressive": 16131, + "Ġprogressively": 46667, + "Ġprohib": 16015, + "Ġprohibited": 32069, + "Ġproject": 1716, + "Ġprojected": 26231, + "Ġprojecting": 43001, + "Ġprojection": 22743, + "Ġprojections": 32371, + "Ġprojector": 39792, + "Ġprojects": 4455, + "Ġprojekt": 26261, + "Ġprojet": 17929, + "Ġprojeto": 40679, + "Ġprojets": 49830, + "Ġprol": 24398, + "Ġprolong": 27224, + "Ġprolonged": 41237, + "Ġprom": 2234, + "Ġpromet": 37786, + "Ġpromin": 39225, + "Ġprominent": 17034, + "Ġpromise": 6228, + "Ġpromised": 10768, + "Ġpromises": 16403, + "Ġpromising": 20257, + "Ġpromo": 26750, + "Ġpromot": 6609, + "Ġpromote": 9773, + "Ġpromoted": 21162, + "Ġpromotes": 36015, + "Ġpromoting": 16383, + "Ġpromotion": 15783, + "Ġpromotional": 41790, + "Ġpromotions": 42127, + "Ġprompt": 12391, + "Ġprompted": 31042, + "Ġpromptly": 48594, + "Ġprompts": 41095, + "Ġpron": 7569, + "Ġprone": 25806, + "Ġpronoun": 14144, + "Ġpronounce": 19567, + "Ġpronounced": 23155, + "Ġpronouns": 35883, + "Ġpronto": 26194, + "Ġpronunciation": 23338, + "Ġproof": 8177, + "Ġprop": 2365, + "Ġpropag": 12425, + "Ġpropaganda": 22968, + "Ġpropagate": 48256, + "Ġpropagation": 38377, + "Ġprope": 25577, + "Ġproper": 2296, + "Ġproperly": 6108, + "Ġproperties": 7221, + "Ġproperty": 4707, + "Ġproph": 17051, + "Ġprophe": 19944, + "Ġprophecy": 23945, + "Ġprophet": 18566, + "Ġprophetic": 46174, + "Ġprophets": 27297, + "Ġpropia": 40464, + "Ġpropio": 40098, + "Ġpropor": 41516, + "Ġproport": 17762, + "Ġproportion": 16068, + "Ġproportional": 24969, + "Ġproportions": 32482, + "Ġpropos": 7532, + "Ġproposal": 11494, + "Ġproposals": 20198, + "Ġpropose": 17421, + "Ġproposed": 10348, + "Ġproposing": 29939, + "Ġproposition": 24830, + "Ġpropre": 35221, + "Ġpropri": 40465, + "Ġpropriet": 27881, + "Ġproprietary": 38992, + "Ġproprio": 28203, + "Ġprops": 26173, + "Ġpropulsion": 49375, + "Ġpros": 6267, + "Ġprose": 12505, + "Ġprosec": 22382, + "Ġprosecut": 21015, + "Ġprosecution": 37106, + "Ġprosecutor": 32836, + "Ġprosecutors": 40030, + "Ġprospect": 15005, + "Ġprospective": 39377, + "Ġprospects": 32933, + "Ġprosper": 14381, + "Ġprosperity": 22434, + "Ġprosperous": 38928, + "Ġpross": 48794, + "Ġprost": 10293, + "Ġprostate": 36108, + "Ġprosth": 39976, + "Ġprostu": 19518, + "ĠproszÄĻ": 39677, + "Ġprot": 1742, + "Ġprotagon": 17232, + "Ġprotagonist": 24506, + "Ġprote": 5631, + "Ġprotect": 2371, + "Ġprotected": 10594, + "Ġprotecting": 12316, + "Ġprotection": 6334, + "Ġprotections": 29031, + "Ġprotective": 16314, + "Ġprotector": 34986, + "Ġprotects": 22583, + "Ġproteg": 49157, + "Ġprotein": 7944, + "Ġproteins": 15577, + "Ġprotest": 11281, + "Ġprotesters": 34509, + "Ġprotesting": 40171, + "Ġprotests": 20174, + "Ġproto": 47896, + "Ġprotocol": 10336, + "Ġprotocols": 20618, + "Ġproton": 31728, + "Ġprotons": 40270, + "Ġprototy": 46219, + "Ġprototype": 19475, + "Ġprototypes": 42197, + "Ġprotr": 45468, + "Ġproud": 4570, + "Ġproudly": 33522, + "Ġprov": 1439, + "Ġprova": 28959, + "Ġprove": 7081, + "Ġproved": 14617, + "Ġproven": 12785, + "Ġproverb": 49923, + "Ġproves": 25019, + "Ġprovide": 2893, + "Ġprovided": 5649, + "Ġprovider": 12398, + "Ġproviders": 11330, + "Ġprovides": 6417, + "Ġproviding": 6530, + "Ġprovin": 17629, + "Ġprovince": 16705, + "Ġprovinces": 32873, + "Ġprovincial": 33293, + "Ġproving": 27221, + "Ġprovision": 17225, + "Ġprovisions": 25034, + "Ġprovoc": 24568, + "Ġprovocative": 47663, + "Ġprovoke": 47015, + "Ġprow": 45553, + "Ġprowad": 36590, + "Ġproxim": 21932, + "Ġproximity": 27632, + "Ġproxy": 29690, + "Ġproyect": 23832, + "Ġproyecto": 32285, + "Ġprue": 32820, + "Ġprueba": 48241, + "Ġpry": 41902, + "Ġprz": 6541, + "Ġprze": 8325, + "Ġprzeci": 39622, + "Ġprzed": 18334, + "Ġprzede": 44786, + "ĠprzedsiÄĻbior": 43477, + "Ġprzedstaw": 45616, + "Ġprzek": 29785, + "Ġprzep": 30829, + "Ġprzest": 44264, + "Ġprzew": 39758, + "Ġprzez": 14064, + "Ġprzy": 6501, + "Ġprzygot": 35914, + "ĠprzykÅĤad": 23144, + "Ġprzyp": 41780, + "Ġprzypad": 33100, + "Ġprzypadku": 41955, + "Ġprzysz": 44018, + "Ġprá": 27300, + "Ġprès": 25350, + "Ġpré": 11127, + "Ġpréc": 23107, + "Ġprécis": 49436, + "Ġprécéd": 48653, + "Ġpréf": 31139, + "Ġprépar": 38286, + "Ġprés": 11761, + "Ġprésent": 26056, + "Ġprésident": 29654, + "Ġprêt": 44393, + "Ġpró": 8565, + "Ġpróp": 21431, + "Ġprópria": 39608, + "Ġpróprio": 36394, + "Ġpróxim": 12389, + "Ġpróxima": 24096, + "Ġpróximo": 21177, + "Ġps": 18815, + "Ġpse": 25505, + "Ġpseudo": 35899, + "Ġpsi": 20304, + "Ġpsic": 38609, + "Ġpsy": 31673, + "Ġpsych": 4681, + "Ġpsyche": 50223, + "Ġpsychedel": 47732, + "Ġpsychiat": 26347, + "Ġpsychiatric": 40123, + "Ġpsychiatrist": 41287, + "Ġpsychic": 35406, + "Ġpsycho": 33355, + "Ġpsychological": 14346, + "Ġpsychologically": 41387, + "Ġpsychologist": 29514, + "Ġpsychologists": 41562, + "Ġpsychology": 15105, + "Ġpsychopath": 47577, + "Ġpu": 2362, + "Ġpub": 1535, + "Ġpubl": 11227, + "Ġpubli": 49804, + "Ġpublic": 1908, + "Ġpublication": 19953, + "Ġpublications": 25618, + "Ġpublicity": 37264, + "Ġpublicly": 14843, + "Ġpublish": 11374, + "Ġpublished": 6572, + "Ġpublisher": 25088, + "Ġpublishers": 30421, + "Ġpublishing": 17832, + "Ġpuck": 47181, + "Ġpud": 14166, + "Ġpudding": 29149, + "Ġpue": 26990, + "Ġpueblo": 33764, + "Ġpued": 10947, + "Ġpueda": 31907, + "Ġpuedan": 41241, + "Ġpuede": 8919, + "Ġpueden": 14714, + "Ġpuedes": 19010, + "Ġpuedo": 21612, + "Ġpuerta": 48597, + "Ġpues": 11059, + "Ġpuesto": 35136, + "Ġpuff": 19613, + "Ġpug": 47900, + "Ġpuis": 9093, + "Ġpuisqu": 43459, + "Ġpuisque": 28090, + "Ġpuisse": 42363, + "Ġpul": 8331, + "Ġpull": 2235, + "Ġpulled": 7373, + "Ġpulley": 48399, + "Ġpulling": 8407, + "Ġpulls": 16982, + "Ġpulp": 37489, + "Ġpuls": 32295, + "Ġpulse": 17709, + "Ġpulses": 45279, + "Ġpum": 48842, + "Ġpump": 5889, + "Ġpumped": 27774, + "Ġpumping": 27131, + "Ġpumpkin": 17537, + "Ġpumpkins": 49053, + "Ġpumps": 27648, + "Ġpun": 4468, + "Ġpunch": 8135, + "Ġpunched": 37842, + "Ġpunches": 34103, + "Ġpunching": 34866, + "Ġpunct": 27006, + "Ġpunish": 9842, + "Ġpunished": 22365, + "Ġpunishing": 49824, + "Ġpunishment": 14133, + "Ġpunk": 25188, + "Ġpunkt": 39561, + "Ġpunt": 18212, + "Ġpunto": 14326, + "Ġpuntos": 34375, + "Ġpunya": 32781, + "Ġpup": 19784, + "Ġpupil": 44533, + "Ġpupils": 38404, + "Ġpupp": 17014, + "Ġpuppet": 32107, + "Ġpuppies": 33734, + "Ġpuppy": 18196, + "Ġpur": 1864, + "Ġpurch": 5270, + "Ġpurchase": 8110, + "Ġpurchased": 14734, + "Ġpurchases": 26762, + "Ġpurchasing": 20906, + "Ġpure": 6075, + "Ġpuree": 49407, + "Ġpurely": 17491, + "Ġpurity": 34382, + "Ġpurl": 48943, + "Ġpurp": 3527, + "Ġpurple": 9656, + "Ġpurpose": 4334, + "Ġpurposely": 41840, + "Ġpurposes": 9932, + "Ġpurs": 7088, + "Ġpurse": 28345, + "Ġpursue": 12392, + "Ġpursued": 34893, + "Ġpursuing": 20222, + "Ġpursuit": 23365, + "Ġpus": 31252, + "Ġpush": 2944, + "Ġpushed": 9152, + "Ġpushes": 21020, + "Ġpushing": 7380, + "Ġpussy": 40169, + "Ġput": 829, + "Ġputa": 46681, + "Ġputs": 8137, + "Ġputting": 3372, + "Ġpuzz": 18741, + "Ġpuzzle": 12805, + "Ġpuzzles": 24138, + "Ġpuò": 26526, + "Ġpy": 10664, + "Ġpyram": 20543, + "Ġpyramid": 25950, + "Ġpyt": 25878, + "Ġpytanie": 36610, + "Ġpython": 38797, + "Ġpá": 40639, + "Ġpágina": 36960, + "Ġpä": 32232, + "Ġpää": 32764, + "ĠpÃ¥": 4170, + "Ġpère": 37653, + "Ġpé": 29507, + "Ġpén": 49880, + "Ġpéri": 36321, + "Ġpériode": 44703, + "Ġpó": 28157, + "Ġpóźniej": 36968, + "ĠpóÅĤ": 47907, + "Ġpúblic": 15392, + "Ġpública": 38905, + "Ġpúblico": 26557, + "ĠpÅĤ": 28695, + "ĠpÅĻ": 31631, + "Ġq": 9505, + "Ġqu": 421, + "Ġqua": 24159, + "Ġquad": 10787, + "Ġquadrant": 46856, + "Ġquadratic": 37262, + "Ġquais": 44075, + "Ġqual": 4101, + "Ġqualc": 32101, + "Ġqualche": 38737, + "Ġqualcosa": 42400, + "Ġqualidade": 41501, + "Ġqualification": 37425, + "Ġqualifications": 33223, + "Ġqualified": 15904, + "Ġqualify": 20276, + "Ġqualifying": 41793, + "Ġqualitative": 31312, + "Ġqualities": 16477, + "Ġquality": 3125, + "Ġqualité": 42106, + "Ġqualquer": 20437, + "Ġquan": 19068, + "Ġquand": 6932, + "Ġquando": 7770, + "Ġquant": 4426, + "Ġquantidade": 39639, + "Ġquantify": 40421, + "Ġquantitative": 27778, + "Ġquantities": 22927, + "Ġquantity": 11275, + "Ġquanto": 17820, + "Ġquantum": 13018, + "Ġquar": 4723, + "Ġquarant": 41240, + "Ġquarantine": 18138, + "Ġquart": 20837, + "Ġquarter": 6555, + "Ġquarterback": 31952, + "Ġquarterly": 38633, + "Ġquarters": 20612, + "Ġquarto": 50109, + "Ġquartz": 48280, + "Ġquas": 49625, + "Ġquase": 28875, + "Ġquasi": 20954, + "Ġquatre": 31334, + "Ġquatro": 30583, + "Ġque": 631, + "Ġqued": 13617, + "Ġqueda": 23314, + "Ġquedar": 39244, + "Ġqueen": 12206, + "Ġqueens": 42017, + "Ġqueer": 20323, + "Ġquel": 7178, + "Ġquella": 32234, + "Ġquelle": 29237, + "Ġquello": 22813, + "Ġquelqu": 25283, + "Ġquelque": 14448, + "Ġquelques": 16597, + "Ġquem": 13026, + "Ġquer": 7083, + "Ġqueremos": 26813, + "Ġquerer": 39318, + "Ġqueria": 27955, + "Ġqueries": 24109, + "Ġquero": 18738, + "Ġquery": 14581, + "ĠquerÃŃa": 37869, + "Ġquest": 866, + "Ġquesta": 16540, + "Ġqueste": 35455, + "Ġquesti": 29729, + "Ġquestion": 1168, + "Ġquestionable": 37158, + "Ġquestioned": 28146, + "Ġquestioning": 21257, + "Ġquestionnaire": 44702, + "Ġquestions": 1651, + "Ġquesto": 10263, + "Ġquests": 34247, + "Ġquestão": 28477, + "Ġqueue": 18639, + "Ġqui": 1956, + "Ġquick": 1702, + "Ġquicker": 16255, + "Ġquickest": 49403, + "Ġquickly": 2661, + "Ġquien": 20108, + "Ġquienes": 43091, + "Ġquier": 23572, + "Ġquiere": 23877, + "Ġquieren": 36706, + "Ġquieres": 29839, + "Ġquiero": 16811, + "Ġquiet": 5677, + "Ġquieter": 43339, + "Ġquietly": 19141, + "Ġquil": 31619, + "Ġquilt": 27566, + "Ġquin": 42215, + "Ġquindi": 15727, + "Ġquint": 40006, + "Ġquir": 35645, + "Ġquirky": 49515, + "Ġquis": 37945, + "Ġquiser": 28753, + "Ġquit": 10366, + "Ġquite": 1596, + "Ġquitting": 42789, + "Ġquiz": 15450, + "Ġquizz": 43425, + "Ġquizzes": 48955, + "Ġquién": 35327, + "Ġquo": 28425, + "Ġquoi": 11714, + "Ġquot": 9641, + "Ġquota": 45171, + "Ġquotation": 47312, + "Ġquote": 6513, + "Ġquoted": 30047, + "Ġquotes": 19963, + "Ġquotid": 44017, + "Ġquoting": 41552, + "Ġquy": 44088, + "Ġquá": 38338, + "Ġquè": 17802, + "Ġqué": 8057, + "Ġquê": 28605, + "Ġr": 367, + "Ġra": 3342, + "Ġrab": 14085, + "Ġrabb": 28179, + "Ġrabbit": 19509, + "Ġrabbits": 38752, + "Ġrac": 4129, + "Ġrace": 4569, + "Ġraces": 15484, + "Ġracial": 12131, + "Ġracing": 12553, + "Ġracism": 12664, + "Ġracist": 16419, + "Ġrack": 14788, + "Ġracket": 41130, + "Ġracks": 47063, + "Ġrad": 2843, + "Ġradar": 16544, + "Ġradi": 16335, + "Ġradial": 38783, + "Ġradiant": 49430, + "Ġradiation": 12420, + "Ġradiator": 41345, + "Ġradical": 12001, + "Ġradically": 35508, + "Ġradio": 6477, + "Ġradioactive": 35844, + "Ġradish": 31136, + "Ġradius": 15845, + "Ġraft": 43863, + "Ġrag": 17539, + "Ġrage": 20133, + "Ġraging": 44173, + "Ġrah": 23490, + "Ġrahat": 43066, + "Ġraid": 26936, + "Ġraids": 45740, + "Ġrail": 8765, + "Ġrailroad": 30073, + "Ġrails": 27649, + "Ġrailway": 25812, + "Ġrain": 4830, + "Ġrainbow": 18526, + "Ġrained": 47533, + "Ġrainfall": 29382, + "Ġrainforest": 48531, + "Ġraining": 18441, + "Ġrains": 27805, + "Ġrainy": 27181, + "Ġrais": 4000, + "Ġraise": 5300, + "Ġraised": 6005, + "Ġraises": 19658, + "Ġraising": 11225, + "Ġraison": 28402, + "Ġraj": 36007, + "Ġrak": 35544, + "Ġrall": 31552, + "Ġrallies": 48169, + "Ġrally": 17584, + "Ġram": 10211, + "Ġramen": 20948, + "Ġramp": 12428, + "Ġran": 5872, + "Ġranch": 22883, + "Ġrandom": 4974, + "Ġrandomized": 38513, + "Ġrandomly": 16979, + "Ġrang": 32434, + "Ġrange": 3613, + "Ġranged": 45570, + "Ġranges": 22526, + "Ġranging": 25532, + "Ġrank": 6181, + "Ġranked": 20197, + "Ġranking": 17833, + "Ġrankings": 36550, + "Ġranks": 21406, + "Ġrans": 33481, + "Ġransom": 38279, + "Ġrant": 45332, + "Ġrap": 5099, + "Ġrape": 22846, + "Ġraped": 37506, + "Ġrapid": 7558, + "Ġrapidement": 37757, + "Ġrapidly": 12910, + "Ġrapp": 8125, + "Ġrappelle": 43736, + "Ġrapper": 26457, + "Ġrappers": 45025, + "Ġrapping": 44333, + "Ġrapport": 18018, + "Ġrapt": 40142, + "Ġrare": 5892, + "Ġrarely": 13752, + "Ġras": 26815, + "Ġrasa": 41493, + "Ġrash": 40357, + "Ġrasp": 49399, + "Ġraspberry": 41468, + "Ġrat": 5937, + "Ġratchet": 45885, + "Ġrate": 3314, + "Ġrated": 22103, + "Ġrates": 6846, + "Ġrather": 2831, + "Ġrating": 10990, + "Ġratings": 24603, + "Ġratio": 8509, + "Ġration": 24258, + "Ġrational": 15090, + "Ġrationale": 41989, + "Ġratios": 32435, + "Ġrats": 25691, + "Ġratt": 27081, + "Ġrattling": 48822, + "Ġraus": 17202, + "Ġrav": 32987, + "Ġraw": 8936, + "Ġray": 18592, + "Ġrays": 24417, + "Ġraz": 9639, + "Ġrazem": 40225, + "Ġrazor": 30478, + "Ġrazón": 38310, + "Ġre": 319, + "Ġreach": 2524, + "Ġreached": 6488, + "Ġreaches": 14235, + "Ġreaching": 9906, + "Ġreact": 4515, + "Ġreacted": 34037, + "Ġreacting": 25817, + "Ġreaction": 5480, + "Ġreactions": 12215, + "Ġreactive": 28897, + "Ġreactor": 20628, + "Ġreactors": 41649, + "Ġreacts": 33305, + "Ġread": 1401, + "Ġreadable": 49857, + "Ġreader": 15149, + "Ġreaders": 17147, + "Ġreadily": 26336, + "Ġreadiness": 34954, + "Ġreading": 3760, + "Ġreadings": 27319, + "Ġreads": 15700, + "Ġready": 1919, + "Ġreag": 26949, + "Ġreais": 34823, + "Ġreal": 957, + "Ġrealidad": 25635, + "Ġrealidade": 48292, + "Ġrealise": 18809, + "Ġrealised": 21337, + "Ġrealism": 38484, + "Ġrealistic": 12465, + "Ġrealistically": 40734, + "Ġrealities": 27785, + "Ġreality": 4103, + "Ġrealiz": 22828, + "Ġrealizar": 36461, + "Ġrealization": 25138, + "Ġrealize": 4325, + "Ġrealized": 5334, + "Ġrealizes": 29316, + "Ġrealizing": 16734, + "Ġreally": 534, + "Ġrealm": 15355, + "Ġrealmente": 14446, + "Ġrealms": 42824, + "Ġrealt": 41133, + "ĠrealtÃł": 47512, + "Ġreap": 39178, + "Ġreapp": 35638, + "Ġrear": 8250, + "Ġrearr": 29875, + "Ġrearrange": 39568, + "Ġreason": 1778, + "Ġreasonable": 10585, + "Ġreasonably": 23551, + "Ġreasoning": 21577, + "Ġreasons": 4112, + "Ġreass": 19486, + "Ġreb": 12970, + "Ġrebel": 28293, + "Ġrebell": 22260, + "Ġrebellion": 29793, + "Ġrebels": 37919, + "Ġrebirth": 49445, + "Ġrebo": 26802, + "Ġreboot": 33818, + "Ġreborn": 48899, + "Ġrebound": 31850, + "Ġrebuild": 16877, + "Ġrebuilding": 36717, + "Ġrebuilt": 38532, + "Ġrec": 850, + "Ġreca": 43086, + "Ġrecall": 9901, + "Ġrecalled": 39301, + "Ġrecap": 20928, + "Ġrece": 2268, + "Ġreceber": 42748, + "Ġreceipt": 33882, + "Ġreceive": 4774, + "Ġreceived": 4613, + "Ġreceiver": 20086, + "Ġreceivers": 49196, + "Ġreceives": 20717, + "Ġreceiving": 10040, + "Ġrecent": 5162, + "Ġrecently": 3938, + "Ġrecept": 15263, + "Ġreception": 21682, + "Ġreceptive": 45838, + "Ġreceptor": 32264, + "Ġreceptors": 34102, + "Ġrecess": 16417, + "Ġrecession": 24828, + "Ġrecharge": 31366, + "Ġrecher": 27788, + "Ġrecherche": 38501, + "Ġrecht": 24261, + "Ġrechts": 34305, + "Ġreci": 4214, + "Ġrecib": 46387, + "Ġrecibir": 49703, + "Ġrecip": 17325, + "Ġrecipe": 6782, + "Ġrecipes": 13035, + "Ġrecipient": 26216, + "Ġrecipients": 32440, + "Ġrecipro": 28961, + "Ġreciprocal": 46948, + "Ġrecite": 39434, + "Ġreck": 16374, + "Ġreckless": 38884, + "Ġreckon": 29548, + "Ġreclaim": 40074, + "Ġreco": 7759, + "Ġrecogn": 3068, + "Ġrecognise": 23991, + "Ġrecognised": 36802, + "Ġrecognition": 11150, + "Ġrecognizable": 40757, + "Ġrecognize": 5521, + "Ġrecognized": 9823, + "Ġrecognizes": 26564, + "Ġrecognizing": 18538, + "Ġrecoil": 42053, + "Ġrecoll": 39495, + "Ġrecom": 23334, + "Ġrecomend": 40292, + "Ġrecomm": 2616, + "Ġrecommend": 2748, + "Ġrecommendation": 11879, + "Ġrecommendations": 10434, + "Ġrecommended": 9628, + "Ġrecommending": 30559, + "Ġrecommends": 34556, + "Ġrecomp": 48000, + "Ġrecon": 9993, + "Ġreconcile": 41059, + "Ġreconciliation": 31281, + "Ġreconna": 31073, + "Ġreconnect": 30095, + "Ġreconoc": 43838, + "Ġreconsider": 40497, + "Ġreconst": 16891, + "Ġreconstruct": 31499, + "Ġreconstruction": 31565, + "Ġrecord": 2136, + "Ġrecorded": 8287, + "Ġrecorder": 37744, + "Ġrecording": 6613, + "Ġrecordings": 25162, + "Ġrecords": 7724, + "Ġrecount": 43997, + "Ġrecover": 8114, + "Ġrecovered": 19542, + "Ġrecovering": 29180, + "Ġrecovery": 8597, + "Ġrecre": 14261, + "Ġrecreate": 25833, + "Ġrecreation": 31573, + "Ġrecreational": 37554, + "Ġrecru": 9372, + "Ġrecruit": 15119, + "Ġrecruited": 33004, + "Ġrecruiting": 25987, + "Ġrecruitment": 28240, + "Ġrect": 11048, + "Ġrectang": 24077, + "Ġrectangle": 21930, + "Ġrectangular": 31167, + "Ġrecuer": 39092, + "Ġrecuper": 25692, + "Ġrecur": 18680, + "Ġrecurring": 32279, + "Ġrecurs": 20560, + "Ġrecursos": 30409, + "Ġrecy": 12036, + "Ġrecycle": 32162, + "Ġrecycled": 30674, + "Ġrecycling": 23363, + "Ġred": 2182, + "Ġrede": 14328, + "Ġredeem": 37715, + "Ġredef": 38818, + "Ġredemption": 35644, + "Ġreden": 26447, + "Ġredes": 16762, + "Ġredesign": 39853, + "Ġredirect": 29066, + "Ġredist": 36198, + "Ġredo": 29956, + "Ġredu": 2783, + "Ġreduce": 5407, + "Ġreduced": 9212, + "Ġreduces": 18081, + "Ġreducing": 12245, + "Ġreduction": 11004, + "Ġreductions": 40296, + "Ġredund": 27830, + "Ġredundant": 40997, + "Ġreduz": 40674, + "Ġree": 43060, + "Ġreef": 25345, + "Ġreefs": 50054, + "Ġreel": 34973, + "Ġref": 1895, + "Ġrefer": 2864, + "Ġrefere": 33048, + "Ġreferee": 43096, + "Ġreference": 6408, + "Ġreferenced": 32734, + "Ġreferences": 15400, + "Ġreferencing": 40582, + "Ġreferendum": 31957, + "Ġreferral": 33494, + "Ġreferrals": 47444, + "Ġreferred": 10839, + "Ġreferring": 13761, + "Ġrefers": 14942, + "Ġrefill": 42533, + "Ġrefin": 44395, + "Ġrefine": 33906, + "Ġrefined": 26201, + "Ġrefle": 36549, + "Ġreflect": 5031, + "Ġreflected": 15502, + "Ġreflecting": 23543, + "Ġreflection": 12914, + "Ġreflections": 30679, + "Ġreflective": 28931, + "Ġreflects": 18926, + "Ġreflex": 23802, + "Ġreform": 8290, + "Ġreforms": 24897, + "Ġrefr": 13334, + "Ġrefract": 45353, + "Ġrefrain": 46177, + "Ġrefres": 17368, + "Ġrefresh": 15134, + "Ġrefreshed": 46330, + "Ġrefreshing": 19772, + "Ġrefriger": 14162, + "Ġrefrigerator": 19655, + "Ġrefuge": 10991, + "Ġrefugee": 25622, + "Ġrefugees": 18301, + "Ġrefund": 29384, + "Ġrefusal": 48948, + "Ġrefuse": 16791, + "Ġrefused": 14654, + "Ġrefuses": 33222, + "Ġrefusing": 37289, + "Ġreg": 1121, + "Ġregain": 35336, + "Ġregard": 3843, + "Ġregarde": 33357, + "Ġregarded": 26047, + "Ġregarder": 31468, + "Ġregardez": 49841, + "Ġregarding": 8595, + "Ġregardless": 10060, + "Ġregards": 14258, + "Ġregel": 40504, + "Ġregen": 33909, + "Ġregener": 26358, + "Ġregeneration": 43813, + "Ġregime": 13120, + "Ġregiment": 47888, + "Ġregimes": 45738, + "Ġregion": 4458, + "Ġregional": 10964, + "Ġregions": 10682, + "Ġregist": 11376, + "Ġregister": 7280, + "Ġregistered": 13968, + "Ġregistering": 47329, + "Ġregisters": 38351, + "Ġregistration": 16847, + "Ġregistry": 36468, + "Ġregião": 45697, + "Ġregión": 45163, + "Ġregres": 47108, + "Ġregression": 24590, + "Ġregret": 10879, + "Ġregrets": 31214, + "Ġregul": 9837, + "Ġregular": 3890, + "Ġregularly": 11672, + "Ġregulate": 24475, + "Ġregulated": 26243, + "Ġregulating": 46715, + "Ġregulation": 15062, + "Ġregulations": 12563, + "Ġregulator": 36250, + "Ġregulators": 37311, + "Ġregulatory": 18260, + "Ġreh": 22355, + "Ġrehab": 32414, + "Ġrehabil": 26043, + "Ġrehabilitation": 33700, + "Ġrehe": 14369, + "Ġrehears": 17052, + "Ġrehearsal": 24884, + "Ġreicht": 47000, + "Ġreign": 20350, + "Ġreim": 33433, + "Ġreimburse": 41685, + "Ġrein": 6561, + "Ġreincarn": 48343, + "Ġreindeer": 49992, + "Ġreinfor": 20520, + "Ġreinforce": 22634, + "Ġreinforced": 31365, + "Ġreinforcement": 29280, + "Ġreinforcing": 48262, + "Ġreins": 47200, + "Ġreinst": 35056, + "Ġreinvent": 33477, + "Ġreiter": 25211, + "Ġreiterate": 33528, + "Ġreject": 8248, + "Ġrejected": 15749, + "Ġrejecting": 45401, + "Ġrejection": 26044, + "Ġrejo": 22087, + "Ġrejoice": 42397, + "Ġrek": 33881, + "Ġrel": 1039, + "Ġrela": 5195, + "Ġrelacion": 27189, + "Ġrelación": 37247, + "Ġrelat": 22441, + "Ġrelatable": 42355, + "Ġrelate": 10961, + "Ġrelated": 4077, + "Ġrelates": 16155, + "Ġrelating": 23968, + "Ġrelation": 9721, + "Ġrelational": 38444, + "Ġrelations": 2299, + "Ġrelationship": 2480, + "Ġrelationships": 6159, + "Ġrelativ": 21960, + "Ġrelative": 4972, + "Ġrelatively": 7226, + "Ġrelatives": 18201, + "Ġrelativity": 45675, + "Ġrelax": 5789, + "Ġrelaxation": 30315, + "Ġrelaxed": 14628, + "Ġrelaxing": 20103, + "Ġrelay": 24214, + "Ġrelação": 28177, + "Ġrele": 2951, + "Ġrelease": 4374, + "Ġreleased": 4736, + "Ġreleases": 16952, + "Ġreleasing": 16327, + "Ġrelent": 34045, + "Ġrelentless": 46136, + "Ġrelev": 25916, + "Ġrelevance": 32684, + "Ġrelevant": 7340, + "Ġreli": 19653, + "Ġreliability": 24550, + "Ġreliable": 12924, + "Ġreliably": 49927, + "Ġrelie": 21680, + "Ġrelied": 35463, + "Ġrelief": 10915, + "Ġrelies": 30910, + "Ġrelieve": 30450, + "Ġrelieved": 27972, + "Ġrelig": 4039, + "Ġreligion": 7561, + "Ġreligions": 21212, + "Ġreligious": 7185, + "Ġreload": 25628, + "Ġreloc": 26981, + "Ġreluct": 25149, + "Ġreluctant": 33677, + "Ġrely": 10687, + "Ġrelying": 24140, + "Ġrem": 890, + "Ġrema": 28986, + "Ġremain": 6222, + "Ġremainder": 29837, + "Ġremained": 12780, + "Ġremaining": 8877, + "Ġremains": 7023, + "Ġremake": 28582, + "Ġremar": 34329, + "Ġremark": 7942, + "Ġremarkable": 12802, + "Ġremarkably": 37381, + "Ġremarks": 19151, + "Ġremed": 28718, + "Ġremedies": 47133, + "Ġremedy": 31648, + "Ġremem": 20648, + "Ġremember": 1604, + "Ġremembered": 13745, + "Ġremembering": 20719, + "Ġremembers": 26228, + "Ġremembrance": 48083, + "Ġremind": 4160, + "Ġreminded": 15920, + "Ġreminder": 13548, + "Ġreminders": 43458, + "Ġreminding": 27639, + "Ġreminds": 12025, + "Ġreminis": 33765, + "Ġreminiscent": 44304, + "Ġremix": 47788, + "Ġremnants": 44652, + "Ġremo": 4595, + "Ġremot": 19896, + "Ġremote": 8607, + "Ġremotely": 20824, + "Ġremovable": 44060, + "Ġremoval": 17933, + "Ġremove": 4159, + "Ġremoved": 7261, + "Ġremoves": 30445, + "Ġremoving": 12720, + "Ġrempl": 36576, + "Ġren": 8124, + "Ġrename": 36741, + "Ġrenamed": 40949, + "Ġrencont": 28038, + "Ġrend": 6125, + "Ġrender": 15529, + "Ġrendered": 28748, + "Ġrendering": 22407, + "Ġrendez": 40026, + "Ġrendre": 36256, + "Ġrenew": 10162, + "Ġrenewable": 20938, + "Ġrenewal": 35516, + "Ġrenewed": 30228, + "Ġrenov": 18845, + "Ġrenovation": 39973, + "Ġrenowned": 34065, + "Ġrent": 6214, + "Ġrental": 21468, + "Ġrented": 32381, + "Ġrenting": 40598, + "Ġreop": 28994, + "Ġreopen": 33861, + "Ġreopening": 39542, + "Ġreorgan": 41203, + "Ġrep": 1085, + "Ġrepair": 10535, + "Ġrepaired": 36551, + "Ġrepairing": 46158, + "Ġrepairs": 28823, + "Ġrepar": 33291, + "Ġrepay": 27522, + "Ġrepe": 4301, + "Ġrepeat": 7149, + "Ġrepeated": 10477, + "Ġrepeatedly": 18227, + "Ġrepeating": 18617, + "Ġrepeats": 35038, + "Ġrepent": 19994, + "Ġrepentance": 37593, + "Ġrepente": 42884, + "Ġreper": 28946, + "Ġrepertoire": 49604, + "Ġrepet": 13645, + "Ġrepetition": 30432, + "Ġrepetitive": 29404, + "Ġrepl": 3248, + "Ġreplace": 7406, + "Ġreplaced": 10772, + "Ġreplacement": 14419, + "Ġreplaces": 46734, + "Ġreplacing": 19139, + "Ġreplay": 23836, + "Ġreplen": 43532, + "Ġreplica": 35456, + "Ġreplicate": 25356, + "Ġreplicated": 46365, + "Ġreplication": 39911, + "Ġreplied": 20345, + "Ġreplies": 42289, + "Ġreply": 16972, + "Ġrepo": 49040, + "Ġreport": 2275, + "Ġreported": 7055, + "Ġreportedly": 23989, + "Ġreporter": 19152, + "Ġreporters": 26249, + "Ġreporting": 10031, + "Ġreports": 7122, + "Ġreposit": 22283, + "Ġrepository": 25841, + "Ġrepres": 2556, + "Ġrepresent": 2906, + "Ġrepresenta": 49823, + "Ġrepresentation": 10290, + "Ġrepresentations": 33358, + "Ġrepresentative": 12424, + "Ġrepresentatives": 18628, + "Ġrepresented": 10379, + "Ġrepresenting": 13460, + "Ġrepresents": 8855, + "Ġrepro": 35257, + "Ġreprodu": 11408, + "Ġreproduce": 29501, + "Ġreproduction": 33934, + "Ġreproductive": 33569, + "Ġreprés": 27961, + "Ġreprésent": 40509, + "Ġreps": 27007, + "Ġrept": 29143, + "Ġrepublic": 18535, + "Ġrepublican": 39286, + "Ġreputation": 13061, + "Ġrequ": 1724, + "Ġrequest": 5308, + "Ġrequested": 16436, + "Ġrequesting": 31937, + "Ġrequests": 12475, + "Ġrequire": 3651, + "Ġrequired": 4739, + "Ġrequirement": 11695, + "Ġrequirements": 7728, + "Ġrequires": 7029, + "Ġrequiring": 24165, + "Ġrequis": 49878, + "Ġrer": 43819, + "Ġrere": 46453, + "Ġres": 725, + "Ġresc": 9610, + "Ġrescue": 13283, + "Ġrescued": 31757, + "Ġrese": 2025, + "Ġresearch": 2132, + "Ġresearched": 37098, + "Ġresearcher": 21751, + "Ġresearchers": 10309, + "Ġresearching": 24176, + "Ġresemb": 20695, + "Ġresemble": 36870, + "Ġresembles": 34433, + "Ġresent": 28773, + "Ġresentment": 43131, + "Ġreserv": 16454, + "Ġreservation": 28922, + "Ġreservations": 40222, + "Ġreserve": 17824, + "Ġreserved": 24819, + "Ġreserves": 27483, + "Ġreservoir": 26316, + "Ġreset": 14322, + "Ġresid": 13141, + "Ġreside": 40134, + "Ġresidence": 19607, + "Ġresidency": 34014, + "Ġresident": 10832, + "Ġresidential": 17389, + "Ġresidents": 9630, + "Ġresides": 47157, + "Ġresidual": 27980, + "Ġresidue": 34799, + "Ġresign": 27471, + "Ġresignation": 49494, + "Ġresigned": 41180, + "Ġresil": 12227, + "Ġresilience": 19980, + "Ġresiliency": 48712, + "Ġresilient": 23699, + "Ġresin": 26365, + "Ġresist": 4597, + "Ġresistance": 7335, + "Ġresistant": 20383, + "Ġresisting": 43940, + "Ġresistor": 37672, + "Ġresize": 50069, + "Ġresol": 7923, + "Ġresolution": 8669, + "Ġresolutions": 32179, + "Ġresolve": 14151, + "Ġresolved": 20772, + "Ġresolver": 34480, + "Ġresolving": 49940, + "Ġreson": 12544, + "Ġresonance": 30944, + "Ġresonate": 34285, + "Ġresonated": 47957, + "Ġresonates": 41051, + "Ġresort": 19606, + "Ġresource": 7684, + "Ġresources": 3593, + "Ġresp": 1597, + "Ġrespe": 40792, + "Ġrespect": 3104, + "Ġrespectable": 44279, + "Ġrespected": 20020, + "Ġrespectful": 26205, + "Ġrespectfully": 45201, + "Ġrespecting": 41968, + "Ġrespective": 23649, + "Ġrespectively": 25009, + "Ġrespecto": 35694, + "Ġrespects": 24126, + "Ġrespir": 18412, + "Ġrespiratory": 27038, + "Ġrespond": 4196, + "Ġresponded": 15806, + "Ġrespondents": 48275, + "Ġresponder": 36416, + "Ġresponders": 37542, + "Ġresponding": 16670, + "Ġresponds": 27331, + "Ġrespons": 2914, + "Ġresponsabil": 29829, + "Ġresponse": 4134, + "Ġresponses": 13019, + "Ġresponsibilities": 16190, + "Ġresponsibility": 6357, + "Ġresponsible": 6250, + "Ġresponsive": 21826, + "Ġresposta": 42126, + "Ġrespuesta": 40585, + "Ġress": 24689, + "Ġrest": 1472, + "Ġrestart": 21022, + "Ġrestaur": 4793, + "Ġrestaurant": 6383, + "Ġrestaurants": 11486, + "Ġreste": 20694, + "Ġrested": 43090, + "Ġrester": 37197, + "Ġresting": 21221, + "Ġrestless": 45451, + "Ġresto": 28247, + "Ġrestor": 46594, + "Ġrestoration": 23722, + "Ġrestore": 15227, + "Ġrestored": 23143, + "Ġrestoring": 36349, + "Ġrestra": 25508, + "Ġrestraint": 49281, + "Ġrestrict": 7694, + "Ġrestricted": 20608, + "Ġrestriction": 29529, + "Ġrestrictions": 14191, + "Ġrestrictive": 43220, + "Ġrestroom": 41286, + "Ġrests": 39755, + "Ġresult": 1874, + "Ġresultado": 28047, + "Ġresultados": 36796, + "Ġresulted": 18753, + "Ġresulting": 16505, + "Ġresults": 3542, + "Ġresume": 15358, + "Ġresumes": 48068, + "Ġresur": 16042, + "Ġresurrect": 34338, + "Ġresurrected": 48825, + "Ġresurrection": 24150, + "Ġret": 1533, + "Ġretail": 10800, + "Ġretailer": 45467, + "Ġretailers": 33519, + "Ġretain": 18340, + "Ġretained": 33438, + "Ġretaining": 34936, + "Ġretali": 37924, + "Ġretard": 42073, + "Ġretention": 22871, + "Ġrethink": 34595, + "Ġretir": 34906, + "Ġretire": 10731, + "Ġretired": 16776, + "Ġretirement": 15189, + "Ġretiring": 45770, + "Ġretour": 28873, + "Ġretr": 23106, + "Ġretra": 49356, + "Ġretract": 41107, + "Ġretreat": 15505, + "Ġretrie": 19817, + "Ġretrieve": 30254, + "Ġretro": 18820, + "Ġretrospect": 34997, + "Ġretrou": 26311, + "Ġretrouve": 30909, + "Ġretrouver": 36511, + "Ġreturn": 2736, + "Ġreturned": 8752, + "Ġreturning": 12678, + "Ġreturns": 11247, + "Ġreun": 14480, + "Ġreunion": 34720, + "Ġreunited": 50036, + "Ġreus": 38860, + "Ġreusable": 41807, + "Ġreuse": 26225, + "Ġrev": 3698, + "Ġreve": 5174, + "Ġreveal": 10658, + "Ġrevealed": 9599, + "Ġrevealing": 23983, + "Ġreveals": 20893, + "Ġrevel": 15262, + "Ġrevelation": 23456, + "Ġreven": 6158, + "Ġrevenge": 16711, + "Ġrevenir": 44899, + "Ġrevenue": 9324, + "Ġrevenues": 27299, + "Ġrever": 18438, + "Ġreverb": 41829, + "Ġrevers": 14582, + "Ġreversal": 42778, + "Ġreverse": 9943, + "Ġreversed": 30563, + "Ġreversible": 44788, + "Ġreview": 3131, + "Ġreviewed": 18429, + "Ġreviewers": 45837, + "Ġreviewing": 19576, + "Ġreviews": 10229, + "Ġrevis": 20767, + "Ġrevise": 44252, + "Ġrevised": 35228, + "Ġrevision": 34218, + "Ġrevisit": 32676, + "Ġrevital": 42457, + "Ġrevival": 33207, + "Ġrevive": 36292, + "Ġrevived": 48358, + "Ġrevol": 16908, + "Ġrevolt": 42568, + "Ġrevolution": 8894, + "Ġrevolutionary": 22687, + "Ġrevolves": 47934, + "Ġrevving": 49739, + "Ġreward": 7782, + "Ġrewarded": 29105, + "Ġrewarding": 20063, + "Ġrewards": 17203, + "Ġrewind": 41458, + "Ġrework": 48376, + "Ġrewrite": 28132, + "Ġrez": 48060, + "Ġrh": 33418, + "Ġrhe": 50100, + "Ġrhet": 24182, + "Ġrhetoric": 29604, + "Ġrhin": 49030, + "Ġrho": 20293, + "Ġrhy": 8740, + "Ġrhyme": 34753, + "Ġrhymes": 47917, + "Ġrhythm": 11801, + "Ġrhythmic": 46967, + "Ġrhythms": 44892, + "Ġri": 19739, + "Ġrib": 9162, + "Ġribbon": 20921, + "Ġribs": 21400, + "Ġric": 21040, + "Ġrice": 5090, + "Ġrich": 4593, + "Ġricher": 29021, + "Ġriches": 35777, + "Ġrichest": 35098, + "Ġrichness": 44506, + "Ġricht": 22136, + "Ġrichtig": 13129, + "Ġrichtige": 41569, + "Ġrico": 41529, + "Ġrid": 3973, + "Ġride": 5077, + "Ġrider": 25419, + "Ġriders": 23303, + "Ġrides": 20773, + "Ġridge": 34651, + "Ġridic": 9276, + "Ġridiculous": 11083, + "Ġridiculously": 41358, + "Ġriding": 9546, + "Ġrien": 13355, + "Ġries": 23932, + "Ġrif": 13203, + "Ġriff": 36798, + "Ġrifle": 18008, + "Ġrifles": 34058, + "Ġrig": 8329, + "Ġright": 558, + "Ġrighteous": 16153, + "Ġrighteousness": 26407, + "Ġrightly": 32879, + "Ġrights": 4601, + "Ġrigid": 22195, + "Ġrigor": 42191, + "Ġrigorous": 29882, + "Ġrigt": 46159, + "Ġrij": 47237, + "Ġrikt": 38420, + "Ġrim": 15982, + "Ġring": 4875, + "Ġringing": 18423, + "Ġrings": 11136, + "Ġrinse": 27026, + "Ġriot": 32211, + "Ġriots": 43802, + "Ġrip": 12782, + "Ġripe": 31421, + "Ġripped": 22780, + "Ġripping": 38776, + "Ġripple": 40688, + "Ġris": 2253, + "Ġrise": 6272, + "Ġrisen": 28614, + "Ġrises": 21373, + "Ġrising": 11636, + "Ġrisk": 3148, + "Ġrisking": 45235, + "Ġrisks": 10888, + "Ġrisky": 21137, + "Ġrisque": 37574, + "Ġrit": 11289, + "Ġritual": 13792, + "Ġrituals": 29082, + "Ġriv": 28745, + "Ġrival": 16286, + "Ġrivalry": 42352, + "Ġrivals": 33303, + "Ġriver": 6810, + "Ġrivers": 18361, + "Ġro": 744, + "Ġroad": 3060, + "Ġroadmap": 35738, + "Ġroads": 11344, + "Ġroam": 40474, + "Ġroaming": 42680, + "Ġroar": 40347, + "Ġroaring": 36231, + "Ġroast": 12904, + "Ġroasted": 24766, + "Ġroasting": 45227, + "Ġrob": 3870, + "Ġrobbed": 35772, + "Ġrobbery": 37418, + "Ġrobe": 37213, + "Ġrobi": 47380, + "ĠrobiÄĩ": 46900, + "Ġrobot": 7881, + "Ġrobotic": 30468, + "Ġrobotics": 34145, + "Ġrobots": 14733, + "Ġrobust": 13956, + "Ġrock": 3727, + "Ġrocket": 13012, + "Ġrockets": 28361, + "Ġrocking": 30929, + "Ġrocks": 10989, + "Ġrocky": 33301, + "Ġrod": 8685, + "Ġrode": 21602, + "Ġrods": 32761, + "Ġrodz": 28607, + "Ġrogue": 39100, + "Ġrok": 35135, + "Ġroku": 19451, + "Ġrol": 34109, + "Ġrole": 3090, + "Ġroles": 9604, + "Ġroll": 3373, + "Ġrolled": 14306, + "Ġroller": 15948, + "Ġrollers": 46642, + "Ġrolling": 9439, + "Ġrolls": 15767, + "Ġrom": 7438, + "Ġroman": 41362, + "Ġromance": 19064, + "Ġromantic": 13590, + "Ġrond": 39353, + "Ġroof": 8418, + "Ġroofs": 48555, + "Ġrooft": 34460, + "Ġrooftop": 41027, + "Ġrook": 24692, + "Ġrookie": 36299, + "Ġroom": 1808, + "Ġroomm": 23929, + "Ġroommate": 31692, + "Ġroommates": 46886, + "Ġrooms": 9396, + "Ġroot": 5593, + "Ġrooted": 25277, + "Ġrooting": 41572, + "Ġroots": 10669, + "Ġrope": 13540, + "Ġropes": 32964, + "Ġros": 18953, + "Ġrose": 10895, + "Ġroses": 28620, + "Ġroster": 29892, + "Ġrot": 4297, + "Ġrotary": 45811, + "Ġrotate": 13121, + "Ġrotated": 42146, + "Ġrotates": 42133, + "Ġrotating": 19627, + "Ġrotation": 12447, + "Ġrotational": 45420, + "Ġrotations": 44796, + "Ġrotor": 26847, + "Ġrotten": 31977, + "Ġrou": 18450, + "Ġrouge": 40605, + "Ġrough": 5903, + "Ġroughly": 9810, + "Ġround": 3098, + "Ġrounded": 23382, + "Ġrounding": 48237, + "Ġrounds": 13757, + "Ġroup": 48485, + "Ġrout": 4020, + "Ġroute": 7955, + "Ġrouter": 22492, + "Ġroutes": 18242, + "Ġroutine": 9927, + "Ġroutinely": 40443, + "Ġroutines": 33827, + "Ġrouting": 32722, + "Ġrover": 45767, + "Ġrow": 5386, + "Ġrows": 13241, + "Ġroy": 36364, + "Ġroyal": 13351, + "Ġroyalty": 40929, + "Ġroz": 9544, + "Ġrozm": 35234, + "Ġrozp": 47576, + "Ġrozum": 48797, + "Ġrpm": 47071, + "Ġru": 5420, + "Ġrua": 49467, + "Ġrub": 5915, + "Ġrubber": 11593, + "Ġrubbing": 29770, + "Ġrubbish": 29978, + "Ġrud": 32109, + "Ġrude": 18895, + "Ġrue": 43919, + "Ġrug": 18329, + "Ġrugby": 43895, + "Ġrugged": 42662, + "Ġruh": 36614, + "Ġruim": 33871, + "Ġruin": 15514, + "Ġruined": 17013, + "Ġruining": 38938, + "Ġruins": 24747, + "Ġrul": 8551, + "Ġrule": 4978, + "Ġruled": 20077, + "Ġruler": 19661, + "Ġrulers": 35009, + "Ġrules": 4474, + "Ġruling": 21437, + "Ġrum": 8347, + "Ġrumah": 44988, + "Ġrumor": 29639, + "Ġrumors": 21201, + "Ġrun": 1190, + "Ġrund": 23096, + "Ġrunner": 24376, + "Ġrunners": 33892, + "Ġrunning": 2614, + "Ġruns": 6676, + "Ġrunt": 49435, + "Ġrunter": 33295, + "Ġruntime": 34474, + "Ġrunway": 26642, + "Ġrupees": 24638, + "Ġrural": 11165, + "Ġrus": 38684, + "Ġrush": 9300, + "Ġrushed": 24421, + "Ġrushing": 25876, + "Ġrust": 15259, + "Ġrusty": 45394, + "Ġrut": 41324, + "Ġruth": 38225, + "Ġruthless": 47096, + "Ġry": 20791, + "Ġrze": 16081, + "Ġrzecz": 36833, + "Ġrzeczy": 26297, + "ĠrzeczywiÅĽcie": 44922, + "Ġráp": 18213, + "Ġrápido": 24893, + "Ġrä": 39442, + "Ġrätt": 38494, + "Ġrèg": 43659, + "Ġré": 3960, + "Ġréal": 18911, + "Ġréalité": 35677, + "Ġrécup": 43113, + "Ġrédu": 46369, + "Ġréf": 30170, + "Ġréfl": 48438, + "Ġrég": 17563, + "Ġrégion": 42669, + "Ġrép": 14243, + "Ġrépond": 26027, + "Ġrépondre": 40139, + "Ġréponse": 40967, + "Ġrés": 14415, + "Ġrése": 34044, + "Ġrésult": 33671, + "Ġréuss": 28099, + "Ġréussi": 46171, + "Ġrév": 38357, + "Ġrê": 38240, + "Ġró": 11416, + "Ġrównież": 20532, + "Ġróż": 19637, + "Ġróżne": 47760, + "Ġróżnych": 42602, + "Ġrôle": 41681, + "ĠrÄĻ": 41197, + "Ġrất": 25147, + "Ġrằng": 45019, + "Ġrá»ĵi": 19908, + "Ġs": 262, + "Ġsa": 601, + "Ġsaat": 23369, + "Ġsab": 5560, + "Ġsabe": 12275, + "Ġsabem": 46128, + "Ġsabemos": 27200, + "Ġsaben": 36670, + "Ġsaber": 12489, + "Ġsabes": 37790, + "Ġsabia": 36388, + "Ġsabor": 48648, + "Ġsabot": 37167, + "Ġsac": 4899, + "Ġsacar": 43823, + "Ġsach": 42510, + "Ġsack": 33209, + "Ġsacr": 7480, + "Ġsacred": 15757, + "Ġsacrific": 14108, + "Ġsacrifice": 11521, + "Ġsacrificed": 32021, + "Ġsacrifices": 25094, + "Ġsacrificing": 42294, + "Ġsad": 4227, + "Ġsaddle": 30459, + "Ġsadece": 32945, + "Ġsadly": 22023, + "Ġsadness": 22462, + "Ġsaf": 3597, + "Ġsafe": 3273, + "Ġsafeg": 32358, + "Ġsafeguard": 40153, + "Ġsafely": 11750, + "Ġsafer": 15856, + "Ġsafest": 37558, + "Ġsafety": 4514, + "Ġsag": 15274, + "Ġsaga": 34250, + "Ġsage": 19721, + "Ġsagen": 8360, + "Ġsagt": 15764, + "Ġsagte": 36771, + "Ġsah": 19292, + "Ġsai": 32417, + "Ġsaid": 848, + "Ġsail": 15758, + "Ġsailed": 49339, + "Ġsailing": 27452, + "Ġsailors": 42036, + "Ġsaint": 28374, + "Ġsaints": 29546, + "Ġsair": 29157, + "Ġsais": 11757, + "Ġsait": 23146, + "Ġsaja": 32617, + "Ġsak": 23366, + "Ġsake": 9717, + "Ġsaker": 40416, + "Ġsal": 1845, + "Ġsala": 37596, + "Ġsalad": 12604, + "Ġsalads": 48025, + "Ġsalah": 41688, + "Ġsalaries": 35057, + "Ġsalary": 15360, + "Ġsale": 8680, + "Ġsales": 5763, + "Ġsalir": 31514, + "Ġsaliva": 43540, + "Ġsalmon": 18518, + "Ġsalon": 27768, + "Ġsalsa": 32428, + "Ġsalt": 5139, + "Ġsalted": 39783, + "Ġsalts": 50191, + "Ġsalty": 18443, + "Ġsalud": 23933, + "Ġsalut": 45184, + "Ġsalute": 33673, + "Ġsalv": 26858, + "Ġsalvar": 48873, + "Ġsalvation": 17456, + "Ġsam": 3247, + "Ġsama": 17768, + "Ġsamb": 47822, + "Ġsame": 912, + "Ġsamen": 39405, + "Ġsamh": 49864, + "Ġsamma": 43407, + "Ġsamo": 36422, + "Ġsamp": 34098, + "Ġsampai": 38569, + "Ġsample": 6889, + "Ġsamples": 10938, + "Ġsampling": 21179, + "Ġsamurai": 48144, + "Ġsan": 6645, + "Ġsana": 15490, + "Ġsanct": 21794, + "Ġsanction": 39830, + "Ġsanctions": 21342, + "Ġsanctuary": 34390, + "Ġsand": 4932, + "Ġsandbox": 42115, + "Ġsanding": 44338, + "Ġsandwich": 11141, + "Ġsandwiches": 29022, + "Ġsandy": 47122, + "Ġsane": 45610, + "Ġsang": 9980, + "Ġsangat": 31917, + "Ġsangre": 45878, + "Ġsanit": 24533, + "Ġsanitation": 50146, + "Ġsanitizer": 47080, + "Ġsanity": 47892, + "Ġsank": 43746, + "Ġsano": 46942, + "Ġsans": 12177, + "Ġsant": 23044, + "Ġsanté": 30068, + "Ġsao": 33108, + "Ġsap": 18985, + "Ġsapp": 46938, + "Ġsar": 13782, + "Ġsarc": 36836, + "Ġsare": 38706, + "ĠsarÃł": 41338, + "Ġsash": 43780, + "Ġsat": 3227, + "Ġsatell": 11997, + "Ġsatellite": 16016, + "Ġsatellites": 24960, + "Ġsatisf": 5519, + "Ġsatisfaction": 18715, + "Ġsatisfactory": 48614, + "Ġsatisfied": 11239, + "Ġsatisfies": 44271, + "Ġsatisfy": 19319, + "Ġsatisfying": 18348, + "Ġsatu": 27679, + "Ġsatur": 21160, + "Ġsaturated": 25408, + "Ġsaturation": 27090, + "Ġsau": 17828, + "Ġsauc": 49181, + "Ġsauce": 4880, + "Ġsauces": 41447, + "Ġsaud": 47863, + "Ġsauna": 46654, + "Ġsaus": 16534, + "Ġsausage": 20526, + "Ġsausages": 41157, + "Ġsaute": 41223, + "Ġsav": 11163, + "Ġsava": 44908, + "Ġsavage": 42512, + "Ġsave": 3155, + "Ġsaved": 6624, + "Ġsaves": 19155, + "Ġsavez": 30503, + "Ġsaving": 6816, + "Ġsavings": 13454, + "Ġsavior": 41327, + "Ġsavoir": 19345, + "Ġsavory": 33944, + "Ġsavvy": 47506, + "Ġsaw": 1866, + "Ġsax": 42119, + "Ġsay": 584, + "Ġsaya": 9160, + "Ġsayin": 44364, + "Ġsaying": 1566, + "Ġsays": 1619, + "Ġsaç": 48679, + "Ġsaúde": 39937, + "ĠsaÄŁ": 30318, + "Ġsc": 795, + "Ġsca": 4216, + "Ġscaff": 40889, + "Ġscaffold": 44094, + "Ġscal": 15664, + "Ġscalable": 38481, + "Ġscalar": 39684, + "Ġscale": 4373, + "Ġscaled": 36039, + "Ġscales": 17408, + "Ġscaling": 21589, + "Ġscall": 30509, + "Ġscalp": 31972, + "Ġscam": 26917, + "Ġscan": 11049, + "Ġscand": 40273, + "Ġscandal": 27922, + "Ġscanned": 45089, + "Ġscanner": 30211, + "Ġscanning": 27019, + "Ġscans": 35116, + "Ġscar": 10569, + "Ġscarce": 41340, + "Ġscarcity": 44181, + "Ġscare": 17185, + "Ġscared": 5338, + "Ġscares": 35721, + "Ġscarf": 29086, + "Ġscariest": 47755, + "Ġscars": 31353, + "Ġscary": 6958, + "Ġscatter": 34951, + "Ġscattered": 21986, + "Ġscattering": 42314, + "Ġscen": 4191, + "Ġscenario": 9005, + "Ġscenarios": 15077, + "Ġscene": 4145, + "Ġscenery": 25805, + "Ġscenes": 8026, + "Ġscent": 19040, + "Ġsch": 956, + "Ġschaffen": 30888, + "Ġschauen": 25672, + "Ġschaut": 46064, + "Ġsche": 25690, + "Ġsched": 5292, + "Ġschedul": 12000, + "Ġschedule": 7567, + "Ġscheduled": 15678, + "Ġschedules": 28078, + "Ġscheduling": 29055, + "Ġscheint": 47906, + "Ġschem": 22627, + "Ġschema": 34078, + "Ġschematic": 44739, + "Ġscheme": 12232, + "Ġschemes": 26954, + "Ġschizophren": 41532, + "Ġschizophrenia": 49022, + "Ġschle": 22664, + "Ġschlecht": 32427, + "Ġschlim": 37260, + "Ġschlimm": 48821, + "Ġschme": 46459, + "Ġschne": 28643, + "Ġschnell": 17589, + "Ġschneller": 43865, + "Ġschol": 6946, + "Ġscholar": 17912, + "Ġscholarly": 39589, + "Ġscholars": 8553, + "Ġscholarship": 16178, + "Ġscholarships": 28474, + "Ġschon": 4981, + "Ġschool": 1395, + "Ġschooling": 41677, + "Ġschools": 4656, + "Ġschreiben": 48546, + "Ġschw": 17932, + "Ġschwer": 23809, + "Ġschwier": 27546, + "Ġschwierig": 37845, + "Ġschö": 25032, + "Ġschön": 13527, + "Ġschöne": 41152, + "Ġsci": 2180, + "Ġscience": 3497, + "Ġsciences": 17677, + "Ġscient": 3989, + "Ġscientific": 8134, + "Ġscientifically": 39719, + "Ġscientist": 12662, + "Ġscientists": 7708, + "Ġscissors": 16066, + "Ġscold": 26437, + "Ġscolded": 49283, + "Ġscoop": 19555, + "Ġscoot": 21375, + "Ġscooter": 30441, + "Ġscope": 11923, + "Ġscor": 38629, + "Ġscore": 6175, + "Ġscored": 18139, + "Ġscores": 13444, + "Ġscoring": 22358, + "Ġscorp": 46092, + "Ġscout": 34392, + "Ġscr": 5918, + "Ġscra": 13943, + "Ġscrambled": 49127, + "Ġscrap": 23138, + "Ġscrape": 32827, + "Ġscraping": 43738, + "Ġscraps": 45204, + "Ġscratch": 8459, + "Ġscratched": 40513, + "Ġscratches": 33695, + "Ġscratching": 29699, + "Ġscream": 7291, + "Ġscreamed": 41069, + "Ġscreaming": 12636, + "Ġscreams": 22832, + "Ġscree": 38323, + "Ġscreen": 2568, + "Ġscreening": 17732, + "Ġscreens": 11171, + "Ġscreenshot": 27712, + "Ġscreenshots": 40661, + "Ġscrew": 5630, + "Ġscrewdriver": 27282, + "Ġscrewed": 20331, + "Ġscrews": 13050, + "Ġscri": 5545, + "Ġscrib": 39435, + "Ġscript": 5755, + "Ġscripts": 23294, + "Ġscripture": 24783, + "Ġscriptures": 29969, + "Ġscroll": 11369, + "Ġscrolling": 29053, + "Ġscrub": 24163, + "Ġscrut": 28949, + "Ġscrutiny": 38615, + "Ġsculpt": 12613, + "Ġsculpture": 22972, + "Ġsculptures": 37544, + "Ġscène": 42424, + "Ġse": 369, + "Ġsea": 4158, + "Ġseafood": 23206, + "Ġseal": 12185, + "Ġsealed": 21514, + "Ġsealing": 48678, + "Ġseals": 32031, + "Ġseam": 12337, + "Ġseamless": 28677, + "Ġseamlessly": 38083, + "Ġseams": 33547, + "Ġsean": 37670, + "Ġsearch": 3164, + "Ġsearched": 22961, + "Ġsearches": 26701, + "Ġsearching": 10808, + "Ġseas": 22535, + "Ġseason": 3196, + "Ġseasonal": 27421, + "Ġseasoned": 30111, + "Ġseasoning": 23421, + "Ġseasons": 15050, + "Ġseat": 6121, + "Ġseated": 20959, + "Ġseating": 32430, + "Ġseats": 11069, + "Ġseaweed": 29449, + "Ġseb": 48049, + "Ġsebagai": 48246, + "Ġsebel": 46122, + "Ġseben": 46031, + "Ġsec": 907, + "Ġsechs": 41945, + "Ġsecond": 1150, + "Ġsecondary": 11396, + "Ġsecondly": 26246, + "Ġsecondo": 41601, + "Ġseconds": 3949, + "Ġsecre": 34432, + "Ġsecret": 4054, + "Ġsecretary": 15691, + "Ġsecretly": 22611, + "Ġsecrets": 14093, + "Ġsect": 22610, + "Ġsection": 3541, + "Ġsections": 10863, + "Ġsector": 6977, + "Ġsectors": 18373, + "Ġsecular": 25734, + "Ġsecure": 7144, + "Ġsecured": 22905, + "Ġsecurely": 38348, + "Ġsecuring": 33640, + "Ġsecurities": 38597, + "Ġsecurity": 3825, + "Ġsed": 9643, + "Ġsedan": 29344, + "Ġsediment": 32362, + "Ġsee": 536, + "Ġseed": 8871, + "Ġseeds": 9203, + "Ġseeing": 2577, + "Ġseek": 8075, + "Ġseekers": 47915, + "Ġseeking": 11670, + "Ġseeks": 28840, + "Ġseem": 1643, + "Ġseemed": 6576, + "Ġseemingly": 18709, + "Ġseems": 2544, + "Ġseen": 1612, + "Ġsees": 8194, + "Ġseg": 3896, + "Ġsegment": 9469, + "Ġsegments": 19904, + "Ġsegreg": 37630, + "Ġsegregated": 47370, + "Ġsegregation": 34317, + "Ġsegu": 8878, + "Ġsegue": 33850, + "Ġseguinte": 32433, + "Ġseguir": 18584, + "Ġsegunda": 21978, + "Ġsegundo": 17954, + "Ġsegundos": 40108, + "Ġsegur": 22179, + "Ġsegurança": 49538, + "Ġseguridad": 35415, + "Ġseguro": 31424, + "Ġsegún": 36570, + "Ġsehe": 35995, + "Ġsehen": 11333, + "Ġsehr": 5499, + "Ġsei": 10842, + "Ġseid": 38041, + "Ġsein": 6195, + "Ġseine": 15925, + "Ġseinem": 29187, + "Ġseinen": 24427, + "Ġseiner": 23114, + "Ġseis": 28233, + "Ġseism": 40159, + "Ġseit": 16452, + "Ġseiz": 27610, + "Ġseize": 33413, + "Ġseized": 33912, + "Ġseizure": 42522, + "Ġseizures": 44215, + "Ġseja": 13459, + "Ġsek": 17215, + "Ġsekali": 45016, + "Ġsekarang": 29047, + "Ġsel": 5851, + "Ġselber": 23888, + "Ġselbst": 13053, + "Ġseldom": 47717, + "Ġsele": 23264, + "Ġselect": 3048, + "Ġselected": 8209, + "Ġselecting": 18182, + "Ġselection": 9450, + "Ġselections": 47829, + "Ġselective": 33930, + "Ġself": 2698, + "Ġselfie": 22147, + "Ġselfies": 34814, + "Ġselfish": 19074, + "Ġsell": 3607, + "Ġseller": 23600, + "Ġsellers": 31276, + "Ġselling": 6511, + "Ġsells": 20897, + "Ġselon": 37391, + "Ġselv": 33277, + "Ġselves": 41900, + "Ġsem": 4361, + "Ġsemaine": 28681, + "Ġsemaines": 40715, + "Ġsemana": 20205, + "Ġsemanas": 42507, + "Ġsemantic": 47982, + "Ġsemb": 20775, + "Ġsembla": 49277, + "Ġsemble": 38328, + "Ġsemester": 11894, + "Ġsemi": 12909, + "Ġsemic": 27515, + "Ġsemicondu": 36924, + "Ġsemiconductor": 45310, + "Ġsemin": 18288, + "Ġseminar": 29235, + "Ġseminars": 43112, + "Ġsempre": 9553, + "Ġsemua": 28195, + "Ġsen": 3151, + "Ġsenate": 33609, + "Ġsenator": 24664, + "Ġsenators": 32221, + "Ġsencill": 46749, + "Ġsend": 2845, + "Ġsending": 7750, + "Ġsendiri": 39536, + "Ġsendo": 22589, + "Ġsends": 14790, + "Ġsenhor": 46464, + "Ġseni": 21897, + "Ġsenin": 19402, + "Ġsenior": 7965, + "Ġseniors": 21069, + "Ġsens": 2923, + "Ġsensation": 20069, + "Ġsensational": 47507, + "Ġsensations": 36642, + "Ġsense": 2020, + "Ġsenses": 17057, + "Ġsensible": 25380, + "Ġsensing": 30654, + "Ġsensit": 17039, + "Ġsensitive": 9477, + "Ġsensitivity": 19392, + "Ġsensor": 10200, + "Ġsensors": 14840, + "Ġsensory": 27233, + "Ġsent": 2279, + "Ġsente": 47214, + "Ġsentence": 8174, + "Ġsentenced": 30954, + "Ġsentences": 16579, + "Ġsentido": 19850, + "Ġsentiment": 16149, + "Ġsentimental": 42823, + "Ġsentiments": 41146, + "Ġsentir": 23963, + "Ġsenza": 36208, + "Ġsepar": 3128, + "Ġseparate": 4994, + "Ġseparated": 12005, + "Ġseparately": 14759, + "Ġseparates": 34149, + "Ġseparating": 29279, + "Ġseparation": 14634, + "Ġseper": 24418, + "Ġseperti": 28693, + "Ġsept": 23891, + "Ġsequ": 5123, + "Ġsequel": 20622, + "Ġsequence": 8310, + "Ġsequences": 22978, + "Ġsequencing": 32693, + "Ġsequential": 42881, + "Ġser": 816, + "Ġsera": 15021, + "Ġserait": 23139, + "Ġseres": 44721, + "Ġserge": 46463, + "Ġseria": 20809, + "Ġserial": 17436, + "Ġserie": 23030, + "Ġseries": 2638, + "Ġserio": 49531, + "Ġserious": 3156, + "Ġseriously": 6638, + "Ġseriousness": 44880, + "Ġsermon": 34610, + "Ġseront": 39400, + "Ġserpent": 38315, + "Ġsert": 38806, + "Ġserum": 32755, + "Ġserv": 1658, + "Ġservant": 17896, + "Ġservants": 21705, + "Ġserve": 4596, + "Ġserved": 7584, + "Ġserver": 7154, + "Ġservers": 15909, + "Ġserves": 13451, + "Ġservi": 37076, + "Ġservice": 2643, + "Ġservices": 3328, + "Ġservicio": 43078, + "Ġservicios": 42722, + "Ġserving": 8148, + "Ġservir": 29463, + "Ġserá": 16502, + "ĠserÃŃa": 23679, + "Ġses": 5385, + "Ġsesame": 21994, + "Ġsesi": 13315, + "Ġsesleri": 35700, + "Ġsession": 5481, + "Ġsessions": 11081, + "Ġset": 992, + "Ġsets": 6352, + "Ġsett": 5584, + "Ġsetting": 3287, + "Ġsettings": 6257, + "Ġsettle": 11852, + "Ġsettled": 14819, + "Ġsettlement": 18130, + "Ġsettlements": 35558, + "Ġsettlers": 43798, + "Ġsettling": 33841, + "Ġsetup": 8657, + "Ġsetups": 46832, + "Ġsetzen": 35877, + "Ġsetzt": 49099, + "Ġseu": 7986, + "Ġseul": 24448, + "Ġseule": 18800, + "Ġseulement": 27772, + "Ġseus": 17004, + "Ġsev": 15340, + "Ġseva": 42465, + "Ġseven": 3407, + "Ġsevent": 12100, + "Ġseventeen": 39532, + "Ġseventh": 17875, + "Ġseventy": 25662, + "Ġsever": 2802, + "Ġseveral": 2940, + "Ġsevere": 8922, + "Ġseverely": 26271, + "Ġseverity": 35179, + "Ġsevi": 43812, + "Ġsew": 15472, + "Ġsewer": 37079, + "Ġsewing": 19311, + "Ġsewn": 46946, + "Ġsex": 3260, + "Ġsext": 42826, + "Ġsexual": 6701, + "Ġsexuality": 25426, + "Ġsexually": 26791, + "Ġsexy": 13701, + "Ġseç": 43065, + "Ġseñ": 13830, + "Ġseñor": 22188, + "Ġseñora": 41094, + "Ġsf": 47095, + "Ġsh": 402, + "Ġsha": 3230, + "Ġshack": 40369, + "Ġshad": 5744, + "Ġshade": 11466, + "Ġshaded": 48067, + "Ġshades": 20639, + "Ġshading": 30556, + "Ġshadow": 8576, + "Ġshadows": 14740, + "Ġshady": 41853, + "Ġshaft": 18467, + "Ġshake": 10283, + "Ġshaken": 40971, + "Ġshakes": 37891, + "Ġshaking": 15415, + "Ġshaky": 44785, + "Ġshall": 4393, + "Ġshallow": 20488, + "Ġsham": 29758, + "Ġshame": 10069, + "Ġshameful": 49600, + "Ġshameless": 40164, + "Ġshampoo": 27484, + "Ġshap": 6706, + "Ġshape": 3909, + "Ġshaped": 13475, + "Ġshapes": 10854, + "Ġshaping": 25945, + "Ġshar": 16768, + "Ġshare": 2073, + "Ġshared": 5507, + "Ġshareholders": 33294, + "Ġshares": 12182, + "Ġsharing": 5414, + "Ġshark": 13327, + "Ġsharks": 26312, + "Ġsharp": 8199, + "Ġsharpen": 31570, + "Ġsharper": 44670, + "Ġsharply": 42893, + "Ġshattered": 35209, + "Ġshave": 25544, + "Ġshaved": 37980, + "Ġshaving": 36481, + "Ġshe": 750, + "Ġshear": 24082, + "Ġshed": 14951, + "Ġshedding": 49934, + "Ġsheep": 14213, + "Ġsheer": 23061, + "Ġsheet": 8193, + "Ġsheets": 15421, + "Ġshel": 9180, + "Ġshelf": 15222, + "Ġshell": 8720, + "Ġshells": 22523, + "Ġshelter": 13341, + "Ġshelters": 36643, + "Ġshelves": 24349, + "Ġshepherd": 40317, + "Ġsher": 29855, + "Ġsheriff": 37103, + "Ġshield": 10257, + "Ġshields": 33466, + "Ġshift": 5513, + "Ġshifted": 18892, + "Ġshifting": 17573, + "Ġshifts": 19201, + "Ġshimmer": 35088, + "Ġshin": 37124, + "Ġshine": 12207, + "Ġshines": 28056, + "Ġshining": 18269, + "Ġshiny": 16997, + "Ġship": 5374, + "Ġshipment": 49991, + "Ġshipped": 25312, + "Ġshipping": 14122, + "Ġships": 11434, + "Ġshirt": 8336, + "Ġshirts": 20832, + "Ġshit": 4611, + "Ġshitty": 30748, + "Ġsho": 2223, + "Ġshock": 5588, + "Ġshocked": 12763, + "Ġshocking": 18776, + "Ġshocks": 37066, + "Ġshoe": 12796, + "Ġshoes": 6654, + "Ġshook": 28438, + "Ġshoot": 3076, + "Ġshooter": 24680, + "Ġshooters": 45526, + "Ġshooting": 5942, + "Ġshootings": 44314, + "Ġshoots": 20704, + "Ġshop": 3945, + "Ġshopping": 8688, + "Ġshops": 14457, + "Ġshore": 17805, + "Ġshores": 44247, + "Ġshort": 2099, + "Ġshortage": 24708, + "Ġshortages": 46765, + "Ġshortcut": 24822, + "Ġshortcuts": 34620, + "Ġshorten": 39632, + "Ġshortened": 45183, + "Ġshorter": 11639, + "Ġshortest": 31875, + "Ġshortly": 13392, + "Ġshorts": 19848, + "Ġshot": 3347, + "Ġshotgun": 24734, + "Ġshots": 8305, + "Ġshould": 820, + "Ġshoulder": 7948, + "Ġshoulders": 10245, + "Ġshouldn": 4659, + "Ġshout": 8043, + "Ġshouted": 37310, + "Ġshouting": 20382, + "Ġshove": 35648, + "Ġshovel": 29789, + "Ġshow": 855, + "Ġshowc": 29794, + "Ġshowcase": 20388, + "Ġshowed": 4712, + "Ġshower": 10128, + "Ġshowers": 29499, + "Ġshowing": 4099, + "Ġshown": 4898, + "Ġshows": 3110, + "Ġshr": 9884, + "Ġshred": 21567, + "Ġshredded": 39091, + "Ġshrim": 13958, + "Ġshrimp": 15600, + "Ġshrine": 37812, + "Ġshrink": 23060, + "Ġshrinking": 41684, + "Ġshroud": 50077, + "Ġshuffle": 39426, + "Ġshut": 5309, + "Ġshutdown": 34927, + "Ġshuts": 48590, + "Ġshutter": 25517, + "Ġshutting": 36057, + "Ġshuttle": 26728, + "Ġshy": 12685, + "Ġsi": 1511, + "Ġsia": 25176, + "Ġsiamo": 33459, + "Ġsib": 35505, + "Ġsibling": 39409, + "Ġsiblings": 20571, + "Ġsic": 33579, + "Ġsich": 3041, + "Ġsicher": 18623, + "Ġsick": 4998, + "Ġsickness": 25611, + "Ġsid": 20822, + "Ġside": 1252, + "Ġsided": 41651, + "Ġsides": 4881, + "Ġsidewalk": 25360, + "Ġsideways": 26092, + "Ġsido": 14444, + "Ġsie": 2804, + "Ġsiebie": 39137, + "Ġsiege": 34147, + "Ġsieht": 14289, + "Ġsiellä": 42771, + "Ġsiempre": 12758, + "Ġsiendo": 31423, + "Ġsiento": 40340, + "Ġsiete": 40719, + "Ġsig": 4556, + "Ġsigh": 29472, + "Ġsighs": 44705, + "Ġsight": 7860, + "Ġsights": 29363, + "Ġsiglo": 48578, + "Ġsigma": 12771, + "Ġsign": 1465, + "Ġsignal": 6358, + "Ġsignaling": 38639, + "Ġsignals": 12354, + "Ġsignature": 13397, + "Ġsignatures": 32322, + "Ġsigned": 8175, + "Ġsignific": 3350, + "Ġsignifica": 19957, + "Ġsignificance": 17687, + "Ġsignificant": 4776, + "Ġsignificantly": 10591, + "Ġsigning": 13393, + "Ġsigns": 7880, + "Ġsigu": 21152, + "Ġsigue": 34532, + "Ġsigui": 39578, + "Ġsiguiente": 25666, + "Ġsih": 25821, + "Ġsiihen": 40581, + "Ġsiinä": 41464, + "Ġsiis": 47590, + "Ġsiitä": 32705, + "Ġsil": 3425, + "Ġsilence": 12239, + "Ġsilent": 12784, + "Ġsilently": 40087, + "Ġsilhouette": 38275, + "Ġsilic": 26484, + "Ġsilicon": 22848, + "Ġsilicone": 28778, + "Ġsilk": 24395, + "Ġsill": 37160, + "Ġsilly": 11774, + "Ġsilos": 48893, + "Ġsilver": 8753, + "Ġsim": 1034, + "Ġsimilar": 2531, + "Ġsimilarities": 24197, + "Ġsimilarity": 32194, + "Ġsimilarly": 14138, + "Ġsimmer": 29835, + "Ġsimpl": 6883, + "Ġsimple": 2199, + "Ġsimplement": 24208, + "Ġsimplemente": 33190, + "Ġsimpler": 18587, + "Ġsimples": 21730, + "Ġsimplesmente": 44482, + "Ġsimplest": 22811, + "Ġsimplicity": 25632, + "Ġsimplified": 26335, + "Ġsimplify": 20460, + "Ġsimplistic": 44199, + "Ġsimply": 2935, + "Ġsimulate": 27817, + "Ġsimulated": 41713, + "Ġsimulation": 16575, + "Ġsimulations": 35138, + "Ġsimulator": 32974, + "Ġsimult": 13899, + "Ġsimultaneous": 46218, + "Ġsimultaneously": 16561, + "Ġsin": 3343, + "Ġsina": 43400, + "Ġsince": 1670, + "Ġsincer": 30220, + "Ġsincere": 16941, + "Ġsincerely": 30694, + "Ġsincerity": 44040, + "Ġsind": 3290, + "Ġsine": 18609, + "Ġsinful": 41861, + "Ġsing": 1522, + "Ġsinger": 11564, + "Ġsingers": 24275, + "Ġsinging": 6726, + "Ġsingle": 2167, + "Ġsingles": 36334, + "Ġsings": 23250, + "Ġsingular": 20010, + "Ġsini": 30368, + "Ġsinister": 45727, + "Ġsink": 9500, + "Ġsinking": 28148, + "Ġsinks": 43162, + "Ġsinn": 47066, + "Ġsinner": 41293, + "Ġsinners": 41004, + "Ġsino": 18108, + "Ġsinon": 46035, + "Ġsins": 13815, + "Ġsint": 41259, + "Ġsinus": 41503, + "Ġsip": 29668, + "Ġsir": 4735, + "Ġsis": 26288, + "Ġsist": 10555, + "Ġsistem": 45758, + "Ġsistema": 13245, + "Ġsistemas": 48720, + "Ġsister": 4892, + "Ġsisters": 11589, + "Ġsit": 1394, + "Ġsitcom": 49530, + "Ġsite": 3621, + "Ġsites": 7533, + "Ġsitio": 40621, + "Ġsits": 12696, + "Ġsitt": 43709, + "Ġsitten": 23186, + "Ġsitter": 47335, + "Ġsitting": 3798, + "Ġsitu": 2054, + "Ġsituación": 29343, + "Ġsituated": 30143, + "Ġsituation": 2590, + "Ġsituations": 6851, + "Ġsituação": 36768, + "Ġsitzen": 44998, + "Ġsitzt": 49734, + "Ġsitä": 26838, + "Ġsix": 2309, + "Ġsixt": 13074, + "Ġsixteen": 27847, + "Ġsixth": 15102, + "Ġsixty": 21390, + "Ġsiz": 13723, + "Ġsize": 2744, + "Ġsized": 20004, + "Ġsizes": 11602, + "Ġsizi": 45327, + "Ġsizin": 36312, + "Ġsizing": 45435, + "Ġsizz": 43828, + "Ġsiè": 31302, + "Ġsiècle": 40830, + "ĠsiÄĻ": 3244, + "Ġsj": 20601, + "Ġsjäl": 30700, + "Ġsjälv": 39298, + "Ġsk": 1110, + "Ġska": 9958, + "Ġskal": 16890, + "Ġskate": 18237, + "Ġskateboard": 32204, + "Ġskating": 29103, + "Ġske": 8756, + "Ġskelet": 32321, + "Ġskeleton": 25204, + "Ġskeletons": 45538, + "Ġskept": 19128, + "Ġskeptical": 28601, + "Ġsket": 32804, + "Ġsketch": 12325, + "Ġsketches": 34547, + "Ġski": 14274, + "Ġskies": 25861, + "Ġskiing": 32326, + "Ġskill": 5389, + "Ġskilled": 19690, + "Ġskills": 3942, + "Ġskin": 3178, + "Ġskincare": 29461, + "Ġskinny": 25193, + "Ġskins": 27888, + "Ġskip": 10023, + "Ġskipped": 30193, + "Ġskipping": 31533, + "Ġskirt": 20134, + "Ġskirts": 48734, + "Ġskull": 11743, + "Ġskulle": 20750, + "Ġsky": 5443, + "Ġskys": 48227, + "Ġsl": 1061, + "Ġsla": 8039, + "Ġslab": 38616, + "Ġslack": 29767, + "Ġslam": 25617, + "Ġslammed": 50196, + "Ġslang": 42517, + "Ġslap": 21075, + "Ġslapped": 43309, + "Ġslash": 17330, + "Ġslate": 39118, + "Ġslaughter": 26609, + "Ġslave": 14777, + "Ġslavery": 15641, + "Ġslaves": 18394, + "Ġsle": 2426, + "Ġsled": 46242, + "Ġslee": 12931, + "Ġsleek": 43464, + "Ġsleep": 2817, + "Ġsleeping": 8296, + "Ġsleeps": 37991, + "Ġsleepy": 24908, + "Ġsleeve": 21138, + "Ġsleeves": 24555, + "Ġslept": 17400, + "Ġslic": 12377, + "Ġslice": 13153, + "Ġsliced": 27098, + "Ġslices": 19793, + "Ġslicing": 46586, + "Ġslick": 37406, + "Ġslide": 4137, + "Ġslider": 26046, + "Ġslides": 9788, + "Ġsliding": 21169, + "Ġslight": 4036, + "Ġslightest": 41040, + "Ġslightly": 4748, + "Ġslim": 25357, + "Ġslime": 20650, + "Ġslip": 11140, + "Ġslipp": 20129, + "Ġslipped": 28989, + "Ġslippers": 45670, + "Ġslippery": 28100, + "Ġslipping": 36779, + "Ġslips": 44690, + "Ġslit": 43182, + "Ġslog": 49760, + "Ġslogan": 33052, + "Ġslop": 21254, + "Ġslope": 13525, + "Ġslopes": 37725, + "Ġsloppy": 43684, + "Ġslot": 14747, + "Ġslots": 24266, + "Ġslow": 2964, + "Ġslowed": 32057, + "Ġslower": 14009, + "Ġslowing": 26958, + "Ġslowly": 5692, + "Ġslows": 35789, + "Ġslut": 41496, + "Ġsm": 899, + "Ġsmack": 36348, + "Ġsmall": 1359, + "Ġsmaller": 4356, + "Ġsmallest": 16998, + "Ġsmart": 4069, + "Ġsmarter": 20294, + "Ġsmartest": 41491, + "Ġsmartphone": 13307, + "Ġsmartphones": 26782, + "Ġsmash": 17960, + "Ġsmashed": 33269, + "Ġsmashing": 43316, + "Ġsme": 41818, + "Ġsmell": 4316, + "Ġsmelled": 40453, + "Ġsmelling": 35471, + "Ġsmells": 10036, + "Ġsmile": 7563, + "Ġsmiled": 35132, + "Ġsmiles": 28083, + "Ġsmiling": 16005, + "Ġsmo": 24101, + "Ġsmok": 32073, + "Ġsmoke": 8439, + "Ġsmoked": 27205, + "Ġsmokes": 49592, + "Ġsmoking": 14055, + "Ġsmooth": 5508, + "Ġsmoother": 28640, + "Ġsmoothie": 36328, + "Ġsmoothly": 19565, + "Ġsn": 2406, + "Ġsna": 14528, + "Ġsnack": 13288, + "Ġsnacks": 16160, + "Ġsnail": 42555, + "Ġsnake": 12650, + "Ġsnakes": 21817, + "Ġsnap": 13650, + "Ġsnapped": 41396, + "Ġsnapping": 42727, + "Ġsnaps": 19206, + "Ġsnapshot": 30163, + "Ġsnare": 45018, + "Ġsnatch": 46328, + "Ġsne": 9244, + "Ġsneak": 13164, + "Ġsneakers": 35331, + "Ġsneaking": 48525, + "Ġsneaky": 39518, + "Ġsneez": 49299, + "Ġsneeze": 50076, + "Ġsnel": 42582, + "Ġsniff": 31101, + "Ġsnip": 37482, + "Ġsniper": 32441, + "Ġsnipp": 35623, + "Ġsno": 43287, + "Ġsnow": 5756, + "Ġsnowball": 46143, + "Ġsnowfl": 44124, + "Ġsnug": 37069, + "Ġso": 370, + "Ġsoak": 22769, + "Ġsoaked": 27368, + "Ġsoaking": 40580, + "Ġsoap": 14587, + "Ġsob": 18253, + "Ġsober": 26212, + "Ġsobie": 13652, + "Ġsobre": 5473, + "Ġsoc": 13598, + "Ġsoccer": 15469, + "Ġsoci": 3075, + "Ġsociais": 45179, + "Ġsocial": 2093, + "Ġsociale": 41889, + "Ġsociales": 29623, + "Ġsocialism": 36112, + "Ġsocialist": 33981, + "Ġsocially": 21397, + "Ġsociaux": 47460, + "Ġsocied": 26445, + "Ġsociedad": 42306, + "Ġsociedade": 45789, + "Ġsociet": 14051, + "Ġsocietal": 33472, + "Ġsocieties": 19329, + "Ġsociety": 4086, + "Ġsocio": 44303, + "Ġsocioe": 46327, + "Ġsociology": 41744, + "Ġsociété": 32120, + "Ġsock": 35302, + "Ġsocket": 19741, + "Ġsocks": 17564, + "Ġsod": 15047, + "Ġsoda": 17192, + "Ġsodium": 20265, + "Ġsof": 37259, + "Ġsofa": 28668, + "Ġsofort": 33168, + "Ġsoft": 2787, + "Ġsoften": 31356, + "Ġsofter": 23119, + "Ġsoftly": 30832, + "Ġsoftware": 4722, + "Ġsog": 38440, + "Ġsogar": 19485, + "Ġsogen": 36479, + "Ġsogenan": 37467, + "Ġsoi": 46098, + "Ġsoient": 42711, + "Ġsoil": 6704, + "Ġsoils": 31324, + "Ġsoir": 27105, + "Ġsoit": 12703, + "Ġsok": 41513, + "Ġsol": 1404, + "Ġsola": 34162, + "Ġsolamente": 27814, + "Ġsolar": 7936, + "Ġsolche": 29813, + "Ġsolchen": 46281, + "Ġsold": 3718, + "Ġsolder": 38128, + "Ġsoldier": 15632, + "Ġsoldiers": 8892, + "Ġsole": 12321, + "Ġsolely": 23309, + "Ġsolem": 43519, + "Ġsolemn": 46694, + "Ġsolic": 23665, + "Ġsolid": 5100, + "Ġsolidarity": 27220, + "Ġsolids": 38536, + "Ġsolitary": 44155, + "Ġsoll": 7114, + "Ġsollen": 24713, + "Ġsollte": 18042, + "Ġsollten": 29096, + "Ġsolo": 6944, + "Ġsolu": 24807, + "Ġsolution": 3827, + "Ġsolutions": 6547, + "Ġsolve": 5039, + "Ġsolved": 13041, + "Ġsolvent": 33575, + "Ġsolves": 39890, + "Ġsolving": 12606, + "Ġsom": 3307, + "Ġsome": 512, + "Ġsomebody": 2618, + "Ġsomeday": 19412, + "Ġsomehow": 6063, + "Ġsomeone": 1580, + "Ġsomeplace": 37126, + "Ġsomet": 692, + "Ġsomethin": 39374, + "Ġsomething": 746, + "Ġsometime": 15053, + "Ġsometimes": 2171, + "Ġsomewhat": 8344, + "Ġsomewhere": 4079, + "Ġsomm": 41854, + "Ġsommes": 25232, + "Ġsomos": 25244, + "Ġson": 1872, + "Ġsondern": 11465, + "Ġsong": 2153, + "Ġsongs": 5781, + "Ġsonic": 48725, + "Ġsono": 9259, + "Ġsonra": 13800, + "Ġsons": 13476, + "Ġsonst": 26309, + "Ġsont": 4900, + "Ġsoon": 2321, + "Ġsooner": 15324, + "Ġsoort": 43168, + "Ġsoothing": 40704, + "Ġsoph": 12582, + "Ġsophistic": 15572, + "Ġsophisticated": 16950, + "Ġsophom": 32931, + "Ġsophomore": 35798, + "Ġsopr": 37375, + "Ġsoprattutto": 50002, + "Ġsor": 9359, + "Ġsorcer": 41349, + "Ġsore": 22468, + "Ġsorgen": 47972, + "Ġsorrow": 23027, + "Ġsorry": 2597, + "Ġsort": 1333, + "Ġsorta": 33425, + "Ġsorte": 25559, + "Ġsorted": 25462, + "Ġsortie": 45662, + "Ġsorting": 32411, + "Ġsortir": 26906, + "Ġsorts": 7527, + "Ġsos": 27226, + "Ġsost": 41585, + "Ġsotto": 43754, + "Ġsou": 6926, + "Ġsouff": 36966, + "Ġsought": 17532, + "Ġsouha": 45214, + "Ġsoul": 5133, + "Ġsouls": 16588, + "Ġsound": 1626, + "Ġsounded": 17714, + "Ġsounding": 24931, + "Ġsounds": 3263, + "Ġsoundtrack": 27029, + "Ġsoup": 7884, + "Ġsour": 11006, + "Ġsource": 4009, + "Ġsources": 7139, + "Ġsous": 16686, + "Ġsout": 29350, + "Ġsouth": 7377, + "Ġsoutheast": 39014, + "Ġsouthern": 13456, + "Ġsouthwest": 34363, + "Ġsouven": 46509, + "Ġsouvenir": 44361, + "Ġsouvent": 20847, + "Ġsovere": 17894, + "Ġsovereign": 28756, + "Ġsovereignty": 27862, + "Ġsow": 19766, + "Ġsowie": 35874, + "Ġsoy": 8812, + "Ġsoybean": 44227, + "Ġsoybeans": 46706, + "Ġsozial": 31541, + "Ġsozusagen": 33762, + "Ġsp": 637, + "Ġspa": 32543, + "Ġspac": 39404, + "Ġspace": 1901, + "Ġspacecraft": 22910, + "Ġspaced": 43766, + "Ġspaces": 7673, + "Ġspaceship": 39185, + "Ġspacing": 27739, + "Ġspacious": 36801, + "Ġspaghetti": 28556, + "Ġspam": 24028, + "Ġspan": 16174, + "Ġspann": 33360, + "Ġspannend": 49027, + "Ġspanning": 47626, + "Ġspans": 44086, + "Ġspar": 45954, + "Ġspare": 13798, + "Ġspared": 49577, + "Ġspark": 9908, + "Ġsparked": 39653, + "Ġsparkle": 48558, + "Ġsparkling": 39967, + "Ġsparks": 44102, + "Ġspat": 15000, + "Ġspatial": 23598, + "Ġspatula": 33072, + "Ġspawn": 17088, + "Ġspe": 768, + "Ġspeak": 1710, + "Ġspeaker": 8145, + "Ġspeakers": 9518, + "Ġspeaking": 4124, + "Ġspeaks": 10789, + "Ġspear": 26993, + "Ġspec": 1608, + "Ġspecial": 2121, + "Ġspecialist": 17008, + "Ġspecialists": 25476, + "Ġspecialize": 37938, + "Ġspecialized": 19813, + "Ġspecially": 22549, + "Ġspecialty": 22000, + "Ġspecies": 6172, + "Ġspecific": 2685, + "Ġspecifically": 4682, + "Ġspecification": 31256, + "Ġspecifications": 29448, + "Ġspecifics": 28454, + "Ġspecified": 22206, + "Ġspecify": 16500, + "Ġspecimen": 34204, + "Ġspecimens": 41007, + "Ġspecjal": 46433, + "Ġspecs": 27911, + "Ġspect": 6177, + "Ġspectacle": 37303, + "Ġspectacular": 18149, + "Ġspectral": 42761, + "Ġspectrum": 11143, + "Ġspeculate": 40775, + "Ġspeculation": 27696, + "Ġspeculative": 49415, + "Ġspeech": 6218, + "Ġspeeches": 29982, + "Ġspeechless": 48450, + "Ġspeed": 3073, + "Ġspeeding": 35593, + "Ġspeeds": 16411, + "Ġspel": 46486, + "Ġspell": 9827, + "Ġspelled": 34388, + "Ġspelling": 22254, + "Ġspells": 25053, + "Ġspend": 3496, + "Ġspending": 6434, + "Ġspends": 25620, + "Ġspent": 4418, + "Ġsper": 24152, + "Ġsperm": 32899, + "Ġspezie": 48682, + "Ġsphere": 16687, + "Ġspheres": 41225, + "Ġspherical": 37300, + "Ġspic": 41418, + "Ġspice": 19436, + "Ġspices": 19608, + "Ġspicy": 9127, + "Ġspider": 17614, + "Ġspiders": 32171, + "Ġspielen": 30950, + "Ġspielt": 39778, + "Ġspies": 45858, + "Ġspike": 21053, + "Ġspikes": 28997, + "Ġspill": 22044, + "Ġspilled": 37833, + "Ġspin": 6060, + "Ġspinach": 27784, + "Ġspinal": 28022, + "Ġspind": 44169, + "Ġspine": 15395, + "Ġspinner": 44849, + "Ġspinning": 15640, + "Ġspins": 31587, + "Ġspir": 10733, + "Ġspiral": 25165, + "Ġspirit": 3797, + "Ġspirits": 16388, + "Ġspiritual": 6960, + "Ġspirituality": 30637, + "Ġspiritually": 33430, + "Ġspit": 22127, + "Ġspite": 22794, + "Ġspl": 4732, + "Ġsplash": 25757, + "Ġsplashing": 45981, + "Ġsplend": 34350, + "Ġsplendid": 47575, + "Ġsplit": 7472, + "Ġsplits": 37741, + "Ġsplitting": 30348, + "Ġspo": 8243, + "Ġspoil": 18630, + "Ġspoiled": 32439, + "Ġspoiler": 26927, + "Ġspoilers": 32237, + "Ġspoke": 7179, + "Ġspoken": 10759, + "Ġspokes": 25378, + "Ġspokesperson": 45775, + "Ġspong": 50013, + "Ġsponge": 23134, + "Ġspons": 7330, + "Ġsponsor": 16198, + "Ġsponsored": 16621, + "Ġsponsoring": 30311, + "Ġsponsors": 22593, + "Ġsponsorship": 42922, + "Ġspont": 20795, + "Ġspontaneous": 32744, + "Ġspontaneously": 47632, + "Ġspooky": 30510, + "Ġspool": 48884, + "Ġspoon": 12453, + "Ġspoonful": 47114, + "Ġspoons": 36316, + "Ġspor": 43729, + "Ġsport": 7282, + "Ġsporting": 32366, + "Ġsports": 6573, + "Ġsporty": 45804, + "Ġspos": 20443, + "Ġsposób": 22904, + "Ġspot": 4008, + "Ġspotlight": 24656, + "Ġspots": 10681, + "Ġspotted": 21010, + "Ġspouse": 23013, + "Ġspouses": 49784, + "ĠspoÅĤec": 36851, + "Ġspr": 6103, + "Ġspraw": 22734, + "Ġsprawd": 46192, + "Ġspray": 8519, + "Ġsprayed": 40330, + "Ġspraying": 36658, + "Ġspre": 22269, + "Ġspread": 3974, + "Ġspreading": 15232, + "Ġspreads": 25728, + "Ġspreadshe": 23651, + "Ġspreadsheet": 27733, + "Ġsprechen": 27853, + "Ġspricht": 42088, + "Ġspring": 5587, + "Ġsprings": 24647, + "Ġsprink": 30885, + "Ġsprinkle": 24745, + "Ġsprint": 25075, + "Ġsprite": 43848, + "Ġsprout": 43728, + "Ġsprouts": 34628, + "Ġspun": 37038, + "Ġspur": 35657, + "Ġspy": 20752, + "Ġspäter": 24196, + "Ġspé": 31198, + "Ġspécial": 34141, + "Ġsqu": 2339, + "Ġsquad": 15310, + "Ġsquare": 3732, + "Ġsquared": 8889, + "Ġsquares": 19368, + "Ġsquash": 30725, + "Ġsquat": 24305, + "Ġsquats": 45055, + "Ġsque": 8447, + "Ġsqueez": 22390, + "Ġsqueeze": 13578, + "Ġsqueezed": 39470, + "Ġsqueezing": 36645, + "Ġsquid": 28015, + "Ġsquirrel": 28565, + "Ġsquish": 31379, + "Ġsquishy": 45402, + "Ġst": 342, + "Ġsta": 11135, + "Ġstaan": 38055, + "Ġstaat": 28836, + "Ġstab": 16343, + "Ġstabbed": 35726, + "Ġstabil": 11652, + "Ġstability": 11826, + "Ġstabilization": 35476, + "Ġstabilize": 31870, + "Ġstabilized": 48384, + "Ġstable": 8351, + "Ġstack": 8630, + "Ġstacked": 28867, + "Ġstacking": 41376, + "Ġstacks": 30792, + "Ġstad": 38408, + "Ġstadium": 18585, + "Ġstaff": 3525, + "Ġstaffing": 38918, + "Ġstage": 3233, + "Ġstaged": 45178, + "Ġstages": 10232, + "Ġstagger": 29656, + "Ġstaggering": 42974, + "Ġstaging": 41085, + "Ġstagn": 32853, + "Ġstain": 16441, + "Ġstained": 39924, + "Ġstainless": 24048, + "Ġstains": 40733, + "Ġstair": 22273, + "Ġstaircase": 35359, + "Ġstairs": 13471, + "Ġstake": 10407, + "Ġstakeholder": 43406, + "Ġstakeholders": 17779, + "Ġstakes": 28429, + "Ġstal": 49875, + "Ġstalk": 21789, + "Ġstall": 19633, + "Ġstalls": 50248, + "Ġstam": 29682, + "Ġstamina": 36690, + "Ġstamp": 9921, + "Ġstamped": 39111, + "Ġstamping": 41792, + "Ġstamps": 30800, + "Ġstan": 27984, + "Ġstance": 21033, + "Ġstand": 1463, + "Ġstandalone": 37454, + "Ġstandard": 3832, + "Ġstandardized": 31677, + "Ġstandards": 7787, + "Ġstandby": 50170, + "Ġstanding": 4877, + "Ġstandpoint": 15827, + "Ġstands": 7382, + "Ġstanie": 40013, + "Ġstap": 27284, + "Ġstaple": 32361, + "Ġstar": 3543, + "Ġstarch": 24748, + "Ġstare": 22432, + "Ġstared": 44738, + "Ġstaring": 18043, + "Ġstark": 17417, + "Ġstarred": 39438, + "Ġstarring": 30701, + "Ġstars": 6105, + "Ġstart": 722, + "Ġstarted": 1409, + "Ġstarter": 22465, + "Ġstarters": 35131, + "Ġstarting": 2891, + "Ġstartled": 48898, + "Ġstarts": 3719, + "Ġstartup": 18578, + "Ġstartups": 28041, + "Ġstarve": 46755, + "Ġstarving": 28420, + "Ġstat": 2219, + "Ġstata": 49554, + "Ġstate": 1785, + "Ġstated": 11323, + "Ġstatement": 5629, + "Ġstatements": 12363, + "Ġstates": 4368, + "Ġstatewide": 34487, + "Ġstatic": 13437, + "Ġstating": 26688, + "Ġstation": 5214, + "Ġstationary": 30452, + "Ġstationed": 46228, + "Ġstations": 13390, + "Ġstatist": 16012, + "Ġstatistic": 29588, + "Ġstatistical": 22820, + "Ġstatistically": 36478, + "Ġstatistics": 12523, + "Ġstato": 29657, + "Ġstats": 18152, + "Ġstatt": 25675, + "Ġstatue": 17385, + "Ġstatues": 29480, + "Ġstatus": 6558, + "Ġstatut": 35907, + "Ġstatute": 24774, + "Ġstatutory": 42037, + "Ġstay": 1754, + "Ġstayed": 9181, + "Ġstaying": 7939, + "Ġstays": 10834, + "Ġste": 2126, + "Ġstead": 23721, + "Ġsteadily": 36129, + "Ġsteady": 13211, + "Ġsteak": 17009, + "Ġsteal": 11009, + "Ġstealing": 19757, + "Ġsteals": 46962, + "Ġstealth": 25756, + "Ġsteam": 11952, + "Ġsteamed": 32375, + "Ġsteeds": 43603, + "Ġsteel": 8269, + "Ġsteep": 16841, + "Ġsteer": 30814, + "Ġsteering": 14823, + "Ġstehen": 19777, + "Ġsteht": 16361, + "Ġstell": 30787, + "Ġstellar": 42333, + "Ġstellen": 24407, + "Ġstellt": 38582, + "Ġstem": 12312, + "Ġstems": 27600, + "Ġsten": 28031, + "Ġstencil": 38670, + "Ġstep": 1823, + "Ġstepped": 15251, + "Ġstepping": 16821, + "Ġsteps": 4439, + "Ġster": 18924, + "Ġstere": 12730, + "Ġstereo": 29029, + "Ġstereoty": 41182, + "Ġstereotype": 38229, + "Ġstereotypes": 30853, + "Ġsteril": 41477, + "Ġstern": 38312, + "Ġstero": 36407, + "Ġsteroids": 45717, + "Ġstesso": 44413, + "Ġstew": 22654, + "Ġstewards": 36270, + "Ġstewardship": 50092, + "Ġstick": 2897, + "Ġsticker": 20400, + "Ġstickers": 21019, + "Ġsticking": 13465, + "Ġsticks": 12518, + "Ġsticky": 14470, + "Ġstiff": 15451, + "Ġstiffness": 37759, + "Ġstigma": 27880, + "Ġstill": 920, + "Ġstim": 8983, + "Ġstimmt": 37799, + "Ġstimul": 14572, + "Ġstimulate": 31269, + "Ġstimulating": 43671, + "Ġstimulation": 37405, + "Ġstimuli": 47752, + "Ġstimulus": 21366, + "Ġsting": 27175, + "Ġstink": 35843, + "Ġstinks": 50114, + "Ġstinky": 46449, + "Ġstip": 37001, + "Ġstir": 8946, + "Ġstirred": 49409, + "Ġstirring": 28650, + "Ġstitch": 5635, + "Ġstitched": 48992, + "Ġstitches": 13184, + "Ġstitching": 30714, + "Ġsto": 22784, + "Ġstock": 4127, + "Ġstocks": 12966, + "Ġstoked": 49145, + "Ġstol": 43553, + "Ġstole": 16326, + "Ġstolen": 15900, + "Ġstom": 9036, + "Ġstomach": 9665, + "Ġstone": 7581, + "Ġstones": 14083, + "Ġstood": 9371, + "Ġstool": 35086, + "Ġstop": 1590, + "Ġstopped": 5936, + "Ġstopping": 12767, + "Ġstops": 10094, + "Ġstor": 5967, + "Ġstora": 43323, + "Ġstorage": 6725, + "Ġstore": 3531, + "Ġstored": 12187, + "Ġstores": 9512, + "Ġstories": 3676, + "Ġstoring": 26085, + "Ġstorm": 7679, + "Ġstorms": 23288, + "Ġstory": 1657, + "Ġstoryline": 30828, + "Ġstoryt": 17541, + "Ġstorytelling": 21479, + "Ġstos": 43581, + "Ġstove": 19263, + "Ġstr": 1056, + "Ġstra": 2148, + "Ġstraight": 2997, + "Ġstraighten": 32777, + "Ġstraightforward": 15325, + "Ġstrain": 14249, + "Ġstrains": 39110, + "Ġstrand": 14955, + "Ġstranded": 44394, + "Ġstrands": 29664, + "Ġstrang": 24404, + "Ġstrange": 5861, + "Ġstrangely": 39851, + "Ġstranger": 18834, + "Ġstrangers": 22724, + "Ġstrap": 18359, + "Ġstraps": 26654, + "Ġstrat": 23674, + "Ġstrate": 5187, + "Ġstrateg": 5464, + "Ġstrategic": 10924, + "Ġstrategically": 38061, + "Ġstrategies": 9029, + "Ġstrategy": 5206, + "Ġstratég": 45023, + "Ġstraw": 10099, + "Ġstrawberries": 26873, + "Ġstrawberry": 20440, + "Ġstray": 36219, + "Ġstre": 2242, + "Ġstreak": 35634, + "Ġstream": 4309, + "Ġstreaming": 11791, + "Ġstreamline": 47141, + "Ġstreamlined": 48155, + "Ġstreams": 15842, + "Ġstreet": 4838, + "Ġstreets": 8481, + "Ġstrength": 3800, + "Ġstrengthen": 17045, + "Ġstrengthened": 38942, + "Ġstrengthening": 28224, + "Ġstrengths": 16986, + "Ġstress": 4244, + "Ġstressed": 14471, + "Ġstresses": 27732, + "Ġstressful": 19108, + "Ġstressing": 48233, + "Ġstret": 27678, + "Ġstretch": 5985, + "Ġstretched": 23563, + "Ġstretches": 29058, + "Ġstretching": 19632, + "Ġstretchy": 48865, + "Ġstri": 3575, + "Ġstrict": 10910, + "Ġstrictly": 20792, + "Ġstrike": 9302, + "Ġstrikes": 16750, + "Ġstriking": 18559, + "Ġstring": 6798, + "Ġstrings": 13985, + "Ġstrip": 12828, + "Ġstripe": 42957, + "Ġstripes": 27308, + "Ġstripped": 33221, + "Ġstrips": 19842, + "Ġstrive": 23829, + "Ġstriving": 36582, + "Ġstro": 8959, + "Ġstroke": 12403, + "Ġstrokes": 24493, + "Ġstroll": 42812, + "Ġstron": 45766, + "Ġstrong": 2068, + "Ġstronger": 7249, + "Ġstrongest": 16595, + "Ġstrongly": 10613, + "Ġstrony": 32406, + "Ġstruck": 13159, + "Ġstruct": 6594, + "Ġstructural": 15067, + "Ġstructure": 3877, + "Ġstructured": 18519, + "Ġstructures": 9227, + "Ġstrugg": 4312, + "Ġstruggle": 7799, + "Ġstruggled": 19023, + "Ġstruggles": 17592, + "Ġstruggling": 9314, + "Ġstrum": 47338, + "Ġstub": 20266, + "Ġstubborn": 24137, + "Ġstuck": 5541, + "Ġstud": 972, + "Ġstudent": 3107, + "Ġstudents": 1731, + "Ġstudied": 9454, + "Ġstudies": 5313, + "Ġstudio": 6811, + "Ġstudios": 24593, + "Ġstudy": 2979, + "Ġstudying": 7601, + "Ġstuff": 1507, + "Ġstuffed": 24092, + "Ġstuffing": 36046, + "Ġstuffs": 48719, + "Ġstuk": 46042, + "Ġstumble": 41302, + "Ġstumbled": 36668, + "Ġstump": 43164, + "Ġstun": 11885, + "Ġstunned": 35394, + "Ġstunning": 18550, + "Ġstunt": 33391, + "Ġstupid": 6631, + "Ġstur": 29249, + "Ġsturdy": 31506, + "Ġsty": 7952, + "Ġstyl": 23736, + "Ġstyle": 3758, + "Ġstyles": 13273, + "Ġstyling": 27944, + "Ġstylish": 30301, + "Ġstylist": 48544, + "Ġstär": 33527, + "ĠstÃ¥r": 37019, + "Ġstör": 42554, + "Ġsu": 459, + "Ġsua": 8233, + "Ġsuas": 23410, + "Ġsub": 1422, + "Ġsubconscious": 27389, + "Ġsubd": 31662, + "Ġsubdiv": 45331, + "Ġsubir": 34785, + "Ġsubject": 3983, + "Ġsubjected": 32153, + "Ġsubjective": 25972, + "Ġsubjects": 13066, + "Ġsubm": 8286, + "Ġsubmar": 23638, + "Ġsubmarine": 33995, + "Ġsubmarines": 48138, + "Ġsubmer": 36751, + "Ġsubmerged": 46985, + "Ġsubmission": 23689, + "Ġsubmissions": 40429, + "Ġsubmit": 10315, + "Ġsubmitted": 14405, + "Ġsubmitting": 31836, + "Ġsubs": 2090, + "Ġsubscri": 2325, + "Ġsubscribe": 3022, + "Ġsubscribed": 16665, + "Ġsubscriber": 26122, + "Ġsubscribers": 11092, + "Ġsubscribing": 19981, + "Ġsubscription": 17231, + "Ġsubscriptions": 44951, + "Ġsubsequ": 13924, + "Ġsubsequent": 19962, + "Ġsubsequently": 26514, + "Ġsubset": 25993, + "Ġsubsid": 20051, + "Ġsubsidi": 48296, + "Ġsubsidies": 38523, + "Ġsubsidy": 49636, + "Ġsubst": 4594, + "Ġsubstance": 12961, + "Ġsubstances": 25455, + "Ġsubstant": 11889, + "Ġsubstantial": 16726, + "Ġsubstantially": 30797, + "Ġsubstantive": 47113, + "Ġsubstit": 26441, + "Ġsubstitute": 15802, + "Ġsubstitution": 35827, + "Ġsubstrate": 27585, + "Ġsubt": 7257, + "Ġsubtit": 30706, + "Ġsubtitles": 42045, + "Ġsubtle": 13743, + "Ġsubtract": 16390, + "Ġsubur": 23519, + "Ġsuburban": 40138, + "Ġsuburbs": 34185, + "Ġsubway": 24953, + "Ġsuc": 1965, + "Ġsucc": 21578, + "Ġsucceed": 7754, + "Ġsucceeded": 20263, + "Ġsucceeding": 47912, + "Ġsucceeds": 49263, + "Ġsuccess": 2245, + "Ġsuccesses": 26101, + "Ġsuccessful": 4406, + "Ġsuccessfully": 10727, + "Ġsuccession": 36624, + "Ġsuccessive": 48043, + "Ġsuccessor": 31864, + "Ġsuced": 41928, + "Ġsuch": 1270, + "Ġsuchen": 44470, + "Ġsuck": 9967, + "Ġsucked": 26503, + "Ġsucker": 43259, + "Ġsucking": 38669, + "Ġsucks": 15846, + "Ġsuction": 40431, + "Ġsud": 3707, + "Ġsudah": 24940, + "Ġsudden": 3990, + "Ġsuddenly": 5800, + "Ġsue": 20416, + "Ġsued": 33864, + "Ġsuf": 46282, + "Ġsuff": 3889, + "Ġsuffer": 9753, + "Ġsuffered": 12770, + "Ġsuffering": 7755, + "Ġsuffers": 33776, + "Ġsufficient": 11563, + "Ġsufficiently": 31868, + "Ġsuficiente": 33958, + "Ġsug": 22802, + "Ġsugar": 5076, + "Ġsugars": 37551, + "Ġsugg": 3395, + "Ġsuggest": 3402, + "Ġsuggested": 10945, + "Ġsuggesting": 18094, + "Ġsuggestion": 16541, + "Ġsuggestions": 13396, + "Ġsuggests": 13409, + "Ġsuic": 28419, + "Ġsuicidal": 43243, + "Ġsuicide": 12308, + "Ġsuis": 7624, + "Ġsuit": 5722, + "Ġsuitable": 12873, + "Ġsuitcase": 34545, + "Ġsuite": 14205, + "Ġsuited": 24736, + "Ġsuits": 15278, + "Ġsuiv": 20751, + "Ġsuivre": 43404, + "Ġsujet": 23634, + "Ġsuk": 46432, + "Ġsuka": 39076, + "Ġsul": 17603, + "Ġsulf": 22925, + "Ġsulfur": 33831, + "Ġsulla": 33625, + "Ġsulph": 47286, + "Ġsum": 2408, + "Ġsumm": 8367, + "Ġsummar": 14611, + "Ġsummarize": 20858, + "Ġsummary": 12691, + "Ġsummation": 28811, + "Ġsummer": 4266, + "Ġsummers": 46474, + "Ġsummertime": 43785, + "Ġsummit": 21564, + "Ġsummon": 18714, + "Ġsummoned": 40791, + "Ġsums": 34499, + "Ġsun": 3295, + "Ġsund": 33047, + "Ġsunflower": 48215, + "Ġsung": 18829, + "Ġsunglasses": 28675, + "Ġsunk": 40564, + "Ġsunlight": 18379, + "Ġsunny": 20412, + "Ġsunrise": 33675, + "Ġsunscreen": 30304, + "Ġsunset": 20142, + "Ġsunshine": 25219, + "Ġsunt": 35171, + "Ġsuo": 34197, + "Ġsup": 9331, + "Ġsuper": 1687, + "Ġsuperb": 36617, + "Ġsupercom": 27839, + "Ġsupercomputer": 36708, + "Ġsuperfic": 23881, + "Ġsuperficial": 34622, + "Ġsuperhero": 19428, + "Ġsuperheroes": 45417, + "Ġsuperintendent": 38834, + "Ġsuperior": 13028, + "Ġsuperiority": 48668, + "Ġsupermarket": 25180, + "Ġsupernatural": 25678, + "Ġsuperpower": 45765, + "Ġsupers": 37906, + "Ġsuperst": 29423, + "Ġsuperstar": 38953, + "Ġsuperv": 37971, + "Ġsupervis": 34409, + "Ġsupervised": 46533, + "Ġsupervision": 32675, + "Ġsupervisor": 24610, + "Ġsupervisors": 42218, + "Ġsupp": 1003, + "Ġsupper": 44185, + "Ġsuppl": 9386, + "Ġsupplement": 15436, + "Ġsupplemental": 48604, + "Ġsupplements": 26645, + "Ġsupplied": 27625, + "Ġsupplier": 31909, + "Ġsuppliers": 29467, + "Ġsupplies": 11768, + "Ġsupply": 5847, + "Ġsupplying": 46815, + "Ġsupport": 1406, + "Ġsupported": 8104, + "Ġsupporter": 28600, + "Ġsupporters": 17683, + "Ġsupporting": 7231, + "Ġsupportive": 14435, + "Ġsupports": 9346, + "Ġsuppose": 7297, + "Ġsupposed": 3442, + "Ġsupposedly": 20581, + "Ġsuppress": 26835, + "Ġsuppressed": 42645, + "Ġsuppression": 36807, + "Ġsupre": 27283, + "Ġsuprem": 23710, + "Ġsupremacy": 35572, + "Ġsupreme": 27756, + "Ġsupuesto": 34177, + "Ġsur": 1022, + "Ġsure": 988, + "Ġsurely": 11468, + "Ġsurf": 9684, + "Ġsurface": 3753, + "Ġsurfaces": 16130, + "Ġsurfing": 34181, + "Ġsurg": 19560, + "Ġsurge": 18989, + "Ġsurgeon": 22913, + "Ġsurgeons": 42354, + "Ġsurgeries": 33455, + "Ġsurgery": 7930, + "Ġsurgical": 26646, + "Ġsurn": 39270, + "Ġsurname": 50152, + "Ġsurpass": 27650, + "Ġsurplus": 31019, + "Ġsurpr": 3083, + "Ġsurprise": 6365, + "Ġsurprised": 6100, + "Ġsurprises": 22655, + "Ġsurprising": 8830, + "Ġsurprisingly": 17600, + "Ġsurreal": 32513, + "Ġsurrend": 36862, + "Ġsurrender": 22185, + "Ġsurrendered": 48802, + "Ġsurround": 6262, + "Ġsurrounded": 13221, + "Ġsurrounding": 11498, + "Ġsurroundings": 25314, + "Ġsurrounds": 44576, + "Ġsurt": 18622, + "Ġsurtout": 19903, + "Ġsurv": 3940, + "Ġsurve": 11463, + "Ġsurveillance": 18475, + "Ġsurvey": 8984, + "Ġsurveys": 22711, + "Ġsurviv": 12324, + "Ġsurvival": 12559, + "Ġsurvive": 7867, + "Ġsurvived": 14433, + "Ġsurvives": 46231, + "Ġsurviving": 24948, + "Ġsurvivor": 25953, + "Ġsurvivors": 18369, + "Ġsus": 3291, + "Ġsuscept": 26104, + "Ġsusceptible": 31249, + "Ġsuscri": 40405, + "Ġsushi": 23022, + "Ġsusp": 6535, + "Ġsuspect": 9091, + "Ġsuspected": 26439, + "Ġsuspects": 35667, + "Ġsuspend": 42546, + "Ġsuspended": 23437, + "Ġsuspense": 47803, + "Ġsuspension": 15771, + "Ġsuspicion": 32020, + "Ġsuspicious": 17931, + "Ġsust": 5402, + "Ġsustain": 6769, + "Ġsustainability": 16360, + "Ġsustainable": 11235, + "Ġsustained": 23389, + "Ġsustaining": 49097, + "Ġsut": 43489, + "Ġsv": 17342, + "Ġsven": 48208, + "Ġsw": 1693, + "Ġswab": 49840, + "Ġswag": 42064, + "Ġswallow": 20099, + "Ġswallowed": 41769, + "Ġswamp": 31724, + "Ġswap": 18135, + "Ġswapped": 50011, + "Ġswarm": 49839, + "Ġswatch": 42362, + "Ġsway": 27555, + "Ġswe": 2484, + "Ġswear": 11902, + "Ġsweat": 11872, + "Ġsweater": 26550, + "Ġsweating": 25438, + "Ġsweats": 38712, + "Ġsweaty": 36044, + "Ġsweep": 22169, + "Ġsweeping": 33285, + "Ġsweet": 3844, + "Ġsweeter": 44323, + "Ġsweetheart": 36633, + "Ġsweetie": 40508, + "Ġsweetness": 25702, + "Ġsweets": 28680, + "Ġswell": 34251, + "Ġswelling": 33127, + "Ġswept": 31791, + "Ġswift": 29184, + "Ġswiftly": 49891, + "Ġswim": 7110, + "Ġswimming": 11989, + "Ġswims": 42357, + "Ġswing": 11173, + "Ġswinging": 29500, + "Ġswings": 32386, + "Ġswipe": 28170, + "Ġswirl": 30310, + "Ġswitch": 3679, + "Ġswitched": 16858, + "Ġswitches": 19458, + "Ġswitching": 16493, + "Ġswo": 13291, + "Ġswoje": 29489, + "ĠswojÄħ": 49194, + "Ġswollen": 37559, + "Ġsword": 10576, + "Ġswords": 26474, + "Ġsworn": 40068, + "Ġsy": 943, + "Ġsyll": 20223, + "Ġsyllable": 40151, + "Ġsyllables": 45364, + "Ġsyllabus": 48077, + "Ġsym": 6697, + "Ġsymb": 43700, + "Ġsymbol": 5986, + "Ġsymbolic": 25755, + "Ġsymbolism": 47061, + "Ġsymbols": 16944, + "Ġsymm": 14232, + "Ġsymmetric": 32330, + "Ġsymmetrical": 40360, + "Ġsymmetry": 25440, + "Ġsymp": 13240, + "Ġsympath": 22276, + "Ġsympathetic": 36032, + "Ġsympathy": 33240, + "Ġsympt": 7266, + "Ġsymptom": 29370, + "Ġsymptoms": 8332, + "Ġsyn": 5451, + "Ġsynagogue": 49169, + "Ġsync": 20271, + "Ġsynchron": 19331, + "Ġsynchronous": 44743, + "Ġsynd": 15198, + "Ġsyndrome": 19371, + "Ġsyner": 33781, + "Ġsynergy": 50163, + "Ġsynt": 23980, + "Ġsyntax": 28431, + "Ġsynth": 10657, + "Ġsynthes": 26617, + "Ġsynthesis": 30252, + "Ġsynthetic": 23420, + "Ġsyrup": 17852, + "Ġsyst": 20274, + "Ġsystem": 1185, + "Ġsystematic": 27249, + "Ġsystematically": 39531, + "Ġsystemic": 23789, + "Ġsystems": 3652, + "Ġsystème": 25142, + "Ġsytu": 28275, + "Ġsz": 7870, + "Ġszcz": 22090, + "Ġszczegól": 49624, + "Ġszer": 36160, + "Ġszy": 30526, + "Ġszyb": 36456, + "Ġsão": 8364, + "Ġsä": 15316, + "Ġsäga": 28013, + "Ġsäger": 37607, + "Ġsätt": 29503, + "ĠsÃ¥": 4719, + "ĠsÃ¥dan": 40989, + "Ġsé": 7910, + "Ġsécur": 32384, + "Ġsécurité": 37600, + "Ġsérie": 18416, + "Ġsì": 49267, + "Ġsó": 6238, + "Ġsólo": 22885, + "Ġsón": 25421, + "Ġsö": 12643, + "Ġsöy": 27543, + "Ġsöyl": 31222, + "Ġsöyle": 16928, + "Ġsöyled": 35909, + "Ġsöyleye": 35881, + "Ġsöz": 31667, + "Ġsú": 33075, + "Ġsúper": 43282, + "Ġsû": 15998, + "Ġsûr": 18143, + "Ġsü": 21218, + "Ġsür": 48014, + "ĠsÃŃ": 8600, + "Ġsı": 30201, + "Ġsık": 30046, + "Ġsır": 38572, + "ĠsÄĥ": 15446, + "ĠsÄħ": 9015, + "ĠsÅĤ": 15116, + "ĠsÅĤu": 48459, + "Ġsẽ": 17208, + "Ġsá»±": 33602, + "Ġsá»ij": 44983, + "Ġt": 256, + "Ġta": 1846, + "Ġtab": 4421, + "Ġtabii": 31430, + "Ġtable": 3199, + "Ġtables": 8020, + "Ġtablespoon": 22398, + "Ġtablespoons": 21615, + "Ġtablet": 14136, + "Ġtablets": 27622, + "Ġtabs": 20743, + "Ġtac": 25018, + "Ġtack": 9426, + "Ġtackle": 14896, + "Ġtackling": 34415, + "Ġtaco": 34101, + "Ġtacos": 34776, + "Ġtact": 9959, + "Ġtactic": 31012, + "Ġtactical": 26323, + "Ġtactics": 19454, + "Ġtactile": 47319, + "Ġtad": 29622, + "Ġtadi": 42953, + "Ġtag": 6162, + "Ġtagged": 40239, + "Ġtags": 18632, + "Ġtah": 23059, + "Ġtahu": 27294, + "Ġtahun": 34656, + "Ġtai": 20499, + "Ġtail": 6838, + "Ġtailor": 33068, + "Ġtailored": 34858, + "Ġtails": 28537, + "Ġtak": 991, + "Ġtaka": 28017, + "Ġtake": 747, + "Ġtakeaway": 30681, + "Ġtakeaways": 45584, + "Ġtaken": 2726, + "Ġtakes": 2516, + "Ġtaki": 20065, + "Ġtakich": 29607, + "Ġtakie": 15963, + "Ġtakiego": 32296, + "Ġtakiej": 38941, + "Ġtakim": 31732, + "Ġtaking": 1940, + "ĠtakÄħ": 31069, + "Ġtakże": 23306, + "Ġtal": 4023, + "Ġtale": 17172, + "Ġtalent": 8301, + "Ġtalented": 13467, + "Ġtalents": 19933, + "Ġtales": 27254, + "Ġtalk": 751, + "Ġtalked": 2825, + "Ġtalkin": 39243, + "Ġtalking": 1417, + "Ġtalks": 6686, + "Ġtall": 6764, + "Ġtaller": 22406, + "Ġtallest": 42075, + "Ġtalvez": 32320, + "Ġtam": 7677, + "Ġtama": 45342, + "Ġtamam": 18536, + "Ġtaman": 41500, + "Ġtamanho": 45645, + "Ġtamb": 3629, + "Ġtambién": 6407, + "Ġtambé": 22562, + "Ġtambém": 6274, + "Ġtame": 45774, + "Ġtamp": 21424, + "Ġtampoco": 36838, + "Ġtan": 7603, + "Ġtand": 35274, + "Ġtandem": 48120, + "Ġtane": 23233, + "Ġtang": 10266, + "Ġtangent": 27747, + "Ġtangible": 27094, + "Ġtangled": 47192, + "Ġtank": 5466, + "Ġtanks": 14022, + "Ġtant": 12095, + "Ġtanta": 40864, + "Ġtanto": 10331, + "Ġtao": 44292, + "Ġtap": 5119, + "Ġtapa": 42097, + "Ġtape": 7314, + "Ġtaped": 45673, + "Ġtaper": 36277, + "Ġtapes": 31349, + "Ġtapi": 23901, + "Ġtapped": 38693, + "Ġtapping": 21444, + "Ġtaps": 42536, + "Ġtar": 3112, + "Ġtara": 23837, + "Ġtaraf": 32536, + "Ġtard": 21057, + "Ġtarde": 27367, + "Ġtare": 49423, + "Ġtarget": 3779, + "Ġtargeted": 15045, + "Ġtargeting": 17918, + "Ġtargets": 12911, + "Ġtariffs": 39661, + "Ġtark": 44777, + "Ġtart": 22491, + "Ġtas": 8023, + "Ġtask": 5633, + "Ġtasked": 38621, + "Ġtasks": 9608, + "Ġtast": 2700, + "Ġtaste": 3939, + "Ġtasted": 25003, + "Ġtastes": 8666, + "Ġtasting": 26223, + "Ġtasty": 11535, + "Ġtat": 9600, + "Ġtatsächlich": 20796, + "Ġtatto": 12096, + "Ġtattoo": 15080, + "Ġtattoos": 28662, + "Ġtau": 17842, + "Ġtaught": 5928, + "Ġtav": 23214, + "Ġtava": 26777, + "Ġtavalla": 50132, + "Ġtax": 3366, + "Ġtaxation": 47072, + "Ġtaxes": 10041, + "Ġtaxi": 18984, + "Ġtaxpayer": 43204, + "Ġtaxpayers": 38205, + "Ġtay": 39224, + "ĠtaÅŁ": 37276, + "Ġtbsp": 25110, + "Ġte": 535, + "Ġtea": 5817, + "Ġteach": 2924, + "Ġteacher": 5027, + "Ġteachers": 6023, + "Ġteaches": 16876, + "Ġteaching": 4571, + "Ġteachings": 21037, + "Ġteam": 1469, + "Ġteamed": 47426, + "Ġteammate": 25467, + "Ġteammates": 20461, + "Ġteams": 5491, + "Ġteamwork": 30015, + "Ġtear": 12556, + "Ġtearing": 29401, + "Ġtears": 10462, + "Ġteas": 11488, + "Ġtease": 30444, + "Ġteaser": 35326, + "Ġteasing": 37720, + "Ġteaspoon": 17237, + "Ġteaspoons": 43996, + "Ġtech": 7553, + "Ġtechn": 1537, + "Ġtechnical": 6191, + "Ġtechnically": 12120, + "Ġtechnician": 38247, + "Ġtechnicians": 40885, + "Ġtechnique": 6532, + "Ġtechniques": 7512, + "Ġtechno": 36728, + "Ġtechnological": 18439, + "Ġtechnologies": 7943, + "Ġtechnology": 2899, + "Ġtecn": 20105, + "Ġtecnologia": 44905, + "ĠtecnologÃŃa": 48055, + "Ġted": 22337, + "Ġteddy": 45116, + "Ġtedious": 38284, + "Ġtee": 33863, + "Ġteen": 8921, + "Ġteenage": 26866, + "Ġteenager": 21440, + "Ġteenagers": 23618, + "Ġteens": 24849, + "Ġteeny": 48232, + "Ġteeth": 7798, + "Ġtegen": 30945, + "Ġtego": 8627, + "Ġteh": 32991, + "Ġtehd": 44812, + "Ġteil": 33200, + "Ġteilweise": 46748, + "Ġtej": 12573, + "Ġtek": 16624, + "Ġtekn": 32533, + "Ġtekrar": 45847, + "Ġtel": 15284, + "Ġtela": 29203, + "Ġtele": 4304, + "Ġtelef": 40616, + "Ġtelefon": 26812, + "Ġtelephone": 19800, + "Ġteleport": 28050, + "Ġteles": 18273, + "Ġtelescop": 37085, + "Ġtelescope": 26114, + "Ġtelescopes": 46051, + "Ġtelev": 49492, + "Ġtelevis": 40638, + "Ġtelevision": 8815, + "Ġtell": 980, + "Ġtellement": 28906, + "Ġtelling": 3585, + "Ġtells": 5112, + "Ġtem": 1383, + "Ġtema": 15854, + "Ġtemas": 40284, + "Ġtemat": 32954, + "Ġtemos": 14247, + "Ġtemp": 18274, + "Ġtemper": 3393, + "Ġtemperatura": 36903, + "Ġtemperature": 4292, + "Ġtemperatures": 12633, + "Ġtempl": 9100, + "Ġtemplate": 12379, + "Ġtemplates": 21165, + "Ġtemple": 10184, + "Ġtemples": 27431, + "Ġtempo": 8972, + "Ġtempor": 8219, + "Ġtemporada": 41983, + "Ġtemporal": 30881, + "Ġtemporarily": 23750, + "Ġtemporary": 13413, + "Ġtemps": 8827, + "Ġtempt": 13794, + "Ġtemptation": 30423, + "Ġtempted": 29941, + "Ġtempting": 37900, + "Ġtemu": 33346, + "Ġten": 2064, + "Ġtenant": 31000, + "Ġtenants": 31216, + "Ġtend": 3928, + "Ġtended": 34732, + "Ġtendencies": 45488, + "Ġtendency": 18187, + "Ġtender": 15036, + "Ġtendon": 46479, + "Ġtends": 12258, + "Ġtenemos": 9914, + "Ġtener": 11640, + "Ġteng": 10370, + "Ġtenga": 36031, + "Ġtengan": 46874, + "Ġtengo": 13989, + "Ġtenha": 28834, + "Ġtenho": 14291, + "Ġtenido": 33104, + "Ġtenim": 36012, + "Ġtenir": 30593, + "Ġtennis": 18118, + "Ġtens": 10688, + "Ġtense": 18760, + "Ġtension": 8980, + "Ġtensions": 28303, + "Ġtensor": 40863, + "Ġtent": 7054, + "Ġtentang": 43575, + "Ġtentar": 33572, + "Ġtenth": 27269, + "Ġtents": 39283, + "Ġtenure": 32256, + "ĠtenÃŃa": 23718, + "ĠtenÃŃan": 47596, + "Ġteor": 40238, + "Ġter": 1796, + "Ġteraz": 16854, + "Ġterce": 41385, + "Ġtercer": 38103, + "Ġteria": 45530, + "Ġterm": 1433, + "Ġterme": 36285, + "Ġtermin": 10761, + "Ġterminal": 14709, + "Ġterminals": 38579, + "Ġterminar": 36246, + "Ġterminology": 27575, + "Ġterms": 2115, + "Ġterr": 7245, + "Ġterra": 26298, + "Ġterrace": 47232, + "Ġterrain": 17674, + "Ġterre": 31815, + "Ġterrible": 6237, + "Ġterribly": 22903, + "Ġterrific": 20899, + "Ġterrified": 23051, + "Ġterrifying": 18106, + "Ġterrit": 8673, + "Ġterritor": 23484, + "Ġterritorial": 34888, + "Ġterritories": 25195, + "Ġterritory": 11360, + "Ġterror": 8127, + "Ġterrorism": 23917, + "Ġterrorist": 20342, + "Ġterrorists": 28330, + "Ġtert": 38726, + "Ġterug": 35020, + "Ġterus": 35977, + "Ġtes": 20018, + "Ġtest": 1500, + "Ġtestament": 35499, + "Ġteste": 49586, + "Ġtested": 8246, + "Ġtester": 36101, + "Ġtestified": 47639, + "Ġtestify": 31381, + "Ġtestim": 12600, + "Ġtestimon": 30963, + "Ġtestimony": 15634, + "Ġtesting": 4997, + "Ġtestoster": 29841, + "Ġtestosterone": 33417, + "Ġtests": 6921, + "Ġtet": 23319, + "Ġteu": 35280, + "Ġteve": 26628, + "Ġtext": 2487, + "Ġtextbook": 25591, + "Ġtextbooks": 33587, + "Ġtexted": 42553, + "Ġtextile": 42069, + "Ġtexting": 29897, + "Ġtexto": 35503, + "Ġtexts": 15765, + "Ġtexture": 8091, + "Ġtextured": 48656, + "Ġtextures": 24501, + "Ġteż": 9516, + "ĠteÅŁekkür": 44002, + "Ġth": 258, + "Ġtha": 43614, + "Ġthan": 813, + "Ġthank": 1309, + "Ġthanked": 48137, + "Ġthankful": 13611, + "Ġthankfully": 27352, + "Ġthanking": 30830, + "Ġthanks": 3231, + "Ġthat": 300, + "Ġthats": 16777, + "ĠthatÃŃs": 46493, + "Ġthe": 264, + "ĠtheCUBE": 40906, + "Ġtheat": 30982, + "Ġtheater": 10612, + "Ġtheaters": 28887, + "Ġtheatre": 18711, + "Ġtheatrical": 42806, + "Ġthee": 24800, + "Ġtheft": 28508, + "Ġtheir": 641, + "Ġtheirs": 22760, + "Ġthem": 552, + "Ġtheme": 6314, + "Ġthemed": 33920, + "Ġthemes": 13544, + "Ġthemselves": 2969, + "Ġthen": 550, + "Ġtheo": 40594, + "Ġtheological": 40725, + "Ġtheology": 27927, + "Ġtheor": 27423, + "Ġtheore": 10299, + "Ġtheorem": 20904, + "Ġtheoret": 14308, + "Ġtheoretical": 20864, + "Ġtheoretically": 29400, + "Ġtheories": 13667, + "Ġtheory": 5261, + "Ġtherap": 6793, + "Ġtherapeut": 26126, + "Ġtherapeutic": 30395, + "Ġtherapies": 32814, + "Ġtherapist": 19830, + "Ġtherapists": 36509, + "Ġtherapy": 9492, + "Ġthere": 456, + "Ġthereafter": 38729, + "Ġthereby": 28281, + "Ġtherefore": 4412, + "Ġtheres": 42551, + "Ġtherm": 8810, + "Ġthermal": 15070, + "Ġthermometer": 42539, + "Ġthese": 613, + "Ġthesis": 22288, + "Ġtheta": 9725, + "Ġthey": 436, + "Ġthi": 30994, + "Ġthick": 5060, + "Ġthicken": 33821, + "Ġthicker": 18142, + "Ġthickness": 14855, + "Ġthief": 23176, + "Ġthieves": 37057, + "Ġthigh": 27871, + "Ġthighs": 29207, + "Ġthin": 5862, + "Ġthing": 551, + "Ġthings": 721, + "Ġthink": 519, + "Ġthinkers": 37895, + "Ġthinking": 1953, + "Ġthinks": 7309, + "Ġthinly": 47337, + "Ġthinner": 21905, + "Ġthird": 2636, + "Ġthirds": 34552, + "Ġthirst": 34846, + "Ġthirsty": 28115, + "Ġthirteen": 31534, + "Ġthirty": 11790, + "Ġthis": 341, + "Ġtho": 27899, + "Ġthor": 11588, + "Ġthorough": 12934, + "Ġthoroughly": 17987, + "Ġthose": 729, + "Ġthou": 24757, + "Ġthough": 1673, + "Ġthought": 1194, + "Ġthoughtful": 21566, + "Ġthoughts": 4598, + "Ġthous": 3118, + "Ġthousand": 4714, + "Ġthousands": 5383, + "Ġthr": 739, + "Ġthread": 7207, + "Ġthreaded": 47493, + "Ġthreads": 19314, + "Ġthreat": 4734, + "Ġthreaten": 29864, + "Ġthreatened": 18268, + "Ġthreatening": 20768, + "Ġthreatens": 47511, + "Ġthreats": 14909, + "Ġthree": 1045, + "Ġthreshold": 14678, + "Ġthrew": 11918, + "Ġthri": 23949, + "Ġthrill": 32935, + "Ġthrilled": 18744, + "Ġthriller": 43009, + "Ġthrilling": 39347, + "Ġthrive": 21233, + "Ġthriving": 30643, + "Ġthroat": 12394, + "Ġthrone": 17678, + "Ġthrottle": 24235, + "Ġthrough": 807, + "Ġthroughout": 3710, + "Ġthroughput": 44629, + "Ġthrow": 3507, + "Ġthrowing": 10238, + "Ġthrown": 11732, + "Ġthrows": 19251, + "Ġthrust": 24030, + "Ġthu": 40295, + "Ġthumb": 9298, + "Ġthumbna": 21313, + "Ġthumbnail": 26746, + "Ġthumbnails": 46987, + "Ġthumbs": 8838, + "Ġthunder": 19898, + "Ġthunderstorm": 39618, + "Ġthus": 8807, + "Ġthy": 15196, + "Ġthyroid": 32332, + "Ġthé": 30448, + "Ġthì": 17510, + "Ġthôi": 34772, + "ĠthÃłnh": 39953, + "Ġthấy": 27793, + "Ġthế": 27100, + "Ġthứ": 47269, + "Ġthá»±c": 50183, + "Ġthá»ĥ": 24491, + "Ġthá»Ŀi": 49506, + "Ġti": 8757, + "Ġtick": 5204, + "Ġticket": 10550, + "Ġtickets": 12628, + "Ġticking": 33999, + "Ġticks": 42475, + "Ġtid": 9422, + "Ġtidak": 18943, + "Ġtide": 24662, + "Ġtiden": 44302, + "Ġtidy": 34646, + "Ġtie": 7582, + "Ġtied": 9601, + "Ġtief": 45100, + "Ġtiempo": 11772, + "Ġtien": 4902, + "Ġtiene": 7066, + "Ġtienen": 12536, + "Ġtienes": 20716, + "Ġtier": 12362, + "Ġtierra": 33416, + "Ġtiers": 40563, + "Ġties": 14039, + "Ġtiet": 37709, + "Ġtiger": 21432, + "Ġtigers": 47949, + "Ġtight": 4524, + "Ġtighten": 17041, + "Ġtightened": 49673, + "Ġtightening": 42217, + "Ġtighter": 30443, + "Ġtightly": 21952, + "Ġtijd": 26966, + "Ġtik": 44994, + "Ġtil": 8440, + "Ġtilde": 45046, + "Ġtile": 20590, + "Ġtiles": 21982, + "Ġtill": 4288, + "Ġtills": 46729, + "Ġtilt": 18446, + "Ġtilted": 43229, + "Ġtim": 524, + "Ġtimber": 34671, + "Ġtime": 565, + "Ġtimed": 44696, + "Ġtimeframe": 34830, + "Ġtimeless": 41200, + "Ġtimeline": 12933, + "Ġtimelines": 45886, + "Ġtimely": 25150, + "Ġtimer": 19247, + "Ġtimes": 1413, + "Ġtimest": 49108, + "Ġtiming": 10822, + "Ġtin": 15935, + "Ġtinc": 43240, + "Ġting": 17922, + "Ġtinha": 13574, + "Ġtinham": 47257, + "Ġtint": 28738, + "Ġtiny": 5870, + "Ġtio": 44735, + "Ġtip": 4125, + "Ġtipo": 9746, + "Ġtipos": 37105, + "Ġtipping": 41625, + "Ġtips": 6082, + "Ġtir": 13807, + "Ġtirar": 29239, + "Ġtire": 11756, + "Ġtired": 5868, + "Ġtires": 13885, + "Ġtiring": 35182, + "Ġtiro": 44188, + "Ġtiss": 10080, + "Ġtissue": 12404, + "Ġtissues": 27353, + "Ġtit": 3459, + "Ġtitanium": 35289, + "Ġtitle": 4876, + "Ġtitled": 19841, + "Ġtitles": 12992, + "Ġtitre": 44161, + "Ġtitt": 37419, + "Ġtive": 39242, + "Ġtiver": 31417, + "Ġtiế": 34923, + "Ġtiếp": 48667, + "Ġto": 281, + "Ġtoast": 15354, + "Ġtoasted": 48951, + "Ġtob": 20676, + "Ġtobacco": 22994, + "Ġtoc": 42565, + "Ġtoca": 43514, + "Ġtocar": 35631, + "Ġtoch": 22587, + "Ġtod": 4352, + "Ġtoda": 11687, + "Ġtodas": 10906, + "ĠtodavÃŃa": 28388, + "Ġtoday": 965, + "Ġtodd": 33268, + "Ġtoddler": 44348, + "Ġtodo": 5149, + "Ġtodos": 6321, + "Ġtoe": 13976, + "Ġtoen": 29911, + "Ġtoes": 14681, + "Ġtofu": 21419, + "Ġtoget": 1213, + "Ġtogether": 1214, + "Ġtogg": 26911, + "Ġtoggle": 31225, + "Ġtoi": 15648, + "Ġtoil": 9499, + "Ġtoilet": 11137, + "Ġtoilets": 37691, + "Ġtoim": 35590, + "Ġtok": 19164, + "Ġtoken": 14862, + "Ġtokens": 22667, + "Ġtold": 1907, + "Ġtoler": 11125, + "Ġtolerance": 23368, + "Ġtolerant": 45525, + "Ġtolerate": 25773, + "Ġtoll": 16629, + "Ġtom": 2916, + "Ġtoma": 39728, + "Ġtomar": 22048, + "Ġtomato": 9288, + "Ġtomatoes": 15135, + "Ġtomb": 18712, + "Ġtomorrow": 4153, + "Ġton": 2952, + "Ġtone": 8027, + "Ġtoner": 40403, + "Ġtones": 19995, + "Ġtong": 9124, + "Ġtongue": 10601, + "Ġtongues": 37490, + "Ġtonight": 4440, + "Ġtonnes": 41402, + "Ġtons": 9131, + "Ġtoo": 886, + "Ġtook": 1890, + "Ġtool": 2290, + "Ġtoolbar": 47715, + "Ġtoolbox": 44593, + "Ġtooling": 46593, + "Ġtoolkit": 40167, + "Ġtools": 3873, + "Ġtooth": 11680, + "Ġtoothbrush": 37568, + "Ġtoothp": 27003, + "Ġtoothpaste": 39956, + "Ġtop": 1192, + "Ġtopic": 4829, + "Ġtopics": 8378, + "Ġtopl": 41017, + "Ġtopp": 48433, + "Ġtopped": 38781, + "Ġtopping": 36676, + "Ġtoppings": 43052, + "Ġtops": 22836, + "Ġtor": 3930, + "Ġtorch": 27822, + "Ġtore": 37341, + "Ġtorment": 36662, + "Ġtorn": 10885, + "Ġtornado": 27935, + "Ġtornar": 41283, + "Ġtorpedo": 46764, + "Ġtorque": 16437, + "Ġtorso": 34917, + "Ġtort": 10806, + "Ġtortilla": 48857, + "Ġtorto": 50159, + "Ġtorture": 20711, + "Ġtortured": 36166, + "Ġtoss": 14432, + "Ġtossed": 42768, + "Ġtot": 1993, + "Ġtota": 40066, + "Ġtotal": 3217, + "Ġtotalement": 45203, + "Ġtotally": 3879, + "Ġtotalmente": 30865, + "Ġtote": 49019, + "Ġtots": 31661, + "Ġtou": 10095, + "Ġtouch": 2557, + "Ġtouchdown": 34459, + "Ġtouched": 9828, + "Ġtouches": 17431, + "Ġtouching": 11175, + "Ġtouchscreen": 46775, + "Ġtough": 4930, + "Ġtougher": 30298, + "Ġtoughest": 35037, + "Ġtoujours": 11936, + "Ġtour": 3512, + "Ġtouring": 32487, + "Ġtourism": 21832, + "Ġtourist": 19806, + "Ġtourists": 20273, + "Ġtournament": 13713, + "Ġtournaments": 32004, + "Ġtours": 22911, + "Ġtous": 8317, + "Ġtout": 3486, + "Ġtoute": 14953, + "Ġtoutes": 14437, + "Ġtow": 10966, + "Ġtoward": 7361, + "Ġtowards": 3030, + "Ġtowel": 15755, + "Ġtowels": 32819, + "Ġtower": 10567, + "Ġtowers": 25045, + "Ġtown": 3954, + "Ġtowns": 18104, + "Ġtox": 10357, + "Ġtoxic": 12786, + "Ġtoxicity": 45866, + "Ġtoxins": 36104, + "Ġtoy": 12058, + "Ġtoys": 13753, + "Ġtr": 504, + "Ġtra": 944, + "Ġtrabaj": 9618, + "Ġtrabajando": 40473, + "Ġtrabajar": 30793, + "Ġtrabajo": 18099, + "Ġtrabal": 12067, + "Ġtrabalh": 48180, + "Ġtrabalhar": 35531, + "Ġtrabalho": 20834, + "Ġtrace": 13508, + "Ġtraced": 38141, + "Ġtraces": 26076, + "Ġtracing": 25262, + "Ġtrack": 2837, + "Ġtracked": 31703, + "Ġtracker": 37516, + "Ġtracking": 11603, + "Ġtracks": 10218, + "Ġtract": 24207, + "Ġtraction": 23558, + "Ġtractor": 31857, + "Ġtrad": 2479, + "Ġtrade": 4923, + "Ġtraded": 27157, + "Ġtrademark": 31361, + "Ġtrader": 31961, + "Ġtraders": 26014, + "Ġtrades": 21287, + "Ġtradicional": 47956, + "Ġtrading": 9529, + "Ġtradition": 6994, + "Ġtraditional": 5164, + "Ġtraditionally": 19067, + "Ġtraditions": 15643, + "Ġtraff": 21073, + "Ġtraffic": 6419, + "Ġtrafficking": 25843, + "Ġtrag": 38282, + "Ġtraged": 16019, + "Ġtragedy": 18563, + "Ġtragen": 44737, + "Ġtragic": 20385, + "Ġtrail": 9924, + "Ġtrailer": 11724, + "Ġtrailers": 37698, + "Ġtrails": 23024, + "Ġtrain": 3847, + "Ġtrained": 8895, + "Ġtrainee": 40350, + "Ġtrainees": 41316, + "Ġtrainer": 21110, + "Ġtrainers": 35393, + "Ġtraining": 3097, + "Ġtrainings": 33856, + "Ġtrains": 16329, + "Ġtrait": 22538, + "Ġtraitor": 39819, + "Ġtraits": 19526, + "Ġtraject": 18257, + "Ġtrajectory": 21512, + "Ġtram": 25749, + "Ġtramp": 38605, + "Ġtran": 14404, + "Ġtranqu": 17640, + "Ġtranquil": 35337, + "Ġtrans": 1145, + "Ġtransact": 46688, + "Ġtransaction": 14425, + "Ġtransactions": 16856, + "Ġtransc": 43800, + "Ġtranscend": 28535, + "Ġtranscript": 24444, + "Ġtranscription": 35288, + "Ġtransf": 22666, + "Ġtransfer": 5003, + "Ġtransferred": 15809, + "Ġtransferring": 31437, + "Ġtransfers": 29137, + "Ġtransform": 4088, + "Ġtransformation": 9887, + "Ġtransformations": 34852, + "Ġtransformative": 36070, + "Ġtransformed": 16894, + "Ġtransformer": 31782, + "Ġtransforming": 27210, + "Ġtransforms": 35592, + "Ġtransgender": 27470, + "Ġtransient": 41998, + "Ġtransistor": 34750, + "Ġtransit": 17976, + "Ġtransition": 6034, + "Ġtransitional": 46452, + "Ġtransitioned": 47346, + "Ġtransitioning": 33777, + "Ġtransitions": 23767, + "Ġtransl": 5105, + "Ġtranslate": 13799, + "Ġtranslated": 16805, + "Ġtranslates": 28468, + "Ġtranslating": 35030, + "Ġtranslation": 12853, + "Ġtranslations": 37578, + "Ġtranslator": 35223, + "Ġtransluc": 45266, + "Ġtranslucent": 48236, + "Ġtransm": 7715, + "Ġtransmission": 11574, + "Ġtransmit": 17831, + "Ġtransmitted": 25355, + "Ġtransmitter": 40121, + "Ġtransp": 7132, + "Ġtransparen": 16165, + "Ġtransparency": 17131, + "Ġtransparent": 12737, + "Ġtransplant": 20662, + "Ġtransport": 5495, + "Ġtransportation": 11328, + "Ġtransported": 29373, + "Ġtransporting": 49302, + "Ġtranspose": 25167, + "Ġtrap": 11487, + "Ġtrapped": 14994, + "Ġtraps": 24173, + "Ġtras": 22507, + "Ġtrash": 11321, + "Ġtrat": 21507, + "Ġtrata": 31920, + "Ġtratar": 42549, + "Ġtraum": 16790, + "Ġtrauma": 11407, + "Ġtraumat": 35099, + "Ġtraumatic": 26456, + "Ġtrav": 11783, + "Ġtrava": 16020, + "Ġtravail": 18047, + "Ġtravaill": 38222, + "Ġtravaille": 41072, + "Ġtravailler": 30968, + "Ġtrave": 13938, + "Ġtravel": 3147, + "Ġtraveled": 16147, + "Ġtraveler": 46138, + "Ġtravelers": 35283, + "Ġtraveling": 9712, + "Ġtravelled": 31844, + "Ġtravelling": 20515, + "Ġtravels": 19863, + "Ġtravers": 23149, + "Ġtraverse": 45674, + "Ġtravés": 24463, + "Ġtray": 16027, + "Ġtrays": 47496, + "Ġtraz": 37481, + "Ġtrazer": 44776, + "Ġtre": 2192, + "Ġtread": 28286, + "Ġtreadmill": 46374, + "Ġtreasure": 12985, + "Ġtreasures": 31548, + "Ġtreasury": 47213, + "Ġtreat": 2387, + "Ġtreated": 8668, + "Ġtreaties": 48552, + "Ġtreating": 15083, + "Ġtreatment": 5032, + "Ġtreatments": 15795, + "Ġtreats": 19566, + "Ġtreaty": 24772, + "Ġtreball": 37999, + "Ġtreble": 43715, + "Ġtree": 4230, + "Ġtrees": 5852, + "Ġtreffen": 37620, + "Ġtrek": 33646, + "Ġtrem": 7813, + "Ġtremb": 37708, + "Ġtrembling": 47354, + "Ġtremend": 8706, + "Ġtremendous": 10048, + "Ġtremendously": 27985, + "Ġtren": 23136, + "Ġtrench": 39052, + "Ġtrenches": 48245, + "Ġtrend": 6028, + "Ġtrending": 28692, + "Ġtrends": 13892, + "Ġtrendy": 38596, + "Ġtres": 15890, + "Ġtresp": 46347, + "Ġtri": 1376, + "Ġtrial": 7308, + "Ġtrials": 12450, + "Ġtriang": 19335, + "Ġtriangle": 13369, + "Ġtriangles": 29896, + "Ġtriangular": 38190, + "Ġtrib": 15039, + "Ġtribal": 20958, + "Ġtribe": 17625, + "Ġtribes": 19035, + "Ġtribute": 24722, + "Ġtrick": 4282, + "Ġtricked": 39345, + "Ġtricks": 11733, + "Ġtricky": 12414, + "Ġtried": 3031, + "Ġtries": 9898, + "Ġtrif": 36956, + "Ġtrig": 35386, + "Ġtrigger": 7875, + "Ġtriggered": 21710, + "Ġtriggering": 40406, + "Ġtriggers": 22827, + "Ġtril": 26120, + "Ġtrillion": 18723, + "Ġtrilogy": 34030, + "Ġtrim": 10445, + "Ġtrimmed": 44563, + "Ġtrimming": 47212, + "Ġtrio": 37274, + "Ġtrip": 4931, + "Ġtriple": 15508, + "Ġtripod": 28020, + "Ġtrips": 16051, + "Ġtriste": 33526, + "Ġtriumph": 29156, + "Ġtrivia": 48770, + "Ġtrivial": 26703, + "Ġtro": 4495, + "ĠtrochÄĻ": 24926, + "Ġtrois": 19758, + "Ġtroisième": 47582, + "Ġtroll": 20680, + "Ġtrolls": 47749, + "Ġtrong": 18826, + "Ġtroop": 46400, + "Ġtroops": 11522, + "Ġtrop": 9006, + "Ġtroph": 45583, + "Ġtrophy": 28639, + "Ġtropical": 22857, + "Ġtror": 22109, + "Ġtros": 45692, + "Ġtrotzdem": 28325, + "Ġtrou": 3455, + "Ġtrouble": 5253, + "Ġtroubled": 29402, + "Ġtroubles": 15379, + "Ġtroublesome": 46838, + "Ġtroubling": 38080, + "Ġtrous": 34156, + "Ġtrousers": 41463, + "Ġtrout": 43978, + "Ġtrouve": 19359, + "Ġtrouver": 23546, + "Ġtrouvé": 37742, + "Ġtrov": 35449, + "Ġtruc": 14805, + "Ġtruck": 5898, + "Ġtrucks": 16156, + "Ġtrucs": 33505, + "Ġtrud": 32007, + "Ġtrue": 2074, + "Ġtruly": 4908, + "Ġtrump": 21779, + "Ġtrumpet": 35160, + "Ġtrunk": 19849, + "Ġtrust": 3361, + "Ġtrusted": 16034, + "Ġtrustees": 43234, + "Ġtrusting": 28235, + "Ġtrusts": 45358, + "Ġtrustworthy": 39714, + "Ġtruth": 3494, + "Ġtruthful": 44669, + "Ġtruths": 30079, + "Ġtry": 853, + "Ġtryin": 47452, + "Ġtrying": 1382, + "Ġtryna": 49597, + "Ġtrze": 22266, + "Ġtrzeba": 25860, + "Ġtrzy": 34573, + "Ġtrás": 46189, + "Ġträ": 33367, + "Ġtrès": 5732, + "Ġtrên": 33187, + "Ġtrês": 20779, + "ĠtrÆ°á»Ľc": 44860, + "Ġts": 35492, + "Ġtsp": 21438, + "Ġtsun": 34550, + "Ġtsunami": 39032, + "Ġtteokbokki": 47025, + "Ġtu": 2604, + "Ġtua": 33578, + "Ġtub": 10809, + "Ġtube": 9917, + "Ġtuber": 39847, + "Ġtubes": 21458, + "Ġtubing": 43349, + "Ġtuck": 18457, + "Ġtucked": 36089, + "Ġtud": 32602, + "Ġtudo": 9379, + "Ġtug": 33543, + "Ġtuh": 26849, + "Ġtuition": 23925, + "Ġtul": 30210, + "Ġtule": 27954, + "Ġtulee": 40038, + "Ġtum": 13102, + "Ġtumb": 42994, + "Ġtummy": 36974, + "Ġtumor": 22512, + "Ġtumors": 38466, + "Ġtun": 4267, + "Ġtuna": 26670, + "Ġtune": 10864, + "Ġtuned": 10870, + "Ġtunes": 38498, + "Ġtung": 41880, + "Ġtuning": 15164, + "Ġtunnel": 13186, + "Ġtunnels": 30804, + "Ġtuo": 45352, + "Ġtur": 3243, + "Ġturb": 18252, + "Ġturbine": 27536, + "Ġturbines": 44947, + "Ġturbo": 20902, + "Ġturbul": 27462, + "Ġturbulence": 48612, + "Ġturbulent": 41697, + "Ġturf": 42756, + "Ġturkey": 21551, + "Ġturmeric": 36774, + "Ġturmoil": 44554, + "Ġturn": 1261, + "Ġturnaround": 46114, + "Ġturned": 3574, + "Ġturning": 6246, + "Ġturnout": 42497, + "Ġturnover": 37137, + "Ġturns": 4523, + "Ġturret": 34544, + "Ġturtle": 22866, + "Ġturtles": 32422, + "Ġtus": 20647, + "Ġtussen": 50119, + "Ġtut": 3672, + "Ġtutaj": 12749, + "Ġtutor": 35613, + "Ġtutorial": 7073, + "Ġtutorials": 17616, + "Ġtutoring": 44410, + "Ġtutte": 38632, + "Ġtutti": 19822, + "Ġtutto": 23048, + "Ġtuv": 38177, + "Ġtuvo": 43718, + "Ġtv": 16364, + "ĠtvÃ¥": 34600, + "Ġtw": 683, + "Ġtwe": 6986, + "Ġtweak": 29879, + "Ġtweaks": 46664, + "Ġtwee": 30660, + "Ġtweet": 15258, + "Ġtweeted": 25646, + "Ġtweeting": 40090, + "Ġtweets": 25671, + "Ġtwelve": 14390, + "Ġtwent": 34041, + "Ġtwenties": 49398, + "Ġtwenty": 7699, + "Ġtwice": 6091, + "Ġtwin": 18397, + "Ġtwins": 22555, + "Ġtwist": 8203, + "Ġtwisted": 23057, + "Ġtwisting": 34491, + "Ġtwists": 35290, + "Ġtwitch": 34167, + "Ġtwitter": 21439, + "Ġtwo": 732, + "Ġtwor": 46288, + "Ġty": 1104, + "Ġtych": 15180, + "Ġtycker": 31053, + "Ġtying": 32405, + "Ġtyl": 13103, + "Ġtyle": 39293, + "Ġtylko": 13219, + "Ġtym": 8107, + "Ġtyp": 2125, + "Ġtype": 2010, + "Ġtyped": 33941, + "Ġtypes": 3467, + "Ġtypical": 7476, + "Ġtypically": 5850, + "Ġtyping": 18444, + "Ġtyr": 41108, + "Ġtyre": 44087, + "Ġtyres": 42564, + "Ġtys": 38156, + "Ġtyö": 43448, + "Ġtá": 7737, + "Ġtão": 18012, + "Ġtä": 14619, + "Ġtähän": 49580, + "Ġtäll": 37728, + "Ġtämä": 29962, + "Ġtän": 19790, + "Ġtänker": 43431, + "Ġtässä": 29934, + "Ġtät": 37039, + "Ġtätä": 50187, + "Ġtää": 38350, + "Ġté": 19809, + "Ġtéc": 25564, + "Ġtécnica": 45411, + "Ġtélé": 24254, + "Ġtéléphone": 47159, + "Ġtér": 39324, + "Ġtérmin": 45198, + "Ġtêm": 24277, + "Ġtête": 24661, + "Ġtô": 20683, + "Ġtôi": 22336, + "Ġtö": 37064, + "Ġtú": 15056, + "Ġtür": 39219, + "ĠtÃŃtulo": 43399, + "ĠtÄħ": 32294, + "ĠtÄĻ": 32489, + "Ġtại": 37773, + "Ġtừ": 26834, + "ĠtỼi": 47679, + "Ġu": 344, + "Ġub": 26709, + "Ġubiqu": 43868, + "Ġucz": 35403, + "Ġud": 11727, + "Ġuda": 44544, + "Ġudah": 25231, + "Ġug": 10743, + "Ġugh": 38560, + "Ġugly": 12246, + "Ġuh": 2232, + "Ġuhh": 29256, + "Ġuhhh": 38594, + "Ġuhm": 35007, + "Ġuit": 12528, + "Ġuk": 26769, + "Ġul": 20352, + "Ġult": 3725, + "Ġultimate": 9705, + "Ġultimately": 6284, + "Ġultra": 14808, + "Ġultras": 37072, + "Ġultrasound": 40895, + "Ġum": 1105, + "Ġuma": 2772, + "Ġumas": 46010, + "Ġumbre": 20158, + "Ġumbrella": 21925, + "Ġumm": 28397, + "Ġun": 517, + "Ġuna": 2002, + "Ġunable": 11299, + "Ġunacceptable": 31812, + "Ġunanim": 29710, + "Ġunanimously": 48733, + "Ġunas": 25405, + "Ġunatt": 47316, + "Ġunav": 36541, + "Ġunaware": 32065, + "Ġunbedingt": 41211, + "Ġunbel": 46063, + "Ġunbelievable": 16605, + "Ġunbelievably": 43593, + "Ġunbox": 20242, + "Ġunboxing": 26266, + "Ġunc": 6219, + "Ġuncertain": 11308, + "Ġuncertainty": 15697, + "Ġunch": 33686, + "Ġunchanged": 44553, + "Ġuncheck": 46672, + "Ġuncle": 9153, + "Ġunclear": 25636, + "Ġuncles": 47662, + "Ġuncom": 8585, + "Ġuncomfortable": 10532, + "Ġuncommon": 29289, + "Ġuncon": 35847, + "Ġuncond": 34959, + "Ġunconditional": 47916, + "Ġunconscious": 18900, + "Ġuncont": 36019, + "Ġuncover": 21694, + "Ġuncovered": 37729, + "Ġund": 674, + "Ġunde": 40981, + "Ġunder": 833, + "Ġundercover": 48099, + "Ġunderest": 24612, + "Ġunderestimate": 35826, + "Ġundergo": 26426, + "Ġundergoing": 40033, + "Ġundergrad": 14295, + "Ġundergraduate": 19113, + "Ġunderground": 14977, + "Ġunderlying": 14217, + "Ġunderm": 24188, + "Ġundermine": 39257, + "Ġunderneath": 7223, + "Ġunders": 16692, + "Ġunderscore": 37556, + "Ġunderside": 49511, + "Ġunderstand": 1223, + "Ġunderstandable": 25648, + "Ġunderstanding": 3701, + "Ġunderstands": 15146, + "Ġunderstood": 7320, + "Ġundert": 15564, + "Ġundertake": 37010, + "Ġundertaken": 40313, + "Ġundertaking": 39250, + "Ġunderwater": 20967, + "Ġunderway": 27534, + "Ġunderwear": 24941, + "Ġunderworld": 49607, + "Ġundes": 45667, + "Ġundo": 23779, + "Ġundocumented": 40472, + "Ġundoubtedly": 35211, + "Ġune": 2251, + "Ġuneasy": 48589, + "Ġunemploy": 14015, + "Ġunemployed": 34411, + "Ġunemployment": 17438, + "Ġuneven": 34022, + "Ġunex": 11572, + "Ġunexpected": 13106, + "Ġunexpectedly": 40452, + "Ġunf": 3971, + "Ġunfair": 17019, + "Ġunfamiliar": 29415, + "Ġunfinished": 41037, + "Ġunfold": 17980, + "Ġunfolding": 44586, + "Ġunfor": 31411, + "Ġunforgettable": 46194, + "Ġunfortunate": 17843, + "Ġunfortunately": 7015, + "Ġung": 29038, + "Ġungef": 31831, + "Ġungefähr": 41285, + "Ġunglaub": 49087, + "Ġunhappy": 22172, + "Ġunhealthy": 29147, + "Ġuni": 36435, + "Ġunicorn": 28122, + "Ġunified": 26787, + "Ġuniform": 9452, + "Ġuniformly": 48806, + "Ġuniforms": 37235, + "Ġunin": 43456, + "Ġunint": 29466, + "Ġunintended": 49902, + "Ġunintention": 45514, + "Ġuninter": 49234, + "Ġunion": 11671, + "Ġunions": 24914, + "Ġuniqu": 20763, + "Ġunique": 3845, + "Ġuniquely": 31474, + "Ġuniqueness": 48294, + "Ġunit": 4985, + "Ġunite": 29320, + "Ġunited": 18883, + "Ġunits": 6815, + "Ġunity": 18205, + "Ġunivers": 5950, + "Ġuniversal": 11455, + "Ġuniversally": 43995, + "Ġuniverse": 6445, + "Ġuniverses": 50168, + "Ġuniversities": 11779, + "Ġuniversity": 5454, + "Ġuniverso": 42332, + "Ġunjust": 37046, + "Ġunknown": 9841, + "Ġunknowns": 46048, + "Ġunl": 32118, + "Ġunle": 25272, + "Ġunleash": 49814, + "Ġunless": 5969, + "Ġunlike": 8343, + "Ġunlikely": 17518, + "Ġunlimited": 21950, + "Ġunload": 32165, + "Ġunlock": 11634, + "Ġunlocked": 30180, + "Ġunlocking": 49620, + "Ġunlucky": 38838, + "Ġunm": 19334, + "Ġunmute": 41445, + "Ġunnatural": 43470, + "Ġunnecess": 16799, + "Ġunnecessary": 19350, + "Ġunnie": 49665, + "Ġuno": 8526, + "Ġunos": 17780, + "Ġunp": 20994, + "Ġunpack": 26699, + "Ġunpl": 32816, + "Ġunpleasant": 29128, + "Ġunplug": 39456, + "Ġunpre": 19237, + "Ġunprecedented": 21555, + "Ġunpredict": 28341, + "Ġunpredictable": 31160, + "Ġunquote": 37557, + "Ġunravel": 40507, + "Ġunre": 20584, + "Ġunreal": 25754, + "Ġunrealistic": 42867, + "Ġunreasonable": 41730, + "Ġunrelated": 38967, + "Ġunrest": 35103, + "Ġuns": 2693, + "Ġunsafe": 35948, + "Ġunscrew": 42579, + "Ġunseen": 40608, + "Ġunser": 12977, + "Ġunsere": 14339, + "Ġunserem": 26792, + "Ġunseren": 25305, + "Ġunserer": 20965, + "Ġunsett": 43964, + "Ġunst": 18799, + "Ġunstable": 23742, + "Ġunstoppable": 48261, + "Ġunsuccess": 40501, + "Ġunsuccessful": 46258, + "Ġunsure": 32486, + "Ġunt": 1701, + "Ġunten": 25693, + "Ġunter": 8662, + "Ġunters": 20983, + "Ġunterschied": 30058, + "Ġunterstüt": 30007, + "Ġunterstützen": 43081, + "Ġunterwegs": 36258, + "Ġuntil": 1826, + "Ġunto": 16521, + "Ġuntuk": 12711, + "Ġunus": 10054, + "Ġunused": 44383, + "Ġunusual": 10901, + "Ġunut": 37997, + "Ġunve": 31009, + "Ġunveiled": 47430, + "Ġunw": 14853, + "Ġunwanted": 33745, + "Ġunwilling": 38246, + "Ġup": 493, + "Ġupbeat": 23593, + "Ġupbringing": 47268, + "Ġupcoming": 11500, + "Ġupd": 3460, + "Ġupdate": 5623, + "Ġupdated": 10588, + "Ġupdates": 9205, + "Ġupdating": 25113, + "Ġupfront": 30264, + "Ġupgrad": 17789, + "Ġupgrade": 11484, + "Ġupgraded": 24133, + "Ġupgrades": 24868, + "Ġupgrading": 36249, + "Ġuphill": 39132, + "Ġuphold": 34451, + "Ġuplift": 45407, + "Ġupload": 6580, + "Ġuploaded": 17135, + "Ġuploading": 27301, + "Ġuploads": 48611, + "Ġupon": 3564, + "Ġupp": 11775, + "Ġupper": 6597, + "Ġupright": 27405, + "Ġuprising": 49144, + "Ġups": 15497, + "Ġupset": 8340, + "Ġupsetting": 44109, + "Ġupside": 14119, + "Ġupstairs": 16462, + "Ġupstream": 33915, + "Ġupward": 23452, + "Ġupwards": 22167, + "Ġur": 4038, + "Ġuranium": 36830, + "Ġurban": 9681, + "Ġurg": 40199, + "Ġurge": 19029, + "Ġurged": 44206, + "Ġurgency": 29734, + "Ġurgent": 19022, + "Ġurgently": 49390, + "Ġurging": 48489, + "Ġurine": 27638, + "Ġus": 505, + "Ġusa": 29909, + "Ġusability": 46878, + "Ġusable": 29975, + "Ġusage": 14924, + "Ġusando": 29798, + "Ġusar": 14745, + "Ġuse": 764, + "Ġused": 1143, + "Ġuseful": 4420, + "Ġuseless": 14115, + "Ġuser": 4195, + "Ġusername": 30351, + "Ġusers": 5022, + "Ġuses": 4960, + "Ġusing": 1228, + "Ġuso": 22728, + "Ġust": 26189, + "Ġusted": 10467, + "Ġustedes": 17110, + "Ġusu": 32247, + "Ġusual": 7713, + "Ġusually": 2673, + "Ġut": 2839, + "Ġutan": 29011, + "Ġutens": 47294, + "Ġutil": 4976, + "Ġutilis": 33643, + "Ġutilise": 39475, + "Ġutiliser": 34535, + "Ġutilities": 30482, + "Ġutility": 14877, + "Ġutiliz": 19906, + "Ġutilizar": 24060, + "Ġutilization": 37074, + "Ġutilize": 16117, + "Ġutilized": 28158, + "Ġutilizing": 26775, + "Ġutilizz": 40355, + "Ġutmost": 42777, + "Ġutter": 17567, + "Ġutterly": 30251, + "Ġutveck": 39807, + "Ġuw": 23147, + "ĠuwagÄĻ": 43696, + "Ġuważ": 48089, + "Ġuy": 28266, + "Ġuz": 16851, + "ĠuÄŁ": 43222, + "Ġuży": 34097, + "Ġuž": 46803, + "Ġv": 371, + "Ġva": 2773, + "Ġvaak": 49644, + "Ġvaan": 47948, + "Ġvac": 2842, + "Ġvacant": 38890, + "Ġvacation": 12830, + "Ġvacc": 3900, + "Ġvaccin": 44931, + "Ġvaccinated": 14686, + "Ġvaccination": 16498, + "Ġvaccinations": 39333, + "Ġvaccine": 7007, + "Ġvaccines": 12164, + "Ġvacun": 38581, + "Ġvacuum": 14224, + "Ġvad": 16684, + "Ġvag": 13501, + "Ġvagina": 38963, + "Ġvague": 24247, + "Ġvagy": 32970, + "Ġvai": 4405, + "Ġvaig": 26571, + "Ġvain": 22240, + "Ġvais": 9369, + "Ġvak": 31647, + "Ġval": 1323, + "Ġvale": 15474, + "Ġvaleur": 45255, + "Ġvalid": 7363, + "Ġvalidate": 29562, + "Ġvalidated": 40693, + "Ġvalidation": 24071, + "Ġvalidity": 40943, + "Ġvallahi": 45338, + "Ġvalle": 40699, + "Ġvalley": 17636, + "Ġvalleys": 45614, + "Ġvalor": 15367, + "Ġvalores": 38790, + "Ġvalt": 45912, + "Ġvalu": 7332, + "Ġvaluable": 8263, + "Ġvaluation": 38546, + "Ġvalue": 2158, + "Ġvalued": 22608, + "Ġvalues": 4190, + "Ġvalve": 15294, + "Ġvalves": 34950, + "Ġvam": 41864, + "Ġvamos": 5295, + "Ġvamp": 20017, + "Ġvampire": 28592, + "Ġvampires": 45771, + "Ġvan": 3161, + "Ġvandaag": 41901, + "Ġvanilla": 17528, + "Ġvanish": 43584, + "Ġvanished": 37518, + "Ġvanity": 44622, + "Ġvantage": 46206, + "Ġvap": 29393, + "Ġvapor": 20358, + "Ġvar": 1374, + "Ġvara": 17234, + "Ġvard": 23065, + "Ġvardı": 36339, + "Ġvardır": 41312, + "Ġvari": 3034, + "Ġvariability": 35709, + "Ġvariable": 7006, + "Ġvariables": 9102, + "Ġvariance": 21977, + "Ġvariant": 17501, + "Ġvariants": 21669, + "Ġvarias": 37496, + "Ġvariation": 12990, + "Ġvariations": 17840, + "Ġvaried": 22877, + "Ġvaries": 21716, + "Ġvarieties": 22092, + "Ġvariety": 5673, + "Ġvarios": 33665, + "Ġvarious": 3683, + "Ġvarit": 31289, + "Ġvars": 46130, + "Ġvarsa": 48440, + "Ġvary": 10559, + "Ġvarying": 22984, + "Ġvas": 11481, + "Ġvase": 44065, + "Ġvast": 8369, + "Ġvastly": 41426, + "Ġvault": 27134, + "Ġvaya": 47682, + "Ġvaz": 37533, + "Ġve": 1241, + "Ġvec": 42021, + "Ġveces": 17054, + "Ġvector": 8062, + "Ġvectors": 18875, + "Ġved": 14267, + "Ġvedere": 35373, + "Ġveel": 16550, + "Ġveg": 24366, + "Ġvegan": 12824, + "Ġveget": 5764, + "Ġvegetable": 16356, + "Ġvegetables": 9320, + "Ġvegetarian": 25739, + "Ġvegetation": 28769, + "Ġvegg": 22644, + "Ġveggies": 27889, + "Ġveh": 4221, + "Ġvehicle": 5864, + "Ġvehicles": 8948, + "Ġveil": 30705, + "Ġvein": 30669, + "Ġveins": 29390, + "Ġveio": 41164, + "Ġvel": 14610, + "Ġveloc": 7806, + "Ġvelocidad": 50143, + "Ġvelocidade": 45181, + "Ġvelocity": 9269, + "Ġvelvet": 41905, + "Ġvem": 19053, + "Ġvemos": 20909, + "Ġven": 6138, + "Ġvend": 10169, + "Ġvender": 44281, + "Ġvendo": 33152, + "Ġvendor": 24321, + "Ġvendors": 22056, + "Ġvenge": 38008, + "Ġvengeance": 43818, + "Ġvenir": 20817, + "Ġvenom": 34322, + "Ġvent": 6931, + "Ġventil": 27498, + "Ġventilation": 29553, + "Ġvents": 40048, + "Ġventure": 18474, + "Ġvenue": 21645, + "Ġvenues": 32882, + "Ġveo": 41319, + "Ġver": 1306, + "Ġveramente": 50079, + "Ġverb": 9595, + "Ġverbal": 24781, + "Ġverbally": 48162, + "Ġverbess": 49112, + "Ġverbs": 30051, + "Ġverd": 6387, + "Ġverdad": 13692, + "Ġverdade": 15203, + "Ġverde": 29653, + "Ġverder": 47196, + "Ġverdi": 40243, + "Ġverdict": 33957, + "Ġvere": 16443, + "Ġverein": 49162, + "Ġverf": 40660, + "Ġverg": 20209, + "Ġverge": 37164, + "Ġvergessen": 42418, + "Ġverification": 30206, + "Ġverified": 31197, + "Ġverify": 16888, + "Ġverk": 22328, + "Ġverkl": 43403, + "Ġverl": 19441, + "Ġverlier": 49331, + "Ġverloren": 44884, + "Ġverm": 26319, + "Ġverme": 40064, + "Ġvern": 35793, + "Ġverr": 45923, + "Ġvers": 1774, + "Ġversa": 25650, + "Ġversatile": 25057, + "Ġversch": 20563, + "Ġverschied": 22263, + "Ġverschiedene": 35411, + "Ġverschiedenen": 41043, + "Ġverse": 7996, + "Ġverses": 17316, + "Ġversion": 3037, + "Ġversions": 9606, + "Ġversión": 47248, + "Ġverso": 49786, + "Ġverst": 48960, + "Ġverste": 22442, + "Ġverstehen": 37352, + "Ġversuchen": 34749, + "Ġversucht": 36064, + "Ġversus": 5717, + "Ġversão": 41471, + "Ġvert": 6509, + "Ġverte": 16167, + "Ġvertex": 28162, + "Ġvertical": 9429, + "Ġvertically": 28450, + "Ġvertices": 32053, + "Ġverw": 24615, + "Ġvery": 588, + "Ġverz": 43945, + "Ġverändert": 45990, + "Ġves": 28274, + "Ġvess": 11800, + "Ġvessel": 18098, + "Ġvessels": 20117, + "Ġvest": 15814, + "Ġvested": 49317, + "Ġvet": 12423, + "Ġveter": 8901, + "Ġveteran": 18324, + "Ġveterans": 14343, + "Ġveterinar": 47574, + "Ġveto": 42910, + "Ġveulent": 41826, + "Ġveure": 26060, + "Ġveut": 14873, + "Ġveux": 16389, + "Ġveya": 49223, + "Ġvez": 5715, + "Ġvezes": 12925, + "Ġvi": 1932, + "Ġvia": 5766, + "Ġviable": 22024, + "Ġviaje": 48932, + "Ġvib": 11666, + "Ġvibe": 14606, + "Ġvibes": 27636, + "Ġvibr": 11599, + "Ġvibrant": 21571, + "Ġvibrating": 47748, + "Ġvibration": 20006, + "Ġvibrations": 32339, + "Ġvic": 26031, + "Ġvice": 11964, + "Ġvicinity": 42387, + "Ġvicious": 30093, + "Ġvict": 4403, + "Ġvictim": 6760, + "Ġvictims": 11448, + "Ġvictories": 38259, + "Ġvictorious": 42557, + "Ġvictory": 9812, + "Ġvid": 7217, + "Ġvida": 7644, + "Ġvidare": 49324, + "Ġvide": 838, + "Ġvideo": 960, + "Ġvideog": 46801, + "Ġvideos": 2145, + "Ġvidé": 9543, + "Ġvidéo": 11660, + "Ġvidéos": 25417, + "Ġvie": 4941, + "Ġviel": 5891, + "Ġviele": 9693, + "Ġvielen": 19885, + "Ġvielleicht": 12547, + "Ġvielä": 36470, + "Ġviendo": 34506, + "Ġviene": 19561, + "Ġvienen": 49298, + "Ġviennent": 44458, + "Ġviens": 36421, + "Ġvient": 22876, + "Ġvier": 17634, + "Ġview": 1910, + "Ġviewed": 19174, + "Ġviewer": 16767, + "Ġviewers": 8499, + "Ġviewing": 17480, + "Ġviewpoint": 35248, + "Ġviews": 6809, + "Ġvig": 15366, + "Ġvigil": 39093, + "Ġvigilant": 45737, + "Ġvigor": 42396, + "Ġvikt": 26737, + "Ġviktig": 49706, + "Ġviktigt": 46150, + "Ġvil": 15349, + "Ġvill": 4284, + "Ġvilla": 46473, + "Ġvillage": 7288, + "Ġvillagers": 32080, + "Ġvillages": 20444, + "Ġvillain": 17906, + "Ġvillains": 31368, + "Ġville": 23019, + "Ġvimos": 49266, + "Ġvin": 27037, + "Ġvind": 20168, + "Ġvinden": 46089, + "Ġvine": 12755, + "Ġvinegar": 18030, + "Ġvino": 48841, + "Ġvintage": 23050, + "Ġvinyl": 25226, + "Ġviol": 3448, + "Ġviolate": 37478, + "Ġviolated": 33239, + "Ġviolating": 42201, + "Ġviolation": 22840, + "Ġviolations": 30405, + "Ġviolence": 6270, + "Ġviolent": 11867, + "Ġviolently": 46728, + "Ġviolet": 46480, + "Ġviolin": 22878, + "Ġvir": 4107, + "Ġviral": 16132, + "Ġvirgin": 26404, + "Ġvirt": 4480, + "Ġvirtual": 6374, + "Ġvirtually": 14103, + "Ġvirtue": 20816, + "Ġvirtues": 41106, + "Ġvirtuous": 48918, + "Ġvirus": 5752, + "Ġviruses": 21785, + "Ġvis": 1452, + "Ġvisa": 18589, + "Ġvisas": 45922, + "Ġviscos": 38297, + "Ġviscosity": 39744, + "Ġvisibility": 19883, + "Ġvisible": 8974, + "Ġvision": 5201, + "Ġvisionary": 49442, + "Ġvisions": 30746, + "Ġvisit": 3441, + "Ġvisited": 11220, + "Ġvisiting": 11700, + "Ġvisitor": 28222, + "Ġvisitors": 14315, + "Ġvisits": 17753, + "Ġvist": 40247, + "Ġvista": 22553, + "Ġvisto": 17558, + "Ġvisual": 5056, + "Ġvisualization": 25801, + "Ġvisualize": 23273, + "Ġvisually": 19622, + "Ġvisuals": 26035, + "Ġvisão": 49949, + "Ġvit": 9467, + "Ġvita": 32712, + "Ġvital": 11707, + "Ġvitam": 23617, + "Ġvitamin": 17163, + "Ġvitamins": 27920, + "Ġvite": 24462, + "Ġvitesse": 49573, + "Ġviu": 28383, + "Ġviv": 11005, + "Ġvive": 28927, + "Ġviver": 46280, + "Ġvivid": 23603, + "Ġvivir": 39656, + "Ġvivo": 30689, + "Ġvivre": 34248, + "Ġviá»ĩc": 38628, + "Ġvlog": 8917, + "Ġvlogging": 39117, + "Ġvlogs": 30575, + "Ġvo": 1650, + "Ġvoc": 2329, + "Ġvocabulary": 19864, + "Ġvocal": 11657, + "Ġvocals": 28441, + "Ġvocê": 2723, + "Ġvocês": 10522, + "Ġvodka": 35710, + "Ġvog": 31273, + "Ġvoi": 20931, + "Ġvoice": 3177, + "Ġvoiced": 42246, + "Ġvoices": 9802, + "Ġvoid": 22009, + "Ġvoila": 45565, + "ĠvoilÃł": 14624, + "Ġvoir": 10695, + "Ġvois": 18297, + "Ġvoit": 18164, + "Ġvoiture": 38859, + "Ġvoix": 37188, + "Ġvol": 1996, + "Ġvolatile": 34377, + "Ġvolatility": 25877, + "Ġvolcan": 31117, + "Ġvolcanic": 35813, + "Ġvolcano": 21979, + "Ġvolcanoes": 48221, + "Ġvole": 49877, + "Ġvoll": 15593, + "Ġvolley": 30951, + "Ġvolleyball": 35887, + "Ġvolont": 40005, + "Ġvolt": 5962, + "Ġvolta": 18765, + "Ġvoltage": 8352, + "Ġvoltages": 49614, + "Ġvoltar": 36291, + "Ġvolte": 37801, + "Ġvolts": 22322, + "Ġvolume": 5523, + "Ġvolumes": 22219, + "Ġvolunt": 17911, + "Ġvoluntarily": 41782, + "Ġvoluntary": 28563, + "Ġvolunte": 7662, + "Ġvolunteer": 13835, + "Ġvolunteered": 41213, + "Ġvolunteering": 33237, + "Ġvolunteers": 14352, + "Ġvolver": 33998, + "Ġvom": 10135, + "Ġvomit": 42374, + "Ġvomiting": 46234, + "Ġvon": 2957, + "Ġvont": 14362, + "Ġvontade": 47708, + "Ġvoor": 7358, + "Ġvor": 4245, + "Ġvorbei": 38881, + "Ġvorbere": 48391, + "Ġvorher": 29195, + "Ġvorne": 32025, + "Ġvors": 48432, + "Ġvorstellen": 34346, + "Ġvortex": 49113, + "Ġvos": 13845, + "Ġvost": 28944, + "Ġvot": 3478, + "Ġvote": 4740, + "Ġvoted": 13415, + "Ġvoter": 21722, + "Ġvoters": 14073, + "Ġvotes": 12068, + "Ġvoting": 10419, + "Ġvotre": 10087, + "Ġvou": 6008, + "Ġvouch": 31007, + "Ġvoud": 39520, + "Ġvoulais": 37242, + "Ġvoulez": 29072, + "Ġvous": 2630, + "Ġvow": 17033, + "Ġvowel": 29410, + "Ġvowels": 44972, + "Ġvoy": 7552, + "Ġvoyage": 30729, + "Ġvoyez": 31503, + "Ġvoz": 30005, + "Ġvra": 6070, + "Ġvraag": 46485, + "Ġvrai": 17815, + "Ġvraiment": 8322, + "Ġvrij": 45547, + "Ġvs": 12041, + "Ġvu": 9732, + "Ġvue": 32859, + "Ġvuel": 20126, + "Ġvuelta": 41542, + "Ġvul": 7452, + "Ġvull": 45977, + "Ġvulner": 8184, + "Ġvulnerabilities": 37633, + "Ġvulnerability": 24210, + "Ġvulnerable": 10955, + "Ġvur": 40797, + "Ġvy": 44766, + "Ġvá": 36625, + "Ġvárias": 30235, + "Ġvários": 29830, + "Ġvão": 18766, + "Ġvä": 12099, + "Ġvähän": 42702, + "Ġväl": 22974, + "Ġväldigt": 19888, + "Ġvär": 28187, + "ĠvÃ¥": 27748, + "ĠvÃ¥r": 26477, + "ĠvÃ¥ra": 41042, + "Ġvæ": 18836, + "Ġvære": 27458, + "Ġvé": 19050, + "Ġvéhic": 49438, + "Ġvér": 46919, + "Ġvérit": 30678, + "Ġvéritable": 47492, + "Ġvê": 30384, + "Ġvì": 37902, + "Ġvöllig": 35670, + "ĠvÃł": 10274, + "ĠvÃło": 24995, + "ĠvÃŃ": 6153, + "ĠvÃŃde": 6951, + "ĠvÃŃdeo": 8071, + "ĠvÃŃdeos": 20617, + "Ġvẫn": 49004, + "ĠváºŃy": 29738, + "Ġvá»ģ": 25652, + "Ġvá»ĭ": 45186, + "ĠvỼi": 18916, + "Ġw": 261, + "Ġwa": 5406, + "Ġwaar": 16618, + "Ġwack": 42138, + "Ġwaffle": 44328, + "Ġwag": 36854, + "Ġwage": 15444, + "Ġwages": 20097, + "Ġwagon": 34453, + "Ġwah": 31979, + "Ġwahr": 21628, + "Ġwahrscheinlich": 30957, + "Ġwai": 32883, + "Ġwaist": 15732, + "Ġwait": 1699, + "Ġwaited": 15240, + "Ġwaiter": 45389, + "Ġwaiting": 3806, + "Ġwaits": 40597, + "Ġwaiver": 42143, + "Ġwake": 6634, + "Ġwakes": 29610, + "Ġwaking": 20447, + "Ġwaktu": 44782, + "Ġwal": 21346, + "Ġwalk": 1792, + "Ġwalked": 7628, + "Ġwalking": 4494, + "Ġwalks": 12896, + "Ġwall": 2929, + "Ġwallet": 16599, + "Ġwallpaper": 43293, + "Ġwalls": 7920, + "Ġwalnut": 50136, + "Ġwam": 39104, + "Ġwan": 46930, + "Ġwand": 14304, + "Ġwander": 27541, + "Ġwandering": 26396, + "Ġwann": 38064, + "Ġwanna": 1948, + "Ġwant": 528, + "Ġwanted": 1415, + "Ġwanting": 7935, + "Ġwants": 2738, + "Ġwar": 1516, + "Ġward": 15234, + "Ġwardrobe": 29065, + "Ġware": 17464, + "Ġwarehouse": 22244, + "Ġwaren": 11931, + "Ġwarfare": 24490, + "Ġwarm": 4561, + "Ġwarmed": 38201, + "Ġwarmer": 21599, + "Ġwarming": 17983, + "Ġwarmth": 24737, + "Ġwarn": 12286, + "Ġwarned": 21284, + "Ġwarning": 9164, + "Ġwarnings": 30009, + "Ġwarp": 36030, + "Ġwarrant": 16354, + "Ġwarranty": 26852, + "Ġwarri": 13940, + "Ġwarrior": 20173, + "Ġwarriors": 25303, + "Ġwars": 13718, + "Ġwart": 45124, + "Ġwarten": 46907, + "Ġwarto": 31830, + "Ġwarum": 24331, + "Ġwary": 46585, + "Ġwas": 390, + "Ġwash": 5675, + "Ġwashed": 16300, + "Ġwasher": 29304, + "Ġwashes": 48616, + "Ġwashing": 13836, + "Ġwasn": 2067, + "Ġwast": 49075, + "Ġwaste": 5964, + "Ġwasted": 19496, + "Ġwastewater": 46418, + "Ġwasting": 20457, + "Ġwat": 6858, + "Ġwatch": 1159, + "Ġwatched": 6337, + "Ġwatches": 17062, + "Ġwatching": 1976, + "Ġwater": 1281, + "Ġwatercolor": 31727, + "Ġwaterfall": 27848, + "Ġwatering": 33028, + "Ġwatermelon": 26097, + "Ġwaterproof": 27974, + "Ġwaters": 12975, + "Ġwatershed": 49728, + "Ġwatery": 43015, + "Ġwatt": 31556, + "Ġwatts": 31247, + "Ġwave": 5772, + "Ġwaveform": 36512, + "Ġwavel": 22144, + "Ġwavelength": 22907, + "Ġwavelengths": 47424, + "Ġwaves": 9417, + "Ġwaving": 35347, + "Ġwax": 17352, + "Ġway": 636, + "Ġways": 2098, + "Ġważ": 27777, + "Ġważne": 46110, + "Ġwcze": 38533, + "ĠwczeÅĽniej": 40785, + "Ġwe": 321, + "Ġweak": 5336, + "Ġweaken": 48576, + "Ġweakened": 42613, + "Ġweaker": 24286, + "Ġweakest": 44001, + "Ġweakness": 12772, + "Ġweaknesses": 24381, + "Ġwealth": 7203, + "Ġwealthy": 17707, + "Ġweap": 4528, + "Ġweapon": 7463, + "Ġweapons": 7278, + "Ġwear": 3728, + "Ġwearing": 4769, + "Ġwears": 20877, + "Ġweary": 47853, + "Ġweather": 5503, + "Ġweave": 29145, + "Ġweaving": 40028, + "Ġweb": 3670, + "Ġwebcam": 39490, + "Ġwebinar": 10942, + "Ġwebinars": 26065, + "Ġwebpage": 37852, + "Ġwebs": 2859, + "Ġwebsite": 3144, + "Ġwebsites": 12891, + "Ġwed": 6393, + "Ġwedding": 8523, + "Ġweddings": 39617, + "Ġwedge": 34530, + "Ġwee": 32753, + "Ġweed": 20852, + "Ġweeds": 26370, + "Ġweek": 1243, + "Ġweekend": 6711, + "Ġweekends": 23595, + "Ġweekly": 12460, + "Ġweeks": 3259, + "Ġweer": 19662, + "Ġweet": 28991, + "Ġweg": 15565, + "Ġwegen": 32855, + "Ġweigh": 13843, + "Ġweighed": 32844, + "Ġweighing": 31986, + "Ġweighs": 24911, + "Ġweight": 3364, + "Ġweighted": 32807, + "Ġweights": 17443, + "Ġweil": 7689, + "Ġweird": 3657, + "Ġweirdest": 44807, + "Ġweirdly": 48931, + "Ġweit": 15306, + "Ġweiter": 8988, + "Ġweitere": 30020, + "Ġweiteren": 44036, + "Ġweiterhin": 42480, + "ĠweiÃŁ": 13385, + "Ġwel": 2214, + "Ġwelche": 24311, + "Ġwelcome": 2928, + "Ġwelcomed": 23668, + "Ġwelcoming": 17378, + "Ġweld": 13964, + "Ġwelded": 49227, + "Ġwelding": 25393, + "Ġwelfare": 17788, + "Ġwell": 731, + "Ġwellbeing": 29508, + "Ġwellness": 23913, + "Ġwells": 30984, + "Ġwelt": 43119, + "Ġwen": 11472, + "Ġwenig": 20911, + "Ġweniger": 23224, + "Ġwenn": 4797, + "Ġwent": 1437, + "Ġwer": 2612, + "Ġwerd": 37258, + "Ġwerde": 24866, + "Ġwerden": 4604, + "Ġwere": 645, + "Ġweren": 4999, + "Ġwerk": 37585, + "Ġwert": 47659, + "Ġwes": 38384, + "Ġwest": 7009, + "Ġwestern": 13231, + "Ġwet": 6630, + "Ġweten": 40759, + "Ġwh": 315, + "Ġwhack": 42877, + "Ġwhale": 25370, + "Ġwhales": 32403, + "Ġwhat": 437, + "Ġwhatever": 2035, + "Ġwhatnot": 25882, + "Ġwhats": 29625, + "Ġwhatsoever": 17076, + "Ġwhe": 3966, + "Ġwheat": 16691, + "Ġwheel": 5589, + "Ġwheelchair": 22945, + "Ġwheels": 10046, + "Ġwhen": 562, + "Ġwhenever": 5699, + "Ġwhere": 689, + "Ġwhereas": 9735, + "Ġwhereby": 36998, + "Ġwherein": 43531, + "Ġwherever": 8660, + "Ġwhether": 1968, + "Ġwhich": 597, + "Ġwhichever": 24123, + "Ġwhile": 1339, + "Ġwhilst": 18534, + "Ġwhim": 47271, + "Ġwhip": 22377, + "Ġwhipped": 27918, + "Ġwhipping": 45476, + "Ġwhirl": 35706, + "Ġwhirring": 36861, + "Ġwhis": 13641, + "Ġwhisk": 24485, + "Ġwhiskey": 34648, + "Ġwhisper": 26018, + "Ġwhispering": 42445, + "Ġwhistle": 23470, + "Ġwhistles": 49282, + "Ġwhit": 47548, + "Ġwhite": 2418, + "Ġwhites": 21909, + "Ġwho": 567, + "Ġwhoa": 13310, + "Ġwhoever": 11387, + "Ġwhole": 1379, + "Ġwholes": 34228, + "Ġwholesale": 43982, + "Ġwholly": 45157, + "Ġwhom": 7101, + "Ġwhooshing": 44825, + "Ġwhopping": 50043, + "Ġwhose": 6104, + "Ġwhy": 983, + "Ġwi": 26393, + "Ġwicht": 26244, + "Ġwichtig": 13621, + "Ġwichtige": 46276, + "Ġwichtiger": 48840, + "Ġwicked": 22663, + "Ġwid": 5274, + "Ġwide": 4874, + "Ġwidely": 13371, + "Ġwiden": 32552, + "Ġwider": 11842, + "Ġwides": 21516, + "Ġwidespread": 22679, + "Ġwidget": 34047, + "Ġwidgets": 43355, + "Ġwidow": 37207, + "Ġwidth": 11402, + "Ġwidz": 27486, + "Ġwie": 3355, + "Ġwied": 46894, + "Ġwieder": 6216, + "Ġwiel": 20570, + "Ġwield": 35982, + "Ġwiele": 33137, + "Ġwielu": 40437, + "Ġwiem": 26522, + "Ġwife": 3836, + "Ġwifi": 35246, + "Ġwig": 24094, + "Ġwiggle": 33377, + "Ġwij": 24770, + "Ġwil": 20501, + "Ġwild": 4868, + "Ġwilderness": 27613, + "Ġwildlife": 19199, + "Ġwildly": 34731, + "Ġwill": 486, + "Ġwillen": 35830, + "Ġwilling": 4950, + "Ġwillingly": 44675, + "Ġwillingness": 25069, + "Ġwillkommen": 46439, + "Ġwillst": 48355, + "Ġwilt": 45357, + "Ġwin": 1942, + "Ġwind": 2468, + "Ġwinding": 29775, + "Ġwindow": 4910, + "Ġwindows": 9309, + "Ġwinds": 17765, + "Ġwindshield": 39996, + "Ġwindy": 30330, + "Ġwine": 7209, + "Ġwines": 35970, + "Ġwing": 11162, + "Ġwings": 11405, + "Ġwink": 44212, + "Ġwinner": 8507, + "Ġwinners": 17193, + "Ġwinning": 8224, + "Ġwins": 10641, + "Ġwinter": 6355, + "Ġwip": 15887, + "Ġwipe": 14082, + "Ġwiped": 26879, + "Ġwipes": 41228, + "Ġwiping": 40611, + "Ġwir": 1987, + "Ġwird": 4578, + "Ġwire": 6234, + "Ġwired": 27415, + "Ġwireless": 14720, + "Ġwires": 15537, + "Ġwiring": 27520, + "Ġwirklich": 9696, + "Ġwis": 9074, + "Ġwisdom": 10712, + "Ġwise": 10829, + "Ġwisely": 37632, + "Ġwish": 3172, + "Ġwished": 25811, + "Ġwishes": 15065, + "Ġwishing": 30049, + "Ġwissen": 16331, + "Ġwit": 32161, + "Ġwitch": 14867, + "Ġwitches": 43467, + "Ġwith": 365, + "Ġwithd": 12483, + "Ġwithdraw": 14999, + "Ġwithdrawal": 30646, + "Ġwithdrawn": 48151, + "Ġwithhold": 48867, + "Ġwithin": 1951, + "Ġwithout": 1553, + "Ġwithstand": 31311, + "Ġwitness": 7286, + "Ġwitnessed": 21519, + "Ġwitnesses": 20217, + "Ġwitnessing": 39233, + "Ġwives": 24936, + "Ġwiz": 40808, + "Ġwizard": 25807, + "ĠwiÄĻ": 10469, + "ĠwiÄĻc": 16677, + "ĠwiÄĻcej": 26004, + "ĠwiÄĻks": 29968, + "Ġwn": 45368, + "Ġwo": 6020, + "Ġwoah": 37116, + "Ġwob": 33775, + "Ġwod": 47751, + "Ġwoh": 48471, + "Ġwohl": 24531, + "Ġwoj": 40758, + "Ġwok": 40022, + "Ġwoke": 12852, + "Ġwol": 20960, + "Ġwolf": 19216, + "Ġwoll": 8181, + "Ġwollen": 11253, + "Ġwollt": 45826, + "Ġwollte": 24509, + "Ġwollten": 46019, + "Ġwolves": 30404, + "Ġwom": 1579, + "Ġwoman": 3059, + "Ġwomb": 34310, + "Ġwomen": 2266, + "Ġwon": 1582, + "Ġwond": 2046, + "Ġwonder": 2441, + "Ġwondered": 17055, + "Ġwonderful": 3715, + "Ġwonderfully": 38917, + "Ġwondering": 6359, + "Ġwonders": 27348, + "Ġwont": 27524, + "Ġwoo": 21657, + "Ġwood": 4576, + "Ġwooden": 14744, + "Ġwoods": 15296, + "Ġwool": 24181, + "Ġwor": 469, + "Ġword": 1349, + "Ġworden": 14054, + "Ġwording": 47602, + "Ġwords": 2283, + "Ġwordt": 20365, + "Ġwore": 13857, + "Ġwork": 589, + "Ġworked": 2732, + "Ġworker": 11346, + "Ġworkers": 5600, + "Ġworkflow": 20993, + "Ġworkflows": 43461, + "Ġworkforce": 14201, + "Ġworking": 1364, + "Ġworkload": 20139, + "Ġworkloads": 32452, + "Ġworkout": 12169, + "Ġworkouts": 28300, + "Ġworkplace": 15328, + "Ġworks": 1985, + "Ġworksheet": 49890, + "Ġworkshop": 13541, + "Ġworkshops": 19162, + "Ġworkspace": 32706, + "Ġworld": 1002, + "Ġworldly": 40397, + "Ġworlds": 13401, + "Ġworldview": 41141, + "Ġworldwide": 13485, + "Ġworm": 23835, + "Ġworms": 28271, + "Ġworn": 15254, + "Ġworried": 5804, + "Ġworries": 16340, + "Ġworry": 3292, + "Ġworrying": 18788, + "Ġwors": 47567, + "Ġworse": 5324, + "Ġworsh": 35366, + "Ġworship": 9965, + "Ġworst": 5855, + "Ġworth": 3163, + "Ġworthless": 34857, + "Ġworthwhile": 28159, + "Ġworthy": 14829, + "Ġwould": 576, + "Ġwouldn": 2759, + "Ġwound": 10999, + "Ġwounded": 21906, + "Ġwounds": 21969, + "Ġwoven": 39221, + "Ġwow": 6076, + "Ġwp": 32444, + "Ġwprowad": 46733, + "Ġwr": 928, + "Ġwra": 7843, + "Ġwrap": 7019, + "Ġwrapped": 14226, + "Ġwrapper": 46906, + "Ġwrapping": 21993, + "Ġwraps": 25831, + "Ġwrath": 35496, + "Ġwre": 46674, + "Ġwreck": 21478, + "Ġwrench": 25406, + "Ġwrest": 12591, + "Ġwrestle": 43251, + "Ġwrestler": 47557, + "Ġwrestling": 19274, + "Ġwrinkles": 34822, + "Ġwrist": 15043, + "Ġwrists": 41876, + "Ġwrit": 10912, + "Ġwrite": 2464, + "Ġwriter": 9936, + "Ġwriters": 13491, + "Ġwrites": 13657, + "Ġwriting": 3579, + "Ġwritings": 30083, + "Ġwritten": 3720, + "Ġwrong": 2085, + "Ġwrote": 4114, + "Ġws": 37647, + "Ġwsp": 17757, + "Ġwspól": 47148, + "ĠwspóÅĤ": 39069, + "Ġwsz": 38322, + "Ġwszyscy": 44232, + "Ġwszyst": 10998, + "Ġwszystk": 14615, + "Ġwszystkich": 34234, + "Ġwszystkie": 31723, + "Ġwszystkim": 30481, + "Ġwszystko": 22607, + "Ġwt": 23105, + "Ġwtedy": 26959, + "Ġwunder": 47736, + "Ġwur": 8818, + "Ġwurde": 11191, + "Ġwurden": 21105, + "Ġwus": 42571, + "Ġwww": 12520, + "Ġwy": 4628, + "Ġwyb": 45780, + "Ġwyd": 25984, + "Ġwydaje": 49165, + "Ġwygl": 27947, + "ĠwyglÄħda": 32015, + "Ġwyk": 39287, + "Ġwykon": 46702, + "Ġwykor": 43606, + "Ġwym": 29764, + "Ġwyn": 31936, + "Ġwyp": 46392, + "Ġwys": 27062, + "Ġwyst": 48255, + "Ġwz": 24809, + "Ġwzgl": 48538, + "Ġwäh": 24787, + "Ġwährend": 33624, + "Ġwär": 45779, + "Ġwäre": 14558, + "Ġwären": 43933, + "Ġwün": 30841, + "Ġwür": 9195, + "Ġwürde": 11942, + "Ġwürden": 27621, + "ĠwÅĤ": 34696, + "ĠwÅĤa": 12326, + "ĠwÅĤas": 43572, + "ĠwÅĤaÅĽci": 40112, + "ĠwÅĤaÅĽciwie": 50108, + "ĠwÅĤaÅĽnie": 14234, + "Ġx": 2031, + "Ġxem": 47852, + "Ġxen": 49773, + "Ġxi": 36800, + "Ġxu": 41104, + "Ġy": 288, + "Ġya": 2478, + "Ġyacht": 39629, + "Ġyah": 38642, + "Ġyak": 18603, + "Ġyan": 17700, + "Ġyang": 5581, + "Ġyani": 11654, + "ĠyanlÄ±ÅŁ": 46763, + "Ġyap": 6143, + "ĠyapmÄ±ÅŁ": 47527, + "Ġyapt": 15799, + "Ġyapıl": 37009, + "Ġyapıyor": 46427, + "Ġyapıyorsun": 36964, + "Ġyar": 23793, + "Ġyard": 11682, + "Ġyards": 18685, + "Ġyardım": 38875, + "Ġyarn": 11400, + "Ġyat": 42734, + "Ġyay": 23986, + "Ġyaz": 20819, + "ĠyaÄŁ": 49210, + "ĠyaÅŁ": 16098, + "Ġye": 606, + "Ġyea": 24796, + "Ġyeah": 1338, + "Ġyear": 1064, + "Ġyearly": 39102, + "Ġyears": 924, + "Ġyeast": 21629, + "Ġyell": 20525, + "Ġyelled": 38023, + "Ġyelling": 18381, + "Ġyellow": 5566, + "Ġyells": 48543, + "Ġyem": 32525, + "Ġyemek": 41145, + "Ġyen": 21570, + "Ġyeni": 34320, + "Ġyep": 18633, + "Ġyer": 12954, + "Ġyerde": 45857, + "Ġyere": 42044, + "Ġyes": 2086, + "Ġyesterday": 5186, + "Ġyet": 1939, + "Ġyeter": 48398, + "Ġyeux": 36163, + "Ġyht": 48342, + "Ġyhte": 44876, + "Ġyield": 11257, + "Ġyields": 32168, + "Ġyine": 29088, + "Ġyn": 17861, + "Ġyo": 5290, + "Ġyog": 16570, + "Ġyoga": 15128, + "Ġyogurt": 20997, + "Ġyok": 9229, + "Ġyol": 16290, + "Ġyolk": 32464, + "Ġyolks": 47191, + "Ġyou": 291, + "Ġyoung": 2037, + "Ġyounger": 7037, + "Ġyoungest": 17747, + "Ġyoungsters": 49068, + "Ġyour": 428, + "Ġyours": 6342, + "Ġyourself": 1803, + "Ġyourselves": 14791, + "Ġyout": 11325, + "Ġyouth": 7503, + "Ġyoutube": 12487, + "Ġyoutuber": 37901, + "Ġyoutubers": 46325, + "Ġyr": 37739, + "Ġyuan": 28370, + "Ġyum": 26420, + "Ġyummy": 18576, + "Ġyup": 40073, + "Ġyêu": 49107, + "Ġyön": 42315, + "Ġyük": 37531, + "Ġyüz": 16162, + "Ġyüzden": 33454, + "Ġyıl": 31491, + "Ġz": 710, + "Ġza": 7949, + "Ġzab": 24838, + "Ġzac": 34430, + "Ġzach": 29303, + "Ġzaczy": 43811, + "Ġzad": 42788, + "Ġzag": 27001, + "Ġzaj": 33729, + "Ġzak": 23810, + "Ġzal": 29599, + "Ġzam": 19876, + "Ġzaman": 12180, + "Ġzap": 14223, + "Ġzar": 22675, + "Ġzas": 26530, + "Ġzasad": 44585, + "Ġzast": 36746, + "Ġzat": 35802, + "Ġzaten": 22089, + "Ġzaw": 28165, + "Ġzawsze": 30964, + "Ġzd": 16221, + "Ġzde": 49749, + "ĠzdjÄĻ": 49026, + "Ġzdrow": 49745, + "Ġze": 5277, + "Ġzebra": 47060, + "Ġzeg": 23631, + "Ġzeggen": 31633, + "Ġzehn": 33975, + "Ġzeigen": 24687, + "Ġzeigt": 29250, + "Ġzeit": 49367, + "Ġzeker": 43844, + "Ġzelf": 26172, + "Ġzen": 37097, + "Ġzer": 44746, + "Ġzero": 4018, + "Ġzeros": 35193, + "Ġzest": 37889, + "Ġzg": 40948, + "Ġzich": 31820, + "Ġzie": 16503, + "Ġziehen": 40645, + "Ġziem": 25986, + "Ġziemlich": 28901, + "Ġzien": 23735, + "Ġziet": 39827, + "Ġzig": 38290, + "Ġzij": 49311, + "Ġzijn": 8004, + "Ġzinc": 29062, + "Ġzip": 20730, + "Ġzipper": 29887, + "Ġzit": 25013, + "Ġzitten": 35242, + "Ġzm": 17020, + "Ġzmian": 43591, + "Ġzn": 15397, + "Ġznaczy": 36584, + "Ġznaj": 27318, + "Ġznajdu": 47570, + "Ġzo": 5721, + "Ġzoals": 40040, + "Ġzob": 25100, + "Ġzobaczy": 37273, + "Ġzod": 39979, + "Ġzomb": 13374, + "Ġzombie": 20310, + "Ġzombies": 24230, + "Ġzona": 24848, + "Ġzone": 6668, + "Ġzones": 16025, + "Ġzoning": 37184, + "Ġzoo": 25347, + "Ġzoom": 8863, + "Ġzooming": 48226, + "Ġzor": 22304, + "Ġzost": 31873, + "Ġzosta": 23154, + "Ġzou": 22934, + "Ġzrob": 44399, + "Ġzrobi": 24483, + "ĠzrobiÄĩ": 31785, + "Ġzu": 2164, + "Ġzucch": 36748, + "Ġzucchini": 44781, + "Ġzug": 33507, + "Ġzuk": 50151, + "Ġzul": 43238, + "Ġzum": 5919, + "Ġzumindest": 38082, + "ĠzupeÅĤnie": 49922, + "Ġzur": 7147, + "Ġzurück": 15089, + "Ġzus": 11548, + "Ġzusammen": 14311, + "Ġzust": 45034, + "Ġzw": 11873, + "Ġzwar": 19054, + "Ġzwe": 8733, + "Ġzwei": 12002, + "Ġzweite": 37456, + "Ġzweiten": 39943, + "Ġzwischen": 19875, + "ĠzwiÄħz": 27741, + "Ġzwr": 49111, + "Ġzwy": 43436, + "ĠzÅĤ": 31614, + "Ġ{": 10929, + "Ġ{\\": 18128, + "Ġ|": 18362, + "Ġ}": 49870, + "Ġ~": 11938, + "ĠÂ": 1815, + "Ġ¡": 6514, + "Ġ£": 14378, + "Ġ§": 49803, + "Ġ«": 4657, + "Ġ°": 31462, + "Ġ»": 8793, + "Ġ»,": 34319, + "Ġ».": 28082, + "Ġ»:": 40795, + "Ġ½": 32653, + "Ġ¿": 3841, + "ĠÃ": 690, + "Ġá": 7352, + "Ġágua": 23824, + "Ġár": 35349, + "Ġárea": 25701, + "Ġáreas": 48088, + "Ġâ": 20621, + "Ġä": 3078, + "Ġähnlich": 49696, + "Ġän": 26072, + "Ġänd": 24981, + "Ġändern": 47775, + "Ġär": 3775, + "Ġäven": 32669, + "ĠÃ¥": 8841, + "ĠÃ¥r": 19525, + "ĠÃ¥t": 39502, + "Ġç": 1844, + "Ġça": 2788, + "Ġçal": 16210, + "ĠçalÄ±ÅŁ": 18107, + "Ġçek": 22559, + "Ġçev": 45921, + "Ġçoc": 19156, + "Ġçocuk": 25216, + "ĠçocuÄŁ": 38914, + "Ġçok": 7343, + "Ġçünkü": 36336, + "Ġçık": 12208, + "Ġçıkar": 41097, + "Ġçıkt": 34462, + "Ġçıktı": 48378, + "Ġè": 4873, + "Ġé": 1136, + "Ġéc": 15175, + "Ġéch": 39310, + "Ġéconom": 31171, + "Ġéconomique": 49915, + "Ġécrit": 41700, + "Ġégal": 19540, + "Ġégalement": 20503, + "Ġél": 11810, + "Ġélect": 30996, + "Ġélé": 46502, + "Ġéléments": 49977, + "Ġén": 39315, + "Ġéner": 45045, + "Ġénorm": 27982, + "Ġénormément": 41595, + "Ġép": 21018, + "Ġépisode": 47285, + "Ġépo": 21354, + "Ġépoca": 25024, + "Ġéqu": 25830, + "Ġés": 5960, + "Ġét": 4823, + "Ġéta": 21325, + "Ġétaient": 25999, + "Ġétait": 11806, + "Ġétant": 41144, + "Ġété": 8862, + "Ġév": 20090, + "Ġévidemment": 24724, + "Ġéén": 39133, + "Ġê": 6203, + "Ġêtes": 18935, + "Ġêtre": 7418, + "Ġî": 11300, + "Ġîn": 15351, + "Ġînt": 43990, + "Ġñ": 34110, + "Ġó": 11857, + "Ġór": 44083, + "Ġót": 44490, + "Ġô": 24107, + "Ġông": 34835, + "Ġö": 4044, + "Ġöffentlich": 34603, + "Ġöl": 31854, + "Ġöld": 35419, + "Ġön": 12253, + "Ġönce": 22353, + "Ġönem": 31652, + "Ġönemli": 35154, + "Ġör": 39249, + "Ġöver": 23026, + "Ġöyle": 16528, + "Ġöz": 27010, + "ĠÃ¶ÄŁ": 24411, + "ĠÃ¶ÄŁren": 40283, + "Ġø": 43008, + "Ġú": 6991, + "Ġúlt": 11499, + "Ġúltima": 28118, + "Ġúltimo": 21013, + "Ġúltimos": 33013, + "Ġún": 17524, + "Ġúnica": 30104, + "Ġúnico": 26113, + "Ġútil": 49191, + "Ġü": 3304, + "Ġüber": 4502, + "Ġüberall": 38035, + "Ġüberhaupt": 20023, + "Ġübers": 45022, + "Ġüberzeug": 48598, + "Ġübrig": 32343, + "Ġübrigens": 38215, + "Ġül": 35073, + "Ġüst": 28816, + "Ġüz": 32145, + "Ġüzer": 25813, + "Ġüzerine": 43816, + "Ġüç": 29630, + "Ġý": 49291, + "Ġþ": 43219, + "ĠÃĢ": 19018, + "ĠÃģ": 24205, + "ĠÃĦ": 13700, + "ĠÃĦr": 34403, + "ĠÃħ": 43360, + "ĠÃĩ": 6256, + "ĠÃĩa": 11527, + "ĠÃĩok": 19243, + "ĠÃĩünkü": 26763, + "ĠÃĪ": 34495, + "ĠÃī": 4922, + "ĠÃīl": 34325, + "ĠÃīs": 16243, + "ĠÃīt": 40567, + "ĠÃītats": 44444, + "ĠÃİ": 46104, + "ĠÃĵ": 35232, + "ĠÃĶ": 40732, + "ĠÃĸ": 9158, + "ĠÃĸsterreich": 41423, + "ĠÃĸyle": 34883, + "ĠÃĸz": 47498, + "ĠÃľ": 10713, + "ĠÃľber": 18086, + "ĠÃł": 1531, + "ĠÃłs": 23763, + "ĠÃŃ": 18645, + "ĠÄ": 2127, + "Ġİ": 6601, + "Ġİn": 47673, + "Ġİns": 45379, + "Ġİs": 45053, + "Ġİstanbul": 45822, + "Ġİyi": 30786, + "ĠÄ°ÅŁ": 26605, + "ĠÄ°ÅŁte": 34757, + "ĠÄĥ": 26790, + "ĠÄĥn": 28657, + "ĠÄĩ": 45854, + "ĠÄį": 22392, + "ĠÄIJ": 13055, + "ĠÄIJây": 45672, + "ĠÄij": 2934, + "ĠÄijang": 30723, + "ĠÄiji": 13264, + "ĠÄijiá»ģu": 42082, + "ĠÄijâu": 35433, + "ĠÄijây": 20199, + "ĠÄijã": 17283, + "ĠÄijó": 17647, + "ĠÄijược": 15832, + "ĠÄijấy": 39370, + "ĠÄijầu": 32573, + "ĠÄijến": 26353, + "ĠÄijá»ĥ": 20081, + "ĠÄijá»ĭ": 42063, + "ĠÄijá»Ļ": 29075, + "ĠÄijá»Ļng": 46880, + "ĠÅ": 4423, + "ĠÅ¡": 22552, + "Ġź": 50212, + "ĠÅ»": 29804, + "ĠÅ»e": 46864, + "Ġż": 19625, + "Ġżad": 39628, + "Ġże": 3561, + "Ġżeby": 11316, + "Ġży": 16136, + "Ġżycia": 44343, + "Ġżycie": 43202, + "Ġž": 17305, + "Ġže": 25178, + "ĠÅģ": 36901, + "ĠÅĤ": 25387, + "ĠÅĤad": 47910, + "ĠÅĤat": 47759, + "ĠÅĵ": 48360, + "ĠÅļ": 27933, + "ĠÅĽ": 8299, + "ĠÅĽm": 46991, + "ĠÅĽrod": 28580, + "ĠÅĽwi": 21485, + "ĠÅĽwiat": 36425, + "ĠÅĽwie": 40078, + "ĠÅŀ": 7918, + "ĠÅŀey": 43171, + "ĠÅŀimdi": 17734, + "ĠÅŀu": 33583, + "ĠÅŁ": 3382, + "ĠÅŁeh": 49755, + "ĠÅŁek": 18850, + "ĠÅŁekilde": 23537, + "ĠÅŁey": 6517, + "ĠÅŁeyi": 31735, + "ĠÅŁeyler": 28863, + "ĠÅŁimdi": 16391, + "ĠÅŁu": 17235, + "ĠÅŁunu": 45821, + "ĠÅŁur": 49420, + "ĠÅŁÃ¶yle": 26712, + "ĠÅł": 49039, + "ĠÆ¡i": 43144, + "ĠÈ": 36726, + "ĠÈĺ": 38127, + "ĠÈĺi": 41820, + "ĠÈĻ": 15318, + "ĠÈĻi": 17060, + "ĠÍ": 28451, + "ĠÍ¡": 38040, + "Ġ͡°": 40130, + "ĠÎ": 1158, + "ĠΣ": 26408, + "ĠΤ": 20838, + "ĠΤο": 44524, + "ĠΧ": 48924, + "Ġά": 22554, + "Ġάλλ": 41370, + "Ġή": 24841, + "ĠήÏĦαν": 47768, + "Ġα": 5691, + "Ġακ": 40822, + "Ġαλλά": 44716, + "Ġαν": 25715, + "Ġανα": 49931, + "ĠαÏĢ": 45787, + "ĠαÏĢο": 44313, + "ĠαÏĢÏĮ": 19821, + "ĠαÏħÏĦ": 18679, + "ĠαÏħÏĦÏĮ": 26865, + "Ġβ": 15787, + "Ġγ": 10643, + "Ġγια": 17321, + "Ġδ": 8715, + "Ġδεν": 23295, + "Ġδια": 38744, + "Ġε": 5958, + "Ġεί": 25090, + "Ġείναι": 15974, + "ĠεδÏİ": 44440, + "Ġεκ": 44009, + "Ġεν": 42958, + "ĠεÏĢ": 26752, + "ĠεÏĢι": 49185, + "Ġζ": 36544, + "Ġη": 18231, + "Ġθ": 12622, + "Ġθα": 18828, + "Ġι": 47467, + "Ġκ": 4903, + "Ġκά": 26751, + "Ġκάν": 31492, + "Ġκα": 14832, + "Ġκαι": 8839, + "Ġκι": 47328, + "Ġλ": 15015, + "ĠλÎŃ": 36148, + "Ġμ": 5337, + "Ġμα": 36759, + "ĠμαÏĤ": 25287, + "Ġμε": 13769, + "Ġμια": 38170, + "ĠμοÏħ": 23449, + "ĠμÎŃ": 27730, + "ĠμÏĢο": 33904, + "Ġν": 8066, + "Ġνα": 9083, + "Ġξ": 33179, + "Ġο": 11383, + "Ġοι": 33908, + "ĠοÏĢο": 44035, + "ĠÎĪ": 38161, + "ĠÎĮ": 43692, + "ĠÎij": 18793, + "ĠÎĵ": 30350, + "ĠÎĵια": 48575, + "ĠÎĶ": 27556, + "ĠÎķ": 18236, + "ĠÎĹ": 45836, + "ĠÎĺ": 30128, + "ĠÎļ": 19233, + "ĠÎļαι": 32619, + "ĠÎľ": 24834, + "ĠÎĿ": 38854, + "ĠÎŁ": 34650, + "ĠÎł": 20894, + "ĠÎŃ": 10541, + "ĠÎŃνα": 26117, + "ĠÎŃÏĩ": 21807, + "ĠÎŃÏĩει": 42940, + "ĠÏ": 2467, + "ĠÏĢ": 4654, + "ĠÏĢά": 31967, + "ĠÏĢα": 23380, + "ĠÏĢε": 28465, + "ĠÏĢεÏģι": 46618, + "ĠÏĢο": 39099, + "ĠÏĢολ": 30403, + "ĠÏĢολÏį": 36047, + "ĠÏĢοÏħ": 15878, + "ĠÏĢÏģο": 26017, + "ĠÏģ": 40750, + "ĠÏĥ": 5532, + "ĠÏĥαÏĤ": 34981, + "ĠÏĥε": 23814, + "ĠÏĥοÏħ": 43455, + "ĠÏĥÏĦα": 45391, + "ĠÏĥÏĦη": 23502, + "ĠÏĥÏĦην": 31766, + "ĠÏĥÏĦο": 20702, + "ĠÏĥÏħ": 23415, + "ĠÏĥÏħν": 49025, + "ĠÏĦ": 3596, + "ĠÏĦα": 16900, + "ĠÏĦη": 10013, + "ĠÏĦην": 17309, + "ĠÏĦηÏĤ": 22409, + "ĠÏĦι": 25962, + "ĠÏĦιÏĤ": 35816, + "ĠÏĦο": 8335, + "ĠÏĦον": 24022, + "ĠÏĦοÏħ": 13380, + "ĠÏĦοÏħÏĤ": 30320, + "ĠÏĦÏīν": 39575, + "ĠÏħ": 28049, + "ĠÏĨ": 17579, + "ĠÏĩ": 17319, + "ĠÏī": 46653, + "ĠÏĮ": 12485, + "ĠÏĮÏĦι": 27841, + "ĠÐ": 333, + "ĠС": 2933, + "ĠСШÐIJ": 35448, + "ĠСам": 31152, + "ĠСв": 48536, + "ĠСегоднÑı": 35913, + "ĠСейÑĩаÑģ": 23590, + "ĠСеÑĢ": 46779, + "ĠСеÑĢг": 38393, + "ĠСк": 22965, + "ĠСлед": 48301, + "ĠСо": 40156, + "ĠСов": 45680, + "ĠСп": 19349, + "ĠСпаÑģибо": 29219, + "ĠСÑĤ": 17483, + "ĠТ": 3200, + "ĠТак": 8770, + "ĠТакже": 38751, + "ĠТам": 27451, + "ĠТем": 44064, + "ĠТепеÑĢÑĮ": 25238, + "ĠТо": 16047, + "ĠТогда": 46357, + "ĠТолÑĮко": 36021, + "ĠТÑĥÑĤ": 35358, + "ĠТÑĭ": 14509, + "ĠУ": 6523, + "ĠУкÑĢаÑĹ": 34817, + "ĠФ": 13196, + "ĠÐ¥": 9456, + "ĠХоÑĢоÑĪо": 37564, + "ĠХоÑĤ": 35886, + "ĠХоÑĤÑı": 43963, + "ĠЦ": 18545, + "ĠЦе": 36263, + "ĠЧ": 7099, + "ĠЧеÑĢ": 39659, + "ĠЧÑĤо": 13169, + "ĠЧÑĤобÑĭ": 36026, + "ĠШ": 18428, + "ĠЩ": 42373, + "ĠЮ": 27002, + "ĠЯ": 4857, + "ĠЯк": 46116, + "Ġа": 2559, + "Ġаб": 25600, + "ĠабÑģолÑİÑĤ": 32078, + "ĠабÑģолÑİÑĤно": 35060, + "Ġав": 14376, + "ĠавÑĤом": 27669, + "ĠавÑĤомоб": 37122, + "Ġад": 27705, + "Ġак": 13790, + "ĠаккÑĥ": 49381, + "ĠакÑĤив": 30239, + "Ġал": 39336, + "Ġале": 46923, + "ĠамеÑĢик": 34958, + "ĠамеÑĢикан": 46263, + "Ġан": 17086, + "Ġанглий": 46611, + "Ġап": 29356, + "ĠаÑĢ": 16643, + "ĠаÑĤ": 46998, + "Ġб": 1268, + "Ġбаб": 37783, + "Ġбаг": 45165, + "Ġбаз": 39798, + "Ġбал": 37683, + "Ġбан": 29049, + "ĠбаÑĢ": 36766, + "ĠбаÑĤ": 47697, + "Ġбег": 49942, + "Ġбез": 10969, + "ĠбезопаÑģ": 45015, + "Ġбел": 29430, + "ĠбеÑĢ": 24562, + "ĠбеÑģ": 37658, + "ĠбеÑģп": 32971, + "Ġби": 47334, + "ĠбизнеÑģ": 47054, + "Ġбл": 16709, + "Ġблаг": 31971, + "ĠблагодаÑĢ": 38979, + "Ġбли": 21747, + "Ġблиз": 37060, + "Ġблок": 42222, + "Ġбо": 20462, + "Ġбог": 33001, + "Ġбой": 41029, + "Ġбок": 45156, + "Ġбол": 11993, + "Ġболее": 15103, + "ĠболÑĮ": 7351, + "ĠболÑĮÑĪ": 12457, + "ĠболÑĮÑĪе": 12846, + "ĠболÑĮÑĪое": 46843, + "ĠболÑĮÑĪой": 35533, + "ĠбоÑĢ": 30101, + "ĠбÑĢ": 19603, + "ĠбÑĢаÑĤ": 43333, + "ĠбÑĢоÑģ": 47718, + "ĠбÑĥ": 21646, + "ĠбÑĥд": 4529, + "ĠбÑĥде": 47438, + "ĠбÑĥдем": 23213, + "ĠбÑĥдеÑĤ": 7306, + "ĠбÑĥдеÑĤе": 46872, + "ĠбÑĥдÑĤо": 45239, + "ĠбÑĥдÑĥ": 21407, + "ĠбÑĥдÑĥÑĤ": 20393, + "ĠбÑĥдÑĥÑī": 44327, + "ĠбÑĥк": 36761, + "ĠбÑĥкв": 42587, + "ĠбÑĥло": 41981, + "ĠбÑĥм": 49721, + "ĠбÑĭ": 2768, + "ĠбÑĭв": 28951, + "ĠбÑĭваеÑĤ": 48972, + "ĠбÑĭл": 10059, + "ĠбÑĭла": 13640, + "ĠбÑĭли": 14355, + "ĠбÑĭло": 8060, + "ĠбÑĭÑģÑĤÑĢ": 37283, + "ĠбÑĭÑģÑĤÑĢо": 31874, + "ĠбÑĭÑĤÑĮ": 11510, + "ĠбÑĸлÑĮ": 47692, + "Ġв": 740, + "Ġваж": 19491, + "Ġважно": 38851, + "Ġвал": 42187, + "Ġвам": 10448, + "Ġвами": 24166, + "ĠваÑĢи": 32382, + "ĠваÑĢианÑĤ": 42442, + "ĠваÑģ": 10655, + "ĠваÑĪ": 14536, + "ĠваÑĪи": 48375, + "Ġвд": 25507, + "ĠвдÑĢÑĥг": 45926, + "Ġвед": 35126, + "ĠведÑĮ": 28026, + "Ġвел": 29328, + "ĠвеÑĢ": 10544, + "ĠвеÑĢÑģ": 35285, + "ĠвеÑĢÑħ": 47758, + "ĠвеÑģ": 28244, + "ĠвеÑģÑĮ": 29225, + "ĠвеÑĤ": 45010, + "ĠвеÑĩ": 31943, + "ĠвеÑī": 27046, + "ĠвеÑīи": 43050, + "Ġвже": 40738, + "Ġвз": 11892, + "ĠвзÑıÑĤÑĮ": 44101, + "Ġви": 28570, + "Ġвид": 6504, + "Ġвиде": 12921, + "Ġвидел": 40718, + "Ġвидели": 49998, + "Ġвидео": 15589, + "Ġвидим": 38273, + "ĠвидиÑĤе": 41904, + "Ġвидно": 41239, + "ĠвижÑĥ": 47813, + "Ġвик": 49233, + "Ġвин": 49847, + "ĠвклÑİÑĩ": 31251, + "ĠвкÑĥÑģ": 28295, + "Ġвлад": 46458, + "Ġвли": 45689, + "Ġвм": 20307, + "ĠвмеÑģÑĤе": 26905, + "Ġвн": 17958, + "ĠвнеÑĪ": 50025, + "Ġвниз": 46697, + "Ġвним": 24762, + "Ġвнимание": 33267, + "ĠвнÑĥÑĤ": 25282, + "ĠвнÑĥÑĤÑĢи": 39145, + "Ġво": 7900, + "Ġвод": 14545, + "ĠводÑĭ": 44391, + "Ġвоз": 8918, + "Ġвозв": 39797, + "ĠвозвÑĢаÑī": 45503, + "ĠвоздÑĥ": 47396, + "Ġвозм": 18077, + "Ġвозмож": 31544, + "Ġвозможно": 26740, + "ĠвозможноÑģÑĤÑĮ": 41233, + "ĠвозÑĮ": 45097, + "Ġвой": 26055, + "Ġвок": 39277, + "ĠвокÑĢÑĥг": 45247, + "Ġвол": 22211, + "Ġвони": 40727, + "ĠвообÑīе": 14345, + "ĠвопÑĢоÑģ": 17611, + "ĠвопÑĢоÑģÑĭ": 48418, + "ĠвоÑģ": 18867, + "ĠвоÑģп": 31143, + "ĠвоÑĤ": 5505, + "Ġвп": 27163, + "ĠвпеÑĢ": 32560, + "Ġвполне": 46780, + "ĠвÑĢ": 35705, + "ĠвÑĢем": 8951, + "ĠвÑĢемени": 26436, + "ĠвÑĢемÑı": 12039, + "ĠвÑĢоде": 41079, + "ĠвÑģ": 2852, + "ĠвÑģе": 4640, + "ĠвÑģегда": 19087, + "ĠвÑģего": 15520, + "ĠвÑģей": 43419, + "ĠвÑģем": 21042, + "ĠвÑģеÑħ": 17260, + "ĠвÑģп": 35944, + "ĠвÑģÑĤÑĢ": 20569, + "ĠвÑģÑĤÑĢеÑĤ": 47647, + "ĠвÑģÑĤÑĢеÑĩ": 25669, + "ĠвÑģÑİ": 32341, + "ĠвÑģÑı": 24614, + "ĠвÑģÑij": 9649, + "ĠвÑĤоÑĢ": 19823, + "ĠвÑĤоÑĢой": 36128, + "ĠвÑħод": 45746, + "ĠвÑĩ": 49102, + "ĠвÑĭ": 2840, + "ĠвÑĭб": 18061, + "ĠвÑĭглÑıд": 30449, + "ĠвÑĭглÑıдиÑĤ": 40670, + "ĠвÑĭд": 47535, + "ĠвÑĭз": 31572, + "ĠвÑĭй": 42132, + "ĠвÑĭп": 21188, + "ĠвÑĭпол": 34771, + "ĠвÑĭпÑĥÑģк": 48777, + "ĠвÑĭÑģ": 19361, + "ĠвÑĭÑģок": 35998, + "ĠвÑĭÑģÑĤÑĥп": 48828, + "ĠвÑĭÑħод": 27142, + "ĠвÑĭÑĪ": 33994, + "ĠвÑĭÑĪе": 47281, + "ĠвÑĸд": 16947, + "ĠвÑĸн": 40756, + "Ġг": 2342, + "Ġгаз": 36936, + "ĠгаÑĢ": 38470, + "Ġгде": 11418, + "ĠгеÑĢо": 35279, + "Ġгл": 10735, + "Ġглав": 18539, + "Ġглавное": 39940, + "Ġглаз": 27634, + "Ġглаза": 49664, + "ĠглÑĥб": 41863, + "Ġго": 6778, + "ĠговоÑĢ": 8180, + "ĠговоÑĢил": 39801, + "ĠговоÑĢиÑĤ": 25083, + "ĠговоÑĢиÑĤÑĮ": 32460, + "ĠговоÑĢÑİ": 34931, + "ĠговоÑĢÑı": 42210, + "ĠговоÑĢÑıÑĤ": 33374, + "Ġгод": 9182, + "Ġгода": 18411, + "ĠгодÑĥ": 22688, + "Ġгол": 14932, + "Ġголов": 24721, + "ĠголоÑģ": 42390, + "ĠгоÑĢ": 26493, + "ĠгоÑĢаз": 45386, + "ĠгоÑĢаздо": 45607, + "ĠгоÑĢод": 18750, + "ĠгоÑĢода": 45853, + "ĠгоÑģÑĥдаÑĢ": 42950, + "ĠгоÑĤов": 17137, + "ĠгÑĢ": 11726, + "ĠгÑĢад": 47547, + "ĠгÑĢаÑĦ": 45799, + "ĠгÑĢом": 41765, + "ĠгÑĢÑĥ": 47553, + "ĠгÑĢÑĥп": 27530, + "ĠгÑĢÑĥпп": 29311, + "Ġд": 1070, + "Ġда": 8995, + "Ġдав": 12472, + "Ġдавай": 28869, + "ĠдавайÑĤе": 30412, + "Ġдавно": 40086, + "Ġдаже": 11210, + "Ġдал": 22500, + "Ġдалее": 38978, + "ĠдалÑĮ": 22428, + "ĠдалÑĮÑĪе": 26814, + "Ġдан": 19582, + "Ġдв": 7196, + "Ġдва": 18505, + "Ġдве": 32183, + "Ġдвиг": 30618, + "Ġдвиж": 30473, + "ĠдвÑĥÑħ": 32360, + "Ġде": 36397, + "Ġдев": 20572, + "ĠдейÑģÑĤв": 17136, + "ĠдейÑģÑĤвиÑĤелÑĮно": 27208, + "Ġдел": 6649, + "Ġдела": 46157, + "ĠделаеÑĤ": 43109, + "ĠделаÑĤÑĮ": 19284, + "ĠделаÑİÑĤ": 48732, + "Ġделе": 23845, + "Ġдело": 26444, + "Ġден": 33773, + "Ġденег": 40957, + "ĠденÑĮ": 13509, + "ĠденÑĮги": 27087, + "ĠдеÑĢ": 27620, + "ĠдеÑĢев": 29662, + "ĠдеÑĢж": 27565, + "ĠдеÑģÑı": 32233, + "ĠдеÑģÑıÑĤ": 45884, + "ĠдеÑĤ": 15079, + "ĠдеÑĤей": 38668, + "ĠдеÑĤи": 48941, + "Ġди": 28255, + "Ġдив": 49829, + "ĠдиÑģ": 37929, + "ĠдлÑı": 5561, + "Ġдней": 47678, + "ĠднÑı": 36115, + "Ġдо": 5865, + "Ġдоб": 16991, + "Ġдобав": 23856, + "ĠдобÑĢ": 35620, + "Ġдов": 20124, + "ĠдоволÑĮно": 31777, + "Ġдог": 36056, + "Ġдок": 22992, + "ĠдокÑĥм": 43031, + "Ġдол": 8300, + "Ġдолго": 37515, + "Ġдолж": 12220, + "Ġдолжен": 25718, + "Ġдолжна": 40129, + "Ġдолжно": 40475, + "ĠдолжнÑĭ": 27581, + "ĠдоллаÑĢ": 26124, + "ĠдоллаÑĢов": 35902, + "Ġдом": 13049, + "Ġдома": 29012, + "Ġдомой": 46319, + "Ġдоп": 23562, + "Ġдополн": 45120, + "ĠдоÑĢ": 18478, + "ĠдоÑĢог": 24365, + "ĠдоÑģ": 41126, + "ĠдоÑģÑĤ": 34543, + "ĠдоÑģÑĤаÑĤоÑĩно": 28562, + "ĠдоÑģÑĤи": 46630, + "ĠдоÑģÑĤÑĥп": 41057, + "ĠдÑĢ": 37928, + "ĠдÑĢÑĥг": 8435, + "ĠдÑĢÑĥга": 47392, + "ĠдÑĢÑĥгие": 32108, + "ĠдÑĢÑĥгиÑħ": 31211, + "ĠдÑĢÑĥгой": 27823, + "ĠдÑĢÑĥз": 23577, + "ĠдÑĢÑĥзÑĮÑı": 28366, + "ĠдÑĥже": 39919, + "ĠдÑĥм": 13082, + "ĠдÑĥмаÑİ": 23479, + "ĠдÑĥÑħ": 35535, + "ĠдÑĥÑħов": 46373, + "ĠдÑĥÑĪ": 39096, + "Ġе": 1997, + "Ġев": 42402, + "Ġего": 6448, + "Ġед": 20686, + "Ġедин": 33791, + "Ġее": 14803, + "Ġей": 30075, + "ĠемÑĥ": 18220, + "ĠеÑģли": 8042, + "ĠеÑģÑĤе": 43775, + "ĠеÑģÑĤÑĮ": 5640, + "ĠеÑīе": 9910, + "ĠеÑīÑij": 13993, + "ĠеÑij": 18346, + "Ġж": 2989, + "Ġжд": 27020, + "Ġже": 6151, + "Ġжел": 21788, + "Ġжен": 21349, + "ĠженÑī": 28393, + "ĠжеÑģÑĤ": 48111, + "Ġжив": 15156, + "ĠживоÑĤ": 38029, + "Ġжиз": 13505, + "Ġжизни": 21415, + "ĠжизнÑĮ": 25362, + "ĠжиÑĤÑĮ": 40124, + "Ġз": 1423, + "Ġза": 4396, + "Ġзаб": 13890, + "Ġзав": 13388, + "ĠзавиÑģ": 39673, + "Ġзаг": 25770, + "Ġзад": 14787, + "ĠзадаÑĩ": 38793, + "Ġзай": 40133, + "Ġзак": 10264, + "ĠзаклÑİÑĩ": 49613, + "Ġзакон": 25206, + "ĠзаконÑĩ": 39641, + "ĠзакÑĢÑĭ": 43993, + "Ġзал": 32897, + "Ġзам": 13597, + "ĠзамеÑĤ": 36124, + "ĠзамеÑĩ": 41618, + "Ġзан": 18596, + "Ġзаним": 25396, + "Ġзап": 10333, + "ĠзапиÑģ": 36426, + "ĠзаÑĢ": 17821, + "ĠзаÑģ": 27819, + "ĠзаÑĤ": 25880, + "ĠзаÑĤем": 45288, + "ĠзаÑħ": 28701, + "ĠзаÑĩ": 34004, + "ĠзаÑĩем": 41521, + "ĠзаÑī": 31107, + "ĠзаÑıв": 38158, + "Ġзв": 13591, + "Ġзвон": 45832, + "ĠзвÑĥÑĩ": 48031, + "Ġзд": 7608, + "ĠздеÑģÑĮ": 9087, + "ĠздоÑĢов": 29638, + "Ġзем": 27230, + "Ġзм": 48979, + "Ġзн": 15309, + "Ġзна": 6766, + "Ġзнаем": 45491, + "ĠзнаеÑĤ": 39986, + "ĠзнаеÑĤе": 29868, + "ĠзнаеÑĪÑĮ": 38423, + "Ġзнак": 31949, + "Ġзнаком": 40909, + "ĠзнаÑĤÑĮ": 49997, + "ĠзнаÑĩ": 27605, + "ĠзнаÑĩиÑĤ": 24013, + "ĠзнаÑİ": 16315, + "Ġзов": 38893, + "ĠзовÑĥÑĤ": 46376, + "ĠзÑĢ": 27589, + "Ġи": 1006, + "Ġиг": 20713, + "ĠигÑĢ": 14568, + "ĠигÑĢа": 37120, + "ĠигÑĢÑĭ": 36183, + "Ġид": 17255, + "Ġиде": 26547, + "ĠидеÑĤ": 40029, + "Ġиз": 3943, + "Ġизб": 38995, + "Ġизв": 22599, + "ĠизвеÑģÑĤ": 37073, + "Ġизмен": 30345, + "ĠизÑĥÑĩ": 43264, + "Ġили": 8101, + "Ġим": 7604, + "Ġиме": 19539, + "ĠимееÑĤ": 33761, + "Ġименно": 20290, + "Ġин": 6635, + "Ġинд": 47106, + "Ġиногда": 43749, + "ĠинÑģÑĤÑĢÑĥменÑĤ": 44572, + "ĠинÑĤ": 44673, + "ĠинÑĤеÑĢ": 12073, + "ĠинÑĤеÑĢеÑģ": 15033, + "ĠинÑĤеÑĢеÑģно": 33333, + "ĠинÑĦоÑĢм": 29117, + "ĠиÑģ": 12410, + "ĠиÑģк": 20284, + "ĠиÑģп": 11265, + "ĠиÑģполÑĮз": 15552, + "ĠиÑģполÑĮзоваÑĤÑĮ": 33728, + "ĠиÑģпÑĭÑĤ": 46212, + "ĠиÑģÑģлед": 40299, + "ĠиÑģÑĤоÑĢ": 18950, + "ĠиÑģÑĤоÑĢии": 40203, + "ĠиÑģÑĤоÑĢиÑı": 41531, + "ĠиÑĤ": 32388, + "ĠиÑĤог": 36745, + "ĠиÑĤоге": 44063, + "ĠиÑħ": 9642, + "Ġй": 24540, + "Ġйого": 44123, + "Ġк": 981, + "Ġкаб": 46186, + "Ġкад": 42650, + "Ġкаж": 22129, + "Ġкажд": 15698, + "ĠкаждÑĭй": 27628, + "ĠкажеÑĤÑģÑı": 26147, + "Ġказ": 37408, + "Ġкак": 3014, + "ĠкакаÑı": 29334, + "Ġкакие": 19971, + "Ġкаким": 49190, + "ĠкакиÑħ": 44178, + "Ġкакое": 37932, + "Ġкакой": 16898, + "ĠкакÑĥÑİ": 45244, + "Ġкам": 21477, + "Ġкан": 18276, + "Ġканал": 28597, + "Ġканале": 47677, + "Ġкап": 31507, + "ĠкаÑĢ": 13560, + "ĠкаÑĢÑĤ": 34692, + "ĠкаÑģ": 43218, + "ĠкаÑĤ": 33780, + "ĠкаÑĩе": 28595, + "Ġкв": 35350, + "ĠкваÑĢ": 33619, + "ĠкваÑĢÑĤи": 37084, + "Ġкил": 37028, + "Ġкино": 49874, + "Ġкл": 14815, + "ĠклаÑģÑģ": 26197, + "Ġкли": 33504, + "ĠклÑİÑĩ": 43398, + "Ġкни": 32178, + "Ġкноп": 40450, + "Ġко": 3898, + "Ġкогда": 8874, + "Ġкого": 28985, + "Ġкож": 40107, + "Ġкол": 10706, + "Ġколи": 49672, + "ĠколиÑĩе": 25816, + "ĠколиÑĩеÑģÑĤво": 33442, + "Ġком": 7761, + "Ġкоман": 46180, + "Ġкоманд": 35991, + "ĠкомменÑĤ": 32469, + "ĠкомменÑĤаÑĢ": 36558, + "Ġкомна": 43418, + "Ġкомп": 14380, + "Ġкомпании": 44231, + "ĠкомпÑĮÑİÑĤ": 48488, + "ĠкомÑĥ": 40158, + "Ġкон": 6184, + "ĠконеÑĩно": 15271, + "ĠконÑĤ": 43064, + "ĠконÑĤÑĢ": 33271, + "ĠконÑĦ": 45751, + "ĠконÑĨ": 33495, + "ĠконÑĨе": 38769, + "Ġкоп": 42399, + "ĠкоÑĢ": 11384, + "ĠкоÑĢаб": 42830, + "ĠкоÑĢп": 45284, + "ĠкоÑģ": 31839, + "ĠкоÑĤ": 39535, + "ĠкоÑĤоÑĢ": 4388, + "ĠкоÑĤоÑĢаÑı": 19032, + "ĠкоÑĤоÑĢого": 36438, + "ĠкоÑĤоÑĢое": 32000, + "ĠкоÑĤоÑĢой": 29452, + "ĠкоÑĤоÑĢом": 39818, + "ĠкоÑĤоÑĢÑĥÑİ": 32355, + "ĠкоÑĤоÑĢÑĭе": 10381, + "ĠкоÑĤоÑĢÑĭй": 11897, + "ĠкоÑĤоÑĢÑĭÑħ": 28700, + "ĠкоÑĪ": 46774, + "ĠкÑĢ": 7502, + "ĠкÑĢа": 38585, + "ĠкÑĢай": 39584, + "ĠкÑĢаÑģ": 15826, + "ĠкÑĢаÑģив": 26679, + "ĠкÑĢеп": 46584, + "ĠкÑĢов": 31679, + "ĠкÑĢÑĥ": 26970, + "ĠкÑĢÑĥг": 43543, + "ĠкÑĢÑĥп": 39207, + "ĠкÑĢÑĥÑĤ": 43217, + "ĠкÑģÑĤаÑĤи": 35304, + "ĠкÑĤо": 12278, + "ĠкÑĥда": 27509, + "ĠкÑĥп": 25078, + "ĠкÑĥÑĢ": 28975, + "ĠкÑĥÑģ": 48431, + "Ġл": 2344, + "Ġладно": 44107, + "Ġлай": 35475, + "Ġлег": 22311, + "Ġлегко": 39995, + "Ġлеж": 41803, + "ĠлеÑģ": 42548, + "ĠлеÑĤ": 13088, + "Ġли": 7444, + "Ġлибо": 31100, + "ĠлиÑĩ": 29936, + "ĠлиÑĪ": 42637, + "ĠлиÑĪÑĮ": 29179, + "Ġлож": 48048, + "ĠлÑĥÑĩ": 15525, + "ĠлÑĥÑĩÑĪе": 21569, + "ĠлÑİ": 5716, + "ĠлÑİб": 9875, + "ĠлÑİбим": 36973, + "ĠлÑİблÑİ": 44683, + "ĠлÑİбов": 45356, + "ĠлÑİбой": 42803, + "ĠлÑİд": 8836, + "ĠлÑİдей": 16810, + "ĠлÑİди": 15850, + "ĠлÑİдÑıм": 45930, + "Ġм": 1084, + "Ġмаг": 27120, + "Ġмагаз": 39771, + "Ġмай": 41860, + "ĠмакÑģим": 35564, + "Ġмал": 19499, + "ĠмаленÑĮ": 26284, + "Ġмало": 37450, + "Ġмам": 40631, + "Ġмама": 47101, + "ĠмаÑĢ": 31609, + "ĠмаÑģ": 21466, + "ĠмаÑģÑģ": 31384, + "ĠмаÑĤ": 20908, + "ĠмаÑĤеÑĢи": 32835, + "ĠмаÑĪ": 19820, + "Ġмед": 24465, + "ĠмеждÑĥ": 24098, + "Ġмел": 44651, + "Ġмен": 6046, + "Ġменее": 38264, + "ĠменÑĮ": 31752, + "ĠменÑĮÑĪе": 35115, + "ĠменÑı": 6885, + "ĠмеÑĢ": 48231, + "ĠмеÑģÑĤ": 16470, + "ĠмеÑģÑĤа": 43956, + "ĠмеÑģÑĤе": 36534, + "ĠмеÑģÑĤо": 26241, + "ĠмеÑģÑı": 29329, + "ĠмеÑĤ": 18791, + "ĠмеÑħ": 48182, + "ĠмеÑĩ": 42721, + "ĠмеÑĪ": 44874, + "Ġми": 13803, + "Ġмик": 43712, + "Ġмилли": 26349, + "Ġмин": 19073, + "Ġминим": 45754, + "ĠминÑĥÑĤ": 24498, + "ĠмиÑĢ": 20536, + "ĠмиÑĢа": 41454, + "ĠмиÑĢе": 36822, + "Ġмн": 16338, + "Ġмне": 8531, + "Ġмног": 22287, + "Ġмногие": 37343, + "Ġмного": 13347, + "Ġмной": 39199, + "Ġмо": 9971, + "Ġмог": 9962, + "Ġмогли": 37118, + "ĠмогÑĥ": 22951, + "ĠмогÑĥÑĤ": 23461, + "Ġмод": 24104, + "Ġмоей": 46270, + "Ġмож": 4710, + "Ġможем": 28815, + "ĠможеÑĤ": 8689, + "ĠможеÑĤе": 23578, + "ĠможеÑĪÑĮ": 46442, + "Ġможно": 8885, + "Ġмоз": 48140, + "Ġмои": 39822, + "Ġмой": 23400, + "Ġмол": 25634, + "Ġмолод": 28801, + "Ġмом": 17655, + "ĠмоменÑĤ": 17825, + "Ġмон": 32457, + "ĠмоÑĢ": 24127, + "ĠмоÑī": 39218, + "ĠмоÑı": 33691, + "ĠмÑĥж": 22081, + "ĠмÑĥжÑĩ": 40051, + "ĠмÑĥз": 26843, + "ĠмÑĥзÑĭ": 34249, + "ĠмÑĭ": 4777, + "ĠмÑĭÑĪ": 45009, + "ĠмÑıÑģ": 40966, + "ĠмÑĸ": 23895, + "Ġн": 757, + "Ġна": 1470, + "Ġнаб": 22499, + "ĠнаблÑİд": 47147, + "Ġнав": 14192, + "ĠнавеÑĢ": 23237, + "ĠнавеÑĢное": 31159, + "Ġнаг": 30584, + "Ġнад": 8469, + "Ġнадо": 13256, + "Ġнаж": 35675, + "Ġназ": 15006, + "Ġназад": 28724, + "Ġназв": 27161, + "ĠназÑĭв": 20922, + "ĠназÑĭваеÑĤÑģÑı": 40659, + "Ġнай": 19235, + "Ġнайд": 41805, + "ĠнайÑĤи": 31993, + "Ġнак": 20955, + "ĠнаконеÑĨ": 49154, + "Ġнал": 32750, + "Ġнам": 11401, + "Ġнами": 44552, + "Ġнап": 9011, + "ĠнапиÑģ": 30442, + "ĠнапÑĢ": 18296, + "ĠнапÑĢав": 36437, + "ĠнапÑĢимеÑĢ": 24044, + "ĠнаÑĢ": 34316, + "ĠнаÑĢод": 32583, + "ĠнаÑģ": 6519, + "ĠнаÑģколÑĮко": 49635, + "ĠнаÑģÑĤ": 35397, + "ĠнаÑģÑĤолÑĮко": 47779, + "ĠнаÑģÑĤоÑıÑī": 35048, + "ĠнаÑģÑĤÑĢо": 47842, + "ĠнаÑĤ": 48290, + "ĠнаÑĥÑĩ": 38019, + "ĠнаÑħод": 19363, + "ĠнаÑħодиÑĤÑģÑı": 34366, + "ĠнаÑĩ": 8970, + "ĠнаÑĩал": 44800, + "ĠнаÑĩала": 40551, + "ĠнаÑĩина": 21995, + "ĠнаÑĪ": 8253, + "ĠнаÑĪа": 48513, + "ĠнаÑĪего": 45309, + "ĠнаÑĪей": 34670, + "ĠнаÑĪем": 48181, + "ĠнаÑĪи": 36314, + "ĠнаÑĪиÑħ": 41525, + "Ġне": 1725, + "Ġнеб": 22783, + "ĠнеболÑĮÑĪ": 32692, + "Ġнев": 21224, + "Ġнего": 15052, + "Ġнед": 15704, + "Ġнее": 33518, + "Ġнез": 34691, + "Ġней": 23227, + "Ġнек": 39269, + "ĠнекоÑĤоÑĢ": 26666, + "ĠнекоÑĤоÑĢÑĭе": 43876, + "ĠнелÑĮзÑı": 33813, + "Ġнем": 13166, + "Ġнемного": 26583, + "Ġнемнож": 39844, + "Ġнемножко": 44382, + "Ġнеоб": 27864, + "ĠнеобÑħод": 31360, + "ĠнеобÑħодимо": 41432, + "Ġнеп": 17005, + "ĠнеÑģ": 30825, + "ĠнеÑģколÑĮко": 21902, + "ĠнеÑĤ": 9916, + "ĠнеÑij": 44527, + "Ġни": 13686, + "Ġниз": 48019, + "Ġник": 11295, + "Ġникак": 23127, + "ĠникакиÑħ": 47357, + "Ġникогда": 29375, + "ĠникÑĤо": 31666, + "Ġним": 25793, + "Ġними": 42371, + "ĠниÑħ": 14319, + "ĠниÑĩего": 16630, + "Ġно": 6035, + "Ġнов": 10022, + "ĠновÑĭе": 39232, + "ĠновÑĭй": 38121, + "ĠновÑĭÑħ": 46308, + "Ġног": 31538, + "Ġнож": 46718, + "Ġном": 36847, + "ĠноÑĢм": 24068, + "ĠноÑĢмалÑĮно": 39601, + "ĠноÑģ": 37245, + "ĠноÑĩ": 38237, + "ĠнÑĢав": 27564, + "ĠнÑĢавиÑĤÑģÑı": 33652, + "ĠнÑĥ": 13087, + "ĠнÑĥж": 9353, + "ĠнÑĥжен": 47867, + "ĠнÑĥжно": 12264, + "ĠнÑĸ": 46645, + "Ġо": 1000, + "Ġоб": 3348, + "ĠобнаÑĢÑĥж": 47841, + "ĠобÑĢаз": 17938, + "ĠобÑĢазом": 29916, + "ĠобÑĢаÑĤ": 29851, + "ĠобÑģ": 47963, + "ĠобÑī": 17224, + "ĠобÑīе": 48078, + "ĠобÑīем": 26842, + "ĠобÑĬ": 16646, + "ĠобÑĬÑıÑģ": 36712, + "ĠобÑĭÑĩ": 32291, + "ĠобÑĭÑĩно": 41878, + "ĠобÑıз": 27945, + "ĠобÑıзаÑĤелÑĮно": 35515, + "Ġог": 33309, + "ĠогÑĢ": 21517, + "ĠогÑĢом": 28107, + "Ġод": 5693, + "Ġодин": 13319, + "Ġодна": 26985, + "Ġодним": 50096, + "Ġодно": 30387, + "Ġодного": 33828, + "Ġодной": 29281, + "Ġодном": 48635, + "ĠоднÑĥ": 37885, + "Ġож": 35666, + "Ġожид": 47136, + "Ġоз": 29176, + "ĠознаÑĩ": 49994, + "Ġок": 11423, + "Ġоказ": 28833, + "Ġоколо": 40573, + "Ġон": 5345, + "Ġона": 8826, + "Ġони": 7515, + "Ġоно": 25369, + "Ġоп": 7683, + "ĠопаÑģ": 39393, + "ĠопеÑĢ": 36742, + "ĠопиÑģ": 32190, + "ĠопиÑģании": 48303, + "ĠопÑĢед": 26961, + "ĠопÑĢедел": 39305, + "ĠопÑĭÑĤ": 48530, + "ĠопÑıÑĤÑĮ": 31545, + "ĠоÑĢ": 18448, + "ĠоÑĢг": 24443, + "ĠоÑĢганиз": 34254, + "ĠоÑĢÑĥж": 46802, + "ĠоÑģ": 8940, + "ĠоÑģв": 46403, + "ĠоÑģнов": 19217, + "ĠоÑģоб": 21244, + "ĠоÑģобенно": 35817, + "ĠоÑģÑĤ": 12574, + "ĠоÑģÑĤав": 25969, + "ĠоÑģÑĤан": 41633, + "ĠоÑģÑĤанов": 44367, + "ĠоÑģÑĤÑĢ": 42710, + "ĠоÑĤ": 2943, + "ĠоÑĤв": 29642, + "ĠоÑĤвеÑĤ": 25284, + "ĠоÑĤвеÑĩ": 47859, + "ĠоÑĤд": 22243, + "ĠоÑĤдел": 50176, + "ĠоÑĤделÑĮ": 41199, + "ĠоÑĤк": 12799, + "ĠоÑĤкÑĢÑĭ": 27085, + "ĠоÑĤкÑĢÑĭв": 44543, + "ĠоÑĤлиÑĩ": 26902, + "ĠоÑĤмеÑĤ": 47318, + "ĠоÑĤно": 22079, + "ĠоÑĤноÑģ": 44539, + "ĠоÑĤноÑĪ": 30708, + "ĠоÑĤп": 22344, + "ĠоÑĤпÑĢав": 38427, + "ĠоÑĤÑģ": 29870, + "ĠоÑĦ": 31950, + "ĠоÑħ": 28871, + "ĠоÑĩ": 5875, + "ĠоÑĩенÑĮ": 6730, + "ĠоÑĩеÑĢ": 33102, + "ĠоÑĪиб": 40253, + "ĠоÑī": 40065, + "ĠоÑīÑĥÑī": 44966, + "Ġп": 713, + "Ġпад": 44149, + "Ġпал": 40415, + "ĠпалÑĮ": 47226, + "Ġпам": 39164, + "Ġпап": 39322, + "ĠпаÑĢ": 11813, + "ĠпаÑĢÑĥ": 44163, + "ĠпеÑĢ": 4321, + "ĠпеÑĢв": 11922, + "ĠпеÑĢвÑĭй": 30025, + "ĠпеÑĢе": 29641, + "ĠпеÑĢев": 28106, + "ĠпеÑĢед": 15621, + "ĠпеÑĢеж": 46450, + "ĠпеÑĢек": 38924, + "ĠпеÑĢем": 35903, + "ĠпеÑĢеп": 48702, + "ĠпеÑĢеÑħод": 46888, + "ĠпеÑĢи": 45602, + "ĠпеÑĢÑģон": 33399, + "ĠпеÑĢÑģонаж": 38063, + "ĠпеÑģ": 37280, + "ĠпеÑĩ": 44875, + "ĠпиÑģ": 39739, + "ĠпиÑĤ": 33615, + "ĠпиÑĪ": 37979, + "Ġпл": 9283, + "Ġплан": 23443, + "ĠплаÑĤ": 34160, + "Ġпло": 22402, + "ĠплоÑħ": 29938, + "ĠплоÑħо": 45210, + "ĠплоÑī": 44633, + "ĠплÑİÑģ": 43342, + "Ġпо": 2801, + "Ġпоб": 20024, + "Ġпобед": 39281, + "Ġпов": 10499, + "ĠповеÑĢÑħ": 44397, + "ĠповÑĤоÑĢ": 42221, + "Ġпог": 17724, + "ĠпоговоÑĢ": 38858, + "Ġпод": 4095, + "ĠподаÑĢ": 43564, + "ĠподгоÑĤов": 49914, + "ĠподдеÑĢж": 30756, + "Ġподоб": 35229, + "ĠподпиÑģ": 27386, + "ĠподÑĤ": 46103, + "ĠподÑĥм": 38664, + "ĠподÑħод": 44617, + "ĠпоеÑħ": 49519, + "Ġпож": 38587, + "ĠпожалÑĥйÑģÑĤа": 32518, + "Ġпоз": 12188, + "Ġпозвол": 28805, + "Ġпой": 31671, + "Ġпойд": 41207, + "Ġпок": 7240, + "Ġпока": 17770, + "Ġпоказ": 21147, + "ĠпоказÑĭв": 34614, + "ĠпокÑĥп": 34005, + "Ġпол": 4692, + "Ġполез": 40191, + "ĠполиÑĤ": 45330, + "ĠполноÑģÑĤÑĮÑİ": 36392, + "Ġполов": 39884, + "Ġполож": 29408, + "ĠполÑĥÑĩ": 9478, + "ĠполÑĥÑĩаеÑĤÑģÑı": 33451, + "ĠполÑĥÑĩилоÑģÑĮ": 44405, + "ĠполÑĥÑĩиÑĤÑģÑı": 49579, + "ĠполÑĥÑĩиÑĤÑĮ": 41725, + "ĠполÑĮз": 30419, + "ĠполÑĮзов": 44803, + "Ġпом": 8613, + "Ġпомог": 27097, + "ĠпомоÑī": 22301, + "ĠпомоÑīÑĮÑİ": 36387, + "Ġпон": 7903, + "Ġпонад": 49581, + "Ġпоним": 15084, + "ĠпонимаÑİ": 35112, + "ĠпонÑĢав": 34752, + "ĠпонÑıл": 37975, + "ĠпонÑıÑĤно": 39718, + "ĠпонÑıÑĤÑĮ": 44403, + "Ġпоп": 10694, + "Ġпопад": 43613, + "ĠпопÑĢоб": 34089, + "ĠпопÑĥлÑıÑĢ": 46732, + "ĠпопÑĭÑĤ": 46047, + "ĠпоÑĢ": 11948, + "ĠпоÑĢÑıд": 36681, + "ĠпоÑģ": 5810, + "ĠпоÑģле": 16107, + "ĠпоÑģлед": 19253, + "ĠпоÑģмоÑĤÑĢ": 19240, + "ĠпоÑģмоÑĤÑĢеÑĤÑĮ": 38482, + "ĠпоÑģмоÑĤÑĢим": 42293, + "ĠпоÑģÑĤ": 27877, + "ĠпоÑģÑĤав": 28072, + "ĠпоÑģÑĤо": 31299, + "ĠпоÑģÑĤоÑıн": 33212, + "ĠпоÑģÑĤоÑıнно": 41548, + "ĠпоÑģÑĤÑĢо": 47526, + "ĠпоÑģÑĤÑĥп": 43829, + "ĠпоÑĤ": 6364, + "ĠпоÑĤеÑĢ": 39363, + "ĠпоÑĤом": 16873, + "ĠпоÑĤомÑĥ": 11919, + "ĠпоÑĤÑĢ": 26146, + "ĠпоÑĤÑĢеб": 40529, + "ĠпоÑħ": 23052, + "ĠпоÑħож": 38862, + "ĠпоÑĩ": 12079, + "ĠпоÑĩемÑĥ": 21513, + "ĠпоÑĩÑĤи": 30529, + "ĠпоÑĪ": 27148, + "ĠпоÑįÑĤомÑĥ": 19698, + "ĠпоÑıв": 20011, + "ĠпÑĢ": 1285, + "ĠпÑĢав": 10615, + "ĠпÑĢавда": 37136, + "ĠпÑĢавилÑĮно": 39321, + "ĠпÑĢакÑĤи": 27109, + "ĠпÑĢакÑĤиÑĩеÑģки": 38086, + "ĠпÑĢе": 43228, + "ĠпÑĢев": 34393, + "ĠпÑĢед": 8048, + "ĠпÑĢедлаг": 46841, + "ĠпÑĢедлож": 40373, + "ĠпÑĢедÑģÑĤав": 27167, + "ĠпÑĢедÑģÑĤавлÑı": 39412, + "ĠпÑĢез": 39838, + "ĠпÑĢезид": 49529, + "ĠпÑĢек": 28939, + "ĠпÑĢекÑĢаÑģ": 33620, + "ĠпÑĢеп": 47510, + "ĠпÑĢеÑģÑĤ": 44481, + "ĠпÑĢеÑģÑĤÑĥп": 48991, + "ĠпÑĢи": 5082, + "ĠпÑĢиб": 31436, + "ĠпÑĢив": 13398, + "ĠпÑĢивеÑĤ": 33879, + "ĠпÑĢиг": 42619, + "ĠпÑĢигоÑĤов": 49630, + "ĠпÑĢид": 21255, + "ĠпÑĢидÑĥм": 45234, + "ĠпÑĢиеÑħ": 38567, + "ĠпÑĢиз": 26724, + "ĠпÑĢик": 25492, + "ĠпÑĢил": 34770, + "ĠпÑĢилож": 47251, + "ĠпÑĢим": 31806, + "ĠпÑĢимеÑĢ": 22545, + "ĠпÑĢимеÑĢно": 37424, + "ĠпÑĢин": 16003, + "ĠпÑĢиним": 44396, + "ĠпÑĢинÑĨип": 30147, + "ĠпÑĢинÑĨипе": 39086, + "ĠпÑĢиÑĢ": 41640, + "ĠпÑĢиÑģ": 26686, + "ĠпÑĢиÑħод": 26641, + "ĠпÑĢиÑĩ": 26472, + "ĠпÑĢиÑĪ": 22448, + "ĠпÑĢо": 4178, + "ĠпÑĢоб": 15122, + "ĠпÑĢоблем": 20920, + "ĠпÑĢоблема": 48264, + "ĠпÑĢоблемÑĭ": 44340, + "ĠпÑĢов": 13422, + "ĠпÑĢовеÑĢ": 30901, + "ĠпÑĢовод": 33924, + "ĠпÑĢог": 20192, + "ĠпÑĢогÑĢам": 29043, + "ĠпÑĢод": 11354, + "ĠпÑĢодолж": 24519, + "ĠпÑĢодÑĥк": 33873, + "ĠпÑĢоекÑĤ": 32275, + "ĠпÑĢоиз": 16769, + "ĠпÑĢоизвод": 28685, + "ĠпÑĢоизоÑĪ": 41476, + "ĠпÑĢоиÑģ": 21482, + "ĠпÑĢоиÑģÑħодиÑĤ": 28548, + "ĠпÑĢок": 37225, + "ĠпÑĢом": 42988, + "ĠпÑĢоп": 23497, + "ĠпÑĢоÑģ": 21109, + "ĠпÑĢоÑģÑĤ": 27959, + "ĠпÑĢоÑģÑĤо": 8221, + "ĠпÑĢоÑĤ": 15602, + "ĠпÑĢоÑĤив": 22534, + "ĠпÑĢоÑĦ": 33011, + "ĠпÑĢоÑĦеÑģÑģ": 43624, + "ĠпÑĢоÑħод": 39782, + "ĠпÑĢоÑĨ": 20640, + "ĠпÑĢоÑĨеÑģÑģ": 30965, + "ĠпÑĢоÑĩ": 38828, + "ĠпÑĢоÑĪ": 20567, + "ĠпÑĢоÑĪл": 48596, + "ĠпÑĢÑĭ": 50236, + "ĠпÑĢÑıм": 18449, + "ĠпÑĢÑıмо": 28547, + "ĠпÑģ": 40163, + "ĠпÑģиÑħ": 44159, + "ĠпÑĥ": 30836, + "ĠпÑĥÑĤ": 37581, + "ĠпÑĭÑĤ": 28806, + "ĠпÑıÑĤ": 41367, + "ĠпÑıÑĤÑĮ": 43618, + "ĠпÑĸд": 26419, + "ĠÐĨ": 23297, + "ĠÐIJ": 3450, + "ĠÐIJв": 50175, + "ĠÐIJл": 43104, + "ĠÐIJле": 45043, + "ĠÐIJлекÑģ": 32228, + "ĠÐIJлекÑģанд": 44938, + "ĠÐIJн": 20802, + "ĠÐIJнд": 39583, + "ĠÐIJÑĢ": 32091, + "ĠÐij": 5697, + "ĠÐijог": 34008, + "ĠÐijÑĥд": 40208, + "ĠÐijÑĭ": 44804, + "ĠÐĴ": 2348, + "ĠÐĴам": 43670, + "ĠÐĴаÑģ": 37055, + "ĠÐĴедÑĮ": 42612, + "ĠÐĴид": 42888, + "ĠÐĴлад": 41022, + "ĠÐĴо": 24334, + "ĠÐĴоÑĤ": 9756, + "ĠÐĴÑģ": 10779, + "ĠÐĴÑģе": 18029, + "ĠÐĴÑģем": 37367, + "ĠÐĴÑģÑij": 29661, + "ĠÐĴÑĤоÑĢ": 49732, + "ĠÐĴÑĭ": 11886, + "ĠÐĵ": 7247, + "ĠÐĵде": 41996, + "ĠÐĵоÑģ": 47206, + "ĠÐĶ": 3401, + "ĠÐĶа": 9149, + "ĠÐĶав": 17853, + "ĠÐĶавай": 29196, + "ĠÐĶавайÑĤе": 30487, + "ĠÐĶаже": 42900, + "ĠÐĶж": 23792, + "ĠÐĶлÑı": 21324, + "ĠÐĶо": 31695, + "ĠÐķ": 6538, + "ĠÐķв": 34019, + "ĠÐķго": 32908, + "ĠÐķÑģли": 12412, + "ĠÐķÑģÑĤÑĮ": 30547, + "ĠÐķÑīе": 44122, + "ĠÐĸ": 18977, + "ĠÐĹ": 5841, + "ĠÐĹа": 22391, + "ĠÐĹап": 49612, + "ĠÐĹд": 17613, + "ĠÐĹдеÑģÑĮ": 23367, + "ĠÐĹем": 42604, + "ĠÐĹна": 30869, + "ĠÐĹнаÑĩиÑĤ": 44827, + "ĠÐĺ": 3272, + "ĠÐĺз": 24588, + "ĠÐĺли": 34361, + "ĠÐĺм": 34759, + "ĠÐĺн": 27222, + "ĠÐĺÑĤак": 28793, + "ĠÐļ": 3422, + "ĠÐļак": 11011, + "ĠÐļаÑĢ": 43923, + "ĠÐļогда": 23128, + "ĠÐļол": 45363, + "ĠÐļон": 23827, + "ĠÐļонеÑĩно": 35108, + "ĠÐļоÑĢ": 29635, + "ĠÐļÑĢаÑģ": 49491, + "ĠÐļÑģÑĤаÑĤи": 39883, + "ĠÐļÑĤо": 33953, + "ĠÐĽ": 7853, + "ĠÐĽÑİ": 25968, + "ĠÐĽÑİб": 47369, + "ĠÐľ": 3493, + "ĠÐľÐ£": 24143, + "ĠÐľÐ£ÐĹЫÐļÐIJ": 25007, + "ĠÐľÐ°ÑĢ": 26182, + "ĠÐľÐµÐ½Ñı": 47311, + "ĠÐľÐ¸": 47250, + "ĠÐľÐ¸Ñħ": 50150, + "ĠÐľÐ½Ðµ": 23204, + "ĠÐľÐ¾Ð¶ÐµÑĤ": 32786, + "ĠÐľÐ¾Ð¶Ð½Ð¾": 34423, + "ĠÐľÐ¾Ñģ": 32327, + "ĠÐľÐ¾Ñģкв": 38842, + "ĠÐľÑĭ": 12726, + "ĠÐĿ": 2410, + "ĠÐĿа": 11245, + "ĠÐĿав": 46929, + "ĠÐĿад": 29637, + "ĠÐĿадо": 48562, + "ĠÐĿам": 46147, + "ĠÐĿап": 28167, + "ĠÐĿапÑĢ": 36552, + "ĠÐĿапÑĢимеÑĢ": 39645, + "ĠÐĿаÑĩ": 48493, + "ĠÐĿе": 11512, + "ĠÐĿеÑĤ": 21249, + "ĠÐĿик": 28448, + "ĠÐĿо": 7264, + "ĠÐĿов": 36062, + "ĠÐĿÐIJ": 44416, + "ĠÐĿÑĥ": 7571, + "ĠÐŀ": 3688, + "ĠÐŀб": 22853, + "ĠÐŀд": 20125, + "ĠÐŀднако": 39757, + "ĠÐŀй": 42724, + "ĠÐŀк": 48984, + "ĠÐŀн": 12409, + "ĠÐŀна": 20280, + "ĠÐŀни": 18973, + "ĠÐŀп": 45246, + "ĠÐŀÑģ": 38590, + "ĠÐŀÑĤ": 18611, + "ĠÐŀÑĩ": 30352, + "ĠÐŀÑĩенÑĮ": 34062, + "ĠÐŁ": 2608, + "ĠÐŁÐµÑĢ": 20426, + "ĠÐŁÐµÑĢв": 34182, + "ĠÐŁÐ¾": 12121, + "ĠÐŁÐ¾Ð´": 23120, + "ĠÐŁÐ¾ÐºÐ°": 38401, + "ĠÐŁÐ¾Ð»": 28183, + "ĠÐŁÐ¾Ð¼": 43030, + "ĠÐŁÐ¾Ð½": 36067, + "ĠÐŁÐ¾Ñģ": 18689, + "ĠÐŁÐ¾Ñģле": 32747, + "ĠÐŁÐ¾ÑĤ": 17993, + "ĠÐŁÐ¾ÑĤом": 45941, + "ĠÐŁÐ¾ÑĤомÑĥ": 23671, + "ĠÐŁÐ¾ÑĩемÑĥ": 32823, + "ĠÐŁÐ¾ÑįÑĤомÑĥ": 22318, + "ĠÐŁÑĢ": 8567, + "ĠÐŁÑĢав": 39793, + "ĠÐŁÑĢед": 46825, + "ĠÐŁÑĢи": 22059, + "ĠÐŁÑĢивеÑĤ": 38932, + "ĠÐŁÑĢо": 38529, + "ĠÐŁÑĢоÑģÑĤо": 34751, + "ĠÐł": 6325, + "ĠÐłÐ°Ð·": 28972, + "ĠÐłÐ¾ÑģÑģ": 21997, + "ĠÐłÐ¾ÑģÑģии": 29007, + "ĠÐŃ": 5381, + "ĠÐŃÑĤо": 6684, + "ĠÐŃÑĤоÑĤ": 42054, + "ĠÑ": 1015, + "ĠÑĢ": 1475, + "ĠÑĢаб": 41499, + "ĠÑĢабоÑĤ": 9197, + "ĠÑĢабоÑĤаеÑĤ": 30162, + "ĠÑĢабоÑĤаÑĤÑĮ": 33637, + "ĠÑĢабоÑĤÑĥ": 39382, + "ĠÑĢабоÑĤÑĭ": 35402, + "ĠÑĢав": 19353, + "ĠÑĢавно": 27354, + "ĠÑĢад": 26622, + "ĠÑĢади": 34748, + "ĠÑĢаз": 4203, + "ĠÑĢаза": 49578, + "ĠÑĢазб": 26868, + "ĠÑĢазв": 20019, + "ĠÑĢазвиÑĤ": 47359, + "ĠÑĢазг": 39901, + "ĠÑĢаздел": 45414, + "ĠÑĢазлиÑĩ": 40140, + "ĠÑĢазм": 47075, + "ĠÑĢазмеÑĢ": 41813, + "ĠÑĢазнÑĭе": 43059, + "ĠÑĢазнÑĭÑħ": 40644, + "ĠÑĢазÑĢ": 24051, + "ĠÑĢазÑĢабоÑĤ": 38976, + "ĠÑĢай": 37590, + "ĠÑĢан": 36463, + "ĠÑĢанÑĮÑĪе": 40442, + "ĠÑĢаÑģ": 7459, + "ĠÑĢаÑģк": 46666, + "ĠÑĢаÑģп": 26588, + "ĠÑĢаÑģÑģ": 23345, + "ĠÑĢаÑģÑģк": 17399, + "ĠÑĢаÑģÑģказ": 34760, + "ĠÑĢаÑģÑģказÑĭв": 33446, + "ĠÑĢаÑģÑĤ": 31274, + "ĠÑĢе": 15492, + "ĠÑĢеалÑĮно": 38001, + "ĠÑĢеб": 18902, + "ĠÑĢебен": 41417, + "ĠÑĢебÑıÑĤа": 37678, + "ĠÑĢег": 31235, + "ĠÑĢед": 42845, + "ĠÑĢеж": 28418, + "ĠÑĢежим": 37710, + "ĠÑĢез": 17749, + "ĠÑĢезÑĥлÑĮÑĤаÑĤ": 28476, + "ĠÑĢек": 22801, + "ĠÑĢеÑģ": 39836, + "ĠÑĢеÑĪ": 14025, + "ĠÑĢеÑĪил": 44240, + "ĠÑĢиÑģ": 31393, + "ĠÑĢо": 49493, + "ĠÑĢоб": 30971, + "ĠÑĢод": 17925, + "ĠÑĢоз": 20681, + "ĠÑĢок": 31833, + "ĠÑĢол": 26725, + "ĠÑĢолÑĮ": 49189, + "ĠÑĢоÑģ": 44935, + "ĠÑĢоÑģÑģ": 43809, + "ĠÑĢоÑģÑģий": 48971, + "ĠÑĢÑĥ": 17292, + "ĠÑĢÑĥб": 27371, + "ĠÑĢÑĥблей": 40851, + "ĠÑĢÑĥк": 36765, + "ĠÑĢÑĥки": 39304, + "ĠÑĢÑĥÑģ": 27198, + "ĠÑĢÑĭ": 22791, + "ĠÑĢÑĭн": 37314, + "ĠÑĢÑıд": 32921, + "ĠÑĢÑıдом": 43190, + "ĠÑģ": 776, + "ĠÑģам": 5602, + "ĠÑģама": 40517, + "ĠÑģами": 34085, + "ĠÑģамо": 43745, + "ĠÑģамого": 42264, + "ĠÑģамое": 25676, + "ĠÑģамой": 49560, + "ĠÑģамом": 22108, + "ĠÑģамÑĭе": 44253, + "ĠÑģамÑĭй": 30688, + "ĠÑģамÑĭÑħ": 37241, + "ĠÑģб": 29014, + "ĠÑģв": 4155, + "ĠÑģвеÑĤ": 28492, + "ĠÑģвид": 43666, + "ĠÑģво": 6989, + "ĠÑģвобод": 39021, + "ĠÑģвое": 42666, + "ĠÑģвоего": 32325, + "ĠÑģвоей": 25346, + "ĠÑģвои": 25375, + "ĠÑģвоим": 37337, + "ĠÑģвоиÑħ": 30316, + "ĠÑģвой": 25190, + "ĠÑģвоÑİ": 23069, + "ĠÑģвÑıз": 22430, + "ĠÑģд": 48001, + "ĠÑģдел": 10326, + "ĠÑģделал": 40653, + "ĠÑģделали": 44780, + "ĠÑģделаÑĤÑĮ": 18695, + "ĠÑģе": 27383, + "ĠÑģеб": 9968, + "ĠÑģебе": 16683, + "ĠÑģебÑı": 15403, + "ĠÑģегоднÑı": 17413, + "ĠÑģейÑĩаÑģ": 10241, + "ĠÑģек": 22869, + "ĠÑģем": 20933, + "ĠÑģемÑĮ": 36735, + "ĠÑģеÑĢ": 14490, + "ĠÑģеÑĢд": 38479, + "ĠÑģеÑĢÑĮ": 35178, + "ĠÑģеÑĢÑĮез": 47065, + "ĠÑģиг": 48805, + "ĠÑģид": 27360, + "ĠÑģил": 24776, + "ĠÑģилÑĮ": 34158, + "ĠÑģилÑĮно": 31350, + "ĠÑģим": 38994, + "ĠÑģин": 47079, + "ĠÑģиÑģÑĤ": 21351, + "ĠÑģиÑģÑĤем": 24067, + "ĠÑģиÑģÑĤема": 48123, + "ĠÑģиÑĤÑĥ": 27840, + "ĠÑģк": 5239, + "ĠÑģкаж": 21938, + "ĠÑģказ": 10867, + "ĠÑģказал": 24980, + "ĠÑģказала": 48179, + "ĠÑģказаÑĤÑĮ": 20636, + "ĠÑģклад": 46185, + "ĠÑģколÑĮко": 28838, + "ĠÑģкоÑĢ": 17575, + "ĠÑģкоÑĢее": 41420, + "ĠÑģкоÑĢо": 44971, + "ĠÑģл": 4766, + "ĠÑģлед": 15363, + "ĠÑģледÑĥÑİÑī": 26045, + "ĠÑģлиÑĪком": 40576, + "ĠÑģлов": 20319, + "ĠÑģлова": 39002, + "ĠÑģлово": 43272, + "ĠÑģлож": 30858, + "ĠÑģложно": 41016, + "ĠÑģлÑĥж": 35459, + "ĠÑģлÑĥÑĩ": 14002, + "ĠÑģлÑĥÑĩа": 23775, + "ĠÑģлÑĥÑĩае": 26425, + "ĠÑģлÑĥÑĩай": 40181, + "ĠÑģлÑĥÑĪ": 41839, + "ĠÑģлÑĭÑĪ": 31814, + "ĠÑģм": 6871, + "ĠÑģмеÑĢ": 39997, + "ĠÑģмог": 32139, + "ĠÑģмож": 47044, + "ĠÑģмоÑĤÑĢ": 17726, + "ĠÑģмоÑĤÑĢеÑĤÑĮ": 43922, + "ĠÑģмоÑĤÑĢиÑĤе": 46441, + "ĠÑģмÑĭÑģ": 44045, + "ĠÑģн": 42864, + "ĠÑģнаÑĩала": 44437, + "ĠÑģним": 28098, + "ĠÑģнова": 36114, + "ĠÑģо": 7425, + "ĠÑģоб": 10450, + "ĠÑģобиÑĢ": 41534, + "ĠÑģобой": 32474, + "ĠÑģобÑģÑĤвен": 44177, + "ĠÑģобÑģÑĤвенно": 49863, + "ĠÑģобÑĭÑĤи": 42654, + "ĠÑģов": 11030, + "ĠÑģовеÑĢÑĪ": 26227, + "ĠÑģовеÑĢÑĪенно": 37075, + "ĠÑģовеÑĤ": 35282, + "ĠÑģовÑĢем": 42880, + "ĠÑģовÑģем": 27711, + "ĠÑģог": 33255, + "ĠÑģоглаÑģ": 40587, + "ĠÑģод": 45744, + "ĠÑģодеÑĢж": 48206, + "ĠÑģожал": 45999, + "ĠÑģожалениÑİ": 48018, + "ĠÑģоз": 14729, + "ĠÑģозд": 20247, + "ĠÑģозн": 41334, + "ĠÑģок": 38419, + "ĠÑģол": 36059, + "ĠÑģолн": 49685, + "ĠÑģообÑī": 40626, + "ĠÑģооÑĤвеÑĤ": 36815, + "ĠÑģоп": 39135, + "ĠÑģоÑĢ": 43992, + "ĠÑģоÑģ": 33165, + "ĠÑģоÑģÑĤав": 41772, + "ĠÑģоÑģÑĤо": 25631, + "ĠÑģоÑģÑĤоÑıни": 36017, + "ĠÑģоÑĤ": 32206, + "ĠÑģоÑĤÑĢÑĥд": 50233, + "ĠÑģоÑħ": 38696, + "ĠÑģоÑħÑĢан": 41571, + "ĠÑģп": 5307, + "ĠÑģпаÑģ": 41895, + "ĠÑģпаÑģибо": 37536, + "ĠÑģпеÑĨи": 25665, + "ĠÑģпиÑģ": 49918, + "ĠÑģпокой": 47471, + "ĠÑģпоÑĢÑĤ": 49941, + "ĠÑģпоÑģоб": 23677, + "ĠÑģпÑĢав": 31853, + "ĠÑģпÑĢоÑģ": 44312, + "ĠÑģÑĢав": 42987, + "ĠÑģÑĢазÑĥ": 22014, + "ĠÑģÑĢед": 20446, + "ĠÑģÑģÑĭл": 41480, + "ĠÑģÑĤ": 3266, + "ĠÑģÑĤав": 25709, + "ĠÑģÑĤал": 28980, + "ĠÑģÑĤала": 44503, + "ĠÑģÑĤали": 39029, + "ĠÑģÑĤало": 39633, + "ĠÑģÑĤан": 27214, + "ĠÑģÑĤанов": 32003, + "ĠÑģÑĤановиÑĤÑģÑı": 44799, + "ĠÑģÑĤаÑĢ": 17241, + "ĠÑģÑĤаÑĤÑĮ": 36415, + "ĠÑģÑĤен": 48357, + "ĠÑģÑĤо": 13552, + "ĠÑģÑĤоиÑĤ": 23675, + "ĠÑģÑĤол": 24053, + "ĠÑģÑĤолÑĮко": 50156, + "ĠÑģÑĤоÑĢ": 16632, + "ĠÑģÑĤоÑĢон": 17635, + "ĠÑģÑĤоÑĢонÑĥ": 44205, + "ĠÑģÑĤоÑĢонÑĭ": 28360, + "ĠÑģÑĤÑĢ": 18425, + "ĠÑģÑĤÑĢан": 18057, + "ĠÑģÑĤÑĢаÑħ": 50190, + "ĠÑģÑĤÑĢаÑĪ": 35611, + "ĠÑģÑĤÑĢо": 35860, + "ĠÑģÑĤÑĥд": 44322, + "ĠÑģÑĥ": 18272, + "ĠÑģÑĥд": 30103, + "ĠÑģÑĥм": 31372, + "ĠÑģÑĥп": 32453, + "ĠÑģÑĥÑīеÑģÑĤв": 30447, + "ĠÑģÑħ": 42755, + "ĠÑģÑĨен": 40436, + "ĠÑģÑĩ": 23812, + "ĠÑģÑĩиÑĤ": 22413, + "ĠÑģÑĬ": 27223, + "ĠÑģÑĭ": 21811, + "ĠÑģÑİ": 19172, + "ĠÑģÑİда": 25306, + "ĠÑģÑİж": 49785, + "ĠÑĤ": 1069, + "ĠÑĤа": 18752, + "ĠÑĤай": 50074, + "ĠÑĤак": 2936, + "ĠÑĤакаÑı": 22075, + "ĠÑĤакже": 16584, + "ĠÑĤакие": 20113, + "ĠÑĤаким": 31584, + "ĠÑĤакиÑħ": 28572, + "ĠÑĤакого": 31158, + "ĠÑĤакое": 18292, + "ĠÑĤакой": 13452, + "ĠÑĤакÑĥÑİ": 42456, + "ĠÑĤам": 8223, + "ĠÑĤан": 33344, + "ĠÑĤво": 25144, + "ĠÑĤвоÑĢ": 42767, + "ĠÑĤе": 18445, + "ĠÑĤеб": 8458, + "ĠÑĤебе": 14656, + "ĠÑĤебÑı": 12644, + "ĠÑĤел": 15619, + "ĠÑĤелеÑĦ": 33356, + "ĠÑĤелеÑĦон": 44485, + "ĠÑĤем": 12532, + "ĠÑĤемпеÑĢ": 45609, + "ĠÑĤеп": 38923, + "ĠÑĤепеÑĢÑĮ": 16983, + "ĠÑĤеÑĢ": 21168, + "ĠÑĤеÑĢÑĢи": 49634, + "ĠÑĤеÑģÑĤ": 41699, + "ĠÑĤеÑħ": 16615, + "ĠÑĤеÑħнолог": 42709, + "ĠÑĤи": 39317, + "ĠÑĤип": 26264, + "ĠÑĤипа": 35443, + "ĠÑĤо": 4572, + "ĠÑĤоб": 32046, + "ĠÑĤобой": 38068, + "ĠÑĤов": 35838, + "ĠÑĤогда": 21696, + "ĠÑĤого": 11283, + "ĠÑĤоже": 12251, + "ĠÑĤой": 38509, + "ĠÑĤол": 36038, + "ĠÑĤолÑĮко": 9008, + "ĠÑĤом": 13294, + "ĠÑĤомÑĥ": 23644, + "ĠÑĤон": 37089, + "ĠÑĤоп": 41637, + "ĠÑĤоÑĢ": 25594, + "ĠÑĤоÑĤ": 23900, + "ĠÑĤоÑĩ": 23045, + "ĠÑĤоÑĩки": 47880, + "ĠÑĤоÑĩно": 25311, + "ĠÑĤÑĢ": 7550, + "ĠÑĤÑĢав": 46647, + "ĠÑĤÑĢади": 48098, + "ĠÑĤÑĢан": 45454, + "ĠÑĤÑĢеб": 31525, + "ĠÑĤÑĢеÑĤÑĮ": 45305, + "ĠÑĤÑĢи": 22068, + "ĠÑĤÑĢÑĥ": 36310, + "ĠÑĤÑĢÑĥд": 36853, + "ĠÑĤÑĥ": 30480, + "ĠÑĤÑĥда": 30433, + "ĠÑĤÑĥÑĢ": 49248, + "ĠÑĤÑĥÑĤ": 12848, + "ĠÑĤÑĭ": 5991, + "ĠÑĤÑĭÑģÑıÑĩ": 25025, + "ĠÑĤÑıж": 34641, + "ĠÑĥ": 1595, + "ĠÑĥб": 13853, + "ĠÑĥбий": 40636, + "ĠÑĥв": 13247, + "ĠÑĥвелиÑĩ": 41511, + "ĠÑĥвеÑĢ": 32838, + "ĠÑĥвид": 21974, + "ĠÑĥвидеÑĤÑĮ": 46095, + "ĠÑĥг": 20392, + "ĠÑĥд": 11927, + "ĠÑĥдаÑĢ": 39047, + "ĠÑĥдив": 36459, + "ĠÑĥдоб": 35943, + "ĠÑĥж": 25261, + "ĠÑĥжаÑģ": 44973, + "ĠÑĥже": 7520, + "ĠÑĥз": 20940, + "ĠÑĥзна": 33562, + "ĠÑĥк": 32546, + "ĠÑĥкÑĢаÑĹ": 48350, + "ĠÑĥкÑĢаÑĹн": 49454, + "ĠÑĥли": 36639, + "ĠÑĥм": 17497, + "ĠÑĥп": 16036, + "ĠÑĥпÑĢав": 44080, + "ĠÑĥÑĢов": 25200, + "ĠÑĥÑģ": 26732, + "ĠÑĥÑģл": 24636, + "ĠÑĥÑģлов": 34974, + "ĠÑĥÑģп": 23944, + "ĠÑĥÑģÑĤ": 21204, + "ĠÑĥÑģÑĤанов": 31866, + "ĠÑĥÑģÑĤÑĢой": 48582, + "ĠÑĥÑĤ": 25448, + "ĠÑĥÑĩ": 13774, + "ĠÑĥÑĩаÑģÑĤ": 40970, + "ĠÑĥÑĪ": 38521, + "ĠÑĦ": 4394, + "ĠÑĦак": 31953, + "ĠÑĦиз": 44662, + "ĠÑĦилÑĮ": 16172, + "ĠÑĦилÑĮм": 22506, + "ĠÑĦилÑĮма": 36293, + "ĠÑĦин": 42020, + "ĠÑĦоÑĢм": 22817, + "ĠÑĦоÑĤ": 35896, + "ĠÑĦоÑĤогÑĢаÑĦ": 40855, + "ĠÑĦÑĥнк": 39484, + "ĠÑħ": 3490, + "ĠÑħаÑĢ": 38795, + "ĠÑħаÑĢакÑĤеÑĢ": 46144, + "ĠÑħваÑĤ": 32985, + "ĠÑħл": 45566, + "ĠÑħод": 23571, + "ĠÑħозÑı": 49791, + "ĠÑħолод": 39726, + "ĠÑħоÑĢоÑĪ": 11436, + "ĠÑħоÑĢоÑĪий": 48917, + "ĠÑħоÑĢоÑĪо": 16977, + "ĠÑħоÑĤ": 11515, + "ĠÑħоÑĤел": 27688, + "ĠÑħоÑĤиÑĤе": 39268, + "ĠÑħоÑĤÑĮ": 39605, + "ĠÑħоÑĤÑı": 30988, + "ĠÑħоÑĩ": 13057, + "ĠÑħоÑĩеÑĤ": 42175, + "ĠÑħоÑĩеÑĤÑģÑı": 48453, + "ĠÑħоÑĩеÑĪÑĮ": 45656, + "ĠÑħоÑĩÑĥ": 22168, + "ĠÑħÑĥд": 48609, + "ĠÑĨ": 5188, + "ĠÑĨвеÑĤ": 24937, + "ĠÑĨе": 18404, + "ĠÑĨел": 22750, + "ĠÑĨен": 39821, + "ĠÑĨенÑĤ": 26845, + "ĠÑĨенÑĤÑĢ": 46536, + "ĠÑĩ": 1358, + "ĠÑĩа": 15369, + "ĠÑĩаÑģ": 13562, + "ĠÑĩаÑģов": 44477, + "ĠÑĩаÑģÑĤ": 33107, + "ĠÑĩаÑģÑĤи": 29168, + "ĠÑĩаÑģÑĤо": 26549, + "ĠÑĩаÑģÑĤÑĮ": 24544, + "ĠÑĩего": 19275, + "ĠÑĩелов": 10347, + "ĠÑĩеловек": 11326, + "ĠÑĩеловека": 25109, + "ĠÑĩеловеÑĩ": 41365, + "ĠÑĩем": 12056, + "ĠÑĩеÑĢ": 12360, + "ĠÑĩеÑĢез": 17341, + "ĠÑĩеÑĤ": 38140, + "ĠÑĩеÑĤÑĭ": 39644, + "ĠÑĩи": 46660, + "ĠÑĩиÑģ": 23201, + "ĠÑĩиÑģÑĤ": 44459, + "ĠÑĩиÑĤ": 38522, + "ĠÑĩÑĤо": 2143, + "ĠÑĩÑĤоб": 48647, + "ĠÑĩÑĤобÑĭ": 7887, + "ĠÑĩÑĥв": 22472, + "ĠÑĩÑĥвÑģÑĤв": 29269, + "ĠÑĩÑĥд": 43332, + "ĠÑĩÑĥÑĤÑĮ": 30422, + "ĠÑĪ": 5941, + "ĠÑĪиÑĢ": 44583, + "ĠÑĪкол": 33009, + "ĠÑĪÑĤ": 28826, + "ĠÑī": 9427, + "ĠÑīе": 35547, + "ĠÑīо": 14309, + "ĠÑīоб": 42899, + "ĠÑį": 1704, + "ĠÑįк": 13817, + "ĠÑįконом": 41800, + "ĠÑįкÑĢан": 41643, + "ĠÑįкÑģп": 29030, + "ĠÑįкÑģпеÑĢ": 40404, + "ĠÑįлекÑĤ": 31314, + "ĠÑįлем": 44509, + "ĠÑįн": 31037, + "ĠÑįнеÑĢг": 40804, + "ĠÑįп": 43985, + "ĠÑįÑĤ": 4030, + "ĠÑįÑĤа": 21396, + "ĠÑįÑĤи": 11012, + "ĠÑįÑĤим": 23094, + "ĠÑįÑĤиÑħ": 23296, + "ĠÑįÑĤо": 2691, + "ĠÑįÑĤого": 10751, + "ĠÑįÑĤой": 14907, + "ĠÑįÑĤом": 10755, + "ĠÑįÑĤомÑĥ": 31500, + "ĠÑįÑĤоÑĤ": 11508, + "ĠÑįÑĤÑĥ": 18763, + "ĠÑįÑĦÑĦ": 33607, + "ĠÑİ": 29488, + "ĠÑı": 2552, + "ĠÑıв": 19028, + "ĠÑıвлÑıеÑĤÑģÑı": 29755, + "ĠÑıзÑĭ": 29364, + "ĠÑıк": 14760, + "ĠÑıкÑĸ": 35110, + "ĠÑıÑĢ": 44016, + "ĠÑĶ": 28669, + "ĠÑĸ": 8934, + "ĠÑĸз": 49973, + "ĠÑĸн": 29858, + "ĠÑĹ": 27902, + "ĠÑĹÑħ": 49084, + "ĠÕ": 14822, + "Ġ×": 877, + "Ġס": 19713, + "Ġ×¢": 7535, + "Ġ×¢×ľ": 15929, + "Ġ×¢×Ŀ": 31464, + "Ġפ": 13323, + "Ġפ×Ķ": 40833, + "Ġצ": 24803, + "Ġצר": 43563, + "Ġ×§": 14831, + "Ġר": 12926, + "Ġרק": 44918, + "Ġר×ķצ": 41927, + "Ġש": 4113, + "Ġש×IJ×": 39360, + "Ġש×Ķ": 19208, + "Ġש×Ķ×ķ×IJ": 47862, + "Ġש׾": 8817, + "Ġש׾×Ļ": 48982, + "Ġש×ŀ×": 36327, + "Ġש׳": 30222, + "Ġת": 13965, + "Ġ×IJ": 8428, + "Ġ×IJ×": 4142, + "Ġ×IJפ": 40784, + "Ġ×IJת": 9625, + "Ġ×IJת×Ķ": 41254, + "Ġ×IJ×ij׾": 30186, + "Ġ×IJ×ķ": 33038, + "Ġ×IJ×ķת": 23601, + "Ġ×IJ×ķת×ķ": 46725, + "Ġ×IJ×ķ×ŀר": 38272, + "Ġ×IJ×ĸ": 25624, + "Ġ×IJ×Ĺ": 20505, + "Ġ×IJ×Ĺ×ĵ": 42205, + "Ġ×IJ׾": 28379, + "Ġ×IJ×Ŀ": 36517, + "Ġ×IJ׳": 49553, + "Ġ×IJ׳×Ĺ׳×ķ": 30948, + "Ġ×IJ׳×Ļ": 16707, + "Ġ×ij": 11473, + "Ġ×ij×": 6044, + "Ġ×ijס": 40188, + "Ġ×ij×¢": 24464, + "Ġ×ijר": 36981, + "Ġ×ijש": 34561, + "Ġ×ijת": 37613, + "Ġ×ij×IJ": 38400, + "Ġ×ij×IJ×": 33167, + "Ġ×ij×ĵ": 49959, + "Ġ×ij×Ķ": 40435, + "Ġ×ij×Ĺ": 47017, + "Ġ×ij׼": 39150, + "Ġ×ij×ŀ×": 31776, + "Ġ×Ĵ": 15413, + "Ġ×Ĵ×Ŀ": 26611, + "Ġ×ĵ": 17433, + "Ġ×Ķ": 2922, + "Ġ×Ķ×": 3723, + "Ġ×Ķס": 32559, + "Ġ×Ķ×¢": 26507, + "Ġ×Ķפ": 31175, + "Ġ×Ķצ": 43691, + "Ġ×Ķ×§": 33866, + "Ġ×Ķר": 22706, + "Ġ×Ķש": 22537, + "Ġ×Ķת": 25579, + "Ġ×Ķ×IJ": 42876, + "Ġ×Ķ×IJ×": 20079, + "Ġ×Ķ×IJ׾": 46747, + "Ġ×Ķ×ij": 49052, + "Ġ×Ķ×ij×": 43974, + "Ġ×Ķ×Ĵ": 36386, + "Ġ×Ķ×ĵ": 32740, + "Ġ×Ķ×Ķ": 37203, + "Ġ×Ķ×ķ×IJ": 23666, + "Ġ×Ķ×ĸ": 32888, + "Ġ×Ķ×ĸ×Ķ": 28776, + "Ġ×Ķ×Ĺ": 26224, + "Ġ×Ķ×Ļ": 29526, + "Ġ×Ķ×Ļ×IJ": 35422, + "Ġ×Ķ×Ļ×Ķ": 32132, + "Ġ×Ķ׼": 29561, + "Ġ×Ķ×Ŀ": 44775, + "Ġ×Ķ×ŀ": 32357, + "Ġ×Ķ×ŀ×": 17270, + "Ġ×Ķ׳": 35743, + "Ġ×ķ": 7666, + "Ġ×ķ×IJ×": 40298, + "Ġ×ķ×Ķ": 28628, + "Ġ×ĸ": 25412, + "Ġ×ĸ×Ķ": 12173, + "Ġ×Ĺ": 12400, + "Ġ×ĺ": 27265, + "Ġ×ĺ×ķ×ij": 48606, + "Ġ×Ļ": 8128, + "Ġ×Ļש": 20592, + "Ġ×Ļ×Ķ": 49854, + "Ġ×Ļ×ķתר": 36555, + "Ġ×Ļ×ķ×ĵ×¢": 45764, + "Ġ×Ļ׼×ķ׾": 37608, + "Ġ׼": 7127, + "Ġ׼×Ļ": 44826, + "Ġ׼׾": 21547, + "Ġ׼ף": 44644, + "Ġ׾": 3883, + "Ġ׾×": 5001, + "Ġ×ľ×¢": 30377, + "Ġ׾פ": 33954, + "Ġ׾ק": 45904, + "Ġ׾ש": 35769, + "Ġ׾×IJ": 12471, + "Ġ׾×IJ×": 45087, + "Ġ׾×Ķ": 13995, + "Ġ׾×Ķ×Ļ×ķת": 49695, + "Ġ׾×ķ": 47669, + "Ġ׾×Ĺ": 42485, + "Ġ׾×Ļ": 29948, + "Ġ׾׼": 32872, + "Ġ׾×ŀ×": 31383, + "Ġ׾׳×ķ": 44946, + "Ġ×ŀ": 9148, + "Ġ×ŀ×": 5641, + "Ġ×ŀס": 32904, + "Ġ×ŀ×¢": 34413, + "Ġ×ŀצ": 44015, + "Ġ×ŀ×§": 39598, + "Ġ×ŀש": 23950, + "Ġ×ŀת": 30221, + "Ġ×ŀ×IJ": 26295, + "Ġ×ŀ×IJ×": 45686, + "Ġ×ŀ×IJ×ķ×ĵ": 31056, + "Ġ×ŀ×ĵ": 36631, + "Ġ×ŀ×Ķ": 16929, + "Ġ×ŀ×Ĺ": 42644, + "Ġ×ŀ׼": 44698, + "Ġ×ŀ×ŀ×": 41764, + "Ġ׳": 11302, + "ĠØ": 1357, + "ĠØ¢": 19753, + "Ġآپ": 46201, + "ĠØ£": 5551, + "ĠØ£ÙĨ": 14739, + "ĠØ£ÙĨا": 41850, + "ĠØ£ÙĪ": 34051, + "ĠØ£ÙĬ": 36632, + "ĠØ¥": 11933, + "ĠØ¥ÙĦÙī": 30731, + "ĠØ¥ÙĨ": 36145, + "Ġا": 1975, + "Ġاب": 48127, + "Ġاس": 24525, + "Ġاست": 44713, + "ĠاÙĦ": 2423, + "ĠاÙĦØ": 6024, + "ĠاÙĦØ£": 16247, + "ĠاÙĦØ¥": 33688, + "ĠاÙĦا": 42963, + "ĠاÙĦب": 29739, + "ĠاÙĦت": 16712, + "ĠاÙĦتÙĬ": 38392, + "ĠاÙĦج": 25724, + "ĠاÙĦØ®": 33962, + "ĠاÙĦد": 32748, + "ĠاÙĦذ": 32545, + "ĠاÙĦذÙĬ": 43527, + "ĠاÙĦر": 34892, + "ĠاÙĦس": 21136, + "ĠاÙĦØ´": 25124, + "ĠاÙĦص": 31767, + "ĠاÙĦØ·": 41950, + "ĠاÙĦع": 18863, + "ĠاÙĦØŃ": 21542, + "ĠاÙĦÙģ": 27188, + "ĠاÙĦÙĤ": 25062, + "ĠاÙĦÙĥ": 33251, + "ĠاÙĦÙĦ": 13672, + "ĠاÙĦÙĦÙĩ": 21984, + "ĠاÙĦÙħ": 9673, + "ĠاÙĦÙĨ": 28239, + "ĠاÙĦÙĬ": 45595, + "ĠاÙĨ": 16472, + "ĠاÙĪØ±": 32930, + "Ġب": 4724, + "ĠباÙĦ": 20666, + "Ġبت": 39894, + "Ġبد": 47525, + "Ġبع": 45030, + "Ġبعد": 39182, + "ĠبÙĨ": 44945, + "ĠبÙĩ": 39627, + "ĠبÙĬÙĨ": 49374, + "Ġت": 6055, + "Ġتع": 37279, + "ĠتÙħ": 46811, + "ĠتÙĪ": 33427, + "Ġتھ": 41924, + "ĠØ«": 38637, + "Ġج": 10874, + "ĠØ®": 16490, + "Ġد": 11778, + "Ġذ": 29910, + "Ġر": 12602, + "Ġز": 30767, + "Ġس": 8608, + "ĠسÛĴ": 34190, + "ĠØ´": 13412, + "ĠØ´ÙĬ": 44049, + "Ġص": 20328, + "Ġض": 48812, + "ĠØ·": 23032, + "Ġع": 6225, + "ĠعÙĦ": 11203, + "ĠعÙĦÙī": 15844, + "ĠعÙĦÙĬ": 25894, + "ĠعÙĦÙĬÙĩ": 47356, + "ĠعÙĨ": 18871, + "ĠعÙĨد": 43242, + "Ġغ": 32771, + "ĠØĮ": 24637, + "ĠØŁ": 45520, + "ĠØŃ": 11331, + "ĠÙ": 1447, + "ĠÙ¾": 21453, + "ĠÙģ": 6156, + "ĠÙģÙĬ": 8978, + "ĠÙĤ": 12174, + "ĠÙĤاÙĦ": 50239, + "ĠÙĥ": 9122, + "ĠÙĥاÙĨ": 25961, + "ĠÙĥÙĦ": 28242, + "ĠÙĦ": 5296, + "ĠÙĦا": 20193, + "ĠÙĦÙĥÙĨ": 44381, + "ĠÙĦÙĦ": 24976, + "ĠÙĦÙħ": 32767, + "ĠÙĦÙĩ": 46740, + "ĠÙĦÙĪ": 45164, + "ĠÙĦÙĬ": 32239, + "ĠÙħ": 3714, + "ĠÙħا": 19446, + "ĠÙħت": 44650, + "ĠÙħØ«": 50113, + "ĠÙħس": 47524, + "ĠÙħØ´": 37893, + "ĠÙħع": 20449, + "ĠÙħÙĨ": 9154, + "ĠÙħÛĮ": 48478, + "ĠÙħÛĮÚº": 27875, + "ĠÙĨ": 8717, + "ĠÙĨÛģ": 43596, + "ĠÙĨÛģÛĮÚº": 50194, + "ĠÙĨÛĴ": 43947, + "ĠÙĩ": 8032, + "ĠÙĩذا": 23758, + "ĠÙĩذÙĩ": 29538, + "ĠÙĩÙĨا": 34105, + "ĠÙĩÙĪ": 31439, + "ĠÙĩÙĬ": 39896, + "ĠÙĪ": 4032, + "ĠÙĪØ£": 36725, + "ĠÙĪØ§": 36764, + "ĠÙĪØ§ÙĦ": 16070, + "ĠÙĪØ¨": 46599, + "ĠÙĪØª": 34683, + "ĠÙĪØ¬": 49610, + "ĠÙĪØ³": 46952, + "ĠÙĪÙĦ": 35525, + "ĠÙĪÙĦا": 49429, + "ĠÙĪÙĩ": 37037, + "ĠÙĪÛģ": 44291, + "ĠÙĬ": 7251, + "ĠÙĬا": 35186, + "ĠÙĬع": 37495, + "ĠÚ©": 7565, + "Ġکا": 39893, + "Ġکر": 29688, + "ĠÚ©ÙĪ": 31561, + "ĠÚ©Ûģ": 33491, + "ĠÚ©ÛĮ": 23180, + "ĠÚ©ÛĴ": 24049, + "ĠÚ¯": 28697, + "ĠÚĨ": 34766, + "ĠÛģ": 12138, + "ĠÛģÙĪ": 45509, + "ĠÛģÛĮÚº": 38904, + "ĠÛģÛĴ": 23905, + "ĠÛĮ": 25429, + "ĠÛĮÛģ": 35324, + "Ġà¤": 8485, + "Ġम": 48449, + "Ġस": 49316, + "Ġह": 37139, + "Ġà¤ķ": 31970, + "Ġà®": 2548, + "Ġத": 18198, + "Ġந": 12669, + "Ġப": 12008, + "Ġà®®": 16504, + "Ġவ": 13535, + "Ġà®ħ": 12776, + "Ġà®ħத": 35718, + "Ġà®Ĩ": 33586, + "Ġà®ĩ": 12894, + "Ġà®ĩà®°": 26277, + "Ġà®ĩல": 49465, + "Ġà®ī": 23656, + "Ġà®İ": 12814, + "Ġà®İன": 17337, + "Ġà®Ĵ": 37240, + "Ġà®ķ": 13786, + "Ġà®ļ": 14337, + "Ġà²": 34725, + "Ġà¶": 35139, + "Ġà¸ģ": 44579, + "Ġà¹Ģà¸": 32922, + "Ġá": 21879, + "Ġấy": 43966, + "Ġá»": 40132, + "Ġợ": 19272, + "Ġá¼": 34519, + "Ġâ": 672, + "ĠâĢ": 1059, + "ĠâĢ¢": 13937, + "Ġâ̦": 5799, + "ĠâĢ«": 4738, + "ĠâĢĭ": 6107, + "ĠâĢĭâĢĭ": 8701, + "ĠâĢĭâĢĭâĢĭ": 16644, + "ĠâĢij": 41395, + "ĠâĢijâĢij": 45217, + "ĠâĢĵ": 1662, + "ĠâĢĶ": 3466, + "ĠâĤ¬": 17450, + "ĠâĨ": 35265, + "ĠâĨĴ": 41600, + "ĠâĪ": 28462, + "ĠâĪĴ": 48554, + "Ġâĸ": 29405, + "Ġâĺ": 38660, + "ĠâĻ": 873, + "ĠâĻ¥": 43385, + "ĠâĻ©": 36865, + "ĠâĻª": 931, + "ĠâĻªâĻª": 9061, + "ĠâĻªâĻªâĻª": 31650, + "ĠâĻ«": 3846, + "ĠâϬ": 22520, + "ĠãĢĮ": 21675, + "ĠãĢIJ": 26308, + "Ġãģ": 2605, + "Ġãģ¡": 44692, + "Ġãģ¦": 23822, + "Ġãģ§": 21376, + "Ġãģ§ãģĻ": 26063, + "Ġãģ¨": 16746, + "Ġãģ©": 34994, + "Ġãģª": 16647, + "Ġãģ«": 24873, + "Ġãģ®": 21171, + "Ġãģ¯": 20785, + "Ġãģ¯ãģĦ": 48159, + "Ġãģ¾": 20979, + "Ġãģ¾ãģĻ": 45194, + "ĠãģĤ": 15131, + "ĠãģĤãĤĬ": 49444, + "ĠãģĦ": 30155, + "ĠãģĨ": 42504, + "ĠãģĬ": 25223, + "Ġãģĭ": 25295, + "ĠãģĮ": 29697, + "Ġãģĵ": 14384, + "Ġãģĵãģ®": 35421, + "ĠãģĵãĤĮ": 33732, + "Ġãģķ": 47231, + "ĠãģĹ": 26974, + "ĠãģĻ": 41068, + "ĠãģĿ": 18421, + "ĠãģĿãģĨ": 36165, + "ĠãģĿãĤĮ": 47765, + "ĠãģŁ": 25581, + "Ġãģł": 37656, + "ĠãģŃ": 35757, + "ĠãĤĤ": 32505, + "ĠãĤĦ": 43938, + "ĠãĤĪ": 49879, + "ĠãĤĴ": 30181, + "ĠãĤĵ": 42961, + "Ġãĥ": 15096, + "Ġãħ": 40978, + "Ġãħĭãħĭãħĭ": 49249, + "Ġãħĭãħĭãħĭãħĭ": 38032, + "Ġãħİãħİ": 45824, + "Ġä¸Ģ": 26923, + "Ġä¸į": 19021, + "Ġä¸įæĺ¯": 43906, + "Ġä¸įè¦ģ": 50181, + "Ġä»ĸ": 35414, + "Ġä½ł": 10930, + "Ġä¾Ĩ": 33742, + "Ġ大": 28589, + "Ġ好": 12202, + "Ġ对": 30275, + "Ġå°±": 32609, + "Ġå°±æĺ¯": 31526, + "Ġå°į": 8748, + "Ġå°įä¸įå°į": 35164, + "Ġå°įåķĬ": 49155, + "Ġå°ı": 43454, + "Ġå¾Ī": 26029, + "Ġå¿«": 42598, + "ĠåĪĨ": 45903, + "Ġåı¯ä»¥": 43269, + "Ġåľ¨": 37286, + "Ġæ²Ĵæľī": 40183, + "ĠæĢĿ": 47968, + "ĠæĪij": 8624, + "ĠæĪijåĢij": 27338, + "ĠæĪijæĺ¯": 34625, + "ĠæīĢ以": 45168, + "Ġæĺ¯": 11947, + "Ġæľī": 21461, + "ĠçĦ¶å¾Į": 49078, + "ĠçļĦ": 27949, + "Ġ羣çļĦ": 32790, + "Ġè¬Ŀè¬Ŀ": 30999, + "ĠéĢĻ": 45286, + "ĠéĢĻåĢĭ": 36888, + "ĠéĤ£": 18625, + "Ġê": 711, + "Ġê°": 1777, + "Ġê°Ģ": 4147, + "Ġê°Ģ격": 41162, + "Ġê°Ģê¹Į": 44913, + "Ġê°Ģë": 10583, + "Ġê°ĢëĬ¥": 25732, + "Ġê°ĢëĬĶ": 37407, + "Ġê°Ģ족": 46008, + "Ġê°Ģì§Ģ": 26569, + "Ġê°Ģì§Ģê³ł": 21361, + "Ġê°ĢìĦľ": 35312, + "Ġê°Ģìļ´ëį°": 44627, + "Ġê°Ģìŀ¥": 20283, + "Ġê°ĢìŀIJ": 40115, + "Ġê°Ģìł¸": 36434, + "Ġê°ģ": 28378, + "Ġê°Ħ": 17190, + "Ġê°Ħëĭ¨": 50102, + "Ġê°Ī": 23616, + "Ġê°IJ": 10892, + "Ġê°IJë": 41398, + "Ġê°IJìĤ¬": 19538, + "Ġê°IJìĤ¬íķ©ëĭĪëĭ¤": 24399, + "Ġê°ij": 23108, + "Ġê°ijìŀIJ기": 31307, + "Ġê°Ķ": 28676, + "Ġê°ķ": 14623, + "Ġê°ĸ": 27668, + "Ġê°ĸê³ł": 37912, + "Ġê°Ļ": 4385, + "Ġê°ĻìĬµëĭĪëĭ¤": 31297, + "Ġê°ĻìķĦ": 23396, + "Ġê°ĻìķĦìĦľ": 48084, + "Ġê°ĻìķĦìļĶ": 12196, + "Ġê°ĻìĿ´": 16358, + "Ġê°ĻìĿĢ": 10005, + "Ġê°ĻìĿĢëį°": 21864, + "Ġê°ľ": 14552, + "Ġê°ľë": 30185, + "Ġê°ľìĿ¸": 36734, + "Ġê±": 4925, + "Ġê±°": 3675, + "Ġ거기": 25191, + "Ġê±°ë": 15805, + "Ġê±°ëĬĶ": 46821, + "Ġê±°ì£ł": 26957, + "Ġê±°ì§Ģ": 42435, + "Ġê±°ìķ¼": 15928, + "Ġê±°ìĺĪìļĶ": 14050, + "Ġê±°ìĿĺ": 27872, + "Ġê±±": 39365, + "Ġê±±ìłķ": 45315, + "Ġê±´": 13507, + "Ġê±´ê°ķ": 46058, + "Ġê±´ë": 39626, + "Ġê±´ëį°": 29201, + "Ġê±´ì": 46855, + "Ġ걸": 14240, + "Ġ걸ë": 37248, + "Ġê±¸ë¡ľ": 41636, + "Ġê²": 2525, + "Ġê²°": 15561, + "Ġê²°ê³¼": 46310, + "Ġê²°êµŃ": 42335, + "Ġê²½": 9537, + "Ġ경찰": 37102, + "Ġê²½ìļ°": 20591, + "Ġê²½ìļ°ìĹIJëĬĶ": 45745, + "Ġê²Ģ": 20282, + "Ġê²Ģì°°": 45433, + "Ġê²ģ": 23178, + "Ġê²ģëĭĪëĭ¤": 27146, + "Ġê²ĥ": 4431, + "Ġê²ĥëıĦ": 25942, + "Ġê²ĥì²ĺëŁ¼": 44052, + "Ġê²ĥìľ¼ë¡ľ": 34071, + "Ġê²ĥìĿ´": 29665, + "Ġê²ĥìĿĢ": 33825, + "Ġê²ĥìĿĦ": 32746, + "Ġê²Į": 7845, + "Ġê²ĮìŀĦ": 23927, + "Ġê³": 3352, + "Ġ곡": 34895, + "Ġ골ë": 42142, + "Ġê³³": 25177, + "Ġê³µ": 9273, + "Ġê³¼": 17590, + "Ġê³Ħ": 10603, + "Ġê³ĦìĨį": 17551, + "Ġê³ł": 9161, + "Ġê³łë": 18556, + "Ġê³łë¯¼": 41936, + "Ġê³łìĸij": 48105, + "Ġê´": 8214, + "Ġê´Ģ": 21061, + "Ġê´Ģë": 25201, + "Ġê´Ģ볨": 42660, + "Ġê´Ģìĭ¬": 47229, + "Ġê´ij": 26517, + "Ġê´ľ": 17327, + "Ġê´ľì°®": 18286, + "Ġê´ľì°®ìķĦ": 45058, + "Ġêµ": 4946, + "Ġ구": 15197, + "Ġ구ë": 17386, + "Ġ구ëıħ": 32800, + "Ġêµ°": 45644, + "Ġêµīìŀ¥": 15286, + "Ġêµīìŀ¥íŀĪ": 15509, + "ĠêµIJ": 24915, + "ĠêµŃ": 13858, + "ĠêµŃ민": 37336, + "Ġê¶ģ": 29342, + "Ġê¶ģê¸Ī": 32886, + "Ġê·": 1510, + "Ġê·¸": 4296, + "Ġ그거": 23075, + "Ġ그건": 41058, + "Ġ그걸": 35225, + "Ġê·¸ê²ĥ": 32565, + "Ġê·¸ê²Į": 21833, + "Ġê·¸ë": 2003, + "Ġê·¸ë¦¬ê³ł": 8785, + "Ġ그림": 43170, + "Ġê·¸ë§Į": 39067, + "Ġê·¸ëĥ¥": 11208, + "Ġê·¸ëĭ¤ìĿĮ": 36918, + "Ġê·¸ëĭ¤ìĿĮìĹIJ": 45137, + "Ġê·¸ëĮĢë¡ľ": 41711, + "Ġê·¸ëķĮ": 26788, + "Ġê·¸ëŀ": 18158, + "Ġê·¸ëŀ¬": 36185, + "Ġê·¸ëŀĺ": 7080, + "Ġê·¸ëŀĺëıĦ": 27449, + "Ġê·¸ëŀĺìĦľ": 8844, + "Ġê·¸ëŀĺìļĶ": 47453, + "Ġê·¸ëŁ": 4167, + "Ġê·¸ëŁ¬": 14019, + "Ġê·¸ëŁ¬ë": 13725, + "Ġê·¸ëŁ¬ë©´": 16645, + "Ġê·¸ëŁ¬ëĭĪê¹Į": 20855, + "Ġê·¸ëŁ°": 9306, + "Ġê·¸ëŁ°ëį°": 16610, + "Ġê·¸ëŁ´": 45372, + "Ġê·¸ëŁ¼": 13929, + "Ġê·¸ëłĩ": 13773, + "Ġê·¸ëłĩê²Į": 16104, + "Ġê·¸ëłĩì£ł": 34410, + "Ġê·¸ëłĩì§Ģ": 32667, + "Ġê·¼": 42476, + "Ġê·¼ë": 9564, + "Ġê·¼ëį°": 9907, + "Ġê·Ģ": 19112, + "Ġê·ĢìŬ": 36083, + "Ġê¸": 4291, + "Ġ기": 7047, + "Ġ기ë": 12503, + "Ġ기본": 40456, + "Ġ기ë¶Ħ": 37149, + "Ġ기ëĭ¤ë": 31431, + "Ġ기ëĮĢ": 41055, + "Ġ기ìĸµ": 30935, + "Ġ기ìŀIJ": 41483, + "Ġ길": 25222, + "Ġê¸Ī": 34120, + "Ġê¸ī": 44728, + "Ġê¹": 8394, + "Ġê¹Ģ": 17376, + "Ġê¹Ģë": 43629, + "Ġê¹Į": 49124, + "Ġê¹Ķë": 48693, + "Ġêº": 34505, + "Ġê¼": 17264, + "Ġê¼Ń": 25881, + "Ġê½": 24378, + "Ġê½ĥ": 45703, + "Ġê¾": 37006, + "Ġê¿": 28529, + "Ġê¿Ī": 43487, + "Ġë": 531, + "Ġë¡ľ": 26142, + "Ġ루ë": 48512, + "Ġ리": 28227, + "Ġ리ë": 31427, + "Ġ립": 44930, + "Ġë§": 1747, + "Ġë§¡": 49132, + "Ġ매": 17591, + "Ġ매ë": 34638, + "Ġë§Ī": 6437, + "Ġë§Īë": 25847, + "Ġë§Ī무ë": 43797, + "Ġë§Īì§Ģë§ī": 22722, + "Ġë§ĪìĬ¤íģ": 47872, + "Ġë§ĪìĿĮ": 20477, + "Ġë§ĪìĿĮìĹIJ": 43093, + "Ġë§ī": 14438, + "Ġë§Į": 14671, + "Ġë§Įë": 8165, + "Ġë§ĮëĤĺ": 38841, + "Ġë§Įëĵ¤": 12922, + "Ġë§Įëĵ¤ìĸ´": 39001, + "Ġë§Įëĵł": 40628, + "Ġë§Įìķ½": 42195, + "Ġë§Įíģ¼": 50215, + "Ġë§İ": 5671, + "Ġë§İìĿ´": 8358, + "Ġë§İìĿĢ": 18494, + "Ġë§IJ": 7058, + "Ġë§IJê³ł": 35145, + "Ġë§IJë": 31336, + "Ġë§IJìĶ": 20797, + "Ġë§IJìĶĢ": 35665, + "Ġë§IJìĶĢë": 41112, + "Ġë§IJìĶĢëĵľë": 45345, + "Ġë§IJìĿ´": 44276, + "Ġë§IJìĿĦ": 39692, + "Ġë§Ľ": 9508, + "Ġë§ĽìĿ´": 47003, + "Ġë§ĽìŀĪ": 13441, + "Ġë§ĽìŀĪëĬĶ": 49051, + "Ġë§ĽìŀĪìĸ´ìļĶ": 46778, + "Ġë§Ŀ": 46490, + "Ġë§ŀ": 9172, + "Ġë§ŀëĬĶ": 49953, + "Ġë§ŀìķĦ": 29417, + "Ġë§ŀìķĦìļĶ": 35273, + "Ġë¨": 5108, + "Ġ머ë": 37856, + "Ġ머리": 27089, + "Ġ먹": 6554, + "Ġë¨¹ê³ł": 26077, + "Ġ먹ëĬĶ": 30616, + "Ġ먹ìĸ´": 46317, + "Ġ먹ìĸ´ë": 28428, + "Ġ먹ìĿĦ": 28130, + "Ġ먼": 19326, + "Ġ먼ìłĢ": 20749, + "Ġë©": 8514, + "Ġ멤ë": 32303, + "Ġë©ĭ": 29260, + "Ġë©ĭìŀĪ": 46344, + "Ġë©Ķ": 34810, + "Ġë©Ķë": 42873, + "Ġë©ĶìĿ´íģ¬ìĹħ": 31923, + "Ġëª": 3491, + "Ġ모": 11722, + "Ġ모ë": 8941, + "Ġ모르": 20502, + "Ġ모ëijIJ": 27615, + "Ġ모ëĵł": 27714, + "Ġ모ìĬµ": 27780, + "Ġ모ìĸij": 45254, + "Ġ목": 20433, + "Ġ몰ë": 24833, + "Ġ몰ëĿ¼": 41733, + "Ġ몸": 30205, + "Ġ못": 10239, + "Ġëªħ": 18284, + "Ġëªĩ": 23628, + "Ġë¬": 4509, + "Ġ무": 27387, + "Ġ무ë": 19327, + "Ġ무ëĮĢ": 46650, + "Ġ무ì": 12540, + "Ġ무ìĦľ": 45072, + "Ġ무ìĬ¨": 22712, + "Ġ무ìĹ": 45613, + "Ġ무ìĹĩ": 47384, + "Ġ문": 13086, + "Ġë¬¸ìłľ": 24290, + "Ġë¬¸ìłľê°Ģ": 48748, + "Ġ묻": 39399, + "Ġ물": 14403, + "Ġ물ë": 26561, + "Ġë¬¼ë¡ł": 41251, + "Ġ물ìĸ´ë": 44558, + "Ġë®": 45388, + "Ġë¯": 17472, + "Ġ미": 10795, + "Ġ미êµŃ": 28667, + "Ġ미ë": 29004, + "Ġ미ìķĪ": 40241, + "Ġ민": 21509, + "Ġ민주": 49000, + "Ġ믿": 40365, + "Ġë°": 2391, + "Ġë°¤": 38093, + "Ġë°¥": 26479, + "Ġë°©": 10006, + "Ġë°©ë²ķ": 31656, + "Ġë°©ìĨ¡": 35429, + "Ġë°°": 14155, + "Ġë°±": 20710, + "Ġë°±ìĭł": 31551, + "Ġë°Ģ": 38813, + "Ġë°ij": 37734, + "Ġë°Ķ": 12704, + "Ġë°Ķê¿": 45795, + "Ġë°Ķë": 9040, + "Ġë°Ķë¡ľ": 15965, + "Ġë°ĶëĢ": 43841, + "Ġë°ķ": 21140, + "Ġë°ĸìĹIJ": 48652, + "Ġë°ĺ": 16396, + "Ġë°ĺë": 23142, + "Ġë°Ľ": 12152, + "Ġë°Ľê³ł": 48130, + "Ġë°ĽìķĦ": 41561, + "Ġë°ľ": 13825, + "Ġë°ľë": 20414, + "Ġë°ľëĿ¼": 37861, + "Ġë°ľìĥĿ": 47532, + "Ġë°Ŀ": 26499, + "Ġë°ĿíĺĶ": 48437, + "Ġë²": 7307, + "Ġë²Ħ": 22076, + "Ġë²Ħë": 34214, + "Ġë²Ī": 10212, + "Ġë²Ī째": 25055, + "Ġë²Į": 25846, + "Ġë²Įìį¨": 49175, + "Ġë²ķ": 31461, + "Ġë²ł": 28672, + "Ġë³": 2818, + "Ġë³´": 6330, + "Ġë³´ê³ł": 18942, + "Ġë³´ë": 10035, + "Ġë³´ë©´": 19443, + "Ġë³´ëĤ": 39833, + "Ġë³´ëĬĶ": 40891, + "Ġë³´ëĭĪê¹Į": 25612, + "Ġë³´ì": 7842, + "Ġë³´ìĦ¸ìļĶ": 49790, + "Ġë³´ìĭ": 23531, + "Ġë³´ìĭľ": 44771, + "Ġë³´ìĭľë©´": 42872, + "Ġë³´ìĹ": 16519, + "Ġë³´ìŬ": 21918, + "Ġë³´ìŬë": 33820, + "Ġë³´ìŬëĵľë": 47414, + "Ġë³´ìĿ´": 48189, + "Ġë³´ìĿ´ëĬĶ": 47793, + "Ġë³´íĨµ": 41701, + "Ġë³µ": 30696, + "Ġ본": 19387, + "Ġë³¼": 18001, + "Ġë³Ģ": 25575, + "Ġë³Ħ": 47442, + "Ġë³Ħë¡ľ": 45513, + "Ġë³ij": 32245, + "Ġë´": 8649, + "Ġë´¤": 20727, + "Ġë´IJ": 15507, + "Ġë´IJìļĶ": 45639, + "Ġë¶": 3658, + "Ġë¶Ģ": 11351, + "Ġë¶Ģë": 10201, + "Ġë¶Ģë¶Ħ": 18805, + "Ġë¶Ģë¶ĦìĿ´": 47820, + "Ġë¶Ģëĵľë": 47358, + "Ġë¶Ģíĥģ": 37056, + "Ġë¶ģ": 33215, + "Ġë¶ģíķľ": 45319, + "Ġë¶Ħ": 15361, + "Ġë¶Ħë": 21735, + "Ġë¶Ħëĵ¤": 20147, + "Ġë¶Ħëĵ¤ìĿ´": 36029, + "Ġë¶Ħëĵ¤ìĿĢ": 40821, + "Ġë¶ĦìľĦ": 49712, + "Ġë¶Ī": 16285, + "Ġë¶Īë": 25746, + "Ġë¶Ļ": 24618, + "Ġë¸": 13947, + "Ġë¸Įë": 21886, + "Ġë¸Ķë": 25576, + "Ġë¹": 5005, + "Ġ빨": 46954, + "Ġ빨리": 23077, + "Ġë¹µ": 48397, + "Ġë¹¼": 38112, + "Ġë¹Ħ": 10079, + "Ġë¹Ħë": 24241, + "Ġë¹ĦìĬ·": 36156, + "Ġë¹ł": 28117, + "Ġë¹łë": 36351, + "Ġë»": 48557, + "Ġë½": 28744, + "Ġë½ij": 38473, + "Ġë¿": 25829, + "Ġë¿Įë": 41582, + "Ġëģ": 9770, + "Ġëģ¼": 46809, + "ĠëģĿ": 13932, + "ĠëģĿëĤ": 34907, + "ĠëģĿëĤĺ": 48626, + "ĠëĤ": 2079, + "ĠëĤ¨": 11689, + "ĠëĤ¨ìŀIJ": 35266, + "ĠëĤ®": 38601, + "ĠëĤ´": 6918, + "ĠëĤ´ê°Ģ": 10474, + "ĠëĤ´ë": 15139, + "ĠëĤ´ëł¤": 33428, + "ĠëĤ´ì": 25097, + "ĠëĤ´ìļ©": 36898, + "ĠëĤ´ìĿ¼": 42831, + "ĠëĤĺ": 3948, + "ĠëĤĺê°Ģ": 37011, + "ĠëĤĺë": 12623, + "ĠëĤĺëĪ": 44263, + "ĠëĤĺëĬĶ": 17955, + "ĠëĤĺëıĦ": 31057, + "ĠëĤĺì¤ijìĹIJ": 44865, + "ĠëĤĺìģ": 48744, + "ĠëĤĺìĦľ": 43156, + "ĠëĤĺìĺ": 19370, + "ĠëĤĺìĺ¤": 19857, + "ĠëĤĺìĺ¤ë": 49397, + "ĠëĤĺìĺ¤ëĬĶ": 40137, + "ĠëĤĺìĺ¨": 34396, + "ĠëĤĺìĺ¬": 49599, + "ĠëĤĺìĻĢ": 27704, + "ĠëĤĺìĻĶ": 26374, + "ĠëĤĺíĥĢë": 49406, + "ĠëĤľ": 19252, + "ĠëĤł": 16316, + "Ġëĥ": 26218, + "ĠëĥĦ": 43250, + "ĠëĥĦìĥĪ": 49985, + "ĠëĦ": 3214, + "ĠëĦ£": 14948, + "ĠëĦ£ê³ł": 49201, + "ĠëĦ¤": 8808, + "ĠëĦ¤ê°Ģ": 41714, + "ĠëĦĪ": 12963, + "ĠëĦĪ무": 6924, + "ĠëĦĺ": 20237, + "Ġëħ": 8727, + "Ġëħ¸": 29158, + "Ġëħ¸ë": 13262, + "Ġëħ¸ëŀĺ": 24678, + "Ġëħ¸ëŀĺë": 42461, + "Ġëħ¸ëł¥": 49388, + "Ġëħ¹": 36906, + "ĠëĨ": 10091, + "ĠëĨĢë": 29873, + "ĠëĨį": 47379, + "ĠëĨĴ": 25015, + "ĠëĨĵ": 28747, + "ĠëĪ": 7508, + "ĠëĪĦ": 15647, + "ĠëĪĦê°Ģ": 33851, + "ĠëĪĦ구": 36385, + "ĠëĪĦë": 30225, + "ĠëĪĪ": 15333, + "ĠëĪĮ룬": 45934, + "Ġëī": 32086, + "Ġëī´ì": 36036, + "Ġëī´ìĬ¤": 45828, + "ĠëĬ": 7707, + "ĠëĬIJ": 34378, + "ĠëĬIJê»": 41667, + "ĠëĬIJë": 10749, + "ĠëĬIJëĤ": 11796, + "ĠëĬIJëĤĮ": 12652, + "ĠëĬIJëĤĮìĿ´": 29459, + "ĠëĬĺ": 33684, + "Ġëĭ": 2515, + "Ġëĭ¤": 4279, + "Ġëĭ¤ë": 9586, + "Ġëĭ¤ë¥¸": 16435, + "Ġëĭ¤ëĭĪ": 46240, + "Ġëĭ¤ëĵ¤": 47660, + "Ġëĭ¤ìĭľ": 15463, + "Ġëĭ¤ìĸij": 40553, + "Ġëĭ¤ìĸijíķľ": 49679, + "Ġëĭ¤ìĿĮ": 13526, + "Ġëĭ¤ìĿĮìĹIJ": 28232, + "Ġëĭ¨": 16818, + "Ġëĭ¬": 21166, + "Ġëĭ¬ë": 20738, + "Ġëĭ¬ëĿ¼": 42407, + "Ġëĭ´": 39700, + "Ġëĭµ": 41918, + "Ġëĭ¹": 12047, + "Ġëĭ¹ìĭľ": 49559, + "Ġëĭ¹ìĭł": 45594, + "Ġëĭ¹ìŰ": 43424, + "ĠëĭĪ": 35362, + "Ġëĭĺ": 45054, + "ĠëĮ": 28088, + "ĠëĮĢ": 5971, + "ĠëĮĢë": 17691, + "ĠëĮĢë°ķ": 38017, + "ĠëĮĢíĨµëł¹": 39567, + "ĠëĮĢíijľ": 37970, + "ĠëĮĢíķ´": 48374, + "ĠëĮĢíķ´ìĦľ": 27382, + "ĠëĮĢíķľ": 23358, + "ĠëĮĵ": 39765, + "Ġëį": 5596, + "Ġëį°": 20883, + "Ġëį°ë": 39267, + "ĠëįĶ": 6990, + "ĠëįĶë": 46389, + "Ġëı": 5189, + "Ġëı¼": 11080, + "Ġëı¼ìļĶ": 21565, + "ĠëıĦ": 10701, + "Ġëıħ": 39411, + "ĠëıĪ": 26963, + "ĠëıĮ": 20555, + "ĠëıĮë": 34324, + "ĠëıĮìķĦ": 26761, + "ĠëıĻ": 11685, + "ĠëıĻìķĪ": 32589, + "ĠëIJ": 3534, + "ĠëIJ©ëĭĪëĭ¤": 23630, + "ĠëIJIJ": 16718, + "ĠëIJĺ": 5514, + "ĠëIJĺê²Į": 14860, + "ĠëIJĺê³ł": 30597, + "ĠëIJĺë": 20603, + "ĠëIJĺë©´": 35664, + "ĠëIJĺëĬĶ": 18650, + "ĠëIJĺëĬĶëį°": 36436, + "ĠëIJĺì§Ģ": 43463, + "ĠëIJĺìĸ´": 41210, + "ĠëIJľ": 16975, + "ĠëIJł": 16625, + "Ġëij": 8108, + "ĠëijIJ": 11915, + "ĠëijIJë": 33940, + "Ġëijĺ": 21433, + "ĠëĴ": 14749, + "ĠëĴ¤": 19798, + "ĠëĴ¤ìĹIJ": 40856, + "Ġëĵ": 10758, + "Ġëĵ£": 32877, + "Ġëĵ¤": 6275, + "Ġëĵ¤ê³ł": 43488, + "Ġëĵ¤ë": 42186, + "Ġëĵ¤ìĸ´": 12900, + "Ġëĵ¤ìĸ´ê°Ģ": 20794, + "Ġëĵ¤ìĸ´ë": 46088, + "Ġëĵ¤ìĸ´ì": 20744, + "Ġëĵ¤ìĸ´ìĺ": 37916, + "Ġëĵ¯": 43058, + "Ġëĵ±": 15722, + "Ġëĵľ": 35561, + "Ġëĵľë": 13356, + "ĠëĶ": 7378, + "ĠëͰ": 49150, + "ĠëͰë": 15933, + "ĠëͰëĿ¼": 24453, + "Ġëͱ": 16681, + "ĠëĶĶ": 25158, + "ĠëĶĶìŀIJ": 47887, + "Ġëķ": 4893, + "ĠëķĮ": 7765, + "ĠëķĮë": 9057, + "ĠëķĮ문": 11406, + "ĠëķĮ문ìĹIJ": 12365, + "ĠëķĮëĬĶ": 27264, + "ĠëķĮëıĦ": 49738, + "Ġëĸ": 13320, + "Ġëĸ¡": 45197, + "Ġëĸ¨": 27436, + "Ġëĸ¨ìĸ´ì": 30667, + "Ġëĸł": 43687, + "Ġëĸłë": 48158, + "Ġëĺ": 7102, + "ĠëĺIJ": 7992, + "Ġëĺij": 29142, + "Ġëĺijê°Ļ": 33790, + "Ġëļ": 39181, + "ĠëĽ": 40589, + "Ġ뼰": 44380, + "Ġëľ": 20490, + "Ġ뾨": 38766, + "Ġëľ»": 44774, + "ĠëĿ¼": 22339, + "ĠëĿ¼ê³ł": 43281, + "ĠëĿ¼ë": 44831, + "ĠëĿ¼ëĬĶ": 49121, + "ĠëłĪ": 28156, + "ĠëłĪë": 43927, + "ĠëŃ": 10096, + "ĠëŃIJ": 7034, + "ĠëŃIJê°Ģ": 39713, + "ĠëŃIJë": 25205, + "ĠëŃIJìķ¼": 18410, + "ĠëŃĶ": 43972, + "ĠëŃĶê°Ģ": 20729, + "ĠëŃĺ": 32376, + "Ġì": 451, + "Ġì¡": 22116, + "Ġì¡°": 7430, + "Ġì¡°ê¸Ī": 13091, + "Ġì¡°ë": 42707, + "Ġì¡°ìĭ¬": 48164, + "Ġì¢": 3340, + "Ġì¢Ģ": 6796, + "Ġì¢ħ": 25260, + "Ġì¢ĭ": 5008, + "Ġì¢ĭëĭ¤": 44891, + "Ġì¢ĭìķĦ": 10805, + "Ġì¢ĭìķĦìļĶ": 22482, + "Ġì¢ĭìķĦíķĺ": 40344, + "Ġì¢ĭìķĦíķĺëĬĶ": 33164, + "Ġì¢ĭìĿĢ": 16460, + "Ġì¢ĭìĿĦ": 39968, + "Ġì£": 5442, + "Ġ주": 7757, + "Ġì£¼ê³ł": 45848, + "Ġ주ë": 16410, + "Ġ주ëĬĶ": 45589, + "Ġ주ìĦ¸ìļĶ": 34067, + "Ġ죽": 22303, + "Ġì£Ħ": 37347, + "Ġì£ĦìĨ¡": 41939, + "Ġì¤": 4855, + "Ġì¤Ģ": 38879, + "Ġì¤Ģë": 18647, + "Ġì¤Ģë¹Ħ": 21911, + "Ġì¤Ħ": 15320, + "Ġì¤ij": 7596, + "Ġì¤ijêµŃ": 39712, + "Ġì¤ijìĹIJ": 32690, + "Ġì¤ijìļĶ": 24851, + "Ġì¤ijìļĶíķľ": 39072, + "Ġì¤ĺ": 41926, + "Ġì¦": 19220, + "Ġì¦IJ": 35177, + "Ġì¦Ŀ": 33830, + "Ġì§": 2334, + "Ġì§§": 43437, + "Ġì§Ģ": 4704, + "Ġì§Ģê¸": 46253, + "Ġì§Ģê¸Ī": 7356, + "Ġì§Ģê¸Īê¹Įì§Ģ": 41309, + "Ġì§Ģê¸ĪìĿĢ": 46516, + "Ġì§Ģë": 12205, + "Ġì§ĢëĤĺ": 41672, + "Ġì§ĢëĤľ": 26416, + "Ġì§ĢìĹŃ": 36209, + "Ġì§ĢìĽIJ": 47284, + "Ġì§ģ": 19224, + "Ġì§ģìłij": 34196, + "Ġì§Ħ": 5526, + "Ġì§Ħì§ľ": 7106, + "Ġì§Ħíĸī": 32544, + "Ġì§Ī문": 39217, + "Ġì§ij": 12111, + "Ġì§ijìĹIJ": 38380, + "Ġì§ľ": 35609, + "Ġ쪽": 31790, + "Ġì«": 37453, + "Ġì°": 5122, + "Ġì°¨": 15391, + "Ġì°¨ë": 24537, + "Ġì°©": 36018, + "Ġì°¸": 18255, + "Ġì°½": 39501, + "Ġì°¾": 18283, + "Ġì°¾ìķĦ": 33219, + "Ġì°į": 17285, + "Ġì±": 14097, + "Ġì±Ħ": 27411, + "Ġì±ħ": 33623, + "Ġì±Ļ": 49414, + "Ġì²": 6768, + "Ġ첫": 22707, + "Ġì²´": 39667, + "Ġì²ĺ": 16650, + "Ġì²ĺë": 40272, + "Ġì²ĺìĿĮ": 18736, + "Ġì²ľ": 31076, + "Ġì²Ń": 24902, + "Ġì³": 43517, + "Ġì´": 10359, + "Ġì´¬ìĺģ": 27874, + "Ġì´Ī": 26631, + "Ġì´Īë": 34417, + "Ġì´ī": 47783, + "Ġì´Ŀ": 27370, + "Ġìµ": 12568, + "Ġìµľ": 14571, + "Ġìµľê³ł": 36703, + "Ġìµľê·¼": 37349, + "ĠìµľëĮĢ": 44112, + "Ġì¶": 7458, + "Ġ춤": 40037, + "Ġì¶©": 24975, + "Ġì¶©ë¶Ħ": 47891, + "Ġì¶Ķ": 17435, + "Ġì¶Ķê°Ģ": 38160, + "Ġì¶Ķì²ľ": 40264, + "Ġì¶ķ": 36692, + "Ġì¶ľ": 25420, + "Ġì·¨": 28880, + "Ġì¸": 33381, + "Ġ측": 41696, + "Ġì¹": 6639, + "Ġì¹´": 41703, + "Ġì¹´ë": 24369, + "Ġì¹´ë©Ķë": 37680, + "Ġì¹´ë©ĶëĿ¼": 46984, + "Ġì¹ĺ": 18447, + "Ġì¹ĺë": 38366, + "Ġì¹ľ": 15801, + "Ġì¹ľêµ¬": 28307, + "Ġì¹ľêµ¬ë": 30922, + "Ġìº": 25230, + "ĠìºIJë": 45024, + "Ġì»": 9305, + "Ġ커": 38687, + "Ġ커ë": 39573, + "Ġ커íĶ": 45326, + "Ġ컨": 36195, + "Ġ컬ë": 19266, + "Ġì»¬ëŁ¬": 26691, + "Ġì»¬ëŁ¬ë": 39177, + "Ġì¼": 25777, + "Ġì¼Ģ": 46142, + "Ġì½": 10630, + "Ġì½Ķ": 26306, + "Ġì½Ķë": 31512, + "Ġì½Ķë¡ľ": 29716, + "Ġì½Ķë¡ľëĤĺ": 31490, + "Ġì½ĺ": 43875, + "Ġì¿": 27056, + "Ġì¿ł": 37855, + "ĠìĤ": 2774, + "ĠìĤ¬": 4744, + "ĠìĤ¬ê±´": 49653, + "ĠìĤ¬ê³ł": 40836, + "ĠìĤ¬ë": 6606, + "ĠìĤ¬ëŀ": 7727, + "ĠìĤ¬ëŀĮ": 12211, + "ĠìĤ¬ëŀĮë": 18078, + "ĠìĤ¬ëŀĮëĵ¤": 39570, + "ĠìĤ¬ëŀĮëĵ¤ìĿ´": 34919, + "ĠìĤ¬ëŀĮìĿ´": 27660, + "ĠìĤ¬ëŀij": 22581, + "ĠìĤ¬ì§Ħ": 29899, + "ĠìĤ¬ìĭ¤": 14504, + "ĠìĤ¬ìļ©": 14422, + "ĠìĤ°": 29589, + "ĠìĤ´": 21155, + "ĠìĤ´ë": 37316, + "ĠìĤ´ì": 15482, + "ĠìĤ´ì§Ŀ": 22384, + "ĠìĤ´ìķĦ": 46978, + "ĠìĤ¼": 32391, + "Ġìĥ": 3694, + "Ġìĥģ": 8563, + "Ġìĥģíĥľ": 34210, + "ĠìĥģíĻ©": 24581, + "ĠìĥĪ": 31184, + "ĠìĥĪë": 21922, + "ĠìĥĪë¡ľ": 32594, + "ĠìĥĪë¡ľìļ´": 41088, + "Ġìĥī": 22530, + "Ġìĥīê¹": 44105, + "ĠìĥĿ": 6439, + "ĠìĥĿê°ģ": 8594, + "ĠìĥĿê°ģìĿ´": 34581, + "ĠìĥĿê°ģìĿĦ": 30852, + "ĠìĥĿê²¼": 49810, + "ĠìĦ": 3952, + "ĠìĦ¤": 30630, + "ĠìĦ¤ë": 24175, + "ĠìĦ¤ëªħ": 33020, + "ĠìĦ±": 14409, + "ĠìĦ±ê³µ": 38403, + "ĠìĦ¸": 11605, + "ĠìĦ¸ê³Ħ": 40179, + "ĠìĦ¸ë": 32143, + "ĠìĦ¸ìĥģ": 37990, + "ĠìĦľ": 17397, + "ĠìĦľë": 32558, + "ĠìĦľë¡ľ": 44595, + "ĠìĦľìļ¸": 31039, + "ĠìĦŀ": 45048, + "ĠìĦł": 11835, + "ĠìĦłë": 22218, + "ĠìĦłë¬¼": 44956, + "ĠìĦłë°°": 49122, + "ĠìĦłìĥĿ": 33600, + "ĠìĦłìĥĿëĭĺ": 37974, + "ĠìĦłíĥĿ": 33126, + "Ġìħ": 23567, + "Ġìħĭ": 34371, + "ĠìĨ": 4794, + "ĠìĨĮ": 10614, + "ĠìĨĮê°ľ": 42784, + "ĠìĨĮë": 13062, + "ĠìĨĮ리": 21652, + "ĠìĨį": 18663, + "ĠìĨIJ": 15268, + "ĠìĨĶ": 37255, + "ĠìĨĶì§ģ": 40279, + "ĠìĨĶì§ģíŀĪ": 46337, + "ĠìĪ": 3471, + "Ġì΍": 33354, + "ĠìĪĺ": 4446, + "ĠìĪĺê°Ģ": 27345, + "ĠìĪĺë": 22297, + "ĠìĪĺëıĦ": 23455, + "ĠìĪľ": 23841, + "ĠìĪľê°Ħ": 44588, + "ĠìĪł": 41986, + "Ġìī": 18804, + "Ġìī¬": 37687, + "Ġìī½": 33561, + "ĠìĬ": 6955, + "ĠìĬ¤": 25858, + "ĠìĬ¤ë": 40420, + "ĠìĬ¤í": 11196, + "ĠìĬ¤íĥĢ": 30675, + "ĠìĬ¤íĥĢìĿ¼": 45881, + "ĠìĬ¤íĬ¸ë": 49490, + "ĠìĬ¹": 30977, + "Ġìĭ": 2811, + "Ġìĭ¤": 19300, + "Ġìĭ¤ë": 34496, + "Ġìĭ¤ìłľë¡ľ": 46399, + "Ġìĭ¤í": 37403, + "Ġìĭ«": 33649, + "Ġìĭ¬": 21923, + "Ġìĭ¶": 10785, + "Ġìĭ¶ìĿĢ": 26912, + "Ġìĭ¸": 33949, + "Ġìĭľ": 5710, + "Ġìĭľê°Ħ": 16648, + "Ġìĭľê°ĦìĿ´": 39330, + "Ġìĭľë": 24452, + "Ġìĭľì²Ń": 41123, + "Ġìĭľìŀij": 14525, + "ĠìĭĿ": 19675, + "ĠìĭĿìľ¼ë¡ľ": 47270, + "Ġìĭł": 13042, + "Ġìĭłê¸°": 47958, + "Ġìĭłë": 26397, + "ĠìĮ": 35792, + "Ġìį": 37113, + "Ġìį¨": 32575, + "Ġìı": 40304, + "Ġìĵ": 11647, + "Ġìĵ°": 17373, + "Ġìĵ°ê³ł": 43303, + "Ġìĵ°ë": 37159, + "Ġìĵ°ëĬĶ": 44878, + "Ġìĵ¸": 42776, + "ĠìĶ": 13479, + "Ġì͍": 17394, + "Ġì͍ê°Ģ": 49262, + "Ġìķ": 1298, + "Ġìķ¼": 13450, + "Ġìķ½": 11503, + "Ġìķ½ê°Ħ": 14466, + "ĠìķĦ": 2216, + "ĠìķĦê¹Į": 25289, + "ĠìķĦë": 9200, + "ĠìķĦë§Ī": 37298, + "ĠìķĦ무": 30702, + "ĠìķĦ무ë": 29907, + "ĠìķĦë²Ħ": 49972, + "ĠìķĦë¹ł": 41281, + "ĠìķĦëĭ": 16996, + "ĠìķĦëĭĪ": 5651, + "ĠìķĦëĭĪê³ł": 32510, + "ĠìķĦëĭĪë": 14279, + "ĠìķĦëĭĪë©´": 33059, + "ĠìķĦëĭĪëĿ¼": 22948, + "ĠìķĦëĭĪìķ¼": 20425, + "ĠìķĦëĭĪìĹIJìļĶ": 30809, + "ĠìķĦëĭĮ": 28069, + "ĠìķĦëĭĻ": 45842, + "ĠìķĦ주": 22360, + "ĠìķĦì§ģ": 22729, + "ĠìķĦ침": 41812, + "ĠìķĦìĿ´": 25130, + "ĠìķĦìĿ´ë": 24790, + "ĠìķĦíĮĮ": 46438, + "Ġìķħ": 43843, + "ĠìķĪ": 4811, + "ĠìķĪë": 9658, + "ĠìķĪëħķ": 13810, + "ĠìķĪëħķíķĺìĦ¸ìļĶ": 19289, + "ĠìķĪëı¼": 42685, + "ĠìķĪìĹIJ": 31660, + "Ġìķī": 37426, + "ĠìķĬ": 6718, + "ĠìķĬê³ł": 31157, + "ĠìķĬëĬĶ": 34790, + "ĠìķĬìķĦ": 39860, + "ĠìķĬìķĦìļĶ": 39952, + "ĠìķĬìķĺ": 29558, + "ĠìķĬìĿĢ": 34590, + "ĠìķĬìĿĦ": 32112, + "ĠìķĮ": 9457, + "ĠìķĮê³ł": 31935, + "ĠìķĮë": 21246, + "ĠìķĮ볤": 38654, + "ĠìķĮìķĦ": 32352, + "ĠìķĮìķĺìĸ´": 49453, + "Ġìķŀ": 13727, + "ĠìķŀìĹIJ": 42004, + "Ġìķŀìľ¼ë¡ľ": 30293, + "Ġìķł": 21459, + "Ġìķłë": 42422, + "Ġìĸ": 2417, + "Ġìĸ´": 9076, + "Ġìĸ´ë": 4863, + "Ġìĸ´ë¨¸": 33257, + "Ġìĸ´ëĬIJ": 34918, + "Ġìĸ´ëĶ": 41802, + "Ġìĸ´ëĶĶ": 20879, + "Ġìĸ´ëķĮ": 43884, + "Ġìĸ´ëĸ": 7768, + "Ġìĸ´ëĸ¡": 39593, + "Ġìĸ´ëĸ¤": 15620, + "Ġìĸ´ëĸ»": 12580, + "Ġìĸ´ëĸ»ê²Į": 12952, + "Ġìĸ´ëł¤": 32289, + "Ġìĸ´ëłµ": 43961, + "Ġìĸ´ì": 11474, + "Ġìĸ´ì¨": 46478, + "Ġìĸ´ì¨Įëĵł": 49856, + "Ġìĸ´ì©": 43513, + "Ġìĸ´ìļ": 27755, + "Ġìĸ´ìłľ": 39247, + "Ġìĸ¸": 16738, + "Ġìĸ¸ë": 44014, + "Ġìĸ¸ëĭĪ": 27213, + "Ġìĸ¸ìłľ": 43790, + "Ġìĸ¼": 22142, + "Ġìĸ¼êµ": 25233, + "Ġìĸ¼êµ´": 30818, + "Ġìĸ¼ë": 21699, + "Ġìĸ¼ë§": 33502, + "Ġìĸ¼ë§Ī": 44859, + "Ġìĸ¼ë§ĪëĤĺ": 36093, + "Ġìĸij": 17723, + "Ġìĸĺ": 11098, + "Ġìĸĺ기": 19641, + "Ġìĸĺ기를": 38327, + "Ġìĸĺë": 49441, + "ĠìĸĺëĬĶ": 43084, + "ĠìĹ": 2087, + "ĠìŬ": 5518, + "ĠìĹ¬ê¸°": 7543, + "ĠìĹ¬ê¸°ê¹Įì§Ģ": 46869, + "ĠìĹ¬ê¸°ëĬĶ": 48864, + "ĠìĹ¬ê¸°ìĦľ": 25404, + "ĠìĹ¬ê¸°ìĹIJ": 37138, + "ĠìŬë": 8228, + "ĠìŬ룬": 31784, + "ĠìŬ룬ë": 10791, + "ĠìŬ룬ë¶Ħ": 14707, + "ĠìŬ룬ë¶Ħëĵ¤": 25745, + "ĠìŬìŀIJ": 41768, + "ĠìŰ": 11839, + "ĠìŰë": 34902, + "ĠìŰìĬµ": 35901, + "ĠìĹ´": 41280, + "ĠìĹ´ë": 38787, + "ĠìĹ´ì": 40039, + "ĠìĹ´ìĭ¬íŀĪ": 31939, + "ĠìĹĦ": 16685, + "ĠìĹĦë§Ī": 23747, + "ĠìĹĦì²Ń": 18070, + "ĠìĹħ": 32892, + "ĠìĹĨ": 5711, + "ĠìĹĨê³ł": 48724, + "ĠìĹĨëĬĶ": 20986, + "ĠìĹĨëĭ¤": 50174, + "ĠìĹĨìĬµëĭĪëĭ¤": 47236, + "ĠìĹĨìĸ´": 28715, + "ĠìĹĨìĸ´ìļĶ": 31162, + "ĠìĹĨìĿ´": 33353, + "ĠìĹIJ": 20122, + "ĠìĹIJë": 44428, + "ĠìĹŃ": 19427, + "ĠìĹŃìĭľ": 34522, + "Ġìĺ": 2355, + "Ġìĺ¤": 5175, + "Ġìĺ¤ë": 10258, + "Ġìĺ¤ë¥¸": 46673, + "Ġìĺ¤ë¹ł": 33398, + "Ġìĺ¤ëĬ": 36791, + "Ġìĺ¤ëĬĺ": 8880, + "Ġìĺ¤ëĬĺëıĦ": 47455, + "Ġìĺ¤ëĬĺìĿĢ": 23720, + "Ġìĺ¤ëŀĺ": 46211, + "Ġìĺ¤ëŀľë§Į": 48551, + "Ġìĺ¤ì¼ĢìĿ´": 30567, + "Ġìĺ¤í": 25586, + "Ġìĺ¨": 25506, + "Ġìĺ¬": 28603, + "Ġìĺ¬ë": 12917, + "Ġìĺ¬ëĿ¼": 22327, + "Ġìĺ·": 30880, + "Ġìĺģ": 9293, + "Ġìĺģìĥģ": 15603, + "ĠìĺģìĥģìĿĦ": 42942, + "ĠìĺģíĻĶ": 44869, + "ĠìĺĨ": 29095, + "ĠìĺĪ": 10134, + "ĠìĺĪë": 22551, + "ĠìĺĪë»IJ": 45527, + "ĠìĺĪìģ": 20684, + "ĠìĺĪìģĺ": 28424, + "ĠìĺĽ": 44298, + "ĠìĺĽëĤł": 48646, + "ĠìĻ": 4186, + "ĠìϏ": 27357, + "ĠìĻĢ": 12500, + "ĠìĻĢìĦľ": 45783, + "ĠìĻĦ": 18112, + "ĠìĻĦë": 36683, + "ĠìĻĦìĦ±": 41867, + "ĠìĻĦìłĦ": 25587, + "ĠìĻĶ": 17766, + "ĠìĻľ": 9883, + "ĠìĻľë": 33750, + "ĠìĻľëĥIJíķĺë©´": 49338, + "Ġìļ": 4709, + "Ġìļ©": 33622, + "Ġìļ°": 14995, + "Ġìļ°ë": 22776, + "Ġìļ°ë¦¬": 8126, + "Ġìļ°ë¦¬ê°Ģ": 22408, + "Ġìļ°ë¦¬ë": 36118, + "Ġìļ°ë¦¬ëĬĶ": 42425, + "Ġìļ°ìĻĢ": 36963, + "Ġìļ´ëıĻ": 33541, + "Ġìļ¸": 40814, + "ĠìļĶ": 10161, + "ĠìļĶë": 39688, + "ĠìļĶì¦ĺ": 24835, + "ĠìĽ": 6891, + "ĠìĽĢ": 40481, + "ĠìĽĢì§ģ": 42114, + "ĠìĽĥ": 25014, + "ĠìĽIJ": 13499, + "ĠìĽIJë": 20884, + "ĠìĽIJëŀĺ": 25169, + "Ġìľ": 4916, + "Ġìľ¤": 36844, + "Ġìľ¼": 37163, + "ĠìľĦ": 9491, + "ĠìľĦìĹIJ": 38388, + "ĠìľĦíķ´": 31600, + "ĠìľĦíķ´ìĦľ": 30238, + "ĠìľĦíķľ": 41475, + "Ġìľł": 11878, + "Ġìľłë": 22262, + "ĠìľłíĬľë": 39163, + "ĠìĿ": 1191, + "ĠìĿ´": 2620, + "ĠìĿ´ê±°": 7075, + "ĠìĿ´ê±°ë¥¼": 46208, + "ĠìĿ´ê±°ëĬĶ": 24535, + "ĠìĿ´ê±´": 21867, + "ĠìĿ´ê±¸": 27107, + "ĠìĿ´ê²ĥ": 23088, + "ĠìĿ´ê²ĥëıĦ": 42118, + "ĠìĿ´ê²Į": 10496, + "ĠìĿ´ë": 2892, + "ĠìĿ´ë¦Ħ": 28581, + "ĠìĿ´ë¯¸": 30099, + "ĠìĿ´ë²Ī": 16299, + "ĠìĿ´ë²ĪìĹIJ": 40692, + "ĠìĿ´ë٬": 37398, + "ĠìĿ´ëٰ": 8381, + "ĠìĿ´ëłĩê²Į": 5483, + "ĠìĿ´ì": 4329, + "ĠìĿ´ìª½": 40325, + "ĠìĿ´ìĥģ": 20362, + "ĠìĿ´ìķ¼": 20510, + "ĠìĿ´ìķ¼ê¸°": 37576, + "ĠìĿ´ìķ¼ê¸°ë¥¼": 48974, + "ĠìĿ´ìĸ": 40186, + "ĠìĿ´ìļ©": 37839, + "ĠìĿ´ìľł": 32292, + "ĠìĿ´ìł": 41049, + "ĠìĿ´ìłľ": 8424, + "ĠìĿ´íķ´": 49373, + "ĠìĿ´íĽĦ": 43577, + "ĠìĿµ": 45664, + "ĠìĿ¸": 9385, + "ĠìĿ¸ë": 34339, + "ĠìĿ¸íĦ°ë": 47491, + "ĠìĿ¼": 7682, + "ĠìĿ¼ë": 16623, + "ĠìĿ¼ë°ĺ": 47057, + "ĠìĿ¼ë³¸": 38496, + "ĠìĿ¼ëĭ¨": 17304, + "ĠìĿ¼ìĿ´": 42848, + "ĠìĿ½": 43302, + "ĠìĿĢ": 31863, + "ĠìĿĮ": 15179, + "ĠìĿĮìĭĿ": 34203, + "ĠìĿĮìķħ": 37851, + "ĠìĿij": 21712, + "ĠìĿĺ": 14389, + "ĠìĿĺë": 29321, + "Ġìŀ": 1332, + "Ġìŀ¡": 16545, + "Ġìŀ¡ìķĦ": 40845, + "Ġìŀ¥": 12280, + "Ġìŀ¥ëĤľ": 46314, + "Ġìŀ¬": 20804, + "Ġìŀ¬ë": 16526, + "Ġìŀ¬ë¯¸": 37723, + "Ġìŀ¬ë°Į": 31224, + "ĠìŀĦ": 43216, + "Ġìŀħ": 10051, + "ĠìŀħëĭĪëĭ¤": 37589, + "ĠìŀĪ": 2297, + "ĠìŀĪê±°ëĵłìļĶ": 44262, + "ĠìŀĪê²Į": 41680, + "ĠìŀĪê³ł": 18683, + "ĠìŀĪê³łìļĶ": 44426, + "ĠìŀĪ기": 48371, + "ĠìŀĪë": 23549, + "ĠìŀĪëĤĺ": 48178, + "ĠìŀĪëĬĶ": 7153, + "ĠìŀĪëĬĶëį°": 19197, + "ĠìŀĪëĬĶëį°ìļĶ": 43550, + "ĠìŀĪëĭ¤": 27468, + "ĠìŀĪëĭ¤ê³ł": 32517, + "ĠìŀĪëĭ¤ëĬĶ": 38469, + "ĠìŀĪì£ł": 34070, + "ĠìŀĪì§Ģ": 37693, + "ĠìŀĪì§Ģë§Į": 49355, + "ĠìŀĪìĬµëĭĪëĭ¤": 10552, + "ĠìŀĪìĸ´": 17300, + "ĠìŀĪìĸ´ìĦľ": 27937, + "ĠìŀĪìĸ´ìļĶ": 12654, + "ĠìŀĪìĹĪ": 15972, + "ĠìŀĪìľ¼": 47324, + "ĠìŀĪìľ¼ë©´": 35783, + "ĠìŀĪìľ¼ëĭĪê¹Į": 44489, + "ĠìŀĪìĿĦ": 18082, + "ĠìŀĪìŀĸìķĦìļĶ": 38853, + "ĠìŀIJ": 5650, + "ĠìŀIJ기": 37257, + "ĠìŀIJ꾸": 45989, + "ĠìŀIJë": 15905, + "ĠìŀIJ주": 47295, + "ĠìŀIJìĭł": 31505, + "ĠìŀIJìŰ": 39635, + "Ġìŀij": 14585, + "ĠìŀijìĹħ": 40316, + "ĠìŀijìĿĢ": 45870, + "Ġìŀĺ": 6644, + "Ġìŀĺë": 24041, + "Ġìŀĺ못": 38991, + "Ġìŀł": 15825, + "Ġìŀłê¹": 24155, + "Ġìŀłê¹IJ": 43479, + "Ġìŀłê¹IJë§Į": 33805, + "Ġìł": 1647, + "ĠìłĢ": 4841, + "ĠìłĢ기": 33789, + "ĠìłĢë": 13163, + "ĠìłĢëĬĶ": 10551, + "ĠìłĢëıĦ": 27591, + "ĠìłĢíĿ¬": 14594, + "ĠìłĢíĿ¬ê°Ģ": 27463, + "Ġìłģ": 14370, + "ĠìłģìĿ´": 48660, + "ĠìłĦ": 6831, + "ĠìłĦë": 19617, + "ĠìłĦìĹIJ": 27117, + "ĠìłĪë": 36144, + "ĠìłĪëĮĢ": 48811, + "ĠìłIJ": 20060, + "Ġìłij": 21616, + "Ġìłijì¢ħ": 32840, + "Ġìłķ": 4980, + "Ġìłķë§IJ": 12793, + "Ġìłķë¶Ģ": 34659, + "ĠìłķëıĦ": 13636, + "ĠìłķëıĦë¡ľ": 42173, + "ĠìłķíĻķ": 47930, + "Ġìłľ": 4424, + "Ġìłľê°Ģ": 7439, + "Ġìłľë": 23406, + "ĠìłľëĮĢë¡ľ": 43795, + "ĠìłľìĿ¼": 23090, + "ĠìłľíĴĪ": 21496, + "Ġí": 1175, + "Ġíģ": 9414, + "Ġíģ¬": 23130, + "Ġíģ¬ê²Į": 38926, + "Ġíģ¬ë": 27680, + "Ġíģ°": 21307, + "Ġíģ´ë": 30464, + "ĠíĤ": 21959, + "ĠíĤ¤": 31855, + "Ġíĥ": 8675, + "ĠíĥĢ": 19840, + "ĠíĥĦ": 46979, + "Ġíĥľ": 28808, + "ĠíĦ°": 39565, + "Ġíħ": 18575, + "ĠíħĮ": 30516, + "ĠíĨ": 20901, + "ĠíĨµ": 17006, + "ĠíĨł": 40309, + "ĠíĨłë": 47955, + "Ġíά": 27256, + "ĠíĬ": 11412, + "ĠíĬ¸ë": 34479, + "ĠíĬ¹": 16909, + "ĠíĬ¹ë³Ħ": 48735, + "ĠíĬ¹íŀĪ": 37704, + "ĠíĬĢ": 49470, + "Ġíĭ": 22114, + "Ġíĭ°": 42417, + "ĠíĮ": 6950, + "ĠíĮ¨": 35470, + "ĠíĮ¬": 45480, + "ĠíĮ¬ë": 47132, + "ĠíĮĢ": 31448, + "ĠíĮĮ": 15390, + "ĠíĮĮë": 44475, + "ĠíĮIJ": 35008, + "ĠíĮĶ": 37110, + "ĠíĮĶë": 49236, + "Ġíį¼": 40849, + "Ġíİ": 10981, + "Ġíݸ": 16990, + "Ġíİĺ": 48574, + "Ġíı": 9250, + "Ġíı¬": 17101, + "Ġíı¬ìĿ¸": 45253, + "Ġíıī": 21967, + "ĠíıŃ": 35663, + "Ġíij": 41065, + "Ġíijľ": 20966, + "ĠíijľíĺĦ": 34232, + "ĠíĴ": 21442, + "ĠíĴĢ": 40036, + "ĠíĶ": 8074, + "Ġíͼ": 17448, + "Ġíͼë": 24009, + "Ġíͼë¶Ģ": 30192, + "ĠíĶĦë": 32051, + "ĠíĶĦë¡ľ": 27758, + "ĠíĶĮë": 28764, + "Ġíķ": 1362, + "Ġíķ¨": 19340, + "Ġíķ¨ê»ĺ": 21469, + "Ġíķ©": 32413, + "Ġíķ©ëĭĪëĭ¤": 18802, + "Ġíķ´": 11683, + "Ġíķ´ë": 11134, + "Ġíķ´ëıĦ": 35776, + "Ġíķ´ì": 7960, + "Ġíķ´ì£¼": 23281, + "Ġíķ´ì¤": 29409, + "Ġíķ´ìĦľ": 17705, + "Ġíķ´ìķ¼": 20556, + "Ġíķ´ìļĶ": 25744, + "ĠíķĦ": 19620, + "ĠíķĦìļĶ": 22731, + "Ġíķij": 45549, + "Ġíķĺ": 3369, + "Ġíķĺê²Į": 44605, + "Ġíķĺê²łìĬµëĭĪëĭ¤": 23473, + "Ġíķĺê³ł": 10301, + "Ġíķĺ기": 47378, + "Ġíķĺë": 5832, + "Ġíķĺ루": 33918, + "Ġíķĺë©´": 17422, + "Ġíķĺë©´ìĦľ": 37466, + "ĠíķĺëĤĺ": 12261, + "ĠíķĺëĤĺë": 38878, + "ĠíķĺëĬĶ": 10914, + "ĠíķĺëĬĶëį°": 29600, + "ĠíķĺëĭĪê¹Į": 47490, + "Ġíķĺì§Ģ": 26882, + "Ġíķĺì§Ģë§Į": 23286, + "ĠíķĻ": 24504, + "Ġíķľ": 4815, + "ĠíķľêµŃ": 21045, + "Ġíķľë": 10737, + "Ġíķľë²Ī": 14463, + "Ġíķľëĭ¤": 44005, + "Ġíķľëį°": 49780, + "Ġíķł": 8981, + "Ġíķłê²ĮìļĶ": 43258, + "Ġíķłë": 44148, + "ĠíķŃ": 25031, + "ĠíķŃìĥģ": 30747, + "Ġíĸ": 11988, + "Ġíĸ¥": 29165, + "ĠíĸĪ": 8154, + "ĠíĸĪëĬĶëį°": 27418, + "ĠíĸĪëįĺ": 45564, + "ĠíĸĪìĬµëĭĪëĭ¤": 32314, + "ĠíĸĪìĸ´": 49528, + "ĠíĸĪìĸ´ìļĶ": 36331, + "Ġíĸī": 21484, + "Ġíĸīë³µ": 36921, + "ĠíĹ": 13431, + "ĠíŤ": 45037, + "ĠíĹĪ": 26893, + "ĠíĹĪë": 47078, + "ĠíĹĪíĮĿ": 41756, + "Ġíĺ": 5706, + "Ġíĺ¸": 26932, + "Ġíĺ¹": 27088, + "Ġíĺ¹ìĭľ": 34767, + "Ġíĺ¼": 31523, + "Ġíĺ¼ìŀIJ": 36028, + "ĠíĺĦ": 17505, + "ĠíĺĦìŀ¬": 39870, + "Ġíĺij": 46977, + "Ġíĺķ": 12459, + "ĠíĻ": 5930, + "ĠíĻį": 36990, + "ĠíĻĶ": 20661, + "ĠíĻĶë": 26700, + "ĠíĻĶìŀ¥": 40711, + "ĠíĻķ": 12619, + "ĠíĻķì§Ħ": 45061, + "ĠíĻķìĭ¤íŀĪ": 50149, + "ĠíĻķìĿ¸": 31288, + "ĠíĻĺ": 29288, + "ĠíĻľ": 42194, + "ĠíĻľëıĻ": 45638, + "Ġíļ": 14794, + "Ġíļ¨": 33571, + "ĠíļĮ": 22980, + "ĠíĽ": 11091, + "ĠíĽ¨": 41842, + "ĠíĽ¨ìͬ": 42489, + "ĠíĽĦ": 21638, + "ĠíĽĦë": 23104, + "ĠíĽĦë³´": 40089, + "Ġíľ": 30200, + "ĠíĿ": 14473, + "Ġíŀĺ": 30326, + "Ġíŀĺë": 22042, + "Ġíŀĺëĵ¤": 28576, + "Ġï": 25072, + "Ġï·": 28081, + "Ġï·º": 41122, + "Ġï·»": 47735, + "Ġ�": 16867, + "ĠðĿ": 42244, + "ĠðĿĺ": 42341, + "ĠðŁ": 7385, + "ĠðŁİ": 19034, + "ĠðŁİµ": 25674, + "ĠðŁİ¶": 43669, + "ĠðŁIJ": 27480, + "ĠðŁij": 36276, + "ĠðŁĺ": 20732, + "ġ": 221, + "Ģ": 222, + "Ģë": 2366, + "Ģë¡ľ": 36680, + "Ģ리": 34374, + "ĢëıĦ": 33225, + "ĢìĿ´": 12192, + "ĢìĿĦ": 25700, + "ģ": 223, + "ģ¼": 29278, + "ģĶ": 30895, + "Ĥ": 224, + "Ĥ¨": 30856, + "Ĥ¬": 9915, + "Ĥ´": 22485, + "Ĥĺ": 3404, + "Ĥĺë": 14886, + "ĤĺëĿ¼": 47495, + "ĤĺìļĶ": 26057, + "Ĥľ": 16662, + "Ĥł": 24095, + "ĥ": 225, + "ĥ¥": 10408, + "ĥ½": 4720, + "ĥĢ": 22373, + "ĥģ": 17486, + "ĥIJ": 12476, + "ĥIJë©´": 35482, + "ĥIJíķĺë©´": 46370, + "Ħ": 226, + "Ħ¤": 5626, + "Ħ¤ìļĶ": 12974, + "Ħ°": 26267, + "Ħ±": 42235, + "Ħ¸": 20600, + "Ħ¸ìļĶ": 25918, + "Ħë": 2703, + "Ħë¡ľ": 14046, + "Ħ를": 21273, + "Ħë§Ī": 21274, + "ĦëıĦ": 24798, + "Ħëĵ¤": 10801, + "ĦĪ": 23318, + "ĦIJ": 45382, + "Ħľ": 3556, + "ħ": 227, + "ħ¸": 37524, + "ħëĭĪëĭ¤": 28332, + "ħĢ": 32710, + "ħĦ": 35530, + "ħķ": 12831, + "ħĺ": 36630, + "Ĩ": 228, + "Ĩµ": 9999, + "Ĩĵ": 28500, + "Ĩĵê³ł": 47441, + "ĩ": 229, + "Ī": 230, + "ά": 20435, + "άë": 48458, + "Īë": 2196, + "Ī를": 31567, + "Īë§Į": 30962, + "Īë¬": 5520, + "Ī무": 6438, + "Ī무ë": 27532, + "Ī문": 35604, + "ĪëĤĺ": 19505, + "ĪëĦ¤": 39510, + "Īëįĺ": 13461, + "ĪëıĦ": 22616, + "ī": 231, + "īìŀ¥": 14547, + "Ĭ": 232, + "Ĭ¤": 19426, + "Ĭ¨": 21588, + "Ĭ¸": 21830, + "Ĭ¸ë": 28699, + "ĭ": 233, + "Į": 234, + "Įë": 2457, + "Į를": 29039, + "Įëį°": 50158, + "ĮëıĦ": 33723, + "Įëĵł": 47353, + "Į룬": 39530, + "ĮĢ": 3638, + "ĮĢë": 8405, + "ĮĢë¡ľ": 15527, + "ĮĢ를": 49946, + "į": 235, + "į¨": 18304, + "į°": 2336, + "į¼": 21709, + "įãĥ«": 38518, + "įëĭĪëĭ¤": 27169, + "įĶ": 19666, + "įĶë": 12890, + "įĶëĭĪ": 39638, + "įĶëĿ¼": 39898, + "įĶëĿ¼ê³ł": 19129, + "įĶëĿ¼ê³łìļĶ": 21261, + "įĺ": 8092, + "İ": 236, + "ı": 237, + "ı¼": 25116, + "ıĦ": 1838, + "ıĦë¡Ŀ": 19305, + "ıħ": 19079, + "ıĮ": 34242, + "ıĻ": 8309, + "ıĻìķĪ": 48608, + "IJ": 238, + "IJ×": 2660, + "IJë": 2998, + "IJë§Į": 25940, + "IJë©´": 32324, + "IJëį°": 43429, + "IJëıĦ": 22983, + "IJIJ": 35606, + "IJĺ": 10487, + "IJĺëĬĶ": 43653, + "IJľ": 14987, + "ij": 239, + "ij¥": 42815, + "ij×": 4349, + "ij׾": 23602, + "ijIJ": 15150, + "ijIJë": 45193, + "ijľ": 12139, + "Ĵ": 240, + "ĵ": 241, + "ĵ¤": 2403, + "ĵ¤ëıĦ": 46313, + "ĵ¤ìĿ´": 8109, + "ĵ¤ìĿĢ": 22571, + "ĵ¤ìĿĦ": 24968, + "ĵ¤ìĿĺ": 29990, + "ĵ¯": 39358, + "ĵ±": 22205, + "ĵľ": 7087, + "ĵľë": 6300, + "ĵľë¥¼": 43871, + "ĵľë¦´": 29512, + "ĵľë¦´ê²ĮìļĶ": 41413, + "ĵľëĬĶ": 29609, + "ĵĿ": 26152, + "ĵł": 6646, + "Ķ": 242, + "Ķ©": 34521, + "Ķê°Ģ": 13833, + "Ķë": 3261, + "Ķë¡ľ": 18839, + "ĶëıĦ": 40720, + "ĶìĿ´": 17793, + "ĶìĿ´íģ¬": 29819, + "ĶìĿ´íģ¬ìĹħ": 30952, + "ĶĶ": 9520, + "ĶĶìĸ´": 40803, + "ĶĶìĺ¤": 49117, + "ķ": 243, + "ķ¼": 6612, + "ķĦ": 33889, + "ķĮ": 14922, + "ĸ": 244, + "ĸ´": 25982, + "ĸ×Ķ": 7889, + "ĸìĹIJ": 28216, + "ĸĪ": 4341, + "Ĺ": 245, + "ĹIJ": 8926, + "ĺ": 246, + "ĺë": 1894, + "ĺ를": 18855, + "ĺëıĦ": 8226, + "Ļ": 247, + "ĻĢ": 37404, + "ļ": 248, + "ļ©": 22621, + "ļĶ": 1206, + "Ľ": 249, + "Ľi": 8971, + "ľ": 250, + "ľ¨": 34057, + "ľë": 2163, + "ľë¡ľ": 15636, + "ľë¥¼": 20087, + "ľë©´": 34092, + "ľëĮĢ": 36718, + "ľëıĦ": 17099, + "ľëıĻ": 38667, + "ľł": 27144, + "Ŀ": 251, + "Ŀi": 10677, + "Ŀ¤": 35156, + "Ŀ¼": 2742, + "Ŀ¼ê³ł": 6954, + "Ŀ¼ë": 9316, + "Ŀ¼ë©´": 32713, + "Ŀ¼ëĬĶ": 13182, + "Ŀ¼ëıĦ": 25574, + "Ŀ¼ìĦľ": 48367, + "Ŀ½": 20523, + "ŀ": 252, + "ŀ¨": 43369, + "ŀ×": 3376, + "ŀר": 18520, + "ŀת": 40339, + "ŀĢ": 18781, + "ŀĪ": 5387, + "ŀĪë": 36329, + "ŀĪ볤": 50073, + "ŀĮ": 22855, + "ŀIJ": 15876, + "ŀIJë": 45863, + "ŀij": 9143, + "ŀĸ": 47812, + "ŀĺ": 4241, + "ŀĺë": 14387, + "ŀĺëıĦ": 38371, + "ŀĻ": 34284, + "ŀľë": 27273, + "ŀľë§Į": 46034, + "Ł": 253, + "٬": 6235, + "٬ë": 7871, + "٬ìļ´": 40537, + "ٰ": 7436, + "ټ": 15375, + "ٽ": 21498, + "Łģ": 38067, + "Łī": 24502, + "ł": 254, + "ł¤": 5743, + "ł¤ê³ł": 18914, + "ł¤ë": 19479, + "ł¤ìĦľ": 40673, + "ł¤ìļĶ": 45410, + "ł¥": 11770, + "ł¨": 26627, + "łµ": 39469, + "ł¸": 14264, + "ł¹": 25565, + "ł×ķ": 32219, + "ł×Ĺ": 21418, + "ł×Ĺ׳×ķ": 22152, + "ł×Ļ": 10361, + "łë": 4673, + "łë¥¼": 39988, + "łĩ": 3921, + "łĩê²Į": 4591, + "łĪ": 10417, + "łĪë": 29494, + "łĪìĿ´": 38845, + "łĮ": 37422, + "łľ": 7589, + "Ń": 255, + "Ńī": 43962, + "ŃIJ": 4381 +} diff --git a/Assets/Inference Engine/Speech Recognition/Data/vocab.json.meta b/Assets/Inference Engine/Speech Recognition/Data/vocab.json.meta new file mode 100644 index 0000000..584f994 --- /dev/null +++ b/Assets/Inference Engine/Speech Recognition/Data/vocab.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8209a2f7b72bee543b73c1c78fa11b5d +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Inference Engine/Speech Recognition/Models.meta b/Assets/Inference Engine/Speech Recognition/Models.meta new file mode 100644 index 0000000..96da38c --- /dev/null +++ b/Assets/Inference Engine/Speech Recognition/Models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2b61dc858ece2b045bcf7c99102111fb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Inference Engine/Speech Recognition/Models/decoder_model.7z b/Assets/Inference Engine/Speech Recognition/Models/decoder_model.7z new file mode 100644 index 0000000..f78b7d1 Binary files /dev/null and b/Assets/Inference Engine/Speech Recognition/Models/decoder_model.7z differ diff --git a/Assets/Inference Engine/Speech Recognition/Models/decoder_model.onnx.meta b/Assets/Inference Engine/Speech Recognition/Models/decoder_model.onnx.meta new file mode 100644 index 0000000..01b73fd --- /dev/null +++ b/Assets/Inference Engine/Speech Recognition/Models/decoder_model.onnx.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: 2e23de7ecde691a419c6e78c273d7789 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: f22407ba6b4157b4a93d0a670bd3dd57, type: 3} + dynamicDimConfigs: + - name: batch_size + size: -1 + - name: decoder_sequence_length + size: -1 + - name: encoder_sequence_length / 2 + size: -1 diff --git a/Assets/Inference Engine/Speech Recognition/Models/decoder_with_past_model.7z b/Assets/Inference Engine/Speech Recognition/Models/decoder_with_past_model.7z new file mode 100644 index 0000000..8305971 Binary files /dev/null and b/Assets/Inference Engine/Speech Recognition/Models/decoder_with_past_model.7z differ diff --git a/Assets/Inference Engine/Speech Recognition/Models/decoder_with_past_model.onnx.meta b/Assets/Inference Engine/Speech Recognition/Models/decoder_with_past_model.onnx.meta new file mode 100644 index 0000000..1701451 --- /dev/null +++ b/Assets/Inference Engine/Speech Recognition/Models/decoder_with_past_model.onnx.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: f1a25d07f8e4ab6428aa0cdce558ce86 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: f22407ba6b4157b4a93d0a670bd3dd57, type: 3} + dynamicDimConfigs: + - name: batch_size + size: -1 + - name: past_decoder_sequence_length + size: -1 + - name: encoder_sequence_length_out + size: -1 diff --git a/Assets/Inference Engine/Speech Recognition/Models/encoder_model.onnx b/Assets/Inference Engine/Speech Recognition/Models/encoder_model.onnx new file mode 100644 index 0000000..9990c2b Binary files /dev/null and b/Assets/Inference Engine/Speech Recognition/Models/encoder_model.onnx differ diff --git a/Assets/Inference Engine/Speech Recognition/Models/encoder_model.onnx.meta b/Assets/Inference Engine/Speech Recognition/Models/encoder_model.onnx.meta new file mode 100644 index 0000000..5602cf7 --- /dev/null +++ b/Assets/Inference Engine/Speech Recognition/Models/encoder_model.onnx.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 0cad65409c04e4349b7f28008624037c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: f22407ba6b4157b4a93d0a670bd3dd57, type: 3} + dynamicDimConfigs: + - name: batch_size + size: -1 diff --git a/Assets/Inference Engine/Speech Recognition/Models/logmel_spectrogram.onnx b/Assets/Inference Engine/Speech Recognition/Models/logmel_spectrogram.onnx new file mode 100644 index 0000000..5495a08 Binary files /dev/null and b/Assets/Inference Engine/Speech Recognition/Models/logmel_spectrogram.onnx differ diff --git a/Assets/Inference Engine/Speech Recognition/Models/logmel_spectrogram.onnx.meta b/Assets/Inference Engine/Speech Recognition/Models/logmel_spectrogram.onnx.meta new file mode 100644 index 0000000..7adf01c --- /dev/null +++ b/Assets/Inference Engine/Speech Recognition/Models/logmel_spectrogram.onnx.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 0d1f59069765c2d4697a9ab2a6269f63 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: f22407ba6b4157b4a93d0a670bd3dd57, type: 3} + dynamicDimConfigs: [] diff --git a/Assets/Inference Engine/Speech Recognition/Notes.txt b/Assets/Inference Engine/Speech Recognition/Notes.txt new file mode 100644 index 0000000..613b93a --- /dev/null +++ b/Assets/Inference Engine/Speech Recognition/Notes.txt @@ -0,0 +1,110 @@ +Mal documenté par Unity, les tokens spéciaux sont référencés en ligne, sur la page Hugging Face de OpenAI pour Whisper tiny … + +En voici certains, surtout pour les langues : + + "<|af|>": 50327, + "<|am|>": 50334, + "<|ar|>": 50272, + "<|as|>": 50350, + "<|az|>": 50304, + "<|ba|>": 50355, + "<|be|>": 50330, + "<|bg|>": 50292, + "<|bn|>": 50302, + "<|bo|>": 50347, + "<|br|>": 50309, + "<|bs|>": 50315, + "<|ca|>": 50270, + "<|cs|>": 50283, + "<|cy|>": 50297, + "<|da|>": 50285, + "<|de|>": 50261, + "<|el|>": 50281, + "<|en|>": 50259, + "<|es|>": 50262, + "<|et|>": 50307, + "<|eu|>": 50310, + "<|fa|>": 50300, + "<|fi|>": 50277, + "<|fo|>": 50338, + "<|fr|>": 50265, + "<|gl|>": 50319, + "<|gu|>": 50333, + "<|haw|>": 50352, + "<|ha|>": 50354, + "<|he|>": 50279, + "<|hi|>": 50276, + "<|hr|>": 50291, + "<|ht|>": 50339, + "<|hu|>": 50286, + "<|hy|>": 50312, + "<|id|>": 50275, + "<|is|>": 50311, + "<|it|>": 50274, + "<|ja|>": 50266, + "<|jw|>": 50356, + "<|ka|>": 50329, + "<|kk|>": 50316, + "<|km|>": 50323, + "<|kn|>": 50306, + "<|ko|>": 50264, + "<|la|>": 50294, + "<|lb|>": 50345, + "<|ln|>": 50353, + "<|lo|>": 50336, + "<|lt|>": 50293, + "<|lv|>": 50301, + "<|mg|>": 50349, + "<|mi|>": 50295, + "<|mk|>": 50308, + "<|ml|>": 50296, + "<|mn|>": 50314, + "<|mr|>": 50320, + "<|ms|>": 50282, + "<|mt|>": 50343, + "<|my|>": 50346, + "<|ne|>": 50313, + "<|nl|>": 50271, + "<|nn|>": 50342, + "<|nocaptions|>": 50362, + "<|notimestamps|>": 50363, + "<|no|>": 50288, + "<|oc|>": 50328, + "<|pa|>": 50321, + "<|pl|>": 50269, + "<|ps|>": 50340, + "<|pt|>": 50267, + "<|ro|>": 50284, + "<|ru|>": 50263, + "<|sa|>": 50344, + "<|sd|>": 50332, + "<|si|>": 50322, + "<|sk|>": 50298, + "<|sl|>": 50305, + "<|sn|>": 50324, + "<|so|>": 50326, + "<|sq|>": 50317, + "<|sr|>": 50303, + "<|startoflm|>": 50360, + "<|startofprev|>": 50361, + "<|startoftranscript|>": 50258, + "<|su|>": 50357, + "<|sv|>": 50273, + "<|sw|>": 50318, + "<|ta|>": 50287, + "<|te|>": 50299, + "<|tg|>": 50331, + "<|th|>": 50289, + "<|tk|>": 50341, + "<|tl|>": 50348, + "<|transcribe|>": 50359, + "<|translate|>": 50358, + "<|tr|>": 50268, + "<|tt|>": 50351, + "<|uk|>": 50280, + "<|ur|>": 50290, + "<|uz|>": 50337, + "<|vi|>": 50278, + "<|yi|>": 50335, + "<|yo|>": 50325, + "<|zh|>": 50260 \ No newline at end of file diff --git a/Assets/Inference Engine/Speech Recognition/Notes.txt.meta b/Assets/Inference Engine/Speech Recognition/Notes.txt.meta new file mode 100644 index 0000000..5286a02 --- /dev/null +++ b/Assets/Inference Engine/Speech Recognition/Notes.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bd6b157423527f045ad82bc924f37aea +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/InputSystem_Actions.inputactions b/Assets/InputSystem_Actions.inputactions new file mode 100644 index 0000000..1a12cb9 --- /dev/null +++ b/Assets/InputSystem_Actions.inputactions @@ -0,0 +1,1057 @@ +{ + "name": "InputSystem_Actions", + "maps": [ + { + "name": "Player", + "id": "df70fa95-8a34-4494-b137-73ab6b9c7d37", + "actions": [ + { + "name": "Move", + "type": "Value", + "id": "351f2ccd-1f9f-44bf-9bec-d62ac5c5f408", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "", + "initialStateCheck": true + }, + { + "name": "Look", + "type": "Value", + "id": "6b444451-8a00-4d00-a97e-f47457f736a8", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "", + "initialStateCheck": true + }, + { + "name": "Attack", + "type": "Button", + "id": "6c2ab1b8-8984-453a-af3d-a3c78ae1679a", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Interact", + "type": "Button", + "id": "852140f2-7766-474d-8707-702459ba45f3", + "expectedControlType": "Button", + "processors": "", + "interactions": "Hold", + "initialStateCheck": false + }, + { + "name": "Crouch", + "type": "Button", + "id": "27c5f898-bc57-4ee1-8800-db469aca5fe3", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Jump", + "type": "Button", + "id": "f1ba0d36-48eb-4cd5-b651-1c94a6531f70", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Previous", + "type": "Button", + "id": "2776c80d-3c14-4091-8c56-d04ced07a2b0", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Next", + "type": "Button", + "id": "b7230bb6-fc9b-4f52-8b25-f5e19cb2c2ba", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Sprint", + "type": "Button", + "id": "641cd816-40e6-41b4-8c3d-04687c349290", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + } + ], + "bindings": [ + { + "name": "", + "id": "978bfe49-cc26-4a3d-ab7b-7d7a29327403", + "path": "/leftStick", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Move", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "WASD", + "id": "00ca640b-d935-4593-8157-c05846ea39b3", + "path": "Dpad", + "interactions": "", + "processors": "", + "groups": "", + "action": "Move", + "isComposite": true, + "isPartOfComposite": false + }, + { + "name": "up", + "id": "e2062cb9-1b15-46a2-838c-2f8d72a0bdd9", + "path": "/w", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "up", + "id": "8180e8bd-4097-4f4e-ab88-4523101a6ce9", + "path": "/upArrow", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "320bffee-a40b-4347-ac70-c210eb8bc73a", + "path": "/s", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "1c5327b5-f71c-4f60-99c7-4e737386f1d1", + "path": "/downArrow", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "d2581a9b-1d11-4566-b27d-b92aff5fabbc", + "path": "/a", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "2e46982e-44cc-431b-9f0b-c11910bf467a", + "path": "/leftArrow", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "fcfe95b8-67b9-4526-84b5-5d0bc98d6400", + "path": "/d", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "77bff152-3580-4b21-b6de-dcd0c7e41164", + "path": "/rightArrow", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "", + "id": "1635d3fe-58b6-4ba9-a4e2-f4b964f6b5c8", + "path": "/{Primary2DAxis}", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "Move", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "3ea4d645-4504-4529-b061-ab81934c3752", + "path": "/stick", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Move", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "c1f7a91b-d0fd-4a62-997e-7fb9b69bf235", + "path": "/rightStick", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Look", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "8c8e490b-c610-4785-884f-f04217b23ca4", + "path": "/delta", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse;Touch", + "action": "Look", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "3e5f5442-8668-4b27-a940-df99bad7e831", + "path": "/{Hatswitch}", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Look", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "143bb1cd-cc10-4eca-a2f0-a3664166fe91", + "path": "/buttonWest", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "05f6913d-c316-48b2-a6bb-e225f14c7960", + "path": "/leftButton", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "886e731e-7071-4ae4-95c0-e61739dad6fd", + "path": "/primaryTouch/tap", + "interactions": "", + "processors": "", + "groups": ";Touch", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "ee3d0cd2-254e-47a7-a8cb-bc94d9658c54", + "path": "/trigger", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "8255d333-5683-4943-a58a-ccb207ff1dce", + "path": "/{PrimaryAction}", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "b3c1c7f0-bd20-4ee7-a0f1-899b24bca6d7", + "path": "/enter", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "cbac6039-9c09-46a1-b5f2-4e5124ccb5ed", + "path": "/2", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Next", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "e15ca19d-e649-4852-97d5-7fe8ccc44e94", + "path": "/dpad/right", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Next", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "f2e9ba44-c423-42a7-ad56-f20975884794", + "path": "/leftShift", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Sprint", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "8cbb2f4b-a784-49cc-8d5e-c010b8c7f4e6", + "path": "/leftStickPress", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Sprint", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "d8bf24bf-3f2f-4160-a97c-38ec1eb520ba", + "path": "/trigger", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "Sprint", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "eb40bb66-4559-4dfa-9a2f-820438abb426", + "path": "/space", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Jump", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "daba33a1-ad0c-4742-a909-43ad1cdfbeb6", + "path": "/buttonSouth", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Jump", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "603f3daf-40bd-4854-8724-93e8017f59e3", + "path": "/secondaryButton", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "Jump", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "1534dc16-a6aa-499d-9c3a-22b47347b52a", + "path": "/1", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Previous", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "25060bbd-a3a6-476e-8fba-45ae484aad05", + "path": "/dpad/left", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Previous", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "1c04ea5f-b012-41d1-a6f7-02e963b52893", + "path": "/e", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Interact", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "b3f66d0b-7751-423f-908b-a11c5bd95930", + "path": "/buttonNorth", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Interact", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "4f4649ac-64a8-4a73-af11-b3faef356a4d", + "path": "/buttonEast", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Crouch", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "36e52cba-0905-478e-a818-f4bfcb9f3b9a", + "path": "/c", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Crouch", + "isComposite": false, + "isPartOfComposite": false + } + ] + }, + { + "name": "UI", + "id": "272f6d14-89ba-496f-b7ff-215263d3219f", + "actions": [ + { + "name": "Navigate", + "type": "PassThrough", + "id": "c95b2375-e6d9-4b88-9c4c-c5e76515df4b", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Submit", + "type": "Button", + "id": "7607c7b6-cd76-4816-beef-bd0341cfe950", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Cancel", + "type": "Button", + "id": "15cef263-9014-4fd5-94d9-4e4a6234a6ef", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "Point", + "type": "PassThrough", + "id": "32b35790-4ed0-4e9a-aa41-69ac6d629449", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "", + "initialStateCheck": true + }, + { + "name": "Click", + "type": "PassThrough", + "id": "3c7022bf-7922-4f7c-a998-c437916075ad", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": true + }, + { + "name": "RightClick", + "type": "PassThrough", + "id": "44b200b1-1557-4083-816c-b22cbdf77ddf", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "MiddleClick", + "type": "PassThrough", + "id": "dad70c86-b58c-4b17-88ad-f5e53adf419e", + "expectedControlType": "Button", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "ScrollWheel", + "type": "PassThrough", + "id": "0489e84a-4833-4c40-bfae-cea84b696689", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "TrackedDevicePosition", + "type": "PassThrough", + "id": "24908448-c609-4bc3-a128-ea258674378a", + "expectedControlType": "Vector3", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "TrackedDeviceOrientation", + "type": "PassThrough", + "id": "9caa3d8a-6b2f-4e8e-8bad-6ede561bd9be", + "expectedControlType": "Quaternion", + "processors": "", + "interactions": "", + "initialStateCheck": false + } + ], + "bindings": [ + { + "name": "Gamepad", + "id": "809f371f-c5e2-4e7a-83a1-d867598f40dd", + "path": "2DVector", + "interactions": "", + "processors": "", + "groups": "", + "action": "Navigate", + "isComposite": true, + "isPartOfComposite": false + }, + { + "name": "up", + "id": "14a5d6e8-4aaf-4119-a9ef-34b8c2c548bf", + "path": "/leftStick/up", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "up", + "id": "9144cbe6-05e1-4687-a6d7-24f99d23dd81", + "path": "/rightStick/up", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "2db08d65-c5fb-421b-983f-c71163608d67", + "path": "/leftStick/down", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "58748904-2ea9-4a80-8579-b500e6a76df8", + "path": "/rightStick/down", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "8ba04515-75aa-45de-966d-393d9bbd1c14", + "path": "/leftStick/left", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "712e721c-bdfb-4b23-a86c-a0d9fcfea921", + "path": "/rightStick/left", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "fcd248ae-a788-4676-a12e-f4d81205600b", + "path": "/leftStick/right", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "1f04d9bc-c50b-41a1-bfcc-afb75475ec20", + "path": "/rightStick/right", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "", + "id": "fb8277d4-c5cd-4663-9dc7-ee3f0b506d90", + "path": "/dpad", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "Joystick", + "id": "e25d9774-381c-4a61-b47c-7b6b299ad9f9", + "path": "2DVector", + "interactions": "", + "processors": "", + "groups": "", + "action": "Navigate", + "isComposite": true, + "isPartOfComposite": false + }, + { + "name": "up", + "id": "3db53b26-6601-41be-9887-63ac74e79d19", + "path": "/stick/up", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "0cb3e13e-3d90-4178-8ae6-d9c5501d653f", + "path": "/stick/down", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "0392d399-f6dd-4c82-8062-c1e9c0d34835", + "path": "/stick/left", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "942a66d9-d42f-43d6-8d70-ecb4ba5363bc", + "path": "/stick/right", + "interactions": "", + "processors": "", + "groups": "Joystick", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "Keyboard", + "id": "ff527021-f211-4c02-933e-5976594c46ed", + "path": "2DVector", + "interactions": "", + "processors": "", + "groups": "", + "action": "Navigate", + "isComposite": true, + "isPartOfComposite": false + }, + { + "name": "up", + "id": "563fbfdd-0f09-408d-aa75-8642c4f08ef0", + "path": "/w", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "up", + "id": "eb480147-c587-4a33-85ed-eb0ab9942c43", + "path": "/upArrow", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "2bf42165-60bc-42ca-8072-8c13ab40239b", + "path": "/s", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "85d264ad-e0a0-4565-b7ff-1a37edde51ac", + "path": "/downArrow", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "74214943-c580-44e4-98eb-ad7eebe17902", + "path": "/a", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "cea9b045-a000-445b-95b8-0c171af70a3b", + "path": "/leftArrow", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "8607c725-d935-4808-84b1-8354e29bab63", + "path": "/d", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "4cda81dc-9edd-4e03-9d7c-a71a14345d0b", + "path": "/rightArrow", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Navigate", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "", + "id": "9e92bb26-7e3b-4ec4-b06b-3c8f8e498ddc", + "path": "*/{Submit}", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse;Gamepad;Touch;Joystick;XR", + "action": "Submit", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "82627dcc-3b13-4ba9-841d-e4b746d6553e", + "path": "*/{Cancel}", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse;Gamepad;Touch;Joystick;XR", + "action": "Cancel", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "c52c8e0b-8179-41d3-b8a1-d149033bbe86", + "path": "/position", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Point", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "e1394cbc-336e-44ce-9ea8-6007ed6193f7", + "path": "/position", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "Point", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "5693e57a-238a-46ed-b5ae-e64e6e574302", + "path": "/touch*/position", + "interactions": "", + "processors": "", + "groups": "Touch", + "action": "Point", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "4faf7dc9-b979-4210-aa8c-e808e1ef89f5", + "path": "/leftButton", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Click", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "8d66d5ba-88d7-48e6-b1cd-198bbfef7ace", + "path": "/tip", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Click", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "47c2a644-3ebc-4dae-a106-589b7ca75b59", + "path": "/touch*/press", + "interactions": "", + "processors": "", + "groups": "Touch", + "action": "Click", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "bb9e6b34-44bf-4381-ac63-5aa15d19f677", + "path": "/trigger", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "Click", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "38c99815-14ea-4617-8627-164d27641299", + "path": "/scroll", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "ScrollWheel", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "4c191405-5738-4d4b-a523-c6a301dbf754", + "path": "/rightButton", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "RightClick", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "24066f69-da47-44f3-a07e-0015fb02eb2e", + "path": "/middleButton", + "interactions": "", + "processors": "", + "groups": "Keyboard&Mouse", + "action": "MiddleClick", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "7236c0d9-6ca3-47cf-a6ee-a97f5b59ea77", + "path": "/devicePosition", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "TrackedDevicePosition", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "23e01e3a-f935-4948-8d8b-9bcac77714fb", + "path": "/deviceRotation", + "interactions": "", + "processors": "", + "groups": "XR", + "action": "TrackedDeviceOrientation", + "isComposite": false, + "isPartOfComposite": false + } + ] + } + ], + "controlSchemes": [ + { + "name": "Keyboard&Mouse", + "bindingGroup": "Keyboard&Mouse", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + }, + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + }, + { + "name": "Gamepad", + "bindingGroup": "Gamepad", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + }, + { + "name": "Touch", + "bindingGroup": "Touch", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + }, + { + "name": "Joystick", + "bindingGroup": "Joystick", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + }, + { + "name": "XR", + "bindingGroup": "XR", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + } + ] +} \ No newline at end of file diff --git a/Assets/InputSystem_Actions.inputactions.meta b/Assets/InputSystem_Actions.inputactions.meta new file mode 100644 index 0000000..6b38b04 --- /dev/null +++ b/Assets/InputSystem_Actions.inputactions.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 052faaac586de48259a63d0c4782560b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 8404be70184654265930450def6a9037, type: 3} + generateWrapperCode: 0 + wrapperCodePath: + wrapperClassName: + wrapperCodeNamespace: diff --git a/Assets/MetaTTSWit.asset b/Assets/MetaTTSWit.asset new file mode 100644 index 0000000..b83c951 --- /dev/null +++ b/Assets/MetaTTSWit.asset @@ -0,0 +1,574 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ae5a46bda3295124c99b0e6537ac7252, type: 3} + m_Name: MetaTTSWit + m_EditorClassIdentifier: + _clientAccessToken: DMQVQTCK2OBB6S7H2GZJE22HNGWSOOV4 + editorVersionTag: + buildVersionTag: + _appInfo: + name: interface_v4 + id: 1385662526600280 + lang: en + isPrivate: 1 + createdAt: 2025-11-13T07:18:00-0800 + trainingStatus: 1 + lastTrainDuration: 0 + lastTrainedAt: 1969-12-31T16:00:00-0800 + nextTrainAt: 1969-12-31T16:00:00-0800 + intents: [] + entities: [] + traits: [] + versionTags: [] + voices: + - name: wit$British Butler + locale: en_GB + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Cael + locale: en_US + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Cam + locale: en_US + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Carl + locale: en_US + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Cartoon Baby + locale: en_US + gender: nonbinary + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Cartoon Kid + locale: en_US + gender: female + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Cartoon Villain + locale: en_US + gender: female + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Charlie + locale: en_US + gender: male + styles: + - default + - soft + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Cockney Accent + locale: en_GB + gender: nonbinary + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Cody + locale: en_US + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Colin + locale: en_CA + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Connor + locale: en_US + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Cooper + locale: en_US + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Disaffected + locale: en_US + gender: female + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Hollywood + locale: en_US + gender: female + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Kenyan Accent + locale: en_US + gender: female + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Overconfident + locale: en_US + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Pirate + locale: en_GB + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Prospector + locale: en_US + gender: male + styles: + - default + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Railey + locale: en_US + gender: female + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Rebecca + locale: en_US + gender: female + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Remi + locale: en_US + gender: female + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Rosie + locale: en_CA + gender: female + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Rubie + locale: en_US + gender: female + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Southern Accent + locale: en_US + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Surfer + locale: en_US + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Trendy + locale: en_US + gender: female + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Vampire + locale: en_US + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Whimsical + locale: en_GB + gender: female + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + - name: wit$Wizard + locale: en_GB + gender: male + styles: + - default + - soft + - formal + - fast + - projected + supported_features: + - style + - pitch + - speed + - sfx + - viseme_events + - phoneme_events + - word_events + _configData: + - {fileID: 6052800371826241204} + _configurationId: ca7d8a15-a220-43d0-bddb-fccb4dd26924 + _requestType: 0 + _requestTimeoutMs: 10000 + endpointConfiguration: + _uriScheme: + _authority: + _port: 0 + _witApiVersion: + _message: + _speech: + _dictation: + _synthesize: + _event: + _converse: + isDemoOnly: 0 + useIntentAttributes: 1 + useConduit: 1 + _manifestLocalPath: ConduitManifest-8ecba52e-b270-4720-ad30-88f7eacc9908.json + excludedAssemblies: + - Oculus.Voice.Demo, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + - Meta.WitAi.Samples, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + relaxedResolution: 0 +--- !u!114 &6052800371826241204 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d1c2918ba0e7451694416d42d69e0944, type: 3} + m_Name: WitComposerData + m_EditorClassIdentifier: + canvases: [] diff --git a/Assets/MetaTTSWit.asset.meta b/Assets/MetaTTSWit.asset.meta new file mode 100644 index 0000000..3621340 --- /dev/null +++ b/Assets/MetaTTSWit.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7d01b1f05a37305448c144e3c27c54fd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MetaXR.meta b/Assets/MetaXR.meta new file mode 100644 index 0000000..6d07b74 --- /dev/null +++ b/Assets/MetaXR.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f9b6dfd831600134dae4b286572e05b6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MetaXR/MetaXRProjectSettings.asset b/Assets/MetaXR/MetaXRProjectSettings.asset new file mode 100644 index 0000000..4ebbf19 --- /dev/null +++ b/Assets/MetaXR/MetaXRProjectSettings.asset @@ -0,0 +1,24 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0bfde92e0a2190c4ca32f6fb0a0c73ce, type: 3} + m_Name: MetaXRProjectSettings + m_EditorClassIdentifier: + boolProperties: + keys: + - Meta.XR.SDK.UsageSettings.UsesProjectSetupTool + - Meta.XR.SDK.UsageSettings.UsesBuildingBlocks + - Meta.XR.SDK.UsageSettings.UsesImmersiveDebugger + - Meta.XR.SDK.UsageSettings.UsesXRSimulator + values: 01010101 + intProperties: + keys: [] + values: diff --git a/Assets/MetaXR/MetaXRProjectSettings.asset.meta b/Assets/MetaXR/MetaXRProjectSettings.asset.meta new file mode 100644 index 0000000..4fe9cb2 --- /dev/null +++ b/Assets/MetaXR/MetaXRProjectSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b380710ff79965b479e2018e9ab1ec30 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models.meta b/Assets/Models.meta new file mode 100644 index 0000000..9085417 --- /dev/null +++ b/Assets/Models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f986bb529f2284c49b4df99d89385944 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG.meta b/Assets/Models/Garden - SMG.meta new file mode 100644 index 0000000..2b35f78 --- /dev/null +++ b/Assets/Models/Garden - SMG.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1616687f885cb2d4984ab32efed216af +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/AstroDomeTower.dae b/Assets/Models/Garden - SMG/AstroDomeTower.dae new file mode 100644 index 0000000..3baee75 --- /dev/null +++ b/Assets/Models/Garden - SMG/AstroDomeTower.dae @@ -0,0 +1,929 @@ + + + + + J3D Ripoff Exporter + + 2023-06-09T15:34:21.080Z + 2023-06-09T15:34:21.080Z + + Y_UP + + + + MAP0048.png + + + HighLandCloud01S.png + + + Mountain.png + + + Ground00.png + + + Grass0009k.png + + + yellowhanataba.png + + + whitetaba.png + + + parplehanataba.png + + + puffleaf.png + + + HighLandCloud02L.png + + + MAP0000k.png + + + + + + + + tex10 + + + + + surface0 + + + + + + + + + + + + + + + + tex9 + + + + + surface1 + + + + + + + + + + + + + + + + tex8 + + + + + surface2 + + + + + + + + + + + + + + + + tex7 + + + + + surface3 + + + + + + + + + + + + + + + + tex6 + + + + + surface4 + + + + + + + + + + + + + + + + tex5 + + + + + surface5 + + + + + + + + + + + + + + + + tex4 + + + + + surface6 + + + + + + + + + + + + + + + + tex3 + + + + + surface7 + + + + + + + + + + + + + + + + tex2 + + + + + surface8 + + + + + + + + + + + + + + + + tex1 + + + + + surface9 + + + + + + + + + + + + + + + + tex0 + + + + + surface10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -262 5 -949 -262 4 -947 -258 18 -952 -258 18 -951 -255 26 -954 -255 25 -953 -251 31 -955 -251 30 -955 -246 36 -957 -247 35 -958 -242 39 -959 -243 38 -960 -237 40 -961 -237 40 -963 -231 39 -964 -231 39 -965 -226 38 -967 -226 39 -968 -260 5 -947 -263 4 -949 -259 18 -953 -261 18 -955 -258 25 -957 -260 25 -959 -257 31 -962 -259 32 -963 -256 36 -968 -257 37 -968 -254 40 -973 -254 41 -973 -251 42 -979 -251 43 -978 -247 43 -984 -247 44 -983 -243 43 -989 -242 44 -988 -275 2 -961 -274 1 -960 -273 14 -963 -272 14 -962 -270 21 -964 -270 20 -964 -266 27 -966 -267 25 -967 -263 31 -968 -263 30 -969 -258 34 -971 -259 33 -972 -254 35 -974 -255 35 -975 -250 35 -977 -250 35 -978 -246 34 -980 -246 35 -981 -948 2 -35 -947 1 -34 -947 14 -37 -946 13 -37 -945 21 -39 -944 20 -39 -942 26 -41 -942 25 -42 -939 30 -45 -940 30 -46 -936 33 -49 -937 33 -50 -932 35 -53 -934 35 -54 -929 35 -57 -930 35 -58 -926 34 -61 -926 34 -62 -894 5 20 -895 5 22 -890 19 18 -890 18 20 -886 26 19 -886 25 19 -882 32 19 -882 31 18 -877 36 19 -877 35 18 -872 40 19 -872 39 17 -866 41 19 -866 40 17 -860 40 18 -860 40 17 -854 38 18 -854 39 17 -894 8 -225 -896 7 -225 -891 21 -222 -892 21 -221 -889 28 -218 -890 28 -219 -888 34 -214 -887 33 -215 -886 39 -210 -885 38 -211 -883 42 -206 -882 41 -207 -881 43 -201 -879 43 -202 -878 42 -195 -876 42 -196 -875 41 -190 -874 42 -191 -61 -7 -991 -60 -8 -990 -61 6 -994 -59 5 -993 -58 13 -996 -58 12 -995 -55 20 -998 -56 19 -998 -53 25 -1001 -54 24 -1002 -50 29 -1004 -51 28 -1005 -47 30 -1009 -48 30 -1010 -43 30 -1014 -44 31 -1015 -40 30 -1019 -41 31 -1020 -59 -7 -990 -62 -8 -991 -64 5 -995 -63 13 -997 -66 13 -998 -65 20 -1001 -67 20 -1001 -66 25 -1006 -67 26 -1005 -67 29 -1011 -68 31 -1010 -68 33 -1017 -68 34 -1016 -67 35 -1023 -67 36 -1022 -66 36 -1029 -65 37 -1029 818 -2 352 820 -2 352 817 12 349 818 11 349 816 19 346 817 18 346 816 25 342 815 24 343 814 30 338 813 29 339 812 34 334 811 33 335 809 35 330 808 35 330 806 35 324 805 36 325 802 35 320 801 35 320 820 -2 351 818 -2 353 816 12 350 815 11 353 813 19 350 812 19 352 810 26 350 809 27 352 805 32 349 805 33 350 800 36 348 800 38 349 795 40 346 795 41 346 789 42 343 790 43 343 784 43 340 785 44 339 807 -3 367 808 -4 366 808 9 365 808 8 364 807 16 363 807 15 363 806 22 359 805 21 360 804 26 356 803 26 357 802 30 353 800 30 354 798 32 349 797 32 350 795 33 345 794 33 346 791 33 341 668 0 634 670 0 633 663 13 633 664 13 631 660 20 630 660 19 630 656 26 627 656 25 628 652 31 625 652 30 626 648 33 622 647 33 624 643 34 619 642 34 620 638 33 616 637 33 617 633 32 613 632 32 613 669 0 632 669 0 635 662 13 634 662 13 636 658 20 635 658 20 638 653 26 637 654 26 639 648 31 638 648 32 640 642 34 640 642 35 640 636 36 640 636 37 640 629 37 640 630 38 639 623 37 639 623 38 638 665 -2 651 666 -3 650 662 10 651 662 9 649 659 16 649 659 15 649 656 21 647 655 20 647 651 25 645 651 24 646 647 28 643 646 27 644 642 29 641 641 29 642 637 29 639 636 29 640 632 28 637 -78 -10 -996 -77 -11 -995 -78 2 -997 -77 1 -997 -76 9 -998 -76 8 -998 -74 15 -1000 -75 13 -1001 -72 19 -1004 -74 18 -1004 -70 23 -1008 -72 22 -1008 -68 25 -1012 -70 25 -1013 -66 26 -1017 -67 26 -1018 -64 26 -1022 -719 0 590 -721 -1 591 -714 12 589 -715 12 590 -710 19 590 -711 18 590 -706 25 591 -706 24 590 -701 29 592 -701 28 591 -696 32 593 -696 32 591 -691 33 594 -690 33 592 -684 32 595 -684 32 594 -679 31 596 -678 31 595 -720 0 592 -720 -1 589 -714 12 588 -715 11 585 -711 19 585 -712 19 582 -707 25 581 -708 25 580 -703 29 578 -704 30 577 -698 33 574 -698 34 574 -692 35 571 -692 36 572 -686 36 569 -686 37 570 -680 36 568 -680 36 569 -723 -3 572 -723 -4 574 -720 8 572 -720 7 573 -717 15 573 -717 14 572 -713 20 573 -713 19 572 -708 24 574 -708 23 572 -703 27 574 -703 26 572 -698 28 573 -698 28 572 -693 28 573 -692 28 572 -687 27 574 -687 27 573 -897 8 -169 -899 8 -168 -892 22 -167 -893 21 -166 -889 29 -165 -890 28 -165 -886 35 -162 -886 34 -163 -882 40 -159 -882 39 -161 -878 43 -157 -877 42 -158 -874 44 -153 -873 43 -155 -868 43 -150 -868 43 -151 -863 42 -147 -300 2 -970 -299 2 -969 -300 16 -975 -299 15 -974 -299 23 -979 -299 22 -978 -297 29 -982 -298 28 -982 -295 34 -987 -296 33 -987 -294 37 -991 -295 36 -992 -292 38 -997 -293 37 -997 -290 37 -1003 -291 37 -1003 -288 36 -1008 -289 36 -1009 893 1 -149 895 0 -150 891 15 -150 891 14 -152 889 23 -153 889 22 -153 886 29 -155 886 28 -155 882 34 -158 882 33 -156 878 37 -160 878 37 -158 873 39 -162 872 39 -160 867 39 -164 866 39 -163 861 38 -166 861 39 -165 894 1 -151 894 0 -148 891 15 -149 891 15 -147 888 23 -148 889 23 -145 885 30 -146 886 30 -144 881 36 -144 882 36 -143 876 40 -141 877 41 -141 871 43 -140 872 45 -140 865 46 -139 865 47 -140 859 47 -139 859 48 -140 894 0 -131 894 0 -132 893 13 -132 893 12 -133 891 20 -134 891 19 -134 889 25 -136 888 24 -135 885 30 -138 884 29 -136 881 34 -139 880 33 -137 876 36 -140 875 36 -139 870 36 -141 870 37 -140 865 36 -142 865 37 -141 205 2 -885 203 1 -887 203 16 -883 202 15 -884 200 23 -881 200 22 -881 197 29 -879 198 28 -878 194 34 -875 196 33 -875 192 38 -872 193 37 -871 189 40 -867 190 39 -866 186 39 -861 187 40 -861 183 39 -856 184 40 -855 202 1 -886 205 1 -886 204 16 -883 206 15 -882 205 24 -880 207 23 -880 207 30 -877 208 31 -877 208 36 -872 209 37 -873 210 41 -867 210 42 -868 210 44 -862 210 45 -862 210 46 -856 209 47 -856 209 48 -849 209 48 -850 505 9 782 506 9 784 508 19 776 509 19 777 511 25 772 511 24 773 514 29 769 513 28 769 517 32 765 516 31 764 520 34 761 519 33 760 524 33 757 522 33 756 527 31 753 526 32 752 530 29 749 530 30 749 507 9 783 505 8 783 507 19 775 505 19 775 507 25 770 505 25 770 506 29 765 505 29 765 506 32 759 505 33 760 505 34 754 505 35 754 506 35 748 506 36 748 507 35 742 508 36 742 509 33 737 509 34 737 490 7 778 491 6 779 492 17 773 493 16 774 494 22 770 494 21 770 497 26 767 497 25 766 500 29 763 499 28 762 502 30 758 501 29 758 504 30 754 503 30 753 507 29 750 506 29 749 509 27 747 508 28 746 808 0 -576 807 0 -574 813 13 -576 812 13 -575 816 21 -575 816 20 -575 820 27 -574 820 26 -574 825 31 -572 825 30 -574 830 34 -571 830 33 -573 835 35 -570 836 35 -572 841 34 -569 842 35 -570 847 33 -568 848 34 -568 808 0 -574 807 0 -576 813 13 -577 812 13 -580 816 21 -580 815 20 -583 820 27 -583 819 27 -585 824 31 -587 823 32 -588 829 35 -590 829 36 -590 835 37 -593 835 39 -592 841 38 -594 841 39 -594 847 38 -595 847 39 -595 805 -2 -593 805 -3 -592 808 10 -594 808 9 -593 811 16 -593 811 15 -593 815 22 -592 815 21 -593 819 26 -591 819 25 -593 824 29 -591 824 28 -593 829 30 -591 830 30 -592 835 30 -591 835 30 -592 840 29 -590 840 30 -591 222 1 -883 221 0 -883 221 13 -882 220 12 -882 219 20 -881 219 19 -880 216 26 -879 217 25 -878 214 31 -875 216 30 -874 213 34 -871 214 34 -870 211 36 -866 212 36 -866 209 37 -861 210 38 -861 207 37 -856 208 37 -856 -298 3 -970 -301 2 -970 -301 16 -975 -304 15 -975 -304 23 -979 -306 23 -978 -307 29 -983 -308 29 -982 -309 34 -988 -310 35 -987 -312 37 -993 -312 39 -992 -314 39 -999 -314 41 -999 -315 41 -1005 -314 42 -1005 -315 41 -1012 -315 42 -1012 -318 0 -969 -317 0 -969 -318 12 -972 -317 11 -972 -317 19 -975 -317 18 -975 -316 24 -979 -316 23 -979 -315 28 -983 -316 27 -983 -314 31 -988 -315 31 -988 -313 33 -993 -315 32 -994 -312 33 -998 -313 33 -999 -311 32 -1004 -312 32 -1004 -898 9 -167 -898 8 -170 -892 22 -168 -892 21 -171 -888 29 -170 -888 29 -172 -883 35 -171 -883 35 -173 -878 40 -173 -878 41 -174 -872 43 -174 -873 45 -175 -866 45 -175 -866 47 -174 -859 47 -174 -860 48 -173 -853 47 -173 -853 48 -172 -887 0 514 -885 -1 512 -892 12 515 -891 12 513 -896 19 514 -895 18 513 -900 25 512 -900 24 513 -905 29 511 -905 28 513 -910 32 510 -910 32 512 -915 33 509 -916 33 511 -921 32 508 -922 32 509 -927 31 507 -927 31 508 -886 0 512 -886 -1 515 -892 12 516 -891 11 518 -895 19 519 -894 19 521 -899 25 522 -898 25 524 -903 29 526 -903 30 526 -909 33 529 -908 34 529 -914 35 532 -914 36 532 -920 36 534 -920 37 533 -927 36 535 -927 36 534 -883 -3 531 -883 -4 530 -886 8 532 -886 7 531 -889 15 531 -890 14 531 -893 20 530 -894 19 531 -898 24 530 -898 23 531 -903 27 530 -903 26 532 -908 28 530 -909 28 532 -914 28 530 -914 28 531 -919 27 530 -893 6 -186 -894 5 -185 -891 18 -185 -891 17 -184 -888 25 -183 -888 24 -183 -885 30 -181 -884 29 -182 -881 34 -179 -880 33 -180 -876 37 -177 -876 37 -178 -872 39 -175 -871 38 -176 -867 39 -173 -866 39 -174 -862 38 -171 474 4 777 476 4 778 472 17 772 474 17 773 472 24 768 473 23 769 473 30 764 472 29 764 473 34 759 472 33 759 473 37 754 471 37 754 473 38 748 472 38 748 473 37 742 472 37 742 473 36 736 472 36 736 476 4 777 473 3 778 471 17 773 469 17 774 467 24 770 465 24 771 464 30 767 462 30 768 459 35 763 459 36 764 455 38 758 455 39 759 451 40 753 452 41 754 448 41 748 449 42 748 446 41 742 447 41 741 457 1 784 459 0 784 456 13 781 457 13 780 456 20 778 456 19 777 456 25 773 455 24 773 456 29 769 454 28 769 455 32 764 453 31 764 454 33 759 453 33 759 453 33 753 452 33 753 453 32 748 452 32 748 -896 8 -224 -894 7 -226 -890 21 -223 -888 21 -225 -886 28 -222 -884 28 -224 -881 34 -221 -880 35 -223 -875 39 -220 -875 40 -221 -869 42 -218 -870 44 -219 -864 45 -216 -864 46 -216 -858 46 -212 -859 47 -212 -854 46 -208 -854 47 -208 -883 5 -239 -884 4 -238 -881 17 -237 -881 16 -236 -879 24 -234 -879 23 -234 -878 29 -231 -877 28 -231 -875 34 -227 -874 33 -228 -872 37 -223 -871 36 -224 -869 38 -219 -867 38 -220 -865 38 -215 -864 38 -215 -862 37 -211 -862 38 -211 -894 5 22 -895 5 20 -890 19 17 -891 18 15 -888 26 14 -889 25 12 -885 32 10 -886 32 8 -882 37 5 -883 38 5 -877 40 1 -878 41 1 -873 42 -2 -873 44 -2 -867 43 -5 -867 45 -5 -861 44 -8 -861 44 -7 702 -1 -644 704 -2 -645 698 11 -646 699 11 -647 695 18 -649 696 17 -649 692 24 -652 692 23 -652 689 29 -656 688 28 -654 685 32 -659 684 31 -658 681 33 -663 680 33 -662 676 32 -667 675 32 -666 672 31 -671 671 31 -670 703 -1 -646 703 -2 -643 697 11 -645 696 10 -643 693 18 -644 692 18 -642 688 24 -643 688 25 -642 683 29 -643 683 30 -642 677 32 -642 677 34 -642 670 35 -643 671 36 -643 664 36 -644 665 37 -645 658 36 -646 659 37 -647 696 -4 -628 697 -5 -629 694 7 -629 694 6 -630 691 14 -631 691 13 -631 689 19 -634 688 18 -633 685 24 -636 684 23 -635 681 26 -639 680 26 -638 676 28 -642 675 28 -640 672 28 -644 671 28 -643 667 27 -647 667 28 -647 -902 2 4 -901 2 5 -899 15 3 -898 14 4 -896 22 3 -896 20 3 -892 27 3 -892 26 2 -888 31 2 -888 30 1 -883 34 1 -883 33 0 -878 35 0 -878 35 -1 -873 35 0 -873 36 -1 -867 34 -1 -867 35 -2 882 2 -185 884 1 -186 880 16 -186 880 15 -188 877 23 -189 878 22 -189 875 29 -191 875 28 -190 871 34 -193 871 33 -192 867 38 -195 866 37 -194 862 40 -197 861 39 -196 856 39 -199 855 40 -198 850 39 -201 850 40 -200 883 1 -187 883 1 -184 880 16 -185 880 15 -182 877 24 -183 878 23 -181 874 30 -181 875 31 -180 870 36 -179 871 37 -178 866 41 -177 867 42 -177 860 44 -175 861 45 -176 854 46 -174 855 47 -175 848 48 -174 848 48 -175 883 1 -167 883 0 -168 883 13 -168 882 12 -169 881 20 -170 880 19 -170 878 26 -172 877 25 -171 874 31 -173 874 30 -172 870 34 -175 869 34 -173 865 36 -175 865 36 -174 860 37 -176 859 38 -175 854 37 -177 854 37 -176 -932 4 -27 -932 4 -25 -930 18 -31 -929 17 -30 -927 25 -33 -927 24 -33 -923 31 -36 -924 30 -36 -920 36 -38 -921 35 -39 -916 39 -42 -917 38 -43 -912 40 -46 -913 39 -47 -907 39 -50 -908 39 -51 -903 38 -54 -903 38 -55 898 -2 52 900 -2 52 897 12 49 898 11 49 897 19 46 897 18 46 896 25 42 896 24 43 895 30 38 894 29 39 893 34 34 891 33 35 890 35 29 889 35 30 887 35 24 886 36 24 884 35 19 883 35 19 900 -2 51 898 -2 53 896 12 50 895 11 52 893 19 50 892 19 52 890 26 49 889 27 51 885 32 49 885 33 50 880 36 47 881 38 48 875 40 45 876 41 45 870 42 42 871 43 41 865 43 38 865 44 37 887 -3 66 888 -4 65 887 9 65 888 8 64 887 16 62 887 15 62 886 22 59 885 21 59 884 26 55 883 26 56 882 30 52 880 30 53 879 32 48 877 32 49 875 33 44 874 33 45 872 33 40 871 33 40 -181 -7 -927 -181 -8 -929 -184 6 -926 -184 5 -928 -187 13 -927 -187 12 -927 -191 19 -927 -190 18 -926 -195 24 -926 -194 24 -925 -199 28 -924 -199 28 -923 -204 30 -922 -204 30 -921 -210 29 -920 -210 30 -919 -216 29 -917 -215 30 -916 -182 -7 -929 -180 -8 -927 -183 6 -926 -181 5 -924 -183 14 -923 -182 13 -921 -184 21 -919 -183 21 -918 -186 26 -915 -185 27 -915 -188 31 -910 -187 32 -911 -191 34 -905 -190 36 -906 -194 36 -900 -195 38 -901 -199 38 -896 -199 38 -897 -877 0 470 -875 -1 468 -882 12 468 -881 12 467 -885 19 465 -884 18 465 -888 25 462 -888 24 463 -892 29 459 -892 28 460 -896 32 456 -897 32 457 -900 33 453 -901 33 454 -905 32 449 -906 32 450 -910 31 445 -911 31 446 -875 0 468 -876 -1 470 -882 12 469 -883 11 472 -886 19 470 -887 19 472 -891 25 471 -891 25 473 -897 29 472 -897 30 474 -903 33 473 -903 34 474 -909 35 473 -909 36 473 -916 36 472 -915 37 472 -922 36 471 -922 36 470 -881 -3 487 -880 -4 486 -884 8 486 -884 7 485 -887 15 484 -887 14 484 -890 20 481 -891 19 482 -894 24 479 -895 23 480 -899 27 476 -899 26 478 -903 28 474 -904 28 475 -908 28 472 -909 28 473 -913 27 469 -913 27 470 -41 -7 -966 -41 -8 -964 -38 6 -968 -38 5 -966 -36 13 -968 -36 12 -967 -32 20 -968 -32 19 -968 -28 25 -968 -29 24 -969 -24 29 -969 -24 28 -971 -18 30 -970 -19 30 -972 -12 30 -972 -12 31 -973 -6 30 -973 -7 31 -974 699 5 -605 700 5 -607 694 19 -603 695 18 -605 691 26 -604 691 25 -604 687 32 -605 687 31 -604 682 37 -605 682 36 -604 677 40 -606 677 39 -604 671 41 -606 671 40 -604 665 40 -606 665 40 -605 659 39 -606 659 39 -605 699 6 -607 700 5 -604 695 19 -602 696 18 -600 692 26 -599 693 26 -597 689 32 -595 690 32 -594 685 37 -591 686 38 -591 681 40 -587 681 42 -587 675 42 -584 676 44 -584 670 44 -581 670 45 -582 664 44 -579 663 45 -580 705 3 -588 705 2 -589 702 15 -587 702 14 -588 699 22 -588 699 21 -587 695 27 -588 695 26 -587 691 31 -588 691 30 -586 686 34 -587 686 34 -585 681 36 -586 681 36 -585 675 36 -586 675 36 -584 670 35 -585 670 35 -584 -40 -7 -964 -42 -8 -967 -39 6 -969 -41 5 -971 -38 13 -972 -40 13 -974 -37 20 -976 -38 20 -977 -35 25 -981 -36 26 -981 -32 29 -985 -33 31 -985 -29 33 -990 -29 34 -989 -24 35 -994 -24 36 -993 -19 36 -998 -19 37 -997 -51 -10 -981 -50 -11 -980 -50 2 -981 -49 1 -981 -48 9 -981 -47 8 -982 -45 15 -982 -45 13 -983 -41 19 -983 -41 18 -984 -37 23 -985 -37 22 -986 -32 25 -987 -33 25 -988 -27 26 -989 -28 26 -990 -23 26 -991 925 -2 300 926 -2 301 927 12 297 928 11 298 930 19 296 930 18 296 933 25 293 932 24 293 936 30 290 934 29 290 938 34 287 937 33 286 941 35 282 940 35 281 945 35 276 943 36 276 947 35 271 927 -2 300 924 -2 300 926 12 297 923 11 297 925 19 294 922 19 294 923 26 291 922 27 291 922 32 287 921 33 287 921 36 282 920 38 282 920 40 276 920 41 277 920 42 270 921 43 270 921 43 264 922 44 264 907 -3 297 908 -4 297 909 9 296 910 8 296 911 16 295 911 15 294 913 22 293 913 21 292 916 26 289 914 26 288 918 30 285 916 30 284 919 32 280 918 32 280 921 33 276 920 33 275 923 33 271 923 33 270 -168 -8 -914 -169 -9 -915 -170 3 -915 -170 2 -915 -172 10 -915 -172 9 -915 -176 16 -915 -175 15 -914 -179 21 -913 -179 20 -912 -183 24 -911 -182 24 -910 -187 26 -908 -187 26 -907 -192 27 -905 -191 28 -904 -196 27 -903 -196 28 -902 -646 5 -626 -648 5 -627 -645 19 -621 -646 18 -621 -645 26 -618 -645 25 -618 -645 32 -613 -645 31 -614 -645 37 -609 -644 36 -609 -645 40 -604 -644 39 -604 -645 41 -598 -643 40 -598 -645 40 -592 -643 40 -592 -644 39 -586 -643 39 -586 -649 6 -625 -646 5 -627 -644 19 -622 -641 18 -623 -640 26 -619 -638 26 -620 -636 32 -616 -635 32 -618 -632 37 -613 -631 38 -614 -627 40 -609 -627 42 -610 -623 42 -604 -624 44 -604 -620 44 -599 -621 45 -599 -617 44 -593 -618 45 -593 -630 3 -633 -632 2 -633 -629 15 -631 -630 14 -630 -629 22 -627 -629 21 -627 -629 27 -623 -628 26 -623 -629 31 -619 -627 30 -619 -628 34 -614 -626 34 -614 -626 36 -609 -625 36 -609 -625 36 -604 -624 36 -604 -624 35 -599 -931 5 -25 -933 4 -26 -931 18 -31 -933 17 -33 -931 25 -36 -934 25 -37 -932 31 -41 -933 31 -41 -932 36 -46 -933 37 -46 -932 39 -52 -932 41 -52 -930 42 -58 -930 43 -58 -928 43 -64 -928 44 -64 -926 43 -70 -925 44 -70 234 1 -887 232 0 -887 235 15 -884 234 14 -884 235 23 -881 235 22 -881 236 29 -877 236 28 -878 237 34 -873 238 33 -874 238 37 -869 240 37 -870 241 39 -864 242 39 -864 244 39 -858 245 39 -859 247 38 -853 248 39 -853 232 1 -886 234 0 -888 236 15 -885 238 15 -887 239 23 -885 240 23 -887 242 30 -884 243 30 -886 247 36 -883 247 36 -884 252 40 -881 251 41 -882 257 43 -879 256 45 -879 262 46 -875 261 47 -875 267 47 -871 266 48 -871 246 0 -901 245 0 -900 246 13 -899 245 12 -898 246 20 -897 246 19 -896 246 25 -893 247 24 -894 248 30 -890 249 29 -890 251 34 -886 252 33 -887 254 36 -882 255 36 -883 257 36 -878 258 37 -878 260 36 -873 261 37 -874 928 -7 -261 929 -8 -259 931 6 -262 932 5 -261 934 13 -263 934 12 -263 937 19 -265 937 19 -265 941 24 -267 940 24 -268 944 28 -270 943 28 -272 948 30 -274 947 30 -275 952 30 -279 951 30 -280 956 29 -284 956 30 -284 -761 3 505 -761 3 507 -757 16 502 -756 16 503 -753 23 501 -748 29 500 -749 28 499 -744 34 498 -744 33 497 -739 37 496 -740 36 495 -734 37 494 -734 37 493 -728 36 492 -728 36 491 -722 35 490 -722 35 489 -760 3 507 -762 2 505 -757 16 501 -759 16 499 -756 23 497 -758 23 495 -754 29 492 -756 29 491 -752 34 486 -753 35 486 -749 37 481 -750 38 481 -746 39 476 -746 41 476 -742 40 471 -741 41 471 -737 40 467 -736 41 467 802 1 387 804 0 386 800 15 384 802 14 384 800 23 381 800 22 381 798 29 378 798 28 378 796 34 374 795 33 375 794 37 370 792 37 371 790 39 366 789 39 367 786 39 361 785 39 362 782 38 357 781 39 357 803 1 385 802 0 388 800 15 385 799 15 388 797 23 386 796 23 388 793 30 386 793 30 388 789 36 386 789 36 387 783 40 386 784 41 386 778 43 384 779 45 384 772 46 382 773 47 382 767 47 379 767 48 378 794 0 403 794 0 402 794 13 401 794 12 400 793 20 399 793 19 399 792 25 396 791 24 396 789 30 393 788 29 394 786 34 390 785 33 391 782 36 386 781 36 387 778 36 383 777 37 384 774 36 380 773 37 380 -773 0 492 -772 0 493 -770 13 490 -769 12 491 -767 19 489 -767 18 489 -763 24 488 -763 23 487 -759 28 486 -760 28 484 -755 31 483 -755 31 482 -750 32 480 -751 32 479 -745 32 477 -746 32 476 -741 31 475 -741 32 474 930 -7 -259 927 -8 -260 930 6 -263 927 6 -264 929 14 -266 927 14 -266 929 21 -269 927 21 -269 928 26 -274 927 27 -273 928 31 -279 927 32 -278 929 34 -285 929 36 -284 930 36 -291 931 38 -290 932 38 -296 933 38 -296 912 -8 -267 913 -9 -266 913 3 -267 914 2 -267 916 10 -268 916 9 -269 919 16 -270 918 15 -271 921 21 -273 920 20 -274 924 24 -276 923 24 -277 927 26 -280 926 27 -281 930 27 -285 929 28 -286 933 27 -289 932 28 -290 -879 5 59 -880 4 61 -875 18 58 -875 18 59 -871 25 58 -871 24 59 -867 31 59 -867 30 59 -862 36 60 -862 35 59 -857 39 60 -857 38 59 -852 40 61 -851 40 59 -845 39 61 -845 39 60 -839 38 62 -839 38 61 -879 5 61 -880 4 58 -875 18 57 -876 17 54 -872 25 53 -873 25 51 -869 31 50 -870 32 48 -865 36 46 -866 37 45 -860 39 42 -861 41 42 -855 42 39 -855 43 39 -849 43 36 -849 44 37 -843 43 34 -843 44 35 -884 2 42 -885 1 43 -882 14 41 -881 13 42 -879 21 42 -878 20 41 -875 26 42 -875 25 41 -870 31 42 -870 30 40 -865 33 42 -866 33 40 -860 35 41 -860 35 39 -855 35 40 -855 35 39 -850 34 40 -862 6 210 -864 6 211 -858 20 211 -859 19 212 -855 27 213 -855 26 213 -851 33 216 -851 32 215 -847 38 218 -847 37 217 -843 41 221 -842 40 219 -838 42 224 -837 41 222 -833 41 227 -832 41 226 -828 40 230 -827 40 229 -863 7 212 -863 6 209 -857 20 210 -857 19 207 -853 27 208 -853 27 206 -849 33 206 -849 33 204 -844 38 204 -844 39 203 -838 41 203 -838 43 202 -831 44 202 -832 45 202 -825 45 202 -825 46 203 -819 45 203 -819 46 204 -860 4 192 -860 3 193 -857 16 193 -857 15 194 -854 23 194 -854 22 195 -851 28 197 -850 27 196 -847 32 198 -846 31 197 -842 35 200 -842 35 199 -837 37 202 -837 37 201 -832 37 204 -832 37 203 -828 36 206 -827 36 205 -598 1 727 -598 1 730 -595 15 724 -594 14 726 -591 22 723 -591 21 723 -587 28 722 -588 27 721 -583 33 720 -584 32 719 -578 36 718 -579 35 716 -573 37 715 -574 36 714 -567 36 713 -568 36 712 -562 35 710 -562 35 709 -597 2 729 -599 1 728 -595 15 723 -598 14 722 -595 22 719 -597 22 718 -594 28 714 -595 28 714 -592 33 709 -593 34 709 -590 36 703 -591 38 704 -587 39 698 -587 40 698 -583 40 693 -583 41 693 -579 40 688 -578 41 689 -611 0 715 -611 -1 717 -609 11 714 -608 10 714 -606 18 712 -606 17 712 -603 23 711 -603 22 710 -599 27 708 -600 27 707 -595 30 706 -596 30 704 -591 32 703 -591 32 701 -586 32 699 -587 32 698 -582 31 697 -582 31 696 -410 0 883 -408 -1 882 -415 12 881 -413 12 880 -417 19 877 -416 18 877 -420 25 874 -420 24 875 -423 29 870 -424 28 871 -427 32 867 -428 32 868 -431 33 863 -432 33 864 -435 32 858 -436 32 859 -439 31 854 -440 31 855 -408 0 881 -409 -1 884 -416 11 884 -419 19 882 -420 19 884 -425 25 882 -425 25 884 -430 29 883 -430 30 884 -436 33 883 -436 34 883 -443 35 882 -442 36 882 -449 36 880 -448 37 879 -455 36 877 -454 36 876 -417 -3 899 -416 -4 898 -420 8 898 -419 7 897 -422 15 895 -422 14 895 -425 20 892 -425 19 893 -428 24 889 -429 23 890 -432 27 886 -433 26 888 -437 28 883 -438 28 885 -441 28 880 -442 28 881 -445 27 877 -446 27 878 -367 0 844 -365 -1 845 -369 12 839 -367 12 839 -369 19 835 -368 18 835 -368 25 830 -369 24 831 -368 29 826 -370 28 826 -369 32 821 -370 32 821 -369 33 815 -371 33 815 -369 32 809 -371 32 809 -370 31 803 -371 31 803 -364 0 843 -367 -1 845 -370 12 839 -372 11 841 -374 19 837 -376 19 838 -378 25 834 -379 25 835 -382 29 830 -383 30 831 -387 33 826 -387 34 827 -391 35 821 -390 36 821 -394 36 816 -393 37 816 -397 36 810 -396 36 810 -383 -3 851 -381 -4 851 -384 8 848 -383 7 848 -384 15 845 -384 14 845 -384 20 841 -385 19 841 -385 24 836 -386 23 837 -386 27 832 -388 26 832 -388 28 826 -389 28 827 -389 28 821 -390 28 821 -390 27 816 -164 3 926 -164 3 927 -160 15 924 -160 14 925 -156 21 924 -157 20 924 -152 26 923 -153 26 923 -148 30 922 -149 30 921 -144 33 921 -145 33 919 -139 34 919 -140 34 917 -134 33 916 -135 33 915 -130 32 914 -130 33 913 -163 3 927 -165 3 926 -162 15 922 -159 22 921 -161 22 919 -158 28 917 -159 28 916 -156 32 913 -157 33 913 -155 36 908 -155 37 909 -152 38 904 -152 40 904 -148 40 899 -148 41 900 -145 40 895 -144 41 896 -175 3 915 -175 2 916 -173 14 915 -172 13 915 -170 20 914 -170 19 914 -167 24 914 -167 23 913 -163 28 912 -164 27 911 -159 31 910 -160 30 908 -155 32 907 -156 32 906 -152 32 904 -152 32 903 -148 31 902 -148 32 901 -251 3 880 -250 2 882 -250 15 877 -249 14 878 -248 22 874 -248 21 875 -245 27 872 -246 26 872 -243 31 868 -244 30 868 -241 34 865 -242 33 864 -238 35 860 -240 35 860 -236 34 855 -237 35 855 -233 33 851 -234 34 850 -249 3 881 -252 2 881 -251 15 877 -253 15 876 -252 22 874 -254 21 873 -254 27 870 -255 27 870 -255 32 865 -256 32 866 -257 35 860 -257 36 861 -257 37 855 -257 39 856 -257 39 850 -257 40 850 -257 39 844 -256 40 844 -266 1 878 -265 0 879 -266 12 877 -265 11 876 -264 18 875 -264 17 874 -262 23 872 -263 22 871 -261 27 868 -262 26 868 -259 29 864 -260 29 864 -258 31 860 -259 31 859 -256 31 856 -257 31 855 -254 30 851 -255 31 851 280 8 897 282 7 899 281 21 892 283 20 893 284 28 889 284 27 890 286 34 885 286 33 885 289 38 881 287 37 881 291 41 877 290 40 876 294 42 872 293 41 871 297 41 866 296 41 866 300 39 861 299 40 861 283 8 898 280 7 898 280 21 892 278 20 892 279 28 888 276 27 888 277 34 883 275 34 883 275 38 878 274 39 878 273 41 872 273 43 872 272 44 865 273 45 866 273 44 859 273 46 859 273 44 853 274 45 853 263 5 895 264 4 896 263 17 892 264 16 892 265 24 889 265 23 889 267 29 886 266 28 885 269 33 881 268 32 881 271 36 877 269 35 876 272 37 872 271 37 871 274 37 867 273 37 866 276 36 862 275 36 861 308 9 919 308 9 921 313 19 914 313 19 915 317 25 912 316 24 912 321 29 910 321 28 910 326 32 908 325 31 907 330 34 905 329 33 904 334 33 903 334 33 902 339 31 901 339 32 900 344 29 899 343 30 898 309 9 920 307 8 919 312 19 913 310 19 912 314 25 908 312 25 907 315 29 903 314 29 903 317 32 898 316 33 898 319 34 893 319 35 893 322 35 887 322 36 888 325 35 883 326 36 883 329 33 879 330 34 879 296 7 909 296 6 910 299 17 905 300 16 906 303 22 903 303 21 903 306 26 901 306 25 900 310 29 898 310 28 897 314 30 896 313 29 894 318 30 893 317 30 891 322 29 890 321 29 889 325 27 888 325 28 887 158 8 923 160 8 923 155 21 919 156 21 918 154 28 915 153 34 910 153 33 911 152 39 906 151 38 906 150 42 901 149 41 901 148 42 895 147 42 896 147 41 889 145 41 889 145 40 884 144 40 884 160 8 922 158 8 924 154 21 919 152 21 921 150 28 918 148 28 919 145 34 916 144 35 917 140 39 913 139 40 914 134 42 910 134 43 911 129 44 907 130 46 907 125 45 902 125 46 902 121 45 897 121 46 897 144 5 934 145 4 934 142 18 931 143 17 931 141 24 928 141 23 928 140 30 924 139 28 925 138 34 920 137 33 921 136 36 916 135 36 916 133 37 911 132 37 911 131 37 906 130 38 907 129 36 901 128 37 902 448 3 789 450 3 788 448 12 787 449 12 786 448 17 784 448 16 784 448 21 781 448 20 781 448 24 777 447 23 777 448 26 774 447 26 774 448 28 770 447 28 770 448 28 766 447 28 766 451 4 787 447 14 786 445 14 788 444 21 785 442 20 787 439 26 783 438 26 785 434 30 780 434 31 782 429 32 776 429 33 777 425 32 771 425 34 772 421 31 765 422 33 765 449 4 789 450 3 788 448 14 786 449 13 785 447 21 782 447 20 782 445 26 778 444 24 778 443 29 773 442 28 773 442 30 767 440 29 768 441 30 761 440 30 761 441 28 756 440 28 755 892 0 61 892 -1 60 890 11 59 890 10 59 889 17 58 890 17 57 888 22 57 889 23 56 887 28 55 888 28 54 886 33 53 887 33 52 885 37 51 885 37 50 883 41 48 883 40 47 892 0 60 892 -1 61 889 10 60 888 16 58 887 16 60 886 22 57 885 22 59 884 26 56 883 27 57 881 31 54 878 34 51 879 35 52 875 37 48 876 37 49 891 0 61 893 -1 60 890 11 58 891 10 57 890 16 56 891 15 55 890 21 53 890 20 53 889 24 49 889 23 50 888 27 46 888 26 46 888 29 42 887 29 43 887 30 39 886 30 39 893 0 60 893 -1 59 890 13 57 891 13 57 890 21 56 891 21 54 890 29 54 891 28 52 890 36 52 891 35 51 890 43 51 890 42 49 890 49 49 889 49 48 889 55 47 888 54 46 893 0 59 890 13 58 888 12 60 886 20 58 885 20 60 881 26 58 881 26 60 876 30 57 876 31 59 870 32 55 870 34 56 864 33 51 864 35 52 859 32 47 859 34 46 891 12 56 889 20 54 889 19 54 886 26 51 886 25 51 883 30 47 882 29 48 881 32 42 879 31 43 878 32 37 877 31 37 876 31 31 874 31 31 883 0 75 883 0 74 883 9 74 884 8 74 883 14 74 884 14 74 883 20 74 884 20 73 883 25 73 883 25 72 882 30 72 883 29 71 881 34 70 881 34 69 879 38 68 879 37 67 883 9 75 882 8 76 882 14 75 881 14 76 880 19 75 880 19 76 879 24 74 879 24 75 877 28 73 877 29 73 874 32 71 875 33 71 871 35 69 872 36 69 883 8 74 883 8 73 883 14 72 883 13 71 882 18 69 882 17 69 881 21 67 880 21 67 880 24 63 879 24 64 878 26 60 877 26 61 876 27 57 876 28 57 884 0 73 883 11 74 882 10 76 881 18 75 880 17 77 877 24 76 877 24 78 872 28 77 873 29 78 867 32 76 868 33 77 861 34 74 861 35 74 854 35 71 855 36 70 883 0 73 883 11 73 883 10 72 882 17 71 881 16 70 880 23 69 878 22 69 876 28 66 875 27 66 872 30 62 871 29 62 868 31 57 867 30 58 865 30 52 864 30 52 915 0 298 915 -1 298 915 11 296 916 10 296 916 17 295 916 22 293 917 23 293 917 28 291 918 28 292 918 33 290 919 33 290 920 37 287 921 41 284 922 40 284 916 0 298 914 -1 298 913 10 295 914 16 294 913 16 294 914 22 291 913 22 291 915 26 289 914 27 289 915 31 285 915 31 286 916 34 282 916 35 282 917 37 278 914 0 298 915 -1 299 916 11 296 917 10 296 918 16 294 919 15 295 920 21 292 920 20 292 923 24 290 922 23 290 926 27 288 925 26 288 929 29 286 928 29 285 931 30 283 915 0 299 916 -1 298 917 13 295 918 13 296 918 21 294 919 21 295 919 29 293 921 28 294 921 36 293 923 35 293 922 43 292 924 42 292 923 49 291 924 49 290 925 55 289 925 54 288 917 0 299 916 13 295 913 12 295 914 20 292 911 20 292 911 26 288 910 26 288 910 30 282 908 31 283 909 32 276 908 34 277 909 33 269 909 35 269 911 32 263 911 34 263 916 -1 299 918 12 296 918 20 293 919 19 293 920 26 289 920 25 288 922 30 284 921 29 284 925 32 280 924 31 279 929 32 275 928 31 274 933 31 270 932 31 269 898 0 297 898 9 297 899 8 298 898 14 297 899 14 298 899 20 297 900 20 297 899 25 296 900 25 296 900 30 295 901 29 295 901 34 293 902 34 293 902 38 290 902 37 290 899 0 297 897 0 297 896 8 297 897 14 296 896 14 296 897 19 295 895 19 295 896 24 293 897 28 290 896 29 291 897 32 287 897 33 288 897 35 284 897 36 284 899 8 297 900 8 296 900 14 296 901 13 295 902 18 294 902 17 293 904 21 291 903 21 291 906 24 289 905 24 288 908 26 286 908 26 285 910 27 283 910 28 282 900 0 297 898 11 297 896 10 297 896 18 295 894 17 296 893 24 293 892 24 294 891 28 289 890 29 290 889 32 283 889 33 285 888 34 277 888 35 278 888 35 270 888 36 270 899 0 297 899 11 296 901 10 296 901 17 295 901 16 294 901 23 291 901 22 290 902 28 287 901 27 286 904 30 281 903 29 281 907 31 276 905 30 275 910 30 271 909 30 270 798 2 397 797 2 396 795 14 395 796 14 395 794 20 394 795 20 394 793 26 394 794 26 393 791 31 392 792 31 391 790 37 390 791 36 389 788 41 388 789 41 387 786 44 386 786 44 385 798 2 395 797 2 397 794 14 397 793 20 395 792 20 397 791 25 394 790 25 396 788 30 393 788 30 394 785 34 392 786 35 392 782 38 390 783 38 390 779 40 388 779 41 388 798 2 396 796 14 393 795 20 392 795 19 391 794 24 389 794 23 389 792 28 386 792 27 386 791 31 383 791 30 383 790 33 379 789 32 380 788 34 376 798 3 396 795 17 394 796 16 393 794 25 392 796 24 391 794 32 390 795 32 388 794 39 389 795 39 387 794 46 387 794 46 386 793 53 386 793 52 385 792 59 384 791 58 383 798 3 394 794 16 397 791 24 395 791 23 398 786 30 396 786 30 398 781 34 396 781 35 398 775 36 395 775 38 396 768 37 392 768 38 393 762 36 389 763 37 389 797 3 396 799 2 395 795 16 393 796 16 392 793 24 391 793 23 390 790 30 388 790 28 389 787 34 385 786 32 386 783 36 381 782 35 382 779 35 376 778 35 376 776 34 370 775 34 371 791 3 412 791 12 411 792 12 411 791 18 411 792 18 411 791 23 411 792 23 410 790 28 410 791 28 409 790 33 409 790 33 408 788 38 408 788 37 407 786 41 406 785 41 405 791 3 411 791 2 413 791 12 412 790 12 413 790 18 412 790 18 414 789 23 412 789 23 414 787 28 412 787 28 413 784 32 411 785 32 412 782 36 410 778 39 409 779 39 409 791 3 413 791 2 411 791 12 410 791 17 409 790 17 409 789 22 407 789 21 407 788 25 404 787 24 405 786 28 401 785 27 402 784 30 399 783 30 399 781 31 396 792 3 410 791 14 411 790 14 414 789 21 413 789 21 415 786 27 415 786 27 417 781 32 416 782 33 417 775 36 416 776 37 417 769 38 415 770 39 415 762 38 413 763 39 413 791 2 411 791 14 410 791 13 409 790 21 409 789 20 408 787 27 407 786 26 407 783 31 404 782 30 405 778 34 401 777 33 402 774 34 397 773 34 398 770 33 393 769 34 393 812 0 361 812 -1 361 810 11 359 811 10 359 809 17 358 810 17 358 808 22 357 809 23 357 807 28 356 808 28 355 806 33 354 807 33 353 804 37 352 805 37 351 802 41 349 802 40 348 813 0 360 812 -1 362 810 11 360 809 10 361 808 16 359 807 16 361 806 22 358 805 22 359 804 26 357 803 27 358 801 31 355 798 34 352 798 35 353 795 37 350 796 37 350 813 -1 360 811 10 358 810 16 356 811 15 356 809 21 353 809 20 353 809 24 350 808 23 350 808 27 346 807 26 347 807 29 343 806 29 343 806 30 339 805 30 340 813 0 361 810 13 358 811 13 357 810 21 356 811 21 355 810 29 354 811 28 353 810 36 353 811 35 351 810 43 352 810 42 350 810 49 350 809 49 349 808 55 348 807 54 347 813 0 359 810 13 359 808 12 361 806 20 359 805 20 361 801 26 359 801 26 361 796 30 358 796 31 360 790 32 356 790 34 357 784 33 353 784 35 353 778 32 349 779 34 348 814 -1 360 811 12 356 809 20 355 809 19 354 806 26 352 806 25 352 803 30 348 802 29 349 800 32 343 799 31 344 797 32 338 796 31 338 795 31 332 794 31 333 804 0 375 804 9 375 805 8 375 804 14 375 805 14 374 804 20 375 805 20 374 803 25 374 804 25 373 803 30 372 803 29 371 802 34 371 801 34 370 799 38 369 799 37 368 803 0 376 803 8 377 803 14 376 802 14 377 801 19 375 801 19 377 799 24 375 800 24 376 797 28 374 798 29 374 795 32 372 795 33 373 791 35 370 792 36 370 804 0 376 804 8 375 804 8 373 804 14 373 803 13 372 803 18 370 802 17 370 801 21 367 801 21 368 800 24 364 799 24 365 798 26 361 797 26 362 796 27 358 796 28 358 804 0 374 804 11 375 803 10 377 801 18 376 801 17 378 798 24 378 798 24 379 793 28 378 794 29 379 787 32 377 788 33 378 781 34 375 782 35 376 775 35 372 776 36 372 804 0 374 804 11 374 804 10 372 803 17 372 802 16 371 800 23 370 799 22 370 796 28 367 795 27 367 792 30 363 791 29 364 788 31 358 787 30 359 785 30 353 784 30 354 806 0 -586 811 12 -588 810 11 -587 813 17 -589 813 17 -588 815 23 -589 815 23 -588 818 28 -590 818 28 -588 821 33 -590 821 32 -588 824 37 -589 824 36 -589 828 39 -589 807 0 -585 806 0 -587 811 11 -588 810 11 -590 813 17 -590 813 16 -591 816 21 -591 816 22 -593 819 26 -592 819 26 -593 823 29 -593 823 30 -594 827 32 -594 827 33 -594 832 34 -594 831 35 -594 806 0 -585 811 12 -587 811 11 -586 814 17 -586 813 16 -585 817 21 -585 817 20 -585 820 24 -584 823 27 -582 823 26 -583 827 29 -580 827 28 -581 830 30 -579 812 14 -587 811 14 -586 814 21 -587 814 21 -585 817 29 -587 817 29 -585 819 36 -586 819 36 -585 821 43 -586 822 43 -585 823 49 -586 824 49 -586 826 55 -586 828 54 -586 807 1 -584 812 14 -588 811 13 -590 815 20 -591 814 20 -594 819 25 -596 818 25 -597 824 28 -599 823 29 -600 830 29 -602 830 31 -603 837 28 -604 837 30 -604 843 27 -604 844 28 -604 807 0 -586 806 0 -584 812 13 -585 816 20 -587 816 19 -586 821 26 -587 821 24 -587 826 29 -587 826 28 -588 832 30 -586 832 29 -587 838 30 -584 838 29 -585 843 28 -581 844 28 -582 802 0 -603 802 0 -602 804 8 -603 803 8 -603 804 14 -604 804 14 -603 806 19 -604 806 20 -603 807 24 -605 808 24 -604 809 29 -605 810 29 -604 812 33 -605 813 33 -604 816 36 -605 803 0 -602 804 8 -604 803 8 -605 805 14 -605 804 13 -607 807 18 -607 806 18 -608 809 23 -608 809 23 -609 812 27 -609 816 30 -610 815 30 -610 820 32 -612 819 33 -611 805 8 -602 806 13 -602 807 13 -602 809 17 -602 810 16 -602 813 21 -601 813 20 -602 816 23 -600 816 22 -601 820 24 -599 820 24 -600 824 25 -598 824 25 -599 803 0 -601 805 10 -603 804 10 -606 806 17 -607 805 17 -609 809 22 -611 807 22 -612 812 26 -615 811 27 -616 817 28 -619 816 30 -619 823 29 -622 823 31 -622 830 29 -624 830 30 -624 803 0 -601 805 10 -603 806 10 -602 808 17 -603 809 16 -603 812 22 -604 813 21 -605 817 26 -605 818 24 -606 824 27 -605 824 26 -606 830 27 -604 830 27 -606 835 25 -603 836 25 -604 699 -1 -634 699 -2 -635 694 9 -635 692 15 -636 689 20 -636 690 21 -637 687 25 -637 688 26 -638 685 30 -638 685 30 -640 682 34 -640 682 34 -641 678 37 -642 678 37 -643 699 -1 -635 699 -2 -634 694 9 -633 691 14 -635 690 14 -633 688 19 -635 687 19 -633 684 23 -635 684 24 -634 680 27 -637 681 28 -636 677 30 -638 677 31 -638 672 32 -640 673 33 -640 698 -1 -634 694 9 -636 695 9 -637 692 15 -638 693 14 -639 690 19 -640 690 18 -640 688 22 -643 688 21 -643 686 25 -646 685 24 -646 684 26 -650 683 26 -649 682 28 -653 681 27 -652 699 -1 -636 694 12 -636 694 11 -637 691 19 -638 692 19 -639 689 27 -639 690 27 -641 687 34 -640 688 34 -642 686 41 -641 686 40 -643 684 47 -643 683 46 -644 681 52 -644 680 52 -645 699 -1 -637 693 11 -636 693 11 -633 689 18 -634 688 17 -632 683 23 -632 683 23 -631 677 26 -632 677 27 -630 670 27 -632 670 28 -631 663 26 -634 663 28 -634 657 25 -637 657 26 -637 698 -1 -635 700 -1 -636 694 11 -638 690 18 -639 690 17 -639 686 23 -641 685 22 -640 681 27 -644 680 25 -643 676 28 -647 676 27 -646 672 27 -652 671 27 -651 669 26 -657 668 26 -656 694 -2 -618 693 6 -618 693 6 -619 692 12 -618 692 12 -619 690 17 -618 691 17 -619 689 22 -619 689 22 -620 687 27 -620 687 27 -621 684 31 -621 684 30 -622 681 34 -622 681 33 -623 694 -2 -619 692 6 -618 692 6 -616 690 11 -617 690 11 -616 688 16 -617 688 16 -616 685 20 -617 686 21 -616 682 24 -617 683 25 -617 679 27 -618 679 28 -618 675 30 -619 675 31 -619 692 6 -619 692 6 -620 691 11 -620 691 10 -621 688 15 -622 688 14 -622 686 18 -625 685 17 -624 683 21 -627 683 20 -627 680 22 -630 680 22 -629 677 23 -632 694 -2 -620 692 8 -619 691 8 -616 689 15 -616 689 14 -614 685 20 -614 685 20 -612 679 24 -612 680 25 -611 673 26 -611 674 28 -610 666 27 -611 667 28 -611 660 26 -613 660 28 -613 694 -2 -620 692 8 -619 692 7 -621 689 15 -621 688 14 -621 685 20 -622 684 19 -622 680 24 -624 679 22 -623 674 25 -627 674 24 -625 669 25 -630 669 24 -629 665 23 -634 664 23 -633 703 6 -595 702 5 -595 699 17 -593 697 23 -591 697 23 -592 694 28 -590 694 28 -591 692 33 -589 692 33 -591 689 38 -589 689 38 -590 686 42 -589 685 42 -589 682 45 -588 682 44 -589 702 6 -596 703 5 -594 699 17 -592 699 16 -591 697 22 -590 697 22 -589 694 27 -588 694 27 -587 691 31 -587 691 32 -586 687 35 -585 688 35 -585 683 38 -584 684 38 -584 679 40 -583 703 6 -594 703 5 -596 698 17 -593 698 17 -595 695 22 -593 695 22 -594 692 27 -594 692 26 -594 689 30 -595 689 29 -595 685 32 -596 685 32 -595 682 34 -597 681 34 -596 678 35 -598 678 35 -597 702 5 -596 697 19 -593 697 19 -594 695 27 -593 695 27 -594 692 34 -593 692 34 -595 690 42 -592 689 41 -594 688 48 -592 687 48 -594 686 55 -592 685 54 -592 683 60 -591 682 59 -591 702 6 -597 703 5 -595 698 19 -592 699 18 -590 695 26 -588 696 25 -586 692 30 -583 693 31 -582 687 33 -579 688 34 -578 682 34 -575 682 36 -574 675 34 -572 675 36 -572 669 32 -571 669 33 -571 702 6 -595 703 5 -597 697 18 -595 693 26 -593 693 25 -593 689 31 -591 688 30 -591 683 35 -591 683 33 -590 677 36 -591 677 35 -590 671 35 -592 671 34 -591 665 33 -594 665 33 -592 709 5 -579 709 5 -580 708 14 -579 707 20 -578 707 20 -579 706 25 -577 706 25 -578 705 30 -576 704 30 -578 703 35 -576 702 34 -577 700 39 -575 699 38 -576 697 42 -575 696 41 -575 710 4 -579 708 14 -578 709 13 -577 707 19 -576 708 19 -575 705 24 -575 706 24 -574 703 28 -573 704 29 -572 700 32 -571 701 33 -571 697 35 -569 698 36 -570 694 38 -568 710 5 -579 709 4 -580 707 13 -580 705 19 -579 705 18 -579 702 23 -579 702 22 -579 699 26 -579 699 25 -579 695 28 -580 695 28 -579 691 30 -580 691 30 -579 687 31 -580 687 31 -579 708 5 -581 707 16 -578 708 15 -576 706 23 -575 708 22 -573 704 28 -570 706 28 -569 702 32 -565 703 32 -565 697 34 -561 698 35 -561 692 35 -557 693 36 -557 686 34 -553 686 35 -554 708 4 -581 707 16 -579 706 15 -580 704 22 -578 703 21 -578 700 28 -576 699 26 -576 695 31 -575 695 30 -574 689 33 -574 689 32 -572 683 32 -573 683 32 -572 677 31 -574 677 31 -572 -768 3 498 -767 3 498 -765 14 494 -763 20 492 -761 25 489 -761 26 490 -759 30 488 -758 30 489 -757 35 486 -756 35 487 -754 39 484 -753 38 485 -750 42 482 -750 41 483 -768 3 497 -765 14 493 -766 14 492 -764 20 490 -765 19 489 -762 24 487 -763 24 486 -759 28 485 -760 29 484 -756 32 482 -757 32 481 -753 34 479 -754 35 479 -750 36 476 -750 37 476 -764 14 494 -763 14 495 -761 20 493 -761 19 494 -758 24 492 -758 23 492 -754 27 491 -754 26 491 -750 29 491 -751 29 490 -747 31 491 -747 31 490 -743 32 490 -743 32 489 -768 4 498 -763 17 494 -763 16 495 -761 24 492 -760 24 493 -758 32 491 -757 31 492 -756 39 489 -755 38 491 -754 45 488 -753 45 489 -752 52 487 -751 51 487 -749 57 485 -748 56 484 -766 4 499 -764 17 493 -766 16 491 -763 23 488 -765 22 486 -761 27 482 -763 28 481 -759 30 476 -760 31 475 -755 31 470 -756 33 470 -751 30 465 -751 32 465 -745 28 461 -745 29 461 -767 4 497 -767 3 499 -762 16 495 -759 23 491 -759 22 492 -755 28 488 -755 27 488 -750 31 485 -751 30 485 -745 32 483 -746 31 482 -739 31 482 -739 31 481 -733 30 481 -733 29 480 -780 2 486 -779 12 484 -779 11 485 -778 17 483 -778 17 484 -777 22 482 -777 23 483 -776 27 481 -775 27 481 -774 32 479 -773 32 480 -772 36 478 -771 35 478 -769 39 475 -769 38 475 -779 3 486 -781 2 485 -779 11 484 -780 11 483 -779 17 482 -780 16 481 -778 21 479 -779 21 479 -776 26 477 -777 26 477 -774 29 474 -775 30 474 -772 32 471 -772 33 472 -769 35 468 -769 35 469 -780 3 486 -779 2 486 -778 11 484 -777 11 485 -776 16 483 -775 16 484 -773 20 482 -773 19 482 -770 23 481 -770 22 480 -766 25 480 -766 25 479 -762 27 478 -763 27 478 -759 28 477 -759 28 476 -778 3 487 -780 2 485 -778 14 484 -780 13 482 -778 20 480 -780 20 479 -779 25 475 -780 25 475 -778 29 469 -779 30 469 -775 31 463 -776 32 464 -772 31 457 -772 33 458 -768 31 452 -767 32 452 -779 2 487 -777 13 484 -776 13 484 -775 20 482 -774 19 482 -772 25 479 -772 24 478 -768 28 475 -768 27 474 -762 29 472 -763 29 471 -757 29 469 -758 29 468 -752 27 467 -752 27 466 -722 0 580 -717 10 578 -715 16 577 -715 16 578 -712 21 576 -712 21 577 -709 26 575 -709 26 576 -706 31 575 -706 31 576 -703 35 575 -703 34 576 -699 37 575 -699 37 576 -721 0 580 -722 0 579 -717 10 577 -718 10 576 -715 15 575 -715 15 574 -712 20 574 -712 20 572 -708 24 573 -708 24 572 -704 27 571 -705 28 571 -700 30 571 -700 31 570 -695 32 570 -696 33 570 -717 10 580 -714 15 579 -714 15 580 -711 20 580 -711 19 580 -707 23 581 -707 22 581 -704 25 583 -704 25 582 -700 27 584 -700 26 583 -697 28 586 -696 28 585 -721 0 581 -716 12 578 -716 12 579 -713 20 578 -713 20 580 -710 27 578 -710 27 580 -708 34 578 -707 34 580 -706 41 578 -705 41 580 -703 47 578 -702 47 579 -700 53 578 -698 52 578 -721 0 582 -716 12 577 -717 12 575 -713 19 574 -714 18 572 -708 23 569 -710 23 568 -703 26 565 -704 27 564 -697 27 562 -698 28 561 -691 26 560 -691 28 560 -684 24 559 -684 25 560 -721 0 579 -722 0 581 -716 12 580 -712 19 578 -711 18 579 -706 24 578 -706 23 577 -701 27 578 -701 26 577 -695 28 578 -695 27 577 -689 27 580 -689 27 579 -684 25 582 -683 25 581 -726 -1 563 -727 -1 564 -725 7 563 -724 13 562 -724 13 563 -722 18 561 -722 18 562 -721 23 561 -720 23 562 -718 28 561 -718 27 562 -716 32 560 -715 31 561 -712 35 560 -711 34 560 -726 -1 564 -727 -1 563 -725 7 562 -725 7 561 -723 12 560 -724 12 559 -721 17 559 -722 17 558 -719 21 557 -720 22 557 -716 25 556 -717 26 556 -712 28 555 -713 29 555 -708 30 553 -709 31 554 -724 7 563 -724 7 564 -722 12 563 -721 11 564 -719 16 564 -719 15 563 -715 19 564 -715 18 564 -712 21 565 -711 21 564 -708 23 566 -708 22 565 -704 23 566 -726 0 565 -724 9 562 -725 9 560 -722 16 559 -724 15 557 -720 21 554 -721 21 553 -716 24 550 -718 25 550 -711 26 546 -712 28 546 -705 27 543 -706 29 543 -699 26 540 -699 28 541 -726 0 563 -726 -1 565 -723 9 563 -723 8 564 -720 16 563 -719 14 563 -716 21 561 -715 19 561 -710 24 560 -710 23 559 -704 25 560 -704 24 558 -698 25 560 -698 24 559 -693 23 561 -692 23 560 -884 0 524 -889 10 526 -891 16 527 -891 16 526 -894 21 528 -894 21 527 -897 26 528 -897 26 527 -900 31 528 -900 31 527 -903 35 528 -904 34 528 -907 37 528 -908 37 528 -885 0 523 -884 0 525 -889 10 527 -889 10 528 -892 15 528 -891 15 530 -895 20 530 -894 20 531 -898 24 531 -898 24 532 -902 27 532 -902 28 533 -906 30 533 -906 31 533 -911 32 534 -911 33 533 -884 0 523 -889 10 524 -892 15 525 -892 15 524 -896 20 524 -895 19 524 -899 23 523 -899 22 523 -903 25 521 -903 25 522 -906 27 519 -906 26 520 -909 28 518 -910 28 519 -890 12 525 -890 12 524 -893 20 526 -893 20 524 -896 27 525 -896 27 523 -898 34 525 -899 34 523 -900 41 525 -901 41 524 -903 47 525 -904 47 525 -907 53 525 -908 52 525 -885 0 522 -890 12 526 -889 12 529 -894 19 530 -893 18 532 -898 23 534 -897 23 536 -903 26 538 -902 27 539 -909 27 541 -909 28 542 -916 26 543 -916 28 543 -922 24 544 -922 25 544 -885 0 524 -884 0 522 -895 19 525 -895 18 525 -900 24 526 -900 23 526 -905 27 526 -905 26 527 -911 28 525 -911 27 526 -917 27 523 -917 27 524 -922 25 521 -923 25 522 -880 -1 541 -880 -1 540 -882 7 541 -881 7 541 -883 13 542 -882 13 541 -884 18 543 -884 18 541 -886 23 543 -886 23 542 -888 28 543 -889 27 542 -891 32 543 -891 31 543 -894 35 544 -895 34 544 -882 7 542 -881 7 543 -883 12 543 -882 12 545 -885 17 545 -884 17 546 -888 21 546 -887 22 547 -891 25 548 -890 26 548 -894 28 549 -894 29 549 -898 30 550 -898 31 550 -883 7 540 -884 12 541 -885 11 540 -888 16 540 -888 15 540 -891 19 540 -891 18 540 -895 21 539 -899 23 538 -899 22 539 -902 23 537 -903 23 538 -881 0 539 -882 9 542 -882 9 544 -884 16 545 -883 15 547 -887 21 549 -885 21 550 -890 24 554 -889 25 554 -895 26 558 -894 28 558 -901 27 561 -901 29 561 -908 26 563 -908 28 563 -880 0 540 -880 -1 539 -883 9 541 -884 8 540 -886 16 541 -887 14 541 -891 21 542 -891 19 543 -896 24 543 -896 23 544 -902 25 544 -902 24 545 -908 25 543 -908 24 545 -914 23 542 -914 23 543 -879 0 480 -879 0 479 -884 10 479 -887 16 479 -886 16 478 -889 21 479 -889 21 478 -892 26 478 -892 26 477 -895 31 477 -895 31 475 -898 35 475 -898 34 474 -902 37 473 -884 10 480 -885 10 481 -887 15 480 -888 15 482 -891 20 480 -891 20 481 -895 24 480 -895 24 481 -899 27 479 -898 28 479 -903 30 478 -902 31 478 -907 32 476 -907 33 476 -880 0 480 -884 10 477 -886 15 477 -886 15 476 -889 20 474 -889 19 474 -892 23 472 -892 22 472 -894 25 469 -896 27 466 -897 26 466 -899 28 463 -879 0 478 -885 12 478 -884 12 477 -888 20 477 -887 20 475 -890 27 475 -889 27 474 -892 34 474 -892 34 472 -894 41 473 -894 41 472 -896 47 472 -897 47 471 -900 53 471 -901 52 470 -879 0 477 -885 12 479 -886 12 481 -890 19 481 -890 18 483 -896 23 483 -895 23 485 -902 26 484 -902 27 485 -909 27 484 -909 28 485 -916 26 483 -916 28 483 -922 24 481 -922 25 480 -878 0 478 -884 12 476 -889 19 476 -889 18 475 -894 24 474 -894 23 475 -899 27 472 -899 26 473 -904 28 468 -904 27 469 -908 27 464 -909 27 465 -912 25 460 -913 25 460 -882 -1 496 -884 7 496 -885 13 496 -885 13 495 -887 18 496 -887 18 495 -889 23 496 -889 23 495 -891 28 495 -891 27 494 -893 32 494 -894 31 493 -897 35 493 -897 34 492 -882 -1 495 -882 -1 497 -884 7 497 -885 7 498 -887 12 497 -887 12 499 -889 17 498 -889 17 499 -892 21 498 -892 22 499 -895 25 498 -895 26 498 -899 28 498 -898 29 498 -903 30 497 -903 31 497 -885 7 494 -886 12 494 -887 11 494 -889 16 492 -889 15 492 -892 19 490 -892 18 491 -895 21 488 -895 21 489 -898 23 486 -899 22 486 -901 23 483 -902 23 484 -882 0 494 -885 9 496 -885 9 498 -888 16 498 -888 15 500 -892 21 501 -891 21 503 -898 24 503 -896 25 504 -904 26 505 -903 28 505 -911 27 505 -910 29 505 -917 26 504 -917 28 504 -882 0 496 -882 -1 495 -885 9 495 -886 8 494 -888 16 494 -889 14 494 -893 21 493 -894 19 493 -898 24 492 -899 23 493 -904 25 489 -904 24 490 -909 25 486 -910 24 487 -913 23 483 -914 23 483 918 -6 -264 919 -6 -264 920 5 -266 920 11 -267 921 11 -267 921 17 -269 922 17 -268 922 22 -270 923 22 -270 924 27 -272 925 27 -271 926 32 -274 927 31 -274 928 35 -276 928 35 -277 919 5 -266 918 5 -267 919 11 -268 918 11 -269 920 16 -271 918 16 -271 921 21 -273 920 21 -273 922 25 -276 921 26 -276 923 28 -280 923 29 -279 925 31 -283 925 32 -283 919 -7 -263 922 4 -266 923 10 -267 925 15 -268 925 14 -268 928 19 -270 928 18 -270 932 21 -271 931 21 -272 935 23 -273 934 23 -274 938 25 -275 937 25 -276 920 -6 -264 921 7 -266 922 7 -266 922 15 -267 924 15 -266 924 23 -268 926 22 -267 926 30 -268 928 30 -268 927 37 -268 929 37 -269 929 44 -269 930 43 -270 930 49 -271 931 49 -272 921 -6 -263 920 7 -267 918 7 -268 919 15 -270 917 14 -271 918 20 -275 916 21 -275 917 24 -281 916 25 -280 918 27 -287 917 28 -287 920 27 -294 919 29 -293 922 27 -300 923 28 -299 920 -6 -263 923 6 -266 923 14 -269 924 13 -269 926 20 -272 925 19 -272 929 24 -276 928 23 -277 933 26 -280 932 25 -281 937 26 -284 936 26 -285 942 25 -288 941 25 -289 902 -5 -269 903 -6 -269 903 3 -269 903 3 -268 903 9 -268 904 9 -268 903 14 -269 904 14 -268 904 19 -270 905 19 -269 905 24 -270 906 24 -270 906 28 -272 907 28 -272 908 32 -274 908 32 -275 903 -5 -269 902 -6 -269 902 3 -269 901 3 -269 902 8 -270 900 8 -270 902 14 -271 900 14 -271 902 18 -273 901 19 -273 902 23 -276 902 23 -275 903 26 -278 903 27 -278 904 29 -282 905 30 -281 904 2 -269 905 8 -269 906 7 -270 907 12 -271 907 11 -271 909 16 -273 909 15 -274 912 18 -275 912 18 -276 915 20 -277 914 20 -278 918 22 -280 917 22 -281 904 -5 -268 903 5 -269 901 5 -270 901 12 -271 899 12 -271 899 18 -274 897 18 -273 897 23 -278 896 24 -277 897 26 -284 896 28 -283 897 28 -291 897 30 -290 898 29 -297 899 30 -297 904 -6 -269 904 5 -269 905 4 -269 905 12 -271 906 11 -271 907 18 -274 907 17 -275 909 22 -278 908 21 -279 912 24 -283 911 24 -284 915 25 -288 914 25 -289 919 24 -292 919 24 -293 894 2 -139 891 14 -139 892 14 -139 890 20 -139 890 20 -140 889 26 -139 889 26 -140 887 31 -139 887 31 -141 885 37 -140 885 36 -142 882 41 -141 882 41 -142 879 44 -142 878 44 -143 894 2 -140 894 2 -138 891 14 -138 891 14 -137 890 20 -137 890 20 -136 887 25 -137 887 25 -136 884 30 -137 885 30 -136 881 34 -137 882 35 -136 878 38 -137 873 40 -137 874 41 -138 891 14 -141 890 20 -141 890 19 -142 887 24 -143 887 23 -143 885 28 -145 885 27 -145 882 31 -148 882 30 -147 879 33 -150 879 32 -149 876 34 -152 876 34 -151 894 3 -139 891 17 -140 891 16 -141 889 25 -141 890 24 -143 888 32 -142 888 32 -144 887 39 -144 887 39 -146 887 46 -145 886 46 -146 885 53 -146 884 52 -147 883 59 -147 882 58 -147 894 3 -141 891 17 -139 891 16 -136 888 24 -137 888 23 -134 884 30 -133 885 30 -132 879 34 -131 880 35 -130 873 36 -129 874 38 -128 866 37 -128 867 38 -128 860 36 -128 860 37 -129 891 16 -140 891 16 -142 888 24 -141 888 23 -142 884 30 -142 883 28 -142 879 34 -143 878 32 -142 874 36 -145 873 35 -144 868 35 -148 867 35 -147 863 34 -151 862 34 -150 896 3 -122 896 12 -122 896 12 -123 896 18 -122 896 18 -123 895 23 -122 896 23 -124 895 28 -123 894 28 -124 893 33 -124 893 33 -125 891 38 -124 891 37 -125 888 41 -125 896 3 -123 896 2 -121 896 12 -120 895 18 -121 895 18 -119 894 23 -120 894 23 -119 892 28 -120 893 28 -119 889 32 -119 890 32 -119 887 36 -119 883 39 -119 896 3 -121 896 2 -122 895 12 -123 895 12 -124 894 17 -124 892 22 -125 891 21 -125 889 25 -127 889 24 -126 886 28 -129 886 27 -128 883 30 -130 882 30 -129 879 31 -132 879 31 -131 895 3 -124 895 14 -122 896 14 -120 894 21 -120 895 21 -118 892 27 -117 894 27 -115 889 32 -113 890 33 -113 884 36 -111 885 37 -110 878 38 -108 879 39 -109 871 38 -107 871 39 -108 895 2 -123 895 14 -123 894 13 -124 893 21 -124 892 20 -124 890 27 -124 889 26 -123 885 31 -124 884 30 -123 879 34 -125 879 33 -124 873 34 -127 873 34 -125 868 33 -129 867 34 -128 884 3 -174 883 2 -175 881 15 -175 879 21 -175 880 21 -176 878 27 -175 878 27 -176 876 32 -175 876 32 -176 874 37 -176 874 37 -177 871 42 -177 871 41 -178 868 45 -178 868 44 -178 883 3 -175 884 2 -174 881 15 -174 881 14 -172 879 21 -173 879 20 -172 877 26 -173 877 26 -171 874 31 -172 871 35 -172 867 38 -172 867 39 -172 863 41 -173 863 42 -173 883 3 -174 881 14 -177 879 20 -177 879 19 -178 876 25 -179 876 24 -179 874 28 -181 874 28 -180 871 31 -183 868 33 -186 868 33 -185 865 35 -188 865 35 -187 884 3 -175 883 2 -176 880 17 -176 880 17 -177 878 25 -177 879 25 -178 877 33 -178 877 32 -180 876 40 -179 876 40 -181 876 47 -180 875 47 -182 874 53 -181 873 53 -182 872 59 -182 871 59 -182 883 3 -177 880 17 -175 880 17 -172 877 24 -172 878 24 -170 874 30 -169 875 30 -167 869 34 -166 870 35 -165 863 37 -164 863 38 -164 856 37 -163 856 39 -163 849 37 -163 849 38 -164 884 2 -176 880 16 -177 877 24 -177 877 23 -178 873 30 -178 873 29 -177 868 34 -179 868 33 -178 863 36 -181 862 35 -179 857 36 -183 857 36 -182 852 35 -186 851 35 -185 886 3 -158 886 13 -158 886 12 -159 886 18 -158 886 18 -160 885 24 -158 885 24 -160 884 29 -159 884 29 -160 883 34 -160 883 34 -161 881 38 -160 880 38 -161 878 42 -160 877 41 -161 885 3 -159 886 3 -157 886 12 -156 885 18 -157 885 18 -155 884 23 -156 884 24 -155 882 28 -156 883 29 -155 879 32 -155 880 33 -155 876 36 -155 877 37 -155 873 39 -154 873 40 -155 886 4 -157 885 3 -158 885 13 -159 885 12 -160 884 18 -160 883 17 -160 882 22 -161 881 21 -161 879 26 -163 878 25 -162 876 28 -164 875 28 -163 872 30 -166 872 30 -165 869 32 -167 869 32 -166 885 4 -160 885 15 -158 886 14 -156 884 22 -156 885 22 -154 882 28 -153 884 28 -151 879 33 -149 881 33 -149 874 36 -146 875 37 -146 868 38 -144 869 40 -144 861 39 -142 862 40 -143 886 4 -158 885 3 -159 885 15 -159 884 14 -160 883 22 -160 882 21 -160 879 28 -160 878 26 -159 875 32 -160 874 31 -159 869 34 -161 869 34 -159 863 35 -162 863 35 -161 857 34 -164 857 34 -163 241 2 -895 243 14 -893 242 14 -893 244 20 -892 243 20 -892 245 26 -891 244 26 -891 246 31 -890 245 31 -889 246 37 -888 246 36 -887 248 41 -885 247 41 -884 250 44 -882 249 44 -882 240 2 -894 241 2 -896 243 14 -894 244 14 -895 245 20 -893 246 20 -894 247 25 -892 248 25 -893 249 30 -890 249 30 -891 251 34 -888 251 35 -889 254 38 -885 254 38 -886 257 40 -882 256 41 -882 240 2 -895 241 14 -892 242 20 -890 242 19 -890 243 24 -887 243 23 -887 243 28 -884 244 27 -884 244 31 -880 244 30 -881 244 33 -877 245 32 -877 245 34 -873 246 34 -874 240 3 -895 242 17 -892 241 16 -891 243 25 -890 241 24 -889 243 32 -888 241 32 -887 242 39 -887 241 39 -885 242 46 -886 242 46 -884 242 53 -884 243 52 -883 244 59 -882 245 58 -881 239 3 -893 243 17 -893 245 16 -895 247 24 -893 248 23 -895 251 30 -892 252 30 -894 257 34 -891 257 35 -893 263 36 -888 263 38 -889 268 37 -885 268 38 -885 273 36 -880 273 37 -880 241 3 -895 239 2 -894 242 16 -892 244 24 -889 243 23 -888 246 30 -886 247 28 -886 249 34 -882 250 32 -882 251 36 -876 253 35 -877 254 35 -871 255 35 -871 256 34 -865 257 34 -865 251 3 -909 250 3 -909 250 12 -908 250 18 -908 249 18 -908 250 23 -908 250 23 -907 251 28 -907 250 28 -906 251 33 -906 251 33 -905 252 38 -904 252 37 -903 254 41 -902 255 41 -901 250 3 -908 251 2 -910 251 12 -909 252 12 -910 252 18 -909 253 18 -910 253 23 -909 253 23 -910 255 28 -908 255 28 -909 257 32 -907 256 32 -907 259 36 -905 262 39 -903 250 2 -908 250 12 -907 250 17 -906 251 17 -905 251 22 -904 252 21 -904 252 25 -901 253 24 -901 253 28 -897 254 27 -898 255 30 -894 256 30 -895 256 31 -891 257 31 -891 250 3 -907 251 14 -908 252 14 -910 253 21 -909 254 21 -911 257 27 -910 256 27 -912 261 32 -910 261 33 -912 267 36 -909 266 37 -910 273 38 -907 272 39 -907 279 38 -903 278 39 -903 250 2 -908 250 14 -907 250 13 -906 251 21 -905 252 20 -905 254 27 -903 255 26 -903 257 31 -900 258 30 -900 261 34 -895 262 33 -896 264 34 -890 265 34 -891 267 33 -885 268 34 -886 215 3 -884 215 2 -884 214 15 -882 214 21 -880 213 21 -881 214 27 -879 213 27 -879 213 32 -877 212 32 -878 212 37 -875 211 37 -876 210 42 -873 209 41 -873 209 45 -870 208 44 -870 214 3 -884 216 2 -884 215 15 -882 216 14 -881 215 21 -880 217 20 -880 215 26 -877 217 26 -877 215 31 -875 216 31 -875 215 35 -871 215 35 -872 214 38 -868 214 39 -868 213 41 -864 213 42 -864 216 3 -884 214 2 -885 212 14 -882 212 20 -880 211 19 -880 210 25 -878 210 24 -878 207 28 -876 204 31 -874 205 31 -873 201 33 -871 202 33 -871 199 35 -869 200 35 -868 215 3 -885 213 2 -884 213 17 -881 212 17 -882 212 25 -880 210 25 -881 210 33 -879 208 32 -880 209 40 -878 207 40 -878 208 47 -878 206 47 -877 206 53 -877 206 53 -876 205 59 -874 205 59 -873 213 3 -884 214 17 -881 217 17 -881 216 24 -878 218 24 -878 218 30 -874 220 30 -874 220 34 -869 222 35 -869 221 37 -862 222 38 -863 221 37 -855 221 39 -856 220 37 -849 220 38 -849 213 2 -885 211 16 -881 211 24 -879 211 23 -878 210 30 -875 210 29 -874 208 34 -870 209 33 -870 205 36 -865 206 35 -864 202 36 -860 203 36 -859 198 35 -855 199 35 -854 232 3 -884 231 13 -884 231 12 -884 231 18 -884 230 18 -884 231 24 -883 230 24 -884 230 29 -883 229 29 -883 230 34 -881 228 34 -881 229 38 -880 228 38 -879 228 42 -877 227 41 -876 231 3 -884 233 3 -884 232 13 -884 233 12 -883 233 18 -883 234 18 -883 233 23 -881 234 24 -882 233 28 -879 234 29 -880 233 32 -877 234 33 -878 233 36 -874 233 37 -875 233 39 -870 233 40 -871 232 4 -884 231 13 -883 230 12 -883 229 18 -882 229 17 -882 228 22 -880 228 21 -880 226 26 -878 226 25 -877 224 28 -875 222 30 -872 220 32 -869 220 32 -868 230 4 -883 231 15 -883 234 14 -883 233 22 -882 235 22 -883 236 28 -879 238 28 -881 239 33 -875 240 33 -877 241 36 -870 241 37 -871 242 38 -864 242 40 -865 243 39 -857 242 40 -857 230 3 -883 230 15 -883 229 14 -882 229 22 -881 229 21 -880 229 28 -878 229 26 -877 228 32 -873 229 31 -872 226 34 -868 227 34 -867 224 35 -862 225 35 -861 221 34 -857 222 34 -856 -47 -7 -975 -47 -8 -975 -45 4 -977 -44 10 -978 -44 10 -977 -43 15 -980 -43 16 -978 -42 21 -981 -41 21 -980 -40 26 -981 -39 26 -980 -37 30 -982 -34 34 -984 -33 33 -983 -46 -7 -974 -48 -8 -975 -46 4 -978 -46 3 -979 -45 9 -980 -46 9 -981 -43 14 -982 -44 15 -983 -41 19 -984 -42 20 -985 -39 23 -986 -39 24 -986 -36 27 -988 -32 29 -990 -32 30 -990 -47 -8 -974 -44 3 -975 -43 9 -977 -42 9 -976 -40 14 -977 -40 13 -977 -37 18 -977 -37 17 -977 -33 21 -976 -33 20 -977 -30 23 -976 -30 23 -977 -26 25 -976 -26 24 -977 -47 -7 -974 -44 6 -977 -44 6 -976 -43 14 -977 -42 14 -976 -41 22 -978 -40 22 -976 -40 29 -978 -39 29 -976 -39 36 -978 -38 36 -977 -38 43 -978 -37 42 -978 -36 49 -979 -35 48 -980 -46 -7 -973 -45 6 -977 -46 5 -980 -44 13 -982 -46 12 -983 -43 18 -987 -44 18 -988 -40 22 -992 -42 23 -993 -36 24 -997 -37 26 -997 -31 25 -1002 -31 26 -1002 -25 24 -1005 -25 25 -1005 -43 5 -975 -41 13 -978 -41 12 -977 -38 19 -980 -38 18 -980 -33 23 -982 -33 22 -983 -28 25 -983 -28 24 -984 -22 26 -984 -22 25 -985 -15 25 -984 -15 25 -985 -58 -8 -988 -58 0 -988 -58 6 -989 -58 6 -988 -58 11 -989 -57 11 -988 -57 16 -990 -56 16 -989 -56 21 -990 -55 21 -990 -54 26 -991 -53 25 -991 -52 29 -993 -51 29 -993 -57 -8 -987 -58 -9 -988 -58 0 -989 -59 0 -990 -58 5 -990 -59 5 -991 -58 10 -992 -59 11 -993 -57 15 -994 -58 15 -994 -55 19 -996 -56 20 -996 -53 23 -998 -54 24 -998 -50 26 -1001 -50 27 -1000 -57 -9 -987 -57 0 -988 -56 0 -988 -56 5 -988 -55 5 -988 -53 10 -989 -53 9 -989 -50 13 -989 -50 13 -990 -47 16 -990 -47 16 -991 -43 18 -990 -44 18 -991 -40 20 -991 -40 20 -992 -56 -8 -986 -57 2 -989 -59 2 -990 -58 9 -992 -60 8 -993 -59 15 -996 -61 15 -996 -58 19 -1001 -59 20 -1001 -55 22 -1007 -56 23 -1006 -51 24 -1012 -52 25 -1011 -46 24 -1017 -46 26 -1016 -57 -9 -987 -57 2 -988 -55 1 -988 -55 9 -989 -54 8 -990 -52 15 -991 -52 14 -992 -48 19 -994 -48 18 -995 -43 22 -997 -44 21 -998 -38 22 -999 -38 22 -1000 -32 21 -1000 -32 22 -1001 -72 -7 -993 -71 -8 -994 -72 4 -996 -71 4 -996 -72 10 -998 -71 10 -997 -72 15 -1000 -71 16 -999 -71 21 -1001 -70 21 -1001 -70 26 -1003 -69 26 -1003 -69 30 -1006 -68 30 -1006 -68 34 -1009 -67 33 -1009 -71 -7 -993 -72 -8 -994 -72 4 -997 -74 3 -997 -73 9 -999 -75 9 -999 -73 14 -1001 -75 15 -1001 -73 19 -1004 -74 20 -1004 -73 23 -1007 -73 24 -1007 -72 27 -1011 -71 29 -1015 -70 30 -1015 -72 -7 -994 -71 -8 -993 -70 3 -996 -70 9 -998 -69 9 -998 -67 14 -1000 -67 13 -1000 -65 18 -1002 -65 17 -1002 -62 21 -1004 -63 20 -1004 -59 23 -1006 -60 23 -1006 -57 25 -1008 -57 24 -1009 -70 -7 -993 -71 6 -997 -70 6 -996 -70 14 -998 -68 14 -997 -69 22 -999 -67 22 -999 -68 29 -1000 -66 29 -1000 -68 36 -1001 -66 36 -1001 -67 43 -1002 -66 42 -1003 -66 49 -1004 -65 48 -1005 -69 -7 -993 -72 -8 -993 -74 5 -998 -74 13 -1001 -76 12 -1001 -76 18 -1005 -78 18 -1005 -78 22 -1011 -79 23 -1010 -78 24 -1017 -79 26 -1017 -77 25 -1024 -78 26 -1024 -75 24 -1031 -75 25 -1031 -71 -7 -994 -70 6 -997 -69 5 -996 -69 13 -1000 -68 12 -1000 -68 19 -1003 -68 18 -1004 -66 23 -1008 -66 22 -1009 -62 25 -1013 -64 24 -1013 -58 26 -1017 -59 25 -1018 -54 25 -1021 -55 25 -1022 -88 -8 -996 -88 0 -996 -89 6 -997 -88 6 -996 -89 11 -997 -88 11 -997 -89 16 -998 -88 16 -998 -88 21 -999 -87 21 -999 -88 26 -1001 -87 25 -1002 -87 29 -1004 -86 29 -1005 -87 -8 -996 -89 -9 -996 -89 0 -997 -91 0 -997 -90 5 -998 -92 5 -998 -91 10 -999 -92 11 -999 -91 15 -1002 -92 15 -1001 -91 19 -1004 -92 20 -1003 -91 23 -1007 -92 24 -1006 -91 26 -1011 -91 27 -1010 -89 -8 -996 -87 -9 -996 -88 0 -997 -87 0 -997 -87 5 -998 -86 5 -998 -85 10 -1000 -85 9 -1000 -84 13 -1002 -84 13 -1003 -81 16 -1005 -82 16 -1005 -79 18 -1008 -80 18 -1008 -77 20 -1011 -78 20 -1011 -86 -8 -996 -89 2 -997 -91 2 -997 -91 9 -999 -93 8 -998 -94 15 -1002 -96 15 -1001 -97 19 -1006 -98 20 -1005 -99 22 -1012 -99 23 -1011 -99 24 -1019 -99 25 -1018 -99 24 -1025 -98 26 -1025 -87 -9 -996 -88 2 -997 -86 1 -998 -87 9 -999 -86 8 -1000 -86 15 -1003 -87 14 -1004 -85 19 -1007 -86 18 -1008 -83 22 -1013 -84 21 -1013 -80 22 -1018 -81 22 -1019 -77 21 -1023 -78 22 -1023 -173 -6 -920 -173 -7 -920 -175 5 -919 -176 11 -918 -177 11 -918 -177 17 -917 -178 17 -918 -179 22 -916 -180 22 -917 -181 27 -915 -182 27 -916 -184 32 -914 -184 31 -914 -187 35 -912 -187 34 -913 -174 -6 -921 -172 -7 -920 -175 5 -918 -174 5 -917 -176 11 -916 -174 10 -915 -177 16 -914 -176 16 -914 -179 21 -912 -178 21 -912 -181 25 -910 -180 26 -910 -184 28 -908 -184 29 -908 -187 31 -905 -187 32 -906 -174 -7 -921 -176 5 -919 -177 4 -920 -178 10 -919 -179 10 -919 -181 15 -919 -181 14 -919 -184 18 -918 -188 21 -918 -192 23 -918 -191 23 -917 -195 25 -918 -195 25 -917 -173 -6 -921 -176 7 -919 -177 7 -920 -178 15 -918 -179 15 -920 -180 23 -919 -181 22 -920 -182 30 -919 -183 30 -920 -183 37 -919 -184 37 -920 -184 44 -919 -186 43 -919 -187 49 -918 -188 49 -918 -175 -6 -922 -176 7 -918 -174 7 -916 -176 14 -915 -174 14 -913 -177 20 -910 -175 20 -909 -178 24 -904 -177 25 -904 -182 27 -899 -181 28 -899 -186 27 -893 -186 29 -894 -191 27 -889 -191 28 -889 -174 -6 -922 -177 7 -919 -178 6 -920 -180 14 -918 -180 13 -918 -183 20 -916 -183 19 -915 -187 24 -913 -187 23 -912 -193 26 -911 -192 25 -910 -198 26 -909 -198 26 -908 -204 25 -908 -204 25 -906 -160 -6 -909 -161 3 -910 -161 9 -910 -161 8 -911 -161 14 -909 -162 14 -911 -162 19 -909 -163 19 -910 -163 24 -909 -164 24 -909 -165 28 -908 -166 28 -908 -168 32 -906 -168 31 -906 -161 -5 -910 -160 3 -909 -159 2 -908 -160 8 -908 -159 8 -907 -161 13 -907 -159 14 -906 -162 18 -905 -161 19 -905 -163 23 -903 -162 23 -904 -165 26 -901 -164 27 -901 -167 29 -898 -167 30 -899 -160 -5 -909 -161 -6 -910 -162 2 -910 -163 8 -910 -164 7 -910 -165 12 -909 -166 11 -909 -168 16 -908 -168 15 -908 -172 18 -907 -175 20 -906 -175 20 -905 -179 22 -905 -178 22 -904 -162 -5 -910 -161 5 -909 -159 4 -908 -160 12 -907 -158 12 -906 -159 18 -903 -157 18 -903 -159 23 -898 -158 24 -899 -161 26 -893 -160 28 -894 -164 28 -887 -163 30 -888 -168 29 -882 -168 30 -882 -162 -6 -910 -162 5 -910 -163 4 -910 -164 12 -909 -165 11 -908 -166 18 -907 -166 16 -906 -170 22 -904 -170 21 -902 -175 24 -900 -174 24 -899 -180 25 -897 -179 25 -896 -185 24 -895 -185 24 -894 -311 3 -969 -311 2 -970 -312 14 -974 -313 20 -976 -312 20 -976 -313 25 -979 -312 25 -979 -313 30 -982 -312 30 -981 -313 35 -984 -311 35 -984 -312 39 -988 -311 39 -988 -312 42 -991 -311 41 -992 -310 3 -970 -312 2 -969 -314 13 -974 -314 19 -977 -315 19 -977 -315 24 -980 -316 24 -980 -316 28 -983 -317 29 -983 -316 32 -987 -317 32 -987 -316 35 -991 -316 36 -996 -316 37 -996 -312 3 -970 -310 2 -969 -311 14 -974 -310 14 -974 -310 19 -977 -309 19 -977 -309 23 -980 -307 27 -983 -307 26 -983 -305 29 -986 -306 29 -986 -303 31 -989 -304 31 -990 -301 32 -992 -302 32 -993 -309 2 -970 -311 16 -975 -310 16 -975 -311 24 -978 -309 24 -978 -310 31 -980 -308 31 -980 -310 39 -982 -308 38 -983 -309 45 -984 -308 45 -985 -309 52 -986 -308 51 -988 -309 57 -990 -309 56 -991 -309 3 -970 -311 2 -969 -312 16 -975 -314 15 -975 -315 23 -979 -317 22 -978 -319 27 -984 -321 27 -983 -322 30 -989 -323 31 -988 -324 31 -995 -325 33 -995 -325 31 -1002 -325 33 -1002 -325 29 -1009 -324 30 -1009 -311 3 -970 -309 2 -969 -309 15 -975 -310 23 -979 -310 22 -979 -310 28 -984 -311 27 -984 -309 31 -990 -310 30 -990 -308 33 -995 -309 32 -995 -305 32 -1001 -306 31 -1001 -302 30 -1006 -303 30 -1006 -328 2 -968 -327 1 -968 -328 11 -969 -327 11 -969 -328 17 -970 -327 17 -970 -329 22 -971 -328 22 -971 -329 27 -973 -328 27 -973 -329 31 -975 -328 31 -975 -329 36 -978 -328 35 -978 -329 39 -981 -328 38 -982 -327 2 -968 -328 1 -967 -329 11 -969 -330 10 -969 -330 16 -971 -331 16 -970 -331 21 -973 -332 21 -972 -332 25 -975 -333 26 -975 -333 29 -978 -333 30 -978 -334 32 -982 -334 33 -981 -335 35 -986 -334 35 -985 -328 2 -967 -327 10 -970 -327 16 -972 -326 15 -972 -326 20 -974 -326 19 -975 -325 23 -978 -325 22 -978 -324 25 -981 -324 25 -982 -322 27 -985 -323 27 -985 -321 28 -989 -322 28 -989 -326 2 -968 -328 13 -970 -331 12 -969 -331 19 -972 -333 19 -971 -335 25 -975 -337 25 -973 -339 28 -979 -340 29 -977 -342 31 -984 -343 32 -983 -345 32 -991 -345 33 -990 -346 31 -997 -346 32 -997 -326 1 -968 -327 13 -970 -326 12 -971 -327 19 -973 -327 18 -974 -328 25 -978 -328 23 -978 -328 28 -983 -329 27 -983 -327 30 -989 -329 29 -989 -326 29 -995 -328 29 -995 -324 28 -1000 -325 28 -1001 -270 5 -956 -269 5 -956 -267 16 -960 -266 22 -962 -265 22 -961 -264 27 -964 -264 28 -963 -263 33 -966 -262 33 -965 -260 37 -968 -259 37 -967 -258 41 -970 -257 41 -969 -254 44 -972 -269 16 -961 -266 22 -963 -268 21 -964 -265 26 -966 -266 26 -967 -263 31 -969 -264 31 -970 -260 34 -972 -261 35 -972 -258 37 -975 -258 38 -975 -254 39 -978 -254 40 -978 -270 5 -957 -269 5 -955 -266 16 -959 -264 22 -961 -263 21 -960 -261 26 -962 -261 25 -962 -257 29 -963 -257 28 -963 -253 32 -963 -254 31 -964 -250 34 -964 -250 33 -965 -246 35 -965 -246 35 -966 -268 5 -955 -266 19 -960 -265 18 -959 -264 26 -962 -263 26 -960 -261 34 -963 -260 34 -961 -260 41 -964 -258 41 -963 -258 48 -965 -257 48 -965 -256 54 -967 -255 54 -967 -254 59 -969 -253 59 -969 -266 19 -961 -268 18 -962 -266 25 -966 -268 24 -967 -265 30 -971 -267 30 -972 -263 33 -978 -265 34 -978 -260 34 -984 -261 35 -984 -256 33 -989 -256 35 -989 -251 32 -993 -251 33 -993 -265 19 -960 -264 18 -959 -262 25 -962 -262 24 -962 -259 31 -966 -259 29 -966 -254 34 -969 -255 32 -970 -249 35 -972 -250 34 -973 -243 34 -973 -244 34 -975 -237 33 -975 -238 33 -976 -283 4 -967 -282 4 -966 -282 13 -968 -282 13 -967 -282 19 -969 -281 19 -968 -281 24 -970 -280 24 -969 -280 29 -971 -279 29 -971 -278 34 -973 -277 34 -972 -276 38 -974 -275 37 -974 -274 41 -977 -273 40 -977 -284 13 -969 -282 18 -970 -284 18 -971 -282 23 -973 -283 23 -973 -280 28 -975 -281 28 -975 -279 31 -978 -280 32 -978 -277 35 -981 -275 37 -984 -275 38 -984 -281 13 -968 -280 13 -967 -279 18 -969 -279 17 -969 -277 22 -970 -276 21 -971 -274 25 -972 -270 28 -973 -270 27 -974 -267 29 -975 -267 29 -976 -263 30 -976 -263 30 -977 -281 5 -966 -281 15 -969 -284 15 -970 -282 22 -972 -284 21 -973 -283 27 -977 -285 27 -977 -283 31 -983 -284 32 -982 -281 33 -989 -282 35 -988 -278 34 -995 -279 36 -994 -274 33 -1001 -274 35 -1000 -283 5 -967 -281 4 -966 -281 15 -968 -279 14 -968 -278 22 -970 -278 21 -971 -276 27 -974 -276 26 -975 -272 31 -978 -272 29 -979 -267 32 -981 -268 31 -983 -262 32 -985 -263 31 -986 -257 30 -987 -257 30 -988 -637 6 -630 -637 5 -630 -634 17 -626 -635 17 -626 -633 23 -625 -634 23 -624 -631 28 -622 -633 28 -622 -630 33 -620 -632 33 -620 -630 38 -617 -631 38 -617 -629 42 -614 -630 42 -613 -628 45 -610 -629 44 -610 -638 6 -630 -636 5 -631 -634 17 -627 -632 16 -627 -632 22 -625 -630 22 -625 -630 27 -622 -628 27 -623 -628 31 -619 -627 32 -620 -626 35 -616 -625 35 -616 -624 38 -612 -622 40 -608 -623 40 -608 -636 6 -630 -638 5 -630 -636 17 -626 -635 22 -623 -636 22 -623 -635 27 -620 -635 26 -620 -636 30 -616 -635 29 -616 -637 32 -613 -636 32 -613 -637 34 -609 -636 34 -609 -638 35 -605 -637 35 -605 -638 5 -629 -635 19 -625 -636 19 -625 -634 27 -622 -636 27 -622 -634 34 -620 -636 34 -619 -633 42 -618 -635 41 -617 -633 48 -616 -634 48 -615 -633 55 -614 -633 54 -613 -632 60 -611 -631 59 -609 -639 6 -629 -637 5 -631 -634 19 -625 -632 18 -627 -630 26 -623 -628 25 -624 -624 30 -620 -623 31 -622 -620 33 -616 -619 34 -617 -615 34 -611 -615 36 -612 -612 34 -605 -612 36 -605 -610 32 -599 -610 33 -598 -639 5 -630 -636 18 -625 -634 26 -621 -634 25 -621 -632 31 -617 -632 30 -616 -631 35 -611 -630 33 -611 -631 36 -605 -629 35 -605 -631 35 -599 -630 34 -599 -632 33 -593 -631 33 -593 -622 5 -638 -621 14 -637 -622 14 -637 -620 20 -636 -622 20 -636 -619 25 -635 -621 25 -635 -619 30 -634 -620 30 -633 -618 35 -632 -619 34 -631 -617 39 -629 -618 38 -629 -616 42 -626 -616 41 -625 -623 5 -638 -621 4 -639 -619 13 -638 -619 19 -636 -617 19 -637 -617 24 -635 -616 24 -636 -615 28 -633 -615 29 -634 -613 32 -630 -613 33 -631 -611 35 -627 -611 36 -628 -609 38 -624 -622 5 -639 -623 4 -638 -622 13 -636 -621 19 -634 -622 18 -634 -621 23 -631 -621 22 -631 -621 26 -628 -620 25 -628 -621 28 -624 -620 28 -624 -621 30 -620 -620 30 -620 -621 31 -616 -620 31 -616 -624 5 -637 -622 4 -638 -621 16 -636 -619 15 -638 -617 23 -636 -616 22 -637 -612 28 -634 -612 28 -636 -607 32 -632 -607 32 -633 -602 34 -628 -602 35 -629 -598 35 -623 -598 36 -624 -594 34 -617 -594 35 -617 -623 4 -637 -621 16 -636 -622 15 -634 -620 22 -633 -620 21 -632 -618 28 -629 -617 26 -629 -616 31 -624 -615 30 -624 -614 33 -618 -613 32 -618 -613 32 -612 -612 32 -612 -613 31 -606 -612 31 -606 -942 5 -31 -942 4 -31 -941 16 -36 -940 16 -35 -940 22 -38 -939 22 -37 -939 27 -40 -938 28 -40 -938 32 -43 -937 32 -42 -936 37 -45 -935 37 -44 -934 41 -47 -933 41 -47 -932 44 -51 -931 43 -51 -941 5 -31 -943 4 -31 -943 15 -37 -941 21 -39 -942 21 -40 -940 26 -42 -942 26 -43 -939 30 -46 -940 31 -46 -938 34 -49 -936 37 -53 -934 39 -57 -934 39 -56 -942 5 -32 -941 4 -31 -939 16 -35 -938 21 -37 -937 21 -37 -935 26 -39 -935 25 -39 -932 29 -41 -932 28 -41 -929 31 -43 -925 33 -44 -926 33 -45 -922 34 -46 -922 34 -47 -940 4 -31 -939 18 -36 -939 18 -35 -938 26 -39 -936 26 -37 -936 34 -40 -934 33 -39 -935 41 -42 -933 40 -41 -934 47 -43 -932 47 -43 -932 54 -45 -931 53 -46 -930 59 -48 -929 58 -49 -940 5 -30 -940 18 -37 -942 17 -38 -941 25 -41 -943 24 -42 -942 29 -47 -944 30 -47 -942 32 -54 -944 33 -53 -941 34 -60 -942 35 -60 -938 33 -67 -939 35 -67 -935 31 -72 -935 33 -72 -938 18 -35 -937 25 -39 -936 24 -39 -934 30 -44 -934 29 -44 -931 34 -48 -932 32 -49 -927 35 -52 -928 34 -53 -922 34 -55 -922 34 -57 -916 32 -58 -917 32 -60 -958 4 -38 -957 4 -37 -957 13 -39 -957 13 -38 -957 19 -40 -956 19 -39 -957 24 -41 -956 24 -41 -956 29 -43 -955 29 -42 -955 34 -45 -954 33 -44 -954 38 -47 -953 37 -47 -952 41 -50 -951 40 -50 -958 3 -38 -958 13 -39 -959 12 -40 -958 18 -41 -960 18 -42 -958 23 -44 -959 23 -44 -958 27 -47 -959 28 -46 -957 31 -50 -958 32 -49 -956 34 -53 -956 35 -52 -955 37 -57 -955 37 -56 -957 3 -37 -955 12 -39 -955 18 -41 -954 17 -41 -953 22 -43 -953 21 -43 -950 25 -45 -951 24 -46 -947 27 -47 -948 27 -48 -944 29 -50 -945 29 -51 -942 30 -53 -955 4 -37 -957 15 -40 -959 14 -40 -959 22 -43 -961 21 -43 -961 27 -48 -963 27 -47 -962 31 -53 -963 32 -52 -962 33 -59 -963 34 -58 -961 34 -66 -962 35 -65 -959 33 -73 -959 34 -72 -956 3 -37 -956 15 -40 -955 14 -40 -954 21 -42 -954 20 -43 -953 27 -46 -953 25 -47 -950 30 -51 -951 29 -52 -947 32 -56 -948 31 -57 -943 32 -61 -944 31 -62 -939 30 -64 -939 30 -65 -895 9 -179 -895 8 -179 -890 20 -179 -891 20 -179 -888 26 -179 -888 26 -178 -885 31 -179 -886 31 -178 -883 36 -178 -883 36 -177 -880 41 -177 -881 41 -176 -877 45 -176 -877 45 -175 -874 48 -174 -874 47 -173 -895 9 -178 -895 8 -180 -890 19 -181 -887 25 -180 -887 25 -182 -884 30 -180 -884 30 -182 -880 34 -180 -880 35 -181 -877 38 -179 -877 38 -180 -872 41 -179 -873 41 -179 -868 42 -177 -869 43 -177 -895 9 -180 -895 8 -178 -890 20 -178 -891 20 -177 -888 25 -176 -886 29 -174 -883 33 -172 -883 32 -172 -881 35 -169 -880 35 -169 -878 37 -166 -877 37 -167 -875 38 -163 -875 38 -164 -895 8 -177 -890 22 -178 -890 22 -177 -887 30 -177 -888 30 -175 -885 37 -176 -886 37 -174 -883 45 -175 -883 44 -173 -881 51 -174 -881 51 -172 -879 58 -173 -878 57 -172 -876 63 -172 -875 62 -171 -895 9 -177 -889 22 -179 -889 21 -181 -885 29 -181 -885 28 -183 -879 33 -183 -880 33 -185 -873 36 -185 -874 37 -186 -867 37 -185 -867 39 -186 -860 37 -184 -860 39 -185 -854 35 -182 -853 36 -182 -896 8 -177 -889 22 -178 -890 21 -176 -886 29 -176 -886 28 -175 -881 34 -175 -881 33 -175 -876 37 -172 -876 36 -173 -871 39 -169 -870 38 -170 -866 38 -165 -866 37 -166 -862 36 -161 -861 36 -162 -893 8 -196 -893 7 -195 -891 17 -196 -892 17 -195 -890 23 -196 -891 23 -195 -889 28 -196 -889 28 -195 -887 33 -196 -887 33 -195 -885 37 -195 -885 37 -194 -883 42 -194 -882 41 -193 -879 45 -193 -879 44 -193 -893 8 -195 -893 7 -196 -891 16 -198 -889 22 -197 -889 22 -199 -887 27 -198 -887 27 -199 -884 31 -198 -885 32 -199 -881 35 -198 -882 36 -199 -877 38 -198 -878 39 -198 -873 41 -198 -874 41 -198 -891 17 -195 -891 16 -194 -889 22 -194 -889 21 -193 -886 26 -192 -886 25 -192 -883 29 -191 -883 28 -191 -881 31 -188 -880 31 -189 -877 33 -186 -877 33 -187 -874 34 -184 -874 34 -185 -893 8 -194 -890 19 -196 -890 18 -198 -888 25 -198 -888 25 -200 -884 31 -201 -885 31 -203 -879 34 -204 -880 35 -205 -873 37 -205 -874 38 -206 -866 38 -206 -867 39 -206 -859 37 -206 -859 38 -205 -893 7 -194 -890 19 -195 -890 18 -193 -887 25 -194 -886 24 -193 -883 31 -193 -882 29 -194 -878 34 -192 -877 33 -193 -872 36 -190 -871 35 -191 -867 35 -187 -866 35 -189 -862 34 -184 -861 34 -185 -888 8 -233 -888 7 -233 -884 19 -231 -881 25 -230 -882 25 -230 -879 30 -229 -880 31 -228 -877 36 -227 -878 36 -226 -876 40 -225 -876 40 -224 -873 44 -222 -874 44 -221 -871 47 -219 -888 8 -232 -887 7 -234 -883 19 -231 -882 19 -233 -880 25 -231 -879 24 -232 -877 29 -229 -877 29 -230 -874 33 -227 -874 34 -228 -871 37 -225 -871 38 -226 -868 40 -223 -868 41 -223 -865 42 -219 -865 43 -219 -887 8 -234 -885 19 -230 -883 25 -228 -883 24 -227 -881 29 -225 -882 28 -225 -880 32 -221 -880 31 -222 -879 35 -218 -879 34 -218 -879 37 -214 -878 36 -214 -878 38 -210 -877 38 -211 -883 22 -230 -884 21 -229 -881 29 -228 -883 29 -227 -880 37 -226 -882 37 -224 -879 44 -224 -880 44 -222 -878 51 -222 -878 50 -221 -876 57 -221 -876 56 -219 -874 62 -218 -873 62 -217 -889 8 -231 -883 21 -230 -881 21 -232 -878 28 -230 -877 27 -232 -872 33 -230 -871 33 -232 -866 36 -228 -865 37 -230 -860 37 -226 -859 38 -226 -854 36 -222 -854 38 -222 -849 35 -217 -849 36 -217 -887 8 -233 -889 8 -232 -885 21 -228 -881 28 -226 -881 27 -226 -877 33 -223 -877 32 -223 -874 37 -219 -873 35 -219 -871 38 -214 -870 37 -214 -869 37 -208 -867 37 -208 -867 36 -202 -866 36 -203 -878 7 -247 -876 16 -246 -877 16 -246 -875 22 -246 -876 22 -246 -874 27 -246 -875 27 -245 -873 32 -245 -873 32 -244 -871 37 -243 -872 37 -242 -870 41 -241 -870 40 -240 -867 44 -239 -867 43 -238 -878 7 -246 -877 7 -248 -876 16 -247 -875 16 -248 -874 21 -247 -873 21 -248 -871 26 -246 -871 26 -247 -869 30 -245 -869 31 -246 -866 34 -244 -866 35 -245 -863 37 -242 -863 38 -242 -859 40 -240 -860 41 -240 -877 16 -245 -875 21 -244 -875 20 -243 -874 25 -241 -873 24 -241 -872 28 -238 -871 28 -238 -870 31 -235 -870 30 -235 -869 32 -231 -868 32 -232 -867 33 -228 -866 33 -228 -879 7 -245 -877 7 -247 -876 18 -246 -874 18 -248 -872 25 -247 -871 24 -249 -867 30 -248 -867 30 -250 -862 34 -248 -862 35 -249 -856 36 -246 -856 38 -247 -849 37 -244 -850 39 -244 -843 36 -240 -844 38 -240 -878 8 -247 -878 7 -246 -876 18 -245 -876 17 -244 -874 25 -243 -873 24 -242 -870 30 -240 -869 29 -240 -866 34 -237 -865 32 -237 -862 35 -233 -861 34 -233 -859 35 -228 -857 34 -228 -856 33 -222 -855 33 -223 -899 5 11 -898 5 11 -895 17 8 -893 23 7 -893 23 8 -891 28 5 -891 28 6 -889 33 4 -888 33 5 -886 38 4 -885 38 5 -883 42 3 -882 41 4 -879 45 2 -878 44 2 -898 5 12 -899 5 10 -896 16 6 -893 22 5 -894 22 4 -891 27 3 -891 27 2 -888 31 1 -888 31 0 -884 35 0 -885 35 0 -880 37 -1 -881 38 -1 -876 39 -3 -876 40 -3 -899 5 12 -895 17 9 -894 16 10 -892 22 9 -892 21 9 -888 26 9 -889 25 9 -885 30 9 -885 29 9 -881 32 10 -877 34 11 -877 34 10 -874 35 12 -874 35 11 -899 6 11 -894 19 9 -894 19 10 -891 27 8 -891 27 9 -889 34 7 -888 34 9 -887 41 7 -886 41 9 -885 48 7 -883 48 8 -882 54 6 -881 54 7 -879 60 5 -878 59 5 -898 6 13 -894 19 8 -895 18 5 -892 25 3 -893 25 1 -889 30 -1 -890 30 -2 -885 33 -6 -886 34 -7 -880 34 -10 -880 36 -11 -874 34 -14 -874 35 -14 -868 32 -16 -867 33 -15 -898 6 11 -898 5 13 -893 18 10 -890 26 8 -889 25 8 -885 31 6 -885 30 6 -880 34 5 -880 33 4 -874 36 4 -874 34 3 -868 35 5 -868 34 3 -862 33 6 -862 33 4 -907 5 -3 -907 4 -3 -906 14 -4 -906 14 -3 -905 19 -5 -905 19 -4 -904 25 -6 -904 25 -5 -902 30 -7 -902 30 -5 -901 34 -7 -900 34 -6 -898 38 -8 -897 38 -7 -895 41 -9 -894 41 -9 -906 5 -2 -907 4 -4 -906 14 -5 -907 13 -6 -905 19 -6 -906 19 -8 -903 24 -8 -904 24 -9 -901 28 -10 -902 28 -11 -899 32 -12 -900 33 -12 -896 35 -14 -897 36 -14 -892 37 -16 -893 38 -16 -907 5 -4 -906 4 -2 -905 14 -4 -904 13 -3 -903 19 -4 -902 18 -4 -900 23 -4 -900 22 -4 -896 26 -4 -896 25 -5 -893 28 -4 -893 28 -5 -889 30 -4 -889 30 -5 -885 31 -5 -906 5 -1 -905 16 -5 -906 15 -6 -904 22 -8 -906 22 -10 -903 28 -13 -905 28 -13 -900 31 -18 -902 32 -18 -897 34 -23 -898 35 -23 -892 34 -27 -892 36 -27 -886 34 -31 -886 35 -31 -906 4 -2 -904 16 -4 -903 15 -3 -901 22 -5 -901 21 -5 -898 28 -7 -897 26 -8 -893 31 -9 -893 30 -10 -887 33 -11 -887 32 -12 -881 32 -12 -881 32 -13 -875 31 -12 -875 31 -13 -883 5 49 -882 4 49 -878 16 47 -879 16 47 -876 22 46 -874 27 44 -874 28 46 -872 32 44 -871 33 45 -869 37 43 -868 37 45 -865 41 43 -865 41 44 -862 44 43 -861 44 43 -882 5 50 -883 4 48 -879 16 46 -879 16 45 -876 21 44 -877 21 43 -874 26 43 -874 26 41 -870 30 41 -871 31 40 -867 34 40 -867 35 39 -863 37 38 -863 38 38 -858 39 37 -859 39 38 -883 5 48 -883 4 50 -878 16 49 -875 21 48 -872 26 48 -872 25 48 -869 29 49 -869 28 49 -865 32 51 -865 31 50 -862 33 52 -861 33 51 -858 35 53 -858 34 52 -877 18 47 -877 18 48 -874 26 47 -874 26 49 -872 34 47 -872 33 49 -870 41 47 -869 41 49 -868 48 47 -867 47 48 -866 54 47 -864 53 47 -863 59 46 -861 59 46 -882 5 51 -877 18 46 -878 18 44 -875 25 42 -876 24 40 -871 30 38 -872 30 36 -866 33 33 -867 34 32 -861 34 30 -861 35 29 -854 33 27 -854 35 27 -848 31 26 -848 33 26 -882 5 49 -877 18 49 -873 25 47 -873 24 48 -868 30 46 -868 29 46 -863 34 45 -863 32 44 -857 35 46 -857 34 45 -851 34 47 -851 34 46 -845 33 49 -845 33 48 -889 4 33 -887 13 32 -888 13 33 -887 19 32 -887 19 33 -885 24 31 -885 24 32 -884 29 30 -883 29 31 -882 34 30 -881 33 31 -879 38 29 -878 37 30 -876 41 29 -875 40 29 -888 4 34 -889 4 32 -888 13 30 -886 18 30 -887 18 29 -884 23 28 -885 23 27 -882 27 27 -883 28 26 -879 31 25 -880 32 25 -876 34 23 -877 35 24 -873 37 22 -886 13 33 -885 18 33 -884 17 33 -882 22 33 -881 21 33 -878 25 33 -878 24 33 -874 28 34 -874 27 33 -871 29 34 -870 29 33 -867 30 34 -888 4 35 -886 15 32 -888 15 30 -885 22 28 -887 21 27 -883 27 24 -885 27 23 -880 31 19 -882 32 19 -876 33 15 -877 34 15 -870 34 11 -871 35 11 -864 33 8 -864 35 8 -888 4 34 -886 15 33 -885 14 34 -883 22 32 -882 21 32 -879 27 30 -878 26 30 -874 30 29 -874 29 28 -868 32 28 -868 31 27 -862 32 28 -862 31 26 -856 30 28 -856 30 27 666 0 644 661 11 644 662 11 644 659 17 644 659 17 643 656 22 644 656 23 643 653 27 644 654 27 642 650 32 642 651 32 641 647 36 641 647 35 640 643 39 640 643 38 639 666 0 643 666 0 645 661 11 645 661 11 646 658 16 645 658 16 647 655 21 645 654 21 647 651 25 645 651 26 646 647 29 645 647 29 646 643 31 644 643 32 644 638 33 643 639 34 643 667 0 643 662 11 642 659 17 642 659 16 641 656 21 640 656 20 640 653 24 637 653 23 638 651 26 634 650 26 635 648 28 632 647 28 632 645 29 629 645 29 630 -861 7 199 -861 6 200 -856 18 199 -856 18 200 -854 24 199 -854 24 200 -851 29 199 -852 29 200 -849 34 200 -849 34 201 -846 39 201 -846 39 202 -843 43 202 -843 43 203 -839 46 203 -839 45 204 -861 7 200 -861 6 199 -856 17 197 -853 23 198 -853 23 196 -850 28 198 -850 28 196 -846 32 198 -847 33 197 -843 36 198 -843 36 197 -838 39 199 -839 39 198 -834 41 200 -857 18 201 -854 23 201 -854 23 202 -851 28 203 -851 27 204 -848 31 206 -848 30 206 -846 33 209 -846 33 208 -843 35 211 -841 36 214 -840 36 213 -861 6 201 -855 20 200 -856 20 201 -853 28 201 -853 28 203 -850 35 202 -851 35 204 -849 43 203 -849 42 205 -847 49 204 -847 49 205 -845 56 205 -844 55 206 -842 61 206 -840 60 206 -861 7 202 -855 20 199 -855 19 197 -851 27 197 -851 26 195 -846 31 194 -846 32 193 -840 34 193 -840 35 191 -833 35 192 -833 37 191 -826 35 192 -826 37 192 -820 33 194 -820 34 194 -862 6 201 -856 19 202 -852 27 202 -852 26 202 -847 32 203 -847 31 203 -842 36 205 -841 34 204 -836 37 208 -836 36 207 -832 36 211 -831 35 210 -827 34 216 -826 34 215 -859 6 183 -860 6 183 -858 15 183 -859 15 183 -857 21 182 -858 21 183 -856 26 182 -856 26 183 -854 31 182 -854 31 183 -852 36 183 -852 35 184 -849 40 183 -849 39 184 -846 43 184 -846 42 185 -859 6 184 -860 5 182 -858 15 182 -858 14 180 -856 20 181 -856 20 179 -854 25 180 -854 25 179 -851 29 180 -852 30 179 -848 33 179 -849 34 179 -844 36 179 -845 37 179 -840 39 179 -841 39 180 -860 6 182 -859 5 183 -857 14 184 -856 20 184 -855 19 185 -853 24 185 -853 23 185 -850 27 187 -850 26 187 -847 29 189 -844 31 191 -843 31 191 -840 32 193 -859 6 185 -859 5 182 -857 17 182 -857 16 180 -854 24 180 -855 23 178 -851 29 176 -852 29 175 -846 33 174 -847 34 173 -840 35 172 -841 36 171 -834 36 171 -834 37 170 -827 35 171 -827 36 171 -859 5 184 -857 17 183 -856 16 185 -854 23 184 -853 22 184 -850 29 184 -849 27 184 -844 32 185 -844 31 184 -839 34 187 -838 33 186 -833 33 189 -832 33 188 -828 32 193 -827 32 192 667 1 644 660 14 643 661 13 642 657 21 642 658 21 640 655 29 641 656 28 639 653 36 640 653 35 638 651 42 639 650 42 638 648 49 638 648 48 637 645 54 637 644 53 637 667 1 642 660 13 644 660 13 646 656 20 646 656 19 648 650 24 649 650 25 650 644 27 650 644 28 652 637 28 651 637 30 652 630 27 650 630 29 651 624 25 649 624 26 648 667 0 642 660 13 643 661 13 641 656 20 641 656 19 641 651 25 640 651 24 640 646 28 638 646 27 639 641 29 635 640 28 636 636 28 631 635 28 632 632 26 627 631 26 628 -606 2 721 -606 1 721 -603 13 717 -602 19 715 -601 24 713 -600 25 714 -599 29 711 -598 29 712 -597 34 709 -596 34 710 -594 38 707 -593 38 708 -591 41 705 -590 40 705 -605 2 721 -607 1 720 -604 13 716 -605 12 715 -603 18 713 -604 18 712 -601 23 711 -602 23 710 -599 27 708 -600 28 707 -597 31 705 -598 31 704 -594 34 701 -594 34 702 -591 36 698 -591 36 699 -606 2 720 -602 13 718 -600 18 716 -600 18 717 -597 23 715 -597 22 715 -594 26 714 -594 25 714 -590 28 713 -586 30 713 -587 30 712 -583 31 712 -583 31 711 -605 1 721 -602 15 717 -602 15 718 -600 23 715 -599 23 716 -598 31 714 -597 30 715 -596 38 712 -595 37 714 -595 44 711 -593 44 712 -593 51 710 -591 50 710 -590 56 708 -589 55 707 -604 2 722 -603 15 716 -605 14 714 -602 22 711 -604 21 710 -602 26 705 -603 27 704 -600 29 699 -601 30 699 -597 31 693 -598 32 693 -592 30 688 -593 32 688 -588 28 683 -587 30 683 -605 2 722 -601 15 718 -599 22 714 -598 21 715 -595 27 711 -595 26 711 -591 31 708 -591 29 707 -585 32 705 -586 31 704 -580 31 703 -580 31 702 -574 29 702 -574 29 701 -619 1 710 -618 10 709 -618 16 708 -618 16 709 -618 21 706 -617 21 707 -616 26 705 -615 26 706 -615 31 704 -614 30 704 -613 35 702 -612 34 702 -610 38 700 -610 37 699 -618 1 710 -620 0 710 -619 10 708 -620 9 707 -619 15 706 -620 15 705 -618 20 704 -619 20 703 -617 24 701 -618 25 701 -615 28 698 -616 29 699 -613 31 695 -614 32 696 -611 34 692 -611 34 693 -620 1 710 -618 0 710 -617 9 709 -616 15 708 -615 14 708 -613 19 706 -613 18 706 -610 22 705 -610 21 704 -607 24 703 -603 26 702 -603 26 701 -599 27 700 -600 27 699 -617 1 711 -618 12 708 -620 11 707 -619 19 704 -621 18 704 -619 24 699 -621 24 699 -619 28 694 -620 29 694 -617 30 688 -618 31 688 -614 31 682 -615 32 682 -611 30 676 -610 31 676 -618 0 711 -617 12 708 -616 11 709 -615 18 706 -614 17 706 -612 24 703 -612 22 702 -608 27 699 -609 26 698 -604 29 695 -604 28 694 -599 29 692 -599 28 691 -593 27 690 -594 27 688 664 0 661 665 0 661 663 8 661 662 14 661 662 14 660 660 19 661 660 19 660 658 24 661 658 24 660 656 29 660 656 29 659 653 33 660 653 32 659 650 36 659 649 35 658 665 0 660 665 0 662 662 8 661 662 8 663 660 14 662 661 13 664 658 18 663 658 18 664 655 22 664 656 23 664 652 26 664 652 27 664 648 29 664 649 30 664 644 31 663 644 32 663 662 8 659 660 13 659 658 17 658 657 16 658 654 20 656 654 19 656 651 22 654 648 24 652 645 25 650 644 25 650 -414 0 893 -414 0 892 -419 10 891 -418 10 891 -421 16 891 -421 16 890 -424 21 890 -423 21 889 -426 26 889 -426 26 888 -429 31 887 -428 31 886 -432 35 885 -431 34 884 -435 37 883 -435 37 882 -419 10 892 -419 10 893 -422 15 892 -423 15 893 -425 20 891 -426 20 892 -429 24 890 -429 24 891 -433 27 889 -433 28 889 -437 30 887 -437 31 887 -441 32 885 -440 33 885 -413 0 892 -418 10 889 -421 15 888 -420 15 888 -423 20 886 -423 19 886 -425 23 883 -425 22 883 -427 25 879 -427 25 880 -429 27 876 -429 26 877 -431 28 873 -413 0 891 -419 12 890 -419 12 889 -422 20 888 -421 20 887 -424 27 887 -423 27 885 -426 34 885 -425 34 883 -428 41 884 -428 41 882 -430 47 883 -430 47 881 -433 53 881 -434 52 880 -413 0 890 -420 12 891 -421 12 893 -425 19 892 -425 18 894 -431 23 893 -431 23 895 -437 26 893 -437 27 895 -444 27 892 -444 28 893 -450 26 890 -450 28 890 -456 24 887 -456 25 887 -418 12 888 -423 19 887 -423 18 887 -427 24 885 -428 23 885 -432 27 882 -433 26 882 -436 28 878 -437 27 879 -440 27 873 -441 27 874 -443 25 868 -444 25 868 -420 -1 908 -419 -1 908 -421 7 908 -422 13 908 -422 13 907 -424 18 908 -423 18 907 -426 23 907 -425 23 906 -428 28 906 -427 27 905 -430 32 904 -430 31 904 -433 35 903 -434 34 902 -419 -1 907 -420 -1 909 -422 7 908 -422 7 910 -424 12 909 -424 12 910 -426 17 909 -426 17 910 -429 21 909 -429 22 910 -433 25 908 -432 26 909 -436 28 907 -436 29 907 -440 30 906 -440 31 906 -421 7 906 -423 12 906 -423 11 905 -426 16 904 -426 15 904 -428 19 901 -429 18 901 -431 21 898 -431 21 899 -433 23 895 -434 22 896 -436 23 893 -437 23 893 -419 0 906 -422 9 908 -423 9 910 -426 16 910 -426 15 912 -430 21 912 -429 21 913 -436 24 913 -435 25 914 -442 26 913 -441 28 914 -449 27 913 -448 29 913 -455 26 911 -455 28 911 -419 0 908 -419 -1 907 -422 9 907 -422 8 905 -425 16 905 -426 14 905 -429 21 904 -430 19 904 -434 24 901 -435 23 902 -439 25 898 -440 24 899 -444 25 894 -445 24 895 -448 23 890 -449 23 891 664 0 659 662 10 661 662 10 663 659 17 664 659 17 666 655 22 667 656 22 668 650 26 669 651 27 670 644 28 671 645 29 672 637 28 672 638 30 672 630 27 672 630 29 672 665 0 659 662 10 660 661 9 659 658 17 659 658 16 659 654 22 659 653 21 659 648 25 658 648 24 659 643 26 656 642 26 657 637 26 653 637 26 654 632 24 650 632 24 651 497 9 780 497 9 779 498 18 773 498 18 774 499 23 770 499 23 771 499 27 767 500 27 768 501 30 764 502 31 764 502 34 761 503 34 761 504 37 758 505 36 758 506 38 754 -376 0 849 -376 0 848 -379 10 844 -381 16 842 -380 16 842 -382 21 840 -381 21 840 -383 26 837 -382 26 837 -384 31 834 -383 31 834 -385 35 831 -384 34 831 -386 37 827 -385 37 827 -375 0 848 -377 0 849 -380 10 844 -381 10 845 -382 15 842 -383 15 843 -384 20 840 -385 20 840 -386 24 837 -387 24 837 -388 27 833 -388 28 834 -390 30 829 -390 31 829 -391 32 825 -391 33 825 -377 10 844 -379 15 841 -378 15 841 -378 20 837 -378 19 838 -378 23 834 -378 22 834 -377 25 830 -378 25 830 -376 27 826 -377 26 826 -376 28 823 -377 28 822 -379 12 843 -378 12 843 -380 20 840 -378 20 840 -380 27 837 -378 27 837 -380 34 835 -379 34 834 -381 41 833 -380 41 832 -382 47 830 -381 47 829 -383 53 827 -383 52 826 -374 0 847 -382 12 845 -384 19 841 -386 18 842 -389 23 838 -390 23 839 -394 26 834 -395 27 835 -399 27 828 -399 28 829 -402 26 823 -402 28 823 -404 24 816 -404 25 816 -374 0 848 -377 12 842 -380 19 839 -379 18 838 -381 24 834 -382 23 834 -383 27 828 -384 26 829 -383 28 822 -384 27 823 -383 27 816 -384 27 816 -382 25 811 -383 25 810 -391 -1 857 -392 7 855 -391 7 855 -393 13 854 -392 13 854 -394 18 853 -393 18 853 -395 23 851 -394 23 851 -395 28 849 -395 27 849 -396 32 847 -396 31 846 -398 35 843 -398 34 843 -390 -1 856 -393 7 855 -394 7 856 -395 12 854 -396 12 855 -396 17 853 -397 17 854 -399 21 850 -399 22 851 -401 25 848 -401 26 849 -403 28 845 -402 29 845 -405 30 841 -404 31 841 -391 7 854 -392 12 852 -392 11 852 -392 16 849 -393 15 849 -393 19 845 -393 18 845 -393 21 842 -393 23 838 -394 22 838 -393 23 834 -394 23 834 -389 0 855 -393 9 854 -394 9 856 -396 16 853 -398 15 855 -401 21 852 -402 21 854 -406 24 849 -406 25 851 -411 26 846 -411 28 847 -416 27 841 -416 29 841 -420 26 835 -419 28 835 -391 0 857 -390 -1 856 -392 9 854 -391 8 853 -393 16 851 -393 14 850 -395 21 847 -396 19 846 -398 24 842 -399 23 842 -399 25 836 -401 24 836 -400 25 830 -402 24 830 -400 23 824 -402 23 824 496 9 780 496 18 773 498 22 770 496 22 769 498 25 766 497 26 766 499 28 762 498 29 762 500 31 758 501 32 754 501 33 754 503 33 750 503 34 750 496 9 779 500 18 774 501 22 771 501 21 771 503 25 768 503 24 768 506 27 765 505 26 765 509 29 763 508 28 763 512 30 761 511 29 760 514 30 759 514 30 758 498 9 780 499 20 772 500 20 773 501 26 769 502 26 770 503 32 766 504 32 766 504 37 763 506 37 763 506 43 760 507 43 760 507 48 757 508 47 757 509 52 754 509 51 753 -171 5 920 -170 4 920 -168 15 918 -166 20 916 -166 20 917 -165 25 915 -164 25 916 -163 29 914 -162 29 915 -161 34 913 -160 33 914 -158 37 912 -157 37 912 -155 40 910 -154 39 910 -171 4 919 -168 15 917 -169 15 916 -167 20 915 -168 20 914 -165 24 913 -166 24 913 -163 28 911 -164 28 911 -161 31 909 -161 32 909 -158 34 906 -158 35 907 -155 36 904 -171 5 919 -167 15 918 -167 14 919 -165 19 917 -164 19 918 -162 23 917 -162 22 917 -158 26 916 -159 25 916 -155 28 916 -155 27 916 -151 29 916 -152 29 915 -148 30 915 -148 30 914 -166 17 918 -166 16 919 -164 24 917 -163 23 918 -162 30 917 -161 30 918 -160 36 917 -158 36 918 -158 42 916 -157 42 917 -156 48 916 -155 47 916 -153 53 915 -152 52 914 -169 5 921 -167 17 917 -169 16 916 -166 23 913 -168 23 912 -165 28 909 -167 28 908 -163 31 904 -165 32 904 -161 32 899 -161 34 899 -157 32 894 -157 34 894 -153 31 890 -153 32 890 -170 5 919 -170 4 921 -165 16 919 -163 23 916 -163 22 917 -160 27 914 -160 26 914 -155 30 911 -156 29 911 -151 31 909 -151 31 908 -146 31 908 -146 30 906 -141 29 906 -141 29 905 -182 6 910 -182 6 911 -181 14 910 -181 14 911 -181 19 910 -180 19 911 -180 24 910 -179 24 910 -178 28 909 -178 28 910 -177 32 908 -176 32 909 -175 36 907 -174 35 907 -172 39 906 -172 38 905 -183 6 910 -183 14 909 -181 19 909 -182 19 908 -180 23 907 -181 23 907 -179 27 905 -180 28 906 -177 31 903 -178 31 904 -175 34 901 -176 34 902 -173 36 898 -173 37 899 -182 5 911 -180 13 911 -179 18 910 -178 18 910 -176 22 909 -176 21 909 -173 24 908 -170 26 907 -170 26 906 -167 28 906 -167 28 905 -163 29 905 -164 29 904 -181 6 911 -181 16 910 -182 16 909 -181 22 907 -183 22 907 -181 27 904 -183 27 904 -181 31 899 -182 32 900 -179 34 894 -180 35 895 -177 35 889 -177 36 890 -173 35 884 -173 36 884 -181 5 911 -180 16 910 -179 15 910 -177 21 909 -177 20 909 -175 26 907 -175 25 906 -171 30 904 -172 29 903 -167 31 900 -168 30 899 -163 31 898 -163 31 896 -158 29 895 -158 30 894 499 9 780 498 20 772 496 19 772 497 24 767 495 24 767 496 28 761 495 28 761 496 29 755 494 30 755 496 29 749 495 30 749 497 27 743 497 28 743 499 24 739 499 25 738 501 19 773 502 25 768 502 24 768 504 28 763 503 27 763 506 30 758 505 29 758 509 30 754 508 29 754 513 28 751 512 27 750 517 25 748 517 25 747 482 9 776 483 17 773 483 17 774 483 21 771 484 21 772 484 25 769 485 26 769 484 29 766 485 29 767 486 33 764 487 33 764 487 36 761 488 36 761 488 38 758 489 37 758 -260 3 880 -260 3 879 -260 14 876 -260 13 876 -260 19 874 -259 19 874 -260 24 872 -259 24 872 -260 28 870 -258 28 870 -259 33 868 -258 32 868 -258 36 865 -257 36 865 -256 39 862 -259 3 879 -261 3 879 -262 13 876 -261 18 873 -263 18 873 -261 23 871 -263 23 871 -261 27 868 -262 27 868 -261 30 865 -262 31 865 -261 33 861 -260 35 857 -260 35 858 -259 3 880 -258 13 876 -258 18 874 -257 18 874 -256 22 872 -256 21 872 -254 25 869 -252 28 867 -252 27 867 -249 29 865 -250 29 864 -247 30 863 -248 30 862 -260 4 880 -259 16 875 -258 15 876 -258 23 873 -257 22 874 -257 29 872 -255 29 872 -256 36 870 -255 35 870 -256 42 869 -254 41 869 -255 47 867 -254 47 866 -254 52 865 -253 52 864 -258 4 880 -261 3 880 -260 16 875 -262 15 875 -262 22 872 -264 21 872 -264 26 867 -266 26 868 -266 29 862 -267 30 863 -267 30 856 -268 32 857 -267 30 850 -267 32 850 -266 29 844 -265 30 844 -260 4 879 -257 15 875 -258 22 872 -257 21 872 -257 27 868 -257 25 868 -255 30 864 -256 28 863 -253 31 859 -254 30 859 -249 31 855 -250 30 854 -246 29 851 -247 29 850 -275 3 878 -275 3 879 -275 11 878 -275 16 877 -274 16 878 -275 21 876 -274 21 876 -275 25 875 -274 25 875 -274 30 873 -273 29 873 -274 33 871 -273 33 871 -273 36 868 -274 3 879 -276 3 879 -275 11 877 -277 11 877 -276 16 876 -278 16 876 -277 20 874 -278 20 875 -277 24 872 -278 25 873 -278 28 870 -278 31 867 -278 33 863 -277 34 864 -273 11 877 -273 16 876 -273 15 875 -272 19 874 -272 18 873 -271 22 871 -271 21 871 -269 24 868 -267 26 866 -268 26 865 -265 27 863 -266 27 862 -273 3 878 -275 13 877 -277 13 877 -277 19 875 -279 19 876 -280 24 872 -281 24 873 -282 27 868 -283 28 869 -284 30 863 -285 31 864 -286 31 857 -286 32 858 -286 31 851 -285 32 851 -274 3 878 -274 13 877 -273 12 876 -273 19 874 -273 18 874 -273 24 871 -274 23 870 -272 27 866 -273 26 866 -271 29 861 -272 28 861 -269 29 856 -270 28 856 -266 27 852 -267 27 851 483 9 776 481 9 776 482 17 773 481 16 773 482 21 770 481 21 770 482 24 767 481 25 767 482 28 764 483 30 760 483 31 761 484 32 757 484 33 757 484 34 753 485 34 753 483 16 773 484 16 773 485 20 770 487 23 768 487 22 767 489 25 765 489 24 764 491 26 762 491 26 761 494 27 759 493 27 759 496 27 756 495 27 756 484 9 776 483 18 772 481 18 772 482 23 768 480 23 768 480 27 763 478 28 764 478 30 758 477 31 759 477 31 753 477 32 753 477 30 747 477 32 747 478 28 741 479 29 741 270 8 896 270 7 896 270 19 891 270 25 889 270 30 886 271 30 886 270 35 883 271 35 884 271 40 880 272 39 881 272 43 877 273 43 877 274 46 873 271 8 896 269 7 896 269 19 891 268 18 891 269 24 888 267 24 888 268 29 885 267 29 885 268 33 881 267 33 881 268 36 877 268 37 877 269 39 873 269 40 873 270 41 868 269 8 896 271 7 897 272 19 892 272 24 889 273 24 889 274 28 886 274 27 886 276 32 883 276 31 883 279 34 880 278 33 880 282 36 877 281 35 877 284 37 875 284 37 874 270 8 897 271 21 890 272 21 891 272 29 887 273 29 888 273 36 885 275 36 885 274 43 883 276 43 883 274 50 881 276 50 880 275 56 878 276 56 877 276 61 875 276 61 874 272 8 896 270 21 890 267 20 890 268 27 886 265 27 886 265 32 880 263 32 881 263 35 874 261 36 875 262 36 867 261 37 868 262 35 861 262 37 861 264 33 854 264 34 854 272 8 897 273 20 891 272 28 886 273 27 886 273 33 881 273 31 881 275 36 876 274 34 875 278 37 871 277 36 870 282 36 866 281 35 865 286 34 861 285 34 860 253 7 895 253 16 893 253 16 894 253 22 892 254 22 893 253 27 891 254 27 891 253 32 889 254 32 889 253 36 887 254 36 887 254 40 884 255 40 884 255 43 880 254 7 895 252 7 895 252 16 893 251 16 893 251 21 891 250 21 891 251 26 889 249 26 889 250 30 886 249 31 887 250 34 883 249 35 883 250 37 879 250 38 880 250 39 875 250 40 875 255 15 893 255 21 891 255 20 891 256 25 888 256 24 888 258 28 885 257 27 885 260 30 882 259 30 881 262 31 878 261 31 878 264 32 875 263 32 874 255 7 895 253 18 892 251 17 893 250 25 890 248 24 890 247 30 886 246 30 887 244 33 881 243 34 882 242 35 875 241 37 876 241 36 868 241 38 869 241 35 861 241 36 862 255 7 895 254 18 892 255 17 892 255 24 889 255 23 888 255 30 885 254 28 884 256 33 879 255 32 878 257 34 873 256 33 873 260 34 868 258 33 867 263 32 863 262 32 862 483 9 776 484 18 772 485 17 772 485 23 768 486 22 768 487 27 764 486 25 763 488 29 759 488 27 758 491 29 754 490 28 753 494 27 749 493 27 749 497 25 746 496 25 745 464 4 782 464 4 781 462 15 777 460 21 775 461 21 775 459 26 773 460 27 772 458 31 770 459 31 770 457 36 767 458 36 766 457 40 763 457 39 763 456 43 759 456 42 759 465 4 781 463 4 782 461 15 777 459 15 778 459 20 775 457 20 776 457 25 772 455 25 773 455 29 769 454 29 769 453 32 765 453 33 766 452 35 761 452 36 762 450 37 757 451 38 757 301 9 913 305 18 908 304 18 908 306 23 905 307 23 906 308 27 902 309 27 903 311 30 900 311 31 901 313 34 898 314 34 899 316 37 896 317 36 896 319 38 893 320 38 894 300 9 912 304 18 907 303 18 906 306 22 904 305 22 903 308 25 901 307 26 900 310 28 898 309 29 897 313 31 894 312 31 894 315 32 891 315 33 891 318 33 888 319 34 889 306 18 909 308 22 906 308 21 907 311 25 905 311 24 905 315 27 903 315 26 903 319 29 902 318 28 902 322 30 902 322 29 901 325 30 901 325 30 900 302 9 913 306 20 907 306 20 908 309 26 904 310 26 906 312 32 902 313 32 904 315 37 900 316 37 902 317 43 899 318 43 899 319 48 897 321 47 896 322 52 894 323 51 893 302 9 914 305 20 907 303 19 905 307 24 901 305 24 900 308 28 896 306 28 895 310 29 890 309 30 889 312 29 885 312 30 884 316 27 880 316 28 879 320 24 876 320 25 876 301 9 912 307 19 908 310 25 904 310 24 905 314 28 900 313 27 900 318 30 897 317 29 897 323 30 895 322 29 894 328 28 893 327 27 892 332 25 892 332 25 891 289 9 903 289 9 904 291 17 901 291 17 902 292 21 899 292 21 900 293 25 898 294 26 898 295 29 896 296 29 896 297 33 894 298 33 894 299 36 892 300 36 892 302 38 889 302 37 889 288 9 903 290 17 901 289 16 900 291 21 898 290 21 897 293 24 895 291 25 895 294 28 893 293 28 893 296 30 890 295 31 890 298 32 887 298 33 887 300 34 883 301 34 884 291 16 901 292 16 902 294 20 900 297 23 898 297 22 898 300 25 896 300 24 896 303 26 894 306 27 893 306 27 892 310 27 891 309 27 891 290 9 904 292 18 900 290 18 899 292 23 896 290 23 896 292 27 891 290 28 891 293 30 886 291 31 886 294 31 880 293 32 880 297 30 875 296 32 875 300 28 870 300 29 870 290 9 904 292 18 900 293 17 901 295 23 898 296 22 897 298 27 894 298 25 893 302 29 890 301 27 889 306 29 887 305 28 886 310 27 884 310 27 883 315 25 882 314 25 881 463 4 781 463 15 776 462 20 774 463 20 774 462 25 770 463 24 770 463 28 767 463 27 767 464 30 763 463 30 763 465 32 759 464 32 759 466 33 755 465 33 755 462 18 776 463 17 776 461 25 773 463 25 773 461 32 770 463 32 770 461 40 768 462 39 767 460 46 766 461 46 764 460 52 763 460 52 762 459 58 760 459 57 758 466 5 780 461 17 776 459 17 777 457 24 773 455 23 774 452 28 770 450 28 771 447 31 765 446 32 767 443 32 760 442 33 761 440 31 754 440 33 754 438 29 748 438 30 747 150 8 930 150 8 929 146 20 926 146 19 926 144 25 925 145 25 924 142 30 923 143 31 922 140 35 920 141 36 920 139 40 918 140 40 917 137 44 915 138 44 914 135 47 911 136 46 911 149 8 930 144 19 928 143 25 925 142 24 926 140 29 923 139 29 924 137 33 920 137 34 921 135 37 917 134 37 918 132 39 914 132 40 914 129 41 910 130 42 910 151 8 929 148 19 925 146 25 923 146 24 922 145 29 919 145 28 919 144 32 916 144 31 916 144 34 912 144 36 908 143 36 908 144 37 904 143 37 904 150 9 929 151 8 928 146 22 925 147 22 924 144 29 922 146 29 921 143 37 920 145 37 919 142 44 917 144 44 916 141 50 916 142 50 914 140 57 913 140 56 912 138 62 910 138 61 909 151 9 928 145 22 925 143 21 927 140 28 924 139 27 926 135 32 922 134 33 924 129 35 919 128 36 921 123 36 916 123 38 916 118 35 911 118 37 911 115 33 905 115 35 905 148 21 924 144 28 921 145 27 920 141 33 917 141 32 917 138 36 912 138 35 912 137 37 906 136 36 907 136 37 900 134 36 900 135 35 894 134 35 894 137 7 941 138 7 941 136 17 940 137 17 940 135 22 939 136 22 939 134 27 938 135 28 938 132 32 937 133 32 936 131 37 935 132 37 934 130 41 933 130 40 932 128 44 930 128 43 929 138 8 940 137 7 942 134 16 941 133 22 940 132 21 941 131 26 938 131 27 940 129 31 937 128 31 938 126 34 935 126 35 936 123 37 932 124 38 933 120 40 929 121 40 930 137 8 941 138 7 940 136 16 939 137 16 938 135 21 937 136 21 936 134 25 934 134 24 934 133 28 931 132 31 927 131 30 927 131 32 923 130 32 923 130 33 919 129 33 920 139 8 939 135 19 939 134 18 941 131 25 939 131 25 941 126 30 939 126 30 941 121 34 938 121 35 939 115 36 935 115 37 936 109 36 932 110 38 932 104 36 927 105 37 927 138 8 941 138 7 940 136 19 938 136 18 937 134 25 936 134 24 935 131 30 932 130 29 932 127 33 928 126 32 928 124 35 923 123 34 923 122 34 917 121 34 918 120 32 912 119 32 912 466 4 781 462 17 776 464 17 775 461 24 771 462 23 771 460 29 767 459 28 766 459 32 761 458 31 761 459 33 755 457 32 755 459 32 749 458 32 749 461 30 743 460 30 743 449 3 789 447 18 786 448 18 786 446 23 785 447 23 785 445 28 783 446 28 783 445 33 781 446 32 780 444 37 778 445 36 778 443 40 775 443 39 774 447 12 787 446 12 788 445 17 786 444 17 787 444 22 784 443 22 785 442 26 782 441 27 783 440 30 779 440 31 780 438 33 776 438 34 777 436 35 772 436 36 773 -899 41 -708 -821 32 -657 -887 9 -648 -873 19 -580 -951 29 -631 -1433 305 4193 -1475 311 4109 -1415 282 4128 -1391 302 4067 -1349 296 4150 -765 31 -472 -822 38 -547 -759 11 -537 -747 34 -603 -691 27 -528 -1421 293 3876 -1464 277 3793 -1402 256 3820 -1380 261 3754 -1338 277 3836 -919 29 -516 -902 29 -608 -863 9 -553 -810 32 -591 -827 32 -499 -1476 298 3828 -1543 302 3894 -1538 270 3832 -1607 284 3828 -1540 280 3762 -749 35 -560 -805 29 -635 -738 11 -624 -730 29 -691 -674 36 -617 -1570 307 4058 -1632 312 4129 -1638 287 4064 -1703 311 4068 -1641 305 3997 -1010 20 -445 -985 29 -535 -949 9 -478 -895 41 -509 -921 33 -419 -1565 300 3906 -1635 299 3968 -1629 275 3902 -1697 294 3898 -1627 295 3836 -1025 33 935 -944 45 890 -960 14 951 -897 38 971 -978 27 1017 -1458 288 3921 -1526 301 3985 -1528 277 3919 -1590 308 3916 -1522 295 3852 -937 32 1031 -900 45 945 -875 14 1003 -814 39 983 -851 27 1068 437 33 1100 519 45 1054 503 14 1115 565 38 1135 484 27 1181 -833 46 973 -795 37 888 -776 14 951 -711 24 926 -748 34 1012 633 32 1208 670 45 1123 695 14 1180 756 39 1160 719 27 1245 -708 43 804 -802 41 794 -749 14 757 -791 28 702 -698 29 712 737 46 1151 774 37 1065 794 14 1128 859 24 1104 822 34 1189 -918 34 910 -1012 34 908 -964 14 860 -1011 37 814 -916 37 816 874 43 1037 781 41 1027 834 14 990 792 28 935 885 29 945 -1008 39 952 -1100 32 937 -1044 14 898 -1086 33 844 -993 39 859 651 34 1087 557 34 1085 605 14 1037 559 37 991 653 37 993 -826 25 963 -919 33 952 -868 14 907 -908 46 859 -814 38 870 686 39 1049 594 32 1034 650 14 996 609 33 941 701 39 956 -3140 400 4726 -3213 419 4671 -3156 380 4661 -3160 403 4595 -3087 383 4650 743 25 1140 650 33 1129 701 14 1084 662 46 1037 755 38 1048 -2991 380 4555 -3085 384 4557 -3041 356 4511 -3087 375 4463 -2993 370 4462 -3970 380 2131 -3953 384 2039 -3919 353 2092 -3861 369 2055 -3878 365 2147 -3184 412 4536 -3278 415 4537 -3232 384 4494 -3280 399 4445 -3186 395 4443 -3727 365 2152 -3767 377 2068 -3711 341 2087 -3685 360 2026 -3644 348 2109 -3286 421 4509 -3256 419 4599 -3315 398 4567 -3346 419 4627 -3375 421 4538 -3782 370 1890 -3825 360 1807 -3767 332 1834 -3744 336 1767 -3700 346 1850 -3194 402 4567 -3157 400 4653 -3222 388 4630 -3242 417 4690 -3279 418 4604 -3841 362 1904 -3907 372 1969 -3905 341 1907 -3973 362 1903 -3906 352 1837 -3289 435 4701 -3265 429 4791 -3325 417 4757 -3354 442 4816 -3379 448 4726 -3923 370 2033 -3983 381 2104 -3992 358 2038 -4054 388 2043 -3993 377 1972 -3183 389 4505 -3153 397 4593 -3217 385 4566 -3239 422 4620 -3269 414 4531 -4047 373 1912 -4117 377 1974 -4113 355 1907 -4179 380 1904 -4109 375 1842 -1623 200 3291 -1539 214 3330 -1601 196 3357 -1580 234 3412 -1664 220 3373 -3825 348 1996 -3891 368 2060 -3895 345 1994 -3953 383 1992 -3887 364 1928 -1576 277 3669 -1484 279 3652 -1520 258 3707 -1467 281 3744 -1559 279 3762 -684 33 983 -668 45 891 -631 14 943 -575 38 907 -592 27 999 -1459 266 3523 -1368 246 3507 -1412 232 3561 -1354 241 3600 -1444 261 3616 -555 32 976 -597 45 893 -537 14 910 -513 39 850 -471 27 933 -1344 240 3514 -1388 235 3432 -1331 204 3458 -1308 210 3391 -1263 215 3474 -537 25 847 -605 33 912 -607 14 844 -668 46 844 -601 38 779 -1471 223 3457 -1522 220 3378 -1458 195 3393 -1444 211 3327 -1393 214 3406 330 33 1669 346 45 1577 383 14 1628 439 38 1593 422 27 1684 -1476 198 3333 -1516 187 3249 -1455 165 3276 -1432 175 3210 -1391 186 3294 744 32 1499 702 45 1416 762 14 1433 786 39 1373 828 27 1456 -1599 258 3517 -1505 257 3521 -1554 247 3571 -1509 279 3612 -1603 280 3608 571 46 1428 529 37 1345 590 14 1370 613 24 1304 655 34 1387 -4185 687 5803 -4102 688 5848 -4168 675 5870 -4147 706 5929 -4229 705 5884 501 43 1218 434 41 1284 439 14 1220 370 28 1217 437 29 1151 -4109 686 5940 -4016 677 5928 -4058 657 5980 -4005 671 6021 -4098 680 6033 467 34 1454 406 34 1525 400 14 1458 335 37 1464 396 37 1392 -3998 661 5894 -4044 669 5812 -3985 636 5829 -3964 653 5766 -3918 645 5847 298 39 1367 228 32 1429 234 14 1361 166 33 1359 236 39 1297 -5004 828 4533 -4989 818 4441 -4957 791 4497 -4899 797 4458 -4914 807 4550 603 25 1563 581 33 1472 641 14 1504 672 46 1451 694 38 1542 -4882 799 4403 -4924 802 4319 -4870 764 4343 -4844 771 4280 -4803 769 4364 1356 33 1336 1372 45 1244 1410 14 1295 1465 38 1259 1448 27 1351 -4964 803 4314 -5022 828 4384 -5034 798 4322 -5093 834 4323 -5035 809 4253 1485 32 1328 1443 45 1245 1503 14 1262 1527 39 1203 1569 27 1286 -2396 123 1771 -2463 145 1710 -2405 106 1704 -2403 131 1639 -2336 108 1700 1404 34 1237 1342 34 1308 1336 14 1241 1271 37 1247 1333 37 1176 -2335 114 1657 -2425 141 1650 -2385 104 1607 -2419 135 1556 -2330 109 1563 1030 28 -182 1046 39 -274 1083 9 -222 1139 33 -258 1122 21 -166 -2421 143 1578 -2514 147 1571 -2465 117 1531 -2508 135 1478 -2414 130 1485 995 31 55 945 24 -23 1011 7 -9 1025 28 -73 1075 34 5 -2520 154 1542 -2499 148 1634 -2554 130 1596 -2591 149 1654 -2611 154 1562 1279 41 -141 1237 32 -224 1299 9 -199 1321 19 -265 1363 29 -182 -2434 132 1608 -2406 126 1697 -2469 116 1667 -2493 142 1726 -2522 148 1637 1117 43 -373 1050 41 -308 1055 14 -372 986 28 -375 1053 29 -440 -2500 146 1659 -2485 136 1751 -2542 126 1710 -2576 150 1768 -2592 159 1676 969 30 -412 876 30 -424 929 10 -466 888 33 -517 981 33 -505 -2417 121 1546 -2396 125 1638 -2457 115 1604 -2484 151 1657 -2505 147 1566 952 34 -346 882 27 -284 888 9 -352 820 28 -355 890 34 -417 606 33 860 687 45 814 671 14 875 734 38 895 653 27 941 1234 25 -353 1166 33 -288 1164 14 -356 1102 46 -356 1170 38 -421 694 32 955 731 45 870 756 14 927 817 39 907 780 27 992 -3279 316 2268 -3259 317 2177 -3230 283 2231 -3170 292 2196 -3190 292 2288 875 46 907 912 37 821 932 14 885 997 24 860 959 34 945 -3132 276 2138 -3200 294 2200 -3203 269 2134 -3262 304 2130 -3194 287 2068 864 43 815 771 41 805 824 14 769 782 28 713 875 29 723 -532 44 2427 -608 56 2373 -546 25 2362 -555 49 2296 -479 38 2350 713 34 834 619 34 832 666 14 784 620 37 738 714 37 740 -484 43 2307 -577 56 2310 -536 25 2263 -580 50 2216 -487 38 2213 748 39 796 655 32 781 711 14 743 670 33 688 762 39 703 -580 57 2238 -673 48 2240 -624 25 2195 -675 35 2147 -581 45 2144 805 25 887 712 33 876 763 14 831 723 46 784 817 38 795 -683 54 2213 -652 52 2301 -708 25 2269 -740 39 2331 -771 41 2242 851 33 618 933 45 573 917 14 634 979 38 654 898 27 700 -589 45 2269 -550 45 2354 -614 25 2331 -636 48 2393 -674 48 2307 939 32 714 977 45 628 1002 14 686 1063 39 666 1025 27 751 -650 50 2327 -624 43 2416 -683 25 2382 -715 44 2443 -741 50 2353 1043 46 656 1081 37 571 1100 14 634 1166 24 609 1128 34 695 -576 36 2206 -547 44 2294 -609 25 2267 -635 57 2323 -665 49 2234 1168 43 487 1075 41 477 1127 14 440 1085 28 385 1179 29 395 -1165 33 526 -1149 45 434 -1111 14 486 -1056 38 450 -1073 27 542 958 34 592 864 34 591 912 14 543 866 37 497 960 37 499 -1036 32 519 -1078 45 436 -1018 14 453 -994 39 393 -952 27 476 868 39 635 776 32 620 832 14 581 791 33 527 883 39 542 -1014 46 402 -1056 37 319 -994 14 344 -972 24 278 -930 34 362 1050 25 646 957 33 635 1008 14 590 969 46 542 1062 38 553 -1035 43 299 -1102 41 364 -1097 14 300 -1166 28 297 -1099 29 232 -953 244 4122 -930 232 4032 -899 212 4091 -839 222 4055 -862 235 4146 -1117 34 428 -1179 34 499 -1185 14 432 -1250 37 438 -1188 37 367 -782 211 4102 -815 202 4015 -756 179 4045 -727 191 3983 -694 201 4071 -1124 39 377 -1194 32 439 -1188 14 371 -1257 33 368 -1187 39 306 -878 203 3846 -917 195 3761 -863 163 3792 -836 162 3727 -797 170 3812 -1018 25 391 -1085 33 455 -1087 14 388 -1149 46 387 -1081 38 323 -941 195 3727 -1010 213 3788 -1007 179 3727 -1072 207 3718 -1003 189 3657 -1156 33 -131 -1232 45 -185 -1170 14 -197 -1179 38 -262 -1103 27 -208 -923 215 3959 -987 234 4026 -993 209 3960 -1052 245 3960 -989 227 3893 -1108 32 -251 -1201 45 -248 -1160 14 -296 -1204 39 -342 -1111 27 -345 -960 216 3851 -1033 230 3908 -1028 204 3842 -1091 236 3834 -1018 223 3776 -1204 46 -321 -1297 37 -318 -1248 14 -363 -1298 24 -411 -1205 34 -414 -749 178 3908 -822 195 3965 -818 163 3902 -880 191 3891 -807 174 3834 -1307 42 -346 -1276 41 -257 -1332 14 -289 -1364 28 -227 -1395 29 -316 -2208 150 2437 -2191 150 2344 -2157 121 2399 -2100 134 2362 -2117 135 2454 -1213 34 -290 -1174 34 -204 -1238 14 -227 -1260 37 -166 -1298 37 -251 -2025 122 2402 -2066 130 2318 -2010 95 2339 -1984 110 2277 -1943 102 2361 -1274 39 -232 -1248 32 -142 -1307 14 -176 -1338 33 -116 -1365 39 -205 -2022 121 2209 -2065 108 2127 -2006 81 2155 -1983 81 2088 -1940 94 2170 -1200 25 -353 -1170 33 -264 -1233 14 -291 -1259 46 -235 -1289 38 -324 -2104 120 2082 -2171 134 2147 -2169 99 2086 -2236 121 2081 -2170 107 2016 483 46 -727 521 37 -813 540 14 -749 606 24 -774 568 34 -689 -2244 159 2358 -2305 174 2428 -2314 148 2363 -2376 179 2367 -2315 164 2296 527 33 -797 434 32 -807 487 5 -844 445 19 -899 538 20 -889 -2174 135 2243 -2244 144 2304 -2240 118 2239 -2306 144 2234 -2236 135 2172 676 34 -739 582 34 -741 630 14 -788 584 37 -834 678 37 -832 -2066 106 2207 -2132 129 2270 -2136 103 2204 -2194 142 2200 -2128 119 2137 476 32 -868 384 26 -883 440 8 -921 399 27 -976 491 33 -961 -1517 309 4156 -1584 314 4090 -1519 287 4090 -1518 309 4023 -1451 304 4089 761 25 -660 668 33 -671 719 14 -716 679 46 -763 773 38 -752 + + + + + + + + + + 0.30078125 0.55078125 0.078125 0.81640625 0.3125 0.5625 0.08984375 0.826171875 0.326171875 0.572265625 0.1015625 0.8359375 0.337890625 0.583984375 0.11328125 0.84765625 0.3515625 0.59375 0.126953125 0.857421875 0.357421875 0.599609375 0.1328125 0.86328125 0.3671875 0.609375 0.14453125 0.873046875 0.37890625 0.6171875 0.154296875 0.880859375 0.390625 0.626953125 0.166015625 0.890625 0.36328125 0.603515625 0.138671875 0.8671875 1 1 1 0 0.5 0.5 0 0 0 1 + + + + + + + + + 0.19215686274509805 0.19215686274509805 0.19215686274509805 1 0.3764705882352941 0.3764705882352941 0.3764705882352941 1 0.5019607843137255 0.5019607843137255 0.5019607843137255 1 0.807843137254902 0.807843137254902 0.807843137254902 1 1 1 1 1 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 0 1 1 0 0 0 0 3 3 0 1 1 0 2 2 0 4 4 0 3 3 0 2 2 0 5 5 0 3 3 0 4 4 0 6 6 1 5 5 0 4 4 0 7 7 0 5 5 0 6 6 1 8 8 1 7 7 0 6 6 1 9 9 1 7 7 0 8 8 1 10 10 1 9 9 1 8 8 1 11 11 1 9 9 1 10 10 1 12 12 1 11 11 1 10 10 1 13 13 1 11 11 1 12 12 1 14 14 1 13 13 1 12 12 1 15 15 1 13 13 1 14 14 1 16 16 1 15 15 1 14 14 1 17 17 1 15 15 1 16 16 1 20 2 0 19 1 0 18 0 0 21 3 0 19 1 0 20 2 0 22 4 0 21 3 0 20 2 0 23 5 0 21 3 0 22 4 0 24 6 1 23 5 0 22 4 0 25 7 1 23 5 0 24 6 1 26 8 1 25 7 1 24 6 1 27 9 1 25 7 1 26 8 1 28 10 1 27 9 1 26 8 1 29 11 1 27 9 1 28 10 1 30 12 1 29 11 1 28 10 1 31 13 1 29 11 1 30 12 1 32 14 1 31 13 1 30 12 1 33 15 1 31 13 1 32 14 1 34 16 1 33 15 1 32 14 1 35 17 1 33 15 1 34 16 1 38 2 0 37 1 0 36 0 0 39 3 0 37 1 0 38 2 0 40 4 0 39 3 0 38 2 0 41 5 0 39 3 0 40 4 0 42 6 0 41 5 0 40 4 0 43 7 0 41 5 0 42 6 0 44 8 1 43 7 0 42 6 0 45 9 1 43 7 0 44 8 1 46 10 1 45 9 1 44 8 1 47 11 1 45 9 1 46 10 1 48 12 1 47 11 1 46 10 1 49 13 1 47 11 1 48 12 1 50 14 1 49 13 1 48 12 1 51 15 1 49 13 1 50 14 1 52 16 1 51 15 1 50 14 1 53 17 1 51 15 1 52 16 1 56 2 0 55 1 0 54 0 0 57 3 0 55 1 0 56 2 0 58 4 0 57 3 0 56 2 0 59 5 0 57 3 0 58 4 0 60 6 0 59 5 0 58 4 0 61 7 0 59 5 0 60 6 0 62 8 1 61 7 0 60 6 0 63 9 1 61 7 0 62 8 1 64 10 1 63 9 1 62 8 1 65 11 1 63 9 1 64 10 1 66 12 1 65 11 1 64 10 1 67 13 1 65 11 1 66 12 1 68 14 1 67 13 1 66 12 1 69 15 1 67 13 1 68 14 1 70 16 1 69 15 1 68 14 1 71 17 1 69 15 1 70 16 1 74 2 0 73 1 0 72 0 0 75 3 0 73 1 0 74 2 0 76 4 0 75 3 0 74 2 0 77 5 0 75 3 0 76 4 0 78 6 1 77 5 0 76 4 0 79 7 0 77 5 0 78 6 1 80 8 1 79 7 0 78 6 1 81 9 1 79 7 0 80 8 1 82 10 1 81 9 1 80 8 1 83 11 1 81 9 1 82 10 1 84 12 1 83 11 1 82 10 1 85 13 1 83 11 1 84 12 1 86 14 1 85 13 1 84 12 1 87 15 1 85 13 1 86 14 1 88 16 1 87 15 1 86 14 1 89 17 1 87 15 1 88 16 1 92 2 0 91 1 0 90 0 0 93 3 0 91 1 0 92 2 0 94 4 0 93 3 0 92 2 0 95 5 0 93 3 0 94 4 0 96 6 1 95 5 0 94 4 0 97 7 0 95 5 0 96 6 1 98 8 1 97 7 0 96 6 1 99 9 1 97 7 0 98 8 1 100 10 1 99 9 1 98 8 1 101 11 1 99 9 1 100 10 1 102 12 1 101 11 1 100 10 1 103 13 1 101 11 1 102 12 1 104 14 1 103 13 1 102 12 1 105 15 1 103 13 1 104 14 1 106 16 1 105 15 1 104 14 1 107 17 1 105 15 1 106 16 1 110 2 0 109 1 0 108 0 0 111 3 0 109 1 0 110 2 0 112 4 0 111 3 0 110 2 0 113 5 0 111 3 0 112 4 0 114 6 1 113 5 0 112 4 0 115 7 0 113 5 0 114 6 1 116 8 1 115 7 0 114 6 1 117 9 1 115 7 0 116 8 1 118 10 1 117 9 1 116 8 1 119 11 1 117 9 1 118 10 1 120 12 1 119 11 1 118 10 1 121 13 1 119 11 1 120 12 1 122 14 1 121 13 1 120 12 1 123 15 1 121 13 1 122 14 1 124 16 1 123 15 1 122 14 1 125 17 1 123 15 1 124 16 1 110 2 0 127 1 0 126 0 0 128 3 0 127 1 0 110 2 0 129 4 0 128 3 0 110 2 0 130 5 0 128 3 0 129 4 0 131 6 1 130 5 0 129 4 0 132 7 1 130 5 0 131 6 1 133 8 1 132 7 1 131 6 1 134 9 1 132 7 1 133 8 1 135 10 1 134 9 1 133 8 1 136 11 1 134 9 1 135 10 1 137 12 1 136 11 1 135 10 1 138 13 1 136 11 1 137 12 1 139 14 1 138 13 1 137 12 1 140 15 1 138 13 1 139 14 1 141 16 1 140 15 1 139 14 1 142 17 1 140 15 1 141 16 1 145 2 0 144 1 0 143 0 0 146 3 0 144 1 0 145 2 0 147 4 0 146 3 0 145 2 0 148 5 0 146 3 0 147 4 0 149 6 1 148 5 0 147 4 0 150 7 0 148 5 0 149 6 1 151 8 1 150 7 0 149 6 1 152 9 1 150 7 0 151 8 1 153 10 1 152 9 1 151 8 1 154 11 1 152 9 1 153 10 1 155 12 1 154 11 1 153 10 1 156 13 1 154 11 1 155 12 1 157 14 1 156 13 1 155 12 1 158 15 1 156 13 1 157 14 1 159 16 1 158 15 1 157 14 1 160 17 1 158 15 1 159 16 1 163 2 0 162 1 0 161 0 0 164 3 0 162 1 0 163 2 0 165 4 0 164 3 0 163 2 0 166 5 0 164 3 0 165 4 0 167 6 1 166 5 0 165 4 0 168 7 1 166 5 0 167 6 1 169 8 1 168 7 1 167 6 1 170 9 1 168 7 1 169 8 1 171 10 1 170 9 1 169 8 1 172 11 1 170 9 1 171 10 1 173 12 1 172 11 1 171 10 1 174 13 1 172 11 1 173 12 1 175 14 1 174 13 1 173 12 1 176 15 1 174 13 1 175 14 1 177 16 1 176 15 1 175 14 1 178 17 1 176 15 1 177 16 1 181 2 0 180 1 0 179 0 0 182 3 0 180 1 0 181 2 0 183 4 0 182 3 0 181 2 0 184 5 0 182 3 0 183 4 0 185 6 0 184 5 0 183 4 0 186 7 0 184 5 0 185 6 0 187 8 1 186 7 0 185 6 0 188 9 1 186 7 0 187 8 1 189 10 1 188 9 1 187 8 1 190 11 1 188 9 1 189 10 1 191 12 1 190 11 1 189 10 1 192 13 1 190 11 1 191 12 1 193 14 1 192 13 1 191 12 1 194 15 1 192 13 1 193 14 1 195 16 1 194 15 1 193 14 1 195 17 1 194 15 1 195 16 1 198 2 0 197 1 0 196 0 0 199 3 0 197 1 0 198 2 0 200 4 0 199 3 0 198 2 0 201 5 0 199 3 0 200 4 0 202 6 1 201 5 0 200 4 0 203 7 0 201 5 0 202 6 1 204 8 1 203 7 0 202 6 1 205 9 1 203 7 0 204 8 1 206 10 1 205 9 1 204 8 1 207 11 1 205 9 1 206 10 1 208 12 1 207 11 1 206 10 1 209 13 1 207 11 1 208 12 1 210 14 1 209 13 1 208 12 1 211 15 1 209 13 1 210 14 1 212 16 1 211 15 1 210 14 1 213 17 1 211 15 1 212 16 1 216 2 0 215 1 0 214 0 0 217 3 0 215 1 0 216 2 0 218 4 0 217 3 0 216 2 0 219 5 0 217 3 0 218 4 0 220 6 1 219 5 0 218 4 0 221 7 1 219 5 0 220 6 1 222 8 1 221 7 1 220 6 1 223 9 1 221 7 1 222 8 1 224 10 1 223 9 1 222 8 1 225 11 1 223 9 1 224 10 1 226 12 1 225 11 1 224 10 1 227 13 1 225 11 1 226 12 1 228 14 1 227 13 1 226 12 1 229 15 1 227 13 1 228 14 1 230 16 1 229 15 1 228 14 1 231 17 1 229 15 1 230 16 1 234 2 0 233 1 0 232 0 0 235 3 0 233 1 0 234 2 0 236 4 0 235 3 0 234 2 0 237 5 0 235 3 0 236 4 0 238 6 0 237 5 0 236 4 0 239 7 0 237 5 0 238 6 0 240 8 1 239 7 0 238 6 0 241 9 1 239 7 0 240 8 1 242 10 1 241 9 1 240 8 1 243 11 1 241 9 1 242 10 1 244 12 1 243 11 1 242 10 1 245 13 1 243 11 1 244 12 1 246 14 1 245 13 1 244 12 1 247 15 1 245 13 1 246 14 1 248 16 1 247 15 1 246 14 1 248 17 1 247 15 1 248 16 1 251 2 0 250 1 0 249 0 0 252 3 0 250 1 0 251 2 0 253 4 0 252 3 0 251 2 0 254 5 0 252 3 0 253 4 0 255 6 0 254 5 0 253 4 0 256 7 0 254 5 0 255 6 0 257 8 1 256 7 0 255 6 0 258 9 1 256 7 0 257 8 1 259 10 1 258 9 1 257 8 1 260 11 1 258 9 1 259 10 1 261 12 1 260 11 1 259 10 1 262 13 1 260 11 1 261 12 1 263 14 1 262 13 1 261 12 1 264 15 1 262 13 1 263 14 1 265 16 1 264 15 1 263 14 1 265 17 1 264 15 1 265 16 1 268 2 0 267 1 0 266 0 0 269 3 0 267 1 0 268 2 0 270 4 0 269 3 0 268 2 0 271 5 0 269 3 0 270 4 0 272 6 1 271 5 0 270 4 0 273 7 0 271 5 0 272 6 1 274 8 1 273 7 0 272 6 1 275 9 1 273 7 0 274 8 1 276 10 1 275 9 1 274 8 1 277 11 1 275 9 1 276 10 1 278 12 1 277 11 1 276 10 1 279 13 1 277 11 1 278 12 1 280 14 1 279 13 1 278 12 1 281 15 1 279 13 1 280 14 1 282 16 1 281 15 1 280 14 1 283 17 1 281 15 1 282 16 1 286 2 0 285 1 0 284 0 0 287 3 0 285 1 0 286 2 0 288 4 0 287 3 0 286 2 0 289 5 0 287 3 0 288 4 0 290 6 1 289 5 0 288 4 0 291 7 1 289 5 0 290 6 1 292 8 1 291 7 1 290 6 1 293 9 1 291 7 1 292 8 1 294 10 1 293 9 1 292 8 1 295 11 1 293 9 1 294 10 1 296 12 1 295 11 1 294 10 1 297 13 1 295 11 1 296 12 1 298 14 1 297 13 1 296 12 1 299 15 1 297 13 1 298 14 1 300 16 1 299 15 1 298 14 1 301 17 1 299 15 1 300 16 1 304 2 0 303 1 0 302 0 0 305 3 0 303 1 0 304 2 0 306 4 0 305 3 0 304 2 0 307 5 0 305 3 0 306 4 0 308 6 0 307 5 0 306 4 0 309 7 0 307 5 0 308 6 0 310 8 1 309 7 0 308 6 0 311 9 1 309 7 0 310 8 1 312 10 1 311 9 1 310 8 1 313 11 1 311 9 1 312 10 1 314 12 1 313 11 1 312 10 1 315 13 1 313 11 1 314 12 1 316 14 1 315 13 1 314 12 1 317 15 1 315 13 1 316 14 1 318 16 1 317 15 1 316 14 1 319 17 1 317 15 1 318 16 1 322 2 0 321 1 0 320 0 0 323 3 0 321 1 0 322 2 0 324 4 0 323 3 0 322 2 0 325 5 0 323 3 0 324 4 0 326 6 1 325 5 0 324 4 0 327 7 0 325 5 0 326 6 1 328 8 1 327 7 0 326 6 1 329 9 1 327 7 0 328 8 1 330 10 1 329 9 1 328 8 1 331 11 1 329 9 1 330 10 1 332 12 1 331 11 1 330 10 1 333 13 1 331 11 1 332 12 1 334 14 1 333 13 1 332 12 1 335 15 1 333 13 1 334 14 1 336 16 1 335 15 1 334 14 1 336 17 1 335 15 1 336 16 1 339 2 0 338 1 0 337 0 0 340 3 0 338 1 0 339 2 0 341 4 0 340 3 0 339 2 0 342 5 0 340 3 0 341 4 0 343 6 1 342 5 0 341 4 0 344 7 0 342 5 0 343 6 1 345 8 1 344 7 0 343 6 1 346 9 1 344 7 0 345 8 1 347 10 1 346 9 1 345 8 1 348 11 1 346 9 1 347 10 1 349 12 1 348 11 1 347 10 1 350 13 1 348 11 1 349 12 1 351 14 1 350 13 1 349 12 1 352 15 1 350 13 1 351 14 1 353 16 1 352 15 1 351 14 1 354 17 1 352 15 1 353 16 1 357 2 0 356 1 0 355 0 0 358 3 0 356 1 0 357 2 0 359 4 0 358 3 0 357 2 0 360 5 0 358 3 0 359 4 0 361 6 1 360 5 0 359 4 0 362 7 0 360 5 0 361 6 1 363 8 1 362 7 0 361 6 1 364 9 1 362 7 0 363 8 1 365 10 1 364 9 1 363 8 1 366 11 1 364 9 1 365 10 1 367 12 1 366 11 1 365 10 1 368 13 1 366 11 1 367 12 1 369 14 1 368 13 1 367 12 1 370 15 1 368 13 1 369 14 1 371 16 1 370 15 1 369 14 1 372 17 1 370 15 1 371 16 1 375 2 0 374 1 0 373 0 0 376 3 0 374 1 0 375 2 0 377 4 0 376 3 0 375 2 0 378 5 0 376 3 0 377 4 0 379 6 1 378 5 0 377 4 0 380 7 1 378 5 0 379 6 1 381 8 1 380 7 1 379 6 1 382 9 1 380 7 1 381 8 1 383 10 1 382 9 1 381 8 1 384 11 1 382 9 1 383 10 1 385 12 1 384 11 1 383 10 1 386 13 1 384 11 1 385 12 1 387 14 1 386 13 1 385 12 1 388 15 1 386 13 1 387 14 1 389 16 1 388 15 1 387 14 1 390 17 1 388 15 1 389 16 1 393 2 0 392 1 0 391 0 0 394 3 0 392 1 0 393 2 0 395 4 0 394 3 0 393 2 0 396 5 0 394 3 0 395 4 0 397 6 0 396 5 0 395 4 0 398 7 0 396 5 0 397 6 0 399 8 1 398 7 0 397 6 0 400 9 1 398 7 0 399 8 1 401 10 1 400 9 1 399 8 1 402 11 1 400 9 1 401 10 1 403 12 1 402 11 1 401 10 1 404 13 1 402 11 1 403 12 1 405 14 1 404 13 1 403 12 1 406 15 1 404 13 1 405 14 1 407 16 1 406 15 1 405 14 1 408 17 1 406 15 1 407 16 1 411 2 0 410 1 0 409 0 0 412 3 0 410 1 0 411 2 0 413 4 0 412 3 0 411 2 0 414 5 0 412 3 0 413 4 0 415 6 1 414 5 0 413 4 0 416 7 0 414 5 0 415 6 1 417 8 1 416 7 0 415 6 1 418 9 1 416 7 0 417 8 1 419 10 1 418 9 1 417 8 1 420 11 1 418 9 1 419 10 1 421 12 1 420 11 1 419 10 1 422 13 1 420 11 1 421 12 1 423 14 1 422 13 1 421 12 1 424 15 1 422 13 1 423 14 1 425 16 1 424 15 1 423 14 1 426 17 1 424 15 1 425 16 1 429 2 0 428 1 0 427 0 0 430 3 0 428 1 0 429 2 0 431 4 0 430 3 0 429 2 0 432 5 0 430 3 0 431 4 0 433 6 1 432 5 0 431 4 0 434 7 1 432 5 0 433 6 1 435 8 1 434 7 1 433 6 1 436 9 1 434 7 1 435 8 1 437 10 1 436 9 1 435 8 1 438 11 1 436 9 1 437 10 1 439 12 1 438 11 1 437 10 1 440 13 1 438 11 1 439 12 1 441 14 1 440 13 1 439 12 1 442 15 1 440 13 1 441 14 1 443 16 1 442 15 1 441 14 1 444 17 1 442 15 1 443 16 1 447 2 1 446 1 1 445 0 1 448 3 1 446 1 1 447 2 1 449 4 1 448 3 1 447 2 1 450 5 1 448 3 1 449 4 1 451 6 1 450 5 1 449 4 1 452 7 1 450 5 1 451 6 1 453 8 1 452 7 1 451 6 1 454 9 1 452 7 1 453 8 1 455 10 1 454 9 1 453 8 1 456 11 1 454 9 1 455 10 1 457 12 1 456 11 1 455 10 1 458 13 1 456 11 1 457 12 1 459 14 1 458 13 1 457 12 1 460 15 1 458 13 1 459 14 1 461 16 1 460 15 1 459 14 1 462 17 1 460 15 1 461 16 1 465 2 1 464 1 1 463 0 1 466 3 1 464 1 1 465 2 1 467 4 1 466 3 1 465 2 1 468 5 1 466 3 1 467 4 1 469 6 1 468 5 1 467 4 1 470 7 1 468 5 1 469 6 1 471 8 1 470 7 1 469 6 1 472 9 1 470 7 1 471 8 1 473 10 1 472 9 1 471 8 1 474 11 1 472 9 1 473 10 1 475 12 1 474 11 1 473 10 1 476 13 1 474 11 1 475 12 1 477 14 1 476 13 1 475 12 1 478 15 1 476 13 1 477 14 1 479 16 1 478 15 1 477 14 1 480 17 1 478 15 1 479 16 1 483 2 1 482 1 1 481 0 1 484 3 1 482 1 1 483 2 1 485 4 1 484 3 1 483 2 1 486 5 1 484 3 1 485 4 1 487 6 1 486 5 1 485 4 1 488 7 1 486 5 1 487 6 1 489 8 1 488 7 1 487 6 1 490 9 1 488 7 1 489 8 1 491 10 1 490 9 1 489 8 1 492 11 1 490 9 1 491 10 1 493 12 1 492 11 1 491 10 1 494 13 1 492 11 1 493 12 1 495 14 1 494 13 1 493 12 1 496 15 1 494 13 1 495 14 1 497 16 1 496 15 1 495 14 1 498 17 1 496 15 1 497 16 1 501 2 0 500 1 0 499 0 0 502 3 0 500 1 0 501 2 0 503 4 0 502 3 0 501 2 0 504 5 0 502 3 0 503 4 0 505 6 1 504 5 0 503 4 0 506 7 0 504 5 0 505 6 1 507 8 1 506 7 0 505 6 1 508 9 1 506 7 0 507 8 1 509 10 1 508 9 1 507 8 1 510 11 1 508 9 1 509 10 1 511 12 1 510 11 1 509 10 1 512 13 1 510 11 1 511 12 1 513 14 1 512 13 1 511 12 1 514 15 1 512 13 1 513 14 1 515 16 1 514 15 1 513 14 1 516 17 1 514 15 1 515 16 1 519 2 0 518 1 0 517 0 0 520 3 0 518 1 0 519 2 0 521 4 0 520 3 0 519 2 0 522 5 0 520 3 0 521 4 0 523 6 1 522 5 0 521 4 0 524 7 1 522 5 0 523 6 1 525 8 1 524 7 1 523 6 1 526 9 1 524 7 1 525 8 1 527 10 1 526 9 1 525 8 1 528 11 1 526 9 1 527 10 1 529 12 1 528 11 1 527 10 1 530 13 1 528 11 1 529 12 1 531 14 1 530 13 1 529 12 1 532 15 1 530 13 1 531 14 1 533 16 1 532 15 1 531 14 1 534 17 1 532 15 1 533 16 1 537 2 0 536 1 0 535 0 0 538 3 0 536 1 0 537 2 0 539 4 0 538 3 0 537 2 0 540 5 0 538 3 0 539 4 0 541 6 0 540 5 0 539 4 0 542 7 0 540 5 0 541 6 0 543 8 1 542 7 0 541 6 0 544 9 1 542 7 0 543 8 1 545 10 1 544 9 1 543 8 1 546 11 1 544 9 1 545 10 1 547 12 1 546 11 1 545 10 1 548 13 1 546 11 1 547 12 1 549 14 1 548 13 1 547 12 1 550 15 1 548 13 1 549 14 1 551 16 1 550 15 1 549 14 1 552 17 1 550 15 1 551 16 1 555 2 0 554 1 0 553 0 0 556 3 0 554 1 0 555 2 0 557 4 0 556 3 0 555 2 0 558 5 0 556 3 0 557 4 0 559 6 0 558 5 0 557 4 0 560 7 0 558 5 0 559 6 0 561 8 1 560 7 0 559 6 0 562 9 1 560 7 0 561 8 1 563 10 1 562 9 1 561 8 1 564 11 1 562 9 1 563 10 1 565 12 1 564 11 1 563 10 1 566 13 1 564 11 1 565 12 1 567 14 1 566 13 1 565 12 1 568 15 1 566 13 1 567 14 1 569 16 1 568 15 1 567 14 1 570 17 1 568 15 1 569 16 1 573 2 0 572 1 0 571 0 0 574 3 0 572 1 0 573 2 0 575 4 0 574 3 0 573 2 0 576 5 0 574 3 0 575 4 0 577 6 1 576 5 0 575 4 0 578 7 1 576 5 0 577 6 1 579 8 1 578 7 1 577 6 1 580 9 1 578 7 1 579 8 1 581 10 1 580 9 1 579 8 1 582 11 1 580 9 1 581 10 1 583 12 1 582 11 1 581 10 1 584 13 1 582 11 1 583 12 1 585 14 1 584 13 1 583 12 1 586 15 1 584 13 1 585 14 1 587 16 1 586 15 1 585 14 1 588 17 1 586 15 1 587 16 1 591 2 0 590 1 0 589 0 0 592 3 0 590 1 0 591 2 0 593 4 0 592 3 0 591 2 0 594 5 0 592 3 0 593 4 0 595 6 0 594 5 0 593 4 0 596 7 0 594 5 0 595 6 0 597 8 1 596 7 0 595 6 0 598 9 1 596 7 0 597 8 1 599 10 1 598 9 1 597 8 1 600 11 1 598 9 1 599 10 1 601 12 1 600 11 1 599 10 1 602 13 1 600 11 1 601 12 1 603 14 1 602 13 1 601 12 1 604 15 1 602 13 1 603 14 1 605 16 1 604 15 1 603 14 1 606 17 1 604 15 1 605 16 1 609 2 0 608 1 0 607 0 0 610 3 0 608 1 0 609 2 0 611 4 0 610 3 0 609 2 0 612 5 0 610 3 0 611 4 0 613 6 1 612 5 0 611 4 0 614 7 1 612 5 0 613 6 1 615 8 1 614 7 1 613 6 1 616 9 1 614 7 1 615 8 1 617 10 1 616 9 1 615 8 1 618 11 1 616 9 1 617 10 1 619 12 1 618 11 1 617 10 1 620 13 1 618 11 1 619 12 1 621 14 1 620 13 1 619 12 1 622 15 1 620 13 1 621 14 1 623 16 1 622 15 1 621 14 1 624 17 1 622 15 1 623 16 1 627 2 0 626 1 0 625 0 0 628 3 0 626 1 0 627 2 0 629 4 0 628 3 0 627 2 0 630 5 0 628 3 0 629 4 0 631 6 1 630 5 0 629 4 0 632 7 0 630 5 0 631 6 1 633 8 1 632 7 0 631 6 1 634 9 1 632 7 0 633 8 1 635 10 1 634 9 1 633 8 1 636 11 1 634 9 1 635 10 1 637 12 1 636 11 1 635 10 1 638 13 1 636 11 1 637 12 1 639 14 1 638 13 1 637 12 1 640 15 1 638 13 1 639 14 1 641 16 1 640 15 1 639 14 1 642 17 1 640 15 1 641 16 1 645 2 0 644 1 0 643 0 0 646 3 0 644 1 0 645 2 0 647 4 0 646 3 0 645 2 0 648 5 0 646 3 0 647 4 0 649 6 1 648 5 0 647 4 0 650 7 1 648 5 0 649 6 1 651 8 1 650 7 1 649 6 1 652 9 1 650 7 1 651 8 1 653 10 1 652 9 1 651 8 1 654 11 1 652 9 1 653 10 1 655 12 1 654 11 1 653 10 1 656 13 1 654 11 1 655 12 1 657 14 1 656 13 1 655 12 1 658 15 1 656 13 1 657 14 1 659 16 1 658 15 1 657 14 1 660 17 1 658 15 1 659 16 1 663 2 0 662 1 0 661 0 0 664 3 0 662 1 0 663 2 0 665 4 0 664 3 0 663 2 0 666 5 0 664 3 0 665 4 0 667 6 0 666 5 0 665 4 0 668 7 0 666 5 0 667 6 0 669 8 1 668 7 0 667 6 0 670 9 1 668 7 0 669 8 1 671 10 1 670 9 1 669 8 1 672 11 1 670 9 1 671 10 1 673 12 1 672 11 1 671 10 1 674 13 1 672 11 1 673 12 1 675 14 1 674 13 1 673 12 1 676 15 1 674 13 1 675 14 1 677 16 1 676 15 1 675 14 1 677 17 1 676 15 1 677 16 1 680 2 0 679 1 0 678 0 0 681 3 0 679 1 0 680 2 0 682 4 0 681 3 0 680 2 0 683 5 0 681 3 0 682 4 0 684 6 0 683 5 0 682 4 0 685 7 0 683 5 0 684 6 0 686 8 1 685 7 0 684 6 0 687 9 1 685 7 0 686 8 1 688 10 1 687 9 1 686 8 1 689 11 1 687 9 1 688 10 1 690 12 1 689 11 1 688 10 1 691 13 1 689 11 1 690 12 1 692 14 1 691 13 1 690 12 1 693 15 1 691 13 1 692 14 1 694 16 1 693 15 1 692 14 1 694 17 1 693 15 1 694 16 1 697 2 0 696 1 0 695 0 0 698 3 0 696 1 0 697 2 0 699 4 0 698 3 0 697 2 0 700 5 0 698 3 0 699 4 0 701 6 1 700 5 0 699 4 0 702 7 0 700 5 0 701 6 1 703 8 1 702 7 0 701 6 1 704 9 1 702 7 0 703 8 1 705 10 1 704 9 1 703 8 1 706 11 1 704 9 1 705 10 1 707 12 1 706 11 1 705 10 1 708 13 1 706 11 1 707 12 1 709 14 1 708 13 1 707 12 1 710 15 1 708 13 1 709 14 1 711 16 1 710 15 1 709 14 1 712 17 1 710 15 1 711 16 1 715 2 0 714 1 0 713 0 0 716 3 0 714 1 0 715 2 0 717 4 0 716 3 0 715 2 0 718 5 0 716 3 0 717 4 0 719 6 1 718 5 0 717 4 0 720 7 1 718 5 0 719 6 1 721 8 1 720 7 1 719 6 1 722 9 1 720 7 1 721 8 1 723 10 1 722 9 1 721 8 1 724 11 1 722 9 1 723 10 1 725 12 1 724 11 1 723 10 1 726 13 1 724 11 1 725 12 1 727 14 1 726 13 1 725 12 1 728 15 1 726 13 1 727 14 1 729 16 1 728 15 1 727 14 1 730 17 1 728 15 1 729 16 1 733 2 0 732 1 0 731 0 0 734 3 0 732 1 0 733 2 0 735 4 0 734 3 0 733 2 0 736 5 0 734 3 0 735 4 0 737 6 0 736 5 0 735 4 0 738 7 0 736 5 0 737 6 0 739 8 1 738 7 0 737 6 0 740 9 1 738 7 0 739 8 1 741 10 1 740 9 1 739 8 1 742 11 1 740 9 1 741 10 1 743 12 1 742 11 1 741 10 1 744 13 1 742 11 1 743 12 1 745 14 1 744 13 1 743 12 1 746 15 1 744 13 1 745 14 1 747 16 1 746 15 1 745 14 1 748 17 1 746 15 1 747 16 1 751 2 0 750 1 0 749 0 0 752 3 0 750 1 0 751 2 0 753 4 0 752 3 0 751 2 0 754 5 0 752 3 0 753 4 0 755 6 1 754 5 0 753 4 0 756 7 1 754 5 0 755 6 1 757 8 1 756 7 1 755 6 1 758 9 1 756 7 1 757 8 1 759 10 1 758 9 1 757 8 1 760 11 1 758 9 1 759 10 1 761 12 1 760 11 1 759 10 1 762 13 1 760 11 1 761 12 1 763 14 1 762 13 1 761 12 1 764 15 1 762 13 1 763 14 1 765 16 1 764 15 1 763 14 1 766 17 1 764 15 1 765 16 1 769 2 0 768 1 0 767 0 0 770 3 0 768 1 0 769 2 0 771 4 0 770 3 0 769 2 0 772 5 0 770 3 0 771 4 0 773 6 0 772 5 0 771 4 0 774 7 0 772 5 0 773 6 0 775 8 1 774 7 0 773 6 0 776 9 1 774 7 0 775 8 1 777 10 1 776 9 1 775 8 1 778 11 1 776 9 1 777 10 1 779 12 1 778 11 1 777 10 1 780 13 1 778 11 1 779 12 1 781 14 1 780 13 1 779 12 1 782 15 1 780 13 1 781 14 1 783 16 1 782 15 1 781 14 1 784 17 1 782 15 1 783 16 1 787 2 0 786 1 0 785 0 0 788 3 0 786 1 0 787 2 0 789 4 0 788 3 0 787 2 0 790 5 0 788 3 0 789 4 0 791 6 1 790 5 0 789 4 0 792 7 1 790 5 0 791 6 1 793 8 1 792 7 1 791 6 1 794 9 1 792 7 1 793 8 1 795 10 1 794 9 1 793 8 1 796 11 1 794 9 1 795 10 1 797 12 1 796 11 1 795 10 1 798 13 1 796 11 1 797 12 1 799 14 1 798 13 1 797 12 1 800 15 1 798 13 1 799 14 1 801 16 1 800 15 1 799 14 1 802 17 1 800 15 1 801 16 1 805 2 0 804 1 0 803 0 0 806 3 0 804 1 0 805 2 0 807 4 0 806 3 0 805 2 0 808 5 0 806 3 0 807 4 0 809 6 1 808 5 0 807 4 0 810 7 0 808 5 0 809 6 1 811 8 1 810 7 0 809 6 1 812 9 1 810 7 0 811 8 1 813 10 1 812 9 1 811 8 1 814 11 1 812 9 1 813 10 1 815 12 1 814 11 1 813 10 1 816 13 1 814 11 1 815 12 1 817 14 1 816 13 1 815 12 1 818 15 1 816 13 1 817 14 1 819 16 1 818 15 1 817 14 1 820 17 1 818 15 1 819 16 1 823 2 0 822 1 0 821 0 0 824 3 0 822 1 0 823 2 0 825 4 0 824 3 0 823 2 0 826 5 0 824 3 0 825 4 0 827 6 1 826 5 0 825 4 0 828 7 1 826 5 0 827 6 1 829 8 1 828 7 1 827 6 1 830 9 1 828 7 1 829 8 1 831 10 1 830 9 1 829 8 1 832 11 1 830 9 1 831 10 1 833 12 1 832 11 1 831 10 1 834 13 1 832 11 1 833 12 1 835 14 1 834 13 1 833 12 1 836 15 1 834 13 1 835 14 1 837 16 1 836 15 1 835 14 1 838 17 1 836 15 1 837 16 1 841 2 0 840 1 0 839 0 0 842 3 0 840 1 0 841 2 0 843 4 0 842 3 0 841 2 0 844 5 0 842 3 0 843 4 0 845 6 0 844 5 0 843 4 0 846 7 0 844 5 0 845 6 0 847 8 1 846 7 0 845 6 0 848 9 1 846 7 0 847 8 1 849 10 1 848 9 1 847 8 1 850 11 1 848 9 1 849 10 1 851 12 1 850 11 1 849 10 1 852 13 1 850 11 1 851 12 1 853 14 1 852 13 1 851 12 1 854 15 1 852 13 1 853 14 1 855 16 1 854 15 1 853 14 1 856 17 1 854 15 1 855 16 1 859 2 0 858 1 0 857 0 0 860 3 0 858 1 0 859 2 0 861 4 0 860 3 0 859 2 0 862 5 0 860 3 0 861 4 0 863 6 0 862 5 0 861 4 0 864 7 0 862 5 0 863 6 0 865 8 1 864 7 0 863 6 0 866 9 1 864 7 0 865 8 1 867 10 1 866 9 1 865 8 1 868 11 1 866 9 1 867 10 1 869 12 1 868 11 1 867 10 1 870 13 1 868 11 1 869 12 1 871 14 1 870 13 1 869 12 1 872 15 1 870 13 1 871 14 1 873 16 1 872 15 1 871 14 1 874 17 1 872 15 1 873 16 1 877 2 0 876 1 0 875 0 0 878 3 0 876 1 0 877 2 0 879 4 0 878 3 0 877 2 0 880 5 0 878 3 0 879 4 0 881 6 1 880 5 0 879 4 0 882 7 0 880 5 0 881 6 1 883 8 1 882 7 0 881 6 1 884 9 1 882 7 0 883 8 1 885 10 1 884 9 1 883 8 1 886 11 1 884 9 1 885 10 1 887 12 1 886 11 1 885 10 1 888 13 1 886 11 1 887 12 1 889 14 1 888 13 1 887 12 1 890 15 1 888 13 1 889 14 1 891 16 1 890 15 1 889 14 1 892 17 1 890 15 1 891 16 1 895 2 0 894 1 0 893 0 0 896 3 0 894 1 0 895 2 0 897 4 0 896 3 0 895 2 0 898 5 0 896 3 0 897 4 0 899 6 1 898 5 0 897 4 0 900 7 1 898 5 0 899 6 1 901 8 1 900 7 1 899 6 1 902 9 1 900 7 1 901 8 1 903 10 1 902 9 1 901 8 1 904 11 1 902 9 1 903 10 1 905 12 1 904 11 1 903 10 1 906 13 1 904 11 1 905 12 1 907 14 1 906 13 1 905 12 1 908 15 1 906 13 1 907 14 1 909 16 1 908 15 1 907 14 1 910 17 1 908 15 1 909 16 1 913 2 0 912 1 0 911 0 0 914 3 0 912 1 0 913 2 0 915 4 0 914 3 0 913 2 0 916 5 0 914 3 0 915 4 0 917 6 0 916 5 0 915 4 0 918 7 0 916 5 0 917 6 0 919 8 1 918 7 0 917 6 0 920 9 1 918 7 0 919 8 1 921 10 1 920 9 1 919 8 1 922 11 1 920 9 1 921 10 1 923 12 1 922 11 1 921 10 1 924 13 1 922 11 1 923 12 1 925 14 1 924 13 1 923 12 1 926 15 1 924 13 1 925 14 1 927 16 1 926 15 1 925 14 1 928 17 1 926 15 1 927 16 1 931 2 0 930 1 0 929 0 0 932 3 0 930 1 0 931 2 0 933 4 0 932 3 0 931 2 0 934 5 0 932 3 0 933 4 0 935 6 1 934 5 0 933 4 0 936 7 0 934 5 0 935 6 1 937 8 1 936 7 0 935 6 1 938 9 1 936 7 0 937 8 1 939 10 1 938 9 1 937 8 1 940 11 1 938 9 1 939 10 1 941 12 1 940 11 1 939 10 1 942 13 1 940 11 1 941 12 1 943 14 1 942 13 1 941 12 1 944 15 1 942 13 1 943 14 1 945 16 1 944 15 1 943 14 1 946 17 1 944 15 1 945 16 1 949 2 0 948 1 0 947 0 0 950 3 0 948 1 0 949 2 0 951 4 0 950 3 0 949 2 0 952 5 0 950 3 0 951 4 0 953 6 1 952 5 0 951 4 0 954 7 0 952 5 0 953 6 1 955 8 1 954 7 0 953 6 1 956 9 1 954 7 0 955 8 1 957 10 1 956 9 1 955 8 1 958 11 1 956 9 1 957 10 1 959 12 1 958 11 1 957 10 1 960 13 1 958 11 1 959 12 1 961 14 1 960 13 1 959 12 1 962 15 1 960 13 1 961 14 1 963 16 1 962 15 1 961 14 1 964 17 1 962 15 1 963 16 1 967 2 0 966 1 0 965 0 0 968 3 0 966 1 0 967 2 0 969 4 0 968 3 0 967 2 0 970 5 0 968 3 0 969 4 0 971 6 1 970 5 0 969 4 0 972 7 1 970 5 0 971 6 1 973 8 1 972 7 1 971 6 1 974 9 1 972 7 1 973 8 1 975 10 1 974 9 1 973 8 1 976 11 1 974 9 1 975 10 1 977 12 1 976 11 1 975 10 1 978 13 1 976 11 1 977 12 1 979 14 1 978 13 1 977 12 1 980 15 1 978 13 1 979 14 1 981 16 1 980 15 1 979 14 1 982 17 1 980 15 1 981 16 1 985 2 0 984 1 0 983 0 0 986 3 0 984 1 0 985 2 0 987 4 0 986 3 0 985 2 0 988 5 0 986 3 0 987 4 0 989 6 0 988 5 0 987 4 0 990 7 0 988 5 0 989 6 0 991 8 1 990 7 0 989 6 0 992 9 1 990 7 0 991 8 1 993 10 1 992 9 1 991 8 1 994 11 1 992 9 1 993 10 1 995 12 1 994 11 1 993 10 1 996 13 1 994 11 1 995 12 1 997 14 1 996 13 1 995 12 1 998 15 1 996 13 1 997 14 1 999 16 1 998 15 1 997 14 1 1000 17 1 998 15 1 999 16 1 1003 2 0 1002 1 0 1001 0 0 1004 3 0 1002 1 0 1003 2 0 1005 4 0 1004 3 0 1003 2 0 1006 5 0 1004 3 0 1005 4 0 1007 6 1 1006 5 0 1005 4 0 1008 7 0 1006 5 0 1007 6 1 1009 8 1 1008 7 0 1007 6 1 1010 9 1 1008 7 0 1009 8 1 1011 10 1 1010 9 1 1009 8 1 1012 11 1 1010 9 1 1011 10 1 1013 12 1 1012 11 1 1011 10 1 1014 13 1 1012 11 1 1013 12 1 1015 14 1 1014 13 1 1013 12 1 1016 15 1 1014 13 1 1015 14 1 1017 16 1 1016 15 1 1015 14 1 1018 17 1 1016 15 1 1017 16 1 1021 2 0 1020 1 0 1019 0 0 1022 3 0 1020 1 0 1021 2 0 1023 4 0 1022 3 0 1021 2 0 1024 5 0 1022 3 0 1023 4 0 1025 6 1 1024 5 0 1023 4 0 1026 7 1 1024 5 0 1025 6 1 1027 8 1 1026 7 1 1025 6 1 1028 9 1 1026 7 1 1027 8 1 1029 10 1 1028 9 1 1027 8 1 1030 11 1 1028 9 1 1029 10 1 1031 12 1 1030 11 1 1029 10 1 1032 13 1 1030 11 1 1031 12 1 1033 14 1 1032 13 1 1031 12 1 1034 15 1 1032 13 1 1033 14 1 1035 16 1 1034 15 1 1033 14 1 1036 17 1 1034 15 1 1035 16 1 1039 2 0 1038 1 0 1037 0 0 1040 3 0 1038 1 0 1039 2 0 1041 4 0 1040 3 0 1039 2 0 1042 5 0 1040 3 0 1041 4 0 1043 6 1 1042 5 0 1041 4 0 1044 7 0 1042 5 0 1043 6 1 1045 8 1 1044 7 0 1043 6 1 1046 9 1 1044 7 0 1045 8 1 1047 10 1 1046 9 1 1045 8 1 1048 11 1 1046 9 1 1047 10 1 1049 12 1 1048 11 1 1047 10 1 1050 13 1 1048 11 1 1049 12 1 1051 14 1 1050 13 1 1049 12 1 1052 15 1 1050 13 1 1051 14 1 1053 16 1 1052 15 1 1051 14 1 1054 17 1 1052 15 1 1053 16 1 1057 2 0 1056 1 0 1055 0 0 1058 3 0 1056 1 0 1057 2 0 1059 4 0 1058 3 0 1057 2 0 1060 5 0 1058 3 0 1059 4 0 1061 6 1 1060 5 0 1059 4 0 1062 7 1 1060 5 0 1061 6 1 1063 8 1 1062 7 1 1061 6 1 1064 9 1 1062 7 1 1063 8 1 1065 10 1 1064 9 1 1063 8 1 1066 11 1 1064 9 1 1065 10 1 1067 12 1 1066 11 1 1065 10 1 1068 13 1 1066 11 1 1067 12 1 1069 14 1 1068 13 1 1067 12 1 1070 15 1 1068 13 1 1069 14 1 1071 16 1 1070 15 1 1069 14 1 1072 17 1 1070 15 1 1071 16 1 1075 2 0 1074 1 0 1073 0 0 1076 3 0 1074 1 0 1075 2 0 1077 4 0 1076 3 0 1075 2 0 1078 5 0 1076 3 0 1077 4 0 1079 6 0 1078 5 0 1077 4 0 1080 7 0 1078 5 0 1079 6 0 1081 8 1 1080 7 0 1079 6 0 1082 9 1 1080 7 0 1081 8 1 1083 10 1 1082 9 1 1081 8 1 1084 11 1 1082 9 1 1083 10 1 1085 12 1 1084 11 1 1083 10 1 1086 13 1 1084 11 1 1085 12 1 1087 14 1 1086 13 1 1085 12 1 1088 15 1 1086 13 1 1087 14 1 1089 16 1 1088 15 1 1087 14 1 1090 17 1 1088 15 1 1089 16 1 1093 2 0 1092 1 0 1091 0 0 1094 3 0 1092 1 0 1093 2 0 1095 4 0 1094 3 0 1093 2 0 1096 5 0 1094 3 0 1095 4 0 1097 6 1 1096 5 0 1095 4 0 1098 7 0 1096 5 0 1097 6 1 1099 8 1 1098 7 0 1097 6 1 1100 9 1 1098 7 0 1099 8 1 1101 10 1 1100 9 1 1099 8 1 1102 11 1 1100 9 1 1101 10 1 1103 12 1 1102 11 1 1101 10 1 1104 13 1 1102 11 1 1103 12 1 1105 14 1 1104 13 1 1103 12 1 1106 15 1 1104 13 1 1105 14 1 1107 16 1 1106 15 1 1105 14 1 1108 17 1 1106 15 1 1107 16 1 1111 2 0 1110 1 0 1109 0 0 1112 3 0 1110 1 0 1111 2 0 1113 4 0 1112 3 0 1111 2 0 1114 5 0 1112 3 0 1113 4 0 1115 6 1 1114 5 0 1113 4 0 1116 7 0 1114 5 0 1115 6 1 1117 8 1 1116 7 0 1115 6 1 1118 9 1 1116 7 0 1117 8 1 1119 10 1 1118 9 1 1117 8 1 1120 11 1 1118 9 1 1119 10 1 1121 12 1 1120 11 1 1119 10 1 1122 13 1 1120 11 1 1121 12 1 1123 14 1 1122 13 1 1121 12 1 1124 15 1 1122 13 1 1123 14 1 1125 16 1 1124 15 1 1123 14 1 1126 17 1 1124 15 1 1125 16 1 1129 2 0 1128 1 0 1127 0 0 1130 3 0 1128 1 0 1129 2 0 1131 4 0 1130 3 0 1129 2 0 1132 5 0 1130 3 0 1131 4 0 1133 6 1 1132 5 0 1131 4 0 1134 7 1 1132 5 0 1133 6 1 1135 8 1 1134 7 1 1133 6 1 1136 9 1 1134 7 1 1135 8 1 1137 10 1 1136 9 1 1135 8 1 1138 11 1 1136 9 1 1137 10 1 1139 12 1 1138 11 1 1137 10 1 1140 13 1 1138 11 1 1139 12 1 1141 14 1 1140 13 1 1139 12 1 1142 15 1 1140 13 1 1141 14 1 1143 16 1 1142 15 1 1141 14 1 1144 17 1 1142 15 1 1143 16 1 1147 2 0 1146 1 0 1145 0 0 1148 3 0 1146 1 0 1147 2 0 1149 4 0 1148 3 0 1147 2 0 1150 5 0 1148 3 0 1149 4 0 1151 6 0 1150 5 0 1149 4 0 1152 7 0 1150 5 0 1151 6 0 1153 8 1 1152 7 0 1151 6 0 1154 9 1 1152 7 0 1153 8 1 1155 10 1 1154 9 1 1153 8 1 1156 11 1 1154 9 1 1155 10 1 1157 12 1 1156 11 1 1155 10 1 1158 13 1 1156 11 1 1157 12 1 1159 14 1 1158 13 1 1157 12 1 1160 15 1 1158 13 1 1159 14 1 1161 16 1 1160 15 1 1159 14 1 1162 17 1 1160 15 1 1161 16 1 1165 2 0 1164 1 0 1163 0 0 1166 3 0 1164 1 0 1165 2 0 1167 4 0 1166 3 0 1165 2 0 1168 5 0 1166 3 0 1167 4 0 1169 6 1 1168 5 0 1167 4 0 1170 7 1 1168 5 0 1169 6 1 1171 8 1 1170 7 1 1169 6 1 1172 9 1 1170 7 1 1171 8 1 1173 10 1 1172 9 1 1171 8 1 1174 11 1 1172 9 1 1173 10 1 1175 12 1 1174 11 1 1173 10 1 1176 13 1 1174 11 1 1175 12 1 1177 14 1 1176 13 1 1175 12 1 1178 15 1 1176 13 1 1177 14 1 1179 16 1 1178 15 1 1177 14 1 1180 17 1 1178 15 1 1179 16 1 1183 2 0 1182 1 0 1181 0 0 1184 3 0 1182 1 0 1183 2 0 1185 4 0 1184 3 0 1183 2 0 1186 5 0 1184 3 0 1185 4 0 1187 6 0 1186 5 0 1185 4 0 1188 7 0 1186 5 0 1187 6 0 1189 8 1 1188 7 0 1187 6 0 1190 9 1 1188 7 0 1189 8 1 1191 10 1 1190 9 1 1189 8 1 1192 11 1 1190 9 1 1191 10 1 1193 12 1 1192 11 1 1191 10 1 1194 13 1 1192 11 1 1193 12 1 1195 14 1 1194 13 1 1193 12 1 1196 15 1 1194 13 1 1195 14 1 1197 16 1 1196 15 1 1195 14 1 1197 17 1 1196 15 1 1197 16 1 1200 2 0 1199 1 0 1198 0 0 1201 3 0 1199 1 0 1200 2 0 1202 4 0 1201 3 0 1200 2 0 1203 5 0 1201 3 0 1202 4 0 1204 6 1 1203 5 0 1202 4 0 1205 7 0 1203 5 0 1204 6 1 1206 8 1 1205 7 0 1204 6 1 1207 9 1 1205 7 0 1206 8 1 1208 10 1 1207 9 1 1206 8 1 1209 11 1 1207 9 1 1208 10 1 1210 12 1 1209 11 1 1208 10 1 1211 13 1 1209 11 1 1210 12 1 1212 14 1 1211 13 1 1210 12 1 1213 15 1 1211 13 1 1212 14 1 1214 16 1 1213 15 1 1212 14 1 1214 17 1 1213 15 1 1214 16 1 1217 2 0 1216 1 0 1215 0 0 1218 3 0 1216 1 0 1217 2 0 1219 4 0 1218 3 0 1217 2 0 1220 5 0 1218 3 0 1219 4 0 1221 6 1 1220 5 0 1219 4 0 1222 7 1 1220 5 0 1221 6 1 1223 8 1 1222 7 1 1221 6 1 1224 9 1 1222 7 1 1223 8 1 1225 10 1 1224 9 1 1223 8 1 1226 11 1 1224 9 1 1225 10 1 1227 12 1 1226 11 1 1225 10 1 1228 13 1 1226 11 1 1227 12 1 1229 14 1 1228 13 1 1227 12 1 1230 15 1 1228 13 1 1229 14 1 1231 16 1 1230 15 1 1229 14 1 1232 17 1 1230 15 1 1231 16 1 1235 2 0 1234 1 0 1233 0 0 1236 3 0 1234 1 0 1235 2 0 1237 4 0 1236 3 0 1235 2 0 1238 5 0 1236 3 0 1237 4 0 1239 6 0 1238 5 0 1237 4 0 1240 7 0 1238 5 0 1239 6 0 1241 8 1 1240 7 0 1239 6 0 1242 9 1 1240 7 0 1241 8 1 1243 10 1 1242 9 1 1241 8 1 1244 11 1 1242 9 1 1243 10 1 1245 12 1 1244 11 1 1243 10 1 1246 13 1 1244 11 1 1245 12 1 1247 14 1 1246 13 1 1245 12 1 1248 15 1 1246 13 1 1247 14 1 1249 16 1 1248 15 1 1247 14 1 1250 17 1 1248 15 1 1249 16 1 1253 2 0 1252 1 0 1251 0 0 1254 3 0 1252 1 0 1253 2 0 1255 4 0 1254 3 0 1253 2 0 1256 5 0 1254 3 0 1255 4 0 1257 6 0 1256 5 0 1255 4 0 1258 7 0 1256 5 0 1257 6 0 1259 8 1 1258 7 0 1257 6 0 1260 9 1 1258 7 0 1259 8 1 1261 10 1 1260 9 1 1259 8 1 1262 11 1 1260 9 1 1261 10 1 1263 12 1 1262 11 1 1261 10 1 1264 13 1 1262 11 1 1263 12 1 1265 14 1 1264 13 1 1263 12 1 1266 15 1 1264 13 1 1265 14 1 1267 16 1 1266 15 1 1265 14 1 1268 17 1 1266 15 1 1267 16 1 1271 2 0 1270 1 0 1269 0 0 1272 3 0 1270 1 0 1271 2 0 1273 4 0 1272 3 0 1271 2 0 1274 5 0 1272 3 0 1273 4 0 1275 6 1 1274 5 0 1273 4 0 1276 7 0 1274 5 0 1275 6 1 1277 8 1 1276 7 0 1275 6 1 1278 9 1 1276 7 0 1277 8 1 1279 10 1 1278 9 1 1277 8 1 1280 11 1 1278 9 1 1279 10 1 1281 12 1 1280 11 1 1279 10 1 1282 13 1 1280 11 1 1281 12 1 1283 14 1 1282 13 1 1281 12 1 1284 15 1 1282 13 1 1283 14 1 1285 16 1 1284 15 1 1283 14 1 1286 17 1 1284 15 1 1285 16 1 1289 2 0 1288 1 0 1287 0 0 1290 3 0 1288 1 0 1289 2 0 1291 4 0 1290 3 0 1289 2 0 1292 5 0 1290 3 0 1291 4 0 1293 6 1 1292 5 0 1291 4 0 1294 7 1 1292 5 0 1293 6 1 1295 8 1 1294 7 1 1293 6 1 1296 9 1 1294 7 1 1295 8 1 1297 10 1 1296 9 1 1295 8 1 1298 11 1 1296 9 1 1297 10 1 1299 12 1 1298 11 1 1297 10 1 1300 13 1 1298 11 1 1299 12 1 1301 14 1 1300 13 1 1299 12 1 1302 15 1 1300 13 1 1301 14 1 1303 16 1 1302 15 1 1301 14 1 1304 17 1 1302 15 1 1303 16 1 1307 2 0 1306 1 0 1305 0 0 1308 3 0 1306 1 0 1307 2 0 1309 4 0 1308 3 0 1307 2 0 1310 5 0 1308 3 0 1309 4 0 1311 6 0 1310 5 0 1309 4 0 1312 7 0 1310 5 0 1311 6 0 1313 8 1 1312 7 0 1311 6 0 1314 9 1 1312 7 0 1313 8 1 1315 10 1 1314 9 1 1313 8 1 1316 11 1 1314 9 1 1315 10 1 1317 12 1 1316 11 1 1315 10 1 1318 13 1 1316 11 1 1317 12 1 1319 14 1 1318 13 1 1317 12 1 1320 15 1 1318 13 1 1319 14 1 1321 16 1 1320 15 1 1319 14 1 1321 17 1 1320 15 1 1321 16 1 1324 2 0 1323 1 0 1322 0 0 1325 3 0 1323 1 0 1324 2 0 1326 4 0 1325 3 0 1324 2 0 1327 5 0 1325 3 0 1326 4 0 1328 6 1 1327 5 0 1326 4 0 1329 7 1 1327 5 0 1328 6 1 1330 8 1 1329 7 1 1328 6 1 1331 9 1 1329 7 1 1330 8 1 1332 10 1 1331 9 1 1330 8 1 1333 11 1 1331 9 1 1332 10 1 1334 12 1 1333 11 1 1332 10 1 1335 13 1 1333 11 1 1334 12 1 1336 14 1 1335 13 1 1334 12 1 1337 15 1 1335 13 1 1336 14 1 1338 16 1 1337 15 1 1336 14 1 1339 17 1 1337 15 1 1338 16 1 1342 2 0 1341 1 0 1340 0 0 1343 3 0 1341 1 0 1342 2 0 1344 4 0 1343 3 0 1342 2 0 1345 5 0 1343 3 0 1344 4 0 1346 6 1 1345 5 0 1344 4 0 1347 7 0 1345 5 0 1346 6 1 1348 8 1 1347 7 0 1346 6 1 1349 9 1 1347 7 0 1348 8 1 1350 10 1 1349 9 1 1348 8 1 1351 11 1 1349 9 1 1350 10 1 1352 12 1 1351 11 1 1350 10 1 1353 13 1 1351 11 1 1352 12 1 1354 14 1 1353 13 1 1352 12 1 1355 15 1 1353 13 1 1354 14 1 1356 16 1 1355 15 1 1354 14 1 1357 17 1 1355 15 1 1356 16 1 1360 2 0 1359 1 0 1358 0 0 1361 3 0 1359 1 0 1360 2 0 1362 4 0 1361 3 0 1360 2 0 1363 5 0 1361 3 0 1362 4 0 1364 6 1 1363 5 0 1362 4 0 1365 7 1 1363 5 0 1364 6 1 1366 8 1 1365 7 1 1364 6 1 1367 9 1 1365 7 1 1366 8 1 1368 10 1 1367 9 1 1366 8 1 1369 11 1 1367 9 1 1368 10 1 1370 12 1 1369 11 1 1368 10 1 1371 13 1 1369 11 1 1370 12 1 1372 14 1 1371 13 1 1370 12 1 1373 15 1 1371 13 1 1372 14 1 1374 16 1 1373 15 1 1372 14 1 1375 17 1 1373 15 1 1374 16 1 1378 2 0 1377 1 0 1376 0 0 1379 3 0 1377 1 0 1378 2 0 1380 4 0 1379 3 0 1378 2 0 1381 5 0 1379 3 0 1380 4 0 1382 6 0 1381 5 0 1380 4 0 1383 7 0 1381 5 0 1382 6 0 1384 8 1 1383 7 0 1382 6 0 1385 9 1 1383 7 0 1384 8 1 1386 10 1 1385 9 1 1384 8 1 1387 11 1 1385 9 1 1386 10 1 1388 12 1 1387 11 1 1386 10 1 1389 13 1 1387 11 1 1388 12 1 1390 14 1 1389 13 1 1388 12 1 1391 15 1 1389 13 1 1390 14 1 1392 16 1 1391 15 1 1390 14 1 1393 17 1 1391 15 1 1392 16 1 1396 2 0 1395 1 0 1394 0 0 1397 3 0 1395 1 0 1396 2 0 1398 4 0 1397 3 0 1396 2 0 1399 5 0 1397 3 0 1398 4 0 1400 6 1 1399 5 0 1398 4 0 1401 7 0 1399 5 0 1400 6 1 1402 8 1 1401 7 0 1400 6 1 1403 9 1 1401 7 0 1402 8 1 1404 10 1 1403 9 1 1402 8 1 1405 11 1 1403 9 1 1404 10 1 1406 12 1 1405 11 1 1404 10 1 1407 13 1 1405 11 1 1406 12 1 1408 14 1 1407 13 1 1406 12 1 1409 15 1 1407 13 1 1408 14 1 1410 16 1 1409 15 1 1408 14 1 1411 17 1 1409 15 1 1410 16 1 1414 2 0 1413 1 0 1412 0 0 1415 3 0 1413 1 0 1414 2 0 1416 4 0 1415 3 0 1414 2 0 1416 5 0 1415 3 0 1416 4 0 1417 6 1 1416 5 0 1416 4 0 1418 7 0 1416 5 0 1417 6 1 1419 8 1 1418 7 0 1417 6 1 1420 9 1 1418 7 0 1419 8 1 1421 10 1 1420 9 1 1419 8 1 1422 11 1 1420 9 1 1421 10 1 1423 12 1 1422 11 1 1421 10 1 1424 13 1 1422 11 1 1423 12 1 1425 14 1 1424 13 1 1423 12 1 1426 15 1 1424 13 1 1425 14 1 1427 16 1 1426 15 1 1425 14 1 1428 17 1 1426 15 1 1427 16 1 1431 2 0 1430 1 0 1429 0 0 1432 3 0 1430 1 0 1431 2 0 1433 4 0 1432 3 0 1431 2 0 1434 5 0 1432 3 0 1433 4 0 1435 6 1 1434 5 0 1433 4 0 1436 7 1 1434 5 0 1435 6 1 1437 8 1 1436 7 1 1435 6 1 1438 9 1 1436 7 1 1437 8 1 1439 10 1 1438 9 1 1437 8 1 1440 11 1 1438 9 1 1439 10 1 1441 12 1 1440 11 1 1439 10 1 1442 13 1 1440 11 1 1441 12 1 1443 14 1 1442 13 1 1441 12 1 1444 15 1 1442 13 1 1443 14 1 1445 16 1 1444 15 1 1443 14 1 1446 17 1 1444 15 1 1445 16 1 1449 2 0 1448 1 0 1447 0 0 1450 3 0 1448 1 0 1449 2 0 1451 4 0 1450 3 0 1449 2 0 1452 5 0 1450 3 0 1451 4 0 1453 6 1 1452 5 0 1451 4 0 1454 7 0 1452 5 0 1453 6 1 1455 8 1 1454 7 0 1453 6 1 1456 9 1 1454 7 0 1455 8 1 1457 10 1 1456 9 1 1455 8 1 1458 11 1 1456 9 1 1457 10 1 1459 12 1 1458 11 1 1457 10 1 1460 13 1 1458 11 1 1459 12 1 1461 14 1 1460 13 1 1459 12 1 1462 15 1 1460 13 1 1461 14 1 1463 16 1 1462 15 1 1461 14 1 1464 17 1 1462 15 1 1463 16 1 1467 2 0 1466 1 0 1465 0 0 1468 3 0 1466 1 0 1467 2 0 1469 4 0 1468 3 0 1467 2 0 1470 5 0 1468 3 0 1469 4 0 1471 6 1 1470 5 0 1469 4 0 1472 7 1 1470 5 0 1471 6 1 1473 8 1 1472 7 1 1471 6 1 1474 9 1 1472 7 1 1473 8 1 1475 10 1 1474 9 1 1473 8 1 1476 11 1 1474 9 1 1475 10 1 1477 12 1 1476 11 1 1475 10 1 1478 13 1 1476 11 1 1477 12 1 1479 14 1 1478 13 1 1477 12 1 1480 15 1 1478 13 1 1479 14 1 1481 16 1 1480 15 1 1479 14 1 1482 17 1 1480 15 1 1481 16 1 1485 2 0 1484 1 0 1483 0 0 1486 3 0 1484 1 0 1485 2 0 1487 4 0 1486 3 0 1485 2 0 1488 5 0 1486 3 0 1487 4 0 1489 6 0 1488 5 0 1487 4 0 1490 7 0 1488 5 0 1489 6 0 1491 8 1 1490 7 0 1489 6 0 1492 9 1 1490 7 0 1491 8 1 1493 10 1 1492 9 1 1491 8 1 1494 11 1 1492 9 1 1493 10 1 1495 12 1 1494 11 1 1493 10 1 1496 13 1 1494 11 1 1495 12 1 1497 14 1 1496 13 1 1495 12 1 1498 15 1 1496 13 1 1497 14 1 1499 16 1 1498 15 1 1497 14 1 1500 17 1 1498 15 1 1499 16 1 1503 2 0 1502 1 0 1501 0 0 1504 3 0 1502 1 0 1503 2 0 1505 4 0 1504 3 0 1503 2 0 1506 5 0 1504 3 0 1505 4 0 1507 6 0 1506 5 0 1505 4 0 1508 7 0 1506 5 0 1507 6 0 1509 8 1 1508 7 0 1507 6 0 1510 9 1 1508 7 0 1509 8 1 1511 10 1 1510 9 1 1509 8 1 1512 11 1 1510 9 1 1511 10 1 1513 12 1 1512 11 1 1511 10 1 1514 13 1 1512 11 1 1513 12 1 1515 14 1 1514 13 1 1513 12 1 1516 15 1 1514 13 1 1515 14 1 1517 16 1 1516 15 1 1515 14 1 1518 17 1 1516 15 1 1517 16 1 1521 2 0 1520 1 0 1519 0 0 1522 3 0 1520 1 0 1521 2 0 1523 4 0 1522 3 0 1521 2 0 1524 5 0 1522 3 0 1523 4 0 1525 6 1 1524 5 0 1523 4 0 1526 7 1 1524 5 0 1525 6 1 1527 8 1 1526 7 1 1525 6 1 1528 9 1 1526 7 1 1527 8 1 1529 10 1 1528 9 1 1527 8 1 1530 11 1 1528 9 1 1529 10 1 1531 12 1 1530 11 1 1529 10 1 1532 13 1 1530 11 1 1531 12 1 1533 14 1 1532 13 1 1531 12 1 1534 15 1 1532 13 1 1533 14 1 1535 16 1 1534 15 1 1533 14 1 1536 17 1 1534 15 1 1535 16 1 1539 2 0 1538 1 0 1537 0 0 1540 3 0 1538 1 0 1539 2 0 1541 4 0 1540 3 0 1539 2 0 1542 5 0 1540 3 0 1541 4 0 1543 6 0 1542 5 0 1541 4 0 1544 7 0 1542 5 0 1543 6 0 1545 8 1 1544 7 0 1543 6 0 1546 9 1 1544 7 0 1545 8 1 1547 10 1 1546 9 1 1545 8 1 1548 11 1 1546 9 1 1547 10 1 1549 12 1 1548 11 1 1547 10 1 1550 13 1 1548 11 1 1549 12 1 1551 14 1 1550 13 1 1549 12 1 1552 15 1 1550 13 1 1551 14 1 1553 16 1 1552 15 1 1551 14 1 1554 17 1 1552 15 1 1553 16 1 1557 2 0 1556 1 0 1555 0 0 1558 3 0 1556 1 0 1557 2 0 1559 4 0 1558 3 0 1557 2 0 1560 5 0 1558 3 0 1559 4 0 1561 6 1 1560 5 0 1559 4 0 1562 7 0 1560 5 0 1561 6 1 1563 8 1 1562 7 0 1561 6 1 1564 9 1 1562 7 0 1563 8 1 1565 10 1 1564 9 1 1563 8 1 1566 11 1 1564 9 1 1565 10 1 1567 12 1 1566 11 1 1565 10 1 1568 13 1 1566 11 1 1567 12 1 1569 14 1 1568 13 1 1567 12 1 1570 15 1 1568 13 1 1569 14 1 1571 16 1 1570 15 1 1569 14 1 1572 17 1 1570 15 1 1571 16 1 1575 2 0 1574 1 0 1573 0 0 1576 3 0 1574 1 0 1575 2 0 1577 4 0 1576 3 0 1575 2 0 1578 5 0 1576 3 0 1577 4 0 1579 6 1 1578 5 0 1577 4 0 1580 7 1 1578 5 0 1579 6 1 1581 8 1 1580 7 1 1579 6 1 1582 9 1 1580 7 1 1581 8 1 1583 10 1 1582 9 1 1581 8 1 1584 11 1 1582 9 1 1583 10 1 1585 12 1 1584 11 1 1583 10 1 1586 13 1 1584 11 1 1585 12 1 1587 14 1 1586 13 1 1585 12 1 1588 15 1 1586 13 1 1587 14 1 1589 16 1 1588 15 1 1587 14 1 1590 17 1 1588 15 1 1589 16 1 1593 2 0 1592 1 0 1591 0 0 1594 3 0 1592 1 0 1593 2 0 1595 4 0 1594 3 0 1593 2 0 1596 5 0 1594 3 0 1595 4 0 1597 6 0 1596 5 0 1595 4 0 1598 7 0 1596 5 0 1597 6 0 1599 8 1 1598 7 0 1597 6 0 1600 9 1 1598 7 0 1599 8 1 1601 10 1 1600 9 1 1599 8 1 1602 11 1 1600 9 1 1601 10 1 1603 12 1 1602 11 1 1601 10 1 1604 13 1 1602 11 1 1603 12 1 1605 14 1 1604 13 1 1603 12 1 1606 15 1 1604 13 1 1605 14 1 1607 16 1 1606 15 1 1605 14 1 1607 17 1 1606 15 1 1607 16 1 1610 2 0 1609 1 0 1608 0 0 1611 3 0 1609 1 0 1610 2 0 1612 4 0 1611 3 0 1610 2 0 1613 5 0 1611 3 0 1612 4 0 1614 6 1 1613 5 0 1612 4 0 1615 7 0 1613 5 0 1614 6 1 1616 8 1 1615 7 0 1614 6 1 1617 9 1 1615 7 0 1616 8 1 1618 10 1 1617 9 1 1616 8 1 1619 11 1 1617 9 1 1618 10 1 1620 12 1 1619 11 1 1618 10 1 1621 13 1 1619 11 1 1620 12 1 1622 14 1 1621 13 1 1620 12 1 1623 15 1 1621 13 1 1622 14 1 1624 16 1 1623 15 1 1622 14 1 1625 17 1 1623 15 1 1624 16 1 1628 2 0 1627 1 0 1626 0 0 1629 3 0 1627 1 0 1628 2 0 1630 4 0 1629 3 0 1628 2 0 1631 5 0 1629 3 0 1630 4 0 1632 6 1 1631 5 0 1630 4 0 1633 7 1 1631 5 0 1632 6 1 1634 8 1 1633 7 1 1632 6 1 1635 9 1 1633 7 1 1634 8 1 1636 10 1 1635 9 1 1634 8 1 1637 11 1 1635 9 1 1636 10 1 1638 12 1 1637 11 1 1636 10 1 1639 13 1 1637 11 1 1638 12 1 1640 14 1 1639 13 1 1638 12 1 1641 15 1 1639 13 1 1640 14 1 1642 16 1 1641 15 1 1640 14 1 1643 17 1 1641 15 1 1642 16 1 1646 2 0 1645 1 0 1644 0 0 1647 3 0 1645 1 0 1646 2 0 1648 4 0 1647 3 0 1646 2 0 1649 5 0 1647 3 0 1648 4 0 1650 6 0 1649 5 0 1648 4 0 1651 7 0 1649 5 0 1650 6 0 1652 8 1 1651 7 0 1650 6 0 1653 9 1 1651 7 0 1652 8 1 1654 10 1 1653 9 1 1652 8 1 1655 11 1 1653 9 1 1654 10 1 1656 12 1 1655 11 1 1654 10 1 1657 13 1 1655 11 1 1656 12 1 1658 14 1 1657 13 1 1656 12 1 1659 15 1 1657 13 1 1658 14 1 1660 16 1 1659 15 1 1658 14 1 1661 17 1 1659 15 1 1660 16 1 1664 2 0 1663 1 0 1662 0 0 1665 3 0 1663 1 0 1664 2 0 1666 4 0 1665 3 0 1664 2 0 1667 5 0 1665 3 0 1666 4 0 1668 6 1 1667 5 0 1666 4 0 1669 7 0 1667 5 0 1668 6 1 1670 8 1 1669 7 0 1668 6 1 1671 9 1 1669 7 0 1670 8 1 1672 10 1 1671 9 1 1670 8 1 1673 11 1 1671 9 1 1672 10 1 1674 12 1 1673 11 1 1672 10 1 1675 13 1 1673 11 1 1674 12 1 1676 14 1 1675 13 1 1674 12 1 1677 15 1 1675 13 1 1676 14 1 1678 16 1 1677 15 1 1676 14 1 1679 17 1 1677 15 1 1678 16 1 1682 2 0 1681 1 0 1680 0 0 1683 3 0 1681 1 0 1682 2 0 1684 4 0 1683 3 0 1682 2 0 1685 5 0 1683 3 0 1684 4 0 1686 6 1 1685 5 0 1684 4 0 1687 7 1 1685 5 0 1686 6 1 1688 8 1 1687 7 1 1686 6 1 1689 9 1 1687 7 1 1688 8 1 1690 10 1 1689 9 1 1688 8 1 1691 11 1 1689 9 1 1690 10 1 1692 12 1 1691 11 1 1690 10 1 1693 13 1 1691 11 1 1692 12 1 1694 14 1 1693 13 1 1692 12 1 1695 15 1 1693 13 1 1694 14 1 1696 16 1 1695 15 1 1694 14 1 1697 17 1 1695 15 1 1696 16 1 1700 2 0 1699 1 0 1698 0 0 1701 3 0 1699 1 0 1700 2 0 1702 4 0 1701 3 0 1700 2 0 1703 5 0 1701 3 0 1702 4 0 1704 6 0 1703 5 0 1702 4 0 1705 7 0 1703 5 0 1704 6 0 1706 8 1 1705 7 0 1704 6 0 1707 9 1 1705 7 0 1706 8 1 1708 10 1 1707 9 1 1706 8 1 1709 11 1 1707 9 1 1708 10 1 1710 12 1 1709 11 1 1708 10 1 1711 13 1 1709 11 1 1710 12 1 1712 14 1 1711 13 1 1710 12 1 1713 15 1 1711 13 1 1712 14 1 1714 16 1 1713 15 1 1712 14 1 1715 17 1 1713 15 1 1714 16 1 1718 2 0 1717 1 0 1716 0 0 1719 3 0 1717 1 0 1718 2 0 1720 4 0 1719 3 0 1718 2 0 1721 5 0 1719 3 0 1720 4 0 1722 6 1 1721 5 0 1720 4 0 1723 7 0 1721 5 0 1722 6 1 1724 8 1 1723 7 0 1722 6 1 1725 9 1 1723 7 0 1724 8 1 1726 10 1 1725 9 1 1724 8 1 1727 11 1 1725 9 1 1726 10 1 1728 12 1 1727 11 1 1726 10 1 1729 13 1 1727 11 1 1728 12 1 1730 14 1 1729 13 1 1728 12 1 1731 15 1 1729 13 1 1730 14 1 1732 16 1 1731 15 1 1730 14 1 1733 17 1 1731 15 1 1732 16 1 1718 2 0 1735 1 0 1734 0 0 1736 3 0 1735 1 0 1718 2 0 1737 4 0 1736 3 0 1718 2 0 1738 5 0 1736 3 0 1737 4 0 1739 6 1 1738 5 0 1737 4 0 1740 7 1 1738 5 0 1739 6 1 1741 8 1 1740 7 1 1739 6 1 1742 9 1 1740 7 1 1741 8 1 1743 10 1 1742 9 1 1741 8 1 1744 11 1 1742 9 1 1743 10 1 1745 12 1 1744 11 1 1743 10 1 1746 13 1 1744 11 1 1745 12 1 1747 14 1 1746 13 1 1745 12 1 1748 15 1 1746 13 1 1747 14 1 1749 16 1 1748 15 1 1747 14 1 1750 17 1 1748 15 1 1749 16 1 1753 2 0 1752 1 0 1751 0 0 1754 3 0 1752 1 0 1753 2 0 1755 4 0 1754 3 0 1753 2 0 1756 5 0 1754 3 0 1755 4 0 1757 6 0 1756 5 0 1755 4 0 1758 7 0 1756 5 0 1757 6 0 1759 8 1 1758 7 0 1757 6 0 1760 9 1 1758 7 0 1759 8 1 1761 10 1 1760 9 1 1759 8 1 1762 11 1 1760 9 1 1761 10 1 1763 12 1 1762 11 1 1761 10 1 1764 13 1 1762 11 1 1763 12 1 1765 14 1 1764 13 1 1763 12 1 1766 15 1 1764 13 1 1765 14 1 1767 16 1 1766 15 1 1765 14 1 1768 17 1 1766 15 1 1767 16 1 1771 2 0 1770 1 0 1769 0 0 1772 3 0 1770 1 0 1771 2 0 1773 4 0 1772 3 0 1771 2 0 1774 5 0 1772 3 0 1773 4 0 1775 6 1 1774 5 0 1773 4 0 1776 7 0 1774 5 0 1775 6 1 1777 8 1 1776 7 0 1775 6 1 1778 9 1 1776 7 0 1777 8 1 1779 10 1 1778 9 1 1777 8 1 1780 11 1 1778 9 1 1779 10 1 1781 12 1 1780 11 1 1779 10 1 1782 13 1 1780 11 1 1781 12 1 1783 14 1 1782 13 1 1781 12 1 1784 15 1 1782 13 1 1783 14 1 1785 16 1 1784 15 1 1783 14 1 1786 17 1 1784 15 1 1785 16 1 1789 2 0 1788 1 0 1787 0 0 1790 3 0 1788 1 0 1789 2 0 1791 4 0 1790 3 0 1789 2 0 1792 5 0 1790 3 0 1791 4 0 1793 6 1 1792 5 0 1791 4 0 1794 7 1 1792 5 0 1793 6 1 1795 8 1 1794 7 1 1793 6 1 1796 9 1 1794 7 1 1795 8 1 1797 10 1 1796 9 1 1795 8 1 1798 11 1 1796 9 1 1797 10 1 1799 12 1 1798 11 1 1797 10 1 1800 13 1 1798 11 1 1799 12 1 1801 14 1 1800 13 1 1799 12 1 1802 15 1 1800 13 1 1801 14 1 1803 16 1 1802 15 1 1801 14 1 1804 17 1 1802 15 1 1803 16 1 1807 2 0 1806 1 0 1805 0 0 1808 3 0 1806 1 0 1807 2 0 1809 4 0 1808 3 0 1807 2 0 1810 5 0 1808 3 0 1809 4 0 1811 6 0 1810 5 0 1809 4 0 1812 7 0 1810 5 0 1811 6 0 1813 8 1 1812 7 0 1811 6 0 1814 9 1 1812 7 0 1813 8 1 1815 10 1 1814 9 1 1813 8 1 1816 11 1 1814 9 1 1815 10 1 1817 12 1 1816 11 1 1815 10 1 1818 13 1 1816 11 1 1817 12 1 1819 14 1 1818 13 1 1817 12 1 1820 15 1 1818 13 1 1819 14 1 1821 16 1 1820 15 1 1819 14 1 1821 17 1 1820 15 1 1821 16 1 1824 2 2 1823 1 2 1822 0 2 1825 3 2 1823 1 2 1824 2 2 1826 4 2 1825 3 2 1824 2 2 1827 5 2 1825 3 2 1826 4 2 1828 6 2 1827 5 2 1826 4 2 1829 7 2 1827 5 2 1828 6 2 1830 8 2 1829 7 2 1828 6 2 1831 9 2 1829 7 2 1830 8 2 1832 10 2 1831 9 2 1830 8 2 1833 11 2 1831 9 2 1832 10 2 1834 12 2 1833 11 2 1832 10 2 1835 13 2 1833 11 2 1834 12 2 1836 14 2 1835 13 2 1834 12 2 1837 15 2 1835 13 2 1836 14 2 1838 16 2 1837 15 2 1836 14 2 1839 17 2 1837 15 2 1838 16 2 1824 2 2 1841 1 2 1840 0 2 1842 3 2 1841 1 2 1824 2 2 1843 4 2 1842 3 2 1824 2 2 1844 5 2 1842 3 2 1843 4 2 1845 6 2 1844 5 2 1843 4 2 1846 7 2 1844 5 2 1845 6 2 1847 8 2 1846 7 2 1845 6 2 1848 9 2 1846 7 2 1847 8 2 1849 10 2 1848 9 2 1847 8 2 1850 11 2 1848 9 2 1849 10 2 1851 12 2 1850 11 2 1849 10 2 1852 13 2 1850 11 2 1851 12 2 1853 14 2 1852 13 2 1851 12 2 1854 15 2 1852 13 2 1853 14 2 1855 16 2 1854 15 2 1853 14 2 1856 17 2 1854 15 2 1855 16 2 1859 2 2 1858 1 2 1857 0 2 1860 3 2 1858 1 2 1859 2 2 1861 4 2 1860 3 2 1859 2 2 1862 5 2 1860 3 2 1861 4 2 1863 6 2 1862 5 2 1861 4 2 1864 7 2 1862 5 2 1863 6 2 1865 8 2 1864 7 2 1863 6 2 1866 9 2 1864 7 2 1865 8 2 1867 10 2 1866 9 2 1865 8 2 1868 11 2 1866 9 2 1867 10 2 1869 12 2 1868 11 2 1867 10 2 1870 13 2 1868 11 2 1869 12 2 1871 14 2 1870 13 2 1869 12 2 1872 15 2 1870 13 2 1871 14 2 1873 16 2 1872 15 2 1871 14 2 1874 17 2 1872 15 2 1873 16 2 1877 2 2 1876 1 2 1875 0 2 1878 3 2 1876 1 2 1877 2 2 1879 4 2 1878 3 2 1877 2 2 1880 5 2 1878 3 2 1879 4 2 1881 6 2 1880 5 2 1879 4 2 1882 7 2 1880 5 2 1881 6 2 1883 8 2 1882 7 2 1881 6 2 1884 9 2 1882 7 2 1883 8 2 1885 10 2 1884 9 2 1883 8 2 1886 11 2 1884 9 2 1885 10 2 1887 12 2 1886 11 2 1885 10 2 1888 13 2 1886 11 2 1887 12 2 1889 14 2 1888 13 2 1887 12 2 1890 15 2 1888 13 2 1889 14 2 1891 16 2 1890 15 2 1889 14 2 1892 17 2 1890 15 2 1891 16 2 1895 2 2 1894 1 2 1893 0 2 1896 3 2 1894 1 2 1895 2 2 1897 4 2 1896 3 2 1895 2 2 1898 5 2 1896 3 2 1897 4 2 1899 6 2 1898 5 2 1897 4 2 1900 7 2 1898 5 2 1899 6 2 1901 8 2 1900 7 2 1899 6 2 1902 9 2 1900 7 2 1901 8 2 1903 10 2 1902 9 2 1901 8 2 1904 11 2 1902 9 2 1903 10 2 1905 12 2 1904 11 2 1903 10 2 1906 13 2 1904 11 2 1905 12 2 1907 14 2 1906 13 2 1905 12 2 1908 15 2 1906 13 2 1907 14 2 1909 16 2 1908 15 2 1907 14 2 1910 17 2 1908 15 2 1909 16 2 1913 2 2 1912 1 2 1911 0 2 1914 3 2 1912 1 2 1913 2 2 1915 4 2 1914 3 2 1913 2 2 1916 5 2 1914 3 2 1915 4 2 1917 6 2 1916 5 2 1915 4 2 1918 7 2 1916 5 2 1917 6 2 1919 8 2 1918 7 2 1917 6 2 1920 9 2 1918 7 2 1919 8 2 1921 10 2 1920 9 2 1919 8 2 1922 11 2 1920 9 2 1921 10 2 1923 12 2 1922 11 2 1921 10 2 1924 13 2 1922 11 2 1923 12 2 1925 14 2 1924 13 2 1923 12 2 1926 15 2 1924 13 2 1925 14 2 1927 16 2 1926 15 2 1925 14 2 1928 17 2 1926 15 2 1927 16 2 1931 2 0 1930 1 0 1929 0 0 1932 3 0 1930 1 0 1931 2 0 1933 4 0 1932 3 0 1931 2 0 1934 5 0 1932 3 0 1933 4 0 1935 6 1 1934 5 0 1933 4 0 1936 7 0 1934 5 0 1935 6 1 1937 8 1 1936 7 0 1935 6 1 1938 9 1 1936 7 0 1937 8 1 1939 10 1 1938 9 1 1937 8 1 1940 11 1 1938 9 1 1939 10 1 1941 12 1 1940 11 1 1939 10 1 1942 13 1 1940 11 1 1941 12 1 1943 14 1 1942 13 1 1941 12 1 1944 15 1 1942 13 1 1943 14 1 1945 16 1 1944 15 1 1943 14 1 1946 17 1 1944 15 1 1945 16 1 1949 2 0 1948 1 0 1947 0 0 1950 3 0 1948 1 0 1949 2 0 1951 4 0 1950 3 0 1949 2 0 1952 5 0 1950 3 0 1951 4 0 1953 6 1 1952 5 0 1951 4 0 1954 7 1 1952 5 0 1953 6 1 1955 8 1 1954 7 1 1953 6 1 1956 9 1 1954 7 1 1955 8 1 1957 10 1 1956 9 1 1955 8 1 1958 11 1 1956 9 1 1957 10 1 1959 12 1 1958 11 1 1957 10 1 1960 13 1 1958 11 1 1959 12 1 1961 14 1 1960 13 1 1959 12 1 1962 15 1 1960 13 1 1961 14 1 1963 16 1 1962 15 1 1961 14 1 1964 17 1 1962 15 1 1963 16 1 1967 2 0 1966 1 0 1965 0 0 1968 3 0 1966 1 0 1967 2 0 1969 4 0 1968 3 0 1967 2 0 1970 5 0 1968 3 0 1969 4 0 1971 6 0 1970 5 0 1969 4 0 1972 7 0 1970 5 0 1971 6 0 1973 8 1 1972 7 0 1971 6 0 1974 9 1 1972 7 0 1973 8 1 1975 10 1 1974 9 1 1973 8 1 1976 11 1 1974 9 1 1975 10 1 1977 12 1 1976 11 1 1975 10 1 1978 13 1 1976 11 1 1977 12 1 1979 14 1 1978 13 1 1977 12 1 1980 15 1 1978 13 1 1979 14 1 1981 16 1 1980 15 1 1979 14 1 1982 17 1 1980 15 1 1981 16 1 1985 2 1 1984 1 1 1983 0 1 1986 3 1 1984 1 1 1985 2 1 1987 4 1 1986 3 1 1985 2 1 1988 5 1 1986 3 1 1987 4 1 1989 6 1 1988 5 1 1987 4 1 1990 7 1 1988 5 1 1989 6 1 1991 8 1 1990 7 1 1989 6 1 1992 9 1 1990 7 1 1991 8 1 1993 10 1 1992 9 1 1991 8 1 1994 11 1 1992 9 1 1993 10 1 1995 12 1 1994 11 1 1993 10 1 1996 13 1 1994 11 1 1995 12 1 1997 14 1 1996 13 1 1995 12 1 1998 15 1 1996 13 1 1997 14 1 1999 16 1 1998 15 1 1997 14 1 2000 17 1 1998 15 1 1999 16 1 2003 2 1 2002 1 1 2001 0 1 2004 3 1 2002 1 1 2003 2 1 2005 4 1 2004 3 1 2003 2 1 2006 5 1 2004 3 1 2005 4 1 2007 6 1 2006 5 1 2005 4 1 2008 7 1 2006 5 1 2007 6 1 2009 8 1 2008 7 1 2007 6 1 2010 9 1 2008 7 1 2009 8 1 2011 10 1 2010 9 1 2009 8 1 2012 11 1 2010 9 1 2011 10 1 2013 12 1 2012 11 1 2011 10 1 2014 13 1 2012 11 1 2013 12 1 2015 14 1 2014 13 1 2013 12 1 2016 15 1 2014 13 1 2015 14 1 2017 16 1 2016 15 1 2015 14 1 2018 17 1 2016 15 1 2017 16 1 2021 2 1 2020 1 1 2019 0 1 2022 3 1 2020 1 1 2021 2 1 2023 4 1 2022 3 1 2021 2 1 2024 5 1 2022 3 1 2023 4 1 2025 6 1 2024 5 1 2023 4 1 2026 7 1 2024 5 1 2025 6 1 2027 8 1 2026 7 1 2025 6 1 2028 9 1 2026 7 1 2027 8 1 2029 10 1 2028 9 1 2027 8 1 2030 11 1 2028 9 1 2029 10 1 2031 12 1 2030 11 1 2029 10 1 2032 13 1 2030 11 1 2031 12 1 2033 14 1 2032 13 1 2031 12 1 2034 15 1 2032 13 1 2033 14 1 2035 16 1 2034 15 1 2033 14 1 2036 17 1 2034 15 1 2035 16 1 2039 2 0 2038 1 0 2037 0 0 2040 3 0 2038 1 0 2039 2 0 2041 4 0 2040 3 0 2039 2 0 2041 5 0 2040 3 0 2041 4 0 2042 6 1 2041 5 0 2041 4 0 2043 7 0 2041 5 0 2042 6 1 2044 8 1 2043 7 0 2042 6 1 2045 9 1 2043 7 0 2044 8 1 2046 10 1 2045 9 1 2044 8 1 2047 11 1 2045 9 1 2046 10 1 2048 12 1 2047 11 1 2046 10 1 2049 13 1 2047 11 1 2048 12 1 2050 14 1 2049 13 1 2048 12 1 2051 15 1 2049 13 1 2050 14 1 2052 16 1 2051 15 1 2050 14 1 2053 17 1 2051 15 1 2052 16 1 2056 2 0 2055 1 0 2054 0 0 2057 3 0 2055 1 0 2056 2 0 2058 4 0 2057 3 0 2056 2 0 2059 5 0 2057 3 0 2058 4 0 2060 6 1 2059 5 0 2058 4 0 2061 7 1 2059 5 0 2060 6 1 2062 8 1 2061 7 1 2060 6 1 2063 9 1 2061 7 1 2062 8 1 2064 10 1 2063 9 1 2062 8 1 2065 11 1 2063 9 1 2064 10 1 2066 12 1 2065 11 1 2064 10 1 2067 13 1 2065 11 1 2066 12 1 2068 14 1 2067 13 1 2066 12 1 2069 15 1 2067 13 1 2068 14 1 2070 16 1 2069 15 1 2068 14 1 2071 17 1 2069 15 1 2070 16 1 2074 2 0 2073 1 0 2072 0 0 2075 3 0 2073 1 0 2074 2 0 2076 4 0 2075 3 0 2074 2 0 2077 5 0 2075 3 0 2076 4 0 2078 6 0 2077 5 0 2076 4 0 2079 7 0 2077 5 0 2078 6 0 2080 8 1 2079 7 0 2078 6 0 2081 9 1 2079 7 0 2080 8 1 2082 10 1 2081 9 1 2080 8 1 2083 11 1 2081 9 1 2082 10 1 2084 12 1 2083 11 1 2082 10 1 2085 13 1 2083 11 1 2084 12 1 2086 14 1 2085 13 1 2084 12 1 2087 15 1 2085 13 1 2086 14 1 2088 16 1 2087 15 1 2086 14 1 2089 17 1 2087 15 1 2088 16 1 2092 2 3 2091 1 3 2090 0 3 2093 3 3 2091 1 3 2092 2 3 2094 4 3 2093 3 3 2092 2 3 2095 5 3 2093 3 3 2094 4 3 2096 6 3 2095 5 3 2094 4 3 2097 7 3 2095 5 3 2096 6 3 2098 8 3 2097 7 3 2096 6 3 2099 9 3 2097 7 3 2098 8 3 2100 18 3 2099 9 3 2098 8 3 2101 19 3 2099 9 3 2100 18 3 2102 12 3 2101 19 3 2100 18 3 2103 13 3 2101 19 3 2102 12 3 2104 14 3 2103 13 3 2102 12 3 2105 15 3 2103 13 3 2104 14 3 2107 2 3 2090 1 3 2106 0 3 2108 3 3 2090 1 3 2107 2 3 2109 4 3 2108 3 3 2107 2 3 2110 5 3 2108 3 3 2109 4 3 2111 6 3 2110 5 3 2109 4 3 2112 7 3 2110 5 3 2111 6 3 2113 8 3 2112 7 3 2111 6 3 2114 9 3 2112 7 3 2113 8 3 2115 18 3 2114 9 3 2113 8 3 2116 19 3 2114 9 3 2115 18 3 2117 12 3 2116 19 3 2115 18 3 2118 13 3 2116 19 3 2117 12 3 2119 14 3 2118 13 3 2117 12 3 2120 15 3 2118 13 3 2119 14 3 2123 2 0 2122 1 0 2121 0 3 2124 3 0 2122 1 0 2123 2 0 2125 4 0 2124 3 0 2123 2 0 2126 5 0 2124 3 0 2125 4 0 2127 6 0 2126 5 0 2125 4 0 2128 7 0 2126 5 0 2127 6 0 2129 8 1 2128 7 0 2127 6 0 2130 9 1 2128 7 0 2129 8 1 2131 18 1 2130 9 1 2129 8 1 2132 19 1 2130 9 1 2131 18 1 2133 12 1 2132 19 1 2131 18 1 2134 13 1 2132 19 1 2133 12 1 2135 14 1 2134 13 1 2133 12 1 2136 15 1 2134 13 1 2135 14 1 2139 2 3 2138 1 3 2137 0 3 2140 3 3 2138 1 3 2139 2 3 2141 4 3 2140 3 3 2139 2 3 2142 5 3 2140 3 3 2141 4 3 2143 6 3 2142 5 3 2141 4 3 2144 7 3 2142 5 3 2143 6 3 2145 8 3 2144 7 3 2143 6 3 2146 9 3 2144 7 3 2145 8 3 2147 18 3 2146 9 3 2145 8 3 2148 19 3 2146 9 3 2147 18 3 2149 12 3 2148 19 3 2147 18 3 2150 13 3 2148 19 3 2149 12 3 2151 14 3 2150 13 3 2149 12 3 2152 15 3 2150 13 3 2151 14 3 2139 2 3 2154 1 3 2153 0 3 2155 3 3 2154 1 3 2139 2 3 2156 4 3 2155 3 3 2139 2 3 2157 5 3 2155 3 3 2156 4 3 2158 6 3 2157 5 3 2156 4 3 2159 7 3 2157 5 3 2158 6 3 2160 8 3 2159 7 3 2158 6 3 2161 9 3 2159 7 3 2160 8 3 2162 18 3 2161 9 3 2160 8 3 2162 19 3 2161 9 3 2162 18 3 2163 12 3 2162 19 3 2162 18 3 2164 13 3 2162 19 3 2163 12 3 2165 14 3 2164 13 3 2163 12 3 2166 15 3 2164 13 3 2165 14 3 2169 2 3 2168 1 3 2167 0 3 2170 3 3 2168 1 3 2169 2 3 2171 4 3 2170 3 3 2169 2 3 2172 5 3 2170 3 3 2171 4 3 2173 6 3 2172 5 3 2171 4 3 2174 7 3 2172 5 3 2173 6 3 2175 8 3 2174 7 3 2173 6 3 2176 9 3 2174 7 3 2175 8 3 2177 18 3 2176 9 3 2175 8 3 2178 19 3 2176 9 3 2177 18 3 2179 12 3 2178 19 3 2177 18 3 2180 13 3 2178 19 3 2179 12 3 2181 14 3 2180 13 3 2179 12 3 2182 15 3 2180 13 3 2181 14 3 2185 2 3 2184 1 3 2183 0 3 2186 3 3 2184 1 3 2185 2 3 2187 4 3 2186 3 3 2185 2 3 2188 5 3 2186 3 3 2187 4 3 2189 6 3 2188 5 3 2187 4 3 2190 7 3 2188 5 3 2189 6 3 2191 8 3 2190 7 3 2189 6 3 2192 9 3 2190 7 3 2191 8 3 2193 18 3 2192 9 3 2191 8 3 2194 19 3 2192 9 3 2193 18 3 2195 12 3 2194 19 3 2193 18 3 2196 13 3 2194 19 3 2195 12 3 2197 14 3 2196 13 3 2195 12 3 2198 15 3 2196 13 3 2197 14 3 2200 2 3 2154 1 3 2199 0 3 2201 3 3 2154 1 3 2200 2 3 2202 4 3 2201 3 3 2200 2 3 2203 5 3 2201 3 3 2202 4 3 2204 6 3 2203 5 3 2202 4 3 2205 7 3 2203 5 3 2204 6 3 2206 8 3 2205 7 3 2204 6 3 2207 9 3 2205 7 3 2206 8 3 2208 18 3 2207 9 3 2206 8 3 2209 19 3 2207 9 3 2208 18 3 2210 12 3 2209 19 3 2208 18 3 2211 13 3 2209 19 3 2210 12 3 2212 14 3 2211 13 3 2210 12 3 2213 15 3 2211 13 3 2212 14 3 2185 2 3 2184 1 3 2153 0 3 2214 3 3 2184 1 3 2185 2 3 2215 4 3 2214 3 3 2185 2 3 2216 5 3 2214 3 3 2215 4 3 2217 6 3 2216 5 3 2215 4 3 2218 7 3 2216 5 3 2217 6 3 2219 8 3 2218 7 3 2217 6 3 2220 9 3 2218 7 3 2219 8 3 2221 18 3 2220 9 3 2219 8 3 2222 19 3 2220 9 3 2221 18 3 2223 12 3 2222 19 3 2221 18 3 2224 13 3 2222 19 3 2223 12 3 2225 14 3 2224 13 3 2223 12 3 2226 15 3 2224 13 3 2225 14 3 2229 2 3 2228 1 3 2227 0 3 2230 3 3 2228 1 3 2229 2 3 2231 4 3 2230 3 3 2229 2 3 2232 5 3 2230 3 3 2231 4 3 2233 6 3 2232 5 3 2231 4 3 2234 7 3 2232 5 3 2233 6 3 2235 8 3 2234 7 3 2233 6 3 2236 9 3 2234 7 3 2235 8 3 2237 18 3 2236 9 3 2235 8 3 2238 19 3 2236 9 3 2237 18 3 2239 12 3 2238 19 3 2237 18 3 2240 13 3 2238 19 3 2239 12 3 2241 14 3 2240 13 3 2239 12 3 2242 15 3 2240 13 3 2241 14 3 2243 2 3 2227 1 3 2228 0 3 2244 3 3 2227 1 3 2243 2 3 2245 4 3 2244 3 3 2243 2 3 2246 5 3 2244 3 3 2245 4 3 2247 6 3 2246 5 3 2245 4 3 2248 7 3 2246 5 3 2247 6 3 2249 8 3 2248 7 3 2247 6 3 2250 9 3 2248 7 3 2249 8 3 2251 18 3 2250 9 3 2249 8 3 2252 19 3 2250 9 3 2251 18 3 2253 12 3 2252 19 3 2251 18 3 2254 13 3 2252 19 3 2253 12 3 2255 14 3 2254 13 3 2253 12 3 2256 15 3 2254 13 3 2255 14 3 2257 2 3 2228 1 3 2227 0 3 2258 3 3 2228 1 3 2257 2 3 2259 4 3 2258 3 3 2257 2 3 2260 5 3 2258 3 3 2259 4 3 2261 6 3 2260 5 3 2259 4 3 2262 7 3 2260 5 3 2261 6 3 2263 8 3 2262 7 3 2261 6 3 2264 9 3 2262 7 3 2263 8 3 2265 18 3 2264 9 3 2263 8 3 2266 19 3 2264 9 3 2265 18 3 2267 12 3 2266 19 3 2265 18 3 2268 13 3 2266 19 3 2267 12 3 2269 14 3 2268 13 3 2267 12 3 2270 15 3 2268 13 3 2269 14 3 2272 2 3 2227 1 3 2271 0 3 2273 3 3 2227 1 3 2272 2 3 2274 4 3 2273 3 3 2272 2 3 2275 5 3 2273 3 3 2274 4 3 2276 6 3 2275 5 3 2274 4 3 2277 7 3 2275 5 3 2276 6 3 2278 8 3 2277 7 3 2276 6 3 2279 9 3 2277 7 3 2278 8 3 2280 18 3 2279 9 3 2278 8 3 2281 19 3 2279 9 3 2280 18 3 2282 12 3 2281 19 3 2280 18 3 2283 13 3 2281 19 3 2282 12 3 2284 14 3 2283 13 3 2282 12 3 2285 15 3 2283 13 3 2284 14 3 2287 2 0 2286 1 0 2227 0 3 2288 3 0 2286 1 0 2287 2 0 2289 4 0 2288 3 0 2287 2 0 2290 5 0 2288 3 0 2289 4 0 2291 6 0 2290 5 0 2289 4 0 2292 7 0 2290 5 0 2291 6 0 2293 8 1 2292 7 0 2291 6 0 2294 9 1 2292 7 0 2293 8 1 2295 18 1 2294 9 1 2293 8 1 2296 19 1 2294 9 1 2295 18 1 2297 12 1 2296 19 1 2295 18 1 2298 13 1 2296 19 1 2297 12 1 2299 14 1 2298 13 1 2297 12 1 2300 15 1 2298 13 1 2299 14 1 2303 2 3 2302 1 3 2301 0 3 2304 3 3 2302 1 3 2303 2 3 2305 4 3 2304 3 3 2303 2 3 2305 5 3 2304 3 3 2305 4 3 2306 6 3 2305 5 3 2305 4 3 2307 7 3 2305 5 3 2306 6 3 2308 8 3 2307 7 3 2306 6 3 2309 9 3 2307 7 3 2308 8 3 2310 18 3 2309 9 3 2308 8 3 2311 19 3 2309 9 3 2310 18 3 2312 12 3 2311 19 3 2310 18 3 2312 13 3 2311 19 3 2312 12 3 2313 14 3 2312 13 3 2312 12 3 2314 15 3 2312 13 3 2313 14 3 2303 2 3 2316 1 3 2315 0 3 2317 3 3 2316 1 3 2303 2 3 2318 4 3 2317 3 3 2303 2 3 2319 5 3 2317 3 3 2318 4 3 2320 6 3 2319 5 3 2318 4 3 2321 7 3 2319 5 3 2320 6 3 2322 8 3 2321 7 3 2320 6 3 2323 9 3 2321 7 3 2322 8 3 2324 18 3 2323 9 3 2322 8 3 2325 19 3 2323 9 3 2324 18 3 2326 12 3 2325 19 3 2324 18 3 2327 13 3 2325 19 3 2326 12 3 2328 14 3 2327 13 3 2326 12 3 2328 15 3 2327 13 3 2328 14 3 2331 2 3 2330 1 3 2329 0 3 2332 3 3 2330 1 3 2331 2 3 2333 4 3 2332 3 3 2331 2 3 2334 5 3 2332 3 3 2333 4 3 2335 6 3 2334 5 3 2333 4 3 2336 7 3 2334 5 3 2335 6 3 2337 8 3 2336 7 3 2335 6 3 2338 9 3 2336 7 3 2337 8 3 2339 18 3 2338 9 3 2337 8 3 2340 19 3 2338 9 3 2339 18 3 2341 12 3 2340 19 3 2339 18 3 2342 13 3 2340 19 3 2341 12 3 2343 14 3 2342 13 3 2341 12 3 2343 15 3 2342 13 3 2343 14 3 2346 2 3 2345 1 3 2344 0 3 2347 3 3 2345 1 3 2346 2 3 2348 4 3 2347 3 3 2346 2 3 2349 5 3 2347 3 3 2348 4 3 2350 6 3 2349 5 3 2348 4 3 2351 7 3 2349 5 3 2350 6 3 2352 8 3 2351 7 3 2350 6 3 2353 9 3 2351 7 3 2352 8 3 2354 18 3 2353 9 3 2352 8 3 2355 19 3 2353 9 3 2354 18 3 2356 12 3 2355 19 3 2354 18 3 2357 13 3 2355 19 3 2356 12 3 2358 14 3 2357 13 3 2356 12 3 2359 15 3 2357 13 3 2358 14 3 2361 2 3 2316 1 3 2360 0 3 2362 3 3 2316 1 3 2361 2 3 2363 4 3 2362 3 3 2361 2 3 2364 5 3 2362 3 3 2363 4 3 2365 6 3 2364 5 3 2363 4 3 2366 7 3 2364 5 3 2365 6 3 2367 8 3 2366 7 3 2365 6 3 2368 9 3 2366 7 3 2367 8 3 2369 18 3 2368 9 3 2367 8 3 2370 19 3 2368 9 3 2369 18 3 2371 12 3 2370 19 3 2369 18 3 2372 13 3 2370 19 3 2371 12 3 2373 14 3 2372 13 3 2371 12 3 2374 15 3 2372 13 3 2373 14 3 2346 2 3 2375 1 3 2301 0 3 2376 3 3 2375 1 3 2346 2 3 2377 4 3 2376 3 3 2346 2 3 2378 5 3 2376 3 3 2377 4 3 2379 6 3 2378 5 3 2377 4 3 2380 7 3 2378 5 3 2379 6 3 2381 8 3 2380 7 3 2379 6 3 2382 9 3 2380 7 3 2381 8 3 2383 18 3 2382 9 3 2381 8 3 2384 19 3 2382 9 3 2383 18 3 2385 12 3 2384 19 3 2383 18 3 2386 13 3 2384 19 3 2385 12 3 2387 14 3 2386 13 3 2385 12 3 2388 15 3 2386 13 3 2387 14 3 2390 2 3 2389 1 3 2389 0 3 2391 3 3 2389 1 3 2390 2 3 2392 4 3 2391 3 3 2390 2 3 2393 5 3 2391 3 3 2392 4 3 2394 6 3 2393 5 3 2392 4 3 2395 7 3 2393 5 3 2394 6 3 2396 8 3 2395 7 3 2394 6 3 2397 9 3 2395 7 3 2396 8 3 2398 18 3 2397 9 3 2396 8 3 2399 19 3 2397 9 3 2398 18 3 2400 12 3 2399 19 3 2398 18 3 2401 13 3 2399 19 3 2400 12 3 2402 14 3 2401 13 3 2400 12 3 2403 15 3 2401 13 3 2402 14 3 2390 2 3 2405 1 3 2404 0 3 2406 3 3 2405 1 3 2390 2 3 2407 4 3 2406 3 3 2390 2 3 2408 5 3 2406 3 3 2407 4 3 2409 6 3 2408 5 3 2407 4 3 2410 7 3 2408 5 3 2409 6 3 2411 8 3 2410 7 3 2409 6 3 2411 9 3 2410 7 3 2411 8 3 2412 18 3 2411 9 3 2411 8 3 2413 19 3 2411 9 3 2412 18 3 2414 12 3 2413 19 3 2412 18 3 2415 13 3 2413 19 3 2414 12 3 2416 14 3 2415 13 3 2414 12 3 2417 15 3 2415 13 3 2416 14 3 2418 2 3 2404 1 3 2405 0 3 2419 3 3 2404 1 3 2418 2 3 2420 4 3 2419 3 3 2418 2 3 2421 5 3 2419 3 3 2420 4 3 2422 6 3 2421 5 3 2420 4 3 2423 7 3 2421 5 3 2422 6 3 2424 8 3 2423 7 3 2422 6 3 2425 9 3 2423 7 3 2424 8 3 2426 18 3 2425 9 3 2424 8 3 2427 19 3 2425 9 3 2426 18 3 2428 12 3 2427 19 3 2426 18 3 2429 13 3 2427 19 3 2428 12 3 2430 14 3 2429 13 3 2428 12 3 2431 15 3 2429 13 3 2430 14 3 2433 2 3 2405 1 3 2432 0 3 2434 3 3 2405 1 3 2433 2 3 2435 4 3 2434 3 3 2433 2 3 2436 5 3 2434 3 3 2435 4 3 2437 6 3 2436 5 3 2435 4 3 2438 7 3 2436 5 3 2437 6 3 2439 8 3 2438 7 3 2437 6 3 2440 9 3 2438 7 3 2439 8 3 2441 18 3 2440 9 3 2439 8 3 2442 19 3 2440 9 3 2441 18 3 2443 12 3 2442 19 3 2441 18 3 2444 13 3 2442 19 3 2443 12 3 2445 14 3 2444 13 3 2443 12 3 2446 15 3 2444 13 3 2445 14 3 2448 2 0 2447 1 0 2389 0 3 2449 3 0 2447 1 0 2448 2 0 2450 4 0 2449 3 0 2448 2 0 2451 5 0 2449 3 0 2450 4 0 2452 6 0 2451 5 0 2450 4 0 2453 7 0 2451 5 0 2452 6 0 2454 8 1 2453 7 0 2452 6 0 2455 9 1 2453 7 0 2454 8 1 2456 18 1 2455 9 1 2454 8 1 2457 19 1 2455 9 1 2456 18 1 2458 12 1 2457 19 1 2456 18 1 2459 13 1 2457 19 1 2458 12 1 2460 14 1 2459 13 1 2458 12 1 2461 15 1 2459 13 1 2460 14 1 2464 2 3 2463 1 3 2462 0 3 2465 3 3 2463 1 3 2464 2 3 2466 4 3 2465 3 3 2464 2 3 2467 5 3 2465 3 3 2466 4 3 2468 6 3 2467 5 3 2466 4 3 2469 7 3 2467 5 3 2468 6 3 2470 8 3 2469 7 3 2468 6 3 2471 9 3 2469 7 3 2470 8 3 2472 18 3 2471 9 3 2470 8 3 2473 19 3 2471 9 3 2472 18 3 2474 12 3 2473 19 3 2472 18 3 2475 13 3 2473 19 3 2474 12 3 2476 14 3 2475 13 3 2474 12 3 2477 15 3 2475 13 3 2476 14 3 2464 2 3 2479 1 3 2478 0 3 2480 3 3 2479 1 3 2464 2 3 2481 4 3 2480 3 3 2464 2 3 2482 5 3 2480 3 3 2481 4 3 2483 6 3 2482 5 3 2481 4 3 2484 7 3 2482 5 3 2483 6 3 2485 8 3 2484 7 3 2483 6 3 2486 9 3 2484 7 3 2485 8 3 2487 18 3 2486 9 3 2485 8 3 2488 19 3 2486 9 3 2487 18 3 2489 12 3 2488 19 3 2487 18 3 2490 13 3 2488 19 3 2489 12 3 2491 14 3 2490 13 3 2489 12 3 2492 15 3 2490 13 3 2491 14 3 2464 2 3 2493 1 3 2479 0 3 2494 3 3 2493 1 3 2464 2 3 2495 4 3 2494 3 3 2464 2 3 2496 5 3 2494 3 3 2495 4 3 2497 6 3 2496 5 3 2495 4 3 2498 7 3 2496 5 3 2497 6 3 2499 8 3 2498 7 3 2497 6 3 2500 9 3 2498 7 3 2499 8 3 2501 18 3 2500 9 3 2499 8 3 2502 19 3 2500 9 3 2501 18 3 2503 12 3 2502 19 3 2501 18 3 2504 13 3 2502 19 3 2503 12 3 2505 14 3 2504 13 3 2503 12 3 2505 15 3 2504 13 3 2505 14 3 2507 2 3 2478 1 3 2506 0 3 2508 3 3 2478 1 3 2507 2 3 2509 4 3 2508 3 3 2507 2 3 2510 5 3 2508 3 3 2509 4 3 2511 6 3 2510 5 3 2509 4 3 2512 7 3 2510 5 3 2511 6 3 2513 8 3 2512 7 3 2511 6 3 2514 9 3 2512 7 3 2513 8 3 2515 18 3 2514 9 3 2513 8 3 2516 19 3 2514 9 3 2515 18 3 2517 12 3 2516 19 3 2515 18 3 2518 13 3 2516 19 3 2517 12 3 2519 14 3 2518 13 3 2517 12 3 2520 15 3 2518 13 3 2519 14 3 2507 2 3 2479 1 3 2521 0 3 2522 3 3 2479 1 3 2507 2 3 2523 4 3 2522 3 3 2507 2 3 2524 5 3 2522 3 3 2523 4 3 2525 6 3 2524 5 3 2523 4 3 2526 7 3 2524 5 3 2525 6 3 2527 8 3 2526 7 3 2525 6 3 2528 9 3 2526 7 3 2527 8 3 2529 18 3 2528 9 3 2527 8 3 2530 19 3 2528 9 3 2529 18 3 2531 12 3 2530 19 3 2529 18 3 2532 13 3 2530 19 3 2531 12 3 2533 14 3 2532 13 3 2531 12 3 2534 15 3 2532 13 3 2533 14 3 2537 2 3 2536 1 3 2535 0 3 2538 3 3 2536 1 3 2537 2 3 2539 4 3 2538 3 3 2537 2 3 2540 5 3 2538 3 3 2539 4 3 2541 6 3 2540 5 3 2539 4 3 2542 7 3 2540 5 3 2541 6 3 2543 8 3 2542 7 3 2541 6 3 2544 9 3 2542 7 3 2543 8 3 2545 18 3 2544 9 3 2543 8 3 2546 19 3 2544 9 3 2545 18 3 2547 12 3 2546 19 3 2545 18 3 2548 13 3 2546 19 3 2547 12 3 2549 14 3 2548 13 3 2547 12 3 2550 15 3 2548 13 3 2549 14 3 2552 2 3 2551 1 3 2551 0 3 2553 3 3 2551 1 3 2552 2 3 2554 4 3 2553 3 3 2552 2 3 2555 5 3 2553 3 3 2554 4 3 2556 6 3 2555 5 3 2554 4 3 2557 7 3 2555 5 3 2556 6 3 2558 8 3 2557 7 3 2556 6 3 2559 9 3 2557 7 3 2558 8 3 2560 18 3 2559 9 3 2558 8 3 2561 19 3 2559 9 3 2560 18 3 2562 12 3 2561 19 3 2560 18 3 2563 13 3 2561 19 3 2562 12 3 2564 14 3 2563 13 3 2562 12 3 2565 15 3 2563 13 3 2564 14 3 2568 2 3 2567 1 3 2566 0 3 2569 3 3 2567 1 3 2568 2 3 2570 4 3 2569 3 3 2568 2 3 2571 5 3 2569 3 3 2570 4 3 2572 6 3 2571 5 3 2570 4 3 2573 7 3 2571 5 3 2572 6 3 2574 8 3 2573 7 3 2572 6 3 2575 9 3 2573 7 3 2574 8 3 2576 18 3 2575 9 3 2574 8 3 2577 19 3 2575 9 3 2576 18 3 2578 12 3 2577 19 3 2576 18 3 2578 13 3 2577 19 3 2578 12 3 2579 14 3 2578 13 3 2578 12 3 2580 15 3 2578 13 3 2579 14 3 2552 2 3 2582 1 3 2581 0 3 2583 3 3 2582 1 3 2552 2 3 2584 4 3 2583 3 3 2552 2 3 2585 5 3 2583 3 3 2584 4 3 2586 6 3 2585 5 3 2584 4 3 2587 7 3 2585 5 3 2586 6 3 2588 8 3 2587 7 3 2586 6 3 2589 9 3 2587 7 3 2588 8 3 2590 18 3 2589 9 3 2588 8 3 2591 19 3 2589 9 3 2590 18 3 2592 12 3 2591 19 3 2590 18 3 2593 13 3 2591 19 3 2592 12 3 2594 14 3 2593 13 3 2592 12 3 2594 15 3 2593 13 3 2594 14 3 2596 2 3 2581 1 3 2595 0 3 2597 3 3 2581 1 3 2596 2 3 2598 4 3 2597 3 3 2596 2 3 2599 5 3 2597 3 3 2598 4 3 2600 6 3 2599 5 3 2598 4 3 2601 7 3 2599 5 3 2600 6 3 2602 8 3 2601 7 3 2600 6 3 2603 9 3 2601 7 3 2602 8 3 2604 18 3 2603 9 3 2602 8 3 2605 19 3 2603 9 3 2604 18 3 2606 12 3 2605 19 3 2604 18 3 2607 13 3 2605 19 3 2606 12 3 2608 14 3 2607 13 3 2606 12 3 2609 15 3 2607 13 3 2608 14 3 2611 2 0 2610 1 0 2551 0 3 2612 3 0 2610 1 0 2611 2 0 2613 4 0 2612 3 0 2611 2 0 2614 5 0 2612 3 0 2613 4 0 2615 6 0 2614 5 0 2613 4 0 2616 7 0 2614 5 0 2615 6 0 2617 8 1 2616 7 0 2615 6 0 2618 9 1 2616 7 0 2617 8 1 2619 18 1 2618 9 1 2617 8 1 2620 19 1 2618 9 1 2619 18 1 2621 12 1 2620 19 1 2619 18 1 2622 13 1 2620 19 1 2621 12 1 2623 14 1 2622 13 1 2621 12 1 2624 15 1 2622 13 1 2623 14 1 2627 2 3 2626 1 3 2625 0 3 2628 3 3 2626 1 3 2627 2 3 2629 4 3 2628 3 3 2627 2 3 2630 5 3 2628 3 3 2629 4 3 2631 6 3 2630 5 3 2629 4 3 2632 7 3 2630 5 3 2631 6 3 2633 8 3 2632 7 3 2631 6 3 2634 9 3 2632 7 3 2633 8 3 2635 18 3 2634 9 3 2633 8 3 2636 19 3 2634 9 3 2635 18 3 2637 12 3 2636 19 3 2635 18 3 2638 13 3 2636 19 3 2637 12 3 2639 14 3 2638 13 3 2637 12 3 2640 15 3 2638 13 3 2639 14 3 2643 2 3 2642 1 3 2641 0 3 2644 3 3 2642 1 3 2643 2 3 2645 4 3 2644 3 3 2643 2 3 2646 5 3 2644 3 3 2645 4 3 2647 6 3 2646 5 3 2645 4 3 2648 7 3 2646 5 3 2647 6 3 2649 8 3 2648 7 3 2647 6 3 2650 9 3 2648 7 3 2649 8 3 2651 18 3 2650 9 3 2649 8 3 2651 19 3 2650 9 3 2651 18 3 2652 12 3 2651 19 3 2651 18 3 2653 13 3 2651 19 3 2652 12 3 2654 14 3 2653 13 3 2652 12 3 2655 15 3 2653 13 3 2654 14 3 2627 2 3 2656 1 3 2625 0 3 2657 3 3 2656 1 3 2627 2 3 2658 4 3 2657 3 3 2627 2 3 2659 5 3 2657 3 3 2658 4 3 2660 6 3 2659 5 3 2658 4 3 2661 7 3 2659 5 3 2660 6 3 2662 8 3 2661 7 3 2660 6 3 2663 9 3 2661 7 3 2662 8 3 2664 18 3 2663 9 3 2662 8 3 2665 19 3 2663 9 3 2664 18 3 2666 12 3 2665 19 3 2664 18 3 2667 13 3 2665 19 3 2666 12 3 2668 14 3 2667 13 3 2666 12 3 2669 15 3 2667 13 3 2668 14 3 2671 2 3 2656 1 3 2670 0 3 2672 3 3 2656 1 3 2671 2 3 2673 4 3 2672 3 3 2671 2 3 2674 5 3 2672 3 3 2673 4 3 2675 6 3 2674 5 3 2673 4 3 2676 7 3 2674 5 3 2675 6 3 2677 8 3 2676 7 3 2675 6 3 2678 9 3 2676 7 3 2677 8 3 2679 18 3 2678 9 3 2677 8 3 2680 19 3 2678 9 3 2679 18 3 2681 12 3 2680 19 3 2679 18 3 2682 13 3 2680 19 3 2681 12 3 2683 14 3 2682 13 3 2681 12 3 2684 15 3 2682 13 3 2683 14 3 2686 2 3 2626 1 3 2685 0 3 2687 3 3 2626 1 3 2686 2 3 2688 4 3 2687 3 3 2686 2 3 2689 5 3 2687 3 3 2688 4 3 2690 6 3 2689 5 3 2688 4 3 2691 7 3 2689 5 3 2690 6 3 2692 8 3 2691 7 3 2690 6 3 2693 9 3 2691 7 3 2692 8 3 2694 18 3 2693 9 3 2692 8 3 2695 19 3 2693 9 3 2694 18 3 2696 12 3 2695 19 3 2694 18 3 2697 13 3 2695 19 3 2696 12 3 2698 14 3 2697 13 3 2696 12 3 2699 15 3 2697 13 3 2698 14 3 2671 2 3 2700 1 3 2625 0 3 2701 3 3 2700 1 3 2671 2 3 2702 4 3 2701 3 3 2671 2 3 2703 5 3 2701 3 3 2702 4 3 2704 6 3 2703 5 3 2702 4 3 2705 7 3 2703 5 3 2704 6 3 2706 8 3 2705 7 3 2704 6 3 2707 9 3 2705 7 3 2706 8 3 2708 18 3 2707 9 3 2706 8 3 2709 19 3 2707 9 3 2708 18 3 2710 12 3 2709 19 3 2708 18 3 2711 13 3 2709 19 3 2710 12 3 2712 14 3 2711 13 3 2710 12 3 2713 15 3 2711 13 3 2712 14 3 2715 2 3 2714 1 3 2714 0 3 2716 3 3 2714 1 3 2715 2 3 2717 4 3 2716 3 3 2715 2 3 2718 5 3 2716 3 3 2717 4 3 2719 6 3 2718 5 3 2717 4 3 2720 7 3 2718 5 3 2719 6 3 2721 8 3 2720 7 3 2719 6 3 2722 9 3 2720 7 3 2721 8 3 2723 18 3 2722 9 3 2721 8 3 2724 19 3 2722 9 3 2723 18 3 2725 12 3 2724 19 3 2723 18 3 2726 13 3 2724 19 3 2725 12 3 2727 14 3 2726 13 3 2725 12 3 2728 15 3 2726 13 3 2727 14 3 2715 2 3 2729 1 3 2714 0 3 2730 3 3 2729 1 3 2715 2 3 2731 4 3 2730 3 3 2715 2 3 2732 5 3 2730 3 3 2731 4 3 2733 6 3 2732 5 3 2731 4 3 2734 7 3 2732 5 3 2733 6 3 2735 8 3 2734 7 3 2733 6 3 2736 9 3 2734 7 3 2735 8 3 2737 18 3 2736 9 3 2735 8 3 2738 19 3 2736 9 3 2737 18 3 2739 12 3 2738 19 3 2737 18 3 2740 13 3 2738 19 3 2739 12 3 2741 14 3 2740 13 3 2739 12 3 2742 15 3 2740 13 3 2741 14 3 2744 2 3 2714 1 3 2743 0 3 2745 3 3 2714 1 3 2744 2 3 2746 4 3 2745 3 3 2744 2 3 2747 5 3 2745 3 3 2746 4 3 2748 6 3 2747 5 3 2746 4 3 2749 7 3 2747 5 3 2748 6 3 2750 8 3 2749 7 3 2748 6 3 2751 9 3 2749 7 3 2750 8 3 2752 18 3 2751 9 3 2750 8 3 2753 19 3 2751 9 3 2752 18 3 2754 12 3 2753 19 3 2752 18 3 2755 13 3 2753 19 3 2754 12 3 2756 14 3 2755 13 3 2754 12 3 2757 15 3 2755 13 3 2756 14 3 2759 2 3 2729 1 3 2758 0 3 2760 3 3 2729 1 3 2759 2 3 2761 4 3 2760 3 3 2759 2 3 2762 5 3 2760 3 3 2761 4 3 2763 6 3 2762 5 3 2761 4 3 2764 7 3 2762 5 3 2763 6 3 2765 8 3 2764 7 3 2763 6 3 2766 9 3 2764 7 3 2765 8 3 2767 18 3 2766 9 3 2765 8 3 2768 19 3 2766 9 3 2767 18 3 2769 12 3 2768 19 3 2767 18 3 2770 13 3 2768 19 3 2769 12 3 2771 14 3 2770 13 3 2769 12 3 2772 15 3 2770 13 3 2771 14 3 2774 2 0 2773 1 0 2714 0 3 2775 3 0 2773 1 0 2774 2 0 2776 4 0 2775 3 0 2774 2 0 2777 5 0 2775 3 0 2776 4 0 2778 6 0 2777 5 0 2776 4 0 2779 7 0 2777 5 0 2778 6 0 2780 8 1 2779 7 0 2778 6 0 2781 9 1 2779 7 0 2780 8 1 2782 18 1 2781 9 1 2780 8 1 2783 19 1 2781 9 1 2782 18 1 2784 12 1 2783 19 1 2782 18 1 2785 13 1 2783 19 1 2784 12 1 2786 14 1 2785 13 1 2784 12 1 2787 15 1 2785 13 1 2786 14 1 2789 2 3 2788 1 3 2788 0 3 2790 3 3 2788 1 3 2789 2 3 2791 4 3 2790 3 3 2789 2 3 2792 5 3 2790 3 3 2791 4 3 2793 6 3 2792 5 3 2791 4 3 2794 7 3 2792 5 3 2793 6 3 2795 8 3 2794 7 3 2793 6 3 2796 9 3 2794 7 3 2795 8 3 2797 18 3 2796 9 3 2795 8 3 2798 19 3 2796 9 3 2797 18 3 2799 12 3 2798 19 3 2797 18 3 2800 13 3 2798 19 3 2799 12 3 2801 14 3 2800 13 3 2799 12 3 2801 15 3 2800 13 3 2801 14 3 2804 2 3 2803 1 3 2802 0 3 2805 3 3 2803 1 3 2804 2 3 2806 4 3 2805 3 3 2804 2 3 2807 5 3 2805 3 3 2806 4 3 2808 6 3 2807 5 3 2806 4 3 2809 7 3 2807 5 3 2808 6 3 2810 8 3 2809 7 3 2808 6 3 2811 9 3 2809 7 3 2810 8 3 2812 18 3 2811 9 3 2810 8 3 2813 19 3 2811 9 3 2812 18 3 2814 12 3 2813 19 3 2812 18 3 2815 13 3 2813 19 3 2814 12 3 2816 14 3 2815 13 3 2814 12 3 2817 15 3 2815 13 3 2816 14 3 2819 2 3 2818 1 3 2803 0 3 2820 3 3 2818 1 3 2819 2 3 2821 4 3 2820 3 3 2819 2 3 2822 5 3 2820 3 3 2821 4 3 2823 6 3 2822 5 3 2821 4 3 2824 7 3 2822 5 3 2823 6 3 2825 8 3 2824 7 3 2823 6 3 2825 9 3 2824 7 3 2825 8 3 2826 18 3 2825 9 3 2825 8 3 2827 19 3 2825 9 3 2826 18 3 2828 12 3 2827 19 3 2826 18 3 2829 13 3 2827 19 3 2828 12 3 2830 14 3 2829 13 3 2828 12 3 2830 15 3 2829 13 3 2830 14 3 2831 2 3 2802 1 3 2788 0 3 2832 3 3 2802 1 3 2831 2 3 2833 4 3 2832 3 3 2831 2 3 2834 5 3 2832 3 3 2833 4 3 2835 6 3 2834 5 3 2833 4 3 2836 7 3 2834 5 3 2835 6 3 2837 8 3 2836 7 3 2835 6 3 2838 9 3 2836 7 3 2837 8 3 2839 18 3 2838 9 3 2837 8 3 2840 19 3 2838 9 3 2839 18 3 2841 12 3 2840 19 3 2839 18 3 2842 13 3 2840 19 3 2841 12 3 2843 14 3 2842 13 3 2841 12 3 2844 15 3 2842 13 3 2843 14 3 2846 2 3 2803 1 3 2845 0 3 2847 3 3 2803 1 3 2846 2 3 2848 4 3 2847 3 3 2846 2 3 2849 5 3 2847 3 3 2848 4 3 2850 6 3 2849 5 3 2848 4 3 2851 7 3 2849 5 3 2850 6 3 2852 8 3 2851 7 3 2850 6 3 2853 9 3 2851 7 3 2852 8 3 2854 18 3 2853 9 3 2852 8 3 2855 19 3 2853 9 3 2854 18 3 2856 12 3 2855 19 3 2854 18 3 2857 13 3 2855 19 3 2856 12 3 2858 14 3 2857 13 3 2856 12 3 2859 15 3 2857 13 3 2858 14 3 2831 2 3 2861 1 3 2860 0 3 2862 3 3 2861 1 3 2831 2 3 2863 4 3 2862 3 3 2831 2 3 2864 5 3 2862 3 3 2863 4 3 2865 6 3 2864 5 3 2863 4 3 2866 7 3 2864 5 3 2865 6 3 2867 8 3 2866 7 3 2865 6 3 2868 9 3 2866 7 3 2867 8 3 2869 18 3 2868 9 3 2867 8 3 2870 19 3 2868 9 3 2869 18 3 2871 12 3 2870 19 3 2869 18 3 2872 13 3 2870 19 3 2871 12 3 2873 14 3 2872 13 3 2871 12 3 2874 15 3 2872 13 3 2873 14 3 2877 2 3 2876 1 3 2875 0 3 2878 3 3 2876 1 3 2877 2 3 2879 4 3 2878 3 3 2877 2 3 2880 5 3 2878 3 3 2879 4 3 2881 6 3 2880 5 3 2879 4 3 2882 7 3 2880 5 3 2881 6 3 2883 8 3 2882 7 3 2881 6 3 2884 9 3 2882 7 3 2883 8 3 2885 18 3 2884 9 3 2883 8 3 2886 19 3 2884 9 3 2885 18 3 2887 12 3 2886 19 3 2885 18 3 2888 13 3 2886 19 3 2887 12 3 2889 14 3 2888 13 3 2887 12 3 2889 15 3 2888 13 3 2889 14 3 2891 2 3 2875 1 3 2890 0 3 2892 3 3 2875 1 3 2891 2 3 2893 4 3 2892 3 3 2891 2 3 2894 5 3 2892 3 3 2893 4 3 2895 6 3 2894 5 3 2893 4 3 2896 7 3 2894 5 3 2895 6 3 2897 8 3 2896 7 3 2895 6 3 2898 9 3 2896 7 3 2897 8 3 2899 18 3 2898 9 3 2897 8 3 2899 19 3 2898 9 3 2899 18 3 2900 12 3 2899 19 3 2899 18 3 2901 13 3 2899 19 3 2900 12 3 2902 14 3 2901 13 3 2900 12 3 2903 15 3 2901 13 3 2902 14 3 2877 2 3 2890 1 3 2875 0 3 2904 3 3 2890 1 3 2877 2 3 2905 4 3 2904 3 3 2877 2 3 2906 5 3 2904 3 3 2905 4 3 2907 6 3 2906 5 3 2905 4 3 2908 7 3 2906 5 3 2907 6 3 2909 8 3 2908 7 3 2907 6 3 2910 9 3 2908 7 3 2909 8 3 2911 18 3 2910 9 3 2909 8 3 2912 19 3 2910 9 3 2911 18 3 2913 12 3 2912 19 3 2911 18 3 2914 13 3 2912 19 3 2913 12 3 2915 14 3 2914 13 3 2913 12 3 2916 15 3 2914 13 3 2915 14 3 2918 2 3 2875 1 3 2917 0 3 2919 3 3 2875 1 3 2918 2 3 2920 4 3 2919 3 3 2918 2 3 2921 5 3 2919 3 3 2920 4 3 2922 6 3 2921 5 3 2920 4 3 2923 7 3 2921 5 3 2922 6 3 2924 8 3 2923 7 3 2922 6 3 2925 9 3 2923 7 3 2924 8 3 2926 18 3 2925 9 3 2924 8 3 2927 19 3 2925 9 3 2926 18 3 2928 12 3 2927 19 3 2926 18 3 2929 13 3 2927 19 3 2928 12 3 2930 14 3 2929 13 3 2928 12 3 2931 15 3 2929 13 3 2930 14 3 2933 2 0 2932 1 0 2876 0 3 2934 3 0 2932 1 0 2933 2 0 2935 4 0 2934 3 0 2933 2 0 2936 5 0 2934 3 0 2935 4 0 2937 6 0 2936 5 0 2935 4 0 2938 7 0 2936 5 0 2937 6 0 2939 8 1 2938 7 0 2937 6 0 2940 9 1 2938 7 0 2939 8 1 2941 18 1 2940 9 1 2939 8 1 2942 19 1 2940 9 1 2941 18 1 2943 12 1 2942 19 1 2941 18 1 2944 13 1 2942 19 1 2943 12 1 2945 14 1 2944 13 1 2943 12 1 2946 15 1 2944 13 1 2945 14 1 2949 2 3 2948 1 3 2947 0 3 2949 3 3 2948 1 3 2949 2 3 2950 4 3 2949 3 3 2949 2 3 2950 5 3 2949 3 3 2950 4 3 2951 6 3 2950 5 3 2950 4 3 2952 7 3 2950 5 3 2951 6 3 2953 8 3 2952 7 3 2951 6 3 2954 9 3 2952 7 3 2953 8 3 2955 18 3 2954 9 3 2953 8 3 2956 19 3 2954 9 3 2955 18 3 2957 12 3 2956 19 3 2955 18 3 2958 13 3 2956 19 3 2957 12 3 2959 14 3 2958 13 3 2957 12 3 2960 15 3 2958 13 3 2959 14 3 2949 2 3 2962 1 3 2961 0 3 2963 3 3 2962 1 3 2949 2 3 2964 4 3 2963 3 3 2949 2 3 2965 5 3 2963 3 3 2964 4 3 2966 6 3 2965 5 3 2964 4 3 2967 7 3 2965 5 3 2966 6 3 2968 8 3 2967 7 3 2966 6 3 2969 9 3 2967 7 3 2968 8 3 2970 18 3 2969 9 3 2968 8 3 2971 19 3 2969 9 3 2970 18 3 2972 12 3 2971 19 3 2970 18 3 2973 13 3 2971 19 3 2972 12 3 2974 14 3 2973 13 3 2972 12 3 2975 15 3 2973 13 3 2974 14 3 2977 2 3 2948 1 3 2976 0 3 2978 3 3 2948 1 3 2977 2 3 2979 4 3 2978 3 3 2977 2 3 2980 5 3 2978 3 3 2979 4 3 2981 6 3 2980 5 3 2979 4 3 2982 7 3 2980 5 3 2981 6 3 2983 8 3 2982 7 3 2981 6 3 2984 9 3 2982 7 3 2983 8 3 2985 18 3 2984 9 3 2983 8 3 2986 19 3 2984 9 3 2985 18 3 2987 12 3 2986 19 3 2985 18 3 2988 13 3 2986 19 3 2987 12 3 2989 14 3 2988 13 3 2987 12 3 2990 15 3 2988 13 3 2989 14 3 2992 2 3 2991 1 3 2961 0 3 2993 3 3 2991 1 3 2992 2 3 2994 4 3 2993 3 3 2992 2 3 2995 5 3 2993 3 3 2994 4 3 2996 6 3 2995 5 3 2994 4 3 2997 7 3 2995 5 3 2996 6 3 2998 8 3 2997 7 3 2996 6 3 2999 9 3 2997 7 3 2998 8 3 3000 18 3 2999 9 3 2998 8 3 3001 19 3 2999 9 3 3000 18 3 3002 12 3 3001 19 3 3000 18 3 3003 13 3 3001 19 3 3002 12 3 3004 14 3 3003 13 3 3002 12 3 3005 15 3 3003 13 3 3004 14 3 3007 2 3 2947 1 3 3006 0 3 3008 3 3 2947 1 3 3007 2 3 3009 4 3 3008 3 3 3007 2 3 3010 5 3 3008 3 3 3009 4 3 3011 6 3 3010 5 3 3009 4 3 3012 7 3 3010 5 3 3011 6 3 3013 8 3 3012 7 3 3011 6 3 3014 9 3 3012 7 3 3013 8 3 3015 18 3 3014 9 3 3013 8 3 3016 19 3 3014 9 3 3015 18 3 3017 12 3 3016 19 3 3015 18 3 3018 13 3 3016 19 3 3017 12 3 3019 14 3 3018 13 3 3017 12 3 3020 15 3 3018 13 3 3019 14 3 2993 2 3 3022 1 3 3021 0 3 3023 3 3 3022 1 3 2993 2 3 3024 4 3 3023 3 3 2993 2 3 3025 5 3 3023 3 3 3024 4 3 3026 6 3 3025 5 3 3024 4 3 3027 7 3 3025 5 3 3026 6 3 3028 8 3 3027 7 3 3026 6 3 3029 9 3 3027 7 3 3028 8 3 3030 18 3 3029 9 3 3028 8 3 3031 19 3 3029 9 3 3030 18 3 3032 12 3 3031 19 3 3030 18 3 3033 13 3 3031 19 3 3032 12 3 3034 14 3 3033 13 3 3032 12 3 3035 15 3 3033 13 3 3034 14 3 3037 2 3 3036 1 3 3036 0 3 3038 3 3 3036 1 3 3037 2 3 3039 4 3 3038 3 3 3037 2 3 3040 5 3 3038 3 3 3039 4 3 3041 6 3 3040 5 3 3039 4 3 3042 7 3 3040 5 3 3041 6 3 3043 8 3 3042 7 3 3041 6 3 3044 9 3 3042 7 3 3043 8 3 3045 18 3 3044 9 3 3043 8 3 3046 19 3 3044 9 3 3045 18 3 3047 12 3 3046 19 3 3045 18 3 3048 13 3 3046 19 3 3047 12 3 3049 14 3 3048 13 3 3047 12 3 3050 15 3 3048 13 3 3049 14 3 3052 2 3 3036 1 3 3051 0 3 3053 3 3 3036 1 3 3052 2 3 3054 4 3 3053 3 3 3052 2 3 3055 5 3 3053 3 3 3054 4 3 3056 6 3 3055 5 3 3054 4 3 3057 7 3 3055 5 3 3056 6 3 3058 8 3 3057 7 3 3056 6 3 3059 9 3 3057 7 3 3058 8 3 3060 18 3 3059 9 3 3058 8 3 3061 19 3 3059 9 3 3060 18 3 3062 12 3 3061 19 3 3060 18 3 3063 13 3 3061 19 3 3062 12 3 3064 14 3 3063 13 3 3062 12 3 3065 15 3 3063 13 3 3064 14 3 3066 2 3 3051 1 3 3036 0 3 3067 3 3 3051 1 3 3066 2 3 3068 4 3 3067 3 3 3066 2 3 3069 5 3 3067 3 3 3068 4 3 3070 6 3 3069 5 3 3068 4 3 3071 7 3 3069 5 3 3070 6 3 3072 8 3 3071 7 3 3070 6 3 3073 9 3 3071 7 3 3072 8 3 3074 18 3 3073 9 3 3072 8 3 3075 19 3 3073 9 3 3074 18 3 3076 12 3 3075 19 3 3074 18 3 3077 13 3 3075 19 3 3076 12 3 3078 14 3 3077 13 3 3076 12 3 3078 15 3 3077 13 3 3078 14 3 3080 2 3 3036 1 3 3079 0 3 3081 3 3 3036 1 3 3080 2 3 3082 4 3 3081 3 3 3080 2 3 3083 5 3 3081 3 3 3082 4 3 3084 6 3 3083 5 3 3082 4 3 3085 7 3 3083 5 3 3084 6 3 3086 8 3 3085 7 3 3084 6 3 3087 9 3 3085 7 3 3086 8 3 3088 18 3 3087 9 3 3086 8 3 3089 19 3 3087 9 3 3088 18 3 3090 12 3 3089 19 3 3088 18 3 3091 13 3 3089 19 3 3090 12 3 3092 14 3 3091 13 3 3090 12 3 3093 15 3 3091 13 3 3092 14 3 3095 2 0 3094 1 0 3036 0 3 3096 3 0 3094 1 0 3095 2 0 3097 4 0 3096 3 0 3095 2 0 3098 5 0 3096 3 0 3097 4 0 3099 6 0 3098 5 0 3097 4 0 3100 7 0 3098 5 0 3099 6 0 3101 8 1 3100 7 0 3099 6 0 3102 9 1 3100 7 0 3101 8 1 3103 18 1 3102 9 1 3101 8 1 3104 19 1 3102 9 1 3103 18 1 3105 12 1 3104 19 1 3103 18 1 3106 13 1 3104 19 1 3105 12 1 3107 14 1 3106 13 1 3105 12 1 3108 15 1 3106 13 1 3107 14 1 3111 2 3 3110 1 3 3109 0 3 3111 3 3 3110 1 3 3111 2 3 3112 4 3 3111 3 3 3111 2 3 3113 5 3 3111 3 3 3112 4 3 3114 6 3 3113 5 3 3112 4 3 3115 7 3 3113 5 3 3114 6 3 3116 8 3 3115 7 3 3114 6 3 3117 9 3 3115 7 3 3116 8 3 3118 18 3 3117 9 3 3116 8 3 3119 19 3 3117 9 3 3118 18 3 3120 12 3 3119 19 3 3118 18 3 3121 13 3 3119 19 3 3120 12 3 3122 14 3 3121 13 3 3120 12 3 3123 15 3 3121 13 3 3122 14 3 3126 2 3 3125 1 3 3124 0 3 3127 3 3 3125 1 3 3126 2 3 3128 4 3 3127 3 3 3126 2 3 3129 5 3 3127 3 3 3128 4 3 3130 6 3 3129 5 3 3128 4 3 3131 7 3 3129 5 3 3130 6 3 3132 8 3 3131 7 3 3130 6 3 3133 9 3 3131 7 3 3132 8 3 3134 18 3 3133 9 3 3132 8 3 3135 19 3 3133 9 3 3134 18 3 3136 12 3 3135 19 3 3134 18 3 3137 13 3 3135 19 3 3136 12 3 3138 14 3 3137 13 3 3136 12 3 3138 15 3 3137 13 3 3138 14 3 3141 2 3 3140 1 3 3139 0 3 3142 3 3 3140 1 3 3141 2 3 3143 4 3 3142 3 3 3141 2 3 3144 5 3 3142 3 3 3143 4 3 3145 6 3 3144 5 3 3143 4 3 3146 7 3 3144 5 3 3145 6 3 3147 8 3 3146 7 3 3145 6 3 3148 9 3 3146 7 3 3147 8 3 3149 18 3 3148 9 3 3147 8 3 3150 19 3 3148 9 3 3149 18 3 3151 12 3 3150 19 3 3149 18 3 3152 13 3 3150 19 3 3151 12 3 3153 14 3 3152 13 3 3151 12 3 3154 15 3 3152 13 3 3153 14 3 3156 2 3 3155 1 3 3109 0 3 3157 3 3 3155 1 3 3156 2 3 3158 4 3 3157 3 3 3156 2 3 3159 5 3 3157 3 3 3158 4 3 3160 6 3 3159 5 3 3158 4 3 3161 7 3 3159 5 3 3160 6 3 3162 8 3 3161 7 3 3160 6 3 3163 9 3 3161 7 3 3162 8 3 3164 18 3 3163 9 3 3162 8 3 3165 19 3 3163 9 3 3164 18 3 3166 12 3 3165 19 3 3164 18 3 3167 13 3 3165 19 3 3166 12 3 3168 14 3 3167 13 3 3166 12 3 3169 15 3 3167 13 3 3168 14 3 3172 2 3 3171 1 3 3170 0 3 3173 3 3 3171 1 3 3172 2 3 3174 4 3 3173 3 3 3172 2 3 3175 5 3 3173 3 3 3174 4 3 3176 6 3 3175 5 3 3174 4 3 3177 7 3 3175 5 3 3176 6 3 3178 8 3 3177 7 3 3176 6 3 3179 9 3 3177 7 3 3178 8 3 3180 18 3 3179 9 3 3178 8 3 3181 19 3 3179 9 3 3180 18 3 3182 12 3 3181 19 3 3180 18 3 3183 13 3 3181 19 3 3182 12 3 3184 14 3 3183 13 3 3182 12 3 3185 15 3 3183 13 3 3184 14 3 3156 2 3 3187 1 3 3186 0 3 3188 3 3 3187 1 3 3156 2 3 3189 4 3 3188 3 3 3156 2 3 3190 5 3 3188 3 3 3189 4 3 3191 6 3 3190 5 3 3189 4 3 3192 7 3 3190 5 3 3191 6 3 3193 8 3 3192 7 3 3191 6 3 3194 9 3 3192 7 3 3193 8 3 3195 18 3 3194 9 3 3193 8 3 3196 19 3 3194 9 3 3195 18 3 3197 12 3 3196 19 3 3195 18 3 3198 13 3 3196 19 3 3197 12 3 3199 14 3 3198 13 3 3197 12 3 3200 15 3 3198 13 3 3199 14 3 3203 2 3 3202 1 3 3201 0 3 3203 3 3 3202 1 3 3203 2 3 3204 4 3 3203 3 3 3203 2 3 3205 5 3 3203 3 3 3204 4 3 3206 6 3 3205 5 3 3204 4 3 3207 7 3 3205 5 3 3206 6 3 3208 8 3 3207 7 3 3206 6 3 3209 9 3 3207 7 3 3208 8 3 3210 18 3 3209 9 3 3208 8 3 3211 19 3 3209 9 3 3210 18 3 3212 12 3 3211 19 3 3210 18 3 3213 13 3 3211 19 3 3212 12 3 3214 14 3 3213 13 3 3212 12 3 3215 15 3 3213 13 3 3214 14 3 3217 2 3 3216 1 3 3202 0 3 3218 3 3 3216 1 3 3217 2 3 3219 4 3 3218 3 3 3217 2 3 3220 5 3 3218 3 3 3219 4 3 3221 6 3 3220 5 3 3219 4 3 3222 7 3 3220 5 3 3221 6 3 3223 8 3 3222 7 3 3221 6 3 3224 9 3 3222 7 3 3223 8 3 3225 18 3 3224 9 3 3223 8 3 3226 19 3 3224 9 3 3225 18 3 3227 12 3 3226 19 3 3225 18 3 3228 13 3 3226 19 3 3227 12 3 3229 14 3 3228 13 3 3227 12 3 3229 15 3 3228 13 3 3229 14 3 3203 2 3 3231 1 3 3230 0 3 3232 3 3 3231 1 3 3203 2 3 3233 4 3 3232 3 3 3203 2 3 3234 5 3 3232 3 3 3233 4 3 3235 6 3 3234 5 3 3233 4 3 3236 7 3 3234 5 3 3235 6 3 3237 8 3 3236 7 3 3235 6 3 3238 9 3 3236 7 3 3237 8 3 3239 18 3 3238 9 3 3237 8 3 3240 19 3 3238 9 3 3239 18 3 3241 12 3 3240 19 3 3239 18 3 3242 13 3 3240 19 3 3241 12 3 3243 14 3 3242 13 3 3241 12 3 3244 15 3 3242 13 3 3243 14 3 3246 2 3 3216 1 3 3245 0 3 3247 3 3 3216 1 3 3246 2 3 3248 4 3 3247 3 3 3246 2 3 3249 5 3 3247 3 3 3248 4 3 3250 6 3 3249 5 3 3248 4 3 3251 7 3 3249 5 3 3250 6 3 3252 8 3 3251 7 3 3250 6 3 3253 9 3 3251 7 3 3252 8 3 3254 18 3 3253 9 3 3252 8 3 3255 19 3 3253 9 3 3254 18 3 3256 12 3 3255 19 3 3254 18 3 3257 13 3 3255 19 3 3256 12 3 3258 14 3 3257 13 3 3256 12 3 3259 15 3 3257 13 3 3258 14 3 3261 2 0 3260 1 0 3201 0 3 3262 3 0 3260 1 0 3261 2 0 3263 4 0 3262 3 0 3261 2 0 3264 5 0 3262 3 0 3263 4 0 3265 6 0 3264 5 0 3263 4 0 3266 7 0 3264 5 0 3265 6 0 3267 8 1 3266 7 0 3265 6 0 3268 9 1 3266 7 0 3267 8 1 3269 18 1 3268 9 1 3267 8 1 3270 19 1 3268 9 1 3269 18 1 3271 12 1 3270 19 1 3269 18 1 3272 13 1 3270 19 1 3271 12 1 3273 14 1 3272 13 1 3271 12 1 3274 15 1 3272 13 1 3273 14 1 3277 2 3 3276 1 3 3275 0 3 3277 3 3 3276 1 3 3277 2 3 3278 4 3 3277 3 3 3277 2 3 3278 5 3 3277 3 3 3278 4 3 3279 6 3 3278 5 3 3278 4 3 3280 7 3 3278 5 3 3279 6 3 3281 8 3 3280 7 3 3279 6 3 3282 9 3 3280 7 3 3281 8 3 3283 18 3 3282 9 3 3281 8 3 3284 19 3 3282 9 3 3283 18 3 3285 12 3 3284 19 3 3283 18 3 3286 13 3 3284 19 3 3285 12 3 3287 14 3 3286 13 3 3285 12 3 3288 15 3 3286 13 3 3287 14 3 3290 2 3 3289 1 3 3276 0 3 3291 3 3 3289 1 3 3290 2 3 3292 4 3 3291 3 3 3290 2 3 3293 5 3 3291 3 3 3292 4 3 3294 6 3 3293 5 3 3292 4 3 3295 7 3 3293 5 3 3294 6 3 3296 8 3 3295 7 3 3294 6 3 3297 9 3 3295 7 3 3296 8 3 3298 18 3 3297 9 3 3296 8 3 3299 19 3 3297 9 3 3298 18 3 3300 12 3 3299 19 3 3298 18 3 3301 13 3 3299 19 3 3300 12 3 3302 14 3 3301 13 3 3300 12 3 3303 15 3 3301 13 3 3302 14 3 3304 2 3 3276 1 3 3289 0 3 3305 3 3 3276 1 3 3304 2 3 3306 4 3 3305 3 3 3304 2 3 3307 5 3 3305 3 3 3306 4 3 3308 6 3 3307 5 3 3306 4 3 3309 7 3 3307 5 3 3308 6 3 3310 8 3 3309 7 3 3308 6 3 3311 9 3 3309 7 3 3310 8 3 3312 18 3 3311 9 3 3310 8 3 3313 19 3 3311 9 3 3312 18 3 3314 12 3 3313 19 3 3312 18 3 3315 13 3 3313 19 3 3314 12 3 3316 14 3 3315 13 3 3314 12 3 3317 15 3 3315 13 3 3316 14 3 3319 2 3 3276 1 3 3318 0 3 3320 3 3 3276 1 3 3319 2 3 3321 4 3 3320 3 3 3319 2 3 3322 5 3 3320 3 3 3321 4 3 3323 6 3 3322 5 3 3321 4 3 3324 7 3 3322 5 3 3323 6 3 3325 8 3 3324 7 3 3323 6 3 3326 9 3 3324 7 3 3325 8 3 3327 18 3 3326 9 3 3325 8 3 3328 19 3 3326 9 3 3327 18 3 3329 12 3 3328 19 3 3327 18 3 3330 13 3 3328 19 3 3329 12 3 3331 14 3 3330 13 3 3329 12 3 3332 15 3 3330 13 3 3331 14 3 3334 2 3 3289 1 3 3333 0 3 3335 3 3 3289 1 3 3334 2 3 3336 4 3 3335 3 3 3334 2 3 3337 5 3 3335 3 3 3336 4 3 3338 6 3 3337 5 3 3336 4 3 3339 7 3 3337 5 3 3338 6 3 3340 8 3 3339 7 3 3338 6 3 3341 9 3 3339 7 3 3340 8 3 3342 18 3 3341 9 3 3340 8 3 3343 19 3 3341 9 3 3342 18 3 3344 12 3 3343 19 3 3342 18 3 3345 13 3 3343 19 3 3344 12 3 3346 14 3 3345 13 3 3344 12 3 3347 15 3 3345 13 3 3346 14 3 3319 2 3 3349 1 3 3348 0 3 3350 3 3 3349 1 3 3319 2 3 3351 4 3 3350 3 3 3319 2 3 3352 5 3 3350 3 3 3351 4 3 3353 6 3 3352 5 3 3351 4 3 3354 7 3 3352 5 3 3353 6 3 3355 8 3 3354 7 3 3353 6 3 3356 9 3 3354 7 3 3355 8 3 3357 18 3 3356 9 3 3355 8 3 3358 19 3 3356 9 3 3357 18 3 3359 12 3 3358 19 3 3357 18 3 3360 13 3 3358 19 3 3359 12 3 3361 14 3 3360 13 3 3359 12 3 3362 15 3 3360 13 3 3361 14 3 3364 2 3 3363 1 3 3363 0 3 3365 3 3 3363 1 3 3364 2 3 3366 4 3 3365 3 3 3364 2 3 3367 5 3 3365 3 3 3366 4 3 3368 6 3 3367 5 3 3366 4 3 3369 7 3 3367 5 3 3368 6 3 3370 8 3 3369 7 3 3368 6 3 3371 9 3 3369 7 3 3370 8 3 3372 18 3 3371 9 3 3370 8 3 3373 19 3 3371 9 3 3372 18 3 3374 12 3 3373 19 3 3372 18 3 3375 13 3 3373 19 3 3374 12 3 3376 14 3 3375 13 3 3374 12 3 3377 15 3 3375 13 3 3376 14 3 3380 2 3 3379 1 3 3378 0 3 3381 3 3 3379 1 3 3380 2 3 3382 4 3 3381 3 3 3380 2 3 3383 5 3 3381 3 3 3382 4 3 3384 6 3 3383 5 3 3382 4 3 3385 7 3 3383 5 3 3384 6 3 3386 8 3 3385 7 3 3384 6 3 3387 9 3 3385 7 3 3386 8 3 3388 18 3 3387 9 3 3386 8 3 3389 19 3 3387 9 3 3388 18 3 3390 12 3 3389 19 3 3388 18 3 3391 13 3 3389 19 3 3390 12 3 3392 14 3 3391 13 3 3390 12 3 3393 15 3 3391 13 3 3392 14 3 3396 2 3 3395 1 3 3394 0 3 3397 3 3 3395 1 3 3396 2 3 3398 4 3 3397 3 3 3396 2 3 3399 5 3 3397 3 3 3398 4 3 3400 6 3 3399 5 3 3398 4 3 3401 7 3 3399 5 3 3400 6 3 3402 8 3 3401 7 3 3400 6 3 3403 9 3 3401 7 3 3402 8 3 3404 18 3 3403 9 3 3402 8 3 3405 19 3 3403 9 3 3404 18 3 3406 12 3 3405 19 3 3404 18 3 3407 13 3 3405 19 3 3406 12 3 3408 14 3 3407 13 3 3406 12 3 3409 15 3 3407 13 3 3408 14 3 3412 2 3 3411 1 3 3410 0 3 3413 3 3 3411 1 3 3412 2 3 3414 4 3 3413 3 3 3412 2 3 3415 5 3 3413 3 3 3414 4 3 3416 6 3 3415 5 3 3414 4 3 3417 7 3 3415 5 3 3416 6 3 3418 8 3 3417 7 3 3416 6 3 3419 9 3 3417 7 3 3418 8 3 3420 18 3 3419 9 3 3418 8 3 3421 19 3 3419 9 3 3420 18 3 3422 12 3 3421 19 3 3420 18 3 3423 13 3 3421 19 3 3422 12 3 3424 14 3 3423 13 3 3422 12 3 3425 15 3 3423 13 3 3424 14 3 3427 2 0 3426 1 0 3394 0 3 3428 3 0 3426 1 0 3427 2 0 3429 4 0 3428 3 0 3427 2 0 3430 5 0 3428 3 0 3429 4 0 3431 6 0 3430 5 0 3429 4 0 3432 7 0 3430 5 0 3431 6 0 3433 8 1 3432 7 0 3431 6 0 3434 9 1 3432 7 0 3433 8 1 3435 18 1 3434 9 1 3433 8 1 3436 19 1 3434 9 1 3435 18 1 3437 12 1 3436 19 1 3435 18 1 3438 13 1 3436 19 1 3437 12 1 3439 14 1 3438 13 1 3437 12 1 3440 15 1 3438 13 1 3439 14 1 3442 2 3 3441 1 3 3441 0 3 3442 3 3 3441 1 3 3442 2 3 3443 4 3 3442 3 3 3442 2 3 3444 5 3 3442 3 3 3443 4 3 3445 6 3 3444 5 3 3443 4 3 3446 7 3 3444 5 3 3445 6 3 3447 8 3 3446 7 3 3445 6 3 3448 9 3 3446 7 3 3447 8 3 3449 18 3 3448 9 3 3447 8 3 3450 19 3 3448 9 3 3449 18 3 3451 12 3 3450 19 3 3449 18 3 3452 13 3 3450 19 3 3451 12 3 3453 14 3 3452 13 3 3451 12 3 3454 15 3 3452 13 3 3453 14 3 3457 2 3 3456 1 3 3455 0 3 3458 3 3 3456 1 3 3457 2 3 3459 4 3 3458 3 3 3457 2 3 3460 5 3 3458 3 3 3459 4 3 3461 6 3 3460 5 3 3459 4 3 3462 7 3 3460 5 3 3461 6 3 3463 8 3 3462 7 3 3461 6 3 3464 9 3 3462 7 3 3463 8 3 3465 18 3 3464 9 3 3463 8 3 3466 19 3 3464 9 3 3465 18 3 3467 12 3 3466 19 3 3465 18 3 3468 13 3 3466 19 3 3467 12 3 3469 14 3 3468 13 3 3467 12 3 3470 15 3 3468 13 3 3469 14 3 3442 2 3 3441 1 3 3456 0 3 3471 3 3 3441 1 3 3442 2 3 3472 4 3 3471 3 3 3442 2 3 3473 5 3 3471 3 3 3472 4 3 3474 6 3 3473 5 3 3472 4 3 3475 7 3 3473 5 3 3474 6 3 3476 8 3 3475 7 3 3474 6 3 3477 9 3 3475 7 3 3476 8 3 3478 18 3 3477 9 3 3476 8 3 3479 19 3 3477 9 3 3478 18 3 3480 12 3 3479 19 3 3478 18 3 3481 13 3 3479 19 3 3480 12 3 3482 14 3 3481 13 3 3480 12 3 3483 15 3 3481 13 3 3482 14 3 3485 2 3 3484 1 3 3441 0 3 3486 3 3 3484 1 3 3485 2 3 3487 4 3 3486 3 3 3485 2 3 3488 5 3 3486 3 3 3487 4 3 3489 6 3 3488 5 3 3487 4 3 3490 7 3 3488 5 3 3489 6 3 3491 8 3 3490 7 3 3489 6 3 3492 9 3 3490 7 3 3491 8 3 3493 18 3 3492 9 3 3491 8 3 3494 19 3 3492 9 3 3493 18 3 3495 12 3 3494 19 3 3493 18 3 3496 13 3 3494 19 3 3495 12 3 3497 14 3 3496 13 3 3495 12 3 3498 15 3 3496 13 3 3497 14 3 3500 2 3 3456 1 3 3499 0 3 3501 3 3 3456 1 3 3500 2 3 3502 4 3 3501 3 3 3500 2 3 3503 5 3 3501 3 3 3502 4 3 3504 6 3 3503 5 3 3502 4 3 3505 7 3 3503 5 3 3504 6 3 3506 8 3 3505 7 3 3504 6 3 3507 9 3 3505 7 3 3506 8 3 3508 18 3 3507 9 3 3506 8 3 3509 19 3 3507 9 3 3508 18 3 3510 12 3 3509 19 3 3508 18 3 3511 13 3 3509 19 3 3510 12 3 3512 14 3 3511 13 3 3510 12 3 3513 15 3 3511 13 3 3512 14 3 3486 2 3 3515 1 3 3514 0 3 3516 3 3 3515 1 3 3486 2 3 3517 4 3 3516 3 3 3486 2 3 3518 5 3 3516 3 3 3517 4 3 3519 6 3 3518 5 3 3517 4 3 3520 7 3 3518 5 3 3519 6 3 3521 8 3 3520 7 3 3519 6 3 3522 9 3 3520 7 3 3521 8 3 3523 18 3 3522 9 3 3521 8 3 3524 19 3 3522 9 3 3523 18 3 3525 12 3 3524 19 3 3523 18 3 3526 13 3 3524 19 3 3525 12 3 3527 14 3 3526 13 3 3525 12 3 3528 15 3 3526 13 3 3527 14 3 3531 2 3 3530 1 3 3529 0 3 3531 3 3 3530 1 3 3531 2 3 3532 4 3 3531 3 3 3531 2 3 3533 5 3 3531 3 3 3532 4 3 3534 6 3 3533 5 3 3532 4 3 3535 7 3 3533 5 3 3534 6 3 3536 8 3 3535 7 3 3534 6 3 3537 9 3 3535 7 3 3536 8 3 3538 18 3 3537 9 3 3536 8 3 3539 19 3 3537 9 3 3538 18 3 3540 12 3 3539 19 3 3538 18 3 3541 13 3 3539 19 3 3540 12 3 3542 14 3 3541 13 3 3540 12 3 3543 15 3 3541 13 3 3542 14 3 3546 2 3 3545 1 3 3544 0 3 3547 3 3 3545 1 3 3546 2 3 3548 4 3 3547 3 3 3546 2 3 3549 5 3 3547 3 3 3548 4 3 3550 6 3 3549 5 3 3548 4 3 3551 7 3 3549 5 3 3550 6 3 3552 8 3 3551 7 3 3550 6 3 3553 9 3 3551 7 3 3552 8 3 3554 18 3 3553 9 3 3552 8 3 3555 19 3 3553 9 3 3554 18 3 3556 12 3 3555 19 3 3554 18 3 3557 13 3 3555 19 3 3556 12 3 3558 14 3 3557 13 3 3556 12 3 3559 15 3 3557 13 3 3558 14 3 3560 2 3 3544 1 3 3545 0 3 3561 3 3 3544 1 3 3560 2 3 3562 4 3 3561 3 3 3560 2 3 3563 5 3 3561 3 3 3562 4 3 3564 6 3 3563 5 3 3562 4 3 3565 7 3 3563 5 3 3564 6 3 3566 8 3 3565 7 3 3564 6 3 3567 9 3 3565 7 3 3566 8 3 3568 18 3 3567 9 3 3566 8 3 3569 19 3 3567 9 3 3568 18 3 3570 12 3 3569 19 3 3568 18 3 3571 13 3 3569 19 3 3570 12 3 3572 14 3 3571 13 3 3570 12 3 3572 15 3 3571 13 3 3572 14 3 3574 2 3 3545 1 3 3573 0 3 3575 3 3 3545 1 3 3574 2 3 3576 4 3 3575 3 3 3574 2 3 3577 5 3 3575 3 3 3576 4 3 3578 6 3 3577 5 3 3576 4 3 3579 7 3 3577 5 3 3578 6 3 3580 8 3 3579 7 3 3578 6 3 3581 9 3 3579 7 3 3580 8 3 3582 18 3 3581 9 3 3580 8 3 3583 19 3 3581 9 3 3582 18 3 3584 12 3 3583 19 3 3582 18 3 3585 13 3 3583 19 3 3584 12 3 3586 14 3 3585 13 3 3584 12 3 3587 15 3 3585 13 3 3586 14 3 3590 2 0 3589 1 0 3588 0 3 3591 3 0 3589 1 0 3590 2 0 3592 4 0 3591 3 0 3590 2 0 3593 5 0 3591 3 0 3592 4 0 3594 6 0 3593 5 0 3592 4 0 3595 7 0 3593 5 0 3594 6 0 3596 8 1 3595 7 0 3594 6 0 3597 9 1 3595 7 0 3596 8 1 3598 18 1 3597 9 1 3596 8 1 3599 19 1 3597 9 1 3598 18 1 3600 12 1 3599 19 1 3598 18 1 3601 13 1 3599 19 1 3600 12 1 3602 14 1 3601 13 1 3600 12 1 3603 15 1 3601 13 1 3602 14 1 3605 2 3 3604 1 3 3604 0 3 3605 3 3 3604 1 3 3605 2 3 3606 4 3 3605 3 3 3605 2 3 3607 5 3 3605 3 3 3606 4 3 3608 6 3 3607 5 3 3606 4 3 3609 7 3 3607 5 3 3608 6 3 3610 8 3 3609 7 3 3608 6 3 3611 9 3 3609 7 3 3610 8 3 3612 18 3 3611 9 3 3610 8 3 3613 19 3 3611 9 3 3612 18 3 3614 12 3 3613 19 3 3612 18 3 3615 13 3 3613 19 3 3614 12 3 3616 14 3 3615 13 3 3614 12 3 3617 15 3 3615 13 3 3616 14 3 3620 2 3 3619 1 3 3618 0 3 3621 3 3 3619 1 3 3620 2 3 3622 4 3 3621 3 3 3620 2 3 3623 5 3 3621 3 3 3622 4 3 3624 6 3 3623 5 3 3622 4 3 3625 7 3 3623 5 3 3624 6 3 3626 8 3 3625 7 3 3624 6 3 3627 9 3 3625 7 3 3626 8 3 3628 18 3 3627 9 3 3626 8 3 3629 19 3 3627 9 3 3628 18 3 3630 12 3 3629 19 3 3628 18 3 3631 13 3 3629 19 3 3630 12 3 3632 14 3 3631 13 3 3630 12 3 3633 15 3 3631 13 3 3632 14 3 3605 2 3 3634 1 3 3619 0 3 3635 3 3 3634 1 3 3605 2 3 3636 4 3 3635 3 3 3605 2 3 3637 5 3 3635 3 3 3636 4 3 3638 6 3 3637 5 3 3636 4 3 3639 7 3 3637 5 3 3638 6 3 3640 8 3 3639 7 3 3638 6 3 3641 9 3 3639 7 3 3640 8 3 3642 18 3 3641 9 3 3640 8 3 3643 19 3 3641 9 3 3642 18 3 3644 12 3 3643 19 3 3642 18 3 3645 13 3 3643 19 3 3644 12 3 3646 14 3 3645 13 3 3644 12 3 3647 15 3 3645 13 3 3646 14 3 3648 2 3 3618 1 3 3604 0 3 3649 3 3 3618 1 3 3648 2 3 3650 4 3 3649 3 3 3648 2 3 3651 5 3 3649 3 3 3650 4 3 3652 6 3 3651 5 3 3650 4 3 3653 7 3 3651 5 3 3652 6 3 3654 8 3 3653 7 3 3652 6 3 3655 9 3 3653 7 3 3654 8 3 3656 18 3 3655 9 3 3654 8 3 3657 19 3 3655 9 3 3656 18 3 3658 12 3 3657 19 3 3656 18 3 3659 13 3 3657 19 3 3658 12 3 3660 14 3 3659 13 3 3658 12 3 3661 15 3 3659 13 3 3660 14 3 3663 2 3 3619 1 3 3662 0 3 3664 3 3 3619 1 3 3663 2 3 3665 4 3 3664 3 3 3663 2 3 3666 5 3 3664 3 3 3665 4 3 3667 6 3 3666 5 3 3665 4 3 3668 7 3 3666 5 3 3667 6 3 3669 8 3 3668 7 3 3667 6 3 3670 9 3 3668 7 3 3669 8 3 3671 18 3 3670 9 3 3669 8 3 3672 19 3 3670 9 3 3671 18 3 3673 12 3 3672 19 3 3671 18 3 3674 13 3 3672 19 3 3673 12 3 3675 14 3 3674 13 3 3673 12 3 3676 15 3 3674 13 3 3675 14 3 3648 2 3 3678 1 3 3677 0 3 3649 3 3 3678 1 3 3648 2 3 3679 4 3 3649 3 3 3648 2 3 3680 5 3 3649 3 3 3679 4 3 3681 6 3 3680 5 3 3679 4 3 3682 7 3 3680 5 3 3681 6 3 3683 8 3 3682 7 3 3681 6 3 3684 9 3 3682 7 3 3683 8 3 3685 18 3 3684 9 3 3683 8 3 3686 19 3 3684 9 3 3685 18 3 3687 12 3 3686 19 3 3685 18 3 3688 13 3 3686 19 3 3687 12 3 3689 14 3 3688 13 3 3687 12 3 3690 15 3 3688 13 3 3689 14 3 3693 2 3 3692 1 3 3691 0 3 3694 3 3 3692 1 3 3693 2 3 3695 4 3 3694 3 3 3693 2 3 3696 5 3 3694 3 3 3695 4 3 3697 6 3 3696 5 3 3695 4 3 3698 7 3 3696 5 3 3697 6 3 3699 8 3 3698 7 3 3697 6 3 3700 9 3 3698 7 3 3699 8 3 3701 18 3 3700 9 3 3699 8 3 3702 19 3 3700 9 3 3701 18 3 3703 12 3 3702 19 3 3701 18 3 3704 13 3 3702 19 3 3703 12 3 3705 14 3 3704 13 3 3703 12 3 3706 15 3 3704 13 3 3705 14 3 3707 2 3 3691 1 3 3692 0 3 3708 3 3 3691 1 3 3707 2 3 3709 4 3 3708 3 3 3707 2 3 3710 5 3 3708 3 3 3709 4 3 3711 6 3 3710 5 3 3709 4 3 3712 7 3 3710 5 3 3711 6 3 3713 8 3 3712 7 3 3711 6 3 3714 9 3 3712 7 3 3713 8 3 3715 18 3 3714 9 3 3713 8 3 3716 19 3 3714 9 3 3715 18 3 3717 12 3 3716 19 3 3715 18 3 3718 13 3 3716 19 3 3717 12 3 3719 14 3 3718 13 3 3717 12 3 3720 15 3 3718 13 3 3719 14 3 3693 2 3 3692 1 3 3691 0 3 3721 3 3 3692 1 3 3693 2 3 3722 4 3 3721 3 3 3693 2 3 3723 5 3 3721 3 3 3722 4 3 3724 6 3 3723 5 3 3722 4 3 3725 7 3 3723 5 3 3724 6 3 3726 8 3 3725 7 3 3724 6 3 3727 9 3 3725 7 3 3726 8 3 3728 18 3 3727 9 3 3726 8 3 3728 19 3 3727 9 3 3728 18 3 3729 12 3 3728 19 3 3728 18 3 3730 13 3 3728 19 3 3729 12 3 3731 14 3 3730 13 3 3729 12 3 3732 15 3 3730 13 3 3731 14 3 3734 2 3 3691 1 3 3733 0 3 3735 3 3 3691 1 3 3734 2 3 3736 4 3 3735 3 3 3734 2 3 3737 5 3 3735 3 3 3736 4 3 3738 6 3 3737 5 3 3736 4 3 3739 7 3 3737 5 3 3738 6 3 3740 8 3 3739 7 3 3738 6 3 3741 9 3 3739 7 3 3740 8 3 3742 18 3 3741 9 3 3740 8 3 3743 19 3 3741 9 3 3742 18 3 3744 12 3 3743 19 3 3742 18 3 3745 13 3 3743 19 3 3744 12 3 3746 14 3 3745 13 3 3744 12 3 3747 15 3 3745 13 3 3746 14 3 3750 2 0 3749 1 0 3748 0 3 3751 3 0 3749 1 0 3750 2 0 3752 4 0 3751 3 0 3750 2 0 3753 5 0 3751 3 0 3752 4 0 3754 6 0 3753 5 0 3752 4 0 3755 7 0 3753 5 0 3754 6 0 3756 8 1 3755 7 0 3754 6 0 3757 9 1 3755 7 0 3756 8 1 3758 18 1 3757 9 1 3756 8 1 3759 19 1 3757 9 1 3758 18 1 3760 12 1 3759 19 1 3758 18 1 3761 13 1 3759 19 1 3760 12 1 3762 14 1 3761 13 1 3760 12 1 3763 15 1 3761 13 1 3762 14 1 3766 2 3 3765 1 3 3764 0 3 3766 3 3 3765 1 3 3766 2 3 3767 4 3 3766 3 3 3766 2 3 3768 5 3 3766 3 3 3767 4 3 3769 6 3 3768 5 3 3767 4 3 3770 7 3 3768 5 3 3769 6 3 3771 8 3 3770 7 3 3769 6 3 3772 9 3 3770 7 3 3771 8 3 3773 18 3 3772 9 3 3771 8 3 3774 19 3 3772 9 3 3773 18 3 3775 12 3 3774 19 3 3773 18 3 3776 13 3 3774 19 3 3775 12 3 3777 14 3 3776 13 3 3775 12 3 3777 15 3 3776 13 3 3777 14 3 3778 2 3 3764 1 3 3765 0 3 3779 3 3 3764 1 3 3778 2 3 3780 4 3 3779 3 3 3778 2 3 3781 5 3 3779 3 3 3780 4 3 3782 6 3 3781 5 3 3780 4 3 3783 7 3 3781 5 3 3782 6 3 3784 8 3 3783 7 3 3782 6 3 3785 9 3 3783 7 3 3784 8 3 3786 18 3 3785 9 3 3784 8 3 3787 19 3 3785 9 3 3786 18 3 3788 12 3 3787 19 3 3786 18 3 3789 13 3 3787 19 3 3788 12 3 3790 14 3 3789 13 3 3788 12 3 3791 15 3 3789 13 3 3790 14 3 3766 2 3 3765 1 3 3792 0 3 3793 3 3 3765 1 3 3766 2 3 3794 4 3 3793 3 3 3766 2 3 3795 5 3 3793 3 3 3794 4 3 3796 6 3 3795 5 3 3794 4 3 3797 7 3 3795 5 3 3796 6 3 3798 8 3 3797 7 3 3796 6 3 3799 9 3 3797 7 3 3798 8 3 3800 18 3 3799 9 3 3798 8 3 3800 19 3 3799 9 3 3800 18 3 3801 12 3 3800 19 3 3800 18 3 3802 13 3 3800 19 3 3801 12 3 3803 14 3 3802 13 3 3801 12 3 3803 15 3 3802 13 3 3803 14 3 3805 2 3 3804 1 3 3765 0 3 3806 3 3 3804 1 3 3805 2 3 3807 4 3 3806 3 3 3805 2 3 3808 5 3 3806 3 3 3807 4 3 3809 6 3 3808 5 3 3807 4 3 3810 7 3 3808 5 3 3809 6 3 3811 8 3 3810 7 3 3809 6 3 3812 9 3 3810 7 3 3811 8 3 3813 18 3 3812 9 3 3811 8 3 3814 19 3 3812 9 3 3813 18 3 3815 12 3 3814 19 3 3813 18 3 3816 13 3 3814 19 3 3815 12 3 3817 14 3 3816 13 3 3815 12 3 3818 15 3 3816 13 3 3817 14 3 3820 2 3 3764 1 3 3819 0 3 3821 3 3 3764 1 3 3820 2 3 3822 4 3 3821 3 3 3820 2 3 3823 5 3 3821 3 3 3822 4 3 3824 6 3 3823 5 3 3822 4 3 3825 7 3 3823 5 3 3824 6 3 3826 8 3 3825 7 3 3824 6 3 3827 9 3 3825 7 3 3826 8 3 3828 18 3 3827 9 3 3826 8 3 3829 19 3 3827 9 3 3828 18 3 3830 12 3 3829 19 3 3828 18 3 3831 13 3 3829 19 3 3830 12 3 3832 14 3 3831 13 3 3830 12 3 3833 15 3 3831 13 3 3832 14 3 3805 2 3 3834 1 3 3764 0 3 3835 3 3 3834 1 3 3805 2 3 3836 4 3 3835 3 3 3805 2 3 3837 5 3 3835 3 3 3836 4 3 3838 6 3 3837 5 3 3836 4 3 3839 7 3 3837 5 3 3838 6 3 3840 8 3 3839 7 3 3838 6 3 3841 9 3 3839 7 3 3840 8 3 3842 18 3 3841 9 3 3840 8 3 3843 19 3 3841 9 3 3842 18 3 3844 12 3 3843 19 3 3842 18 3 3845 13 3 3843 19 3 3844 12 3 3846 14 3 3845 13 3 3844 12 3 3847 15 3 3845 13 3 3846 14 3 3849 2 3 3848 1 3 3848 0 3 3849 3 3 3848 1 3 3849 2 3 3850 4 3 3849 3 3 3849 2 3 3851 5 3 3849 3 3 3850 4 3 3852 6 3 3851 5 3 3850 4 3 3853 7 3 3851 5 3 3852 6 3 3854 8 3 3853 7 3 3852 6 3 3855 9 3 3853 7 3 3854 8 3 3856 18 3 3855 9 3 3854 8 3 3857 19 3 3855 9 3 3856 18 3 3858 12 3 3857 19 3 3856 18 3 3859 13 3 3857 19 3 3858 12 3 3860 14 3 3859 13 3 3858 12 3 3861 15 3 3859 13 3 3860 14 3 3864 2 3 3863 1 3 3862 0 3 3865 3 3 3863 1 3 3864 2 3 3866 4 3 3865 3 3 3864 2 3 3867 5 3 3865 3 3 3866 4 3 3868 6 3 3867 5 3 3866 4 3 3869 7 3 3867 5 3 3868 6 3 3870 8 3 3869 7 3 3868 6 3 3871 9 3 3869 7 3 3870 8 3 3872 18 3 3871 9 3 3870 8 3 3873 19 3 3871 9 3 3872 18 3 3874 12 3 3873 19 3 3872 18 3 3875 13 3 3873 19 3 3874 12 3 3876 14 3 3875 13 3 3874 12 3 3877 15 3 3875 13 3 3876 14 3 3849 2 3 3862 1 3 3863 0 3 3878 3 3 3862 1 3 3849 2 3 3879 4 3 3878 3 3 3849 2 3 3880 5 3 3878 3 3 3879 4 3 3881 6 3 3880 5 3 3879 4 3 3882 7 3 3880 5 3 3881 6 3 3883 8 3 3882 7 3 3881 6 3 3884 9 3 3882 7 3 3883 8 3 3885 18 3 3884 9 3 3883 8 3 3886 19 3 3884 9 3 3885 18 3 3887 12 3 3886 19 3 3885 18 3 3888 13 3 3886 19 3 3887 12 3 3889 14 3 3888 13 3 3887 12 3 3890 15 3 3888 13 3 3889 14 3 3892 2 3 3863 1 3 3891 0 3 3893 3 3 3863 1 3 3892 2 3 3894 4 3 3893 3 3 3892 2 3 3895 5 3 3893 3 3 3894 4 3 3896 6 3 3895 5 3 3894 4 3 3897 7 3 3895 5 3 3896 6 3 3898 8 3 3897 7 3 3896 6 3 3899 9 3 3897 7 3 3898 8 3 3900 18 3 3899 9 3 3898 8 3 3901 19 3 3899 9 3 3900 18 3 3902 12 3 3901 19 3 3900 18 3 3903 13 3 3901 19 3 3902 12 3 3904 14 3 3903 13 3 3902 12 3 3905 15 3 3903 13 3 3904 14 3 3908 2 0 3907 1 0 3906 0 3 3909 3 0 3907 1 0 3908 2 0 3910 4 0 3909 3 0 3908 2 0 3911 5 0 3909 3 0 3910 4 0 3912 6 0 3911 5 0 3910 4 0 3913 7 0 3911 5 0 3912 6 0 3914 8 1 3913 7 0 3912 6 0 3915 9 1 3913 7 0 3914 8 1 3916 18 1 3915 9 1 3914 8 1 3917 19 1 3915 9 1 3916 18 1 3918 12 1 3917 19 1 3916 18 1 3919 13 1 3917 19 1 3918 12 1 3920 14 1 3919 13 1 3918 12 1 3921 15 1 3919 13 1 3920 14 1 3924 2 3 3923 1 3 3922 0 3 3924 3 3 3923 1 3 3924 2 3 3925 4 3 3924 3 3 3924 2 3 3926 5 3 3924 3 3 3925 4 3 3927 6 3 3926 5 3 3925 4 3 3928 7 3 3926 5 3 3927 6 3 3929 8 3 3928 7 3 3927 6 3 3930 9 3 3928 7 3 3929 8 3 3931 18 3 3930 9 3 3929 8 3 3932 19 3 3930 9 3 3931 18 3 3933 12 3 3932 19 3 3931 18 3 3934 13 3 3932 19 3 3933 12 3 3935 14 3 3934 13 3 3933 12 3 3936 15 3 3934 13 3 3935 14 3 3937 2 3 3922 1 3 3923 0 3 3938 3 3 3922 1 3 3937 2 3 3939 4 3 3938 3 3 3937 2 3 3940 5 3 3938 3 3 3939 4 3 3941 6 3 3940 5 3 3939 4 3 3942 7 3 3940 5 3 3941 6 3 3943 8 3 3942 7 3 3941 6 3 3944 9 3 3942 7 3 3943 8 3 3945 18 3 3944 9 3 3943 8 3 3946 19 3 3944 9 3 3945 18 3 3947 12 3 3946 19 3 3945 18 3 3948 13 3 3946 19 3 3947 12 3 3949 14 3 3948 13 3 3947 12 3 3950 15 3 3948 13 3 3949 14 3 3924 2 3 3951 1 3 3922 0 3 3952 3 3 3951 1 3 3924 2 3 3953 4 3 3952 3 3 3924 2 3 3953 5 3 3952 3 3 3953 4 3 3954 6 3 3953 5 3 3953 4 3 3955 7 3 3953 5 3 3954 6 3 3956 8 3 3955 7 3 3954 6 3 3957 9 3 3955 7 3 3956 8 3 3958 18 3 3957 9 3 3956 8 3 3959 19 3 3957 9 3 3958 18 3 3960 12 3 3959 19 3 3958 18 3 3961 13 3 3959 19 3 3960 12 3 3962 14 3 3961 13 3 3960 12 3 3963 15 3 3961 13 3 3962 14 3 3965 2 3 3964 1 3 3923 0 3 3966 3 3 3964 1 3 3965 2 3 3967 4 3 3966 3 3 3965 2 3 3968 5 3 3966 3 3 3967 4 3 3969 6 3 3968 5 3 3967 4 3 3970 7 3 3968 5 3 3969 6 3 3971 8 3 3970 7 3 3969 6 3 3972 9 3 3970 7 3 3971 8 3 3973 18 3 3972 9 3 3971 8 3 3974 19 3 3972 9 3 3973 18 3 3975 12 3 3974 19 3 3973 18 3 3976 13 3 3974 19 3 3975 12 3 3977 14 3 3976 13 3 3975 12 3 3978 15 3 3976 13 3 3977 14 3 3980 2 3 3922 1 3 3979 0 3 3981 3 3 3922 1 3 3980 2 3 3982 4 3 3981 3 3 3980 2 3 3983 5 3 3981 3 3 3982 4 3 3984 6 3 3983 5 3 3982 4 3 3985 7 3 3983 5 3 3984 6 3 3986 8 3 3985 7 3 3984 6 3 3987 9 3 3985 7 3 3986 8 3 3988 18 3 3987 9 3 3986 8 3 3989 19 3 3987 9 3 3988 18 3 3990 12 3 3989 19 3 3988 18 3 3991 13 3 3989 19 3 3990 12 3 3992 14 3 3991 13 3 3990 12 3 3993 15 3 3991 13 3 3992 14 3 3965 2 3 3994 1 3 3923 0 3 3995 3 3 3994 1 3 3965 2 3 3996 4 3 3995 3 3 3965 2 3 3997 5 3 3995 3 3 3996 4 3 3998 6 3 3997 5 3 3996 4 3 3999 7 3 3997 5 3 3998 6 3 4000 8 3 3999 7 3 3998 6 3 4001 9 3 3999 7 3 4000 8 3 4002 18 3 4001 9 3 4000 8 3 4003 19 3 4001 9 3 4002 18 3 4004 12 3 4003 19 3 4002 18 3 4005 13 3 4003 19 3 4004 12 3 4006 14 3 4005 13 3 4004 12 3 4007 15 3 4005 13 3 4006 14 3 4010 2 3 4009 1 3 4008 0 3 4011 3 3 4009 1 3 4010 2 3 4012 4 3 4011 3 3 4010 2 3 4013 5 3 4011 3 3 4012 4 3 4014 6 3 4013 5 3 4012 4 3 4015 7 3 4013 5 3 4014 6 3 4016 8 3 4015 7 3 4014 6 3 4017 9 3 4015 7 3 4016 8 3 4018 18 3 4017 9 3 4016 8 3 4019 19 3 4017 9 3 4018 18 3 4020 12 3 4019 19 3 4018 18 3 4021 13 3 4019 19 3 4020 12 3 4022 14 3 4021 13 3 4020 12 3 4023 15 3 4021 13 3 4022 14 3 4026 2 3 4025 1 3 4024 0 3 4027 3 3 4025 1 3 4026 2 3 4028 4 3 4027 3 3 4026 2 3 4029 5 3 4027 3 3 4028 4 3 4030 6 3 4029 5 3 4028 4 3 4031 7 3 4029 5 3 4030 6 3 4032 8 3 4031 7 3 4030 6 3 4033 9 3 4031 7 3 4032 8 3 4034 18 3 4033 9 3 4032 8 3 4035 19 3 4033 9 3 4034 18 3 4036 12 3 4035 19 3 4034 18 3 4037 13 3 4035 19 3 4036 12 3 4038 14 3 4037 13 3 4036 12 3 4039 15 3 4037 13 3 4038 14 3 4010 2 3 4009 1 3 4008 0 3 4040 3 3 4009 1 3 4010 2 3 4041 4 3 4040 3 3 4010 2 3 4042 5 3 4040 3 3 4041 4 3 4043 6 3 4042 5 3 4041 4 3 4044 7 3 4042 5 3 4043 6 3 4045 8 3 4044 7 3 4043 6 3 4046 9 3 4044 7 3 4045 8 3 4047 18 3 4046 9 3 4045 8 3 4048 19 3 4046 9 3 4047 18 3 4049 12 3 4048 19 3 4047 18 3 4050 13 3 4048 19 3 4049 12 3 4051 14 3 4050 13 3 4049 12 3 4052 15 3 4050 13 3 4051 14 3 4054 2 3 4025 1 3 4053 0 3 4055 3 3 4025 1 3 4054 2 3 4056 4 3 4055 3 3 4054 2 3 4057 5 3 4055 3 3 4056 4 3 4058 6 3 4057 5 3 4056 4 3 4059 7 3 4057 5 3 4058 6 3 4060 8 3 4059 7 3 4058 6 3 4061 9 3 4059 7 3 4060 8 3 4062 18 3 4061 9 3 4060 8 3 4063 19 3 4061 9 3 4062 18 3 4064 12 3 4063 19 3 4062 18 3 4065 13 3 4063 19 3 4064 12 3 4066 14 3 4065 13 3 4064 12 3 4067 15 3 4065 13 3 4066 14 3 4069 2 0 4068 1 0 4008 0 3 4070 3 0 4068 1 0 4069 2 0 4071 4 0 4070 3 0 4069 2 0 4072 5 0 4070 3 0 4071 4 0 4073 6 0 4072 5 0 4071 4 0 4074 7 0 4072 5 0 4073 6 0 4075 8 1 4074 7 0 4073 6 0 4076 9 1 4074 7 0 4075 8 1 4077 18 1 4076 9 1 4075 8 1 4078 19 1 4076 9 1 4077 18 1 4079 12 1 4078 19 1 4077 18 1 4080 13 1 4078 19 1 4079 12 1 4081 14 1 4080 13 1 4079 12 1 4082 15 1 4080 13 1 4081 14 1 4084 2 3 4083 1 3 4083 0 3 4085 3 3 4083 1 3 4084 2 3 4086 4 3 4085 3 3 4084 2 3 4087 5 3 4085 3 3 4086 4 3 4088 6 3 4087 5 3 4086 4 3 4089 7 3 4087 5 3 4088 6 3 4090 8 3 4089 7 3 4088 6 3 4091 9 3 4089 7 3 4090 8 3 4092 18 3 4091 9 3 4090 8 3 4093 19 3 4091 9 3 4092 18 3 4094 12 3 4093 19 3 4092 18 3 4095 13 3 4093 19 3 4094 12 3 4096 14 3 4095 13 3 4094 12 3 4097 15 3 4095 13 3 4096 14 3 4100 2 3 4099 1 3 4098 0 3 4101 3 3 4099 1 3 4100 2 3 4102 4 3 4101 3 3 4100 2 3 4103 5 3 4101 3 3 4102 4 3 4104 6 3 4103 5 3 4102 4 3 4105 7 3 4103 5 3 4104 6 3 4106 8 3 4105 7 3 4104 6 3 4107 9 3 4105 7 3 4106 8 3 4108 18 3 4107 9 3 4106 8 3 4109 19 3 4107 9 3 4108 18 3 4110 12 3 4109 19 3 4108 18 3 4110 13 3 4109 19 3 4110 12 3 4111 14 3 4110 13 3 4110 12 3 4112 15 3 4110 13 3 4111 14 3 4084 2 3 4083 1 3 4099 0 3 4113 3 3 4083 1 3 4084 2 3 4114 4 3 4113 3 3 4084 2 3 4115 5 3 4113 3 3 4114 4 3 4116 6 3 4115 5 3 4114 4 3 4117 7 3 4115 5 3 4116 6 3 4118 8 3 4117 7 3 4116 6 3 4119 9 3 4117 7 3 4118 8 3 4120 18 3 4119 9 3 4118 8 3 4121 19 3 4119 9 3 4120 18 3 4122 12 3 4121 19 3 4120 18 3 4123 13 3 4121 19 3 4122 12 3 4124 14 3 4123 13 3 4122 12 3 4125 15 3 4123 13 3 4124 14 3 4127 2 3 4098 1 3 4126 0 3 4128 3 3 4098 1 3 4127 2 3 4129 4 3 4128 3 3 4127 2 3 4130 5 3 4128 3 3 4129 4 3 4131 6 3 4130 5 3 4129 4 3 4132 7 3 4130 5 3 4131 6 3 4133 8 3 4132 7 3 4131 6 3 4134 9 3 4132 7 3 4133 8 3 4135 18 3 4134 9 3 4133 8 3 4136 19 3 4134 9 3 4135 18 3 4137 12 3 4136 19 3 4135 18 3 4138 13 3 4136 19 3 4137 12 3 4139 14 3 4138 13 3 4137 12 3 4140 15 3 4138 13 3 4139 14 3 4142 2 3 4099 1 3 4141 0 3 4143 3 3 4099 1 3 4142 2 3 4144 4 3 4143 3 3 4142 2 3 4145 5 3 4143 3 3 4144 4 3 4146 6 3 4145 5 3 4144 4 3 4147 7 3 4145 5 3 4146 6 3 4148 8 3 4147 7 3 4146 6 3 4149 9 3 4147 7 3 4148 8 3 4150 18 3 4149 9 3 4148 8 3 4151 19 3 4149 9 3 4150 18 3 4152 12 3 4151 19 3 4150 18 3 4153 13 3 4151 19 3 4152 12 3 4154 14 3 4153 13 3 4152 12 3 4155 15 3 4153 13 3 4154 14 3 4156 2 3 4098 1 3 4126 0 3 4157 3 3 4098 1 3 4156 2 3 4158 4 3 4157 3 3 4156 2 3 4159 5 3 4157 3 3 4158 4 3 4160 6 3 4159 5 3 4158 4 3 4161 7 3 4159 5 3 4160 6 3 4162 8 3 4161 7 3 4160 6 3 4163 9 3 4161 7 3 4162 8 3 4164 18 3 4163 9 3 4162 8 3 4165 19 3 4163 9 3 4164 18 3 4166 12 3 4165 19 3 4164 18 3 4167 13 3 4165 19 3 4166 12 3 4168 14 3 4167 13 3 4166 12 3 4169 15 3 4167 13 3 4168 14 3 4171 2 3 4170 1 3 4170 0 3 4172 3 3 4170 1 3 4171 2 3 4173 4 3 4172 3 3 4171 2 3 4174 5 3 4172 3 3 4173 4 3 4175 6 3 4174 5 3 4173 4 3 4176 7 3 4174 5 3 4175 6 3 4177 8 3 4176 7 3 4175 6 3 4178 9 3 4176 7 3 4177 8 3 4179 18 3 4178 9 3 4177 8 3 4180 19 3 4178 9 3 4179 18 3 4181 12 3 4180 19 3 4179 18 3 4182 13 3 4180 19 3 4181 12 3 4183 14 3 4182 13 3 4181 12 3 4183 15 3 4182 13 3 4183 14 3 4171 2 3 4185 1 3 4184 0 3 4186 3 3 4185 1 3 4171 2 3 4187 4 3 4186 3 3 4171 2 3 4188 5 3 4186 3 3 4187 4 3 4189 6 3 4188 5 3 4187 4 3 4190 7 3 4188 5 3 4189 6 3 4191 8 3 4190 7 3 4189 6 3 4192 9 3 4190 7 3 4191 8 3 4193 18 3 4192 9 3 4191 8 3 4194 19 3 4192 9 3 4193 18 3 4195 12 3 4194 19 3 4193 18 3 4195 13 3 4194 19 3 4195 12 3 4196 14 3 4195 13 3 4195 12 3 4196 15 3 4195 13 3 4196 14 3 4199 2 3 4198 1 3 4197 0 3 4200 3 3 4198 1 3 4199 2 3 4201 4 3 4200 3 3 4199 2 3 4201 5 3 4200 3 3 4201 4 3 4202 6 3 4201 5 3 4201 4 3 4203 7 3 4201 5 3 4202 6 3 4204 8 3 4203 7 3 4202 6 3 4205 9 3 4203 7 3 4204 8 3 4206 18 3 4205 9 3 4204 8 3 4207 19 3 4205 9 3 4206 18 3 4208 12 3 4207 19 3 4206 18 3 4209 13 3 4207 19 3 4208 12 3 4210 14 3 4209 13 3 4208 12 3 4211 15 3 4209 13 3 4210 14 3 4213 2 3 4197 1 3 4212 0 3 4214 3 3 4197 1 3 4213 2 3 4215 4 3 4214 3 3 4213 2 3 4216 5 3 4214 3 3 4215 4 3 4217 6 3 4216 5 3 4215 4 3 4218 7 3 4216 5 3 4217 6 3 4219 8 3 4218 7 3 4217 6 3 4220 9 3 4218 7 3 4219 8 3 4221 18 3 4220 9 3 4219 8 3 4222 19 3 4220 9 3 4221 18 3 4223 12 3 4222 19 3 4221 18 3 4224 13 3 4222 19 3 4223 12 3 4225 14 3 4224 13 3 4223 12 3 4226 15 3 4224 13 3 4225 14 3 4228 2 0 4227 1 0 4170 0 3 4229 3 0 4227 1 0 4228 2 0 4230 4 0 4229 3 0 4228 2 0 4231 5 0 4229 3 0 4230 4 0 4232 6 0 4231 5 0 4230 4 0 4233 7 0 4231 5 0 4232 6 0 4234 8 1 4233 7 0 4232 6 0 4235 9 1 4233 7 0 4234 8 1 4236 18 1 4235 9 1 4234 8 1 4237 19 1 4235 9 1 4236 18 1 4238 12 1 4237 19 1 4236 18 1 4239 13 1 4237 19 1 4238 12 1 4240 14 1 4239 13 1 4238 12 1 4241 15 1 4239 13 1 4240 14 1 4244 2 3 4243 1 3 4242 0 3 4244 3 3 4243 1 3 4244 2 3 4245 4 3 4244 3 3 4244 2 3 4246 5 3 4244 3 3 4245 4 3 4247 6 3 4246 5 3 4245 4 3 4248 7 3 4246 5 3 4247 6 3 4249 8 3 4248 7 3 4247 6 3 4250 9 3 4248 7 3 4249 8 3 4251 18 3 4250 9 3 4249 8 3 4252 19 3 4250 9 3 4251 18 3 4253 12 3 4252 19 3 4251 18 3 4254 13 3 4252 19 3 4253 12 3 4255 14 3 4254 13 3 4253 12 3 4256 15 3 4254 13 3 4255 14 3 4259 2 3 4258 1 3 4257 0 3 4260 3 3 4258 1 3 4259 2 3 4261 4 3 4260 3 3 4259 2 3 4262 5 3 4260 3 3 4261 4 3 4263 6 3 4262 5 3 4261 4 3 4264 7 3 4262 5 3 4263 6 3 4265 8 3 4264 7 3 4263 6 3 4265 9 3 4264 7 3 4265 8 3 4266 18 3 4265 9 3 4265 8 3 4266 19 3 4265 9 3 4266 18 3 4267 12 3 4266 19 3 4266 18 3 4268 13 3 4266 19 3 4267 12 3 4269 14 3 4268 13 3 4267 12 3 4270 15 3 4268 13 3 4269 14 3 4244 2 3 4243 1 3 4271 0 3 4272 3 3 4243 1 3 4244 2 3 4273 4 3 4272 3 3 4244 2 3 4274 5 3 4272 3 3 4273 4 3 4275 6 3 4274 5 3 4273 4 3 4276 7 3 4274 5 3 4275 6 3 4277 8 3 4276 7 3 4275 6 3 4278 9 3 4276 7 3 4277 8 3 4279 18 3 4278 9 3 4277 8 3 4279 19 3 4278 9 3 4279 18 3 4280 12 3 4279 19 3 4279 18 3 4281 13 3 4279 19 3 4280 12 3 4282 14 3 4281 13 3 4280 12 3 4283 15 3 4281 13 3 4282 14 3 4286 2 3 4285 1 3 4284 0 3 4287 3 3 4285 1 3 4286 2 3 4288 4 3 4287 3 3 4286 2 3 4289 5 3 4287 3 3 4288 4 3 4290 6 3 4289 5 3 4288 4 3 4291 7 3 4289 5 3 4290 6 3 4292 8 3 4291 7 3 4290 6 3 4293 9 3 4291 7 3 4292 8 3 4294 18 3 4293 9 3 4292 8 3 4295 19 3 4293 9 3 4294 18 3 4296 12 3 4295 19 3 4294 18 3 4297 13 3 4295 19 3 4296 12 3 4298 14 3 4297 13 3 4296 12 3 4299 15 3 4297 13 3 4298 14 3 4301 2 3 4258 1 3 4300 0 3 4302 3 3 4258 1 3 4301 2 3 4303 4 3 4302 3 3 4301 2 3 4304 5 3 4302 3 3 4303 4 3 4305 6 3 4304 5 3 4303 4 3 4306 7 3 4304 5 3 4305 6 3 4307 8 3 4306 7 3 4305 6 3 4308 9 3 4306 7 3 4307 8 3 4309 18 3 4308 9 3 4307 8 3 4310 19 3 4308 9 3 4309 18 3 4311 12 3 4310 19 3 4309 18 3 4312 13 3 4310 19 3 4311 12 3 4313 14 3 4312 13 3 4311 12 3 4314 15 3 4312 13 3 4313 14 3 4286 2 3 4315 1 3 4257 0 3 4316 3 3 4315 1 3 4286 2 3 4317 4 3 4316 3 3 4286 2 3 4318 5 3 4316 3 3 4317 4 3 4319 6 3 4318 5 3 4317 4 3 4320 7 3 4318 5 3 4319 6 3 4321 8 3 4320 7 3 4319 6 3 4322 9 3 4320 7 3 4321 8 3 4323 18 3 4322 9 3 4321 8 3 4324 19 3 4322 9 3 4323 18 3 4325 12 3 4324 19 3 4323 18 3 4326 13 3 4324 19 3 4325 12 3 4327 14 3 4326 13 3 4325 12 3 4328 15 3 4326 13 3 4327 14 3 4330 2 3 4329 1 3 4329 0 3 4331 3 3 4329 1 3 4330 2 3 4332 4 3 4331 3 3 4330 2 3 4333 5 3 4331 3 3 4332 4 3 4334 6 3 4333 5 3 4332 4 3 4335 7 3 4333 5 3 4334 6 3 4336 8 3 4335 7 3 4334 6 3 4337 9 3 4335 7 3 4336 8 3 4338 18 3 4337 9 3 4336 8 3 4339 19 3 4337 9 3 4338 18 3 4340 12 3 4339 19 3 4338 18 3 4341 13 3 4339 19 3 4340 12 3 4342 14 3 4341 13 3 4340 12 3 4343 15 3 4341 13 3 4342 14 3 4330 2 3 4345 1 3 4344 0 3 4346 3 3 4345 1 3 4330 2 3 4347 4 3 4346 3 3 4330 2 3 4348 5 3 4346 3 3 4347 4 3 4349 6 3 4348 5 3 4347 4 3 4350 7 3 4348 5 3 4349 6 3 4351 8 3 4350 7 3 4349 6 3 4352 9 3 4350 7 3 4351 8 3 4353 18 3 4352 9 3 4351 8 3 4354 19 3 4352 9 3 4353 18 3 4355 12 3 4354 19 3 4353 18 3 4356 13 3 4354 19 3 4355 12 3 4357 14 3 4356 13 3 4355 12 3 4358 15 3 4356 13 3 4357 14 3 4361 2 3 4360 1 3 4359 0 3 4362 3 3 4360 1 3 4361 2 3 4363 4 3 4362 3 3 4361 2 3 4364 5 3 4362 3 3 4363 4 3 4365 6 3 4364 5 3 4363 4 3 4366 7 3 4364 5 3 4365 6 3 4367 8 3 4366 7 3 4365 6 3 4368 9 3 4366 7 3 4367 8 3 4369 18 3 4368 9 3 4367 8 3 4370 19 3 4368 9 3 4369 18 3 4371 12 3 4370 19 3 4369 18 3 4372 13 3 4370 19 3 4371 12 3 4373 14 3 4372 13 3 4371 12 3 4374 15 3 4372 13 3 4373 14 3 4376 2 3 4345 1 3 4375 0 3 4377 3 3 4345 1 3 4376 2 3 4378 4 3 4377 3 3 4376 2 3 4379 5 3 4377 3 3 4378 4 3 4380 6 3 4379 5 3 4378 4 3 4381 7 3 4379 5 3 4380 6 3 4382 8 3 4381 7 3 4380 6 3 4383 9 3 4381 7 3 4382 8 3 4384 18 3 4383 9 3 4382 8 3 4385 19 3 4383 9 3 4384 18 3 4386 12 3 4385 19 3 4384 18 3 4387 13 3 4385 19 3 4386 12 3 4388 14 3 4387 13 3 4386 12 3 4389 15 3 4387 13 3 4388 14 3 4392 2 0 4391 1 0 4390 0 3 4393 3 0 4391 1 0 4392 2 0 4394 4 0 4393 3 0 4392 2 0 4395 5 0 4393 3 0 4394 4 0 4396 6 0 4395 5 0 4394 4 0 4397 7 0 4395 5 0 4396 6 0 4398 8 1 4397 7 0 4396 6 0 4399 9 1 4397 7 0 4398 8 1 4400 18 1 4399 9 1 4398 8 1 4401 19 1 4399 9 1 4400 18 1 4402 12 1 4401 19 1 4400 18 1 4403 13 1 4401 19 1 4402 12 1 4404 14 1 4403 13 1 4402 12 1 4405 15 1 4403 13 1 4404 14 1 4407 2 3 4406 1 3 4406 0 3 4408 3 3 4406 1 3 4407 2 3 4409 4 3 4408 3 3 4407 2 3 4410 5 3 4408 3 3 4409 4 3 4411 6 3 4410 5 3 4409 4 3 4412 7 3 4410 5 3 4411 6 3 4413 8 3 4412 7 3 4411 6 3 4414 9 3 4412 7 3 4413 8 3 4415 18 3 4414 9 3 4413 8 3 4416 19 3 4414 9 3 4415 18 3 4417 12 3 4416 19 3 4415 18 3 4418 13 3 4416 19 3 4417 12 3 4419 14 3 4418 13 3 4417 12 3 4420 15 3 4418 13 3 4419 14 3 4423 2 3 4422 1 3 4421 0 3 4424 3 3 4422 1 3 4423 2 3 4425 4 3 4424 3 3 4423 2 3 4426 5 3 4424 3 3 4425 4 3 4427 6 3 4426 5 3 4425 4 3 4428 7 3 4426 5 3 4427 6 3 4429 8 3 4428 7 3 4427 6 3 4430 9 3 4428 7 3 4429 8 3 4431 18 3 4430 9 3 4429 8 3 4432 19 3 4430 9 3 4431 18 3 4433 12 3 4432 19 3 4431 18 3 4434 13 3 4432 19 3 4433 12 3 4435 14 3 4434 13 3 4433 12 3 4436 15 3 4434 13 3 4435 14 3 4408 2 3 4437 1 3 4422 0 3 4438 3 3 4437 1 3 4408 2 3 4439 4 3 4438 3 3 4408 2 3 4440 5 3 4438 3 3 4439 4 3 4441 6 3 4440 5 3 4439 4 3 4442 7 3 4440 5 3 4441 6 3 4443 8 3 4442 7 3 4441 6 3 4444 9 3 4442 7 3 4443 8 3 4445 18 3 4444 9 3 4443 8 3 4446 19 3 4444 9 3 4445 18 3 4447 12 3 4446 19 3 4445 18 3 4448 13 3 4446 19 3 4447 12 3 4449 14 3 4448 13 3 4447 12 3 4450 15 3 4448 13 3 4449 14 3 4452 2 3 4421 1 3 4451 0 3 4453 3 3 4421 1 3 4452 2 3 4454 4 3 4453 3 3 4452 2 3 4455 5 3 4453 3 3 4454 4 3 4456 6 3 4455 5 3 4454 4 3 4457 7 3 4455 5 3 4456 6 3 4458 8 3 4457 7 3 4456 6 3 4459 9 3 4457 7 3 4458 8 3 4460 18 3 4459 9 3 4458 8 3 4461 19 3 4459 9 3 4460 18 3 4462 12 3 4461 19 3 4460 18 3 4463 13 3 4461 19 3 4462 12 3 4464 14 3 4463 13 3 4462 12 3 4465 15 3 4463 13 3 4464 14 3 4467 2 3 4422 1 3 4466 0 3 4468 3 3 4422 1 3 4467 2 3 4469 4 3 4468 3 3 4467 2 3 4470 5 3 4468 3 3 4469 4 3 4471 6 3 4470 5 3 4469 4 3 4472 7 3 4470 5 3 4471 6 3 4473 8 3 4472 7 3 4471 6 3 4474 9 3 4472 7 3 4473 8 3 4475 18 3 4474 9 3 4473 8 3 4476 19 3 4474 9 3 4475 18 3 4477 12 3 4476 19 3 4475 18 3 4478 13 3 4476 19 3 4477 12 3 4479 14 3 4478 13 3 4477 12 3 4480 15 3 4478 13 3 4479 14 3 4483 2 3 4482 1 3 4481 0 3 4453 3 3 4482 1 3 4483 2 3 4484 4 3 4453 3 3 4483 2 3 4485 5 3 4453 3 3 4484 4 3 4486 6 3 4485 5 3 4484 4 3 4487 7 3 4485 5 3 4486 6 3 4488 8 3 4487 7 3 4486 6 3 4489 9 3 4487 7 3 4488 8 3 4490 18 3 4489 9 3 4488 8 3 4491 19 3 4489 9 3 4490 18 3 4492 12 3 4491 19 3 4490 18 3 4493 13 3 4491 19 3 4492 12 3 4494 14 3 4493 13 3 4492 12 3 4495 15 3 4493 13 3 4494 14 3 4498 2 3 4497 1 3 4496 0 3 4498 3 3 4497 1 3 4498 2 3 4499 4 3 4498 3 3 4498 2 3 4500 5 3 4498 3 3 4499 4 3 4501 6 3 4500 5 3 4499 4 3 4502 7 3 4500 5 3 4501 6 3 4503 8 3 4502 7 3 4501 6 3 4504 9 3 4502 7 3 4503 8 3 4505 18 3 4504 9 3 4503 8 3 4506 19 3 4504 9 3 4505 18 3 4507 12 3 4506 19 3 4505 18 3 4508 13 3 4506 19 3 4507 12 3 4509 14 3 4508 13 3 4507 12 3 4510 15 3 4508 13 3 4509 14 3 4513 2 3 4512 1 3 4511 0 3 4514 3 3 4512 1 3 4513 2 3 4515 4 3 4514 3 3 4513 2 3 4516 5 3 4514 3 3 4515 4 3 4517 6 3 4516 5 3 4515 4 3 4518 7 3 4516 5 3 4517 6 3 4519 8 3 4518 7 3 4517 6 3 4520 9 3 4518 7 3 4519 8 3 4521 18 3 4520 9 3 4519 8 3 4522 19 3 4520 9 3 4521 18 3 4523 12 3 4522 19 3 4521 18 3 4523 13 3 4522 19 3 4523 12 3 4524 14 3 4523 13 3 4523 12 3 4524 15 3 4523 13 3 4524 14 3 4498 2 3 4525 1 3 4496 0 3 4526 3 3 4525 1 3 4498 2 3 4527 4 3 4526 3 3 4498 2 3 4528 5 3 4526 3 3 4527 4 3 4529 6 3 4528 5 3 4527 4 3 4530 7 3 4528 5 3 4529 6 3 4531 8 3 4530 7 3 4529 6 3 4532 9 3 4530 7 3 4531 8 3 4533 18 3 4532 9 3 4531 8 3 4534 19 3 4532 9 3 4533 18 3 4535 12 3 4534 19 3 4533 18 3 4536 13 3 4534 19 3 4535 12 3 4537 14 3 4536 13 3 4535 12 3 4538 15 3 4536 13 3 4537 14 3 4540 2 3 4496 1 3 4539 0 3 4541 3 3 4496 1 3 4540 2 3 4542 4 3 4541 3 3 4540 2 3 4543 5 3 4541 3 3 4542 4 3 4544 6 3 4543 5 3 4542 4 3 4545 7 3 4543 5 3 4544 6 3 4546 8 3 4545 7 3 4544 6 3 4547 9 3 4545 7 3 4546 8 3 4548 18 3 4547 9 3 4546 8 3 4549 19 3 4547 9 3 4548 18 3 4550 12 3 4549 19 3 4548 18 3 4551 13 3 4549 19 3 4550 12 3 4552 14 3 4551 13 3 4550 12 3 4553 15 3 4551 13 3 4552 14 3 4555 2 0 4554 1 0 4496 0 3 4556 3 0 4554 1 0 4555 2 0 4557 4 0 4556 3 0 4555 2 0 4558 5 0 4556 3 0 4557 4 0 4559 6 0 4558 5 0 4557 4 0 4560 7 0 4558 5 0 4559 6 0 4561 8 1 4560 7 0 4559 6 0 4562 9 1 4560 7 0 4561 8 1 4563 18 1 4562 9 1 4561 8 1 4564 19 1 4562 9 1 4563 18 1 4565 12 1 4564 19 1 4563 18 1 4566 13 1 4564 19 1 4565 12 1 4567 14 1 4566 13 1 4565 12 1 4568 15 1 4566 13 1 4567 14 1 4571 2 3 4570 1 3 4569 0 3 4571 3 3 4570 1 3 4571 2 3 4572 4 3 4571 3 3 4571 2 3 4573 5 3 4571 3 3 4572 4 3 4574 6 3 4573 5 3 4572 4 3 4575 7 3 4573 5 3 4574 6 3 4576 8 3 4575 7 3 4574 6 3 4577 9 3 4575 7 3 4576 8 3 4578 18 3 4577 9 3 4576 8 3 4579 19 3 4577 9 3 4578 18 3 4580 12 3 4579 19 3 4578 18 3 4581 13 3 4579 19 3 4580 12 3 4582 14 3 4581 13 3 4580 12 3 4583 15 3 4581 13 3 4582 14 3 4586 2 3 4585 1 3 4584 0 3 4587 3 3 4585 1 3 4586 2 3 4588 4 3 4587 3 3 4586 2 3 4589 5 3 4587 3 3 4588 4 3 4590 6 3 4589 5 3 4588 4 3 4591 7 3 4589 5 3 4590 6 3 4592 8 3 4591 7 3 4590 6 3 4593 9 3 4591 7 3 4592 8 3 4594 18 3 4593 9 3 4592 8 3 4595 19 3 4593 9 3 4594 18 3 4596 12 3 4595 19 3 4594 18 3 4597 13 3 4595 19 3 4596 12 3 4598 14 3 4597 13 3 4596 12 3 4599 15 3 4597 13 3 4598 14 3 4571 2 3 4601 1 3 4600 0 3 4602 3 3 4601 1 3 4571 2 3 4603 4 3 4602 3 3 4571 2 3 4604 5 3 4602 3 3 4603 4 3 4605 6 3 4604 5 3 4603 4 3 4606 7 3 4604 5 3 4605 6 3 4607 8 3 4606 7 3 4605 6 3 4607 9 3 4606 7 3 4607 8 3 4608 18 3 4607 9 3 4607 8 3 4609 19 3 4607 9 3 4608 18 3 4610 12 3 4609 19 3 4608 18 3 4611 13 3 4609 19 3 4610 12 3 4612 14 3 4611 13 3 4610 12 3 4613 15 3 4611 13 3 4612 14 3 4616 2 3 4615 1 3 4614 0 3 4617 3 3 4615 1 3 4616 2 3 4618 4 3 4617 3 3 4616 2 3 4619 5 3 4617 3 3 4618 4 3 4620 6 3 4619 5 3 4618 4 3 4621 7 3 4619 5 3 4620 6 3 4622 8 3 4621 7 3 4620 6 3 4623 9 3 4621 7 3 4622 8 3 4624 18 3 4623 9 3 4622 8 3 4625 19 3 4623 9 3 4624 18 3 4626 12 3 4625 19 3 4624 18 3 4627 13 3 4625 19 3 4626 12 3 4628 14 3 4627 13 3 4626 12 3 4629 15 3 4627 13 3 4628 14 3 4631 2 3 4570 1 3 4630 0 3 4632 3 3 4570 1 3 4631 2 3 4633 4 3 4632 3 3 4631 2 3 4634 5 3 4632 3 3 4633 4 3 4635 6 3 4634 5 3 4633 4 3 4636 7 3 4634 5 3 4635 6 3 4637 8 3 4636 7 3 4635 6 3 4638 9 3 4636 7 3 4637 8 3 4639 18 3 4638 9 3 4637 8 3 4640 19 3 4638 9 3 4639 18 3 4641 12 3 4640 19 3 4639 18 3 4642 13 3 4640 19 3 4641 12 3 4643 14 3 4642 13 3 4641 12 3 4644 15 3 4642 13 3 4643 14 3 4616 2 3 4645 1 3 4569 0 3 4646 3 3 4645 1 3 4616 2 3 4647 4 3 4646 3 3 4616 2 3 4648 5 3 4646 3 3 4647 4 3 4649 6 3 4648 5 3 4647 4 3 4650 7 3 4648 5 3 4649 6 3 4651 8 3 4650 7 3 4649 6 3 4652 9 3 4650 7 3 4651 8 3 4653 18 3 4652 9 3 4651 8 3 4654 19 3 4652 9 3 4653 18 3 4655 12 3 4654 19 3 4653 18 3 4656 13 3 4654 19 3 4655 12 3 4657 14 3 4656 13 3 4655 12 3 4658 15 3 4656 13 3 4657 14 3 4660 2 3 4659 1 3 4659 0 3 4661 3 3 4659 1 3 4660 2 3 4662 4 3 4661 3 3 4660 2 3 4663 5 3 4661 3 3 4662 4 3 4664 6 3 4663 5 3 4662 4 3 4665 7 3 4663 5 3 4664 6 3 4666 8 3 4665 7 3 4664 6 3 4667 9 3 4665 7 3 4666 8 3 4668 18 3 4667 9 3 4666 8 3 4669 19 3 4667 9 3 4668 18 3 4670 12 3 4669 19 3 4668 18 3 4671 13 3 4669 19 3 4670 12 3 4672 14 3 4671 13 3 4670 12 3 4673 15 3 4671 13 3 4672 14 3 4676 2 3 4675 1 3 4674 0 3 4677 3 3 4675 1 3 4676 2 3 4678 4 3 4677 3 3 4676 2 3 4679 5 3 4677 3 3 4678 4 3 4680 6 3 4679 5 3 4678 4 3 4681 7 3 4679 5 3 4680 6 3 4682 8 3 4681 7 3 4680 6 3 4683 9 3 4681 7 3 4682 8 3 4684 18 3 4683 9 3 4682 8 3 4685 19 3 4683 9 3 4684 18 3 4686 12 3 4685 19 3 4684 18 3 4687 13 3 4685 19 3 4686 12 3 4688 14 3 4687 13 3 4686 12 3 4689 15 3 4687 13 3 4688 14 3 4691 2 3 4674 1 3 4690 0 3 4692 3 3 4674 1 3 4691 2 3 4693 4 3 4692 3 3 4691 2 3 4694 5 3 4692 3 3 4693 4 3 4695 6 3 4694 5 3 4693 4 3 4696 7 3 4694 5 3 4695 6 3 4697 8 3 4696 7 3 4695 6 3 4698 9 3 4696 7 3 4697 8 3 4699 18 3 4698 9 3 4697 8 3 4699 19 3 4698 9 3 4699 18 3 4700 12 3 4699 19 3 4699 18 3 4700 13 3 4699 19 3 4700 12 3 4701 14 3 4700 13 3 4700 12 3 4702 15 3 4700 13 3 4701 14 3 4704 2 3 4659 1 3 4703 0 3 4705 3 3 4659 1 3 4704 2 3 4706 4 3 4705 3 3 4704 2 3 4707 5 3 4705 3 3 4706 4 3 4708 6 3 4707 5 3 4706 4 3 4709 7 3 4707 5 3 4708 6 3 4710 8 3 4709 7 3 4708 6 3 4711 9 3 4709 7 3 4710 8 3 4712 18 3 4711 9 3 4710 8 3 4713 19 3 4711 9 3 4712 18 3 4714 12 3 4713 19 3 4712 18 3 4715 13 3 4713 19 3 4714 12 3 4716 14 3 4715 13 3 4714 12 3 4717 15 3 4715 13 3 4716 14 3 4719 2 0 4718 1 0 4690 0 3 4720 3 0 4718 1 0 4719 2 0 4721 4 0 4720 3 0 4719 2 0 4722 5 0 4720 3 0 4721 4 0 4723 6 0 4722 5 0 4721 4 0 4724 7 0 4722 5 0 4723 6 0 4725 8 1 4724 7 0 4723 6 0 4726 9 1 4724 7 0 4725 8 1 4727 18 1 4726 9 1 4725 8 1 4728 19 1 4726 9 1 4727 18 1 4729 12 1 4728 19 1 4727 18 1 4730 13 1 4728 19 1 4729 12 1 4731 14 1 4730 13 1 4729 12 1 4732 15 1 4730 13 1 4731 14 1 4735 2 3 4734 1 3 4733 0 3 4735 3 3 4734 1 3 4735 2 3 4736 4 3 4735 3 3 4735 2 3 4737 5 3 4735 3 3 4736 4 3 4738 6 3 4737 5 3 4736 4 3 4739 7 3 4737 5 3 4738 6 3 4740 8 3 4739 7 3 4738 6 3 4741 9 3 4739 7 3 4740 8 3 4742 18 3 4741 9 3 4740 8 3 4743 19 3 4741 9 3 4742 18 3 4744 12 3 4743 19 3 4742 18 3 4744 13 3 4743 19 3 4744 12 3 4745 14 3 4744 13 3 4744 12 3 4746 15 3 4744 13 3 4745 14 3 4749 2 3 4748 1 3 4747 0 3 4750 3 3 4748 1 3 4749 2 3 4751 4 3 4750 3 3 4749 2 3 4752 5 3 4750 3 3 4751 4 3 4753 6 3 4752 5 3 4751 4 3 4754 7 3 4752 5 3 4753 6 3 4755 8 3 4754 7 3 4753 6 3 4756 9 3 4754 7 3 4755 8 3 4757 18 3 4756 9 3 4755 8 3 4758 19 3 4756 9 3 4757 18 3 4759 12 3 4758 19 3 4757 18 3 4759 13 3 4758 19 3 4759 12 3 4760 14 3 4759 13 3 4759 12 3 4761 15 3 4759 13 3 4760 14 3 4735 2 3 4762 1 3 4733 0 3 4763 3 3 4762 1 3 4735 2 3 4764 4 3 4763 3 3 4735 2 3 4765 5 3 4763 3 3 4764 4 3 4766 6 3 4765 5 3 4764 4 3 4767 7 3 4765 5 3 4766 6 3 4768 8 3 4767 7 3 4766 6 3 4769 9 3 4767 7 3 4768 8 3 4770 18 3 4769 9 3 4768 8 3 4771 19 3 4769 9 3 4770 18 3 4772 12 3 4771 19 3 4770 18 3 4773 13 3 4771 19 3 4772 12 3 4774 14 3 4773 13 3 4772 12 3 4775 15 3 4773 13 3 4774 14 3 4777 2 3 4747 1 3 4776 0 3 4778 3 3 4747 1 3 4777 2 3 4779 4 3 4778 3 3 4777 2 3 4780 5 3 4778 3 3 4779 4 3 4781 6 3 4780 5 3 4779 4 3 4782 7 3 4780 5 3 4781 6 3 4783 8 3 4782 7 3 4781 6 3 4784 9 3 4782 7 3 4783 8 3 4785 18 3 4784 9 3 4783 8 3 4786 19 3 4784 9 3 4785 18 3 4787 12 3 4786 19 3 4785 18 3 4788 13 3 4786 19 3 4787 12 3 4789 14 3 4788 13 3 4787 12 3 4790 15 3 4788 13 3 4789 14 3 4792 2 3 4748 1 3 4791 0 3 4793 3 3 4748 1 3 4792 2 3 4794 4 3 4793 3 3 4792 2 3 4795 5 3 4793 3 3 4794 4 3 4796 6 3 4795 5 3 4794 4 3 4797 7 3 4795 5 3 4796 6 3 4798 8 3 4797 7 3 4796 6 3 4799 9 3 4797 7 3 4798 8 3 4800 18 3 4799 9 3 4798 8 3 4801 19 3 4799 9 3 4800 18 3 4802 12 3 4801 19 3 4800 18 3 4803 13 3 4801 19 3 4802 12 3 4804 14 3 4803 13 3 4802 12 3 4805 15 3 4803 13 3 4804 14 3 4777 2 3 4791 1 3 4733 0 3 4806 3 3 4791 1 3 4777 2 3 4807 4 3 4806 3 3 4777 2 3 4808 5 3 4806 3 3 4807 4 3 4809 6 3 4808 5 3 4807 4 3 4810 7 3 4808 5 3 4809 6 3 4811 8 3 4810 7 3 4809 6 3 4812 9 3 4810 7 3 4811 8 3 4813 18 3 4812 9 3 4811 8 3 4814 19 3 4812 9 3 4813 18 3 4815 12 3 4814 19 3 4813 18 3 4816 13 3 4814 19 3 4815 12 3 4817 14 3 4816 13 3 4815 12 3 4818 15 3 4816 13 3 4817 14 3 4820 2 3 4819 1 3 4819 0 3 4820 3 3 4819 1 3 4820 2 3 4821 4 3 4820 3 3 4820 2 3 4822 5 3 4820 3 3 4821 4 3 4823 6 3 4822 5 3 4821 4 3 4824 7 3 4822 5 3 4823 6 3 4825 8 3 4824 7 3 4823 6 3 4826 9 3 4824 7 3 4825 8 3 4827 18 3 4826 9 3 4825 8 3 4828 19 3 4826 9 3 4827 18 3 4829 12 3 4828 19 3 4827 18 3 4830 13 3 4828 19 3 4829 12 3 4831 14 3 4830 13 3 4829 12 3 4832 15 3 4830 13 3 4831 14 3 4835 2 3 4834 1 3 4833 0 3 4836 3 3 4834 1 3 4835 2 3 4837 4 3 4836 3 3 4835 2 3 4838 5 3 4836 3 3 4837 4 3 4839 6 3 4838 5 3 4837 4 3 4840 7 3 4838 5 3 4839 6 3 4841 8 3 4840 7 3 4839 6 3 4842 9 3 4840 7 3 4841 8 3 4843 18 3 4842 9 3 4841 8 3 4844 19 3 4842 9 3 4843 18 3 4845 12 3 4844 19 3 4843 18 3 4846 13 3 4844 19 3 4845 12 3 4847 14 3 4846 13 3 4845 12 3 4848 15 3 4846 13 3 4847 14 3 4850 2 3 4849 1 3 4819 0 3 4851 3 3 4849 1 3 4850 2 3 4852 4 3 4851 3 3 4850 2 3 4853 5 3 4851 3 3 4852 4 3 4854 6 3 4853 5 3 4852 4 3 4855 7 3 4853 5 3 4854 6 3 4856 8 3 4855 7 3 4854 6 3 4857 9 3 4855 7 3 4856 8 3 4858 18 3 4857 9 3 4856 8 3 4859 19 3 4857 9 3 4858 18 3 4860 12 3 4859 19 3 4858 18 3 4861 13 3 4859 19 3 4860 12 3 4862 14 3 4861 13 3 4860 12 3 4863 15 3 4861 13 3 4862 14 3 4865 2 3 4834 1 3 4864 0 3 4866 3 3 4834 1 3 4865 2 3 4867 4 3 4866 3 3 4865 2 3 4868 5 3 4866 3 3 4867 4 3 4869 6 3 4868 5 3 4867 4 3 4870 7 3 4868 5 3 4869 6 3 4871 8 3 4870 7 3 4869 6 3 4872 9 3 4870 7 3 4871 8 3 4873 18 3 4872 9 3 4871 8 3 4874 19 3 4872 9 3 4873 18 3 4875 12 3 4874 19 3 4873 18 3 4876 13 3 4874 19 3 4875 12 3 4877 14 3 4876 13 3 4875 12 3 4878 15 3 4876 13 3 4877 14 3 4880 2 0 4879 1 0 4819 0 3 4881 3 0 4879 1 0 4880 2 0 4882 4 0 4881 3 0 4880 2 0 4883 5 0 4881 3 0 4882 4 0 4884 6 0 4883 5 0 4882 4 0 4885 7 0 4883 5 0 4884 6 0 4886 8 1 4885 7 0 4884 6 0 4887 9 1 4885 7 0 4886 8 1 4888 18 1 4887 9 1 4886 8 1 4889 19 1 4887 9 1 4888 18 1 4890 12 1 4889 19 1 4888 18 1 4891 13 1 4889 19 1 4890 12 1 4892 14 1 4891 13 1 4890 12 1 4893 15 1 4891 13 1 4892 14 1 4896 2 3 4895 1 3 4894 0 3 4897 3 3 4895 1 3 4896 2 3 4898 4 3 4897 3 3 4896 2 3 4899 5 3 4897 3 3 4898 4 3 4900 6 3 4899 5 3 4898 4 3 4901 7 3 4899 5 3 4900 6 3 4902 8 3 4901 7 3 4900 6 3 4903 9 3 4901 7 3 4902 8 3 4904 18 3 4903 9 3 4902 8 3 4905 19 3 4903 9 3 4904 18 3 4906 12 3 4905 19 3 4904 18 3 4907 13 3 4905 19 3 4906 12 3 4908 14 3 4907 13 3 4906 12 3 4909 15 3 4907 13 3 4908 14 3 4912 2 3 4911 1 3 4910 0 3 4913 3 3 4911 1 3 4912 2 3 4914 4 3 4913 3 3 4912 2 3 4915 5 3 4913 3 3 4914 4 3 4916 6 3 4915 5 3 4914 4 3 4917 7 3 4915 5 3 4916 6 3 4918 8 3 4917 7 3 4916 6 3 4919 9 3 4917 7 3 4918 8 3 4920 18 3 4919 9 3 4918 8 3 4921 19 3 4919 9 3 4920 18 3 4922 12 3 4921 19 3 4920 18 3 4922 13 3 4921 19 3 4922 12 3 4923 14 3 4922 13 3 4922 12 3 4924 15 3 4922 13 3 4923 14 3 4897 2 3 4926 1 3 4925 0 3 4927 3 3 4926 1 3 4897 2 3 4928 4 3 4927 3 3 4897 2 3 4929 5 3 4927 3 3 4928 4 3 4930 6 3 4929 5 3 4928 4 3 4931 7 3 4929 5 3 4930 6 3 4932 8 3 4931 7 3 4930 6 3 4933 9 3 4931 7 3 4932 8 3 4934 18 3 4933 9 3 4932 8 3 4935 19 3 4933 9 3 4934 18 3 4936 12 3 4935 19 3 4934 18 3 4937 13 3 4935 19 3 4936 12 3 4938 14 3 4937 13 3 4936 12 3 4939 15 3 4937 13 3 4938 14 3 4941 2 3 4940 1 3 4910 0 3 4942 3 3 4940 1 3 4941 2 3 4943 4 3 4942 3 3 4941 2 3 4944 5 3 4942 3 3 4943 4 3 4945 6 3 4944 5 3 4943 4 3 4946 7 3 4944 5 3 4945 6 3 4947 8 3 4946 7 3 4945 6 3 4948 9 3 4946 7 3 4947 8 3 4949 18 3 4948 9 3 4947 8 3 4950 19 3 4948 9 3 4949 18 3 4951 12 3 4950 19 3 4949 18 3 4952 13 3 4950 19 3 4951 12 3 4953 14 3 4952 13 3 4951 12 3 4954 15 3 4952 13 3 4953 14 3 4941 2 3 4956 1 3 4955 0 3 4957 3 3 4956 1 3 4941 2 3 4958 4 3 4957 3 3 4941 2 3 4959 5 3 4957 3 3 4958 4 3 4960 6 3 4959 5 3 4958 4 3 4961 7 3 4959 5 3 4960 6 3 4962 8 3 4961 7 3 4960 6 3 4963 9 3 4961 7 3 4962 8 3 4964 18 3 4963 9 3 4962 8 3 4965 19 3 4963 9 3 4964 18 3 4966 12 3 4965 19 3 4964 18 3 4967 13 3 4965 19 3 4966 12 3 4968 14 3 4967 13 3 4966 12 3 4969 15 3 4967 13 3 4968 14 3 4971 2 3 4940 1 3 4970 0 3 4972 3 3 4940 1 3 4971 2 3 4973 4 3 4972 3 3 4971 2 3 4974 5 3 4972 3 3 4973 4 3 4975 6 3 4974 5 3 4973 4 3 4976 7 3 4974 5 3 4975 6 3 4977 8 3 4976 7 3 4975 6 3 4978 9 3 4976 7 3 4977 8 3 4979 18 3 4978 9 3 4977 8 3 4980 19 3 4978 9 3 4979 18 3 4981 12 3 4980 19 3 4979 18 3 4982 13 3 4980 19 3 4981 12 3 4983 14 3 4982 13 3 4981 12 3 4984 15 3 4982 13 3 4983 14 3 4986 2 3 4985 1 3 4985 0 3 4986 3 3 4985 1 3 4986 2 3 4987 4 3 4986 3 3 4986 2 3 4988 5 3 4986 3 3 4987 4 3 4989 6 3 4988 5 3 4987 4 3 4990 7 3 4988 5 3 4989 6 3 4991 8 3 4990 7 3 4989 6 3 4992 9 3 4990 7 3 4991 8 3 4993 18 3 4992 9 3 4991 8 3 4994 19 3 4992 9 3 4993 18 3 4995 12 3 4994 19 3 4993 18 3 4996 13 3 4994 19 3 4995 12 3 4997 14 3 4996 13 3 4995 12 3 4998 15 3 4996 13 3 4997 14 3 5001 2 3 5000 1 3 4999 0 3 5002 3 3 5000 1 3 5001 2 3 5003 4 3 5002 3 3 5001 2 3 5004 5 3 5002 3 3 5003 4 3 5005 6 3 5004 5 3 5003 4 3 5006 7 3 5004 5 3 5005 6 3 5007 8 3 5006 7 3 5005 6 3 5008 9 3 5006 7 3 5007 8 3 5009 18 3 5008 9 3 5007 8 3 5010 19 3 5008 9 3 5009 18 3 5011 12 3 5010 19 3 5009 18 3 5012 13 3 5010 19 3 5011 12 3 5013 14 3 5012 13 3 5011 12 3 5014 15 3 5012 13 3 5013 14 3 5017 2 3 5016 1 3 5015 0 3 5018 3 3 5016 1 3 5017 2 3 5019 4 3 5018 3 3 5017 2 3 5020 5 3 5018 3 3 5019 4 3 5021 6 3 5020 5 3 5019 4 3 5022 7 3 5020 5 3 5021 6 3 5023 8 3 5022 7 3 5021 6 3 5024 9 3 5022 7 3 5023 8 3 5025 18 3 5024 9 3 5023 8 3 5026 19 3 5024 9 3 5025 18 3 5027 12 3 5026 19 3 5025 18 3 5028 13 3 5026 19 3 5027 12 3 5029 14 3 5028 13 3 5027 12 3 5030 15 3 5028 13 3 5029 14 3 5032 2 3 5000 1 3 5031 0 3 5033 3 3 5000 1 3 5032 2 3 5034 4 3 5033 3 3 5032 2 3 5035 5 3 5033 3 3 5034 4 3 5036 6 3 5035 5 3 5034 4 3 5037 7 3 5035 5 3 5036 6 3 5038 8 3 5037 7 3 5036 6 3 5039 9 3 5037 7 3 5038 8 3 5040 18 3 5039 9 3 5038 8 3 5041 19 3 5039 9 3 5040 18 3 5042 12 3 5041 19 3 5040 18 3 5043 13 3 5041 19 3 5042 12 3 5044 14 3 5043 13 3 5042 12 3 5045 15 3 5043 13 3 5044 14 3 5047 2 0 5046 1 0 4985 0 3 5048 3 0 5046 1 0 5047 2 0 5049 4 0 5048 3 0 5047 2 0 5050 5 0 5048 3 0 5049 4 0 5051 6 0 5050 5 0 5049 4 0 5052 7 0 5050 5 0 5051 6 0 5053 8 1 5052 7 0 5051 6 0 5054 9 1 5052 7 0 5053 8 1 5055 18 1 5054 9 1 5053 8 1 5056 19 1 5054 9 1 5055 18 1 5057 12 1 5056 19 1 5055 18 1 5058 13 1 5056 19 1 5057 12 1 5059 14 1 5058 13 1 5057 12 1 5060 15 1 5058 13 1 5059 14 1 5063 2 3 5062 1 3 5061 0 3 5063 3 3 5062 1 3 5063 2 3 5064 4 3 5063 3 3 5063 2 3 5065 5 3 5063 3 3 5064 4 3 5066 6 3 5065 5 3 5064 4 3 5067 7 3 5065 5 3 5066 6 3 5068 8 3 5067 7 3 5066 6 3 5069 9 3 5067 7 3 5068 8 3 5070 18 3 5069 9 3 5068 8 3 5071 19 3 5069 9 3 5070 18 3 5072 12 3 5071 19 3 5070 18 3 5073 13 3 5071 19 3 5072 12 3 5074 14 3 5073 13 3 5072 12 3 5075 15 3 5073 13 3 5074 14 3 5078 2 3 5077 1 3 5076 0 3 5079 3 3 5077 1 3 5078 2 3 5080 4 3 5079 3 3 5078 2 3 5081 5 3 5079 3 3 5080 4 3 5082 6 3 5081 5 3 5080 4 3 5083 7 3 5081 5 3 5082 6 3 5084 8 3 5083 7 3 5082 6 3 5085 9 3 5083 7 3 5084 8 3 5086 18 3 5085 9 3 5084 8 3 5087 19 3 5085 9 3 5086 18 3 5088 12 3 5087 19 3 5086 18 3 5089 13 3 5087 19 3 5088 12 3 5090 14 3 5089 13 3 5088 12 3 5091 15 3 5089 13 3 5090 14 3 5093 2 3 5092 1 3 5061 0 3 5094 3 3 5092 1 3 5093 2 3 5095 4 3 5094 3 3 5093 2 3 5096 5 3 5094 3 3 5095 4 3 5097 6 3 5096 5 3 5095 4 3 5098 7 3 5096 5 3 5097 6 3 5099 8 3 5098 7 3 5097 6 3 5099 9 3 5098 7 3 5099 8 3 5100 18 3 5099 9 3 5099 8 3 5100 19 3 5099 9 3 5100 18 3 5101 12 3 5100 19 3 5100 18 3 5102 13 3 5100 19 3 5101 12 3 5103 14 3 5102 13 3 5101 12 3 5104 15 3 5102 13 3 5103 14 3 5106 2 3 5076 1 3 5105 0 3 5107 3 3 5076 1 3 5106 2 3 5108 4 3 5107 3 3 5106 2 3 5109 5 3 5107 3 3 5108 4 3 5110 6 3 5109 5 3 5108 4 3 5111 7 3 5109 5 3 5110 6 3 5112 8 3 5111 7 3 5110 6 3 5113 9 3 5111 7 3 5112 8 3 5114 18 3 5113 9 3 5112 8 3 5115 19 3 5113 9 3 5114 18 3 5116 12 3 5115 19 3 5114 18 3 5117 13 3 5115 19 3 5116 12 3 5118 14 3 5117 13 3 5116 12 3 5119 15 3 5117 13 3 5118 14 3 5121 2 3 5061 1 3 5120 0 3 5122 3 3 5061 1 3 5121 2 3 5123 4 3 5122 3 3 5121 2 3 5124 5 3 5122 3 3 5123 4 3 5125 6 3 5124 5 3 5123 4 3 5126 7 3 5124 5 3 5125 6 3 5127 8 3 5126 7 3 5125 6 3 5128 9 3 5126 7 3 5127 8 3 5129 18 3 5128 9 3 5127 8 3 5130 19 3 5128 9 3 5129 18 3 5131 12 3 5130 19 3 5129 18 3 5132 13 3 5130 19 3 5131 12 3 5133 14 3 5132 13 3 5131 12 3 5134 15 3 5132 13 3 5133 14 3 5136 2 3 5135 1 3 5061 0 3 5137 3 3 5135 1 3 5136 2 3 5138 4 3 5137 3 3 5136 2 3 5139 5 3 5137 3 3 5138 4 3 5140 6 3 5139 5 3 5138 4 3 5141 7 3 5139 5 3 5140 6 3 5142 8 3 5141 7 3 5140 6 3 5143 9 3 5141 7 3 5142 8 3 5144 18 3 5143 9 3 5142 8 3 5145 19 3 5143 9 3 5144 18 3 5146 12 3 5145 19 3 5144 18 3 5147 13 3 5145 19 3 5146 12 3 5148 14 3 5147 13 3 5146 12 3 5149 15 3 5147 13 3 5148 14 3 5151 2 3 5150 1 3 5150 0 3 5151 3 3 5150 1 3 5151 2 3 5152 4 3 5151 3 3 5151 2 3 5153 5 3 5151 3 3 5152 4 3 5154 6 3 5153 5 3 5152 4 3 5155 7 3 5153 5 3 5154 6 3 5156 8 3 5155 7 3 5154 6 3 5157 9 3 5155 7 3 5156 8 3 5158 18 3 5157 9 3 5156 8 3 5159 19 3 5157 9 3 5158 18 3 5160 12 3 5159 19 3 5158 18 3 5161 13 3 5159 19 3 5160 12 3 5162 14 3 5161 13 3 5160 12 3 5163 15 3 5161 13 3 5162 14 3 5165 2 3 5150 1 3 5164 0 3 5166 3 3 5150 1 3 5165 2 3 5167 4 3 5166 3 3 5165 2 3 5168 5 3 5166 3 3 5167 4 3 5169 6 3 5168 5 3 5167 4 3 5170 7 3 5168 5 3 5169 6 3 5171 8 3 5170 7 3 5169 6 3 5172 9 3 5170 7 3 5171 8 3 5173 18 3 5172 9 3 5171 8 3 5174 19 3 5172 9 3 5173 18 3 5175 12 3 5174 19 3 5173 18 3 5176 13 3 5174 19 3 5175 12 3 5177 14 3 5176 13 3 5175 12 3 5178 15 3 5176 13 3 5177 14 3 5151 2 3 5180 1 3 5179 0 3 5181 3 3 5180 1 3 5151 2 3 5182 4 3 5181 3 3 5151 2 3 5183 5 3 5181 3 3 5182 4 3 5184 6 3 5183 5 3 5182 4 3 5185 7 3 5183 5 3 5184 6 3 5186 8 3 5185 7 3 5184 6 3 5187 9 3 5185 7 3 5186 8 3 5188 18 3 5187 9 3 5186 8 3 5188 19 3 5187 9 3 5188 18 3 5189 12 3 5188 19 3 5188 18 3 5190 13 3 5188 19 3 5189 12 3 5191 14 3 5190 13 3 5189 12 3 5192 15 3 5190 13 3 5191 14 3 5194 2 3 5150 1 3 5193 0 3 5195 3 3 5150 1 3 5194 2 3 5196 4 3 5195 3 3 5194 2 3 5197 5 3 5195 3 3 5196 4 3 5198 6 3 5197 5 3 5196 4 3 5199 7 3 5197 5 3 5198 6 3 5200 8 3 5199 7 3 5198 6 3 5201 9 3 5199 7 3 5200 8 3 5202 18 3 5201 9 3 5200 8 3 5203 19 3 5201 9 3 5202 18 3 5204 12 3 5203 19 3 5202 18 3 5205 13 3 5203 19 3 5204 12 3 5206 14 3 5205 13 3 5204 12 3 5207 15 3 5205 13 3 5206 14 3 5209 2 0 5208 1 0 5179 0 3 5210 3 0 5208 1 0 5209 2 0 5211 4 0 5210 3 0 5209 2 0 5212 5 0 5210 3 0 5211 4 0 5213 6 0 5212 5 0 5211 4 0 5214 7 0 5212 5 0 5213 6 0 5215 8 1 5214 7 0 5213 6 0 5216 9 1 5214 7 0 5215 8 1 5217 18 1 5216 9 1 5215 8 1 5218 19 1 5216 9 1 5217 18 1 5219 12 1 5218 19 1 5217 18 1 5220 13 1 5218 19 1 5219 12 1 5221 14 1 5220 13 1 5219 12 1 5222 15 1 5220 13 1 5221 14 1 5225 2 3 5224 1 3 5223 0 3 5225 3 3 5224 1 3 5225 2 3 5226 4 3 5225 3 3 5225 2 3 5227 5 3 5225 3 3 5226 4 3 5228 6 3 5227 5 3 5226 4 3 5229 7 3 5227 5 3 5228 6 3 5230 8 3 5229 7 3 5228 6 3 5231 9 3 5229 7 3 5230 8 3 5232 18 3 5231 9 3 5230 8 3 5233 19 3 5231 9 3 5232 18 3 5234 12 3 5233 19 3 5232 18 3 5235 13 3 5233 19 3 5234 12 3 5236 14 3 5235 13 3 5234 12 3 5237 15 3 5235 13 3 5236 14 3 5225 2 3 5239 1 3 5238 0 3 5240 3 3 5239 1 3 5225 2 3 5241 4 3 5240 3 3 5225 2 3 5242 5 3 5240 3 3 5241 4 3 5243 6 3 5242 5 3 5241 4 3 5244 7 3 5242 5 3 5243 6 3 5245 8 3 5244 7 3 5243 6 3 5246 9 3 5244 7 3 5245 8 3 5247 18 3 5246 9 3 5245 8 3 5248 19 3 5246 9 3 5247 18 3 5249 12 3 5248 19 3 5247 18 3 5249 13 3 5248 19 3 5249 12 3 5250 14 3 5249 13 3 5249 12 3 5251 15 3 5249 13 3 5250 14 3 5254 2 3 5253 1 3 5252 0 3 5255 3 3 5253 1 3 5254 2 3 5256 4 3 5255 3 3 5254 2 3 5257 5 3 5255 3 3 5256 4 3 5258 6 3 5257 5 3 5256 4 3 5258 7 3 5257 5 3 5258 6 3 5259 8 3 5258 7 3 5258 6 3 5260 9 3 5258 7 3 5259 8 3 5261 18 3 5260 9 3 5259 8 3 5262 19 3 5260 9 3 5261 18 3 5263 12 3 5262 19 3 5261 18 3 5264 13 3 5262 19 3 5263 12 3 5265 14 3 5264 13 3 5263 12 3 5266 15 3 5264 13 3 5265 14 3 5268 2 3 5267 1 3 5223 0 3 5269 3 3 5267 1 3 5268 2 3 5270 4 3 5269 3 3 5268 2 3 5271 5 3 5269 3 3 5270 4 3 5272 6 3 5271 5 3 5270 4 3 5273 7 3 5271 5 3 5272 6 3 5274 8 3 5273 7 3 5272 6 3 5275 9 3 5273 7 3 5274 8 3 5276 18 3 5275 9 3 5274 8 3 5277 19 3 5275 9 3 5276 18 3 5278 12 3 5277 19 3 5276 18 3 5279 13 3 5277 19 3 5278 12 3 5280 14 3 5279 13 3 5278 12 3 5281 15 3 5279 13 3 5280 14 3 5284 2 3 5283 1 3 5282 0 3 5285 3 3 5283 1 3 5284 2 3 5286 4 3 5285 3 3 5284 2 3 5287 5 3 5285 3 3 5286 4 3 5288 6 3 5287 5 3 5286 4 3 5289 7 3 5287 5 3 5288 6 3 5290 8 3 5289 7 3 5288 6 3 5291 9 3 5289 7 3 5290 8 3 5292 18 3 5291 9 3 5290 8 3 5293 19 3 5291 9 3 5292 18 3 5294 12 3 5293 19 3 5292 18 3 5295 13 3 5293 19 3 5294 12 3 5296 14 3 5295 13 3 5294 12 3 5297 15 3 5295 13 3 5296 14 3 5268 2 3 5299 1 3 5298 0 3 5300 3 3 5299 1 3 5268 2 3 5301 4 3 5300 3 3 5268 2 3 5302 5 3 5300 3 3 5301 4 3 5303 6 3 5302 5 3 5301 4 3 5304 7 3 5302 5 3 5303 6 3 5305 8 3 5304 7 3 5303 6 3 5306 9 3 5304 7 3 5305 8 3 5307 18 3 5306 9 3 5305 8 3 5308 19 3 5306 9 3 5307 18 3 5309 12 3 5308 19 3 5307 18 3 5310 13 3 5308 19 3 5309 12 3 5311 14 3 5310 13 3 5309 12 3 5312 15 3 5310 13 3 5311 14 3 5315 2 3 5314 1 3 5313 0 3 5316 3 3 5314 1 3 5315 2 3 5317 4 3 5316 3 3 5315 2 3 5318 5 3 5316 3 3 5317 4 3 5319 6 3 5318 5 3 5317 4 3 5320 7 3 5318 5 3 5319 6 3 5321 8 3 5320 7 3 5319 6 3 5322 9 3 5320 7 3 5321 8 3 5323 18 3 5322 9 3 5321 8 3 5324 19 3 5322 9 3 5323 18 3 5325 12 3 5324 19 3 5323 18 3 5326 13 3 5324 19 3 5325 12 3 5327 14 3 5326 13 3 5325 12 3 5328 15 3 5326 13 3 5327 14 3 5331 2 3 5330 1 3 5329 0 3 5332 3 3 5330 1 3 5331 2 3 5333 4 3 5332 3 3 5331 2 3 5334 5 3 5332 3 3 5333 4 3 5335 6 3 5334 5 3 5333 4 3 5336 7 3 5334 5 3 5335 6 3 5337 8 3 5336 7 3 5335 6 3 5338 9 3 5336 7 3 5337 8 3 5339 18 3 5338 9 3 5337 8 3 5340 19 3 5338 9 3 5339 18 3 5341 12 3 5340 19 3 5339 18 3 5342 13 3 5340 19 3 5341 12 3 5343 14 3 5342 13 3 5341 12 3 5344 15 3 5342 13 3 5343 14 3 5315 2 3 5314 1 3 5345 0 3 5346 3 3 5314 1 3 5315 2 3 5347 4 3 5346 3 3 5315 2 3 5348 5 3 5346 3 3 5347 4 3 5349 6 3 5348 5 3 5347 4 3 5350 7 3 5348 5 3 5349 6 3 5351 8 3 5350 7 3 5349 6 3 5352 9 3 5350 7 3 5351 8 3 5353 18 3 5352 9 3 5351 8 3 5354 19 3 5352 9 3 5353 18 3 5355 12 3 5354 19 3 5353 18 3 5356 13 3 5354 19 3 5355 12 3 5357 14 3 5356 13 3 5355 12 3 5358 15 3 5356 13 3 5357 14 3 5360 2 3 5330 1 3 5359 0 3 5361 3 3 5330 1 3 5360 2 3 5362 4 3 5361 3 3 5360 2 3 5363 5 3 5361 3 3 5362 4 3 5364 6 3 5363 5 3 5362 4 3 5365 7 3 5363 5 3 5364 6 3 5366 8 3 5365 7 3 5364 6 3 5367 9 3 5365 7 3 5366 8 3 5368 18 3 5367 9 3 5366 8 3 5369 19 3 5367 9 3 5368 18 3 5370 12 3 5369 19 3 5368 18 3 5371 13 3 5369 19 3 5370 12 3 5372 14 3 5371 13 3 5370 12 3 5373 15 3 5371 13 3 5372 14 3 5375 2 0 5374 1 0 5329 0 3 5376 3 0 5374 1 0 5375 2 0 5377 4 0 5376 3 0 5375 2 0 5378 5 0 5376 3 0 5377 4 0 5379 6 0 5378 5 0 5377 4 0 5380 7 0 5378 5 0 5379 6 0 5381 8 1 5380 7 0 5379 6 0 5382 9 1 5380 7 0 5381 8 1 5383 18 1 5382 9 1 5381 8 1 5384 19 1 5382 9 1 5383 18 1 5385 12 1 5384 19 1 5383 18 1 5386 13 1 5384 19 1 5385 12 1 5387 14 1 5386 13 1 5385 12 1 5388 15 1 5386 13 1 5387 14 1 5391 2 3 5390 1 3 5389 0 3 5391 3 3 5390 1 3 5391 2 3 5392 4 3 5391 3 3 5391 2 3 5393 5 3 5391 3 3 5392 4 3 5394 6 3 5393 5 3 5392 4 3 5395 7 3 5393 5 3 5394 6 3 5396 8 3 5395 7 3 5394 6 3 5397 9 3 5395 7 3 5396 8 3 5398 18 3 5397 9 3 5396 8 3 5399 19 3 5397 9 3 5398 18 3 5400 12 3 5399 19 3 5398 18 3 5401 13 3 5399 19 3 5400 12 3 5402 14 3 5401 13 3 5400 12 3 5402 15 3 5401 13 3 5402 14 3 5391 2 3 5389 1 3 5390 0 3 5403 3 3 5389 1 3 5391 2 3 5404 4 3 5403 3 3 5391 2 3 5405 5 3 5403 3 3 5404 4 3 5406 6 3 5405 5 3 5404 4 3 5407 7 3 5405 5 3 5406 6 3 5408 8 3 5407 7 3 5406 6 3 5409 9 3 5407 7 3 5408 8 3 5410 18 3 5409 9 3 5408 8 3 5411 19 3 5409 9 3 5410 18 3 5412 12 3 5411 19 3 5410 18 3 5413 13 3 5411 19 3 5412 12 3 5414 14 3 5413 13 3 5412 12 3 5415 15 3 5413 13 3 5414 14 3 5391 2 3 5417 1 3 5416 0 3 5418 3 3 5417 1 3 5391 2 3 5419 4 3 5418 3 3 5391 2 3 5420 5 3 5418 3 3 5419 4 3 5421 6 3 5420 5 3 5419 4 3 5422 7 3 5420 5 3 5421 6 3 5423 8 3 5422 7 3 5421 6 3 5424 9 3 5422 7 3 5423 8 3 5425 18 3 5424 9 3 5423 8 3 5426 19 3 5424 9 3 5425 18 3 5427 12 3 5426 19 3 5425 18 3 5428 13 3 5426 19 3 5427 12 3 5429 14 3 5428 13 3 5427 12 3 5430 15 3 5428 13 3 5429 14 3 5432 2 3 5431 1 3 5390 0 3 5433 3 3 5431 1 3 5432 2 3 5434 4 3 5433 3 3 5432 2 3 5435 5 3 5433 3 3 5434 4 3 5436 6 3 5435 5 3 5434 4 3 5437 7 3 5435 5 3 5436 6 3 5438 8 3 5437 7 3 5436 6 3 5439 9 3 5437 7 3 5438 8 3 5440 18 3 5439 9 3 5438 8 3 5441 19 3 5439 9 3 5440 18 3 5442 12 3 5441 19 3 5440 18 3 5443 13 3 5441 19 3 5442 12 3 5444 14 3 5443 13 3 5442 12 3 5445 15 3 5443 13 3 5444 14 3 5446 2 3 5389 1 3 5431 0 3 5447 3 3 5389 1 3 5446 2 3 5448 4 3 5447 3 3 5446 2 3 5449 5 3 5447 3 3 5448 4 3 5450 6 3 5449 5 3 5448 4 3 5451 7 3 5449 5 3 5450 6 3 5452 8 3 5451 7 3 5450 6 3 5453 9 3 5451 7 3 5452 8 3 5454 18 3 5453 9 3 5452 8 3 5455 19 3 5453 9 3 5454 18 3 5456 12 3 5455 19 3 5454 18 3 5457 13 3 5455 19 3 5456 12 3 5458 14 3 5457 13 3 5456 12 3 5459 15 3 5457 13 3 5458 14 3 5460 2 3 5417 1 3 5390 0 3 5461 3 3 5417 1 3 5460 2 3 5462 4 3 5461 3 3 5460 2 3 5463 5 3 5461 3 3 5462 4 3 5464 6 3 5463 5 3 5462 4 3 5465 7 3 5463 5 3 5464 6 3 5466 8 3 5465 7 3 5464 6 3 5467 9 3 5465 7 3 5466 8 3 5468 18 3 5467 9 3 5466 8 3 5469 19 3 5467 9 3 5468 18 3 5470 12 3 5469 19 3 5468 18 3 5471 13 3 5469 19 3 5470 12 3 5472 14 3 5471 13 3 5470 12 3 5473 15 3 5471 13 3 5472 14 3 5476 2 3 5475 1 3 5474 0 3 5477 3 3 5475 1 3 5476 2 3 5478 4 3 5477 3 3 5476 2 3 5479 5 3 5477 3 3 5478 4 3 5480 6 3 5479 5 3 5478 4 3 5481 7 3 5479 5 3 5480 6 3 5482 8 3 5481 7 3 5480 6 3 5483 9 3 5481 7 3 5482 8 3 5484 18 3 5483 9 3 5482 8 3 5485 19 3 5483 9 3 5484 18 3 5486 12 3 5485 19 3 5484 18 3 5487 13 3 5485 19 3 5486 12 3 5488 14 3 5487 13 3 5486 12 3 5489 15 3 5487 13 3 5488 14 3 5476 2 3 5474 1 3 5475 0 3 5490 3 3 5474 1 3 5476 2 3 5491 4 3 5490 3 3 5476 2 3 5492 5 3 5490 3 3 5491 4 3 5493 6 3 5492 5 3 5491 4 3 5494 7 3 5492 5 3 5493 6 3 5495 8 3 5494 7 3 5493 6 3 5496 9 3 5494 7 3 5495 8 3 5497 18 3 5496 9 3 5495 8 3 5498 19 3 5496 9 3 5497 18 3 5499 12 3 5498 19 3 5497 18 3 5499 13 3 5498 19 3 5499 12 3 5500 14 3 5499 13 3 5499 12 3 5501 15 3 5499 13 3 5500 14 3 5502 2 3 5475 1 3 5474 0 3 5503 3 3 5475 1 3 5502 2 3 5504 4 3 5503 3 3 5502 2 3 5505 5 3 5503 3 3 5504 4 3 5506 6 3 5505 5 3 5504 4 3 5507 7 3 5505 5 3 5506 6 3 5508 8 3 5507 7 3 5506 6 3 5508 9 3 5507 7 3 5508 8 3 5509 18 3 5508 9 3 5508 8 3 5510 19 3 5508 9 3 5509 18 3 5511 12 3 5510 19 3 5509 18 3 5512 13 3 5510 19 3 5511 12 3 5513 14 3 5512 13 3 5511 12 3 5514 15 3 5512 13 3 5513 14 3 5516 2 3 5474 1 3 5515 0 3 5517 3 3 5474 1 3 5516 2 3 5518 4 3 5517 3 3 5516 2 3 5519 5 3 5517 3 3 5518 4 3 5520 6 3 5519 5 3 5518 4 3 5521 7 3 5519 5 3 5520 6 3 5522 8 3 5521 7 3 5520 6 3 5523 9 3 5521 7 3 5522 8 3 5524 18 3 5523 9 3 5522 8 3 5525 19 3 5523 9 3 5524 18 3 5526 12 3 5525 19 3 5524 18 3 5527 13 3 5525 19 3 5526 12 3 5528 14 3 5527 13 3 5526 12 3 5529 15 3 5527 13 3 5528 14 3 5532 2 0 5531 1 0 5530 0 3 5533 3 0 5531 1 0 5532 2 0 5534 4 0 5533 3 0 5532 2 0 5535 5 0 5533 3 0 5534 4 0 5536 6 0 5535 5 0 5534 4 0 5537 7 0 5535 5 0 5536 6 0 5538 8 1 5537 7 0 5536 6 0 5539 9 1 5537 7 0 5538 8 1 5540 18 1 5539 9 1 5538 8 1 5541 19 1 5539 9 1 5540 18 1 5542 12 1 5541 19 1 5540 18 1 5543 13 1 5541 19 1 5542 12 1 5544 14 1 5543 13 1 5542 12 1 5545 15 1 5543 13 1 5544 14 1 5548 2 3 5547 1 3 5546 0 3 5549 3 3 5547 1 3 5548 2 3 5550 4 3 5549 3 3 5548 2 3 5551 5 3 5549 3 3 5550 4 3 5552 6 3 5551 5 3 5550 4 3 5553 7 3 5551 5 3 5552 6 3 5554 8 3 5553 7 3 5552 6 3 5555 9 3 5553 7 3 5554 8 3 5556 18 3 5555 9 3 5554 8 3 5557 19 3 5555 9 3 5556 18 3 5558 12 3 5557 19 3 5556 18 3 5559 13 3 5557 19 3 5558 12 3 5560 14 3 5559 13 3 5558 12 3 5561 15 3 5559 13 3 5560 14 3 5564 2 3 5563 1 3 5562 0 3 5565 3 3 5563 1 3 5564 2 3 5566 4 3 5565 3 3 5564 2 3 5567 5 3 5565 3 3 5566 4 3 5568 6 3 5567 5 3 5566 4 3 5569 7 3 5567 5 3 5568 6 3 5570 8 3 5569 7 3 5568 6 3 5571 9 3 5569 7 3 5570 8 3 5572 18 3 5571 9 3 5570 8 3 5573 19 3 5571 9 3 5572 18 3 5574 12 3 5573 19 3 5572 18 3 5574 13 3 5573 19 3 5574 12 3 5575 14 3 5574 13 3 5574 12 3 5576 15 3 5574 13 3 5575 14 3 5549 2 3 5578 1 3 5577 0 3 5579 3 3 5578 1 3 5549 2 3 5580 4 3 5579 3 3 5549 2 3 5581 5 3 5579 3 3 5580 4 3 5582 6 3 5581 5 3 5580 4 3 5583 7 3 5581 5 3 5582 6 3 5584 8 3 5583 7 3 5582 6 3 5585 9 3 5583 7 3 5584 8 3 5586 18 3 5585 9 3 5584 8 3 5587 19 3 5585 9 3 5586 18 3 5588 12 3 5587 19 3 5586 18 3 5589 13 3 5587 19 3 5588 12 3 5590 14 3 5589 13 3 5588 12 3 5591 15 3 5589 13 3 5590 14 3 5593 2 3 5592 1 3 5546 0 3 5594 3 3 5592 1 3 5593 2 3 5595 4 3 5594 3 3 5593 2 3 5596 5 3 5594 3 3 5595 4 3 5597 6 3 5596 5 3 5595 4 3 5598 7 3 5596 5 3 5597 6 3 5599 8 3 5598 7 3 5597 6 3 5600 9 3 5598 7 3 5599 8 3 5601 18 3 5600 9 3 5599 8 3 5602 19 3 5600 9 3 5601 18 3 5603 12 3 5602 19 3 5601 18 3 5604 13 3 5602 19 3 5603 12 3 5605 14 3 5604 13 3 5603 12 3 5606 15 3 5604 13 3 5605 14 3 5609 2 3 5608 1 3 5607 0 3 5610 3 3 5608 1 3 5609 2 3 5611 4 3 5610 3 3 5609 2 3 5612 5 3 5610 3 3 5611 4 3 5613 6 3 5612 5 3 5611 4 3 5614 7 3 5612 5 3 5613 6 3 5615 8 3 5614 7 3 5613 6 3 5616 9 3 5614 7 3 5615 8 3 5617 18 3 5616 9 3 5615 8 3 5618 19 3 5616 9 3 5617 18 3 5619 12 3 5618 19 3 5617 18 3 5620 13 3 5618 19 3 5619 12 3 5621 14 3 5620 13 3 5619 12 3 5622 15 3 5620 13 3 5621 14 3 5593 2 3 5623 1 3 5546 0 3 5624 3 3 5623 1 3 5593 2 3 5625 4 3 5624 3 3 5593 2 3 5626 5 3 5624 3 3 5625 4 3 5627 6 3 5626 5 3 5625 4 3 5628 7 3 5626 5 3 5627 6 3 5629 8 3 5628 7 3 5627 6 3 5630 9 3 5628 7 3 5629 8 3 5631 18 3 5630 9 3 5629 8 3 5632 19 3 5630 9 3 5631 18 3 5633 12 3 5632 19 3 5631 18 3 5634 13 3 5632 19 3 5633 12 3 5635 14 3 5634 13 3 5633 12 3 5636 15 3 5634 13 3 5635 14 3 5638 2 3 5637 1 3 5637 0 3 5639 3 3 5637 1 3 5638 2 3 5640 4 3 5639 3 3 5638 2 3 5641 5 3 5639 3 3 5640 4 3 5642 6 3 5641 5 3 5640 4 3 5643 7 3 5641 5 3 5642 6 3 5644 8 3 5643 7 3 5642 6 3 5645 9 3 5643 7 3 5644 8 3 5646 18 3 5645 9 3 5644 8 3 5647 19 3 5645 9 3 5646 18 3 5648 12 3 5647 19 3 5646 18 3 5649 13 3 5647 19 3 5648 12 3 5650 14 3 5649 13 3 5648 12 3 5651 15 3 5649 13 3 5650 14 3 5638 2 3 5653 1 3 5652 0 3 5654 3 3 5653 1 3 5638 2 3 5655 4 3 5654 3 3 5638 2 3 5656 5 3 5654 3 3 5655 4 3 5657 6 3 5656 5 3 5655 4 3 5658 7 3 5656 5 3 5657 6 3 5659 8 3 5658 7 3 5657 6 3 5660 9 3 5658 7 3 5659 8 3 5661 18 3 5660 9 3 5659 8 3 5662 19 3 5660 9 3 5661 18 3 5663 12 3 5662 19 3 5661 18 3 5664 13 3 5662 19 3 5663 12 3 5665 14 3 5664 13 3 5663 12 3 5665 15 3 5664 13 3 5665 14 3 5638 2 3 5667 1 3 5666 0 3 5668 3 3 5667 1 3 5638 2 3 5669 4 3 5668 3 3 5638 2 3 5670 5 3 5668 3 3 5669 4 3 5671 6 3 5670 5 3 5669 4 3 5672 7 3 5670 5 3 5671 6 3 5673 8 3 5672 7 3 5671 6 3 5674 9 3 5672 7 3 5673 8 3 5675 18 3 5674 9 3 5673 8 3 5676 19 3 5674 9 3 5675 18 3 5677 12 3 5676 19 3 5675 18 3 5678 13 3 5676 19 3 5677 12 3 5679 14 3 5678 13 3 5677 12 3 5680 15 3 5678 13 3 5679 14 3 5683 2 3 5682 1 3 5681 0 3 5684 3 3 5682 1 3 5683 2 3 5685 4 3 5684 3 3 5683 2 3 5686 5 3 5684 3 3 5685 4 3 5687 6 3 5686 5 3 5685 4 3 5688 7 3 5686 5 3 5687 6 3 5689 8 3 5688 7 3 5687 6 3 5690 9 3 5688 7 3 5689 8 3 5691 18 3 5690 9 3 5689 8 3 5692 19 3 5690 9 3 5691 18 3 5693 12 3 5692 19 3 5691 18 3 5694 13 3 5692 19 3 5693 12 3 5695 14 3 5694 13 3 5693 12 3 5696 15 3 5694 13 3 5695 14 3 5698 2 0 5697 1 0 5637 0 3 5699 3 0 5697 1 0 5698 2 0 5700 4 0 5699 3 0 5698 2 0 5701 5 0 5699 3 0 5700 4 0 5702 6 0 5701 5 0 5700 4 0 5703 7 0 5701 5 0 5702 6 0 5704 8 1 5703 7 0 5702 6 0 5705 9 1 5703 7 0 5704 8 1 5706 18 1 5705 9 1 5704 8 1 5707 19 1 5705 9 1 5706 18 1 5708 12 1 5707 19 1 5706 18 1 5709 13 1 5707 19 1 5708 12 1 5710 14 1 5709 13 1 5708 12 1 5711 15 1 5709 13 1 5710 14 1 5714 2 3 5713 1 3 5712 0 3 5715 3 3 5713 1 3 5714 2 3 5716 4 3 5715 3 3 5714 2 3 5717 5 3 5715 3 3 5716 4 3 5718 6 3 5717 5 3 5716 4 3 5719 7 3 5717 5 3 5718 6 3 5720 8 3 5719 7 3 5718 6 3 5721 9 3 5719 7 3 5720 8 3 5722 18 3 5721 9 3 5720 8 3 5723 19 3 5721 9 3 5722 18 3 5724 12 3 5723 19 3 5722 18 3 5725 13 3 5723 19 3 5724 12 3 5726 14 3 5725 13 3 5724 12 3 5727 15 3 5725 13 3 5726 14 3 5714 2 3 5729 1 3 5728 0 3 5730 3 3 5729 1 3 5714 2 3 5731 4 3 5730 3 3 5714 2 3 5732 5 3 5730 3 3 5731 4 3 5733 6 3 5732 5 3 5731 4 3 5734 7 3 5732 5 3 5733 6 3 5735 8 3 5734 7 3 5733 6 3 5736 9 3 5734 7 3 5735 8 3 5737 18 3 5736 9 3 5735 8 3 5737 19 3 5736 9 3 5737 18 3 5738 12 3 5737 19 3 5737 18 3 5738 13 3 5737 19 3 5738 12 3 5739 14 3 5738 13 3 5738 12 3 5740 15 3 5738 13 3 5739 14 3 5715 2 3 5742 1 3 5741 0 3 5743 3 3 5742 1 3 5715 2 3 5744 4 3 5743 3 3 5715 2 3 5745 5 3 5743 3 3 5744 4 3 5746 6 3 5745 5 3 5744 4 3 5747 7 3 5745 5 3 5746 6 3 5748 8 3 5747 7 3 5746 6 3 5749 9 3 5747 7 3 5748 8 3 5750 18 3 5749 9 3 5748 8 3 5750 19 3 5749 9 3 5750 18 3 5751 12 3 5750 19 3 5750 18 3 5752 13 3 5750 19 3 5751 12 3 5753 14 3 5752 13 3 5751 12 3 5754 15 3 5752 13 3 5753 14 3 5756 2 3 5755 1 3 5712 0 3 5757 3 3 5755 1 3 5756 2 3 5758 4 3 5757 3 3 5756 2 3 5759 5 3 5757 3 3 5758 4 3 5760 6 3 5759 5 3 5758 4 3 5761 7 3 5759 5 3 5760 6 3 5762 8 3 5761 7 3 5760 6 3 5763 9 3 5761 7 3 5762 8 3 5764 18 3 5763 9 3 5762 8 3 5765 19 3 5763 9 3 5764 18 3 5766 12 3 5765 19 3 5764 18 3 5767 13 3 5765 19 3 5766 12 3 5768 14 3 5767 13 3 5766 12 3 5769 15 3 5767 13 3 5768 14 3 5771 2 3 5713 1 3 5770 0 3 5772 3 3 5713 1 3 5771 2 3 5773 4 3 5772 3 3 5771 2 3 5774 5 3 5772 3 3 5773 4 3 5775 6 3 5774 5 3 5773 4 3 5776 7 3 5774 5 3 5775 6 3 5777 8 3 5776 7 3 5775 6 3 5778 9 3 5776 7 3 5777 8 3 5779 18 3 5778 9 3 5777 8 3 5780 19 3 5778 9 3 5779 18 3 5781 12 3 5780 19 3 5779 18 3 5782 13 3 5780 19 3 5781 12 3 5783 14 3 5782 13 3 5781 12 3 5784 15 3 5782 13 3 5783 14 3 5756 2 3 5770 1 3 5712 0 3 5785 3 3 5770 1 3 5756 2 3 5786 4 3 5785 3 3 5756 2 3 5787 5 3 5785 3 3 5786 4 3 5788 6 3 5787 5 3 5786 4 3 5789 7 3 5787 5 3 5788 6 3 5790 8 3 5789 7 3 5788 6 3 5791 9 3 5789 7 3 5790 8 3 5792 18 3 5791 9 3 5790 8 3 5793 19 3 5791 9 3 5792 18 3 5794 12 3 5793 19 3 5792 18 3 5795 13 3 5793 19 3 5794 12 3 5796 14 3 5795 13 3 5794 12 3 5797 15 3 5795 13 3 5796 14 3 5800 2 3 5799 1 3 5798 0 3 5801 3 3 5799 1 3 5800 2 3 5802 4 3 5801 3 3 5800 2 3 5803 5 3 5801 3 3 5802 4 3 5804 6 3 5803 5 3 5802 4 3 5805 7 3 5803 5 3 5804 6 3 5806 8 3 5805 7 3 5804 6 3 5807 9 3 5805 7 3 5806 8 3 5808 18 3 5807 9 3 5806 8 3 5809 19 3 5807 9 3 5808 18 3 5810 12 3 5809 19 3 5808 18 3 5811 13 3 5809 19 3 5810 12 3 5812 14 3 5811 13 3 5810 12 3 5813 15 3 5811 13 3 5812 14 3 5815 2 3 5814 1 3 5799 0 3 5816 3 3 5814 1 3 5815 2 3 5817 4 3 5816 3 3 5815 2 3 5818 5 3 5816 3 3 5817 4 3 5819 6 3 5818 5 3 5817 4 3 5820 7 3 5818 5 3 5819 6 3 5821 8 3 5820 7 3 5819 6 3 5822 9 3 5820 7 3 5821 8 3 5823 18 3 5822 9 3 5821 8 3 5824 19 3 5822 9 3 5823 18 3 5825 12 3 5824 19 3 5823 18 3 5826 13 3 5824 19 3 5825 12 3 5827 14 3 5826 13 3 5825 12 3 5828 15 3 5826 13 3 5827 14 3 5800 2 3 5829 1 3 5798 0 3 5830 3 3 5829 1 3 5800 2 3 5831 4 3 5830 3 3 5800 2 3 5832 5 3 5830 3 3 5831 4 3 5833 6 3 5832 5 3 5831 4 3 5834 7 3 5832 5 3 5833 6 3 5835 8 3 5834 7 3 5833 6 3 5836 9 3 5834 7 3 5835 8 3 5837 18 3 5836 9 3 5835 8 3 5838 19 3 5836 9 3 5837 18 3 5839 12 3 5838 19 3 5837 18 3 5840 13 3 5838 19 3 5839 12 3 5841 14 3 5840 13 3 5839 12 3 5841 15 3 5840 13 3 5841 14 3 5843 2 3 5798 1 3 5842 0 3 5844 3 3 5798 1 3 5843 2 3 5845 4 3 5844 3 3 5843 2 3 5846 5 3 5844 3 3 5845 4 3 5847 6 3 5846 5 3 5845 4 3 5848 7 3 5846 5 3 5847 6 3 5849 8 3 5848 7 3 5847 6 3 5850 9 3 5848 7 3 5849 8 3 5851 18 3 5850 9 3 5849 8 3 5852 19 3 5850 9 3 5851 18 3 5853 12 3 5852 19 3 5851 18 3 5854 13 3 5852 19 3 5853 12 3 5855 14 3 5854 13 3 5853 12 3 5856 15 3 5854 13 3 5855 14 3 5858 2 0 5857 1 0 5799 0 3 5859 3 0 5857 1 0 5858 2 0 5860 4 0 5859 3 0 5858 2 0 5861 5 0 5859 3 0 5860 4 0 5862 6 0 5861 5 0 5860 4 0 5863 7 0 5861 5 0 5862 6 0 5864 8 1 5863 7 0 5862 6 0 5865 9 1 5863 7 0 5864 8 1 5866 18 1 5865 9 1 5864 8 1 5867 19 1 5865 9 1 5866 18 1 5868 12 1 5867 19 1 5866 18 1 5869 13 1 5867 19 1 5868 12 1 5870 14 1 5869 13 1 5868 12 1 5871 15 1 5869 13 1 5870 14 1 5874 2 3 5873 1 3 5872 0 3 5875 3 3 5873 1 3 5874 2 3 5876 4 3 5875 3 3 5874 2 3 5877 5 3 5875 3 3 5876 4 3 5878 6 3 5877 5 3 5876 4 3 5879 7 3 5877 5 3 5878 6 3 5880 8 3 5879 7 3 5878 6 3 5881 9 3 5879 7 3 5880 8 3 5882 18 3 5881 9 3 5880 8 3 5883 19 3 5881 9 3 5882 18 3 5884 12 3 5883 19 3 5882 18 3 5885 13 3 5883 19 3 5884 12 3 5886 14 3 5885 13 3 5884 12 3 5887 15 3 5885 13 3 5886 14 3 5874 2 3 5889 1 3 5888 0 3 5890 3 3 5889 1 3 5874 2 3 5891 4 3 5890 3 3 5874 2 3 5892 5 3 5890 3 3 5891 4 3 5893 6 3 5892 5 3 5891 4 3 5894 7 3 5892 5 3 5893 6 3 5895 8 3 5894 7 3 5893 6 3 5896 9 3 5894 7 3 5895 8 3 5897 18 3 5896 9 3 5895 8 3 5898 19 3 5896 9 3 5897 18 3 5899 12 3 5898 19 3 5897 18 3 5900 13 3 5898 19 3 5899 12 3 5901 14 3 5900 13 3 5899 12 3 5902 15 3 5900 13 3 5901 14 3 5905 2 3 5904 1 3 5903 0 3 5906 3 3 5904 1 3 5905 2 3 5907 4 3 5906 3 3 5905 2 3 5907 5 3 5906 3 3 5907 4 3 5908 6 3 5907 5 3 5907 4 3 5908 7 3 5907 5 3 5908 6 3 5909 8 3 5908 7 3 5908 6 3 5910 9 3 5908 7 3 5909 8 3 5911 18 3 5910 9 3 5909 8 3 5912 19 3 5910 9 3 5911 18 3 5913 12 3 5912 19 3 5911 18 3 5914 13 3 5912 19 3 5913 12 3 5915 14 3 5914 13 3 5913 12 3 5916 15 3 5914 13 3 5915 14 3 5918 2 3 5917 1 3 5872 0 3 5919 3 3 5917 1 3 5918 2 3 5920 4 3 5919 3 3 5918 2 3 5921 5 3 5919 3 3 5920 4 3 5922 6 3 5921 5 3 5920 4 3 5923 7 3 5921 5 3 5922 6 3 5924 8 3 5923 7 3 5922 6 3 5925 9 3 5923 7 3 5924 8 3 5926 18 3 5925 9 3 5924 8 3 5927 19 3 5925 9 3 5926 18 3 5928 12 3 5927 19 3 5926 18 3 5929 13 3 5927 19 3 5928 12 3 5930 14 3 5929 13 3 5928 12 3 5931 15 3 5929 13 3 5930 14 3 5933 2 3 5873 1 3 5932 0 3 5934 3 3 5873 1 3 5933 2 3 5935 4 3 5934 3 3 5933 2 3 5936 5 3 5934 3 3 5935 4 3 5937 6 3 5936 5 3 5935 4 3 5938 7 3 5936 5 3 5937 6 3 5939 8 3 5938 7 3 5937 6 3 5940 9 3 5938 7 3 5939 8 3 5941 18 3 5940 9 3 5939 8 3 5942 19 3 5940 9 3 5941 18 3 5943 12 3 5942 19 3 5941 18 3 5944 13 3 5942 19 3 5943 12 3 5945 14 3 5944 13 3 5943 12 3 5946 15 3 5944 13 3 5945 14 3 5948 2 3 5947 1 3 5872 0 3 5949 3 3 5947 1 3 5948 2 3 5950 4 3 5949 3 3 5948 2 3 5951 5 3 5949 3 3 5950 4 3 5952 6 3 5951 5 3 5950 4 3 5953 7 3 5951 5 3 5952 6 3 5954 8 3 5953 7 3 5952 6 3 5955 9 3 5953 7 3 5954 8 3 5956 18 3 5955 9 3 5954 8 3 5957 19 3 5955 9 3 5956 18 3 5958 12 3 5957 19 3 5956 18 3 5959 13 3 5957 19 3 5958 12 3 5960 14 3 5959 13 3 5958 12 3 5961 15 3 5959 13 3 5960 14 3 5964 2 3 5963 1 3 5962 0 3 5965 3 3 5963 1 3 5964 2 3 5966 4 3 5965 3 3 5964 2 3 5967 5 3 5965 3 3 5966 4 3 5968 6 3 5967 5 3 5966 4 3 5969 7 3 5967 5 3 5968 6 3 5970 8 3 5969 7 3 5968 6 3 5971 9 3 5969 7 3 5970 8 3 5972 18 3 5971 9 3 5970 8 3 5973 19 3 5971 9 3 5972 18 3 5974 12 3 5973 19 3 5972 18 3 5975 13 3 5973 19 3 5974 12 3 5976 14 3 5975 13 3 5974 12 3 5977 15 3 5975 13 3 5976 14 3 5964 2 3 5979 1 3 5978 0 3 5980 3 3 5979 1 3 5964 2 3 5981 4 3 5980 3 3 5964 2 3 5982 5 3 5980 3 3 5981 4 3 5983 6 3 5982 5 3 5981 4 3 5984 7 3 5982 5 3 5983 6 3 5985 8 3 5984 7 3 5983 6 3 5986 9 3 5984 7 3 5985 8 3 5987 18 3 5986 9 3 5985 8 3 5988 19 3 5986 9 3 5987 18 3 5989 12 3 5988 19 3 5987 18 3 5990 13 3 5988 19 3 5989 12 3 5991 14 3 5990 13 3 5989 12 3 5992 15 3 5990 13 3 5991 14 3 5993 2 3 5963 1 3 5962 0 3 5994 3 3 5963 1 3 5993 2 3 5995 4 3 5994 3 3 5993 2 3 5996 5 3 5994 3 3 5995 4 3 5997 6 3 5996 5 3 5995 4 3 5998 7 3 5996 5 3 5997 6 3 5999 8 3 5998 7 3 5997 6 3 6000 9 3 5998 7 3 5999 8 3 6001 18 3 6000 9 3 5999 8 3 6002 19 3 6000 9 3 6001 18 3 6003 12 3 6002 19 3 6001 18 3 6004 13 3 6002 19 3 6003 12 3 6005 14 3 6004 13 3 6003 12 3 6006 15 3 6004 13 3 6005 14 3 6008 2 3 5979 1 3 6007 0 3 6009 3 3 5979 1 3 6008 2 3 6010 4 3 6009 3 3 6008 2 3 6011 5 3 6009 3 3 6010 4 3 6012 6 3 6011 5 3 6010 4 3 6013 7 3 6011 5 3 6012 6 3 6014 8 3 6013 7 3 6012 6 3 6015 9 3 6013 7 3 6014 8 3 6016 18 3 6015 9 3 6014 8 3 6017 19 3 6015 9 3 6016 18 3 6018 12 3 6017 19 3 6016 18 3 6019 13 3 6017 19 3 6018 12 3 6020 14 3 6019 13 3 6018 12 3 6021 15 3 6019 13 3 6020 14 3 6023 2 0 6022 1 0 5962 0 3 6024 3 0 6022 1 0 6023 2 0 6025 4 0 6024 3 0 6023 2 0 6026 5 0 6024 3 0 6025 4 0 6027 6 0 6026 5 0 6025 4 0 6028 7 0 6026 5 0 6027 6 0 6029 8 1 6028 7 0 6027 6 0 6030 9 1 6028 7 0 6029 8 1 6031 18 1 6030 9 1 6029 8 1 6032 19 1 6030 9 1 6031 18 1 6033 12 1 6032 19 1 6031 18 1 6034 13 1 6032 19 1 6033 12 1 6035 14 1 6034 13 1 6033 12 1 6036 15 1 6034 13 1 6035 14 1 6039 2 3 6038 1 3 6037 0 3 6039 3 3 6038 1 3 6039 2 3 6040 4 3 6039 3 3 6039 2 3 6041 5 3 6039 3 3 6040 4 3 6042 6 3 6041 5 3 6040 4 3 6043 7 3 6041 5 3 6042 6 3 6044 8 3 6043 7 3 6042 6 3 6045 9 3 6043 7 3 6044 8 3 6046 18 3 6045 9 3 6044 8 3 6047 19 3 6045 9 3 6046 18 3 6048 12 3 6047 19 3 6046 18 3 6049 13 3 6047 19 3 6048 12 3 6050 14 3 6049 13 3 6048 12 3 6050 15 3 6049 13 3 6050 14 3 6053 2 3 6052 1 3 6051 0 3 6054 3 3 6052 1 3 6053 2 3 6055 4 3 6054 3 3 6053 2 3 6056 5 3 6054 3 3 6055 4 3 6057 6 3 6056 5 3 6055 4 3 6058 7 3 6056 5 3 6057 6 3 6059 8 3 6058 7 3 6057 6 3 6060 9 3 6058 7 3 6059 8 3 6061 18 3 6060 9 3 6059 8 3 6062 19 3 6060 9 3 6061 18 3 6063 12 3 6062 19 3 6061 18 3 6064 13 3 6062 19 3 6063 12 3 6065 14 3 6064 13 3 6063 12 3 6066 15 3 6064 13 3 6065 14 3 6039 2 3 6038 1 3 6067 0 3 6068 3 3 6038 1 3 6039 2 3 6069 4 3 6068 3 3 6039 2 3 6070 5 3 6068 3 3 6069 4 3 6071 6 3 6070 5 3 6069 4 3 6072 7 3 6070 5 3 6071 6 3 6073 8 3 6072 7 3 6071 6 3 6074 9 3 6072 7 3 6073 8 3 6075 18 3 6074 9 3 6073 8 3 6076 19 3 6074 9 3 6075 18 3 6077 12 3 6076 19 3 6075 18 3 6078 13 3 6076 19 3 6077 12 3 6079 14 3 6078 13 3 6077 12 3 6080 15 3 6078 13 3 6079 14 3 6081 2 3 6051 1 3 6037 0 3 6082 3 3 6051 1 3 6081 2 3 6083 4 3 6082 3 3 6081 2 3 6084 5 3 6082 3 3 6083 4 3 6085 6 3 6084 5 3 6083 4 3 6086 7 3 6084 5 3 6085 6 3 6087 8 3 6086 7 3 6085 6 3 6088 9 3 6086 7 3 6087 8 3 6089 18 3 6088 9 3 6087 8 3 6090 19 3 6088 9 3 6089 18 3 6091 12 3 6090 19 3 6089 18 3 6092 13 3 6090 19 3 6091 12 3 6093 14 3 6092 13 3 6091 12 3 6094 15 3 6092 13 3 6093 14 3 6096 2 3 6067 1 3 6095 0 3 6097 3 3 6067 1 3 6096 2 3 6098 4 3 6097 3 3 6096 2 3 6099 5 3 6097 3 3 6098 4 3 6100 6 3 6099 5 3 6098 4 3 6101 7 3 6099 5 3 6100 6 3 6102 8 3 6101 7 3 6100 6 3 6103 9 3 6101 7 3 6102 8 3 6104 18 3 6103 9 3 6102 8 3 6105 19 3 6103 9 3 6104 18 3 6106 12 3 6105 19 3 6104 18 3 6107 13 3 6105 19 3 6106 12 3 6108 14 3 6107 13 3 6106 12 3 6109 15 3 6107 13 3 6108 14 3 6096 2 3 6111 1 3 6110 0 3 6112 3 3 6111 1 3 6096 2 3 6113 4 3 6112 3 3 6096 2 3 6114 5 3 6112 3 3 6113 4 3 6115 6 3 6114 5 3 6113 4 3 6116 7 3 6114 5 3 6115 6 3 6117 8 3 6116 7 3 6115 6 3 6118 9 3 6116 7 3 6117 8 3 6119 18 3 6118 9 3 6117 8 3 6120 19 3 6118 9 3 6119 18 3 6121 12 3 6120 19 3 6119 18 3 6122 13 3 6120 19 3 6121 12 3 6123 14 3 6122 13 3 6121 12 3 6124 15 3 6122 13 3 6123 14 3 6126 2 3 6125 1 3 6125 0 3 6127 3 3 6125 1 3 6126 2 3 6128 4 3 6127 3 3 6126 2 3 6129 5 3 6127 3 3 6128 4 3 6130 6 3 6129 5 3 6128 4 3 6131 7 3 6129 5 3 6130 6 3 6132 8 3 6131 7 3 6130 6 3 6133 9 3 6131 7 3 6132 8 3 6134 18 3 6133 9 3 6132 8 3 6135 19 3 6133 9 3 6134 18 3 6136 12 3 6135 19 3 6134 18 3 6137 13 3 6135 19 3 6136 12 3 6138 14 3 6137 13 3 6136 12 3 6139 15 3 6137 13 3 6138 14 3 6142 2 3 6141 1 3 6140 0 3 6143 3 3 6141 1 3 6142 2 3 6144 4 3 6143 3 3 6142 2 3 6145 5 3 6143 3 3 6144 4 3 6146 6 3 6145 5 3 6144 4 3 6147 7 3 6145 5 3 6146 6 3 6148 8 3 6147 7 3 6146 6 3 6149 9 3 6147 7 3 6148 8 3 6150 18 3 6149 9 3 6148 8 3 6151 19 3 6149 9 3 6150 18 3 6152 12 3 6151 19 3 6150 18 3 6153 13 3 6151 19 3 6152 12 3 6154 14 3 6153 13 3 6152 12 3 6155 15 3 6153 13 3 6154 14 3 6126 2 3 6140 1 3 6141 0 3 6156 3 3 6140 1 3 6126 2 3 6157 4 3 6156 3 3 6126 2 3 6158 5 3 6156 3 3 6157 4 3 6159 6 3 6158 5 3 6157 4 3 6160 7 3 6158 5 3 6159 6 3 6161 8 3 6160 7 3 6159 6 3 6162 9 3 6160 7 3 6161 8 3 6163 18 3 6162 9 3 6161 8 3 6164 19 3 6162 9 3 6163 18 3 6165 12 3 6164 19 3 6163 18 3 6166 13 3 6164 19 3 6165 12 3 6167 14 3 6166 13 3 6165 12 3 6168 15 3 6166 13 3 6167 14 3 6171 2 3 6170 1 3 6169 0 3 6172 3 3 6170 1 3 6171 2 3 6173 4 3 6172 3 3 6171 2 3 6174 5 3 6172 3 3 6173 4 3 6175 6 3 6174 5 3 6173 4 3 6176 7 3 6174 5 3 6175 6 3 6177 8 3 6176 7 3 6175 6 3 6178 9 3 6176 7 3 6177 8 3 6179 18 3 6178 9 3 6177 8 3 6180 19 3 6178 9 3 6179 18 3 6181 12 3 6180 19 3 6179 18 3 6182 13 3 6180 19 3 6181 12 3 6183 14 3 6182 13 3 6181 12 3 6184 15 3 6182 13 3 6183 14 3 6187 2 0 6186 1 0 6185 0 3 6188 3 0 6186 1 0 6187 2 0 6189 4 0 6188 3 0 6187 2 0 6190 5 0 6188 3 0 6189 4 0 6191 6 0 6190 5 0 6189 4 0 6192 7 0 6190 5 0 6191 6 0 6193 8 1 6192 7 0 6191 6 0 6194 9 1 6192 7 0 6193 8 1 6195 18 1 6194 9 1 6193 8 1 6196 19 1 6194 9 1 6195 18 1 6197 12 1 6196 19 1 6195 18 1 6198 13 1 6196 19 1 6197 12 1 6199 14 1 6198 13 1 6197 12 1 6200 15 1 6198 13 1 6199 14 1 6203 2 3 6202 1 3 6201 0 3 6203 3 3 6202 1 3 6203 2 3 6204 4 3 6203 3 3 6203 2 3 6205 5 3 6203 3 3 6204 4 3 6206 6 3 6205 5 3 6204 4 3 6207 7 3 6205 5 3 6206 6 3 6208 8 3 6207 7 3 6206 6 3 6209 9 3 6207 7 3 6208 8 3 6210 18 3 6209 9 3 6208 8 3 6211 19 3 6209 9 3 6210 18 3 6212 12 3 6211 19 3 6210 18 3 6213 13 3 6211 19 3 6212 12 3 6214 14 3 6213 13 3 6212 12 3 6215 15 3 6213 13 3 6214 14 3 6203 2 3 6217 1 3 6216 0 3 6218 3 3 6217 1 3 6203 2 3 6219 4 3 6218 3 3 6203 2 3 6220 5 3 6218 3 3 6219 4 3 6221 6 3 6220 5 3 6219 4 3 6222 7 3 6220 5 3 6221 6 3 6223 8 3 6222 7 3 6221 6 3 6224 9 3 6222 7 3 6223 8 3 6225 18 3 6224 9 3 6223 8 3 6226 19 3 6224 9 3 6225 18 3 6227 12 3 6226 19 3 6225 18 3 6228 13 3 6226 19 3 6227 12 3 6229 14 3 6228 13 3 6227 12 3 6230 15 3 6228 13 3 6229 14 3 6232 2 3 6231 1 3 6217 0 3 6233 3 3 6231 1 3 6232 2 3 6234 4 3 6233 3 3 6232 2 3 6235 5 3 6233 3 3 6234 4 3 6236 6 3 6235 5 3 6234 4 3 6237 7 3 6235 5 3 6236 6 3 6238 8 3 6237 7 3 6236 6 3 6239 9 3 6237 7 3 6238 8 3 6240 18 3 6239 9 3 6238 8 3 6240 19 3 6239 9 3 6240 18 3 6241 12 3 6240 19 3 6240 18 3 6242 13 3 6240 19 3 6241 12 3 6243 14 3 6242 13 3 6241 12 3 6244 15 3 6242 13 3 6243 14 3 6246 2 3 6216 1 3 6245 0 3 6247 3 3 6216 1 3 6246 2 3 6248 4 3 6247 3 3 6246 2 3 6249 5 3 6247 3 3 6248 4 3 6250 6 3 6249 5 3 6248 4 3 6251 7 3 6249 5 3 6250 6 3 6252 8 3 6251 7 3 6250 6 3 6253 9 3 6251 7 3 6252 8 3 6254 18 3 6253 9 3 6252 8 3 6255 19 3 6253 9 3 6254 18 3 6256 12 3 6255 19 3 6254 18 3 6257 13 3 6255 19 3 6256 12 3 6258 14 3 6257 13 3 6256 12 3 6259 15 3 6257 13 3 6258 14 3 6261 2 3 6217 1 3 6260 0 3 6262 3 3 6217 1 3 6261 2 3 6263 4 3 6262 3 3 6261 2 3 6264 5 3 6262 3 3 6263 4 3 6265 6 3 6264 5 3 6263 4 3 6266 7 3 6264 5 3 6265 6 3 6267 8 3 6266 7 3 6265 6 3 6268 9 3 6266 7 3 6267 8 3 6269 18 3 6268 9 3 6267 8 3 6270 19 3 6268 9 3 6269 18 3 6271 12 3 6270 19 3 6269 18 3 6272 13 3 6270 19 3 6271 12 3 6273 14 3 6272 13 3 6271 12 3 6274 15 3 6272 13 3 6273 14 3 6246 2 3 6276 1 3 6275 0 3 6277 3 3 6276 1 3 6246 2 3 6278 4 3 6277 3 3 6246 2 3 6279 5 3 6277 3 3 6278 4 3 6280 6 3 6279 5 3 6278 4 3 6281 7 3 6279 5 3 6280 6 3 6282 8 3 6281 7 3 6280 6 3 6283 9 3 6281 7 3 6282 8 3 6284 18 3 6283 9 3 6282 8 3 6285 19 3 6283 9 3 6284 18 3 6286 12 3 6285 19 3 6284 18 3 6287 13 3 6285 19 3 6286 12 3 6288 14 3 6287 13 3 6286 12 3 6289 15 3 6287 13 3 6288 14 3 6292 2 3 6291 1 3 6290 0 3 6293 3 3 6291 1 3 6292 2 3 6294 4 3 6293 3 3 6292 2 3 6295 5 3 6293 3 3 6294 4 3 6296 6 3 6295 5 3 6294 4 3 6297 7 3 6295 5 3 6296 6 3 6298 8 3 6297 7 3 6296 6 3 6299 9 3 6297 7 3 6298 8 3 6300 18 3 6299 9 3 6298 8 3 6301 19 3 6299 9 3 6300 18 3 6302 12 3 6301 19 3 6300 18 3 6303 13 3 6301 19 3 6302 12 3 6304 14 3 6303 13 3 6302 12 3 6305 15 3 6303 13 3 6304 14 3 6308 2 3 6307 1 3 6306 0 3 6309 3 3 6307 1 3 6308 2 3 6310 4 3 6309 3 3 6308 2 3 6311 5 3 6309 3 3 6310 4 3 6312 6 3 6311 5 3 6310 4 3 6313 7 3 6311 5 3 6312 6 3 6314 8 3 6313 7 3 6312 6 3 6315 9 3 6313 7 3 6314 8 3 6316 18 3 6315 9 3 6314 8 3 6317 19 3 6315 9 3 6316 18 3 6318 12 3 6317 19 3 6316 18 3 6319 13 3 6317 19 3 6318 12 3 6320 14 3 6319 13 3 6318 12 3 6321 15 3 6319 13 3 6320 14 3 6324 2 3 6323 1 3 6322 0 3 6325 3 3 6323 1 3 6324 2 3 6326 4 3 6325 3 3 6324 2 3 6327 5 3 6325 3 3 6326 4 3 6328 6 3 6327 5 3 6326 4 3 6329 7 3 6327 5 3 6328 6 3 6330 8 3 6329 7 3 6328 6 3 6331 9 3 6329 7 3 6330 8 3 6332 18 3 6331 9 3 6330 8 3 6333 19 3 6331 9 3 6332 18 3 6334 12 3 6333 19 3 6332 18 3 6335 13 3 6333 19 3 6334 12 3 6336 14 3 6335 13 3 6334 12 3 6336 15 3 6335 13 3 6336 14 3 6338 2 3 6291 1 3 6337 0 3 6339 3 3 6291 1 3 6338 2 3 6340 4 3 6339 3 3 6338 2 3 6341 5 3 6339 3 3 6340 4 3 6342 6 3 6341 5 3 6340 4 3 6343 7 3 6341 5 3 6342 6 3 6344 8 3 6343 7 3 6342 6 3 6345 9 3 6343 7 3 6344 8 3 6346 18 3 6345 9 3 6344 8 3 6347 19 3 6345 9 3 6346 18 3 6348 12 3 6347 19 3 6346 18 3 6349 13 3 6347 19 3 6348 12 3 6350 14 3 6349 13 3 6348 12 3 6351 15 3 6349 13 3 6350 14 3 6353 2 0 6352 1 0 6290 0 3 6354 3 0 6352 1 0 6353 2 0 6355 4 0 6354 3 0 6353 2 0 6356 5 0 6354 3 0 6355 4 0 6357 6 0 6356 5 0 6355 4 0 6358 7 0 6356 5 0 6357 6 0 6359 8 1 6358 7 0 6357 6 0 6360 9 1 6358 7 0 6359 8 1 6361 18 1 6360 9 1 6359 8 1 6362 19 1 6360 9 1 6361 18 1 6363 12 1 6362 19 1 6361 18 1 6364 13 1 6362 19 1 6363 12 1 6365 14 1 6364 13 1 6363 12 1 6366 15 1 6364 13 1 6365 14 1 6369 2 3 6368 1 3 6367 0 3 6370 3 3 6368 1 3 6369 2 3 6371 4 3 6370 3 3 6369 2 3 6371 5 3 6370 3 3 6371 4 3 6372 6 3 6371 5 3 6371 4 3 6373 7 3 6371 5 3 6372 6 3 6374 8 3 6373 7 3 6372 6 3 6375 9 3 6373 7 3 6374 8 3 6376 18 3 6375 9 3 6374 8 3 6377 19 3 6375 9 3 6376 18 3 6378 12 3 6377 19 3 6376 18 3 6379 13 3 6377 19 3 6378 12 3 6380 14 3 6379 13 3 6378 12 3 6381 15 3 6379 13 3 6380 14 3 6384 2 3 6383 1 3 6382 0 3 6385 3 3 6383 1 3 6384 2 3 6386 4 3 6385 3 3 6384 2 3 6387 5 3 6385 3 3 6386 4 3 6388 6 3 6387 5 3 6386 4 3 6389 7 3 6387 5 3 6388 6 3 6390 8 3 6389 7 3 6388 6 3 6391 9 3 6389 7 3 6390 8 3 6392 18 3 6391 9 3 6390 8 3 6393 19 3 6391 9 3 6392 18 3 6394 12 3 6393 19 3 6392 18 3 6395 13 3 6393 19 3 6394 12 3 6396 14 3 6395 13 3 6394 12 3 6397 15 3 6395 13 3 6396 14 3 6369 2 3 6399 1 3 6398 0 3 6400 3 3 6399 1 3 6369 2 3 6401 4 3 6400 3 3 6369 2 3 6401 5 3 6400 3 3 6401 4 3 6402 6 3 6401 5 3 6401 4 3 6403 7 3 6401 5 3 6402 6 3 6404 8 3 6403 7 3 6402 6 3 6405 9 3 6403 7 3 6404 8 3 6406 18 3 6405 9 3 6404 8 3 6407 19 3 6405 9 3 6406 18 3 6408 12 3 6407 19 3 6406 18 3 6409 13 3 6407 19 3 6408 12 3 6410 14 3 6409 13 3 6408 12 3 6411 15 3 6409 13 3 6410 14 3 6412 2 3 6382 1 3 6367 0 3 6413 3 3 6382 1 3 6412 2 3 6414 4 3 6413 3 3 6412 2 3 6415 5 3 6413 3 3 6414 4 3 6416 6 3 6415 5 3 6414 4 3 6417 7 3 6415 5 3 6416 6 3 6418 8 3 6417 7 3 6416 6 3 6419 9 3 6417 7 3 6418 8 3 6420 18 3 6419 9 3 6418 8 3 6421 19 3 6419 9 3 6420 18 3 6422 12 3 6421 19 3 6420 18 3 6423 13 3 6421 19 3 6422 12 3 6424 14 3 6423 13 3 6422 12 3 6425 15 3 6423 13 3 6424 14 3 6427 2 3 6383 1 3 6426 0 3 6428 3 3 6383 1 3 6427 2 3 6429 4 3 6428 3 3 6427 2 3 6430 5 3 6428 3 3 6429 4 3 6431 6 3 6430 5 3 6429 4 3 6432 7 3 6430 5 3 6431 6 3 6433 8 3 6432 7 3 6431 6 3 6434 9 3 6432 7 3 6433 8 3 6435 18 3 6434 9 3 6433 8 3 6436 19 3 6434 9 3 6435 18 3 6437 12 3 6436 19 3 6435 18 3 6438 13 3 6436 19 3 6437 12 3 6439 14 3 6438 13 3 6437 12 3 6440 15 3 6438 13 3 6439 14 3 6412 2 3 6426 1 3 6441 0 3 6442 3 3 6426 1 3 6412 2 3 6443 4 3 6442 3 3 6412 2 3 6444 5 3 6442 3 3 6443 4 3 6445 6 3 6444 5 3 6443 4 3 6446 7 3 6444 5 3 6445 6 3 6447 8 3 6446 7 3 6445 6 3 6448 9 3 6446 7 3 6447 8 3 6449 18 3 6448 9 3 6447 8 3 6450 19 3 6448 9 3 6449 18 3 6451 12 3 6450 19 3 6449 18 3 6452 13 3 6450 19 3 6451 12 3 6453 14 3 6452 13 3 6451 12 3 6454 15 3 6452 13 3 6453 14 3 6456 2 3 6455 1 3 6455 0 3 6457 3 3 6455 1 3 6456 2 3 6458 4 3 6457 3 3 6456 2 3 6459 5 3 6457 3 3 6458 4 3 6460 6 3 6459 5 3 6458 4 3 6461 7 3 6459 5 3 6460 6 3 6462 8 3 6461 7 3 6460 6 3 6463 9 3 6461 7 3 6462 8 3 6464 18 3 6463 9 3 6462 8 3 6465 19 3 6463 9 3 6464 18 3 6466 12 3 6465 19 3 6464 18 3 6467 13 3 6465 19 3 6466 12 3 6468 14 3 6467 13 3 6466 12 3 6469 15 3 6467 13 3 6468 14 3 6456 2 3 6471 1 3 6470 0 3 6472 3 3 6471 1 3 6456 2 3 6473 4 3 6472 3 3 6456 2 3 6474 5 3 6472 3 3 6473 4 3 6475 6 3 6474 5 3 6473 4 3 6476 7 3 6474 5 3 6475 6 3 6477 8 3 6476 7 3 6475 6 3 6478 9 3 6476 7 3 6477 8 3 6479 18 3 6478 9 3 6477 8 3 6480 19 3 6478 9 3 6479 18 3 6481 12 3 6480 19 3 6479 18 3 6482 13 3 6480 19 3 6481 12 3 6483 14 3 6482 13 3 6481 12 3 6483 15 3 6482 13 3 6483 14 3 6456 2 3 6470 1 3 6455 0 3 6484 3 3 6470 1 3 6456 2 3 6485 4 3 6484 3 3 6456 2 3 6486 5 3 6484 3 3 6485 4 3 6487 6 3 6486 5 3 6485 4 3 6488 7 3 6486 5 3 6487 6 3 6489 8 3 6488 7 3 6487 6 3 6490 9 3 6488 7 3 6489 8 3 6491 18 3 6490 9 3 6489 8 3 6492 19 3 6490 9 3 6491 18 3 6493 12 3 6492 19 3 6491 18 3 6494 13 3 6492 19 3 6493 12 3 6495 14 3 6494 13 3 6493 12 3 6495 15 3 6494 13 3 6495 14 3 6497 2 3 6455 1 3 6496 0 3 6498 3 3 6455 1 3 6497 2 3 6499 4 3 6498 3 3 6497 2 3 6500 5 3 6498 3 3 6499 4 3 6501 6 3 6500 5 3 6499 4 3 6502 7 3 6500 5 3 6501 6 3 6503 8 3 6502 7 3 6501 6 3 6504 9 3 6502 7 3 6503 8 3 6505 18 3 6504 9 3 6503 8 3 6506 19 3 6504 9 3 6505 18 3 6507 12 3 6506 19 3 6505 18 3 6508 13 3 6506 19 3 6507 12 3 6509 14 3 6508 13 3 6507 12 3 6510 15 3 6508 13 3 6509 14 3 6512 2 0 6511 1 0 6455 0 3 6513 3 0 6511 1 0 6512 2 0 6514 4 0 6513 3 0 6512 2 0 6515 5 0 6513 3 0 6514 4 0 6516 6 0 6515 5 0 6514 4 0 6517 7 0 6515 5 0 6516 6 0 6518 8 1 6517 7 0 6516 6 0 6519 9 1 6517 7 0 6518 8 1 6520 18 1 6519 9 1 6518 8 1 6521 19 1 6519 9 1 6520 18 1 6522 12 1 6521 19 1 6520 18 1 6523 13 1 6521 19 1 6522 12 1 6524 14 1 6523 13 1 6522 12 1 6525 15 1 6523 13 1 6524 14 1 6527 2 3 6526 1 3 6526 0 3 6528 3 3 6526 1 3 6527 2 3 6529 4 3 6528 3 3 6527 2 3 6530 5 3 6528 3 3 6529 4 3 6531 6 3 6530 5 3 6529 4 3 6532 7 3 6530 5 3 6531 6 3 6533 8 3 6532 7 3 6531 6 3 6534 9 3 6532 7 3 6533 8 3 6535 18 3 6534 9 3 6533 8 3 6536 19 3 6534 9 3 6535 18 3 6537 12 3 6536 19 3 6535 18 3 6538 13 3 6536 19 3 6537 12 3 6539 14 3 6538 13 3 6537 12 3 6540 15 3 6538 13 3 6539 14 3 6543 2 3 6542 1 3 6541 0 3 6544 3 3 6542 1 3 6543 2 3 6545 4 3 6544 3 3 6543 2 3 6546 5 3 6544 3 3 6545 4 3 6547 6 3 6546 5 3 6545 4 3 6548 7 3 6546 5 3 6547 6 3 6549 8 3 6548 7 3 6547 6 3 6550 9 3 6548 7 3 6549 8 3 6551 18 3 6550 9 3 6549 8 3 6552 19 3 6550 9 3 6551 18 3 6553 12 3 6552 19 3 6551 18 3 6554 13 3 6552 19 3 6553 12 3 6555 14 3 6554 13 3 6553 12 3 6556 15 3 6554 13 3 6555 14 3 6527 2 3 6557 1 3 6542 0 3 6558 3 3 6557 1 3 6527 2 3 6559 4 3 6558 3 3 6527 2 3 6560 5 3 6558 3 3 6559 4 3 6561 6 3 6560 5 3 6559 4 3 6562 7 3 6560 5 3 6561 6 3 6563 8 3 6562 7 3 6561 6 3 6564 9 3 6562 7 3 6563 8 3 6565 18 3 6564 9 3 6563 8 3 6566 19 3 6564 9 3 6565 18 3 6567 12 3 6566 19 3 6565 18 3 6568 13 3 6566 19 3 6567 12 3 6569 14 3 6568 13 3 6567 12 3 6570 15 3 6568 13 3 6569 14 3 6573 2 3 6572 1 3 6571 0 3 6574 3 3 6572 1 3 6573 2 3 6575 4 3 6574 3 3 6573 2 3 6576 5 3 6574 3 3 6575 4 3 6577 6 3 6576 5 3 6575 4 3 6578 7 3 6576 5 3 6577 6 3 6579 8 3 6578 7 3 6577 6 3 6580 9 3 6578 7 3 6579 8 3 6581 18 3 6580 9 3 6579 8 3 6582 19 3 6580 9 3 6581 18 3 6583 12 3 6582 19 3 6581 18 3 6584 13 3 6582 19 3 6583 12 3 6585 14 3 6584 13 3 6583 12 3 6586 15 3 6584 13 3 6585 14 3 6573 2 3 6588 1 3 6587 0 3 6589 3 3 6588 1 3 6573 2 3 6590 4 3 6589 3 3 6573 2 3 6591 5 3 6589 3 3 6590 4 3 6592 6 3 6591 5 3 6590 4 3 6593 7 3 6591 5 3 6592 6 3 6594 8 3 6593 7 3 6592 6 3 6595 9 3 6593 7 3 6594 8 3 6596 18 3 6595 9 3 6594 8 3 6597 19 3 6595 9 3 6596 18 3 6598 12 3 6597 19 3 6596 18 3 6599 13 3 6597 19 3 6598 12 3 6600 14 3 6599 13 3 6598 12 3 6600 15 3 6599 13 3 6600 14 3 6574 2 3 6572 1 3 6571 0 3 6601 3 3 6572 1 3 6574 2 3 6602 4 3 6601 3 3 6574 2 3 6603 5 3 6601 3 3 6602 4 3 6604 6 3 6603 5 3 6602 4 3 6605 7 3 6603 5 3 6604 6 3 6606 8 3 6605 7 3 6604 6 3 6607 9 3 6605 7 3 6606 8 3 6608 18 3 6607 9 3 6606 8 3 6609 19 3 6607 9 3 6608 18 3 6610 12 3 6609 19 3 6608 18 3 6610 13 3 6609 19 3 6610 12 3 6611 14 3 6610 13 3 6610 12 3 6612 15 3 6610 13 3 6611 14 3 6614 2 3 6613 1 3 6587 0 3 6615 3 3 6613 1 3 6614 2 3 6616 4 3 6615 3 3 6614 2 3 6617 5 3 6615 3 3 6616 4 3 6618 6 3 6617 5 3 6616 4 3 6619 7 3 6617 5 3 6618 6 3 6620 8 3 6619 7 3 6618 6 3 6621 9 3 6619 7 3 6620 8 3 6622 18 3 6621 9 3 6620 8 3 6623 19 3 6621 9 3 6622 18 3 6624 12 3 6623 19 3 6622 18 3 6625 13 3 6623 19 3 6624 12 3 6626 14 3 6625 13 3 6624 12 3 6627 15 3 6625 13 3 6626 14 3 6629 2 3 6588 1 3 6628 0 3 6630 3 3 6588 1 3 6629 2 3 6631 4 3 6630 3 3 6629 2 3 6632 5 3 6630 3 3 6631 4 3 6633 6 3 6632 5 3 6631 4 3 6634 7 3 6632 5 3 6633 6 3 6635 8 3 6634 7 3 6633 6 3 6636 9 3 6634 7 3 6635 8 3 6637 18 3 6636 9 3 6635 8 3 6638 19 3 6636 9 3 6637 18 3 6639 12 3 6638 19 3 6637 18 3 6640 13 3 6638 19 3 6639 12 3 6641 14 3 6640 13 3 6639 12 3 6642 15 3 6640 13 3 6641 14 3 6614 2 3 6643 1 3 6571 0 3 6644 3 3 6643 1 3 6614 2 3 6645 4 3 6644 3 3 6614 2 3 6646 5 3 6644 3 3 6645 4 3 6647 6 3 6646 5 3 6645 4 3 6648 7 3 6646 5 3 6647 6 3 6649 8 3 6648 7 3 6647 6 3 6650 9 3 6648 7 3 6649 8 3 6651 18 3 6650 9 3 6649 8 3 6652 19 3 6650 9 3 6651 18 3 6653 12 3 6652 19 3 6651 18 3 6654 13 3 6652 19 3 6653 12 3 6655 14 3 6654 13 3 6653 12 3 6656 15 3 6654 13 3 6655 14 3 6659 2 3 6658 1 3 6657 0 3 6660 3 3 6658 1 3 6659 2 3 6661 4 3 6660 3 3 6659 2 3 6662 5 3 6660 3 3 6661 4 3 6663 6 3 6662 5 3 6661 4 3 6664 7 3 6662 5 3 6663 6 3 6665 8 3 6664 7 3 6663 6 3 6666 9 3 6664 7 3 6665 8 3 6667 18 3 6666 9 3 6665 8 3 6668 19 3 6666 9 3 6667 18 3 6669 12 3 6668 19 3 6667 18 3 6670 13 3 6668 19 3 6669 12 3 6671 14 3 6670 13 3 6669 12 3 6672 15 3 6670 13 3 6671 14 3 6675 2 3 6674 1 3 6673 0 3 6676 3 3 6674 1 3 6675 2 3 6677 4 3 6676 3 3 6675 2 3 6678 5 3 6676 3 3 6677 4 3 6679 6 3 6678 5 3 6677 4 3 6680 7 3 6678 5 3 6679 6 3 6681 8 3 6680 7 3 6679 6 3 6682 9 3 6680 7 3 6681 8 3 6683 18 3 6682 9 3 6681 8 3 6684 19 3 6682 9 3 6683 18 3 6685 12 3 6684 19 3 6683 18 3 6686 13 3 6684 19 3 6685 12 3 6687 14 3 6686 13 3 6685 12 3 6688 15 3 6686 13 3 6687 14 3 6659 2 3 6690 1 3 6689 0 3 6691 3 3 6690 1 3 6659 2 3 6692 4 3 6691 3 3 6659 2 3 6693 5 3 6691 3 3 6692 4 3 6694 6 3 6693 5 3 6692 4 3 6695 7 3 6693 5 3 6694 6 3 6696 8 3 6695 7 3 6694 6 3 6697 9 3 6695 7 3 6696 8 3 6698 18 3 6697 9 3 6696 8 3 6698 19 3 6697 9 3 6698 18 3 6699 12 3 6698 19 3 6698 18 3 6700 13 3 6698 19 3 6699 12 3 6701 14 3 6700 13 3 6699 12 3 6701 15 3 6700 13 3 6701 14 3 6704 2 3 6703 1 3 6702 0 3 6705 3 3 6703 1 3 6704 2 3 6706 4 3 6705 3 3 6704 2 3 6707 5 3 6705 3 3 6706 4 3 6708 6 3 6707 5 3 6706 4 3 6709 7 3 6707 5 3 6708 6 3 6710 8 3 6709 7 3 6708 6 3 6711 9 3 6709 7 3 6710 8 3 6712 18 3 6711 9 3 6710 8 3 6713 19 3 6711 9 3 6712 18 3 6714 12 3 6713 19 3 6712 18 3 6715 13 3 6713 19 3 6714 12 3 6716 14 3 6715 13 3 6714 12 3 6717 15 3 6715 13 3 6716 14 3 6719 2 0 6718 1 0 6657 0 3 6720 3 0 6718 1 0 6719 2 0 6721 4 0 6720 3 0 6719 2 0 6722 5 0 6720 3 0 6721 4 0 6723 6 0 6722 5 0 6721 4 0 6724 7 0 6722 5 0 6723 6 0 6725 8 1 6724 7 0 6723 6 0 6726 9 1 6724 7 0 6725 8 1 6727 18 1 6726 9 1 6725 8 1 6728 19 1 6726 9 1 6727 18 1 6729 12 1 6728 19 1 6727 18 1 6730 13 1 6728 19 1 6729 12 1 6731 14 1 6730 13 1 6729 12 1 6732 15 1 6730 13 1 6731 14 1 6734 2 3 6541 1 3 6733 0 3 6735 3 3 6541 1 3 6734 2 3 6736 4 3 6735 3 3 6734 2 3 6737 5 3 6735 3 3 6736 4 3 6738 6 3 6737 5 3 6736 4 3 6739 7 3 6737 5 3 6738 6 3 6740 8 3 6739 7 3 6738 6 3 6741 9 3 6739 7 3 6740 8 3 6742 18 3 6741 9 3 6740 8 3 6743 19 3 6741 9 3 6742 18 3 6744 12 3 6743 19 3 6742 18 3 6745 13 3 6743 19 3 6744 12 3 6746 14 3 6745 13 3 6744 12 3 6747 15 3 6745 13 3 6746 14 3 6749 2 3 6542 1 3 6748 0 3 6750 3 3 6542 1 3 6749 2 3 6751 4 3 6750 3 3 6749 2 3 6752 5 3 6750 3 3 6751 4 3 6753 6 3 6752 5 3 6751 4 3 6754 7 3 6752 5 3 6753 6 3 6755 8 3 6754 7 3 6753 6 3 6756 9 3 6754 7 3 6755 8 3 6757 18 3 6756 9 3 6755 8 3 6758 19 3 6756 9 3 6757 18 3 6759 12 3 6758 19 3 6757 18 3 6760 13 3 6758 19 3 6759 12 3 6761 14 3 6760 13 3 6759 12 3 6762 15 3 6760 13 3 6761 14 3 6764 2 3 6763 1 3 6526 0 3 6765 3 3 6763 1 3 6764 2 3 6766 4 3 6765 3 3 6764 2 3 6767 5 3 6765 3 3 6766 4 3 6768 6 3 6767 5 3 6766 4 3 6769 7 3 6767 5 3 6768 6 3 6770 8 3 6769 7 3 6768 6 3 6771 9 3 6769 7 3 6770 8 3 6772 18 3 6771 9 3 6770 8 3 6773 19 3 6771 9 3 6772 18 3 6774 12 3 6773 19 3 6772 18 3 6775 13 3 6773 19 3 6774 12 3 6776 14 3 6775 13 3 6774 12 3 6777 15 3 6775 13 3 6776 14 3 6780 2 3 6779 1 3 6778 0 3 6780 3 3 6779 1 3 6780 2 3 6781 4 3 6780 3 3 6780 2 3 6781 5 3 6780 3 3 6781 4 3 6782 6 3 6781 5 3 6781 4 3 6783 7 3 6781 5 3 6782 6 3 6784 8 3 6783 7 3 6782 6 3 6785 9 3 6783 7 3 6784 8 3 6786 18 3 6785 9 3 6784 8 3 6787 19 3 6785 9 3 6786 18 3 6788 12 3 6787 19 3 6786 18 3 6789 13 3 6787 19 3 6788 12 3 6790 14 3 6789 13 3 6788 12 3 6791 15 3 6789 13 3 6790 14 3 6794 2 3 6793 1 3 6792 0 3 6795 3 3 6793 1 3 6794 2 3 6796 4 3 6795 3 3 6794 2 3 6797 5 3 6795 3 3 6796 4 3 6798 6 3 6797 5 3 6796 4 3 6799 7 3 6797 5 3 6798 6 3 6800 8 3 6799 7 3 6798 6 3 6801 9 3 6799 7 3 6800 8 3 6802 18 3 6801 9 3 6800 8 3 6803 19 3 6801 9 3 6802 18 3 6804 12 3 6803 19 3 6802 18 3 6805 13 3 6803 19 3 6804 12 3 6806 14 3 6805 13 3 6804 12 3 6807 15 3 6805 13 3 6806 14 3 6780 2 3 6779 1 3 6808 0 3 6809 3 3 6779 1 3 6780 2 3 6810 4 3 6809 3 3 6780 2 3 6811 5 3 6809 3 3 6810 4 3 6812 6 3 6811 5 3 6810 4 3 6813 7 3 6811 5 3 6812 6 3 6814 8 3 6813 7 3 6812 6 3 6815 9 3 6813 7 3 6814 8 3 6816 18 3 6815 9 3 6814 8 3 6816 19 3 6815 9 3 6816 18 3 6817 12 3 6816 19 3 6816 18 3 6818 13 3 6816 19 3 6817 12 3 6819 14 3 6818 13 3 6817 12 3 6820 15 3 6818 13 3 6819 14 3 6822 2 3 6821 1 3 6778 0 3 6823 3 3 6821 1 3 6822 2 3 6824 4 3 6823 3 3 6822 2 3 6825 5 3 6823 3 3 6824 4 3 6826 6 3 6825 5 3 6824 4 3 6827 7 3 6825 5 3 6826 6 3 6828 8 3 6827 7 3 6826 6 3 6829 9 3 6827 7 3 6828 8 3 6830 18 3 6829 9 3 6828 8 3 6831 19 3 6829 9 3 6830 18 3 6832 12 3 6831 19 3 6830 18 3 6833 13 3 6831 19 3 6832 12 3 6834 14 3 6833 13 3 6832 12 3 6835 15 3 6833 13 3 6834 14 3 6837 2 3 6793 1 3 6836 0 3 6838 3 3 6793 1 3 6837 2 3 6839 4 3 6838 3 3 6837 2 3 6840 5 3 6838 3 3 6839 4 3 6841 6 3 6840 5 3 6839 4 3 6842 7 3 6840 5 3 6841 6 3 6843 8 3 6842 7 3 6841 6 3 6844 9 3 6842 7 3 6843 8 3 6845 18 3 6844 9 3 6843 8 3 6846 19 3 6844 9 3 6845 18 3 6847 12 3 6846 19 3 6845 18 3 6848 13 3 6846 19 3 6847 12 3 6849 14 3 6848 13 3 6847 12 3 6850 15 3 6848 13 3 6849 14 3 6822 2 3 6851 1 3 6808 0 3 6852 3 3 6851 1 3 6822 2 3 6853 4 3 6852 3 3 6822 2 3 6854 5 3 6852 3 3 6853 4 3 6855 6 3 6854 5 3 6853 4 3 6856 7 3 6854 5 3 6855 6 3 6857 8 3 6856 7 3 6855 6 3 6858 9 3 6856 7 3 6857 8 3 6859 18 3 6858 9 3 6857 8 3 6860 19 3 6858 9 3 6859 18 3 6861 12 3 6860 19 3 6859 18 3 6862 13 3 6860 19 3 6861 12 3 6863 14 3 6862 13 3 6861 12 3 6864 15 3 6862 13 3 6863 14 3 6866 2 3 6865 1 3 6865 0 3 6866 3 3 6865 1 3 6866 2 3 6867 4 3 6866 3 3 6866 2 3 6868 5 3 6866 3 3 6867 4 3 6869 6 3 6868 5 3 6867 4 3 6870 7 3 6868 5 3 6869 6 3 6871 8 3 6870 7 3 6869 6 3 6872 9 3 6870 7 3 6871 8 3 6873 18 3 6872 9 3 6871 8 3 6874 19 3 6872 9 3 6873 18 3 6875 12 3 6874 19 3 6873 18 3 6876 13 3 6874 19 3 6875 12 3 6877 14 3 6876 13 3 6875 12 3 6878 15 3 6876 13 3 6877 14 3 6881 2 3 6880 1 3 6879 0 3 6882 3 3 6880 1 3 6881 2 3 6883 4 3 6882 3 3 6881 2 3 6884 5 3 6882 3 3 6883 4 3 6885 6 3 6884 5 3 6883 4 3 6886 7 3 6884 5 3 6885 6 3 6887 8 3 6886 7 3 6885 6 3 6888 9 3 6886 7 3 6887 8 3 6889 18 3 6888 9 3 6887 8 3 6890 19 3 6888 9 3 6889 18 3 6891 12 3 6890 19 3 6889 18 3 6892 13 3 6890 19 3 6891 12 3 6893 14 3 6892 13 3 6891 12 3 6894 15 3 6892 13 3 6893 14 3 6866 2 3 6896 1 3 6895 0 3 6897 3 3 6896 1 3 6866 2 3 6898 4 3 6897 3 3 6866 2 3 6899 5 3 6897 3 3 6898 4 3 6900 6 3 6899 5 3 6898 4 3 6901 7 3 6899 5 3 6900 6 3 6902 8 3 6901 7 3 6900 6 3 6903 9 3 6901 7 3 6902 8 3 6904 18 3 6903 9 3 6902 8 3 6904 19 3 6903 9 3 6904 18 3 6905 12 3 6904 19 3 6904 18 3 6906 13 3 6904 19 3 6905 12 3 6907 14 3 6906 13 3 6905 12 3 6908 15 3 6906 13 3 6907 14 3 6910 2 3 6895 1 3 6909 0 3 6911 3 3 6895 1 3 6910 2 3 6912 4 3 6911 3 3 6910 2 3 6913 5 3 6911 3 3 6912 4 3 6914 6 3 6913 5 3 6912 4 3 6915 7 3 6913 5 3 6914 6 3 6916 8 3 6915 7 3 6914 6 3 6917 9 3 6915 7 3 6916 8 3 6918 18 3 6917 9 3 6916 8 3 6919 19 3 6917 9 3 6918 18 3 6920 12 3 6919 19 3 6918 18 3 6921 13 3 6919 19 3 6920 12 3 6922 14 3 6921 13 3 6920 12 3 6923 15 3 6921 13 3 6922 14 3 6925 2 0 6924 1 0 6865 0 3 6926 3 0 6924 1 0 6925 2 0 6927 4 0 6926 3 0 6925 2 0 6928 5 0 6926 3 0 6927 4 0 6929 6 0 6928 5 0 6927 4 0 6930 7 0 6928 5 0 6929 6 0 6931 8 1 6930 7 0 6929 6 0 6932 9 1 6930 7 0 6931 8 1 6933 18 1 6932 9 1 6931 8 1 6934 19 1 6932 9 1 6933 18 1 6935 12 1 6934 19 1 6933 18 1 6936 13 1 6934 19 1 6935 12 1 6937 14 1 6936 13 1 6935 12 1 6938 15 1 6936 13 1 6937 14 1 6941 2 3 6940 1 3 6939 0 3 6941 3 3 6940 1 3 6941 2 3 6942 4 3 6941 3 3 6941 2 3 6943 5 3 6941 3 3 6942 4 3 6944 6 3 6943 5 3 6942 4 3 6945 7 3 6943 5 3 6944 6 3 6946 8 3 6945 7 3 6944 6 3 6947 9 3 6945 7 3 6946 8 3 6948 18 3 6947 9 3 6946 8 3 6949 19 3 6947 9 3 6948 18 3 6950 12 3 6949 19 3 6948 18 3 6951 13 3 6949 19 3 6950 12 3 6952 14 3 6951 13 3 6950 12 3 6953 15 3 6951 13 3 6952 14 3 6956 2 3 6955 1 3 6954 0 3 6957 3 3 6955 1 3 6956 2 3 6958 4 3 6957 3 3 6956 2 3 6959 5 3 6957 3 3 6958 4 3 6960 6 3 6959 5 3 6958 4 3 6961 7 3 6959 5 3 6960 6 3 6962 8 3 6961 7 3 6960 6 3 6963 9 3 6961 7 3 6962 8 3 6964 18 3 6963 9 3 6962 8 3 6965 19 3 6963 9 3 6964 18 3 6966 12 3 6965 19 3 6964 18 3 6967 13 3 6965 19 3 6966 12 3 6968 14 3 6967 13 3 6966 12 3 6969 15 3 6967 13 3 6968 14 3 6956 2 3 6954 1 3 6940 0 3 6970 3 3 6954 1 3 6956 2 3 6971 4 3 6970 3 3 6956 2 3 6971 5 3 6970 3 3 6971 4 3 6972 6 3 6971 5 3 6971 4 3 6973 7 3 6971 5 3 6972 6 3 6974 8 3 6973 7 3 6972 6 3 6975 9 3 6973 7 3 6974 8 3 6976 18 3 6975 9 3 6974 8 3 6976 19 3 6975 9 3 6976 18 3 6977 12 3 6976 19 3 6976 18 3 6977 13 3 6976 19 3 6977 12 3 6978 14 3 6977 13 3 6977 12 3 6979 15 3 6977 13 3 6978 14 3 6982 2 3 6981 1 3 6980 0 3 6983 3 3 6981 1 3 6982 2 3 6984 4 3 6983 3 3 6982 2 3 6985 5 3 6983 3 3 6984 4 3 6986 6 3 6985 5 3 6984 4 3 6987 7 3 6985 5 3 6986 6 3 6988 8 3 6987 7 3 6986 6 3 6989 9 3 6987 7 3 6988 8 3 6990 18 3 6989 9 3 6988 8 3 6991 19 3 6989 9 3 6990 18 3 6992 12 3 6991 19 3 6990 18 3 6993 13 3 6991 19 3 6992 12 3 6994 14 3 6993 13 3 6992 12 3 6995 15 3 6993 13 3 6994 14 3 6996 2 3 6980 1 3 6981 0 3 6997 3 3 6980 1 3 6996 2 3 6998 4 3 6997 3 3 6996 2 3 6999 5 3 6997 3 3 6998 4 3 7000 6 3 6999 5 3 6998 4 3 7001 7 3 6999 5 3 7000 6 3 7002 8 3 7001 7 3 7000 6 3 7003 9 3 7001 7 3 7002 8 3 7004 18 3 7003 9 3 7002 8 3 7005 19 3 7003 9 3 7004 18 3 7006 12 3 7005 19 3 7004 18 3 7007 13 3 7005 19 3 7006 12 3 7008 14 3 7007 13 3 7006 12 3 7009 15 3 7007 13 3 7008 14 3 6982 2 3 7010 1 3 6980 0 3 7011 3 3 7010 1 3 6982 2 3 7012 4 3 7011 3 3 6982 2 3 7013 5 3 7011 3 3 7012 4 3 7014 6 3 7013 5 3 7012 4 3 7015 7 3 7013 5 3 7014 6 3 7016 8 3 7015 7 3 7014 6 3 7017 9 3 7015 7 3 7016 8 3 7018 18 3 7017 9 3 7016 8 3 7019 19 3 7017 9 3 7018 18 3 7020 12 3 7019 19 3 7018 18 3 7021 13 3 7019 19 3 7020 12 3 7022 14 3 7021 13 3 7020 12 3 7022 15 3 7021 13 3 7022 14 3 7024 2 3 7023 1 3 7010 0 3 7025 3 3 7023 1 3 7024 2 3 7026 4 3 7025 3 3 7024 2 3 7027 5 3 7025 3 3 7026 4 3 7028 6 3 7027 5 3 7026 4 3 7029 7 3 7027 5 3 7028 6 3 7030 8 3 7029 7 3 7028 6 3 7031 9 3 7029 7 3 7030 8 3 7032 18 3 7031 9 3 7030 8 3 7033 19 3 7031 9 3 7032 18 3 7034 12 3 7033 19 3 7032 18 3 7035 13 3 7033 19 3 7034 12 3 7036 14 3 7035 13 3 7034 12 3 7037 15 3 7035 13 3 7036 14 3 7039 2 3 6980 1 3 7038 0 3 7040 3 3 6980 1 3 7039 2 3 7041 4 3 7040 3 3 7039 2 3 7042 5 3 7040 3 3 7041 4 3 7043 6 3 7042 5 3 7041 4 3 7044 7 3 7042 5 3 7043 6 3 7045 8 3 7044 7 3 7043 6 3 7046 9 3 7044 7 3 7045 8 3 7047 18 3 7046 9 3 7045 8 3 7048 19 3 7046 9 3 7047 18 3 7049 12 3 7048 19 3 7047 18 3 7050 13 3 7048 19 3 7049 12 3 7051 14 3 7050 13 3 7049 12 3 7052 15 3 7050 13 3 7051 14 3 7024 2 3 7023 1 3 6981 0 3 7053 3 3 7023 1 3 7024 2 3 7054 4 3 7053 3 3 7024 2 3 7055 5 3 7053 3 3 7054 4 3 7056 6 3 7055 5 3 7054 4 3 7057 7 3 7055 5 3 7056 6 3 7058 8 3 7057 7 3 7056 6 3 7059 9 3 7057 7 3 7058 8 3 7060 18 3 7059 9 3 7058 8 3 7061 19 3 7059 9 3 7060 18 3 7062 12 3 7061 19 3 7060 18 3 7063 13 3 7061 19 3 7062 12 3 7064 14 3 7063 13 3 7062 12 3 7065 15 3 7063 13 3 7064 14 3 7068 2 3 7067 1 3 7066 0 3 7068 3 3 7067 1 3 7068 2 3 7069 4 3 7068 3 3 7068 2 3 7070 5 3 7068 3 3 7069 4 3 7071 6 3 7070 5 3 7069 4 3 7072 7 3 7070 5 3 7071 6 3 7073 8 3 7072 7 3 7071 6 3 7074 9 3 7072 7 3 7073 8 3 7075 18 3 7074 9 3 7073 8 3 7076 19 3 7074 9 3 7075 18 3 7077 12 3 7076 19 3 7075 18 3 7078 13 3 7076 19 3 7077 12 3 7079 14 3 7078 13 3 7077 12 3 7080 15 3 7078 13 3 7079 14 3 7083 2 3 7082 1 3 7081 0 3 7084 3 3 7082 1 3 7083 2 3 7085 4 3 7084 3 3 7083 2 3 7086 5 3 7084 3 3 7085 4 3 7087 6 3 7086 5 3 7085 4 3 7088 7 3 7086 5 3 7087 6 3 7089 8 3 7088 7 3 7087 6 3 7090 9 3 7088 7 3 7089 8 3 7091 18 3 7090 9 3 7089 8 3 7092 19 3 7090 9 3 7091 18 3 7093 12 3 7092 19 3 7091 18 3 7094 13 3 7092 19 3 7093 12 3 7095 14 3 7094 13 3 7093 12 3 7096 15 3 7094 13 3 7095 14 3 7068 2 3 7067 1 3 7082 0 3 7097 3 3 7067 1 3 7068 2 3 7098 4 3 7097 3 3 7068 2 3 7099 5 3 7097 3 3 7098 4 3 7100 6 3 7099 5 3 7098 4 3 7101 7 3 7099 5 3 7100 6 3 7102 8 3 7101 7 3 7100 6 3 7103 9 3 7101 7 3 7102 8 3 7104 18 3 7103 9 3 7102 8 3 7105 19 3 7103 9 3 7104 18 3 7106 12 3 7105 19 3 7104 18 3 7107 13 3 7105 19 3 7106 12 3 7108 14 3 7107 13 3 7106 12 3 7109 15 3 7107 13 3 7108 14 3 7111 2 3 7082 1 3 7110 0 3 7112 3 3 7082 1 3 7111 2 3 7113 4 3 7112 3 3 7111 2 3 7114 5 3 7112 3 3 7113 4 3 7115 6 3 7114 5 3 7113 4 3 7116 7 3 7114 5 3 7115 6 3 7117 8 3 7116 7 3 7115 6 3 7118 9 3 7116 7 3 7117 8 3 7119 18 3 7118 9 3 7117 8 3 7120 19 3 7118 9 3 7119 18 3 7121 12 3 7120 19 3 7119 18 3 7122 13 3 7120 19 3 7121 12 3 7123 14 3 7122 13 3 7121 12 3 7124 15 3 7122 13 3 7123 14 3 7127 2 0 7126 1 0 7125 0 3 7128 3 0 7126 1 0 7127 2 0 7129 4 0 7128 3 0 7127 2 0 7130 5 0 7128 3 0 7129 4 0 7131 6 0 7130 5 0 7129 4 0 7132 7 0 7130 5 0 7131 6 0 7133 8 1 7132 7 0 7131 6 0 7134 9 1 7132 7 0 7133 8 1 7135 18 1 7134 9 1 7133 8 1 7136 19 1 7134 9 1 7135 18 1 7137 12 1 7136 19 1 7135 18 1 7138 13 1 7136 19 1 7137 12 1 7139 14 1 7138 13 1 7137 12 1 7140 15 1 7138 13 1 7139 14 1 7142 2 3 6940 1 3 7141 0 3 7143 3 3 6940 1 3 7142 2 3 7144 4 3 7143 3 3 7142 2 3 7145 5 3 7143 3 3 7144 4 3 7146 6 3 7145 5 3 7144 4 3 7147 7 3 7145 5 3 7146 6 3 7148 8 3 7147 7 3 7146 6 3 7149 9 3 7147 7 3 7148 8 3 7150 18 3 7149 9 3 7148 8 3 7151 19 3 7149 9 3 7150 18 3 7152 12 3 7151 19 3 7150 18 3 7153 13 3 7151 19 3 7152 12 3 7154 14 3 7153 13 3 7152 12 3 7155 15 3 7153 13 3 7154 14 3 7157 2 0 7156 1 0 6940 0 3 7158 3 0 7156 1 0 7157 2 0 7159 4 0 7158 3 0 7157 2 0 7160 5 0 7158 3 0 7159 4 0 7161 6 0 7160 5 0 7159 4 0 7162 7 0 7160 5 0 7161 6 0 7163 8 1 7162 7 0 7161 6 0 7164 9 1 7162 7 0 7163 8 1 7165 18 1 7164 9 1 7163 8 1 7166 19 1 7164 9 1 7165 18 1 7167 12 1 7166 19 1 7165 18 1 7168 13 1 7166 19 1 7167 12 1 7169 14 1 7168 13 1 7167 12 1 7170 15 1 7168 13 1 7169 14 1 7173 2 3 7172 1 3 7171 0 3 7174 3 3 7172 1 3 7173 2 3 7175 4 3 7174 3 3 7173 2 3 7176 5 3 7174 3 3 7175 4 3 7177 6 3 7176 5 3 7175 4 3 7178 7 3 7176 5 3 7177 6 3 7179 8 3 7178 7 3 7177 6 3 7180 9 3 7178 7 3 7179 8 3 7181 18 3 7180 9 3 7179 8 3 7182 19 3 7180 9 3 7181 18 3 7183 12 3 7182 19 3 7181 18 3 7184 13 3 7182 19 3 7183 12 3 7185 14 3 7184 13 3 7183 12 3 7185 15 3 7184 13 3 7185 14 3 7188 2 3 7187 1 3 7186 0 3 7188 3 3 7187 1 3 7188 2 3 7189 4 3 7188 3 3 7188 2 3 7190 5 3 7188 3 3 7189 4 3 7191 6 3 7190 5 3 7189 4 3 7192 7 3 7190 5 3 7191 6 3 7193 8 3 7192 7 3 7191 6 3 7194 9 3 7192 7 3 7193 8 3 7195 18 3 7194 9 3 7193 8 3 7196 19 3 7194 9 3 7195 18 3 7197 12 3 7196 19 3 7195 18 3 7198 13 3 7196 19 3 7197 12 3 7199 14 3 7198 13 3 7197 12 3 7200 15 3 7198 13 3 7199 14 3 7203 2 3 7202 1 3 7201 0 3 7204 3 3 7202 1 3 7203 2 3 7205 4 3 7204 3 3 7203 2 3 7206 5 3 7204 3 3 7205 4 3 7207 6 3 7206 5 3 7205 4 3 7208 7 3 7206 5 3 7207 6 3 7209 8 3 7208 7 3 7207 6 3 7210 9 3 7208 7 3 7209 8 3 7211 18 3 7210 9 3 7209 8 3 7212 19 3 7210 9 3 7211 18 3 7213 12 3 7212 19 3 7211 18 3 7214 13 3 7212 19 3 7213 12 3 7215 14 3 7214 13 3 7213 12 3 7216 15 3 7214 13 3 7215 14 3 7188 2 3 7201 1 3 7202 0 3 7217 3 3 7201 1 3 7188 2 3 7218 4 3 7217 3 3 7188 2 3 7219 5 3 7217 3 3 7218 4 3 7220 6 3 7219 5 3 7218 4 3 7221 7 3 7219 5 3 7220 6 3 7222 8 3 7221 7 3 7220 6 3 7223 9 3 7221 7 3 7222 8 3 7224 18 3 7223 9 3 7222 8 3 7225 19 3 7223 9 3 7224 18 3 7226 12 3 7225 19 3 7224 18 3 7227 13 3 7225 19 3 7226 12 3 7228 14 3 7227 13 3 7226 12 3 7229 15 3 7227 13 3 7228 14 3 7230 2 3 7201 1 3 7186 0 3 7231 3 3 7201 1 3 7230 2 3 7232 4 3 7231 3 3 7230 2 3 7233 5 3 7231 3 3 7232 4 3 7234 6 3 7233 5 3 7232 4 3 7235 7 3 7233 5 3 7234 6 3 7236 8 3 7235 7 3 7234 6 3 7237 9 3 7235 7 3 7236 8 3 7238 18 3 7237 9 3 7236 8 3 7239 19 3 7237 9 3 7238 18 3 7240 12 3 7239 19 3 7238 18 3 7241 13 3 7239 19 3 7240 12 3 7242 14 3 7241 13 3 7240 12 3 7243 15 3 7241 13 3 7242 14 3 7230 2 3 7202 1 3 7244 0 3 7245 3 3 7202 1 3 7230 2 3 7246 4 3 7245 3 3 7230 2 3 7247 5 3 7245 3 3 7246 4 3 7248 6 3 7247 5 3 7246 4 3 7249 7 3 7247 5 3 7248 6 3 7250 8 3 7249 7 3 7248 6 3 7251 9 3 7249 7 3 7250 8 3 7252 18 3 7251 9 3 7250 8 3 7253 19 3 7251 9 3 7252 18 3 7254 12 3 7253 19 3 7252 18 3 7255 13 3 7253 19 3 7254 12 3 7256 14 3 7255 13 3 7254 12 3 7257 15 3 7255 13 3 7256 14 3 7230 2 3 7258 1 3 7187 0 3 7259 3 3 7258 1 3 7230 2 3 7260 4 3 7259 3 3 7230 2 3 7261 5 3 7259 3 3 7260 4 3 7262 6 3 7261 5 3 7260 4 3 7263 7 3 7261 5 3 7262 6 3 7264 8 3 7263 7 3 7262 6 3 7265 9 3 7263 7 3 7264 8 3 7266 18 3 7265 9 3 7264 8 3 7267 19 3 7265 9 3 7266 18 3 7268 12 3 7267 19 3 7266 18 3 7269 13 3 7267 19 3 7268 12 3 7270 14 3 7269 13 3 7268 12 3 7271 15 3 7269 13 3 7270 14 3 7273 2 3 7272 1 3 7272 0 3 7274 3 3 7272 1 3 7273 2 3 7275 4 3 7274 3 3 7273 2 3 7276 5 3 7274 3 3 7275 4 3 7277 6 3 7276 5 3 7275 4 3 7278 7 3 7276 5 3 7277 6 3 7279 8 3 7278 7 3 7277 6 3 7280 9 3 7278 7 3 7279 8 3 7281 18 3 7280 9 3 7279 8 3 7282 19 3 7280 9 3 7281 18 3 7283 12 3 7282 19 3 7281 18 3 7284 13 3 7282 19 3 7283 12 3 7285 14 3 7284 13 3 7283 12 3 7286 15 3 7284 13 3 7285 14 3 7288 2 3 7272 1 3 7287 0 3 7289 3 3 7272 1 3 7288 2 3 7290 4 3 7289 3 3 7288 2 3 7291 5 3 7289 3 3 7290 4 3 7292 6 3 7291 5 3 7290 4 3 7293 7 3 7291 5 3 7292 6 3 7294 8 3 7293 7 3 7292 6 3 7295 9 3 7293 7 3 7294 8 3 7296 18 3 7295 9 3 7294 8 3 7297 19 3 7295 9 3 7296 18 3 7298 12 3 7297 19 3 7296 18 3 7299 13 3 7297 19 3 7298 12 3 7300 14 3 7299 13 3 7298 12 3 7301 15 3 7299 13 3 7300 14 3 7273 2 3 7287 1 3 7272 0 3 7302 3 3 7287 1 3 7273 2 3 7303 4 3 7302 3 3 7273 2 3 7304 5 3 7302 3 3 7303 4 3 7305 6 3 7304 5 3 7303 4 3 7306 7 3 7304 5 3 7305 6 3 7307 8 3 7306 7 3 7305 6 3 7308 9 3 7306 7 3 7307 8 3 7309 18 3 7308 9 3 7307 8 3 7309 19 3 7308 9 3 7309 18 3 7310 12 3 7309 19 3 7309 18 3 7311 13 3 7309 19 3 7310 12 3 7312 14 3 7311 13 3 7310 12 3 7313 15 3 7311 13 3 7312 14 3 7315 2 3 7272 1 3 7314 0 3 7316 3 3 7272 1 3 7315 2 3 7317 4 3 7316 3 3 7315 2 3 7318 5 3 7316 3 3 7317 4 3 7319 6 3 7318 5 3 7317 4 3 7320 7 3 7318 5 3 7319 6 3 7321 8 3 7320 7 3 7319 6 3 7322 9 3 7320 7 3 7321 8 3 7323 18 3 7322 9 3 7321 8 3 7324 19 3 7322 9 3 7323 18 3 7325 12 3 7324 19 3 7323 18 3 7326 13 3 7324 19 3 7325 12 3 7327 14 3 7326 13 3 7325 12 3 7328 15 3 7326 13 3 7327 14 3 7331 2 0 7330 1 0 7329 0 3 7332 3 0 7330 1 0 7331 2 0 7333 4 0 7332 3 0 7331 2 0 7334 5 0 7332 3 0 7333 4 0 7335 6 0 7334 5 0 7333 4 0 7336 7 0 7334 5 0 7335 6 0 7337 8 1 7336 7 0 7335 6 0 7338 9 1 7336 7 0 7337 8 1 7339 18 1 7338 9 1 7337 8 1 7340 19 1 7338 9 1 7339 18 1 7341 12 1 7340 19 1 7339 18 1 7342 13 1 7340 19 1 7341 12 1 7343 14 1 7342 13 1 7341 12 1 7344 15 1 7342 13 1 7343 14 1 7173 2 3 7345 1 3 7171 0 3 7346 3 3 7345 1 3 7173 2 3 7347 4 3 7346 3 3 7173 2 3 7348 5 3 7346 3 3 7347 4 3 7349 6 3 7348 5 3 7347 4 3 7350 7 3 7348 5 3 7349 6 3 7351 8 3 7350 7 3 7349 6 3 7352 9 3 7350 7 3 7351 8 3 7353 18 3 7352 9 3 7351 8 3 7353 19 3 7352 9 3 7353 18 3 7354 12 3 7353 19 3 7353 18 3 7355 13 3 7353 19 3 7354 12 3 7356 14 3 7355 13 3 7354 12 3 7357 15 3 7355 13 3 7356 14 3 7173 2 3 7171 1 3 7358 0 3 7359 3 3 7171 1 3 7173 2 3 7360 4 3 7359 3 3 7173 2 3 7361 5 3 7359 3 3 7360 4 3 7362 6 3 7361 5 3 7360 4 3 7363 7 3 7361 5 3 7362 6 3 7364 8 3 7363 7 3 7362 6 3 7365 9 3 7363 7 3 7364 8 3 7366 18 3 7365 9 3 7364 8 3 7367 19 3 7365 9 3 7366 18 3 7368 12 3 7367 19 3 7366 18 3 7369 13 3 7367 19 3 7368 12 3 7370 14 3 7369 13 3 7368 12 3 7371 15 3 7369 13 3 7370 14 3 7373 2 3 7372 1 3 7171 0 3 7374 3 3 7372 1 3 7373 2 3 7375 4 3 7374 3 3 7373 2 3 7376 5 3 7374 3 3 7375 4 3 7377 6 3 7376 5 3 7375 4 3 7378 7 3 7376 5 3 7377 6 3 7379 8 3 7378 7 3 7377 6 3 7380 9 3 7378 7 3 7379 8 3 7381 18 3 7380 9 3 7379 8 3 7382 19 3 7380 9 3 7381 18 3 7383 12 3 7382 19 3 7381 18 3 7384 13 3 7382 19 3 7383 12 3 7385 14 3 7384 13 3 7383 12 3 7386 15 3 7384 13 3 7385 14 3 7389 2 3 7388 1 3 7387 0 3 7389 3 3 7388 1 3 7389 2 3 7390 4 3 7389 3 3 7389 2 3 7391 5 3 7389 3 3 7390 4 3 7392 6 3 7391 5 3 7390 4 3 7393 7 3 7391 5 3 7392 6 3 7394 8 3 7393 7 3 7392 6 3 7395 9 3 7393 7 3 7394 8 3 7396 18 3 7395 9 3 7394 8 3 7397 19 3 7395 9 3 7396 18 3 7398 12 3 7397 19 3 7396 18 3 7399 13 3 7397 19 3 7398 12 3 7400 14 3 7399 13 3 7398 12 3 7401 15 3 7399 13 3 7400 14 3 7403 2 3 7402 1 3 7388 0 3 7404 3 3 7402 1 3 7403 2 3 7405 4 3 7404 3 3 7403 2 3 7406 5 3 7404 3 3 7405 4 3 7407 6 3 7406 5 3 7405 4 3 7408 7 3 7406 5 3 7407 6 3 7409 8 3 7408 7 3 7407 6 3 7410 9 3 7408 7 3 7409 8 3 7411 18 3 7410 9 3 7409 8 3 7412 19 3 7410 9 3 7411 18 3 7413 12 3 7412 19 3 7411 18 3 7414 13 3 7412 19 3 7413 12 3 7415 14 3 7414 13 3 7413 12 3 7415 15 3 7414 13 3 7415 14 3 7417 2 3 7388 1 3 7416 0 3 7418 3 3 7388 1 3 7417 2 3 7419 4 3 7418 3 3 7417 2 3 7420 5 3 7418 3 3 7419 4 3 7421 6 3 7420 5 3 7419 4 3 7422 7 3 7420 5 3 7421 6 3 7423 8 3 7422 7 3 7421 6 3 7424 9 3 7422 7 3 7423 8 3 7425 18 3 7424 9 3 7423 8 3 7426 19 3 7424 9 3 7425 18 3 7427 12 3 7426 19 3 7425 18 3 7428 13 3 7426 19 3 7427 12 3 7429 14 3 7428 13 3 7427 12 3 7430 15 3 7428 13 3 7429 14 3 7431 2 3 7388 1 3 7387 0 3 7432 3 3 7388 1 3 7431 2 3 7433 4 3 7432 3 3 7431 2 3 7434 5 3 7432 3 3 7433 4 3 7435 6 3 7434 5 3 7433 4 3 7436 7 3 7434 5 3 7435 6 3 7437 8 3 7436 7 3 7435 6 3 7438 9 3 7436 7 3 7437 8 3 7439 18 3 7438 9 3 7437 8 3 7440 19 3 7438 9 3 7439 18 3 7441 12 3 7440 19 3 7439 18 3 7442 13 3 7440 19 3 7441 12 3 7443 14 3 7442 13 3 7441 12 3 7444 15 3 7442 13 3 7443 14 3 7446 2 3 7402 1 3 7445 0 3 7447 3 3 7402 1 3 7446 2 3 7448 4 3 7447 3 3 7446 2 3 7449 5 3 7447 3 3 7448 4 3 7450 6 3 7449 5 3 7448 4 3 7451 7 3 7449 5 3 7450 6 3 7452 8 3 7451 7 3 7450 6 3 7453 9 3 7451 7 3 7452 8 3 7454 18 3 7453 9 3 7452 8 3 7455 19 3 7453 9 3 7454 18 3 7456 12 3 7455 19 3 7454 18 3 7457 13 3 7455 19 3 7456 12 3 7458 14 3 7457 13 3 7456 12 3 7459 15 3 7457 13 3 7458 14 3 7431 2 3 7461 1 3 7460 0 3 7462 3 3 7461 1 3 7431 2 3 7463 4 3 7462 3 3 7431 2 3 7464 5 3 7462 3 3 7463 4 3 7465 6 3 7464 5 3 7463 4 3 7466 7 3 7464 5 3 7465 6 3 7467 8 3 7466 7 3 7465 6 3 7468 9 3 7466 7 3 7467 8 3 7469 18 3 7468 9 3 7467 8 3 7470 19 3 7468 9 3 7469 18 3 7471 12 3 7470 19 3 7469 18 3 7472 13 3 7470 19 3 7471 12 3 7473 14 3 7472 13 3 7471 12 3 7474 15 3 7472 13 3 7473 14 3 7477 2 3 7476 1 3 7475 0 3 7478 3 3 7476 1 3 7477 2 3 7479 4 3 7478 3 3 7477 2 3 7480 5 3 7478 3 3 7479 4 3 7481 6 3 7480 5 3 7479 4 3 7482 7 3 7480 5 3 7481 6 3 7483 8 3 7482 7 3 7481 6 3 7484 9 3 7482 7 3 7483 8 3 7485 18 3 7484 9 3 7483 8 3 7486 19 3 7484 9 3 7485 18 3 7487 12 3 7486 19 3 7485 18 3 7488 13 3 7486 19 3 7487 12 3 7489 14 3 7488 13 3 7487 12 3 7490 15 3 7488 13 3 7489 14 3 7477 2 3 7491 1 3 7476 0 3 7492 3 3 7491 1 3 7477 2 3 7493 4 3 7492 3 3 7477 2 3 7494 5 3 7492 3 3 7493 4 3 7495 6 3 7494 5 3 7493 4 3 7496 7 3 7494 5 3 7495 6 3 7497 8 3 7496 7 3 7495 6 3 7498 9 3 7496 7 3 7497 8 3 7499 18 3 7498 9 3 7497 8 3 7500 19 3 7498 9 3 7499 18 3 7501 12 3 7500 19 3 7499 18 3 7502 13 3 7500 19 3 7501 12 3 7503 14 3 7502 13 3 7501 12 3 7504 15 3 7502 13 3 7503 14 3 7477 2 3 7505 1 3 7491 0 3 7506 3 3 7505 1 3 7477 2 3 7507 4 3 7506 3 3 7477 2 3 7508 5 3 7506 3 3 7507 4 3 7509 6 3 7508 5 3 7507 4 3 7510 7 3 7508 5 3 7509 6 3 7511 8 3 7510 7 3 7509 6 3 7511 9 3 7510 7 3 7511 8 3 7512 18 3 7511 9 3 7511 8 3 7513 19 3 7511 9 3 7512 18 3 7514 12 3 7513 19 3 7512 18 3 7515 13 3 7513 19 3 7514 12 3 7516 14 3 7515 13 3 7514 12 3 7517 15 3 7515 13 3 7516 14 3 7519 2 3 7491 1 3 7518 0 3 7520 3 3 7491 1 3 7519 2 3 7521 4 3 7520 3 3 7519 2 3 7522 5 3 7520 3 3 7521 4 3 7523 6 3 7522 5 3 7521 4 3 7524 7 3 7522 5 3 7523 6 3 7525 8 3 7524 7 3 7523 6 3 7526 9 3 7524 7 3 7525 8 3 7527 18 3 7526 9 3 7525 8 3 7528 19 3 7526 9 3 7527 18 3 7529 12 3 7528 19 3 7527 18 3 7530 13 3 7528 19 3 7529 12 3 7531 14 3 7530 13 3 7529 12 3 7532 15 3 7530 13 3 7531 14 3 7534 2 2 7533 1 2 7476 0 3 7535 3 2 7533 1 2 7534 2 2 7536 4 2 7535 3 2 7534 2 2 7537 5 2 7535 3 2 7536 4 2 7538 6 2 7537 5 2 7536 4 2 7539 7 2 7537 5 2 7538 6 2 7540 8 2 7539 7 2 7538 6 2 7541 9 2 7539 7 2 7540 8 2 7542 18 2 7541 9 2 7540 8 2 7543 19 2 7541 9 2 7542 18 2 7544 12 2 7543 19 2 7542 18 2 7545 13 2 7543 19 2 7544 12 2 7546 14 2 7545 13 2 7544 12 2 7547 15 2 7545 13 2 7546 14 2 7549 2 3 7345 1 3 7548 0 3 7550 3 3 7345 1 3 7549 2 3 7551 4 3 7550 3 3 7549 2 3 7552 5 3 7550 3 3 7551 4 3 7553 6 3 7552 5 3 7551 4 3 7554 7 3 7552 5 3 7553 6 3 7555 8 3 7554 7 3 7553 6 3 7556 9 3 7554 7 3 7555 8 3 7557 18 3 7556 9 3 7555 8 3 7558 19 3 7556 9 3 7557 18 3 7559 12 3 7558 19 3 7557 18 3 7560 13 3 7558 19 3 7559 12 3 7561 14 3 7560 13 3 7559 12 3 7562 15 3 7560 13 3 7561 14 3 7373 2 3 7372 1 3 7172 0 3 7563 3 3 7372 1 3 7373 2 3 7564 4 3 7563 3 3 7373 2 3 7565 5 3 7563 3 3 7564 4 3 7566 6 3 7565 5 3 7564 4 3 7567 7 3 7565 5 3 7566 6 3 7568 8 3 7567 7 3 7566 6 3 7569 9 3 7567 7 3 7568 8 3 7570 18 3 7569 9 3 7568 8 3 7571 19 3 7569 9 3 7570 18 3 7572 12 3 7571 19 3 7570 18 3 7573 13 3 7571 19 3 7572 12 3 7574 14 3 7573 13 3 7572 12 3 7575 15 3 7573 13 3 7574 14 3 7577 2 3 7576 1 3 7576 0 3 7578 3 3 7576 1 3 7577 2 3 7579 4 3 7578 3 3 7577 2 3 7580 5 3 7578 3 3 7579 4 3 7581 6 3 7580 5 3 7579 4 3 7582 7 3 7580 5 3 7581 6 3 7583 8 3 7582 7 3 7581 6 3 7584 9 3 7582 7 3 7583 8 3 7585 18 3 7584 9 3 7583 8 3 7586 19 3 7584 9 3 7585 18 3 7587 12 3 7586 19 3 7585 18 3 7588 13 3 7586 19 3 7587 12 3 7589 14 3 7588 13 3 7587 12 3 7590 15 3 7588 13 3 7589 14 3 7593 2 3 7592 1 3 7591 0 3 7594 3 3 7592 1 3 7593 2 3 7595 4 3 7594 3 3 7593 2 3 7596 5 3 7594 3 3 7595 4 3 7597 6 3 7596 5 3 7595 4 3 7598 7 3 7596 5 3 7597 6 3 7599 8 3 7598 7 3 7597 6 3 7600 9 3 7598 7 3 7599 8 3 7601 18 3 7600 9 3 7599 8 3 7602 19 3 7600 9 3 7601 18 3 7603 12 3 7602 19 3 7601 18 3 7604 13 3 7602 19 3 7603 12 3 7605 14 3 7604 13 3 7603 12 3 7605 15 3 7604 13 3 7605 14 3 7593 2 3 7607 1 3 7606 0 3 7608 3 3 7607 1 3 7593 2 3 7609 4 3 7608 3 3 7593 2 3 7610 5 3 7608 3 3 7609 4 3 7611 6 3 7610 5 3 7609 4 3 7612 7 3 7610 5 3 7611 6 3 7613 8 3 7612 7 3 7611 6 3 7614 9 3 7612 7 3 7613 8 3 7615 18 3 7614 9 3 7613 8 3 7616 19 3 7614 9 3 7615 18 3 7617 12 3 7616 19 3 7615 18 3 7617 13 3 7616 19 3 7617 12 3 7618 14 3 7617 13 3 7617 12 3 7619 15 3 7617 13 3 7618 14 3 7593 2 3 7620 1 3 7607 0 3 7621 3 3 7620 1 3 7593 2 3 7622 4 3 7621 3 3 7593 2 3 7623 5 3 7621 3 3 7622 4 3 7624 6 3 7623 5 3 7622 4 3 7625 7 3 7623 5 3 7624 6 3 7626 8 3 7625 7 3 7624 6 3 7626 9 3 7625 7 3 7626 8 3 7627 18 3 7626 9 3 7626 8 3 7628 19 3 7626 9 3 7627 18 3 7629 12 3 7628 19 3 7627 18 3 7630 13 3 7628 19 3 7629 12 3 7631 14 3 7630 13 3 7629 12 3 7632 15 3 7630 13 3 7631 14 3 7634 2 3 7606 1 3 7633 0 3 7635 3 3 7606 1 3 7634 2 3 7636 4 3 7635 3 3 7634 2 3 7637 5 3 7635 3 3 7636 4 3 7638 6 3 7637 5 3 7636 4 3 7639 7 3 7637 5 3 7638 6 3 7640 8 3 7639 7 3 7638 6 3 7641 9 3 7639 7 3 7640 8 3 7642 18 3 7641 9 3 7640 8 3 7643 19 3 7641 9 3 7642 18 3 7644 12 3 7643 19 3 7642 18 3 7645 13 3 7643 19 3 7644 12 3 7646 14 3 7645 13 3 7644 12 3 7647 15 3 7645 13 3 7646 14 3 7650 2 3 7649 1 3 7648 0 3 7651 3 3 7649 1 3 7650 2 3 7652 4 3 7651 3 3 7650 2 3 7653 5 3 7651 3 3 7652 4 3 7654 6 3 7653 5 3 7652 4 3 7655 7 3 7653 5 3 7654 6 3 7656 8 3 7655 7 3 7654 6 3 7657 9 3 7655 7 3 7656 8 3 7658 18 3 7657 9 3 7656 8 3 7659 19 3 7657 9 3 7658 18 3 7660 12 3 7659 19 3 7658 18 3 7661 13 3 7659 19 3 7660 12 3 7662 14 3 7661 13 3 7660 12 3 7663 15 3 7661 13 3 7662 14 3 7634 2 3 7620 1 3 7664 0 3 7665 3 3 7620 1 3 7634 2 3 7666 4 3 7665 3 3 7634 2 3 7667 5 3 7665 3 3 7666 4 3 7668 6 3 7667 5 3 7666 4 3 7669 7 3 7667 5 3 7668 6 3 7670 8 3 7669 7 3 7668 6 3 7671 9 3 7669 7 3 7670 8 3 7672 18 3 7671 9 3 7670 8 3 7673 19 3 7671 9 3 7672 18 3 7674 12 3 7673 19 3 7672 18 3 7675 13 3 7673 19 3 7674 12 3 7676 14 3 7675 13 3 7674 12 3 7677 15 3 7675 13 3 7676 14 3 7680 2 3 7679 1 3 7678 0 3 7680 3 3 7679 1 3 7680 2 3 7681 4 3 7680 3 3 7680 2 3 7682 5 3 7680 3 3 7681 4 3 7683 6 3 7682 5 3 7681 4 3 7684 7 3 7682 5 3 7683 6 3 7685 8 3 7684 7 3 7683 6 3 7686 9 3 7684 7 3 7685 8 3 7687 18 3 7686 9 3 7685 8 3 7688 19 3 7686 9 3 7687 18 3 7689 12 3 7688 19 3 7687 18 3 7690 13 3 7688 19 3 7689 12 3 7691 14 3 7690 13 3 7689 12 3 7691 15 3 7690 13 3 7691 14 3 7694 2 3 7693 1 3 7692 0 3 7695 3 3 7693 1 3 7694 2 3 7696 4 3 7695 3 3 7694 2 3 7697 5 3 7695 3 3 7696 4 3 7698 6 3 7697 5 3 7696 4 3 7699 7 3 7697 5 3 7698 6 3 7700 8 3 7699 7 3 7698 6 3 7701 9 3 7699 7 3 7700 8 3 7702 18 3 7701 9 3 7700 8 3 7702 19 3 7701 9 3 7702 18 3 7703 12 3 7702 19 3 7702 18 3 7703 13 3 7702 19 3 7703 12 3 7704 14 3 7703 13 3 7703 12 3 7705 15 3 7703 13 3 7704 14 3 7694 2 3 7692 1 3 7679 0 3 7706 3 3 7692 1 3 7694 2 3 7707 4 3 7706 3 3 7694 2 3 7708 5 3 7706 3 3 7707 4 3 7709 6 3 7708 5 3 7707 4 3 7710 7 3 7708 5 3 7709 6 3 7711 8 3 7710 7 3 7709 6 3 7712 9 3 7710 7 3 7711 8 3 7713 18 3 7712 9 3 7711 8 3 7713 19 3 7712 9 3 7713 18 3 7714 12 3 7713 19 3 7713 18 3 7715 13 3 7713 19 3 7714 12 3 7716 14 3 7715 13 3 7714 12 3 7717 15 3 7715 13 3 7716 14 3 7719 2 3 7679 1 3 7718 0 3 7720 3 3 7679 1 3 7719 2 3 7721 4 3 7720 3 3 7719 2 3 7722 5 3 7720 3 3 7721 4 3 7723 6 3 7722 5 3 7721 4 3 7724 7 3 7722 5 3 7723 6 3 7725 8 3 7724 7 3 7723 6 3 7726 9 3 7724 7 3 7725 8 3 7727 18 3 7726 9 3 7725 8 3 7728 19 3 7726 9 3 7727 18 3 7729 12 3 7728 19 3 7727 18 3 7730 13 3 7728 19 3 7729 12 3 7731 14 3 7730 13 3 7729 12 3 7732 15 3 7730 13 3 7731 14 3 7734 2 2 7733 1 2 7679 0 3 7735 3 2 7733 1 2 7734 2 2 7736 4 2 7735 3 2 7734 2 2 7737 5 2 7735 3 2 7736 4 2 7738 6 2 7737 5 2 7736 4 2 7739 7 2 7737 5 2 7738 6 2 7740 8 2 7739 7 2 7738 6 2 7741 9 2 7739 7 2 7740 8 2 7742 18 2 7741 9 2 7740 8 2 7743 19 2 7741 9 2 7742 18 2 7744 12 2 7743 19 2 7742 18 2 7745 13 2 7743 19 2 7744 12 2 7746 14 2 7745 13 2 7744 12 2 7747 15 2 7745 13 2 7746 14 2 7750 2 3 7749 1 3 7748 0 3 7751 3 3 7749 1 3 7750 2 3 7752 4 3 7751 3 3 7750 2 3 7753 5 3 7751 3 3 7752 4 3 7754 6 3 7753 5 3 7752 4 3 7755 7 3 7753 5 3 7754 6 3 7756 8 3 7755 7 3 7754 6 3 7756 9 3 7755 7 3 7756 8 3 7757 18 3 7756 9 3 7756 8 3 7758 19 3 7756 9 3 7757 18 3 7759 12 3 7758 19 3 7757 18 3 7760 13 3 7758 19 3 7759 12 3 7761 14 3 7760 13 3 7759 12 3 7762 15 3 7760 13 3 7761 14 3 7763 2 3 7748 1 3 7576 0 3 7764 3 3 7748 1 3 7763 2 3 7765 4 3 7764 3 3 7763 2 3 7765 5 3 7764 3 3 7765 4 3 7766 6 3 7765 5 3 7765 4 3 7767 7 3 7765 5 3 7766 6 3 7768 8 3 7767 7 3 7766 6 3 7769 9 3 7767 7 3 7768 8 3 7770 18 3 7769 9 3 7768 8 3 7771 19 3 7769 9 3 7770 18 3 7772 12 3 7771 19 3 7770 18 3 7773 13 3 7771 19 3 7772 12 3 7774 14 3 7773 13 3 7772 12 3 7775 15 3 7773 13 3 7774 14 3 7777 2 3 7576 1 3 7776 0 3 7778 3 3 7576 1 3 7777 2 3 7779 4 3 7778 3 3 7777 2 3 7780 5 3 7778 3 3 7779 4 3 7781 6 3 7780 5 3 7779 4 3 7782 7 3 7780 5 3 7781 6 3 7783 8 3 7782 7 3 7781 6 3 7784 9 3 7782 7 3 7783 8 3 7785 18 3 7784 9 3 7783 8 3 7786 19 3 7784 9 3 7785 18 3 7787 12 3 7786 19 3 7785 18 3 7788 13 3 7786 19 3 7787 12 3 7789 14 3 7788 13 3 7787 12 3 7790 15 3 7788 13 3 7789 14 3 7793 2 3 7792 1 3 7791 0 3 7793 3 3 7792 1 3 7793 2 3 7794 4 3 7793 3 3 7793 2 3 7794 5 3 7793 3 3 7794 4 3 7795 6 3 7794 5 3 7794 4 3 7796 7 3 7794 5 3 7795 6 3 7797 8 3 7796 7 3 7795 6 3 7798 9 3 7796 7 3 7797 8 3 7799 18 3 7798 9 3 7797 8 3 7800 19 3 7798 9 3 7799 18 3 7801 12 3 7800 19 3 7799 18 3 7802 13 3 7800 19 3 7801 12 3 7803 14 3 7802 13 3 7801 12 3 7803 15 3 7802 13 3 7803 14 3 7806 2 3 7805 1 3 7804 0 3 7807 3 3 7805 1 3 7806 2 3 7808 4 3 7807 3 3 7806 2 3 7809 5 3 7807 3 3 7808 4 3 7810 6 3 7809 5 3 7808 4 3 7811 7 3 7809 5 3 7810 6 3 7812 8 3 7811 7 3 7810 6 3 7813 9 3 7811 7 3 7812 8 3 7814 18 3 7813 9 3 7812 8 3 7815 19 3 7813 9 3 7814 18 3 7816 12 3 7815 19 3 7814 18 3 7817 13 3 7815 19 3 7816 12 3 7818 14 3 7817 13 3 7816 12 3 7818 15 3 7817 13 3 7818 14 3 7793 2 3 7820 1 3 7819 0 3 7821 3 3 7820 1 3 7793 2 3 7822 4 3 7821 3 3 7793 2 3 7823 5 3 7821 3 3 7822 4 3 7824 6 3 7823 5 3 7822 4 3 7825 7 3 7823 5 3 7824 6 3 7826 8 3 7825 7 3 7824 6 3 7827 9 3 7825 7 3 7826 8 3 7828 18 3 7827 9 3 7826 8 3 7829 19 3 7827 9 3 7828 18 3 7830 12 3 7829 19 3 7828 18 3 7831 13 3 7829 19 3 7830 12 3 7832 14 3 7831 13 3 7830 12 3 7833 15 3 7831 13 3 7832 14 3 7835 2 3 7804 1 3 7834 0 3 7836 3 3 7804 1 3 7835 2 3 7837 4 3 7836 3 3 7835 2 3 7838 5 3 7836 3 3 7837 4 3 7839 6 3 7838 5 3 7837 4 3 7840 7 3 7838 5 3 7839 6 3 7841 8 3 7840 7 3 7839 6 3 7842 9 3 7840 7 3 7841 8 3 7843 18 3 7842 9 3 7841 8 3 7844 19 3 7842 9 3 7843 18 3 7845 12 3 7844 19 3 7843 18 3 7846 13 3 7844 19 3 7845 12 3 7847 14 3 7846 13 3 7845 12 3 7848 15 3 7846 13 3 7847 14 3 7850 2 3 7805 1 3 7849 0 3 7851 3 3 7805 1 3 7850 2 3 7852 4 3 7851 3 3 7850 2 3 7853 5 3 7851 3 3 7852 4 3 7854 6 3 7853 5 3 7852 4 3 7855 7 3 7853 5 3 7854 6 3 7856 8 3 7855 7 3 7854 6 3 7857 9 3 7855 7 3 7856 8 3 7858 18 3 7857 9 3 7856 8 3 7859 19 3 7857 9 3 7858 18 3 7860 12 3 7859 19 3 7858 18 3 7861 13 3 7859 19 3 7860 12 3 7862 14 3 7861 13 3 7860 12 3 7863 15 3 7861 13 3 7862 14 3 7835 2 3 7864 1 3 7791 0 3 7865 3 3 7864 1 3 7835 2 3 7866 4 3 7865 3 3 7835 2 3 7867 5 3 7865 3 3 7866 4 3 7868 6 3 7867 5 3 7866 4 3 7869 7 3 7867 5 3 7868 6 3 7870 8 3 7869 7 3 7868 6 3 7871 9 3 7869 7 3 7870 8 3 7872 18 3 7871 9 3 7870 8 3 7873 19 3 7871 9 3 7872 18 3 7874 12 3 7873 19 3 7872 18 3 7875 13 3 7873 19 3 7874 12 3 7876 14 3 7875 13 3 7874 12 3 7877 15 3 7875 13 3 7876 14 3 7879 2 3 7878 1 3 7878 0 3 7880 3 3 7878 1 3 7879 2 3 7881 4 3 7880 3 3 7879 2 3 7882 5 3 7880 3 3 7881 4 3 7883 6 3 7882 5 3 7881 4 3 7884 7 3 7882 5 3 7883 6 3 7885 8 3 7884 7 3 7883 6 3 7886 9 3 7884 7 3 7885 8 3 7887 18 3 7886 9 3 7885 8 3 7888 19 3 7886 9 3 7887 18 3 7889 12 3 7888 19 3 7887 18 3 7890 13 3 7888 19 3 7889 12 3 7891 14 3 7890 13 3 7889 12 3 7891 15 3 7890 13 3 7891 14 3 7894 2 3 7893 1 3 7892 0 3 7895 3 3 7893 1 3 7894 2 3 7896 4 3 7895 3 3 7894 2 3 7897 5 3 7895 3 3 7896 4 3 7898 6 3 7897 5 3 7896 4 3 7899 7 3 7897 5 3 7898 6 3 7900 8 3 7899 7 3 7898 6 3 7901 9 3 7899 7 3 7900 8 3 7902 18 3 7901 9 3 7900 8 3 7903 19 3 7901 9 3 7902 18 3 7904 12 3 7903 19 3 7902 18 3 7905 13 3 7903 19 3 7904 12 3 7906 14 3 7905 13 3 7904 12 3 7907 15 3 7905 13 3 7906 14 3 7879 2 3 7892 1 3 7878 0 3 7908 3 3 7892 1 3 7879 2 3 7909 4 3 7908 3 3 7879 2 3 7910 5 3 7908 3 3 7909 4 3 7911 6 3 7910 5 3 7909 4 3 7912 7 3 7910 5 3 7911 6 3 7913 8 3 7912 7 3 7911 6 3 7914 9 3 7912 7 3 7913 8 3 7915 18 3 7914 9 3 7913 8 3 7916 19 3 7914 9 3 7915 18 3 7917 12 3 7916 19 3 7915 18 3 7918 13 3 7916 19 3 7917 12 3 7919 14 3 7918 13 3 7917 12 3 7920 15 3 7918 13 3 7919 14 3 7922 2 3 7878 1 3 7921 0 3 7923 3 3 7878 1 3 7922 2 3 7924 4 3 7923 3 3 7922 2 3 7925 5 3 7923 3 3 7924 4 3 7926 6 3 7925 5 3 7924 4 3 7927 7 3 7925 5 3 7926 6 3 7928 8 3 7927 7 3 7926 6 3 7929 9 3 7927 7 3 7928 8 3 7930 18 3 7929 9 3 7928 8 3 7931 19 3 7929 9 3 7930 18 3 7932 12 3 7931 19 3 7930 18 3 7933 13 3 7931 19 3 7932 12 3 7934 14 3 7933 13 3 7932 12 3 7935 15 3 7933 13 3 7934 14 3 7937 2 0 7936 1 0 7878 0 3 7938 3 0 7936 1 0 7937 2 0 7939 4 0 7938 3 0 7937 2 0 7940 5 0 7938 3 0 7939 4 0 7941 6 0 7940 5 0 7939 4 0 7942 7 0 7940 5 0 7941 6 0 7943 8 1 7942 7 0 7941 6 0 7944 9 1 7942 7 0 7943 8 1 7945 18 1 7944 9 1 7943 8 1 7946 19 1 7944 9 1 7945 18 1 7947 12 1 7946 19 1 7945 18 1 7948 13 1 7946 19 1 7947 12 1 7949 14 1 7948 13 1 7947 12 1 7950 15 1 7948 13 1 7949 14 1 7952 2 1 7951 1 1 7576 0 3 7953 3 1 7951 1 1 7952 2 1 7954 4 1 7953 3 1 7952 2 1 7955 5 1 7953 3 1 7954 4 1 7956 6 1 7955 5 1 7954 4 1 7957 7 1 7955 5 1 7956 6 1 7958 8 1 7957 7 1 7956 6 1 7959 9 1 7957 7 1 7958 8 1 7960 18 1 7959 9 1 7958 8 1 7961 19 1 7959 9 1 7960 18 1 7962 12 1 7961 19 1 7960 18 1 7963 13 1 7961 19 1 7962 12 1 7964 14 1 7963 13 1 7962 12 1 7965 15 1 7963 13 1 7964 14 1 7968 2 3 7967 1 3 7966 0 3 7968 3 3 7967 1 3 7968 2 3 7969 4 3 7968 3 3 7968 2 3 7970 5 3 7968 3 3 7969 4 3 7971 6 3 7970 5 3 7969 4 3 7972 7 3 7970 5 3 7971 6 3 7973 8 3 7972 7 3 7971 6 3 7974 9 3 7972 7 3 7973 8 3 7975 18 3 7974 9 3 7973 8 3 7976 19 3 7974 9 3 7975 18 3 7977 12 3 7976 19 3 7975 18 3 7978 13 3 7976 19 3 7977 12 3 7979 14 3 7978 13 3 7977 12 3 7980 15 3 7978 13 3 7979 14 3 7983 2 3 7982 1 3 7981 0 3 7984 3 3 7982 1 3 7983 2 3 7985 4 3 7984 3 3 7983 2 3 7986 5 3 7984 3 3 7985 4 3 7987 6 3 7986 5 3 7985 4 3 7988 7 3 7986 5 3 7987 6 3 7989 8 3 7988 7 3 7987 6 3 7990 9 3 7988 7 3 7989 8 3 7991 18 3 7990 9 3 7989 8 3 7992 19 3 7990 9 3 7991 18 3 7993 12 3 7992 19 3 7991 18 3 7994 13 3 7992 19 3 7993 12 3 7995 14 3 7994 13 3 7993 12 3 7996 15 3 7994 13 3 7995 14 3 7998 2 3 7997 1 3 7997 0 3 7999 3 3 7997 1 3 7998 2 3 8000 4 3 7999 3 3 7998 2 3 8001 5 3 7999 3 3 8000 4 3 8002 6 3 8001 5 3 8000 4 3 8003 7 3 8001 5 3 8002 6 3 8004 8 3 8003 7 3 8002 6 3 8005 9 3 8003 7 3 8004 8 3 8006 18 3 8005 9 3 8004 8 3 8007 19 3 8005 9 3 8006 18 3 8008 12 3 8007 19 3 8006 18 3 8009 13 3 8007 19 3 8008 12 3 8010 14 3 8009 13 3 8008 12 3 8011 15 3 8009 13 3 8010 14 3 8013 2 3 8012 1 3 7997 0 3 8014 3 3 8012 1 3 8013 2 3 8015 4 3 8014 3 3 8013 2 3 8016 5 3 8014 3 3 8015 4 3 8017 6 3 8016 5 3 8015 4 3 8018 7 3 8016 5 3 8017 6 3 8019 8 3 8018 7 3 8017 6 3 8020 9 3 8018 7 3 8019 8 3 8021 18 3 8020 9 3 8019 8 3 8022 19 3 8020 9 3 8021 18 3 8023 12 3 8022 19 3 8021 18 3 8024 13 3 8022 19 3 8023 12 3 8025 14 3 8024 13 3 8023 12 3 8026 15 3 8024 13 3 8025 14 3 7998 2 3 7997 1 3 8012 0 3 8027 3 3 7997 1 3 7998 2 3 8028 4 3 8027 3 3 7998 2 3 8029 5 3 8027 3 3 8028 4 3 8030 6 3 8029 5 3 8028 4 3 8031 7 3 8029 5 3 8030 6 3 8032 8 3 8031 7 3 8030 6 3 8033 9 3 8031 7 3 8032 8 3 8034 18 3 8033 9 3 8032 8 3 8035 19 3 8033 9 3 8034 18 3 8036 12 3 8035 19 3 8034 18 3 8037 13 3 8035 19 3 8036 12 3 8038 14 3 8037 13 3 8036 12 3 8039 15 3 8037 13 3 8038 14 3 8041 2 3 8040 1 3 7997 0 3 8042 3 3 8040 1 3 8041 2 3 8043 4 3 8042 3 3 8041 2 3 8044 5 3 8042 3 3 8043 4 3 8045 6 3 8044 5 3 8043 4 3 8046 7 3 8044 5 3 8045 6 3 8047 8 3 8046 7 3 8045 6 3 8048 9 3 8046 7 3 8047 8 3 8049 18 3 8048 9 3 8047 8 3 8050 19 3 8048 9 3 8049 18 3 8051 12 3 8050 19 3 8049 18 3 8052 13 3 8050 19 3 8051 12 3 8053 14 3 8052 13 3 8051 12 3 8054 15 3 8052 13 3 8053 14 3 8056 2 3 8012 1 3 8055 0 3 8057 3 3 8012 1 3 8056 2 3 8058 4 3 8057 3 3 8056 2 3 8059 5 3 8057 3 3 8058 4 3 8060 6 3 8059 5 3 8058 4 3 8061 7 3 8059 5 3 8060 6 3 8062 8 3 8061 7 3 8060 6 3 8063 9 3 8061 7 3 8062 8 3 8064 18 3 8063 9 3 8062 8 3 8065 19 3 8063 9 3 8064 18 3 8066 12 3 8065 19 3 8064 18 3 8067 13 3 8065 19 3 8066 12 3 8068 14 3 8067 13 3 8066 12 3 8069 15 3 8067 13 3 8068 14 3 8041 2 3 8055 1 3 8070 0 3 8071 3 3 8055 1 3 8041 2 3 8072 4 3 8071 3 3 8041 2 3 8073 5 3 8071 3 3 8072 4 3 8074 6 3 8073 5 3 8072 4 3 8075 7 3 8073 5 3 8074 6 3 8076 8 3 8075 7 3 8074 6 3 8077 9 3 8075 7 3 8076 8 3 8078 18 3 8077 9 3 8076 8 3 8079 19 3 8077 9 3 8078 18 3 8080 12 3 8079 19 3 8078 18 3 8081 13 3 8079 19 3 8080 12 3 8082 14 3 8081 13 3 8080 12 3 8083 15 3 8081 13 3 8082 14 3 8086 2 3 8085 1 3 8084 0 3 8087 3 3 8085 1 3 8086 2 3 8088 4 3 8087 3 3 8086 2 3 8089 5 3 8087 3 3 8088 4 3 8090 6 3 8089 5 3 8088 4 3 8091 7 3 8089 5 3 8090 6 3 8092 8 3 8091 7 3 8090 6 3 8093 9 3 8091 7 3 8092 8 3 8094 18 3 8093 9 3 8092 8 3 8095 19 3 8093 9 3 8094 18 3 8096 12 3 8095 19 3 8094 18 3 8097 13 3 8095 19 3 8096 12 3 8098 14 3 8097 13 3 8096 12 3 8099 15 3 8097 13 3 8098 14 3 8101 2 3 8100 1 3 8085 0 3 8102 3 3 8100 1 3 8101 2 3 8103 4 3 8102 3 3 8101 2 3 8104 5 3 8102 3 3 8103 4 3 8105 6 3 8104 5 3 8103 4 3 8106 7 3 8104 5 3 8105 6 3 8107 8 3 8106 7 3 8105 6 3 8108 9 3 8106 7 3 8107 8 3 8109 18 3 8108 9 3 8107 8 3 8110 19 3 8108 9 3 8109 18 3 8111 12 3 8110 19 3 8109 18 3 8112 13 3 8110 19 3 8111 12 3 8113 14 3 8112 13 3 8111 12 3 8114 15 3 8112 13 3 8113 14 3 8115 2 3 8085 1 3 8100 0 3 8116 3 3 8085 1 3 8115 2 3 8117 4 3 8116 3 3 8115 2 3 8117 5 3 8116 3 3 8117 4 3 8118 6 3 8117 5 3 8117 4 3 8119 7 3 8117 5 3 8118 6 3 8120 8 3 8119 7 3 8118 6 3 8121 9 3 8119 7 3 8120 8 3 8122 18 3 8121 9 3 8120 8 3 8122 19 3 8121 9 3 8122 18 3 8123 12 3 8122 19 3 8122 18 3 8124 13 3 8122 19 3 8123 12 3 8125 14 3 8124 13 3 8123 12 3 8126 15 3 8124 13 3 8125 14 3 8128 2 3 8100 1 3 8127 0 3 8129 3 3 8100 1 3 8128 2 3 8130 4 3 8129 3 3 8128 2 3 8131 5 3 8129 3 3 8130 4 3 8132 6 3 8131 5 3 8130 4 3 8133 7 3 8131 5 3 8132 6 3 8134 8 3 8133 7 3 8132 6 3 8135 9 3 8133 7 3 8134 8 3 8136 18 3 8135 9 3 8134 8 3 8137 19 3 8135 9 3 8136 18 3 8138 12 3 8137 19 3 8136 18 3 8139 13 3 8137 19 3 8138 12 3 8140 14 3 8139 13 3 8138 12 3 8141 15 3 8139 13 3 8140 14 3 8143 2 1 8142 1 1 8084 0 3 8144 3 1 8142 1 1 8143 2 1 8145 4 1 8144 3 1 8143 2 1 8146 5 1 8144 3 1 8145 4 1 8147 6 1 8146 5 1 8145 4 1 8148 7 1 8146 5 1 8147 6 1 8149 8 1 8148 7 1 8147 6 1 8150 9 1 8148 7 1 8149 8 1 8151 18 1 8150 9 1 8149 8 1 8152 19 1 8150 9 1 8151 18 1 8153 12 1 8152 19 1 8151 18 1 8154 13 1 8152 19 1 8153 12 1 8155 14 1 8154 13 1 8153 12 1 8156 15 1 8154 13 1 8155 14 1 7968 2 3 7981 1 3 8157 0 3 8158 3 3 7981 1 3 7968 2 3 8159 4 3 8158 3 3 7968 2 3 8160 5 3 8158 3 3 8159 4 3 8161 6 3 8160 5 3 8159 4 3 8162 7 3 8160 5 3 8161 6 3 8163 8 3 8162 7 3 8161 6 3 8164 9 3 8162 7 3 8163 8 3 8165 18 3 8164 9 3 8163 8 3 8166 19 3 8164 9 3 8165 18 3 8167 12 3 8166 19 3 8165 18 3 8168 13 3 8166 19 3 8167 12 3 8169 14 3 8168 13 3 8167 12 3 8170 15 3 8168 13 3 8169 14 3 8171 2 3 7981 1 3 7967 0 3 8172 3 3 7981 1 3 8171 2 3 8173 4 3 8172 3 3 8171 2 3 8174 5 3 8172 3 3 8173 4 3 8175 6 3 8174 5 3 8173 4 3 8176 7 3 8174 5 3 8175 6 3 8177 8 3 8176 7 3 8175 6 3 8178 9 3 8176 7 3 8177 8 3 8179 18 3 8178 9 3 8177 8 3 8180 19 3 8178 9 3 8179 18 3 8181 12 3 8180 19 3 8179 18 3 8182 13 3 8180 19 3 8181 12 3 8183 14 3 8182 13 3 8181 12 3 8184 15 3 8182 13 3 8183 14 3 8186 2 3 7966 1 3 8185 0 3 8187 3 3 7966 1 3 8186 2 3 8188 4 3 8187 3 3 8186 2 3 8189 5 3 8187 3 3 8188 4 3 8190 6 3 8189 5 3 8188 4 3 8191 7 3 8189 5 3 8190 6 3 8192 8 3 8191 7 3 8190 6 3 8193 9 3 8191 7 3 8192 8 3 8194 18 3 8193 9 3 8192 8 3 8195 19 3 8193 9 3 8194 18 3 8196 12 3 8195 19 3 8194 18 3 8197 13 3 8195 19 3 8196 12 3 8198 14 3 8197 13 3 8196 12 3 8199 15 3 8197 13 3 8198 14 3 8202 2 3 8201 1 3 8200 0 3 8203 3 3 8201 1 3 8202 2 3 8204 4 3 8203 3 3 8202 2 3 8205 5 3 8203 3 3 8204 4 3 8206 6 3 8205 5 3 8204 4 3 8207 7 3 8205 5 3 8206 6 3 8208 8 3 8207 7 3 8206 6 3 8209 9 3 8207 7 3 8208 8 3 8210 18 3 8209 9 3 8208 8 3 8211 19 3 8209 9 3 8210 18 3 8212 12 3 8211 19 3 8210 18 3 8213 13 3 8211 19 3 8212 12 3 8214 14 3 8213 13 3 8212 12 3 8215 15 3 8213 13 3 8214 14 3 8203 2 3 8216 1 3 8201 0 3 8217 3 3 8216 1 3 8203 2 3 8218 4 3 8217 3 3 8203 2 3 8219 5 3 8217 3 3 8218 4 3 8220 6 3 8219 5 3 8218 4 3 8221 7 3 8219 5 3 8220 6 3 8222 8 3 8221 7 3 8220 6 3 8223 9 3 8221 7 3 8222 8 3 8224 18 3 8223 9 3 8222 8 3 8225 19 3 8223 9 3 8224 18 3 8226 12 3 8225 19 3 8224 18 3 8227 13 3 8225 19 3 8226 12 3 8228 14 3 8227 13 3 8226 12 3 8229 15 3 8227 13 3 8228 14 3 8202 2 3 8230 1 3 8216 0 3 8231 3 3 8230 1 3 8202 2 3 8232 4 3 8231 3 3 8202 2 3 8233 5 3 8231 3 3 8232 4 3 8234 6 3 8233 5 3 8232 4 3 8235 7 3 8233 5 3 8234 6 3 8236 8 3 8235 7 3 8234 6 3 8237 9 3 8235 7 3 8236 8 3 8238 18 3 8237 9 3 8236 8 3 8238 19 3 8237 9 3 8238 18 3 8239 12 3 8238 19 3 8238 18 3 8240 13 3 8238 19 3 8239 12 3 8241 14 3 8240 13 3 8239 12 3 8242 15 3 8240 13 3 8241 14 3 8245 2 3 8244 1 3 8243 0 3 8246 3 3 8244 1 3 8245 2 3 8247 4 3 8246 3 3 8245 2 3 8248 5 3 8246 3 3 8247 4 3 8249 6 3 8248 5 3 8247 4 3 8250 7 3 8248 5 3 8249 6 3 8251 8 3 8250 7 3 8249 6 3 8252 9 3 8250 7 3 8251 8 3 8253 18 3 8252 9 3 8251 8 3 8254 19 3 8252 9 3 8253 18 3 8255 12 3 8254 19 3 8253 18 3 8256 13 3 8254 19 3 8255 12 3 8257 14 3 8256 13 3 8255 12 3 8258 15 3 8256 13 3 8257 14 3 8260 2 3 8200 1 3 8259 0 3 8261 3 3 8200 1 3 8260 2 3 8262 4 3 8261 3 3 8260 2 3 8263 5 3 8261 3 3 8262 4 3 8264 6 3 8263 5 3 8262 4 3 8265 7 3 8263 5 3 8264 6 3 8266 8 3 8265 7 3 8264 6 3 8267 9 3 8265 7 3 8266 8 3 8268 18 3 8267 9 3 8266 8 3 8269 19 3 8267 9 3 8268 18 3 8270 12 3 8269 19 3 8268 18 3 8271 13 3 8269 19 3 8270 12 3 8272 14 3 8271 13 3 8270 12 3 8273 15 3 8271 13 3 8272 14 3 8245 2 3 8230 1 3 8243 0 3 8274 3 3 8230 1 3 8245 2 3 8275 4 3 8274 3 3 8245 2 3 8276 5 3 8274 3 3 8275 4 3 8277 6 3 8276 5 3 8275 4 3 8278 7 3 8276 5 3 8277 6 3 8279 8 3 8278 7 3 8277 6 3 8280 9 3 8278 7 3 8279 8 3 8281 18 3 8280 9 3 8279 8 3 8282 19 3 8280 9 3 8281 18 3 8283 12 3 8282 19 3 8281 18 3 8284 13 3 8282 19 3 8283 12 3 8285 14 3 8284 13 3 8283 12 3 8286 15 3 8284 13 3 8285 14 3 8289 2 3 8288 1 3 8287 0 3 8290 3 3 8288 1 3 8289 2 3 8291 4 3 8290 3 3 8289 2 3 8292 5 3 8290 3 3 8291 4 3 8293 6 3 8292 5 3 8291 4 3 8294 7 3 8292 5 3 8293 6 3 8295 8 3 8294 7 3 8293 6 3 8296 9 3 8294 7 3 8295 8 3 8297 18 3 8296 9 3 8295 8 3 8298 19 3 8296 9 3 8297 18 3 8299 12 3 8298 19 3 8297 18 3 8300 13 3 8298 19 3 8299 12 3 8301 14 3 8300 13 3 8299 12 3 8302 15 3 8300 13 3 8301 14 3 8289 2 3 8304 1 3 8303 0 3 8305 3 3 8304 1 3 8289 2 3 8306 4 3 8305 3 3 8289 2 3 8307 5 3 8305 3 3 8306 4 3 8308 6 3 8307 5 3 8306 4 3 8309 7 3 8307 5 3 8308 6 3 8310 8 3 8309 7 3 8308 6 3 8311 9 3 8309 7 3 8310 8 3 8312 18 3 8311 9 3 8310 8 3 8313 19 3 8311 9 3 8312 18 3 8314 12 3 8313 19 3 8312 18 3 8315 13 3 8313 19 3 8314 12 3 8316 14 3 8315 13 3 8314 12 3 8317 15 3 8315 13 3 8316 14 3 8320 2 3 8319 1 3 8318 0 3 8321 3 3 8319 1 3 8320 2 3 8322 4 3 8321 3 3 8320 2 3 8323 5 3 8321 3 3 8322 4 3 8324 6 3 8323 5 3 8322 4 3 8325 7 3 8323 5 3 8324 6 3 8326 8 3 8325 7 3 8324 6 3 8326 9 3 8325 7 3 8326 8 3 8327 18 3 8326 9 3 8326 8 3 8328 19 3 8326 9 3 8327 18 3 8329 12 3 8328 19 3 8327 18 3 8330 13 3 8328 19 3 8329 12 3 8331 14 3 8330 13 3 8329 12 3 8332 15 3 8330 13 3 8331 14 3 8334 2 3 8287 1 3 8333 0 3 8335 3 3 8287 1 3 8334 2 3 8336 4 3 8335 3 3 8334 2 3 8337 5 3 8335 3 3 8336 4 3 8338 6 3 8337 5 3 8336 4 3 8339 7 3 8337 5 3 8338 6 3 8340 8 3 8339 7 3 8338 6 3 8341 9 3 8339 7 3 8340 8 3 8342 18 3 8341 9 3 8340 8 3 8343 19 3 8341 9 3 8342 18 3 8344 12 3 8343 19 3 8342 18 3 8345 13 3 8343 19 3 8344 12 3 8346 14 3 8345 13 3 8344 12 3 8347 15 3 8345 13 3 8346 14 3 8350 2 0 8349 1 0 8348 0 3 8351 3 0 8349 1 0 8350 2 0 8352 4 0 8351 3 0 8350 2 0 8353 5 0 8351 3 0 8352 4 0 8354 6 0 8353 5 0 8352 4 0 8355 7 0 8353 5 0 8354 6 0 8356 8 1 8355 7 0 8354 6 0 8357 9 1 8355 7 0 8356 8 1 8358 18 1 8357 9 1 8356 8 1 8359 19 1 8357 9 1 8358 18 1 8360 12 1 8359 19 1 8358 18 1 8361 13 1 8359 19 1 8360 12 1 8362 14 1 8361 13 1 8360 12 1 8363 15 1 8361 13 1 8362 14 1 8365 2 3 8364 1 3 7967 0 3 8366 3 3 8364 1 3 8365 2 3 8367 4 3 8366 3 3 8365 2 3 8368 5 3 8366 3 3 8367 4 3 8369 6 3 8368 5 3 8367 4 3 8370 7 3 8368 5 3 8369 6 3 8371 8 3 8370 7 3 8369 6 3 8372 9 3 8370 7 3 8371 8 3 8373 18 3 8372 9 3 8371 8 3 8374 19 3 8372 9 3 8373 18 3 8375 12 3 8374 19 3 8373 18 3 8376 13 3 8374 19 3 8375 12 3 8377 14 3 8376 13 3 8375 12 3 8378 15 3 8376 13 3 8377 14 3 2092 2 3 8379 1 3 8379 0 3 2092 3 3 8379 1 3 2092 2 3 8380 4 3 2092 3 3 2092 2 3 8381 5 3 2092 3 3 8380 4 3 8382 6 3 8381 5 3 8380 4 3 8383 7 3 8381 5 3 8382 6 3 8384 8 3 8383 7 3 8382 6 3 8385 9 3 8383 7 3 8384 8 3 8386 18 3 8385 9 3 8384 8 3 8387 19 3 8385 9 3 8386 18 3 8388 12 3 8387 19 3 8386 18 3 8389 13 3 8387 19 3 8388 12 3 8390 14 3 8389 13 3 8388 12 3 8391 15 3 8389 13 3 8390 14 3 8392 2 3 2090 1 3 2091 0 3 8393 3 3 2090 1 3 8392 2 3 8394 4 3 8393 3 3 8392 2 3 8395 5 3 8393 3 3 8394 4 3 8396 6 3 8395 5 3 8394 4 3 8397 7 3 8395 5 3 8396 6 3 8398 8 3 8397 7 3 8396 6 3 8399 9 3 8397 7 3 8398 8 3 8400 18 3 8399 9 3 8398 8 3 8401 19 3 8399 9 3 8400 18 3 8402 12 3 8401 19 3 8400 18 3 8403 13 3 8401 19 3 8402 12 3 8404 14 3 8403 13 3 8402 12 3 8405 15 3 8403 13 3 8404 14 3 8408 22 4 8407 21 4 8406 20 4 8409 23 4 8407 21 4 8408 22 4 8410 24 4 8409 23 4 8408 22 4 8413 22 4 8412 21 4 8411 20 4 8414 23 4 8412 21 4 8413 22 4 8415 24 4 8414 23 4 8413 22 4 8418 22 4 8417 21 4 8416 20 4 8419 23 4 8417 21 4 8418 22 4 8420 24 4 8419 23 4 8418 22 4 8423 22 4 8422 21 4 8421 20 4 8424 23 4 8422 21 4 8423 22 4 8425 24 4 8424 23 4 8423 22 4 8428 22 4 8427 21 4 8426 20 4 8429 23 4 8427 21 4 8428 22 4 8430 24 4 8429 23 4 8428 22 4 8433 22 4 8432 21 4 8431 20 4 8434 23 4 8432 21 4 8433 22 4 8435 24 4 8434 23 4 8433 22 4 8438 22 4 8437 21 4 8436 20 4 8439 23 4 8437 21 4 8438 22 4 8440 24 4 8439 23 4 8438 22 4 8443 22 4 8442 21 4 8441 20 4 8444 23 4 8442 21 4 8443 22 4 8445 24 4 8444 23 4 8443 22 4 8448 22 4 8447 21 4 8446 20 4 8449 23 4 8447 21 4 8448 22 4 8450 24 4 8449 23 4 8448 22 4 8453 22 4 8452 21 4 8451 20 4 8454 23 4 8452 21 4 8453 22 4 8455 24 4 8454 23 4 8453 22 4 8458 22 4 8457 21 4 8456 20 4 8459 23 4 8457 21 4 8458 22 4 8460 24 4 8459 23 4 8458 22 4 8463 22 4 8462 21 4 8461 20 4 8464 23 4 8462 21 4 8463 22 4 8465 24 4 8464 23 4 8463 22 4 8468 22 4 8467 21 4 8466 20 4 8469 23 4 8467 21 4 8468 22 4 8470 24 4 8469 23 4 8468 22 4 8473 22 4 8472 21 4 8471 20 4 8474 23 4 8472 21 4 8473 22 4 8475 24 4 8474 23 4 8473 22 4 8478 22 4 8477 21 4 8476 20 4 8479 23 4 8477 21 4 8478 22 4 8480 24 4 8479 23 4 8478 22 4 8483 22 4 8482 21 4 8481 20 4 8484 23 4 8482 21 4 8483 22 4 8485 24 4 8484 23 4 8483 22 4 8488 22 4 8487 21 4 8486 20 4 8489 23 4 8487 21 4 8488 22 4 8490 24 4 8489 23 4 8488 22 4 8493 22 4 8492 21 4 8491 20 4 8494 23 4 8492 21 4 8493 22 4 8495 24 4 8494 23 4 8493 22 4 8498 22 4 8497 21 4 8496 20 4 8499 23 4 8497 21 4 8498 22 4 8500 24 4 8499 23 4 8498 22 4 8503 22 4 8502 21 4 8501 20 4 8504 23 4 8502 21 4 8503 22 4 8505 24 4 8504 23 4 8503 22 4 8508 22 4 8507 21 4 8506 20 4 8509 23 4 8507 21 4 8508 22 4 8510 24 4 8509 23 4 8508 22 4 8513 22 4 8512 21 4 8511 20 4 8514 23 4 8512 21 4 8513 22 4 8515 24 4 8514 23 4 8513 22 4 8518 22 4 8517 21 4 8516 20 4 8519 23 4 8517 21 4 8518 22 4 8520 24 4 8519 23 4 8518 22 4 8523 22 4 8522 21 4 8521 20 4 8524 23 4 8522 21 4 8523 22 4 8525 24 4 8524 23 4 8523 22 4 8528 22 4 8527 21 4 8526 20 4 8529 23 4 8527 21 4 8528 22 4 8530 24 4 8529 23 4 8528 22 4 8533 22 4 8532 21 4 8531 20 4 8534 23 4 8532 21 4 8533 22 4 8535 24 4 8534 23 4 8533 22 4 8538 22 4 8537 21 4 8536 20 4 8539 23 4 8537 21 4 8538 22 4 8540 24 4 8539 23 4 8538 22 4 8543 22 4 8542 21 4 8541 20 4 8544 23 4 8542 21 4 8543 22 4 8545 24 4 8544 23 4 8543 22 4 8548 22 4 8547 21 4 8546 20 4 8549 23 4 8547 21 4 8548 22 4 8550 24 4 8549 23 4 8548 22 4 8553 22 4 8552 21 4 8551 20 4 8554 23 4 8552 21 4 8553 22 4 8555 24 4 8554 23 4 8553 22 4 8558 22 4 8557 21 4 8556 20 4 8559 23 4 8557 21 4 8558 22 4 8560 24 4 8559 23 4 8558 22 4 8563 22 4 8562 21 4 8561 20 4 8564 23 4 8562 21 4 8563 22 4 8565 24 4 8564 23 4 8563 22 4 8568 22 4 8567 21 4 8566 20 4 8569 23 4 8567 21 4 8568 22 4 8570 24 4 8569 23 4 8568 22 4 8573 22 4 8572 21 4 8571 20 4 8574 23 4 8572 21 4 8573 22 4 8575 24 4 8574 23 4 8573 22 4 8578 22 4 8577 21 4 8576 20 4 8579 23 4 8577 21 4 8578 22 4 8580 24 4 8579 23 4 8578 22 4 8583 22 4 8582 21 4 8581 20 4 8584 23 4 8582 21 4 8583 22 4 8585 24 4 8584 23 4 8583 22 4 8588 22 4 8587 21 4 8586 20 4 8589 23 4 8587 21 4 8588 22 4 8590 24 4 8589 23 4 8588 22 4 8593 22 4 8592 21 4 8591 20 4 8594 23 4 8592 21 4 8593 22 4 8595 24 4 8594 23 4 8593 22 4 8598 22 4 8597 21 4 8596 20 4 8599 23 4 8597 21 4 8598 22 4 8600 24 4 8599 23 4 8598 22 4 8603 22 4 8602 21 4 8601 20 4 8604 23 4 8602 21 4 8603 22 4 8605 24 4 8604 23 4 8603 22 4 8608 22 4 8607 21 4 8606 20 4 8609 23 4 8607 21 4 8608 22 4 8610 24 4 8609 23 4 8608 22 4 8613 22 4 8612 21 4 8611 20 4 8614 23 4 8612 21 4 8613 22 4 8615 24 4 8614 23 4 8613 22 4 8618 22 4 8617 21 4 8616 20 4 8619 23 4 8617 21 4 8618 22 4 8620 24 4 8619 23 4 8618 22 4 8623 22 4 8622 21 4 8621 20 4 8624 23 4 8622 21 4 8623 22 4 8625 24 4 8624 23 4 8623 22 4 8628 22 4 8627 21 4 8626 20 4 8629 23 4 8627 21 4 8628 22 4 8630 24 4 8629 23 4 8628 22 4 8633 22 4 8632 21 4 8631 20 4 8634 23 4 8632 21 4 8633 22 4 8635 24 4 8634 23 4 8633 22 4 8638 22 4 8637 21 4 8636 20 4 8639 23 4 8637 21 4 8638 22 4 8640 24 4 8639 23 4 8638 22 4 8643 22 4 8642 21 4 8641 20 4 8644 23 4 8642 21 4 8643 22 4 8645 24 4 8644 23 4 8643 22 4 8648 22 4 8647 21 4 8646 20 4 8649 23 4 8647 21 4 8648 22 4 8650 24 4 8649 23 4 8648 22 4 8653 22 4 8652 21 4 8651 20 4 8654 23 4 8652 21 4 8653 22 4 8655 24 4 8654 23 4 8653 22 4 8658 22 4 8657 21 4 8656 20 4 8659 23 4 8657 21 4 8658 22 4 8660 24 4 8659 23 4 8658 22 4 8663 22 4 8662 21 4 8661 20 4 8664 23 4 8662 21 4 8663 22 4 8665 24 4 8664 23 4 8663 22 4 8668 22 4 8667 21 4 8666 20 4 8669 23 4 8667 21 4 8668 22 4 8670 24 4 8669 23 4 8668 22 4 8673 22 4 8672 21 4 8671 20 4 8674 23 4 8672 21 4 8673 22 4 8675 24 4 8674 23 4 8673 22 4 8678 22 4 8677 21 4 8676 20 4 8679 23 4 8677 21 4 8678 22 4 8680 24 4 8679 23 4 8678 22 4 8683 22 4 8682 21 4 8681 20 4 8684 23 4 8682 21 4 8683 22 4 8685 24 4 8684 23 4 8683 22 4 8688 22 4 8687 21 4 8686 20 4 8689 23 4 8687 21 4 8688 22 4 8690 24 4 8689 23 4 8688 22 4 8693 22 4 8692 21 4 8691 20 4 8694 23 4 8692 21 4 8693 22 4 8695 24 4 8694 23 4 8693 22 4 8698 22 4 8697 21 4 8696 20 4 8699 23 4 8697 21 4 8698 22 4 8700 24 4 8699 23 4 8698 22 4 8703 22 4 8702 21 4 8701 20 4 8704 23 4 8702 21 4 8703 22 4 8705 24 4 8704 23 4 8703 22 4 8708 22 4 8707 21 4 8706 20 4 8709 23 4 8707 21 4 8708 22 4 8710 24 4 8709 23 4 8708 22 4 8713 22 4 8712 21 4 8711 20 4 8714 23 4 8712 21 4 8713 22 4 8715 24 4 8714 23 4 8713 22 4 8718 22 4 8717 21 4 8716 20 4 8719 23 4 8717 21 4 8718 22 4 8720 24 4 8719 23 4 8718 22 4 8723 22 4 8722 21 4 8721 20 4 8724 23 4 8722 21 4 8723 22 4 8725 24 4 8724 23 4 8723 22 4 8728 22 4 8727 21 4 8726 20 4 8729 23 4 8727 21 4 8728 22 4 8730 24 4 8729 23 4 8728 22 4 8733 22 4 8732 21 4 8731 20 4 8734 23 4 8732 21 4 8733 22 4 8735 24 4 8734 23 4 8733 22 4 8738 22 4 8737 21 4 8736 20 4 8739 23 4 8737 21 4 8738 22 4 8740 24 4 8739 23 4 8738 22 4 8743 22 4 8742 21 4 8741 20 4 8744 23 4 8742 21 4 8743 22 4 8745 24 4 8744 23 4 8743 22 4 8748 22 4 8747 21 4 8746 20 4 8749 23 4 8747 21 4 8748 22 4 8750 24 4 8749 23 4 8748 22 4 8753 22 4 8752 21 4 8751 20 4 8754 23 4 8752 21 4 8753 22 4 8755 24 4 8754 23 4 8753 22 4 8758 22 4 8757 21 4 8756 20 4 8759 23 4 8757 21 4 8758 22 4 8760 24 4 8759 23 4 8758 22 4 8763 22 4 8762 21 4 8761 20 4 8764 23 4 8762 21 4 8763 22 4 8765 24 4 8764 23 4 8763 22 4 8768 22 4 8767 21 4 8766 20 4 8769 23 4 8767 21 4 8768 22 4 8770 24 4 8769 23 4 8768 22 4 8773 22 4 8772 21 4 8771 20 4 8774 23 4 8772 21 4 8773 22 4 8775 24 4 8774 23 4 8773 22 4 8778 22 4 8777 21 4 8776 20 4 8779 23 4 8777 21 4 8778 22 4 8780 24 4 8779 23 4 8778 22 4 8783 22 4 8782 21 4 8781 20 4 8784 23 4 8782 21 4 8783 22 4 8785 24 4 8784 23 4 8783 22 4 8788 22 4 8787 21 4 8786 20 4 8789 23 4 8787 21 4 8788 22 4 8790 24 4 8789 23 4 8788 22 4 8793 22 4 8792 21 4 8791 20 4 8794 23 4 8792 21 4 8793 22 4 8795 24 4 8794 23 4 8793 22 4 8798 22 4 8797 21 4 8796 20 4 8799 23 4 8797 21 4 8798 22 4 8800 24 4 8799 23 4 8798 22 4 8803 22 4 8802 21 4 8801 20 4 8804 23 4 8802 21 4 8803 22 4 8805 24 4 8804 23 4 8803 22 4 8808 22 4 8807 21 4 8806 20 4 8809 23 4 8807 21 4 8808 22 4 8810 24 4 8809 23 4 8808 22 4 8813 22 4 8812 21 4 8811 20 4 8814 23 4 8812 21 4 8813 22 4 8815 24 4 8814 23 4 8813 22 4 8818 22 4 8817 21 4 8816 20 4 8819 23 4 8817 21 4 8818 22 4 8820 24 4 8819 23 4 8818 22 4 8823 22 4 8822 21 4 8821 20 4 8824 23 4 8822 21 4 8823 22 4 8825 24 4 8824 23 4 8823 22 4 8828 22 4 8827 21 4 8826 20 4 8829 23 4 8827 21 4 8828 22 4 8830 24 4 8829 23 4 8828 22 4 8833 22 4 8832 21 4 8831 20 4 8834 23 4 8832 21 4 8833 22 4 8835 24 4 8834 23 4 8833 22 4 8838 22 4 8837 21 4 8836 20 4 8839 23 4 8837 21 4 8838 22 4 8840 24 4 8839 23 4 8838 22 4 8843 22 4 8842 21 4 8841 20 4 8844 23 4 8842 21 4 8843 22 4 8845 24 4 8844 23 4 8843 22 4 8848 22 4 8847 21 4 8846 20 4 8849 23 4 8847 21 4 8848 22 4 8850 24 4 8849 23 4 8848 22 4 8853 22 4 8852 21 4 8851 20 4 8854 23 4 8852 21 4 8853 22 4 8855 24 4 8854 23 4 8853 22 4 8858 22 4 8857 21 4 8856 20 4 8859 23 4 8857 21 4 8858 22 4 8860 24 4 8859 23 4 8858 22 4 8863 22 4 8862 21 4 8861 20 4 8864 23 4 8862 21 4 8863 22 4 8865 24 4 8864 23 4 8863 22 4 8868 22 4 8867 21 4 8866 20 4 8869 23 4 8867 21 4 8868 22 4 8870 24 4 8869 23 4 8868 22 4 8873 22 4 8872 21 4 8871 20 4 8874 23 4 8872 21 4 8873 22 4 8875 24 4 8874 23 4 8873 22 4 8878 22 4 8877 21 4 8876 20 4 8879 23 4 8877 21 4 8878 22 4 8880 24 4 8879 23 4 8878 22 4 8883 22 4 8882 21 4 8881 20 4 8884 23 4 8882 21 4 8883 22 4 8885 24 4 8884 23 4 8883 22 4 8888 22 4 8887 21 4 8886 20 4 8889 23 4 8887 21 4 8888 22 4 8890 24 4 8889 23 4 8888 22 4 8893 22 4 8892 21 4 8891 20 4 8894 23 4 8892 21 4 8893 22 4 8895 24 4 8894 23 4 8893 22 4 8898 22 4 8897 21 4 8896 20 4 8899 23 4 8897 21 4 8898 22 4 8900 24 4 8899 23 4 8898 22 4 8903 22 4 8902 21 4 8901 20 4 8904 23 4 8902 21 4 8903 22 4 8905 24 4 8904 23 4 8903 22 4 8908 22 4 8907 21 4 8906 20 4 8909 23 4 8907 21 4 8908 22 4 8910 24 4 8909 23 4 8908 22 4 8913 22 4 8912 21 4 8911 20 4 8914 23 4 8912 21 4 8913 22 4 8915 24 4 8914 23 4 8913 22 4 8918 22 4 8917 21 4 8916 20 4 8919 23 4 8917 21 4 8918 22 4 8920 24 4 8919 23 4 8918 22 4 8923 22 4 8922 21 4 8921 20 4 8924 23 4 8922 21 4 8923 22 4 8925 24 4 8924 23 4 8923 22 4 8928 22 4 8927 21 4 8926 20 4 8929 23 4 8927 21 4 8928 22 4 8930 24 4 8929 23 4 8928 22 4 8933 22 4 8932 21 4 8931 20 4 8934 23 4 8932 21 4 8933 22 4 8935 24 4 8934 23 4 8933 22 4 8938 22 4 8937 21 4 8936 20 4 8939 23 4 8937 21 4 8938 22 4 8940 24 4 8939 23 4 8938 22 4 8943 22 4 8942 21 4 8941 20 4 8944 23 4 8942 21 4 8943 22 4 8945 24 4 8944 23 4 8943 22 4 8948 22 4 8947 21 4 8946 20 4 8949 23 4 8947 21 4 8948 22 4 8950 24 4 8949 23 4 8948 22 4 8953 22 4 8952 21 4 8951 20 4 8954 23 4 8952 21 4 8953 22 4 8955 24 4 8954 23 4 8953 22 4 8958 22 4 8957 21 4 8956 20 4 8959 23 4 8957 21 4 8958 22 4 8960 24 4 8959 23 4 8958 22 4 8963 22 4 8962 21 4 8961 20 4 8964 23 4 8962 21 4 8963 22 4 8965 24 4 8964 23 4 8963 22 4 8968 22 4 8967 21 4 8966 20 4 8969 23 4 8967 21 4 8968 22 4 8970 24 4 8969 23 4 8968 22 4 8973 22 4 8972 21 4 8971 20 4 8974 23 4 8972 21 4 8973 22 4 8975 24 4 8974 23 4 8973 22 4 8978 22 4 8977 21 4 8976 20 4 8979 23 4 8977 21 4 8978 22 4 8980 24 4 8979 23 4 8978 22 4 8983 22 4 8982 21 4 8981 20 4 8984 23 4 8982 21 4 8983 22 4 8985 24 4 8984 23 4 8983 22 4 8988 22 4 8987 21 4 8986 20 4 8989 23 4 8987 21 4 8988 22 4 8990 24 4 8989 23 4 8988 22 4 8993 22 4 8992 21 4 8991 20 4 8994 23 4 8992 21 4 8993 22 4 8995 24 4 8994 23 4 8993 22 4 8998 22 4 8997 21 4 8996 20 4 8999 23 4 8997 21 4 8998 22 4 9000 24 4 8999 23 4 8998 22 4 9003 22 4 9002 21 4 9001 20 4 9004 23 4 9002 21 4 9003 22 4 9005 24 4 9004 23 4 9003 22 4 9008 22 4 9007 21 4 9006 20 4 9009 23 4 9007 21 4 9008 22 4 9010 24 4 9009 23 4 9008 22 4 9013 22 4 9012 21 4 9011 20 4 9014 23 4 9012 21 4 9013 22 4 9015 24 4 9014 23 4 9013 22 4 9018 22 4 9017 21 4 9016 20 4 9019 23 4 9017 21 4 9018 22 4 9020 24 4 9019 23 4 9018 22 4 9023 22 4 9022 21 4 9021 20 4 9024 23 4 9022 21 4 9023 22 4 9025 24 4 9024 23 4 9023 22 4 9028 22 4 9027 21 4 9026 20 4 9029 23 4 9027 21 4 9028 22 4 9030 24 4 9029 23 4 9028 22 4 9033 22 4 9032 21 4 9031 20 4 9034 23 4 9032 21 4 9033 22 4 9035 24 4 9034 23 4 9033 22 4 9038 22 4 9037 21 4 9036 20 4 9039 23 4 9037 21 4 9038 22 4 9040 24 4 9039 23 4 9038 22 4 9043 22 4 9042 21 4 9041 20 4 9044 23 4 9042 21 4 9043 22 4 9045 24 4 9044 23 4 9043 22 4 9048 22 4 9047 21 4 9046 20 4 9049 23 4 9047 21 4 9048 22 4 9050 24 4 9049 23 4 9048 22 4 9053 22 4 9052 21 4 9051 20 4 9054 23 4 9052 21 4 9053 22 4 9055 24 4 9054 23 4 9053 22 4 9058 22 4 9057 21 4 9056 20 4 9059 23 4 9057 21 4 9058 22 4 9060 24 4 9059 23 4 9058 22 4 9063 22 4 9062 21 4 9061 20 4 9064 23 4 9062 21 4 9063 22 4 9065 24 4 9064 23 4 9063 22 4 9068 22 4 9067 21 4 9066 20 4 9069 23 4 9067 21 4 9068 22 4 9070 24 4 9069 23 4 9068 22 4 9073 22 4 9072 21 4 9071 20 4 9074 23 4 9072 21 4 9073 22 4 9075 24 4 9074 23 4 9073 22 4 9078 22 4 9077 21 4 9076 20 4 9079 23 4 9077 21 4 9078 22 4 9080 24 4 9079 23 4 9078 22 4 9083 22 4 9082 21 4 9081 20 4 9084 23 4 9082 21 4 9083 22 4 9085 24 4 9084 23 4 9083 22 4 8406 20 4 8410 24 4 8408 22 4 8416 20 4 8420 24 4 8418 22 4 8426 20 4 8430 24 4 8428 22 4 8436 20 4 8440 24 4 8438 22 4 8446 20 4 8450 24 4 8448 22 4 8456 20 4 8460 24 4 8458 22 4 8466 20 4 8470 24 4 8468 22 4 8476 20 4 8480 24 4 8478 22 4 8486 20 4 8490 24 4 8488 22 4 8496 20 4 8500 24 4 8498 22 4 8506 20 4 8510 24 4 8508 22 4 8516 20 4 8520 24 4 8518 22 4 8526 20 4 8530 24 4 8528 22 4 8536 20 4 8540 24 4 8538 22 4 8546 20 4 8550 24 4 8548 22 4 8556 20 4 8560 24 4 8558 22 4 8566 20 4 8570 24 4 8568 22 4 8576 20 4 8580 24 4 8578 22 4 8586 20 4 8590 24 4 8588 22 4 8596 20 4 8600 24 4 8598 22 4 8606 20 4 8610 24 4 8608 22 4 8616 20 4 8620 24 4 8618 22 4 8626 20 4 8630 24 4 8628 22 4 8636 20 4 8640 24 4 8638 22 4 8646 20 4 8650 24 4 8648 22 4 8656 20 4 8660 24 4 8658 22 4 8666 20 4 8670 24 4 8668 22 4 8676 20 4 8680 24 4 8678 22 4 8686 20 4 8690 24 4 8688 22 4 8696 20 4 8700 24 4 8698 22 4 8706 20 4 8710 24 4 8708 22 4 8716 20 4 8720 24 4 8718 22 4 8726 20 4 8730 24 4 8728 22 4 8736 20 4 8740 24 4 8738 22 4 8746 20 4 8750 24 4 8748 22 4 8756 20 4 8760 24 4 8758 22 4 8766 20 4 8770 24 4 8768 22 4 8776 20 4 8780 24 4 8778 22 4 8786 20 4 8790 24 4 8788 22 4 8796 20 4 8800 24 4 8798 22 4 8806 20 4 8810 24 4 8808 22 4 8816 20 4 8820 24 4 8818 22 4 8826 20 4 8830 24 4 8828 22 4 8836 20 4 8840 24 4 8838 22 4 8846 20 4 8850 24 4 8848 22 4 8856 20 4 8860 24 4 8858 22 4 8866 20 4 8870 24 4 8868 22 4 8876 20 4 8880 24 4 8878 22 4 8886 20 4 8890 24 4 8888 22 4 8896 20 4 8900 24 4 8898 22 4 8906 20 4 8910 24 4 8908 22 4 8916 20 4 8920 24 4 8918 22 4 8926 20 4 8930 24 4 8928 22 4 8936 20 4 8940 24 4 8938 22 4 8946 20 4 8950 24 4 8948 22 4 8956 20 4 8960 24 4 8958 22 4 8966 20 4 8970 24 4 8968 22 4 8976 20 4 8980 24 4 8978 22 4 8986 20 4 8990 24 4 8988 22 4 8996 20 4 9000 24 4 8998 22 4 9006 20 4 9010 24 4 9008 22 4 9016 20 4 9020 24 4 9018 22 4 9026 20 4 9030 24 4 9028 22 4 9036 20 4 9040 24 4 9038 22 4 9046 20 4 9050 24 4 9048 22 4 9056 20 4 9060 24 4 9058 22 4 9066 20 4 9070 24 4 9068 22 4 9076 20 4 9080 24 4 9078 22 4 8491 20 4 8495 24 4 8493 22 4 8751 20 4 8755 24 4 8753 22 4 8581 20 4 8585 24 4 8583 22 4 8761 20 4 8765 24 4 8763 22 4 8451 20 4 8455 24 4 8453 22 4 8771 20 4 8775 24 4 8773 22 4 8591 20 4 8595 24 4 8593 22 4 8781 20 4 8785 24 4 8783 22 4 8501 20 4 8505 24 4 8503 22 4 8791 20 4 8795 24 4 8793 22 4 8601 20 4 8605 24 4 8603 22 4 8801 20 4 8805 24 4 8803 22 4 8431 20 4 8435 24 4 8433 22 4 8811 20 4 8815 24 4 8813 22 4 8611 20 4 8615 24 4 8613 22 4 8821 20 4 8825 24 4 8823 22 4 8511 20 4 8515 24 4 8513 22 4 8831 20 4 8835 24 4 8833 22 4 8621 20 4 8625 24 4 8623 22 4 8841 20 4 8845 24 4 8843 22 4 8461 20 4 8465 24 4 8463 22 4 8851 20 4 8855 24 4 8853 22 4 8631 20 4 8635 24 4 8633 22 4 8861 20 4 8865 24 4 8863 22 4 8521 20 4 8525 24 4 8523 22 4 8871 20 4 8875 24 4 8873 22 4 8641 20 4 8645 24 4 8643 22 4 8881 20 4 8885 24 4 8883 22 4 8421 20 4 8425 24 4 8423 22 4 8891 20 4 8895 24 4 8893 22 4 8651 20 4 8655 24 4 8653 22 4 8901 20 4 8905 24 4 8903 22 4 8531 20 4 8535 24 4 8533 22 4 8911 20 4 8915 24 4 8913 22 4 8661 20 4 8665 24 4 8663 22 4 8921 20 4 8925 24 4 8923 22 4 8471 20 4 8475 24 4 8473 22 4 8931 20 4 8935 24 4 8933 22 4 8671 20 4 8675 24 4 8673 22 4 8941 20 4 8945 24 4 8943 22 4 8541 20 4 8545 24 4 8543 22 4 8951 20 4 8955 24 4 8953 22 4 8681 20 4 8685 24 4 8683 22 4 8961 20 4 8965 24 4 8963 22 4 8441 20 4 8445 24 4 8443 22 4 8971 20 4 8975 24 4 8973 22 4 8691 20 4 8695 24 4 8693 22 4 8981 20 4 8985 24 4 8983 22 4 8551 20 4 8555 24 4 8553 22 4 8991 20 4 8995 24 4 8993 22 4 8701 20 4 8705 24 4 8703 22 4 9001 20 4 9005 24 4 9003 22 4 8481 20 4 8485 24 4 8483 22 4 9011 20 4 9015 24 4 9013 22 4 8711 20 4 8715 24 4 8713 22 4 9021 20 4 9025 24 4 9023 22 4 8561 20 4 8565 24 4 8563 22 4 9031 20 4 9035 24 4 9033 22 4 8721 20 4 8725 24 4 8723 22 4 9041 20 4 9045 24 4 9043 22 4 8411 20 4 8415 24 4 8413 22 4 9051 20 4 9055 24 4 9053 22 4 8731 20 4 8735 24 4 8733 22 4 9061 20 4 9065 24 4 9063 22 4 8571 20 4 8575 24 4 8573 22 4 9071 20 4 9075 24 4 9073 22 4 8741 20 4 8745 24 4 8743 22 4 9081 20 4 9085 24 4 9083 22 4

+
+
+
+ + + + -820 46 -556 -735 31 -592 -760 32 -530 -697 30 -506 -782 45 -470 -992 38 919 -915 43 867 -927 36 932 -862 47 943 -939 42 995 -802 34 -675 -711 30 -670 -759 31 -626 -713 40 -578 -805 43 -584 690 48 939 767 45 877 759 30 946 830 26 954 753 29 1016 -887 27 -634 -784 35 -576 -866 29 -551 -843 47 -470 -945 40 -527 -1032 38 790 -934 42 811 -993 33 850 -953 43 909 -1051 39 889 -947 46 -506 -901 42 -440 -958 39 -449 -967 43 -391 -1013 46 -457 856 58 867 937 41 780 939 34 866 1026 27 862 945 44 950 -857 53 -720 -784 36 -626 -869 29 -638 -880 23 -552 -953 39 -645 -941 48 1015 -863 45 952 -872 30 1022 -801 26 1030 -878 29 1092 -943 33 -561 -905 39 -476 -967 31 -498 -988 42 -436 -1027 37 -521 565 46 847 648 50 792 635 41 861 705 50 874 622 46 930 -856 49 766 -787 34 668 -771 36 753 -686 41 735 -755 56 833 717 49 777 786 34 680 802 36 764 887 41 747 817 56 844 -980 37 786 -889 32 708 -894 32 793 -808 44 797 -899 49 875 638 48 840 754 58 871 682 39 914 726 47 988 609 37 957 -1136 32 959 -1095 40 848 -1057 34 925 -981 52 889 -1021 44 999 609 37 749 700 32 670 695 32 756 781 44 759 690 49 838 -965 53 914 -879 47 830 -879 42 916 -793 48 915 -878 53 999 1020 49 448 1089 34 351 1105 36 436 1190 41 418 1121 56 516 -851 58 934 -771 41 846 -768 34 932 -682 27 929 -762 44 1016 591 32 821 631 40 710 669 34 787 745 52 751 705 44 861 -928 61 981 -845 59 895 -843 47 980 -756 50 978 -839 51 1065 639 38 843 716 43 791 704 36 856 769 47 868 692 42 919 -993 48 915 -876 58 946 -949 39 989 -905 47 1064 -1022 37 1033 666 53 838 751 47 755 751 42 840 838 48 840 753 53 923 896 37 469 987 32 390 983 32 476 1069 44 480 977 49 558 741 32 642 781 40 531 819 34 608 895 52 572 855 44 682 911 53 596 997 47 513 997 42 599 1084 48 598 998 53 682 1025 58 616 1105 41 529 1108 34 615 1194 27 612 1114 44 699 949 61 664 1031 59 578 1033 47 663 1120 50 661 1038 51 748 883 48 598 1000 58 629 927 39 672 971 47 747 854 37 716 884 38 602 962 43 550 950 36 615 1014 47 626 937 42 678 844 38 473 942 42 494 883 33 533 923 43 592 825 39 572 936 48 698 1013 45 635 1004 30 705 1075 26 713 998 29 775 727 49 999 796 34 901 811 36 986 896 41 968 827 56 1066 548 37 1002 639 32 923 634 32 1009 720 44 1012 629 49 1091 529 32 1074 569 40 964 608 34 1040 684 52 1004 644 44 1115 605 53 1091 690 47 1008 690 42 1093 777 48 1093 692 53 1176 719 58 1111 799 41 1024 801 34 1110 888 27 1106 807 44 1194 642 61 1159 725 59 1072 727 47 1157 814 50 1155 731 51 1242 577 48 1093 693 58 1124 621 39 1167 664 47 1242 548 37 1210 578 38 1096 655 43 1044 643 36 1109 708 47 1121 630 42 1172 438 38 1108 521 42 1052 509 33 1122 579 42 1134 496 38 1190 629 48 1192 706 45 1130 697 30 1199 769 26 1207 692 29 1269 416 39 -831 470 27 -907 482 29 -841 548 32 -855 494 44 -779 358 32 -914 427 28 -974 424 28 -909 489 37 -906 420 41 -846 555 32 -751 595 40 -862 633 34 -785 709 52 -822 669 44 -711 691 51 -713 748 47 -769 748 43 -711 807 47 -711 749 51 -655 465 58 -767 545 41 -854 548 34 -768 634 27 -772 554 44 -684 636 38 -708 713 43 -759 701 36 -695 766 47 -683 688 42 -632 + + + + + + + + + + 1 1 1 0 0.5 0.5 0 0 0 1 + + + + + + + + + 1 1 1 1 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 0 1 1 0 0 0 0 3 3 0 1 1 0 2 2 0 4 4 0 3 3 0 2 2 0 7 2 0 6 1 0 5 0 0 8 3 0 6 1 0 7 2 0 9 4 0 8 3 0 7 2 0 12 2 0 11 1 0 10 0 0 13 3 0 11 1 0 12 2 0 14 4 0 13 3 0 12 2 0 17 2 0 16 1 0 15 0 0 18 3 0 16 1 0 17 2 0 19 4 0 18 3 0 17 2 0 22 2 0 21 1 0 20 0 0 23 3 0 21 1 0 22 2 0 24 4 0 23 3 0 22 2 0 27 2 0 26 1 0 25 0 0 28 3 0 26 1 0 27 2 0 29 4 0 28 3 0 27 2 0 32 2 0 31 1 0 30 0 0 33 3 0 31 1 0 32 2 0 34 4 0 33 3 0 32 2 0 37 2 0 36 1 0 35 0 0 38 3 0 36 1 0 37 2 0 39 4 0 38 3 0 37 2 0 42 2 0 41 1 0 40 0 0 43 3 0 41 1 0 42 2 0 44 4 0 43 3 0 42 2 0 47 2 0 46 1 0 45 0 0 48 3 0 46 1 0 47 2 0 49 4 0 48 3 0 47 2 0 52 2 0 51 1 0 50 0 0 53 3 0 51 1 0 52 2 0 54 4 0 53 3 0 52 2 0 57 2 0 56 1 0 55 0 0 58 3 0 56 1 0 57 2 0 59 4 0 58 3 0 57 2 0 62 2 0 61 1 0 60 0 0 63 3 0 61 1 0 62 2 0 64 4 0 63 3 0 62 2 0 67 2 0 66 1 0 65 0 0 68 3 0 66 1 0 67 2 0 69 4 0 68 3 0 67 2 0 72 2 0 71 1 0 70 0 0 73 3 0 71 1 0 72 2 0 74 4 0 73 3 0 72 2 0 77 2 0 76 1 0 75 0 0 78 3 0 76 1 0 77 2 0 79 4 0 78 3 0 77 2 0 82 2 0 81 1 0 80 0 0 83 3 0 81 1 0 82 2 0 84 4 0 83 3 0 82 2 0 87 2 0 86 1 0 85 0 0 88 3 0 86 1 0 87 2 0 89 4 0 88 3 0 87 2 0 92 2 0 91 1 0 90 0 0 93 3 0 91 1 0 92 2 0 94 4 0 93 3 0 92 2 0 97 2 0 96 1 0 95 0 0 98 3 0 96 1 0 97 2 0 99 4 0 98 3 0 97 2 0 102 2 0 101 1 0 100 0 0 103 3 0 101 1 0 102 2 0 104 4 0 103 3 0 102 2 0 107 2 0 106 1 0 105 0 0 108 3 0 106 1 0 107 2 0 109 4 0 108 3 0 107 2 0 112 2 0 111 1 0 110 0 0 113 3 0 111 1 0 112 2 0 114 4 0 113 3 0 112 2 0 117 2 0 116 1 0 115 0 0 118 3 0 116 1 0 117 2 0 119 4 0 118 3 0 117 2 0 122 2 0 121 1 0 120 0 0 123 3 0 121 1 0 122 2 0 124 4 0 123 3 0 122 2 0 127 2 0 126 1 0 125 0 0 128 3 0 126 1 0 127 2 0 129 4 0 128 3 0 127 2 0 132 2 0 131 1 0 130 0 0 133 3 0 131 1 0 132 2 0 134 4 0 133 3 0 132 2 0 137 2 0 136 1 0 135 0 0 138 3 0 136 1 0 137 2 0 139 4 0 138 3 0 137 2 0 142 2 0 141 1 0 140 0 0 143 3 0 141 1 0 142 2 0 144 4 0 143 3 0 142 2 0 147 2 0 146 1 0 145 0 0 148 3 0 146 1 0 147 2 0 149 4 0 148 3 0 147 2 0 152 2 0 151 1 0 150 0 0 153 3 0 151 1 0 152 2 0 154 4 0 153 3 0 152 2 0 157 2 0 156 1 0 155 0 0 158 3 0 156 1 0 157 2 0 159 4 0 158 3 0 157 2 0 162 2 0 161 1 0 160 0 0 163 3 0 161 1 0 162 2 0 164 4 0 163 3 0 162 2 0 167 2 0 166 1 0 165 0 0 168 3 0 166 1 0 167 2 0 169 4 0 168 3 0 167 2 0 172 2 0 171 1 0 170 0 0 173 3 0 171 1 0 172 2 0 174 4 0 173 3 0 172 2 0 177 2 0 176 1 0 175 0 0 178 3 0 176 1 0 177 2 0 179 4 0 178 3 0 177 2 0 182 2 0 181 1 0 180 0 0 183 3 0 181 1 0 182 2 0 184 4 0 183 3 0 182 2 0 187 2 0 186 1 0 185 0 0 188 3 0 186 1 0 187 2 0 189 4 0 188 3 0 187 2 0 192 2 0 191 1 0 190 0 0 193 3 0 191 1 0 192 2 0 194 4 0 193 3 0 192 2 0 197 2 0 196 1 0 195 0 0 198 3 0 196 1 0 197 2 0 199 4 0 198 3 0 197 2 0 202 2 0 201 1 0 200 0 0 203 3 0 201 1 0 202 2 0 204 4 0 203 3 0 202 2 0 207 2 0 206 1 0 205 0 0 208 3 0 206 1 0 207 2 0 209 4 0 208 3 0 207 2 0 212 2 0 211 1 0 210 0 0 213 3 0 211 1 0 212 2 0 214 4 0 213 3 0 212 2 0 217 2 0 216 1 0 215 0 0 218 3 0 216 1 0 217 2 0 219 4 0 218 3 0 217 2 0 222 2 0 221 1 0 220 0 0 223 3 0 221 1 0 222 2 0 224 4 0 223 3 0 222 2 0 227 2 0 226 1 0 225 0 0 228 3 0 226 1 0 227 2 0 229 4 0 228 3 0 227 2 0 232 2 0 231 1 0 230 0 0 233 3 0 231 1 0 232 2 0 234 4 0 233 3 0 232 2 0 237 2 0 236 1 0 235 0 0 238 3 0 236 1 0 237 2 0 239 4 0 238 3 0 237 2 0 242 2 0 241 1 0 240 0 0 243 3 0 241 1 0 242 2 0 244 4 0 243 3 0 242 2 0 247 2 0 246 1 0 245 0 0 248 3 0 246 1 0 247 2 0 249 4 0 248 3 0 247 2 0 252 2 0 251 1 0 250 0 0 253 3 0 251 1 0 252 2 0 254 4 0 253 3 0 252 2 0 95 0 0 99 4 0 97 2 0 0 0 0 4 4 0 2 2 0 130 0 0 134 4 0 132 2 0 10 0 0 14 4 0 12 2 0 135 0 0 139 4 0 137 2 0 20 0 0 24 4 0 22 2 0 140 0 0 144 4 0 142 2 0 30 0 0 34 4 0 32 2 0 145 0 0 149 4 0 147 2 0 40 0 0 44 4 0 42 2 0 150 0 0 154 4 0 152 2 0 50 0 0 54 4 0 52 2 0 155 0 0 159 4 0 157 2 0 60 0 0 64 4 0 62 2 0 160 0 0 164 4 0 162 2 0 70 0 0 74 4 0 72 2 0 165 0 0 169 4 0 167 2 0 80 0 0 84 4 0 82 2 0 170 0 0 174 4 0 172 2 0 90 0 0 94 4 0 92 2 0 175 0 0 179 4 0 177 2 0 100 0 0 104 4 0 102 2 0 180 0 0 184 4 0 182 2 0 110 0 0 114 4 0 112 2 0 185 0 0 189 4 0 187 2 0 120 0 0 124 4 0 122 2 0 190 0 0 194 4 0 192 2 0 5 0 0 9 4 0 7 2 0 195 0 0 199 4 0 197 2 0 25 0 0 29 4 0 27 2 0 200 0 0 204 4 0 202 2 0 45 0 0 49 4 0 47 2 0 205 0 0 209 4 0 207 2 0 65 0 0 69 4 0 67 2 0 210 0 0 214 4 0 212 2 0 85 0 0 89 4 0 87 2 0 215 0 0 219 4 0 217 2 0 105 0 0 109 4 0 107 2 0 220 0 0 224 4 0 222 2 0 125 0 0 129 4 0 127 2 0 225 0 0 229 4 0 227 2 0 35 0 0 39 4 0 37 2 0 230 0 0 234 4 0 232 2 0 75 0 0 79 4 0 77 2 0 235 0 0 239 4 0 237 2 0 115 0 0 119 4 0 117 2 0 240 0 0 244 4 0 242 2 0 55 0 0 59 4 0 57 2 0 245 0 0 249 4 0 247 2 0 15 0 0 19 4 0 17 2 0 250 0 0 254 4 0 252 2 0

+
+
+
+ + + + -3060 396 4599 -3147 389 4515 -3062 377 4514 -3063 375 4429 -2976 383 4513 -2368 123 1608 -2329 118 1723 -2406 127 1685 -2440 148 1762 -2479 153 1647 -3147 418 4502 -3246 433 4571 -3232 410 4489 -3316 418 4474 -3218 403 4404 -1658 312 4144 -1718 311 4042 -1634 307 4062 -1613 319 3979 -1554 319 4081 -3264 423 4492 -3228 431 4608 -3303 419 4568 -3344 433 4644 -3379 425 4528 -2464 147 1772 -2585 153 1768 -2522 145 1709 -2580 160 1647 -2459 154 1651 -3128 394 4561 -3078 394 4672 -3159 401 4642 -3185 424 4720 -3235 424 4610 -2496 156 1528 -2472 159 1647 -2543 151 1599 -2590 162 1671 -2614 159 1552 -3242 441 4810 -3363 446 4817 -3306 436 4752 -3370 448 4696 -3249 443 4689 -1464 303 3864 -1480 278 3748 -1412 275 3801 -1359 263 3733 -1343 289 3849 -2403 145 1695 -2480 161 1602 -2400 130 1610 -2392 131 1524 -2315 115 1617 -1599 311 3917 -1630 287 3803 -1555 293 3844 -1514 291 3768 -1483 315 3881 -2381 150 1548 -2485 163 1608 -2464 143 1527 -2547 153 1504 -2442 140 1444 -1585 321 3994 -1594 306 3876 -1528 305 3931 -1473 306 3863 -1464 321 3981 -1689 304 3983 -1692 290 3863 -1629 295 3921 -1572 302 3856 -1569 316 3976 -1508 330 4008 -1523 320 3890 -1455 311 3943 -1402 309 3875 -1388 319 3993 -1567 326 4100 -1520 307 3990 -1487 314 4070 -1407 318 4035 -1454 336 4145 -1598 308 4019 -1588 307 3927 -1546 303 3978 -1496 311 3934 -1505 313 4027 -1518 324 4199 -1595 321 4134 -1524 316 4128 -1532 321 4057 -1455 325 4121 -1447 320 4184 -1446 309 4085 -1398 298 4137 -1347 291 4088 -1348 301 4187 -551 64 2352 -639 67 2268 -554 48 2267 -556 49 2181 -468 46 2265 -545 70 2204 -644 69 2275 -628 51 2192 -713 48 2177 -614 49 2106 -661 59 2195 -626 67 2311 -699 48 2271 -740 52 2348 -776 44 2232 -1169 59 -354 -1267 58 -284 -1252 40 -367 -1337 37 -381 -1238 38 -452 -522 46 2262 -471 48 2372 -553 46 2343 -581 62 2423 -631 60 2312 -603 58 2435 -723 46 2443 -667 47 2378 -732 52 2323 -612 64 2315 -1175 53 -206 -1263 56 -290 -1178 37 -291 -1180 38 -377 -1092 35 -293 -1285 48 -363 -1250 56 -247 -1323 36 -287 -1364 41 -211 -1400 33 -327 -1146 35 -296 -1095 37 -186 -1176 35 -215 -1204 51 -136 -1255 49 -246 -1227 47 -123 -1347 35 -115 -1290 36 -180 -1356 41 -236 -1236 53 -244 + + + + + + + + + + 1 1 1 0 0.5 0.5 0 0 0 1 + + + + + + + + + 1 1 1 1 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 0 1 1 0 0 0 0 3 3 0 1 1 0 2 2 0 4 4 0 3 3 0 2 2 0 7 2 0 6 1 0 5 0 0 8 3 0 6 1 0 7 2 0 9 4 0 8 3 0 7 2 0 12 2 0 11 1 0 10 0 0 13 3 0 11 1 0 12 2 0 14 4 0 13 3 0 12 2 0 17 2 0 16 1 0 15 0 0 18 3 0 16 1 0 17 2 0 19 4 0 18 3 0 17 2 0 22 2 0 21 1 0 20 0 0 23 3 0 21 1 0 22 2 0 24 4 0 23 3 0 22 2 0 27 2 0 26 1 0 25 0 0 28 3 0 26 1 0 27 2 0 29 4 0 28 3 0 27 2 0 32 2 0 31 1 0 30 0 0 33 3 0 31 1 0 32 2 0 34 4 0 33 3 0 32 2 0 37 2 0 36 1 0 35 0 0 38 3 0 36 1 0 37 2 0 39 4 0 38 3 0 37 2 0 42 2 0 41 1 0 40 0 0 43 3 0 41 1 0 42 2 0 44 4 0 43 3 0 42 2 0 47 2 0 46 1 0 45 0 0 48 3 0 46 1 0 47 2 0 49 4 0 48 3 0 47 2 0 52 2 0 51 1 0 50 0 0 53 3 0 51 1 0 52 2 0 54 4 0 53 3 0 52 2 0 57 2 0 56 1 0 55 0 0 58 3 0 56 1 0 57 2 0 59 4 0 58 3 0 57 2 0 62 2 0 61 1 0 60 0 0 63 3 0 61 1 0 62 2 0 64 4 0 63 3 0 62 2 0 67 2 0 66 1 0 65 0 0 68 3 0 66 1 0 67 2 0 69 4 0 68 3 0 67 2 0 72 2 0 71 1 0 70 0 0 73 3 0 71 1 0 72 2 0 74 4 0 73 3 0 72 2 0 77 2 0 76 1 0 75 0 0 78 3 0 76 1 0 77 2 0 79 4 0 78 3 0 77 2 0 82 2 0 81 1 0 80 0 0 83 3 0 81 1 0 82 2 0 84 4 0 83 3 0 82 2 0 87 2 0 86 1 0 85 0 0 88 3 0 86 1 0 87 2 0 89 4 0 88 3 0 87 2 0 92 2 0 91 1 0 90 0 0 93 3 0 91 1 0 92 2 0 94 4 0 93 3 0 92 2 0 97 2 0 96 1 0 95 0 0 98 3 0 96 1 0 97 2 0 99 4 0 98 3 0 97 2 0 102 2 0 101 1 0 100 0 0 103 3 0 101 1 0 102 2 0 104 4 0 103 3 0 102 2 0 107 2 0 106 1 0 105 0 0 108 3 0 106 1 0 107 2 0 109 4 0 108 3 0 107 2 0 112 2 0 111 1 0 110 0 0 113 3 0 111 1 0 112 2 0 114 4 0 113 3 0 112 2 0 117 2 0 116 1 0 115 0 0 118 3 0 116 1 0 117 2 0 119 4 0 118 3 0 117 2 0 122 2 0 121 1 0 120 0 0 123 3 0 121 1 0 122 2 0 124 4 0 123 3 0 122 2 0 127 2 0 126 1 0 125 0 0 128 3 0 126 1 0 127 2 0 129 4 0 128 3 0 127 2 0 132 2 0 131 1 0 130 0 0 133 3 0 131 1 0 132 2 0 134 4 0 133 3 0 132 2 0 137 2 0 136 1 0 135 0 0 138 3 0 136 1 0 137 2 0 139 4 0 138 3 0 137 2 0 142 2 0 141 1 0 140 0 0 143 3 0 141 1 0 142 2 0 144 4 0 143 3 0 142 2 0 147 2 0 146 1 0 145 0 0 148 3 0 146 1 0 147 2 0 149 4 0 148 3 0 147 2 0 70 0 0 74 4 0 72 2 0 75 0 0 79 4 0 77 2 0 0 0 0 4 4 0 2 2 0 80 0 0 84 4 0 82 2 0 10 0 0 14 4 0 12 2 0 85 0 0 89 4 0 87 2 0 20 0 0 24 4 0 22 2 0 90 0 0 94 4 0 92 2 0 40 0 0 44 4 0 42 2 0 95 0 0 99 4 0 97 2 0 50 0 0 54 4 0 52 2 0 100 0 0 104 4 0 102 2 0 60 0 0 64 4 0 62 2 0 105 0 0 109 4 0 107 2 0 30 0 0 34 4 0 32 2 0 35 0 0 39 4 0 37 2 0 5 0 0 9 4 0 7 2 0 120 0 0 124 4 0 122 2 0 25 0 0 29 4 0 27 2 0 125 0 0 129 4 0 127 2 0 55 0 0 59 4 0 57 2 0 130 0 0 134 4 0 132 2 0 110 0 0 114 4 0 112 2 0 115 0 0 119 4 0 117 2 0 15 0 0 19 4 0 17 2 0 135 0 0 139 4 0 137 2 0 65 0 0 69 4 0 67 2 0 140 0 0 144 4 0 142 2 0 45 0 0 49 4 0 47 2 0 145 0 0 149 4 0 147 2 0

+
+
+
+ + + + -1395 237 3370 -1277 211 3375 -1338 225 3434 -1275 229 3495 -1393 255 3490 -3964 392 2093 -3865 387 2023 -3880 374 2107 -3794 374 2120 -3892 379 2191 -1515 186 3193 -1400 173 3225 -1473 184 3268 -1427 199 3340 -1542 212 3308 -3962 382 2095 -3952 381 2002 -3911 372 2053 -3860 375 2010 -3869 376 2103 -1513 216 3319 -1399 210 3291 -1441 215 3365 -1366 231 3407 -1480 237 3435 -4004 398 2155 -3994 395 2055 -3949 384 2110 -3895 385 2063 -3904 388 2163 -1455 275 3554 -1534 286 3643 -1541 273 3558 -1626 287 3564 -1547 277 3475 -3739 381 2143 -3739 373 2044 -3693 356 2096 -3642 344 2047 -3642 352 2146 -1435 271 3485 -1320 245 3505 -1390 250 3555 -1340 245 3625 -1455 272 3605 -663 53 923 -673 47 804 -607 42 858 -552 48 791 -542 53 910 -1473 258 3501 -1549 273 3592 -1559 253 3509 -1644 265 3516 -1568 250 3425 -680 48 946 -581 58 876 -594 39 959 -509 47 973 -607 37 1043 -1680 237 3385 -1685 206 3269 -1622 209 3327 -1564 198 3263 -1559 229 3380 -676 38 947 -667 43 855 -625 36 905 -575 47 862 -584 42 955 -1504 226 3362 -1418 227 3397 -1478 228 3423 -1450 242 3482 -1537 242 3447 -570 48 969 -569 45 869 -521 30 920 -469 26 870 -470 29 970 -1603 226 3318 -1511 224 3356 -1576 224 3384 -1546 237 3448 -1639 238 3411 378 49 1308 347 34 1192 422 36 1234 462 41 1157 493 56 1273 -1563 291 3656 -1469 282 3685 -1533 276 3718 -1500 275 3782 -1594 284 3752 173 37 1444 171 32 1324 234 32 1382 291 44 1318 294 49 1438 -4050 668 5783 -3936 649 5760 -3981 655 5832 -3909 659 5879 -4023 678 5901 380 32 1540 320 40 1438 403 34 1457 424 52 1376 484 44 1477 -4042 674 5835 -3959 661 5875 -4021 668 5898 -3995 676 5959 -4078 688 5919 601 53 1416 709 47 1467 628 42 1497 659 48 1578 551 53 1527 -4194 695 5760 -4104 686 5803 -4170 696 5827 -4142 710 5892 -4232 719 5849 529 58 1417 512 41 1299 580 34 1352 633 27 1283 649 44 1401 -4094 698 5928 -4004 676 5963 -4070 676 5991 -4041 667 6056 -4131 690 6022 550 61 1474 660 59 1522 581 47 1553 613 50 1634 503 51 1587 -5048 834 4399 -5108 835 4297 -5027 816 4318 -5005 815 4234 -4945 814 4335 268 48 1634 366 58 1564 353 39 1648 438 47 1662 340 37 1732 -5027 829 4523 -5017 832 4431 -4977 817 4481 -4926 818 4439 -4936 814 4531 427 38 1516 437 43 1424 479 36 1474 529 47 1432 520 42 1524 -4975 838 4582 -4968 821 4484 -4926 808 4540 -4873 792 4494 -4880 809 4592 353 46 1643 363 50 1543 408 41 1597 463 50 1551 453 46 1651 -4894 816 4393 -4897 792 4296 -4851 779 4350 -4803 754 4302 -4800 778 4399 730 48 1492 731 45 1392 779 30 1443 830 26 1393 829 29 1493 -1064 234 3808 -1092 215 3692 -1020 206 3738 -976 195 3664 -948 214 3780 1316 32 1323 1256 40 1222 1340 34 1241 1361 52 1159 1420 44 1260 -1086 246 3919 -1084 231 3800 -1025 224 3862 -964 218 3801 -966 233 3920 1364 38 1300 1373 43 1207 1416 36 1257 1466 47 1215 1456 42 1307 -1013 238 4039 -1065 249 3934 -986 227 3959 -958 234 3877 -906 223 3983 1320 46 1360 1330 50 1260 1376 41 1314 1430 50 1268 1420 46 1368 -880 213 3967 -883 194 3850 -822 186 3909 -763 176 3847 -760 195 3965 1471 48 1321 1472 45 1222 1520 30 1273 1571 26 1223 1570 29 1322 -916 222 3831 -930 199 3715 -868 183 3772 -814 159 3708 -801 183 3824 994 49 -284 963 34 -399 1038 36 -358 1078 41 -434 1109 56 -319 -804 212 3987 -811 198 3868 -750 183 3927 -693 169 3863 -686 184 3982 828 32 -269 825 27 -390 888 27 -331 946 39 -396 948 44 -275 -920 253 4149 -924 234 4030 -862 228 4090 -803 219 4026 -799 238 4145 849 28 -437 901 36 -543 931 30 -463 1010 48 -491 959 41 -385 -964 232 4019 -949 227 3927 -912 216 3980 -859 213 3940 -874 218 4032 1108 53 -277 1098 47 -396 1164 42 -342 1219 48 -409 1228 53 -290 -988 266 4140 -972 245 4043 -931 245 4101 -874 239 4058 -889 260 4155 1237 53 -152 1221 36 -270 1289 29 -217 1341 23 -286 1358 39 -168 -796 224 4090 -784 198 3995 -742 198 4053 -685 186 4010 -697 211 4106 962 43 13 947 32 -62 994 31 -30 1026 29 -78 1040 40 -1 -2226 150 2169 -2259 127 2056 -2184 125 2097 -2143 116 2021 -2110 140 2135 1034 43 -219 1133 52 -290 1120 33 -206 1205 41 -192 1107 31 -122 -2297 156 2318 -2301 139 2199 -2238 137 2258 -2180 136 2193 -2176 153 2312 1038 33 -218 1047 38 -310 1089 31 -260 1139 42 -303 1130 36 -210 -2331 177 2443 -2390 180 2341 -2308 166 2361 -2285 174 2278 -2227 170 2380 994 41 -158 1004 45 -257 1049 36 -203 1104 45 -249 1094 41 -150 -2187 156 2278 -2198 139 2160 -2133 132 2216 -2078 124 2149 -2067 141 2266 977 43 48 971 26 -49 1025 27 -2 1072 26 -56 1078 42 41 -2062 136 2196 -2081 109 2081 -2014 100 2135 -1963 80 2068 -1944 107 2183 -3248 324 2192 -3257 311 2074 -3194 295 2131 -3139 284 2065 -3129 297 2183 -2094 137 2328 -2137 135 2217 -2061 114 2252 -2026 107 2173 -1983 110 2285 -3270 320 2275 -3258 316 2183 -3219 304 2235 -3168 300 2193 -3179 304 2285 -2202 160 2398 -2104 151 2328 -2118 143 2413 -2032 142 2427 -2131 151 2497 -1159 49 388 -1190 34 273 -1115 36 315 -1074 41 238 -1043 56 353 -2206 150 2356 -2196 145 2263 -2155 138 2314 -2104 138 2271 -2114 144 2364 -1249 37 454 -1251 32 333 -1188 32 392 -1131 44 327 -1128 49 448 -2242 170 2459 -2232 162 2360 -2188 153 2415 -2133 151 2369 -2143 159 2468 -1205 32 514 -1265 40 412 -1181 34 432 -1160 52 350 -1101 44 451 -2038 138 2393 -2038 125 2295 -1992 110 2347 -1941 95 2299 -1941 108 2397 -1144 53 466 -1154 47 347 -1088 42 402 -1033 48 335 -1023 53 453 -3962 387 1993 -3996 369 1878 -3920 365 1920 -3880 361 1843 -3847 379 1957 -1056 58 391 -1072 41 274 -1004 34 327 -952 27 258 -936 44 375 -4170 389 1989 -4174 377 1869 -4111 374 1927 -4053 376 1862 -4049 387 1982 -1068 61 481 -1082 59 362 -1015 47 414 -961 50 346 -947 51 465 -4009 383 2119 -4069 391 2017 -3986 377 2037 -3964 388 1954 -3905 380 2055 -1160 48 489 -1062 58 419 -1075 39 502 -990 47 516 -1088 37 586 -3947 394 2070 -3958 382 1952 -3893 373 2006 -3838 369 1939 -3827 380 2057 -1157 38 490 -1148 43 398 -1105 36 448 -1055 47 406 -1065 42 498 -3823 385 1878 -3841 363 1762 -3774 352 1815 -3723 336 1747 -3705 358 1863 -1201 46 551 -1191 50 451 -1145 41 505 -1091 50 459 -1101 46 559 -3755 395 2112 -3771 388 1993 -3705 371 2046 -3652 364 1978 -3637 371 2096 -1050 48 512 -1049 45 413 -1001 30 464 -950 26 414 -951 29 513 + + + + + + + + + + 1 1 1 0 0.5 0.5 0 0 0 1 + + + + + + + + + 1 1 1 1 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 0 1 1 0 0 0 0 3 3 0 1 1 0 2 2 0 4 4 0 3 3 0 2 2 0 7 2 0 6 1 0 5 0 0 8 3 0 6 1 0 7 2 0 9 4 0 8 3 0 7 2 0 12 2 0 11 1 0 10 0 0 13 3 0 11 1 0 12 2 0 14 4 0 13 3 0 12 2 0 17 2 0 16 1 0 15 0 0 18 3 0 16 1 0 17 2 0 19 4 0 18 3 0 17 2 0 22 2 0 21 1 0 20 0 0 23 3 0 21 1 0 22 2 0 24 4 0 23 3 0 22 2 0 27 2 0 26 1 0 25 0 0 28 3 0 26 1 0 27 2 0 29 4 0 28 3 0 27 2 0 32 2 0 31 1 0 30 0 0 33 3 0 31 1 0 32 2 0 34 4 0 33 3 0 32 2 0 37 2 0 36 1 0 35 0 0 38 3 0 36 1 0 37 2 0 39 4 0 38 3 0 37 2 0 42 2 0 41 1 0 40 0 0 43 3 0 41 1 0 42 2 0 44 4 0 43 3 0 42 2 0 47 2 0 46 1 0 45 0 0 48 3 0 46 1 0 47 2 0 49 4 0 48 3 0 47 2 0 52 2 0 51 1 0 50 0 0 53 3 0 51 1 0 52 2 0 54 4 0 53 3 0 52 2 0 57 2 0 56 1 0 55 0 0 58 3 0 56 1 0 57 2 0 59 4 0 58 3 0 57 2 0 62 2 0 61 1 0 60 0 0 63 3 0 61 1 0 62 2 0 64 4 0 63 3 0 62 2 0 67 2 0 66 1 0 65 0 0 68 3 0 66 1 0 67 2 0 69 4 0 68 3 0 67 2 0 72 2 0 71 1 0 70 0 0 73 3 0 71 1 0 72 2 0 74 4 0 73 3 0 72 2 0 77 2 0 76 1 0 75 0 0 78 3 0 76 1 0 77 2 0 79 4 0 78 3 0 77 2 0 82 2 0 81 1 0 80 0 0 83 3 0 81 1 0 82 2 0 84 4 0 83 3 0 82 2 0 87 2 0 86 1 0 85 0 0 88 3 0 86 1 0 87 2 0 89 4 0 88 3 0 87 2 0 92 2 0 91 1 0 90 0 0 93 3 0 91 1 0 92 2 0 94 4 0 93 3 0 92 2 0 97 2 0 96 1 0 95 0 0 98 3 0 96 1 0 97 2 0 99 4 0 98 3 0 97 2 0 102 2 0 101 1 0 100 0 0 103 3 0 101 1 0 102 2 0 104 4 0 103 3 0 102 2 0 107 2 0 106 1 0 105 0 0 108 3 0 106 1 0 107 2 0 109 4 0 108 3 0 107 2 0 112 2 0 111 1 0 110 0 0 113 3 0 111 1 0 112 2 0 114 4 0 113 3 0 112 2 0 117 2 0 116 1 0 115 0 0 118 3 0 116 1 0 117 2 0 119 4 0 118 3 0 117 2 0 122 2 0 121 1 0 120 0 0 123 3 0 121 1 0 122 2 0 124 4 0 123 3 0 122 2 0 127 2 0 126 1 0 125 0 0 128 3 0 126 1 0 127 2 0 129 4 0 128 3 0 127 2 0 132 2 0 131 1 0 130 0 0 133 3 0 131 1 0 132 2 0 134 4 0 133 3 0 132 2 0 137 2 0 136 1 0 135 0 0 138 3 0 136 1 0 137 2 0 139 4 0 138 3 0 137 2 0 142 2 0 141 1 0 140 0 0 143 3 0 141 1 0 142 2 0 144 4 0 143 3 0 142 2 0 147 2 0 146 1 0 145 0 0 148 3 0 146 1 0 147 2 0 149 4 0 148 3 0 147 2 0 152 2 0 151 1 0 150 0 0 153 3 0 151 1 0 152 2 0 154 4 0 153 3 0 152 2 0 157 2 0 156 1 0 155 0 0 158 3 0 156 1 0 157 2 0 159 4 0 158 3 0 157 2 0 162 2 0 161 1 0 160 0 0 163 3 0 161 1 0 162 2 0 164 4 0 163 3 0 162 2 0 167 2 0 166 1 0 165 0 0 168 3 0 166 1 0 167 2 0 169 4 0 168 3 0 167 2 0 172 2 0 171 1 0 170 0 0 173 3 0 171 1 0 172 2 0 174 4 0 173 3 0 172 2 0 177 2 0 176 1 0 175 0 0 178 3 0 176 1 0 177 2 0 179 4 0 178 3 0 177 2 0 182 2 0 181 1 0 180 0 0 183 3 0 181 1 0 182 2 0 184 4 0 183 3 0 182 2 0 187 2 0 186 1 0 185 0 0 188 3 0 186 1 0 187 2 0 189 4 0 188 3 0 187 2 0 192 2 0 191 1 0 190 0 0 193 3 0 191 1 0 192 2 0 194 4 0 193 3 0 192 2 0 197 2 0 196 1 0 195 0 0 198 3 0 196 1 0 197 2 0 199 4 0 198 3 0 197 2 0 202 2 0 201 1 0 200 0 0 203 3 0 201 1 0 202 2 0 204 4 0 203 3 0 202 2 0 207 2 0 206 1 0 205 0 0 208 3 0 206 1 0 207 2 0 209 4 0 208 3 0 207 2 0 212 2 0 211 1 0 210 0 0 213 3 0 211 1 0 212 2 0 214 4 0 213 3 0 212 2 0 217 2 0 216 1 0 215 0 0 218 3 0 216 1 0 217 2 0 219 4 0 218 3 0 217 2 0 222 2 0 221 1 0 220 0 0 223 3 0 221 1 0 222 2 0 224 4 0 223 3 0 222 2 0 227 2 0 226 1 0 225 0 0 228 3 0 226 1 0 227 2 0 229 4 0 228 3 0 227 2 0 232 2 0 231 1 0 230 0 0 233 3 0 231 1 0 232 2 0 234 4 0 233 3 0 232 2 0 237 2 0 236 1 0 235 0 0 238 3 0 236 1 0 237 2 0 239 4 0 238 3 0 237 2 0 242 2 0 241 1 0 240 0 0 243 3 0 241 1 0 242 2 0 244 4 0 243 3 0 242 2 0 247 2 0 246 1 0 245 0 0 248 3 0 246 1 0 247 2 0 249 4 0 248 3 0 247 2 0 252 2 0 251 1 0 250 0 0 253 3 0 251 1 0 252 2 0 254 4 0 253 3 0 252 2 0 257 2 0 256 1 0 255 0 0 258 3 0 256 1 0 257 2 0 259 4 0 258 3 0 257 2 0 262 2 0 261 1 0 260 0 0 263 3 0 261 1 0 262 2 0 264 4 0 263 3 0 262 2 0 267 2 0 266 1 0 265 0 0 268 3 0 266 1 0 267 2 0 269 4 0 268 3 0 267 2 0 272 2 0 271 1 0 270 0 0 273 3 0 271 1 0 272 2 0 274 4 0 273 3 0 272 2 0 277 2 0 276 1 0 275 0 0 278 3 0 276 1 0 277 2 0 279 4 0 278 3 0 277 2 0 282 2 0 281 1 0 280 0 0 283 3 0 281 1 0 282 2 0 284 4 0 283 3 0 282 2 0 287 2 0 286 1 0 285 0 0 288 3 0 286 1 0 287 2 0 289 4 0 288 3 0 287 2 0 292 2 0 291 1 0 290 0 0 293 3 0 291 1 0 292 2 0 294 4 0 293 3 0 292 2 0 297 2 0 296 1 0 295 0 0 298 3 0 296 1 0 297 2 0 299 4 0 298 3 0 297 2 0 302 2 0 301 1 0 300 0 0 303 3 0 301 1 0 302 2 0 304 4 0 303 3 0 302 2 0 307 2 0 306 1 0 305 0 0 308 3 0 306 1 0 307 2 0 309 4 0 308 3 0 307 2 0 312 2 0 311 1 0 310 0 0 313 3 0 311 1 0 312 2 0 314 4 0 313 3 0 312 2 0 317 2 0 316 1 0 315 0 0 318 3 0 316 1 0 317 2 0 319 4 0 318 3 0 317 2 0 322 2 0 321 1 0 320 0 0 323 3 0 321 1 0 322 2 0 324 4 0 323 3 0 322 2 0 327 2 0 326 1 0 325 0 0 328 3 0 326 1 0 327 2 0 329 4 0 328 3 0 327 2 0 332 2 0 331 1 0 330 0 0 333 3 0 331 1 0 332 2 0 334 4 0 333 3 0 332 2 0 337 2 0 336 1 0 335 0 0 338 3 0 336 1 0 337 2 0 339 4 0 338 3 0 337 2 0 342 2 0 341 1 0 340 0 0 343 3 0 341 1 0 342 2 0 344 4 0 343 3 0 342 2 0 347 2 0 346 1 0 345 0 0 348 3 0 346 1 0 347 2 0 349 4 0 348 3 0 347 2 0 352 2 0 351 1 0 350 0 0 353 3 0 351 1 0 352 2 0 354 4 0 353 3 0 352 2 0 357 2 0 356 1 0 355 0 0 358 3 0 356 1 0 357 2 0 359 4 0 358 3 0 357 2 0 362 2 0 361 1 0 360 0 0 363 3 0 361 1 0 362 2 0 364 4 0 363 3 0 362 2 0 367 2 0 366 1 0 365 0 0 368 3 0 366 1 0 367 2 0 369 4 0 368 3 0 367 2 0 372 2 0 371 1 0 370 0 0 373 3 0 371 1 0 372 2 0 374 4 0 373 3 0 372 2 0 377 2 0 376 1 0 375 0 0 378 3 0 376 1 0 377 2 0 379 4 0 378 3 0 377 2 0 382 2 0 381 1 0 380 0 0 383 3 0 381 1 0 382 2 0 384 4 0 383 3 0 382 2 0 387 2 0 386 1 0 385 0 0 388 3 0 386 1 0 387 2 0 389 4 0 388 3 0 387 2 0 392 2 0 391 1 0 390 0 0 393 3 0 391 1 0 392 2 0 394 4 0 393 3 0 392 2 0 397 2 0 396 1 0 395 0 0 398 3 0 396 1 0 397 2 0 399 4 0 398 3 0 397 2 0 402 2 0 401 1 0 400 0 0 403 3 0 401 1 0 402 2 0 404 4 0 403 3 0 402 2 0 407 2 0 406 1 0 405 0 0 408 3 0 406 1 0 407 2 0 409 4 0 408 3 0 407 2 0 412 2 0 411 1 0 410 0 0 413 3 0 411 1 0 412 2 0 414 4 0 413 3 0 412 2 0 417 2 0 416 1 0 415 0 0 418 3 0 416 1 0 417 2 0 419 4 0 418 3 0 417 2 0 422 2 0 421 1 0 420 0 0 423 3 0 421 1 0 422 2 0 424 4 0 423 3 0 422 2 0 427 2 0 426 1 0 425 0 0 428 3 0 426 1 0 427 2 0 429 4 0 428 3 0 427 2 0 432 2 0 431 1 0 430 0 0 433 3 0 431 1 0 432 2 0 434 4 0 433 3 0 432 2 0 437 2 0 436 1 0 435 0 0 438 3 0 436 1 0 437 2 0 439 4 0 438 3 0 437 2 0 0 0 0 4 4 0 2 2 0 10 0 0 14 4 0 12 2 0 20 0 0 24 4 0 22 2 0 30 0 0 34 4 0 32 2 0 40 0 0 44 4 0 42 2 0 50 0 0 54 4 0 52 2 0 60 0 0 64 4 0 62 2 0 70 0 0 74 4 0 72 2 0 80 0 0 84 4 0 82 2 0 90 0 0 94 4 0 92 2 0 100 0 0 104 4 0 102 2 0 110 0 0 114 4 0 112 2 0 120 0 0 124 4 0 122 2 0 130 0 0 134 4 0 132 2 0 140 0 0 144 4 0 142 2 0 150 0 0 154 4 0 152 2 0 160 0 0 164 4 0 162 2 0 170 0 0 174 4 0 172 2 0 180 0 0 184 4 0 182 2 0 190 0 0 194 4 0 192 2 0 200 0 0 204 4 0 202 2 0 210 0 0 214 4 0 212 2 0 220 0 0 224 4 0 222 2 0 230 0 0 234 4 0 232 2 0 240 0 0 244 4 0 242 2 0 250 0 0 254 4 0 252 2 0 260 0 0 264 4 0 262 2 0 270 0 0 274 4 0 272 2 0 280 0 0 284 4 0 282 2 0 290 0 0 294 4 0 292 2 0 300 0 0 304 4 0 302 2 0 310 0 0 314 4 0 312 2 0 320 0 0 324 4 0 322 2 0 330 0 0 334 4 0 332 2 0 340 0 0 344 4 0 342 2 0 350 0 0 354 4 0 352 2 0 360 0 0 364 4 0 362 2 0 370 0 0 374 4 0 372 2 0 380 0 0 384 4 0 382 2 0 390 0 0 394 4 0 392 2 0 400 0 0 404 4 0 402 2 0 410 0 0 414 4 0 412 2 0 420 0 0 424 4 0 422 2 0 430 0 0 434 4 0 432 2 0 55 0 0 59 4 0 57 2 0 225 0 0 229 4 0 227 2 0 115 0 0 119 4 0 117 2 0 235 0 0 239 4 0 237 2 0 15 0 0 19 4 0 17 2 0 245 0 0 249 4 0 247 2 0 125 0 0 129 4 0 127 2 0 255 0 0 259 4 0 257 2 0 65 0 0 69 4 0 67 2 0 265 0 0 269 4 0 267 2 0 135 0 0 139 4 0 137 2 0 275 0 0 279 4 0 277 2 0 35 0 0 39 4 0 37 2 0 285 0 0 289 4 0 287 2 0 145 0 0 149 4 0 147 2 0 295 0 0 299 4 0 297 2 0 75 0 0 79 4 0 77 2 0 305 0 0 309 4 0 307 2 0 155 0 0 159 4 0 157 2 0 315 0 0 319 4 0 317 2 0 5 0 0 9 4 0 7 2 0 325 0 0 329 4 0 327 2 0 165 0 0 169 4 0 167 2 0 335 0 0 339 4 0 337 2 0 85 0 0 89 4 0 87 2 0 345 0 0 349 4 0 347 2 0 175 0 0 179 4 0 177 2 0 355 0 0 359 4 0 357 2 0 45 0 0 49 4 0 47 2 0 365 0 0 369 4 0 367 2 0 185 0 0 189 4 0 187 2 0 375 0 0 379 4 0 377 2 0 95 0 0 99 4 0 97 2 0 385 0 0 389 4 0 387 2 0 195 0 0 199 4 0 197 2 0 395 0 0 399 4 0 397 2 0 25 0 0 29 4 0 27 2 0 405 0 0 409 4 0 407 2 0 205 0 0 209 4 0 207 2 0 415 0 0 419 4 0 417 2 0 105 0 0 109 4 0 107 2 0 425 0 0 429 4 0 427 2 0 215 0 0 219 4 0 217 2 0 435 0 0 439 4 0 437 2 0

+
+
+
+ + + + -934 14 244 -886 14 261 -872 14 328 -857 14 219 -812 14 253 -849 14 166 -722 14 114 -861 14 93 -791 14 -10 -883 14 27 -860 14 -85 -911 14 -26 -914 14 -143 -962 14 -49 -947 14 -144 -1002 14 -160 -966 14 -168 -966 14 -186 -963 12 -188 -969 12 -191 -962 1 -192 -991 12 -248 -982 1 -247 -964 12 -346 -956 1 -342 -903 12 -431 -899 1 -423 -840 12 -451 -844 1 -442 -815 12 -389 -823 1 -387 -842 12 -292 -850 1 -292 -901 12 -213 -910 1 -211 -890 12 -202 -901 1 -199 -895 12 -170 -903 1 -176 -915 12 -147 -919 1 -158 -946 12 -148 -940 1 -158 -962 12 -169 -953 1 -174 -951 1 -197 -43 12 1279 -92 14 1239 -90 12 1238 -103 14 1185 -100 12 1185 -94 14 1120 -91 12 1121 -91 14 1019 -89 12 1019 -94 14 947 -91 12 948 -106 14 869 -103 12 869 -138 14 790 -136 12 789 -168 14 741 -165 12 740 -165 14 703 -162 12 704 -125 14 673 -123 12 675 -76 14 663 -75 12 665 -3 14 657 -3 12 660 68 14 664 67 12 666 118 14 680 117 12 683 145 14 709 142 12 710 143 14 746 140 12 745 116 14 790 114 12 790 93 14 870 90 12 869 75 14 948 73 12 948 68 14 1019 66 12 1019 73 14 1120 70 12 1121 79 14 1186 76 12 1186 69 14 1240 26 10 1277 -42 10 1278 -89 10 1238 -99 10 1184 -91 10 1120 -88 10 1018 -91 10 948 -102 10 869 -135 10 789 -163 10 740 -161 10 705 -122 10 676 -75 10 666 -3 10 660 67 10 666 116 10 683 141 10 710 139 10 745 113 10 790 89 10 869 72 10 948 65 10 1018 70 10 1120 -73 10 145 -110 12 110 -109 10 109 -157 12 84 -155 10 82 -171 12 40 -169 10 39 -159 12 -10 -157 10 -11 -148 12 -64 -147 10 -64 -159 12 -134 -158 10 -133 -159 12 -184 -157 10 -182 -134 12 -228 -132 10 -226 -89 12 -241 -88 10 -239 -38 12 -220 -37 10 -218 12 12 -167 12 10 -166 60 12 -123 59 10 -122 107 12 -93 107 10 -92 180 12 -67 179 10 -67 209 12 -36 207 10 -36 223 12 18 221 10 18 200 12 59 198 10 58 145 12 91 144 10 89 74 12 102 73 10 100 18 12 150 18 10 148 -26 12 167 -25 10 165 -74 12 147 -111 14 111 -158 14 84 -172 14 40 -161 14 -11 -150 14 -64 -161 14 -135 -160 14 -184 -135 14 -230 -89 14 -243 -37 14 -221 13 14 -169 61 14 -125 109 14 -94 181 14 -69 211 14 -37 224 14 19 201 14 60 146 14 92 74 14 103 19 14 152 -26 14 168 -75 14 148 -2339 -50 519 -2272 -53 407 -2291 -40 388 -2066 -55 339 -2078 -41 316 -1821 -56 280 -1831 -43 253 -1573 -57 225 -1590 -44 198 -1516 -44 147 -1516 -16 147 -1525 -44 76 -1525 -16 77 -1642 -16 -264 -1616 6 -255 -1582 -16 -552 -1553 10 -540 -1485 -16 -696 -1466 11 -671 -1278 -16 -769 -1271 9 -739 -996 -16 -790 -992 7 -761 -677 -16 -843 -666 5 -819 -541 -16 -948 -519 5 -933 -494 -16 -1120 -465 7 -1115 -479 -16 -1230 -450 10 -1217 -391 -16 -1332 -377 11 -1302 -234 -16 -1336 -242 10 -1306 -31 -16 -1208 -45 7 -1183 186 -16 -1110 171 9 -1083 370 -16 -985 358 6 -959 2614 107 7409 2584 110 7203 3660 14 6296 3537 14 6201 4380 14 4762 4294 14 4753 4612 12 3215 4508 14 3244 4371 11 1758 4240 14 1777 3811 14 635 3669 14 1694 2902 14 1083 2792 21 2049 2510 14 1351 2371 14 1495 2343 14 1297 2089 14 1445 2256 14 1235 2053 14 1147 2220 14 1116 2083 14 947 2233 14 1008 2208 14 812 2322 14 938 2524 14 857 2390 14 988 2592 14 1088 2417 14 1118 2401 14 1239 2403 1 1110 2392 1 1225 -1496 -58 173 -1496 -58 82 -1642 -45 -264 -1582 -45 -552 -1485 -45 -696 -1278 -45 -769 -996 -45 -790 -677 -45 -843 -541 -45 -948 -494 -45 -1120 -479 -45 -1230 -391 -45 -1332 -234 -45 -1336 -31 -45 -1208 186 -45 -1110 370 -45 -985 -334 18 2837 -114 14 2804 -113 10 2808 43 14 2865 42 9 2869 123 14 3005 122 9 3007 290 14 3060 288 10 3062 428 14 3218 425 10 3219 463 14 3419 459 10 3418 403 14 3638 400 10 3636 188 14 3827 187 10 3823 -24 14 3856 -24 10 3852 -246 23 3819 -245 19 3816 -423 41 3658 -420 37 3655 -488 43 3453 -484 38 3452 -461 37 3259 -457 32 3260 -541 39 3115 -536 34 3116 -517 34 2953 -512 29 2956 -1006 14 -19 -1134 14 -34 -1121 14 -154 -1325 14 -143 -1092 14 -347 -1288 14 -566 -1025 14 -498 -969 14 -694 -824 14 -654 -757 14 -747 -682 14 -720 -632 14 -750 -576 14 -805 -589 14 -736 -526 14 -773 -576 14 -694 -496 14 -670 -598 14 -646 -517 14 -517 -644 14 -620 -690 14 -476 -747 14 -535 -839 14 -455 -916 14 -488 -906 14 -435 -968 14 -348 2347 1 1276 3161 14 338 2340 14 60 2517 14 -165 2246 14 -675 2333 6 -761 1798 14 -879 1895 9 -962 1574 14 -1033 1659 9 -1097 1383 14 -1063 1396 10 -1138 1213 14 -1021 1165 9 -1081 930 6 -940 1153 -16 -1109 920 -16 -966 1153 -45 -1109 920 -45 -966 1165 -58 -1081 931 -58 -937 -1223 10 1703 -1156 10 1601 -1216 14 1706 -1147 14 1601 -906 14 1666 -1155 14 1499 -680 14 1185 -1147 14 1258 -864 14 779 -1364 14 868 -1216 14 664 -1414 14 730 -1356 14 447 -1596 15 595 -1787 16 340 -1756 16 541 -2036 17 394 -1915 17 600 -2187 19 456 -2239 20 545 -2336 20 524 -2353 43 716 -2381 -8 507 -2397 18 719 -2381 -37 506 -2397 -10 718 -2353 -27 713 -2114 -23 980 803 1 488 797 12 496 778 12 438 795 14 499 775 14 439 730 14 553 680 14 560 684 14 600 629 14 630 661 14 631 657 14 674 663 12 632 659 12 673 664 1 671 680 1 688 703 1 685 677 12 693 707 12 689 708 14 692 730 14 657 766 14 709 783 14 622 874 14 586 782 14 571 864 14 499 -429 12 902 -433 14 901 -405 12 856 -407 14 853 -360 12 832 -361 14 829 -318 12 843 -316 14 840 -308 12 869 -305 14 865 -217 12 876 -215 14 871 -147 12 934 -142 14 933 -137 12 1010 -133 14 1011 -197 12 1057 -194 14 1060 -288 12 1051 -288 14 1054 -357 12 995 -361 14 998 -360 12 954 -364 14 959 -371 12 958 -371 14 962 -987 0 135 -1010 12 80 -1003 0 79 -1017 12 17 -1010 0 20 -1003 12 -17 -997 0 -11 -961 12 -45 -960 0 -36 -913 12 -23 -917 0 -14 -886 12 29 -893 0 31 -864 12 94 -871 0 95 -852 12 166 -858 0 167 -861 12 218 -866 0 219 -887 12 257 -889 0 251 -933 12 241 -929 0 236 -967 12 193 -961 0 191 -994 12 138 -1014 14 81 -1021 14 16 -970 14 196 -997 14 140 -3199 254 4041 -3227 275 4028 -3577 327 4252 -3581 342 4222 -4660 572 4037 -4663 611 4033 -5169 712 4121 -5174 751 4113 -5587 853 4262 -5586 887 4282 -6182 996 4298 -6112 999 4388 -6246 1030 4480 -5803 988 4746 -6252 1052 4667 -6146 1058 4865 -6381 1068 4642 -6251 1070 4888 -6412 1031 4648 -6272 1038 4912 -6405 989 4658 -6267 997 4922 -6369 965 4668 -6239 971 4912 -3199 254 4041 -3303 241 3618 -3227 275 4028 -3328 262 3637 -3227 313 4028 -3328 299 3637 -3196 333 4043 -3306 326 3620 -3180 327 3657 -3949 355 2566 -3054 319 2831 -3865 349 2049 -2902 235 2209 -3305 263 1792 -3008 228 1933 -2618 157 1851 -2521 157 2039 -2411 136 2006 -2503 141 2047 -2412 124 2018 -2 14 465 73 14 465 159 14 535 213 14 419 248 14 652 333 14 333 517 14 517 419 14 213 651 14 332 465 14 73 722 14 114 465 14 -73 722 14 -114 419 14 -213 651 14 -332 333 14 -333 517 14 -517 213 14 -419 -2283 115 2166 -2321 113 2068 -2263 126 2172 -2306 124 2064 -1977 72 2078 -2253 102 1900 -2186 76 1701 -2445 108 1510 -3158 213 1490 -3142 195 1416 -3927 317 1307 -3854 286 1232 -4425 344 1250 -3847 250 1202 -4412 303 1225 -3843 214 1203 -4408 265 1226 -3846 202 1235 -4416 255 1252 4619 -45 3204 4379 -16 1737 4379 -45 1737 3884 -16 490 3884 -45 490 3196 -16 176 3196 -45 176 2605 -16 -259 2605 -45 -259 2344 -16 -784 2344 -45 -784 1914 -16 -986 1914 -45 -986 1669 -16 -1126 1669 -45 -1126 1395 -16 -1169 1395 -45 -1169 -1485 14 1818 -1345 11 1781 -1486 19 1826 -1341 15 1787 -1232 22 1928 -998 15 1828 -592 14 1789 -382 14 1292 -268 14 1181 -153 14 1333 -43 14 1281 27 12 1277 66 10 1238 -720 78 3432 -593 105 3769 -848 181 3935 -602 155 4062 -867 248 4346 -280 130 4239 -296 201 4761 272 72 4767 -313 275 5282 219 197 5623 -288 299 6317 751 113 5964 670 163 6776 2288 93 6553 588 177 7588 556 199 7985 523 195 8082 -2078 -13 316 -1831 -14 254 -2067 11 340 -1821 11 281 -1538 14 296 -1402 14 219 -1082 14 465 -1130 14 140 -1052 14 270 -797 400 7011 -794 386 6096 -1115 446 6638 -1189 352 5776 -1526 409 6375 -1583 322 5457 -1937 326 6112 -2213 292 5419 -2390 317 5746 -2843 353 5380 -3019 440 5824 -3207 455 5561 -3310 483 5623 -3210 451 5560 -3312 479 5621 -1614 -58 -254 -1554 -58 -540 -1466 -58 -672 -1271 -58 -739 -992 -58 -760 -664 -58 -815 -515 -58 -931 -463 -58 -1114 1872 14 398 1608 14 -393 1280 14 -264 1196 14 -463 1000 14 -298 946 14 -399 882 14 -331 856 14 -415 773 14 -408 828 14 -433 798 14 -439 799 12 -443 774 12 -475 802 1 -453 782 1 -479 -651 14 -332 -419 14 -213 -722 14 -114 -465 14 -73 -465 14 73 -419 14 213 -333 14 333 3879 8 516 3188 7 201 2595 8 -233 -1259 460 7177 -1079 414 7435 -1351 464 7193 -1497 440 7470 -1498 472 7202 -1972 389 7542 -2016 412 7333 -2683 313 7651 -2364 377 6862 -2973 433 6711 -3037 454 6570 -3139 468 6664 -3192 487 6515 -3215 485 6637 -3309 503 6638 -3304 486 6646 -3344 492 6673 1353 14 -816 919 14 -815 672 14 -816 630 6 -887 455 14 -873 313 12 -938 273 9 -985 257 11 -971 242 10 -996 254 9 -970 240 8 -994 235 0 -990 207 0 -1002 806 14 -541 814 12 -534 802 12 -538 787 1 -531 795 1 -542 778 13 -533 755 1 -540 755 12 -535 709 12 -571 754 14 -532 707 14 -569 729 14 -514 690 14 -488 770 14 -473 636 14 -636 408 14 -801 332 14 -651 265 14 -845 114 14 -722 184 14 -837 98 14 -865 138 14 -886 113 14 -921 116 12 -923 104 12 -948 120 0 -927 110 0 -947 194 12 893 128 1 949 121 12 946 116 1 1018 108 12 1021 167 1 1066 163 12 1073 251 1 1065 252 12 1071 319 1 1015 326 12 1018 331 1 946 339 12 944 280 1 899 284 12 893 196 1 900 -320 14 -816 -321 12 -818 -247 14 -867 -250 12 -868 -232 14 -935 -236 12 -934 -289 14 -979 -290 12 -975 -377 14 -971 -376 12 -968 -452 14 -917 -449 12 -916 -466 14 -850 -462 12 -852 -410 14 -804 -409 12 -808 -1297 448 7053 -1302 463 7083 -1308 448 7080 -1352 464 7112 -1351 449 7108 -1402 466 7124 -1401 451 7118 -1438 469 7111 -1429 453 7110 -1423 468 7071 -1419 452 7079 -1380 466 7042 -1376 450 7050 -1327 464 7031 -1325 449 7040 -1295 463 7050 -680 12 -719 -632 12 -747 -591 12 -733 -579 12 -694 -601 12 -648 -644 12 -623 -686 12 -636 -688 14 -634 -698 12 -677 -702 14 -677 -1571 478 7120 -1503 474 6996 -1375 462 6929 -1249 462 6969 -1180 458 7094 -481 14 -909 -422 14 -989 -349 14 -1012 -277 14 -1015 -229 14 -971 -201 14 -1039 -179 14 -980 -123 14 -1005 -123 12 -1002 -59 12 -998 -122 1 -996 -62 1 -992 -693 1 -675 -673 1 -717 -633 1 -739 -596 1 -729 -584 1 -693 -604 1 -652 -644 1 -630 -681 1 -639 -324 1 -825 -407 1 -818 -456 1 -854 -442 1 -913 -373 1 -961 -290 1 -968 -241 1 -932 -255 1 -872 -672 1 747 -685 12 719 -680 1 723 -663 12 702 -660 1 708 -622 12 705 -625 1 710 -590 12 724 -595 1 729 -582 12 754 -588 1 752 -603 12 774 -607 1 767 -646 12 770 -642 1 765 -679 12 750 229 14 744 169 14 811 144 14 871 118 14 944 104 14 1022 193 14 890 161 14 1076 253 14 1074 329 14 1020 342 14 943 286 14 890 -777 14 423 -651 14 332 -668 14 522 -517 14 517 -636 14 636 -519 14 685 -587 14 722 -445 14 779 -578 14 755 -523 14 840 -601 14 777 -641 14 855 -646 14 774 -683 14 751 -3581 380 4222 -4628 655 4070 -5160 789 4140 -5055 798 4226 -5568 902 4376 -4692 758 4561 -4600 758 5501 -4914 845 5759 -4197 686 6414 -5261 876 6044 -817 14 447 -743 14 505 -704 14 588 -722 14 651 -692 14 684 -757 14 757 -689 14 717 550 14 700 459 14 706 476 14 764 371 14 757 399 14 807 258 14 837 -664 14 699 -622 14 701 880 14 82 882 14 127 844 14 216 903 14 150 942 14 290 935 14 138 990 14 131 952 14 99 950 14 52 949 12 98 948 12 54 940 1 61 924 1 45 248 0 -969 261 12 -925 254 0 -925 245 12 -887 238 0 -891 216 12 -876 213 0 -883 182 12 -883 181 0 -889 140 12 -889 145 0 -892 835 1 -467 829 1 -500 845 12 -462 837 12 -501 840 14 -502 816 14 -536 884 14 -562 820 14 -578 818 14 -667 796 14 -634 749 14 -669 794 12 -632 748 12 -666 747 1 -662 708 1 -660 -802 32 2365 -93 14 2080 -167 14 1474 120 14 1633 -59 14 1387 97 14 1383 28 14 1279 66 12 1238 76 10 1186 824 1 -448 827 12 -436 849 14 -460 887 14 -461 1089 14 -620 1015 14 4 1281 14 228 1020 14 272 1028 14 386 964 14 354 977 14 469 931 14 435 862 12 495 859 1 486 1089 14 695 961 14 880 700 14 852 723 14 1053 571 14 855 533 14 934 530 12 932 455 12 972 524 1 926 456 1 964 -332 14 -651 -415 14 -740 -297 14 -764 -182 14 -830 -164 14 -899 -199 14 -934 -196 12 -934 -177 12 -977 -190 1 -935 -174 1 -972 -1284 231 3807 -1328 247 3906 -1300 244 3779 -1352 263 3901 -1557 250 3576 -1558 293 4088 -1902 268 3793 -2042 288 4005 -2246 229 3498 -2527 267 3923 -2430 248 3440 -2601 264 3298 -2429 242 3435 -2597 258 3296 -4452 372 1326 -4724 392 1428 -4760 394 1552 -4798 393 1372 -4849 397 1496 -4817 356 1347 -4874 359 1486 -4813 316 1348 -4870 320 1487 -4789 297 1373 -4842 300 1498 -58 14 -1001 -56 14 -1034 20 14 -989 43 14 -1063 105 14 -1027 168 11 -1037 219 10 -1024 210 11 -1011 -1432 305 4480 -1895 300 4644 -2358 273 4807 -2848 328 4388 -2975 349 5025 -3169 388 4853 -3335 453 5197 -3429 468 5092 -3429 465 5095 -3562 493 5030 555 14 3951 786 14 3549 730 19 4391 1228 22 3690 950 17 4547 1686 69 4891 951 18 4793 651 31 4983 -1807 251 8559 -1767 250 8451 -348 1 937 -349 1 991 -284 1 1045 -200 1 1051 -146 1 1006 -154 1 936 -333 14 -333 -213 14 -419 -73 14 -465 73 14 -465 -2497 156 2240 -2406 145 2289 -2513 173 2248 -2402 159 2303 -2527 197 2495 -2024 105 2408 -2319 193 2860 -1631 98 2948 -2148 176 3001 -2040 176 3177 -2152 172 3004 -2045 172 3176 -2318 128 2258 -2301 140 2268 -1845 67 2309 -1636 17 1785 -1630 12 1778 -1707 10 1596 -1716 14 1595 -1633 14 1500 -1809 29 1450 -1543 14 1294 -1891 39 1206 -1516 15 1008 -1766 26 933 -1578 17 843 -1670 19 822 -1596 5 822 -1665 6 805 -4519 380 1991 -4664 381 1926 -4001 350 2664 -4693 348 1931 -4024 317 2693 -4690 309 1932 -4023 279 2693 -4000 260 2663 182 14 1243 388 14 1410 698 14 1726 596 14 2296 237 14 2542 607 14 2522 -962 14 334 -882 14 450 -818 12 452 -747 12 508 -817 1 460 -751 1 512 -892 14 -168 -857 14 -200 -839 14 -290 -812 14 -390 4619 -16 3204 4386 -16 4762 4386 -45 4762 3660 -45 6296 3649 -58 6283 824 14 -273 895 14 -276 938 14 -267 935 12 -264 966 12 -203 929 1 -257 956 1 -201 181 14 -880 217 14 -873 247 14 -885 298 14 -892 264 14 -925 -2291 -11 389 -2272 15 411 -720 303 4959 -1127 314 4636 -1121 285 4408 -1265 280 4325 -1126 271 4386 -1246 263 4316 4610 -58 3214 4372 -58 1757 3879 -58 517 3188 -58 203 2595 -58 -233 2332 -58 -759 -407 1 939 -419 1 903 -400 1 862 -360 1 840 -323 1 849 -311 1 885 -304 1 877 -2003 51 1388 -2112 51 1347 -2025 42 1179 -2071 23 1171 -2156 23 984 -2156 -6 983 936 1 2529 1087 2 2520 931 14 2548 1101 14 2538 1039 14 2684 1251 17 2612 1813 40 3202 1818 19 2187 2999 96 3901 3904 14 3515 -213 14 419 -284 14 558 -2462 99 1440 -2152 35 1330 -2071 -6 1171 712 14 -718 702 14 -667 686 14 -623 689 12 -623 714 1 -574 809 1 -527 816 12 -578 808 1 -579 -114 14 -722 -71 14 -856 -102 14 -896 -45 14 -923 -102 12 -898 -47 12 -925 -52 1 -929 -36 1 -966 -3901 457 7516 -5325 787 6098 -3921 475 7540 -5350 810 6115 -3921 510 7540 -5350 850 6114 -3901 539 7516 -5326 881 6097 558 1 856 567 12 855 548 14 785 656 14 787 610 14 722 676 14 695 -4628 681 4190 -3838 524 4546 -4331 699 4875 -3903 580 4884 -4038 622 5073 -3721 538 5045 -3837 575 5152 -3835 571 5154 -3911 596 5286 -1026 14 636 -859 14 596 -786 14 653 -856 12 594 -785 12 649 -787 1 641 -731 1 639 -3221 470 6647 -3144 453 6676 -3106 459 6718 -3117 446 6717 -3149 465 6762 -3157 452 6745 -3248 485 6756 -3240 468 6743 -1283 14 -668 -1387 14 -631 -1465 14 -558 -1548 14 -230 -963 14 461 -899 14 513 -895 12 513 -851 1 590 925 12 39 926 14 36 945 14 -74 976 14 -109 1034 14 -157 969 14 -204 101 14 -948 114 14 -981 145 13 -1003 178 12 -1014 209 9 -1009 -1164 10 1503 -1243 10 1438 -1237 14 1431 -1371 14 1415 -1508 14 1435 -1627 10 1504 714 14 594 713 11 597 685 12 602 688 1 606 668 1 636 26 14 -841 28 14 -910 -28 14 -967 -31 12 -967 1155 2 2465 1172 15 2469 1288 16 2352 1070 14 2207 1436 14 1197 -513 14 957 -417 14 946 -414 12 944 -371 1 949 -3812 543 7433 -3179 465 6873 -3336 498 6840 -3328 502 6725 -3317 485 6714 -1793 161 8563 -1807 178 8588 -1807 213 8590 -797 14 -582 -995 14 -247 39 43 4248 219 63 4458 378 21 4257 424 27 4504 524 25 4501 440 15 4522 518 13 4521 787 14 2666 774 14 2497 717 14 2409 792 1 2486 738 1 2416 -853 67 2995 -1068 178 3401 -1144 232 3857 -1031 242 4074 -1156 222 3877 -1051 230 4076 -86 14 -1122 -208 14 -1199 -325 14 -1230 -386 14 -1159 -560 31 2670 -337 23 2833 170 -58 -1083 -46 -58 -1181 -242 -58 -1307 -378 -58 -1304 -451 -58 -1218 -6336 936 4446 -6366 958 4425 -6374 998 4415 -6351 1037 4422 117 12 -979 121 0 -974 -2539 154 2139 -2560 172 2136 -2660 251 2816 -2510 220 2784 -2656 245 2821 -2507 215 2790 -3135 346 4127 -3495 418 4343 -3577 410 4247 -3227 313 4028 -333 14 787 -246 14 826 733 14 617 731 12 618 712 1 599 723 1 656 834 14 -149 897 14 46 898 12 48 904 1 55 -3148 427 5445 -3145 430 5445 -3152 419 5316 -3230 430 5229 -3232 427 5230 -3337 450 5198 -1531 16 819 -1545 15 759 -1611 15 715 -1690 16 693 -1687 4 714 -1729 5 729 942 1 95 933 12 136 928 1 125 904 12 147 908 1 135 884 12 126 892 1 119 899 14 -104 902 12 -107 944 12 -78 943 1 -87 965 1 -113 -3449 526 6731 -3385 521 6567 -3354 510 6668 807 14 353 810 12 355 785 1 435 -6195 957 4278 -6188 917 4289 -6164 898 4321 -3618 574 6016 -3306 511 5974 -3528 534 5677 -3424 506 5607 -3425 502 5605 -5580 814 4272 -5147 698 4159 -4621 562 4081 -3142 166 1388 -2467 74 1413 -3140 132 1388 -2466 43 1413 -3144 119 1412 -2476 30 1429 631 -16 -914 631 -45 -914 630 -58 -884 357 -58 -957 -2205 377 6514 1895 -58 -962 1659 -58 -1097 1396 -58 -1138 -4657 289 1928 -1404 14 75 -1500 4 78 898 1 -264 896 12 -272 871 14 -236 475 1 778 407 1 816 476 12 768 402 12 810 360 14 885 -3932 628 5856 -3677 566 5685 -3805 590 5617 -3676 562 5683 -3803 586 5615 -4116 661 5564 -3902 606 5487 -3914 600 5285 -3899 601 5487 -2112 44 987 -2012 43 969 614 29 4805 713 26 4801 782 22 4687 638 24 4584 625 12 4598 1101 2 2395 957 1 2351 1115 14 2383 959 14 2332 784 14 2182 -3700 498 4737 -3438 438 4709 -3629 443 4362 960 12 354 927 12 433 950 1 353 920 1 430 -2022 189 3343 -2027 185 3340 876 14 -165 880 12 -166 875 12 -236 888 1 -167 882 1 -234 3235 25 4915 -73 14 465 973 12 -110 932 1 300 939 12 293 873 14 293 373 1 886 364 12 885 383 14 956 -3039 439 6843 -1329 265 4120 -1348 282 4122 -725 12 648 -716 1 585 -2735 270 2933 -2713 274 3111 -2708 267 3112 -1620 3 729 -1565 3 768 -1555 3 806 -1030 264 4291 -1053 253 4287 -420 14 -1055 -2152 5 1330 -2030 -23 1167 -972 14 -189 775 1 -512 767 12 -512 763 14 -512 -885 14 -202 -896 14 -214 417 30 4599 493 31 4709 512 18 4708 619 16 4785 728 12 657 -163 12 -901 -104 1 -905 -1487 3 170 -1590 -15 199 1199 14 477 694 1 -624 705 11 -664 537 1 794 545 12 788 890 1 85 882 12 83 -872 1 462 -879 12 454 455 14 977 386 12 954 -1567 5 224 774 14 -531 463 14 1176 876 1 302 874 12 296 -3077 332 4007 -4142 657 5264 -3720 535 5048 -3562 496 5027 -1726 14 1695 -1716 10 1693 -2248 223 3492 -2101 203 3456 -2097 208 3461 -2612 368 6169 -1909 26 764 -1742 20 775 -1720 7 767 -1746 18 717 793 14 2342 806 1 2360 1770 14 925 -127 14 -1045 1316 14 -7 720 24 4698 699 12 4707 146 11 -1001 148 0 -995 178 10 -1012 178 0 -1005 -708 12 588 -154 14 871 727 1 620 788 1 -629 -3528 530 5675 -2266 40 708 -2730 264 2936 438 17 4599 815 1 358 394 1 947 -887 1 516 909 1 -112 -161 1 -907 -2116 -12 1350 -2320 188 2864 -3155 416 5316 -332 14 651 -5570 798 4306 -2789 290 3381 697 14 4785 3660 -16 6296 -560 31 2670 -1373 10 1421 -1506 10 1441 2380 1 997 2321 1 953 2261 1 1003 2244 1 1119 2280 1 1231 -220 1 883 4376 -58 4761 + + + + + + + + + + -1.8671875 7.837890625 -1.78515625 7.80859375 -1.759765625 7.6953125 -1.734375 7.880859375 -1.658203125 7.822265625 -1.720703125 7.970703125 -1.50390625 8.060546875 -1.7421875 8.095703125 -1.623046875 8.2734375 -1.779296875 8.208984375 -1.740234375 8.400390625 -1.826171875 8.30078125 -1.83203125 8.5 -1.9140625 8.33984375 -1.888671875 8.501953125 -1.982421875 8.529296875 -1.921875 8.54296875 -1.919921875 8.572265625 -1.916015625 8.576171875 -1.92578125 8.58203125 -1.9140625 8.583984375 -1.962890625 8.677734375 -1.94921875 8.67578125 -1.91796875 8.845703125 -1.904296875 8.83984375 -1.814453125 8.9921875 -1.806640625 8.9765625 -1.70703125 9.025390625 -1.712890625 9.009765625 -1.6640625 8.919921875 -1.677734375 8.916015625 -1.7109375 8.75390625 -1.72265625 8.75390625 -1.810546875 8.619140625 -1.826171875 8.615234375 -1.791015625 8.599609375 -1.80859375 8.595703125 -1.80078125 8.544921875 -1.814453125 8.5546875 -1.833984375 8.5078125 -1.841796875 8.525390625 -1.88671875 8.5078125 -1.876953125 8.525390625 -1.9140625 8.544921875 -1.8984375 8.552734375 -1.89453125 8.59375 -0.345703125 6.072265625 -0.4296875 6.140625 -0.42578125 6.142578125 -0.447265625 6.232421875 -0.443359375 6.232421875 -0.43359375 6.34375 -0.427734375 6.341796875 -0.427734375 6.515625 -0.423828125 6.515625 -0.43359375 6.638671875 -0.4296875 6.63671875 -0.453125 6.771484375 -0.44921875 6.771484375 -0.509765625 6.90625 -0.50390625 6.908203125 -0.55859375 6.990234375 -0.552734375 6.9921875 -0.552734375 7.0546875 -0.548828125 7.052734375 -0.484375 7.10546875 -0.482421875 7.1015625 -0.40234375 7.123046875 -0.40234375 7.119140625 -0.27734375 7.1328125 -0.27734375 7.12890625 -0.15625 7.12109375 -0.15625 7.1171875 -0.068359375 7.09375 -0.072265625 7.08984375 -0.0234375 7.044921875 -0.029296875 7.04296875 -0.02734375 6.98046875 -0.03125 6.984375 -0.07421875 6.90625 -0.076171875 6.908203125 -0.11328125 6.76953125 -0.1171875 6.771484375 -0.142578125 6.63671875 -0.146484375 6.63671875 -0.15625 6.515625 -0.158203125 6.515625 -0.146484375 6.34375 -0.150390625 6.341796875 -0.13671875 6.23046875 -0.140625 6.23046875 -0.154296875 6.138671875 -0.2265625 6.076171875 -0.345703125 6.07421875 -0.423828125 6.142578125 -0.44140625 6.234375 -0.423828125 6.517578125 -0.427734375 6.63671875 -0.447265625 6.771484375 -0.55078125 6.990234375 -0.546875 7.052734375 -0.48046875 7.1015625 -0.400390625 7.119140625 -0.27734375 7.126953125 -0.158203125 7.1171875 -0.07421875 7.087890625 -0.03125 7.04296875 -0.033203125 6.982421875 -0.078125 6.90625 -0.119140625 6.771484375 -0.1484375 6.63671875 -0.16015625 6.517578125 -0.15234375 6.341796875 -0.3984375 8.0078125 -0.4609375 8.06640625 -0.458984375 8.068359375 -0.541015625 8.111328125 -0.537109375 8.11328125 -0.564453125 8.185546875 -0.560546875 8.1875 -0.544921875 8.2734375 -0.541015625 8.2734375 -0.525390625 8.365234375 -0.5234375 8.365234375 -0.544921875 8.484375 -0.541015625 8.482421875 -0.54296875 8.568359375 -0.541015625 8.56640625 -0.501953125 8.64453125 -0.498046875 8.642578125 -0.42578125 8.66796875 -0.423828125 8.6640625 -0.337890625 8.630859375 -0.3359375 8.62890625 -0.251953125 8.541015625 -0.251953125 8.5390625 -0.169921875 8.466796875 -0.169921875 8.46484375 -0.087890625 8.4140625 -0.08984375 8.4140625 0.03515625 8.37109375 0.033203125 8.37109375 0.083984375 8.31640625 0.080078125 8.31640625 0.107421875 8.22265625 0.103515625 8.224609375 0.068359375 8.154296875 0.06640625 8.15625 -0.0234375 8.099609375 -0.025390625 8.1015625 -0.14453125 8.080078125 -0.146484375 8.083984375 -0.240234375 7.998046875 -0.240234375 8.001953125 -0.31640625 7.970703125 -0.31640625 7.97265625 -0.400390625 8.00390625 -0.462890625 8.064453125 -0.54296875 8.109375 -0.56640625 8.185546875 -0.546875 8.2734375 -0.529296875 8.365234375 -0.546875 8.486328125 -0.546875 8.5703125 -0.501953125 8.6484375 -0.42578125 8.669921875 -0.3359375 8.634765625 -0.25 8.54296875 -0.16796875 8.46875 -0.0859375 8.416015625 0.037109375 8.373046875 0.0859375 8.318359375 0.109375 8.22265625 0.0703125 8.15234375 -0.021484375 8.09765625 -0.14453125 8.078125 -0.23828125 7.99609375 -0.318359375 7.966796875 -0.400390625 8.001953125 -3.947265625 6.892578125 -3.88671875 7.23046875 -3.849609375 7.205078125 -3.65625 7.505859375 -3.607421875 7.48046875 -3.34375 7.75 -3.30859375 7.716796875 -3.017578125 7.921875 -2.978515625 7.89453125 -2.888671875 8.001953125 -2.833984375 7.9765625 -2.89453125 8.1015625 -2.8515625 8.09765625 -3.072265625 8.703125 -3.02734375 8.6875 -2.97265625 9.197265625 -2.923828125 9.177734375 -2.806640625 9.443359375 -2.7734375 9.400390625 -2.453125 9.568359375 -2.44140625 9.517578125 -1.970703125 9.603515625 -1.96484375 9.5546875 -1.427734375 9.6953125 -1.408203125 9.65234375 -1.1953125 9.873046875 -1.158203125 9.84765625 -1.115234375 10.16796875 -1.06640625 10.158203125 -1.08984375 10.35546875 -1.041015625 10.33203125 -0.939453125 10.529296875 -0.916015625 10.478515625 -0.671875 10.53515625 -0.685546875 10.482421875 -0.326171875 10.31640625 -0.349609375 10.2734375 0.04296875 10.1484375 0.017578125 10.103515625 0.357421875 9.935546875 0.337890625 9.892578125 5.42578125 -9.447265625 5.34765625 -9.0390625 10.0546875 -5.689453125 9.751953125 -5.29296875 11.65234375 -1.455078125 11.404296875 -1.26953125 12.068359375 2.76953125 11.8359375 2.65234375 10.68359375 5.255859375 10.611328125 4.923828125 8.248046875 7.087890625 7.501953125 5.36328125 5.1953125 6.408203125 6.611328125 3.572265625 3.9765625 5.94921875 3.701171875 5.703125 3.66015625 6.04296875 3.328125 5.7890625 3.546875 6.146484375 3.28125 6.298828125 3.498046875 6.349609375 3.3203125 6.638671875 3.515625 6.533203125 3.580078125 6.931640625 3.6328125 6.654296875 3.900390625 6.828125 3.740234375 6.568359375 4.080078125 6.408203125 3.794921875 6.345703125 3.76171875 6.140625 3.765625 6.359375 3.7421875 6.1640625 -2.921875 8.017578125 -2.939453125 8.107421875 -3.1328125 8.71875 -3.025390625 9.216796875 -2.837890625 9.48828125 -2.458984375 9.615234375 -1.98046875 9.6484375 -1.44921875 9.73046875 -1.228515625 9.90625 -1.15234375 10.193359375 -1.12890625 10.392578125 -0.96484375 10.5859375 -0.654296875 10.59375 -0.31640625 10.384765625 0.060546875 10.20703125 0.373046875 9.990234375 -0.7734375 3.41015625 -0.466796875 3.470703125 -0.46484375 3.462890625 -0.19921875 3.365234375 -0.19921875 3.359375 -0.0625 3.126953125 -0.0625 3.123046875 0.22265625 3.033203125 0.21875 3.029296875 0.45703125 2.763671875 0.451171875 2.76171875 0.515625 2.421875 0.509765625 2.423828125 0.4140625 2.046875 0.41015625 2.05078125 0.048828125 1.724609375 0.046875 1.73046875 -0.314453125 1.67578125 -0.314453125 1.681640625 -0.685546875 1.73828125 -0.68359375 1.744140625 -0.955078125 2.013671875 -0.94921875 2.017578125 -1.02734375 2.361328125 -1.021484375 2.36328125 -0.966796875 2.69140625 -0.962890625 2.69140625 -1.0625 2.939453125 -1.0546875 2.935546875 -1.01171875 3.212890625 -1.0078125 3.208984375 -1.990234375 8.287109375 -2.20703125 8.314453125 -2.185546875 8.517578125 -2.533203125 8.5 -2.134765625 8.84765625 -2.470703125 9.220703125 -2.021484375 9.10546875 -1.92578125 9.439453125 -1.6796875 9.37109375 -1.564453125 9.53125 -1.4375 9.484375 -1.3515625 9.53515625 -1.25390625 9.62890625 -1.27734375 9.51171875 -1.169921875 9.57421875 -1.25390625 9.439453125 -1.119140625 9.400390625 -1.29296875 9.359375 -1.154296875 9.13671875 -1.37109375 9.314453125 -1.44921875 9.068359375 -1.546875 9.16796875 -1.703125 9.033203125 -1.8359375 9.08984375 -1.818359375 8.998046875 -1.923828125 8.849609375 3.666015625 6.078125 5.87890625 7.677734375 3.736328125 8.15234375 4.1953125 8.537109375 3.55859375 9.408203125 3.71875 9.5546875 2.794921875 9.755859375 2.9609375 9.896484375 2.4140625 10.017578125 2.556640625 10.126953125 2.0859375 10.0703125 2.109375 10.197265625 1.796875 9.998046875 1.71484375 10.099609375 1.314453125 9.859375 1.6953125 10.1484375 1.296875 9.904296875 1.669921875 10.220703125 1.27734375 9.97265625 1.65625 10.275390625 1.25390625 10.01953125 -1.974609375 5.208984375 -1.91796875 5.40234375 -1.962890625 5.205078125 -1.90625 5.40625 -1.5625 5.318359375 -1.94921875 5.58984375 -1.34375 6.201171875 -2.0234375 6.033203125 -1.74609375 6.923828125 -2.55078125 6.755859375 -2.34765625 7.12109375 -2.685546875 7.0078125 -2.5859375 7.4921875 -2.91796875 7.154296875 -3.19140625 7.533203125 -3.12109375 7.171875 -3.5 7.3125 -3.306640625 6.978515625 -3.6640625 7.107421875 -3.693359375 6.896484375 -3.806640625 6.884765625 -3.6953125 6.58203125 -3.86328125 6.88671875 -3.736328125 6.556640625 -3.904296875 6.888671875 -3.78125 6.533203125 -3.81640625 6.515625 -3.439453125 6.1953125 1.09765625 7.421875 1.0859375 7.408203125 1.0546875 7.505859375 1.08203125 7.40234375 1.048828125 7.505859375 0.97265625 7.310546875 0.88671875 7.298828125 0.892578125 7.23046875 0.798828125 7.1796875 0.85546875 7.177734375 0.84765625 7.10546875 0.859375 7.17578125 0.8515625 7.10546875 0.859375 7.109375 0.88671875 7.08203125 0.92578125 7.083984375 0.8828125 7.072265625 0.93359375 7.078125 0.935546875 7.07421875 0.97265625 7.1328125 1.03515625 7.044921875 1.064453125 7.193359375 1.21875 7.255859375 1.060546875 7.279296875 1.201171875 7.40234375 -1 6.716796875 -1.005859375 6.71875 -0.96484375 6.79296875 -0.96875 6.796875 -0.890625 6.833984375 -0.890625 6.837890625 -0.818359375 6.8125 -0.81640625 6.818359375 -0.796875 6.771484375 -0.79296875 6.77734375 -0.640625 6.759765625 -0.63671875 6.767578125 -0.5234375 6.66015625 -0.515625 6.6640625 -0.5078125 6.53125 -0.5 6.529296875 -0.60546875 6.44921875 -0.6015625 6.443359375 -0.763671875 6.4609375 -0.763671875 6.453125 -0.8828125 6.556640625 -0.888671875 6.552734375 -0.890625 6.62890625 -0.896484375 6.619140625 -0.908203125 6.62109375 -0.90625 6.615234375 -1.95703125 8.0234375 -1.99609375 8.1171875 -1.982421875 8.119140625 -2.0078125 8.224609375 -1.99609375 8.21875 -1.984375 8.28515625 -1.974609375 8.2734375 -1.912109375 8.33203125 -1.91015625 8.31640625 -1.830078125 8.294921875 -1.837890625 8.279296875 -1.783203125 8.205078125 -1.794921875 8.201171875 -1.74609375 8.09375 -1.7578125 8.09375 -1.7265625 7.970703125 -1.736328125 7.970703125 -1.740234375 7.880859375 -1.75 7.880859375 -1.78515625 7.81640625 -1.7890625 7.826171875 -1.865234375 7.84375 -1.857421875 7.8515625 -1.923828125 7.923828125 -1.912109375 7.9296875 -1.96875 8.01953125 -2.001953125 8.1171875 -2.015625 8.2265625 -1.927734375 7.919921875 -1.974609375 8.015625 -5.833984375 1.408203125 -5.8125 1.39453125 -6.3828125 1.125 -6.380859375 1.08984375 -8.126953125 1.5625 -8.1328125 1.509765625 -9.099609375 1.400390625 -9.09765625 1.34375 -9.7421875 1.234375 -9.736328125 1.185546875 -10.646484375 1.12109375 -10.55859375 0.96875 -10.791015625 0.8046875 -10.15234375 0.36328125 -10.8515625 0.484375 -10.736328125 0.1484375 -11.05078125 0.5234375 -10.912109375 0.111328125 -11.10546875 0.53125 -10.95703125 0.0859375 -11.162109375 0.541015625 -11.013671875 0.064453125 -11.220703125 0.55078125 -11.052734375 0.044921875 -5.654296875 1.994140625 -5.607421875 1.998046875 -5.77734375 1.3828125 -5.564453125 2.01171875 -5.7265625 1.35546875 -5.51953125 2.03515625 -5.37109375 1.966796875 -5.5625 3.60546875 -4.74609375 3.150390625 -5.140625 4.1796875 -4.013671875 4.078125 -4.2578125 4.58984375 -3.994140625 4.45703125 -3.52734375 4.673828125 -3.4765625 4.419921875 -3.345703125 4.498046875 -3.458984375 4.412109375 -3.349609375 4.478515625 -0.275390625 7.4609375 -0.146484375 7.4609375 0 7.341796875 0.091796875 7.5390625 0.150390625 7.140625 0.294921875 7.685546875 0.609375 7.373046875 0.443359375 7.890625 0.837890625 7.689453125 0.51953125 8.12890625 0.958984375 8.060546875 0.51953125 8.380859375 0.958984375 8.451171875 0.443359375 8.62109375 0.837890625 8.822265625 0.294921875 8.82421875 0.609375 9.13671875 0.091796875 8.970703125 -3.23828125 4.2890625 -3.259765625 4.427734375 -3.21484375 4.28515625 -3.2421875 4.4375 -2.884765625 4.498046875 -3.154296875 4.6953125 -3.0625 5.01171875 -3.33984375 5.248046875 -3.94921875 5.068359375 -3.970703125 5.19140625 -4.673828125 5.138671875 -4.669921875 5.271484375 -5.4296875 5.19140625 -4.6875 5.31640625 -5.44140625 5.236328125 -4.70703125 5.35546875 -5.462890625 5.275390625 -4.728515625 5.390625 -5.482421875 5.30859375 12.18359375 2.796875 10.794921875 5.318359375 10.875 5.36328125 8.302734375 7.478515625 8.32421875 7.564453125 5.998046875 8.01171875 6.03515625 8.099609375 4.423828125 8.740234375 4.453125 8.833984375 3.74609375 9.59375 3.7890625 9.65234375 2.9921875 9.96484375 3.009765625 10.041015625 2.57421875 10.177734375 2.595703125 10.259765625 2.107421875 10.25 2.1015625 10.333984375 -2.296875 4.978515625 -2.11328125 5.052734375 -2.296875 4.96484375 -2.107421875 5.04296875 -1.958984375 4.8359375 -1.654296875 5.021484375 -1.123046875 5.14453125 -0.87890625 6.033203125 -0.712890625 6.232421875 -0.533203125 5.98046875 -0.34765625 6.068359375 -0.158203125 6.142578125 -1.38671875 2.2734375 -1.251953125 1.82421875 -1.697265625 1.541015625 -1.30078125 1.32421875 -1.751953125 0.841796875 -0.75 1.021484375 -0.77734375 0.130859375 0.19140625 0.123046875 -0.806640625 -0.763671875 0.255859375 -1.76171875 -0.552734375 -3.107421875 1.3203125 -2.759765625 1.203125 -5.03125 4.642578125 -4.56640625 1.0859375 -7.302734375 1.03125 -8.484375 0.974609375 -8.82421875 -3.57421875 7.447265625 -3.265625 7.677734375 -3.552734375 7.40625 -3.248046875 7.62890625 -2.857421875 7.70703125 -2.6640625 7.880859375 -2.119140625 7.4609375 -2.201171875 8.015625 -2.068359375 7.794921875 -1.361328125 -4.453125 -1.626953125 -2.361328125 -2.17578125 -3.427734375 -2.30078125 -1.765625 -2.876953125 -2.89453125 -2.974609375 -1.169921875 -3.578125 -2.361328125 -4.048828125 -1.046875 -4.3515625 -1.642578125 -5.123046875 -0.923828125 -5.423828125 -1.6796875 -5.744140625 -1.232421875 -5.919921875 -1.337890625 -5.75 -1.228515625 -5.923828125 -1.333984375 -3.189453125 8.740234375 -3.080078125 9.232421875 -2.875 9.521484375 -2.466796875 9.658203125 -1.9921875 9.6875 -1.46875 9.765625 -1.26171875 9.93359375 -1.185546875 10.21875 2.921875 7.576171875 2.470703125 8.92578125 1.91015625 8.70703125 1.767578125 9.044921875 1.43359375 8.763671875 1.341796875 8.9375 1.23046875 8.8203125 1.1875 8.96484375 1.046875 8.953125 1.140625 8.994140625 1.087890625 9.005859375 1.08984375 9.01171875 1.046875 9.06640625 1.09375 9.02734375 1.060546875 9.07421875 -1.3828125 8.822265625 -0.98828125 8.62109375 -1.50390625 8.451171875 -1.06640625 8.380859375 -1.06640625 8.12890625 -0.98828125 7.890625 -0.83984375 7.685546875 8.279296875 7.373046875 5.966796875 7.91015625 4.3984375 8.654296875 -2.419921875 -4.427734375 -2.11328125 -4.880859375 -2.578125 -4.45703125 -2.828125 -4.892578125 -2.828125 -4.443359375 -3.63671875 -4.853515625 -3.712890625 -4.486328125 -4.849609375 -4.796875 -4.3046875 -3.546875 -5.345703125 -3.193359375 -5.453125 -2.953125 -5.62890625 -3.11328125 -5.71875 -2.859375 -5.7578125 -3.06640625 -5.91796875 -3.068359375 -5.91015625 -3.08203125 -5.9765625 -3.12890625 2.03515625 9.6484375 1.294921875 9.646484375 0.873046875 9.6484375 0.80078125 9.76953125 0.50390625 9.74609375 0.26171875 9.85546875 0.193359375 9.935546875 0.166015625 9.912109375 0.138671875 9.955078125 0.16015625 9.912109375 0.13671875 9.951171875 0.126953125 9.9453125 0.080078125 9.96484375 1.103515625 9.177734375 1.115234375 9.166015625 1.095703125 9.173828125 1.068359375 9.162109375 1.08203125 9.181640625 1.0546875 9.166015625 1.015625 9.177734375 1.013671875 9.16796875 0.9375 9.23046875 1.013671875 9.162109375 0.93359375 9.2265625 0.970703125 9.1328125 0.904296875 9.087890625 1.041015625 9.0625 0.8125 9.341796875 0.423828125 9.623046875 0.29296875 9.3671875 0.1796875 9.697265625 -0.076171875 9.48828125 0.041015625 9.68359375 -0.103515625 9.732421875 -0.03515625 9.767578125 -0.078125 9.826171875 -0.07421875 9.830078125 -0.09375 9.873046875 -0.06640625 9.8359375 -0.08203125 9.873046875 0.05859375 6.73046875 -0.052734375 6.634765625 -0.064453125 6.640625 -0.07421875 6.517578125 -0.087890625 6.513671875 0.01171875 6.435546875 0.005859375 6.423828125 0.15625 6.4375 0.158203125 6.42578125 0.271484375 6.521484375 0.283203125 6.517578125 0.29296875 6.638671875 0.3046875 6.642578125 0.205078125 6.720703125 0.212890625 6.732421875 0.0625 6.71875 -0.818359375 9.646484375 -0.8203125 9.65234375 -0.6953125 9.734375 -0.69921875 9.73828125 -0.66796875 9.8515625 -0.67578125 9.849609375 -0.765625 9.92578125 -0.767578125 9.919921875 -0.916015625 9.912109375 -0.9140625 9.908203125 -1.04296875 9.8203125 -1.0390625 9.818359375 -1.068359375 9.70703125 -1.0625 9.708984375 -0.97265625 9.62890625 -0.970703125 9.634765625 -2.486328125 -4.208984375 -2.494140625 -4.267578125 -2.50390625 -4.2578125 -2.580078125 -4.3203125 -2.578125 -4.306640625 -2.666015625 -4.341796875 -2.662109375 -4.328125 -2.724609375 -4.3125 -2.7109375 -4.30859375 -2.69921875 -4.248046875 -2.693359375 -4.259765625 -2.626953125 -4.201171875 -2.619140625 -4.2109375 -2.537109375 -4.177734375 -2.533203125 -4.189453125 -2.482421875 -4.208984375 -1.431640625 9.482421875 -1.3515625 9.529296875 -1.28125 9.5078125 -1.259765625 9.439453125 -1.296875 9.361328125 -1.37109375 9.318359375 -1.443359375 9.33984375 -1.447265625 9.3359375 -1.46484375 9.41015625 -1.470703125 9.41015625 -2.953125 -4.279296875 -2.8359375 -4.09375 -2.619140625 -4.005859375 -2.404296875 -4.064453125 -2.28515625 -4.27734375 -1.09375 9.806640625 -0.9921875 9.943359375 -0.869140625 9.982421875 -0.74609375 9.98828125 -0.662109375 9.912109375 -0.615234375 10.02734375 -0.578125 9.927734375 -0.482421875 9.970703125 -0.482421875 9.966796875 -0.375 9.958984375 -0.482421875 9.955078125 -0.37890625 9.94921875 -1.455078125 9.408203125 -1.419921875 9.478515625 -1.353515625 9.515625 -1.291015625 9.5 -1.26953125 9.439453125 -1.302734375 9.369140625 -1.37109375 9.330078125 -1.43359375 9.34765625 -0.826171875 9.6640625 -0.966796875 9.650390625 -1.05078125 9.712890625 -1.025390625 9.814453125 -0.908203125 9.89453125 -0.767578125 9.908203125 -0.68359375 9.845703125 -0.708984375 9.744140625 -1.419921875 6.98046875 -1.44140625 7.02734375 -1.43359375 7.01953125 -1.40234375 7.056640625 -1.3984375 7.046875 -1.333984375 7.05078125 -1.33984375 7.04296875 -1.279296875 7.017578125 -1.287109375 7.01171875 -1.265625 6.966796875 -1.275390625 6.970703125 -1.30078125 6.93359375 -1.30859375 6.9453125 -1.375 6.94140625 -1.369140625 6.94921875 -1.431640625 6.974609375 0.1171875 6.986328125 0.015625 6.87109375 -0.025390625 6.767578125 -0.0703125 6.642578125 -0.09375 6.509765625 0.056640625 6.734375 0.001953125 6.41796875 0.158203125 6.421875 0.2890625 6.513671875 0.310546875 6.64453125 0.21484375 6.736328125 -1.599609375 7.533203125 -1.3828125 7.689453125 -1.412109375 7.36328125 -1.154296875 7.373046875 -1.357421875 7.169921875 -1.158203125 7.0859375 -1.2734375 7.021484375 -1.03125 6.92578125 -1.259765625 6.966796875 -1.15625 6.818359375 -1.298828125 6.927734375 -1.3515625 6.7890625 -1.375 6.93359375 -1.4375 6.97265625 -6.380859375 1.05078125 -8.13671875 1.455078125 -9.095703125 1.29296875 -8.947265625 1.138671875 -9.720703125 1.017578125 -8.3046875 0.626953125 -8.154296875 -1.05859375 -8.685546875 -1.505859375 -7.43359375 -2.6875 -9.255859375 -2.03515625 -1.666015625 7.490234375 -1.541015625 7.392578125 -1.474609375 7.251953125 -1.50390625 7.14453125 -1.453125 7.087890625 -1.564453125 6.962890625 -1.44921875 7.03125 0.666015625 7.05859375 0.509765625 7.05078125 0.5390625 6.951171875 0.359375 6.962890625 0.408203125 6.876953125 0.16796875 6.826171875 -1.404296875 7.0625 -1.333984375 7.05859375 1.228515625 8.11328125 1.232421875 8.037109375 1.166015625 7.884765625 1.267578125 7.998046875 1.333984375 7.759765625 1.322265625 8.01953125 1.416015625 8.03125 1.3515625 8.0859375 1.34765625 8.166015625 1.345703125 8.0859375 1.34375 8.162109375 1.330078125 8.1484375 1.302734375 8.177734375 0.150390625 9.908203125 0.173828125 9.833984375 0.16015625 9.833984375 0.14453125 9.76953125 0.1328125 9.775390625 0.095703125 9.75 0.08984375 9.76171875 0.037109375 9.76171875 0.037109375 9.771484375 -0.03125 9.771484375 -0.0234375 9.77734375 1.15234375 9.052734375 1.140625 9.109375 1.16796875 9.04296875 1.15625 9.111328125 1.16015625 9.11328125 1.119140625 9.171875 1.236328125 9.21484375 1.125 9.2421875 1.123046875 9.39453125 1.0859375 9.337890625 1.005859375 9.3984375 1.08203125 9.333984375 1.00390625 9.392578125 1.001953125 9.38671875 0.93359375 9.3828125 -1.38671875 4.171875 -0.431640625 4.705078125 -0.55859375 5.740234375 -0.06640625 5.466796875 -0.373046875 5.888671875 -0.10546875 5.89453125 -0.22265625 6.072265625 -0.158203125 6.140625 -0.142578125 6.23046875 1.1328125 9.01953125 1.138671875 9 1.17578125 9.041015625 1.240234375 9.04296875 1.583984375 9.3125 1.458984375 8.24609375 1.912109375 7.865234375 1.466796875 7.791015625 1.48046875 7.595703125 1.37109375 7.650390625 1.392578125 7.455078125 1.314453125 7.51171875 1.197265625 7.408203125 1.19140625 7.42578125 1.583984375 7.068359375 1.3671875 6.751953125 0.921875 6.80078125 0.9609375 6.458984375 0.701171875 6.796875 0.63671875 6.66015625 0.630859375 6.6640625 0.50390625 6.595703125 0.62109375 6.673828125 0.505859375 6.609375 -0.837890625 9.3671875 -0.98046875 9.517578125 -0.779296875 9.560546875 -0.583984375 9.671875 -0.552734375 9.7890625 -0.61328125 9.849609375 -0.607421875 9.849609375 -0.57421875 9.923828125 -0.59765625 9.8515625 -0.5703125 9.9140625 -2.357421875 1.7578125 -2.482421875 1.58984375 -2.369140625 1.8046875 -2.521484375 1.59765625 -2.662109375 2.150390625 -2.876953125 1.28515625 -3.33203125 1.751953125 -3.705078125 1.416015625 -3.787109375 2.21875 -4.533203125 1.544921875 -4.064453125 2.29296875 -4.267578125 2.494140625 -4.060546875 2.298828125 -4.259765625 2.5 -5.41796875 5.06640625 -5.9453125 4.951171875 -6.07421875 4.8125 -6.033203125 5.015625 -6.185546875 4.876953125 -6.056640625 5.044921875 -6.2265625 4.890625 -6.095703125 5.076171875 -6.267578125 4.908203125 -6.13671875 5.103515625 -6.314453125 4.921875 -0.37109375 9.962890625 -0.369140625 10.01953125 -0.236328125 9.943359375 -0.197265625 10.068359375 -0.091796875 10.0078125 0.013671875 10.025390625 0.099609375 10.00390625 0.0859375 9.98046875 -2.71484375 0.61328125 -3.505859375 0.333984375 -4.294921875 0.0546875 -5.10546875 0.76171875 -5.34765625 -0.31640625 -5.6796875 -0.0234375 -5.962890625 -0.609375 -6.123046875 -0.431640625 -6.123046875 -0.435546875 -6.349609375 -0.326171875 0.673828125 1.513671875 1.06640625 2.19921875 0.97265625 0.765625 1.822265625 1.958984375 1.34765625 0.498046875 3.9296875 0.02734375 1.349609375 0.078125 0.837890625 -0.24609375 -3.35546875 -7.12109375 -3.287109375 -6.873046875 -0.87890625 6.650390625 -0.869140625 6.5625 -0.7578125 6.47265625 -0.61328125 6.4609375 -0.5234375 6.5390625 -0.537109375 6.65625 -0.83984375 8.82421875 -0.63671875 8.970703125 -0.3984375 9.048828125 -0.146484375 9.048828125 -3.515625 4.12890625 -3.416015625 4.078125 -3.537109375 4.11328125 -3.41796875 4.056640625 -3.65625 3.74609375 -2.962890625 3.98828125 -3.509765625 3.251953125 -2.458984375 3.216796875 -3.306640625 3.048828125 -3.232421875 2.771484375 -3.314453125 3.044921875 -3.240234375 2.771484375 -3.30078125 4.14453125 -3.28125 4.1328125 -2.7421875 4.181640625 -2.49609375 5.01171875 -2.48828125 5.021484375 -2.658203125 5.33984375 -2.671875 5.33984375 -2.607421875 5.53125 -2.810546875 5.5703125 -2.587890625 5.931640625 -2.986328125 5.966796875 -2.701171875 6.47265625 -2.98828125 6.486328125 -2.837890625 6.73046875 -2.943359375 6.720703125 -2.865234375 6.7578125 -2.9453125 6.751953125 -5.95703125 4.310546875 -6.123046875 4.39453125 -5.669921875 3.505859375 -6.16796875 4.392578125 -5.70703125 3.4765625 -6.21875 4.38671875 -5.751953125 3.462890625 -5.783203125 3.44921875 0.037109375 6.1328125 0.388671875 5.849609375 0.91796875 5.310546875 0.744140625 4.337890625 0.130859375 3.91796875 0.76171875 3.951171875 -1.9140625 7.68359375 -1.77734375 7.486328125 -1.66796875 7.484375 -1.546875 7.38671875 -1.666015625 7.46875 -1.5546875 7.380859375 -1.79296875 8.54296875 -1.736328125 8.59765625 -1.703125 8.751953125 -1.658203125 8.921875 12.12890625 2.787109375 11.705078125 -1.46875 11.75390625 -1.478515625 10.115234375 -5.73046875 10.140625 -5.75 1.1328125 8.720703125 1.25390625 8.7265625 1.326171875 8.7109375 1.322265625 8.705078125 1.375 8.6015625 1.310546875 8.693359375 1.357421875 8.599609375 0.037109375 9.7578125 0.09765625 9.74609375 0.1484375 9.765625 0.236328125 9.77734375 0.177734375 9.833984375 -3.810546875 7.18359375 -3.779296875 7.15234375 -1.501953125 -0.208984375 -2.1953125 0.345703125 -2.185546875 0.736328125 -2.3984375 0.876953125 -2.1953125 0.7734375 -2.3671875 0.892578125 12.251953125 2.802734375 10.955078125 5.41796875 8.3515625 7.654296875 6.080078125 8.181640625 4.486328125 8.9140625 3.81640625 9.693359375 -0.966796875 6.65234375 -0.98828125 6.712890625 -0.955078125 6.783203125 -0.88671875 6.822265625 -0.82421875 6.8046875 -0.802734375 6.744140625 -0.791015625 6.7578125 -3.009765625 5.607421875 -3.125 5.640625 -3.123046875 5.958984375 -3.171875 5.955078125 -3.34765625 6.232421875 -3.392578125 6.21484375 1.32421875 3.939453125 1.58203125 3.953125 1.314453125 3.90625 1.60546875 3.923828125 1.5 3.67578125 1.861328125 3.798828125 2.8203125 2.791015625 2.828125 4.521484375 5.447265625 1.599609375 9.57421875 1.802734375 -0.63671875 7.5390625 -0.7578125 7.302734375 -3.388671875 5.361328125 -3.169921875 5.654296875 -3.21484375 5.958984375 0.94140625 9.482421875 0.92578125 9.392578125 0.896484375 9.318359375 0.90234375 9.318359375 0.9453125 9.234375 1.107421875 9.154296875 1.119140625 9.2421875 1.10546875 9.244140625 -0.466796875 9.48828125 -0.392578125 9.716796875 -0.4453125 9.783203125 -0.349609375 9.830078125 -0.447265625 9.7890625 -0.353515625 9.833984375 -0.361328125 9.83984375 -0.333984375 9.904296875 -7.12109375 -4.763671875 -9.478515625 -2.244140625 -7.048828125 -4.685546875 -9.44140625 -2.208984375 -6.994140625 -4.638671875 -9.3984375 -2.169921875 -6.927734375 -4.568359375 -9.359375 -2.13671875 0.6796875 6.794921875 0.693359375 6.794921875 0.662109375 6.916015625 0.845703125 6.912109375 0.767578125 7.021484375 0.880859375 7.068359375 -8.17578125 1.259765625 -6.8203125 0.5 -7.6875 0.013671875 -6.931640625 -0.076171875 -7.171875 -0.375 -6.62109375 -0.3515625 -6.8203125 -0.533203125 -6.81640625 -0.537109375 -6.947265625 -0.76171875 -2.0234375 7.169921875 -1.73828125 7.23828125 -1.61328125 7.140625 -1.732421875 7.240234375 -1.61328125 7.146484375 -1.615234375 7.16015625 -1.51953125 7.1640625 -5.76953125 -3.083984375 -5.63671875 -3.134765625 -5.572265625 -3.205078125 -5.58984375 -3.203125 -5.646484375 -3.279296875 -5.66015625 -3.251953125 -5.814453125 -3.26953125 -5.80078125 -3.248046875 -2.4609375 9.39453125 -2.638671875 9.33203125 -2.771484375 9.20703125 -2.91015625 8.642578125 -1.916015625 7.466796875 -1.806640625 7.37890625 -1.798828125 7.37890625 -1.724609375 7.248046875 1.306640625 8.1875 1.306640625 8.193359375 1.33984375 8.380859375 1.392578125 8.44140625 1.490234375 8.5234375 1.380859375 8.603515625 -0.099609375 9.873046875 -0.076171875 9.9296875 -0.025390625 9.966796875 0.03125 9.986328125 0.083984375 9.9765625 -1.9609375 5.58203125 -2.095703125 5.693359375 -2.087890625 5.705078125 -2.283203125 5.720703125 -2.466796875 5.66796875 -2.59765625 5.5234375 0.9453125 7.240234375 0.943359375 7.236328125 0.89453125 7.2265625 0.900390625 7.220703125 0.8671875 7.169921875 -0.2265625 9.689453125 -0.22265625 9.80859375 -0.3203125 9.90625 -0.326171875 9.90625 1.697265625 4.048828125 1.7265625 4.041015625 1.923828125 4.2421875 1.552734375 4.490234375 2.177734375 6.2109375 -1.12109375 6.611328125 -0.98046875 6.638671875 -0.974609375 6.640625 -0.904296875 6.634765625 -6.77734375 -4.42578125 -5.697265625 -3.470703125 -5.962890625 -3.4140625 -5.951171875 -3.216796875 -5.931640625 -3.19921875 -3.42578125 -7.439453125 -3.40625 -7.35546875 -3.380859375 -7.21875 -1.6328125 9.25 -1.970703125 8.677734375 -0.203125 1.005859375 0.099609375 0.650390625 0.373046875 0.9921875 0.44921875 0.572265625 0.62109375 0.576171875 0.478515625 0.541015625 0.609375 0.54296875 1.0703125 3.70703125 1.048828125 3.994140625 0.94921875 4.14453125 1.078125 4.01171875 0.986328125 4.1328125 -1.693359375 3.08984375 -1.927734375 2.140625 -2.154296875 1.671875 -2.03125 1.302734375 -2.185546875 1.638671875 -2.06640625 1.30078125 -0.419921875 10.169921875 -0.626953125 10.30078125 -0.826171875 10.35546875 -0.931640625 10.234375 -1.068359375 3.68359375 -0.77734375 3.41796875 0.0703125 10.26171875 -0.3046875 10.44140625 -0.638671875 10.646484375 -0.974609375 10.6328125 -1.16796875 10.4296875 -11.103515625 0.970703125 -11.0390625 0.947265625 -10.98046875 0.9296875 -10.939453125 0.900390625 -0.072265625 9.92578125 -0.064453125 9.91796875 -3.53125 4.267578125 -3.5546875 4.267578125 -4.064453125 3.251953125 -3.787109375 3.326171875 -4.060546875 3.24609375 -3.787109375 3.318359375 -5.62109375 1.212890625 -6.236328125 0.845703125 -6.376953125 1.009765625 -0.83984375 6.91015625 -0.689453125 6.84375 0.978515625 7.201171875 0.974609375 7.19921875 0.94140625 7.232421875 0.9609375 7.134765625 1.150390625 8.509765625 1.2578125 8.17578125 1.259765625 8.171875 1.26953125 8.16015625 -5.642578125 -1.033203125 -5.638671875 -1.033203125 -5.650390625 -0.8125 -5.783203125 -0.666015625 -5.787109375 -0.66796875 -5.96484375 -0.61328125 -2.798828125 6.794921875 -2.83984375 6.890625 -2.927734375 6.931640625 -3.025390625 6.9296875 -3.015625 6.89453125 -3.052734375 6.84765625 1.333984375 8.09375 1.3203125 8.0234375 1.310546875 8.041015625 1.26953125 8.00390625 1.275390625 8.0234375 1.236328125 8.0390625 1.25 8.052734375 1.26171875 8.43359375 1.265625 8.439453125 1.337890625 8.388671875 1.3359375 8.404296875 1.373046875 8.44921875 -6.15625 -3.228515625 -6.046875 -2.947265625 -5.994140625 -3.119140625 1.103515625 7.65234375 1.109375 7.6484375 1.06640625 7.51171875 -10.671875 1.169921875 -10.693359375 1.2109375 -10.716796875 1.267578125 -6.4453125 -2.0078125 -5.912109375 -1.935546875 -6.29296875 -1.4296875 -6.11328125 -1.30859375 -6.115234375 -1.306640625 -9.748046875 1.291015625 -9.10546875 1.455078125 -8.12890625 1.615234375 -3.990234375 5.236328125 -3.40625 5.40625 -4.0078125 5.271484375 -3.435546875 5.4296875 -4.025390625 5.30859375 -3.46484375 5.453125 0.8046875 9.81640625 0.796875 9.87109375 0.794921875 9.921875 0.375 10.0390625 -4.03515625 -2.9921875 3.02734375 10.103515625 2.611328125 10.322265625 2.103515625 10.392578125 -6.259765625 4.38671875 -2.66796875 8.125 -2.814453125 8.1015625 1.2578125 8.705078125 1.255859375 8.720703125 1.212890625 8.66015625 0.537109375 6.927734375 0.421875 6.86328125 0.5390625 6.943359375 0.412109375 6.87109375 0.341796875 6.744140625 -6.98046875 -1.734375 -6.546875 -1.443359375 -6.763671875 -1.326171875 -6.544921875 -1.439453125 -6.759765625 -1.32421875 -7.3046875 -1.216796875 -6.9296875 -1.10546875 -6.951171875 -0.759765625 -6.92578125 -1.10546875 -3.302734375 6.248046875 -3.216796875 6.318359375 0.775390625 0.05859375 0.943359375 0.064453125 1.0625 0.259765625 0.81640625 0.435546875 0.79296875 0.41015625 1.60546875 4.16796875 1.359375 4.2421875 1.62890625 4.189453125 1.36328125 4.275390625 1.064453125 4.53125 -6.5859375 0.173828125 -6.138671875 0.22265625 -6.46484375 0.814453125 1.365234375 7.650390625 1.30859375 7.515625 1.34765625 7.65234375 1.296875 7.51953125 -3.306640625 2.494140625 -3.314453125 2.5 1.22265625 8.537109375 1.228515625 8.5390625 1.21875 8.658203125 1.2421875 8.5390625 1.232421875 8.654296875 7.033203125 -1.71484375 -0.3984375 7.4609375 1.388671875 8.443359375 1.318359375 7.7421875 1.328125 7.755859375 1.216796875 7.75390625 0.36328125 6.7421875 0.349609375 6.744140625 0.380859375 6.623046875 -5.45703125 -3.419921875 -2.486328125 1.23046875 -2.51953125 1.228515625 -1.509765625 7.1484375 -1.494140625 7.255859375 -4.267578125 3.048828125 -4.341796875 2.771484375 -4.333984375 2.771484375 -2.935546875 6.90234375 -2.857421875 6.865234375 -2.830078125 6.8046875 -2.029296875 0.935546875 -2.0703125 0.943359375 -0.98828125 10.0546875 -3.205078125 5.67578125 -3.26171875 5.966796875 -1.931640625 8.578125 1.05078125 9.12890625 1.03515625 9.12890625 1.029296875 9.12890625 -1.783203125 8.599609375 -1.80078125 8.62109375 0.439453125 0.408203125 0.56640625 0.220703125 0.6015625 0.224609375 0.783203125 0.091796875 0.96875 7.1328125 -0.55078125 9.79296875 -0.44921875 9.798828125 -2.791015625 7.943359375 -2.939453125 7.86328125 1.7734375 7.439453125 0.912109375 9.3203125 0.9296875 9.388671875 0.64453125 6.8984375 0.65625 6.91015625 1.24609375 8.109375 1.232421875 8.11328125 -1.76171875 7.46484375 -1.7734375 7.48046875 0.50390625 6.587890625 0.384765625 6.626953125 -2.904296875 7.826171875 1.046875 9.162109375 0.517578125 6.248046875 1.22265625 7.73828125 1.216796875 7.75 -5.5234375 1.41796875 -7.35546875 -0.69140625 -6.619140625 -0.35546875 -6.349609375 -0.3203125 -2.6328125 5.150390625 -2.62109375 5.15625 -3.787109375 2.2265625 -3.513671875 2.298828125 -3.509765625 2.29296875 -4.728515625 -2.3359375 -3.220703125 6.703125 -3.04296875 6.765625 -3.0234375 6.787109375 -3.076171875 6.859375 1.080078125 4.2578125 1.103515625 4.228515625 2.912109375 6.67578125 -0.48828125 10.0390625 1.97265625 8.267578125 0.955078125 0.240234375 0.919921875 0.224609375 -0.0234375 9.962890625 -0.017578125 9.953125 0.03125 9.982421875 0.03125 9.970703125 -1.48046875 7.251953125 -0.53515625 6.767578125 0.966796875 7.197265625 1.072265625 9.328125 -6.29296875 -1.42578125 -3.615234375 6.630859375 -4.259765625 3.044921875 0.474609375 0.41015625 1.119140625 7.642578125 0.3984375 6.63671875 -1.78515625 7.373046875 1.27734375 8.447265625 -0.546875 9.802734375 -3.2421875 5.6875 -3.513671875 3.24609375 -5.65625 -0.814453125 -0.837890625 7.142578125 -9.755859375 1.34765625 -4.640625 2.34765625 0.916015625 0.09375 10.08984375 -5.71484375 -2.283203125 5.708984375 -2.4609375 5.65625 3.71875 6.552734375 3.630859375 6.62890625 3.552734375 6.54296875 3.53125 6.345703125 3.576171875 6.15234375 -0.646484375 6.748046875 11.80859375 -1.490234375 + + + + + + + + + 0.6352941176470588 0.6352941176470588 0.6352941176470588 1 0.7764705882352941 0.7764705882352941 0.7764705882352941 1 0.8509803921568627 0.8509803921568627 0.8509803921568627 1 0.8235294117647058 0.8235294117647058 0.8235294117647058 1 0.611764705882353 0.611764705882353 0.611764705882353 1 0.5490196078431373 0.5490196078431373 0.5490196078431373 1 0.7647058823529411 0.7647058823529411 0.7647058823529411 1 0.8156862745098039 0.8156862745098039 0.8156862745098039 1 0.6470588235294118 0.6470588235294118 0.6470588235294118 1 0.6901960784313725 0.6901960784313725 0.6901960784313725 1 0.7058823529411765 0.7058823529411765 0.7058823529411765 1 0.6862745098039216 0.6862745098039216 0.6862745098039216 1 0.8352941176470589 0.8352941176470589 0.8352941176470589 1 0.592156862745098 0.592156862745098 0.592156862745098 1 0.4823529411764706 0.4823529411764706 0.4823529411764706 1 0.3215686274509804 0.3215686274509804 0.3215686274509804 1 0.33725490196078434 0.33725490196078434 0.33725490196078434 1 0.2 0.2 0.2 1 0.45098039215686275 0.45098039215686275 0.45098039215686275 1 0.4117647058823529 0.4117647058823529 0.4117647058823529 1 0.5254901960784314 0.5254901960784314 0.5254901960784314 1 0.3803921568627451 0.3803921568627451 0.3803921568627451 1 0.3254901960784314 0.3254901960784314 0.3254901960784314 1 0.34901960784313724 0.34901960784313724 0.34901960784313724 1 0.396078431372549 0.396078431372549 0.396078431372549 1 0.48627450980392156 0.48627450980392156 0.48627450980392156 1 0.49019607843137253 0.49019607843137253 0.49019607843137253 1 0.42745098039215684 0.42745098039215684 0.42745098039215684 1 0.5294117647058824 0.5294117647058824 0.5294117647058824 1 0.7843137254901961 0.7843137254901961 0.7843137254901961 1 0.7686274509803922 0.7686274509803922 0.7686274509803922 1 0.6039215686274509 0.6039215686274509 0.6039215686274509 1 0.5803921568627451 0.5803921568627451 0.5803921568627451 1 0.6784313725490196 0.6784313725490196 0.6784313725490196 1 0.6823529411764706 0.6823529411764706 0.6823529411764706 1 0.7098039215686275 0.7098039215686275 0.7098039215686275 1 0.7333333333333333 0.7333333333333333 0.7333333333333333 1 0.596078431372549 0.596078431372549 0.596078431372549 1 0.7450980392156863 0.7450980392156863 0.7450980392156863 1 0.5529411764705883 0.5529411764705883 0.5529411764705883 1 0.7607843137254902 0.7607843137254902 0.7607843137254902 1 0.7490196078431373 0.7490196078431373 0.7490196078431373 1 0.7294117647058823 0.7294117647058823 0.7294117647058823 1 0.5137254901960784 0.5137254901960784 0.5137254901960784 1 0.5098039215686274 0.5098039215686274 0.5098039215686274 1 0.5411764705882353 0.5411764705882353 0.5411764705882353 1 0.7411764705882353 0.7411764705882353 0.7411764705882353 1 0.6 0.6 0.6 1 0.7254901960784313 0.7254901960784313 0.7254901960784313 1 0.5764705882352941 0.5764705882352941 0.5764705882352941 1 0.6745098039215687 0.6745098039215687 0.6745098039215687 1 0.5725490196078431 0.5725490196078431 0.5725490196078431 1 0.5647058823529412 0.5647058823529412 0.5647058823529412 1 0.7568627450980392 0.7568627450980392 0.7568627450980392 1 0.7803921568627451 0.7803921568627451 0.7803921568627451 1 0.3607843137254902 0.3607843137254902 0.3607843137254902 1 0.37254901960784315 0.37254901960784315 0.37254901960784315 1 0.4666666666666667 0.4666666666666667 0.4666666666666667 1 0.4980392156862745 0.4980392156862745 0.4980392156862745 1 0.5019607843137255 0.5019607843137255 0.5019607843137255 1 0.5215686274509804 0.5215686274509804 0.5215686274509804 1 0.4627450980392157 0.4627450980392157 0.4627450980392157 1 0.4 0.4 0.4 1 0.38823529411764707 0.38823529411764707 0.38823529411764707 1 0.3843137254901961 0.3843137254901961 0.3843137254901961 1 0.44313725490196076 0.44313725490196076 0.44313725490196076 1 0.5176470588235295 0.5176470588235295 0.5176470588235295 1 0.7019607843137254 0.7019607843137254 0.7019607843137254 1 0.6980392156862745 0.6980392156862745 0.6980392156862745 1 0.6431372549019608 0.6431372549019608 0.6431372549019608 1 0.6705882352941176 0.6705882352941176 0.6705882352941176 1 0.6666666666666666 0.6666666666666666 0.6666666666666666 1 0.6196078431372549 0.6196078431372549 0.6196078431372549 1 0.6235294117647059 0.6235294117647059 0.6235294117647059 1 0.6274509803921569 0.6274509803921569 0.6274509803921569 1 0.6313725490196078 0.6313725490196078 0.6313725490196078 1 0.5568627450980392 0.5568627450980392 0.5568627450980392 1 0.5686274509803921 0.5686274509803921 0.5686274509803921 1 0.6078431372549019 0.6078431372549019 0.6078431372549019 1 0.615686274509804 0.615686274509804 0.615686274509804 1 0.6509803921568628 0.6509803921568628 0.6509803921568628 1 0.6549019607843137 0.6549019607843137 0.6549019607843137 1 0.8392156862745098 0.8392156862745098 0.8392156862745098 1 0.8627450980392157 0.8627450980392157 0.8627450980392157 1 0.8745098039215686 0.8745098039215686 0.8745098039215686 1 0.8274509803921568 0.8274509803921568 0.8274509803921568 1 0.8588235294117647 0.8588235294117647 0.8588235294117647 1 0.8196078431372549 0.8196078431372549 0.8196078431372549 1 0.8431372549019608 0.8431372549019608 0.8431372549019608 1 0.8666666666666667 0.8666666666666667 0.8666666666666667 1 0.8549019607843137 0.8549019607843137 0.8549019607843137 1 0.8823529411764706 0.8823529411764706 0.8823529411764706 1 0.11764705882352941 0.11764705882352941 0.11764705882352941 1 0.4470588235294118 0.4470588235294118 0.4470588235294118 1 0.13333333333333333 0.13333333333333333 0.13333333333333333 1 0.35294117647058826 0.35294117647058826 0.35294117647058826 1 0.36470588235294116 0.36470588235294116 0.36470588235294116 1 0.5450980392156862 0.5450980392156862 0.5450980392156862 1 0.9764705882352941 0.9764705882352941 0.9764705882352941 1 0.9882352941176471 0.9882352941176471 0.9882352941176471 1 0.984313725490196 0.984313725490196 0.984313725490196 1 0.9921568627450981 0.9921568627450981 0.9921568627450981 1 0.9725490196078431 0.9725490196078431 0.9725490196078431 1 0.8784313725490196 0.8784313725490196 0.8784313725490196 1 0.5058823529411764 0.5058823529411764 0.5058823529411764 1 0.9176470588235294 0.9176470588235294 0.9176470588235294 1 0.9215686274509803 0.9215686274509803 0.9215686274509803 1 0.9372549019607843 0.9372549019607843 0.9372549019607843 1 0.9647058823529412 0.9647058823529412 0.9647058823529412 1 0.9686274509803922 0.9686274509803922 0.9686274509803922 1 0.9098039215686274 0.9098039215686274 0.9098039215686274 1 1 1 1 1 0.996078431372549 0.996078431372549 0.996078431372549 1 0.7725490196078432 0.7725490196078432 0.7725490196078432 1 0.9490196078431372 0.9490196078431372 0.9490196078431372 1 0.9137254901960784 0.9137254901960784 0.9137254901960784 1 0.9607843137254902 0.9607843137254902 0.9607843137254902 1 0.796078431372549 0.796078431372549 0.796078431372549 1 0.9529411764705882 0.9529411764705882 0.9529411764705882 1 0.4196078431372549 0.4196078431372549 0.4196078431372549 1 0.3686274509803922 0.3686274509803922 0.3686274509803922 1 0.1411764705882353 0.1411764705882353 0.1411764705882353 1 0.4588235294117647 0.4588235294117647 0.4588235294117647 1 0.4745098039215686 0.4745098039215686 0.4745098039215686 1 0.43137254901960786 0.43137254901960786 0.43137254901960786 1 0.3764705882352941 0.3764705882352941 0.3764705882352941 1 0.39215686274509803 0.39215686274509803 0.39215686274509803 1 0.4235294117647059 0.4235294117647059 0.4235294117647059 1 0.47843137254901963 0.47843137254901963 0.47843137254901963 1 0.4392156862745098 0.4392156862745098 0.4392156862745098 1 0.43529411764705883 0.43529411764705883 0.43529411764705883 1 0.403921568627451 0.403921568627451 0.403921568627451 1 0.6941176470588235 0.6941176470588235 0.6941176470588235 1 0.8862745098039215 0.8862745098039215 0.8862745098039215 1 0.8313725490196079 0.8313725490196079 0.8313725490196079 1 0.8705882352941177 0.8705882352941177 0.8705882352941177 1 0.6627450980392157 0.6627450980392157 0.6627450980392157 1 0.8470588235294118 0.8470588235294118 0.8470588235294118 1 0.8901960784313725 0.8901960784313725 0.8901960784313725 1 0.6392156862745098 0.6392156862745098 0.6392156862745098 1 0.9019607843137255 0.9019607843137255 0.9019607843137255 1 0.9450980392156862 0.9450980392156862 0.9450980392156862 1 0.9058823529411765 0.9058823529411765 0.9058823529411765 1 0.49411764705882355 0.49411764705882355 0.49411764705882355 1 0.9803921568627451 0.9803921568627451 0.9803921568627451 1 0.12941176470588237 0.12941176470588237 0.12941176470588237 1 0.1450980392156863 0.1450980392156863 0.1450980392156863 1 0.9568627450980393 0.9568627450980393 0.9568627450980393 1 0.9294117647058824 0.9294117647058824 0.9294117647058824 1 0.5333333333333333 0.5333333333333333 0.5333333333333333 1 0.13725490196078433 0.13725490196078433 0.13725490196078433 1 0.807843137254902 0.807843137254902 0.807843137254902 1 0.2823529411764706 0.2823529411764706 0.2823529411764706 1 0.24313725490196078 0.24313725490196078 0.24313725490196078 1 0.3333333333333333 0.3333333333333333 0.3333333333333333 1 0.5607843137254902 0.5607843137254902 0.5607843137254902 1 0.23921568627450981 0.23921568627450981 0.23921568627450981 1 0.21568627450980393 0.21568627450980393 0.21568627450980393 1 0.34509803921568627 0.34509803921568627 0.34509803921568627 1 0.20784313725490197 0.20784313725490197 0.20784313725490197 1 0.3411764705882353 0.3411764705882353 0.3411764705882353 1 0.19215686274509805 0.19215686274509805 0.19215686274509805 1 0.2784313725490196 0.2784313725490196 0.2784313725490196 1 0.792156862745098 0.792156862745098 0.792156862745098 1 0.8 0.8 0.8 1 0.788235294117647 0.788235294117647 0.788235294117647 1 0.9254901960784314 0.9254901960784314 0.9254901960784314 1 0.22745098039215686 0.22745098039215686 0.22745098039215686 1 0.3176470588235294 0.3176470588235294 0.3176470588235294 1 0.5843137254901961 0.5843137254901961 0.5843137254901961 1 0.4549019607843137 0.4549019607843137 0.4549019607843137 1 0.5882352941176471 0.5882352941176471 0.5882352941176471 1 0.8941176470588236 0.8941176470588236 0.8941176470588236 1 0.803921568627451 0.803921568627451 0.803921568627451 1 0.8980392156862745 0.8980392156862745 0.8980392156862745 1 0.9333333333333333 0.9333333333333333 0.9333333333333333 1 0.6588235294117647 0.6588235294117647 0.6588235294117647 1 0.12549019607843137 0.12549019607843137 0.12549019607843137 1 0.40784313725490196 0.40784313725490196 0.40784313725490196 1 0.7215686274509804 0.7215686274509804 0.7215686274509804 1 0.2901960784313726 0.2901960784313726 0.2901960784313726 1 0.25098039215686274 0.25098039215686274 0.25098039215686274 1 0.30196078431372547 0.30196078431372547 0.30196078431372547 1 0.3137254901960784 0.3137254901960784 0.3137254901960784 1 0.9411764705882353 0.9411764705882353 0.9411764705882353 1 0.7372549019607844 0.7372549019607844 0.7372549019607844 1 0.7137254901960784 0.7137254901960784 0.7137254901960784 1 0.47058823529411764 0.47058823529411764 0.47058823529411764 1 0.30980392156862746 0.30980392156862746 0.30980392156862746 1 0.3058823529411765 0.3058823529411765 0.3058823529411765 1 0.5372549019607843 0.5372549019607843 0.5372549019607843 1 0.27450980392156865 0.27450980392156865 0.27450980392156865 1 0.7176470588235294 0.7176470588235294 0.7176470588235294 1 0.2980392156862745 0.2980392156862745 0.2980392156862745 1 0.7529411764705882 0.7529411764705882 0.7529411764705882 1 0.8117647058823529 0.8117647058823529 0.8117647058823529 1 0.3568627450980392 0.3568627450980392 0.3568627450980392 1 0.25882352941176473 0.25882352941176473 0.25882352941176473 1 0.28627450980392155 0.28627450980392155 0.28627450980392155 1 0.2627450980392157 0.2627450980392157 0.2627450980392157 1 0 0 0 1 0.16862745098039217 0.16862745098039217 0.16862745098039217 1 0.17254901960784313 0.17254901960784313 0.17254901960784313 1 0.1568627450980392 0.1568627450980392 0.1568627450980392 1 0.24705882352941178 0.24705882352941178 0.24705882352941178 1 0.16470588235294117 0.16470588235294117 0.16470588235294117 1 0.32941176470588235 0.32941176470588235 0.32941176470588235 1 0.10196078431372549 0.10196078431372549 0.10196078431372549 1 0.41568627450980394 0.41568627450980394 0.41568627450980394 1 0.1607843137254902 0.1607843137254902 0.1607843137254902 1 0.14901960784313725 0.14901960784313725 0.14901960784313725 1 0.20392156862745098 0.20392156862745098 0.20392156862745098 1 0.2235294117647059 0.2235294117647059 0.2235294117647059 1 0.15294117647058825 0.15294117647058825 0.15294117647058825 1 0.2549019607843137 0.2549019607843137 0.2549019607843137 1 0.17647058823529413 0.17647058823529413 0.17647058823529413 1 0.07450980392156863 0.07450980392156863 0.07450980392156863 1 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 2 1 1 1 0 0 0 3 3 0 1 1 1 2 2 2 4 4 3 3 3 0 2 2 2 5 5 4 3 3 0 4 4 3 6 6 2 5 5 4 4 4 3 7 7 5 5 5 4 6 6 2 8 8 6 7 7 5 6 6 2 9 9 5 7 7 5 8 8 6 10 10 7 9 9 5 8 8 6 11 11 8 9 9 5 10 10 7 12 12 9 11 11 8 10 10 7 13 13 10 11 11 8 12 12 9 14 14 11 13 13 10 12 12 9 15 15 12 13 13 10 14 14 11 16 16 13 15 15 12 14 14 11 17 17 14 15 15 12 16 16 13 18 18 15 17 17 14 16 16 13 19 19 16 17 17 14 18 18 15 20 20 17 19 19 16 18 18 15 21 21 18 19 19 16 20 20 17 22 22 17 21 21 18 20 20 17 23 23 19 21 21 18 22 22 17 24 24 17 23 23 19 22 22 17 25 25 18 23 23 19 24 24 17 26 26 17 25 25 18 24 24 17 27 27 20 25 25 18 26 26 17 28 28 17 27 27 20 26 26 17 29 29 21 27 27 20 28 28 17 30 30 17 29 29 21 28 28 17 31 31 22 29 29 21 30 30 17 32 32 17 31 31 22 30 30 17 33 33 17 31 31 22 32 32 17 34 34 17 33 33 17 32 32 17 35 35 23 33 33 17 34 34 17 36 36 17 35 35 23 34 34 17 37 37 24 35 35 23 36 36 17 38 38 17 37 37 24 36 36 17 39 39 25 37 37 24 38 38 17 40 40 17 39 39 25 38 38 17 41 41 26 39 39 25 40 40 17 42 42 17 41 41 26 40 40 17 43 43 27 41 41 26 42 42 17 44 44 17 43 43 27 42 42 17 18 18 15 43 43 27 44 44 17 45 45 17 18 18 15 44 44 17 20 20 17 18 18 15 45 45 17 48 48 5 47 47 29 46 46 28 49 49 1 47 47 29 48 48 5 50 50 13 49 49 1 48 48 5 51 51 30 49 49 1 50 50 13 52 52 31 51 51 30 50 50 13 53 53 9 51 51 30 52 52 31 54 54 32 53 53 9 52 52 31 55 55 33 53 53 9 54 54 32 56 56 32 55 55 33 54 54 32 57 57 34 55 55 33 56 56 32 58 58 32 57 57 34 56 56 32 59 59 35 57 57 34 58 58 32 60 60 31 59 59 35 58 58 32 61 61 36 59 59 35 60 60 31 62 62 37 61 61 36 60 60 31 63 63 38 61 61 36 62 62 37 64 64 39 63 63 38 62 62 37 65 65 40 63 63 38 64 64 39 66 66 20 65 65 40 64 64 39 67 67 41 65 65 40 66 66 20 68 68 20 67 67 41 66 66 20 69 69 42 67 67 41 68 68 20 70 70 43 69 69 42 68 68 20 71 71 6 69 69 42 70 70 43 72 72 44 71 71 6 70 70 43 73 73 38 71 71 6 72 72 44 74 74 45 73 73 38 72 72 44 75 75 46 73 73 38 74 74 45 76 76 39 75 75 46 74 74 45 77 77 46 75 75 46 76 76 39 78 78 47 77 77 46 76 76 39 79 79 48 77 77 46 78 78 47 80 80 13 79 79 48 78 78 47 81 81 11 79 79 48 80 80 13 82 82 49 81 81 11 80 80 13 83 83 50 81 81 11 82 82 49 84 84 51 83 83 50 82 82 49 85 85 50 83 83 50 84 84 51 86 86 52 85 85 50 84 84 51 87 87 40 85 85 50 86 86 52 88 88 13 87 87 40 86 86 52 89 89 53 87 87 40 88 88 13 90 90 37 89 89 53 88 88 13 91 91 54 89 89 53 90 90 37 93 93 56 46 46 28 92 92 55 48 48 5 46 46 28 93 93 56 94 94 57 48 48 5 93 93 56 50 50 13 48 48 5 94 94 57 95 95 43 50 50 13 94 94 57 52 52 31 50 50 13 95 95 43 96 52 43 52 52 31 95 95 43 54 54 32 52 52 31 96 52 43 97 96 58 54 54 32 96 52 43 56 56 32 54 54 32 97 96 58 98 97 58 56 56 32 97 96 58 58 58 32 56 56 32 98 97 58 99 98 59 58 58 32 98 97 58 60 60 31 58 58 32 99 98 59 100 60 60 60 60 31 99 98 59 62 62 37 60 60 31 100 60 60 101 99 44 62 62 37 100 60 60 64 64 39 62 62 37 101 99 44 102 100 61 64 64 39 101 99 44 66 66 20 64 64 39 102 100 61 103 101 62 66 66 20 102 100 61 68 68 20 66 66 20 103 101 62 104 102 62 68 68 20 103 101 62 70 70 43 68 68 20 104 102 62 105 103 63 70 70 43 104 102 62 72 72 44 70 70 43 105 103 63 106 104 64 72 72 44 105 103 63 74 74 45 72 72 44 106 104 64 107 105 62 74 74 45 106 104 64 76 76 39 74 74 45 107 105 62 108 106 65 76 76 39 107 105 62 78 78 47 76 76 39 108 106 65 109 107 59 78 78 47 108 106 65 80 80 13 78 78 47 109 107 59 110 108 28 80 80 13 109 107 59 82 82 49 80 80 13 110 108 28 111 109 43 82 82 49 110 108 28 84 84 51 82 82 49 111 109 43 112 110 44 84 84 51 111 109 43 86 86 52 84 84 51 112 110 44 113 111 43 86 86 52 112 110 44 88 88 13 86 86 52 113 111 43 114 112 66 88 88 13 113 111 43 90 90 37 88 88 13 114 112 66 117 115 68 116 114 67 115 113 50 118 116 69 116 114 67 117 115 68 119 117 69 118 116 69 117 115 68 120 118 50 118 116 69 119 117 69 121 119 50 120 118 50 119 117 69 122 120 70 120 118 50 121 119 50 123 121 70 122 120 70 121 119 50 124 122 34 122 120 70 123 121 70 125 123 34 124 122 34 123 121 70 126 124 34 124 122 34 125 123 34 127 125 33 126 124 34 125 123 34 128 126 71 126 124 34 127 125 33 129 127 71 128 126 71 127 125 33 130 128 72 128 126 71 129 127 71 131 129 72 130 128 72 129 127 71 132 130 73 130 128 72 131 129 72 133 131 72 132 130 73 131 129 72 134 132 74 132 130 73 133 131 72 135 133 45 134 132 74 133 131 72 136 134 75 134 132 74 135 133 45 137 135 76 136 134 75 135 133 45 138 136 0 136 134 75 137 135 76 139 137 77 138 136 0 137 135 76 140 138 74 138 136 0 139 137 77 141 139 52 140 138 74 139 137 77 142 140 73 140 138 74 141 139 52 143 141 43 142 140 73 141 139 52 144 142 4 142 140 73 143 141 43 145 143 78 144 142 4 143 141 43 146 144 79 144 142 4 145 143 78 147 145 4 146 144 79 145 143 78 148 146 80 146 144 79 147 145 4 149 147 8 148 146 80 147 145 4 150 148 81 148 146 80 149 147 8 151 149 80 150 148 81 149 147 8 152 150 33 150 148 81 151 149 80 153 151 72 152 150 33 151 149 80 154 152 80 152 150 33 153 151 72 155 153 8 154 152 80 153 151 72 156 154 0 154 152 80 155 153 8 157 155 75 156 154 0 155 153 8 158 156 33 156 154 0 157 155 75 118 116 69 159 157 82 116 114 67 160 158 83 159 157 82 118 116 69 120 118 50 160 158 83 118 116 69 161 159 84 160 158 83 120 118 50 122 120 70 161 159 84 120 118 50 162 160 85 161 159 84 122 120 70 124 122 34 162 160 85 122 120 70 163 161 83 162 160 85 124 122 34 126 124 34 163 161 83 124 122 34 164 162 82 163 161 83 126 124 34 128 126 71 164 162 82 126 124 34 165 163 83 164 162 82 128 126 71 130 128 72 165 163 83 128 126 71 166 164 86 165 163 83 130 128 72 132 130 73 166 164 86 130 128 72 167 165 84 166 164 86 132 130 73 134 132 74 167 165 84 132 130 73 168 166 87 167 165 84 134 132 74 136 134 75 168 166 87 134 132 74 169 167 88 168 166 87 136 134 75 138 136 0 169 167 88 136 134 75 170 168 3 169 167 88 138 136 0 140 138 74 170 168 3 138 136 0 171 169 3 170 168 3 140 138 74 142 140 73 171 169 3 140 138 74 172 170 88 171 169 3 142 140 73 144 142 4 172 170 88 142 140 73 173 171 88 172 170 88 144 142 4 146 144 79 173 171 88 144 142 4 174 172 86 173 171 88 146 144 79 148 146 80 174 172 86 146 144 79 175 173 83 174 172 86 148 146 80 150 148 81 175 173 83 148 146 80 176 174 89 175 173 83 150 148 81 152 150 33 176 174 89 150 148 81 177 175 83 176 174 89 152 150 33 154 152 80 177 175 83 152 150 33 178 176 90 177 175 83 154 152 80 156 154 0 178 176 90 154 152 80 179 177 91 178 176 90 156 154 0 158 156 33 179 177 91 156 154 0 180 178 83 179 177 91 158 156 33 183 181 25 182 180 92 181 179 92 184 182 92 182 180 92 183 181 25 185 183 57 184 182 92 183 181 25 186 184 92 184 182 92 185 183 57 187 185 93 186 184 92 185 183 57 188 186 94 186 184 92 187 185 93 189 187 21 188 186 94 187 185 93 190 188 95 188 186 94 189 187 21 191 189 44 190 188 95 189 187 21 192 190 96 190 188 95 191 189 44 193 191 66 192 190 96 191 189 44 194 192 97 192 190 96 193 191 66 195 193 98 194 192 97 193 191 66 196 194 5 194 192 97 195 193 98 197 195 99 196 194 5 195 193 98 198 196 5 196 194 5 197 195 99 199 197 100 198 196 5 197 195 99 200 198 76 198 196 5 199 197 100 201 199 101 200 198 76 199 197 100 202 200 5 200 198 76 201 199 101 203 201 102 202 200 5 201 199 101 204 202 20 202 200 5 203 201 102 205 203 103 204 202 20 203 201 102 206 204 43 204 202 20 205 203 103 207 205 91 206 204 43 205 203 103 208 206 104 206 204 43 207 205 91 209 207 105 208 206 104 207 205 91 210 208 97 208 206 104 209 207 105 211 209 106 210 208 97 209 207 105 212 210 52 210 208 97 211 209 106 213 211 107 212 210 52 211 209 106 214 212 5 212 210 52 213 211 107 215 213 108 214 212 5 213 211 107 216 214 5 214 212 5 215 213 108 217 215 99 216 214 5 215 213 108 218 216 76 216 214 5 217 215 99 219 217 108 218 216 76 217 215 99 220 218 76 218 216 76 219 217 108 221 219 109 220 218 76 219 217 108 224 222 34 223 221 110 222 220 34 225 223 110 223 221 110 224 222 34 226 224 72 225 223 110 224 222 34 227 225 12 225 223 110 226 224 72 228 226 111 227 225 12 226 224 72 229 227 111 227 225 12 228 226 111 230 228 111 229 227 111 228 226 111 231 229 111 229 227 111 230 228 111 232 230 112 231 229 111 230 228 111 233 231 112 231 229 111 232 230 112 234 232 99 233 231 112 232 230 112 235 233 112 233 231 112 234 232 99 236 234 107 235 233 112 234 232 99 237 235 108 235 233 112 236 234 107 238 236 113 237 235 108 236 234 107 239 237 114 237 235 108 238 236 113 240 238 47 239 237 114 238 236 113 241 239 91 239 237 114 240 238 47 242 240 49 241 239 91 240 238 47 243 241 115 241 239 91 242 240 49 244 242 70 243 241 115 242 240 49 245 243 116 243 241 115 244 242 70 246 244 117 245 243 116 244 242 70 247 245 118 245 243 116 246 244 117 248 246 71 247 245 118 246 244 117 249 247 106 247 245 118 248 246 71 250 248 39 249 247 106 248 246 71 251 249 74 249 247 106 250 248 39 252 250 119 251 249 74 250 248 39 253 251 120 251 249 74 252 250 119 192 190 96 255 253 121 254 252 121 256 254 62 255 253 121 192 190 96 194 192 97 256 254 62 192 190 96 257 255 122 256 254 62 194 192 97 196 194 5 257 255 122 194 192 97 258 256 26 257 255 122 196 194 5 198 196 5 258 256 26 196 194 5 259 257 123 258 256 26 198 196 5 200 198 76 259 257 123 198 196 5 260 258 124 259 257 123 200 198 76 202 200 5 260 258 124 200 198 76 261 259 125 260 258 124 202 200 5 204 202 20 261 259 125 202 200 5 262 260 96 261 259 125 204 202 20 206 204 43 262 260 96 204 202 20 263 261 126 262 260 96 206 204 43 208 206 104 263 261 126 206 204 43 264 262 127 263 261 126 208 206 104 210 208 97 264 262 127 208 206 104 265 263 43 264 262 127 210 208 97 212 210 52 265 263 43 210 208 97 266 264 128 265 263 43 212 210 52 214 212 5 266 264 128 212 210 52 267 265 129 266 264 128 214 212 5 216 214 5 267 265 129 214 212 5 268 266 130 267 265 129 216 214 5 218 216 76 268 266 130 216 214 5 269 267 131 268 266 130 218 216 76 220 218 76 269 267 131 218 216 76 272 270 71 271 269 133 270 268 132 273 271 84 271 269 133 272 270 71 274 272 13 273 271 84 272 270 71 275 273 134 273 271 84 274 272 13 276 274 69 275 273 134 274 272 13 277 275 135 275 273 134 276 274 69 278 276 79 277 275 135 276 274 69 279 277 103 277 275 135 278 276 79 280 278 136 279 277 103 278 276 79 281 279 137 279 277 103 280 278 136 282 280 81 281 279 137 280 278 136 283 281 2 281 279 137 282 280 81 284 282 80 283 281 2 282 280 81 285 283 2 283 281 2 284 282 80 286 284 81 285 283 2 284 282 80 287 285 2 285 283 2 286 284 81 288 286 132 287 285 2 286 284 81 289 287 91 287 285 2 288 286 132 290 288 136 289 287 91 288 286 132 291 289 138 289 287 91 290 288 136 292 290 34 291 289 138 290 288 136 293 291 84 291 289 138 292 290 34 294 292 81 293 291 84 292 290 34 295 293 82 293 291 84 294 292 81 296 294 33 295 293 82 294 292 81 297 295 137 295 293 82 296 294 33 298 296 139 297 295 137 296 294 33 299 297 83 297 295 137 298 296 139 300 298 50 299 297 83 298 296 139 15 15 12 301 299 33 13 13 10 302 300 115 301 299 33 15 15 12 303 301 105 302 300 115 15 15 12 304 302 118 302 300 115 303 301 105 305 303 133 304 302 118 303 301 105 306 304 116 304 302 118 305 303 133 307 305 140 306 304 116 305 303 133 308 306 141 306 304 116 307 305 140 309 307 142 308 306 141 307 305 140 310 308 135 308 306 141 309 307 142 311 309 37 310 308 135 309 307 142 205 203 103 310 308 135 311 309 37 312 310 0 205 203 103 311 309 37 313 311 137 205 203 103 312 310 0 314 312 73 313 311 137 312 310 0 315 313 85 313 311 137 314 312 73 316 314 39 315 313 85 314 312 73 317 315 87 315 313 85 316 314 39 318 316 143 317 315 87 316 314 39 319 317 103 317 315 87 318 316 143 320 318 37 319 317 103 318 316 143 321 319 89 319 317 103 320 318 37 322 320 84 321 319 89 320 318 37 323 321 40 321 319 89 322 320 84 324 322 137 323 321 40 322 320 84 325 323 0 323 321 40 324 322 137 326 324 4 325 323 0 324 322 137 25 25 18 325 323 0 326 324 4 23 23 19 25 25 18 326 324 4 238 236 113 253 251 120 327 325 24 251 249 74 253 251 120 238 236 113 236 234 107 251 249 74 238 236 113 249 247 106 251 249 74 236 234 107 234 232 99 249 247 106 236 234 107 247 245 118 249 247 106 234 232 99 328 326 101 247 245 118 234 232 99 329 327 100 247 245 118 328 326 101 330 328 101 329 327 100 328 326 101 331 329 101 329 327 100 330 328 101 332 330 98 331 329 101 330 328 101 333 331 99 331 329 101 332 330 98 334 332 111 333 331 99 332 330 98 335 333 101 333 331 99 334 332 111 336 334 98 335 333 101 334 332 111 337 335 99 335 333 101 336 334 98 338 336 111 337 335 99 336 334 98 339 337 144 337 335 99 338 336 111 340 338 100 339 337 144 338 336 111 341 339 98 339 337 144 340 338 100 342 340 39 341 339 98 340 338 100 343 341 5 341 339 98 342 340 39 344 342 18 343 341 5 342 340 39 345 343 131 343 341 5 344 342 18 346 344 145 345 343 131 344 342 18 347 345 146 345 343 131 346 344 145 350 348 103 349 347 132 348 346 68 351 349 91 349 347 132 350 348 103 352 350 102 351 349 91 350 348 103 353 351 133 351 349 91 352 350 102 354 352 87 353 351 133 352 350 102 355 353 108 353 351 133 354 352 87 356 354 83 355 353 108 354 352 87 357 355 109 355 353 108 356 354 83 358 356 147 357 355 109 356 354 83 359 357 118 357 355 109 358 356 147 360 358 98 359 357 118 358 356 147 361 359 141 359 357 118 360 358 98 362 360 99 361 359 141 360 358 98 363 361 116 361 359 141 362 360 99 364 362 99 363 361 116 362 360 99 365 363 109 363 361 116 364 362 99 366 364 101 365 363 109 364 362 99 367 365 101 365 363 109 366 364 101 368 366 102 367 365 101 366 364 101 369 367 148 367 365 101 368 366 102 370 368 149 369 367 148 368 366 102 371 369 123 369 367 148 370 368 149 372 370 119 371 369 123 370 368 149 373 371 96 371 369 123 372 370 119 374 372 92 373 371 96 372 370 119 375 373 150 373 371 96 374 372 92 378 376 120 377 375 14 376 374 17 379 377 11 377 375 14 378 376 120 380 378 77 379 377 11 378 376 120 381 379 3 379 377 11 380 378 77 382 380 151 381 379 3 380 378 77 383 381 37 381 379 3 382 380 151 384 382 30 383 381 37 382 380 151 385 383 59 383 381 37 384 382 30 386 384 75 385 383 59 384 382 30 387 385 152 385 383 59 386 384 75 388 386 64 387 385 152 386 384 75 389 387 17 387 385 152 388 386 64 390 388 17 389 387 17 388 386 64 391 389 17 389 387 17 390 388 17 392 390 131 391 389 17 390 388 17 393 391 23 391 389 17 392 390 131 394 392 79 393 391 23 392 390 131 395 393 49 393 391 23 394 392 79 396 394 90 395 393 49 394 392 79 397 395 88 395 393 49 396 394 90 398 396 82 397 395 88 396 394 90 399 397 137 397 395 88 398 396 82 400 398 4 399 397 137 398 396 82 379 377 11 399 397 137 400 398 4 377 375 14 379 377 11 400 398 4 403 401 63 402 400 72 401 399 119 404 402 37 402 400 72 403 401 63 405 403 56 404 402 37 403 401 63 406 404 51 404 402 37 405 403 56 407 405 153 406 404 51 405 403 56 408 406 65 406 404 51 407 405 153 409 407 17 408 406 65 407 405 153 410 408 154 408 406 65 409 407 17 411 409 154 410 408 154 409 407 17 412 410 58 410 408 154 411 409 154 413 411 19 412 410 58 411 409 154 414 412 155 412 410 58 413 411 19 415 413 27 414 412 155 413 411 19 416 414 47 414 412 155 415 413 27 417 415 120 416 414 47 415 413 27 418 416 77 416 414 47 417 415 120 419 417 96 418 416 77 417 415 120 420 418 52 418 416 77 419 417 96 421 419 15 420 418 52 419 417 96 422 420 43 420 418 52 421 419 15 423 421 17 422 420 43 421 419 15 424 422 154 422 420 43 423 421 17 425 423 156 424 422 154 423 421 17 426 424 64 424 422 154 425 423 156 429 427 157 428 426 131 427 425 17 430 428 93 428 426 131 429 427 157 431 429 153 430 428 93 429 427 157 432 430 93 430 428 93 431 429 153 433 431 17 432 430 93 431 429 153 434 432 122 432 430 93 433 431 17 435 433 17 434 432 122 433 431 17 436 434 129 434 432 122 435 433 17 437 435 17 436 434 129 435 433 17 438 436 158 436 434 129 437 435 17 439 437 17 438 436 158 437 435 17 440 438 16 438 436 158 439 437 17 441 439 17 440 438 16 439 437 17 442 440 131 440 438 16 441 439 17 443 441 159 442 440 131 441 439 17 444 442 129 442 440 131 443 441 159 445 443 17 444 442 129 443 441 159 446 444 25 444 442 129 445 443 17 447 445 17 446 444 25 445 443 17 448 446 127 446 444 25 447 445 17 449 447 17 448 446 127 447 445 17 450 448 22 448 446 127 449 447 17 451 449 17 450 448 22 449 447 17 452 450 160 450 448 22 451 449 17 430 428 93 453 451 74 428 426 131 454 452 139 453 451 74 430 428 93 432 430 93 454 452 139 430 428 93 301 299 33 454 452 139 432 430 93 434 432 122 301 299 33 432 430 93 13 13 10 301 299 33 434 432 122 436 434 129 13 13 10 434 432 122 11 11 8 13 13 10 436 434 129 438 436 158 11 11 8 436 434 129 9 9 5 11 11 8 438 436 158 440 438 16 9 9 5 438 436 158 7 7 5 9 9 5 440 438 16 442 440 131 7 7 5 440 438 16 5 5 4 7 7 5 442 440 131 444 442 129 5 5 4 442 440 131 3 3 0 5 5 4 444 442 129 446 444 25 3 3 0 444 442 129 1 1 1 3 3 0 446 444 25 448 446 127 1 1 1 446 444 25 0 0 0 1 1 1 448 446 127 450 448 22 0 0 0 448 446 127 455 453 97 0 0 0 450 448 22 452 450 160 455 453 97 450 448 22 456 454 155 455 453 97 452 450 160 459 457 149 458 456 51 457 455 51 460 458 47 458 456 51 459 457 149 461 459 35 460 458 47 459 457 149 462 460 134 460 458 47 461 459 35 463 461 42 462 460 134 461 459 35 464 462 86 462 460 134 463 461 42 465 463 103 464 462 86 463 461 42 466 464 111 464 462 86 465 463 103 467 465 111 466 464 111 465 463 103 468 466 111 466 464 111 467 465 111 469 467 111 468 466 111 467 465 111 470 468 111 468 466 111 469 467 111 471 469 111 470 468 111 469 467 111 472 470 111 470 468 111 471 469 111 473 471 112 472 470 111 471 469 111 474 472 111 472 470 111 473 471 112 475 473 39 474 472 111 473 471 112 476 474 13 474 472 111 475 473 39 477 475 20 476 474 13 475 473 39 478 476 59 476 474 13 477 475 20 479 477 92 478 476 59 477 475 20 480 478 92 478 476 59 479 477 92 483 456 127 482 479 161 481 455 127 484 480 162 482 479 161 483 456 127 485 481 0 484 480 162 483 456 127 486 482 93 484 480 162 485 481 0 487 483 111 486 482 93 485 481 0 488 484 105 486 482 93 487 483 111 489 485 99 488 484 105 487 483 111 490 486 101 488 484 105 489 485 99 491 487 99 490 486 101 489 485 99 492 488 101 490 486 101 491 487 99 493 489 148 492 488 101 491 487 99 494 490 100 492 488 101 493 489 148 495 491 118 494 490 100 493 489 148 496 492 108 494 490 100 495 491 118 497 493 163 496 492 108 495 491 118 498 494 85 496 492 108 497 493 163 499 495 21 498 494 85 497 493 163 500 496 96 498 494 85 499 495 21 71 71 6 501 497 84 69 69 42 502 498 84 501 497 84 71 71 6 503 499 2 502 498 84 71 71 6 504 500 91 502 498 84 503 499 2 505 501 164 504 500 91 503 499 2 506 502 138 504 500 91 505 501 164 507 503 2 506 502 138 505 501 164 508 504 142 506 502 138 507 503 2 509 505 3 508 504 142 507 503 2 510 506 110 508 504 142 509 505 3 511 507 83 510 506 110 509 505 3 512 508 106 510 506 110 511 507 83 513 509 140 512 508 106 511 507 83 514 510 148 512 508 106 513 509 140 515 511 110 514 510 148 513 509 140 516 512 107 514 510 148 515 511 110 517 513 106 516 512 107 515 511 110 518 514 107 516 512 107 517 513 106 521 517 165 520 516 55 519 515 55 522 518 83 520 516 55 521 517 165 523 519 166 522 518 83 521 517 165 524 520 108 522 518 83 523 519 166 525 521 144 524 520 108 523 519 166 496 492 108 524 520 108 525 521 144 526 522 100 496 492 108 525 521 144 527 523 99 496 492 108 526 522 100 528 524 118 527 523 99 526 522 100 529 525 111 527 523 99 528 524 118 530 526 111 529 525 111 528 524 118 531 527 111 529 525 111 530 526 111 532 528 75 531 527 111 530 526 111 533 529 40 531 527 111 532 528 75 534 530 26 533 529 40 532 528 75 535 531 69 533 529 40 534 530 26 536 532 167 535 531 69 534 530 26 537 533 168 535 531 69 536 532 167 540 536 20 539 535 51 538 534 20 541 537 13 539 535 51 540 536 20 542 538 14 541 537 13 540 536 20 543 539 13 541 537 13 542 538 14 544 540 128 543 539 13 542 538 14 545 541 13 543 539 13 544 540 128 546 542 14 545 541 13 544 540 128 547 543 169 545 541 13 546 542 14 548 544 170 547 543 169 546 542 14 549 545 51 547 543 169 548 544 170 550 546 26 549 545 51 548 544 170 551 547 171 549 545 51 550 546 26 552 548 43 551 547 171 550 546 26 553 549 52 551 547 171 552 548 43 554 550 26 553 549 52 552 548 43 342 340 39 553 549 52 554 550 26 344 342 18 342 340 39 554 550 26 557 553 135 556 552 68 555 551 9 558 554 172 556 552 68 557 553 135 559 555 166 558 554 172 557 553 135 350 348 103 558 554 172 559 555 166 560 556 102 350 348 103 559 555 166 352 350 102 350 348 103 560 556 102 561 557 109 352 350 102 560 556 102 354 352 87 352 350 102 561 557 109 562 558 91 354 352 87 561 557 109 563 559 173 354 352 87 562 558 91 564 560 133 563 559 173 562 558 91 47 47 29 563 559 173 564 560 133 565 561 117 47 47 29 564 560 133 46 46 28 47 47 29 565 561 117 566 92 149 46 46 28 565 561 117 92 92 55 46 46 28 566 92 149 567 562 93 92 92 55 566 92 149 502 498 84 179 177 91 501 497 84 178 176 90 179 177 91 502 498 84 504 500 91 178 176 90 502 498 84 177 175 83 178 176 90 504 500 91 506 502 138 177 175 83 504 500 91 176 174 89 177 175 83 506 502 138 508 504 142 176 174 89 506 502 138 175 173 83 176 174 89 508 504 142 510 506 110 175 173 83 508 504 142 174 172 86 175 173 83 510 506 110 512 508 106 174 172 86 510 506 110 173 171 88 174 172 86 512 508 106 514 510 148 173 171 88 512 508 106 172 170 88 173 171 88 514 510 148 516 512 107 172 170 88 514 510 148 171 169 3 172 170 88 516 512 107 170 168 3 171 169 3 516 512 107 570 565 84 569 564 133 568 563 174 571 566 175 569 564 133 570 565 84 572 567 174 571 566 175 570 565 84 573 568 108 571 566 175 572 567 174 574 569 102 573 568 108 572 567 174 575 570 105 573 568 108 574 569 102 576 571 100 575 570 105 574 569 102 577 572 102 575 570 105 576 571 100 578 573 100 577 572 102 576 571 100 579 574 116 577 572 102 578 573 100 580 575 107 579 574 116 578 573 100 581 576 105 579 574 116 580 575 107 582 577 110 581 576 105 580 575 107 223 221 110 581 576 105 582 577 110 583 578 83 223 221 110 582 577 110 222 220 34 223 221 110 583 578 83 584 579 36 222 220 34 583 578 83 585 580 39 187 185 93 185 183 57 586 581 39 187 185 93 585 580 39 587 582 101 586 581 39 585 580 39 588 583 100 586 581 39 587 582 101 362 360 99 588 583 100 587 582 101 589 584 144 588 583 100 362 360 99 360 358 98 589 584 144 362 360 99 590 585 98 589 584 144 360 358 98 591 586 105 590 585 98 360 358 98 592 587 172 590 585 98 591 586 105 593 588 91 592 587 172 591 586 105 453 451 74 592 587 172 593 588 91 456 454 155 453 451 74 593 588 91 428 426 131 453 451 74 456 454 155 452 450 160 428 426 131 456 454 155 427 425 17 428 426 131 452 450 160 451 449 17 427 425 17 452 450 160 578 573 100 582 577 110 580 575 107 594 589 112 582 577 110 578 573 100 595 590 101 594 589 112 578 573 100 596 591 112 594 589 112 595 590 101 597 592 99 596 591 112 595 590 101 598 593 112 596 591 112 597 592 99 599 594 99 598 593 112 597 592 99 600 595 101 598 593 112 599 594 99 601 596 99 600 595 101 599 594 99 602 597 101 600 595 101 601 596 99 603 598 99 602 597 101 601 596 99 604 599 99 602 597 101 603 598 99 605 600 172 604 599 99 603 598 99 606 601 84 604 599 99 605 600 172 607 602 176 606 601 84 605 600 172 608 603 32 606 601 84 607 602 176 256 254 62 609 604 150 255 253 121 610 605 92 609 604 150 256 254 62 257 255 122 610 605 92 256 254 62 611 606 92 610 605 92 257 255 122 258 256 26 611 606 92 257 255 122 612 607 92 611 606 92 258 256 26 259 257 123 612 607 92 258 256 26 613 608 177 612 607 92 259 257 123 260 258 124 613 608 177 259 257 123 614 609 145 613 608 177 260 258 124 261 259 125 614 609 145 260 258 124 615 610 94 614 609 145 261 259 125 262 260 96 615 610 94 261 259 125 616 611 92 615 610 94 262 260 96 263 261 126 616 611 92 262 260 96 264 262 127 616 611 92 263 261 126 329 327 100 245 243 116 247 245 118 617 612 102 245 243 116 329 327 100 618 613 144 617 612 102 329 327 100 619 614 116 617 612 102 618 613 144 620 615 108 619 614 116 618 613 144 621 616 140 619 614 116 620 615 108 622 617 148 621 616 140 620 615 108 623 618 115 621 616 140 622 617 148 624 619 103 623 618 115 622 617 148 625 620 12 623 618 115 624 619 103 626 621 10 625 620 12 624 619 103 627 622 4 625 620 12 626 621 10 628 623 178 627 622 4 626 621 10 629 624 22 627 622 4 628 623 178 630 625 17 629 624 22 628 623 178 631 626 17 629 624 22 630 625 17 632 627 83 319 317 103 321 319 89 633 628 115 319 317 103 632 627 83 634 629 83 633 628 115 632 627 83 635 630 142 633 628 115 634 629 83 636 631 142 635 630 142 634 629 83 161 159 84 635 630 142 636 631 142 637 632 172 161 159 84 636 631 142 160 158 83 161 159 84 637 632 172 638 633 138 160 158 83 637 632 172 159 157 82 160 158 83 638 633 138 180 178 83 159 157 82 638 633 138 116 114 67 159 157 82 180 178 83 158 156 33 116 114 67 180 178 83 115 113 50 116 114 67 158 156 33 157 155 75 115 113 50 158 156 33 541 537 13 639 634 111 539 535 51 640 635 111 639 634 111 541 537 13 543 539 13 640 635 111 541 537 13 641 636 111 640 635 111 543 539 13 545 541 13 641 636 111 543 539 13 332 330 98 641 636 111 545 541 13 547 543 169 332 330 98 545 541 13 334 332 111 332 330 98 547 543 169 549 545 51 334 332 111 547 543 169 336 334 98 334 332 111 549 545 51 551 547 171 336 334 98 549 545 51 338 336 111 336 334 98 551 547 171 553 549 52 338 336 111 551 547 171 340 338 100 338 336 111 553 549 52 342 340 39 340 338 100 553 549 52 644 639 148 643 638 112 642 637 118 645 640 101 643 638 112 644 639 148 646 641 102 645 640 101 644 639 148 647 642 112 645 640 101 646 641 102 648 643 99 647 642 112 646 641 102 649 644 112 647 642 112 648 643 99 650 645 112 649 644 112 648 643 99 651 646 102 649 644 112 650 645 112 652 647 118 651 646 102 650 645 112 653 648 34 651 646 102 652 647 118 654 649 106 653 648 34 652 647 118 655 650 104 653 648 34 654 649 106 656 651 39 655 650 104 654 649 106 657 652 55 655 650 104 656 651 39 658 653 55 657 652 55 656 651 39 339 337 144 659 654 144 337 335 99 660 655 108 659 654 144 339 337 144 341 339 98 660 655 108 339 337 144 661 656 108 660 655 108 341 339 98 662 657 144 661 656 108 341 339 98 663 658 109 661 656 108 662 657 144 221 219 109 663 658 109 662 657 144 664 659 148 663 658 109 221 219 109 665 660 83 664 659 148 221 219 109 666 661 132 664 659 148 665 660 83 667 662 179 666 661 132 665 660 83 668 663 93 666 661 132 667 662 179 669 664 128 668 663 93 667 662 179 670 665 180 668 663 93 669 664 128 671 666 167 670 665 180 669 664 128 674 669 162 673 668 180 672 667 129 675 670 17 673 668 180 674 669 162 676 671 17 675 670 17 674 669 162 677 672 181 675 670 17 676 671 17 678 673 17 677 672 181 676 671 17 679 674 182 677 672 181 678 673 17 680 675 183 679 674 182 678 673 17 681 676 143 679 674 182 680 675 183 682 677 76 681 676 143 680 675 183 683 678 9 681 676 143 682 677 76 684 679 7 683 678 9 682 677 76 685 680 149 683 678 9 684 679 7 625 620 12 685 680 149 684 679 7 627 622 4 685 680 149 625 620 12 686 681 103 684 679 7 682 677 76 517 513 106 684 679 7 686 681 103 687 682 141 517 513 106 686 681 103 688 683 184 517 513 106 687 682 141 689 684 174 688 683 184 687 682 141 690 685 175 688 683 184 689 684 174 691 686 89 690 685 175 689 684 174 692 687 91 690 685 175 691 686 89 693 688 185 692 687 91 691 686 89 694 689 186 692 687 91 693 688 185 695 690 187 694 689 186 693 688 185 696 691 25 694 689 186 695 690 187 697 692 17 696 691 25 695 690 187 698 693 17 696 691 25 697 692 17 701 696 56 700 695 17 699 694 162 702 697 17 700 695 17 701 696 56 703 698 131 702 697 17 701 696 56 704 699 17 702 697 17 703 698 131 705 700 158 704 699 17 703 698 131 706 701 17 704 699 17 705 700 158 707 702 183 706 701 17 705 700 158 708 703 17 706 701 17 707 702 183 709 704 188 708 703 17 707 702 183 710 705 17 708 703 17 709 704 188 711 706 56 710 705 17 709 704 188 712 707 17 710 705 17 711 706 56 713 708 189 712 707 17 711 706 56 714 709 17 712 707 17 713 708 189 717 712 69 716 711 95 715 710 77 718 713 126 716 711 95 717 712 69 719 714 42 718 713 126 717 712 69 720 715 66 718 713 126 719 714 42 721 716 71 720 715 66 719 714 42 722 717 129 720 715 66 721 716 71 723 718 51 722 717 129 721 716 71 724 719 96 722 717 129 723 718 51 725 720 49 724 719 96 723 718 51 726 721 96 724 719 96 725 720 49 727 722 71 726 721 96 725 720 49 728 723 65 726 721 96 727 722 71 729 724 73 728 723 65 727 722 71 730 725 27 728 723 65 729 724 73 733 728 55 732 727 71 731 726 55 734 729 190 732 727 71 733 728 55 735 730 17 734 729 190 733 728 55 736 731 31 734 729 190 735 730 17 737 732 55 736 731 31 735 730 17 738 733 41 736 731 31 737 732 55 739 734 55 738 733 41 737 732 55 740 735 52 738 733 41 739 734 55 741 736 55 740 735 52 739 734 55 742 737 66 740 735 52 741 736 55 743 738 55 742 737 66 741 736 55 744 739 139 742 737 66 743 738 55 745 740 55 744 739 139 743 738 55 746 741 6 744 739 139 745 740 55 748 743 178 311 309 37 747 742 160 312 310 0 311 309 37 748 743 178 749 744 62 312 310 0 748 743 178 314 312 73 312 310 0 749 744 62 750 745 16 314 312 73 749 744 62 316 314 39 314 312 73 750 745 16 751 746 191 316 314 39 750 745 16 318 316 143 316 314 39 751 746 191 752 747 16 318 316 143 751 746 191 320 318 37 318 316 143 752 747 16 753 748 63 320 318 37 752 747 16 754 749 73 320 318 37 753 748 63 755 750 63 754 749 73 753 748 63 756 751 72 754 749 73 755 750 63 734 729 190 642 637 118 732 727 71 644 639 148 642 637 118 734 729 190 736 731 31 644 639 148 734 729 190 646 641 102 644 639 148 736 731 31 738 733 41 646 641 102 736 731 31 757 752 144 646 641 102 738 733 41 740 735 52 757 752 144 738 733 41 758 753 116 757 752 144 740 735 52 742 737 66 758 753 116 740 735 52 759 754 118 758 753 116 742 737 66 744 739 139 759 754 118 742 737 66 760 755 102 759 754 118 744 739 139 746 741 6 760 755 102 744 739 139 761 756 144 760 755 102 746 741 6 725 720 49 762 757 6 727 722 71 763 758 6 762 757 6 725 720 49 723 718 51 763 758 6 725 720 49 764 759 29 763 758 6 723 718 51 721 716 71 764 759 29 723 718 51 765 760 85 764 759 29 721 716 71 766 761 3 765 760 85 721 716 71 767 762 172 765 760 85 766 761 3 768 763 40 767 762 172 766 761 3 769 764 6 767 762 172 768 763 40 770 765 104 769 764 6 768 763 40 771 766 49 769 764 6 770 765 104 772 767 17 771 766 49 770 765 104 773 768 162 771 766 49 772 767 17 775 770 17 747 742 160 774 769 17 748 743 178 747 742 160 775 770 17 776 771 17 748 743 178 775 770 17 749 744 62 748 743 178 776 771 17 777 772 17 749 744 62 776 771 17 750 745 16 749 744 62 777 772 17 778 773 17 750 745 16 777 772 17 751 746 191 750 745 16 778 773 17 779 774 17 751 746 191 778 773 17 752 747 16 751 746 191 779 774 17 780 775 17 752 747 16 779 774 17 753 748 63 752 747 16 780 775 17 781 776 17 753 748 63 780 775 17 755 750 63 753 748 63 781 776 17 783 778 17 730 725 27 782 777 17 728 723 65 730 725 27 783 778 17 784 779 17 728 723 65 783 778 17 726 721 96 728 723 65 784 779 17 785 780 17 726 721 96 784 779 17 724 719 96 726 721 96 785 780 17 786 781 17 724 719 96 785 780 17 722 717 129 724 719 96 786 781 17 787 782 17 722 717 129 786 781 17 720 715 66 722 717 129 787 782 17 788 783 17 720 715 66 787 782 17 718 713 126 720 715 66 788 783 17 789 784 17 718 713 126 788 783 17 716 711 95 718 713 126 789 784 17 792 787 17 791 786 119 790 785 17 793 788 125 791 786 119 792 787 17 794 789 153 793 788 125 792 787 17 795 790 152 793 788 125 794 789 153 796 791 17 795 790 152 794 789 153 797 792 158 795 790 152 796 791 17 798 793 17 797 792 158 796 791 17 799 794 178 797 792 158 798 793 17 800 795 17 799 794 178 798 793 17 801 796 19 799 794 178 800 795 17 802 797 17 801 796 19 800 795 17 803 798 168 801 796 19 802 797 17 804 799 17 803 798 168 802 797 17 805 800 95 803 798 168 804 799 17 73 73 38 503 499 2 71 71 6 505 501 164 503 499 2 73 73 38 75 75 46 505 501 164 73 73 38 806 801 38 505 501 164 75 75 46 77 77 46 806 801 38 75 75 46 807 802 35 806 801 38 77 77 46 79 79 48 807 802 35 77 77 46 808 803 80 807 802 35 79 79 48 81 81 11 808 803 80 79 79 48 809 804 5 808 803 80 81 81 11 83 83 50 809 804 5 81 81 11 810 805 47 809 804 5 83 83 50 85 85 50 810 805 47 83 83 50 87 87 40 810 805 47 85 85 50 809 804 5 699 694 162 811 806 61 701 696 56 699 694 162 809 804 5 810 805 47 701 696 56 809 804 5 703 698 131 701 696 56 810 805 47 812 807 39 703 698 131 810 805 47 705 700 158 703 698 131 812 807 39 813 808 28 705 700 158 812 807 39 707 702 183 705 700 158 813 808 28 814 809 104 707 702 183 813 808 28 709 704 188 707 702 183 814 809 104 815 810 25 709 704 188 814 809 104 711 706 56 709 704 188 815 810 25 816 811 128 711 706 56 815 810 25 713 708 189 711 706 56 816 811 128 819 814 192 818 813 82 817 812 179 820 815 134 818 813 82 819 814 192 821 816 53 820 815 134 819 814 192 822 817 3 820 815 134 821 816 53 823 818 13 822 817 3 821 816 53 824 819 164 822 817 3 823 818 13 825 820 10 824 819 164 823 818 13 826 821 83 824 819 164 825 820 10 827 822 176 826 821 83 825 820 10 828 823 83 826 821 83 827 822 176 829 824 5 828 823 83 827 822 176 830 825 37 828 823 83 829 824 5 805 800 95 830 825 37 829 824 5 462 460 134 831 826 54 460 458 47 832 827 111 831 826 54 462 460 134 464 462 86 832 827 111 462 460 134 833 828 111 832 827 111 464 462 86 466 464 111 833 828 111 464 462 86 834 829 111 833 828 111 466 464 111 835 830 111 834 829 111 466 464 111 836 831 111 834 829 111 835 830 111 470 468 111 836 831 111 835 830 111 837 832 112 836 831 111 470 468 111 838 833 112 837 832 112 470 468 111 839 834 112 837 832 112 838 833 112 840 835 111 839 834 112 838 833 112 842 837 59 817 812 179 841 836 37 819 814 192 817 812 179 842 837 59 843 838 76 819 814 192 842 837 59 821 816 53 819 814 192 843 838 76 844 839 50 821 816 53 843 838 76 845 840 40 821 816 53 844 839 50 846 841 12 845 840 40 844 839 50 847 842 132 845 840 40 846 841 12 830 825 37 847 842 132 846 841 12 791 786 119 847 842 132 830 825 37 805 800 95 791 786 119 830 825 37 790 785 17 791 786 119 805 800 95 804 799 17 790 785 17 805 800 95 507 503 2 384 382 30 382 380 151 848 843 117 384 382 30 507 503 2 849 844 185 848 843 117 507 503 2 850 845 49 848 843 117 849 844 185 851 846 33 850 845 49 849 844 185 852 847 170 850 845 49 851 846 33 853 848 74 852 847 170 851 846 33 816 811 128 852 847 170 853 848 74 811 806 61 816 811 128 853 848 74 713 708 189 816 811 128 811 806 61 699 694 162 713 708 189 811 806 61 714 709 17 713 708 189 699 694 162 700 695 17 714 709 17 699 694 162 793 788 125 847 842 132 791 786 119 854 849 47 847 842 132 793 788 125 795 790 152 854 849 47 793 788 125 855 850 143 854 849 47 795 790 152 797 792 158 855 850 143 795 790 152 823 818 13 855 850 143 797 792 158 799 794 178 823 818 13 797 792 158 825 820 10 823 818 13 799 794 178 801 796 19 825 820 10 799 794 178 827 822 176 825 820 10 801 796 19 803 798 168 827 822 176 801 796 19 829 824 5 827 822 176 803 798 168 805 800 95 829 824 5 803 798 168 511 507 83 856 851 143 513 509 140 857 852 97 856 851 143 511 507 83 858 853 54 857 852 97 511 507 83 859 854 8 857 852 97 858 853 54 860 855 179 859 854 8 858 853 54 861 856 77 859 854 8 860 855 179 862 857 3 861 856 77 860 855 179 863 858 128 861 856 77 862 857 3 864 859 11 863 858 128 862 857 3 865 860 193 863 858 128 864 859 11 866 861 93 865 860 193 864 859 11 867 862 17 865 860 193 866 861 93 868 863 17 867 862 17 866 861 93 869 864 17 668 663 93 670 665 180 870 865 129 668 663 93 869 864 17 871 866 17 870 865 129 869 864 17 872 867 14 870 865 129 871 866 17 873 868 17 872 867 14 871 866 17 874 869 131 872 867 14 873 868 17 875 870 17 874 869 131 873 868 17 876 871 183 874 869 131 875 870 17 877 872 17 876 871 183 875 870 17 878 873 57 876 871 183 877 872 17 879 874 17 878 873 57 877 872 17 695 690 187 878 873 57 879 874 17 697 692 17 695 690 187 879 874 17 882 877 119 881 876 17 880 875 17 883 878 22 881 876 17 882 877 119 884 879 149 883 878 22 882 877 119 885 880 59 883 878 22 884 879 149 886 881 137 885 880 59 884 879 149 887 882 79 885 880 59 886 881 137 888 883 82 887 882 79 886 881 137 889 884 13 887 882 79 888 883 82 890 885 71 889 884 13 888 883 82 891 886 63 889 884 13 890 885 71 892 887 125 891 886 63 890 885 71 893 888 17 891 886 63 892 887 125 894 889 17 893 888 17 892 887 125 895 890 102 560 556 102 559 555 166 561 557 109 560 556 102 895 890 102 896 891 109 561 557 109 895 890 102 897 892 105 561 557 109 896 891 109 898 893 148 897 892 105 896 891 109 899 894 142 897 892 105 898 893 148 900 895 172 899 894 142 898 893 148 901 896 173 899 894 142 900 895 172 91 91 54 901 896 173 900 895 172 902 897 155 901 896 173 91 91 54 90 90 37 902 897 155 91 91 54 903 898 59 902 897 155 90 90 37 114 112 66 903 898 59 90 90 37 628 623 178 904 899 17 630 625 17 905 900 187 904 899 17 628 623 178 626 621 10 905 900 187 628 623 178 906 901 139 905 900 187 626 621 10 624 619 103 906 901 139 626 621 10 907 902 2 906 901 139 624 619 103 622 617 148 907 902 2 624 619 103 908 903 147 907 902 2 622 617 148 620 615 108 908 903 147 622 617 148 659 654 144 908 903 147 620 615 108 618 613 144 659 654 144 620 615 108 333 331 99 659 654 144 618 613 144 862 857 3 909 904 110 864 859 11 910 905 114 909 904 110 862 857 3 911 906 135 910 905 114 862 857 3 912 907 151 910 905 114 911 906 135 913 908 73 912 907 151 911 906 135 914 909 6 912 907 151 913 908 73 915 910 45 914 909 6 913 908 73 400 398 4 914 909 6 915 910 45 916 911 27 400 398 4 915 910 45 377 375 14 400 398 4 916 911 27 917 912 17 377 375 14 916 911 27 376 374 17 377 375 14 917 912 17 398 396 82 914 909 6 400 398 4 918 913 106 914 909 6 398 396 82 396 394 90 918 913 106 398 396 82 919 914 148 918 913 106 396 394 90 920 915 84 919 914 148 396 394 90 921 916 133 919 914 148 920 915 84 922 917 4 921 916 133 920 915 84 923 918 155 921 916 133 922 917 4 924 919 96 923 918 155 922 917 4 925 920 168 923 918 155 924 919 96 926 921 17 925 920 168 924 919 96 927 922 17 925 920 168 926 921 17 928 923 89 317 315 87 319 317 103 929 924 164 317 315 87 928 923 89 930 925 1 929 924 164 928 923 89 715 710 77 929 924 164 930 925 1 931 926 137 715 710 77 930 925 1 717 712 69 715 710 77 931 926 137 932 927 6 717 712 69 931 926 137 933 928 117 717 712 69 932 927 6 934 929 77 933 928 117 932 927 6 935 930 52 933 928 117 934 929 77 936 931 180 935 930 52 934 929 77 937 932 17 935 930 52 936 931 180 940 935 40 939 934 130 938 933 187 941 936 53 939 934 130 940 935 40 942 937 114 941 936 53 940 935 40 943 938 135 941 936 53 942 937 114 944 939 135 943 938 135 942 937 114 945 940 148 943 938 135 944 939 135 946 941 84 945 940 148 944 939 135 947 942 100 945 940 148 946 941 84 948 943 89 947 942 100 946 941 84 949 944 84 947 942 100 948 943 89 950 945 68 949 944 84 948 943 89 951 946 132 949 944 84 950 945 68 952 947 111 494 490 100 529 525 111 492 488 101 494 490 100 952 947 111 953 948 111 492 488 101 952 947 111 954 949 111 492 488 101 953 948 111 955 950 111 954 949 111 953 948 111 956 951 111 954 949 111 955 950 111 957 952 194 956 951 111 955 950 111 958 953 46 956 951 111 957 952 194 959 954 10 958 953 46 957 952 194 960 955 9 958 953 46 959 954 10 961 956 168 960 955 9 959 954 10 962 957 168 960 955 9 961 956 168 963 958 151 769 764 6 771 766 49 964 959 105 769 764 6 963 958 151 965 960 148 964 959 105 963 958 151 966 961 114 964 959 105 965 960 148 967 962 142 966 961 114 965 960 148 219 217 108 966 961 114 967 962 142 968 963 91 219 217 108 967 962 142 969 964 137 219 217 108 968 963 91 970 965 33 969 964 137 968 963 91 667 662 179 969 964 137 970 965 33 669 664 128 667 662 179 970 965 33 945 940 148 971 966 148 943 938 135 972 967 141 971 966 148 945 940 148 947 942 100 972 967 141 945 940 148 973 968 108 972 967 141 947 942 100 974 969 99 973 968 108 947 942 100 975 970 99 973 968 108 974 969 99 976 971 99 975 970 99 974 969 99 977 972 137 975 970 99 976 971 99 978 973 133 977 972 137 976 971 99 979 974 33 977 972 137 978 973 133 980 975 176 979 974 33 978 973 133 981 976 108 283 281 2 285 283 2 982 977 98 283 281 2 981 976 108 983 978 115 982 977 98 981 976 108 984 979 144 982 977 98 983 978 115 985 980 114 984 979 144 983 978 115 986 981 112 984 979 144 985 980 114 987 982 109 986 981 112 985 980 114 579 574 116 986 981 112 987 982 109 988 983 118 579 574 116 987 982 109 577 572 102 579 574 116 988 983 118 575 570 105 577 572 102 988 983 118 583 578 83 989 984 174 584 579 36 990 985 174 989 984 174 583 578 83 582 577 110 990 985 174 583 578 83 643 638 112 990 985 174 582 577 110 594 589 112 643 638 112 582 577 110 642 637 118 643 638 112 594 589 112 761 756 144 642 637 118 594 589 112 732 727 71 642 637 118 761 756 144 746 741 6 732 727 71 761 756 144 731 726 55 732 727 71 746 741 6 745 740 55 731 726 55 746 741 6 423 421 17 991 986 17 425 423 156 992 987 17 991 986 17 423 421 17 421 419 15 992 987 17 423 421 17 993 988 17 992 987 17 421 419 15 419 417 96 993 988 17 421 419 15 994 989 17 993 988 17 419 417 96 417 415 120 994 989 17 419 417 96 995 990 17 994 989 17 417 415 120 415 413 27 995 990 17 417 415 120 996 991 17 995 990 17 415 413 27 413 411 19 996 991 17 415 413 27 165 163 83 633 628 115 164 162 82 997 992 166 633 628 115 165 163 83 166 164 86 997 992 166 165 163 83 998 993 166 997 992 166 166 164 86 167 165 84 998 993 166 166 164 86 999 994 175 998 993 166 167 165 84 1000 995 184 999 994 175 167 165 84 690 685 175 999 994 175 1000 995 184 518 514 107 690 685 175 1000 995 184 688 683 184 690 685 175 518 514 107 517 513 106 688 683 184 518 514 107 1003 998 195 1002 997 55 1001 996 96 1004 999 164 1002 997 55 1003 998 195 1005 1000 116 1004 999 164 1003 998 195 1006 1001 184 1004 999 164 1005 1000 116 1007 1002 140 1006 1001 184 1005 1000 116 1008 1003 98 1006 1001 184 1007 1002 140 1009 1004 84 1008 1003 98 1007 1002 140 1010 1005 140 1008 1003 98 1009 1004 84 1011 1006 48 1010 1005 140 1009 1004 84 1012 1007 35 1010 1005 140 1011 1006 48 1004 999 164 1013 1008 55 1002 997 55 1014 1009 195 1013 1008 55 1004 999 164 1006 1001 184 1014 1009 195 1004 999 164 521 517 165 1014 1009 195 1006 1001 184 1015 1010 175 521 517 165 1006 1001 184 523 519 166 521 517 165 1015 1010 175 557 553 135 523 519 166 1015 1010 175 1016 1011 135 523 519 166 557 553 135 555 551 9 1016 1011 135 557 553 135 1017 1012 9 1016 1011 135 555 551 9 1020 1015 138 1019 1014 135 1018 1013 11 1021 1016 100 1019 1014 135 1020 1015 138 1022 1017 144 1021 1016 100 1020 1015 138 1023 1018 100 1021 1016 100 1022 1017 144 1024 1019 116 1023 1018 100 1022 1017 144 1025 1020 118 1023 1018 100 1024 1019 116 1026 1021 35 1025 1020 118 1024 1019 116 1027 1022 48 1025 1020 118 1026 1021 35 1028 1023 55 1027 1022 48 1026 1021 35 1029 1024 55 1027 1022 48 1028 1023 55 1030 1025 111 492 488 101 954 949 111 490 486 101 492 488 101 1030 1025 111 1031 1026 111 490 486 101 1030 1025 111 1032 1027 148 490 486 101 1031 1026 111 1033 1028 48 1032 1027 148 1031 1026 111 1034 1029 14 1032 1027 148 1033 1028 48 1035 1030 79 1034 1029 14 1033 1028 48 1036 1031 196 1034 1029 14 1035 1030 79 1037 1032 177 1036 1031 196 1035 1030 79 482 479 161 1036 1031 196 1037 1032 177 900 895 172 1038 1033 85 91 91 54 1039 1034 140 1038 1033 85 900 895 172 898 893 148 1039 1034 140 900 895 172 1040 1035 184 1039 1034 140 898 893 148 896 891 109 1040 1035 184 898 893 148 1041 1036 106 1040 1035 184 896 891 109 1042 1037 116 1041 1036 106 896 891 109 1043 1038 105 1041 1036 106 1042 1037 116 277 275 135 1043 1038 105 1042 1037 116 279 277 103 1043 1038 105 277 275 135 593 588 91 455 453 97 456 454 155 0 0 0 455 453 97 593 588 91 1044 1039 91 0 0 0 593 588 91 2 2 2 0 0 0 1044 1039 91 1045 1040 48 2 2 2 1044 1039 91 841 836 37 2 2 2 1045 1040 48 1046 1041 131 841 836 37 1045 1040 48 1047 1042 168 841 836 37 1046 1041 131 1048 1043 17 1047 1042 168 1046 1041 131 1049 1044 197 1047 1042 168 1048 1043 17 12 12 9 39 39 25 41 41 26 1050 1045 51 39 39 25 12 12 9 10 10 7 1050 1045 51 12 12 9 1051 1046 34 1050 1045 51 10 10 7 634 629 83 1051 1046 34 10 10 7 1052 1047 20 1051 1046 34 634 629 83 632 627 83 1052 1047 20 634 629 83 1053 1048 51 1052 1047 20 632 627 83 321 319 89 1053 1048 51 632 627 83 323 321 40 1053 1048 51 321 319 89 232 230 112 328 326 101 234 232 99 639 634 111 328 326 101 232 230 112 230 228 111 639 634 111 232 230 112 539 535 51 639 634 111 230 228 111 1054 1049 51 539 535 51 230 228 111 538 534 20 539 535 51 1054 1049 51 1055 1050 198 538 534 20 1054 1049 51 1056 1051 199 538 534 20 1055 1050 198 1057 1052 200 1056 1051 199 1055 1050 198 1058 1053 200 1056 1051 199 1057 1052 200 515 511 110 684 679 7 517 513 106 625 620 12 684 679 7 515 511 110 1059 1054 84 625 620 12 515 511 110 623 618 115 625 620 12 1059 1054 84 1060 1055 48 623 618 115 1059 1054 84 1061 1056 70 623 618 115 1060 1055 48 1062 1057 61 1061 1056 70 1060 1055 48 1063 1058 196 1061 1056 70 1062 1057 61 1064 1059 17 1063 1058 196 1062 1057 61 1065 1060 17 1063 1058 196 1064 1059 17 693 688 185 878 873 57 695 690 187 1066 1061 77 878 873 57 693 688 185 691 686 89 1066 1061 77 693 688 185 1067 1062 9 1066 1061 77 691 686 89 689 684 174 1067 1062 9 691 686 89 1068 1063 46 1067 1062 9 689 684 174 1069 1064 142 1068 1063 46 689 684 174 1070 1065 34 1068 1063 46 1069 1064 142 664 659 148 1070 1065 34 1069 1064 142 666 661 132 1070 1065 34 664 659 148 372 370 119 181 179 92 374 372 92 183 181 25 181 179 92 372 370 119 370 368 149 183 181 25 372 370 119 1071 1066 169 183 181 25 370 368 149 368 366 102 1071 1066 169 370 368 149 1072 1067 100 1071 1066 169 368 366 102 366 364 101 1072 1067 100 368 366 102 587 582 101 1072 1067 100 366 364 101 364 362 99 587 582 101 366 364 101 362 360 99 587 582 101 364 362 99 576 571 100 595 590 101 578 573 100 597 592 99 595 590 101 576 571 100 1073 1068 102 597 592 99 576 571 100 599 594 99 597 592 99 1073 1068 102 1074 1069 116 599 594 99 1073 1068 102 971 966 148 599 594 99 1074 1069 116 1075 1070 195 971 966 148 1074 1069 116 1076 1071 30 971 966 148 1075 1070 195 1077 1072 59 1076 1071 30 1075 1070 195 1078 1073 124 1076 1071 30 1077 1072 59 1079 1074 121 538 534 20 1056 1051 199 540 536 20 538 534 20 1079 1074 121 1080 1075 150 540 536 20 1079 1074 121 542 538 14 540 536 20 1080 1075 150 1081 1076 201 542 538 14 1080 1075 150 544 540 128 542 538 14 1081 1076 201 1082 1077 202 544 540 128 1081 1076 201 546 542 14 544 540 128 1082 1077 202 1083 1078 201 546 542 14 1082 1077 202 1084 1079 203 546 542 14 1083 1078 201 1086 1081 17 401 399 119 1085 1080 17 403 401 63 401 399 119 1086 1081 17 1087 1082 17 403 401 63 1086 1081 17 405 403 56 403 401 63 1087 1082 17 1088 1083 17 405 403 56 1087 1082 17 407 405 153 405 403 56 1088 1083 17 1089 1084 17 407 405 153 1088 1083 17 409 407 17 407 405 153 1089 1084 17 1090 1085 17 409 407 17 1089 1084 17 1091 1086 17 409 407 17 1090 1085 17 1021 1016 100 525 521 144 1019 1014 135 1092 1087 100 525 521 144 1021 1016 100 1023 1018 100 1092 1087 100 1021 1016 100 1093 1088 107 1092 1087 100 1023 1018 100 1094 1089 106 1093 1088 107 1023 1018 100 1095 1090 61 1093 1088 107 1094 1089 106 1096 1091 57 1095 1090 61 1094 1089 106 1097 1092 22 1095 1090 61 1096 1091 57 371 369 123 1097 1092 22 1096 1091 57 373 371 96 1097 1092 22 371 369 123 1100 1095 51 1099 1094 124 1098 1093 27 1101 1096 34 1099 1094 124 1100 1095 51 1102 1097 133 1101 1096 34 1100 1095 51 1103 1098 184 1101 1096 34 1102 1097 133 1104 1099 100 1103 1098 184 1102 1097 133 1105 1100 98 1103 1098 184 1104 1099 100 1106 1101 112 1105 1100 98 1104 1099 100 235 233 112 1105 1100 98 1106 1101 112 1107 1102 112 235 233 112 1106 1101 112 897 892 105 562 558 91 561 557 109 564 560 133 562 558 91 897 892 105 899 894 142 564 560 133 897 892 105 565 561 117 564 560 133 899 894 142 901 896 173 565 561 117 899 894 142 566 92 149 565 561 117 901 896 173 902 897 155 566 92 149 901 896 173 567 562 93 566 92 149 902 897 155 903 898 59 567 562 93 902 897 155 6 6 2 636 631 142 634 629 83 637 632 172 636 631 142 6 6 2 818 813 82 637 632 172 6 6 2 638 633 138 637 632 172 818 813 82 820 815 134 638 633 138 818 813 82 1108 1103 91 638 633 138 820 815 134 1109 1104 2 1108 1103 91 820 815 134 65 65 40 1108 1103 91 1109 1104 2 63 63 38 65 65 40 1109 1104 2 1092 1087 100 526 522 100 525 521 144 1110 1105 141 526 522 100 1092 1087 100 1093 1088 107 1110 1105 141 1092 1087 100 1111 1106 122 1110 1105 141 1093 1088 107 1095 1090 61 1111 1106 122 1093 1088 107 1112 1107 180 1111 1106 122 1095 1090 61 1097 1092 22 1112 1107 180 1095 1090 61 375 373 150 1112 1107 180 1097 1092 22 373 371 96 375 373 150 1097 1092 22 905 900 187 880 875 17 904 899 17 882 877 119 880 875 17 905 900 187 906 901 139 882 877 119 905 900 187 884 879 149 882 877 119 906 901 139 907 902 2 884 879 149 906 901 139 886 881 137 884 879 149 907 902 2 908 903 147 886 881 137 907 902 2 660 655 108 886 881 137 908 903 147 659 654 144 660 655 108 908 903 147 1113 1108 115 890 885 71 888 883 82 1114 1109 185 890 885 71 1113 1108 115 686 681 103 1114 1109 185 1113 1108 115 1115 1110 0 1114 1109 185 686 681 103 682 677 76 1115 1110 0 686 681 103 1116 1111 24 1115 1110 0 682 677 76 680 675 183 1116 1111 24 682 677 76 1117 1112 17 1116 1111 24 680 675 183 678 673 17 1117 1112 17 680 675 183 883 878 22 1118 1113 17 881 876 17 673 668 180 1118 1113 17 883 878 22 885 880 59 673 668 180 883 878 22 672 667 129 673 668 180 885 880 59 887 882 79 672 667 129 885 880 59 674 669 162 672 667 129 887 882 79 1119 1114 126 674 669 162 887 882 79 676 671 17 674 669 162 1119 1114 126 1120 1115 17 676 671 17 1119 1114 126 1121 1116 142 930 925 1 928 923 89 931 926 137 930 925 1 1121 1116 142 1122 1117 103 931 926 137 1121 1116 142 1123 1118 46 931 926 137 1122 1117 103 1124 1119 165 1123 1118 46 1122 1117 103 1125 1120 60 1123 1118 46 1124 1119 165 1126 1121 45 1125 1120 60 1124 1119 165 1127 1122 17 1125 1120 60 1126 1121 45 1128 1123 204 1127 1122 17 1126 1121 45 1131 1126 59 1130 1125 177 1129 1124 205 1132 1127 59 1130 1125 177 1131 1126 59 1133 1128 13 1132 1127 59 1131 1126 59 1134 1129 13 1132 1127 59 1133 1128 13 1135 1130 140 1134 1129 13 1133 1128 13 1136 1131 111 1134 1129 13 1135 1130 140 840 835 111 1136 1131 111 1135 1130 140 472 470 111 1136 1131 111 840 835 111 470 468 111 472 470 111 840 835 111 924 919 96 1137 1132 17 926 921 17 1138 1133 127 1137 1132 17 924 919 96 922 917 4 1138 1133 127 924 919 96 1139 1134 81 1138 1133 127 922 917 4 1140 1135 2 1139 1134 81 922 917 4 1141 1136 85 1139 1134 81 1140 1135 2 1142 1137 70 1141 1136 85 1140 1135 2 386 384 75 1141 1136 85 1142 1137 70 388 386 64 386 384 75 1142 1137 70 836 831 111 1143 1138 111 834 829 111 1144 1139 101 1143 1138 111 836 831 111 1145 1140 112 1144 1139 101 836 831 111 1146 1141 101 1144 1139 101 1145 1140 112 1147 1142 101 1146 1141 101 1145 1140 112 1148 1143 174 1146 1141 101 1147 1142 101 1149 1144 83 1148 1143 174 1147 1142 101 1150 1145 10 1148 1143 174 1149 1144 83 1151 1146 33 1150 1145 10 1149 1144 83 358 356 147 591 586 105 360 358 98 1152 1147 84 591 586 105 358 356 147 356 354 83 1152 1147 84 358 356 147 1153 1148 5 1152 1147 84 356 354 83 1154 1149 51 1153 1148 5 356 354 83 1155 1150 206 1153 1148 5 1154 1149 51 1156 1151 56 1155 1150 206 1154 1149 51 1157 1152 17 1155 1150 206 1156 1151 56 1158 1153 17 1157 1152 17 1156 1151 56 1159 1154 55 655 650 104 657 652 55 653 648 34 655 650 104 1159 1154 55 1160 1155 63 653 648 34 1159 1154 55 1161 1156 164 653 648 34 1160 1155 63 1162 1157 183 1161 1156 164 1160 1155 63 1163 1158 48 1161 1156 164 1162 1157 183 1164 1159 24 1163 1158 48 1162 1157 183 1165 1160 52 1163 1158 48 1164 1159 24 1166 1161 21 1165 1160 52 1164 1159 24 203 201 102 310 308 135 205 203 103 308 306 141 310 308 135 203 201 102 201 199 101 308 306 141 203 201 102 1167 1162 102 308 306 141 201 199 101 1168 1163 98 1167 1162 102 201 199 101 306 304 116 1167 1162 102 1168 1163 98 1169 1164 98 306 304 116 1168 1163 98 1170 1165 98 306 304 116 1169 1164 98 195 193 98 1170 1165 98 1169 1164 98 591 586 105 1044 1039 91 593 588 91 1171 1166 84 1044 1039 91 591 586 105 1152 1147 84 1171 1166 84 591 586 105 1172 1167 79 1171 1166 84 1152 1147 84 1153 1148 5 1172 1167 79 1152 1147 84 1173 1168 127 1172 1167 79 1153 1148 5 1155 1150 206 1173 1168 127 1153 1148 5 1174 1169 167 1173 1168 127 1155 1150 206 1157 1152 17 1174 1169 167 1155 1150 206 866 861 93 1175 1170 19 868 863 17 1176 1171 132 1175 1170 19 866 861 93 864 859 11 1176 1171 132 866 861 93 1177 1172 117 1176 1171 132 864 859 11 909 904 110 1177 1172 117 864 859 11 1178 1173 81 1177 1172 117 909 904 110 1179 1174 90 1178 1173 81 909 904 110 1180 1175 76 1178 1173 81 1179 1174 90 621 616 140 1180 1175 76 1179 1174 90 1182 1177 10 965 960 148 1181 1176 6 967 962 142 965 960 148 1182 1177 10 1183 1178 8 967 962 142 1182 1177 10 968 963 91 967 962 142 1183 1178 8 1184 1179 81 968 963 91 1183 1178 8 970 965 33 968 963 91 1184 1179 81 1185 1180 128 970 965 33 1184 1179 81 669 664 128 970 965 33 1185 1180 128 671 666 167 669 664 128 1185 1180 128 353 351 133 1187 1182 179 1186 1181 192 1188 1183 103 1187 1182 179 353 351 133 355 353 108 1188 1183 103 353 351 133 1189 1184 140 1188 1183 103 355 353 108 1022 1017 144 1189 1184 140 355 353 108 1190 1185 89 1189 1184 140 1022 1017 144 1020 1015 138 1190 1185 89 1022 1017 144 1191 1186 132 1190 1185 89 1020 1015 138 1018 1013 11 1191 1186 132 1020 1015 138 381 379 3 399 397 137 379 377 11 1192 1187 10 399 397 137 381 379 3 383 381 37 1192 1187 10 381 379 3 1193 1188 56 1192 1187 10 383 381 37 1194 1189 154 1193 1188 56 383 381 37 1195 1190 17 1193 1188 56 1194 1189 154 1196 1191 17 1195 1190 17 1194 1189 154 391 389 17 1195 1190 17 1196 1191 17 389 387 17 391 389 17 1196 1191 17 1197 1192 110 1121 1116 142 690 685 175 1122 1117 103 1121 1116 142 1197 1192 110 1198 1193 142 1122 1117 103 1197 1192 110 1124 1119 165 1122 1117 103 1198 1193 142 1199 1194 86 1124 1119 165 1198 1193 142 1126 1121 45 1124 1119 165 1199 1194 86 1200 1195 171 1126 1121 45 1199 1194 86 1128 1123 204 1126 1121 45 1200 1195 171 773 768 162 1128 1123 204 1200 1195 171 1101 1096 34 1201 1196 14 1099 1094 124 1202 1197 164 1201 1196 14 1101 1096 34 1103 1098 184 1202 1197 164 1101 1096 34 1203 1198 175 1202 1197 164 1103 1098 184 1105 1100 98 1203 1198 175 1103 1098 184 1204 1199 135 1203 1198 175 1105 1100 98 1205 1200 116 1204 1199 135 1105 1100 98 1040 1035 184 1204 1199 135 1205 1200 116 921 916 133 1040 1035 184 1205 1200 116 354 352 87 828 823 83 356 354 83 1206 1201 3 828 823 83 354 352 87 422 420 43 1206 1201 3 354 352 87 1207 1202 76 1206 1201 3 422 420 43 426 424 64 1207 1202 76 422 420 43 1208 1203 23 1207 1202 76 426 424 64 425 423 156 1208 1203 23 426 424 64 1209 1204 17 1208 1203 23 425 423 156 991 986 17 1209 1204 17 425 423 156 649 644 112 990 985 174 647 642 112 1210 1205 112 990 985 174 649 644 112 1211 1206 175 1210 1205 112 649 644 112 1212 1207 106 1210 1205 112 1211 1206 175 1165 1160 52 1212 1207 106 1211 1206 175 1213 1208 8 1212 1207 106 1165 1160 52 1166 1161 21 1213 1208 8 1165 1160 52 1214 1209 126 1213 1208 8 1166 1161 21 1216 1211 57 1129 1124 205 1215 1210 207 1131 1126 59 1129 1124 205 1216 1211 57 1217 1212 51 1131 1126 59 1216 1211 57 1133 1128 13 1131 1126 59 1217 1212 51 989 984 174 1133 1128 13 1217 1212 51 1135 1130 140 1133 1128 13 989 984 174 990 985 174 1135 1130 140 989 984 174 1210 1205 112 1135 1130 140 990 985 174 309 307 142 1218 1213 174 756 751 72 324 322 137 1218 1213 174 309 307 142 307 305 140 324 322 137 309 307 142 326 324 4 324 322 137 307 305 140 305 303 133 326 324 4 307 305 140 1219 1214 70 326 324 4 305 303 133 303 301 105 1219 1214 70 305 303 133 15 15 12 1219 1214 70 303 301 105 573 568 108 287 285 2 289 287 91 1220 1215 109 287 285 2 573 568 108 1221 1216 114 1220 1215 109 573 568 108 1222 1217 118 1220 1215 109 1221 1216 114 1223 1218 54 1222 1217 118 1221 1216 114 1224 1219 4 1222 1217 118 1223 1218 54 1225 1220 130 1224 1219 4 1223 1218 54 1226 1221 129 1224 1219 4 1225 1220 130 982 977 98 281 279 137 283 281 2 279 277 103 281 279 137 982 977 98 1227 1222 89 279 277 103 982 977 98 1043 1038 105 279 277 103 1227 1222 89 1228 1223 73 1043 1038 105 1227 1222 89 1229 1224 194 1043 1038 105 1228 1223 73 1230 1225 63 1229 1224 194 1228 1223 73 1231 1226 208 1229 1224 194 1230 1225 63 1232 1227 98 297 295 137 299 297 83 568 563 174 297 295 137 1232 1227 98 1233 1228 107 568 563 174 1232 1227 98 570 565 84 568 563 174 1233 1228 107 1234 1229 42 570 565 84 1233 1228 107 1235 1230 71 570 565 84 1234 1229 42 1236 1231 57 1235 1230 71 1234 1229 42 1237 1232 129 1235 1230 71 1236 1231 57 217 215 99 966 961 114 219 217 108 1238 1233 114 966 961 114 217 215 99 1239 1234 116 1238 1233 114 217 215 99 767 762 172 1238 1233 114 1239 1234 116 1240 1235 147 767 762 172 1239 1234 116 1241 1236 175 767 762 172 1240 1235 147 213 211 107 1241 1236 175 1240 1235 147 211 209 106 1241 1236 175 213 211 107 1008 1003 98 1015 1010 175 1006 1001 184 895 890 102 1015 1010 175 1008 1003 98 1232 1227 98 895 890 102 1008 1003 98 1242 1237 115 895 890 102 1232 1227 98 299 297 83 1242 1237 115 1232 1227 98 1243 1238 89 1242 1237 115 299 297 83 300 298 50 1243 1238 89 299 297 83 270 268 132 1243 1238 89 300 298 50 1244 1239 145 268 266 130 269 267 131 267 265 129 268 266 130 1244 1239 145 1245 1240 92 267 265 129 1244 1239 145 266 264 128 267 265 129 1245 1240 92 1246 1241 92 266 264 128 1245 1240 92 265 263 43 266 264 128 1246 1241 92 1247 1242 92 265 263 43 1246 1241 92 1248 1243 92 265 263 43 1247 1242 92 477 475 20 1249 1244 168 479 477 92 1250 1245 68 1249 1244 168 477 475 20 475 473 39 1250 1245 68 477 475 20 1251 1246 40 1250 1245 68 475 473 39 473 471 112 1251 1246 40 475 473 39 1252 1247 111 1251 1246 40 473 471 112 471 469 111 1252 1247 111 473 471 112 469 467 111 1252 1247 111 471 469 111 692 687 91 1197 1192 110 690 685 175 1198 1193 142 1197 1192 110 692 687 91 694 689 186 1198 1193 142 692 687 91 1181 1176 6 1198 1193 142 694 689 186 696 691 25 1181 1176 6 694 689 186 1253 1248 18 1181 1176 6 696 691 25 698 693 17 1253 1248 18 696 691 25 1254 1249 17 1253 1248 18 698 693 17 1256 1251 165 1001 996 96 1255 1250 128 1003 998 195 1001 996 96 1256 1251 165 493 489 148 1003 998 195 1256 1251 165 1005 1000 116 1003 998 195 493 489 148 1257 1252 135 1005 1000 116 493 489 148 1258 1253 103 1005 1000 116 1257 1252 135 1259 1254 10 1258 1253 103 1257 1252 135 1260 1255 10 1258 1253 103 1259 1254 10 1261 1256 111 976 971 99 974 969 99 1262 1257 99 976 971 99 1261 1256 111 487 483 111 1262 1257 99 1261 1256 111 1263 1258 111 1262 1257 99 487 483 111 1264 481 29 1263 1258 111 487 483 111 831 826 54 1263 1258 111 1264 481 29 458 456 51 831 826 54 1264 481 29 460 458 47 831 826 54 458 456 51 404 402 37 826 821 83 402 400 72 824 819 164 826 821 83 404 402 37 406 404 51 824 819 164 404 402 37 1265 1259 68 824 819 164 406 404 51 408 406 65 1265 1259 68 406 404 51 1266 1260 31 1265 1259 68 408 406 65 410 408 154 1266 1260 31 408 406 65 412 410 58 1266 1260 31 410 408 154 1192 1187 10 1267 1261 71 399 397 137 1268 1262 19 1267 1261 71 1192 1187 10 1193 1188 56 1268 1262 19 1192 1187 10 1269 1263 17 1268 1262 19 1193 1188 56 1195 1190 17 1269 1263 17 1193 1188 56 1270 1264 17 1269 1263 17 1195 1190 17 391 389 17 1270 1264 17 1195 1190 17 393 391 23 1270 1264 17 391 389 17 513 509 140 1059 1054 84 515 511 110 1271 1265 87 1059 1054 84 513 509 140 856 851 143 1271 1265 87 513 509 140 1272 1266 74 1271 1265 87 856 851 143 1273 1267 21 1272 1266 74 856 851 143 1175 1170 19 1272 1266 74 1273 1267 21 1274 1268 17 1175 1170 19 1273 1267 21 868 863 17 1175 1170 19 1274 1268 17 605 600 172 1275 1269 11 607 602 176 1276 1270 103 1275 1269 11 605 600 172 603 598 99 1276 1270 103 605 600 172 1277 1271 84 1276 1270 103 603 598 99 1278 1272 83 1277 1271 84 603 598 99 1279 1273 74 1277 1271 84 1278 1272 83 1280 1274 10 1279 1273 74 1278 1272 83 973 968 108 601 596 99 599 594 99 603 598 99 601 596 99 973 968 108 975 970 99 603 598 99 973 968 108 1278 1272 83 603 598 99 975 970 99 977 972 137 1278 1272 83 975 970 99 1280 1274 10 1278 1272 83 977 972 137 979 974 33 1280 1274 10 977 972 137 359 357 118 1281 1275 54 357 355 109 1282 1276 194 1281 1275 54 359 357 118 361 359 141 1282 1276 194 359 357 118 1283 1277 132 1282 1276 194 361 359 141 1284 1278 151 1283 1277 132 361 359 141 1285 1279 55 1283 1277 132 1284 1278 151 1286 1280 55 1285 1279 55 1284 1278 151 1287 1281 17 865 860 193 867 862 17 1288 1282 21 865 860 193 1287 1281 17 1289 1283 17 1288 1282 21 1287 1281 17 1290 1284 93 1288 1282 21 1289 1283 17 1291 1285 17 1290 1284 93 1289 1283 17 1292 1286 120 1290 1284 93 1291 1285 17 1293 1287 17 1292 1286 120 1291 1285 17 1176 1171 132 1272 1266 74 1175 1170 19 1294 1288 34 1272 1266 74 1176 1171 132 1177 1172 117 1294 1288 34 1176 1171 132 1295 1289 18 1294 1288 34 1177 1172 117 1296 1290 5 1295 1289 18 1177 1172 117 1297 1291 17 1295 1289 18 1296 1290 5 1298 1292 17 1297 1291 17 1296 1290 5 929 924 164 315 313 85 317 315 87 729 724 73 315 313 85 929 924 164 715 710 77 729 724 73 929 924 164 730 725 27 729 724 73 715 710 77 716 711 95 730 725 27 715 710 77 782 777 17 730 725 27 716 711 95 789 784 17 782 777 17 716 711 95 1210 1205 112 840 835 111 1135 1130 140 839 834 112 840 835 111 1210 1205 112 1299 1293 147 839 834 112 1210 1205 112 1300 1294 175 839 834 112 1299 1293 147 1301 1295 36 1300 1294 175 1299 1293 147 656 651 39 1300 1294 175 1301 1295 36 658 653 55 656 651 39 1301 1295 36 509 505 3 858 853 54 511 507 83 1302 1296 143 858 853 54 509 505 3 380 378 77 1302 1296 143 509 505 3 1303 1297 193 1302 1296 143 380 378 77 378 376 120 1303 1297 193 380 378 77 1304 1298 17 1303 1297 193 378 376 120 376 374 17 1304 1298 17 378 376 120 1206 1201 3 826 821 83 828 823 83 402 400 72 826 821 83 1206 1201 3 1207 1202 76 402 400 72 1206 1201 3 401 399 119 402 400 72 1207 1202 76 1208 1203 23 401 399 119 1207 1202 76 1085 1080 17 401 399 119 1208 1203 23 1209 1204 17 1085 1080 17 1208 1203 23 467 465 111 1252 1247 111 469 467 111 1251 1246 40 1252 1247 111 467 465 111 1305 1299 140 1251 1246 40 467 465 111 1250 1245 68 1251 1246 40 1305 1299 140 1306 1300 7 1250 1245 68 1305 1299 140 1249 1244 168 1250 1245 68 1306 1300 7 1307 1301 57 1249 1244 168 1306 1300 7 654 649 106 1300 1294 175 656 651 39 1308 1302 101 1300 1294 175 654 649 106 1309 1303 101 1308 1302 101 654 649 106 1310 1304 103 1308 1302 101 1309 1303 101 1311 1305 134 1310 1304 103 1309 1303 101 1312 1306 73 1310 1304 103 1311 1305 134 608 603 32 1312 1306 73 1311 1305 134 465 463 103 1305 1299 140 467 465 111 1313 1307 38 1305 1299 140 465 463 103 463 461 42 1313 1307 38 465 463 103 1314 1308 57 1313 1307 38 463 461 42 461 459 35 1314 1308 57 463 461 42 1315 1309 57 1314 1308 57 461 459 35 459 457 149 1315 1309 57 461 459 35 1110 1105 141 528 524 118 526 522 100 1316 1310 44 528 524 118 1110 1105 141 1317 1311 25 1316 1310 44 1110 1105 141 1318 1312 196 1316 1310 44 1317 1311 25 1319 1313 22 1318 1312 196 1317 1311 25 1320 1314 146 1318 1312 196 1319 1313 22 1321 1315 209 1320 1314 146 1319 1313 22 343 341 5 662 657 144 341 339 98 1322 1316 76 662 657 144 343 341 5 345 343 131 1322 1316 76 343 341 5 1323 1317 24 1322 1316 76 345 343 131 1324 1318 210 1323 1317 24 345 343 131 1325 1319 210 1323 1317 24 1324 1318 210 1322 1316 76 221 219 109 662 657 144 220 218 76 221 219 109 1322 1316 76 1323 1317 24 220 218 76 1322 1316 76 269 267 131 220 218 76 1323 1317 24 1325 1319 210 269 267 131 1323 1317 24 1244 1239 145 269 267 131 1325 1319 210 757 752 144 648 643 99 646 641 102 650 645 112 648 643 99 757 752 144 758 753 116 650 645 112 757 752 144 1326 1320 112 650 645 112 758 753 116 759 754 118 1326 1320 112 758 753 116 598 593 112 1326 1320 112 759 754 118 1084 1079 203 548 544 170 546 542 14 550 546 26 548 544 170 1084 1079 203 1327 1321 94 550 546 26 1084 1079 203 552 548 43 550 546 26 1327 1321 94 1328 1322 177 552 548 43 1327 1321 94 1329 1323 177 552 548 43 1328 1322 177 958 953 46 1031 1026 111 956 951 111 1033 1028 48 1031 1026 111 958 953 46 960 955 9 1033 1028 48 958 953 46 1035 1030 79 1033 1028 48 960 955 9 962 957 168 1035 1030 79 960 955 9 1330 1324 168 1035 1030 79 962 957 168 304 302 118 592 587 172 302 300 115 1331 1325 98 592 587 172 304 302 118 1170 1165 98 1331 1325 98 304 302 118 1332 1326 109 1331 1325 98 1170 1165 98 195 193 98 1332 1326 109 1170 1165 98 193 191 66 1332 1326 109 195 193 98 1062 1057 61 1333 1327 17 1064 1059 17 1334 1328 187 1333 1327 17 1062 1057 61 1060 1055 48 1334 1328 187 1062 1057 61 1335 1329 31 1334 1328 187 1060 1055 48 1059 1054 84 1335 1329 31 1060 1055 48 1271 1265 87 1335 1329 31 1059 1054 84 505 501 164 849 844 185 507 503 2 851 846 33 849 844 185 505 501 164 806 801 38 851 846 33 505 501 164 853 848 74 851 846 33 806 801 38 807 802 35 853 848 74 806 801 38 808 803 80 853 848 74 807 802 35 1338 1332 208 1337 1331 17 1336 1330 17 1339 1333 198 1337 1331 17 1338 1332 208 852 847 170 1339 1333 198 1338 1332 208 1340 1334 170 1339 1333 198 852 847 170 816 811 128 1340 1334 170 852 847 170 815 810 25 1340 1334 170 816 811 128 1308 1302 101 839 834 112 1300 1294 175 1341 1335 101 839 834 112 1308 1302 101 1342 1336 91 1341 1335 101 1308 1302 101 1343 1337 83 1341 1335 101 1342 1336 91 1344 1338 74 1343 1337 83 1342 1336 91 1345 1339 34 1343 1337 83 1344 1338 74 534 530 26 1320 1314 146 536 532 167 1318 1312 196 1320 1314 146 534 530 26 532 528 75 1318 1312 196 534 530 26 1316 1310 44 1318 1312 196 532 528 75 530 526 111 1316 1310 44 532 528 75 528 524 118 1316 1310 44 530 526 111 1341 1335 101 837 832 112 839 834 112 1346 1340 112 837 832 112 1341 1335 101 1347 1341 89 1346 1340 112 1341 1335 101 1348 1342 83 1346 1340 112 1347 1341 89 1349 1343 33 1348 1342 83 1347 1341 89 1151 1146 33 1348 1342 83 1349 1343 33 1096 1091 57 369 367 148 371 369 123 1350 1344 166 369 367 148 1096 1091 57 1094 1089 106 1350 1344 166 1096 1091 57 1351 1345 100 1350 1344 166 1094 1089 106 1023 1018 100 1351 1345 100 1094 1089 106 1025 1020 118 1351 1345 100 1023 1018 100 988 983 118 1352 1346 34 575 570 105 1353 1347 12 1352 1346 34 988 983 118 987 982 109 1353 1347 12 988 983 118 1354 1348 84 1353 1347 12 987 982 109 985 980 114 1354 1348 84 987 982 109 983 978 115 1354 1348 84 985 980 114 1222 1217 118 981 976 108 285 283 2 983 978 115 981 976 108 1222 1217 118 1224 1219 4 983 978 115 1222 1217 118 1355 1349 51 983 978 115 1224 1219 4 1226 1221 129 1355 1349 51 1224 1219 4 1356 1350 18 1355 1349 51 1226 1221 129 1228 1223 73 1098 1093 27 1230 1225 63 1100 1095 51 1098 1093 27 1228 1223 73 1227 1222 89 1100 1095 51 1228 1223 73 1102 1097 133 1100 1095 51 1227 1222 89 982 977 98 1102 1097 133 1227 1222 89 984 979 144 1102 1097 133 982 977 98 1359 1353 176 1358 1352 129 1357 1351 61 1360 1354 149 1358 1352 129 1359 1353 176 1204 1199 135 1360 1354 149 1359 1353 176 1361 1355 84 1360 1354 149 1204 1199 135 1040 1035 184 1361 1355 84 1204 1199 135 1041 1036 106 1361 1355 84 1040 1035 184 1200 1195 171 771 766 49 773 768 162 963 958 151 771 766 49 1200 1195 171 1199 1194 86 963 958 151 1200 1195 171 965 960 148 963 958 151 1199 1194 86 1198 1193 142 965 960 148 1199 1194 86 1181 1176 6 965 960 148 1198 1193 142 1362 1356 101 1146 1141 101 1148 1143 174 1144 1139 101 1146 1141 101 1362 1356 101 1363 1357 101 1144 1139 101 1362 1356 101 1364 1358 111 1144 1139 101 1363 1357 101 1262 1257 99 1364 1358 111 1363 1357 101 1263 1258 111 1364 1358 111 1262 1257 99 1053 1048 51 31 31 22 1052 1047 20 29 29 21 31 31 22 1053 1048 51 323 321 40 29 29 21 1053 1048 51 27 27 20 29 29 21 323 321 40 325 323 0 27 27 20 323 321 40 25 25 18 27 27 20 325 323 0 860 855 179 911 906 135 862 857 3 913 908 73 911 906 135 860 855 179 1365 1359 124 913 908 73 860 855 179 1366 1360 125 913 908 73 1365 1359 124 1367 1361 211 1366 1360 125 1365 1359 124 1368 1362 17 1366 1360 125 1367 1361 211 1008 1003 98 1233 1228 107 1232 1227 98 942 937 114 1233 1228 107 1008 1003 98 1010 1005 140 942 937 114 1008 1003 98 1369 1363 91 942 937 114 1010 1005 140 1012 1007 35 1369 1363 91 1010 1005 140 1370 1364 67 1369 1363 91 1012 1007 35 1294 1288 34 1271 1265 87 1272 1266 74 1371 1365 49 1271 1265 87 1294 1288 34 1372 1366 63 1371 1365 49 1294 1288 34 1373 1367 189 1371 1365 49 1372 1366 63 1374 1368 17 1373 1367 189 1372 1366 63 1375 1369 17 1373 1367 189 1374 1368 17 225 223 110 581 576 105 223 221 110 1376 1370 105 581 576 105 225 223 110 227 225 12 1376 1370 105 225 223 110 1107 1102 112 1376 1370 105 227 225 12 229 227 111 1107 1102 112 227 225 12 231 229 111 1107 1102 112 229 227 111 1108 1103 91 180 178 83 638 633 138 179 177 91 180 178 83 1108 1103 91 1377 1371 84 179 177 91 1108 1103 91 501 497 84 179 177 91 1377 1371 84 67 67 41 501 497 84 1377 1371 84 69 69 42 501 497 84 67 67 41 1061 1056 70 621 616 140 623 618 115 1180 1175 76 621 616 140 1061 1056 70 1063 1058 196 1180 1175 76 1061 1056 70 1378 1372 130 1180 1175 76 1063 1058 196 1065 1060 17 1378 1372 130 1063 1058 196 1298 1292 17 1378 1372 130 1065 1060 17 49 49 1 563 559 173 47 47 29 418 416 77 563 559 173 49 49 1 51 51 30 418 416 77 49 49 1 416 414 47 418 416 77 51 51 30 53 53 9 416 414 47 51 51 30 55 55 33 416 414 47 53 53 9 997 992 166 319 317 103 633 628 115 928 923 89 319 317 103 997 992 166 998 993 166 928 923 89 997 992 166 1121 1116 142 928 923 89 998 993 166 999 994 175 1121 1116 142 998 993 166 690 685 175 1121 1116 142 999 994 175 1365 1359 124 1379 1373 167 1367 1361 211 1380 1374 59 1379 1373 167 1365 1359 124 860 855 179 1380 1374 59 1365 1359 124 1381 1375 5 1380 1374 59 860 855 179 858 853 54 1381 1375 5 860 855 179 1302 1296 143 1381 1375 5 858 853 54 533 529 40 955 950 111 531 527 111 957 952 194 955 950 111 533 529 40 535 531 69 957 952 194 533 529 40 959 954 10 957 952 194 535 531 69 537 533 168 959 954 10 535 531 69 961 956 168 959 954 10 537 533 168 1339 1333 198 1382 1376 17 1337 1331 17 1383 1377 16 1382 1376 17 1339 1333 198 1340 1334 170 1383 1377 16 1339 1333 198 1384 1378 26 1383 1377 16 1340 1334 170 815 810 25 1384 1378 26 1340 1334 170 814 809 104 1384 1378 26 815 810 25 1161 1156 164 651 646 102 653 648 34 1385 1379 102 651 646 102 1161 1156 164 1163 1158 48 1385 1379 102 1161 1156 164 1211 1206 175 1385 1379 102 1163 1158 48 1165 1160 52 1211 1206 175 1163 1158 48 941 936 53 1386 1380 65 939 934 130 1387 1381 33 1386 1380 65 941 936 53 943 938 135 1387 1381 33 941 936 53 1076 1071 30 1387 1381 33 943 938 135 971 966 148 1076 1071 30 943 938 135 394 392 79 1140 1135 2 396 394 90 1142 1137 70 1140 1135 2 394 392 79 392 390 131 1142 1137 70 394 392 79 388 386 64 1142 1137 70 392 390 131 390 388 17 388 386 64 392 390 131 844 839 50 1154 1149 51 846 841 12 1156 1151 56 1154 1149 51 844 839 50 1388 1382 14 1156 1151 56 844 839 50 1158 1153 17 1156 1151 56 1388 1382 14 1389 1383 212 1158 1153 17 1388 1382 14 491 487 99 1257 1252 135 493 489 148 1390 1384 174 1257 1252 135 491 487 99 1391 1385 135 1390 1384 174 491 487 99 1392 1386 68 1390 1384 174 1391 1385 135 951 946 132 1392 1386 68 1391 1385 135 756 751 72 311 309 37 309 307 142 747 742 160 311 309 37 756 751 72 755 750 63 747 742 160 756 751 72 774 769 17 747 742 160 755 750 63 781 776 17 774 769 17 755 750 63 1393 1387 55 1283 1277 132 1285 1279 55 1282 1276 194 1283 1277 132 1393 1387 55 1394 1388 55 1282 1276 194 1393 1387 55 1281 1275 54 1282 1276 194 1394 1388 55 1395 1389 55 1281 1275 54 1394 1388 55 572 567 174 1074 1069 116 1073 1068 102 1075 1070 195 1074 1069 116 572 567 174 1396 1390 40 1075 1070 195 572 567 174 1397 1391 143 1075 1070 195 1396 1390 40 1237 1232 129 1397 1391 143 1396 1390 40 1241 1236 175 765 760 85 767 762 172 764 759 29 765 760 85 1241 1236 175 1398 1392 103 764 759 29 1241 1236 175 763 758 6 764 759 29 1398 1392 103 762 757 6 763 758 6 1398 1392 103 1111 1106 122 1317 1311 25 1110 1105 141 1399 1393 191 1317 1311 25 1111 1106 122 1112 1107 180 1399 1393 191 1111 1106 122 1400 1394 213 1399 1393 191 1112 1107 180 375 373 150 1400 1394 213 1112 1107 180 1219 1214 70 23 23 19 326 324 4 21 21 18 23 23 19 1219 1214 70 1401 1395 77 21 21 18 1219 1214 70 19 19 16 21 21 18 1401 1395 77 17 17 14 19 19 16 1401 1395 77 677 672 181 1402 1396 17 675 670 17 1403 1397 193 1402 1396 17 677 672 181 1404 1398 14 1403 1397 193 677 672 181 685 680 149 1403 1397 193 1404 1398 14 683 678 9 685 680 149 1404 1398 14 1405 1399 43 35 35 23 37 37 24 1406 1400 96 35 35 23 1405 1399 43 1052 1047 20 1406 1400 96 1405 1399 43 33 33 17 1406 1400 96 1052 1047 20 31 31 22 33 33 17 1052 1047 20 568 563 174 295 293 82 297 295 137 293 291 84 295 293 82 568 563 174 569 564 133 293 291 84 568 563 174 291 289 138 293 291 84 569 564 133 289 287 91 291 289 138 569 564 133 1106 1101 112 1376 1370 105 1107 1102 112 986 981 112 1376 1370 105 1106 1101 112 1104 1099 100 986 981 112 1106 1101 112 984 979 144 986 981 112 1104 1099 100 1102 1097 133 984 979 144 1104 1099 100 1288 1282 21 863 858 128 865 860 193 861 856 77 863 858 128 1288 1282 21 1290 1284 93 861 856 77 1288 1282 21 859 854 8 861 856 77 1290 1284 93 1292 1286 120 859 854 8 1290 1284 93 575 570 105 1221 1216 114 573 568 108 1407 1401 0 1221 1216 114 575 570 105 1408 1402 97 1407 1401 0 575 570 105 1409 1403 64 1407 1401 0 1408 1402 97 1410 1404 27 1409 1403 64 1408 1402 97 1267 1261 71 397 395 88 399 397 137 395 393 49 397 395 88 1267 1261 71 1411 1405 160 395 393 49 1267 1261 71 393 391 23 395 393 49 1411 1405 160 1270 1264 17 393 391 23 1411 1405 160 1123 1118 46 932 927 6 931 926 137 1412 1406 52 932 927 6 1123 1118 46 1125 1120 60 1412 1406 52 1123 1118 46 1413 1407 17 1412 1406 52 1125 1120 60 1127 1122 17 1413 1407 17 1125 1120 60 727 722 71 315 313 85 729 724 73 313 311 137 315 313 85 727 722 71 762 757 6 313 311 137 727 722 71 205 203 103 313 311 137 762 757 6 207 205 91 205 203 103 762 757 6 191 189 44 1414 1408 108 193 191 66 1415 1409 60 1414 1408 108 191 189 44 189 187 21 1415 1409 60 191 189 44 586 581 39 1415 1409 60 189 187 21 187 185 93 586 581 39 189 187 21 1205 1200 116 919 914 148 921 916 133 918 913 106 919 914 148 1205 1200 116 1416 1410 105 918 913 106 1205 1200 116 914 909 6 918 913 106 1416 1410 105 912 907 151 914 909 6 1416 1410 105 1417 1411 17 1116 1111 24 1117 1112 17 1418 1412 27 1116 1111 24 1417 1411 17 894 889 17 1418 1412 27 1417 1411 17 892 887 125 1418 1412 27 894 889 17 87 87 40 812 807 39 810 805 47 1038 1033 85 812 807 39 87 87 40 89 89 53 1038 1033 85 87 87 40 91 91 54 1038 1033 85 89 89 53 1138 1133 127 1419 1413 17 1137 1132 17 1420 1414 61 1419 1413 17 1138 1133 127 1139 1134 81 1420 1414 61 1138 1133 127 850 845 49 1420 1414 61 1139 1134 81 1420 1414 61 1336 1330 17 1419 1413 17 1338 1332 208 1336 1330 17 1420 1414 61 850 845 49 1338 1332 208 1420 1414 61 852 847 170 1338 1332 208 850 845 49 1422 1416 214 1293 1287 17 1421 1415 17 1292 1286 120 1293 1287 17 1422 1416 214 857 852 97 1292 1286 120 1422 1416 214 859 854 8 1292 1286 120 857 852 97 1046 1041 131 1423 1417 17 1048 1043 17 1424 1418 60 1423 1417 17 1046 1041 131 1045 1040 48 1424 1418 60 1046 1041 131 1172 1167 79 1424 1418 60 1045 1040 48 1425 1419 59 1384 1378 26 814 809 104 1426 1420 96 1384 1378 26 1425 1419 59 925 920 168 1426 1420 96 1425 1419 59 927 922 17 1426 1420 96 925 920 168 588 583 100 1415 1409 60 586 581 39 1427 1421 109 1415 1409 60 588 583 100 589 584 144 1427 1421 109 588 583 100 590 585 98 1427 1421 109 589 584 144 1404 1398 14 681 676 143 683 678 9 1428 1422 96 681 676 143 1404 1398 14 677 672 181 1428 1422 96 1404 1398 14 679 674 182 1428 1422 96 677 672 181 629 624 22 685 680 149 627 622 4 1403 1397 193 685 680 149 629 624 22 631 626 17 1403 1397 193 629 624 22 1402 1396 17 1403 1397 193 631 626 17 1429 1423 85 814 809 104 813 808 28 1425 1419 59 814 809 104 1429 1423 85 923 918 155 1425 1419 59 1429 1423 85 925 920 168 1425 1419 59 923 918 155 1038 1033 85 813 808 28 812 807 39 1429 1423 85 813 808 28 1038 1033 85 1039 1034 140 1429 1423 85 1038 1033 85 1040 1035 184 1429 1423 85 1039 1034 140 1114 1109 185 892 887 125 890 885 71 1418 1412 27 892 887 125 1114 1109 185 1115 1110 0 1418 1412 27 1114 1109 185 1116 1111 24 1418 1412 27 1115 1110 0 660 655 108 888 883 82 886 881 137 1113 1108 115 888 883 82 660 655 108 661 656 108 1113 1108 115 660 655 108 663 658 109 1113 1108 115 661 656 108 1380 1374 59 1430 1424 17 1379 1373 167 1431 1425 158 1430 1424 17 1380 1374 59 1381 1375 5 1431 1425 158 1380 1374 59 1302 1296 143 1431 1425 158 1381 1375 5 947 942 100 1261 1256 111 974 969 99 1432 1426 100 1261 1256 111 947 942 100 489 485 99 1432 1426 100 947 942 100 487 483 111 1432 1426 100 489 485 99 832 827 111 1263 1258 111 831 826 54 1143 1138 111 1263 1258 111 832 827 111 833 828 111 1143 1138 111 832 827 111 834 829 111 1143 1138 111 833 828 111 837 832 112 1145 1140 112 836 831 111 1433 1427 112 1145 1140 112 837 832 112 1346 1340 112 1433 1427 112 837 832 112 1348 1342 83 1433 1427 112 1346 1340 112 1433 1427 112 1147 1142 101 1145 1140 112 1149 1144 83 1147 1142 101 1433 1427 112 1348 1342 83 1149 1144 83 1433 1427 112 1151 1146 33 1149 1144 83 1348 1342 83 1434 1428 11 1148 1143 174 1150 1145 10 1435 1429 172 1148 1143 174 1434 1428 11 980 975 176 1435 1429 172 1434 1428 11 978 973 133 1435 1429 172 980 975 176 1436 1430 135 525 521 144 523 519 166 1019 1014 135 525 521 144 1436 1430 135 1437 1431 11 1019 1014 135 1436 1430 135 1018 1013 11 1019 1014 135 1437 1431 11 946 941 84 1439 1433 67 1438 1432 68 1440 1434 84 1439 1433 67 946 941 84 944 939 135 1440 1434 84 946 941 84 942 937 114 1440 1434 84 944 939 135 4 4 3 818 813 82 6 6 2 817 812 179 818 813 82 4 4 3 2 2 2 817 812 179 4 4 3 841 836 37 817 812 179 2 2 2 1234 1229 42 938 933 187 1236 1231 57 940 935 40 938 933 187 1234 1229 42 1233 1228 107 940 935 40 1234 1229 42 942 937 114 940 935 40 1233 1228 107 1273 1267 21 1421 1415 17 1274 1268 17 1422 1416 214 1421 1415 17 1273 1267 21 856 851 143 1422 1416 214 1273 1267 21 857 852 97 1422 1416 214 856 851 143 1026 1021 35 1395 1389 55 1028 1023 55 1281 1275 54 1395 1389 55 1026 1021 35 1024 1019 116 1281 1275 54 1026 1021 35 357 355 109 1281 1275 54 1024 1019 116 1326 1320 112 652 647 118 650 645 112 1441 1435 101 652 647 118 1326 1320 112 600 595 101 1441 1435 101 1326 1320 112 602 597 101 1441 1435 101 600 595 101 1025 1020 118 1442 1436 109 1351 1345 100 1443 1437 46 1442 1436 109 1025 1020 118 1027 1022 48 1443 1437 46 1025 1020 118 1029 1024 55 1443 1437 46 1027 1022 48 1444 1438 55 1443 1437 46 1029 1024 55 1445 1439 134 1443 1437 46 1444 1438 55 1286 1280 55 1445 1439 134 1444 1438 55 1284 1278 151 1445 1439 134 1286 1280 55 1229 1224 194 1041 1036 106 1043 1038 105 1446 1440 78 1041 1036 106 1229 1224 194 1231 1226 208 1446 1440 78 1229 1224 194 1447 1441 93 1446 1440 78 1231 1226 208 1071 1066 169 185 183 57 183 181 25 585 580 39 185 183 57 1071 1066 169 1072 1067 100 585 580 39 1071 1066 169 587 582 101 585 580 39 1072 1067 100 1366 1360 125 915 910 45 913 908 73 916 911 27 915 910 45 1366 1360 125 1368 1362 17 916 911 27 1366 1360 125 917 912 17 916 911 27 1368 1362 17 239 237 114 1205 1200 116 1105 1100 98 1448 1442 147 1205 1200 116 239 237 114 241 239 91 1448 1442 147 239 237 114 243 241 115 1448 1442 147 241 239 91 1202 1197 164 1357 1351 61 1201 1196 14 1359 1353 176 1357 1351 61 1202 1197 164 1203 1198 175 1359 1353 176 1202 1197 164 1204 1199 135 1359 1353 176 1203 1198 175 935 930 52 768 763 40 933 928 117 770 765 104 768 763 40 935 930 52 937 932 17 770 765 104 935 930 52 772 767 17 770 765 104 937 932 17 1446 1440 78 1361 1355 84 1041 1036 106 1360 1354 149 1361 1355 84 1446 1440 78 1447 1441 93 1360 1354 149 1446 1440 78 1358 1352 129 1360 1354 149 1447 1441 93 498 494 85 524 520 108 496 492 108 522 518 83 524 520 108 498 494 85 500 496 96 522 518 83 498 494 85 520 516 55 522 518 83 500 496 96 1050 1045 51 37 37 24 39 39 25 1405 1399 43 37 37 24 1050 1045 51 1051 1046 34 1405 1399 43 1050 1045 51 1052 1047 20 1405 1399 43 1051 1046 34 1398 1392 103 207 205 91 762 757 6 209 207 105 207 205 91 1398 1392 103 1241 1236 175 209 207 105 1398 1392 103 211 209 106 209 207 105 1241 1236 175 1238 1233 114 964 959 105 966 961 114 1449 1443 142 964 959 105 1238 1233 114 767 762 172 1449 1443 142 1238 1233 114 769 764 6 1449 1443 142 767 762 172 1435 1429 172 1362 1356 101 1148 1143 174 1363 1357 101 1362 1356 101 1435 1429 172 978 973 133 1363 1357 101 1435 1429 172 976 971 99 1363 1357 101 978 973 133 1179 1174 90 619 614 116 621 616 140 1450 1444 108 619 614 116 1179 1174 90 909 904 110 1450 1444 108 1179 1174 90 910 905 114 1450 1444 108 909 904 110 1355 1349 51 1354 1348 84 983 978 115 1451 1445 33 1354 1348 84 1355 1349 51 1356 1350 18 1451 1445 33 1355 1349 51 1452 1446 44 1451 1445 33 1356 1350 18 1253 1248 18 1182 1177 10 1181 1176 6 1453 1447 126 1182 1177 10 1253 1248 18 1254 1249 17 1453 1447 126 1253 1248 18 1454 1448 17 1453 1447 126 1254 1249 17 1453 1447 126 1183 1178 8 1182 1177 10 1455 1449 19 1183 1178 8 1453 1447 126 1454 1448 17 1455 1449 19 1453 1447 126 1456 1450 17 1455 1449 19 1454 1448 17 497 493 163 1255 1250 128 499 495 21 1256 1251 165 1255 1250 128 497 493 163 495 491 118 1256 1251 165 497 493 163 493 489 148 1256 1251 165 495 491 118 1331 1325 98 590 585 98 592 587 172 1414 1408 108 590 585 98 1331 1325 98 1332 1326 109 1414 1408 108 1331 1325 98 193 191 66 1414 1408 108 1332 1326 109 1047 1042 168 842 837 59 841 836 37 1457 1451 126 842 837 59 1047 1042 168 1049 1044 197 1457 1451 126 1047 1042 168 1389 1383 212 1457 1451 126 1049 1044 197 854 849 47 845 840 40 847 842 132 821 816 53 845 840 40 854 849 47 855 850 143 821 816 53 854 849 47 823 818 13 821 816 53 855 850 143 1455 1449 19 1184 1179 81 1183 1178 8 1185 1180 128 1184 1179 81 1455 1449 19 1456 1450 17 1185 1180 128 1455 1449 19 671 666 167 1185 1180 128 1456 1450 17 55 55 33 414 412 155 416 414 47 1458 1452 69 414 412 155 55 55 33 57 57 34 1458 1452 69 55 55 33 59 59 35 1458 1452 69 57 57 34 1458 1452 69 412 410 58 414 412 155 1266 1260 31 412 410 58 1458 1452 69 59 59 35 1266 1260 31 1458 1452 69 61 61 36 1266 1260 31 59 59 35 640 635 111 328 326 101 639 634 111 330 328 101 328 326 101 640 635 111 641 636 111 330 328 101 640 635 111 332 330 98 330 328 101 641 636 111 1268 1262 19 1411 1405 160 1267 1261 71 1459 1453 17 1411 1405 160 1268 1262 19 1269 1263 17 1459 1453 17 1268 1262 19 1270 1264 17 1459 1453 17 1269 1263 17 1460 1454 17 891 886 63 893 888 17 1119 1114 126 891 886 63 1460 1454 17 1120 1115 17 1119 1114 126 1460 1454 17 1310 1304 103 1342 1336 91 1308 1302 101 1461 1455 72 1342 1336 91 1310 1304 103 1312 1306 73 1461 1455 72 1310 1304 103 1462 1456 101 1442 1436 109 365 363 109 1351 1345 100 1442 1436 109 1462 1456 101 1350 1344 166 1351 1345 100 1462 1456 101 1463 1457 68 1390 1384 174 1392 1386 68 1257 1252 135 1390 1384 174 1463 1457 68 1259 1254 10 1257 1252 135 1463 1457 68 215 213 108 1239 1234 116 217 215 99 1240 1235 147 1239 1234 116 215 213 108 213 211 107 1240 1235 147 215 213 108 1407 1401 0 1223 1218 54 1221 1216 114 1464 1458 127 1223 1218 54 1407 1401 0 1409 1403 64 1464 1458 127 1407 1401 0 1303 1297 193 1431 1425 158 1302 1296 143 1465 1459 17 1431 1425 158 1303 1297 193 1304 1298 17 1465 1459 17 1303 1297 193 1347 1341 89 1345 1339 34 1349 1343 33 1343 1337 83 1345 1339 34 1347 1341 89 1341 1335 101 1343 1337 83 1347 1341 89 1448 1442 147 1416 1410 105 1205 1200 116 617 612 102 1416 1410 105 1448 1442 147 245 243 116 617 612 102 1448 1442 147 846 841 12 828 823 83 830 825 37 356 354 83 828 823 83 846 841 12 1154 1149 51 356 354 83 846 841 12 604 599 99 1441 1435 101 602 597 101 652 647 118 1441 1435 101 604 599 99 654 649 106 652 647 118 604 599 99 1445 1439 134 1442 1436 109 1443 1437 46 365 363 109 1442 1436 109 1445 1439 134 1284 1278 151 365 363 109 1445 1439 134 1329 1323 177 554 550 26 552 548 43 344 342 18 554 550 26 1329 1323 177 346 344 145 344 342 18 1329 1323 177 933 928 117 719 714 42 717 712 69 766 761 3 719 714 42 933 928 117 768 763 40 766 761 3 933 928 117 1457 1451 126 843 838 76 842 837 59 1388 1382 14 843 838 76 1457 1451 126 1389 1383 212 1388 1382 14 1457 1451 126 1426 1420 96 1383 1377 16 1384 1378 26 1466 1460 17 1383 1377 16 1426 1420 96 927 922 17 1466 1460 17 1426 1420 96 1173 1168 127 1424 1418 60 1172 1167 79 1467 1461 17 1424 1418 60 1173 1168 127 1174 1169 167 1467 1461 17 1173 1168 127 1295 1289 18 1372 1366 63 1294 1288 34 1468 1462 17 1372 1366 63 1295 1289 18 1297 1291 17 1468 1462 17 1295 1289 18 1054 1049 51 226 224 72 1055 1050 198 228 226 111 226 224 72 1054 1049 51 230 228 111 228 226 111 1054 1049 51 1235 1230 71 572 567 174 570 565 84 1396 1390 40 572 567 174 1235 1230 71 1237 1232 129 1396 1390 40 1235 1230 71 1412 1406 52 934 929 77 932 927 6 1469 1463 17 934 929 77 1412 1406 52 1413 1407 17 1469 1463 17 1412 1406 52 1319 1313 22 1470 1464 215 1321 1315 209 1399 1393 191 1470 1464 215 1319 1313 22 1317 1311 25 1399 1393 191 1319 1313 22 1471 1465 48 1007 1002 140 1260 1255 10 1009 1004 84 1007 1002 140 1471 1465 48 1011 1006 48 1009 1004 84 1471 1465 48 1472 1466 176 1277 1271 84 1279 1273 74 1276 1270 103 1277 1271 84 1472 1466 176 1275 1269 11 1276 1270 103 1472 1466 176 1473 1467 7 1266 1260 31 61 61 36 1265 1259 68 1266 1260 31 1473 1467 7 824 819 164 1265 1259 68 1473 1467 7 1313 1307 38 1306 1300 7 1305 1299 140 1474 1468 57 1306 1300 7 1313 1307 38 1314 1308 57 1474 1468 57 1313 1307 38 1378 1372 130 1178 1173 81 1180 1175 76 1296 1290 5 1178 1173 81 1378 1372 130 1298 1292 17 1296 1290 5 1378 1372 130 1475 1469 100 491 487 99 489 485 99 949 944 84 491 487 99 1475 1469 100 947 942 100 949 944 84 1475 1469 100 1352 1346 34 1408 1402 97 575 570 105 1410 1404 27 1408 1402 97 1352 1346 34 1476 1470 149 1410 1404 27 1352 1346 34 531 527 111 952 947 111 529 525 111 953 948 111 952 947 111 531 527 111 955 950 111 953 948 111 531 527 111 1069 1064 142 663 658 109 664 659 148 687 682 141 663 658 109 1069 1064 142 689 684 174 687 682 141 1069 1064 142 302 300 115 454 452 139 301 299 33 453 451 74 454 452 139 302 300 115 592 587 172 453 451 74 302 300 115 1477 1471 200 226 224 72 224 222 34 1055 1050 198 226 224 72 1477 1471 200 1057 1052 200 1055 1050 198 1477 1471 200 14 14 11 41 41 26 43 43 27 12 12 9 41 41 26 14 14 11 8 8 6 634 629 83 10 10 7 6 6 2 634 629 83 8 8 6 162 160 85 635 630 142 161 159 84 163 161 83 635 630 142 162 160 85 163 161 83 633 628 115 635 630 142 164 162 82 633 628 115 163 161 83 168 166 87 1000 995 184 167 165 84 169 167 88 1000 995 184 168 166 87 169 167 88 518 514 107 1000 995 184 170 168 3 518 514 107 169 167 88 1377 1371 84 65 65 40 67 67 41 1108 1103 91 65 65 40 1377 1371 84 16 16 13 43 43 27 18 18 15 14 14 11 43 43 27 16 16 13 1371 1365 49 1335 1329 31 1271 1265 87 1373 1367 189 1335 1329 31 1371 1365 49 1373 1367 189 1334 1328 187 1335 1329 31 1375 1369 17 1334 1328 187 1373 1367 189 1427 1421 109 1414 1408 108 1415 1409 60 590 585 98 1414 1408 108 1427 1421 109 1169 1164 98 197 195 99 195 193 98 1168 1163 98 197 195 99 1169 1164 98 1168 1163 98 199 197 100 197 195 99 201 199 101 199 197 100 1168 1163 98 581 576 105 986 981 112 579 574 116 1376 1370 105 986 981 112 581 576 105 1450 1444 108 617 612 102 619 614 116 910 905 114 617 612 102 1450 1444 108 1258 1253 103 1007 1002 140 1005 1000 116 1260 1255 10 1007 1002 140 1258 1253 103 509 505 3 382 380 151 380 378 77 507 503 2 382 380 151 509 505 3 1243 1238 89 271 269 133 1242 1237 115 270 268 132 271 269 133 1243 1238 89 1015 1010 175 559 555 166 557 553 135 895 890 102 559 555 166 1015 1010 175 808 803 80 811 806 61 853 848 74 809 804 5 811 806 61 808 803 80 237 235 108 1105 1100 98 235 233 112 239 237 114 1105 1100 98 237 235 108 1478 1237 148 896 891 109 895 890 102 271 269 133 896 891 109 1478 1237 148 558 554 172 348 346 68 556 552 68 350 348 103 348 346 68 558 554 172 351 349 91 1186 1181 192 349 347 132 353 351 133 1186 1181 192 351 349 91 271 269 133 1042 1037 116 896 891 109 273 271 84 1042 1037 116 271 269 133 910 905 114 1416 1410 105 617 612 102 912 907 151 1416 1410 105 910 905 114 1042 1037 116 275 273 134 277 275 135 273 271 84 275 273 134 1042 1037 116 1188 1183 103 1479 1472 186 1187 1182 179 1189 1184 140 1479 1472 186 1188 1183 103 1189 1184 140 1480 1473 132 1479 1472 186 1190 1185 89 1480 1473 132 1189 1184 140 1429 1423 85 921 916 133 923 918 155 1040 1035 184 921 916 133 1429 1423 85 385 383 59 1194 1189 154 383 381 37 387 385 152 1194 1189 154 385 383 59 1014 1009 195 519 515 55 1013 1008 55 521 517 165 519 515 55 1014 1009 195 384 382 30 1141 1136 85 386 384 75 848 843 117 1141 1136 85 384 382 30 848 843 117 1139 1134 81 1141 1136 85 850 845 49 1139 1134 81 848 843 117 665 660 83 969 964 137 667 662 179 221 219 109 969 964 137 665 660 83 920 915 84 1140 1135 2 922 917 4 396 394 90 1140 1135 2 920 915 84 527 523 99 494 490 100 496 492 108 529 525 111 494 490 100 527 523 99 574 569 102 1073 1068 102 576 571 100 572 567 174 1073 1068 102 574 569 102 1196 1191 17 387 385 152 389 387 17 1194 1189 154 387 385 152 1196 1191 17 571 566 175 289 287 91 569 564 133 573 568 108 289 287 91 571 566 175 1220 1215 109 285 283 2 287 285 2 1222 1217 118 285 283 2 1220 1215 109 1364 1358 111 1143 1138 111 1144 1139 101 1263 1258 111 1143 1138 111 1364 1358 111 233 231 112 1107 1102 112 231 229 111 235 233 112 1107 1102 112 233 231 112 948 943 89 1438 1432 68 950 945 68 946 941 84 1438 1432 68 948 943 89 1369 1363 91 1440 1434 84 942 937 114 1370 1364 67 1440 1434 84 1369 1363 91 754 749 73 322 320 84 320 318 37 756 751 72 322 320 84 754 749 73 1391 1385 135 949 944 84 951 946 132 491 487 99 949 944 84 1391 1385 135 322 320 84 1218 1213 174 324 322 137 756 751 72 1218 1213 174 322 320 84 972 967 141 599 594 99 971 966 148 973 968 108 599 594 99 972 967 141 15 15 12 1401 1395 77 1219 1214 70 17 17 14 1401 1395 77 15 15 12 1078 1073 124 1387 1381 33 1076 1071 30 1386 1380 65 1387 1381 33 1078 1073 124 363 361 116 1284 1278 151 361 359 141 365 363 109 1284 1278 151 363 361 116 1212 1207 106 1299 1293 147 1210 1205 112 1213 1208 8 1299 1293 147 1212 1207 106 1451 1445 33 1353 1347 12 1354 1348 84 1452 1446 44 1353 1347 12 1451 1445 33 1476 1470 149 1353 1347 12 1452 1446 44 1352 1346 34 1353 1347 12 1476 1470 149 1213 1208 8 1301 1295 36 1299 1293 147 1214 1209 126 1301 1295 36 1213 1208 8 367 365 101 1462 1456 101 365 363 109 369 367 148 1462 1456 101 367 365 101 250 248 39 1481 1474 178 252 250 119 248 246 71 1481 1474 178 250 248 39 604 599 99 1309 1303 101 654 649 106 606 601 84 1309 1303 101 604 599 99 606 601 84 1311 1305 134 1309 1303 101 608 603 32 1311 1305 134 606 601 84 248 246 71 1482 1475 180 1481 1474 178 246 244 117 1482 1475 180 248 246 71 246 244 117 1483 1476 127 1482 1475 180 244 242 70 1483 1476 127 246 244 117 474 472 111 1136 1131 111 472 470 111 476 474 13 1136 1131 111 474 472 111 476 474 13 1134 1129 13 1136 1131 111 478 476 59 1134 1129 13 476 474 13 478 476 59 1132 1127 59 1134 1129 13 480 478 92 1132 1127 59 478 476 59 244 242 70 1484 1477 129 1483 1476 127 242 240 49 1484 1477 129 244 242 70 242 240 49 1485 1478 24 1484 1477 129 240 238 47 1485 1478 24 242 240 49 240 238 47 327 325 24 1485 1478 24 238 236 113 327 325 24 240 238 47 331 329 101 618 613 144 329 327 100 333 331 99 618 613 144 331 329 101 335 333 101 659 654 144 333 331 99 337 335 99 659 654 144 335 333 101 889 884 13 1119 1114 126 887 882 79 891 886 63 1119 1114 126 889 884 13 1113 1108 115 687 682 141 686 681 103 663 658 109 687 682 141 1113 1108 115 1066 1061 77 876 871 183 878 873 57 1067 1062 9 876 871 183 1066 1061 77 1067 1062 9 874 869 131 876 871 183 1068 1063 46 874 869 131 1067 1062 9 835 830 111 468 466 111 470 468 111 466 464 111 468 466 111 835 830 111 354 352 87 420 418 52 422 420 43 563 559 173 420 418 52 354 352 87 1068 1063 46 872 867 14 874 869 131 1070 1065 34 872 867 14 1068 1063 46 1070 1065 34 870 865 129 872 867 14 666 661 132 870 865 129 1070 1065 34 1091 1086 17 411 409 154 409 407 17 1486 1479 17 411 409 154 1091 1086 17 1486 1479 17 413 411 19 411 409 154 996 991 17 413 411 19 1486 1479 17 594 589 112 760 755 102 761 756 144 596 591 112 760 755 102 594 589 112 596 591 112 759 754 118 760 755 102 598 593 112 759 754 118 596 591 112 63 63 38 1473 1467 7 61 61 36 1109 1104 2 1473 1467 7 63 63 38 820 815 134 1473 1467 7 1109 1104 2 822 817 3 1473 1467 7 820 815 134 1487 1480 216 1056 1051 199 1058 1053 200 1079 1074 121 1056 1051 199 1487 1480 216 190 188 95 254 252 121 188 186 94 192 190 96 254 252 121 190 188 95 264 262 127 1248 1243 92 616 611 92 265 263 43 1248 1243 92 264 262 127 645 640 101 990 985 174 643 638 112 647 642 112 990 985 174 645 640 101 1016 1011 135 1436 1430 135 523 519 166 1017 1012 9 1436 1430 135 1016 1011 135 649 644 112 1385 1379 102 1211 1206 175 651 646 102 1385 1379 102 649 644 112 1171 1166 84 1045 1040 48 1044 1039 91 1172 1167 79 1045 1040 48 1171 1166 84 954 949 111 1031 1026 111 1030 1025 111 956 951 111 1031 1026 111 954 949 111 355 353 108 1024 1019 116 1022 1017 144 357 355 109 1024 1019 116 355 353 108 1032 1027 148 488 484 105 490 486 101 1034 1029 14 488 484 105 1032 1027 148 1034 1029 14 486 482 93 488 484 105 1036 1031 196 486 482 93 1034 1029 14 1036 1031 196 484 480 162 486 482 93 482 479 161 484 480 162 1036 1031 196 1132 1127 59 480 478 92 1130 1125 177 306 304 116 308 306 141 1167 1162 102 1324 1318 210 345 343 131 347 345 146 598 593 112 600 595 101 1326 1320 112 1424 1418 60 1467 1461 17 1423 1417 17 1306 1300 7 1474 1468 57 1307 1301 57 666 661 132 668 663 93 870 865 129 1178 1173 81 1296 1290 5 1177 1172 117 1388 1382 14 844 839 50 843 838 76 221 219 109 219 217 108 969 964 137 1399 1393 191 1400 1394 213 1470 1464 215 769 764 6 964 959 105 1449 1443 142 1383 1377 16 1466 1460 17 1382 1376 17 487 483 111 1261 1256 111 1432 1426 100 1363 1357 101 976 971 99 1262 1257 99 1431 1425 158 1465 1459 17 1430 1424 17 422 420 43 424 422 154 426 424 64 563 559 173 418 416 77 420 418 52 679 674 182 681 676 143 1428 1422 96 1406 1400 96 33 33 17 35 35 23 470 468 111 840 835 111 838 833 112 673 668 180 675 670 17 1118 1113 17 1075 1070 195 1397 1391 143 1077 1072 59 1440 1434 84 1370 1364 67 1439 1433 67 304 302 118 306 304 116 1170 1165 98 721 716 71 719 714 42 766 761 3 824 819 164 1473 1467 7 822 817 3 170 168 3 516 512 107 518 514 107 1223 1218 54 1464 1458 127 1225 1220 130 1475 1469 100 489 485 99 947 942 100 1411 1405 160 1459 1453 17 1270 1264 17 1190 1185 89 1191 1186 132 1480 1473 132 1342 1336 91 1461 1455 72 1344 1338 74 1436 1430 135 1017 1012 9 1437 1431 11 1448 1442 147 243 241 115 245 243 116 1462 1456 101 369 367 148 1350 1344 166 1301 1295 36 1214 1209 126 658 653 55 1372 1366 63 1468 1462 17 1374 1368 17 1334 1328 187 1375 1369 17 1333 1327 17 934 929 77 1469 1463 17 936 931 180 1037 1032 177 1035 1030 79 1330 1324 168

+
+
+
+ + + + -1247 -2374 237 -1383 -2374 -248 -1566 -1481 -195 -1494 -1479 -470 -1627 -786 -260 -1577 -787 -549 -1636 -574 -263 -1545 -573 -580 -1636 -347 -263 -1541 -346 -579 -1627 -47 -260 -1567 -48 -546 -1580 -2373 491 -1516 -1480 249 -1428 -1481 236 -1592 -784 179 -1506 -943 91 -1590 -572 180 -1538 -507 149 -1652 -233 200 -1505 -347 160 -1585 -47 212 -1505 -47 161 -2024 -2376 1539 -2025 -2370 1221 -2197 -1481 1376 -2132 -1476 1235 -2300 -1027 1298 -2157 -1024 1219 -2292 -543 1299 -2058 -556 1153 -2287 -303 1286 -2046 -194 1167 -2133 0 1341 -2049 -11 1168 -6011 889 4295 -6171 913 4302 -6004 487 4401 -6196 514 4417 -5901 167 4474 -6061 -56 4522 -5843 -125 4558 -5925 -473 4605 -5601 -1105 4732 -5759 -1100 4742 -5208 -2374 4987 -5449 -2376 5055 -2371 -16 718 -2133 -11 981 -2366 -220 800 -2208 -203 994 -2391 -556 741 -2226 -554 959 -2424 -888 752 -2294 -958 999 -2301 -1476 854 -2217 -1476 1056 -2025 -2370 1221 -2132 -1476 1235 -593 -47 -890 -667 -46 -829 -571 -260 -895 -668 -348 -842 -573 -576 -857 -701 -576 -824 -568 -994 -844 -705 -1044 -799 -526 -1479 -800 -619 -1401 -701 -332 -2374 -682 -564 -2371 -638 -2316 -2375 1482 -2343 -1479 1469 -2197 -1481 1376 -2340 -1052 1470 -2300 -1027 1298 -2434 -534 1376 -2292 -543 1299 -2423 -216 1374 -2287 -303 1286 -2288 18 1378 -5487 -2367 5605 -5625 -2375 5312 -5890 -1089 5353 -6036 -1086 5061 -6125 -89 5185 -6238 -184 4901 -6161 219 5109 -6335 224 4813 -6200 553 5026 -6365 539 4780 -6252 990 4917 -6386 985 4668 -3212 270 4034 -3580 340 4246 -3212 -125 4035 -3579 -57 4238 -3212 -424 4035 -3563 -589 4274 -3212 -703 4035 -3531 -980 4215 -3131 -1473 4062 -3453 -1650 4230 -3314 -2374 4402 -4800 312 1597 -4673 304 1930 -4743 -97 1622 -4635 -257 1939 -4702 -553 1632 -4604 -700 1946 -4574 -1476 1741 -4456 -1476 2006 -4248 -2370 2035 -3639 -2368 2875 -3941 -2371 4265 -3940 -1440 4118 -3846 -1001 4058 -3876 -575 4096 -3934 -95 4127 -2046 -194 1167 -2058 -556 1153 -784 -229 -857 -942 -576 -850 -869 -787 -795 -705 -1044 -799 -862 -1478 -702 -710 -2372 -530 -4000 -425 2680 -3317 -433 3626 -3996 -707 2681 -3317 -711 3626 -3887 -1475 2726 -3249 -1476 3670 -3088 -2370 3858 -2950 -2376 4200 -385 -47 -1317 -465 -47 -1222 -385 -263 -1317 -465 -347 -1221 -386 -575 -1316 -470 -575 -1174 -469 -902 -1175 -517 -347 -979 -519 -787 -989 -4011 275 2677 -4005 -122 2679 -3317 -135 3626 -3212 -125 4035 -3212 -424 4035 4381 -2364 4762 3654 -2365 6289 4381 -1243 4762 3654 -1243 6289 4381 -622 4762 3654 -622 6289 4381 -47 4762 3654 -47 6289 -4726 -937 1529 -4810 -405 1499 -4836 -57 1498 -4841 314 1499 3861 -2369 720 4395 -2366 1906 3898 -1475 566 4386 -1473 1800 3881 -623 504 4375 -623 1747 3881 -47 504 4375 -47 1748 3192 -47 190 2599 -47 -245 3192 -514 190 2599 -514 -245 3218 -1474 258 2635 -1475 -173 3273 -2369 417 2707 -2369 -11 3881 -623 504 3898 -1475 566 3861 -2369 720 4395 -2366 1906 4631 -2365 3314 4386 -1473 1800 4620 -1361 3235 4375 -623 1747 4614 -622 3208 4614 -47 3208 4631 -2365 3314 4620 -1361 3235 4381 -622 4762 -2288 -1479 587 -2187 -1481 392 -2304 -787 375 -2214 -974 324 -2299 -576 383 -2215 -573 297 -2360 -343 385 -1827 -45 268 -2068 -45 330 -1858 -343 221 -2037 -269 320 -1809 -672 196 -1961 -572 280 -1839 -1037 182 -5044 -2364 6235 -5242 -1133 6126 -5338 53 6114 -4060 238 1205 -4210 249 1220 -4007 -226 1187 -4169 5 1240 -3924 -675 1197 -4143 -433 1275 -4180 -958 1215 -1947 -2375 551 -1580 -2373 491 -2077 -1480 375 -1891 -1451 384 -2214 -974 324 -2070 -787 303 -2215 -573 297 57 -46 -1150 -38 -46 -1193 145 -264 -1129 -38 -346 -1193 230 -690 -1120 -67 -574 -1226 232 -1012 -1100 -573 -576 -857 -519 -787 -989 -568 -994 -844 -439 -1479 -930 -526 -1479 -800 -332 -2374 -682 -4716 306 1333 -4711 -99 1366 -4570 -233 1352 -4679 -409 1374 -4526 -702 1360 -4648 -699 1381 -4415 -1478 1437 256 -1476 -978 466 -1477 -865 232 -1012 -1100 425 -977 -950 230 -690 -1120 403 -573 -959 367 -346 -1013 -4219 -2375 1653 -4516 -1479 1444 -4621 -1133 1482 -4811 -250 1381 1336 -913 -1102 1426 -494 -1184 1277 -458 -1151 1398 -240 -1137 1285 -47 -1126 1395 -46 -1152 -4548 286 1280 -4482 -11 1289 -4389 -425 1272 -4408 -707 1297 -4726 -937 1529 -4621 -1133 1482 -4586 -1479 1578 -4321 -2374 1749 -4269 -1393 1389 -3895 -2371 1395 1336 -913 -1102 1537 -1057 -1130 1411 -1479 -1064 1652 -1478 -969 1659 -2373 -858 -1116 -2374 -475 -1150 -1479 -678 -1420 -1480 -580 -1207 -904 -726 -1442 -903 -725 -1404 -574 -736 -1580 -2373 491 -1707 -1481 287 -1891 -1451 384 -1961 -787 279 -2288 -1479 587 -2304 -787 375 -2301 -1062 618 -2405 -575 454 -2419 -563 609 -2396 -330 598 -5395 -1167 4638 -5511 -465 4553 -5843 -125 4558 -5901 167 4474 -6318 533 4528 -6313 218 4744 -6259 207 4614 -6124 -483 4793 -5945 -1093 4865 -3128 -494 1323 -3177 -990 1258 -2767 -826 1261 -2730 -1601 1399 -2567 -1478 1406 -147 -46 -1264 -239 -47 -1321 -142 -203 -1284 -248 -440 -1353 -67 -574 -1226 -98 -970 -1254 -478 -47 -1117 -478 -346 -1117 760 -573 -922 923 -681 -959 720 -267 -895 922 -346 -959 754 -49 -921 925 -47 -950 -1566 -1481 -195 -1541 -527 37 -5925 -473 4605 -6077 -369 4658 -6222 204 4587 -1220 -575 -757 -1282 -347 -787 -1461 -221 -678 -1475 -48 -683 -1636 -574 -263 -1516 -281 20 -4259 -2377 4451 -4460 -1293 4283 -4582 -1239 4409 -4583 -681 4328 -4843 -485 4461 -4891 18 4325 -1116 -2374 -475 -710 -2372 -530 -1150 -1479 -678 -996 -1035 -821 -2275 -42 396 -2358 -38 513 -2360 -343 385 -2370 -29 599 -1680 -46 232 -1858 -343 221 -1809 -672 196 1158 -47 -1094 1277 -458 -1151 1103 -346 -1024 1104 -575 -1060 230 -690 -1120 249 -345 -1043 145 -264 -1129 179 -46 -1095 -6362 957 4439 -6380 564 4627 -4225 477 4143 -4475 542 4098 -4149 -84 4209 -4349 71 4073 -4057 -492 4162 -4600 -2373 4844 -4920 -1341 4663 -5301 -497 4611 -3910 -608 7527 -3910 471 7527 -1798 175 8575 -2471 42 1421 -2815 -156 1321 -2288 -1479 587 -2097 -2374 682 618 -983 -961 874 -1479 -836 604 -2370 -681 1007 -2373 -653 -737 -45 -818 -871 -45 -795 -976 -336 -856 2337 -48 -771 2337 -346 -771 2337 -573 -771 2338 -861 -736 2375 -1474 -695 2451 -2368 -532 2028 -2368 -751 2451 -2368 -532 1945 -1476 -974 2375 -1474 -695 2338 -861 -736 -1507 -47 71 632 -47 -898 441 -45 -949 442 -194 -955 -529 -47 -936 -4288 -249 4081 -4454 -924 4207 -4020 -933 4118 -4139 -1382 4190 -701 -576 -824 -668 -348 -842 -784 -229 -857 1869 -346 -1023 1727 -659 -1075 1904 -572 -973 1922 -1061 -989 -67 -574 -1226 -38 -346 -1193 -142 -203 -1284 -5597 433 4358 -5556 -105 4491 -5448 110 4470 -2210 -344 351 -4636 -140 4183 -4608 172 4113 -4727 323 4230 -4767 607 4096 -4824 310 1423 -4389 -425 1272 -4368 -131 1236 -2815 -156 1321 -2792 -509 1294 -2626 -448 1360 -2340 -1052 1470 -4636 -140 4183 -4449 -161 4192 -4454 -924 4207 -4636 -140 4183 -4864 279 4205 -4920 662 4113 -3401 -2376 1389 -3561 -1735 1220 -3871 -1493 1253 -3884 -1121 1209 -4346 -1329 4228 -4824 310 1423 -4785 308 1371 -4051 -1608 1313 -2626 -448 1360 -2340 -1052 1470 -2187 -1481 392 -2077 -1480 375 -1947 -2375 551 -2071 -572 310 -1961 -572 280 -1961 -787 279 -99 -2372 -1004 -169 -1477 -1212 -320 -1481 -1210 -355 -945 -1319 874 -1479 -836 762 -787 -922 618 -983 -961 572 -524 -986 -1545 -573 -580 -1577 -787 -549 -1442 -903 -725 -1420 -1480 -580 -1383 -2374 -248 -1494 -1479 -470 -6365 539 4780 1045 -47 -1025 874 -1479 -836 1104 -1090 -1057 1166 -1480 -963 1652 -1478 -969 1712 -960 -1048 1537 -1057 -1130 1563 -575 -1082 1538 -347 -1070 1665 -249 -1110 1539 -46 -1131 466 -1477 -865 618 -983 -961 -28 -1475 -1125 -20 -866 -1193 -98 -970 -1254 -3177 -990 1258 -3128 -494 1323 -3275 -491 1197 -3416 -155 1191 -1652 -233 200 -1809 -672 196 -1590 -572 180 -1592 -784 179 -2767 -826 1261 -1580 -2373 491 -1516 -1480 249 -1707 -1481 287 -1839 -1037 182 -1220 -575 -757 -1110 -241 -796 -1282 -347 -787 -1274 -48 -753 -869 -787 -795 -862 -1478 -702 -28 -1475 -1125 -20 -866 -1193 -3416 -155 1191 -3643 -463 1232 -3275 -491 1197 -3177 -990 1258 -3177 -990 1258 -3256 -1596 1287 -2769 -2375 1505 -4112 -2372 1565 -2210 -344 351 -4389 -425 1272 -4412 266 1240 -3793 -165 1229 -3795 210 1231 -3643 -463 1232 -3884 -1121 1209 -3177 -990 1258 -4349 71 4073 -4449 -161 4192 -4288 -249 4081 -6004 487 4401 -5771 580 4387 -5556 -105 4491 -248 -440 -1353 -385 -263 -1317 -4891 18 4325 -4864 279 4205 -5079 457 4230 -5157 713 4152 -4843 -485 4461 -4761 -1168 4590 -4020 -933 4118 -4288 -249 4081 -5215 20 4403 -5079 457 4230 -5597 433 4358 -5573 814 4297 -5159 -373 4459 -4843 -485 4461 -3884 -1121 1209 -3643 -463 1232 -3924 -675 1197 -4007 -226 1187 -4389 -425 1272 -4180 -958 1215 -4149 -84 4209 -1947 -2375 551 -2097 -2374 682 -2299 -576 383 -3168 -194 1363 -2792 -509 1294 1297 -2374 -779 290 -47 -1019 -224 -865 -1322 -28 -1475 -1125 -169 -1477 -1212 257 -2368 -856 -1461 -221 -678 -1541 -346 -579 -1519 -48 -620 -2396 -330 598 1563 -575 -1082 1398 -240 -1137 1922 -1061 -989 1904 -572 -973 2337 -573 -771 1869 -346 -1023 -1894 -2365 8457 -3911 -2363 7526 -1798 -887 8541 -3910 -608 7527 -5337 804 6106 -5511 -465 4553 -4891 18 4325 2028 -2368 -751 1945 -1476 -974 1659 -2373 -858 1336 -913 -1102 1166 -1480 -963 1297 -2374 -779 1104 -1090 -1057 -386 -575 -1316 -224 -865 -1322 -5747 853 4290 -5597 433 4358 -1207 -904 -726 -976 -336 -856 -1163 -47 -762 -3139 132 1408 -3168 -194 1363 -3317 257 3626 -1442 -903 -725 -355 -945 -1319 -320 -1481 -1210 -4043 437 4166 -3793 -165 1229 760 -573 -922 2337 -346 -771 1904 -48 -973 442 -194 -955 367 -346 -1013 361 -46 -970 232 -1012 -1100 -99 -2372 -1004 442 -194 -955 572 -524 -986 1665 -47 -1110 1792 -47 -1038 1869 -346 -1023 1922 -1061 -989 -5597 433 4358 -5215 20 4403 -4496 252 4134 -4449 -161 4192 -4496 252 4134 -4608 172 4113 -4632 572 4067 -506 -47 -1020 1727 -659 -1075 -995 -46 -774 -99 -2372 -1004 -1383 -2374 -248 -1116 -2374 -475 -1420 -1480 -580 -2815 -156 1321 1869 -346 -1023 1727 -659 -1075 + + + + + + + + + + 4.46484375 0.005859375 3.962890625 0.005859375 4.349609375 1.349609375 3.984375 1.3515625 4.40234375 2.388671875 4.06640625 2.38671875 4.416015625 2.705078125 3.98828125 2.705078125 4.416015625 3.048828125 3.982421875 3.048828125 4.40234375 3.54296875 4.052734375 3.54296875 5.595703125 0.005859375 5.126953125 1.3515625 4.888671875 1.3515625 5.18359375 2.388671875 4.853515625 2.15625 5.18359375 2.705078125 4.947265625 2.806640625 5.322265625 3.26953125 4.94921875 3.048828125 5.18359375 3.54296875 4.94921875 3.54296875 7.572265625 0.005859375 6.99609375 0.005859375 7.5859375 1.3515625 7.076171875 1.3515625 7.609375 2.388671875 7.10546875 2.388671875 7.609375 2.705078125 7.10546875 2.705078125 7.609375 3.048828125 7.10546875 3.048828125 7.609375 3.54296875 7.10546875 3.54296875 16.533203125 3.54296875 16.7265625 3.54296875 16.578125 3.048828125 16.791015625 3.052734375 16.474609375 2.705078125 16.65234375 2.44140625 16.513671875 2.388671875 16.640625 2.005859375 16.529296875 1.3515625 16.646484375 1.3515625 16.46484375 0.005859375 16.916015625 0.005859375 7.02734375 3.54296875 7.068359375 3.54296875 7.02734375 3.048828125 7.068359375 3.048828125 7.02734375 2.705078125 7.068359375 2.705078125 7.02734375 2.388671875 7.068359375 2.388671875 7.001953125 1.3515625 7.0390625 1.3515625 2.08203125 3.54296875 2.27734375 3.54296875 2.037109375 3.1796875 2.28125 3.048828125 2.056640625 2.705078125 2.353515625 2.705078125 2.048828125 2.083984375 2.35546875 1.958984375 1.984375 1.3515625 2.244140625 1.46875 1.634765625 0.005859375 2.16015625 0.005859375 8.24609375 0.005859375 7.98828125 1.3515625 7.98828125 1.990234375 8.005859375 2.705078125 7.921875 3.150390625 8.005859375 3.54296875 17.81640625 0.005859375 17.478515625 0.005859375 17.58203125 1.3515625 17.2578125 1.3515625 17.53515625 2.388671875 17.197265625 2.28515625 17.53515625 2.705078125 17.212890625 2.705078125 17.53515625 3.048828125 17.26953125 3.03125 17.53515625 3.54296875 17.212890625 3.54296875 13.369140625 3.54296875 13.7890625 3.54296875 13.369140625 3.048828125 13.7890625 3.048828125 13.369140625 2.705078125 13.806640625 2.4296875 13.369140625 2.388671875 13.75 2.001953125 13.328125 1.3515625 13.6953125 1.046875 13.7109375 0.005859375 11.005859375 3.54296875 11.474609375 3.54296875 11.005859375 3.048828125 11.474609375 2.876953125 11.005859375 2.546875 11.474609375 2.388671875 11.03125 1.3515625 11.505859375 1.3515625 11.400390625 0.005859375 12.193359375 0.005859375 14.197265625 0.005859375 14.173828125 1.34765625 14.013671875 2.01953125 14.015625 2.462890625 13.974609375 2.9921875 2.423828125 3.201171875 2.8125 2.705078125 2.689453125 2.388671875 2.7265625 1.3515625 2.51953125 0.005859375 12.1328125 2.705078125 12.853515625 2.705078125 12.1328125 2.388671875 12.853515625 2.388671875 12.177734375 1.3515625 12.826171875 1.3515625 12.890625 0.005859375 13.3515625 0.005859375 1.564453125 3.54296875 1.693359375 3.54296875 1.564453125 3.048828125 1.693359375 3.048828125 1.564453125 2.705078125 1.71875 2.705078125 1.71875 2.388671875 1.873046875 2.876953125 1.873046875 2.388671875 12.1328125 3.54296875 12.1328125 3.048828125 12.853515625 3.048828125 42.677734375 0.005859375 37.845703125 0.005859375 42.677734375 1.697265625 37.845703125 1.697265625 42.677734375 2.6328125 37.845703125 2.6328125 42.677734375 3.54296875 37.845703125 3.54296875 10.849609375 2.15234375 10.849609375 2.705078125 10.849609375 3.048828125 10.849609375 3.54296875 49.509765625 0.005859375 47.017578125 0.005859375 49.83203125 1.3515625 47.263671875 1.3515625 49.970703125 2.6328125 47.35546875 2.6328125 49.970703125 3.54296875 47.35546875 3.54296875 52.056640625 3.54296875 53.76953125 3.54296875 52.056640625 2.798828125 53.76953125 2.798828125 51.896484375 1.3515625 53.607421875 1.3515625 51.53515625 0.005859375 53.24609375 0.005859375 44.912109375 0.005859375 45.0390625 1.51953125 45.0859375 2.6328125 45.0859375 3.54296875 6.748046875 1.3515625 6.544921875 1.3515625 6.67578125 2.388671875 6.482421875 2.111328125 6.67578125 2.705078125 6.482421875 2.705078125 6.740234375 3.048828125 5.7109375 3.54296875 6.248046875 3.54296875 5.703125 3.048828125 6.046875 3.162109375 5.595703125 2.5546875 5.96484375 2.705078125 5.626953125 2.017578125 20.10546875 0.005859375 19.9296875 1.3515625 19.87109375 2.6328125 9.521484375 3.54296875 9.705078125 3.54296875 9.501953125 2.962890625 9.71875 3.216796875 9.451171875 2.427734375 9.705078125 2.705078125 9.841796875 2.109375 6.3828125 0.005859375 6.353515625 1.3515625 6.048828125 1.3515625 6.205078125 2.388671875 0.861328125 3.54296875 1.0390625 3.54296875 0.708984375 3.03125 1.0390625 3.048828125 0.583984375 2.6484375 1.1328125 2.705078125 0.6171875 2.04296875 1.744140625 1.3515625 10.390625 3.54296875 10.447265625 3.048828125 10.2734375 2.90625 10.447265625 2.705078125 10.2734375 2.388671875 10.447265625 2.388671875 10.41015625 1.3515625 0.51171875 1.3515625 0.095703125 1.3515625 0.21875 2.388671875 0.21875 2.705078125 0.29296875 3.048828125 10.70703125 0.005859375 10.52734375 1.3515625 10.66015625 1.869140625 10.634765625 2.876953125 57.146484375 2.388671875 57.04296875 2.80859375 57.23828125 2.876953125 57.046875 3.15625 57.234375 3.54296875 57.05859375 3.54296875 10.1171875 3.54296875 10.115234375 3.16796875 10.044921875 2.705078125 10.103515625 2.38671875 10.873046875 1.3515625 10.984375 0.005859375 10.134765625 1.490234375 10.08984375 0.005859375 56.806640625 1.93359375 57.009765625 1.3515625 56.556640625 1.3515625 56.4765625 0.005859375 3.3359375 0.005859375 3.275390625 1.3515625 3.802734375 1.3515625 3.3515625 2.16796875 3.876953125 2.38671875 3.8203125 2.705078125 5.537109375 1.3515625 5.96875 2.388671875 6.83984375 2.111328125 6.802734375 2.705078125 6.876953125 2.705078125 6.876953125 3.048828125 16.279296875 1.29296875 16.193359375 2.0390625 16.943359375 3.048828125 17.14453125 2.705078125 16.943359375 2.705078125 16.970703125 1.98046875 16.978515625 1.3515625 8.697265625 2.705078125 8.82421875 2.0703125 8.583984375 2.388671875 8.708984375 1.3515625 8.4140625 1.3515625 1.2265625 3.54296875 1.35546875 3.54296875 1.2109375 3.126953125 1.376953125 2.908203125 1.140625 2.111328125 1.744140625 3.54296875 1.744140625 3.048828125 58.2109375 2.705078125 57.875 2.546875 58.291015625 3.166015625 57.875 3.048828125 58.2109375 3.54296875 57.8671875 3.54296875 4.787109375 2.775390625 16.81640625 2.103515625 16.859375 2.705078125 3.3515625 2.705078125 3.44921875 3.048828125 3.80078125 3.201171875 3.8203125 3.54296875 4.7890625 3.048828125 15.060546875 0 15.01953125 1.34765625 15.228515625 1.345703125 15.09765625 2.033203125 15.470703125 2.1171875 15.384765625 2.705078125 2.935546875 1.98828125 6.64453125 3.54296875 6.802734375 3.54296875 6.876953125 3.54296875 5.458984375 3.54296875 57.451171875 3.54296875 57.544921875 3.048828125 57.544921875 2.705078125 0.494140625 3.048828125 0.65234375 3.54296875 16.943359375 3.54296875 17.10546875 3.06640625 14.37109375 3.54296875 14.677734375 3.54296875 14.25 2.90625 14.576171875 3.03125 14.224609375 2.494140625 15.95703125 0.005859375 15.990234375 1.12890625 16.0078125 2.01953125 22.609375 2.1640625 22.609375 3.54296875 26.37109375 3.54296875 8.421875 3.54296875 8.419921875 3.048828125 6.728515625 0.005859375 58.404296875 2.095703125 58.826171875 1.3515625 57.970703125 1.3515625 58.54296875 0.005859375 57.66796875 0.005859375 2.4296875 3.54296875 2.689453125 3.54296875 2.80859375 3.048828125 55.30078125 3.54296875 55.30078125 3.048828125 55.30078125 2.705078125 55.30078125 2.388671875 55.14453125 1.3515625 54.798828125 0.005859375 55.76171875 0.005859375 56.080078125 1.3515625 4.78515625 3.54296875 58.474609375 3.54296875 58.865234375 3.54296875 58.86328125 3.275390625 1.91796875 3.54296875 14.5625 2.701171875 14.88671875 1.841796875 14.279296875 2.037109375 14.455078125 1.349609375 56.2265625 3.048828125 56.462890625 2.705078125 56.11328125 2.705078125 56.1015625 1.9765625 16.162109375 3.048828125 16.208984375 2.439453125 16.064453125 2.705078125 6.482421875 3.048828125 14.994140625 2.671875 14.8828125 3.048828125 14.927734375 3.275390625 14.95703125 3.54296875 10.6640625 3.54296875 9.96484375 3.048828125 8.498046875 2.705078125 8.33984375 2.705078125 14.80859375 2.705078125 15.2265625 3.060546875 15.150390625 3.54296875 9.59375 0.005859375 9.341796875 1.07421875 9.609375 1.3515625 9.466796875 1.845703125 14.841796875 1.34765625 10.505859375 3.54296875 9.86328125 1.07421875 6.205078125 2.705078125 1.1328125 0.005859375 1.255859375 1.3515625 1.46875 1.3515625 1.41015625 2.126953125 58.2109375 2.388671875 58.478515625 2.705078125 57.640625 3.54296875 57.544921875 2.388671875 57.41015625 1.3515625 56.5078125 2.15625 56.806640625 2.705078125 56.80859375 3.048828125 56.5859375 3.205078125 56.806640625 3.54296875 58.94921875 2.388671875 58.94921875 2.705078125 1.029296875 1.3515625 1.005859375 2.265625 8.962890625 2.705078125 8.994140625 3.111328125 3.25390625 3.201171875 3.44921875 3.54296875 9.1875 2.705078125 9.0546875 1.3515625 8.9375 0.005859375 10.505859375 0.005859375 9.986328125 3.54296875 9.318359375 3.048828125 9.3359375 3.54296875 16.42578125 3.1875 15.462890625 3.255859375 15.568359375 3.54296875 15.517578125 1.3515625 15.849609375 2.625 16.0703125 3.54296875 15.845703125 2.30859375 8.697265625 3.048828125 57.10546875 0.005859375 0.44921875 3.54296875 1.35546875 2.388671875 0.521484375 0.005859375 3.923828125 3.54296875 26.37109375 0.005859375 22.609375 0.005859375 26.37109375 2.1640625 19.87109375 3.54296875 16.251953125 3.54296875 3.25390625 3.54296875 9.052734375 3.54296875 8.71484375 3.54296875 12.853515625 3.54296875 14.1015625 3.54296875 56.11328125 3.54296875 0.1328125 3.275390625 0.302734375 3.54296875 56.5859375 3.54296875 56.337890625 3.54296875 14.71875 3.263671875 14.80859375 3.54296875 1.833984375 3.54296875 2.935546875 3.54296875 0.134765625 3.54296875 59.2421875 1.3515625 59.251953125 0.005859375 + + + + + + + + + 0.5529411764705883 0 1 1 0.6 0 1 1 0.6274509803921569 0 0 1 0.6666666666666666 0 0 1 0.6901960784313725 0 0 1 0.7490196078431373 0 0 1 0.7333333333333333 0 0 1 0.788235294117647 0 0 1 0.7568627450980392 0 0 1 0.807843137254902 0 0 1 0.4588235294117647 0 0 1 0.6235294117647059 0 1 1 0.6039215686274509 0 0 1 0.5725490196078431 0 0 1 0.6627450980392157 0 0 1 0.6705882352941176 0 0 1 0.6313725490196078 0 0 1 0.7647058823529411 0 0 1 0.4588235294117647 0 1 1 0.48627450980392156 0 1 1 0.4666666666666667 0 0 1 0.47843137254901963 0 0 1 0.5254901960784314 0 0 1 0.5176470588235295 0 0 1 0.5294117647058824 0 0 1 0.5686274509803921 0 0 1 0.6196078431372549 0 0 1 0.6588235294117647 0.2 0.2 1 0.9294117647058824 0.2 0.2 1 1 0.2 0.2 1 0.8901960784313725 0.2 0.2 1 0.9176470588235294 0.2 0.2 1 0.9450980392156862 0.2 0.2 1 0.8627450980392157 0.2 0.2 1 0.7254901960784313 0 0 1 0.6235294117647059 0 0 1 0.5607843137254902 0 0 1 0.5137254901960784 0 0 1 0.4745098039215686 0 1 1 0.4745098039215686 0 0 1 0.6941176470588235 0 0 1 0.6862745098039216 0 0 1 0.6549019607843137 0 0 1 0.7019607843137254 0 0 1 0.6431372549019608 0 0 1 0.6784313725490196 0 0 1 0.5529411764705883 0 0 1 0.5843137254901961 0 1 1 0.6352941176470588 0 1 1 0.4627450980392157 0 0 1 0.5647058823529412 0 0 1 0.5215686274509804 0 0 1 0.592156862745098 0 0 1 0.5333333333333333 0 0 1 0.9882352941176471 0 0 1 0.7176470588235294 0.2 0.2 1 0.7529411764705882 0.2 0.2 1 0.6941176470588235 0.2 0.2 1 0.6705882352941176 0.2 0.2 1 0.6745098039215687 0.2 0.2 1 0.8823529411764706 0.10196078431372549 0.10196078431372549 1 0.7098039215686275 0.2 0.2 1 0.7843137254901961 0.2 0.2 1 0.615686274509804 0 0 1 0.8274509803921568 0 0 1 0.7411764705882353 0 0 1 0.611764705882353 0 1 1 0.8588235294117647 0 0 1 0.8117647058823529 0 0 1 0.8196078431372549 0 0 1 0.7686274509803922 0 0 1 0.7294117647058823 0 0 1 0.7254901960784313 0.2 0.2 1 0.6901960784313725 0.2 0.2 1 0.38823529411764707 0 1 1 0 0 1 1 0.43137254901960786 0 0 1 0 0 0 1 0.45098039215686275 0 0 1 0.23137254901960785 0 0 1 0.9882352941176471 0.2 0.2 1 0.7098039215686275 0 1 1 0.7333333333333333 0 1 1 0.8784313725490196 0 0 1 0.8862745098039215 0 0 1 0.8 0 0 1 0.8470588235294118 0 0 1 0.7450980392156863 0 0 1 0.7764705882352941 0 0 1 0.6784313725490196 0 1 1 0.7137254901960784 0 1 1 0.8509803921568627 0 0 1 0.7725490196078432 0 0 1 0.6941176470588235 0 1 1 0.7647058823529411 0 1 1 0.7725490196078432 0 1 1 0.8352941176470589 0 0 1 0.8901960784313725 0 0 1 0.9019607843137255 0 0 1 0.7803921568627451 0 1 1 0.4470588235294118 0 0 1 0.7098039215686275 0 0 1 0.7215686274509804 0 0 1 0.8235294117647058 0 0 1 0.8627450980392157 0 0 1 0.8431372549019608 0 0 1 0.5607843137254902 0.10196078431372549 0.10196078431372549 1 0.8941176470588236 0.10196078431372549 0.10196078431372549 1 0.8627450980392157 0.10196078431372549 0.10196078431372549 1 0.8392156862745098 0.10196078431372549 0.10196078431372549 1 0.8784313725490196 0.10196078431372549 0.10196078431372549 1 0.6431372549019608 0 1 1 0.615686274509804 0 1 1 0.6980392156862745 0 0 1 0.6509803921568628 0 0 1 0.792156862745098 0 0 1 0.8156862745098039 0 0 1 0.6588235294117647 0 0 1 0.6823529411764706 0 0 1 0.6392156862745098 0 0 1 0.6352941176470588 0 0 1 0.5803921568627451 0 1 1 0.796078431372549 0 0 1 0.9921568627450981 0.2 0.2 1 0.8392156862745098 0 0 1 0.8705882352941177 0 0 1 0.8823529411764706 0 0 1 0.9333333333333333 0.10196078431372549 0.10196078431372549 1 0.6901960784313725 0 1 1 0.6745098039215687 0 1 1 0.7372549019607844 0 0 1 0.803921568627451 0 0 1 0.6274509803921569 0 1 1 0.6745098039215687 0 0 1 0.6470588235294118 0 0 1 0.9686274509803922 0.2 0.2 1 0.9254901960784314 0.2 0.2 1 0.596078431372549 0 0 1 0.8745098039215686 0 0 1 0.8745098039215686 0.2 0.2 1 0.8117647058823529 0.2 0.2 1 0.8588235294117647 0.2 0.2 1 0.6078431372549019 0 1 1 0.7058823529411765 0 0 1 0.7843137254901961 0 0 1 0.8313725490196079 0 0 1 0.8274509803921568 0.2 0.2 1 0.7647058823529411 0.2 0.2 1 0.10196078431372549 0 0 1 0.5294117647058824 0 1 1 0.6196078431372549 0 1 1 0.596078431372549 0 1 1 0.6980392156862745 0 1 1 0.7529411764705882 0 0 1 0.7607843137254902 0 0 1 0.8470588235294118 0.2 0.2 1 0.792156862745098 0.2 0.2 1 0.7490196078431373 0.2 0.2 1 0.9215686274509803 0.2 0.2 1 0.8352941176470589 0.2 0.2 1 0.9333333333333333 0.2 0.2 1 0.9568627450980393 0.2 0.2 1 0.8705882352941177 0.2 0.2 1 0.9176470588235294 0.10196078431372549 0.10196078431372549 1 0.6 0 0 1 0.5568627450980392 0 0 1 0.9098039215686274 0.2 0.2 1 0.9411764705882353 0.2 0.2 1 0.7803921568627451 0.10196078431372549 0.10196078431372549 1 0.6627450980392157 0 1 1 0.6470588235294118 0 1 1 0.9686274509803922 0 0 1 0.8941176470588236 0 0 1 0.5764705882352941 0 0 1 0.7176470588235294 0 0 1 0.6078431372549019 0 0 1 0.9137254901960784 0.10196078431372549 0.10196078431372549 1 0.8 0.10196078431372549 0.10196078431372549 1 0.9058823529411765 0.2 0.2 1 0.8941176470588236 0.2 0.2 1 0.9607843137254902 0.2 0.2 1 0.8509803921568627 0.2 0.2 1 0.8784313725490196 0.2 0.2 1 0.7725490196078432 0.2 0.2 1 0.788235294117647 0.2 0.2 1 0.8431372549019608 0.2 0.2 1 0.8666666666666667 0.2 0.2 1 0.9372549019607843 0.2 0.2 1 0.9137254901960784 0.2 0.2 1 0.796078431372549 0.10196078431372549 0.10196078431372549 1 0.8980392156862745 0.10196078431372549 0.10196078431372549 1 0.9568627450980393 0.10196078431372549 0.10196078431372549 1 0.9215686274509803 0.10196078431372549 0.10196078431372549 1 0.8549019607843137 0.10196078431372549 0.10196078431372549 1 0.8313725490196079 0.2 0.2 1 0.6313725490196078 0 1 1 0.8549019607843137 0 0 1 0.7254901960784313 0 1 1 0.7803921568627451 0 0 1 0.8980392156862745 0 0 1 0.807843137254902 0.2 0.2 1 0.8666666666666667 0 0 1 0.6705882352941176 0 1 1 0.9098039215686274 0 0 1 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 2 1 1 1 0 0 0 3 3 3 1 1 1 2 2 2 4 4 4 3 3 3 2 2 2 5 5 5 3 3 3 4 4 4 6 6 6 5 5 5 4 4 4 7 7 7 5 5 5 6 6 6 8 8 8 7 7 7 6 6 6 9 9 9 7 7 7 8 8 8 10 10 10 9 9 9 8 8 8 11 11 10 9 9 9 10 10 10 13 13 12 0 0 0 12 12 11 14 14 13 0 0 0 13 13 12 15 15 14 14 14 13 13 13 12 16 16 15 14 14 13 15 15 14 17 17 4 16 16 15 15 15 14 18 18 16 16 16 15 17 17 4 19 19 17 18 18 16 17 17 4 20 20 15 18 18 16 19 19 17 21 21 10 20 20 15 19 19 17 22 22 10 20 20 15 21 21 10 25 25 20 24 24 19 23 23 18 26 26 21 24 24 19 25 25 20 27 27 22 26 26 21 25 25 20 28 28 23 26 26 21 27 27 22 29 29 24 28 28 23 27 27 22 30 30 25 28 28 23 29 29 24 31 31 25 30 30 25 29 29 24 32 32 26 30 30 25 31 31 25 33 33 10 32 32 26 31 31 25 34 34 10 32 32 26 33 33 10 37 37 28 36 36 27 35 35 27 38 38 29 36 36 27 37 37 28 39 39 30 38 38 29 37 37 28 40 40 29 38 38 29 39 39 30 41 41 31 40 40 29 39 39 30 42 42 32 40 40 29 41 41 31 43 43 33 42 42 32 41 41 31 44 44 33 42 42 32 43 43 33 45 45 33 44 44 33 43 43 33 46 46 33 44 44 33 45 45 33 49 49 34 48 48 10 47 47 10 50 50 15 48 48 10 49 49 34 51 51 4 50 50 15 49 49 34 52 52 35 50 50 15 51 51 4 53 53 2 52 52 35 51 51 4 54 54 13 52 52 35 53 53 2 55 55 36 54 54 13 53 53 2 56 56 37 54 54 13 55 55 36 57 24 38 56 56 37 55 55 36 58 26 39 56 56 37 57 24 38 61 59 40 60 58 10 59 57 10 62 60 41 60 58 10 61 59 40 63 61 42 62 60 41 61 59 40 64 62 43 62 60 41 63 61 42 65 63 44 64 62 43 63 61 42 66 64 45 64 62 43 65 63 44 67 65 35 66 64 45 65 63 44 68 66 46 66 64 45 67 65 35 69 67 47 68 66 46 67 65 35 70 68 48 68 66 46 69 67 47 72 70 33 23 23 18 71 69 33 73 25 49 23 23 18 72 70 33 74 71 50 73 25 49 72 70 33 75 27 51 73 25 49 74 71 50 76 72 52 75 27 51 74 71 50 77 29 53 75 27 51 76 72 52 78 73 26 77 29 53 76 72 52 79 31 13 77 29 53 78 73 26 80 74 10 79 31 13 78 73 26 33 33 10 79 31 13 80 74 10 83 77 29 82 76 33 81 75 33 84 78 33 82 76 33 83 77 29 85 79 29 84 78 33 83 77 29 86 80 29 84 78 33 85 79 29 87 81 29 86 80 29 85 79 29 88 82 29 86 80 29 87 81 29 89 83 29 88 82 29 87 81 29 90 84 54 88 82 29 89 83 29 91 85 10 90 84 54 89 83 29 92 86 10 90 84 54 91 85 10 95 89 55 94 88 27 93 87 27 96 90 56 94 88 27 95 89 55 97 91 57 96 90 56 95 89 55 98 92 58 96 90 56 97 91 57 99 93 59 98 92 58 97 91 57 100 94 58 98 92 58 99 93 59 101 95 27 100 94 58 99 93 59 102 96 33 100 94 58 101 95 27 103 97 33 102 96 33 101 95 27 106 100 29 105 99 27 104 98 27 107 101 29 105 99 27 106 100 29 108 102 29 107 101 29 106 100 29 109 103 60 107 101 29 108 102 29 110 104 33 109 103 60 108 102 29 111 105 33 109 103 60 110 104 33 112 106 33 111 105 33 110 104 33 113 107 33 111 105 33 112 106 33 115 109 33 103 97 33 114 108 33 102 96 33 103 97 33 115 109 33 116 110 61 102 96 33 115 109 33 100 94 58 102 96 33 116 110 61 117 111 55 100 94 58 116 110 61 98 92 58 100 94 58 117 111 55 118 112 62 98 92 58 117 111 55 96 90 56 98 92 58 118 112 62 50 50 15 34 34 10 48 48 10 119 32 63 34 34 10 50 50 15 52 52 35 119 32 63 50 50 15 120 30 50 119 32 63 52 52 35 54 54 13 120 30 50 52 52 35 28 28 23 120 30 50 54 54 13 56 56 37 28 28 23 54 54 13 58 26 39 28 28 23 56 56 37 64 62 43 122 114 17 121 113 64 123 115 65 122 114 17 64 62 43 124 64 14 123 115 65 64 62 43 125 116 3 123 115 65 124 64 14 68 66 46 125 116 3 124 64 14 126 117 66 125 116 3 68 66 46 70 68 48 126 117 66 68 66 46 129 120 41 128 119 46 127 118 6 130 121 53 128 119 46 129 120 41 131 122 33 130 121 53 129 120 41 132 123 10 130 121 53 131 122 33 133 124 33 132 123 10 131 122 33 101 95 27 132 123 10 133 124 33 134 125 33 101 95 27 133 124 33 137 128 67 136 127 10 135 126 10 138 129 68 136 127 10 137 128 67 139 130 69 138 129 68 137 128 67 140 131 70 138 129 68 139 130 69 141 132 71 140 131 70 139 130 69 142 133 43 140 131 70 141 132 71 143 134 15 142 133 43 141 132 71 107 101 29 144 135 10 105 99 27 145 136 70 144 135 10 107 101 29 127 118 6 145 136 70 107 101 29 146 137 12 145 136 70 127 118 6 128 119 46 146 137 12 127 118 6 147 89 72 146 137 12 128 119 46 148 91 73 147 89 72 128 119 46 151 140 76 150 139 75 149 138 74 152 141 77 150 139 75 151 140 76 153 142 78 152 141 77 151 140 76 154 143 77 152 141 77 153 142 78 155 144 79 154 143 77 153 142 78 156 145 77 154 143 77 155 144 79 108 102 29 157 146 80 110 104 33 158 147 29 157 146 80 108 102 29 106 100 29 158 147 29 108 102 29 159 148 29 158 147 29 106 100 29 104 98 27 159 148 29 106 100 29 160 149 27 159 148 29 104 98 27 163 152 9 162 151 82 161 150 81 164 153 68 162 151 82 163 152 9 165 154 83 164 153 68 163 152 9 166 155 84 164 153 68 165 154 83 167 156 10 166 155 84 165 154 83 168 157 10 166 155 84 167 156 10 171 160 85 170 159 10 169 158 10 172 161 86 170 159 10 171 160 85 173 162 87 172 161 86 171 160 85 174 163 88 172 161 86 173 162 87 175 164 89 174 163 88 173 162 87 176 165 90 174 163 88 175 164 89 177 154 91 169 158 10 167 156 10 171 160 85 169 158 10 177 154 91 178 152 92 171 160 85 177 154 91 173 162 87 171 160 85 178 152 92 179 150 93 173 162 87 178 152 92 175 164 89 173 162 87 179 150 93 109 103 60 127 118 6 107 101 29 129 120 41 127 118 6 109 103 60 111 105 33 129 120 41 109 103 60 131 122 33 129 120 41 111 105 33 113 107 33 131 122 33 111 105 33 133 124 33 131 122 33 113 107 33 182 153 96 181 166 95 180 151 94 183 167 91 181 166 95 182 153 96 184 155 97 183 167 91 182 153 96 185 168 98 183 167 91 184 155 97 168 157 10 185 168 98 184 155 97 186 169 10 185 168 98 168 157 10 188 167 67 149 138 74 187 166 99 151 140 76 149 138 74 188 167 67 185 168 98 151 140 76 188 167 67 189 142 100 151 140 76 185 168 98 186 169 10 189 142 100 185 168 98 155 144 79 189 142 100 186 169 10 192 172 103 191 171 102 190 170 101 193 173 9 191 171 102 192 172 103 194 174 96 193 173 9 192 172 103 195 175 104 193 173 9 194 174 96 196 176 84 195 175 104 194 174 96 199 179 105 198 178 10 197 177 10 200 180 103 198 178 10 199 179 105 201 181 69 200 180 103 199 179 105 202 182 64 200 180 103 201 181 69 203 183 17 202 182 64 201 181 69 205 185 29 81 75 33 204 184 33 83 77 29 81 75 33 205 185 29 206 186 29 83 77 29 205 185 29 85 79 29 83 77 29 206 186 29 87 81 29 85 79 29 206 186 29 209 189 107 208 188 106 207 187 106 210 190 108 208 188 106 209 189 107 211 191 109 210 190 108 209 189 107 212 192 110 210 190 108 211 191 109 213 193 108 212 192 110 211 191 109 216 195 113 215 12 112 214 194 111 217 196 114 215 12 112 216 195 113 218 173 92 217 196 114 216 195 113 219 197 7 217 196 114 218 173 92 220 175 86 219 197 7 218 173 92 223 200 91 222 199 10 221 198 10 224 201 115 222 199 10 223 200 91 225 202 116 224 201 115 223 200 91 226 203 69 224 201 115 225 202 116 227 204 70 226 203 69 225 202 116 229 134 118 228 61 117 142 133 43 230 63 119 228 61 117 229 134 118 231 205 120 230 63 119 229 134 118 232 65 26 230 63 119 231 205 120 233 67 121 232 65 26 231 205 120 236 208 29 235 207 29 234 206 27 237 209 29 235 207 29 236 208 29 238 210 29 237 209 29 236 208 29 239 211 29 237 209 29 238 210 29 240 212 33 239 211 29 238 210 29 243 204 6 242 214 14 241 213 4 244 215 41 242 214 14 243 204 6 245 202 122 244 215 41 243 204 6 246 216 4 244 215 41 245 202 122 247 217 68 246 216 4 245 202 122 250 220 123 249 219 33 248 218 33 239 211 29 249 219 33 250 220 123 251 221 29 239 211 29 250 220 123 237 209 29 239 211 29 251 221 29 235 207 29 237 209 29 251 221 29 254 224 125 253 223 124 252 222 91 255 225 126 253 223 124 254 224 125 256 226 10 255 225 126 254 224 125 257 227 10 255 225 126 256 226 10 259 229 29 234 206 27 258 228 27 236 208 29 234 206 27 259 229 29 260 230 127 236 208 29 259 229 29 261 231 107 236 208 29 260 230 127 263 220 29 262 146 29 158 147 29 264 232 33 262 146 29 263 220 29 248 218 33 264 232 33 263 220 29 265 233 33 264 232 33 248 218 33 261 231 107 238 210 29 236 208 29 240 212 33 238 210 29 261 231 107 266 234 33 240 212 33 261 231 107 267 235 33 240 212 33 266 234 33 269 236 68 268 222 96 253 223 124 270 237 5 268 222 96 269 236 68 271 238 70 270 237 5 269 236 68 272 239 128 270 237 5 271 238 70 275 242 5 274 241 130 273 240 129 276 243 131 274 241 130 275 242 5 277 244 103 276 243 131 275 242 5 278 245 67 276 243 131 277 244 103 281 196 134 280 246 133 279 12 132 203 183 17 280 246 133 281 196 134 282 247 88 203 183 17 281 196 134 202 182 64 203 183 17 282 247 88 285 248 15 284 172 71 283 170 114 286 249 92 284 172 71 285 248 15 287 250 130 286 249 92 285 248 15 288 251 115 286 249 92 287 250 130 43 43 33 289 252 33 45 45 33 290 253 135 289 252 33 43 43 33 291 41 136 290 253 135 43 43 33 292 39 29 290 253 135 291 41 136 295 256 29 294 255 29 293 254 29 86 80 29 294 255 29 295 256 29 296 257 29 86 80 29 295 256 29 297 258 33 86 80 29 296 257 29 300 261 137 299 260 2 298 259 133 301 262 33 299 260 2 300 261 137 302 263 33 301 262 33 300 261 137 71 69 33 301 262 33 302 263 33 305 266 138 304 265 10 303 264 10 306 267 91 304 265 10 305 266 138 307 203 64 306 267 91 305 266 138 308 268 115 306 267 91 307 203 64 138 129 68 309 269 10 136 127 10 310 270 71 309 269 10 138 129 68 140 131 70 310 270 71 138 129 68 142 133 43 310 270 71 140 131 70 313 273 130 312 272 130 311 271 65 314 274 17 312 272 130 313 273 130 315 275 10 314 274 17 313 273 130 316 276 10 314 274 17 315 275 10 130 121 53 148 91 73 128 119 46 99 93 59 148 91 73 130 121 53 132 123 10 99 93 59 130 121 53 101 95 27 99 93 59 132 123 10 16 16 15 4 4 4 317 2 120 318 277 14 4 4 4 16 16 15 18 18 16 318 277 14 16 16 15 20 20 15 318 277 14 18 18 16 320 278 29 319 42 29 44 44 33 40 40 29 319 42 29 320 278 29 321 279 29 40 40 29 320 278 29 293 254 29 40 40 29 321 279 29 278 245 67 322 280 124 276 243 131 323 281 125 322 280 124 278 245 67 324 282 104 323 281 125 278 245 67 325 283 10 323 281 125 324 282 104 318 277 14 326 6 130 4 4 4 327 284 113 326 6 130 318 277 14 20 20 15 327 284 113 318 277 14 22 22 10 327 284 113 20 20 15 330 287 33 329 286 33 328 285 33 331 288 139 329 286 33 330 287 33 332 289 140 331 288 139 330 287 33 333 290 141 331 288 139 332 289 140 336 241 143 335 117 142 334 240 111 125 116 3 335 117 142 336 241 143 337 291 6 125 116 3 336 241 143 340 176 124 339 293 10 338 292 10 341 294 10 339 293 10 340 176 124 288 251 115 341 294 10 340 176 124 19 19 17 197 177 10 342 295 10 343 179 116 197 177 10 19 19 17 344 181 144 343 179 116 19 19 17 346 224 145 345 296 10 256 226 10 347 297 9 345 296 10 346 224 145 348 298 144 347 297 9 346 224 145 351 200 124 350 299 70 349 202 92 352 300 10 350 299 70 351 200 124 221 198 10 352 300 10 351 200 124 293 254 29 92 86 10 353 301 27 354 302 29 92 86 10 293 254 29 294 255 29 354 302 29 293 254 29 357 305 146 356 304 27 355 303 27 358 306 31 356 304 27 357 305 146 359 307 147 358 306 31 357 305 146 289 252 33 360 308 33 45 45 33 361 309 33 360 308 33 289 252 33 362 310 33 361 309 33 289 252 33 363 311 16 206 186 29 205 185 29 364 312 10 206 186 29 363 311 16 365 313 148 364 312 10 363 311 16 78 73 26 366 314 10 80 74 10 367 315 130 366 314 10 78 73 26 76 72 52 367 315 130 78 73 26 368 170 26 55 55 36 53 53 2 57 24 38 55 55 36 368 170 26 369 316 149 57 24 38 368 170 26 110 104 33 265 233 33 112 106 33 264 232 33 265 233 33 110 104 33 157 146 80 264 232 33 110 104 33 371 319 117 242 318 14 370 317 102 372 320 150 242 318 14 371 319 117 373 321 151 372 320 150 371 319 117 121 113 64 375 323 10 374 322 10 376 324 5 375 323 10 121 113 64 122 114 17 376 324 5 121 113 64 172 161 86 377 325 10 170 159 10 378 326 116 377 325 10 172 161 86 379 327 131 378 326 116 172 161 86 174 163 88 381 329 5 380 328 17 382 330 152 381 329 5 174 163 88 176 165 90 382 330 152 174 163 88 385 332 8 384 330 93 383 331 90 386 329 153 384 330 93 385 332 8 387 328 154 386 329 153 385 332 8 388 333 10 327 284 113 22 22 10 8 8 8 327 284 113 388 333 10 10 10 10 8 8 8 388 333 10 313 273 130 389 334 10 315 275 10 390 335 10 389 334 10 313 273 130 391 336 115 390 335 10 313 273 130 142 133 43 59 57 10 392 337 10 61 59 40 59 57 10 142 133 43 228 61 117 61 59 40 142 133 43 395 340 157 394 339 156 393 338 155 396 341 33 394 339 156 395 340 157 399 113 70 398 60 45 397 62 15 374 322 10 398 60 45 399 113 70 402 344 91 401 343 67 400 342 67 403 345 67 401 343 67 402 344 91 406 266 124 405 201 122 404 203 115 303 264 10 405 201 122 406 266 124 321 279 29 295 256 29 293 254 29 320 278 29 295 256 29 321 279 29 409 348 159 408 347 158 407 346 140 362 310 33 408 347 158 409 348 159 410 349 138 196 176 84 338 292 10 195 175 104 196 176 84 410 349 138 413 352 162 412 351 161 411 350 160 414 353 27 412 351 161 413 352 162 415 354 156 159 148 29 160 149 27 251 221 29 159 148 29 415 354 156 251 221 29 158 147 29 159 148 29 263 220 29 158 147 29 251 221 29 259 229 29 417 355 29 416 230 163 258 228 27 417 355 29 259 229 29 420 357 164 419 356 102 418 315 45 421 71 165 419 356 102 420 357 164 423 358 166 422 350 28 412 351 161 424 339 155 422 350 28 423 358 166 333 290 141 425 350 167 331 288 139 426 359 29 425 350 167 333 290 141 426 359 29 413 352 162 425 350 167 427 360 27 413 352 162 426 359 29 430 363 33 429 362 33 428 361 33 431 364 168 429 362 33 430 363 33 297 258 33 44 44 33 46 46 33 296 257 29 44 44 33 297 258 33 329 286 33 432 365 33 328 285 33 331 288 139 432 365 33 329 286 33 433 354 62 235 207 29 251 221 29 434 366 27 235 207 29 433 354 62 266 234 33 435 367 33 267 235 33 261 231 107 435 367 33 266 234 33 436 357 14 76 72 52 74 71 50 367 315 130 76 72 52 436 357 14 72 70 33 302 263 33 437 71 36 71 69 33 302 263 33 72 70 33 14 14 13 317 2 120 0 0 0 16 16 15 317 2 120 14 14 13 439 195 34 438 171 6 218 173 92 440 194 169 438 171 6 439 195 34 442 182 103 441 368 124 200 180 103 443 247 92 441 368 124 442 182 103 219 197 7 443 247 92 281 196 134 441 368 124 443 247 92 219 197 7 446 371 92 445 370 88 444 369 90 447 372 145 445 370 88 446 371 92 450 317 65 449 373 34 448 319 14 451 374 85 449 373 34 450 317 65 454 244 116 453 5 68 452 7 86 455 242 34 453 5 68 454 244 116 457 3 102 455 242 34 456 1 170 453 5 68 455 242 34 457 3 102 354 302 29 458 84 171 92 86 10 294 255 29 458 84 171 354 302 29 88 82 29 294 255 29 86 80 29 458 84 171 294 255 29 88 82 29 51 51 4 287 250 130 53 53 2 49 49 34 287 250 130 51 51 4 84 78 33 297 258 33 82 76 33 86 80 29 297 258 33 84 78 33 347 297 9 314 274 17 459 375 10 348 298 144 314 274 17 347 297 9 461 376 8 460 319 114 312 272 130 462 377 41 460 319 114 461 376 8 465 236 145 464 378 145 463 238 115 466 379 104 464 378 145 465 236 145 466 379 104 401 343 67 464 378 145 467 380 97 401 343 67 466 379 104 467 380 97 468 381 172 401 343 67 469 382 10 468 381 172 467 380 97 244 383 41 471 317 130 470 318 3 246 384 4 471 317 130 244 383 41 474 268 8 473 386 153 472 385 40 404 203 115 473 386 153 474 268 8 477 387 7 476 259 173 475 260 15 478 388 138 476 259 173 477 387 7 481 17 41 480 181 5 479 19 154 482 15 42 480 181 5 481 17 41 483 261 45 421 71 165 302 263 33 419 356 102 421 71 165 483 261 45 486 246 16 485 13 164 484 12 151 487 183 143 485 13 164 486 246 16 490 281 124 489 389 145 488 280 116 491 390 10 489 389 145 490 281 124 492 115 71 337 291 6 122 114 17 493 116 44 337 291 6 492 115 71 495 386 154 227 204 70 494 385 174 226 203 69 227 204 70 495 386 154 498 387 102 497 391 42 496 388 85 499 260 175 497 391 42 498 387 102 301 262 33 501 392 33 500 260 26 502 393 33 501 392 33 301 262 33 240 212 33 249 219 33 239 211 29 503 394 33 249 219 33 240 212 33 200 180 103 504 349 67 198 178 10 441 368 124 504 349 67 200 180 103 505 230 176 212 192 110 213 193 108 417 355 29 212 192 110 505 230 176 417 355 29 210 190 108 212 192 110 506 395 27 210 190 108 417 355 29 507 396 40 496 388 85 497 391 42 508 397 106 496 388 85 507 396 40 511 260 173 510 364 177 509 391 26 429 362 33 510 364 177 511 260 173 514 338 179 513 358 178 512 306 32 424 339 155 513 358 178 514 338 179 432 365 33 396 341 33 114 108 33 394 339 156 396 341 33 432 365 33 115 109 33 396 341 33 395 340 157 114 108 33 396 341 33 115 109 33 516 398 180 515 37 29 35 35 27 517 347 29 515 37 29 516 398 180 518 267 84 135 126 10 304 265 10 519 128 172 135 126 10 518 267 84 522 399 183 521 359 182 520 290 181 523 400 27 521 359 182 522 399 183 330 287 33 525 401 33 524 289 184 328 285 33 525 401 33 330 287 33 527 338 185 359 307 147 526 340 55 358 306 31 359 307 147 527 338 185 530 346 29 529 399 186 528 402 29 531 403 27 529 399 186 530 346 29 533 289 188 532 404 187 528 402 29 525 401 33 532 404 187 533 289 188 361 309 33 525 401 33 360 308 33 532 404 187 525 401 33 361 309 33 536 191 190 535 391 34 534 364 189 537 189 191 535 391 34 536 191 190 424 339 155 331 288 139 411 350 160 432 365 33 331 288 139 424 339 155 539 193 193 261 231 107 538 230 192 435 367 33 261 231 107 539 193 193 117 111 55 359 307 147 540 305 194 116 110 61 359 307 147 117 111 55 293 254 29 38 38 29 40 40 29 353 301 27 38 38 29 293 254 29 542 316 195 191 171 102 541 194 48 190 170 101 191 171 102 542 316 195 340 176 124 286 249 92 288 251 115 543 174 88 286 249 92 340 176 124 534 364 189 213 193 108 211 191 109 430 363 33 213 193 108 534 364 189 430 363 33 435 367 33 213 193 108 428 361 33 435 367 33 430 363 33 545 356 120 298 259 133 544 405 102 300 261 137 298 259 133 545 356 120 449 373 34 312 272 130 448 319 14 311 271 65 312 272 130 449 373 34 546 406 11 460 319 114 462 377 41 373 321 151 460 319 114 546 406 11 350 299 70 247 217 68 245 202 122 547 407 10 247 217 68 350 299 70 482 15 42 487 183 143 480 181 5 485 13 164 487 183 143 482 15 42 308 268 115 548 408 9 306 267 91 549 385 102 548 408 9 308 268 115 549 385 102 550 370 65 548 408 9 551 409 169 550 370 65 549 385 102 441 368 124 220 175 86 504 349 67 219 197 7 220 175 86 441 368 124 553 9 67 552 282 67 278 245 67 554 410 10 552 282 67 553 9 67 49 49 34 555 251 17 287 250 130 47 47 10 555 251 17 49 49 34 557 225 172 467 380 97 556 379 196 257 227 10 467 380 97 557 225 172 517 347 29 292 39 29 515 37 29 290 253 135 292 39 29 517 347 29 558 345 144 387 328 154 385 332 8 559 344 145 387 328 154 558 345 144 559 344 145 560 327 85 387 328 154 561 342 104 560 327 85 559 344 145 564 413 77 563 412 33 562 411 33 565 311 35 563 412 33 564 413 77 204 184 33 565 311 35 205 185 29 563 412 33 565 311 35 204 184 33 206 186 29 89 83 29 87 81 29 566 414 10 89 83 29 206 186 29 567 253 166 362 310 33 289 252 33 408 347 158 362 310 33 567 253 166 568 290 135 528 402 29 529 399 186 533 289 188 528 402 29 568 290 135 348 298 144 312 272 130 314 274 17 461 376 8 312 272 130 348 298 144 571 239 90 570 332 88 569 331 197 463 238 115 570 332 88 571 239 90 270 237 5 573 377 143 572 222 144 574 406 170 573 377 143 270 237 5 572 222 144 575 376 70 346 224 145 573 377 143 575 376 70 572 222 144 253 223 124 556 379 196 269 236 68 557 225 172 556 379 196 253 223 124 577 408 86 447 372 145 576 130 126 445 370 88 447 372 145 577 408 86 320 278 29 296 257 29 295 256 29 44 44 33 296 257 29 320 278 29 578 415 27 516 398 180 35 35 27 579 346 30 516 398 180 578 415 27 580 243 198 337 291 6 336 241 143 488 280 116 337 291 6 580 243 198 488 280 116 122 114 17 337 291 6 489 389 145 122 114 17 488 280 116 489 389 145 581 324 87 122 114 17 582 416 10 581 324 87 489 389 145 583 418 10 478 388 138 508 417 106 584 405 63 478 388 138 583 418 10 285 248 15 53 53 2 287 250 130 368 170 26 53 53 2 285 248 15 145 136 70 585 419 10 144 135 10 146 137 12 585 419 10 145 136 70 452 7 86 278 245 67 586 244 124 553 9 67 278 245 67 452 7 86 576 130 126 518 267 84 577 408 86 519 128 172 518 267 84 576 130 126 587 372 144 141 132 71 139 130 69 588 371 4 141 132 71 587 372 144 141 132 71 231 205 120 143 134 15 588 371 4 231 205 120 141 132 71 118 112 62 540 305 194 589 420 27 117 111 55 540 305 194 118 112 62 94 88 27 118 112 62 589 420 27 96 90 56 118 112 62 94 88 27 395 340 157 116 110 61 115 109 33 359 307 147 116 110 61 395 340 157 418 315 45 544 405 102 583 418 10 545 356 120 544 405 102 418 315 45 537 189 191 590 396 70 535 391 34 207 187 106 590 396 70 537 189 191 591 271 130 451 374 85 313 273 130 449 373 34 451 374 85 591 271 130 561 342 104 592 326 68 560 327 85 593 421 10 592 326 68 561 342 104 595 217 122 594 422 144 246 216 4 596 423 10 594 422 144 595 217 122 241 213 4 549 385 102 597 204 130 551 409 169 549 385 102 241 213 4 146 137 12 93 87 27 585 419 10 147 89 72 93 87 27 146 137 12 588 371 4 233 67 121 231 205 120 598 369 112 233 67 121 588 371 4 600 374 144 246 384 4 599 336 70 471 317 130 246 384 4 600 374 144 602 425 10 468 381 172 601 424 10 603 342 199 468 381 172 602 425 10 463 238 115 604 345 103 570 332 88 464 378 145 604 345 103 463 238 115 172 161 86 380 328 17 379 327 131 174 163 88 380 328 17 172 161 86 429 362 33 501 392 33 502 393 33 299 260 2 501 392 33 429 362 33 606 402 167 409 348 159 605 346 200 532 404 187 409 348 159 606 402 167 532 404 187 362 310 33 409 348 159 361 309 33 362 310 33 532 404 187 607 426 158 512 306 32 513 358 178 356 304 27 512 306 32 607 426 158 610 351 187 609 426 136 608 358 182 611 427 27 609 426 136 610 351 187 310 270 71 612 428 10 309 269 10 142 133 43 612 428 10 310 270 71 355 303 27 589 420 27 540 305 194 523 400 27 427 360 27 521 359 182 247 217 68 547 407 10 596 423 10 468 381 172 603 342 199 613 343 201 478 388 138 584 405 63 476 259 173 614 429 10 375 323 10 581 324 87 491 390 10 582 416 10 489 389 145 574 406 170 270 237 5 272 239 128 429 362 33 502 393 33 428 361 33 342 295 10 21 21 10 19 19 17 550 370 65 551 409 169 615 369 129 555 251 17 47 47 10 341 294 10 348 298 144 346 224 145 575 376 70 467 380 97 257 227 10 469 382 10 350 299 70 352 300 10 547 407 10 240 212 33 267 235 33 503 394 33 249 219 33 503 394 33 248 218 33 506 395 27 208 188 106 210 190 108 508 417 106 508 417 106 496 388 85 611 427 27 356 304 27 609 426 136 427 360 27 414 353 27 413 352 162 11 11 10 554 410 10 553 9 67 594 422 144 596 423 10 390 430 10 551 432 169 241 431 4 242 318 14 434 366 27 234 206 27 235 207 29 392 337 10 612 428 10 142 133 43 316 276 10 459 375 10 314 274 17 578 415 27 531 403 27 530 346 29 525 401 33 328 285 33 360 308 33 618 242 71 617 240 202 616 1 169 338 292 10 198 178 10 504 349 67 583 418 10 366 314 10 619 315 8 432 365 33 114 108 33 328 285 33 207 187 106 508 397 106 590 396 70 374 322 10 60 58 10 398 60 45 303 264 10 222 199 10 405 201 122 103 97 33 101 95 27 134 125 33 435 367 33 428 361 33 267 235 33 451 374 85 391 336 115 313 273 130 593 421 10 377 325 10 592 326 68 516 398 180 579 346 30 517 347 29 468 381 172 469 382 10 601 424 10 82 76 33 297 258 33 46 46 33 301 262 33 71 69 33 502 393 33 551 432 169 242 318 14 372 320 150 365 313 148 363 311 16 564 413 77 364 312 10 566 414 10 206 186 29 566 414 10 91 85 10 89 83 29 353 301 27 36 36 27 38 38 29 414 353 27 611 427 27 412 351 161 325 283 10 491 390 10 323 281 125 602 425 10 593 421 10 620 342 203 327 284 113 8 8 8 326 6 130 258 228 27 506 395 27 417 355 29 531 403 27 523 400 27 529 399 186 459 375 10 345 296 10 347 297 9 554 410 10 325 283 10 552 282 67 582 416 10 614 429 10 581 324 87 621 343 104 604 345 103 464 378 145 284 172 71 286 249 92 543 174 88

+
+
+
+ + + + -1325 449 7040 -1297 448 7053 -1329 465 7036 -1302 466 7052 -1344 494 7038 -1319 498 7050 -1362 520 7046 -1340 524 7052 -1369 541 7050 -1358 541 7057 -1379 547 7064 -1361 543 7071 -1375 545 7078 -1370 528 7089 -1398 528 7096 -1402 503 7106 -1425 507 7095 -1430 474 7105 -1419 471 7074 -1419 452 7079 -1376 450 7050 -2503 141 2047 -2412 124 2018 -2513 177 2051 -2411 161 2027 -2511 238 2084 -2423 231 2059 -2492 292 2126 -2435 289 2099 -2476 335 2145 -2434 325 2135 -2436 342 2178 -2385 323 2156 -2380 327 2187 -2342 286 2188 -2358 292 2240 -2338 237 2253 -2425 260 2275 -2416 191 2288 -2506 197 2239 -2497 156 2240 -2539 154 2139 -1053 253 4287 -1126 271 4386 -1047 315 4274 -1131 340 4366 -1061 392 4205 -1134 426 4293 -1095 492 4122 -1139 518 4202 -1116 574 4089 -1153 580 4126 -1164 602 4033 -1204 598 4099 -1219 603 4034 -1285 546 4050 -1279 537 3929 -1320 442 3908 -1256 433 3828 -1275 309 3804 -1148 292 3877 -1156 222 3877 -1051 230 4076 2261 1 1003 2321 1 953 2256 32 1010 2323 35 964 2261 83 1048 2320 93 1004 2279 131 1096 2316 139 1055 2292 169 1115 2320 169 1097 2322 179 1148 2356 173 1115 2361 175 1151 2379 144 1146 2374 143 1211 2383 96 1223 2334 101 1263 2340 41 1277 2274 37 1231 2280 1 1231 2244 1 1119 699 12 4707 697 14 4785 697 48 4698 687 52 4776 666 107 4668 659 120 4740 619 162 4638 624 173 4694 595 207 4628 590 207 4660 551 219 4617 554 214 4665 523 216 4637 509 182 4656 467 180 4596 448 126 4593 458 129 4525 444 60 4517 522 54 4518 518 13 4521 625 12 4598 -3144 453 6676 -3118 445 6717 -3148 482 6672 -3126 477 6716 -3175 534 6668 -3153 536 6707 -3210 583 6669 -3187 585 6696 -3226 620 6673 -3217 617 6691 -3252 633 6683 -3234 623 6706 -3260 630 6703 -3260 602 6718 -3303 610 6702 -3314 569 6708 -3333 579 6669 -3343 527 6669 -3303 517 6643 -3304 486 6646 -3221 470 6647 -1565 3 768 -1555 3 806 -1560 12 764 -1551 14 808 -1562 25 759 -1553 29 806 -1587 42 758 -1572 45 796 -1607 57 759 -1604 58 782 -1642 62 764 -1631 61 796 -1660 62 786 -1666 50 802 -1711 50 773 -1725 34 769 -1729 34 725 -1732 17 724 -1687 14 708 -1687 4 714 -1620 3 729 1101 2 2395 1155 2 2465 1094 42 2387 1140 46 2464 1044 108 2384 1090 121 2452 980 169 2390 1026 180 2437 953 219 2399 971 219 2431 905 233 2421 942 225 2461 895 227 2459 896 187 2485 815 186 2463 797 125 2474 757 131 2407 738 52 2409 808 47 2355 806 1 2360 957 1 2351 505 217 4605 482 177 4545 521 120 4528 629 49 4597 -3281 635 6693 -3313 612 6670 -3300 568 6648 -3220 498 6644 -2394 334 2212 -2433 306 2251 -2497 262 2234 -2547 191 2137 856 229 2444 792 184 2407 815 122 2363 960 42 2346 -1680 62 769 -1708 48 734 -1685 30 710 -1615 12 725 -1390 546 7080 -1415 529 7083 -1416 503 7070 -1376 468 7045 2354 176 1183 2328 142 1236 2281 94 1225 2239 33 1117 -1222 602 3976 -1227 519 3876 -1154 412 3890 -1043 294 4078 -1308 448 7080 -1307 468 7079 -1326 500 7078 -1342 525 7072 -2321 113 2068 -2314 153 2069 -2327 222 2103 -2361 280 2125 2245 95 1136 2286 141 1208 2322 178 1201 -1596 5 822 -1592 16 829 -1599 32 827 -1605 48 819 2380 1 997 2383 39 998 2380 96 1041 2367 141 1074 -1383 502 7044 -1408 528 7064 -1401 547 7072 1087 2 2520 1085 50 2526 1031 125 2512 992 183 2484 -3234 556 6644 -3289 607 6653 -3288 639 6673 619 16 4785 615 60 4788 587 126 4748 575 177 4708 -1617 29 723 -1671 46 720 -1680 62 744 -3157 452 6745 -3158 486 6748 -3187 544 6738 -3207 589 6721 611 120 4584 531 174 4546 513 218 4572 -1246 263 4316 -1254 342 4316 -1248 447 4262 -1215 535 4175 934 123 2348 836 183 2372 838 231 2409 -2542 263 2154 -2490 312 2221 -2441 345 2221 -1056 411 4044 -1149 510 3921 -1192 594 3939 -1361 501 7097 -1402 470 7118 -1429 453 7110 508 126 4682 431 56 4600 440 15 4522 -2310 225 2179 -2309 164 2261 -2406 145 2289 914 124 2510 786 45 2492 738 1 2416 2393 96 1129 2396 35 1229 2347 1 1276 -1318 449 4072 -1340 317 3901 -1284 231 3807 -3251 556 6732 -3320 516 6717 -3344 492 6673 -1667 33 809 -1728 17 770 -1729 5 729 -3238 597 6653 -3274 630 6660 -1382 526 7046 -1398 543 7060 -2519 310 2159 -2481 342 2203 597 171 4591 544 208 4568 927 180 2364 863 221 2383 2262 139 1140 2292 170 1185 -1080 505 4041 -1141 573 3962 -1613 45 732 -1657 58 732 -2277 154 2177 -2318 128 2258 -3249 502 6744 -3317 485 6714 920 48 2532 792 1 2486 -1355 469 7108 -1401 451 7118 -1673 17 808 -1720 7 767 500 59 4701 438 17 4599 -1339 341 4100 -1328 247 3906 2407 37 1122 2392 1 1225 -1113 578 4035 -2487 342 2168 578 210 4599 -1382 543 7052 -3245 627 6664 2286 172 1145 916 223 2386 -1626 58 744 936 1 2529 -2283 115 2166 -1329 265 4120 512 18 4708 -3240 468 6743 -1351 449 7108 -1665 6 805 2403 1 1110 181 0 -889 184 34 -888 213 0 -883 213 31 -885 241 16 -891 239 34 -904 247 40 -926 232 52 -913 233 57 -929 209 54 -908 208 62 -939 182 62 -911 178 68 -943 149 54 -951 177 59 -983 149 46 -976 155 25 -1004 131 38 -969 132 23 -977 112 19 -949 124 11 -975 110 0 -947 121 0 -974 -633 1 -739 -596 1 -729 -632 25 -743 -594 25 -730 -628 64 -736 -593 71 -723 -601 123 -712 -581 75 -686 -592 125 -686 -599 82 -648 -606 128 -657 -638 86 -626 -631 134 -638 -674 100 -646 -656 144 -651 -669 125 -678 -651 155 -671 -645 150 -691 -630 161 -675 -628 148 -699 -609 147 -694 475 1 778 537 1 794 476 36 771 542 37 793 477 95 775 537 105 798 516 182 819 557 110 862 531 184 864 527 120 927 507 188 914 454 127 967 459 197 939 391 147 932 417 211 918 400 184 878 425 228 882 437 220 849 461 237 876 465 218 836 497 216 843 965 1 -113 943 1 -87 971 14 -110 943 15 -83 972 40 -122 943 37 -96 944 59 -115 904 39 -122 909 54 -144 898 54 -187 918 67 -156 911 70 -188 931 78 -192 908 71 -215 919 73 -228 904 58 -253 935 58 -247 899 41 -266 935 38 -259 896 18 -270 933 16 -261 929 1 -257 956 1 -201 -871 0 95 -879 55 89 -893 0 31 -895 49 32 -919 25 -21 -929 55 -12 -956 64 -22 -934 84 4 -950 92 5 -915 87 46 -943 100 58 -900 101 100 -928 110 117 -917 87 177 -966 96 131 -941 74 185 -971 39 180 -922 61 217 -932 37 217 -891 31 249 -924 17 233 -889 0 251 -929 0 236 -360 1 840 -323 1 849 -359 34 835 -320 35 848 -355 89 842 -320 99 855 -328 171 866 -308 103 893 -319 174 892 -325 113 931 -333 177 922 -364 120 953 -358 186 940 -401 138 932 -383 199 928 -396 173 901 -378 214 907 -371 208 887 -357 223 903 -354 205 880 -336 204 884 859 1 486 803 1 488 859 58 488 801 63 487 856 179 471 812 171 463 851 240 440 830 256 431 858 312 410 847 311 404 863 330 377 838 319 385 850 322 362 841 266 358 872 264 326 868 177 311 920 185 315 937 74 303 953 66 356 950 1 353 920 1 430 694 1 -624 708 1 -660 693 22 -619 711 24 -656 704 56 -606 719 63 -640 723 88 -593 730 94 -619 733 114 -589 741 114 -604 754 121 -585 760 117 -607 771 118 -595 781 97 -604 793 97 -577 802 65 -576 786 68 -544 792 28 -540 753 25 -539 755 1 -540 714 1 -574 280 1 899 331 1 946 281 80 897 333 86 949 275 246 916 304 259 959 247 381 952 261 402 980 240 463 975 248 462 991 218 489 1003 245 473 1019 222 478 1030 229 400 1043 186 385 1047 179 243 1065 135 254 1015 113 101 1012 127 91 944 128 1 949 196 1 900 -290 1 -968 -241 1 -932 -296 34 -971 -249 36 -928 -321 87 -961 -277 97 -923 -349 136 -938 -312 145 -917 -359 177 -925 -340 176 -906 -375 187 -896 -343 181 -876 -367 183 -865 -358 151 -846 -403 150 -841 -408 101 -828 -450 105 -866 -458 42 -859 -443 38 -918 -442 1 -913 -373 1 -961 688 1 606 712 1 599 685 11 604 712 12 600 686 24 608 707 27 605 684 41 618 703 44 615 685 54 632 698 54 630 691 58 647 706 56 640 702 56 652 715 46 657 702 45 677 703 28 684 678 30 686 678 13 691 661 12 670 664 1 671 668 1 636 -595 1 729 -588 1 752 -593 11 726 -586 12 753 -594 24 723 -587 27 752 -607 40 725 -597 43 747 -617 55 727 -614 55 742 -634 59 735 -626 57 754 -641 58 751 -643 45 763 -667 45 749 -674 28 749 -680 30 720 -682 13 720 -660 12 705 -660 1 708 -625 1 710 -907 1 -211 -962 1 -192 -901 28 -214 -959 30 -201 -888 71 -244 -940 80 -230 -879 112 -285 -917 119 -267 -878 145 -304 -902 144 -300 -882 153 -338 -915 148 -324 -903 150 -353 -920 124 -358 -889 123 -403 -892 83 -417 -842 86 -428 -839 35 -440 -820 31 -385 -823 1 -387 -850 1 -292 -934 1 -215 -914 1 -215 -939 12 -221 -911 12 -220 -944 25 -220 -914 29 -220 -941 43 -209 -919 46 -212 -939 59 -201 -924 58 -200 -932 63 -186 -913 60 -188 -916 61 -177 -905 48 -173 -918 48 -157 -919 31 -151 -946 34 -156 -946 14 -151 -962 13 -172 -953 1 -174 -951 1 -197 -887 1 516 -873 1 462 -889 58 516 -872 63 460 -872 179 518 -852 171 478 -841 240 522 -826 256 504 -814 312 537 -805 311 528 -784 330 551 -784 319 525 -766 322 543 -759 266 535 -737 264 575 -722 177 575 -741 185 623 -734 74 643 -789 66 644 -786 1 641 -851 1 590 -154 1 936 -146 1 1006 -148 93 937 -141 99 1011 -165 259 943 -161 271 1001 -196 403 952 -193 407 987 -218 505 959 -221 508 977 -252 523 964 -233 505 993 -261 506 987 -272 420 1010 -308 422 978 -341 268 986 -340 254 922 -361 114 913 -310 104 881 -304 1 877 -220 1 883 787 1 -531 769 19 -511 775 1 -512 774 18 -477 782 1 -479 799 19 -444 802 1 -453 826 21 -437 824 1 -448 844 19 -462 835 1 -467 837 19 -499 829 1 -500 812 20 -535 809 1 -527 787 24 -532 924 1 45 898 19 52 904 1 55 883 18 84 890 1 85 885 19 124 892 1 119 904 21 145 908 1 135 933 19 134 928 1 125 948 19 100 942 1 95 947 20 56 940 1 61 925 24 44 -174 1 -972 -122 1 -996 -169 17 -972 -117 16 -994 -149 28 -969 -116 28 -984 -128 36 -962 -111 36 -967 -109 38 -947 -95 35 -965 -84 35 -950 -61 30 -956 -72 27 -933 -59 15 -928 -106 13 -906 -104 1 -905 -161 1 -907 -190 1 -935 -178 14 -937 -153 13 -909 -159 27 -939 -138 22 -917 -127 34 -927 -106 23 -916 -104 30 -929 -91 32 -938 895 44 58 920 45 51 900 58 70 917 59 68 911 64 93 932 62 81 930 62 99 944 48 100 932 47 131 770 44 -504 786 45 -524 781 58 -497 793 59 -508 803 64 -484 813 62 -507 822 62 -490 834 48 -497 842 47 -464 941 71 -146 963 58 -143 952 73 -165 962 58 -195 951 71 -191 933 69 -223 -391 184 -866 -433 148 -876 -436 99 -913 -373 34 -965 892 56 -226 879 38 -238 874 15 -236 898 1 -264 738 116 -576 750 114 -562 727 94 -571 753 95 -551 718 64 -567 755 64 -543 711 23 -573 696 57 664 680 45 678 662 28 668 665 11 633 -886 151 -374 -849 122 -406 -827 81 -383 -847 28 -289 870 325 349 902 262 327 933 173 359 922 60 433 -652 58 743 -669 44 724 -659 28 705 -622 11 707 -281 503 968 -310 418 936 -297 254 887 -217 95 879 -925 62 -170 -944 47 -161 -958 32 -174 -958 12 -201 -759 325 566 -747 262 603 -786 173 623 -854 60 592 197 482 1026 160 382 1019 147 238 959 196 82 895 -901 1 -199 -892 14 -201 -893 30 -198 -900 47 -196 667 28 633 669 45 662 684 57 664 210 57 -967 239 50 -963 250 38 -950 237 26 -976 251 20 -968 235 0 -990 908 174 419 910 259 358 881 327 350 885 41 85 885 41 119 902 47 138 -607 1 767 -605 13 772 -608 28 771 -612 44 767 785 1 435 782 71 432 789 177 413 817 260 405 -623 28 706 -652 44 710 -654 59 726 747 1 -662 749 27 -664 757 65 -646 756 95 -627 -843 81 -305 -837 121 -372 -860 152 -377 -385 99 -957 -424 147 -912 -410 185 -887 319 1 1015 320 97 1021 298 277 1022 259 408 1017 201 239 921 166 391 981 187 485 1015 -200 1 1051 -198 110 1057 -210 277 1038 -224 413 1014 727 1 620 729 13 621 726 28 623 716 45 630 -225 247 893 -281 411 915 -283 502 951 -982 1 -247 -986 34 -249 -965 83 -279 -940 121 -298 -837 174 582 -779 259 602 -763 327 577 777 41 -476 796 41 -448 821 47 -442 -817 1 460 -814 71 458 -797 177 470 -798 260 499 -971 92 62 -986 80 5 -981 60 -21 -997 41 12 -999 31 -16 -1010 0 20 -255 1 -872 -254 41 -868 -285 101 -864 -312 147 -873 -959 32 -199 -957 47 -177 -941 62 -172 394 1 947 373 1 886 386 44 946 369 39 878 369 102 877 406 34 813 405 94 817 120 0 -928 125 12 -918 120 0 -927 152 26 -898 145 0 -892 237 251 1065 166 87 1073 116 1 1018 -681 1 -639 -693 1 -675 -685 31 -640 -695 27 -680 -691 70 -677 -674 24 -718 -670 64 -712 -407 1 939 -419 1 903 -412 42 938 -422 37 898 -418 97 902 -400 33 860 -397 88 866 722 28 656 706 12 688 680 1 688 -939 82 -352 -901 30 -428 -844 1 -442 788 1 -629 793 25 -626 786 65 -617 -643 28 768 -676 12 750 -680 1 723 882 1 -234 885 16 -173 888 1 -167 900 16 -112 909 1 -112 -341 100 -834 -407 36 -812 -456 1 -854 -77 25 -975 -65 15 -988 -44 18 -961 -36 1 -966 -52 1 -929 -867 0 220 -870 18 214 -866 0 219 -869 42 154 -858 0 167 823 176 348 874 63 298 932 1 300 -745 176 521 -711 63 584 -730 1 639 -903 1 -176 -897 13 -169 -899 30 -172 -285 278 1028 -356 121 991 -357 1 922 -851 119 -313 -850 145 -357 128 42 -950 131 32 -928 238 0 -891 255 9 -925 254 0 -925 248 0 -969 671 44 636 677 55 654 -917 0 -14 -960 14 -38 -960 0 -36 -997 0 -11 -955 46 -200 -950 59 -182 777 96 -553 776 119 -580 -382 164 875 -355 162 859 -622 43 711 -644 55 716 -336 216 915 -354 220 926 -370 221 920 -383 145 -943 -407 177 -912 -655 119 -704 -629 117 -719 -609 156 -664 -627 159 -652 -643 159 -658 894 256 399 898 313 371 501 226 899 466 234 915 439 235 905 202 386 953 184 465 978 -232 407 918 -270 505 939 -903 67 218 -883 51 205 424 174 834 477 172 808 -814 256 575 -788 313 586 -330 39 -819 -407 1 -818 965 34 -198 -139 34 -941 -955 32 -353 -899 1 -423 207 0 -1002 182 22 -1007 178 0 -1005 148 0 -995 -1003 0 79 -994 51 73 -992 35 128 208 32 -992 245 92 1072 167 1 1066 824 63 -473 812 64 -458 797 60 -461 -646 12 768 -672 1 747 817 67 350 876 1 302 725 12 659 703 1 685 808 1 -579 812 24 -580 -916 12 -149 -940 1 -158 -292 120 1043 -349 1 991 -745 67 515 -716 1 585 922 63 114 904 64 119 894 60 109 -987 0 135 -961 0 191 678 55 641 -584 1 -693 -582 29 -693 766 120 -564 -381 179 -924 883 317 393 -946 60 -194 -311 1 885 -309 40 886 -331 1 926 -330 42 929 -371 1 949 -370 45 953 -804 317 565 -863 147 -324 558 1 856 562 42 857 524 1 926 526 45 930 456 1 964 454 48 967 253 24 -920 -62 1 -992 962 14 -201 886 38 -180 -954 38 -35 209 470 970 813 46 -529 945 46 62 -627 56 720 -604 1 -652 -603 31 -650 -644 1 -630 -643 33 -625 -243 507 938 -891 79 144 893 59 87 -919 1 -158 -642 1 765 -752 1 511 251 1 1065 815 1 358 -324 1 -825 160 49 -916 723 1 656 795 1 -542 -604 149 -679 505 219 869 -331 207 899 -956 1 -342 784 59 -479 -284 1 1045 -400 1 862 -673 1 -717 407 1 816 + + + + + + + + + + 0.65625 0.369140625 0.685546875 0.3203125 0.677734375 0.388671875 0.70703125 0.341796875 0.701171875 0.4375 0.734375 0.3984375 0.720703125 0.48828125 0.748046875 0.455078125 0.7421875 0.517578125 0.75390625 0.498046875 0.740234375 0.5390625 0.75390625 0.505859375 0.740234375 0.53125 0.72265625 0.509765625 0.693359375 0.556640625 0.654296875 0.541015625 0.634765625 0.583984375 0.583984375 0.56640625 0.591796875 0.544921875 0.564453125 0.529296875 0.607421875 0.455078125 0.7109375 0.353515625 0.916015625 0.337890625 0.685546875 0.443359375 0.888671875 0.427734375 0.58984375 0.56640625 0.77734375 0.578125 0.484375 0.66796875 0.638671875 0.6875 0.447265625 0.759765625 0.529296875 0.748046875 0.39453125 0.75 0.525390625 0.7265625 0.435546875 0.708984375 0.478515625 0.603515625 0.296875 0.572265625 0.28125 0.419921875 0.103515625 0.453125 0.072265625 0.267578125 0.1171875 0.326171875 0.123046875 0.21875 0.3828125 0.3046875 0.357421875 0.228515625 0.3828125 0.3203125 0.412109375 0.259765625 0.431640625 0.37109375 0.455078125 0.345703125 0.494140625 0.453125 0.46875 0.451171875 0.513671875 0.51953125 0.505859375 0.53125 0.509765625 0.576171875 0.455078125 0.603515625 0.466796875 0.6484375 0.4140625 0.66796875 0.337890625 0.671875 0.25 0.673828125 0.126953125 0.638671875 0.125 0.548828125 -0.017578125 0.482421875 0.08984375 0.349609375 0.015625 0.314453125 0.205078125 0.224609375 0.61328125 0.248046875 0.7578125 0.212890625 0.61328125 0.3203125 0.755859375 0.29296875 0.5703125 0.455078125 0.708984375 0.4453125 0.517578125 0.583984375 0.6328125 0.576171875 0.51171875 0.6796875 0.568359375 0.666015625 0.474609375 0.716796875 0.5625 0.681640625 0.49609375 0.705078125 0.5078125 0.6328125 0.375 0.66796875 0.333984375 0.5703125 0.212890625 0.609375 0.154296875 0.482421875 0.193359375 0.455078125 0.17578125 0.376953125 0.373046875 0.31640625 0.181640625 0.275390625 0.123046875 0.275390625 0.173828125 0.328125 0.123046875 0.337890625 0.212890625 0.43359375 0.158203125 0.453125 0.271484375 0.541015625 0.21484375 0.552734375 0.2890625 0.619140625 0.271484375 0.62109375 0.3515625 0.662109375 0.3125 0.6484375 0.373046875 0.669921875 0.392578125 0.625 0.498046875 0.646484375 0.548828125 0.576171875 0.587890625 0.578125 0.646484375 0.482421875 0.546875 0.431640625 0.568359375 0.375 0.365234375 0.31640625 -0.240234375 2.130859375 -0.21484375 2.099609375 -0.21875 2.158203125 -0.1953125 2.1328125 -0.203125 2.2265625 -0.171875 2.20703125 -0.197265625 2.30078125 -0.16796875 2.279296875 -0.1796875 2.34765625 -0.171875 2.3359375 -0.19921875 2.38671875 -0.185546875 2.359375 -0.208984375 2.392578125 -0.236328125 2.37109375 -0.279296875 2.421875 -0.330078125 2.400390625 -0.345703125 2.42578125 -0.40625 2.396484375 -0.369140625 2.345703125 -0.400390625 2.3203125 -0.318359375 2.22265625 0.564453125 0.34765625 0.5859375 0.3359375 0.587890625 0.37109375 0.609375 0.361328125 0.60546875 0.412109375 0.634765625 0.41015625 0.595703125 0.482421875 0.630859375 0.474609375 0.59375 0.544921875 0.6015625 0.541015625 0.546875 0.587890625 0.568359375 0.56640625 0.5234375 0.595703125 0.49609375 0.5625 0.423828125 0.6015625 0.375 0.564453125 0.359375 0.580078125 0.326171875 0.533203125 0.388671875 0.4921875 0.369140625 0.4609375 0.474609375 0.400390625 0.365234375 0.056640625 0.41015625 -0.064453125 0.44921875 0.107421875 0.494140625 0.005859375 0.55859375 0.2734375 0.625 0.181640625 0.64453125 0.46875 0.70703125 0.375 0.734375 0.5703125 0.748046875 0.529296875 0.724609375 0.689453125 0.73828125 0.59765625 0.705078125 0.70703125 0.615234375 0.671875 0.546875 0.853515625 0.39453125 0.84375 0.373046875 0.939453125 0.181640625 0.91796875 0.228515625 0.755859375 0.123046875 0.720703125 0.248046875 0.3828125 0.421875 0.681640625 0.51953125 0.634765625 0.5078125 0.53125 0.34375 0.3671875 -0.228515625 2.41796875 -0.291015625 2.431640625 -0.31640625 2.3828125 -0.2890625 2.244140625 0.33984375 0.701171875 0.16796875 0.591796875 0.142578125 0.4921875 0.380859375 0.400390625 0.67578125 0.796875 0.525390625 0.90234375 0.40234375 0.802734375 0.341796875 0.41015625 0.4921875 0.615234375 0.41796875 0.603515625 0.41796875 0.537109375 0.5 0.423828125 0.728515625 0.556640625 0.67578125 0.583984375 0.638671875 0.564453125 0.630859375 0.46875 0.427734375 0.728515625 0.28515625 0.685546875 0.244140625 0.578125 0.388671875 0.384765625 0.376953125 0.6640625 0.251953125 0.5859375 0.208984375 0.439453125 0.2734375 0.2578125 0.673828125 0.337890625 0.703125 0.353515625 0.73046875 0.412109375 0.748046875 0.458984375 0.876953125 0.267578125 0.8828125 0.37109375 0.763671875 0.51953125 0.650390625 0.646484375 0.392578125 0.533203125 0.30859375 0.669921875 0.369140625 0.744140625 0.52734375 0.369140625 0.5546875 0.400390625 0.572265625 0.451171875 0.587890625 0.50390625 0.72265625 0.232421875 0.74609375 0.314453125 0.69140625 0.466796875 0.63671875 0.5859375 0.671875 0.509765625 0.681640625 0.572265625 0.716796875 0.576171875 0.353515625 0.08984375 0.462890625 0.134765625 0.5859375 0.31640625 0.685546875 0.451171875 -0.251953125 2.3046875 -0.267578125 2.40234375 -0.236328125 2.427734375 0.22265625 0.318359375 0.205078125 0.384765625 0.244140625 0.5 0.267578125 0.58203125 0.525390625 0.4765625 0.46875 0.572265625 0.486328125 0.62109375 -0.25390625 2.146484375 -0.22265625 2.17578125 -0.203125 2.25 -0.185546875 2.306640625 0.345703125 0.484375 0.455078125 0.607421875 0.439453125 0.6796875 0.267578125 0.44921875 0.337890625 0.509765625 0.39453125 0.587890625 0.451171875 0.619140625 0.501953125 0.533203125 0.556640625 0.8046875 0.666015625 0.837890625 0.3359375 0.56640625 0.193359375 0.6328125 0.255859375 0.71875 0.365234375 0.35546875 0.322265625 0.505859375 0.376953125 0.615234375 0.6953125 0.470703125 0.607421875 0.513671875 0.5546875 0.546875 0.400390625 0.541015625 0.599609375 0.48046875 0.669921875 0.416015625 0.548828125 0.45703125 0.2890625 0.224609375 0.083984375 0.1484375 0.48828125 0.580078125 0.205078125 0.802734375 0.068359375 0.875 0.529296875 0.513671875 0.302734375 0.435546875 0.140625 0.39453125 0.25 0.640625 -0.015625 0.591796875 -0.099609375 0.44140625 -0.267578125 2.326171875 -0.388671875 2.365234375 -0.439453125 2.369140625 0.466796875 0.509765625 0.33984375 0.517578125 0.3125 0.494140625 -0.21875 2.341796875 -0.228515625 2.404296875 0.70703125 0.52734375 0.71484375 0.568359375 0.34765625 0.6796875 0.26171875 0.724609375 0.333984375 0.56640625 0.40625 0.650390625 0.625 0.59765625 0.6640625 0.7734375 0.423828125 0.630859375 0.373046875 0.720703125 0.43359375 0.4453125 0.40625 0.548828125 0.556640625 0.517578125 0.51171875 0.59375 0.59375 0.275390625 0.2890625 0.1328125 -0.314453125 2.28125 -0.4140625 2.3359375 0.322265625 0.501953125 0.111328125 0.75390625 0.65625 0.435546875 0.58203125 0.498046875 0.431640625 0.46875 0.333984375 0.48046875 0.427734375 0.4453125 0.609375 0.41796875 0.126953125 0.59765625 -0.072265625 0.53515625 0.52734375 0.376953125 0.28515625 0.359375 0.474609375 0.53125 0.361328125 0.755859375 0.333984375 0.634765625 0.732421875 0.541015625 -0.197265625 2.373046875 0.44921875 0.703125 0.712890625 0.65625 0.564453125 0.56640625 0.23046875 0.4296875 0.6171875 0.181640625 0.078125 0.537109375 0.42578125 0.376953125 -0.3359375 2.24609375 0.6328125 0.412109375 0.423828125 0.4296875 0.525390625 0.29296875 0.638671875 0.3984375 0.693359375 0.5 0.71484375 0.34375 0.755859375 0.4375 0.802734375 0.341796875 0.822265625 0.40234375 0.849609375 0.404296875 0.830078125 0.470703125 0.83984375 0.482421875 0.779296875 0.515625 0.787109375 0.54296875 0.7265625 0.58984375 0.724609375 0.61328125 0.63671875 0.623046875 0.7109375 0.58984375 0.611328125 0.521484375 0.5703125 0.60546875 0.5546875 0.556640625 0.5 0.58203125 0.517578125 0.53515625 0.470703125 0.525390625 0.49609375 0.505859375 0.935546875 0.10546875 0.982421875 0.103515625 0.923828125 0.25390625 0.95703125 0.251953125 0.837890625 0.486328125 0.8515625 0.51953125 0.6875 0.814453125 0.671875 0.484375 0.56640625 0.7890625 0.408203125 0.462890625 0.36328125 0.751953125 0.173828125 0.44140625 0.1875 0.751953125 0.166015625 0.541015625 0.171875 0.8203125 0.310546875 0.744140625 0.279296875 0.921875 0.412109375 0.92578125 0.34765625 0.97265625 0.501953125 0.93359375 0.53125 0.92578125 0.576171875 0.017578125 0.7578125 -0.072265625 0.640625 0.15234375 0.822265625 0.060546875 0.705078125 0.38671875 0.876953125 0.33984375 0.857421875 0.677734375 0.81640625 0.330078125 0.818359375 0.666015625 0.58984375 0.416015625 0.6328125 0.71484375 0.259765625 0.548828125 0.427734375 0.8203125 0.142578125 0.71875 0.34375 0.939453125 0.33203125 0.85546875 0.46484375 0.994140625 0.568359375 0.947265625 0.615234375 0.978515625 0.693359375 0.896484375 0.783203125 0.841796875 0.345703125 0.458984375 0.169921875 0.4140625 0.33203125 0.53515625 0.138671875 0.482421875 0.369140625 0.650390625 0.177734375 0.578125 0.25 0.669921875 0.197265625 0.474609375 0.296875 0.546875 0.46875 0.5 0.36328125 0.625 0.494140625 0.609375 0.5546875 0.693359375 0.609375 0.58984375 0.6953125 0.623046875 0.787109375 0.505859375 0.8359375 0.583984375 0.8515625 0.404296875 0.912109375 0.482421875 0.8828125 0.287109375 0.935546875 0.376953125 0.91796875 0.298828125 0.73046875 0.39453125 0.5390625 0.310546875 0.55859375 0.501953125 0.7578125 0.310546875 0.755859375 0.482421875 0.94140625 0.400390625 0.91015625 0.50390625 0.943359375 0.53515625 0.853515625 0.603515625 0.84765625 0.6328125 0.708984375 0.615234375 0.666015625 0.66015625 0.51953125 0.66015625 0.4609375 0.69140625 0.255859375 0.61328125 0.412109375 0.64453125 0.228515625 0.568359375 0.244140625 0.44921875 0.115234375 0.5234375 0.115234375 0.439453125 0.005859375 0.41796875 0.060546875 0.37109375 0 0.310546875 0.05078125 0.310546875 0.423828125 -0.048828125 0.525390625 -0.064453125 0.498046875 0.0703125 0.6015625 0.0625 0.60546875 0.296875 0.712890625 0.326171875 0.802734375 0.642578125 0.677734375 0.40625 0.779296875 0.693359375 0.552734375 0.537109375 0.669921875 0.77734375 0.3828125 0.64453125 0.5625 0.873046875 0.341796875 0.712890625 0.533203125 0.92578125 0.498046875 0.783203125 0.625 0.94140625 0.6796875 0.869140625 0.720703125 0.94921875 0.748046875 0.830078125 0.798828125 0.8125 0.126953125 0.234375 0.076171875 0.2421875 0.15234375 0.34375 0.10546875 0.359375 0.236328125 0.56640625 0.208984375 0.552734375 0.31640625 0.66796875 0.322265625 0.6953125 0.408203125 0.7890625 0.408203125 0.78515625 0.478515625 0.806640625 0.4375 0.79296875 0.48828125 0.787109375 0.458984375 0.677734375 0.541015625 0.654296875 0.51953125 0.482421875 0.560546875 0.494140625 0.541015625 0.2734375 0.4609375 0.283203125 0.431640625 0.158203125 0.2734375 0.19921875 0.55078125 0.248046875 0.642578125 0.21875 0.56640625 0.314453125 0.65625 0.29296875 0.55859375 0.443359375 0.650390625 0.439453125 0.541015625 0.572265625 0.619140625 0.564453125 0.55078125 0.6640625 0.587890625 0.65234375 0.525390625 0.705078125 0.580078125 0.671875 0.533203125 0.697265625 0.5234375 0.6328125 0.4296875 0.66796875 0.376953125 0.580078125 0.3046875 0.611328125 0.234375 0.494140625 0.26953125 0.45703125 0.240234375 0.384765625 0.384765625 0.31640625 0.375 0.060546875 0.458984375 0.0234375 0.435546875 0.1875 0.525390625 0.16015625 0.552734375 0.462890625 0.609375 0.4609375 0.609375 0.703125 0.6484375 0.7265625 0.66015625 0.841796875 0.671875 0.833984375 0.64453125 0.900390625 0.67578125 0.85546875 0.642578125 0.880859375 0.59375 0.748046875 0.513671875 0.755859375 0.39453125 0.53125 0.33203125 0.58203125 0.1796875 0.349609375 0.193359375 0.322265625 0.12890625 0.177734375 0.23828125 0.125 0.7734375 0.00390625 0.87109375 -0.072265625 0.80078125 0.15234375 0.884765625 0.08984375 0.755859375 0.423828125 0.8515625 0.3984375 0.66796875 0.681640625 0.76953125 0.662109375 0.65234375 0.873046875 0.681640625 0.83984375 0.54296875 0.943359375 0.60546875 0.8671875 0.494140625 0.912109375 0.443359375 0.7578125 0.255859375 0.826171875 0.140625 0.62109375 0.078125 0.70703125 -0.05078125 0.447265625 0.1328125 0.404296875 0.078125 0.244140625 0.443359375 0.134765625 0.560546875 0.2890625 0.630859375 0.224609375 0.583984375 0.3203125 0.66015625 0.2578125 0.615234375 0.3671875 0.6796875 0.326171875 0.63671875 0.4453125 0.6953125 0.408203125 0.6484375 0.509765625 0.681640625 0.478515625 0.638671875 0.537109375 0.685546875 0.484375 0.65234375 0.515625 0.640625 0.46484375 0.568359375 0.52734375 0.5078125 0.482421875 0.4453125 0.546875 0.390625 0.50390625 0.390625 0.49609375 0.365234375 0.458984375 0.451171875 0.384765625 0.646484375 0.314453125 0.681640625 0.3046875 0.669921875 0.35546875 0.705078125 0.349609375 0.6796875 0.41796875 0.720703125 0.42578125 0.638671875 0.51171875 0.693359375 0.515625 0.61328125 0.59765625 0.625 0.59375 0.53515625 0.638671875 0.5703125 0.6171875 0.498046875 0.640625 0.47265625 0.583984375 0.357421875 0.61328125 0.302734375 0.54296875 0.27734375 0.55859375 0.248046875 0.48046875 0.34765625 0.44921875 0.3359375 0.396484375 0.501953125 0.3515625 0.173828125 0.126953125 0.005859375 0.10546875 0.1796875 0.234375 0.025390625 0.224609375 0.279296875 0.4296875 0.125 0.4453125 0.41015625 0.619140625 0.26953125 0.62890625 0.455078125 0.76171875 0.39453125 0.75390625 0.5625 0.8203125 0.451171875 0.783203125 0.57421875 0.810546875 0.576171875 0.708984375 0.79296875 0.7421875 0.86328125 0.591796875 0.994140625 0.623046875 1.076171875 0.4296875 0.923828125 0.380859375 0.9453125 0.263671875 0.564453125 0.193359375 0.63671875 0.396484375 0.6796875 0.40234375 0.640625 0.447265625 0.69140625 0.45703125 0.61328125 0.5078125 0.666015625 0.53125 0.55078125 0.5703125 0.603515625 0.595703125 0.505859375 0.6328125 0.53125 0.634765625 0.455078125 0.634765625 0.50390625 0.6328125 0.453125 0.623046875 0.474609375 0.564453125 0.384765625 0.541015625 0.37890625 0.45703125 0.34375 0.47265625 0.345703125 0.37890625 0.3984375 0.390625 0.435546875 0.345703125 0.53515625 0.373046875 0.03125 0.201171875 -0.017578125 0.1796875 0.1015625 0.353515625 0.0625 0.33984375 0.30078125 0.646484375 0.27734375 0.59375 0.458984375 0.759765625 0.486328125 0.779296875 0.638671875 0.90625 0.642578125 0.890625 0.751953125 0.91015625 0.697265625 0.880859375 0.771484375 0.861328125 0.69921875 0.703125 0.80859375 0.6640625 0.728515625 0.412109375 0.76953125 0.4609375 0.669921875 0.158203125 0.533203125 0.22265625 0.453125 0.046875 0.2265625 0.146484375 0.392578125 -0.025390625 0.470703125 -0.033203125 0.4765625 0.12109375 0.564453125 0.125 0.595703125 0.412109375 0.66796875 0.4296875 0.681640625 0.68359375 0.72265625 0.6875 0.740234375 0.873046875 0.755859375 0.880859375 0.7109375 0.935546875 0.751953125 0.88671875 0.705078125 0.916015625 0.640625 0.78515625 0.560546875 0.822265625 0.392578125 0.59765625 0.322265625 0.572265625 0.166015625 0.361328125 0.201171875 0.294921875 0.12109375 0.119140625 0.24609375 0.037109375 0.693359375 0.3203125 0.666015625 0.349609375 0.634765625 0.291015625 0.5078125 0.361328125 0.482421875 0.306640625 0.3203125 0.423828125 0.330078125 0.35546875 0.23828125 0.49609375 0.26171875 0.41015625 0.30078125 0.533203125 0.3203125 0.4375 0.47265625 0.51953125 0.47265625 0.421875 0.6796875 0.458984375 0.625 0.373046875 0.724609375 0.416015625 0.892578125 0.306640625 0.833984375 0.396484375 0.814453125 0.32421875 0.68359375 0.43359375 0.671875 0.361328125 0.529296875 0.484375 0.546875 0.3984375 0.48828125 0.5078125 0.51171875 0.412109375 0.583984375 0.48046875 0.58984375 0.39453125 0.74609375 0.44140625 0.734375 0.357421875 0.916015625 0.39453125 0.859375 0.3203125 0.923828125 0.404296875 0.240234375 0.515625 0.4375 0.443359375 0.28125 0.56640625 0.4765625 0.490234375 0.373046875 0.583984375 0.5 0.537109375 0.466796875 0.58203125 0.53125 0.55859375 0.541015625 0.56640625 0.58984375 0.53515625 0.6328125 0.51953125 0.712890625 0.46875 0.666015625 0.47265625 0.701171875 0.408203125 0.51953125 0.46484375 0.5078125 0.41796875 0.291015625 0.49609375 0.1796875 0.537109375 0.2421875 0.5703125 0.3359375 0.53125 0.333984375 0.591796875 0.40625 0.544921875 0.46484375 0.57421875 0.53125 0.501953125 0.548828125 0.525390625 0.6015625 0.513671875 0.833984375 0.513671875 0.912109375 0.501953125 0.8125 0.583984375 0.85546875 0.5859375 0.75 0.63671875 0.83984375 0.60546875 0.763671875 0.630859375 0.771484375 0.564453125 0.625 0.6015625 0.666015625 0.458984375 0.716796875 0.501953125 0.62890625 0.54296875 0.65234375 0.580078125 0.53515625 0.625 0.60546875 0.638671875 0.517578125 0.6640625 0.3515625 0.646484375 0.375 0.708984375 0.42578125 0.705078125 0.486328125 0.73828125 0.666015625 0.6796875 0.607421875 0.7109375 0.7109375 0.64453125 0.408203125 0.955078125 0.224609375 0.8671875 0.228515625 0.65625 0.498046875 0.279296875 0.63671875 0.474609375 0.671875 0.3515625 0.671875 0.236328125 0.873046875 0.216796875 0.51171875 0.6875 0.455078125 0.70703125 0.48046875 0.615234375 0.396484375 0.66015625 0.44140625 0.521484375 0.33203125 0.57421875 0.412109375 0.380859375 0.61328125 0.552734375 0.51171875 0.576171875 0.44140625 0.5390625 0.4765625 0.416015625 0.6796875 0.833984375 0.876953125 0.74609375 0.8671875 0.572265625 0.541015625 0.296875 0.529296875 0.78125 0.564453125 0.646484375 0.490234375 0.4921875 0.298828125 0.3125 0.4453125 0.658203125 0.34765625 0.61328125 0.373046875 0.521484375 0.52734375 0.39453125 0.65625 0.931640625 0.513671875 0.81640625 0.349609375 0.533203125 0.32421875 0.189453125 0.408203125 0.615234375 0.3515625 0.53515625 0.390625 0.478515625 0.5234375 0.421875 0.826171875 0.857421875 0.826171875 0.673828125 0.650390625 0.5 0.296875 0.3046875 0.60546875 0.904296875 0.46875 0.771484375 0.337890625 0.546875 0.298828125 0.255859375 0.640625 0.388671875 0.65234375 0.447265625 0.6171875 0.517578125 0.576171875 0.5859375 0.52734375 0.466796875 0.517578125 0.568359375 0.5859375 0.580078125 0.78515625 0.5234375 0.84375 0.44921875 0.853515625 0.392578125 0.806640625 0.37890625 0.83203125 0.3359375 0.765625 0.3046875 0.3671875 0.525390625 0.515625 0.658203125 0.5390625 0.78515625 0.70703125 0.53515625 0.57421875 0.5703125 0.54296875 0.61328125 0.587890625 0.330078125 0.61328125 0.380859375 0.6171875 0.458984375 0.619140625 0.5390625 0.150390625 0.21875 0.1875 0.349609375 0.27734375 0.541015625 0.357421875 0.69140625 0.544921875 0.4765625 0.4296875 0.58984375 0.435546875 0.662109375 0.607421875 0.24609375 0.640625 0.32421875 0.62890625 0.46875 0.61328125 0.58203125 0.568359375 0.51953125 0.783203125 0.720703125 0.73828125 0.84375 0.5234375 0.578125 0.341796875 0.84765625 0.384765625 0.9921875 0.439453125 0.03125 0.513671875 0.185546875 0.61328125 0.49609375 0.6484375 0.73828125 0.42578125 0.5078125 0.486328125 0.78125 0.591796875 0.91796875 0.435546875 0.01953125 0.53515625 0.197265625 0.638671875 0.486328125 0.70703125 0.7265625 0.623046875 0.232421875 0.65625 0.265625 0.6875 0.32421875 0.697265625 0.41015625 0.453125 0.451171875 0.529296875 0.779296875 0.63671875 0.9296875 0.15625 0.138671875 0.13671875 0.267578125 0.248046875 0.484375 0.333984375 0.65234375 0.474609375 0.580078125 0.748046875 0.71484375 0.8359375 0.869140625 0.53125 0.46484375 0.369140625 0.5078125 0.30078125 0.59375 0.103515625 0.09375 0.201171875 0.271484375 0.396484375 0.52734375 0.55078125 0.74609375 0.650390625 0.630859375 0.849609375 0.587890625 0.94140625 0.521484375 0.82421875 0.453125 0.92578125 0.421875 0.794921875 0.310546875 0.681640625 -0.05078125 0.73046875 0.1171875 0.6875 0.42578125 0.669921875 0.671875 0.490234375 0.5078125 0.390625 0.548828125 0.3828125 0.615234375 -0.0625 0.134765625 -0.001953125 0.166015625 -0.03125 0.318359375 0.044921875 0.322265625 0.126953125 0.57421875 0.3046875 0.25 0.3671875 0.48828125 0.494140625 0.5078125 0.521484375 0.53515625 0.607421875 0.53125 0.494140625 0.501953125 0.255859375 0.287109375 0.107421875 0.185546875 0.265625 -0.068359375 0.4296875 -0.015625 0.212890625 0.109375 0.408203125 0.146484375 0.333984375 0.40234375 0.677734375 0.193359375 0.58984375 0.4296875 0.037109375 0.19140625 0.078125 0.1328125 0.103515625 0.35546875 0.150390625 0.267578125 0.2734375 0.50390625 0.30078125 0.154296875 0.408203125 0.3828125 0.607421875 0.392578125 0.45703125 0.43359375 0.369140625 0.455078125 0.548828125 0.537109375 0.919921875 0.390625 1.095703125 0.296875 0.462890625 0.314453125 0.48046875 0.39453125 0.51171875 0.521484375 0.451171875 0.501953125 0.2734375 0.466796875 0.2421875 0.421875 0.693359375 0.189453125 0.408203125 0.294921875 0.396484375 0.236328125 0.162109375 0.36328125 0.197265625 0.31640625 0.40625 0.51171875 0.01953125 0.341796875 -0.109375 0.265625 0.673828125 0.4140625 0.763671875 0.39453125 0.767578125 0.322265625 0.70703125 0.345703125 0.10546875 0.310546875 0.126953125 0.376953125 0.107421875 0.310546875 0.333984375 0.458984375 0.291015625 0.310546875 0.41796875 0.50390625 0.4921875 0.2578125 0.505859375 0.134765625 0.59375 0.443359375 0.619140625 0.095703125 0.576171875 -0.037109375 0.54296875 0.359375 0.517578125 0.40625 0.501953125 0.484375 0.521484375 0.560546875 0.25390625 0.3671875 0.0859375 0.169921875 0.5546875 0.671875 0.69140625 0.806640625 0.568359375 0.623046875 0.5625 0.5859375 0.7734375 0.298828125 0.826171875 0.294921875 0.8125 0.26953125 0.796875 0.28125 0.576171875 0.513671875 0.58203125 0.568359375 0.91796875 0.310546875 1 0.361328125 0.9921875 0.310546875 0.90625 0.310546875 0.486328125 0.572265625 0.408203125 0.609375 0.375 0.6796875 0.48828125 0.720703125 0.5859375 0.685546875 0.70703125 0.62109375 0.57421875 0.546875 0.482421875 0.634765625 0.75390625 0.921875 0.673828125 0.978515625 0.63671875 0.986328125 0.5625 0.7734375 0.4453125 0.951171875 0.5 0.751953125 0.658203125 0.77734375 0.349609375 0.931640625 0.234375 0.92578125 0.22265625 0.93359375 0.4296875 0.673828125 0.509765625 0.767578125 0.693359375 0.876953125 0.546875 0.95703125 0.4765625 1 0.541015625 0.74609375 0.5703125 0.888671875 0.599609375 0.72265625 0.646484375 0.921875 0.111328125 0.544921875 0.158203125 0.490234375 0.734375 0.697265625 0.62109375 0.759765625 0.7734375 0.87109375 0.328125 0.23046875 -0.01171875 0.189453125 0.70703125 0.572265625 0.41796875 0.591796875 0.556640625 0.337890625 0.927734375 0.275390625 0.69921875 0.353515625 0.671875 0.46484375 0.6328125 0.404296875 0.560546875 0.45703125 0.59375 0.310546875 0.61328125 0.490234375 0.423828125 0.43359375 0.74609375 0.44921875 0.38671875 0.236328125 0.19140625 0.146484375 0.443359375 0.669921875 0.408203125 0.642578125 0.447265625 0.591796875 0.41796875 0.4296875 0.27734375 0.412109375 0.357421875 0.296875 0.455078125 0.142578125 0.56640625 0.341796875 0.427734375 0.40234375 0.296875 0.3828125 0.32421875 0.455078125 0.400390625 0.375 0.3984375 0.330078125 0.39453125 0.302734375 0.1640625 0.162109375 0.44140625 0.158203125 0.525390625 -0.05859375 0.689453125 0.65234375 0.634765625 0.666015625 0.65234375 0.640625 0.3984375 0.310546875 0.20703125 0.310546875 0.615234375 0.54296875 0.8203125 0.05078125 0.779296875 0.21875 0.451171875 0.732421875 0.57421875 0.919921875 0.4609375 0.787109375 0.462890625 0.62890625 0.484375 -0.005859375 0.56640625 0.14453125 0.32421875 0.09375 0.404296875 0.2578125 0.140625 0.17578125 0.21875 0.357421875 0.708984375 0.90625 0.552734375 0.7890625 0.697265625 -0.103515625 0.76171875 0.0546875 0.43359375 -0.0546875 0.486328125 0.1171875 0.1171875 0.044921875 0.16015625 0.234375 0.841796875 0.345703125 0.66796875 0.359375 0.73046875 0.470703125 0.419921875 0.3984375 0.990234375 0.4453125 0.615234375 0.876953125 0.68359375 0.57421875 0.919921875 0.515625 0.564453125 0.6171875 0.54296875 -0.01953125 0.48828125 0.15625 0.3125 -0.0703125 0.240234375 0.115234375 0.6875 0.900390625 0.369140625 0.5859375 0.732421875 0.609375 0.44140625 0.3359375 0.421875 0.375 0.330078125 -0.00390625 0.328125 0.083984375 0.306640625 0.17578125 0.31640625 0.05859375 0.65625 0.587890625 0.537109375 0.3046875 0.205078125 0.412109375 0.45703125 0.916015625 0.76171875 0.84375 0.78515625 0.849609375 0.5390625 0.208984375 0.546875 0.5546875 0.30859375 0.099609375 0.23828125 0.033203125 0.70703125 0.056640625 0.26171875 0.1171875 + + + + + + + + + 0.7647058823529411 0.7647058823529411 0.7647058823529411 1 0.7686274509803922 0.7686274509803922 0.7686274509803922 1 0.8235294117647058 0.8235294117647058 0.8235294117647058 1 0.803921568627451 0.803921568627451 0.803921568627451 1 0.9098039215686274 0.9098039215686274 0.9098039215686274 1 0.9647058823529412 0.9647058823529412 0.9647058823529412 1 1 1 1 1 0.9490196078431372 0.9490196078431372 0.9490196078431372 1 0.9411764705882353 0.9411764705882353 0.9411764705882353 1 0.8745098039215686 0.8745098039215686 0.8745098039215686 1 0.8274509803921568 0.8274509803921568 0.8274509803921568 1 0.7254901960784313 0.7254901960784313 0.7254901960784313 1 0.7803921568627451 0.7803921568627451 0.7803921568627451 1 0.7490196078431373 0.7490196078431373 0.7490196078431373 1 0.7607843137254902 0.7607843137254902 0.7607843137254902 1 0.6196078431372549 0.6196078431372549 0.6196078431372549 1 0.6078431372549019 0.6078431372549019 0.6078431372549019 1 0.6823529411764706 0.6823529411764706 0.6823529411764706 1 0.6509803921568628 0.6509803921568628 0.6509803921568628 1 0.7764705882352941 0.7764705882352941 0.7764705882352941 1 0.8117647058823529 0.8117647058823529 0.8117647058823529 1 0.8392156862745098 0.8392156862745098 0.8392156862745098 1 0.8980392156862745 0.8980392156862745 0.8980392156862745 1 0.9882352941176471 0.9882352941176471 0.9882352941176471 1 0.7843137254901961 0.7843137254901961 0.7843137254901961 1 0.7137254901960784 0.7137254901960784 0.7137254901960784 1 0.6784313725490196 0.6784313725490196 0.6784313725490196 1 0.5725490196078431 0.5725490196078431 0.5725490196078431 1 0.6392156862745098 0.6392156862745098 0.6392156862745098 1 0.6039215686274509 0.6039215686274509 0.6039215686274509 1 0.611764705882353 0.611764705882353 0.611764705882353 1 0.615686274509804 0.615686274509804 0.615686274509804 1 0.6745098039215687 0.6745098039215687 0.6745098039215687 1 0.6549019607843137 0.6549019607843137 0.6549019607843137 1 0.8196078431372549 0.8196078431372549 0.8196078431372549 1 0.8313725490196079 0.8313725490196079 0.8313725490196079 1 0.8862745098039215 0.8862745098039215 0.8862745098039215 1 0.984313725490196 0.984313725490196 0.984313725490196 1 0.8941176470588236 0.8941176470588236 0.8941176470588236 1 0.9294117647058824 0.9294117647058824 0.9294117647058824 1 0.5686274509803921 0.5686274509803921 0.5686274509803921 1 0.6313725490196078 0.6313725490196078 0.6313725490196078 1 0.596078431372549 0.596078431372549 0.596078431372549 1 0.6666666666666666 0.6666666666666666 0.6666666666666666 1 0.6588235294117647 0.6588235294117647 0.6588235294117647 1 0.8823529411764706 0.8823529411764706 0.8823529411764706 1 0.8784313725490196 0.8784313725490196 0.8784313725490196 1 0.9254901960784314 0.9254901960784314 0.9254901960784314 1 0.807843137254902 0.807843137254902 0.807843137254902 1 0.796078431372549 0.796078431372549 0.796078431372549 1 0.7176470588235294 0.7176470588235294 0.7176470588235294 1 0.6705882352941176 0.6705882352941176 0.6705882352941176 1 0.6235294117647059 0.6235294117647059 0.6235294117647059 1 0.5882352941176471 0.5882352941176471 0.5882352941176471 1 0.8156862745098039 0.8156862745098039 0.8156862745098039 1 0.8705882352941177 0.8705882352941177 0.8705882352941177 1 0.9803921568627451 0.9803921568627451 0.9803921568627451 1 0.9058823529411765 0.9058823529411765 0.9058823529411765 1 0.792156862745098 0.792156862745098 0.792156862745098 1 0.788235294117647 0.788235294117647 0.788235294117647 1 0.5607843137254902 0.5607843137254902 0.5607843137254902 1 0.6 0.6 0.6 1 0.8666666666666667 0.8666666666666667 0.8666666666666667 1 0.9019607843137255 0.9019607843137255 0.9019607843137255 1 0.9333333333333333 0.9333333333333333 0.9333333333333333 1 0.8470588235294118 0.8470588235294118 0.8470588235294118 1 0.8588235294117647 0.8588235294117647 0.8588235294117647 1 0.49411764705882355 0.49411764705882355 0.49411764705882355 1 0.47843137254901963 0.47843137254901963 0.47843137254901963 1 0.5568627450980392 0.5568627450980392 0.5568627450980392 1 0.5254901960784314 0.5254901960784314 0.5254901960784314 1 0.8352941176470589 0.8352941176470589 0.8352941176470589 1 0.9215686274509803 0.9215686274509803 0.9215686274509803 1 0.9529411764705882 0.9529411764705882 0.9529411764705882 1 0.5450980392156862 0.5450980392156862 0.5450980392156862 1 0.5215686274509804 0.5215686274509804 0.5215686274509804 1 0.5098039215686274 0.5098039215686274 0.5098039215686274 1 0.6980392156862745 0.6980392156862745 0.6980392156862745 1 0.6431372549019608 0.6431372549019608 0.6431372549019608 1 0.7725490196078432 0.7725490196078432 0.7725490196078432 1 0.7098039215686275 0.7098039215686275 0.7098039215686275 1 0.9450980392156862 0.9450980392156862 0.9450980392156862 1 0.6941176470588235 0.6941176470588235 0.6941176470588235 1 0.6352941176470588 0.6352941176470588 0.6352941176470588 1 0.9764705882352941 0.9764705882352941 0.9764705882352941 1 0.6901960784313725 0.6901960784313725 0.6901960784313725 1 0.5529411764705883 0.5529411764705883 0.5529411764705883 1 0.9686274509803922 0.9686274509803922 0.9686274509803922 1 0.7019607843137254 0.7019607843137254 0.7019607843137254 1 0.5137254901960784 0.5137254901960784 0.5137254901960784 1 0.8627450980392157 0.8627450980392157 0.8627450980392157 1 0.7215686274509804 0.7215686274509804 0.7215686274509804 1 0.9176470588235294 0.9176470588235294 0.9176470588235294 1 0.7372549019607844 0.7372549019607844 0.7372549019607844 1 0.7568627450980392 0.7568627450980392 0.7568627450980392 1 0.7450980392156863 0.7450980392156863 0.7450980392156863 1 0.5333333333333333 0.5333333333333333 0.5333333333333333 1 0.6274509803921569 0.6274509803921569 0.6274509803921569 1 0.5294117647058824 0.5294117647058824 0.5294117647058824 1 0.8 0.8 0.8 1 0.8509803921568627 0.8509803921568627 0.8509803921568627 1 0.8431372549019608 0.8431372549019608 0.8431372549019608 1 0.4980392156862745 0.4980392156862745 0.4980392156862745 1 0.6470588235294118 0.6470588235294118 0.6470588235294118 1 0.8549019607843137 0.8549019607843137 0.8549019607843137 1 0.8901960784313725 0.8901960784313725 0.8901960784313725 1 0.5372549019607843 0.5372549019607843 0.5372549019607843 1 0.7529411764705882 0.7529411764705882 0.7529411764705882 1 0.5843137254901961 0.5843137254901961 0.5843137254901961 1 0.592156862745098 0.592156862745098 0.592156862745098 1 0.7411764705882353 0.7411764705882353 0.7411764705882353 1 0.9607843137254902 0.9607843137254902 0.9607843137254902 1 0.4588235294117647 0.4588235294117647 0.4588235294117647 1 0.5803921568627451 0.5803921568627451 0.5803921568627451 1 0.9137254901960784 0.9137254901960784 0.9137254901960784 1 0.5764705882352941 0.5764705882352941 0.5764705882352941 1 0.5647058823529412 0.5647058823529412 0.5647058823529412 1 0.9372549019607843 0.9372549019607843 0.9372549019607843 1 0.6627450980392157 0.6627450980392157 0.6627450980392157 1 0.9921568627450981 0.9921568627450981 0.9921568627450981 1 0.6862745098039216 0.6862745098039216 0.6862745098039216 1 0.996078431372549 0.996078431372549 0.996078431372549 1 0.9725490196078431 0.9725490196078431 0.9725490196078431 1 0.7058823529411765 0.7058823529411765 0.7058823529411765 1 0.5176470588235295 0.5176470588235295 0.5176470588235295 1 0.7333333333333333 0.7333333333333333 0.7333333333333333 1 0.4392156862745098 0.4392156862745098 0.4392156862745098 1 0.40784313725490196 0.40784313725490196 0.40784313725490196 1 0.41568627450980394 0.41568627450980394 0.41568627450980394 1 0.43529411764705883 0.43529411764705883 0.43529411764705883 1 0.4 0.4 0.4 1 0.5019607843137255 0.5019607843137255 0.5019607843137255 1 0.34901960784313724 0.34901960784313724 0.34901960784313724 1 0.43137254901960786 0.43137254901960786 0.43137254901960786 1 0.4117647058823529 0.4117647058823529 0.4117647058823529 1 0.5490196078431373 0.5490196078431373 0.5490196078431373 1 0.396078431372549 0.396078431372549 0.396078431372549 1 0.9568627450980393 0.9568627450980393 0.9568627450980393 1 0.7294117647058823 0.7294117647058823 0.7294117647058823 1 0.48627450980392156 0.48627450980392156 0.48627450980392156 1 0.3686274509803922 0.3686274509803922 0.3686274509803922 1 0.5058823529411764 0.5058823529411764 0.5058823529411764 1 0.49019607843137253 0.49019607843137253 0.49019607843137253 1 0.44313725490196076 0.44313725490196076 0.44313725490196076 1 0.4823529411764706 0.4823529411764706 0.4823529411764706 1 0.38823529411764707 0.38823529411764707 0.38823529411764707 1 0.3764705882352941 0.3764705882352941 0.3764705882352941 1 0.42745098039215684 0.42745098039215684 0.42745098039215684 1 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 2 1 1 1 0 0 0 3 3 3 1 1 1 2 2 2 4 4 4 3 3 3 2 2 2 5 5 5 3 3 3 4 4 4 6 6 5 5 5 5 4 4 4 7 7 6 5 5 5 6 6 5 8 8 6 7 7 6 6 6 5 9 9 6 7 7 6 8 8 6 10 10 6 9 9 6 8 8 6 11 11 6 9 9 6 10 10 6 12 12 6 11 11 6 10 10 6 13 13 7 11 11 6 12 12 6 14 14 8 13 13 7 12 12 6 15 15 9 13 13 7 14 14 8 16 16 10 15 15 9 14 14 8 17 17 11 15 15 9 16 16 10 18 18 12 17 17 11 16 16 10 19 19 13 17 17 11 18 18 12 20 20 14 19 19 13 18 18 12 23 23 17 22 22 16 21 21 15 24 24 18 22 22 16 23 23 17 25 25 19 24 24 18 23 23 17 26 26 20 24 24 18 25 25 19 27 27 21 26 26 20 25 25 19 28 28 9 26 26 20 27 27 21 29 29 22 28 28 9 27 27 21 30 30 23 28 28 9 29 29 22 31 31 6 30 30 23 29 29 22 32 32 9 30 30 23 31 31 6 33 33 22 32 32 9 31 31 6 34 34 24 32 32 9 33 33 22 35 35 12 34 34 24 33 33 22 36 36 25 34 34 24 35 35 12 37 37 26 36 36 25 35 35 12 38 38 27 36 36 25 37 37 26 39 39 28 38 38 27 37 37 26 40 40 29 38 38 27 39 39 28 41 41 16 40 40 29 39 39 28 44 44 32 43 43 31 42 42 30 45 45 33 43 43 31 44 44 32 46 46 1 45 45 33 44 44 32 47 47 34 45 45 33 46 46 1 48 48 35 47 47 34 46 46 1 49 49 9 47 47 34 48 48 35 50 50 36 49 49 9 48 48 35 51 51 37 49 49 9 50 50 36 52 52 6 51 51 37 50 50 36 53 53 38 51 51 37 52 52 6 54 54 39 53 53 38 52 52 6 55 55 20 53 53 38 54 54 39 56 56 3 55 55 20 54 54 39 57 57 11 55 55 20 56 56 3 58 58 17 57 57 11 56 56 3 59 59 40 57 57 11 58 58 17 60 60 41 59 59 40 58 58 17 61 61 42 59 59 40 60 60 41 62 62 16 61 61 42 60 60 41 65 65 43 64 64 31 63 63 29 66 66 44 64 64 31 65 65 43 67 67 14 66 66 44 65 65 43 68 68 34 66 66 44 67 67 14 69 69 34 68 68 34 67 67 14 70 70 45 68 68 34 69 69 34 71 71 46 70 70 45 69 69 34 72 72 23 70 70 45 71 71 46 73 73 6 72 72 23 71 71 46 74 74 38 72 72 23 73 73 6 75 75 47 74 74 38 73 73 6 76 76 48 74 74 38 75 75 47 77 77 49 76 76 48 75 75 47 78 78 50 76 76 48 77 77 49 79 79 51 78 78 50 77 77 49 80 80 27 78 78 50 79 79 51 81 81 52 80 80 27 79 79 51 82 82 53 80 80 27 81 81 52 83 83 42 82 82 53 81 81 52 86 86 32 85 85 31 84 84 31 87 87 33 85 85 31 86 86 32 88 88 0 87 87 33 86 86 32 89 89 54 87 87 33 88 88 0 90 90 2 89 89 54 88 88 0 91 91 55 89 89 54 90 90 2 92 92 46 91 91 55 90 90 2 93 93 56 91 91 55 92 92 46 94 94 6 93 93 56 92 92 46 95 95 45 93 93 56 94 94 6 96 96 57 95 95 45 94 94 6 97 97 58 95 95 45 96 96 57 98 98 59 97 97 58 96 96 57 99 99 25 97 97 58 98 98 59 100 100 43 99 99 25 98 98 59 101 101 60 99 99 25 100 100 43 102 102 41 101 101 60 100 100 43 103 103 61 101 101 60 102 102 41 104 104 29 103 103 61 102 102 41 107 107 47 106 106 55 105 105 62 108 108 63 106 106 55 107 107 47 109 109 6 108 108 63 107 107 47 110 110 6 108 108 63 109 109 6 111 111 6 110 110 6 109 109 6 112 112 6 110 110 6 111 111 6 113 113 6 112 112 6 111 111 6 114 114 6 112 112 6 113 113 6 115 115 6 114 114 6 113 113 6 116 116 6 114 114 6 115 115 6 117 117 6 116 116 6 115 115 6 118 118 6 116 116 6 117 117 6 119 119 6 118 118 6 117 117 6 120 120 56 118 118 6 119 119 6 121 121 64 120 120 56 119 119 6 122 122 35 120 120 56 121 121 64 123 123 36 122 122 35 121 121 64 124 124 65 122 122 35 123 123 36 125 125 66 124 124 65 123 123 36 128 128 69 127 127 68 126 126 67 129 129 70 127 127 68 128 128 69 130 130 51 129 129 70 128 128 69 131 131 43 129 129 70 130 130 51 132 132 71 131 131 43 130 130 51 133 133 3 131 131 43 132 132 71 134 134 63 133 133 3 132 132 71 135 135 37 133 133 3 134 134 63 136 136 6 135 135 37 134 134 63 137 137 72 135 135 37 136 136 6 138 138 73 137 137 72 136 136 6 139 139 0 137 137 72 138 138 73 140 140 34 139 139 0 138 138 73 141 141 17 139 139 0 140 140 34 142 142 26 141 141 17 140 140 34 143 143 74 141 141 17 142 142 26 144 144 40 143 143 74 142 142 26 145 145 75 143 143 74 144 144 40 146 146 76 145 145 75 144 144 40 149 149 43 148 148 15 147 147 29 150 150 18 148 148 15 149 149 43 151 151 14 150 150 18 149 149 43 152 152 34 150 150 18 151 151 14 153 153 34 152 152 34 151 151 14 154 154 55 152 152 34 153 153 34 155 155 46 154 154 55 153 153 34 156 156 56 154 154 55 155 155 46 157 157 6 156 156 56 155 155 46 158 158 46 156 156 56 157 157 6 159 159 57 158 158 46 157 157 6 160 160 59 158 158 46 159 159 57 161 161 59 160 160 59 159 159 57 162 162 25 160 160 59 161 161 59 163 163 51 162 162 25 161 161 59 164 164 60 162 162 25 163 163 51 165 165 52 164 164 60 163 163 51 166 166 53 164 164 60 165 165 52 167 167 42 166 166 53 165 165 52 168 168 7 96 96 57 94 94 6 98 98 59 96 96 57 168 168 7 169 169 14 98 98 59 168 168 7 100 100 43 98 98 59 169 169 14 170 170 77 100 100 43 169 169 14 102 102 41 100 100 43 170 170 77 171 171 78 102 102 41 170 170 77 104 104 29 102 102 41 171 171 78 84 84 31 104 104 29 171 171 78 172 172 6 117 117 6 115 115 6 119 119 6 117 117 6 172 172 6 173 173 6 119 119 6 172 172 6 121 121 64 119 119 6 173 173 6 174 174 73 121 121 64 173 173 6 123 123 36 121 121 64 174 174 73 175 175 22 123 123 36 174 174 73 125 125 66 123 123 36 175 175 22 105 105 62 125 125 66 175 175 22 176 176 8 33 33 22 31 31 6 35 35 12 33 33 22 176 176 8 177 177 79 35 35 12 176 176 8 37 37 26 35 35 12 177 177 79 178 178 80 37 37 26 177 177 79 39 39 28 37 37 26 178 178 80 179 179 18 39 39 28 178 178 80 41 41 16 39 39 28 179 179 18 21 21 15 41 41 16 179 179 18 180 180 81 159 159 57 157 157 6 161 161 59 159 159 57 180 180 81 181 181 79 161 161 59 180 180 81 163 163 51 161 161 59 181 181 79 182 182 82 163 163 51 181 181 79 165 165 52 163 163 51 182 182 82 183 183 83 165 165 52 182 182 82 167 167 42 165 165 52 183 183 83 147 147 29 167 167 42 183 183 83 184 184 84 138 138 73 136 136 6 140 140 34 138 138 73 184 184 84 185 185 21 140 140 34 184 184 84 142 142 26 140 140 34 185 185 21 186 186 85 142 142 26 185 185 21 144 144 40 142 142 26 186 186 85 187 187 86 144 144 40 186 186 85 146 146 76 144 144 40 187 187 86 126 126 67 146 146 76 187 187 86 188 188 6 12 12 6 10 10 6 14 14 8 12 12 6 188 188 6 189 189 72 14 14 8 188 188 6 16 16 10 14 14 8 189 189 72 190 190 65 16 16 10 189 189 72 18 18 12 16 16 10 190 190 65 191 191 58 18 18 12 190 190 65 20 20 14 18 18 12 191 191 58 0 0 0 20 20 14 191 191 58 192 192 73 75 75 47 73 73 6 77 77 49 75 75 47 192 192 73 193 193 0 77 77 49 192 192 73 79 79 51 77 77 49 193 193 0 194 194 82 79 79 51 193 193 0 81 81 52 79 79 51 194 194 82 195 195 83 81 81 52 194 194 82 83 83 42 81 81 52 195 195 83 63 63 29 83 83 42 195 195 83 196 196 87 54 54 39 52 52 6 56 56 3 54 54 39 196 196 87 197 197 19 56 56 3 196 196 87 58 58 17 56 56 3 197 197 19 198 198 88 58 58 17 197 197 19 60 60 41 58 58 17 198 198 88 199 199 28 60 60 41 198 198 88 62 62 16 60 60 41 199 199 28 42 42 30 62 62 16 199 199 28 3 3 3 200 200 0 1 1 1 201 201 34 200 200 0 3 3 3 5 5 5 201 201 34 3 3 3 202 202 4 201 201 34 5 5 5 7 7 6 202 202 4 5 5 5 203 203 84 202 202 4 7 7 6 9 9 6 203 203 84 7 7 6 11 11 6 203 203 84 9 9 6 24 24 18 204 204 29 22 22 16 205 205 44 204 204 29 24 24 18 26 26 20 205 205 44 24 24 18 206 206 13 205 205 44 26 26 20 28 28 9 206 206 13 26 26 20 207 207 54 206 206 13 28 28 9 30 30 23 207 207 54 28 28 9 32 32 9 207 207 54 30 30 23 195 195 83 65 65 43 63 63 29 208 208 50 65 65 43 195 195 83 194 194 82 208 208 50 195 195 83 209 209 14 208 208 50 194 194 82 193 193 0 209 209 14 194 194 82 210 210 4 209 209 14 193 193 0 192 192 73 210 210 4 193 193 0 73 73 6 210 210 4 192 192 73 129 129 70 211 211 89 127 127 68 212 212 40 211 211 89 129 129 70 131 131 43 212 212 40 129 129 70 213 213 32 212 212 40 131 131 43 133 133 3 213 213 32 131 131 43 214 214 14 213 213 32 133 133 3 135 135 37 214 214 14 133 133 3 137 137 72 214 214 14 135 135 37 66 66 44 215 215 31 64 64 31 216 216 32 215 215 31 66 66 44 68 68 34 216 216 32 66 66 44 217 217 79 216 216 32 68 68 34 70 70 45 217 217 79 68 68 34 218 218 71 217 217 79 70 70 45 72 72 23 218 218 71 70 70 45 74 74 38 218 218 71 72 72 23 191 191 58 2 2 2 0 0 0 219 219 62 2 2 2 191 191 58 190 190 65 219 219 62 191 191 58 220 220 4 219 219 62 190 190 65 189 189 72 220 220 4 190 190 65 221 221 6 220 220 4 189 189 72 188 188 6 221 221 6 189 189 72 10 10 6 221 221 6 188 188 6 150 150 18 222 222 16 148 148 15 223 223 43 222 222 16 150 150 18 152 152 34 223 223 43 150 150 18 224 224 14 223 223 43 152 152 34 154 154 55 224 224 14 152 152 34 225 225 2 224 224 14 154 154 55 156 156 56 225 225 2 154 154 55 158 158 46 225 225 2 156 156 56 175 175 22 107 107 47 105 105 62 226 226 87 107 107 47 175 175 22 174 174 73 226 226 87 175 175 22 227 227 6 226 226 87 174 174 73 173 173 6 227 227 6 174 174 73 228 228 6 227 227 6 173 173 6 172 172 6 228 228 6 173 173 6 115 115 6 228 228 6 172 172 6 87 87 33 229 229 31 85 85 31 230 230 43 229 229 31 87 87 33 89 89 54 230 230 43 87 87 33 231 231 0 230 230 43 89 89 54 91 91 55 231 231 0 89 89 54 232 232 10 231 231 0 91 91 55 93 93 56 232 232 10 91 91 55 95 95 45 232 232 10 93 93 56 187 187 86 128 128 69 126 126 67 233 233 32 128 128 69 187 187 86 186 186 85 233 233 32 187 187 86 234 234 58 233 233 32 186 186 85 185 185 21 234 234 58 186 186 85 235 235 7 234 234 58 185 185 21 184 184 84 235 235 7 185 185 21 136 136 6 235 235 7 184 184 84 108 108 63 236 236 90 106 106 55 237 237 47 236 236 90 108 108 63 110 110 6 237 237 47 108 108 63 238 238 6 237 237 47 110 110 6 112 112 6 238 238 6 110 110 6 239 239 6 238 238 6 112 112 6 114 114 6 239 239 6 112 112 6 116 116 6 239 239 6 114 114 6 171 171 78 86 86 32 84 84 31 240 240 91 86 86 32 171 171 78 170 170 77 240 240 91 171 171 78 241 241 0 240 240 91 170 170 77 169 169 14 241 241 0 170 170 77 242 242 57 241 241 0 169 169 14 168 168 7 242 242 57 169 169 14 94 94 6 242 242 57 168 168 7 45 45 33 243 243 30 43 43 31 244 244 32 243 243 30 45 45 33 47 47 34 244 244 32 45 45 33 245 245 79 244 244 32 47 47 34 49 49 9 245 245 79 47 47 34 246 246 21 245 245 79 49 49 9 51 51 37 246 246 21 49 49 9 53 53 38 246 246 21 51 51 37 183 183 83 149 149 43 147 147 29 247 247 50 149 149 43 183 183 83 182 182 82 247 247 50 183 183 83 248 248 0 247 247 50 182 182 82 181 181 79 248 248 0 182 182 82 249 249 92 248 248 0 181 181 79 180 180 81 249 249 92 181 181 79 157 157 6 249 249 92 180 180 81 179 179 18 23 23 17 21 21 15 250 250 93 23 23 17 179 179 18 178 178 80 250 250 93 179 179 18 251 251 19 250 250 93 178 178 80 177 177 79 251 251 19 178 178 80 252 252 92 251 251 19 177 177 79 176 176 8 252 252 92 177 177 79 31 31 6 252 252 92 176 176 8 199 199 28 44 44 32 42 42 30 253 253 91 44 44 32 199 199 28 198 198 88 253 253 91 199 199 28 254 254 1 253 253 91 198 198 88 197 197 19 254 254 1 198 198 88 255 255 72 254 254 1 197 197 19 196 196 87 255 255 72 197 197 19 52 52 6 255 255 72 196 196 87 13 13 7 203 203 84 11 11 6 256 256 4 203 203 84 13 13 7 15 15 9 256 256 4 13 13 7 257 257 19 256 256 4 15 15 9 17 17 11 257 257 19 15 15 9 258 258 17 257 257 19 17 17 11 19 19 13 258 258 17 17 17 11 97 97 58 232 232 10 95 95 45 259 259 94 232 232 10 97 97 58 99 99 25 259 259 94 97 97 58 260 260 15 259 259 94 99 99 25 101 101 60 260 260 15 99 99 25 261 261 89 260 260 15 101 101 60 103 103 61 261 261 89 101 101 60 34 34 24 207 207 54 32 32 9 262 262 95 207 207 54 34 34 24 36 36 25 262 262 95 34 34 24 263 263 15 262 262 95 36 36 25 38 38 27 263 263 15 36 36 25 264 264 96 263 263 15 38 38 27 40 40 29 264 264 96 38 38 27 160 160 59 225 225 2 158 158 46 265 265 94 225 225 2 160 160 59 162 162 25 265 265 94 160 160 59 266 266 52 265 265 94 162 162 25 164 164 60 266 266 52 162 162 25 267 267 76 266 266 52 164 164 60 166 166 53 267 267 76 164 164 60 76 76 48 218 218 71 74 74 38 268 268 14 218 218 71 76 76 48 78 78 50 268 268 14 76 76 48 269 269 97 268 268 14 78 78 50 80 80 27 269 269 97 78 78 50 270 270 96 269 269 97 80 80 27 82 82 53 270 270 96 80 80 27 55 55 20 246 246 21 53 53 38 271 271 79 246 246 21 55 55 20 57 57 11 271 271 79 55 55 20 272 272 52 271 271 79 57 57 11 59 59 40 272 272 52 57 57 11 273 273 98 272 272 52 59 59 40 61 61 42 273 273 98 59 59 40 118 118 6 239 239 6 116 116 6 274 274 6 239 239 6 118 118 6 120 120 56 274 274 6 118 118 6 275 275 46 274 274 6 120 120 56 122 122 35 275 275 46 120 120 56 276 276 12 275 275 46 122 122 35 124 124 65 276 276 12 122 122 35 139 139 0 214 214 14 137 137 72 277 277 82 214 214 14 139 139 0 141 141 17 277 277 82 139 139 0 278 278 40 277 277 82 141 141 17 143 143 74 278 278 40 141 141 17 279 279 67 278 278 40 143 143 74 145 145 75 279 279 67 143 143 74 226 226 87 109 109 6 107 107 47 280 280 6 109 109 6 226 226 87 227 227 6 280 280 6 226 226 87 281 281 6 280 280 6 227 227 6 228 228 6 281 281 6 227 227 6 115 115 6 281 281 6 228 228 6 219 219 62 4 4 4 2 2 2 282 282 47 4 4 4 219 219 62 220 220 4 282 282 47 219 219 62 283 283 56 282 282 47 220 220 4 221 221 6 283 283 56 220 220 4 10 10 6 283 283 56 221 221 6 250 250 93 25 25 19 23 23 17 284 284 99 25 25 19 250 250 93 251 251 19 284 284 99 250 250 93 285 285 100 284 284 99 251 251 19 252 252 92 285 285 100 251 251 19 31 31 6 285 285 100 252 252 92 240 240 91 88 88 0 86 86 32 286 286 12 88 88 0 240 240 91 241 241 0 286 286 12 240 240 91 287 287 71 286 286 12 241 241 0 242 242 57 287 287 71 241 241 0 94 94 6 287 287 71 242 242 57 247 247 50 151 151 14 149 149 43 288 288 24 151 151 14 247 247 50 248 248 0 288 288 24 247 247 50 289 289 21 288 288 24 248 248 0 249 249 92 289 289 21 248 248 0 157 157 6 289 289 21 249 249 92 208 208 50 67 67 14 65 65 43 290 290 12 67 67 14 208 208 50 209 209 14 290 290 12 208 208 50 291 291 2 290 290 12 209 209 14 210 210 4 291 291 2 209 209 14 73 73 6 291 291 2 210 210 4 253 253 91 46 46 1 44 44 32 292 292 59 46 46 1 253 253 91 254 254 1 292 292 59 253 253 91 293 293 101 292 292 59 254 254 1 255 255 72 293 293 101 254 254 1 52 52 6 293 293 101 255 255 72 233 233 32 130 130 51 128 128 69 294 294 59 130 130 51 233 233 32 234 234 58 294 294 59 233 233 32 295 295 45 294 294 59 234 234 58 235 235 7 295 295 45 234 234 58 136 136 6 295 295 45 235 235 7 262 262 95 206 206 13 207 207 54 296 296 78 206 206 13 262 262 95 263 263 15 296 296 78 262 262 95 297 297 60 296 296 78 263 263 15 264 264 96 297 297 60 263 263 15 274 274 6 238 238 6 239 239 6 298 298 57 238 238 6 274 274 6 275 275 46 298 298 57 274 274 6 299 299 2 298 298 57 275 275 46 276 276 12 299 299 2 275 275 46 265 265 94 224 224 14 225 225 2 300 300 18 224 224 14 265 265 94 266 266 52 300 300 18 265 265 94 301 301 60 300 300 18 266 266 52 267 267 76 301 301 60 266 266 52 256 256 4 202 202 4 203 203 84 302 302 3 202 202 4 256 256 4 257 257 19 302 302 3 256 256 4 303 303 11 302 302 3 257 257 19 258 258 17 303 303 11 257 257 19 277 277 82 213 213 32 214 214 14 304 304 40 213 213 32 277 277 82 278 278 40 304 304 40 277 277 82 305 305 102 304 304 40 278 278 40 279 279 67 305 305 102 278 278 40 259 259 94 231 231 0 232 232 10 306 306 103 231 231 0 259 259 94 260 260 15 306 306 103 259 259 94 307 307 69 306 306 103 260 260 15 261 261 89 307 307 69 260 260 15 271 271 79 245 245 79 246 246 21 308 308 44 245 245 79 271 271 79 272 272 52 308 308 44 271 271 79 309 309 40 308 308 44 272 272 52 273 273 98 309 309 40 272 272 52 268 268 14 217 217 79 218 218 71 310 310 33 217 217 79 268 268 14 269 269 97 310 310 33 268 268 14 311 311 27 310 310 33 269 269 97 270 270 96 311 311 27 269 269 97 292 292 59 48 48 35 46 46 1 312 312 62 48 48 35 292 292 59 293 293 101 312 312 62 292 292 59 52 52 6 312 312 62 293 293 101 284 284 99 27 27 21 25 25 19 313 313 45 27 27 21 284 284 99 285 285 100 313 313 45 284 284 99 31 31 6 313 313 45 285 285 100 286 286 12 90 90 2 88 88 0 314 314 66 90 90 2 286 286 12 287 287 71 314 314 66 286 286 12 94 94 6 314 314 66 287 287 71 282 282 47 6 6 5 4 4 4 315 315 6 6 6 5 282 282 47 283 283 56 315 315 6 282 282 47 10 10 6 315 315 6 283 283 56 280 280 6 111 111 6 109 109 6 316 316 6 111 111 6 280 280 6 281 281 6 316 316 6 280 280 6 115 115 6 316 316 6 281 281 6 290 290 12 69 69 34 67 67 14 317 317 104 69 69 34 290 290 12 291 291 2 317 317 104 290 290 12 73 73 6 317 317 104 291 291 2 288 288 24 153 153 34 151 151 14 318 318 62 153 153 34 288 288 24 289 289 21 318 318 62 288 288 24 157 157 6 318 318 62 289 289 21 294 294 59 132 132 71 130 130 51 319 319 105 132 132 71 294 294 59 295 295 45 319 319 105 294 294 59 136 136 6 319 319 105 295 295 45 300 300 18 223 223 43 224 224 14 320 320 16 223 223 43 300 300 18 301 301 60 320 320 16 300 300 18 296 296 78 205 205 44 206 206 13 321 321 61 205 205 44 296 296 78 297 297 60 321 321 61 296 296 78 308 308 44 244 244 32 245 245 79 322 322 30 244 244 32 308 308 44 309 309 40 322 322 30 308 308 44 306 306 103 230 230 43 231 231 0 323 323 29 230 230 43 306 306 103 307 307 69 323 323 29 306 306 103 298 298 57 237 237 47 238 238 6 324 324 90 237 237 47 298 298 57 299 299 2 324 324 90 298 298 57 302 302 3 201 201 34 202 202 4 325 325 14 201 201 34 302 302 3 303 303 11 325 325 14 302 302 3 304 304 40 212 212 40 213 213 32 326 326 75 212 212 40 304 304 40 305 305 102 326 326 75 304 304 40 310 310 33 216 216 32 217 217 79 327 327 30 216 216 32 310 310 33 311 311 27 327 327 30 310 310 33 50 50 36 312 312 62 52 52 6 48 48 35 312 312 62 50 50 36 92 92 46 314 314 66 94 94 6 90 90 2 314 314 66 92 92 46 29 29 22 313 313 45 31 31 6 27 27 21 313 313 45 29 29 22 8 8 6 315 315 6 10 10 6 6 6 5 315 315 6 8 8 6 113 113 6 316 316 6 115 115 6 111 111 6 316 316 6 113 113 6 71 71 46 317 317 104 73 73 6 69 69 34 317 317 104 71 71 46 155 155 46 318 318 62 157 157 6 153 153 34 318 318 62 155 155 46 134 134 63 319 319 105 136 136 6 132 132 71 319 319 105 134 134 63 321 321 61 204 204 29 205 205 44 322 322 30 243 243 30 244 244 32 323 323 29 229 229 31 230 230 43 320 320 16 222 222 16 223 223 43 324 324 90 236 236 90 237 237 47 325 325 14 200 200 0 201 201 34 327 327 30 215 215 31 216 216 32 326 326 75 211 211 89 212 212 40 330 330 70 329 329 79 328 328 106 331 331 10 329 329 79 330 330 70 332 332 107 331 331 10 330 330 70 333 333 62 331 331 10 332 332 107 334 334 63 333 333 62 332 332 107 335 335 47 333 333 62 334 334 63 336 336 6 335 335 47 334 334 63 337 337 37 335 335 47 336 336 6 338 338 6 337 337 37 336 336 6 339 339 81 337 337 37 338 338 6 340 340 6 339 339 81 338 338 6 341 341 6 339 339 81 340 340 6 342 342 84 341 341 6 340 340 6 343 288 7 341 341 6 342 342 84 344 343 49 343 288 7 342 342 84 345 344 66 343 288 7 344 343 49 346 345 59 345 344 66 344 343 49 347 346 13 345 344 66 346 345 59 348 347 107 347 346 13 346 345 59 349 348 61 347 346 13 348 347 107 350 349 60 349 348 61 348 347 107 353 352 25 352 351 108 351 350 16 354 353 43 352 351 108 353 352 25 355 354 105 354 353 43 353 352 25 356 355 2 354 353 43 355 354 105 357 356 57 356 355 2 355 354 105 358 357 19 356 355 2 357 356 57 359 358 57 358 357 19 357 356 57 360 359 48 358 357 19 359 358 57 361 360 38 360 359 48 359 358 57 362 361 34 360 359 48 361 360 38 363 362 9 362 361 34 361 360 38 364 363 72 362 361 34 363 362 9 365 364 23 364 363 72 363 362 9 366 365 6 364 363 72 365 364 23 367 366 6 366 365 6 365 364 23 368 367 6 366 365 6 367 366 6 369 368 6 368 367 6 367 366 6 370 369 6 368 367 6 369 368 6 371 370 6 370 369 6 369 368 6 357 356 57 370 369 6 371 370 6 359 358 57 357 356 57 371 370 6 374 373 13 373 372 109 372 371 109 375 374 110 373 372 109 374 373 13 376 375 90 375 374 110 374 373 13 377 376 101 375 374 110 376 375 90 378 377 47 377 376 101 376 375 90 379 378 21 377 376 101 378 377 47 380 379 7 379 378 21 378 377 47 381 380 100 379 378 21 380 379 7 382 381 7 381 380 100 380 379 7 383 382 12 381 380 100 382 381 7 384 383 46 383 382 12 382 381 7 385 384 0 383 382 12 384 383 46 386 385 57 385 384 0 384 383 46 387 386 66 385 384 0 386 385 57 388 387 37 387 386 66 386 385 57 389 388 111 387 386 66 388 387 37 390 389 6 389 388 111 388 387 37 391 390 6 389 388 111 390 389 6 392 391 6 391 390 6 390 389 6 378 377 47 391 390 6 392 391 6 380 379 7 378 377 47 392 391 6 395 394 25 394 393 112 393 392 74 396 395 113 394 393 112 395 394 25 397 396 66 396 395 113 395 394 25 398 397 72 396 395 113 397 396 66 399 398 6 398 397 72 397 396 66 400 399 57 398 397 72 399 398 6 401 400 6 400 399 57 399 398 6 402 401 6 400 399 57 401 400 6 403 402 6 402 401 6 401 400 6 404 403 6 402 401 6 403 402 6 405 404 6 404 403 6 403 402 6 406 405 6 404 403 6 405 404 6 407 406 6 406 405 6 405 404 6 408 407 6 406 405 6 407 406 6 409 408 6 408 407 6 407 406 6 410 409 114 408 407 6 409 408 6 411 410 55 410 409 114 409 408 6 412 411 88 410 409 114 411 410 55 413 412 14 412 411 88 411 410 55 414 413 115 412 411 88 413 412 14 415 414 53 414 413 115 413 412 14 418 417 116 417 416 101 416 415 113 419 418 63 417 416 101 418 417 116 420 419 2 419 418 63 418 417 116 421 420 7 419 418 63 420 419 2 422 421 37 421 420 7 420 419 2 423 422 6 421 420 7 422 421 37 424 423 6 423 422 6 422 421 37 425 424 6 423 422 6 424 423 6 426 425 6 425 424 6 424 423 6 427 426 6 425 424 6 426 425 6 428 427 6 427 426 6 426 425 6 429 428 6 427 426 6 428 427 6 430 429 6 429 428 6 428 427 6 431 430 6 429 428 6 430 429 6 432 431 62 431 430 6 430 429 6 433 432 117 431 430 6 432 431 62 434 433 66 433 432 117 432 431 62 435 434 54 433 432 117 434 433 66 436 435 34 435 434 54 434 433 66 437 436 103 435 434 54 436 435 34 438 437 16 437 436 103 436 435 34 441 440 0 440 439 86 439 438 16 442 441 26 440 439 86 441 440 0 443 442 100 442 441 26 441 440 0 444 443 93 442 441 26 443 442 100 445 444 24 444 443 93 443 442 100 446 445 98 444 443 93 445 444 24 447 446 74 446 445 98 445 444 24 448 447 98 446 445 98 447 446 74 449 448 98 448 447 98 447 446 74 450 449 44 448 447 98 449 448 98 451 450 118 450 449 44 449 448 98 452 451 22 450 449 44 451 450 118 453 452 47 452 451 22 451 450 118 454 453 7 452 451 22 453 452 47 455 454 6 454 453 7 453 452 47 456 455 6 454 453 7 455 454 6 457 456 6 456 455 6 455 454 6 458 457 119 456 455 6 457 456 6 459 458 35 458 457 119 457 456 6 445 444 24 458 457 119 459 458 35 447 446 74 445 444 24 459 458 35 462 461 93 461 460 74 460 459 109 463 462 120 461 460 74 462 461 93 464 463 9 463 462 120 462 461 93 465 464 46 463 462 120 464 463 9 466 465 8 465 464 46 464 463 9 467 466 5 465 464 46 466 465 8 468 467 6 467 466 5 466 465 8 469 468 6 467 466 5 468 467 6 470 469 6 469 468 6 468 467 6 471 470 8 469 468 6 470 469 6 472 471 121 471 470 8 470 469 6 473 472 39 471 470 8 472 471 121 474 473 64 473 472 39 472 471 121 475 474 105 473 472 39 474 473 64 476 475 4 475 474 105 474 473 64 477 476 91 475 474 105 476 475 4 478 477 94 477 476 91 476 475 4 479 478 16 477 476 91 478 477 94 480 479 15 479 478 16 478 477 94 483 482 20 482 481 15 481 480 42 484 483 71 482 481 15 483 482 20 485 484 4 484 483 71 483 482 20 486 485 122 484 483 71 485 484 4 487 486 122 486 485 122 485 484 4 488 487 6 486 485 122 487 486 122 489 488 6 488 487 6 487 486 122 490 489 6 488 487 6 489 488 6 491 490 6 490 489 6 489 488 6 492 491 6 490 489 6 491 490 6 493 492 6 492 491 6 491 490 6 494 493 56 492 491 6 493 492 6 495 494 64 494 493 56 493 492 6 496 495 62 494 493 56 495 494 64 497 496 2 496 495 62 495 494 64 498 497 40 496 495 62 497 496 2 499 498 123 498 497 40 497 496 2 500 499 124 498 497 40 499 498 123 501 500 27 500 499 124 499 498 123 504 503 125 503 502 89 502 501 40 505 504 32 503 502 89 504 503 125 506 505 57 505 504 32 504 503 125 507 506 39 505 504 32 506 505 57 508 507 122 507 506 39 506 505 57 509 508 122 507 506 39 508 507 122 510 509 6 509 508 122 508 507 122 511 510 6 509 508 122 510 509 6 512 511 6 511 510 6 510 509 6 513 512 81 511 510 6 512 511 6 514 513 37 513 512 81 512 511 6 515 514 4 513 512 81 514 513 37 516 515 63 515 514 4 514 513 37 517 516 100 515 514 4 516 515 63 518 517 55 517 516 100 516 515 63 519 518 14 517 516 100 518 517 55 520 519 1 519 518 14 518 517 55 521 520 42 519 518 14 520 519 1 522 521 97 521 520 42 520 519 1 525 524 12 524 523 103 523 522 33 526 525 1 524 523 103 525 524 12 527 526 87 526 525 1 525 524 12 528 527 37 526 525 1 527 526 87 529 528 6 528 527 37 527 526 87 530 529 6 528 527 37 529 528 6 531 530 6 530 529 6 529 528 6 532 531 6 530 529 6 531 530 6 533 532 6 532 531 6 531 530 6 534 533 6 532 531 6 533 532 6 535 534 6 534 533 6 533 532 6 536 535 81 534 533 6 535 534 6 537 536 47 536 535 81 535 534 6 538 537 100 536 535 81 537 536 47 539 538 45 538 537 100 537 536 47 540 539 123 538 537 100 539 538 45 541 540 13 540 539 123 539 538 45 542 541 103 540 539 123 541 540 13 543 542 18 542 541 103 541 540 13 546 545 11 545 544 43 544 543 78 547 546 25 545 544 43 546 545 11 548 547 10 547 546 25 546 545 11 549 548 90 547 546 25 548 547 10 550 549 63 549 548 90 548 547 10 551 550 111 549 548 90 550 549 63 552 551 6 551 550 111 550 549 63 553 552 6 551 550 111 552 551 6 554 553 6 553 552 6 552 551 6 555 554 6 553 552 6 554 553 6 556 555 6 555 554 6 554 553 6 557 556 72 555 554 6 556 555 6 558 557 72 557 556 72 556 555 6 559 558 65 557 556 72 558 557 72 560 559 99 559 558 65 558 557 72 561 560 43 559 558 65 560 559 99 562 561 32 561 560 43 560 559 99 563 562 31 561 560 43 562 561 32 564 563 83 563 562 31 562 561 32 567 566 109 566 565 127 565 564 126 568 567 86 566 565 127 567 566 109 569 568 85 568 567 86 567 566 109 570 569 82 568 567 86 569 568 85 571 570 35 570 569 82 569 568 85 572 571 21 570 569 82 571 570 35 573 572 38 572 571 21 571 570 35 574 573 6 572 571 21 573 572 38 575 574 6 574 573 6 573 572 38 576 575 7 574 573 6 575 574 6 577 576 87 576 575 7 575 574 6 578 577 2 576 575 7 577 576 87 579 578 65 578 577 2 577 576 87 580 579 125 578 577 2 579 578 65 581 580 51 580 579 125 579 578 65 582 581 106 580 579 125 581 580 51 583 582 60 582 581 106 581 580 51 584 583 128 582 581 106 583 582 60 585 584 129 584 583 128 583 582 60 588 587 97 587 586 131 586 585 130 589 588 33 587 586 131 588 587 97 590 589 63 589 588 33 588 587 97 591 590 87 589 588 33 590 589 63 592 591 122 591 590 87 590 589 63 593 592 6 591 590 87 592 591 122 594 593 6 593 592 6 592 591 122 595 594 6 593 592 6 594 593 6 596 595 6 595 594 6 594 593 6 597 596 6 595 594 6 596 595 6 598 597 6 597 596 6 596 595 6 599 598 121 597 596 6 598 597 6 600 599 121 599 598 121 598 597 6 601 600 57 599 598 121 600 599 121 602 601 65 601 600 57 600 599 121 603 602 51 601 600 57 602 601 65 604 603 88 603 602 51 602 601 65 605 604 70 603 602 51 604 603 88 606 605 70 605 604 70 604 603 88 609 608 133 608 607 132 607 606 132 610 609 133 608 607 132 609 608 133 611 610 134 610 609 133 609 608 133 612 611 134 610 609 133 611 610 134 613 612 115 612 611 134 611 610 134 614 613 15 612 611 134 613 612 115 615 614 71 614 613 15 613 612 115 616 615 66 614 613 15 615 614 71 617 616 6 616 615 66 615 614 71 618 617 55 616 615 66 617 616 6 619 618 117 618 617 55 617 616 6 620 619 12 618 617 55 619 618 117 621 620 79 620 619 12 619 618 117 622 621 26 620 619 12 621 620 79 623 622 50 622 621 26 621 620 79 624 623 124 622 621 26 623 622 50 625 624 135 624 623 124 623 622 50 626 625 136 624 623 124 625 624 135 627 626 132 626 625 136 625 624 135 630 629 14 629 628 98 628 627 116 631 630 50 629 628 98 630 629 14 632 631 63 631 630 50 630 629 14 633 632 47 631 630 50 632 631 63 634 633 122 633 632 47 632 631 63 635 634 6 633 632 47 634 633 122 636 635 6 635 634 6 634 633 122 637 636 6 635 634 6 636 635 6 638 637 6 637 636 6 636 635 6 639 638 84 637 636 6 638 637 6 640 639 119 639 638 84 638 637 6 641 640 72 639 638 84 640 639 119 642 641 38 641 640 72 640 639 119 643 642 100 641 640 72 642 641 38 644 643 66 643 642 100 642 641 38 645 644 82 643 642 100 644 643 66 646 645 110 645 644 82 644 643 66 647 646 86 645 644 82 646 645 110 648 647 27 647 646 86 646 645 110 651 650 14 650 649 108 649 648 61 652 651 95 650 649 108 651 650 14 653 652 55 652 651 95 651 650 14 654 653 45 652 651 95 653 652 55 655 654 81 654 653 45 653 652 55 656 655 39 654 653 45 655 654 81 657 656 6 656 655 39 655 654 81 658 657 6 656 655 39 657 656 6 659 658 6 658 657 6 657 656 6 660 659 121 658 657 6 659 658 6 661 660 6 660 659 121 659 658 6 662 661 64 660 659 121 661 660 6 663 662 137 662 661 64 661 660 6 664 663 63 662 661 64 663 662 137 665 664 114 664 663 63 663 662 137 666 665 98 664 663 63 665 664 114 667 666 41 666 665 98 665 664 114 668 667 70 666 665 98 667 666 41 669 668 15 668 667 70 667 666 41 672 671 108 671 670 28 670 669 98 673 672 82 671 670 28 672 671 108 674 673 78 673 672 82 672 671 108 675 674 32 673 672 82 674 673 78 676 675 16 675 674 32 674 673 78 677 676 15 675 674 32 676 675 16 678 677 74 677 676 15 676 675 16 679 678 118 677 676 15 678 677 74 680 679 61 679 678 118 678 677 74 681 680 138 679 678 118 680 679 61 682 681 17 681 680 138 680 679 61 683 682 43 681 680 138 682 681 17 684 683 30 683 682 43 682 681 17 685 684 98 683 682 43 684 683 30 670 669 98 685 684 98 684 683 30 671 670 28 685 684 98 670 669 98 688 687 98 687 686 98 686 685 98 689 688 17 687 686 98 688 687 98 690 689 41 689 688 17 688 687 98 691 690 118 689 688 17 690 689 41 692 691 42 691 690 118 690 689 41 693 692 113 691 690 118 692 691 42 694 693 98 693 692 113 692 691 42 695 694 52 693 692 113 694 693 98 696 695 40 695 694 52 694 693 98 697 696 98 695 694 52 696 695 40 698 697 98 697 696 98 696 695 40 699 698 98 697 696 98 698 697 98 700 699 98 699 698 98 698 697 98 701 700 98 699 698 98 700 699 98 686 685 98 701 700 98 700 699 98 687 686 98 701 700 98 686 685 98 704 703 62 703 702 33 702 701 31 705 704 55 703 702 33 704 703 62 706 705 111 705 704 55 704 703 62 707 706 6 705 704 55 706 705 111 708 707 6 707 706 6 706 705 111 709 708 6 707 706 6 708 707 6 710 709 6 709 708 6 708 707 6 711 710 6 709 708 6 710 709 6 712 711 6 711 710 6 710 709 6 713 712 6 711 710 6 712 711 6 714 713 6 713 712 6 712 711 6 715 714 10 713 712 6 714 713 6 716 715 54 715 714 10 714 713 6 717 716 97 715 714 10 716 715 54 718 717 52 717 716 97 716 715 54 719 718 82 704 703 62 702 701 31 720 719 38 704 703 62 719 718 82 721 720 65 720 719 38 719 718 82 722 721 23 720 719 38 721 720 65 723 722 47 722 721 23 721 720 65 724 723 6 722 721 23 723 722 47 725 724 7 724 723 6 723 722 47 726 725 6 724 723 6 725 724 7 714 713 6 726 725 6 725 724 7 727 726 6 726 725 6 714 713 6 712 711 6 727 726 6 714 713 6 710 709 6 727 726 6 712 711 6 728 727 80 701 700 98 687 686 98 729 728 98 701 700 98 728 727 80 730 729 47 729 728 98 728 727 80 731 730 10 729 728 98 730 729 47 732 731 6 731 730 10 730 729 47 733 732 107 731 730 10 732 731 6 734 733 64 733 732 107 732 731 6 735 734 41 733 732 107 734 733 64 736 735 49 735 734 41 734 733 64 697 696 98 735 734 41 736 735 49 695 694 52 697 696 98 736 735 49 737 736 49 685 684 98 671 670 28 738 737 3 685 684 98 737 736 49 739 738 6 738 737 3 737 736 49 740 739 6 738 737 3 739 738 6 741 740 6 740 739 6 739 738 6 742 741 6 740 739 6 741 740 6 743 742 6 742 741 6 741 740 6 744 617 114 742 741 6 743 742 6 745 743 101 744 617 114 743 742 6 681 680 138 744 617 114 745 743 101 679 678 118 681 680 138 745 743 101 399 398 6 403 402 6 401 400 6 746 744 6 403 402 6 399 398 6 747 745 6 746 744 6 399 398 6 748 746 6 746 744 6 747 745 6 749 747 117 748 746 6 747 745 6 750 748 6 748 746 6 749 747 117 409 408 6 750 748 6 749 747 117 751 749 6 750 748 6 409 408 6 407 406 6 751 749 6 409 408 6 405 404 6 751 749 6 407 406 6 752 750 6 535 534 6 533 532 6 537 536 47 535 534 6 752 750 6 753 751 84 537 536 47 752 750 6 539 538 45 537 536 47 753 751 84 754 752 72 539 538 45 753 751 84 541 540 13 539 538 45 754 752 72 755 753 14 541 540 13 754 752 72 543 542 18 541 540 13 755 753 14 523 522 33 543 542 18 755 753 14 406 405 6 402 401 6 404 403 6 756 754 6 402 401 6 406 405 6 408 407 6 756 754 6 406 405 6 757 755 66 756 754 6 408 407 6 410 409 114 757 755 66 408 407 6 758 756 123 757 755 66 410 409 114 412 411 88 758 756 123 410 409 114 759 757 139 758 756 123 412 411 88 414 413 115 759 757 139 412 411 88 760 758 121 491 490 6 489 488 6 761 759 56 491 490 6 760 758 121 762 760 72 761 759 56 760 758 121 763 761 38 761 759 56 762 760 72 764 762 104 763 761 38 762 760 72 765 763 2 763 761 38 764 762 104 766 764 79 765 763 2 764 762 104 499 498 123 765 763 2 766 764 79 501 500 27 499 498 123 766 764 79 767 765 6 556 555 6 554 553 6 558 557 72 556 555 6 767 765 6 768 766 72 558 557 72 767 765 6 560 559 99 558 557 72 768 766 72 769 767 12 560 559 99 768 766 72 562 561 32 560 559 99 769 767 12 770 768 120 562 561 32 769 767 12 564 563 83 562 561 32 770 768 120 544 543 78 564 563 83 770 768 120 771 769 6 598 597 6 596 595 6 600 599 121 598 597 6 771 769 6 772 770 73 600 599 121 771 769 6 602 601 65 600 599 121 772 770 73 773 771 101 602 601 65 772 770 73 604 603 88 602 601 65 773 771 101 774 772 25 604 603 88 773 771 101 606 605 70 604 603 88 774 772 25 586 585 130 606 605 70 774 772 25 775 773 6 472 471 121 470 469 6 474 473 64 472 471 121 775 773 6 776 774 64 474 473 64 775 773 6 476 475 4 474 473 64 776 774 64 777 775 72 476 475 4 776 774 64 478 477 94 476 475 4 777 775 72 778 776 14 478 477 94 777 775 72 480 479 15 478 477 94 778 776 14 460 459 109 480 479 15 778 776 14 779 777 23 577 576 87 575 574 6 579 578 65 577 576 87 779 777 23 780 778 71 579 578 65 779 777 23 581 580 51 579 578 65 780 778 71 781 779 32 581 580 51 780 778 71 583 582 60 581 580 51 781 779 32 782 780 115 583 582 60 781 779 32 585 584 129 583 582 60 782 780 115 565 564 126 585 584 129 782 780 115 783 781 6 661 660 6 659 658 6 663 662 137 661 660 6 783 781 6 784 782 37 663 662 137 783 781 6 665 664 114 663 662 137 784 782 37 785 783 114 665 664 114 784 782 37 667 666 41 665 664 114 785 783 114 786 784 12 667 666 41 785 783 114 669 668 15 667 666 41 786 784 12 649 648 61 669 668 15 786 784 12 787 785 64 619 618 117 617 616 6 621 620 79 619 618 117 787 785 64 788 786 12 621 620 79 787 785 64 623 622 50 621 620 79 788 786 12 789 787 91 623 622 50 788 786 12 625 624 135 623 622 50 789 787 91 790 788 133 625 624 135 789 787 91 627 626 132 625 624 135 790 788 133 607 606 132 627 626 132 790 788 133 791 789 6 640 639 119 638 637 6 642 641 38 640 639 119 791 789 6 792 790 46 642 641 38 791 789 6 644 643 66 642 641 38 792 790 46 793 791 38 644 643 66 792 790 46 646 645 110 644 643 66 793 791 38 794 792 0 646 645 110 793 791 38 648 647 27 646 645 110 794 792 0 628 627 116 648 647 27 794 792 0 795 793 119 514 513 37 512 511 6 516 515 63 514 513 37 795 793 119 796 794 92 516 515 63 795 793 119 518 517 55 516 515 63 796 794 92 797 795 105 518 517 55 796 794 92 520 519 1 518 517 55 797 795 105 798 796 59 520 519 1 797 795 105 522 521 97 520 519 1 798 796 59 502 501 40 522 521 97 798 796 59 610 609 133 799 797 140 608 607 132 800 798 141 799 797 140 610 609 133 612 611 134 800 798 141 610 609 133 801 799 103 800 798 141 612 611 134 614 613 15 801 799 103 612 611 134 802 800 13 801 799 103 614 613 15 616 615 66 802 800 13 614 613 15 618 617 55 802 800 13 616 615 66 770 768 120 546 545 11 544 543 78 803 801 3 546 545 11 770 768 120 769 767 12 803 801 3 770 768 120 804 802 46 803 801 3 769 767 12 768 766 72 804 802 46 769 767 12 805 803 6 804 802 46 768 766 72 767 765 6 805 803 6 768 766 72 554 553 6 805 803 6 767 765 6 338 338 6 342 342 84 340 340 6 806 804 6 342 342 84 338 338 6 336 336 6 806 804 6 338 338 6 807 805 105 806 804 6 336 336 6 808 806 65 807 805 105 336 336 6 809 807 65 807 805 105 808 806 65 810 808 12 809 807 65 808 806 65 811 809 142 809 807 65 810 808 12 778 776 14 462 461 93 460 459 109 812 810 92 462 461 93 778 776 14 777 775 72 812 810 92 778 776 14 813 811 81 812 810 92 777 775 72 776 774 64 813 811 81 777 775 72 814 812 6 813 811 81 776 774 64 775 773 6 814 812 6 776 774 64 470 469 6 814 812 6 775 773 6 689 688 17 728 727 80 687 686 98 815 813 35 728 727 80 689 688 17 691 690 118 815 813 35 689 688 17 816 814 24 815 813 35 691 690 118 693 692 113 816 814 24 691 690 118 817 815 3 816 814 24 693 692 113 695 694 52 817 815 3 693 692 113 736 735 49 817 815 3 695 694 52 568 567 86 818 816 143 566 565 127 819 817 61 818 816 143 568 567 86 570 569 82 819 817 61 568 567 86 820 818 123 819 817 61 570 569 82 572 571 21 820 818 123 570 569 82 821 819 58 820 818 123 572 571 21 574 573 6 821 819 58 572 571 21 576 575 7 821 819 58 574 573 6 463 462 120 822 820 115 461 460 74 823 821 91 822 820 115 463 462 120 465 464 46 823 821 91 463 462 120 824 822 104 823 821 91 465 464 46 467 466 5 824 822 104 465 464 46 825 823 72 824 822 104 467 466 5 469 468 6 825 823 72 467 466 5 471 470 8 825 823 72 469 468 6 782 780 115 567 566 109 565 564 126 826 824 26 567 566 109 782 780 115 781 779 32 826 824 26 782 780 115 827 825 58 826 824 26 781 779 32 780 778 71 827 825 58 781 779 32 828 826 7 827 825 58 780 778 71 779 777 23 828 826 7 780 778 71 575 574 6 828 826 7 779 777 23 484 483 71 829 827 29 482 481 15 830 828 10 829 827 29 484 483 71 486 485 122 830 828 10 484 483 71 831 829 8 830 828 10 486 485 122 488 487 6 831 829 8 486 485 122 832 830 6 831 829 8 488 487 6 490 489 6 832 830 6 488 487 6 492 491 6 832 830 6 490 489 6 774 772 25 588 587 97 586 585 130 833 831 90 588 587 97 774 772 25 773 771 101 833 831 90 774 772 25 834 832 47 833 831 90 773 771 101 772 770 73 834 832 47 773 771 101 835 833 6 834 832 47 772 770 73 771 769 6 835 833 6 772 770 73 596 595 6 835 833 6 771 769 6 755 753 14 525 524 12 523 522 33 836 834 137 525 524 12 755 753 14 754 752 72 836 834 137 755 753 14 837 835 6 836 834 137 754 752 72 753 751 84 837 835 6 754 752 72 838 836 6 837 835 6 753 751 84 752 750 6 838 836 6 753 751 84 533 532 6 838 836 6 752 750 6 505 504 32 839 837 15 503 502 89 840 838 1 839 837 15 505 504 32 507 506 39 840 838 1 505 504 32 841 839 38 840 838 1 507 506 39 509 508 122 841 839 38 507 506 39 842 840 72 841 839 38 509 508 122 511 510 6 842 840 72 509 508 122 513 512 81 842 840 72 511 510 6 798 796 59 504 503 125 502 501 40 843 841 22 504 503 125 798 796 59 797 795 105 843 841 22 798 796 59 844 842 8 843 841 22 797 795 105 796 794 92 844 842 8 797 795 105 845 843 6 844 842 8 796 794 92 795 793 119 845 843 6 796 794 92 512 511 6 845 843 6 795 793 119 652 651 95 846 844 103 650 649 108 847 845 3 846 844 103 652 651 95 654 653 45 847 845 3 652 651 95 848 846 55 847 845 3 654 653 45 656 655 39 848 846 55 654 653 45 849 847 4 848 846 55 656 655 39 658 657 6 849 847 4 656 655 39 660 659 121 849 847 4 658 657 6 547 546 25 850 848 120 545 544 43 851 849 125 850 848 120 547 546 25 549 548 90 851 849 125 547 546 25 852 850 101 851 849 125 549 548 90 551 550 111 852 850 101 549 548 90 853 851 8 852 850 101 551 550 111 553 552 6 853 851 8 551 550 111 555 554 6 853 851 8 553 552 6 786 784 12 651 650 14 649 648 61 854 852 36 651 650 14 786 784 12 785 783 114 854 852 36 786 784 12 855 853 122 854 852 36 785 783 114 784 782 37 855 853 122 785 783 114 856 854 6 855 853 122 784 782 37 783 781 6 856 854 6 784 782 37 659 658 6 856 854 6 783 781 6 589 588 33 857 855 116 587 586 131 858 856 19 857 855 116 589 588 33 591 590 87 858 856 19 589 588 33 859 857 81 858 856 19 591 590 87 593 592 6 859 857 81 591 590 87 860 858 6 859 857 81 593 592 6 595 594 6 860 858 6 593 592 6 597 596 6 860 858 6 595 594 6 794 792 0 630 629 14 628 627 116 861 859 92 630 629 14 794 792 0 793 791 38 861 859 92 794 792 0 862 860 72 861 859 92 793 791 38 792 790 46 862 860 72 793 791 38 863 861 6 862 860 72 792 790 46 791 789 6 863 861 6 792 790 46 638 637 6 863 861 6 791 789 6 673 672 82 737 736 49 671 670 28 864 862 100 737 736 49 673 672 82 675 674 32 864 862 100 673 672 82 865 863 3 864 862 100 675 674 32 677 676 15 865 863 3 675 674 32 866 864 21 865 863 3 677 676 15 679 678 118 866 864 21 677 676 15 745 743 101 866 864 21 679 678 118 631 630 50 867 865 135 629 628 98 868 866 93 867 865 135 631 630 50 633 632 47 868 866 93 631 630 50 869 867 45 868 866 93 633 632 47 635 634 6 869 867 45 633 632 47 870 868 81 869 867 45 635 634 6 637 636 6 870 868 81 635 634 6 639 638 84 870 868 81 637 636 6 766 764 79 481 480 42 501 500 27 483 482 20 481 480 42 766 764 79 764 762 104 483 482 20 766 764 79 485 484 4 483 482 20 764 762 104 762 760 72 485 484 4 764 762 104 487 486 122 485 484 4 762 760 72 760 758 121 487 486 122 762 760 72 489 488 6 487 486 122 760 758 121 426 425 6 430 429 6 428 427 6 871 869 6 430 429 6 426 425 6 424 423 6 871 869 6 426 425 6 872 870 84 871 869 6 424 423 6 873 871 72 872 870 84 424 423 6 874 872 47 872 870 84 873 871 72 875 873 100 874 872 47 873 871 72 876 874 98 874 872 47 875 873 100 526 525 1 877 875 52 524 523 103 878 876 93 877 875 52 526 525 1 528 527 37 878 876 93 526 525 1 879 877 63 878 876 93 528 527 37 530 529 6 879 877 63 528 527 37 880 878 122 879 877 63 530 529 6 532 531 6 880 878 122 530 529 6 534 533 6 880 878 122 532 531 6 790 788 133 609 608 133 607 606 132 881 879 28 609 608 133 790 788 133 789 787 91 881 879 28 790 788 133 882 880 24 881 879 28 789 787 91 788 786 12 882 880 24 789 787 91 883 881 114 882 880 24 788 786 12 787 785 64 883 881 114 788 786 12 617 616 6 883 881 114 787 785 64 886 884 53 885 883 102 884 882 144 887 885 30 885 883 102 886 884 53 888 886 17 887 885 30 886 884 53 889 887 125 887 885 30 888 886 17 890 888 48 889 887 125 888 886 17 374 373 13 889 887 125 890 888 48 376 375 90 374 373 13 890 888 48 891 889 113 347 346 13 349 348 61 892 890 79 347 346 13 891 889 113 893 889 116 892 890 79 891 889 113 894 891 34 892 890 79 893 889 116 895 505 74 894 891 34 893 889 116 329 329 79 894 891 34 895 505 74 328 328 106 329 329 79 895 505 74 515 514 4 842 840 72 513 512 81 896 892 45 842 840 72 515 514 4 517 516 100 896 892 45 515 514 4 897 893 12 896 892 45 517 516 100 519 518 14 897 893 12 517 516 100 898 894 29 897 893 12 519 518 14 521 520 42 898 894 29 519 518 14 901 897 88 900 896 97 899 895 16 902 898 91 900 896 97 901 897 88 903 899 46 902 898 91 901 897 88 904 900 107 902 898 91 903 899 46 905 901 39 904 900 107 903 899 46 353 352 25 904 900 107 905 901 39 355 354 105 353 352 25 905 901 39 908 904 24 907 903 97 906 902 83 909 905 79 907 903 97 908 904 24 910 906 101 909 905 79 908 904 24 911 907 59 909 905 79 910 906 101 912 908 46 911 907 59 910 906 101 441 440 0 911 907 59 912 908 46 443 442 100 441 440 0 912 908 46 557 556 72 853 851 8 555 554 6 913 909 55 853 851 8 557 556 72 559 558 65 913 909 55 557 556 72 914 910 77 913 909 55 559 558 65 561 560 43 914 910 77 559 558 65 915 911 29 914 910 77 561 560 43 563 562 31 915 911 29 561 560 43 599 598 121 860 858 6 597 596 6 916 912 81 860 858 6 599 598 121 601 600 57 916 912 81 599 598 121 917 913 125 916 912 81 601 600 57 603 602 51 917 913 125 601 600 57 918 914 67 917 913 125 603 602 51 605 604 70 918 914 67 603 602 51 830 828 10 919 915 61 829 827 29 920 916 54 919 915 61 830 828 10 831 829 8 920 916 54 830 828 10 921 917 8 920 916 54 831 829 8 832 830 6 921 917 8 831 829 8 494 493 56 921 917 8 832 830 6 492 491 6 494 493 56 832 830 6 578 577 2 821 819 58 576 575 7 922 918 13 821 819 58 578 577 2 580 579 125 922 918 13 578 577 2 923 919 78 922 918 13 580 579 125 582 581 106 923 919 78 580 579 125 924 920 145 923 919 78 582 581 106 584 583 128 924 920 145 582 581 106 925 921 124 758 756 123 759 757 139 926 922 120 758 756 123 925 921 124 927 923 70 926 922 120 925 921 124 928 924 43 926 922 120 927 923 70 929 925 124 928 924 43 927 923 70 396 395 113 928 924 43 929 925 124 394 393 112 396 395 113 929 925 124 536 535 81 880 878 122 534 533 6 930 926 63 880 878 122 536 535 81 538 537 100 930 926 63 536 535 81 931 927 77 930 926 63 538 537 100 540 539 123 931 927 77 538 537 100 932 928 29 931 927 77 540 539 123 542 541 103 932 928 29 540 539 123 711 710 6 707 706 6 709 708 6 933 153 6 707 706 6 711 710 6 713 712 6 933 153 6 711 710 6 934 929 92 933 153 6 713 712 6 935 930 4 934 929 92 713 712 6 936 931 91 934 929 92 935 930 4 937 932 103 936 931 91 935 930 4 938 933 41 435 434 54 437 436 103 939 934 21 435 434 54 938 933 41 940 935 30 939 934 21 938 933 41 941 936 38 939 934 21 940 935 30 942 937 53 941 936 38 940 935 30 417 416 101 941 936 38 942 937 53 416 415 113 417 416 101 942 937 53 473 472 39 825 823 72 471 470 8 943 938 46 825 823 72 473 472 39 475 474 105 943 938 46 473 472 39 944 939 125 943 938 46 475 474 105 477 476 91 944 939 125 475 474 105 945 940 60 944 939 125 477 476 91 479 478 16 945 940 60 477 476 91 641 640 72 870 868 81 639 638 84 946 941 62 870 868 81 641 640 72 643 642 100 946 941 62 641 640 72 947 942 123 946 941 62 643 642 100 645 644 82 947 942 123 643 642 100 948 943 102 947 942 123 645 644 82 647 646 86 948 943 102 645 644 82 800 798 141 949 944 146 799 797 140 950 945 102 949 944 146 800 798 141 801 799 103 950 945 102 800 798 141 951 946 88 950 945 102 801 799 103 802 800 13 951 946 88 801 799 103 620 619 12 951 946 88 802 800 13 618 617 55 620 619 12 802 800 13 662 661 64 849 847 4 660 659 121 952 947 22 849 847 4 662 661 64 664 663 63 952 947 22 662 661 64 953 948 54 952 947 22 664 663 63 666 665 98 953 948 54 664 663 63 954 949 112 953 948 54 666 665 98 668 667 70 954 949 112 666 665 98 833 831 90 590 589 63 588 587 97 955 950 117 590 589 63 833 831 90 834 832 47 955 950 117 833 831 90 956 951 23 955 950 117 834 832 47 835 833 6 956 951 23 834 832 47 596 595 6 956 951 23 835 833 6 345 344 66 341 341 6 343 288 7 957 952 81 341 341 6 345 344 66 347 346 13 957 952 81 345 344 66 958 953 90 957 952 81 347 346 13 892 890 79 958 953 90 347 346 13 894 891 34 958 953 90 892 890 79 959 954 142 332 332 107 330 330 70 960 955 123 332 332 107 959 954 142 961 956 142 960 955 123 959 954 142 810 808 12 960 955 123 961 956 142 962 957 142 810 808 12 961 956 142 811 809 142 810 808 12 962 957 142 803 801 3 548 547 10 546 545 11 963 958 9 548 547 10 803 801 3 804 802 46 963 958 9 803 801 3 964 959 6 963 958 9 804 802 46 805 803 6 964 959 6 804 802 46 554 553 6 964 959 6 805 803 6 965 960 98 420 419 2 418 417 116 966 961 0 420 419 2 965 960 98 967 962 98 966 961 0 965 960 98 875 873 100 966 961 0 967 962 98 968 963 98 875 873 100 967 962 98 876 874 98 875 873 100 968 963 98 881 879 28 611 610 134 609 608 133 969 964 95 611 610 134 881 879 28 882 880 24 969 964 95 881 879 28 970 965 45 969 964 95 882 880 24 883 881 114 970 965 45 882 880 24 617 616 6 970 965 45 883 881 114 497 496 2 765 763 2 499 498 123 971 966 22 765 763 2 497 496 2 495 494 64 971 966 22 497 496 2 972 967 6 971 966 22 495 494 64 493 492 6 972 967 6 495 494 64 491 490 6 972 967 6 493 492 6 454 453 7 912 908 46 910 906 101 973 968 117 912 908 46 454 453 7 456 455 6 973 968 117 454 453 7 974 969 47 973 968 117 456 455 6 458 457 119 974 969 47 456 455 6 445 444 24 974 969 47 458 457 119 826 824 26 569 568 85 567 566 109 975 970 0 569 568 85 826 824 26 827 825 58 975 970 0 826 824 26 976 971 9 975 970 0 827 825 58 828 826 7 976 971 9 827 825 58 575 574 6 976 971 9 828 826 7 977 972 98 449 448 98 447 446 74 978 973 77 449 448 98 977 972 98 457 456 6 978 973 77 977 972 98 979 974 56 978 973 77 457 456 6 455 454 6 979 974 56 457 456 6 453 452 47 979 974 56 455 454 6 836 834 137 527 526 87 525 524 12 980 975 6 527 526 87 836 834 137 837 835 6 980 975 6 836 834 137 981 976 6 980 975 6 837 835 6 838 836 6 981 976 6 837 835 6 533 532 6 981 976 6 838 836 6 366 365 6 905 901 39 903 899 46 982 977 6 905 901 39 366 365 6 368 367 6 982 977 6 366 365 6 983 978 6 982 977 6 368 367 6 370 369 6 983 978 6 368 367 6 357 356 57 983 978 6 370 369 6 984 979 63 361 360 38 359 358 57 985 980 37 361 360 38 984 979 63 369 368 6 985 980 37 984 979 63 986 981 6 985 980 37 369 368 6 367 366 6 986 981 6 369 368 6 365 364 23 986 981 6 367 366 6 812 810 92 464 463 9 462 461 93 987 982 117 464 463 9 812 810 92 813 811 81 987 982 117 812 810 92 988 983 37 987 982 117 813 811 81 814 812 6 988 983 37 813 811 81 470 469 6 988 983 37 814 812 6 989 984 111 382 381 7 380 379 7 990 985 119 382 381 7 989 984 111 390 389 6 990 985 119 989 984 111 991 986 6 990 985 119 390 389 6 388 387 37 991 986 6 390 389 6 386 385 57 991 986 6 388 387 37 843 841 22 506 505 57 504 503 125 992 987 73 506 505 57 843 841 22 844 842 8 992 987 73 843 841 22 993 988 6 992 987 73 844 842 8 845 843 6 993 988 6 844 842 8 512 511 6 993 988 6 845 843 6 854 852 36 653 652 55 651 650 14 994 989 137 653 652 55 854 852 36 855 853 122 994 989 137 854 852 36 995 990 6 994 989 137 855 853 122 856 854 6 995 990 6 855 853 122 659 658 6 995 990 6 856 854 6 433 432 117 429 428 6 431 430 6 996 991 6 429 428 6 433 432 117 435 434 54 996 991 6 433 432 117 997 992 8 996 991 6 435 434 54 939 934 21 997 992 8 435 434 54 941 936 38 997 992 8 939 934 21 387 386 66 890 888 48 888 886 17 998 453 105 890 888 48 387 386 66 389 388 111 998 453 105 387 386 66 999 993 5 998 453 105 389 388 111 391 390 6 999 993 5 389 388 111 378 377 47 999 993 5 391 390 6 861 859 92 632 631 63 630 629 14 1000 994 8 632 631 63 861 859 92 862 860 72 1000 994 8 861 859 92 1001 995 5 1000 994 8 862 860 72 863 861 6 1001 995 5 862 860 72 638 637 6 1001 995 5 863 861 6 930 926 63 879 877 63 880 878 122 1002 996 80 879 877 63 930 926 63 931 927 77 1002 996 80 930 926 63 1003 997 109 1002 996 80 931 927 77 932 928 29 1003 997 109 931 927 77 749 747 117 411 410 55 409 408 6 1004 998 100 411 410 55 749 747 117 747 745 6 1004 998 100 749 747 117 397 396 66 1004 998 100 747 745 6 399 398 6 397 396 66 747 745 6 722 721 23 704 703 62 720 719 38 706 705 111 704 703 62 722 721 23 1005 999 6 706 705 111 722 721 23 708 707 6 706 705 111 1005 999 6 710 709 6 708 707 6 1005 999 6 916 912 81 859 857 81 860 858 6 1006 1000 1 859 857 81 916 912 81 917 913 125 1006 1000 1 916 912 81 1007 1001 96 1006 1000 1 917 913 125 918 914 67 1007 1001 96 917 913 125 1010 1004 106 1009 1003 2 1008 1002 142 344 343 49 1009 1003 2 1010 1004 106 1011 1005 69 344 343 49 1010 1004 106 348 347 107 344 343 49 1011 1005 69 350 349 60 348 347 107 1011 1005 69 1012 1006 98 874 872 47 876 874 98 1013 1007 8 874 872 47 1012 1006 98 1014 1008 63 1013 1007 8 1012 1006 98 871 869 6 1013 1007 8 1014 1008 63 430 429 6 871 869 6 1014 1008 63 1008 1002 142 809 807 65 811 809 142 1015 1009 90 809 807 65 1008 1002 142 1009 1003 2 1015 1009 90 1008 1002 142 806 804 6 1015 1009 90 1009 1003 2 342 342 84 806 804 6 1009 1003 2 896 892 45 841 839 38 842 840 72 1016 1010 54 841 839 38 896 892 45 897 893 12 1016 1010 54 896 892 45 1017 1011 52 1016 1010 54 897 893 12 898 894 29 1017 1011 52 897 893 12 741 740 6 1018 1012 6 743 742 6 1019 1013 6 1018 1012 6 741 740 6 1020 1014 111 1019 1013 6 741 740 6 865 863 3 1019 1013 6 1020 1014 111 864 862 100 865 863 3 1020 1014 111 922 918 13 820 818 123 821 819 58 1021 1015 103 820 818 123 922 918 13 923 919 78 1021 1015 103 922 918 13 1022 1016 68 1021 1015 103 923 919 78 924 920 145 1022 1016 68 923 919 78 943 938 46 824 822 104 825 823 72 1023 1017 11 824 822 104 943 938 46 944 939 125 1023 1017 11 943 938 46 1024 1018 113 1023 1017 11 944 939 125 945 940 60 1024 1018 113 944 939 125 913 909 55 852 850 101 853 851 8 1025 1019 95 852 850 101 913 909 55 914 910 77 1025 1019 95 913 909 55 1026 1020 78 1025 1019 95 914 910 77 915 911 29 1026 1020 78 914 910 77 920 916 54 1027 1021 60 919 915 61 1028 1022 79 1027 1021 60 920 916 54 921 917 8 1028 1022 79 920 916 54 496 495 62 1028 1022 79 921 917 8 494 493 56 496 495 62 921 917 8 622 621 26 951 946 88 620 619 12 1029 1023 67 951 946 88 622 621 26 624 623 124 1029 1023 67 622 621 26 1030 1024 140 1029 1023 67 624 623 124 626 625 136 1030 1024 140 624 623 124 952 947 22 848 846 55 849 847 4 1031 1025 101 848 846 55 952 947 22 953 948 54 1031 1025 101 952 947 22 1032 1026 97 1031 1025 101 953 948 54 954 949 112 1032 1026 97 953 948 54 946 941 62 869 867 45 870 868 81 1033 1027 91 869 867 45 946 941 62 947 942 123 1033 1027 91 946 941 62 1034 1028 89 1033 1027 91 947 942 123 948 943 102 1034 1028 89 947 942 123 732 731 6 1035 1029 6 734 733 64 1036 1030 121 1035 1029 6 732 731 6 1037 1031 64 1036 1030 121 732 731 6 816 814 24 1036 1030 121 1037 1031 64 815 813 35 816 814 24 1037 1031 64 1038 1032 113 1014 1008 63 1012 1006 98 432 431 62 1014 1008 63 1038 1032 113 1039 1033 61 432 431 62 1038 1032 113 436 435 34 432 431 62 1039 1033 61 438 437 16 436 435 34 1039 1033 61 963 958 9 550 549 63 548 547 10 1040 1034 121 550 549 63 963 958 9 964 959 6 1040 1034 121 963 958 9 554 553 6 1040 1034 121 964 959 6 354 353 43 1041 1035 42 352 351 108 1042 1036 43 1041 1035 42 354 353 43 356 355 2 1042 1036 43 354 353 43 358 357 19 1042 1036 43 356 355 2 971 966 22 763 761 38 765 763 2 1043 1037 6 763 761 38 971 966 22 972 967 6 1043 1037 6 971 966 22 491 490 6 1043 1037 6 972 967 6 980 975 6 529 528 6 527 526 87 1044 1038 6 529 528 6 980 975 6 981 976 6 1044 1038 6 980 975 6 533 532 6 1044 1038 6 981 976 6 987 982 117 466 465 8 464 463 9 1045 1039 23 466 465 8 987 982 117 988 983 37 1045 1039 23 987 982 117 470 469 6 1045 1039 23 988 983 37 969 964 95 613 612 115 611 610 134 1046 1040 100 613 612 115 969 964 95 970 965 45 1046 1040 100 969 964 95 617 616 6 1046 1040 100 970 965 45 442 441 26 1047 1041 112 440 439 86 1048 1042 98 1047 1041 112 442 441 26 444 443 93 1048 1042 98 442 441 26 446 445 98 1048 1042 98 444 443 93 1048 1042 98 1049 1043 112 1047 1041 112 1050 1044 98 1049 1043 112 1048 1042 98 446 445 98 1050 1044 98 1048 1042 98 448 447 98 1050 1044 98 446 445 98 1050 1044 98 1051 1045 98 1049 1043 112 1052 1046 52 1051 1045 98 1050 1044 98 448 447 98 1052 1046 52 1050 1044 98 450 449 44 1052 1046 52 448 447 98 1052 1046 52 906 902 83 1051 1045 98 908 904 24 906 902 83 1052 1046 52 450 449 44 908 904 24 1052 1046 52 452 451 22 908 904 24 450 449 44 1000 994 8 634 633 122 632 631 63 1053 1047 119 634 633 122 1000 994 8 1001 995 5 1053 1047 119 1000 994 8 638 637 6 1053 1047 119 1001 995 5 955 950 117 592 591 122 590 589 63 1054 1048 6 592 591 122 955 950 117 956 951 23 1054 1048 6 955 950 117 596 595 6 1054 1048 6 956 951 23 375 374 110 1055 1049 15 373 372 109 1056 1050 0 1055 1049 15 375 374 110 377 376 101 1056 1050 0 375 374 110 379 378 21 1056 1050 0 377 376 101 1056 1050 0 1057 1051 18 1055 1049 15 1058 1052 59 1057 1051 18 1056 1050 0 379 378 21 1058 1052 59 1056 1050 0 381 380 100 1058 1052 59 379 378 21 1058 1052 59 1059 1053 31 1057 1051 18 1060 1054 110 1059 1053 31 1058 1052 59 381 380 100 1060 1054 110 1058 1052 59 383 382 12 1060 1054 110 381 380 100 1060 1054 110 884 882 144 1059 1053 31 886 884 53 884 882 144 1060 1054 110 383 382 12 886 884 53 1060 1054 110 385 384 0 886 884 53 383 382 12 334 334 63 808 806 65 336 336 6 1061 1055 12 808 806 65 334 334 63 332 332 107 1061 1055 12 334 334 63 960 955 123 1061 1055 12 332 332 107 710 709 6 726 725 6 727 726 6 724 723 6 726 725 6 710 709 6 1005 999 6 724 723 6 710 709 6 722 721 23 724 723 6 1005 999 6 934 929 92 707 706 6 933 153 6 705 704 55 707 706 6 934 929 92 1062 1056 26 705 704 55 934 929 92 703 702 33 705 704 55 1062 1056 26 1018 1012 6 745 743 101 743 742 6 866 864 21 745 743 101 1018 1012 6 1019 1013 6 866 864 21 1018 1012 6 865 863 3 866 864 21 1019 1013 6 1004 998 100 413 412 14 411 410 55 1063 1057 94 413 412 14 1004 998 100 397 396 66 1063 1057 94 1004 998 100 395 394 25 1063 1057 94 397 396 66 926 922 120 757 755 66 758 756 123 1064 1058 4 757 755 66 926 922 120 400 399 57 1064 1058 4 926 922 120 402 401 6 1064 1058 4 400 399 57 422 421 37 873 871 72 424 423 6 1065 1059 100 873 871 72 422 421 37 420 419 2 1065 1059 100 422 421 37 966 961 0 1065 1059 100 420 419 2 992 987 73 508 507 122 506 505 57 1066 1060 6 508 507 122 992 987 73 993 988 6 1066 1060 6 992 987 73 512 511 6 1066 1060 6 993 988 6 683 682 43 744 617 114 681 680 138 1067 1061 10 744 617 114 683 682 43 685 684 98 1067 1061 10 683 682 43 738 737 3 1067 1061 10 685 684 98 699 698 98 735 734 41 697 696 98 1068 1062 98 735 734 41 699 698 98 701 700 98 1068 1062 98 699 698 98 729 728 98 1068 1062 98 701 700 98 1035 1029 6 736 735 49 734 733 64 817 815 3 736 735 49 1035 1029 6 1036 1030 121 817 815 3 1035 1029 6 816 814 24 817 815 3 1036 1030 121 975 970 0 571 570 35 569 568 85 1069 1063 62 571 570 35 975 970 0 976 971 9 1069 1063 62 975 970 0 575 574 6 1069 1063 62 976 971 9 1042 1036 43 1070 1064 52 1041 1035 42 1071 1065 85 1070 1064 52 1042 1036 43 358 357 19 1071 1065 85 1042 1036 43 360 359 48 1071 1065 85 358 357 19 1071 1065 85 1072 1066 61 1070 1064 52 1073 1067 85 1072 1066 61 1071 1065 85 360 359 48 1073 1067 85 1071 1065 85 362 361 34 1073 1067 85 360 359 48 1073 1067 85 899 895 16 1072 1066 61 901 897 88 899 895 16 1073 1067 85 362 361 34 901 897 88 1073 1067 85 364 363 72 901 897 88 362 361 34 994 989 137 655 654 81 653 652 55 1074 1068 6 655 654 81 994 989 137 995 990 6 1074 1068 6 994 989 137 659 658 6 1074 1068 6 995 990 6 1075 1069 121 429 428 6 996 991 6 427 426 6 429 428 6 1075 1069 121 941 936 38 427 426 6 1075 1069 121 1076 1070 117 1037 1031 64 732 731 6 815 813 35 1037 1031 64 1076 1070 117 728 727 80 815 813 35 1076 1070 117 427 426 6 419 418 63 425 424 6 417 416 101 419 418 63 427 426 6 941 936 38 417 416 101 427 426 6 1029 1023 67 950 945 102 951 946 88 1077 1071 132 950 945 102 1029 1023 67 1030 1024 140 1077 1071 132 1029 1023 67 1021 1015 103 819 817 61 820 818 123 1078 1072 141 819 817 61 1021 1015 103 1022 1016 68 1078 1072 141 1021 1015 103 1033 1027 91 868 866 93 869 867 45 1079 1073 106 868 866 93 1033 1027 91 1034 1028 89 1079 1073 106 1033 1027 91 1016 1010 54 840 838 1 841 839 38 1080 1074 44 840 838 1 1016 1010 54 1017 1011 52 1080 1074 44 1016 1010 54 376 375 90 999 993 5 378 377 47 998 453 105 999 993 5 376 375 90 890 888 48 998 453 105 376 375 90 1023 1017 11 823 821 91 824 822 104 1081 1075 108 823 821 91 1023 1017 11 1024 1018 113 1081 1075 108 1023 1017 11 1002 996 80 878 876 93 879 877 63 1082 1076 31 878 876 93 1002 996 80 1003 997 109 1082 1076 31 1002 996 80 1083 1077 4 341 341 6 957 952 81 339 339 81 341 341 6 1083 1077 4 894 891 34 339 339 81 1083 1077 4 1025 1019 95 851 849 125 852 850 101 1084 1078 77 851 849 125 1025 1019 95 1026 1020 78 1084 1078 77 1025 1019 95 498 497 40 1028 1022 79 496 495 62 1085 1079 147 1028 1022 79 498 497 40 500 499 124 1085 1079 147 498 497 40 985 980 37 363 362 9 361 360 38 365 364 23 363 362 9 985 980 37 986 981 6 365 364 23 985 980 37 355 354 105 983 978 6 357 356 57 982 977 6 983 978 6 355 354 105 905 901 39 982 977 6 355 354 105 1063 1057 94 415 414 53 413 412 14 393 392 74 415 414 53 1063 1057 94 395 394 25 393 392 74 1063 1057 94 1086 1080 6 371 370 6 369 368 6 359 358 57 371 370 6 1086 1080 6 984 979 63 359 358 57 1086 1080 6 1087 1081 6 989 984 111 380 379 7 390 389 6 989 984 111 1087 1081 6 392 391 6 390 389 6 1087 1081 6 443 442 100 974 969 47 445 444 24 973 968 117 974 969 47 443 442 100 912 908 46 973 968 117 443 442 100 339 339 81 331 331 10 337 337 37 329 329 79 331 331 10 339 339 81 894 891 34 329 329 79 339 339 81 721 720 65 716 715 54 723 722 47 718 717 52 716 715 54 721 720 65 719 718 82 718 717 52 721 720 65 928 924 43 400 399 57 926 922 120 398 397 72 400 399 57 928 924 43 396 395 113 398 397 72 928 924 43 978 973 77 451 450 118 449 448 98 453 452 47 451 450 118 978 973 77 979 974 56 453 452 47 978 973 77 1088 1082 18 459 458 35 457 456 6 447 446 74 459 458 35 1088 1082 18 977 972 98 447 446 74 1088 1082 18 990 985 119 384 383 46 382 381 7 386 385 57 384 383 46 990 985 119 991 986 6 386 385 57 990 985 119 1006 1000 1 858 856 19 859 857 81 1089 1083 40 858 856 19 1006 1000 1 1007 1001 96 1089 1083 40 1006 1000 1 405 404 6 750 748 6 751 749 6 748 746 6 750 748 6 405 404 6 746 744 6 748 746 6 405 404 6 715 714 10 935 930 4 713 712 6 937 932 103 935 930 4 715 714 10 717 716 97 937 932 103 715 714 10 1090 1084 84 1020 1014 111 741 740 6 864 862 100 1020 1014 111 1090 1084 84 737 736 49 864 862 100 1090 1084 84 1031 1025 101 847 845 3 848 846 55 1091 1085 26 847 845 3 1031 1025 101 1032 1026 97 1091 1085 26 1031 1025 101 966 961 0 873 871 72 1065 1059 100 875 873 100 873 871 72 966 961 0 615 614 71 1046 1040 100 617 616 6 613 612 115 1046 1040 100 615 614 71 872 870 84 1013 1007 8 871 869 6 874 872 47 1013 1007 8 872 870 84 761 759 56 1043 1037 6 491 490 6 763 761 38 1043 1037 6 761 759 56 452 451 22 910 906 101 908 904 24 454 453 7 910 906 101 452 451 22 909 905 79 1092 1086 83 907 903 97 911 907 59 1092 1086 83 909 905 79 911 907 59 439 438 16 1092 1086 83 441 440 0 439 438 16 911 907 59 402 401 6 757 755 66 1064 1058 4 756 754 6 757 755 66 402 401 6 739 738 6 1090 1084 84 741 740 6 737 736 49 1090 1084 84 739 738 6 636 635 6 1053 1047 119 638 637 6 634 633 122 1053 1047 119 636 635 6 725 724 7 716 715 54 714 713 6 723 722 47 716 715 54 725 724 7 958 953 90 1083 1077 4 957 952 81 894 891 34 1083 1077 4 958 953 90 740 739 6 1067 1061 10 738 737 3 742 741 6 1067 1061 10 740 739 6 594 593 6 1054 1048 6 596 595 6 592 591 122 1054 1048 6 594 593 6 335 335 47 331 331 10 333 333 62 337 337 37 331 331 10 335 335 47 904 900 107 351 350 16 1093 1087 18 353 352 25 351 350 16 904 900 107 902 898 91 1093 1087 18 900 896 97 904 900 107 1093 1087 18 902 898 91 385 384 0 888 886 17 886 884 53 387 386 66 888 886 17 385 384 0 960 955 123 808 806 65 1061 1055 12 810 808 12 808 806 65 960 955 123 887 885 30 1094 1088 42 885 883 102 889 887 125 1094 1088 42 887 885 30 889 887 125 372 371 109 1094 1088 42 374 373 13 372 371 109 889 887 125 807 805 105 1015 1009 90 806 804 6 809 807 65 1015 1009 90 807 805 105 531 530 6 1044 1038 6 533 532 6 529 528 6 1044 1038 6 531 530 6 573 572 38 1069 1063 62 575 574 6 571 570 35 1069 1063 62 573 572 38 730 729 47 1076 1070 117 732 731 6 728 727 80 1076 1070 117 730 729 47 510 509 6 1066 1060 6 512 511 6 508 507 122 1066 1060 6 510 509 6 364 363 72 903 899 46 901 897 88 366 365 6 903 899 46 364 363 72 423 422 6 419 418 63 421 420 7 425 424 6 419 418 63 423 422 6 731 730 10 1068 1062 98 729 728 98 733 732 107 1068 1062 98 731 730 10 552 551 6 1040 1034 121 554 553 6 550 549 63 1040 1034 121 552 551 6 468 467 6 1045 1039 23 470 469 6 466 465 8 1045 1039 23 468 467 6 997 992 8 1075 1069 121 996 991 6 941 936 38 1075 1069 121 997 992 8 657 656 6 1074 1068 6 659 658 6 655 654 81 1074 1068 6 657 656 6 1084 1078 77 850 848 120 851 849 125 1085 1079 147 1027 1021 60 1028 1022 79 342 342 84 1009 1003 2 344 343 49 430 429 6 1014 1008 63 432 431 62 1080 1074 44 839 837 15 840 838 1 1089 1083 40 857 855 116 858 856 19 1078 1072 141 818 816 143 819 817 61 1077 1071 132 949 944 146 950 945 102 936 931 91 1062 1056 26 934 929 92 1079 1073 106 867 865 135 868 866 93 744 617 114 1067 1061 10 742 741 6 1081 1075 108 822 820 115 823 821 91 432 431 62 436 435 34 434 433 66 735 734 41 1068 1062 98 733 732 107 1082 1076 31 877 875 52 878 876 93 1091 1085 26 846 844 103 847 845 3 344 343 49 348 347 107 346 345 59 977 972 98 1088 1082 18 457 456 6 403 402 6 746 744 6 405 404 6 380 379 7 392 391 6 1087 1081 6 984 979 63 1086 1080 6 369 368 6

+
+
+
+ + + + 179 10 -67 88 10 -14 107 10 -92 63 10 -63 59 10 -122 14 10 -88 12 10 -166 -40 10 -79 -37 10 -218 -88 10 -239 221 10 18 198 10 58 79 10 40 0 10 0 40 10 79 -13 10 87 18 10 148 -25 10 165 -157 10 -182 -158 10 -133 -79 10 -40 -147 10 -64 -87 10 13 -157 10 -11 -169 10 39 -122 10 676 -75 10 666 -92 10 721 -3 10 660 -6 10 721 82 10 721 113 10 790 139 10 745 -89 10 1238 -99 10 1184 -6 10 1186 -91 10 1120 -6 10 1120 -6 10 1018 70 10 1120 65 10 1018 -88 10 1018 -91 10 948 -6 10 948 -6 10 868 72 10 948 89 10 869 -73 10 145 -62 10 62 -163 10 740 -135 10 789 -6 10 788 -3676 562 5683 -3605 526 5359 -3528 530 5675 -3380 477 5401 -3425 502 5605 -3312 479 5621 425 10 3219 4 9 3419 288 10 3062 -142 9 3134 122 9 3007 42 9 2869 144 10 89 73 10 100 -155 10 82 -109 10 109 -1243 10 1438 -1164 10 1503 -1437 10 1614 -1156 10 1601 -1223 10 1703 -1345 11 1781 -1485 14 1818 -1630 12 1778 -1716 10 1693 -1707 10 1596 -1627 10 1504 -2045 172 3176 -2027 185 3340 -2377 220 3144 -2101 203 3456 -2248 223 3492 -1506 10 1441 -1373 10 1421 -2708 267 3112 -2730 264 2936 -2656 245 2821 -2507 215 2790 -2320 188 2864 -2152 172 3004 -3899 601 5487 -3911 596 5286 -3835 571 5154 -3720 535 5048 400 10 3636 187 10 3823 -24 10 3852 -245 19 3816 -2429 242 3435 -2597 258 3296 66 10 1238 26 10 1277 -42 10 1278 76 10 1186 -102 10 869 207 10 -36 -3210 451 5560 -3148 427 5445 -3155 416 5316 -3232 427 5230 -3337 450 5198 -3429 465 5095 -3562 493 5030 459 10 3418 -113 10 2808 -334 18 2837 116 10 683 67 10 666 -161 10 705 -512 29 2956 -536 34 3116 -457 32 3260 -484 38 3452 141 10 710 -420 37 3655 -132 10 -226 -3803 586 5615 + + + + + + + + + + 2.119140625 6.166015625 1.224609375 5.642578125 1.408203125 6.416015625 0.978515625 6.125 0.9453125 6.7109375 0.49609375 6.37109375 0.4765625 7.140625 -0.037109375 6.287109375 -0.01171875 7.65234375 -0.515625 7.857421875 2.533203125 5.32421875 2.310546875 4.9296875 1.140625 5.109375 0.359375 5.505859375 0.755859375 4.7265625 0.22265625 4.640625 0.541015625 4.0390625 0.1015625 3.880859375 -1.1875 7.298828125 -1.1171875 6.82421875 -0.419921875 5.904296875 -0.931640625 6.158203125 -0.50390625 5.369140625 -1.15625 5.58984375 -1.306640625 5.115234375 -0.841796875 -1.0703125 -0.37890625 -0.974609375 -0.544921875 -1.509765625 0.328125 -0.921875 0.30078125 -1.509765625 1.16796875 -1.509765625 1.47265625 -2.181640625 1.73046875 -1.748046875 -0.517578125 -6.546875 -0.6171875 -6.029296875 0.30078125 -6.04296875 -0.53125 -5.40625 0.30078125 -5.40625 0.30078125 -4.412109375 1.048828125 -5.40625 1.001953125 -4.412109375 -0.5078125 -4.412109375 -0.533203125 -3.720703125 0.30078125 -3.720703125 0.30078125 -2.94921875 1.072265625 -3.720703125 1.240234375 -2.958984375 -0.369140625 4.07421875 -0.2578125 4.88671875 -1.24609375 -1.701171875 -0.966796875 -2.173828125 0.30078125 -2.16015625 0.63671875 -2.181640625 1.3671875 -1.4453125 0.8359375 -2.74609375 1.642578125 -2.05078125 1.138671875 -2.484375 1.615234375 -2.98828125 1.77734375 4.619140625 1.08203125 4.513671875 -1.171875 4.6875 -0.71484375 4.431640625 4.453125 -5.462890625 4.35546875 -5.36328125 4.587890625 -5.228515625 4.318359375 -5.228515625 4.35546875 -5.09375 4.453125 -4.99609375 4.587890625 -4.958984375 4.72265625 -4.99609375 4.822265625 -5.09375 4.857421875 -5.228515625 4.822265625 -5.36328125 4.591796875 -1.9375 4.671875 -1.640625 5.185546875 -1.9375 4.888671875 -1.421875 5.185546875 -1.34375 4.72265625 -5.462890625 4.587890625 -5.498046875 5.78125 -1.9375 5.701171875 -2.236328125 5.484375 -2.453125 5.185546875 -2.533203125 4.888671875 -2.453125 4.671875 -2.236328125 0.705078125 -1.0859375 1.009765625 -0.66015625 1.421875 -0.638671875 1.84765625 -0.615234375 5.484375 -1.421875 5.701171875 -1.640625 1.01171875 -6.55078125 0.62109375 -6.927734375 -0.05859375 -6.943359375 1.10546875 -6.04296875 -0.646484375 -2.953125 2.400390625 5.861328125 1.798828125 -2.865234375 2.02734375 -2.7109375 2.27734375 -2.54296875 2.51953125 -2.37890625 2.263671875 -1.732421875 2.431640625 -1.181640625 2.169921875 -0.92578125 0.400390625 -1.5078125 1.498046875 -1.14453125 1.017578125 -0.978515625 -1.220703125 -1.3515625 1.748046875 -1.40625 -0.94921875 7.732421875 + + + + + + + + + 0.5254901960784314 0.5254901960784314 0.5254901960784314 1 0.9098039215686274 0.9098039215686274 0.9098039215686274 1 0.6039215686274509 0.6039215686274509 0.6039215686274509 1 0.6 0.6 0.6 1 0.5843137254901961 0.5843137254901961 0.5843137254901961 1 0.9137254901960784 0.9137254901960784 0.9137254901960784 1 0.5372549019607843 0.5372549019607843 0.5372549019607843 1 0.5882352941176471 0.5882352941176471 0.5882352941176471 1 0.6274509803921569 0.6274509803921569 0.6274509803921569 1 0.9058823529411765 0.9058823529411765 0.9058823529411765 1 0.9019607843137255 0.9019607843137255 0.9019607843137255 1 0.6196078431372549 0.6196078431372549 0.6196078431372549 1 0.6392156862745098 0.6392156862745098 0.6392156862745098 1 0.6588235294117647 0.6588235294117647 0.6588235294117647 1 0.7058823529411765 0.7058823529411765 0.7058823529411765 1 0.6745098039215687 0.6745098039215687 0.6745098039215687 1 0.38823529411764707 0.38823529411764707 0.38823529411764707 1 0.40784313725490196 0.40784313725490196 0.40784313725490196 1 0.7686274509803922 0.7686274509803922 0.7686274509803922 1 0.4 0.4 0.4 1 0.7764705882352941 0.7764705882352941 0.7764705882352941 1 0.7647058823529411 0.7647058823529411 0.7647058823529411 1 0.5686274509803921 0.5686274509803921 0.5686274509803921 1 0.5058823529411764 0.5058823529411764 0.5058823529411764 1 0.4392156862745098 0.4392156862745098 0.4392156862745098 1 0.5019607843137255 0.5019607843137255 0.5019607843137255 1 0.8196078431372549 0.8196078431372549 0.8196078431372549 1 0.5450980392156862 0.5450980392156862 0.5450980392156862 1 0.8 0.8 0.8 1 0.7568627450980392 0.7568627450980392 0.7568627450980392 1 0.5411764705882353 0.5411764705882353 0.5411764705882353 1 0.5294117647058824 0.5294117647058824 0.5294117647058824 1 0.7372549019607844 0.7372549019607844 0.7372549019607844 1 0.7411764705882353 0.7411764705882353 0.7411764705882353 1 0.6627450980392157 0.6627450980392157 0.6627450980392157 1 0.49411764705882355 0.49411764705882355 0.49411764705882355 1 0.5568627450980392 0.5568627450980392 0.5568627450980392 1 0.6352941176470588 0.6352941176470588 0.6352941176470588 1 0.984313725490196 0.984313725490196 0.984313725490196 1 0.615686274509804 0.615686274509804 0.615686274509804 1 0.9647058823529412 0.9647058823529412 0.9647058823529412 1 0.6078431372549019 0.6078431372549019 0.6078431372549019 1 0.7529411764705882 0.7529411764705882 0.7529411764705882 1 0.5764705882352941 0.5764705882352941 0.5764705882352941 1 0.7176470588235294 0.7176470588235294 0.7176470588235294 1 0.7333333333333333 0.7333333333333333 0.7333333333333333 1 0.6980392156862745 0.6980392156862745 0.6980392156862745 1 0.6941176470588235 0.6941176470588235 0.6941176470588235 1 0.9725490196078431 0.9725490196078431 0.9725490196078431 1 0.7019607843137254 0.7019607843137254 0.7019607843137254 1 0.6901960784313725 0.6901960784313725 0.6901960784313725 1 0.6823529411764706 0.6823529411764706 0.6823529411764706 1 0.6862745098039216 0.6862745098039216 0.6862745098039216 1 1 1 1 1 0.6705882352941176 0.6705882352941176 0.6705882352941176 1 0.6431372549019608 0.6431372549019608 0.6431372549019608 1 0.6509803921568628 0.6509803921568628 0.6509803921568628 1 0.44313725490196076 0.44313725490196076 0.44313725490196076 1 0.3607843137254902 0.3607843137254902 0.3607843137254902 1 0.5803921568627451 0.5803921568627451 0.5803921568627451 1 0.6666666666666666 0.6666666666666666 0.6666666666666666 1 0.6784313725490196 0.6784313725490196 0.6784313725490196 1 0.41568627450980394 0.41568627450980394 0.41568627450980394 1 0.396078431372549 0.396078431372549 0.396078431372549 1 0.4196078431372549 0.4196078431372549 0.4196078431372549 1 0.6235294117647059 0.6235294117647059 0.6235294117647059 1 0.45098039215686275 0.45098039215686275 0.45098039215686275 1 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 2 1 1 1 0 0 0 3 3 1 1 1 1 2 2 2 4 4 3 3 3 1 2 2 2 5 5 1 3 3 1 4 4 3 6 6 4 5 5 1 4 4 3 7 7 5 5 5 1 6 6 4 8 8 6 7 7 5 6 6 4 9 9 7 7 7 5 8 8 6 1 1 1 11 11 8 10 10 3 12 12 9 11 11 8 1 1 1 13 13 5 12 12 9 1 1 1 14 14 10 12 12 9 13 13 5 15 15 10 14 14 10 13 13 5 16 16 11 14 14 10 15 15 10 17 17 11 16 16 11 15 15 10 19 19 13 7 7 5 18 18 12 20 20 5 7 7 5 19 19 13 21 21 14 20 20 5 19 19 13 22 22 9 20 20 5 21 21 14 23 23 15 22 22 9 21 21 14 24 24 8 22 22 9 23 23 15 27 27 18 26 26 17 25 25 16 28 28 19 26 26 17 27 27 18 29 29 20 28 28 19 27 27 18 30 30 21 28 28 19 29 29 20 31 31 22 30 30 21 29 29 20 32 32 23 30 30 21 31 31 22 35 35 26 34 34 25 33 33 24 36 36 27 34 34 25 35 35 26 37 37 28 36 36 27 35 35 26 38 38 29 36 36 27 37 37 28 39 39 30 38 38 29 37 37 28 40 40 31 38 38 29 39 39 30 38 38 29 41 41 31 36 36 27 42 42 31 41 41 31 38 38 29 43 43 32 42 42 31 38 38 29 44 44 33 42 42 31 43 43 32 45 45 31 44 44 33 43 43 32 46 46 6 44 44 33 45 45 31 15 15 10 47 47 34 17 17 11 48 48 9 47 47 34 15 15 10 13 13 5 48 48 9 15 15 10 22 22 9 48 48 9 13 13 5 20 20 5 22 22 9 13 13 5 50 50 36 27 27 18 49 49 35 29 29 20 27 27 18 50 50 36 51 51 29 29 29 20 50 50 36 31 31 22 29 29 20 51 51 29 46 46 6 31 31 22 51 51 29 54 54 39 53 53 38 52 52 37 55 55 38 53 53 38 54 54 39 56 56 29 55 55 38 54 54 39 57 57 4 55 55 38 56 56 29 60 54 41 59 53 40 58 52 8 61 55 40 59 53 40 60 54 41 62 56 42 61 55 40 60 54 41 63 57 43 61 55 40 62 56 42 12 12 9 64 58 8 11 11 8 65 59 44 64 58 8 12 12 9 14 14 10 65 59 44 12 12 9 16 16 11 65 59 44 14 14 10 66 60 8 22 22 9 24 24 8 48 48 9 22 22 9 66 60 8 67 61 45 48 48 9 66 60 8 47 47 34 48 48 9 67 61 45 70 64 48 69 63 47 68 62 46 71 65 46 69 63 47 70 64 48 72 66 14 71 65 46 70 64 48 70 64 48 73 67 49 72 66 14 74 68 50 73 67 49 70 64 48 75 69 51 74 68 50 70 64 48 70 64 48 76 70 50 75 69 51 77 71 50 76 70 50 70 64 48 78 72 52 77 71 50 70 64 48 81 75 53 80 74 14 79 73 14 82 76 49 80 74 14 81 75 53 83 77 49 82 76 49 81 75 53 70 64 48 84 78 50 78 72 52 85 79 14 84 78 50 70 64 48 68 62 46 85 79 14 70 64 48 81 75 53 87 81 46 86 80 47 88 82 46 87 81 46 81 75 53 89 83 49 88 82 46 81 75 53 81 75 53 90 84 46 89 83 49 91 85 14 90 84 46 81 75 53 79 73 14 91 85 14 81 75 53 53 53 38 93 87 34 92 86 13 94 88 14 93 87 34 53 53 38 95 89 54 94 88 14 53 53 38 59 53 40 97 87 56 96 86 55 98 88 50 97 87 56 59 53 40 99 89 13 98 88 50 59 53 40 81 75 53 100 90 47 83 77 49 101 91 46 100 90 47 81 75 53 86 80 47 101 91 46 81 75 53 35 35 26 103 93 58 102 92 57 104 94 58 103 93 58 35 35 26 33 33 24 104 94 58 35 35 26 105 95 23 35 35 26 102 92 57 37 37 28 35 35 26 105 95 23 39 39 30 37 37 28 105 95 23 44 44 33 106 96 27 42 42 31 50 50 36 106 96 27 44 44 33 51 51 29 50 50 36 44 44 33 107 97 59 1 1 1 10 10 3 0 0 0 1 1 1 107 97 59 108 98 54 55 55 38 57 57 4 109 99 50 55 55 38 108 98 54 110 100 60 55 55 38 109 99 50 111 101 12 55 55 38 110 100 60 112 102 18 55 55 38 111 101 12 113 103 34 55 55 38 112 102 18 113 103 34 53 53 38 55 55 38 114 104 34 53 53 38 113 103 34 3 3 1 13 13 5 1 1 1 5 5 1 13 13 5 3 3 1 7 7 5 13 13 5 5 5 1 20 20 5 13 13 5 7 7 5 115 105 56 59 53 40 96 86 55 58 52 8 59 53 40 115 105 56 116 98 13 61 55 40 63 57 43 117 99 61 61 55 40 116 98 13 119 107 63 30 30 21 118 106 62 28 28 19 30 30 21 119 107 63 120 108 64 27 27 18 25 25 16 49 49 35 27 27 18 120 108 64 121 100 13 61 55 40 117 99 61 122 101 65 61 55 40 121 100 13 123 102 42 61 55 40 122 101 65 124 103 56 61 55 40 123 102 42 125 109 66 30 30 21 32 32 23 118 106 62 30 30 21 125 109 66 124 103 56 59 53 40 61 55 40 126 104 56 59 53 40 124 103 56 127 110 39 7 7 5 9 9 7 18 18 12 7 7 5 127 110 39 43 43 32 40 40 31 45 45 31 38 38 29 40 40 31 43 43 32 128 105 60 53 53 38 92 86 13 52 52 37 53 53 38 128 105 60 53 53 38 114 104 34 95 89 54 59 53 40 126 104 56 99 89 13 46 46 6 51 51 29 44 44 33

+
+
+
+ + + + -18816 -136 9594 -18135 -296 9246 -18615 150 10479 -17902 -63 10052 -18160 282 11183 -17453 67 10740 -17023 -25 11411 -16772 106 10318 -16353 14 10979 -15685 71 10505 -15888 -145 11471 -15131 -125 11083 -14775 -308 11630 -14194 -503 11158 -13708 -639 11797 -13094 -1031 11213 -13244 -529 12309 -12225 -1106 12223 -12745 -460 12777 -12170 -610 13236 -12684 -184 13864 -11705 -697 13682 -12230 -246 14296 -11740 -197 14699 -12734 227 14883 -12282 326 15428 -12797 478 15490 -12913 476 15911 -13312 630 15552 -13261 472 16009 -13592 476 15892 -13185 235 16695 -13873 322 16232 -13789 -92 17309 -14378 -12 16805 -14877 -211 17376 -14974 5 16332 -16221 -132 16245 -15526 31 15686 -16229 9 15131 -15088 289 15088 -15512 223 14807 -15574 251 14460 -16659 27 14384 -17432 85 14890 -17420 138 13661 -18075 319 14170 -18545 520 13476 -18581 388 14644 -19136 637 13915 -19721 621 14344 -19632 832 13168 -20247 820 13569 -20754 871 12761 -20838 808 13965 -21341 906 13155 -22610 -280 13954 -21878 643 12288 -23595 -692 12022 -22416 22 11421 -13904 -242 19138 -13108 -89 19689 -14330 -302 19732 -13514 -139 20281 -14775 -493 20336 -13041 -23 21411 -13827 -1027 22675 -12231 428 21914 -12022 93 23595 -11421 879 22416 -10468 1352 22805 -11073 913 21758 -10224 1368 22200 -9881 1270 21498 -9275 1686 22553 -8989 1536 21856 -8143 1275 22213 -8704 1263 21156 -7887 1029 21495 -7595 730 20756 -7098 762 21803 -6869 455 21038 -6111 174 21317 -5858 -20 20547 -5004 -168 20813 -4901 -230 20018 -4066 -379 20183 -3673 -172 19396 -3174 -519 20172 -3053 -291 19416 -2329 -534 19556 -2587 -371 19256 -2255 -344 18775 -2858 -150 18744 -3424 31 18636 -3283 -70 18242 -3759 106 18547 -3704 36 18335 -4094 144 18457 -3990 2 18033 -4293 17 18000 -4491 -201 17543 -4845 -20 18258 -5270 -406 17388 -5485 -235 18071 -6212 -498 17768 -5713 -265 18637 -6257 -452 18250 -6642 -510 18428 -7203 -684 17616 -6834 -850 16776 -7922 -619 17124 -7623 -775 16490 -8253 -574 16172 -7209 -1032 15700 -7865 -882 15435 -7364 -2634 14454 -10072 666 24588 -9515 1517 23194 -8641 1302 23550 -8391 1355 22951 -7529 891 23212 -7311 896 22509 -6460 527 22762 -6328 459 22084 -5387 79 22253 -5192 -48 21519 -4349 -312 21723 -4254 -378 21007 -3336 -490 21139 -2312 -481 20467 -2083 -539 19846 -1441 -505 19673 -1535 -385 20433 -1573 -210 21255 -732 -322 20462 -676 -57 21327 -1 -25 21278 -773 168 22062 10 254 22024 35 525 22790 814 193 21959 889 453 22695 1724 318 22638 912 640 23463 1816 478 23391 1889 473 24176 2711 307 23335 2849 275 24106 3809 331 24031 2941 131 24911 3935 22 24848 4142 -692 26155 17954 1368 16584 17392 1270 16041 18583 1686 15790 18009 1536 15303 18609 1275 14609 17431 1263 14816 18005 1029 14144 17393 730 13638 18542 762 13488 17885 455 13034 18385 174 12400 17731 -20 11921 18248 -168 11190 17523 -230 10847 17938 -379 10104 17312 -172 9487 18204 -519 9252 17522 -291 8903 17879 -534 8259 17514 -371 8411 17159 -344 7946 16943 -150 8510 16665 31 9015 16334 -70 8759 16477 106 9307 16293 36 9189 16289 144 9598 15917 2 9367 15793 17 9645 15297 -201 9692 15867 -20 10250 14908 -406 10385 15491 -235 10801 14979 -498 11399 15959 -265 11193 15423 -452 11590 15474 -510 12012 14528 -684 12294 13843 -850 11684 13838 -619 12826 13328 -775 12346 12830 -574 12847 12704 -1032 11708 12249 -882 12250 11473 -2634 11470 -21691 -598 15759 -19688 274 15542 -20180 -1027 17269 -19039 -23 16310 -18725 -1263 18725 -17789 -390 17789 -16304 -540 19044 -15835 -425 18507 -15360 -330 17950 -13474 -227 18522 -12692 -105 19115 -11905 117 19581 -12232 -178 18515 -11496 -17 18923 -11043 -177 18344 -10754 241 19416 -10299 0 18854 -9656 100 19088 -9962 -311 18061 -9177 -338 18292 -8942 -435 17595 -8194 -536 17924 -8263 -554 17579 -8731 -384 16919 -9641 -314 17190 -9272 -103 16420 -9736 -94 16780 -10180 -59 16712 -10688 -332 17442 -10491 -53 16418 -10881 -164 16456 -10363 1 15735 -11188 -56 15401 -10624 -404 14617 -11195 -627 14091 -11211 -1222 13095 -10854 -7117 -10894 -11470 -2634 -11473 -9516 -2626 -13101 -11186 -1219 -13120 -10172 -1082 -14001 -11221 -890 -14121 -10636 -856 -14558 -11664 -652 -14783 -11081 -654 -15223 -11552 -492 -15884 -10505 -636 -15616 -10975 -494 -16304 -10397 -505 -16763 -11435 -322 -16985 -10768 -385 -17433 -11220 -210 -18120 -10159 -481 -17917 -10579 -368 -18640 -9726 -490 -19063 -10851 -298 -19282 -10062 -434 -19739 -10399 -342 -20409 -9250 -312 -20131 -9579 -220 -20792 -8721 79 -21170 -9886 -155 -21479 -9013 140 -21843 -9293 105 -22510 -8152 527 -22212 -8415 494 -22870 -7552 891 -23204 -8663 412 -23541 -7767 848 -23907 -8285 276 -25499 -6851 1302 -24132 -6304 666 -25813 -5935 1517 -24357 -4935 1352 -24603 -5752 1686 -23697 -4777 1368 -23970 -4642 1270 -23200 -3830 913 -24111 -3724 914 -23383 -24421 1355 -888 -23642 1275 -880 -24402 891 11 -23667 896 2 -23644 527 889 -22929 762 -13 -22959 459 805 -22163 174 775 -22829 79 1752 -22070 -48 1711 -22004 -312 2576 -21341 -168 1672 -21293 -378 2445 -20451 -379 2369 -21135 -490 3359 -20166 -519 3214 -20180 -481 4125 -19319 -534 3827 -19518 -539 4151 -19155 -505 4708 -19907 -385 4853 -20701 -210 5071 -19687 -322 5626 -20492 -57 5946 -20237 -25 6574 -21222 168 6081 -20943 254 6815 -21664 525 7076 -20632 193 7560 -21310 453 7859 -20997 318 8635 -22033 640 8118 -21685 478 8956 -22409 473 9267 -21355 307 9789 -22046 275 10158 -21678 331 11049 -22783 131 10495 -13098 -2626 -9519 -13745 -7117 -7028 -14454 -2634 -7366 -15399 -2626 -5005 -15919 -1222 -6615 -16451 -728 -5345 -16861 -627 -6292 -17185 -404 -5587 -17608 -197 -6623 -18104 -56 -5881 -18468 326 -6913 -18897 68 -6149 -19268 374 -7038 -19523 76 -6349 -20152 -35 -6572 -19725 -153 -5656 -20141 -184 -5965 -19891 -332 -4775 -20506 -290 -5769 -20847 -253 -5529 -21389 -178 -5912 -20858 -177 -4834 -21550 -17 -5085 -21789 241 -4227 -22302 117 -5271 -22586 479 -4362 -23230 542 -4562 -22669 768 -3554 -23389 914 -3683 -23499 1270 -2754 -24115 913 -3807 -24273 1368 -2863 -24924 1352 -2908 -24315 1686 -1852 -24999 1517 -1881 -25068 1302 -940 -26497 666 -1980 -26811 276 0 2539 -2634 16022 2379 -7117 15195 5005 -2626 15399 6990 -7117 13767 7366 -2634 14454 9519 -2626 13098 8990 -1222 14709 10167 -728 13994 9942 -627 15001 10618 -404 14621 10352 -197 15708 11189 -56 15400 10877 326 16448 11673 68 16082 11451 374 17019 12062 76 16612 12440 -35 17162 12633 -153 16170 12788 -184 16665 13285 -332 15555 13198 -290 16720 13615 -253 16727 13829 -178 17355 14033 -177 16171 14444 -17 16781 15143 241 16227 14944 117 17373 15708 479 16805 16112 542 17345 16250 768 16200 16757 914 16728 17271 913 17255 18454 1352 17003 19118 1517 16216 19727 1302 15496 20272 666 17177 21691 276 15759 19148 896 13909 19749 891 14333 19651 527 13177 20250 494 13555 20750 105 12748 20846 412 13953 21355 -23 13132 22624 -520 13928 21886 -269 12276 23595 -1027 12022 22416 -515 11421 22793 -267 10470 21733 -309 11067 22126 -180 10157 21447 -147 9858 22469 98 9250 21783 136 8965 22124 473 8094 21116 81 8669 21533 409 7782 20743 168 7553 21686 525 7009 20949 254 6796 21136 193 6010 20236 -25 6576 20427 -39 5929 19643 -298 5596 20553 -124 4992 19799 -308 4781 19964 -301 3986 19064 -458 4599 19252 -437 3857 18525 -535 3676 19438 -269 3076 18770 -226 2972 6618 -1031 15918 7847 -1106 15403 7614 -529 16400 8213 -460 16069 7923 -246 17110 8694 -33 16836 8900 264 17586 9631 350 17131 9871 549 17950 10154 490 17299 10194 581 17756 10677 630 17466 10534 493 18037 10914 476 17838 11150 322 18210 11804 235 17699 12201 -92 18463 12930 -211 17798 13452 -227 18538 14257 -105 17977 14675 -89 18550 15392 161 17935 15854 121 18487 16573 509 17878 17061 428 18404 17789 879 17789 18725 93 18725 -26155 93 -4142 -24848 879 -3935 -24621 428 -4861 -23917 509 -4721 -23693 121 -5637 -22995 161 -5462 -22776 -89 -6382 -22101 -105 -6164 -21779 -227 -7090 -20922 -211 -6799 -20723 -92 -7765 -19953 235 -7380 -19725 322 -8178 -19315 476 -8016 -19124 493 -8400 -18905 630 -7854 -18684 581 -8373 -18383 490 -8026 -18537 549 -8719 -17861 350 -8198 -17537 264 -8996 -16929 -33 -8510 -16467 -246 -9184 -16090 -460 -8173 -15799 -529 -8792 -15402 -1106 -7849 -14710 -1031 -8988 -12221 -982 -12220 -12319 -752 -13233 -11741 -909 -13705 -12826 -535 -13863 -12237 -638 -14329 -12720 -458 -14926 -12126 -478 -15431 -12602 -298 -16073 -12025 -306 -16545 -12506 -25 -17215 -11988 -57 -17651 -12342 168 -18304 -11582 -57 -18778 -11987 81 -19425 -11171 -210 -19930 -11556 -147 -20582 -10741 -277 -21076 -11077 -309 -21728 -10190 -188 -22145 -10490 -269 -22796 -9558 -23 -23176 -10116 -520 -24566 2838 -458 17920 2704 -982 17070 3660 -74 17815 4070 -685 16768 4272 -47 17585 4910 -135 17408 5144 71 18164 5514 -315 17172 5864 -125 17815 6225 -503 16947 6495 -308 17646 6983 -639 16683 7182 -412 17508 7638 -179 18164 8295 55 17860 8530 225 18526 9243 446 18392 9687 289 19012 10391 356 18608 10120 31 19614 10906 5 19288 10437 -132 20447 11928 -211 19519 10753 -203 21094 12324 -330 20156 12708 -425 20779 14338 -302 19726 13074 -540 21391 14775 -493 20336 13863 -1463 22657 15759 -1272 21691 -22735 1022 -2670 -21978 724 -2571 -22810 1263 -1741 -22040 854 -1675 -22087 730 -810 -21231 437 -1600 -21233 302 -719 -20459 -96 -754 -21224 112 7 -20214 -316 212 -20407 -206 904 -19559 -80 1073 -20553 -230 1524 -19680 -80 1736 -19582 -172 2500 -19164 85 1780 -19048 86 2016 -18820 144 1809 -18801 106 2155 -18582 36 2142 -18364 -70 2514 -17978 -149 2273 -17913 -224 2856 -17223 -578 2698 -17139 -679 3429 -16698 -1320 2642 -16467 -1401 3602 -16022 -2634 2536 -15399 -2626 5002 -15231 -7117 2424 -13715 -7117 6957 -12022 -1027 -23595 -11421 -515 -22416 -12285 -267 -21868 -11930 -180 -21223 -12741 98 -20690 -12353 136 -20056 -13141 473 -19553 -12846 409 -18953 -13424 525 -18417 -12953 254 -17812 -13566 193 -17286 -13040 -39 -16804 -13693 -124 -16120 -13207 -308 -15505 -13808 -301 -14959 -13308 -437 -14437 -13917 -269 -13914 -13437 -226 -13437 -7011 -7117 -13737 -7364 -2634 -14456 -5002 -2626 -15401 -6549 -1295 -15415 -5516 -1331 -15962 -6838 -507 -15964 -5869 -768 -16420 -6678 -201 -16833 -5956 -406 -17165 -6811 -20 -17619 -6184 -235 -17844 -7065 -80 -18270 -6332 -265 -18436 -6449 -316 -19159 -5458 -510 -18813 -5605 -96 -19691 -5172 -357 -19195 -4696 -352 -19246 -4527 -684 -18486 -5418 -498 -18026 -4331 -850 -17589 -5238 -648 -17384 -5054 -933 -16644 2972 -226 18770 3733 61 18575 3850 -23 19369 4629 106 19140 4028 -63 20132 4821 67 19918 5024 282 20727 5592 -25 19716 5813 190 20516 6549 33 20295 6045 488 21292 6837 301 21057 7086 520 21802 7609 138 20789 7891 319 21569 8775 85 21180 8185 388 22197 9064 127 21830 9345 86 22490 11078 -282 21740 11421 -390 22416 12022 -1263 23595 15401 -2626 5002 16761 -1219 4039 16459 -1082 5348 17378 -890 4828 17162 -856 5526 18126 -652 5103 17913 -654 5802 18682 -492 6060 17678 -636 6459 18462 -494 6739 18264 -505 7450 19235 -322 7019 18958 -385 7774 19728 -210 8064 18751 -481 8523 19515 -368 8861 19074 -490 9705 20113 -298 9221 19743 -434 10054 20409 -342 10398 19316 -312 10849 19971 -220 11190 19499 79 12000 20623 -155 11565 20131 140 12373 -25838 -1027 -6143 -24393 -23 -5786 -23465 -139 -6585 -23194 -302 -7531 -22498 -242 -7310 -21818 -330 -9062 -21123 -211 -8779 -20426 -12 -8481 -20160 5 -9194 -19344 356 -8946 -19716 31 -9919 -19012 289 -9687 -19406 9 -10759 -18876 223 -10177 -18565 251 -10343 -18288 446 -9446 -16191 -2626 -1 -16685 -1295 1465 -16885 -1331 313 -17296 -507 1570 -17430 -768 507 -18073 -201 1149 -18165 -406 360 -18862 -20 1033 -18881 -235 367 -19490 -265 325 -19579 -510 -622 -19854 -357 -1012 -19755 -352 -1480 -18980 -684 -1407 -18818 -498 -417 -18067 -850 -1315 -18152 -648 -390 -17391 -933 -336 -9979 -539 -17280 -9610 -534 -17190 -9288 -519 -18186 -8573 -379 -18718 -8905 -378 -19496 -8185 -168 -19779 -8448 -48 -20461 -7585 174 -20838 -7861 459 -21586 -7072 762 -21811 -7315 896 -22508 -6468 1275 -22757 -6701 1355 -23500 -15608 67 -13279 -16113 -25 -12663 -16248 282 -13816 -16762 190 -13180 -17406 488 -13672 -17228 33 -12569 -17909 301 -13017 -18376 138 -12346 -18548 520 -13473 -19062 319 -12811 -19669 388 -13146 -19548 85 -11977 -20165 127 -12333 -21099 -203 -10745 -20779 86 -12701 -21741 -282 -11076 -22416 -390 -11421 -22495 -425 -9341 -23150 -540 -9621 -23907 -493 -7767 -21114 0 -3969 -21138 100 -3285 -21901 478 -3435 -23564 1536 -1795 -25137 848 0 -25066 412 964 -26490 -520 2030 24583 -748 10083 23170 -18 9519 23519 344 8637 22801 436 8369 23101 828 7499 22376 678 7257 22597 640 6382 21859 453 6167 22063 318 5355 21299 75 5151 21480 31 4328 20708 -144 4135 20862 -136 3297 20106 -296 3179 -13961 -748 -22607 -13149 -18 -21320 -13950 344 -20812 -13527 436 -20173 -14281 828 -19645 -13837 678 -19023 -14530 640 -18446 -14059 453 -17838 -14701 318 -17300 -14203 75 -16686 -14834 31 -16127 -14323 -144 -15518 -14939 -136 -14930 -14398 -296 -14390 15698 478 15652 15170 100 15083 16269 724 14999 15681 305 14459 16235 437 13773 15195 -96 13880 15645 5 13261 15112 -352 12810 16108 -96 12635 15467 -357 12489 14514 -536 13332 14165 -554 13291 13970 -435 13941 14561 -338 14381 -24557 -389 10133 -23150 402 9568 -23509 618 8662 -22770 708 8387 -23097 828 7511 -22368 678 7281 -22657 473 6455 -21995 409 6361 -22179 81 5397 -21438 -57 5212 -21692 -298 4361 -20997 -368 4301 2048 -389 26487 1946 402 24974 973 618 25036 940 708 24248 6 828 24288 12 678 23524 -861 473 23543 -747 409 22884 -1720 81 22761 -1667 -57 22000 -2554 -298 21978 -2397 -368 21298 0 -304 26811 0 706 25097 -946 344 25037 -913 436 24271 -1853 98 24228 -1794 136 23487 -2748 -147 23443 -2677 -210 22690 -3582 -342 22624 -3461 -434 21883 -7800 -230 -19076 -8429 -172 -17851 -8942 -291 -17502 -9225 -371 -17099 -9211 -344 -16515 -8704 -150 -16844 -8183 31 -17089 -8066 -70 -16688 -7859 106 -17214 -7780 36 -17011 -7536 144 -17339 -7371 2 -16934 -7107 17 -17086 -25499 -304 8285 -23869 706 7755 -24104 344 6836 -23366 436 6631 -23615 98 5723 -22892 136 5551 -23145 -147 4630 -22407 -210 4465 -22624 -342 3583 -21882 -434 3470 -13992 -841 -10169 -14998 -503 -10051 -14555 -315 -10651 -15216 -125 -10966 -14838 71 -11671 -15820 -145 -11565 -15496 14 -12160 -14996 106 -12763 -15092 -63 -13920 -15719 150 -14465 -16288 427 -15016 -15480 23 -15469 -16824 632 -15540 -16053 269 -16042 -16625 521 -16615 18231 -539 8114 18664 -378 10537 18861 -48 11587 19048 459 12843 -16547 -233 -11910 -17093 -165 -11376 -16321 -347 -10899 -16717 -276 -10784 -16856 -179 -10205 -17447 -21 -10667 -18045 35 -11137 -17790 225 -9973 -18232 237 -10354 -18828 27 -11398 10780 -7117 11038 11243 -435 13093 12313 -287 13363 12751 -103 13892 13393 -384 13532 13369 -314 14481 13740 -398 14498 14099 -311 15056 14748 0 15622 -704 -494 19641 9 -492 19641 3 -306 20453 747 -298 20411 672 -39 21260 1603 -124 21090 1682 75 21848 2521 31 21767 2491 235 22646 3557 269 22414 3683 364 23214 17292 -746 20157 16333 -23 19019 15112 -139 19120 13904 -242 19138 11539 -12 18867 -15759 -304 -21691 -14752 706 -20304 -15503 618 -19682 -15013 708 -19064 -15739 473 -18448 -15219 478 -17856 -15909 307 -17285 -15326 235 -16856 -15207 -7117 -2593 -16022 -2634 -2539 -16792 -435 -3983 -17111 -882 -2710 -17816 -287 -3573 -17931 -574 -2852 -18482 -103 -3744 -18789 -384 -3075 -19328 -314 -3857 -19497 -435 -3067 -19638 -398 -3653 -20256 -311 -3893 -20011 -39 7209 -19181 -298 7018 -19451 -306 6324 -18677 -492 6078 -18897 -494 5399 -18098 -636 5165 -18452 -561 4376 -17590 -647 4308 -18553 -344 3656 -17808 -397 3505 -18709 -150 3073 -10083 -804 -14876 -9533 -647 -15398 -9230 -861 -14914 -8837 -397 -15853 -8558 -679 -15240 -8251 -224 -16154 -7888 -578 -15546 -7718 -149 -16396 -7207 -138 -16529 25499 -304 8285 23869 706 7755 24111 618 6811 23351 708 6598 23577 473 5674 22808 478 5500 23031 307 4632 22307 235 4628 22416 269 3543 21617 23 3415 -10035 478 19767 -9237 724 20108 -8905 305 19382 -8082 437 19697 -8505 -96 18740 -7777 5 18978 -7513 -352 18331 -7039 -96 19225 -7098 -357 18569 -1993 -748 26495 -1893 -18 24977 -2914 -267 24913 -2823 -180 24182 -3810 -309 24089 -3698 -277 23365 -4626 -155 23188 -4471 -220 22452 -17036 -861 4169 -16459 -1082 5348 -17264 -804 4992 -17133 -856 5617 -17903 -654 5834 -17664 -652 6525 -18423 -478 6764 -18126 -458 7484 -25815 -748 6291 -24340 -18 5917 -24594 -267 4926 -23871 -180 4787 -24088 -309 3820 -23364 -277 3703 -23483 -155 2765 -22735 -220 2685 -14500 -23 -13406 -13938 61 -12833 -14385 157 -12238 -13793 -47 -11715 -14204 -135 -11197 -6552 -1182 15965 -5002 -2626 15399 -4919 -1331 16155 -3762 -1295 16321 -3851 -507 16934 -2646 -1320 16697 -2755 -578 17214 -2034 -679 17360 -2819 -224 17919 -2168 -397 18019 -19409 -291 3096 -19113 -371 3489 -18782 31 2501 -20336 571 14775 -19127 356 15099 -18501 86 15837 -17960 127 15366 -16739 -203 16746 -4142 -1027 26155 -3935 -515 24848 -4912 -269 24608 -4772 -188 23906 -5712 105 23674 -5547 140 22969 -19562 -124 8042 -18828 -308 7769 -18494 -301 8509 -17843 -437 8195 -17534 -269 8937 -17148 -535 7914 -16932 -226 8627 -16165 -458 8237 -14486 356 15633 -14021 549 14935 -14636 446 14474 -13975 264 13899 -14983 225 13837 -14422 55 13408 -14915 -179 12877 -13824 -246 12823 -14431 -412 12240 13158 -1182 11165 13101 -2626 9516 13844 -1331 9671 14360 -1295 8621 14915 -507 8896 15062 -1320 7677 15520 -578 7940 15881 -679 7299 16171 -224 8218 16467 -397 7631 -26155 -1027 4142 -24848 -515 3935 -24922 -269 2932 -24211 -188 2848 -24280 105 1882 -23559 140 1822 -9864 -561 -16196 1 -2626 16191 1337 -1219 17189 0 -1082 17306 778 -890 18020 47 -856 18030 747 -652 18816 16 -654 18829 -680 -636 18809 12950 -94 14445 12748 -59 14846 12283 42 14318 11762 1 14718 11779 -151 13744 11247 -206 14187 -18968 -94 -4074 -19040 -59 -4517 -18353 42 -4363 -18167 1 -4993 -17608 -151 -4195 -17438 -206 -4866 -16168 35 13720 -15481 237 14140 -15537 -21 13296 -16101 -165 12741 -15422 -276 12566 -15409 -347 12154 -16440 -233 12056 -6253 1029 -22026 -6055 730 -21257 -5393 1263 -22232 -5217 854 -21479 -4346 724 -21697 -5039 437 -20686 -4187 305 -20915 -4134 -96 -20160 -3407 100 -21119 -3327 -338 -20193 -11701 -253 18118 -11823 -290 17719 -12931 -211 17797 -12478 -35 17134 -12648 374 16150 -13899 493 15593 -13737 581 15182 -13314 490 15003 -13023 428 15218 -13317 350 14453 -17253 -282 17254 7321 637 22500 6457 832 22741 7547 621 23189 6648 820 23449 6842 808 24134 5723 871 23682 5916 906 24361 4926 643 24605 6284 -59 25816 -7245 302 19971 -6551 112 20187 -6044 -316 19290 -5446 -206 19688 -5023 -80 18933 -4429 -80 19253 -4228 85 18776 -3968 86 18739 16754 302 13062 17174 112 12469 16478 -316 11709 17041 -206 11264 16454 -80 10628 16942 -80 10162 16550 85 9824 16596 86 9565 4750 689 23951 4629 740 23200 5560 897 22967 5392 785 22247 6277 703 22007 -17947 -138 1746 -18383 2 1777 -18446 17 1479 -18841 106 1421 -5694 -933 16436 -4903 -768 16734 -3885 -138 17609 -18013 703 -14114 -18591 916 -14602 -19148 637 -13899 -19736 621 -14323 -20271 356 -13525 -20866 274 -13921 -21395 -23 -13067 -22660 -1027 -13856 -23595 -1263 -12022 13872 -933 10494 14400 -768 9834 15546 -138 9136 -17439 785 -14828 -17998 981 -15312 -18550 1021 -15795 -17381 740 -16048 -17922 762 -16584 -17207 426 -17202 13749 -7117 6993 14456 -2634 7364 15439 -1401 6764 16233 -861 6640 16763 -647 6853 -11897 -184 17312 -11475 -153 17012 -12071 76 16605 -11687 68 16071 5213 575 21515 4350 427 21722 4477 632 22461 -7165 -7117 13663 -2400 -7117 15236 -2536 -2634 16022 -1662 -1401 16774 -1298 -861 17491 -1338 -647 18061 18880 -478 5356 19453 -306 6316 20074 -57 7234 20408 -57 8384 -15935 -1219 6584 -16897 -890 6308 -16663 -909 6931 -17410 -638 7210 7197 -21 20071 7142 -165 19250 6386 -233 19361 6797 -347 18411 6000 -145 18655 6448 -263 18218 2187 -752 17947 2227 -535 18755 3081 -269 19437 -8904 -287 15840 -9431 -151 15450 -8977 -435 14739 -10016 -206 15081 -10167 -728 13994 11128 472 17559 11142 476 17198 10777 478 16957 10448 428 17088 10219 227 16711 9266 -184 16347 -19324 472 -7665 -19123 476 -7364 -18686 478 -7384 -18497 428 -7683 -18090 227 -7512 -17105 -184 -7778 -11470 -2634 11470 -13098 -2626 9516 -13995 -841 10165 -14690 -685 9053 -15039 -135 10049 -15404 -47 9497 -16085 157 9899 -16512 61 9290 16823 1022 15523 740 -478 19611 1517 -458 19552 1477 -638 18786 1443 -909 17989 17920 -458 2837 17744 -752 3465 17070 -982 2702 16025 -2634 2536 15186 -7117 2434 -17226 -389 -20224 -16254 402 -19060 -17022 131 -18425 -16474 275 -17827 25823 -389 6236 24353 402 5866 24601 131 4901 23807 275 4739 24032 331 3803 23216 364 3670 -5876 302 -20416 -4862 5 -19925 -4279 -359 -19486 -3906 -536 -19317 -19184 -144 8826 -19922 31 9124 -20259 75 8352 -19496 23 9942 -19315 427 10850 -19978 632 11199 -19492 785 12003 -20634 740 11571 -20125 897 12385 -18851 575 11607 -18381 488 12329 -18990 703 12770 -17278 33 12501 -16864 -21 13047 -13433 -74 -12261 -13149 -685 -11173 -24995 -23 1928 -24351 494 936 -17231 -23 9647 -15812 -74 8987 -15398 -982 7847 -21691 -598 -15759 -20336 571 -14775 -19721 808 -15503 -19162 970 -15063 -3500 478 -21890 -3625 768 -22658 -4485 1022 -22447 -5574 1536 -22966 -21185 305 -2480 -20451 -96 -2297 -20233 -338 -3075 -6255 -520 25820 -5889 -23 24368 -6828 412 24137 -6634 494 23448 -21352 -20 777 -22131 455 -32 -22880 1029 -859 -11881 509 21287 -11517 542 20683 -12683 121 20791 -12301 161 20181 -9565 1022 20797 -10385 768 20461 8052 35 19617 7844 -21 18885 20336 848 14775 19234 1355 15073 -20768 235 9367 -20218 269 10309 -17208 55 -9573 -16101 -412 -9942 -15456 -639 -9391 -15627 -308 -10458 -3656 -619 -18510 -3647 -554 -19078 -3107 -435 -19490 12372 -53 15051 12288 -164 15434 -16349 -610 -7484 -18856 -53 -4904 -19013 -164 -5264 -13325 -33 13471 -8285 276 25499 -7767 848 23907 -20258 -263 -17191 -19106 906 -16231 -18448 643 -17010 8827 -610 15665 2466 -144 20973 3310 -136 20860 2378 -301 20219 3189 -296 20105 3431 23 21614 4214 150 20942 -18734 -619 -2243 -19579 -536 -2254 -19855 -359 -1951 5342 -841 16452 -7338 -20 -20066 -7166 -206 -19129 -15925 -263 -10948 8664 237 19093 8940 251 19280 -17208 -1182 -1298 9817 -246 16050 9395 -697 15360 5389 14 18946 4444 157 18356 -7673 -1320 -15064 -8514 -1401 -14548 9289 223 19329 9376 9 20111 8532 27 20288 -17159 -1032 -2004 -18039 -775 -2154 17555 -909 4186 18323 -638 4400 -9516 -2626 13098 -7733 -80 -18180 -7347 102 -17712 -7615 85 -17676 -7804 86 -17493 -6565 112 -20183 -6808 455 -21058 -12829 -458 -12829 -2709 -882 -17111 -3396 -1032 -16939 -2828 -574 -17935 -3525 -775 -17822 -9821 42 16107 12303 -138 15829 -17376 -246 -7214 -16630 -697 -6904 9628 -23 23147 8698 274 23527 10188 -1027 24529 8285 -429 25499 -19257 -138 -5574 -16864 575 -14341 -17264 -1463 20186 -15759 -1542 21691 -20940 364 10676 -21311 689 11919 -10932 -7117 10902 -14454 -2634 7364 8450 356 22857 -15333 -263 11763 -16392 -752 7626 -11252 -138 16592 -17715 190 11869 2280 -437 19502 -3393 -149 17801 15881 -149 8728 -10730 914 21106 -17789 217 -17789 -18725 -692 -18725 -4082 -1182 -16767 -2536 -2634 -16025 21261 -188 11926 -20462 -132 -10407 1570 -308 20307 -17914 301 13010 -9542 -398 17548 21078 -277 10737 -11128 479 20133 -14627 -315 10551 -586 -804 17962 -1539 -561 18901 16901 -804 6108 17500 -561 7305 -4470 106 18358 -4466 102 18648 16078 106 9924 16355 102 10010 -19272 -554 -2426 20752 -210 9557 -25499 -1542 -8285 -24533 -1463 -10181 -36 -7117 72 -2231 -7117 -15264 3929 -7117 -14624 -4142 93 -26155 -3935 879 -24848 10599 -7117 -10531 14594 -7117 -4325 -7174 106 -17479 7767 571 23907 -5980 -648 17143 -19115 102 1514 14456 -648 10985 -5664 -452 -18442 16846 854 14310 14915 -359 13249 7185 -276 18551 -8404 854 20443 -7991 -359 18280 -19290 -452 -311 -20453 5 -1532 -17620 -21 -12007 -2881 -384 -18820 26155 -692 4142 24848 22 3935 + + + + + + + + + + 0.998046875 0.72265625 0.998046875 0.66796875 0.966796875 0.72265625 0.966796875 0.662109375 0.935546875 0.720703125 0.935546875 0.662109375 0.904296875 0.662109375 0.935546875 0.58984375 0.904296875 0.591796875 0.904296875 0.517578125 0.876953125 0.58203125 0.87109375 0.498046875 0.84375 0.505859375 0.84375 0.439453125 0.814453125 0.4453125 0.81640625 0.3515625 0.779296875 0.443359375 0.75 0.34765625 0.748046875 0.439453125 0.716796875 0.431640625 0.71484375 0.505859375 0.6875 0.435546875 0.6875 0.505859375 0.66015625 0.50390625 0.6875 0.583984375 0.66015625 0.595703125 0.673828125 0.62890625 0.66796875 0.6640625 0.6875 0.6640625 0.67578125 0.685546875 0.6875 0.693359375 0.658203125 0.716796875 0.6875 0.724609375 0.66015625 0.7734375 0.6875 0.7734375 0.6875 0.814453125 0.71484375 0.775390625 0.748046875 0.818359375 0.744140625 0.767578125 0.77734375 0.775390625 0.748046875 0.72265625 0.767578125 0.73046875 0.77734375 0.71875 0.806640625 0.767578125 0.8125 0.818359375 0.845703125 0.7734375 0.845703125 0.818359375 0.875 0.81640625 0.84375 0.85546875 0.873046875 0.85546875 0.873046875 0.892578125 0.904296875 0.853515625 0.904296875 0.892578125 0.935546875 0.89453125 0.904296875 0.9296875 0.935546875 0.9296875 0.93359375 1 0.966796875 0.931640625 0.998046875 1 0.998046875 0.931640625 0.625 0.85546875 0.591796875 0.85546875 0.625 0.892578125 0.591796875 0.892578125 0.625 0.931640625 0.560546875 0.931640625 0.560546875 1 0.529296875 0.931640625 0.5 1 0.5 0.931640625 0.466796875 0.931640625 0.5 0.89453125 0.46875 0.896484375 0.466796875 0.85546875 0.435546875 0.89453125 0.435546875 0.85546875 0.404296875 0.85546875 0.435546875 0.814453125 0.404296875 0.814453125 0.404296875 0.771484375 0.375 0.81640625 0.37109375 0.767578125 0.34375 0.77734375 0.34765625 0.7265625 0.3125 0.7265625 0.318359375 0.671875 0.28515625 0.666015625 0.28125 0.58984375 0.25 0.65234375 0.25 0.580078125 0.21875 0.58984375 0.23046875 0.560546875 0.21875 0.509765625 0.24609375 0.5 0.27734375 0.509765625 0.27734375 0.46484375 0.294921875 0.509765625 0.298828125 0.466796875 0.314453125 0.509765625 0.314453125 0.462890625 0.328125 0.466796875 0.34375 0.423828125 0.34765625 0.5078125 0.376953125 0.427734375 0.375 0.505859375 0.40234375 0.5 0.375 0.57421875 0.3984375 0.552734375 0.40625 0.5859375 0.435546875 0.50390625 0.435546875 0.42578125 0.46875 0.50390625 0.46875 0.4296875 0.5 0.423828125 0.466796875 0.345703125 0.5 0.361328125 0.5 0.197265625 0.435546875 1 0.435546875 0.931640625 0.404296875 0.931640625 0.404296875 0.896484375 0.375 0.89453125 0.375 0.85546875 0.345703125 0.85546875 0.34765625 0.818359375 0.314453125 0.81640625 0.3125 0.7734375 0.283203125 0.7734375 0.283203125 0.728515625 0.25 0.7265625 0.21484375 0.669921875 0.20703125 0.615234375 0.18359375 0.595703125 0.185546875 0.6640625 0.18359375 0.724609375 0.154296875 0.662109375 0.150390625 0.7265625 0.125 0.72265625 0.15234375 0.775390625 0.125 0.7734375 0.123046875 0.81640625 0.095703125 0.7734375 0.09375 0.814453125 0.064453125 0.81640625 0.09375 0.85546875 0.064453125 0.85546875 0.0625 0.892578125 0.033203125 0.857421875 0.03125 0.892578125 0 0.89453125 0.03125 0.931640625 0 0.931640625 0 1 0.875 1 0.841796875 0.931640625 0.810546875 1 0.810546875 0.931640625 0.75 1 0.75 0.931640625 0.6875 0.931640625 0.6875 0.892578125 0.6875 0.85546875 0.625 0.814453125 0.591796875 0.818359375 0.55859375 0.818359375 0.58984375 0.77734375 0.55859375 0.7734375 0.556640625 0.728515625 0.52734375 0.775390625 0.5234375 0.73046875 0.5 0.72265625 0.525390625 0.669921875 0.5 0.66796875 0.5 0.58984375 0.46484375 0.587890625 0.474609375 0.55859375 0.5 0.513671875 0.53125 0.587890625 0.533203125 0.50390625 0.54296875 0.560546875 0.560546875 0.576171875 0.5625 0.658203125 0.578125 0.568359375 0.58984375 0.591796875 0.587890625 0.50390625 0.625 0.5234375 0.625 0.435546875 0.658203125 0.431640625 0.685546875 0.341796875 0 0.0078125 0 0.1953125 0.123046875 0.193359375 0.064453125 0.328125 0.123046875 0.3359375 0.091796875 0.419921875 0.123046875 0.41796875 0.09375 0.5078125 0.125 0.5078125 0.125 0.58984375 0.154296875 0.505859375 0.154296875 0.58984375 0.21484375 0.7265625 0.216796875 0.775390625 0.25 0.7734375 0.25 0.81640625 0.28125 0.814453125 0.28125 0.85546875 0.314453125 0.85546875 0.3125 0.892578125 0.34375 0.892578125 0.34375 0.931640625 0.375 0.931640625 0.375 1 0.5 0.85546875 0.998046875 0.197265625 0.998046875 0.0078125 0.876953125 0.193359375 0.75 0.0078125 0.75 0.1953125 0.623046875 0.193359375 0.625 0.369140625 0.625 0.603515625 0.65234375 0.6640625 0.625 0.662109375 0.625 0.7109375 0.59765625 0.6640625 0.603515625 0.69921875 0.591796875 0.71875 0.580078125 0.73828125 0.52734375 0.8203125 0.529296875 0.85546875 0.5 0.81640625 0.3125 0.931640625 0.314453125 1 0.28125 0.931640625 0.25 1 0.25 0.931640625 0.216796875 0.931640625 0.25 0.892578125 0.216796875 0.892578125 0.21875 0.85546875 0.185546875 0.892578125 0.185546875 0.85546875 0.154296875 0.85546875 0.185546875 0.81640625 0.150390625 0.822265625 0.099609375 0.7265625 0.095703125 0.662109375 0.064453125 0.72265625 0.064453125 0.662109375 0.033203125 0.662109375 0.064453125 0.58984375 0.033203125 0.591796875 0.03125 0.509765625 0 0.58984375 0 0.513671875 0.779296875 0.51171875 0.74609375 0.521484375 0.751953125 0.595703125 0.716796875 0.58984375 0.724609375 0.662109375 0.703125 0.626953125 0.708984375 0.662109375 0.703125 0.69140625 0.625 0.763671875 0.560546875 0.85546875 0.560546875 0.892578125 0.529296875 0.892578125 0 0.33203125 0.029296875 0.421875 0.0625 0.421875 0.0625 0.509765625 0.095703125 0.58984375 0.125 0.662109375 0.185546875 0.7734375 0.21875 0.814453125 0.25 0.85546875 0.28125 0.892578125 0.998046875 0.423828125 0.998046875 0.33203125 0.962890625 0.43359375 0.93359375 0.357421875 0.93359375 0.4453125 0.904296875 0.443359375 0.876953125 0.43359375 0.814453125 0.51953125 0.806640625 0.59765625 0.77734375 0.59375 0.78125 0.65625 0.75390625 0.669921875 0.71875 0.720703125 0.748046875 0.85546875 0.6875 1 0.625 1 0.466796875 0.814453125 0.466796875 0.771484375 0.435546875 0.771484375 0.435546875 0.720703125 0.404296875 0.720703125 0.408203125 0.666015625 0.37890625 0.71875 0.375 0.650390625 0.345703125 0.662109375 0.341796875 0.583984375 0.3125 0.595703125 0.3125 0.544921875 0.30078125 0.5390625 0.283203125 0.423828125 0.25 0.423828125 0.263671875 0.37109375 0.23046875 0.365234375 0.267578125 0.30859375 0.22265625 0.298828125 0.28125 0.1953125 0.28125 0.0078125 0.404296875 0.193359375 0.314453125 0.302734375 0.37109375 0.30859375 0.3125 0.37109375 0.357421875 0.365234375 0.41796875 0.611328125 0.435546875 0.6015625 0.40234375 0.427734375 0.400390625 0.365234375 0.998046875 0.513671875 0.966796875 0.513671875 0.966796875 0.59375 0.904296875 0.720703125 0.875 0.720703125 0.904296875 0.771484375 0.875 0.771484375 0.810546875 0.85546875 0.810546875 0.892578125 0.75 0.89453125 0.5 0.77734375 0.185546875 1 0.185546875 0.931640625 0.15625 0.931640625 0.154296875 0.892578125 0.125 0.892578125 0.125 0.85546875 0.064453125 0.7734375 0.033203125 0.7734375 0.033203125 0.72265625 0 0.72265625 0 0.66796875 0.466796875 0.720703125 0.462890625 0.666015625 0.435546875 0.6640625 0.064453125 1 0.0625 0.931640625 0.09375 0.931640625 0.09375 0.892578125 0.125 1 0.125 0.931640625 0.876953125 0.3515625 0.966796875 0.7734375 0.998046875 0.77734375 0.966796875 0.814453125 0.998046875 0.81640625 0.998046875 0.85546875 0.87109375 0.65234375 0.841796875 0.66796875 0.841796875 0.587890625 0.830078125 0.61328125 0.810546875 0.662109375 0.814453125 0.716796875 0.78515625 0.69921875 0.5 0.0078125 0.5 0.1953125 0.55859375 0.392578125 0.533203125 0.435546875 0.51953125 0.61328125 0.0390625 0.822265625 0 0.81640625 0 0.85546875 0 0.77734375 0.189453125 0.51953125 0.18359375 0.427734375 0.220703125 0.4296875 0.150390625 0.419921875 0.185546875 0.36328125 0.314453125 0.4140625 0.935546875 0.51953125 0.4375 0.337890625 0.873046875 0.9296875 0.841796875 0.892578125 0 0.423828125 0.560546875 0.505859375 0.560546875 0.451171875 0.591796875 0.451171875 0.6875 0.623046875 0.96875 0.896484375 0.966796875 0.85546875 0.935546875 0.85546875 0.935546875 0.814453125 0.90234375 0.814453125 0.330078125 0.509765625 0.998046875 0.89453125 0.935546875 0.771484375 0.849609375 0.72265625 0.853515625 0.556640625 0.453125 0.611328125 0.998046875 0.58984375 0.326171875 0.541015625 0.599609375 0.62109375 0.447265625 0.0078125 0.484375 0.0078125 0.25 0.0078125 0.49609375 0.0078125 0.44921875 0.0078125 0.396484375 0.0078125 0.32421875 0.0078125 0.251953125 0.0078125 0.17578125 0.0078125 0.107421875 0.0078125 0.048828125 0.0078125 0.015625 0.0078125 0.00390625 0.0078125 0.05078125 0.0078125 0.169921875 0.0078125 0.328125 0.0078125 + + + + + + + + + 0.8784313725490196 0.8784313725490196 0.8784313725490196 1 0.8745098039215686 0.8745098039215686 0.8745098039215686 1 0.8941176470588236 0.8941176470588236 0.8941176470588236 1 0.9137254901960784 0.9137254901960784 0.9137254901960784 1 0.9058823529411765 0.9058823529411765 0.9058823529411765 1 0.9254901960784314 0.9254901960784314 0.9254901960784314 1 0.9725490196078431 0.9725490196078431 0.9725490196078431 1 0.9568627450980393 0.9568627450980393 0.9568627450980393 1 1 1 1 1 0.9333333333333333 0.9333333333333333 0.9333333333333333 1 0.984313725490196 0.984313725490196 0.984313725490196 1 0.9647058823529412 0.9647058823529412 0.9647058823529412 1 0.996078431372549 0.996078431372549 0.996078431372549 1 0.9490196078431372 0.9490196078431372 0.9490196078431372 1 0.9921568627450981 0.9921568627450981 0.9921568627450981 1 0.9607843137254902 0.9607843137254902 0.9607843137254902 1 0.9764705882352941 0.9764705882352941 0.9764705882352941 1 0.9686274509803922 0.9686274509803922 0.9686274509803922 1 0.8588235294117647 0.8588235294117647 0.8588235294117647 1 0.8235294117647058 0.8235294117647058 0.8235294117647058 1 0.7764705882352941 0.7764705882352941 0.7764705882352941 1 0.7490196078431373 0.7490196078431373 0.7490196078431373 1 0.6431372549019608 0.6431372549019608 0.6431372549019608 1 0.6352941176470588 0.6352941176470588 0.6352941176470588 1 0.6235294117647059 0.6235294117647059 0.6235294117647059 1 0.6588235294117647 0.6588235294117647 0.6588235294117647 1 0.6666666666666666 0.6666666666666666 0.6666666666666666 1 0.6901960784313725 0.6901960784313725 0.6901960784313725 1 0.7450980392156863 0.7450980392156863 0.7450980392156863 1 0.807843137254902 0.807843137254902 0.807843137254902 1 0.8117647058823529 0.8117647058823529 0.8117647058823529 1 0.7607843137254902 0.7607843137254902 0.7607843137254902 1 0.8 0.8 0.8 1 0.7372549019607844 0.7372549019607844 0.7372549019607844 1 0.7725490196078432 0.7725490196078432 0.7725490196078432 1 0.788235294117647 0.788235294117647 0.788235294117647 1 0.7176470588235294 0.7176470588235294 0.7176470588235294 1 0.7254901960784313 0.7254901960784313 0.7254901960784313 1 0.33725490196078434 0.33725490196078434 0.33725490196078434 1 0.5254901960784314 0.5254901960784314 0.5254901960784314 1 0.2 0.2 0.2 1 0.38823529411764707 0.38823529411764707 0.38823529411764707 1 0.25882352941176473 0.25882352941176473 0.25882352941176473 1 0.6784313725490196 0.6784313725490196 0.6784313725490196 1 0.5686274509803921 0.5686274509803921 0.5686274509803921 1 0.5647058823529412 0.5647058823529412 0.5647058823529412 1 0.27450980392156865 0.27450980392156865 0.27450980392156865 1 0.3333333333333333 0.3333333333333333 0.3333333333333333 1 0.30196078431372547 0.30196078431372547 0.30196078431372547 1 0.4235294117647059 0.4235294117647059 0.4235294117647059 1 0.49019607843137253 0.49019607843137253 0.49019607843137253 1 0.6509803921568628 0.6509803921568628 0.6509803921568628 1 0.8549019607843137 0.8549019607843137 0.8549019607843137 1 0.8313725490196079 0.8313725490196079 0.8313725490196079 1 0.8470588235294118 0.8470588235294118 0.8470588235294118 1 0.9176470588235294 0.9176470588235294 0.9176470588235294 1 0.8862745098039215 0.8862745098039215 0.8862745098039215 1 0.8431372549019608 0.8431372549019608 0.8431372549019608 1 0.8666666666666667 0.8666666666666667 0.8666666666666667 1 0.8156862745098039 0.8156862745098039 0.8156862745098039 1 0.8705882352941177 0.8705882352941177 0.8705882352941177 1 0.8627450980392157 0.8627450980392157 0.8627450980392157 1 0.7686274509803922 0.7686274509803922 0.7686274509803922 1 0.792156862745098 0.792156862745098 0.792156862745098 1 0.8196078431372549 0.8196078431372549 0.8196078431372549 1 0.9372549019607843 0.9372549019607843 0.9372549019607843 1 0.9529411764705882 0.9529411764705882 0.9529411764705882 1 0.9803921568627451 0.9803921568627451 0.9803921568627451 1 0.9215686274509803 0.9215686274509803 0.9215686274509803 1 0.8901960784313725 0.8901960784313725 0.8901960784313725 1 0.5725490196078431 0.5725490196078431 0.5725490196078431 1 0.5176470588235295 0.5176470588235295 0.5176470588235295 1 0.7058823529411765 0.7058823529411765 0.7058823529411765 1 0.6392156862745098 0.6392156862745098 0.6392156862745098 1 0.803921568627451 0.803921568627451 0.803921568627451 1 0.7568627450980392 0.7568627450980392 0.7568627450980392 1 0.7843137254901961 0.7843137254901961 0.7843137254901961 1 0.8392156862745098 0.8392156862745098 0.8392156862745098 1 0.8980392156862745 0.8980392156862745 0.8980392156862745 1 0.8823529411764706 0.8823529411764706 0.8823529411764706 1 0.8352941176470589 0.8352941176470589 0.8352941176470589 1 0.7647058823529411 0.7647058823529411 0.7647058823529411 1 0.6941176470588235 0.6941176470588235 0.6941176470588235 1 0.7411764705882353 0.7411764705882353 0.7411764705882353 1 0.6549019607843137 0.6549019607843137 0.6549019607843137 1 0.5803921568627451 0.5803921568627451 0.5803921568627451 1 0.3803921568627451 0.3803921568627451 0.3803921568627451 1 0.2627450980392157 0.2627450980392157 0.2627450980392157 1 0.30980392156862746 0.30980392156862746 0.30980392156862746 1 0.3137254901960784 0.3137254901960784 0.3137254901960784 1 0.3607843137254902 0.3607843137254902 0.3607843137254902 1 0.36470588235294116 0.36470588235294116 0.36470588235294116 1 0.5490196078431373 0.5490196078431373 0.5490196078431373 1 0.5843137254901961 0.5843137254901961 0.5843137254901961 1 0.796078431372549 0.796078431372549 0.796078431372549 1 0.8509803921568627 0.8509803921568627 0.8509803921568627 1 0.9019607843137255 0.9019607843137255 0.9019607843137255 1 0.8274509803921568 0.8274509803921568 0.8274509803921568 1 0.9450980392156862 0.9450980392156862 0.9450980392156862 1 0.9411764705882353 0.9411764705882353 0.9411764705882353 1 0.7137254901960784 0.7137254901960784 0.7137254901960784 1 0.7333333333333333 0.7333333333333333 0.7333333333333333 1 0.5882352941176471 0.5882352941176471 0.5882352941176471 1 0.44313725490196076 0.44313725490196076 0.44313725490196076 1 0.4666666666666667 0.4666666666666667 0.4666666666666667 1 0.5137254901960784 0.5137254901960784 0.5137254901960784 1 0.5764705882352941 0.5764705882352941 0.5764705882352941 1 0.48627450980392156 0.48627450980392156 0.48627450980392156 1 0.7019607843137254 0.7019607843137254 0.7019607843137254 1 0.6313725490196078 0.6313725490196078 0.6313725490196078 1 0.7098039215686275 0.7098039215686275 0.7098039215686275 1 0.6862745098039216 0.6862745098039216 0.6862745098039216 1 0.3764705882352941 0.3764705882352941 0.3764705882352941 1 0.7803921568627451 0.7803921568627451 0.7803921568627451 1 0.4980392156862745 0.4980392156862745 0.4980392156862745 1 0.596078431372549 0.596078431372549 0.596078431372549 1 0.4470588235294118 0.4470588235294118 0.4470588235294118 1 0.40784313725490196 0.40784313725490196 0.40784313725490196 1 0.403921568627451 0.403921568627451 0.403921568627451 1 0.592156862745098 0.592156862745098 0.592156862745098 1 0.9882352941176471 0.9882352941176471 0.9882352941176471 1 0.6980392156862745 0.6980392156862745 0.6980392156862745 1 0.6039215686274509 0.6039215686274509 0.6039215686274509 1 0.3568627450980392 0.3568627450980392 0.3568627450980392 1 0.41568627450980394 0.41568627450980394 0.41568627450980394 1 0.2901960784313726 0.2901960784313726 0.2901960784313726 1 0.5607843137254902 0.5607843137254902 0.5607843137254902 1 0.7294117647058823 0.7294117647058823 0.7294117647058823 1 0.4196078431372549 0.4196078431372549 0.4196078431372549 1 0.5450980392156862 0.5450980392156862 0.5450980392156862 1 0.37254901960784315 0.37254901960784315 0.37254901960784315 1 0.9098039215686274 0.9098039215686274 0.9098039215686274 1 0.9294117647058824 0.9294117647058824 0.9294117647058824 1 0.32941176470588235 0.32941176470588235 0.32941176470588235 1 0.39215686274509803 0.39215686274509803 0.39215686274509803 1 0.611764705882353 0.611764705882353 0.611764705882353 1 0.3686274509803922 0.3686274509803922 0.3686274509803922 1 0.3254901960784314 0.3254901960784314 0.3254901960784314 1 0.5568627450980392 0.5568627450980392 0.5568627450980392 1 0.6078431372549019 0.6078431372549019 0.6078431372549019 1 0.6627450980392157 0.6627450980392157 0.6627450980392157 1 0.34901960784313724 0.34901960784313724 0.34901960784313724 1 0.35294117647058826 0.35294117647058826 0.35294117647058826 1 0.47843137254901963 0.47843137254901963 0.47843137254901963 1 0.42745098039215684 0.42745098039215684 0.42745098039215684 1 0.3843137254901961 0.3843137254901961 0.3843137254901961 1 0.6196078431372549 0.6196078431372549 0.6196078431372549 1 0.396078431372549 0.396078431372549 0.396078431372549 1 0.615686274509804 0.615686274509804 0.615686274509804 1 0.4549019607843137 0.4549019607843137 0.4549019607843137 1 0.4588235294117647 0.4588235294117647 0.4588235294117647 1 0.6823529411764706 0.6823529411764706 0.6823529411764706 1 0.7529411764705882 0.7529411764705882 0.7529411764705882 1 0.43137254901960786 0.43137254901960786 0.43137254901960786 1 0.6745098039215687 0.6745098039215687 0.6745098039215687 1 0.6705882352941176 0.6705882352941176 0.6705882352941176 1 0.6274509803921569 0.6274509803921569 0.6274509803921569 1 0.5411764705882353 0.5411764705882353 0.5411764705882353 1 0.4 0.4 0.4 1 0.3215686274509804 0.3215686274509804 0.3215686274509804 1 0.3411764705882353 0.3411764705882353 0.3411764705882353 1 0.4392156862745098 0.4392156862745098 0.4392156862745098 1 0.6 0.6 0.6 1 0.29411764705882354 0.29411764705882354 0.29411764705882354 1 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 2 1 1 1 0 0 0 3 3 3 1 1 1 2 2 2 4 4 4 3 3 3 2 2 2 5 5 5 3 3 3 4 4 4 6 6 4 5 5 5 4 4 4 7 7 6 5 5 5 6 6 4 8 8 7 7 7 6 6 6 4 9 9 8 7 7 6 8 8 7 10 10 9 9 9 8 8 8 7 11 11 10 9 9 8 10 10 9 12 12 11 11 11 10 10 10 9 13 13 12 11 11 10 12 12 11 14 14 7 13 13 12 12 12 11 15 15 13 13 13 12 14 14 7 16 16 10 15 15 13 14 14 7 17 17 3 15 15 13 16 16 10 18 18 14 17 17 3 16 16 10 19 19 15 17 17 3 18 18 14 20 20 10 19 19 15 18 18 14 21 21 7 19 19 15 20 20 10 22 22 10 21 21 7 20 20 10 23 23 16 21 21 7 22 22 10 24 24 8 23 23 16 22 22 10 25 25 8 23 23 16 24 24 8 26 26 8 25 25 8 24 24 8 27 27 13 25 25 8 26 26 8 28 28 17 27 27 13 26 26 8 29 29 18 27 27 13 28 28 17 30 30 19 29 29 18 28 28 17 31 31 20 29 29 18 30 30 19 32 32 21 31 31 20 30 30 19 33 33 22 31 31 20 32 32 21 34 34 23 33 33 22 32 32 21 35 35 24 33 33 22 34 34 23 36 36 25 35 35 24 34 34 23 37 37 26 35 35 24 36 36 25 38 38 27 37 37 26 36 36 25 39 39 28 37 37 26 38 38 27 40 40 29 39 39 28 38 38 27 41 41 30 39 39 28 40 40 29 42 42 0 41 41 30 40 40 29 39 39 28 41 41 30 42 42 0 43 43 19 39 39 28 42 42 0 44 44 31 39 39 28 43 43 19 45 45 30 44 44 31 43 43 19 46 46 32 44 44 31 45 45 30 47 47 30 46 46 32 45 45 30 48 48 33 46 46 32 47 47 30 49 49 34 48 48 33 47 47 30 50 50 27 48 48 33 49 49 34 51 51 35 50 50 27 49 49 34 52 52 36 50 50 27 51 51 35 53 53 37 52 52 36 51 51 35 54 54 38 52 52 36 53 53 37 55 55 39 54 54 38 53 53 37 56 56 40 54 54 38 55 55 39 57 57 41 56 56 40 55 55 39 58 58 40 56 56 40 57 57 41 59 59 42 58 58 40 57 57 41 62 62 44 61 61 43 60 60 25 63 63 45 61 61 43 62 62 44 64 64 46 63 63 45 62 62 44 65 65 47 63 63 45 64 64 46 66 66 40 65 65 47 64 64 46 67 67 48 65 65 47 66 66 40 68 68 40 67 67 48 66 66 40 69 69 49 67 67 48 68 68 40 70 70 50 69 69 49 68 68 40 71 71 51 69 69 49 70 70 50 72 72 21 71 71 51 70 70 50 73 73 52 71 71 51 72 72 21 74 74 53 73 73 52 72 72 21 75 75 4 73 73 52 74 74 53 76 76 54 75 75 4 74 74 53 77 77 55 75 75 4 76 76 54 78 78 56 77 77 55 76 76 54 79 79 3 77 77 55 78 78 56 80 80 57 79 79 3 78 78 56 81 81 58 79 79 3 80 80 57 82 82 59 81 81 58 80 80 57 83 83 60 81 81 58 82 82 59 84 84 57 83 83 60 82 82 59 85 85 61 83 83 60 84 84 57 86 86 34 85 85 61 84 84 57 87 87 53 85 85 61 86 86 34 88 88 62 87 87 53 86 86 34 89 89 30 87 87 53 88 88 62 90 90 63 89 89 30 88 88 62 91 91 64 89 89 30 90 90 63 92 92 65 91 91 64 90 90 63 89 89 30 91 91 64 92 92 65 93 93 10 89 89 30 92 92 65 94 94 66 89 89 30 93 93 10 95 95 8 94 94 66 93 93 10 96 96 8 94 94 66 95 95 8 97 97 8 96 96 8 95 95 8 98 98 8 96 96 8 97 97 8 99 99 8 98 98 8 97 97 8 100 100 8 98 98 8 99 99 8 101 101 8 100 100 8 99 99 8 102 102 67 100 100 8 101 101 8 103 103 10 102 102 67 101 101 8 104 104 6 102 102 67 103 103 10 105 105 65 104 104 6 103 103 10 106 106 55 104 104 6 105 105 65 107 107 68 106 106 55 105 105 65 108 108 4 106 106 55 107 107 68 105 105 65 108 108 4 107 107 68 109 109 5 108 108 4 105 105 65 110 110 13 109 109 5 105 105 65 111 111 13 109 109 5 110 110 13 112 112 17 111 111 13 110 110 13 113 113 7 111 111 13 112 112 17 114 114 3 113 113 7 112 112 17 115 115 69 113 113 7 114 114 3 116 116 54 115 115 69 114 114 3 117 117 40 70 70 50 68 68 40 118 118 70 70 70 50 117 117 40 119 119 71 118 118 70 117 117 40 74 74 53 118 118 70 119 119 71 120 120 72 74 74 53 119 119 71 76 76 54 74 74 53 120 120 72 121 121 73 76 76 54 120 120 72 122 122 31 76 76 54 121 121 73 123 123 36 122 122 31 121 121 73 80 80 57 122 122 31 123 123 36 124 124 74 80 80 57 123 123 36 82 82 59 80 80 57 124 124 74 125 125 75 82 82 59 124 124 74 126 126 59 82 82 59 125 125 75 127 127 34 126 126 59 125 125 75 84 84 57 126 126 59 127 127 34 128 128 53 84 84 57 127 127 34 86 86 34 84 84 57 128 128 53 129 129 76 86 86 34 128 128 53 88 88 62 86 86 34 129 129 76 130 130 77 88 88 62 129 129 76 90 90 63 88 88 62 130 130 77 131 131 57 90 90 63 130 130 77 132 132 78 90 90 63 131 131 57 130 130 77 132 132 78 131 131 57 133 133 79 132 132 78 130 130 77 134 134 52 133 133 79 130 130 77 135 135 78 133 133 79 134 134 52 136 136 60 135 135 78 134 134 52 137 137 79 135 135 78 136 136 60 138 138 57 137 137 79 136 136 60 139 139 54 137 137 79 138 138 57 140 140 57 139 139 54 138 138 57 141 141 52 139 139 54 140 140 57 142 142 80 141 141 52 140 140 57 143 143 64 141 141 52 142 142 80 144 144 32 143 143 64 142 142 80 145 145 81 143 143 64 144 144 32 146 146 82 145 145 81 144 144 32 147 147 83 145 145 81 146 146 82 148 148 84 147 147 83 146 146 82 149 149 85 147 147 83 148 148 84 150 150 86 149 149 85 148 148 84 151 151 87 149 149 85 150 150 86 152 152 40 151 151 87 150 150 86 155 74 64 154 73 52 153 72 21 156 75 5 154 73 52 155 74 64 157 76 18 156 75 5 155 74 64 158 77 66 156 75 5 157 76 18 159 78 4 158 77 66 157 76 18 160 79 3 158 77 66 159 78 4 161 80 58 160 79 3 159 78 4 162 81 0 160 79 3 161 80 58 163 82 53 162 81 0 161 80 58 164 83 69 162 81 0 163 82 53 165 84 52 164 83 69 163 82 53 166 85 52 164 83 69 165 84 52 167 86 34 166 85 52 165 84 52 168 87 80 166 85 52 167 86 34 169 88 31 168 87 80 167 86 34 170 89 30 168 87 80 169 88 31 171 90 35 170 89 30 169 88 31 172 91 64 170 89 30 171 90 35 173 92 7 172 91 64 171 90 35 170 89 30 172 91 64 173 92 7 174 93 8 170 89 30 173 92 7 175 94 6 170 89 30 174 93 8 176 95 8 175 94 6 174 93 8 177 96 8 175 94 6 176 95 8 178 97 8 177 96 8 176 95 8 179 98 8 177 96 8 178 97 8 180 99 8 179 98 8 178 97 8 181 100 8 179 98 8 180 99 8 182 101 8 181 100 8 180 99 8 183 102 10 181 100 8 182 101 8 184 103 10 183 102 10 182 101 8 185 104 6 183 102 10 184 103 10 186 105 65 185 104 6 184 103 10 187 106 68 185 104 6 186 105 65 188 107 55 187 106 68 186 105 65 189 108 78 187 106 68 188 107 55 186 105 65 189 108 78 188 107 55 190 109 4 189 108 78 186 105 65 191 110 7 190 109 4 186 105 65 192 111 6 190 109 4 191 110 7 193 112 8 192 111 6 191 110 7 194 113 8 192 111 6 193 112 8 195 114 15 194 113 8 193 112 8 196 115 66 194 113 8 195 114 15 197 116 1 196 115 66 195 114 15 200 155 40 199 154 88 198 153 40 201 156 89 199 154 88 200 155 40 202 157 40 201 156 89 200 155 40 203 158 90 201 156 89 202 157 40 204 159 91 203 158 90 202 157 40 205 160 92 203 158 90 204 159 91 62 62 44 205 160 92 204 159 91 206 161 93 205 160 92 62 62 44 60 60 25 206 161 93 62 62 44 207 162 82 206 161 93 60 60 25 61 61 43 207 162 82 60 60 25 208 163 33 207 162 82 61 61 43 209 164 31 208 163 33 61 61 43 210 165 94 208 163 33 209 164 31 211 166 30 210 165 94 209 164 31 212 167 95 210 165 94 211 166 30 213 168 57 212 167 95 211 166 30 214 169 58 212 167 95 213 168 57 215 170 69 214 169 58 213 168 57 216 171 61 214 169 58 215 170 69 217 172 56 216 171 61 215 170 69 218 173 79 216 171 61 217 172 56 219 174 96 218 173 79 217 172 56 220 175 3 218 173 79 219 174 96 111 111 13 220 175 3 219 174 96 218 173 79 220 175 3 111 111 13 221 176 4 218 173 79 111 111 13 222 177 29 218 173 79 221 176 4 223 178 10 222 177 29 221 176 4 224 179 61 222 177 29 223 178 10 225 180 5 224 179 61 223 178 10 226 181 97 224 179 61 225 180 5 227 182 55 226 181 97 225 180 5 228 183 56 226 181 97 227 182 55 229 184 8 228 183 56 227 182 55 230 185 12 228 183 56 229 184 8 231 186 14 230 185 12 229 184 8 23 23 16 230 185 12 231 186 14 232 187 15 23 23 16 231 186 14 21 21 7 23 23 16 232 187 15 233 188 5 21 21 7 232 187 15 19 19 15 21 21 7 233 188 5 17 17 3 19 19 15 233 188 5 236 191 0 235 190 6 234 189 8 237 192 12 235 190 6 236 191 0 238 193 67 237 192 12 236 191 0 239 194 15 237 192 12 238 193 67 240 195 7 239 194 15 238 193 67 241 196 98 239 194 15 240 195 7 242 197 99 241 196 98 240 195 7 243 198 3 241 196 98 242 197 99 244 199 5 243 198 3 242 197 99 245 200 96 243 198 3 244 199 5 246 132 69 245 200 96 244 199 5 247 135 0 245 200 96 246 132 69 248 133 60 247 135 0 246 132 69 249 134 57 247 135 0 248 133 60 250 130 57 249 134 57 248 133 60 251 201 29 249 134 57 250 130 57 252 129 76 251 201 29 250 130 57 253 202 34 251 201 29 252 129 76 254 203 31 253 202 34 252 129 76 255 204 100 253 202 34 254 203 31 256 127 34 255 204 100 254 203 31 257 205 101 255 204 100 256 127 34 258 125 31 257 205 101 256 127 34 259 206 26 257 205 101 258 125 31 260 207 26 259 206 26 258 125 31 261 208 70 259 206 26 260 207 26 262 123 36 261 208 70 260 207 26 263 209 102 261 208 70 262 123 36 264 121 24 263 209 102 262 123 36 265 210 103 263 209 102 264 121 24 266 211 104 265 210 103 264 121 24 267 212 40 265 210 103 266 211 104 268 119 105 267 212 40 266 211 104 269 117 40 267 212 40 268 119 105 270 118 106 269 117 40 268 119 105 271 70 107 269 117 40 270 118 106 272 74 30 271 70 107 270 118 106 273 72 29 271 70 107 272 74 30 274 73 15 273 72 29 272 74 30 275 71 34 273 72 29 274 73 15 276 213 96 275 71 34 274 73 15 279 121 109 278 76 53 277 120 108 280 122 31 278 76 53 279 121 109 281 123 110 280 122 31 279 121 109 282 80 52 280 122 31 281 123 110 283 124 30 282 80 52 281 123 110 284 82 57 282 80 52 283 124 30 285 125 34 284 82 57 283 124 30 286 126 29 284 82 57 285 125 34 287 127 76 286 126 29 285 125 34 288 84 80 286 126 29 287 127 76 289 128 64 288 84 80 287 127 76 290 86 31 288 84 80 289 128 64 291 129 20 290 86 31 289 128 64 292 88 75 290 86 31 291 129 20 293 130 54 292 88 75 291 129 20 294 90 35 292 88 75 293 130 54 295 131 18 294 90 35 293 130 54 296 132 96 294 90 35 295 131 18 293 130 54 296 132 96 295 131 18 297 133 58 296 132 96 293 130 54 298 134 57 297 133 58 293 130 54 299 135 69 297 133 58 298 134 57 300 136 0 299 135 69 298 134 57 301 137 56 299 135 69 300 136 0 302 138 52 301 137 56 300 136 0 303 139 52 301 137 56 302 138 52 304 140 54 303 139 52 302 138 52 305 141 52 303 139 52 304 140 54 306 142 53 305 141 52 304 140 54 307 143 64 305 141 52 306 142 53 308 144 35 307 143 64 306 142 53 309 145 75 307 143 64 308 144 35 310 146 111 309 145 75 308 144 35 311 147 21 309 145 75 310 146 111 312 148 26 311 147 21 310 146 111 313 149 102 311 147 21 312 148 26 314 150 112 313 149 102 312 148 26 59 151 42 313 149 102 314 150 112 58 152 40 59 151 42 314 150 112 315 216 68 234 215 8 235 214 6 316 217 8 234 215 8 315 216 68 317 218 57 316 217 8 315 216 68 318 219 96 316 217 8 317 218 57 319 188 65 318 219 96 317 218 57 320 220 3 318 219 96 319 188 65 321 187 14 320 220 3 319 188 65 322 186 8 320 220 3 321 187 14 323 23 8 322 186 8 321 187 14 324 185 12 322 186 8 323 23 8 325 25 8 324 185 12 323 23 8 326 221 11 324 185 12 325 25 8 327 222 3 326 221 11 325 25 8 328 223 95 326 221 11 327 222 3 329 224 31 328 223 95 327 222 3 330 225 0 328 223 95 329 224 31 331 226 81 330 225 0 329 224 31 332 181 19 330 225 0 331 226 81 333 227 35 332 181 19 331 226 81 334 228 64 332 181 19 333 227 35 335 165 76 334 228 64 333 227 35 336 167 18 334 228 64 335 165 76 337 166 63 336 167 18 335 165 76 338 168 53 336 167 18 337 166 63 339 164 34 338 168 53 337 166 63 340 229 94 338 168 53 339 164 34 341 230 36 340 229 94 339 164 34 342 231 61 340 229 94 341 230 36 343 213 35 342 231 61 341 230 36 344 73 0 342 231 61 343 213 35 345 71 84 344 73 0 343 213 35 346 72 21 344 73 0 345 71 84 347 70 50 346 72 21 345 71 84 348 74 53 346 72 21 347 70 50 349 118 70 348 74 53 347 70 50 350 119 105 348 74 53 349 118 70 351 117 40 350 119 105 349 118 70 352 212 40 350 119 105 351 117 40 355 216 95 354 215 8 353 214 95 356 217 8 354 215 8 355 216 95 357 218 20 356 217 8 355 216 95 358 219 56 356 217 8 357 218 20 359 188 65 358 219 56 357 218 20 360 220 4 358 219 56 359 188 65 361 187 10 360 220 4 359 188 65 362 186 12 360 220 4 361 187 10 363 23 8 362 186 12 361 187 10 364 185 6 362 186 12 363 23 8 365 25 8 364 185 6 363 23 8 366 221 11 364 185 6 365 25 8 367 222 65 366 221 11 365 25 8 368 223 52 366 221 11 367 222 65 369 224 81 368 223 52 367 222 65 370 225 79 368 223 52 369 224 81 371 226 34 370 225 79 369 224 81 372 181 64 370 225 79 371 226 34 373 227 31 372 181 64 371 226 34 374 228 30 372 181 64 373 227 31 375 165 63 374 228 30 373 227 31 376 167 60 374 228 30 375 165 63 377 166 94 376 167 60 375 165 63 378 168 58 376 167 60 377 166 94 379 164 31 378 168 58 377 166 94 380 229 94 378 168 58 379 164 31 381 230 108 380 229 94 379 164 31 382 231 54 380 229 94 381 230 108 383 213 113 382 231 54 381 230 108 154 73 52 382 231 54 383 213 113 384 71 51 154 73 52 383 213 113 153 72 21 154 73 52 384 71 51 385 70 114 153 72 21 384 71 51 155 74 64 153 72 21 385 70 114 386 118 106 155 74 64 385 70 114 387 119 105 155 74 64 386 118 106 388 117 40 387 119 105 386 118 106 389 212 40 387 119 105 388 117 40 157 76 18 161 80 58 159 78 4 390 122 20 161 80 58 157 76 18 391 121 84 390 122 20 157 76 18 392 123 110 390 122 20 391 121 84 393 209 115 392 123 110 391 121 84 394 208 70 392 123 110 393 209 115 395 210 116 394 208 70 393 209 115 396 232 117 394 208 70 395 210 116 397 233 40 396 232 117 395 210 116 398 234 117 396 232 117 397 233 40 399 235 40 398 234 117 397 233 40 400 236 38 398 234 117 399 235 40 401 237 118 400 236 38 399 235 40 402 238 93 400 236 38 401 237 118 403 239 106 402 238 93 401 237 118 404 240 110 402 238 93 403 239 106 405 241 119 404 240 110 403 239 106 406 242 82 404 240 110 405 241 119 407 243 28 406 242 82 405 241 119 408 244 34 406 242 82 407 243 28 409 245 29 408 244 34 407 243 28 410 138 18 408 244 34 409 245 29 411 140 95 410 138 18 409 245 29 412 139 1 410 138 18 411 140 95 413 141 58 412 139 1 411 140 95 414 137 1 412 139 1 413 141 58 415 246 58 414 137 1 413 141 58 416 247 56 414 137 1 415 246 58 417 248 60 416 247 56 415 246 58 418 249 69 416 247 56 417 248 60 419 250 0 418 249 69 417 248 60 420 251 3 418 249 69 419 250 0 421 252 68 420 251 3 419 250 0 422 253 13 420 251 3 421 252 68 423 254 5 422 253 13 421 252 68 424 255 66 422 253 13 423 254 5 425 15 6 357 218 20 355 216 95 426 17 65 357 218 20 425 15 6 427 16 12 426 17 65 425 15 6 428 18 8 426 17 65 427 16 12 429 256 120 428 18 8 427 16 12 430 257 8 428 18 8 429 256 120 431 258 8 430 257 8 429 256 120 432 259 8 430 257 8 431 258 8 433 260 16 432 259 8 431 258 8 434 261 8 432 259 8 433 260 16 435 262 67 434 261 8 433 260 16 436 28 16 434 261 8 435 262 67 437 263 52 436 28 16 435 262 67 438 30 30 436 28 16 437 263 52 439 32 33 438 30 30 437 263 52 440 31 62 438 30 30 439 32 33 441 33 22 440 31 62 439 32 33 442 264 72 440 31 62 441 33 22 443 162 108 442 264 72 441 33 22 375 165 63 442 264 72 443 162 108 444 163 21 375 165 63 443 162 108 379 164 31 375 165 63 444 163 21 445 61 121 379 164 31 444 163 21 446 265 111 379 164 31 445 61 121 447 266 44 446 265 111 445 61 121 381 230 108 446 265 111 447 266 44 448 267 122 381 230 108 447 266 44 384 71 51 381 230 108 448 267 122 449 67 123 384 71 51 448 267 122 450 69 124 384 71 51 449 67 123 451 68 40 450 69 124 449 67 123 385 70 114 450 69 124 451 68 40 388 117 40 385 70 114 451 68 40 386 118 106 385 70 114 388 117 40 347 70 50 351 117 40 349 118 70 452 68 40 351 117 40 347 70 50 453 69 49 452 68 40 347 70 50 454 67 125 452 68 40 453 69 49 345 71 84 454 67 125 453 69 49 455 267 93 454 67 125 345 71 84 341 230 36 455 267 93 345 71 84 456 266 126 455 267 93 341 230 36 457 265 108 456 266 126 341 230 36 458 61 43 456 266 126 457 265 108 339 164 34 458 61 43 457 265 108 459 163 127 458 61 43 339 164 34 335 165 76 459 163 127 339 164 34 460 162 27 459 163 127 335 165 76 461 264 108 460 162 27 335 165 76 462 33 22 460 162 27 461 264 108 463 31 34 462 33 22 461 264 108 464 32 33 462 33 22 463 31 34 465 30 64 464 32 33 463 31 34 466 263 18 464 32 33 465 30 64 467 28 11 466 263 18 465 30 64 468 262 10 466 263 18 467 28 11 469 261 8 468 262 10 467 28 11 470 260 10 468 262 10 469 261 8 471 259 8 470 260 10 469 261 8 472 258 8 470 260 10 471 259 8 473 257 8 472 258 8 471 259 8 474 256 8 472 258 8 473 257 8 475 18 8 474 256 8 473 257 8 476 16 8 474 256 8 475 18 8 477 17 13 476 16 8 475 18 8 478 15 6 476 16 8 477 17 13 317 218 57 478 15 6 477 17 13 315 216 68 478 15 6 317 218 57 237 192 12 479 268 11 235 190 6 480 269 67 479 268 11 237 192 12 481 270 67 480 269 67 237 192 12 482 253 10 480 269 67 481 270 67 483 271 65 482 253 10 481 270 67 484 251 5 482 253 10 483 271 65 241 196 98 484 251 5 483 271 65 485 272 5 484 251 5 241 196 98 243 198 3 485 272 5 241 196 98 486 247 69 485 272 5 243 198 3 487 273 69 486 247 69 243 198 3 488 137 60 486 247 69 487 273 69 247 135 0 488 137 60 487 273 69 489 136 54 488 137 60 247 135 0 249 134 57 489 136 54 247 135 0 490 138 80 489 136 54 249 134 57 491 274 29 490 138 80 249 134 57 492 244 62 490 138 80 491 274 29 253 202 34 492 244 62 491 274 29 493 275 33 492 244 62 253 202 34 255 204 100 493 275 33 253 202 34 494 240 121 493 275 33 255 204 100 495 276 51 494 240 121 255 204 100 496 238 106 494 240 121 495 276 51 259 206 26 496 238 106 495 276 51 497 277 70 496 238 106 259 206 26 261 208 70 497 277 70 259 206 26 498 234 124 497 277 70 261 208 70 499 232 128 498 234 124 261 208 70 500 233 40 498 234 124 499 232 128 265 210 103 500 233 40 499 232 128 267 212 40 500 233 40 265 210 103 503 280 8 502 279 5 501 278 13 504 281 65 502 279 5 503 280 8 505 282 8 504 281 65 503 280 8 506 283 8 504 281 65 505 282 8 507 9 8 506 283 8 505 282 8 508 284 8 506 283 8 507 9 8 509 11 8 508 284 8 507 9 8 510 13 8 508 284 8 509 11 8 511 12 120 510 13 8 509 11 8 512 14 16 510 13 8 511 12 120 513 285 66 512 14 16 511 12 120 429 256 120 512 14 16 513 285 66 514 286 13 429 256 120 513 285 66 515 287 11 429 256 120 514 286 13 516 288 7 515 287 11 514 286 13 431 258 8 515 287 11 516 288 7 517 289 7 431 258 8 516 288 7 433 260 16 431 258 8 517 289 7 518 40 59 433 260 16 517 289 7 519 290 94 433 260 16 518 40 59 520 38 26 519 290 94 518 40 59 521 36 51 519 290 94 520 38 26 522 37 43 521 36 51 520 38 26 523 35 109 521 36 51 522 37 43 524 291 109 523 35 109 522 37 43 525 161 102 523 35 109 524 291 109 526 160 129 525 161 102 524 291 109 527 62 44 525 161 102 526 160 129 528 159 130 527 62 44 526 160 129 529 64 90 527 62 44 528 159 130 530 292 40 529 64 90 528 159 130 531 293 40 529 64 90 530 292 40 534 77 65 533 295 3 532 294 131 535 296 13 533 295 3 534 77 65 536 79 132 535 296 13 534 77 65 537 297 98 535 296 13 536 79 132 538 298 65 537 297 98 536 79 132 539 299 5 537 297 98 538 298 65 540 300 96 539 299 5 538 298 65 541 301 79 539 299 5 540 300 96 542 302 69 541 301 79 540 300 96 543 303 55 541 301 79 542 302 69 544 85 52 543 303 55 542 302 69 545 304 60 543 303 55 544 85 52 546 87 57 545 304 60 544 85 52 547 305 99 545 304 60 546 87 57 548 306 99 547 305 99 546 87 57 549 98 8 547 305 99 548 306 99 550 96 8 549 98 8 548 306 99 551 97 8 549 98 8 550 96 8 552 95 8 551 97 8 550 96 8 553 307 8 551 97 8 552 95 8 554 308 8 553 307 8 552 95 8 555 309 6 553 307 8 554 308 8 556 310 10 555 309 6 554 308 8 557 311 56 555 309 6 556 310 10 558 312 131 557 311 56 556 310 10 559 313 77 557 311 56 558 312 131 560 191 77 559 313 77 558 312 131 561 314 8 559 313 77 560 191 77 562 189 8 561 314 8 560 191 77 563 235 40 498 234 124 500 233 40 564 236 133 498 234 124 563 235 40 565 237 134 564 236 133 563 235 40 496 238 106 564 236 133 565 237 134 566 239 119 496 238 106 565 237 134 494 240 121 496 238 106 566 239 119 567 241 115 494 240 121 566 239 119 568 242 121 494 240 121 567 241 115 569 243 75 568 242 121 567 241 115 492 244 62 568 242 121 569 243 75 570 245 94 492 244 62 569 243 75 490 138 80 492 244 62 570 245 94 571 140 53 490 138 80 570 245 94 572 139 61 490 138 80 571 140 53 573 141 52 572 139 61 571 140 53 488 137 60 572 139 61 573 141 52 574 246 60 488 137 60 573 141 52 486 247 69 488 137 60 574 246 60 575 248 56 486 247 69 574 246 60 576 249 96 486 247 69 575 248 56 577 250 96 576 249 96 575 248 56 484 251 5 576 249 96 577 250 96 578 252 5 484 251 5 577 250 96 482 253 10 484 251 5 578 252 5 579 254 4 482 253 10 578 252 5 580 255 120 482 253 10 579 254 4 581 314 8 236 191 0 234 189 8 582 313 96 236 191 0 581 314 8 583 315 0 582 313 96 581 314 8 584 316 66 582 313 96 583 315 0 585 317 3 584 316 66 583 315 0 586 318 8 584 316 66 585 317 3 587 319 8 586 318 8 585 317 3 588 101 8 586 318 8 587 319 8 589 103 8 588 101 8 587 319 8 590 102 8 588 101 8 589 103 8 591 104 8 590 102 8 589 103 8 592 303 5 590 102 8 591 104 8 593 106 132 592 303 5 591 104 8 594 301 69 592 303 5 593 106 132 595 108 131 594 301 69 593 106 132 596 299 55 594 301 69 595 108 131 597 320 68 596 299 55 595 108 131 598 321 55 596 299 55 597 320 68 595 108 131 598 321 55 597 320 68 599 109 99 598 321 55 595 108 131 600 105 6 599 109 99 595 108 131 601 110 13 599 109 99 600 105 6 602 322 8 601 110 13 600 105 6 603 323 8 601 110 13 602 322 8 589 103 8 603 323 8 602 322 8 587 319 8 603 323 8 589 103 8 604 324 99 503 280 8 501 278 13 605 325 8 503 280 8 604 324 99 606 326 9 605 325 8 604 324 99 607 7 6 605 325 8 606 326 9 608 3 78 607 7 6 606 326 9 609 5 3 607 7 6 608 3 78 610 4 96 609 5 3 608 3 78 611 6 131 609 5 3 610 4 96 612 327 4 611 6 131 610 4 96 613 328 56 611 6 131 612 327 4 614 329 79 613 328 56 612 327 4 615 330 95 613 328 56 614 329 79 616 47 97 615 330 95 614 329 79 617 45 80 615 330 95 616 47 97 618 46 76 617 45 80 616 47 97 619 44 34 617 45 80 618 46 76 620 48 101 619 44 34 618 46 76 621 331 108 619 44 34 620 48 101 622 332 135 621 331 108 620 48 101 524 291 109 621 331 108 622 332 135 623 333 45 524 291 109 622 332 135 526 160 129 524 291 109 623 333 45 624 158 136 526 160 129 623 333 45 528 159 130 526 160 129 624 158 136 625 157 40 528 159 130 624 158 136 530 292 40 528 159 130 625 157 40 628 193 8 627 192 14 626 191 7 629 194 16 627 192 14 628 193 8 630 195 67 629 194 16 628 193 8 631 196 13 629 194 16 630 195 67 632 197 99 631 196 13 630 195 67 633 198 5 631 196 13 632 197 99 634 199 98 633 198 5 632 197 99 635 200 96 633 198 5 634 199 98 636 132 2 635 200 96 634 199 98 637 135 69 635 200 96 636 132 2 638 133 1 637 135 69 636 132 2 639 134 57 637 135 69 638 133 1 640 130 52 639 134 57 638 133 1 641 201 97 639 134 57 640 130 52 642 129 35 641 201 97 640 130 52 643 202 34 641 201 97 642 129 35 644 203 75 643 202 34 642 129 35 645 204 100 643 202 34 644 203 75 646 127 34 645 204 100 644 203 75 647 205 101 645 204 100 646 127 34 648 125 76 647 205 101 646 127 34 649 206 43 647 205 101 648 125 76 650 207 43 649 206 43 648 125 76 394 208 70 649 206 43 650 207 43 392 123 110 394 208 70 650 207 43 454 67 125 651 66 40 452 68 40 652 65 137 651 66 40 454 67 125 456 266 126 652 65 137 454 67 125 653 63 126 652 65 137 456 266 126 458 61 43 653 63 126 456 266 126 654 62 138 653 63 126 458 61 43 655 60 22 654 62 138 458 61 43 656 161 139 654 62 138 655 60 22 460 162 27 656 161 139 655 60 22 657 35 73 656 161 139 460 162 27 462 33 22 657 35 73 460 162 27 658 34 23 657 35 73 462 33 22 464 32 33 658 34 23 462 33 22 659 36 140 658 34 23 464 32 33 660 290 94 659 36 140 464 32 33 661 38 111 659 36 140 660 290 94 662 40 64 661 38 111 660 290 94 663 39 33 661 38 111 662 40 64 664 41 64 663 39 33 662 40 64 665 42 79 663 39 33 664 41 64 662 40 64 665 42 79 664 41 64 666 289 6 665 42 79 662 40 64 470 260 10 666 289 6 662 40 64 472 258 8 666 289 6 470 260 10 667 315 3 559 313 77 561 314 8 668 316 60 559 313 77 667 315 3 669 317 55 668 316 60 667 315 3 670 318 13 668 316 60 669 317 55 671 319 6 670 318 13 669 317 55 672 101 8 670 318 13 671 319 6 673 103 8 672 101 8 671 319 6 674 102 8 672 101 8 673 103 8 675 104 14 674 102 8 673 103 8 543 303 55 674 102 8 675 104 14 676 106 68 543 303 55 675 104 14 541 301 79 543 303 55 676 106 68 677 108 4 541 301 79 676 106 68 539 299 5 541 301 79 677 108 4 678 320 65 539 299 5 677 108 4 679 321 132 539 299 5 678 320 65 677 108 4 679 321 132 678 320 65 680 109 132 679 321 132 677 108 4 681 105 15 680 109 132 677 108 4 682 110 13 680 109 132 681 105 15 683 322 10 682 110 13 681 105 15 684 323 6 682 110 13 683 322 10 673 103 8 684 323 6 683 322 10 671 319 6 684 323 6 673 103 8 246 132 69 250 130 57 248 133 60 685 131 52 250 130 57 246 132 69 686 90 63 685 131 52 246 132 69 250 130 57 685 131 52 686 90 63 687 88 75 250 130 57 686 90 63 252 129 76 250 130 57 687 88 75 688 86 113 252 129 76 687 88 75 689 128 80 252 129 76 688 86 113 690 84 57 689 128 80 688 86 113 256 127 34 689 128 80 690 84 57 691 126 32 256 127 34 690 84 57 258 125 31 256 127 34 691 126 32 692 82 64 258 125 31 691 126 32 693 124 32 258 125 31 692 82 64 694 80 53 693 124 32 692 82 64 262 123 36 693 124 32 694 80 53 695 122 34 262 123 36 694 80 53 264 121 24 262 123 36 695 122 34 696 76 80 264 121 24 695 122 34 697 120 100 264 121 24 696 76 80 272 74 30 697 120 100 696 76 80 268 119 105 697 120 100 272 74 30 270 118 106 268 119 105 272 74 30 700 4 55 699 6 96 698 5 9 701 327 69 699 6 96 700 4 55 702 329 79 701 327 69 700 4 55 703 328 60 701 327 69 702 329 79 704 330 57 703 328 60 702 329 79 705 45 19 703 328 60 704 330 57 706 47 64 705 45 19 704 330 57 707 46 94 705 45 19 706 47 64 708 48 83 707 46 94 706 47 64 709 44 31 707 46 94 708 48 83 710 331 37 709 44 31 708 48 83 711 291 22 709 44 31 710 331 37 712 332 139 711 291 22 710 331 37 713 333 45 711 291 22 712 332 139 714 158 141 713 333 45 712 332 139 715 160 45 713 333 45 714 158 141 716 159 142 715 160 45 714 158 141 654 62 138 715 160 45 716 159 142 717 64 46 654 62 138 716 159 142 653 63 126 654 62 138 717 64 46 652 65 137 653 63 126 717 64 46 336 167 18 332 181 19 334 228 64 718 169 95 332 181 19 336 167 18 338 168 53 718 169 95 336 167 18 719 170 56 718 169 95 338 168 53 720 334 56 719 170 56 338 168 53 533 295 3 719 170 56 720 334 56 342 231 61 533 295 3 720 334 56 532 294 131 533 295 3 342 231 61 344 73 0 532 294 131 342 231 61 534 77 65 532 294 131 344 73 0 721 75 131 534 77 65 344 73 0 278 76 53 534 77 65 721 75 131 348 74 53 278 76 53 721 75 131 277 120 108 278 76 53 348 74 53 350 119 105 277 120 108 348 74 53 279 121 109 277 120 108 350 119 105 722 211 143 279 121 109 350 119 105 723 210 144 279 121 109 722 211 143 352 212 40 723 210 144 722 211 143 724 233 40 723 210 144 352 212 40 725 335 40 401 237 118 399 235 40 726 336 144 401 237 118 725 335 40 727 337 145 726 336 144 725 335 40 405 241 119 726 336 144 727 337 145 728 338 146 405 241 119 727 337 145 407 243 28 405 241 119 728 338 146 729 339 27 407 243 28 728 338 146 730 340 76 407 243 28 729 339 27 731 144 59 730 340 76 729 339 27 411 140 95 730 340 76 731 144 59 732 142 58 411 140 95 731 144 59 413 141 58 411 140 95 732 142 58 733 143 57 413 141 58 732 142 58 734 341 52 413 141 58 733 143 57 735 342 54 734 341 52 733 143 57 417 248 60 734 341 52 735 342 54 736 343 61 417 248 60 735 342 54 419 250 0 417 248 60 736 343 61 737 344 1 419 250 0 736 343 61 738 345 0 419 250 0 737 344 1 739 335 40 565 237 134 563 235 40 740 336 49 565 237 134 739 335 40 741 337 147 740 336 49 739 335 40 567 241 115 740 336 49 741 337 147 742 338 148 567 241 115 741 337 147 569 243 75 567 241 115 742 338 148 743 339 108 569 243 75 742 338 148 744 340 94 569 243 75 743 339 108 745 144 20 744 340 94 743 339 108 571 140 53 744 340 94 745 144 20 746 142 77 571 140 53 745 144 20 573 141 52 571 140 53 746 142 77 747 143 64 573 141 52 746 142 77 748 341 18 573 141 52 747 143 64 749 342 95 748 341 18 747 143 64 575 248 56 748 341 18 749 342 95 750 343 0 575 248 56 749 342 95 577 250 96 575 248 56 750 343 0 751 344 60 577 250 96 750 343 0 752 345 58 577 250 96 751 344 60 755 295 5 754 170 96 753 334 69 756 346 5 754 170 96 755 295 5 757 297 99 756 346 5 755 295 5 758 347 5 756 346 5 757 297 99 759 348 5 758 347 5 757 297 99 760 321 131 758 347 5 759 348 5 761 299 96 760 321 131 759 348 5 762 320 55 760 321 131 761 299 96 189 108 78 762 320 55 761 299 96 760 321 131 762 320 55 189 108 78 190 109 4 760 321 131 189 108 78 763 174 3 760 321 131 190 109 4 192 111 6 763 174 3 190 109 4 764 175 5 763 174 3 192 111 6 765 173 78 764 175 5 192 111 6 763 174 3 764 175 5 765 173 78 766 172 78 763 174 3 765 173 78 758 347 5 763 174 3 766 172 78 754 170 96 758 347 5 766 172 78 756 346 5 758 347 5 754 170 96 314 150 112 767 349 40 58 152 40 768 350 149 767 349 40 314 150 112 310 146 111 768 350 149 314 150 112 769 351 128 768 350 149 310 146 111 770 352 101 769 351 128 310 146 111 771 339 108 769 351 128 770 352 101 308 144 35 771 339 108 770 352 101 772 340 32 771 339 108 308 144 35 304 140 54 772 340 32 308 144 35 773 243 31 772 340 32 304 140 54 774 245 64 773 243 31 304 140 54 775 244 76 773 243 31 774 245 64 302 138 52 775 244 76 774 245 64 776 274 29 775 244 76 302 138 52 298 134 57 776 274 29 302 138 52 777 202 76 776 274 29 298 134 57 778 201 64 777 202 76 298 134 57 291 129 20 777 202 76 778 201 64 293 130 54 291 129 20 778 201 64 150 150 86 779 349 40 152 152 40 780 350 150 779 349 40 150 150 86 146 146 82 780 350 150 150 150 86 781 351 128 780 350 150 146 146 82 782 352 100 781 351 128 146 146 82 783 339 151 781 351 128 782 352 100 144 144 32 783 339 151 782 352 100 784 340 34 783 339 151 144 144 32 140 140 57 784 340 34 144 144 32 785 243 152 784 340 34 140 140 57 786 245 29 785 243 152 140 140 57 787 244 31 785 243 152 786 245 29 138 138 57 787 244 31 786 245 29 788 274 30 787 244 31 138 138 57 134 134 52 788 274 30 138 138 57 789 202 20 788 274 30 134 134 52 790 201 19 789 202 20 134 134 52 129 129 76 789 202 20 790 201 19 130 130 77 129 129 76 790 201 19 781 351 128 779 349 40 780 350 150 791 353 40 779 349 40 781 351 128 792 354 107 791 353 40 781 351 128 793 337 41 791 353 40 792 354 107 783 339 151 793 337 41 792 354 107 794 338 146 793 337 41 783 339 151 785 243 152 794 338 146 783 339 151 795 241 119 794 338 146 785 243 152 796 242 27 795 241 119 785 243 152 797 240 108 795 241 119 796 242 27 787 244 31 797 240 108 796 242 27 798 275 127 797 240 108 787 244 31 789 202 20 798 275 127 787 244 31 799 204 127 798 275 127 789 202 20 800 203 75 799 204 127 789 202 20 127 127 34 799 204 127 800 203 75 129 129 76 127 127 34 800 203 75 128 128 53 127 127 34 129 129 76 688 86 113 801 85 1 690 84 57 802 87 97 801 85 1 688 86 113 687 88 75 802 87 97 688 86 113 803 89 30 802 87 97 687 88 75 686 90 63 803 89 30 687 88 75 804 91 32 803 89 30 686 90 63 805 92 9 804 91 32 686 90 63 803 89 30 804 91 32 805 92 9 806 93 6 803 89 30 805 92 9 807 94 66 803 89 30 806 93 6 808 95 8 807 94 66 806 93 6 809 96 8 807 94 66 808 95 8 810 97 8 809 96 8 808 95 8 811 98 8 809 96 8 810 97 8 812 99 8 811 98 8 810 97 8 813 100 8 811 98 8 812 99 8 588 101 8 813 100 8 812 99 8 590 102 8 813 100 8 588 101 8 769 351 128 767 349 40 768 350 149 814 353 40 767 349 40 769 351 128 815 354 50 814 353 40 769 351 128 816 337 147 814 353 40 815 354 50 771 339 108 816 337 147 815 354 50 817 338 148 816 337 147 771 339 108 773 243 31 817 338 148 771 339 108 818 241 119 817 338 148 773 243 31 819 242 27 818 241 119 773 243 31 820 240 108 818 241 119 819 242 27 775 244 76 820 240 108 819 242 27 821 275 83 820 240 108 775 244 76 777 202 76 821 275 83 775 244 76 822 204 72 821 275 83 777 202 76 823 203 152 822 204 72 777 202 76 287 127 76 822 204 72 823 203 152 291 129 20 287 127 76 823 203 152 289 128 64 287 127 76 291 129 20 824 355 6 478 15 6 315 216 68 825 13 8 478 15 6 824 355 6 826 284 8 825 13 8 824 355 6 827 11 10 825 13 8 826 284 8 828 9 8 827 11 10 826 284 8 829 10 132 827 11 10 828 9 8 830 8 15 829 10 132 828 9 8 699 6 96 829 10 132 830 8 15 831 7 6 699 6 96 830 8 15 698 5 9 699 6 96 831 7 6 832 3 3 698 5 9 831 7 6 700 4 55 698 5 9 832 3 3 833 2 55 700 4 55 832 3 3 834 356 56 700 4 55 833 2 55 835 357 61 834 356 56 833 2 55 836 358 58 834 356 56 835 357 61 837 359 53 836 358 58 835 357 61 838 360 113 836 358 58 837 359 53 636 132 2 640 130 52 638 133 1 839 131 52 640 130 52 636 132 2 171 90 35 839 131 52 636 132 2 640 130 52 839 131 52 171 90 35 169 88 31 640 130 52 171 90 35 642 129 35 640 130 52 169 88 31 167 86 34 642 129 35 169 88 31 840 128 64 642 129 35 167 86 34 165 84 52 840 128 64 167 86 34 646 127 34 840 128 64 165 84 52 841 126 29 646 127 34 165 84 52 648 125 76 646 127 34 841 126 29 163 82 53 648 125 76 841 126 29 842 124 94 648 125 76 163 82 53 161 80 58 842 124 94 163 82 53 392 123 110 842 124 94 161 80 58 390 122 20 392 123 110 161 80 58 703 328 60 699 6 96 701 327 69 843 361 69 699 6 96 703 328 60 844 362 69 843 361 69 703 328 60 845 363 96 843 361 69 844 362 69 846 364 68 845 363 96 844 362 69 847 286 6 845 363 96 846 364 68 844 362 69 847 286 6 846 364 68 848 365 65 847 286 6 844 362 69 849 366 0 848 365 65 844 362 69 850 288 12 848 365 65 849 366 0 851 367 3 850 288 12 849 366 0 665 42 79 850 288 12 851 367 3 849 366 0 665 42 79 851 367 3 852 43 64 665 42 79 849 366 0 705 45 19 852 43 64 849 366 0 709 44 31 852 43 64 705 45 19 707 46 94 709 44 31 705 45 19 358 219 56 853 368 8 356 217 8 197 369 1 853 368 8 358 219 56 854 370 8 197 369 1 358 219 56 196 115 66 197 369 1 854 370 8 855 371 8 196 115 66 854 370 8 194 113 8 196 115 66 855 371 8 856 178 8 194 113 8 855 371 8 857 176 9 194 113 8 856 178 8 858 177 94 857 176 9 856 178 8 765 173 78 857 176 9 858 177 94 859 372 80 765 173 78 858 177 94 860 171 1 765 173 78 859 372 80 372 181 64 860 171 1 859 372 80 861 169 60 860 171 1 372 181 64 376 167 60 861 169 60 372 181 64 378 168 58 861 169 60 376 167 60 135 135 78 863 198 68 862 200 5 864 273 131 863 198 68 135 135 78 137 137 79 864 273 131 135 135 78 865 247 69 864 273 131 137 137 79 866 246 0 865 247 69 137 137 79 867 248 58 865 247 69 866 246 0 141 141 52 867 248 58 866 246 0 868 341 52 867 248 58 141 141 52 143 143 64 868 341 52 141 141 52 869 342 53 868 341 52 143 143 64 870 373 63 869 342 53 143 143 64 871 374 30 869 342 53 870 373 63 147 147 83 871 374 30 870 373 63 872 375 83 871 374 30 147 147 83 149 149 85 872 375 83 147 147 83 449 67 123 873 66 40 451 68 40 874 65 117 873 66 40 449 67 123 447 266 44 874 65 117 449 67 123 875 63 126 874 65 117 447 266 44 445 61 121 875 63 126 447 266 44 527 62 44 875 63 126 445 61 121 876 60 51 527 62 44 445 61 121 525 161 102 527 62 44 876 60 51 443 162 108 525 161 102 876 60 51 523 35 109 525 161 102 443 162 108 441 33 22 523 35 109 443 162 108 877 34 73 523 35 109 441 33 22 439 32 33 877 34 73 441 33 22 521 36 51 877 34 73 439 32 33 519 290 94 521 36 51 439 32 33 878 353 40 741 337 147 739 335 40 879 354 50 741 337 147 878 353 40 880 351 153 879 354 50 878 353 40 743 339 108 879 354 50 880 351 153 881 352 36 743 339 108 880 351 153 745 144 20 743 339 108 881 352 36 882 146 154 745 144 20 881 352 36 883 145 62 745 144 20 882 146 154 884 147 21 883 145 62 882 146 154 747 143 64 883 145 62 884 147 21 885 373 32 747 143 64 884 147 21 749 342 95 747 143 64 885 373 32 837 374 53 749 342 95 885 373 32 835 376 61 749 342 95 837 374 53 318 219 96 886 368 8 316 217 8 887 369 69 886 368 8 318 219 96 888 370 120 887 369 69 318 219 96 889 115 3 887 369 69 888 370 120 890 371 8 889 115 3 888 370 120 891 113 17 889 115 3 890 371 8 892 178 6 891 113 17 890 371 8 893 176 4 891 113 17 892 178 6 894 177 29 893 176 4 892 178 6 895 173 0 893 176 4 894 177 29 896 372 53 895 173 0 894 177 29 897 171 60 895 173 0 896 372 53 332 181 19 897 171 60 896 372 53 718 169 95 897 171 60 332 181 19 899 247 78 301 137 56 898 246 58 900 273 2 301 137 56 899 247 78 901 198 5 900 273 2 899 247 78 299 135 69 900 273 2 901 198 5 902 200 3 299 135 69 901 198 5 296 132 96 299 135 69 902 200 3 903 199 9 296 132 96 902 200 3 904 377 132 296 132 96 903 199 9 905 378 6 904 377 132 903 199 9 906 92 5 904 377 132 905 378 6 907 379 12 906 92 5 905 378 6 908 93 6 906 92 5 907 379 12 554 308 8 908 93 6 907 379 12 552 95 8 908 93 6 554 308 8 240 195 7 244 199 5 242 197 99 909 380 15 244 199 5 240 195 7 238 193 67 909 380 15 240 195 7 910 378 15 909 380 15 238 193 67 911 381 8 910 378 15 238 193 67 912 379 120 910 378 15 911 381 8 913 310 3 912 379 120 911 381 8 914 308 8 912 379 120 913 310 3 915 309 9 914 308 8 913 310 3 916 307 8 914 308 8 915 309 9 586 318 8 916 307 8 915 309 9 917 382 8 916 307 8 586 318 8 588 101 8 917 382 8 586 318 8 812 99 8 917 382 8 588 101 8 918 353 40 727 337 145 725 335 40 919 354 107 727 337 145 918 353 40 920 351 117 919 354 107 918 353 40 729 339 27 919 354 107 920 351 117 921 352 37 729 339 27 920 351 117 731 144 59 729 339 27 921 352 37 922 146 43 731 144 59 921 352 37 923 145 94 731 144 59 922 146 43 924 147 152 923 145 94 922 146 43 733 143 57 923 145 94 924 147 152 925 373 74 733 143 57 924 147 152 735 342 54 733 143 57 925 373 74 926 374 74 735 342 54 925 373 74 927 376 57 735 342 54 926 374 74 929 295 4 215 170 69 928 334 0 930 346 4 215 170 69 929 295 4 931 297 5 930 346 4 929 295 4 932 347 55 930 346 4 931 297 5 933 348 3 932 347 55 931 297 5 934 321 55 932 347 55 933 348 3 935 299 69 934 321 55 933 348 3 936 320 4 934 321 55 935 299 69 108 108 4 936 320 4 935 299 69 934 321 55 936 320 4 108 108 4 109 109 5 934 321 55 108 108 4 219 174 96 934 321 55 109 109 5 111 111 13 219 174 96 109 109 5 793 337 41 937 335 40 791 353 40 938 336 49 937 335 40 793 337 41 795 241 119 938 336 49 793 337 41 939 237 147 938 336 49 795 241 119 940 239 85 939 237 147 795 241 119 941 238 85 939 237 147 940 239 85 797 240 108 941 238 85 940 239 85 942 276 84 941 238 85 797 240 108 799 204 127 942 276 84 797 240 108 943 206 26 942 276 84 799 204 127 944 205 37 943 206 26 799 204 127 125 125 75 943 206 26 944 205 37 127 127 34 125 125 75 944 205 37 907 379 12 556 310 10 554 308 8 945 381 8 556 310 10 907 379 12 905 378 6 945 381 8 907 379 12 946 193 98 945 381 8 905 378 6 947 380 15 946 193 98 905 378 6 948 195 15 946 193 98 947 380 15 903 199 9 948 195 15 947 380 15 949 197 99 948 195 15 903 199 9 901 198 5 949 197 99 903 199 9 950 196 65 949 197 99 901 198 5 951 272 55 950 196 65 901 198 5 952 251 5 950 196 65 951 272 55 899 247 78 952 251 5 951 272 55 816 337 147 953 335 40 814 353 40 954 336 128 953 335 40 816 337 147 818 241 119 954 336 128 816 337 147 955 237 147 954 336 128 818 241 119 956 239 119 955 237 147 818 241 119 957 238 122 955 237 147 956 239 119 820 240 108 957 238 122 956 239 119 958 276 155 957 238 122 820 240 108 822 204 72 958 276 155 820 240 108 959 206 43 958 276 155 822 204 72 960 205 127 959 206 43 822 204 72 285 125 34 959 206 43 960 205 127 287 127 76 285 125 34 960 205 127 833 2 55 751 0 60 835 357 61 752 1 58 751 0 60 833 2 55 832 3 3 752 1 58 833 2 55 961 326 13 752 1 58 832 3 3 831 7 6 961 326 13 832 3 3 962 325 8 961 326 13 831 7 6 963 383 8 962 325 8 831 7 6 964 282 8 962 325 8 963 383 8 828 9 8 964 282 8 963 383 8 965 283 8 964 282 8 828 9 8 826 284 8 965 283 8 828 9 8 824 355 6 965 283 8 826 284 8 966 384 65 116 116 54 114 114 3 967 315 1 116 116 54 966 384 65 968 317 29 967 315 1 966 384 65 969 316 152 967 315 1 968 317 29 970 318 13 969 316 152 968 317 29 971 311 94 969 316 152 970 318 13 972 309 132 971 311 94 970 318 13 973 310 65 971 311 94 972 309 132 974 308 8 973 310 65 972 309 132 975 379 8 973 310 65 974 308 8 93 93 10 975 379 8 974 308 8 92 92 65 975 379 8 93 93 10 290 86 31 544 85 52 288 84 80 546 87 57 544 85 52 290 86 31 292 88 75 546 87 57 290 86 31 976 89 64 546 87 57 292 88 75 294 90 35 976 89 64 292 88 75 977 91 74 976 89 64 294 90 35 906 92 5 977 91 74 294 90 35 976 89 64 977 91 74 906 92 5 908 93 6 976 89 64 906 92 5 978 94 15 976 89 64 908 93 6 552 95 8 978 94 15 908 93 6 550 96 8 978 94 15 552 95 8 198 153 40 54 54 38 56 56 40 979 385 38 54 54 38 198 153 40 199 154 88 979 385 38 198 153 40 50 50 27 979 385 38 199 154 88 980 386 23 50 50 27 199 154 88 48 48 33 50 50 27 980 386 23 981 332 139 48 48 33 980 386 23 982 331 100 48 48 33 981 332 139 983 291 156 982 331 100 981 332 139 44 44 31 982 331 100 983 291 156 37 37 26 44 44 31 983 291 156 39 39 28 44 44 31 37 37 26 939 237 147 937 335 40 938 336 49 984 235 40 937 335 40 939 237 147 985 236 133 984 235 40 939 237 147 986 234 124 984 235 40 985 236 133 941 238 85 986 234 124 985 236 133 987 277 85 986 234 124 941 238 85 943 206 26 987 277 85 941 238 85 988 208 93 987 277 85 943 206 26 989 207 27 988 208 93 943 206 26 123 123 36 988 208 93 989 207 27 125 125 75 123 123 36 989 207 27 124 124 74 123 123 36 125 125 75 305 141 52 301 137 56 303 139 52 898 246 58 301 137 56 305 141 52 990 248 2 898 246 58 305 141 52 899 247 78 898 246 58 990 248 2 991 249 78 899 247 78 990 248 2 952 251 5 899 247 78 991 249 78 992 250 131 952 251 5 991 249 78 993 252 9 952 251 5 992 250 131 994 254 69 993 252 9 992 250 131 995 253 7 993 252 9 994 254 69 996 255 15 995 253 7 994 254 69 997 387 66 995 253 7 996 255 15 998 290 113 38 38 27 36 36 25 40 40 29 38 38 27 998 290 113 999 260 120 40 40 29 998 290 113 1000 289 17 40 40 29 999 260 120 1001 258 14 1000 289 17 999 260 120 1002 288 11 1000 289 17 1001 258 14 1003 287 11 1002 288 11 1001 258 14 1004 286 17 1002 288 11 1003 287 11 1005 256 67 1004 286 17 1003 287 11 1006 285 66 1004 286 17 1005 256 67 14 14 7 1006 285 66 1005 256 67 12 12 11 1006 285 66 14 14 7 1007 384 16 197 116 1 195 114 15 1008 315 9 197 116 1 1007 384 16 1009 317 132 1008 315 9 1007 384 16 1010 316 3 1008 315 9 1009 317 132 1011 318 8 1010 316 3 1009 317 132 1012 311 95 1010 316 3 1011 318 8 1013 309 15 1012 311 95 1011 318 8 1014 310 15 1012 311 95 1013 309 15 1015 308 8 1014 310 15 1013 309 15 1016 379 8 1014 310 15 1015 308 8 174 93 8 1016 379 8 1015 308 8 173 92 7 1016 379 8 174 93 8 955 237 147 953 335 40 954 336 128 1017 235 40 953 335 40 955 237 147 1018 236 47 1017 235 40 955 237 147 1019 234 117 1017 235 40 1018 236 47 957 238 122 1019 234 117 1018 236 47 1020 277 70 1019 234 117 957 238 122 959 206 43 1020 277 70 957 238 122 1021 208 70 1020 277 70 959 206 43 1022 207 25 1021 208 70 959 206 43 281 123 110 1021 208 70 1022 207 25 285 125 34 281 123 110 1022 207 25 283 124 30 281 123 110 285 125 34 810 97 8 917 382 8 812 99 8 916 307 8 917 382 8 810 97 8 808 95 8 916 307 8 810 97 8 914 308 8 916 307 8 808 95 8 806 93 6 914 308 8 808 95 8 912 379 120 914 308 8 806 93 6 805 92 9 912 379 120 806 93 6 910 378 15 912 379 120 805 92 9 1023 377 5 910 378 15 805 92 9 244 199 5 910 378 15 1023 377 5 246 132 69 244 199 5 1023 377 5 1026 193 15 1025 192 11 1024 191 59 1027 194 7 1025 192 11 1026 193 15 1028 195 6 1027 194 7 1026 193 15 1029 196 99 1027 194 7 1028 195 6 1030 197 13 1029 196 99 1028 195 6 863 198 68 1029 196 99 1030 197 13 1031 199 98 863 198 68 1030 197 13 862 200 5 863 198 68 1031 199 98 132 132 78 862 200 5 1031 199 98 135 135 78 862 200 5 132 132 78 133 133 79 135 135 78 132 132 78 858 177 94 372 181 64 859 372 80 1032 179 18 372 181 64 858 177 94 856 178 8 1032 179 18 858 177 94 1033 180 5 1032 179 18 856 178 8 1034 388 8 1033 180 5 856 178 8 1035 184 14 1033 180 5 1034 388 8 1036 389 8 1035 184 14 1034 388 8 1037 390 8 1035 184 14 1036 389 8 854 370 8 1037 390 8 1036 389 8 360 220 4 1037 390 8 854 370 8 358 219 56 360 220 4 854 370 8 894 177 29 332 181 19 896 372 53 1038 179 61 332 181 19 894 177 29 892 178 6 1038 179 61 894 177 29 1039 180 3 1038 179 61 892 178 6 1040 388 8 1039 180 3 892 178 6 1041 184 8 1039 180 3 1040 388 8 1042 389 8 1041 184 8 1040 388 8 1043 390 8 1041 184 8 1042 389 8 888 370 120 1043 390 8 1042 389 8 320 220 3 1043 390 8 888 370 120 318 219 96 320 220 3 888 370 120 42 42 0 1044 366 0 43 43 19 1045 367 68 1044 366 0 42 42 0 1002 288 11 1045 367 68 42 42 0 1044 366 0 1045 367 68 1002 288 11 1046 365 132 1044 366 0 1002 288 11 1047 362 2 1044 366 0 1046 365 132 1004 286 17 1047 362 2 1046 365 132 1048 364 3 1047 362 2 1004 286 17 1049 363 96 1048 364 3 1004 286 17 1047 362 2 1048 364 3 1049 363 96 1050 361 2 1047 362 2 1049 363 96 694 80 53 696 76 80 695 122 34 1051 78 79 696 76 80 694 80 53 1052 79 3 1051 78 79 694 80 53 1053 77 65 1051 78 79 1052 79 3 1054 296 14 1053 77 65 1052 79 3 1055 295 8 1053 77 65 1054 296 14 1056 297 14 1055 295 8 1054 296 14 1057 346 8 1055 295 8 1056 297 14 1058 347 67 1057 346 8 1056 297 14 1059 170 8 1057 346 8 1058 347 67 1060 172 68 1059 170 8 1058 347 67 226 181 97 214 169 58 216 171 61 212 167 95 214 169 58 226 181 97 1061 228 29 212 167 95 226 181 97 210 165 94 212 167 95 1061 228 29 1062 227 76 210 165 94 1061 228 29 1063 264 100 210 165 94 1062 227 76 1064 224 34 1063 264 100 1062 227 76 31 31 20 1063 264 100 1064 224 34 1065 222 68 31 31 20 1064 224 34 29 29 18 31 31 20 1065 222 68 27 27 13 29 29 18 1065 222 68 32 32 21 36 36 25 34 34 23 998 290 113 36 36 25 32 32 21 1066 263 52 998 290 113 32 32 21 1067 262 120 998 290 113 1066 263 52 28 28 17 1067 262 120 1066 263 52 1068 261 8 1067 262 120 28 28 17 1069 391 12 1068 261 8 28 28 17 1070 259 8 1068 261 8 1069 391 12 24 24 8 1070 259 8 1069 391 12 20 20 10 1070 259 8 24 24 8 22 22 10 20 20 10 24 24 8 33 33 22 1063 264 100 31 31 20 207 162 82 1063 264 100 33 33 22 35 35 24 207 162 82 33 33 22 206 161 93 207 162 82 35 35 24 983 291 156 206 161 93 35 35 24 205 160 92 206 161 93 983 291 156 1071 333 138 205 160 92 983 291 156 203 158 90 205 160 92 1071 333 138 981 332 139 203 158 90 1071 333 138 201 156 89 203 158 90 981 332 139 199 154 88 201 156 89 981 332 139 616 47 97 620 48 101 618 46 76 1072 49 76 620 48 101 616 47 97 1073 51 94 1072 49 76 616 47 97 1074 50 151 1072 49 76 1073 51 94 1075 52 37 1074 50 151 1073 51 94 1076 54 144 1074 50 151 1075 52 37 1077 53 100 1076 54 144 1075 52 37 1078 55 157 1076 54 144 1077 53 100 1079 57 158 1078 55 157 1077 53 100 1080 56 40 1078 55 157 1079 57 158 152 58 40 1080 56 40 1079 57 158 1082 300 56 935 299 69 1081 298 55 1083 301 0 935 299 69 1082 300 56 1084 302 0 1083 301 0 1082 300 56 1085 303 55 1083 301 0 1084 302 0 85 85 61 1085 303 55 1084 302 0 1086 304 18 1085 303 55 85 85 61 87 87 53 1086 304 18 85 85 61 1087 305 132 1086 304 18 87 87 53 1088 306 9 1087 305 132 87 87 53 98 98 8 1087 305 132 1088 306 9 1090 300 69 761 299 96 1089 298 68 1091 301 56 761 299 96 1090 300 69 1092 302 69 1091 301 56 1090 300 69 1093 303 68 1091 301 56 1092 302 69 166 85 52 1093 303 68 1092 302 69 1094 304 0 1093 303 68 166 85 52 168 87 80 1094 304 0 166 85 52 1095 305 132 1094 304 0 168 87 80 1096 306 9 1095 305 132 168 87 80 179 98 8 1095 305 132 1096 306 9 1079 57 158 151 59 87 152 58 40 1097 392 156 151 59 87 1079 57 158 1077 53 100 1097 392 156 1079 57 158 1098 393 31 1097 392 156 1077 53 100 1099 394 29 1098 393 31 1077 53 100 1100 395 58 1098 393 31 1099 394 29 1073 51 94 1100 395 58 1099 394 29 1101 396 95 1100 395 58 1073 51 94 616 47 97 1101 396 95 1073 51 94 614 329 79 1101 396 95 616 47 97 670 318 13 555 309 6 557 311 56 553 307 8 555 309 6 670 318 13 1102 382 8 553 307 8 670 318 13 551 97 8 553 307 8 1102 382 8 1103 99 8 551 97 8 1102 382 8 549 98 8 551 97 8 1103 99 8 1104 100 8 549 98 8 1103 99 8 1105 397 8 549 98 8 1104 100 8 674 102 8 1105 397 8 1104 100 8 543 303 55 1105 397 8 674 102 8 110 110 13 114 114 3 112 112 17 966 384 65 114 114 3 110 110 13 1106 323 11 966 384 65 110 110 13 968 317 29 966 384 65 1106 323 11 1107 319 66 968 317 29 1106 323 11 970 318 13 968 317 29 1107 319 66 101 101 8 970 318 13 1107 319 66 1108 382 8 970 318 13 101 101 8 99 99 8 1108 382 8 101 101 8 97 97 8 1108 382 8 99 99 8 1110 51 29 706 47 64 1109 396 57 1111 49 81 706 47 64 1110 51 29 1112 50 84 1111 49 81 1110 51 29 708 48 83 1111 49 81 1112 50 84 1113 386 73 708 48 83 1112 50 84 712 332 139 708 48 83 1113 386 73 1114 154 48 712 332 139 1113 386 73 1115 156 159 712 332 139 1114 154 48 1116 155 40 1115 156 159 1114 154 48 1117 157 40 1115 156 159 1116 155 40 191 110 7 195 114 15 193 112 8 1007 384 16 195 114 15 191 110 7 1118 323 8 1007 384 16 191 110 7 1009 317 132 1007 384 16 1118 323 8 1119 319 8 1009 317 132 1118 323 8 1011 318 8 1009 317 132 1119 319 8 182 101 8 1011 318 8 1119 319 8 1120 382 8 1011 318 8 182 101 8 180 99 8 1120 382 8 182 101 8 178 97 8 1120 382 8 180 99 8 702 329 79 706 47 64 704 330 57 1109 396 57 706 47 64 702 329 79 1121 395 0 1109 396 57 702 329 79 1110 51 29 1109 396 57 1121 395 0 1122 394 53 1110 51 29 1121 395 0 1123 53 101 1110 51 29 1122 394 53 1124 393 29 1123 53 101 1122 394 53 1125 392 51 1123 53 101 1124 393 29 838 360 113 1125 392 51 1124 393 29 1126 398 115 1125 392 51 838 360 113 1008 315 9 853 368 8 197 116 1 1127 314 8 853 368 8 1008 315 9 1128 313 69 1127 314 8 1008 315 9 626 191 7 1127 314 8 1128 313 69 1129 312 69 626 191 7 1128 313 69 628 193 8 626 191 7 1129 312 69 1130 381 8 628 193 8 1129 312 69 1131 378 8 628 193 8 1130 381 8 1016 379 8 1131 378 8 1130 381 8 173 92 7 1131 378 8 1016 379 8 226 181 97 1062 227 76 1061 228 29 1132 226 32 1062 227 76 226 181 97 1133 225 56 1132 226 32 226 181 97 1064 224 34 1132 226 32 1133 225 56 1134 223 61 1064 224 34 1133 225 56 1065 222 68 1064 224 34 1134 223 61 1135 221 16 1065 222 68 1134 223 61 25 25 8 1065 222 68 1135 221 16 230 185 12 25 25 8 1135 221 16 23 23 16 25 25 8 230 185 12 610 4 96 614 329 79 612 327 4 1136 399 96 614 329 79 610 4 96 1137 356 0 1136 399 96 610 4 96 1100 395 58 1136 399 96 1137 356 0 1138 358 77 1100 395 58 1137 356 0 1098 393 31 1100 395 58 1138 358 77 872 360 83 1098 393 31 1138 358 77 1097 392 156 1098 393 31 872 360 83 149 398 85 1097 392 156 872 360 83 151 59 87 1097 392 156 149 398 85 967 315 1 1139 368 8 116 116 54 1140 314 8 1139 368 8 967 315 1 1141 313 94 1140 314 8 967 315 1 1024 191 59 1140 314 8 1141 313 94 1142 312 61 1024 191 59 1141 313 94 1026 193 15 1024 191 59 1142 312 61 1143 381 8 1026 193 15 1142 312 61 1144 378 17 1026 193 15 1143 381 8 975 379 8 1144 378 17 1143 381 8 92 92 65 1144 378 17 975 379 8 633 198 5 416 247 56 1145 272 5 1146 273 79 416 247 56 633 198 5 637 135 69 1146 273 79 633 198 5 414 137 1 1146 273 79 637 135 69 1147 136 60 414 137 1 637 135 69 410 138 18 414 137 1 1147 136 60 639 134 57 410 138 18 1147 136 60 1148 274 29 410 138 18 639 134 57 643 202 34 1148 274 29 639 134 57 408 244 34 1148 274 29 643 202 34 946 193 98 560 191 77 558 312 131 1149 192 65 560 191 77 946 193 98 1150 194 65 1149 192 65 946 193 98 1151 270 13 1149 192 65 1150 194 65 950 196 65 1151 270 13 1150 194 65 1152 271 65 1151 270 13 950 196 65 952 251 5 1152 271 65 950 196 65 995 253 7 1152 271 65 952 251 5 993 252 9 995 253 7 952 251 5 1154 362 69 613 328 56 1153 400 79 1155 361 69 613 328 56 1154 362 69 1156 363 5 1155 361 69 1154 362 69 1157 10 132 1155 361 69 1156 363 5 1158 401 65 1157 10 132 1156 363 5 511 12 120 1157 10 132 1158 401 65 1156 363 5 511 12 120 1158 401 65 513 285 66 511 12 120 1156 363 5 514 286 13 513 285 66 1156 363 5 1024 191 59 354 189 8 1140 314 8 353 190 95 354 189 8 1024 191 59 1025 192 11 353 190 95 1024 191 59 502 268 5 353 190 95 1025 192 11 1159 269 132 502 268 5 1025 192 11 501 387 13 502 268 5 1159 269 132 1160 253 13 501 387 13 1159 269 132 604 255 99 501 387 13 1160 253 13 1161 254 79 604 255 99 1160 253 13 113 113 7 221 176 4 111 111 13 223 178 10 221 176 4 113 113 7 1162 371 8 223 178 10 113 113 7 1163 389 8 223 178 10 1162 371 8 1164 370 6 1163 389 8 1162 371 8 1165 390 8 1163 389 8 1164 370 6 1166 220 7 1165 390 8 1164 370 6 231 186 14 1165 390 8 1166 220 7 232 187 15 231 186 14 1166 220 7 367 222 65 440 31 62 369 224 81 1167 29 57 440 31 62 367 222 65 1168 27 15 1167 29 57 367 222 65 436 28 16 1167 29 57 1168 27 15 1169 26 8 436 28 16 1168 27 15 1170 391 8 436 28 16 1169 26 8 1171 24 8 1170 391 8 1169 26 8 432 259 8 1170 391 8 1171 24 8 1172 20 8 432 259 8 1171 24 8 327 222 3 463 31 34 329 224 31 1173 29 77 463 31 34 327 222 3 1174 27 98 1173 29 77 327 222 3 467 28 11 1173 29 77 1174 27 98 1175 26 8 467 28 11 1174 27 98 1176 391 8 467 28 11 1175 26 8 1177 24 8 1176 391 8 1175 26 8 471 259 8 1176 391 8 1177 24 8 1178 20 8 471 259 8 1177 24 8 1180 216 60 15 15 13 1179 218 74 1181 355 98 15 15 13 1180 216 60 1182 281 55 1181 355 98 1180 216 60 1183 283 8 1181 355 98 1182 281 55 1184 282 8 1183 283 8 1182 281 55 9 9 8 1183 283 8 1184 282 8 1185 383 8 9 9 8 1184 282 8 7 7 6 9 9 8 1185 383 8 1186 325 8 7 7 6 1185 383 8 158 77 66 154 73 52 156 75 5 1187 294 2 154 73 52 158 77 66 755 295 5 1187 294 2 158 77 66 382 231 54 1187 294 2 755 295 5 753 334 69 382 231 54 755 295 5 378 168 58 382 231 54 753 334 69 754 170 96 378 168 58 753 334 69 861 169 60 378 168 58 754 170 96 860 171 1 861 169 60 754 170 96 865 247 69 863 198 68 864 273 131 1188 272 132 863 198 68 865 247 69 1189 251 132 1188 272 132 865 247 69 1029 196 99 1188 272 132 1189 251 132 1190 271 65 1029 196 99 1189 251 132 1191 270 15 1029 196 99 1190 271 65 1160 253 13 1191 270 15 1190 271 65 1159 269 132 1191 270 15 1160 253 13 1192 387 13 422 253 13 424 255 66 1193 269 13 422 253 13 1192 387 13 1194 268 12 1193 269 13 1192 387 13 627 192 14 1193 269 13 1194 268 12 1195 190 8 627 192 14 1194 268 12 626 191 7 627 192 14 1195 190 8 1196 189 8 626 191 7 1195 190 8 1127 314 8 626 191 7 1196 189 8 1197 349 40 880 351 153 878 353 40 1198 350 104 880 351 153 1197 349 40 1199 150 90 1198 350 104 1197 349 40 882 146 154 1198 350 104 1199 150 90 1200 148 25 882 146 154 1199 150 90 884 147 21 882 146 154 1200 148 25 1126 149 115 884 147 21 1200 148 25 838 375 113 884 147 21 1126 149 115 1201 349 40 920 351 117 918 353 40 1202 350 149 920 351 117 1201 349 40 1203 150 147 1202 350 149 1201 349 40 922 146 43 1202 350 149 1203 150 147 1204 148 154 922 146 43 1203 150 147 924 147 152 922 146 43 1204 148 154 1205 149 25 924 147 152 1204 148 154 1206 375 28 924 147 152 1205 149 25 596 299 55 1056 297 14 1207 298 9 1208 348 7 1056 297 14 596 299 55 598 321 55 1208 348 7 596 299 55 1058 347 67 1208 348 7 598 321 55 1209 402 3 1058 347 67 598 321 55 1210 174 2 1058 347 67 1209 402 3 598 321 55 1210 174 2 1209 402 3 599 109 99 1210 174 2 598 321 55 992 250 131 1 345 1 994 254 69 0 344 0 1 345 1 992 250 131 1211 343 1 0 344 0 992 250 131 1212 342 54 0 344 0 1211 343 1 990 248 2 1212 342 54 1211 343 1 1213 341 52 1212 342 54 990 248 2 305 141 52 1213 341 52 990 248 2 307 143 64 1213 341 52 305 141 52 1214 357 61 2 2 2 0 0 0 1215 356 0 2 2 2 1214 357 61 1216 358 57 1215 356 0 1214 357 61 1217 395 0 1215 356 0 1216 358 57 1218 393 35 1217 395 0 1216 358 57 1219 394 32 1217 395 0 1218 393 35 53 53 37 1219 394 32 1218 393 35 51 51 35 1219 394 32 53 53 37 1215 356 0 4 4 4 2 2 2 1220 399 69 4 4 4 1215 356 0 1217 395 0 1220 399 69 1215 356 0 1221 329 0 1220 399 69 1217 395 0 1222 396 95 1221 329 0 1217 395 0 47 47 30 1221 329 0 1222 396 95 51 51 35 47 47 30 1222 396 95 49 49 34 47 47 30 51 51 35 6 6 4 10 10 9 8 8 7 1050 361 2 10 10 9 6 6 4 1223 328 1 1050 361 2 6 6 4 1047 362 2 1050 361 2 1223 328 1 1224 400 95 1047 362 2 1223 328 1 1044 366 0 1047 362 2 1224 400 95 45 45 30 1044 366 0 1224 400 95 43 43 19 1044 366 0 45 45 30 961 326 13 579 403 4 752 1 58 580 324 120 579 403 4 961 326 13 962 325 8 580 324 120 961 326 13 1225 280 8 580 324 120 962 325 8 964 282 8 1225 280 8 962 325 8 1226 281 66 1225 280 8 964 282 8 965 283 8 1226 281 66 964 282 8 824 355 6 1226 281 66 965 283 8 1019 234 117 724 233 40 1017 235 40 1227 232 128 724 233 40 1019 234 117 1021 208 70 1227 232 128 1019 234 117 723 210 144 1227 232 128 1021 208 70 1228 209 115 723 210 144 1021 208 70 279 121 109 723 210 144 1228 209 115 281 123 110 279 121 109 1228 209 115 7 7 6 3 3 3 5 5 5 1229 326 5 3 3 3 7 7 6 1186 325 8 1229 326 5 7 7 6 996 324 15 1229 326 5 1186 325 8 1230 280 8 996 324 15 1186 325 8 997 278 66 996 324 15 1230 280 8 1231 279 68 997 278 66 1230 280 8 1114 154 48 1232 153 40 1116 155 40 1233 385 47 1232 153 40 1114 154 48 1112 50 84 1233 385 47 1114 154 48 1234 54 160 1233 385 47 1112 50 84 1235 52 154 1234 54 160 1112 50 84 1123 53 101 1234 54 160 1235 52 154 1110 51 29 1123 53 101 1235 52 154 1237 231 12 1055 295 8 1236 334 8 1238 294 8 1055 295 8 1237 231 12 274 73 15 1238 294 8 1237 231 12 1053 77 65 1238 294 8 274 73 15 1239 75 69 1053 77 65 274 73 15 696 76 80 1053 77 65 1239 75 69 272 74 30 696 76 80 1239 75 69 537 297 98 533 295 3 535 296 13 1240 346 3 533 295 3 537 297 98 1241 347 3 1240 346 3 537 297 98 719 170 56 1240 346 3 1241 347 3 1242 172 0 719 170 56 1241 347 3 897 171 60 719 170 56 1242 172 0 895 173 0 897 171 60 1242 172 0 986 234 124 1243 233 40 984 235 40 1244 232 117 1243 233 40 986 234 124 988 208 93 1244 232 117 986 234 124 1245 210 161 1244 232 117 988 208 93 1246 209 122 1245 210 161 988 208 93 121 121 73 1245 210 161 1246 209 122 123 123 36 121 121 73 1246 209 122 540 300 96 1247 83 69 542 302 69 1248 81 79 1247 83 69 540 300 96 536 79 132 1248 81 79 540 300 96 282 80 52 1248 81 79 536 79 132 1249 78 2 282 80 52 536 79 132 278 76 53 282 80 52 1249 78 2 534 77 65 278 76 53 1249 78 2 71 71 51 67 67 48 69 69 49 1250 267 162 67 67 48 71 71 51 1251 230 100 1250 267 162 71 71 51 1252 266 85 1250 267 162 1251 230 100 1253 265 151 1252 266 85 1251 230 100 61 61 43 1252 266 85 1253 265 151 209 164 31 61 61 43 1253 265 151 77 77 55 73 73 52 75 75 4 1254 294 2 73 73 52 77 77 55 929 295 4 1254 294 2 77 77 55 1255 231 54 1254 294 2 929 295 4 928 334 0 1255 231 54 929 295 4 213 168 57 1255 231 54 928 334 0 215 170 69 213 168 57 928 334 0 617 45 80 613 328 56 615 330 95 1153 400 79 613 328 56 617 45 80 1256 366 0 1153 400 79 617 45 80 1154 362 69 1153 400 79 1256 366 0 1257 365 132 1154 362 69 1256 366 0 514 286 13 1154 362 69 1257 365 132 516 288 7 514 286 13 1257 365 132 395 210 116 389 212 40 397 233 40 1258 211 143 389 212 40 395 210 116 391 121 84 1258 211 143 395 210 116 387 119 105 1258 211 143 391 121 84 1259 120 37 387 119 105 391 121 84 155 74 64 387 119 105 1259 120 37 157 76 18 155 74 64 1259 120 37 931 297 5 935 299 69 933 348 3 1081 298 55 935 299 69 931 297 5 79 79 3 1081 298 55 931 297 5 1082 300 56 1081 298 55 79 79 3 81 81 58 1082 300 56 79 79 3 83 83 60 1082 300 56 81 81 58 311 147 21 307 143 64 309 145 75 1260 373 29 307 143 64 311 147 21 1261 374 19 1260 373 29 311 147 21 1212 342 54 1260 373 29 1261 374 19 1214 376 61 1212 342 54 1261 374 19 0 344 0 1212 342 54 1214 376 61 474 256 8 847 286 6 1262 287 10 1263 285 15 847 286 6 474 256 8 1264 14 120 1263 285 15 474 256 8 1265 12 11 1263 285 15 1264 14 120 825 13 8 1265 12 11 1264 14 120 827 11 10 1265 12 11 825 13 8 1266 111 65 1210 174 2 599 109 99 1267 175 131 1210 174 2 1266 111 65 1268 173 131 1267 175 131 1266 111 65 1210 174 2 1267 175 131 1268 173 131 1060 172 68 1210 174 2 1268 173 131 1058 347 67 1210 174 2 1060 172 68 1033 180 5 372 181 64 1032 179 18 1269 182 55 372 181 64 1033 180 5 1035 184 14 1269 182 55 1033 180 5 1270 183 69 1269 182 55 1035 184 14 364 185 6 1270 183 69 1035 184 14 366 221 11 1270 183 69 364 185 6 477 17 13 319 188 65 317 218 57 1271 19 8 319 188 65 477 17 13 475 18 8 1271 19 8 477 17 13 1178 20 8 1271 19 8 475 18 8 473 257 8 1178 20 8 475 18 8 471 259 8 1178 20 8 473 257 8 1039 180 3 332 181 19 1038 179 61 1272 182 3 332 181 19 1039 180 3 1041 184 8 1272 182 3 1039 180 3 1273 183 56 1272 182 3 1041 184 8 324 185 12 1273 183 56 1041 184 8 326 221 11 1273 183 56 324 185 12 1070 259 8 999 260 120 1068 261 8 1001 258 14 999 260 120 1070 259 8 1274 257 12 1001 258 14 1070 259 8 1005 256 67 1001 258 14 1274 257 12 18 18 14 1005 256 67 1274 257 12 16 16 10 1005 256 67 18 18 14 1245 210 161 1243 233 40 1244 232 117 1275 212 40 1243 233 40 1245 210 161 1276 211 104 1275 212 40 1245 210 161 119 119 71 1275 212 40 1276 211 104 121 121 73 119 119 71 1276 211 104 120 120 72 119 119 71 121 121 73 1234 54 160 1232 153 40 1233 385 47 1277 56 40 1232 153 40 1234 54 160 1278 55 103 1277 56 40 1234 54 160 1279 57 123 1277 56 40 1278 55 103 1123 53 101 1279 57 123 1278 55 103 1125 392 51 1279 57 123 1123 53 101 426 17 65 359 188 65 357 218 20 1280 19 12 359 188 65 426 17 65 428 18 8 1280 19 12 426 17 65 1172 20 8 1280 19 12 428 18 8 430 257 8 1172 20 8 428 18 8 432 259 8 1172 20 8 430 257 8 869 342 53 867 248 58 868 341 52 1281 343 1 867 248 58 869 342 53 1282 344 58 1281 343 1 869 342 53 1283 250 69 1281 343 1 1282 344 58 1284 345 58 1283 250 69 1282 344 58 1161 254 79 1283 250 69 1284 345 58 757 297 99 761 299 96 759 348 5 1089 298 68 761 299 96 757 297 99 160 79 3 1089 298 68 757 297 99 1090 300 69 1089 298 68 160 79 3 162 81 0 1090 300 69 160 79 3 164 83 69 1090 300 69 162 81 0 1138 358 77 871 359 30 872 360 83 1285 357 54 871 359 30 1138 358 77 1137 356 0 1285 357 54 1138 358 77 1286 2 56 1285 357 54 1137 356 0 610 4 96 1286 2 56 1137 356 0 608 3 78 1286 2 56 610 4 96 1288 174 69 680 109 132 1287 111 98 679 321 132 680 109 132 1288 174 69 1289 402 3 679 321 132 1288 174 69 1241 347 3 679 321 132 1289 402 3 1288 174 69 1241 347 3 1289 402 3 1242 172 0 1241 347 3 1288 174 69 504 281 65 353 214 95 502 279 5 355 216 95 353 214 95 504 281 65 1290 355 10 355 216 95 504 281 65 425 15 6 355 216 95 1290 355 10 510 13 8 425 15 6 1290 355 10 512 14 16 425 15 6 510 13 8 690 84 57 692 82 64 691 126 32 1291 83 60 692 82 64 690 84 57 801 85 1 1291 83 60 690 84 57 1292 302 79 1291 83 60 801 85 1 592 303 5 1292 302 79 801 85 1 594 301 69 1292 302 79 592 303 5 1083 301 0 108 108 4 935 299 69 106 106 55 108 108 4 1083 301 0 1085 303 55 106 106 55 1083 301 0 104 104 6 106 106 55 1085 303 55 102 102 67 104 104 6 1085 303 55 1091 301 56 189 108 78 761 299 96 187 106 68 189 108 78 1091 301 56 1093 303 68 187 106 68 1091 301 56 185 104 6 187 106 68 1093 303 68 183 102 10 185 104 6 1093 303 68 829 10 132 1265 12 11 827 11 10 1293 401 5 1265 12 11 829 10 132 845 363 96 1293 401 5 829 10 132 1265 12 11 1293 401 5 845 363 96 1263 285 15 1265 12 11 845 363 96 1256 366 0 516 288 7 1257 365 132 1294 367 3 516 288 7 1256 366 0 1295 42 0 1294 367 3 1256 366 0 516 288 7 1294 367 3 1295 42 0 517 289 7 516 288 7 1295 42 0 669 317 55 684 323 6 671 319 6 1296 384 15 684 323 6 669 317 55 667 315 3 1296 384 15 669 317 55 887 116 69 1296 384 15 667 315 3 886 368 8 887 116 69 667 315 3 363 23 8 1171 24 8 365 25 8 1297 22 12 1171 24 8 363 23 8 1298 21 6 1297 22 12 363 23 8 1172 20 8 1297 22 12 1298 21 6 1280 19 12 1172 20 8 1298 21 6 507 9 8 607 7 6 1299 8 13 1300 383 8 607 7 6 507 9 8 505 282 8 1300 383 8 507 9 8 605 325 8 1300 383 8 505 282 8 503 280 8 605 325 8 505 282 8 1301 311 8 584 316 66 586 318 8 582 313 96 584 316 66 1301 311 8 1302 312 58 582 313 96 1301 311 8 236 191 0 582 313 96 1302 312 58 238 193 67 236 191 0 1302 312 58 1295 42 0 518 40 59 517 289 7 1303 41 32 518 40 59 1295 42 0 1304 39 33 1303 41 32 1295 42 0 518 40 59 1303 41 32 1304 39 33 520 38 26 518 40 59 1304 39 33 1304 39 33 522 37 43 520 38 26 619 44 34 522 37 43 1304 39 33 1305 43 29 619 44 34 1304 39 33 617 45 80 619 44 34 1305 43 29 1256 366 0 617 45 80 1305 43 29 891 113 17 1306 114 9 889 115 3 1307 112 6 1306 114 9 891 113 17 1287 111 98 1307 112 6 891 113 17 682 110 13 1307 112 6 1287 111 98 680 109 132 682 110 13 1287 111 98 1308 270 15 1193 269 13 627 192 14 422 253 13 1193 269 13 1308 270 15 1309 271 65 422 253 13 1308 270 15 420 251 3 422 253 13 1309 271 65 631 196 13 420 251 3 1309 271 65 1166 220 7 233 188 5 232 187 15 1310 219 61 233 188 5 1166 220 7 1164 370 6 1310 219 61 1166 220 7 116 369 54 1310 219 61 1164 370 6 115 115 69 116 369 54 1164 370 6 1311 304 58 592 303 5 801 85 1 1312 404 10 592 303 5 1311 304 58 1313 305 5 1312 404 10 1311 304 58 811 98 8 1312 404 10 1313 305 5 1314 306 9 811 98 8 1313 305 5 1315 300 2 1292 302 79 594 301 69 1291 83 60 1292 302 79 1315 300 2 1316 81 60 1291 83 60 1315 300 2 692 82 64 1291 83 60 1316 81 60 694 80 53 692 82 64 1316 81 60 1225 280 8 1317 278 14 580 324 120 479 279 11 1317 278 14 1225 280 8 1226 281 66 479 279 11 1225 280 8 235 214 6 479 279 11 1226 281 66 315 216 68 235 214 6 1226 281 66 1052 79 3 1056 297 14 1054 296 14 1207 298 9 1056 297 14 1052 79 3 1315 300 2 1207 298 9 1052 79 3 596 299 55 1207 298 9 1315 300 2 594 301 69 596 299 55 1315 300 2 1320 113 15 1319 114 15 1318 115 16 1321 112 17 1319 114 15 1320 113 15 1266 111 65 1321 112 17 1320 113 15 601 110 13 1321 112 17 1266 111 65 599 109 99 601 110 13 1266 111 65 229 184 8 1165 390 8 231 186 14 1163 389 8 1165 390 8 229 184 8 1322 388 12 1163 389 8 229 184 8 223 178 10 1163 389 8 1322 388 12 225 180 5 223 178 10 1322 388 12 1270 183 69 372 181 64 1269 182 55 1323 405 79 372 181 64 1270 183 69 366 221 11 1323 405 79 1270 183 69 370 225 79 1323 405 79 366 221 11 368 223 52 370 225 79 366 221 11 611 6 131 607 7 6 609 5 3 1299 8 13 607 7 6 611 6 131 1157 10 132 1299 8 13 611 6 131 507 9 8 1299 8 13 1157 10 132 509 11 8 507 9 8 1157 10 132 323 23 8 1177 24 8 325 25 8 1324 22 8 1177 24 8 323 23 8 1325 21 120 1324 22 8 323 23 8 1178 20 8 1324 22 8 1325 21 120 1271 19 8 1178 20 8 1325 21 120 622 332 135 624 158 136 623 333 45 1326 156 163 624 158 136 622 332 135 1327 154 136 1326 156 163 622 332 135 1328 155 40 1326 156 163 1327 154 136 1329 153 40 1328 155 40 1327 154 136 1273 183 56 332 181 19 1272 182 3 1330 405 69 332 181 19 1273 183 56 326 221 11 1330 405 69 1273 183 56 330 225 0 1330 405 69 326 221 11 328 223 95 330 225 0 326 221 11 1121 395 0 834 356 56 836 358 58 1331 399 68 834 356 56 1121 395 0 702 329 79 1331 399 68 1121 395 0 700 4 55 1331 399 68 702 329 79 850 288 12 847 286 6 848 365 65 1262 287 10 847 286 6 850 288 12 472 258 8 1262 287 10 850 288 12 474 256 8 1262 287 10 472 258 8 94 94 66 87 87 53 89 89 30 1088 306 9 87 87 53 94 94 66 96 96 8 1088 306 9 94 94 66 98 98 8 1088 306 9 96 96 8 1296 384 15 682 110 13 684 323 6 1306 114 9 682 110 13 1296 384 15 887 116 69 1306 114 9 1296 384 15 889 115 3 1306 114 9 887 116 69 1332 292 40 204 159 91 202 157 40 64 64 46 204 159 91 1332 292 40 1333 293 40 64 64 46 1332 292 40 66 66 40 64 64 46 1333 293 40 1334 360 21 1218 393 35 1216 358 57 1335 392 23 1218 393 35 1334 360 21 313 398 102 1335 392 23 1334 360 21 59 59 42 1335 392 23 313 398 102 1336 217 8 1179 218 74 1310 219 61 1180 216 60 1179 218 74 1336 217 8 562 215 8 1180 216 60 1336 217 8 1337 214 79 1180 216 60 562 215 8 1230 280 8 1182 281 55 1231 279 68 1184 282 8 1182 281 55 1230 280 8 1186 325 8 1184 282 8 1230 280 8 1185 383 8 1184 282 8 1186 325 8 1074 50 151 620 48 101 1072 49 76 1338 386 109 620 48 101 1074 50 151 1327 154 136 1338 386 109 1074 50 151 622 332 135 1338 386 109 1327 154 136 1049 363 96 10 10 9 1050 361 2 1339 401 65 10 10 9 1049 363 96 12 12 11 1339 401 65 1049 363 96 10 10 9 1339 401 65 12 12 11 995 253 7 1151 270 13 1152 271 65 1340 269 65 1151 270 13 995 253 7 997 387 66 1340 269 65 995 253 7 1231 268 68 1340 269 65 997 387 66 1133 225 56 1135 221 16 1134 223 61 1341 405 1 1135 221 16 1133 225 56 226 181 97 1341 405 1 1133 225 56 228 183 56 1341 405 1 226 181 97 1221 329 0 4 4 4 1220 399 69 1342 327 69 4 4 4 1221 329 0 1223 328 1 1342 327 69 1221 329 0 6 6 4 1342 327 69 1223 328 1 1189 251 132 1160 253 13 1190 271 65 1343 252 96 1160 253 13 1189 251 132 1283 250 69 1343 252 96 1189 251 132 1161 254 79 1343 252 96 1283 250 69 175 94 6 168 87 80 170 89 30 1096 306 9 168 87 80 175 94 6 177 96 8 1096 306 9 175 94 6 179 98 8 1096 306 9 177 96 8 974 308 8 95 95 8 93 93 10 1344 307 8 95 95 8 974 308 8 972 309 132 1344 307 8 974 308 8 970 318 13 1344 307 8 972 309 132 1015 308 8 176 95 8 174 93 8 1345 307 8 176 95 8 1015 308 8 1013 309 15 1345 307 8 1015 308 8 1011 318 8 1345 307 8 1013 309 15 1255 231 54 73 73 52 1254 294 2 1346 213 62 73 73 52 1255 231 54 1251 230 100 1346 213 62 1255 231 54 71 71 51 1346 213 62 1251 230 100 1347 59 141 1125 392 51 1126 398 115 1279 57 123 1125 392 51 1347 59 141 1348 58 40 1279 57 123 1347 59 141 1277 56 40 1279 57 123 1348 58 40 1349 384 8 601 110 13 603 323 8 1319 114 15 601 110 13 1349 384 8 1350 116 95 1319 114 15 1349 384 8 1318 115 16 1319 114 15 1350 116 95 402 238 93 398 234 117 400 236 38 1351 277 93 398 234 117 402 238 93 649 206 43 1351 277 93 402 238 93 394 208 70 1351 277 93 649 206 43 420 251 3 416 247 56 418 249 69 1145 272 5 416 247 56 420 251 3 631 196 13 1145 272 5 420 251 3 633 198 5 1145 272 5 631 196 13 585 317 3 603 323 8 587 319 8 1349 384 8 603 323 8 585 317 3 583 315 0 1349 384 8 585 317 3 1350 116 95 1349 384 8 583 315 0 1284 1 58 608 3 78 606 326 9 1286 2 56 608 3 78 1284 1 58 1282 0 58 1286 2 56 1284 1 58 1285 357 54 1286 2 56 1282 0 58 659 36 140 657 35 73 658 34 23 1352 37 155 657 35 73 659 36 140 661 38 111 1352 37 155 659 36 140 663 39 33 1352 37 155 661 38 111 1283 250 69 867 248 58 1281 343 1 1353 249 56 867 248 58 1283 250 69 1189 251 132 1353 249 56 1283 250 69 865 247 69 1353 249 56 1189 251 132 1223 328 1 45 45 30 1224 400 95 1354 330 52 45 45 30 1223 328 1 1221 329 0 1354 330 52 1223 328 1 47 47 30 1354 330 52 1221 329 0 807 94 66 802 87 97 803 89 30 1314 306 9 802 87 97 807 94 66 809 96 8 1314 306 9 807 94 66 811 98 8 1314 306 9 809 96 8 226 181 97 222 177 29 224 179 61 1355 372 53 222 177 29 226 181 97 216 171 61 1355 372 53 226 181 97 218 173 79 1355 372 53 216 171 61 656 161 139 715 160 45 654 62 138 711 291 22 715 160 45 656 161 139 657 35 73 711 291 22 656 161 139 1352 37 155 711 291 22 657 35 73 649 206 43 645 204 100 647 205 101 1356 276 154 645 204 100 649 206 43 402 238 93 1356 276 154 649 206 43 404 240 110 1356 276 154 402 238 93 1251 230 100 209 164 31 1253 265 151 1357 229 59 209 164 31 1251 230 100 1255 231 54 1357 229 59 1251 230 100 213 168 57 1357 229 59 1255 231 54 1181 355 98 13 13 12 15 15 13 1358 284 8 13 13 12 1181 355 98 1183 283 8 1358 284 8 1181 355 98 9 9 8 1358 284 8 1183 283 8 1028 195 6 1031 199 98 1030 197 13 1359 380 6 1031 199 98 1028 195 6 1026 193 15 1359 380 6 1028 195 6 1144 378 17 1359 380 6 1026 193 15 1144 378 17 1031 199 98 1359 380 6 1360 377 9 1031 199 98 1144 378 17 92 92 65 1360 377 9 1144 378 17 90 90 63 1360 377 9 92 92 65 630 195 67 634 199 98 632 197 99 1361 380 14 634 199 98 630 195 67 628 193 8 1361 380 14 630 195 67 1131 378 8 1361 380 14 628 193 8 1131 378 8 634 199 98 1361 380 14 1362 377 98 634 199 98 1131 378 8 173 92 7 1362 377 98 1131 378 8 171 90 35 1362 377 98 173 92 7 1363 397 8 98 98 8 100 100 8 1364 404 10 98 98 8 1363 397 8 1085 303 55 1364 404 10 1363 397 8 1086 304 18 1364 404 10 1085 303 55 288 84 80 284 82 57 286 126 29 1247 83 69 284 82 57 288 84 80 544 85 52 1247 83 69 288 84 80 542 302 69 1247 83 69 544 85 52 1365 397 8 179 98 8 181 100 8 1366 404 6 179 98 8 1365 397 8 1093 303 68 1366 404 6 1365 397 8 1094 304 0 1366 404 6 1093 303 68 1367 175 3 1287 111 98 895 173 0 1288 174 69 1287 111 98 1367 175 3 895 173 0 1288 174 69 1367 175 3 1242 172 0 1288 174 69 895 173 0 408 244 34 404 240 110 406 242 82 1368 275 33 404 240 110 408 244 34 643 202 34 1368 275 33 408 244 34 645 204 100 1368 275 33 643 202 34 1264 14 120 478 15 6 825 13 8 476 16 8 478 15 6 1264 14 120 474 256 8 476 16 8 1264 14 120 717 64 46 651 66 40 652 65 137 1369 293 40 651 66 40 717 64 46 1370 292 40 1369 293 40 717 64 46 716 159 142 1370 292 40 717 64 46 1117 157 40 1370 292 40 716 159 142 714 158 141 1117 157 40 716 159 142 672 101 8 1102 382 8 670 318 13 1103 99 8 1102 382 8 672 101 8 1104 100 8 1103 99 8 672 101 8 681 105 15 673 103 8 683 322 10 675 104 14 673 103 8 681 105 15 676 106 68 675 104 14 681 105 15 1290 355 10 508 284 8 510 13 8 506 283 8 508 284 8 1290 355 10 504 281 65 506 283 8 1290 355 10 1036 389 8 855 371 8 854 370 8 856 178 8 855 371 8 1036 389 8 1034 388 8 856 178 8 1036 389 8 362 186 12 1037 390 8 360 220 4 1035 184 14 1037 390 8 362 186 12 364 185 6 1035 184 14 362 186 12 529 64 90 875 63 126 527 62 44 874 65 117 875 63 126 529 64 90 873 66 40 874 65 117 529 64 90 369 224 81 373 227 31 371 226 34 442 264 72 373 227 31 369 224 81 440 31 62 442 264 72 369 224 81 1345 307 8 178 97 8 176 95 8 1120 382 8 178 97 8 1345 307 8 1011 318 8 1120 382 8 1345 307 8 1371 408 8 1127 407 8 1196 406 8 853 409 8 1127 407 8 1371 408 8 356 407 8 853 409 8 1371 408 8 1371 408 8 354 410 8 356 407 8 1140 411 8 354 410 8 1371 408 8 1139 412 8 1140 411 8 1371 408 8 1371 408 8 1336 413 8 1139 412 8 562 414 8 1336 413 8 1371 408 8 561 415 8 562 414 8 1371 408 8 1371 408 8 886 416 8 561 415 8 316 417 8 886 416 8 1371 408 8 234 418 8 316 417 8 1371 408 8 1371 408 8 581 417 8 234 418 8 1372 419 8 581 417 8 1371 408 8 1373 420 8 1372 419 8 1371 408 8 271 70 107 1374 68 40 269 117 40 1375 69 50 1374 68 40 271 70 107 275 71 34 1375 69 50 271 70 107 1371 408 8 1376 408 8 1373 420 8 1377 421 8 1376 408 8 1371 408 8 1196 406 8 1377 421 8 1371 408 8 1344 307 8 97 97 8 95 95 8 1108 382 8 97 97 8 1344 307 8 970 318 13 1108 382 8 1344 307 8 600 105 6 589 103 8 602 322 8 591 104 8 589 103 8 600 105 6 593 106 132 591 104 8 600 105 6 802 87 97 1311 304 58 801 85 1 1313 305 5 1311 304 58 802 87 97 1314 306 9 1313 305 5 802 87 97 57 57 41 1335 392 23 59 59 42 53 53 37 1335 392 23 57 57 41 55 55 39 53 53 37 57 57 41 1378 397 8 1312 404 10 811 98 8 592 303 5 1312 404 10 1378 397 8 590 102 8 592 303 5 1378 397 8 1229 326 5 1 1 1 3 3 3 994 403 69 1 1 1 1229 326 5 996 324 15 994 403 69 1229 326 5 1179 218 74 233 188 5 1310 219 61 17 17 3 233 188 5 1179 218 74 15 15 13 17 17 3 1179 218 74 932 347 55 215 170 69 930 346 4 217 172 56 215 170 69 932 347 55 219 174 96 217 172 56 932 347 55 1298 21 6 359 188 65 1280 19 12 361 187 10 359 188 65 1298 21 6 363 23 8 361 187 10 1298 21 6 1042 389 8 890 371 8 888 370 120 892 178 6 890 371 8 1042 389 8 1040 388 8 892 178 6 1042 389 8 322 186 8 1043 390 8 320 220 3 1041 184 8 1043 390 8 322 186 8 324 185 12 1041 184 8 322 186 8 329 224 31 333 227 35 331 226 81 461 264 108 333 227 35 329 224 31 463 31 34 461 264 108 329 224 31 365 25 8 1168 27 15 367 222 65 1169 26 8 1168 27 15 365 25 8 1171 24 8 1169 26 8 365 25 8 325 25 8 1174 27 98 327 222 3 1175 26 8 1174 27 98 325 25 8 1177 24 8 1175 26 8 325 25 8 1379 385 147 1076 54 144 1329 153 40 1074 50 151 1076 54 144 1379 385 147 1327 154 136 1074 50 151 1379 385 147 1380 322 15 103 103 10 1106 323 11 105 105 65 103 103 10 1380 322 15 110 110 13 105 105 65 1380 322 15 948 195 15 1150 194 65 946 193 98 950 196 65 1150 194 65 948 195 15 949 197 99 950 196 65 948 195 15 1337 190 79 1149 192 65 1231 268 68 560 191 77 1149 192 65 1337 190 79 562 189 8 560 191 77 1337 190 79 1381 404 10 549 98 8 1105 397 8 547 305 99 549 98 8 1381 404 10 545 304 60 547 305 99 1381 404 10 1382 322 11 184 103 10 1118 323 8 186 105 65 184 103 10 1382 322 11 191 110 7 186 105 65 1382 322 11 978 94 15 546 87 57 976 89 64 548 306 99 546 87 57 978 94 15 550 96 8 548 306 99 978 94 15 1383 107 99 593 106 132 600 105 6 595 108 131 593 106 132 1383 107 99 600 105 6 595 108 131 1383 107 99 1384 296 98 755 295 5 158 77 66 757 297 99 755 295 5 1384 296 98 160 79 3 757 297 99 1384 296 98 1385 402 96 760 321 131 763 174 3 758 347 5 760 321 131 1385 402 96 763 174 3 758 347 5 1385 402 96 1386 364 5 1154 362 69 514 286 13 1156 363 5 1154 362 69 1386 364 5 514 286 13 1156 363 5 1386 364 5 1387 296 55 929 295 4 77 77 55 931 297 5 929 295 4 1387 296 55 79 79 3 931 297 5 1387 296 55 1388 402 3 934 321 55 219 174 96 932 347 55 934 321 55 1388 402 3 219 174 96 932 347 55 1388 402 3 1325 21 120 319 188 65 1271 19 8 321 187 14 319 188 65 1325 21 120 323 23 8 321 187 14 1325 21 120 1124 393 29 836 358 58 838 360 113 1121 395 0 836 358 58 1124 393 29 1122 394 53 1121 395 0 1124 393 29 1389 107 9 676 106 68 681 105 15 677 108 4 676 106 68 1389 107 9 681 105 15 677 108 4 1389 107 9 1390 348 9 1241 347 3 537 297 98 679 321 132 1241 347 3 1390 348 9 539 299 5 679 321 132 1390 348 9 1391 400 58 705 45 19 849 366 0 703 328 60 705 45 19 1391 400 58 844 362 69 703 328 60 1391 400 58 668 316 60 557 311 56 559 313 77 670 318 13 557 311 56 668 316 60 26 26 8 1069 391 12 28 28 17 24 24 8 1069 391 12 26 26 8 229 184 8 225 180 5 1322 388 12 227 182 55 225 180 5 229 184 8 207 162 82 210 165 94 1063 264 100 208 163 33 210 165 94 207 162 82 1261 359 19 1216 358 57 1214 357 61 1334 360 21 1216 358 57 1261 359 19 893 176 4 1287 111 98 891 113 17 895 173 0 1287 111 98 893 176 4 990 248 2 992 250 131 991 249 78 1211 343 1 992 250 131 990 248 2 913 310 3 1302 312 58 1301 311 8 911 381 8 1302 312 58 913 310 3 915 309 9 1301 311 8 586 318 8 913 310 3 1301 311 8 915 309 9 1161 403 79 606 326 9 604 324 99 1284 1 58 606 326 9 1161 403 79 488 137 60 490 138 80 572 139 61 489 136 54 490 138 80 488 137 60 264 121 24 268 119 105 266 211 104 697 120 100 268 119 105 264 121 24 42 42 0 1000 289 17 1002 288 11 40 40 29 1000 289 17 42 42 0 743 339 108 741 337 147 879 354 50 742 338 148 741 337 147 743 339 108 249 134 57 253 202 34 491 274 29 251 201 29 253 202 34 249 134 57 512 14 16 427 16 12 425 15 6 429 256 120 427 16 12 512 14 16 567 241 115 565 237 134 740 336 49 566 239 119 565 237 134 567 241 115 1135 221 16 228 183 56 230 185 12 1341 405 1 228 183 56 1135 221 16 1316 81 60 1052 79 3 694 80 53 1315 300 2 1052 79 3 1316 81 60 458 61 43 460 162 27 655 60 22 459 163 127 460 162 27 458 61 43 466 263 18 660 290 94 464 32 33 468 262 10 660 290 94 466 263 18 945 381 8 558 312 131 556 310 10 946 193 98 558 312 131 945 381 8 1392 176 66 1266 111 65 1320 113 15 1268 173 131 1266 111 65 1392 176 66 1084 302 0 83 83 60 85 85 61 1082 300 56 83 83 60 1084 302 0 209 164 31 213 168 57 211 166 30 1357 229 59 213 168 57 209 164 31 437 263 52 519 290 94 439 32 33 435 262 67 519 290 94 437 263 52 465 30 64 1173 29 77 467 28 11 463 31 34 1173 29 77 465 30 64 1059 170 8 1055 295 8 1057 346 8 1236 334 8 1055 295 8 1059 170 8 258 125 31 262 123 36 260 207 26 693 124 32 262 123 36 258 125 31 571 140 53 569 243 75 744 340 94 570 245 94 569 243 75 571 140 53 524 291 109 619 44 34 621 331 108 522 37 43 619 44 34 524 291 109 575 248 56 573 141 52 748 341 18 574 246 60 573 141 52 575 248 56 747 143 64 745 144 20 883 145 62 746 142 77 745 144 20 747 143 64 438 30 30 1167 29 57 436 28 16 440 31 62 1167 29 57 438 30 30 1170 391 8 434 261 8 436 28 16 432 259 8 434 261 8 1170 391 8 261 208 70 265 210 103 499 232 128 263 209 102 265 210 103 261 208 70 882 146 154 880 351 153 1198 350 104 881 352 36 880 351 153 882 146 154 243 198 3 247 135 0 487 273 69 245 200 96 247 135 0 243 198 3 484 251 5 486 247 69 576 249 96 485 272 5 486 247 69 484 251 5 496 238 106 498 234 124 564 236 133 497 277 70 498 234 124 496 238 106 192 111 6 857 176 9 765 173 78 194 113 8 857 176 9 192 111 6 255 204 100 259 206 26 495 276 51 257 205 101 259 206 26 255 204 100 252 129 76 256 127 34 254 203 31 689 128 80 256 127 34 252 129 76 492 244 62 494 240 121 568 242 121 493 275 33 494 240 121 492 244 62 904 377 132 294 90 35 296 132 96 906 92 5 294 90 35 904 377 132 1119 319 8 184 103 10 182 101 8 1118 323 8 184 103 10 1119 319 8 1126 149 115 1199 150 90 1347 151 141 1200 148 25 1199 150 90 1126 149 115 1010 316 3 1128 313 69 1008 315 9 1012 311 95 1128 313 69 1010 316 3 1012 311 95 1129 312 69 1128 313 69 1014 310 15 1129 312 69 1012 311 95 1014 310 15 1130 381 8 1129 312 69 1016 379 8 1130 381 8 1014 310 15 860 171 1 766 172 78 765 173 78 754 170 96 766 172 78 860 171 1 837 374 53 884 147 21 838 375 113 885 373 32 884 147 21 837 374 53 751 344 60 749 342 95 835 376 61 750 343 0 749 342 95 751 344 60 579 254 4 577 250 96 752 345 58 578 252 5 577 250 96 579 254 4 1372 368 8 583 315 0 581 314 8 1350 116 95 583 315 0 1372 368 8 1393 152 40 1203 150 147 1201 349 40 1394 151 130 1203 150 147 1393 152 40 1348 152 40 1199 150 90 1197 349 40 1347 151 141 1199 150 90 1348 152 40 239 194 15 481 270 67 237 192 12 241 196 98 481 270 67 239 194 15 480 269 67 1317 387 14 479 268 11 482 253 10 1317 387 14 480 269 67 1049 363 96 1006 285 66 12 12 11 1004 286 17 1006 285 66 1049 363 96 423 254 5 419 250 0 738 345 0 421 252 68 419 250 0 423 254 5 737 344 1 735 342 54 927 376 57 736 343 61 735 342 54 737 344 1 926 374 74 924 147 152 1206 375 28 925 373 74 924 147 152 926 374 74 1205 149 25 1203 150 147 1394 151 130 1204 148 154 1203 150 147 1205 149 25 1340 269 65 1149 192 65 1151 270 13 1231 268 68 1149 192 65 1340 269 65 642 129 35 646 127 34 644 203 75 840 128 64 646 127 34 642 129 35 147 147 83 143 143 64 145 145 81 870 373 63 143 143 64 147 147 83 1360 377 9 132 132 78 1031 199 98 90 90 63 132 132 78 1360 377 9 398 234 117 394 208 70 396 232 117 1351 277 93 394 208 70 398 234 117 44 44 31 48 48 33 982 331 100 46 46 32 48 48 33 44 44 31 1248 81 79 284 82 57 1247 83 69 282 80 52 284 82 57 1248 81 79 922 146 43 920 351 117 1202 350 149 921 352 37 920 351 117 922 146 43 733 143 57 731 144 59 923 145 94 732 142 58 731 144 59 733 143 57 417 248 60 413 141 58 734 341 52 415 246 58 413 141 58 417 248 60 411 140 95 407 243 28 730 340 76 409 245 29 407 243 28 411 140 95 648 125 76 392 123 110 650 207 43 842 124 94 392 123 110 648 125 76 445 61 121 443 162 108 876 60 51 444 163 21 443 162 108 445 61 121 80 80 57 76 76 54 122 122 31 78 78 56 76 76 54 80 80 57 344 73 0 348 74 53 721 75 131 346 72 21 348 74 53 344 73 0 1080 56 40 1076 54 144 1078 55 157 1329 153 40 1076 54 144 1080 56 40 1077 53 100 1073 51 94 1099 394 29 1075 52 37 1073 51 94 1077 53 100 67 67 48 1252 266 85 65 65 47 1250 267 162 1252 266 85 67 67 48 141 141 52 137 137 79 139 139 54 866 246 0 137 137 79 141 141 52 50 50 27 54 54 38 979 385 38 52 52 36 54 54 38 50 50 27 1092 302 69 164 83 69 166 85 52 1090 300 69 164 83 69 1092 302 69 307 143 64 1212 342 54 1213 341 52 1260 373 29 1212 342 54 307 143 64 1358 284 8 11 11 10 13 13 12 9 9 8 11 11 10 1358 284 8 1025 192 11 1191 270 15 1159 269 132 1027 194 7 1191 270 15 1025 192 11 63 63 45 1252 266 85 61 61 43 65 65 47 1252 266 85 63 63 45 611 6 131 1155 361 69 1157 10 132 613 328 56 1155 361 69 611 6 131 973 310 65 1143 381 8 1142 312 61 975 379 8 1143 381 8 973 310 65 971 311 94 1142 312 61 1141 313 94 973 310 65 1142 312 61 971 311 94 969 316 152 1141 313 94 967 315 1 971 311 94 1141 313 94 969 316 152 1100 395 58 614 329 79 1136 399 96 1101 396 95 614 329 79 1100 395 58 1107 319 66 103 103 10 101 101 8 1106 323 11 103 103 10 1107 319 66 843 361 69 829 10 132 699 6 96 845 363 96 829 10 132 843 361 69 1305 43 29 1295 42 0 1256 366 0 1304 39 33 1295 42 0 1305 43 29 625 157 40 1326 156 163 1328 155 40 624 158 136 1326 156 163 625 157 40 405 241 119 401 237 118 726 336 144 403 239 106 401 237 118 405 241 119 404 240 110 645 204 100 1356 276 154 1368 275 33 645 204 100 404 240 110 1023 377 5 686 90 63 246 132 69 805 92 9 686 90 63 1023 377 5 338 168 53 342 231 61 720 334 56 340 229 94 342 231 61 338 168 53 636 132 2 1362 377 98 171 90 35 634 199 98 1362 377 98 636 132 2 729 339 27 727 337 145 919 354 107 728 338 146 727 337 145 729 339 27 1139 368 8 1310 219 61 116 369 54 1336 217 8 1310 219 61 1139 368 8 1162 371 8 115 115 69 1164 370 6 113 113 7 115 115 69 1162 371 8 1337 214 79 1182 281 55 1180 216 60 1231 279 68 1182 281 55 1337 214 79 1364 404 10 1087 305 132 98 98 8 1086 304 18 1087 305 132 1364 404 10 1363 397 8 102 102 67 1085 303 55 100 100 8 102 102 67 1363 397 8 51 51 35 1217 395 0 1219 394 32 1222 396 95 1217 395 0 51 51 35 629 194 16 1308 270 15 627 192 14 631 196 13 1308 270 15 629 194 16 850 288 12 666 289 6 472 258 8 665 42 79 666 289 6 850 288 12 543 303 55 1381 404 10 1105 397 8 545 304 60 1381 404 10 543 303 55 852 43 64 663 39 33 665 42 79 709 44 31 663 39 33 852 43 64 1115 156 159 714 158 141 712 332 139 1117 157 40 714 158 141 1115 156 159 1366 404 6 1095 305 132 179 98 8 1094 304 0 1095 305 132 1366 404 6 1365 397 8 183 102 10 1093 303 68 181 100 8 183 102 10 1365 397 8 1176 391 8 469 261 8 467 28 11 471 259 8 469 261 8 1176 391 8 1352 37 155 709 44 31 711 291 22 663 39 33 709 44 31 1352 37 155 813 100 8 1378 397 8 811 98 8 590 102 8 1378 397 8 813 100 8 831 7 6 828 9 8 963 383 8 830 8 15 828 9 8 831 7 6 20 20 10 1274 257 12 1070 259 8 18 18 14 1274 257 12 20 20 10 470 260 10 660 290 94 468 262 10 662 40 64 660 290 94 470 260 10 311 147 21 1334 375 21 1261 374 19 313 149 102 1334 375 21 311 147 21 74 74 53 70 70 50 118 118 70 72 72 21 70 70 50 74 74 53 869 342 53 1285 376 54 1282 344 58 871 374 30 1285 376 54 869 342 53 1067 262 120 999 260 120 998 290 113 1068 261 8 999 260 120 1067 262 120 1066 263 52 30 30 19 28 28 17 32 32 21 30 30 19 1066 263 52 275 71 34 271 70 107 273 72 29 523 35 109 877 34 73 521 36 51 376 167 60 372 181 64 374 228 30 241 196 98 483 271 65 481 270 67 272 74 30 1239 75 69 274 73 15 519 290 94 435 262 67 433 260 16 1053 77 65 1055 295 8 1238 294 8 601 110 13 1319 114 15 1321 112 17 1056 297 14 1208 348 7 1058 347 67 1237 231 12 276 213 96 274 73 15 431 258 8 429 256 120 515 287 11 1053 77 65 696 76 80 1051 78 79 910 378 15 244 199 5 909 380 15 1302 312 58 911 381 8 238 193 67 25 25 8 27 27 13 1065 222 68 901 198 5 899 247 78 951 272 55 901 198 5 903 199 9 902 200 3 384 71 51 450 69 124 385 70 114 304 140 54 302 138 52 774 245 64 6 6 4 4 4 4 1342 327 69 14 14 7 1005 256 67 16 16 10 117 117 40 1275 212 40 119 119 71 988 208 93 986 234 124 987 277 85 988 208 93 123 123 36 1246 209 122 536 79 132 534 77 65 1249 78 2 278 76 53 280 122 31 282 80 52 905 378 6 903 199 9 947 380 15 818 241 119 816 337 147 817 338 148 771 339 108 772 340 32 773 243 31 298 134 57 302 138 52 300 136 0 301 137 56 900 273 2 299 135 69 787 244 31 796 242 27 785 243 152 1029 196 99 1191 270 15 1027 194 7 382 231 54 378 168 58 380 229 94 379 164 31 446 265 111 381 230 108 447 266 44 449 67 123 448 267 122 1177 24 8 1324 22 8 1178 20 8 783 339 151 792 354 107 781 351 128 822 204 72 820 240 108 821 275 83 957 238 122 958 276 155 959 206 43 121 121 73 1276 211 104 1245 210 161 719 170 56 533 295 3 1240 346 3 387 119 105 389 212 40 1258 211 143 719 170 56 897 171 60 718 169 95 345 71 84 343 213 35 341 230 36 296 132 96 297 133 58 299 135 69 310 146 111 308 144 35 770 352 101 1021 208 70 281 123 110 1228 209 115 775 244 76 819 242 27 773 243 31 536 79 132 540 300 96 538 298 65 199 154 88 981 332 139 980 386 23 140 140 57 144 144 32 142 142 80 140 140 57 138 138 57 786 245 29 82 82 59 126 126 59 84 84 57 315 216 68 1226 281 66 824 355 6 1001 258 14 1005 256 67 1003 287 11 983 291 156 35 35 24 37 37 26 637 135 69 633 198 5 635 200 96 1004 286 17 1046 365 132 1002 288 11 391 121 84 395 210 116 393 209 115 795 241 119 793 337 41 794 338 146 783 339 151 784 340 34 785 243 152 416 247 56 1146 273 79 414 137 1 410 138 18 1148 274 29 408 244 34 983 291 156 981 332 139 1071 333 138 53 53 37 1218 393 35 1335 392 23 163 82 53 841 126 29 165 84 52 379 164 31 377 166 94 375 165 63 818 241 119 820 240 108 956 239 119 373 227 31 442 264 72 375 165 63 134 134 52 138 138 57 136 136 60 1123 53 101 1278 55 103 1234 54 160 1112 50 84 1110 51 29 1235 52 154 45 45 30 1354 330 52 47 47 30 1064 224 34 1062 227 76 1132 226 32 391 121 84 157 76 18 1259 120 37 637 135 69 639 134 57 1147 136 60 867 248 58 1353 249 56 865 247 69 146 146 82 150 150 86 148 148 84 941 238 85 985 236 133 939 237 147 204 159 91 64 64 46 62 62 44 1112 50 84 1114 154 48 1113 386 73 795 241 119 797 240 108 940 239 85 706 47 64 1111 49 81 708 48 83 715 160 45 711 291 22 713 333 45 511 12 120 509 11 8 1157 10 132 1161 254 79 1160 253 13 1343 252 96 787 244 31 788 274 30 789 202 20 1171 24 8 1297 22 12 1172 20 8 799 204 127 797 240 108 798 275 127 607 7 6 1300 383 8 605 325 8 129 129 76 800 203 75 789 202 20 847 286 6 1263 285 15 845 363 96 134 134 52 130 130 77 790 201 19 73 73 52 1346 213 62 71 71 51 712 332 139 710 331 37 708 48 83 834 356 56 1331 399 68 700 4 55 218 173 79 222 177 29 1355 372 53 643 202 34 639 134 57 641 201 97 382 231 54 154 73 52 1187 294 2 384 71 51 383 213 113 381 230 108 529 64 90 531 293 40 873 66 40 622 332 135 620 48 101 1338 386 109 1029 196 99 863 198 68 1188 272 132 799 204 127 127 127 34 944 205 37 667 315 3 561 314 8 886 368 8 125 125 75 989 207 27 943 206 26 410 138 18 412 139 1 414 137 1 146 146 82 144 144 32 782 352 100 1379 385 147 1329 153 40 1327 154 136 674 102 8 1104 100 8 672 101 8 1106 323 11 110 110 13 1380 322 15 350 119 105 352 212 40 722 211 143 330 225 0 332 181 19 1330 405 69 345 71 84 453 69 49 347 70 50 682 110 13 1306 114 9 1307 112 6 339 164 34 457 265 108 341 230 36 631 196 13 1309 271 65 1308 270 15 456 266 126 454 67 125 455 267 93 339 164 34 337 166 63 335 165 76 333 227 35 461 264 108 335 165 76 1118 323 8 191 110 7 1382 322 11 723 210 144 724 233 40 1227 232 128 310 146 111 314 150 112 312 148 26 957 238 122 1018 236 47 955 237 147 941 238 85 942 276 84 943 206 26 775 244 76 776 274 29 777 202 76 160 79 3 1384 296 98 158 77 66 291 129 20 823 203 152 777 202 76 298 134 57 293 130 54 778 201 64 822 204 72 287 127 76 960 205 127 79 79 3 1387 296 55 77 77 55 285 125 34 1022 207 25 959 206 43 1021 208 70 1019 234 117 1020 277 70 771 339 108 815 354 50 769 351 128 370 225 79 372 181 64 1323 405 79 304 140 54 308 144 35 306 142 53 539 299 5 1390 348 9 537 297 98 482 253 10 580 255 120 1317 387 14 849 366 0 844 362 69 1391 400 58

+
+
+
+ + + + 27105 -819 0 27105 15596 0 25778 -819 8376 25778 15596 8376 21928 -819 15932 21928 15596 15932 15932 -819 21928 15932 15596 21928 8376 -819 25778 8376 15596 25778 0 -819 27105 0 15596 26500 -8376 -819 25778 -8376 15596 25778 -15932 -819 21928 -15576 15596 21439 -21928 -819 15932 -21928 15596 15932 -25778 -819 8376 -25203 15596 8189 -27105 -819 0 -27105 15596 0 -25778 -819 -8376 -25203 15596 -8189 -21928 -819 -15932 -21928 15596 -15932 -15932 -819 -21928 -15932 15596 -21928 -8376 -819 -25778 -8376 15596 -25778 -8007 19122 24643 0 19122 25539 6744 19122 24144 0 25709 17935 4644 25709 18779 3063 30266 9429 8020 30266 5827 0 31837 0 9914 30266 0 8020 30266 -5827 18858 25709 0 15256 25709 -11084 25956 18611 0 20998 18611 -15256 21928 15596 -15932 8020 18611 -24685 8376 15596 -25778 -8020 18611 -24685 -20878 19122 -13875 -24289 19122 -7892 -25911 19122 0 -17057 25709 -5542 -17957 25709 0 -9914 30266 0 -17057 25709 5542 -24289 19122 7892 -20963 19122 15230 -14528 25709 10555 -8020 30266 5827 -10542 25709 14509 -15011 19122 20661 -5549 25709 17078 -3063 30266 9429 -8020 30266 -5827 -16424 25709 -10220 -5827 25709 -17935 27105 -10160 0 21928 -10160 15932 0 -10160 0 8376 -10160 25778 -8376 -10160 25778 -21928 -10160 15932 -27075 -10160 0 -21928 -10160 -15932 20998 18611 15256 15256 25709 11084 5827 25709 -17935 -3063 30266 -9429 3063 30266 -9429 -8366 -10160 -25750 21904 -10160 -15914 8366 -10160 -25750 + + + + + + + + + + 4.67578125 0.26171875 4.67578125 0.982421875 4.4921875 0.26171875 4.4921875 0.982421875 4.310546875 0.26171875 4.310546875 0.982421875 4.126953125 0.26171875 4.126953125 0.982421875 3.943359375 0.26171875 3.943359375 0.982421875 3.76171875 0.26171875 3.76171875 0.982421875 3.578125 0.26171875 3.578125 0.982421875 3.39453125 0.26171875 3.39453125 0.982421875 3.212890625 0.26171875 3.212890625 0.982421875 3.029296875 0.26171875 3.029296875 0.982421875 2.845703125 0.26171875 2.845703125 0.982421875 2.6640625 0.26171875 2.6640625 0.982421875 2.48046875 0.26171875 2.48046875 0.982421875 2.296875 0.26171875 2.296875 0.982421875 2.115234375 0.26171875 2.115234375 0.982421875 0.349609375 0.0078125 0.3984375 0.0078125 0.44921875 0.0078125 0.498046875 0.0078125 0.599609375 0.0078125 0.69921875 0.0078125 0.798828125 0.0078125 0.8984375 0.0078125 0.998046875 0.0078125 0.048828125 0.0078125 0.099609375 0.0078125 0.1484375 0.0078125 0.19921875 0.0078125 0.248046875 0.0078125 0.298828125 0.0078125 0 0.0078125 0.6484375 0.0078125 0.548828125 0.0078125 + + + + + + + + + 1 1 1 1 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 0 1 1 0 0 0 0 3 3 0 1 1 0 2 2 0 4 4 0 3 3 0 2 2 0 5 5 0 3 3 0 4 4 0 6 6 0 5 5 0 4 4 0 7 7 0 5 5 0 6 6 0 8 8 0 7 7 0 6 6 0 9 9 0 7 7 0 8 8 0 10 10 0 9 9 0 8 8 0 11 11 0 9 9 0 10 10 0 12 12 0 11 11 0 10 10 0 13 13 0 11 11 0 12 12 0 14 14 0 13 13 0 12 12 0 15 15 0 13 13 0 14 14 0 16 16 0 15 15 0 14 14 0 17 17 0 15 15 0 16 16 0 18 18 0 17 17 0 16 16 0 19 19 0 17 17 0 18 18 0 20 20 0 19 19 0 18 18 0 21 21 0 19 19 0 20 20 0 22 22 0 21 21 0 20 20 0 23 23 0 21 21 0 22 22 0 24 24 0 23 23 0 22 22 0 25 25 0 23 23 0 24 24 0 26 26 0 25 25 0 24 24 0 27 27 0 25 25 0 26 26 0 28 28 0 27 27 0 26 26 0 29 29 0 27 27 0 28 28 0 30 31 0 13 31 0 15 30 0 11 32 0 13 31 0 30 31 0 31 32 0 11 32 0 30 31 0 32 33 0 11 32 0 31 32 0 33 32 0 32 33 0 31 32 0 34 33 0 32 33 0 33 32 0 35 33 0 34 33 0 33 32 0 36 34 0 34 33 0 35 33 0 37 32 0 36 34 0 35 33 0 38 35 0 36 34 0 37 32 0 39 36 0 38 35 0 37 32 0 40 35 0 38 35 0 39 36 0 41 36 0 40 35 0 39 36 0 42 35 0 40 35 0 41 36 0 43 36 0 42 35 0 41 36 0 44 36 0 42 35 0 43 36 0 45 37 0 44 36 0 43 36 0 46 37 0 44 36 0 45 37 0 47 38 0 46 37 0 45 37 0 29 38 0 46 37 0 47 38 0 48 40 0 25 40 0 27 39 0 23 41 0 25 40 0 48 40 0 49 41 0 23 41 0 48 40 0 50 42 0 23 41 0 49 41 0 51 41 0 50 42 0 49 41 0 52 42 0 50 42 0 51 41 0 53 42 0 52 42 0 51 41 0 54 43 0 52 42 0 53 42 0 50 42 0 21 42 0 23 41 0 19 43 0 21 42 0 50 42 0 55 43 0 19 43 0 50 42 0 56 44 0 19 43 0 55 43 0 54 43 0 56 44 0 55 43 0 57 44 0 56 44 0 54 43 0 58 44 0 57 44 0 54 43 0 59 30 0 57 44 0 58 44 0 56 44 0 17 44 0 19 43 0 15 30 0 17 44 0 56 44 0 60 30 0 15 30 0 56 44 0 30 31 0 15 30 0 60 30 0 59 30 0 30 31 0 60 30 0 61 31 0 30 31 0 59 30 0 62 31 0 61 31 0 59 30 0 33 32 0 61 31 0 62 31 0 58 44 0 62 31 0 59 30 0 37 32 0 62 31 0 58 44 0 53 42 0 37 32 0 58 44 0 63 40 0 37 32 0 53 42 0 64 40 0 63 40 0 53 42 0 65 45 0 63 40 0 64 40 0 47 45 0 65 45 0 64 40 0 66 35 0 2 46 0 0 35 0 67 34 0 2 46 0 66 35 0 68 32 0 67 34 0 66 35 0 69 33 0 67 34 0 68 32 0 70 31 0 69 33 0 68 32 0 10 32 0 69 33 0 70 31 0 12 31 0 10 32 0 70 31 0 70 31 0 14 30 0 12 31 0 71 44 0 14 30 0 70 31 0 68 32 0 71 44 0 70 31 0 72 42 0 71 44 0 68 32 0 73 40 0 72 42 0 68 32 0 22 41 0 72 42 0 73 40 0 24 40 0 22 41 0 73 40 0 67 34 0 4 34 0 2 46 0 6 47 0 4 34 0 67 34 0 69 33 0 6 47 0 67 34 0 8 33 0 6 47 0 69 33 0 10 32 0 8 33 0 69 33 0 47 45 0 27 39 0 29 45 0 48 40 0 27 39 0 47 45 0 64 40 0 48 40 0 47 45 0 51 41 0 48 40 0 64 40 0 53 42 0 51 41 0 64 40 0 32 33 0 9 33 0 11 32 0 7 47 0 9 33 0 32 33 0 74 34 0 7 47 0 32 33 0 5 34 0 7 47 0 74 34 0 3 46 0 5 34 0 74 34 0 74 34 0 42 35 0 3 46 0 40 35 0 42 35 0 74 34 0 75 34 0 40 35 0 74 34 0 38 35 0 40 35 0 75 34 0 36 34 0 38 35 0 75 34 0 45 37 0 65 38 0 47 38 0 76 37 0 65 38 0 45 37 0 43 36 0 76 37 0 45 37 0 41 36 0 76 37 0 43 36 0 76 37 0 77 38 0 65 38 0 78 37 0 77 38 0 76 37 0 41 36 0 78 37 0 76 37 0 39 36 0 78 37 0 41 36 0 73 40 0 26 39 0 24 40 0 79 45 0 26 39 0 73 40 0 68 32 0 79 45 0 73 40 0 75 34 0 34 33 0 36 34 0 32 33 0 34 33 0 75 34 0 74 34 0 32 33 0 75 34 0 20 42 0 72 42 0 22 41 0 18 43 0 72 42 0 20 42 0 18 43 0 71 44 0 72 42 0 16 44 0 71 44 0 18 43 0 63 40 0 77 45 0 37 32 0 65 45 0 77 45 0 63 40 0 80 36 0 68 32 0 66 35 0 81 37 0 68 32 0 80 36 0 35 33 0 62 31 0 37 32 0 33 32 0 62 31 0 35 33 0 1 35 0 42 35 0 44 36 0 3 46 0 42 35 0 1 35 0 78 37 0 37 32 0 77 38 0 39 36 0 37 32 0 78 37 0 30 31 0 33 32 0 31 32 0 61 31 0 33 32 0 30 31 0 56 44 0 59 30 0 60 30 0 57 44 0 59 30 0 56 44 0 50 42 0 54 43 0 55 43 0 52 42 0 54 43 0 50 42 0 54 43 0 53 42 0 58 44 0 71 44 0 16 44 0 14 30 0 79 45 0 28 45 0 26 39 0 79 38 0 68 32 0 81 37 0 51 41 0 49 41 0 48 40 0

+
+
+
+ + + + 15053 -6789 0 15053 -2479 0 14317 -6789 4651 14317 -2479 4651 12178 -6789 8848 12178 -2479 8848 8848 -6789 12178 8848 -2479 12178 4651 -6789 14317 4651 -2479 14317 0 -6789 15053 0 -2479 15053 -4651 -6789 14317 -4651 -2479 14317 -8848 -6789 12178 -8848 -2479 12178 -12178 -6789 8848 -12178 -2479 8848 -14317 -6789 4651 -14317 -2479 4651 -15053 -6789 0 -15053 -2479 0 -14317 -6789 -4651 -14317 -2479 -4651 -12178 -6789 -8848 -12178 -2479 -8848 -8848 -6789 -12178 -8848 -2479 -12178 -4651 -6789 -14317 -4651 -2479 -14317 12178 7551 8848 8848 7551 12178 4651 7551 14317 0 7551 15053 -4651 7551 14317 -8848 7551 12178 -12178 7551 8848 -14317 7551 4651 -15053 7551 0 -14317 7551 -4651 -12178 7551 -8848 -8848 7551 -12178 -4651 7551 -14317 15053 7551 0 14317 7551 4651 + + + + + + + + + + 3.830078125 0 3.830078125 0.25 3.6640625 0 3.6640625 0.25 3.5 0 3.5 0.25 3.333984375 0 3.333984375 0.25 3.169921875 0 3.169921875 0.25 3.00390625 0 3.00390625 0.25 2.83984375 0 2.83984375 0.25 2.673828125 0 2.673828125 0.25 2.509765625 0 2.509765625 0.25 2.34375 0 2.34375 0.25 2.177734375 0 2.177734375 0.25 2.013671875 0 2.013671875 0.25 1.84765625 0 1.84765625 0.25 1.68359375 0 1.68359375 0.25 1.517578125 0 1.517578125 0.25 3.5 1 3.333984375 1 3.169921875 1 3.00390625 1 2.83984375 1 2.673828125 1 2.509765625 1 2.34375 1 2.177734375 1 2.013671875 1 1.84765625 1 1.68359375 1 1.517578125 1 3.830078125 1 3.6640625 1 + + + + + + + + + 1 1 1 1 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 0 1 1 0 0 0 0 3 3 0 1 1 0 2 2 0 4 4 0 3 3 0 2 2 0 5 5 0 3 3 0 4 4 0 6 6 0 5 5 0 4 4 0 7 7 0 5 5 0 6 6 0 8 8 0 7 7 0 6 6 0 9 9 0 7 7 0 8 8 0 10 10 0 9 9 0 8 8 0 11 11 0 9 9 0 10 10 0 12 12 0 11 11 0 10 10 0 13 13 0 11 11 0 12 12 0 14 14 0 13 13 0 12 12 0 15 15 0 13 13 0 14 14 0 16 16 0 15 15 0 14 14 0 17 17 0 15 15 0 16 16 0 18 18 0 17 17 0 16 16 0 19 19 0 17 17 0 18 18 0 20 20 0 19 19 0 18 18 0 21 21 0 19 19 0 20 20 0 22 22 0 21 21 0 20 20 0 23 23 0 21 21 0 22 22 0 24 24 0 23 23 0 22 22 0 25 25 0 23 23 0 24 24 0 26 26 0 25 25 0 24 24 0 27 27 0 25 25 0 26 26 0 28 28 0 27 27 0 26 26 0 29 29 0 27 27 0 28 28 0 5 5 0 30 30 0 3 3 0 31 31 0 30 30 0 5 5 0 7 7 0 31 31 0 5 5 0 32 32 0 31 31 0 7 7 0 9 9 0 32 32 0 7 7 0 33 33 0 32 32 0 9 9 0 11 11 0 33 33 0 9 9 0 34 34 0 33 33 0 11 11 0 13 13 0 34 34 0 11 11 0 35 35 0 34 34 0 13 13 0 15 15 0 35 35 0 13 13 0 36 36 0 35 35 0 15 15 0 17 17 0 36 36 0 15 15 0 37 37 0 36 36 0 17 17 0 19 19 0 37 37 0 17 17 0 38 38 0 37 37 0 19 19 0 21 21 0 38 38 0 19 19 0 39 39 0 38 38 0 21 21 0 23 23 0 39 39 0 21 21 0 40 40 0 39 39 0 23 23 0 25 25 0 40 40 0 23 23 0 41 41 0 40 40 0 25 25 0 27 27 0 41 41 0 25 25 0 42 42 0 41 41 0 27 27 0 29 29 0 42 42 0 27 27 0 3 3 0 43 43 0 1 1 0 44 44 0 43 43 0 3 3 0 30 30 0 44 44 0 3 3 0

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/Assets/Models/Garden - SMG/AstroDomeTower.dae.meta b/Assets/Models/Garden - SMG/AstroDomeTower.dae.meta new file mode 100644 index 0000000..b016afb --- /dev/null +++ b/Assets/Models/Garden - SMG/AstroDomeTower.dae.meta @@ -0,0 +1,162 @@ +fileFormatVersion: 2 +guid: cae085d13537bd24284ac549e6c37828 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: CliffMat_v + second: {fileID: 2100000, guid: e99143a7f713d1a42aa7a9130197b541, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: CloudMat_v + second: {fileID: 2100000, guid: 6f116ff23d8c974469133c33fc12d82b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: DGrass00_v + second: {fileID: 2100000, guid: d27a82d37e1e49a4fab9ed22f17bcb9c, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: FlowerP_v + second: {fileID: 2100000, guid: 30e9eaa8ea9e7494497b95d036d7c87e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: FlowerW_v + second: {fileID: 2100000, guid: 8f626637a430f284f96a5c13f845ef06, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: FlowerY_v + second: {fileID: 2100000, guid: bb65c5a4b2b477442a9ab4299ccb6e5b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: GrassMat_v + second: {fileID: 2100000, guid: 5f9a6eda778c40748b7f562ab1483fee, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: GroundMat_v + second: {fileID: 2100000, guid: 2961d61165ad3254b867651d3947b3ce, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: MoutainMat_v + second: {fileID: 2100000, guid: 7bb1cfa3baf8a4243ba622593f2036d9, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: NearCloud_v + second: {fileID: 2100000, guid: 1201c15f6e1cc9646ad8089c07fc2b58, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: RockMat_v + second: {fileID: 2100000, guid: 0460fdc681cf0c04480238b630c299a1, type: 2} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 1 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 1 + tangentImportMode: 3 + normalCalculationMode: 2 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/AstroDomeTower_bake.dae b/Assets/Models/Garden - SMG/AstroDomeTower_bake.dae new file mode 100644 index 0000000..7704230 --- /dev/null +++ b/Assets/Models/Garden - SMG/AstroDomeTower_bake.dae @@ -0,0 +1,1297 @@ + + + + + J3D Ripoff Exporter + + 2023-06-09T15:32:57.194Z + 2023-06-09T15:32:57.194Z + + Y_UP + + + + MAP0048.png + + + HighLandCloud01S.png + + + Mountain.png + + + Ground00.png + + + Grass0009k.png + + + yellowhanataba.png + + + whitetaba.png + + + parplehanataba.png + + + puffleaf.png + + + HighLandCloud02L.png + + + MAP0000k.png + + + vertexColors.png + + + + + + + + tex10 + + + + + surface0 + + + + + + + + + + + + + + + + tex9 + + + + + surface1 + + + + + + + + + + + + + + + + tex8 + + + + + surface2 + + + + + + + + + + + + + + + + tex7 + + + + + surface3 + + + + + + + + + + + + + + + + tex6 + + + + + surface4 + + + + + + + + + + + + + + + + tex5 + + + + + surface5 + + + + + + + + + + + + + + + + tex4 + + + + + surface6 + + + + + + + + + + + + + + + + tex3 + + + + + surface7 + + + + + + + + + + + + + + + + tex2 + + + + + surface8 + + + + + + + + + + + + + + + + tex1 + + + + + surface9 + + + + + + + + + + + + + + + + tex0 + + + + + surface10 + + + + + + + + + + + + + + + + tex_vc + + + + + surface_vc + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -262 5 -949 -262 4 -947 -258 18 -952 -258 18 -951 -255 26 -954 -255 25 -953 -251 31 -955 -251 30 -955 -246 36 -957 -247 35 -958 -242 39 -959 -243 38 -960 -237 40 -961 -237 40 -963 -231 39 -964 -231 39 -965 -226 38 -967 -226 39 -968 -260 5 -947 -263 4 -949 -259 18 -953 -261 18 -955 -258 25 -957 -260 25 -959 -257 31 -962 -259 32 -963 -256 36 -968 -257 37 -968 -254 40 -973 -254 41 -973 -251 42 -979 -251 43 -978 -247 43 -984 -247 44 -983 -243 43 -989 -242 44 -988 -275 2 -961 -274 1 -960 -273 14 -963 -272 14 -962 -270 21 -964 -270 20 -964 -266 27 -966 -267 25 -967 -263 31 -968 -263 30 -969 -258 34 -971 -259 33 -972 -254 35 -974 -255 35 -975 -250 35 -977 -250 35 -978 -246 34 -980 -246 35 -981 -948 2 -35 -947 1 -34 -947 14 -37 -946 13 -37 -945 21 -39 -944 20 -39 -942 26 -41 -942 25 -42 -939 30 -45 -940 30 -46 -936 33 -49 -937 33 -50 -932 35 -53 -934 35 -54 -929 35 -57 -930 35 -58 -926 34 -61 -926 34 -62 -894 5 20 -895 5 22 -890 19 18 -890 18 20 -886 26 19 -886 25 19 -882 32 19 -882 31 18 -877 36 19 -877 35 18 -872 40 19 -872 39 17 -866 41 19 -866 40 17 -860 40 18 -860 40 17 -854 38 18 -854 39 17 -894 8 -225 -896 7 -225 -891 21 -222 -892 21 -221 -889 28 -218 -890 28 -219 -888 34 -214 -887 33 -215 -886 39 -210 -885 38 -211 -883 42 -206 -882 41 -207 -881 43 -201 -879 43 -202 -878 42 -195 -876 42 -196 -875 41 -190 -874 42 -191 -61 -7 -991 -60 -8 -990 -61 6 -994 -59 5 -993 -58 13 -996 -58 12 -995 -55 20 -998 -56 19 -998 -53 25 -1001 -54 24 -1002 -50 29 -1004 -51 28 -1005 -47 30 -1009 -48 30 -1010 -43 30 -1014 -44 31 -1015 -40 30 -1019 -41 31 -1020 -59 -7 -990 -62 -8 -991 -64 5 -995 -63 13 -997 -66 13 -998 -65 20 -1001 -67 20 -1001 -66 25 -1006 -67 26 -1005 -67 29 -1011 -68 31 -1010 -68 33 -1017 -68 34 -1016 -67 35 -1023 -67 36 -1022 -66 36 -1029 -65 37 -1029 818 -2 352 820 -2 352 817 12 349 818 11 349 816 19 346 817 18 346 816 25 342 815 24 343 814 30 338 813 29 339 812 34 334 811 33 335 809 35 330 808 35 330 806 35 324 805 36 325 802 35 320 801 35 320 820 -2 351 818 -2 353 816 12 350 815 11 353 813 19 350 812 19 352 810 26 350 809 27 352 805 32 349 805 33 350 800 36 348 800 38 349 795 40 346 795 41 346 789 42 343 790 43 343 784 43 340 785 44 339 807 -3 367 808 -4 366 808 9 365 808 8 364 807 16 363 807 15 363 806 22 359 805 21 360 804 26 356 803 26 357 802 30 353 800 30 354 798 32 349 797 32 350 795 33 345 794 33 346 791 33 341 668 0 634 670 0 633 663 13 633 664 13 631 660 20 630 660 19 630 656 26 627 656 25 628 652 31 625 652 30 626 648 33 622 647 33 624 643 34 619 642 34 620 638 33 616 637 33 617 633 32 613 632 32 613 669 0 632 669 0 635 662 13 634 662 13 636 658 20 635 658 20 638 653 26 637 654 26 639 648 31 638 648 32 640 642 34 640 642 35 640 636 36 640 636 37 640 629 37 640 630 38 639 623 37 639 623 38 638 665 -2 651 666 -3 650 662 10 651 662 9 649 659 16 649 659 15 649 656 21 647 655 20 647 651 25 645 651 24 646 647 28 643 646 27 644 642 29 641 641 29 642 637 29 639 636 29 640 632 28 637 -78 -10 -996 -77 -11 -995 -78 2 -997 -77 1 -997 -76 9 -998 -76 8 -998 -74 15 -1000 -75 13 -1001 -72 19 -1004 -74 18 -1004 -70 23 -1008 -72 22 -1008 -68 25 -1012 -70 25 -1013 -66 26 -1017 -67 26 -1018 -64 26 -1022 -719 0 590 -721 -1 591 -714 12 589 -715 12 590 -710 19 590 -711 18 590 -706 25 591 -706 24 590 -701 29 592 -701 28 591 -696 32 593 -696 32 591 -691 33 594 -690 33 592 -684 32 595 -684 32 594 -679 31 596 -678 31 595 -720 0 592 -720 -1 589 -714 12 588 -715 11 585 -711 19 585 -712 19 582 -707 25 581 -708 25 580 -703 29 578 -704 30 577 -698 33 574 -698 34 574 -692 35 571 -692 36 572 -686 36 569 -686 37 570 -680 36 568 -680 36 569 -723 -3 572 -723 -4 574 -720 8 572 -720 7 573 -717 15 573 -717 14 572 -713 20 573 -713 19 572 -708 24 574 -708 23 572 -703 27 574 -703 26 572 -698 28 573 -698 28 572 -693 28 573 -692 28 572 -687 27 574 -687 27 573 -897 8 -169 -899 8 -168 -892 22 -167 -893 21 -166 -889 29 -165 -890 28 -165 -886 35 -162 -886 34 -163 -882 40 -159 -882 39 -161 -878 43 -157 -877 42 -158 -874 44 -153 -873 43 -155 -868 43 -150 -868 43 -151 -863 42 -147 -300 2 -970 -299 2 -969 -300 16 -975 -299 15 -974 -299 23 -979 -299 22 -978 -297 29 -982 -298 28 -982 -295 34 -987 -296 33 -987 -294 37 -991 -295 36 -992 -292 38 -997 -293 37 -997 -290 37 -1003 -291 37 -1003 -288 36 -1008 -289 36 -1009 893 1 -149 895 0 -150 891 15 -150 891 14 -152 889 23 -153 889 22 -153 886 29 -155 886 28 -155 882 34 -158 882 33 -156 878 37 -160 878 37 -158 873 39 -162 872 39 -160 867 39 -164 866 39 -163 861 38 -166 861 39 -165 894 1 -151 894 0 -148 891 15 -149 891 15 -147 888 23 -148 889 23 -145 885 30 -146 886 30 -144 881 36 -144 882 36 -143 876 40 -141 877 41 -141 871 43 -140 872 45 -140 865 46 -139 865 47 -140 859 47 -139 859 48 -140 894 0 -131 894 0 -132 893 13 -132 893 12 -133 891 20 -134 891 19 -134 889 25 -136 888 24 -135 885 30 -138 884 29 -136 881 34 -139 880 33 -137 876 36 -140 875 36 -139 870 36 -141 870 37 -140 865 36 -142 865 37 -141 205 2 -885 203 1 -887 203 16 -883 202 15 -884 200 23 -881 200 22 -881 197 29 -879 198 28 -878 194 34 -875 196 33 -875 192 38 -872 193 37 -871 189 40 -867 190 39 -866 186 39 -861 187 40 -861 183 39 -856 184 40 -855 202 1 -886 205 1 -886 204 16 -883 206 15 -882 205 24 -880 207 23 -880 207 30 -877 208 31 -877 208 36 -872 209 37 -873 210 41 -867 210 42 -868 210 44 -862 210 45 -862 210 46 -856 209 47 -856 209 48 -849 209 48 -850 505 9 782 506 9 784 508 19 776 509 19 777 511 25 772 511 24 773 514 29 769 513 28 769 517 32 765 516 31 764 520 34 761 519 33 760 524 33 757 522 33 756 527 31 753 526 32 752 530 29 749 530 30 749 507 9 783 505 8 783 507 19 775 505 19 775 507 25 770 505 25 770 506 29 765 505 29 765 506 32 759 505 33 760 505 34 754 505 35 754 506 35 748 506 36 748 507 35 742 508 36 742 509 33 737 509 34 737 490 7 778 491 6 779 492 17 773 493 16 774 494 22 770 494 21 770 497 26 767 497 25 766 500 29 763 499 28 762 502 30 758 501 29 758 504 30 754 503 30 753 507 29 750 506 29 749 509 27 747 508 28 746 808 0 -576 807 0 -574 813 13 -576 812 13 -575 816 21 -575 816 20 -575 820 27 -574 820 26 -574 825 31 -572 825 30 -574 830 34 -571 830 33 -573 835 35 -570 836 35 -572 841 34 -569 842 35 -570 847 33 -568 848 34 -568 808 0 -574 807 0 -576 813 13 -577 812 13 -580 816 21 -580 815 20 -583 820 27 -583 819 27 -585 824 31 -587 823 32 -588 829 35 -590 829 36 -590 835 37 -593 835 39 -592 841 38 -594 841 39 -594 847 38 -595 847 39 -595 805 -2 -593 805 -3 -592 808 10 -594 808 9 -593 811 16 -593 811 15 -593 815 22 -592 815 21 -593 819 26 -591 819 25 -593 824 29 -591 824 28 -593 829 30 -591 830 30 -592 835 30 -591 835 30 -592 840 29 -590 840 30 -591 222 1 -883 221 0 -883 221 13 -882 220 12 -882 219 20 -881 219 19 -880 216 26 -879 217 25 -878 214 31 -875 216 30 -874 213 34 -871 214 34 -870 211 36 -866 212 36 -866 209 37 -861 210 38 -861 207 37 -856 208 37 -856 -298 3 -970 -301 2 -970 -301 16 -975 -304 15 -975 -304 23 -979 -306 23 -978 -307 29 -983 -308 29 -982 -309 34 -988 -310 35 -987 -312 37 -993 -312 39 -992 -314 39 -999 -314 41 -999 -315 41 -1005 -314 42 -1005 -315 41 -1012 -315 42 -1012 -318 0 -969 -317 0 -969 -318 12 -972 -317 11 -972 -317 19 -975 -317 18 -975 -316 24 -979 -316 23 -979 -315 28 -983 -316 27 -983 -314 31 -988 -315 31 -988 -313 33 -993 -315 32 -994 -312 33 -998 -313 33 -999 -311 32 -1004 -312 32 -1004 -898 9 -167 -898 8 -170 -892 22 -168 -892 21 -171 -888 29 -170 -888 29 -172 -883 35 -171 -883 35 -173 -878 40 -173 -878 41 -174 -872 43 -174 -873 45 -175 -866 45 -175 -866 47 -174 -859 47 -174 -860 48 -173 -853 47 -173 -853 48 -172 -887 0 514 -885 -1 512 -892 12 515 -891 12 513 -896 19 514 -895 18 513 -900 25 512 -900 24 513 -905 29 511 -905 28 513 -910 32 510 -910 32 512 -915 33 509 -916 33 511 -921 32 508 -922 32 509 -927 31 507 -927 31 508 -886 0 512 -886 -1 515 -892 12 516 -891 11 518 -895 19 519 -894 19 521 -899 25 522 -898 25 524 -903 29 526 -903 30 526 -909 33 529 -908 34 529 -914 35 532 -914 36 532 -920 36 534 -920 37 533 -927 36 535 -927 36 534 -883 -3 531 -883 -4 530 -886 8 532 -886 7 531 -889 15 531 -890 14 531 -893 20 530 -894 19 531 -898 24 530 -898 23 531 -903 27 530 -903 26 532 -908 28 530 -909 28 532 -914 28 530 -914 28 531 -919 27 530 -893 6 -186 -894 5 -185 -891 18 -185 -891 17 -184 -888 25 -183 -888 24 -183 -885 30 -181 -884 29 -182 -881 34 -179 -880 33 -180 -876 37 -177 -876 37 -178 -872 39 -175 -871 38 -176 -867 39 -173 -866 39 -174 -862 38 -171 474 4 777 476 4 778 472 17 772 474 17 773 472 24 768 473 23 769 473 30 764 472 29 764 473 34 759 472 33 759 473 37 754 471 37 754 473 38 748 472 38 748 473 37 742 472 37 742 473 36 736 472 36 736 476 4 777 473 3 778 471 17 773 469 17 774 467 24 770 465 24 771 464 30 767 462 30 768 459 35 763 459 36 764 455 38 758 455 39 759 451 40 753 452 41 754 448 41 748 449 42 748 446 41 742 447 41 741 457 1 784 459 0 784 456 13 781 457 13 780 456 20 778 456 19 777 456 25 773 455 24 773 456 29 769 454 28 769 455 32 764 453 31 764 454 33 759 453 33 759 453 33 753 452 33 753 453 32 748 452 32 748 -896 8 -224 -894 7 -226 -890 21 -223 -888 21 -225 -886 28 -222 -884 28 -224 -881 34 -221 -880 35 -223 -875 39 -220 -875 40 -221 -869 42 -218 -870 44 -219 -864 45 -216 -864 46 -216 -858 46 -212 -859 47 -212 -854 46 -208 -854 47 -208 -883 5 -239 -884 4 -238 -881 17 -237 -881 16 -236 -879 24 -234 -879 23 -234 -878 29 -231 -877 28 -231 -875 34 -227 -874 33 -228 -872 37 -223 -871 36 -224 -869 38 -219 -867 38 -220 -865 38 -215 -864 38 -215 -862 37 -211 -862 38 -211 -894 5 22 -895 5 20 -890 19 17 -891 18 15 -888 26 14 -889 25 12 -885 32 10 -886 32 8 -882 37 5 -883 38 5 -877 40 1 -878 41 1 -873 42 -2 -873 44 -2 -867 43 -5 -867 45 -5 -861 44 -8 -861 44 -7 702 -1 -644 704 -2 -645 698 11 -646 699 11 -647 695 18 -649 696 17 -649 692 24 -652 692 23 -652 689 29 -656 688 28 -654 685 32 -659 684 31 -658 681 33 -663 680 33 -662 676 32 -667 675 32 -666 672 31 -671 671 31 -670 703 -1 -646 703 -2 -643 697 11 -645 696 10 -643 693 18 -644 692 18 -642 688 24 -643 688 25 -642 683 29 -643 683 30 -642 677 32 -642 677 34 -642 670 35 -643 671 36 -643 664 36 -644 665 37 -645 658 36 -646 659 37 -647 696 -4 -628 697 -5 -629 694 7 -629 694 6 -630 691 14 -631 691 13 -631 689 19 -634 688 18 -633 685 24 -636 684 23 -635 681 26 -639 680 26 -638 676 28 -642 675 28 -640 672 28 -644 671 28 -643 667 27 -647 667 28 -647 -902 2 4 -901 2 5 -899 15 3 -898 14 4 -896 22 3 -896 20 3 -892 27 3 -892 26 2 -888 31 2 -888 30 1 -883 34 1 -883 33 0 -878 35 0 -878 35 -1 -873 35 0 -873 36 -1 -867 34 -1 -867 35 -2 882 2 -185 884 1 -186 880 16 -186 880 15 -188 877 23 -189 878 22 -189 875 29 -191 875 28 -190 871 34 -193 871 33 -192 867 38 -195 866 37 -194 862 40 -197 861 39 -196 856 39 -199 855 40 -198 850 39 -201 850 40 -200 883 1 -187 883 1 -184 880 16 -185 880 15 -182 877 24 -183 878 23 -181 874 30 -181 875 31 -180 870 36 -179 871 37 -178 866 41 -177 867 42 -177 860 44 -175 861 45 -176 854 46 -174 855 47 -175 848 48 -174 848 48 -175 883 1 -167 883 0 -168 883 13 -168 882 12 -169 881 20 -170 880 19 -170 878 26 -172 877 25 -171 874 31 -173 874 30 -172 870 34 -175 869 34 -173 865 36 -175 865 36 -174 860 37 -176 859 38 -175 854 37 -177 854 37 -176 -932 4 -27 -932 4 -25 -930 18 -31 -929 17 -30 -927 25 -33 -927 24 -33 -923 31 -36 -924 30 -36 -920 36 -38 -921 35 -39 -916 39 -42 -917 38 -43 -912 40 -46 -913 39 -47 -907 39 -50 -908 39 -51 -903 38 -54 -903 38 -55 898 -2 52 900 -2 52 897 12 49 898 11 49 897 19 46 897 18 46 896 25 42 896 24 43 895 30 38 894 29 39 893 34 34 891 33 35 890 35 29 889 35 30 887 35 24 886 36 24 884 35 19 883 35 19 900 -2 51 898 -2 53 896 12 50 895 11 52 893 19 50 892 19 52 890 26 49 889 27 51 885 32 49 885 33 50 880 36 47 881 38 48 875 40 45 876 41 45 870 42 42 871 43 41 865 43 38 865 44 37 887 -3 66 888 -4 65 887 9 65 888 8 64 887 16 62 887 15 62 886 22 59 885 21 59 884 26 55 883 26 56 882 30 52 880 30 53 879 32 48 877 32 49 875 33 44 874 33 45 872 33 40 871 33 40 -181 -7 -927 -181 -8 -929 -184 6 -926 -184 5 -928 -187 13 -927 -187 12 -927 -191 19 -927 -190 18 -926 -195 24 -926 -194 24 -925 -199 28 -924 -199 28 -923 -204 30 -922 -204 30 -921 -210 29 -920 -210 30 -919 -216 29 -917 -215 30 -916 -182 -7 -929 -180 -8 -927 -183 6 -926 -181 5 -924 -183 14 -923 -182 13 -921 -184 21 -919 -183 21 -918 -186 26 -915 -185 27 -915 -188 31 -910 -187 32 -911 -191 34 -905 -190 36 -906 -194 36 -900 -195 38 -901 -199 38 -896 -199 38 -897 -877 0 470 -875 -1 468 -882 12 468 -881 12 467 -885 19 465 -884 18 465 -888 25 462 -888 24 463 -892 29 459 -892 28 460 -896 32 456 -897 32 457 -900 33 453 -901 33 454 -905 32 449 -906 32 450 -910 31 445 -911 31 446 -875 0 468 -876 -1 470 -882 12 469 -883 11 472 -886 19 470 -887 19 472 -891 25 471 -891 25 473 -897 29 472 -897 30 474 -903 33 473 -903 34 474 -909 35 473 -909 36 473 -916 36 472 -915 37 472 -922 36 471 -922 36 470 -881 -3 487 -880 -4 486 -884 8 486 -884 7 485 -887 15 484 -887 14 484 -890 20 481 -891 19 482 -894 24 479 -895 23 480 -899 27 476 -899 26 478 -903 28 474 -904 28 475 -908 28 472 -909 28 473 -913 27 469 -913 27 470 -41 -7 -966 -41 -8 -964 -38 6 -968 -38 5 -966 -36 13 -968 -36 12 -967 -32 20 -968 -32 19 -968 -28 25 -968 -29 24 -969 -24 29 -969 -24 28 -971 -18 30 -970 -19 30 -972 -12 30 -972 -12 31 -973 -6 30 -973 -7 31 -974 699 5 -605 700 5 -607 694 19 -603 695 18 -605 691 26 -604 691 25 -604 687 32 -605 687 31 -604 682 37 -605 682 36 -604 677 40 -606 677 39 -604 671 41 -606 671 40 -604 665 40 -606 665 40 -605 659 39 -606 659 39 -605 699 6 -607 700 5 -604 695 19 -602 696 18 -600 692 26 -599 693 26 -597 689 32 -595 690 32 -594 685 37 -591 686 38 -591 681 40 -587 681 42 -587 675 42 -584 676 44 -584 670 44 -581 670 45 -582 664 44 -579 663 45 -580 705 3 -588 705 2 -589 702 15 -587 702 14 -588 699 22 -588 699 21 -587 695 27 -588 695 26 -587 691 31 -588 691 30 -586 686 34 -587 686 34 -585 681 36 -586 681 36 -585 675 36 -586 675 36 -584 670 35 -585 670 35 -584 -40 -7 -964 -42 -8 -967 -39 6 -969 -41 5 -971 -38 13 -972 -40 13 -974 -37 20 -976 -38 20 -977 -35 25 -981 -36 26 -981 -32 29 -985 -33 31 -985 -29 33 -990 -29 34 -989 -24 35 -994 -24 36 -993 -19 36 -998 -19 37 -997 -51 -10 -981 -50 -11 -980 -50 2 -981 -49 1 -981 -48 9 -981 -47 8 -982 -45 15 -982 -45 13 -983 -41 19 -983 -41 18 -984 -37 23 -985 -37 22 -986 -32 25 -987 -33 25 -988 -27 26 -989 -28 26 -990 -23 26 -991 925 -2 300 926 -2 301 927 12 297 928 11 298 930 19 296 930 18 296 933 25 293 932 24 293 936 30 290 934 29 290 938 34 287 937 33 286 941 35 282 940 35 281 945 35 276 943 36 276 947 35 271 927 -2 300 924 -2 300 926 12 297 923 11 297 925 19 294 922 19 294 923 26 291 922 27 291 922 32 287 921 33 287 921 36 282 920 38 282 920 40 276 920 41 277 920 42 270 921 43 270 921 43 264 922 44 264 907 -3 297 908 -4 297 909 9 296 910 8 296 911 16 295 911 15 294 913 22 293 913 21 292 916 26 289 914 26 288 918 30 285 916 30 284 919 32 280 918 32 280 921 33 276 920 33 275 923 33 271 923 33 270 -168 -8 -914 -169 -9 -915 -170 3 -915 -170 2 -915 -172 10 -915 -172 9 -915 -176 16 -915 -175 15 -914 -179 21 -913 -179 20 -912 -183 24 -911 -182 24 -910 -187 26 -908 -187 26 -907 -192 27 -905 -191 28 -904 -196 27 -903 -196 28 -902 -646 5 -626 -648 5 -627 -645 19 -621 -646 18 -621 -645 26 -618 -645 25 -618 -645 32 -613 -645 31 -614 -645 37 -609 -644 36 -609 -645 40 -604 -644 39 -604 -645 41 -598 -643 40 -598 -645 40 -592 -643 40 -592 -644 39 -586 -643 39 -586 -649 6 -625 -646 5 -627 -644 19 -622 -641 18 -623 -640 26 -619 -638 26 -620 -636 32 -616 -635 32 -618 -632 37 -613 -631 38 -614 -627 40 -609 -627 42 -610 -623 42 -604 -624 44 -604 -620 44 -599 -621 45 -599 -617 44 -593 -618 45 -593 -630 3 -633 -632 2 -633 -629 15 -631 -630 14 -630 -629 22 -627 -629 21 -627 -629 27 -623 -628 26 -623 -629 31 -619 -627 30 -619 -628 34 -614 -626 34 -614 -626 36 -609 -625 36 -609 -625 36 -604 -624 36 -604 -624 35 -599 -931 5 -25 -933 4 -26 -931 18 -31 -933 17 -33 -931 25 -36 -934 25 -37 -932 31 -41 -933 31 -41 -932 36 -46 -933 37 -46 -932 39 -52 -932 41 -52 -930 42 -58 -930 43 -58 -928 43 -64 -928 44 -64 -926 43 -70 -925 44 -70 234 1 -887 232 0 -887 235 15 -884 234 14 -884 235 23 -881 235 22 -881 236 29 -877 236 28 -878 237 34 -873 238 33 -874 238 37 -869 240 37 -870 241 39 -864 242 39 -864 244 39 -858 245 39 -859 247 38 -853 248 39 -853 232 1 -886 234 0 -888 236 15 -885 238 15 -887 239 23 -885 240 23 -887 242 30 -884 243 30 -886 247 36 -883 247 36 -884 252 40 -881 251 41 -882 257 43 -879 256 45 -879 262 46 -875 261 47 -875 267 47 -871 266 48 -871 246 0 -901 245 0 -900 246 13 -899 245 12 -898 246 20 -897 246 19 -896 246 25 -893 247 24 -894 248 30 -890 249 29 -890 251 34 -886 252 33 -887 254 36 -882 255 36 -883 257 36 -878 258 37 -878 260 36 -873 261 37 -874 928 -7 -261 929 -8 -259 931 6 -262 932 5 -261 934 13 -263 934 12 -263 937 19 -265 937 19 -265 941 24 -267 940 24 -268 944 28 -270 943 28 -272 948 30 -274 947 30 -275 952 30 -279 951 30 -280 956 29 -284 956 30 -284 -761 3 505 -761 3 507 -757 16 502 -756 16 503 -753 23 501 -748 29 500 -749 28 499 -744 34 498 -744 33 497 -739 37 496 -740 36 495 -734 37 494 -734 37 493 -728 36 492 -728 36 491 -722 35 490 -722 35 489 -760 3 507 -762 2 505 -757 16 501 -759 16 499 -756 23 497 -758 23 495 -754 29 492 -756 29 491 -752 34 486 -753 35 486 -749 37 481 -750 38 481 -746 39 476 -746 41 476 -742 40 471 -741 41 471 -737 40 467 -736 41 467 802 1 387 804 0 386 800 15 384 802 14 384 800 23 381 800 22 381 798 29 378 798 28 378 796 34 374 795 33 375 794 37 370 792 37 371 790 39 366 789 39 367 786 39 361 785 39 362 782 38 357 781 39 357 803 1 385 802 0 388 800 15 385 799 15 388 797 23 386 796 23 388 793 30 386 793 30 388 789 36 386 789 36 387 783 40 386 784 41 386 778 43 384 779 45 384 772 46 382 773 47 382 767 47 379 767 48 378 794 0 403 794 0 402 794 13 401 794 12 400 793 20 399 793 19 399 792 25 396 791 24 396 789 30 393 788 29 394 786 34 390 785 33 391 782 36 386 781 36 387 778 36 383 777 37 384 774 36 380 773 37 380 -773 0 492 -772 0 493 -770 13 490 -769 12 491 -767 19 489 -767 18 489 -763 24 488 -763 23 487 -759 28 486 -760 28 484 -755 31 483 -755 31 482 -750 32 480 -751 32 479 -745 32 477 -746 32 476 -741 31 475 -741 32 474 930 -7 -259 927 -8 -260 930 6 -263 927 6 -264 929 14 -266 927 14 -266 929 21 -269 927 21 -269 928 26 -274 927 27 -273 928 31 -279 927 32 -278 929 34 -285 929 36 -284 930 36 -291 931 38 -290 932 38 -296 933 38 -296 912 -8 -267 913 -9 -266 913 3 -267 914 2 -267 916 10 -268 916 9 -269 919 16 -270 918 15 -271 921 21 -273 920 20 -274 924 24 -276 923 24 -277 927 26 -280 926 27 -281 930 27 -285 929 28 -286 933 27 -289 932 28 -290 -879 5 59 -880 4 61 -875 18 58 -875 18 59 -871 25 58 -871 24 59 -867 31 59 -867 30 59 -862 36 60 -862 35 59 -857 39 60 -857 38 59 -852 40 61 -851 40 59 -845 39 61 -845 39 60 -839 38 62 -839 38 61 -879 5 61 -880 4 58 -875 18 57 -876 17 54 -872 25 53 -873 25 51 -869 31 50 -870 32 48 -865 36 46 -866 37 45 -860 39 42 -861 41 42 -855 42 39 -855 43 39 -849 43 36 -849 44 37 -843 43 34 -843 44 35 -884 2 42 -885 1 43 -882 14 41 -881 13 42 -879 21 42 -878 20 41 -875 26 42 -875 25 41 -870 31 42 -870 30 40 -865 33 42 -866 33 40 -860 35 41 -860 35 39 -855 35 40 -855 35 39 -850 34 40 -862 6 210 -864 6 211 -858 20 211 -859 19 212 -855 27 213 -855 26 213 -851 33 216 -851 32 215 -847 38 218 -847 37 217 -843 41 221 -842 40 219 -838 42 224 -837 41 222 -833 41 227 -832 41 226 -828 40 230 -827 40 229 -863 7 212 -863 6 209 -857 20 210 -857 19 207 -853 27 208 -853 27 206 -849 33 206 -849 33 204 -844 38 204 -844 39 203 -838 41 203 -838 43 202 -831 44 202 -832 45 202 -825 45 202 -825 46 203 -819 45 203 -819 46 204 -860 4 192 -860 3 193 -857 16 193 -857 15 194 -854 23 194 -854 22 195 -851 28 197 -850 27 196 -847 32 198 -846 31 197 -842 35 200 -842 35 199 -837 37 202 -837 37 201 -832 37 204 -832 37 203 -828 36 206 -827 36 205 -598 1 727 -598 1 730 -595 15 724 -594 14 726 -591 22 723 -591 21 723 -587 28 722 -588 27 721 -583 33 720 -584 32 719 -578 36 718 -579 35 716 -573 37 715 -574 36 714 -567 36 713 -568 36 712 -562 35 710 -562 35 709 -597 2 729 -599 1 728 -595 15 723 -598 14 722 -595 22 719 -597 22 718 -594 28 714 -595 28 714 -592 33 709 -593 34 709 -590 36 703 -591 38 704 -587 39 698 -587 40 698 -583 40 693 -583 41 693 -579 40 688 -578 41 689 -611 0 715 -611 -1 717 -609 11 714 -608 10 714 -606 18 712 -606 17 712 -603 23 711 -603 22 710 -599 27 708 -600 27 707 -595 30 706 -596 30 704 -591 32 703 -591 32 701 -586 32 699 -587 32 698 -582 31 697 -582 31 696 -410 0 883 -408 -1 882 -415 12 881 -413 12 880 -417 19 877 -416 18 877 -420 25 874 -420 24 875 -423 29 870 -424 28 871 -427 32 867 -428 32 868 -431 33 863 -432 33 864 -435 32 858 -436 32 859 -439 31 854 -440 31 855 -408 0 881 -409 -1 884 -416 11 884 -419 19 882 -420 19 884 -425 25 882 -425 25 884 -430 29 883 -430 30 884 -436 33 883 -436 34 883 -443 35 882 -442 36 882 -449 36 880 -448 37 879 -455 36 877 -454 36 876 -417 -3 899 -416 -4 898 -420 8 898 -419 7 897 -422 15 895 -422 14 895 -425 20 892 -425 19 893 -428 24 889 -429 23 890 -432 27 886 -433 26 888 -437 28 883 -438 28 885 -441 28 880 -442 28 881 -445 27 877 -446 27 878 -367 0 844 -365 -1 845 -369 12 839 -367 12 839 -369 19 835 -368 18 835 -368 25 830 -369 24 831 -368 29 826 -370 28 826 -369 32 821 -370 32 821 -369 33 815 -371 33 815 -369 32 809 -371 32 809 -370 31 803 -371 31 803 -364 0 843 -367 -1 845 -370 12 839 -372 11 841 -374 19 837 -376 19 838 -378 25 834 -379 25 835 -382 29 830 -383 30 831 -387 33 826 -387 34 827 -391 35 821 -390 36 821 -394 36 816 -393 37 816 -397 36 810 -396 36 810 -383 -3 851 -381 -4 851 -384 8 848 -383 7 848 -384 15 845 -384 14 845 -384 20 841 -385 19 841 -385 24 836 -386 23 837 -386 27 832 -388 26 832 -388 28 826 -389 28 827 -389 28 821 -390 28 821 -390 27 816 -164 3 926 -164 3 927 -160 15 924 -160 14 925 -156 21 924 -157 20 924 -152 26 923 -153 26 923 -148 30 922 -149 30 921 -144 33 921 -145 33 919 -139 34 919 -140 34 917 -134 33 916 -135 33 915 -130 32 914 -130 33 913 -163 3 927 -165 3 926 -162 15 922 -159 22 921 -161 22 919 -158 28 917 -159 28 916 -156 32 913 -157 33 913 -155 36 908 -155 37 909 -152 38 904 -152 40 904 -148 40 899 -148 41 900 -145 40 895 -144 41 896 -175 3 915 -175 2 916 -173 14 915 -172 13 915 -170 20 914 -170 19 914 -167 24 914 -167 23 913 -163 28 912 -164 27 911 -159 31 910 -160 30 908 -155 32 907 -156 32 906 -152 32 904 -152 32 903 -148 31 902 -148 32 901 -251 3 880 -250 2 882 -250 15 877 -249 14 878 -248 22 874 -248 21 875 -245 27 872 -246 26 872 -243 31 868 -244 30 868 -241 34 865 -242 33 864 -238 35 860 -240 35 860 -236 34 855 -237 35 855 -233 33 851 -234 34 850 -249 3 881 -252 2 881 -251 15 877 -253 15 876 -252 22 874 -254 21 873 -254 27 870 -255 27 870 -255 32 865 -256 32 866 -257 35 860 -257 36 861 -257 37 855 -257 39 856 -257 39 850 -257 40 850 -257 39 844 -256 40 844 -266 1 878 -265 0 879 -266 12 877 -265 11 876 -264 18 875 -264 17 874 -262 23 872 -263 22 871 -261 27 868 -262 26 868 -259 29 864 -260 29 864 -258 31 860 -259 31 859 -256 31 856 -257 31 855 -254 30 851 -255 31 851 280 8 897 282 7 899 281 21 892 283 20 893 284 28 889 284 27 890 286 34 885 286 33 885 289 38 881 287 37 881 291 41 877 290 40 876 294 42 872 293 41 871 297 41 866 296 41 866 300 39 861 299 40 861 283 8 898 280 7 898 280 21 892 278 20 892 279 28 888 276 27 888 277 34 883 275 34 883 275 38 878 274 39 878 273 41 872 273 43 872 272 44 865 273 45 866 273 44 859 273 46 859 273 44 853 274 45 853 263 5 895 264 4 896 263 17 892 264 16 892 265 24 889 265 23 889 267 29 886 266 28 885 269 33 881 268 32 881 271 36 877 269 35 876 272 37 872 271 37 871 274 37 867 273 37 866 276 36 862 275 36 861 308 9 919 308 9 921 313 19 914 313 19 915 317 25 912 316 24 912 321 29 910 321 28 910 326 32 908 325 31 907 330 34 905 329 33 904 334 33 903 334 33 902 339 31 901 339 32 900 344 29 899 343 30 898 309 9 920 307 8 919 312 19 913 310 19 912 314 25 908 312 25 907 315 29 903 314 29 903 317 32 898 316 33 898 319 34 893 319 35 893 322 35 887 322 36 888 325 35 883 326 36 883 329 33 879 330 34 879 296 7 909 296 6 910 299 17 905 300 16 906 303 22 903 303 21 903 306 26 901 306 25 900 310 29 898 310 28 897 314 30 896 313 29 894 318 30 893 317 30 891 322 29 890 321 29 889 325 27 888 325 28 887 158 8 923 160 8 923 155 21 919 156 21 918 154 28 915 153 34 910 153 33 911 152 39 906 151 38 906 150 42 901 149 41 901 148 42 895 147 42 896 147 41 889 145 41 889 145 40 884 144 40 884 160 8 922 158 8 924 154 21 919 152 21 921 150 28 918 148 28 919 145 34 916 144 35 917 140 39 913 139 40 914 134 42 910 134 43 911 129 44 907 130 46 907 125 45 902 125 46 902 121 45 897 121 46 897 144 5 934 145 4 934 142 18 931 143 17 931 141 24 928 141 23 928 140 30 924 139 28 925 138 34 920 137 33 921 136 36 916 135 36 916 133 37 911 132 37 911 131 37 906 130 38 907 129 36 901 128 37 902 448 3 789 450 3 788 448 12 787 449 12 786 448 17 784 448 16 784 448 21 781 448 20 781 448 24 777 447 23 777 448 26 774 447 26 774 448 28 770 447 28 770 448 28 766 447 28 766 451 4 787 447 14 786 445 14 788 444 21 785 442 20 787 439 26 783 438 26 785 434 30 780 434 31 782 429 32 776 429 33 777 425 32 771 425 34 772 421 31 765 422 33 765 449 4 789 450 3 788 448 14 786 449 13 785 447 21 782 447 20 782 445 26 778 444 24 778 443 29 773 442 28 773 442 30 767 440 29 768 441 30 761 440 30 761 441 28 756 440 28 755 892 0 61 892 -1 60 890 11 59 890 10 59 889 17 58 890 17 57 888 22 57 889 23 56 887 28 55 888 28 54 886 33 53 887 33 52 885 37 51 885 37 50 883 41 48 883 40 47 892 0 60 892 -1 61 889 10 60 888 16 58 887 16 60 886 22 57 885 22 59 884 26 56 883 27 57 881 31 54 878 34 51 879 35 52 875 37 48 876 37 49 891 0 61 893 -1 60 890 11 58 891 10 57 890 16 56 891 15 55 890 21 53 890 20 53 889 24 49 889 23 50 888 27 46 888 26 46 888 29 42 887 29 43 887 30 39 886 30 39 893 0 60 893 -1 59 890 13 57 891 13 57 890 21 56 891 21 54 890 29 54 891 28 52 890 36 52 891 35 51 890 43 51 890 42 49 890 49 49 889 49 48 889 55 47 888 54 46 893 0 59 890 13 58 888 12 60 886 20 58 885 20 60 881 26 58 881 26 60 876 30 57 876 31 59 870 32 55 870 34 56 864 33 51 864 35 52 859 32 47 859 34 46 891 12 56 889 20 54 889 19 54 886 26 51 886 25 51 883 30 47 882 29 48 881 32 42 879 31 43 878 32 37 877 31 37 876 31 31 874 31 31 883 0 75 883 0 74 883 9 74 884 8 74 883 14 74 884 14 74 883 20 74 884 20 73 883 25 73 883 25 72 882 30 72 883 29 71 881 34 70 881 34 69 879 38 68 879 37 67 883 9 75 882 8 76 882 14 75 881 14 76 880 19 75 880 19 76 879 24 74 879 24 75 877 28 73 877 29 73 874 32 71 875 33 71 871 35 69 872 36 69 883 8 74 883 8 73 883 14 72 883 13 71 882 18 69 882 17 69 881 21 67 880 21 67 880 24 63 879 24 64 878 26 60 877 26 61 876 27 57 876 28 57 884 0 73 883 11 74 882 10 76 881 18 75 880 17 77 877 24 76 877 24 78 872 28 77 873 29 78 867 32 76 868 33 77 861 34 74 861 35 74 854 35 71 855 36 70 883 0 73 883 11 73 883 10 72 882 17 71 881 16 70 880 23 69 878 22 69 876 28 66 875 27 66 872 30 62 871 29 62 868 31 57 867 30 58 865 30 52 864 30 52 915 0 298 915 -1 298 915 11 296 916 10 296 916 17 295 916 22 293 917 23 293 917 28 291 918 28 292 918 33 290 919 33 290 920 37 287 921 41 284 922 40 284 916 0 298 914 -1 298 913 10 295 914 16 294 913 16 294 914 22 291 913 22 291 915 26 289 914 27 289 915 31 285 915 31 286 916 34 282 916 35 282 917 37 278 914 0 298 915 -1 299 916 11 296 917 10 296 918 16 294 919 15 295 920 21 292 920 20 292 923 24 290 922 23 290 926 27 288 925 26 288 929 29 286 928 29 285 931 30 283 915 0 299 916 -1 298 917 13 295 918 13 296 918 21 294 919 21 295 919 29 293 921 28 294 921 36 293 923 35 293 922 43 292 924 42 292 923 49 291 924 49 290 925 55 289 925 54 288 917 0 299 916 13 295 913 12 295 914 20 292 911 20 292 911 26 288 910 26 288 910 30 282 908 31 283 909 32 276 908 34 277 909 33 269 909 35 269 911 32 263 911 34 263 916 -1 299 918 12 296 918 20 293 919 19 293 920 26 289 920 25 288 922 30 284 921 29 284 925 32 280 924 31 279 929 32 275 928 31 274 933 31 270 932 31 269 898 0 297 898 9 297 899 8 298 898 14 297 899 14 298 899 20 297 900 20 297 899 25 296 900 25 296 900 30 295 901 29 295 901 34 293 902 34 293 902 38 290 902 37 290 899 0 297 897 0 297 896 8 297 897 14 296 896 14 296 897 19 295 895 19 295 896 24 293 897 28 290 896 29 291 897 32 287 897 33 288 897 35 284 897 36 284 899 8 297 900 8 296 900 14 296 901 13 295 902 18 294 902 17 293 904 21 291 903 21 291 906 24 289 905 24 288 908 26 286 908 26 285 910 27 283 910 28 282 900 0 297 898 11 297 896 10 297 896 18 295 894 17 296 893 24 293 892 24 294 891 28 289 890 29 290 889 32 283 889 33 285 888 34 277 888 35 278 888 35 270 888 36 270 899 0 297 899 11 296 901 10 296 901 17 295 901 16 294 901 23 291 901 22 290 902 28 287 901 27 286 904 30 281 903 29 281 907 31 276 905 30 275 910 30 271 909 30 270 798 2 397 797 2 396 795 14 395 796 14 395 794 20 394 795 20 394 793 26 394 794 26 393 791 31 392 792 31 391 790 37 390 791 36 389 788 41 388 789 41 387 786 44 386 786 44 385 798 2 395 797 2 397 794 14 397 793 20 395 792 20 397 791 25 394 790 25 396 788 30 393 788 30 394 785 34 392 786 35 392 782 38 390 783 38 390 779 40 388 779 41 388 798 2 396 796 14 393 795 20 392 795 19 391 794 24 389 794 23 389 792 28 386 792 27 386 791 31 383 791 30 383 790 33 379 789 32 380 788 34 376 798 3 396 795 17 394 796 16 393 794 25 392 796 24 391 794 32 390 795 32 388 794 39 389 795 39 387 794 46 387 794 46 386 793 53 386 793 52 385 792 59 384 791 58 383 798 3 394 794 16 397 791 24 395 791 23 398 786 30 396 786 30 398 781 34 396 781 35 398 775 36 395 775 38 396 768 37 392 768 38 393 762 36 389 763 37 389 797 3 396 799 2 395 795 16 393 796 16 392 793 24 391 793 23 390 790 30 388 790 28 389 787 34 385 786 32 386 783 36 381 782 35 382 779 35 376 778 35 376 776 34 370 775 34 371 791 3 412 791 12 411 792 12 411 791 18 411 792 18 411 791 23 411 792 23 410 790 28 410 791 28 409 790 33 409 790 33 408 788 38 408 788 37 407 786 41 406 785 41 405 791 3 411 791 2 413 791 12 412 790 12 413 790 18 412 790 18 414 789 23 412 789 23 414 787 28 412 787 28 413 784 32 411 785 32 412 782 36 410 778 39 409 779 39 409 791 3 413 791 2 411 791 12 410 791 17 409 790 17 409 789 22 407 789 21 407 788 25 404 787 24 405 786 28 401 785 27 402 784 30 399 783 30 399 781 31 396 792 3 410 791 14 411 790 14 414 789 21 413 789 21 415 786 27 415 786 27 417 781 32 416 782 33 417 775 36 416 776 37 417 769 38 415 770 39 415 762 38 413 763 39 413 791 2 411 791 14 410 791 13 409 790 21 409 789 20 408 787 27 407 786 26 407 783 31 404 782 30 405 778 34 401 777 33 402 774 34 397 773 34 398 770 33 393 769 34 393 812 0 361 812 -1 361 810 11 359 811 10 359 809 17 358 810 17 358 808 22 357 809 23 357 807 28 356 808 28 355 806 33 354 807 33 353 804 37 352 805 37 351 802 41 349 802 40 348 813 0 360 812 -1 362 810 11 360 809 10 361 808 16 359 807 16 361 806 22 358 805 22 359 804 26 357 803 27 358 801 31 355 798 34 352 798 35 353 795 37 350 796 37 350 813 -1 360 811 10 358 810 16 356 811 15 356 809 21 353 809 20 353 809 24 350 808 23 350 808 27 346 807 26 347 807 29 343 806 29 343 806 30 339 805 30 340 813 0 361 810 13 358 811 13 357 810 21 356 811 21 355 810 29 354 811 28 353 810 36 353 811 35 351 810 43 352 810 42 350 810 49 350 809 49 349 808 55 348 807 54 347 813 0 359 810 13 359 808 12 361 806 20 359 805 20 361 801 26 359 801 26 361 796 30 358 796 31 360 790 32 356 790 34 357 784 33 353 784 35 353 778 32 349 779 34 348 814 -1 360 811 12 356 809 20 355 809 19 354 806 26 352 806 25 352 803 30 348 802 29 349 800 32 343 799 31 344 797 32 338 796 31 338 795 31 332 794 31 333 804 0 375 804 9 375 805 8 375 804 14 375 805 14 374 804 20 375 805 20 374 803 25 374 804 25 373 803 30 372 803 29 371 802 34 371 801 34 370 799 38 369 799 37 368 803 0 376 803 8 377 803 14 376 802 14 377 801 19 375 801 19 377 799 24 375 800 24 376 797 28 374 798 29 374 795 32 372 795 33 373 791 35 370 792 36 370 804 0 376 804 8 375 804 8 373 804 14 373 803 13 372 803 18 370 802 17 370 801 21 367 801 21 368 800 24 364 799 24 365 798 26 361 797 26 362 796 27 358 796 28 358 804 0 374 804 11 375 803 10 377 801 18 376 801 17 378 798 24 378 798 24 379 793 28 378 794 29 379 787 32 377 788 33 378 781 34 375 782 35 376 775 35 372 776 36 372 804 0 374 804 11 374 804 10 372 803 17 372 802 16 371 800 23 370 799 22 370 796 28 367 795 27 367 792 30 363 791 29 364 788 31 358 787 30 359 785 30 353 784 30 354 806 0 -586 811 12 -588 810 11 -587 813 17 -589 813 17 -588 815 23 -589 815 23 -588 818 28 -590 818 28 -588 821 33 -590 821 32 -588 824 37 -589 824 36 -589 828 39 -589 807 0 -585 806 0 -587 811 11 -588 810 11 -590 813 17 -590 813 16 -591 816 21 -591 816 22 -593 819 26 -592 819 26 -593 823 29 -593 823 30 -594 827 32 -594 827 33 -594 832 34 -594 831 35 -594 806 0 -585 811 12 -587 811 11 -586 814 17 -586 813 16 -585 817 21 -585 817 20 -585 820 24 -584 823 27 -582 823 26 -583 827 29 -580 827 28 -581 830 30 -579 812 14 -587 811 14 -586 814 21 -587 814 21 -585 817 29 -587 817 29 -585 819 36 -586 819 36 -585 821 43 -586 822 43 -585 823 49 -586 824 49 -586 826 55 -586 828 54 -586 807 1 -584 812 14 -588 811 13 -590 815 20 -591 814 20 -594 819 25 -596 818 25 -597 824 28 -599 823 29 -600 830 29 -602 830 31 -603 837 28 -604 837 30 -604 843 27 -604 844 28 -604 807 0 -586 806 0 -584 812 13 -585 816 20 -587 816 19 -586 821 26 -587 821 24 -587 826 29 -587 826 28 -588 832 30 -586 832 29 -587 838 30 -584 838 29 -585 843 28 -581 844 28 -582 802 0 -603 802 0 -602 804 8 -603 803 8 -603 804 14 -604 804 14 -603 806 19 -604 806 20 -603 807 24 -605 808 24 -604 809 29 -605 810 29 -604 812 33 -605 813 33 -604 816 36 -605 803 0 -602 804 8 -604 803 8 -605 805 14 -605 804 13 -607 807 18 -607 806 18 -608 809 23 -608 809 23 -609 812 27 -609 816 30 -610 815 30 -610 820 32 -612 819 33 -611 805 8 -602 806 13 -602 807 13 -602 809 17 -602 810 16 -602 813 21 -601 813 20 -602 816 23 -600 816 22 -601 820 24 -599 820 24 -600 824 25 -598 824 25 -599 803 0 -601 805 10 -603 804 10 -606 806 17 -607 805 17 -609 809 22 -611 807 22 -612 812 26 -615 811 27 -616 817 28 -619 816 30 -619 823 29 -622 823 31 -622 830 29 -624 830 30 -624 803 0 -601 805 10 -603 806 10 -602 808 17 -603 809 16 -603 812 22 -604 813 21 -605 817 26 -605 818 24 -606 824 27 -605 824 26 -606 830 27 -604 830 27 -606 835 25 -603 836 25 -604 699 -1 -634 699 -2 -635 694 9 -635 692 15 -636 689 20 -636 690 21 -637 687 25 -637 688 26 -638 685 30 -638 685 30 -640 682 34 -640 682 34 -641 678 37 -642 678 37 -643 699 -1 -635 699 -2 -634 694 9 -633 691 14 -635 690 14 -633 688 19 -635 687 19 -633 684 23 -635 684 24 -634 680 27 -637 681 28 -636 677 30 -638 677 31 -638 672 32 -640 673 33 -640 698 -1 -634 694 9 -636 695 9 -637 692 15 -638 693 14 -639 690 19 -640 690 18 -640 688 22 -643 688 21 -643 686 25 -646 685 24 -646 684 26 -650 683 26 -649 682 28 -653 681 27 -652 699 -1 -636 694 12 -636 694 11 -637 691 19 -638 692 19 -639 689 27 -639 690 27 -641 687 34 -640 688 34 -642 686 41 -641 686 40 -643 684 47 -643 683 46 -644 681 52 -644 680 52 -645 699 -1 -637 693 11 -636 693 11 -633 689 18 -634 688 17 -632 683 23 -632 683 23 -631 677 26 -632 677 27 -630 670 27 -632 670 28 -631 663 26 -634 663 28 -634 657 25 -637 657 26 -637 698 -1 -635 700 -1 -636 694 11 -638 690 18 -639 690 17 -639 686 23 -641 685 22 -640 681 27 -644 680 25 -643 676 28 -647 676 27 -646 672 27 -652 671 27 -651 669 26 -657 668 26 -656 694 -2 -618 693 6 -618 693 6 -619 692 12 -618 692 12 -619 690 17 -618 691 17 -619 689 22 -619 689 22 -620 687 27 -620 687 27 -621 684 31 -621 684 30 -622 681 34 -622 681 33 -623 694 -2 -619 692 6 -618 692 6 -616 690 11 -617 690 11 -616 688 16 -617 688 16 -616 685 20 -617 686 21 -616 682 24 -617 683 25 -617 679 27 -618 679 28 -618 675 30 -619 675 31 -619 692 6 -619 692 6 -620 691 11 -620 691 10 -621 688 15 -622 688 14 -622 686 18 -625 685 17 -624 683 21 -627 683 20 -627 680 22 -630 680 22 -629 677 23 -632 694 -2 -620 692 8 -619 691 8 -616 689 15 -616 689 14 -614 685 20 -614 685 20 -612 679 24 -612 680 25 -611 673 26 -611 674 28 -610 666 27 -611 667 28 -611 660 26 -613 660 28 -613 694 -2 -620 692 8 -619 692 7 -621 689 15 -621 688 14 -621 685 20 -622 684 19 -622 680 24 -624 679 22 -623 674 25 -627 674 24 -625 669 25 -630 669 24 -629 665 23 -634 664 23 -633 703 6 -595 702 5 -595 699 17 -593 697 23 -591 697 23 -592 694 28 -590 694 28 -591 692 33 -589 692 33 -591 689 38 -589 689 38 -590 686 42 -589 685 42 -589 682 45 -588 682 44 -589 702 6 -596 703 5 -594 699 17 -592 699 16 -591 697 22 -590 697 22 -589 694 27 -588 694 27 -587 691 31 -587 691 32 -586 687 35 -585 688 35 -585 683 38 -584 684 38 -584 679 40 -583 703 6 -594 703 5 -596 698 17 -593 698 17 -595 695 22 -593 695 22 -594 692 27 -594 692 26 -594 689 30 -595 689 29 -595 685 32 -596 685 32 -595 682 34 -597 681 34 -596 678 35 -598 678 35 -597 702 5 -596 697 19 -593 697 19 -594 695 27 -593 695 27 -594 692 34 -593 692 34 -595 690 42 -592 689 41 -594 688 48 -592 687 48 -594 686 55 -592 685 54 -592 683 60 -591 682 59 -591 702 6 -597 703 5 -595 698 19 -592 699 18 -590 695 26 -588 696 25 -586 692 30 -583 693 31 -582 687 33 -579 688 34 -578 682 34 -575 682 36 -574 675 34 -572 675 36 -572 669 32 -571 669 33 -571 702 6 -595 703 5 -597 697 18 -595 693 26 -593 693 25 -593 689 31 -591 688 30 -591 683 35 -591 683 33 -590 677 36 -591 677 35 -590 671 35 -592 671 34 -591 665 33 -594 665 33 -592 709 5 -579 709 5 -580 708 14 -579 707 20 -578 707 20 -579 706 25 -577 706 25 -578 705 30 -576 704 30 -578 703 35 -576 702 34 -577 700 39 -575 699 38 -576 697 42 -575 696 41 -575 710 4 -579 708 14 -578 709 13 -577 707 19 -576 708 19 -575 705 24 -575 706 24 -574 703 28 -573 704 29 -572 700 32 -571 701 33 -571 697 35 -569 698 36 -570 694 38 -568 710 5 -579 709 4 -580 707 13 -580 705 19 -579 705 18 -579 702 23 -579 702 22 -579 699 26 -579 699 25 -579 695 28 -580 695 28 -579 691 30 -580 691 30 -579 687 31 -580 687 31 -579 708 5 -581 707 16 -578 708 15 -576 706 23 -575 708 22 -573 704 28 -570 706 28 -569 702 32 -565 703 32 -565 697 34 -561 698 35 -561 692 35 -557 693 36 -557 686 34 -553 686 35 -554 708 4 -581 707 16 -579 706 15 -580 704 22 -578 703 21 -578 700 28 -576 699 26 -576 695 31 -575 695 30 -574 689 33 -574 689 32 -572 683 32 -573 683 32 -572 677 31 -574 677 31 -572 -768 3 498 -767 3 498 -765 14 494 -763 20 492 -761 25 489 -761 26 490 -759 30 488 -758 30 489 -757 35 486 -756 35 487 -754 39 484 -753 38 485 -750 42 482 -750 41 483 -768 3 497 -765 14 493 -766 14 492 -764 20 490 -765 19 489 -762 24 487 -763 24 486 -759 28 485 -760 29 484 -756 32 482 -757 32 481 -753 34 479 -754 35 479 -750 36 476 -750 37 476 -764 14 494 -763 14 495 -761 20 493 -761 19 494 -758 24 492 -758 23 492 -754 27 491 -754 26 491 -750 29 491 -751 29 490 -747 31 491 -747 31 490 -743 32 490 -743 32 489 -768 4 498 -763 17 494 -763 16 495 -761 24 492 -760 24 493 -758 32 491 -757 31 492 -756 39 489 -755 38 491 -754 45 488 -753 45 489 -752 52 487 -751 51 487 -749 57 485 -748 56 484 -766 4 499 -764 17 493 -766 16 491 -763 23 488 -765 22 486 -761 27 482 -763 28 481 -759 30 476 -760 31 475 -755 31 470 -756 33 470 -751 30 465 -751 32 465 -745 28 461 -745 29 461 -767 4 497 -767 3 499 -762 16 495 -759 23 491 -759 22 492 -755 28 488 -755 27 488 -750 31 485 -751 30 485 -745 32 483 -746 31 482 -739 31 482 -739 31 481 -733 30 481 -733 29 480 -780 2 486 -779 12 484 -779 11 485 -778 17 483 -778 17 484 -777 22 482 -777 23 483 -776 27 481 -775 27 481 -774 32 479 -773 32 480 -772 36 478 -771 35 478 -769 39 475 -769 38 475 -779 3 486 -781 2 485 -779 11 484 -780 11 483 -779 17 482 -780 16 481 -778 21 479 -779 21 479 -776 26 477 -777 26 477 -774 29 474 -775 30 474 -772 32 471 -772 33 472 -769 35 468 -769 35 469 -780 3 486 -779 2 486 -778 11 484 -777 11 485 -776 16 483 -775 16 484 -773 20 482 -773 19 482 -770 23 481 -770 22 480 -766 25 480 -766 25 479 -762 27 478 -763 27 478 -759 28 477 -759 28 476 -778 3 487 -780 2 485 -778 14 484 -780 13 482 -778 20 480 -780 20 479 -779 25 475 -780 25 475 -778 29 469 -779 30 469 -775 31 463 -776 32 464 -772 31 457 -772 33 458 -768 31 452 -767 32 452 -779 2 487 -777 13 484 -776 13 484 -775 20 482 -774 19 482 -772 25 479 -772 24 478 -768 28 475 -768 27 474 -762 29 472 -763 29 471 -757 29 469 -758 29 468 -752 27 467 -752 27 466 -722 0 580 -717 10 578 -715 16 577 -715 16 578 -712 21 576 -712 21 577 -709 26 575 -709 26 576 -706 31 575 -706 31 576 -703 35 575 -703 34 576 -699 37 575 -699 37 576 -721 0 580 -722 0 579 -717 10 577 -718 10 576 -715 15 575 -715 15 574 -712 20 574 -712 20 572 -708 24 573 -708 24 572 -704 27 571 -705 28 571 -700 30 571 -700 31 570 -695 32 570 -696 33 570 -717 10 580 -714 15 579 -714 15 580 -711 20 580 -711 19 580 -707 23 581 -707 22 581 -704 25 583 -704 25 582 -700 27 584 -700 26 583 -697 28 586 -696 28 585 -721 0 581 -716 12 578 -716 12 579 -713 20 578 -713 20 580 -710 27 578 -710 27 580 -708 34 578 -707 34 580 -706 41 578 -705 41 580 -703 47 578 -702 47 579 -700 53 578 -698 52 578 -721 0 582 -716 12 577 -717 12 575 -713 19 574 -714 18 572 -708 23 569 -710 23 568 -703 26 565 -704 27 564 -697 27 562 -698 28 561 -691 26 560 -691 28 560 -684 24 559 -684 25 560 -721 0 579 -722 0 581 -716 12 580 -712 19 578 -711 18 579 -706 24 578 -706 23 577 -701 27 578 -701 26 577 -695 28 578 -695 27 577 -689 27 580 -689 27 579 -684 25 582 -683 25 581 -726 -1 563 -727 -1 564 -725 7 563 -724 13 562 -724 13 563 -722 18 561 -722 18 562 -721 23 561 -720 23 562 -718 28 561 -718 27 562 -716 32 560 -715 31 561 -712 35 560 -711 34 560 -726 -1 564 -727 -1 563 -725 7 562 -725 7 561 -723 12 560 -724 12 559 -721 17 559 -722 17 558 -719 21 557 -720 22 557 -716 25 556 -717 26 556 -712 28 555 -713 29 555 -708 30 553 -709 31 554 -724 7 563 -724 7 564 -722 12 563 -721 11 564 -719 16 564 -719 15 563 -715 19 564 -715 18 564 -712 21 565 -711 21 564 -708 23 566 -708 22 565 -704 23 566 -726 0 565 -724 9 562 -725 9 560 -722 16 559 -724 15 557 -720 21 554 -721 21 553 -716 24 550 -718 25 550 -711 26 546 -712 28 546 -705 27 543 -706 29 543 -699 26 540 -699 28 541 -726 0 563 -726 -1 565 -723 9 563 -723 8 564 -720 16 563 -719 14 563 -716 21 561 -715 19 561 -710 24 560 -710 23 559 -704 25 560 -704 24 558 -698 25 560 -698 24 559 -693 23 561 -692 23 560 -884 0 524 -889 10 526 -891 16 527 -891 16 526 -894 21 528 -894 21 527 -897 26 528 -897 26 527 -900 31 528 -900 31 527 -903 35 528 -904 34 528 -907 37 528 -908 37 528 -885 0 523 -884 0 525 -889 10 527 -889 10 528 -892 15 528 -891 15 530 -895 20 530 -894 20 531 -898 24 531 -898 24 532 -902 27 532 -902 28 533 -906 30 533 -906 31 533 -911 32 534 -911 33 533 -884 0 523 -889 10 524 -892 15 525 -892 15 524 -896 20 524 -895 19 524 -899 23 523 -899 22 523 -903 25 521 -903 25 522 -906 27 519 -906 26 520 -909 28 518 -910 28 519 -890 12 525 -890 12 524 -893 20 526 -893 20 524 -896 27 525 -896 27 523 -898 34 525 -899 34 523 -900 41 525 -901 41 524 -903 47 525 -904 47 525 -907 53 525 -908 52 525 -885 0 522 -890 12 526 -889 12 529 -894 19 530 -893 18 532 -898 23 534 -897 23 536 -903 26 538 -902 27 539 -909 27 541 -909 28 542 -916 26 543 -916 28 543 -922 24 544 -922 25 544 -885 0 524 -884 0 522 -895 19 525 -895 18 525 -900 24 526 -900 23 526 -905 27 526 -905 26 527 -911 28 525 -911 27 526 -917 27 523 -917 27 524 -922 25 521 -923 25 522 -880 -1 541 -880 -1 540 -882 7 541 -881 7 541 -883 13 542 -882 13 541 -884 18 543 -884 18 541 -886 23 543 -886 23 542 -888 28 543 -889 27 542 -891 32 543 -891 31 543 -894 35 544 -895 34 544 -882 7 542 -881 7 543 -883 12 543 -882 12 545 -885 17 545 -884 17 546 -888 21 546 -887 22 547 -891 25 548 -890 26 548 -894 28 549 -894 29 549 -898 30 550 -898 31 550 -883 7 540 -884 12 541 -885 11 540 -888 16 540 -888 15 540 -891 19 540 -891 18 540 -895 21 539 -899 23 538 -899 22 539 -902 23 537 -903 23 538 -881 0 539 -882 9 542 -882 9 544 -884 16 545 -883 15 547 -887 21 549 -885 21 550 -890 24 554 -889 25 554 -895 26 558 -894 28 558 -901 27 561 -901 29 561 -908 26 563 -908 28 563 -880 0 540 -880 -1 539 -883 9 541 -884 8 540 -886 16 541 -887 14 541 -891 21 542 -891 19 543 -896 24 543 -896 23 544 -902 25 544 -902 24 545 -908 25 543 -908 24 545 -914 23 542 -914 23 543 -879 0 480 -879 0 479 -884 10 479 -887 16 479 -886 16 478 -889 21 479 -889 21 478 -892 26 478 -892 26 477 -895 31 477 -895 31 475 -898 35 475 -898 34 474 -902 37 473 -884 10 480 -885 10 481 -887 15 480 -888 15 482 -891 20 480 -891 20 481 -895 24 480 -895 24 481 -899 27 479 -898 28 479 -903 30 478 -902 31 478 -907 32 476 -907 33 476 -880 0 480 -884 10 477 -886 15 477 -886 15 476 -889 20 474 -889 19 474 -892 23 472 -892 22 472 -894 25 469 -896 27 466 -897 26 466 -899 28 463 -879 0 478 -885 12 478 -884 12 477 -888 20 477 -887 20 475 -890 27 475 -889 27 474 -892 34 474 -892 34 472 -894 41 473 -894 41 472 -896 47 472 -897 47 471 -900 53 471 -901 52 470 -879 0 477 -885 12 479 -886 12 481 -890 19 481 -890 18 483 -896 23 483 -895 23 485 -902 26 484 -902 27 485 -909 27 484 -909 28 485 -916 26 483 -916 28 483 -922 24 481 -922 25 480 -878 0 478 -884 12 476 -889 19 476 -889 18 475 -894 24 474 -894 23 475 -899 27 472 -899 26 473 -904 28 468 -904 27 469 -908 27 464 -909 27 465 -912 25 460 -913 25 460 -882 -1 496 -884 7 496 -885 13 496 -885 13 495 -887 18 496 -887 18 495 -889 23 496 -889 23 495 -891 28 495 -891 27 494 -893 32 494 -894 31 493 -897 35 493 -897 34 492 -882 -1 495 -882 -1 497 -884 7 497 -885 7 498 -887 12 497 -887 12 499 -889 17 498 -889 17 499 -892 21 498 -892 22 499 -895 25 498 -895 26 498 -899 28 498 -898 29 498 -903 30 497 -903 31 497 -885 7 494 -886 12 494 -887 11 494 -889 16 492 -889 15 492 -892 19 490 -892 18 491 -895 21 488 -895 21 489 -898 23 486 -899 22 486 -901 23 483 -902 23 484 -882 0 494 -885 9 496 -885 9 498 -888 16 498 -888 15 500 -892 21 501 -891 21 503 -898 24 503 -896 25 504 -904 26 505 -903 28 505 -911 27 505 -910 29 505 -917 26 504 -917 28 504 -882 0 496 -882 -1 495 -885 9 495 -886 8 494 -888 16 494 -889 14 494 -893 21 493 -894 19 493 -898 24 492 -899 23 493 -904 25 489 -904 24 490 -909 25 486 -910 24 487 -913 23 483 -914 23 483 918 -6 -264 919 -6 -264 920 5 -266 920 11 -267 921 11 -267 921 17 -269 922 17 -268 922 22 -270 923 22 -270 924 27 -272 925 27 -271 926 32 -274 927 31 -274 928 35 -276 928 35 -277 919 5 -266 918 5 -267 919 11 -268 918 11 -269 920 16 -271 918 16 -271 921 21 -273 920 21 -273 922 25 -276 921 26 -276 923 28 -280 923 29 -279 925 31 -283 925 32 -283 919 -7 -263 922 4 -266 923 10 -267 925 15 -268 925 14 -268 928 19 -270 928 18 -270 932 21 -271 931 21 -272 935 23 -273 934 23 -274 938 25 -275 937 25 -276 920 -6 -264 921 7 -266 922 7 -266 922 15 -267 924 15 -266 924 23 -268 926 22 -267 926 30 -268 928 30 -268 927 37 -268 929 37 -269 929 44 -269 930 43 -270 930 49 -271 931 49 -272 921 -6 -263 920 7 -267 918 7 -268 919 15 -270 917 14 -271 918 20 -275 916 21 -275 917 24 -281 916 25 -280 918 27 -287 917 28 -287 920 27 -294 919 29 -293 922 27 -300 923 28 -299 920 -6 -263 923 6 -266 923 14 -269 924 13 -269 926 20 -272 925 19 -272 929 24 -276 928 23 -277 933 26 -280 932 25 -281 937 26 -284 936 26 -285 942 25 -288 941 25 -289 902 -5 -269 903 -6 -269 903 3 -269 903 3 -268 903 9 -268 904 9 -268 903 14 -269 904 14 -268 904 19 -270 905 19 -269 905 24 -270 906 24 -270 906 28 -272 907 28 -272 908 32 -274 908 32 -275 903 -5 -269 902 -6 -269 902 3 -269 901 3 -269 902 8 -270 900 8 -270 902 14 -271 900 14 -271 902 18 -273 901 19 -273 902 23 -276 902 23 -275 903 26 -278 903 27 -278 904 29 -282 905 30 -281 904 2 -269 905 8 -269 906 7 -270 907 12 -271 907 11 -271 909 16 -273 909 15 -274 912 18 -275 912 18 -276 915 20 -277 914 20 -278 918 22 -280 917 22 -281 904 -5 -268 903 5 -269 901 5 -270 901 12 -271 899 12 -271 899 18 -274 897 18 -273 897 23 -278 896 24 -277 897 26 -284 896 28 -283 897 28 -291 897 30 -290 898 29 -297 899 30 -297 904 -6 -269 904 5 -269 905 4 -269 905 12 -271 906 11 -271 907 18 -274 907 17 -275 909 22 -278 908 21 -279 912 24 -283 911 24 -284 915 25 -288 914 25 -289 919 24 -292 919 24 -293 894 2 -139 891 14 -139 892 14 -139 890 20 -139 890 20 -140 889 26 -139 889 26 -140 887 31 -139 887 31 -141 885 37 -140 885 36 -142 882 41 -141 882 41 -142 879 44 -142 878 44 -143 894 2 -140 894 2 -138 891 14 -138 891 14 -137 890 20 -137 890 20 -136 887 25 -137 887 25 -136 884 30 -137 885 30 -136 881 34 -137 882 35 -136 878 38 -137 873 40 -137 874 41 -138 891 14 -141 890 20 -141 890 19 -142 887 24 -143 887 23 -143 885 28 -145 885 27 -145 882 31 -148 882 30 -147 879 33 -150 879 32 -149 876 34 -152 876 34 -151 894 3 -139 891 17 -140 891 16 -141 889 25 -141 890 24 -143 888 32 -142 888 32 -144 887 39 -144 887 39 -146 887 46 -145 886 46 -146 885 53 -146 884 52 -147 883 59 -147 882 58 -147 894 3 -141 891 17 -139 891 16 -136 888 24 -137 888 23 -134 884 30 -133 885 30 -132 879 34 -131 880 35 -130 873 36 -129 874 38 -128 866 37 -128 867 38 -128 860 36 -128 860 37 -129 891 16 -140 891 16 -142 888 24 -141 888 23 -142 884 30 -142 883 28 -142 879 34 -143 878 32 -142 874 36 -145 873 35 -144 868 35 -148 867 35 -147 863 34 -151 862 34 -150 896 3 -122 896 12 -122 896 12 -123 896 18 -122 896 18 -123 895 23 -122 896 23 -124 895 28 -123 894 28 -124 893 33 -124 893 33 -125 891 38 -124 891 37 -125 888 41 -125 896 3 -123 896 2 -121 896 12 -120 895 18 -121 895 18 -119 894 23 -120 894 23 -119 892 28 -120 893 28 -119 889 32 -119 890 32 -119 887 36 -119 883 39 -119 896 3 -121 896 2 -122 895 12 -123 895 12 -124 894 17 -124 892 22 -125 891 21 -125 889 25 -127 889 24 -126 886 28 -129 886 27 -128 883 30 -130 882 30 -129 879 31 -132 879 31 -131 895 3 -124 895 14 -122 896 14 -120 894 21 -120 895 21 -118 892 27 -117 894 27 -115 889 32 -113 890 33 -113 884 36 -111 885 37 -110 878 38 -108 879 39 -109 871 38 -107 871 39 -108 895 2 -123 895 14 -123 894 13 -124 893 21 -124 892 20 -124 890 27 -124 889 26 -123 885 31 -124 884 30 -123 879 34 -125 879 33 -124 873 34 -127 873 34 -125 868 33 -129 867 34 -128 884 3 -174 883 2 -175 881 15 -175 879 21 -175 880 21 -176 878 27 -175 878 27 -176 876 32 -175 876 32 -176 874 37 -176 874 37 -177 871 42 -177 871 41 -178 868 45 -178 868 44 -178 883 3 -175 884 2 -174 881 15 -174 881 14 -172 879 21 -173 879 20 -172 877 26 -173 877 26 -171 874 31 -172 871 35 -172 867 38 -172 867 39 -172 863 41 -173 863 42 -173 883 3 -174 881 14 -177 879 20 -177 879 19 -178 876 25 -179 876 24 -179 874 28 -181 874 28 -180 871 31 -183 868 33 -186 868 33 -185 865 35 -188 865 35 -187 884 3 -175 883 2 -176 880 17 -176 880 17 -177 878 25 -177 879 25 -178 877 33 -178 877 32 -180 876 40 -179 876 40 -181 876 47 -180 875 47 -182 874 53 -181 873 53 -182 872 59 -182 871 59 -182 883 3 -177 880 17 -175 880 17 -172 877 24 -172 878 24 -170 874 30 -169 875 30 -167 869 34 -166 870 35 -165 863 37 -164 863 38 -164 856 37 -163 856 39 -163 849 37 -163 849 38 -164 884 2 -176 880 16 -177 877 24 -177 877 23 -178 873 30 -178 873 29 -177 868 34 -179 868 33 -178 863 36 -181 862 35 -179 857 36 -183 857 36 -182 852 35 -186 851 35 -185 886 3 -158 886 13 -158 886 12 -159 886 18 -158 886 18 -160 885 24 -158 885 24 -160 884 29 -159 884 29 -160 883 34 -160 883 34 -161 881 38 -160 880 38 -161 878 42 -160 877 41 -161 885 3 -159 886 3 -157 886 12 -156 885 18 -157 885 18 -155 884 23 -156 884 24 -155 882 28 -156 883 29 -155 879 32 -155 880 33 -155 876 36 -155 877 37 -155 873 39 -154 873 40 -155 886 4 -157 885 3 -158 885 13 -159 885 12 -160 884 18 -160 883 17 -160 882 22 -161 881 21 -161 879 26 -163 878 25 -162 876 28 -164 875 28 -163 872 30 -166 872 30 -165 869 32 -167 869 32 -166 885 4 -160 885 15 -158 886 14 -156 884 22 -156 885 22 -154 882 28 -153 884 28 -151 879 33 -149 881 33 -149 874 36 -146 875 37 -146 868 38 -144 869 40 -144 861 39 -142 862 40 -143 886 4 -158 885 3 -159 885 15 -159 884 14 -160 883 22 -160 882 21 -160 879 28 -160 878 26 -159 875 32 -160 874 31 -159 869 34 -161 869 34 -159 863 35 -162 863 35 -161 857 34 -164 857 34 -163 241 2 -895 243 14 -893 242 14 -893 244 20 -892 243 20 -892 245 26 -891 244 26 -891 246 31 -890 245 31 -889 246 37 -888 246 36 -887 248 41 -885 247 41 -884 250 44 -882 249 44 -882 240 2 -894 241 2 -896 243 14 -894 244 14 -895 245 20 -893 246 20 -894 247 25 -892 248 25 -893 249 30 -890 249 30 -891 251 34 -888 251 35 -889 254 38 -885 254 38 -886 257 40 -882 256 41 -882 240 2 -895 241 14 -892 242 20 -890 242 19 -890 243 24 -887 243 23 -887 243 28 -884 244 27 -884 244 31 -880 244 30 -881 244 33 -877 245 32 -877 245 34 -873 246 34 -874 240 3 -895 242 17 -892 241 16 -891 243 25 -890 241 24 -889 243 32 -888 241 32 -887 242 39 -887 241 39 -885 242 46 -886 242 46 -884 242 53 -884 243 52 -883 244 59 -882 245 58 -881 239 3 -893 243 17 -893 245 16 -895 247 24 -893 248 23 -895 251 30 -892 252 30 -894 257 34 -891 257 35 -893 263 36 -888 263 38 -889 268 37 -885 268 38 -885 273 36 -880 273 37 -880 241 3 -895 239 2 -894 242 16 -892 244 24 -889 243 23 -888 246 30 -886 247 28 -886 249 34 -882 250 32 -882 251 36 -876 253 35 -877 254 35 -871 255 35 -871 256 34 -865 257 34 -865 251 3 -909 250 3 -909 250 12 -908 250 18 -908 249 18 -908 250 23 -908 250 23 -907 251 28 -907 250 28 -906 251 33 -906 251 33 -905 252 38 -904 252 37 -903 254 41 -902 255 41 -901 250 3 -908 251 2 -910 251 12 -909 252 12 -910 252 18 -909 253 18 -910 253 23 -909 253 23 -910 255 28 -908 255 28 -909 257 32 -907 256 32 -907 259 36 -905 262 39 -903 250 2 -908 250 12 -907 250 17 -906 251 17 -905 251 22 -904 252 21 -904 252 25 -901 253 24 -901 253 28 -897 254 27 -898 255 30 -894 256 30 -895 256 31 -891 257 31 -891 250 3 -907 251 14 -908 252 14 -910 253 21 -909 254 21 -911 257 27 -910 256 27 -912 261 32 -910 261 33 -912 267 36 -909 266 37 -910 273 38 -907 272 39 -907 279 38 -903 278 39 -903 250 2 -908 250 14 -907 250 13 -906 251 21 -905 252 20 -905 254 27 -903 255 26 -903 257 31 -900 258 30 -900 261 34 -895 262 33 -896 264 34 -890 265 34 -891 267 33 -885 268 34 -886 215 3 -884 215 2 -884 214 15 -882 214 21 -880 213 21 -881 214 27 -879 213 27 -879 213 32 -877 212 32 -878 212 37 -875 211 37 -876 210 42 -873 209 41 -873 209 45 -870 208 44 -870 214 3 -884 216 2 -884 215 15 -882 216 14 -881 215 21 -880 217 20 -880 215 26 -877 217 26 -877 215 31 -875 216 31 -875 215 35 -871 215 35 -872 214 38 -868 214 39 -868 213 41 -864 213 42 -864 216 3 -884 214 2 -885 212 14 -882 212 20 -880 211 19 -880 210 25 -878 210 24 -878 207 28 -876 204 31 -874 205 31 -873 201 33 -871 202 33 -871 199 35 -869 200 35 -868 215 3 -885 213 2 -884 213 17 -881 212 17 -882 212 25 -880 210 25 -881 210 33 -879 208 32 -880 209 40 -878 207 40 -878 208 47 -878 206 47 -877 206 53 -877 206 53 -876 205 59 -874 205 59 -873 213 3 -884 214 17 -881 217 17 -881 216 24 -878 218 24 -878 218 30 -874 220 30 -874 220 34 -869 222 35 -869 221 37 -862 222 38 -863 221 37 -855 221 39 -856 220 37 -849 220 38 -849 213 2 -885 211 16 -881 211 24 -879 211 23 -878 210 30 -875 210 29 -874 208 34 -870 209 33 -870 205 36 -865 206 35 -864 202 36 -860 203 36 -859 198 35 -855 199 35 -854 232 3 -884 231 13 -884 231 12 -884 231 18 -884 230 18 -884 231 24 -883 230 24 -884 230 29 -883 229 29 -883 230 34 -881 228 34 -881 229 38 -880 228 38 -879 228 42 -877 227 41 -876 231 3 -884 233 3 -884 232 13 -884 233 12 -883 233 18 -883 234 18 -883 233 23 -881 234 24 -882 233 28 -879 234 29 -880 233 32 -877 234 33 -878 233 36 -874 233 37 -875 233 39 -870 233 40 -871 232 4 -884 231 13 -883 230 12 -883 229 18 -882 229 17 -882 228 22 -880 228 21 -880 226 26 -878 226 25 -877 224 28 -875 222 30 -872 220 32 -869 220 32 -868 230 4 -883 231 15 -883 234 14 -883 233 22 -882 235 22 -883 236 28 -879 238 28 -881 239 33 -875 240 33 -877 241 36 -870 241 37 -871 242 38 -864 242 40 -865 243 39 -857 242 40 -857 230 3 -883 230 15 -883 229 14 -882 229 22 -881 229 21 -880 229 28 -878 229 26 -877 228 32 -873 229 31 -872 226 34 -868 227 34 -867 224 35 -862 225 35 -861 221 34 -857 222 34 -856 -47 -7 -975 -47 -8 -975 -45 4 -977 -44 10 -978 -44 10 -977 -43 15 -980 -43 16 -978 -42 21 -981 -41 21 -980 -40 26 -981 -39 26 -980 -37 30 -982 -34 34 -984 -33 33 -983 -46 -7 -974 -48 -8 -975 -46 4 -978 -46 3 -979 -45 9 -980 -46 9 -981 -43 14 -982 -44 15 -983 -41 19 -984 -42 20 -985 -39 23 -986 -39 24 -986 -36 27 -988 -32 29 -990 -32 30 -990 -47 -8 -974 -44 3 -975 -43 9 -977 -42 9 -976 -40 14 -977 -40 13 -977 -37 18 -977 -37 17 -977 -33 21 -976 -33 20 -977 -30 23 -976 -30 23 -977 -26 25 -976 -26 24 -977 -47 -7 -974 -44 6 -977 -44 6 -976 -43 14 -977 -42 14 -976 -41 22 -978 -40 22 -976 -40 29 -978 -39 29 -976 -39 36 -978 -38 36 -977 -38 43 -978 -37 42 -978 -36 49 -979 -35 48 -980 -46 -7 -973 -45 6 -977 -46 5 -980 -44 13 -982 -46 12 -983 -43 18 -987 -44 18 -988 -40 22 -992 -42 23 -993 -36 24 -997 -37 26 -997 -31 25 -1002 -31 26 -1002 -25 24 -1005 -25 25 -1005 -43 5 -975 -41 13 -978 -41 12 -977 -38 19 -980 -38 18 -980 -33 23 -982 -33 22 -983 -28 25 -983 -28 24 -984 -22 26 -984 -22 25 -985 -15 25 -984 -15 25 -985 -58 -8 -988 -58 0 -988 -58 6 -989 -58 6 -988 -58 11 -989 -57 11 -988 -57 16 -990 -56 16 -989 -56 21 -990 -55 21 -990 -54 26 -991 -53 25 -991 -52 29 -993 -51 29 -993 -57 -8 -987 -58 -9 -988 -58 0 -989 -59 0 -990 -58 5 -990 -59 5 -991 -58 10 -992 -59 11 -993 -57 15 -994 -58 15 -994 -55 19 -996 -56 20 -996 -53 23 -998 -54 24 -998 -50 26 -1001 -50 27 -1000 -57 -9 -987 -57 0 -988 -56 0 -988 -56 5 -988 -55 5 -988 -53 10 -989 -53 9 -989 -50 13 -989 -50 13 -990 -47 16 -990 -47 16 -991 -43 18 -990 -44 18 -991 -40 20 -991 -40 20 -992 -56 -8 -986 -57 2 -989 -59 2 -990 -58 9 -992 -60 8 -993 -59 15 -996 -61 15 -996 -58 19 -1001 -59 20 -1001 -55 22 -1007 -56 23 -1006 -51 24 -1012 -52 25 -1011 -46 24 -1017 -46 26 -1016 -57 -9 -987 -57 2 -988 -55 1 -988 -55 9 -989 -54 8 -990 -52 15 -991 -52 14 -992 -48 19 -994 -48 18 -995 -43 22 -997 -44 21 -998 -38 22 -999 -38 22 -1000 -32 21 -1000 -32 22 -1001 -72 -7 -993 -71 -8 -994 -72 4 -996 -71 4 -996 -72 10 -998 -71 10 -997 -72 15 -1000 -71 16 -999 -71 21 -1001 -70 21 -1001 -70 26 -1003 -69 26 -1003 -69 30 -1006 -68 30 -1006 -68 34 -1009 -67 33 -1009 -71 -7 -993 -72 -8 -994 -72 4 -997 -74 3 -997 -73 9 -999 -75 9 -999 -73 14 -1001 -75 15 -1001 -73 19 -1004 -74 20 -1004 -73 23 -1007 -73 24 -1007 -72 27 -1011 -71 29 -1015 -70 30 -1015 -72 -7 -994 -71 -8 -993 -70 3 -996 -70 9 -998 -69 9 -998 -67 14 -1000 -67 13 -1000 -65 18 -1002 -65 17 -1002 -62 21 -1004 -63 20 -1004 -59 23 -1006 -60 23 -1006 -57 25 -1008 -57 24 -1009 -70 -7 -993 -71 6 -997 -70 6 -996 -70 14 -998 -68 14 -997 -69 22 -999 -67 22 -999 -68 29 -1000 -66 29 -1000 -68 36 -1001 -66 36 -1001 -67 43 -1002 -66 42 -1003 -66 49 -1004 -65 48 -1005 -69 -7 -993 -72 -8 -993 -74 5 -998 -74 13 -1001 -76 12 -1001 -76 18 -1005 -78 18 -1005 -78 22 -1011 -79 23 -1010 -78 24 -1017 -79 26 -1017 -77 25 -1024 -78 26 -1024 -75 24 -1031 -75 25 -1031 -71 -7 -994 -70 6 -997 -69 5 -996 -69 13 -1000 -68 12 -1000 -68 19 -1003 -68 18 -1004 -66 23 -1008 -66 22 -1009 -62 25 -1013 -64 24 -1013 -58 26 -1017 -59 25 -1018 -54 25 -1021 -55 25 -1022 -88 -8 -996 -88 0 -996 -89 6 -997 -88 6 -996 -89 11 -997 -88 11 -997 -89 16 -998 -88 16 -998 -88 21 -999 -87 21 -999 -88 26 -1001 -87 25 -1002 -87 29 -1004 -86 29 -1005 -87 -8 -996 -89 -9 -996 -89 0 -997 -91 0 -997 -90 5 -998 -92 5 -998 -91 10 -999 -92 11 -999 -91 15 -1002 -92 15 -1001 -91 19 -1004 -92 20 -1003 -91 23 -1007 -92 24 -1006 -91 26 -1011 -91 27 -1010 -89 -8 -996 -87 -9 -996 -88 0 -997 -87 0 -997 -87 5 -998 -86 5 -998 -85 10 -1000 -85 9 -1000 -84 13 -1002 -84 13 -1003 -81 16 -1005 -82 16 -1005 -79 18 -1008 -80 18 -1008 -77 20 -1011 -78 20 -1011 -86 -8 -996 -89 2 -997 -91 2 -997 -91 9 -999 -93 8 -998 -94 15 -1002 -96 15 -1001 -97 19 -1006 -98 20 -1005 -99 22 -1012 -99 23 -1011 -99 24 -1019 -99 25 -1018 -99 24 -1025 -98 26 -1025 -87 -9 -996 -88 2 -997 -86 1 -998 -87 9 -999 -86 8 -1000 -86 15 -1003 -87 14 -1004 -85 19 -1007 -86 18 -1008 -83 22 -1013 -84 21 -1013 -80 22 -1018 -81 22 -1019 -77 21 -1023 -78 22 -1023 -173 -6 -920 -173 -7 -920 -175 5 -919 -176 11 -918 -177 11 -918 -177 17 -917 -178 17 -918 -179 22 -916 -180 22 -917 -181 27 -915 -182 27 -916 -184 32 -914 -184 31 -914 -187 35 -912 -187 34 -913 -174 -6 -921 -172 -7 -920 -175 5 -918 -174 5 -917 -176 11 -916 -174 10 -915 -177 16 -914 -176 16 -914 -179 21 -912 -178 21 -912 -181 25 -910 -180 26 -910 -184 28 -908 -184 29 -908 -187 31 -905 -187 32 -906 -174 -7 -921 -176 5 -919 -177 4 -920 -178 10 -919 -179 10 -919 -181 15 -919 -181 14 -919 -184 18 -918 -188 21 -918 -192 23 -918 -191 23 -917 -195 25 -918 -195 25 -917 -173 -6 -921 -176 7 -919 -177 7 -920 -178 15 -918 -179 15 -920 -180 23 -919 -181 22 -920 -182 30 -919 -183 30 -920 -183 37 -919 -184 37 -920 -184 44 -919 -186 43 -919 -187 49 -918 -188 49 -918 -175 -6 -922 -176 7 -918 -174 7 -916 -176 14 -915 -174 14 -913 -177 20 -910 -175 20 -909 -178 24 -904 -177 25 -904 -182 27 -899 -181 28 -899 -186 27 -893 -186 29 -894 -191 27 -889 -191 28 -889 -174 -6 -922 -177 7 -919 -178 6 -920 -180 14 -918 -180 13 -918 -183 20 -916 -183 19 -915 -187 24 -913 -187 23 -912 -193 26 -911 -192 25 -910 -198 26 -909 -198 26 -908 -204 25 -908 -204 25 -906 -160 -6 -909 -161 3 -910 -161 9 -910 -161 8 -911 -161 14 -909 -162 14 -911 -162 19 -909 -163 19 -910 -163 24 -909 -164 24 -909 -165 28 -908 -166 28 -908 -168 32 -906 -168 31 -906 -161 -5 -910 -160 3 -909 -159 2 -908 -160 8 -908 -159 8 -907 -161 13 -907 -159 14 -906 -162 18 -905 -161 19 -905 -163 23 -903 -162 23 -904 -165 26 -901 -164 27 -901 -167 29 -898 -167 30 -899 -160 -5 -909 -161 -6 -910 -162 2 -910 -163 8 -910 -164 7 -910 -165 12 -909 -166 11 -909 -168 16 -908 -168 15 -908 -172 18 -907 -175 20 -906 -175 20 -905 -179 22 -905 -178 22 -904 -162 -5 -910 -161 5 -909 -159 4 -908 -160 12 -907 -158 12 -906 -159 18 -903 -157 18 -903 -159 23 -898 -158 24 -899 -161 26 -893 -160 28 -894 -164 28 -887 -163 30 -888 -168 29 -882 -168 30 -882 -162 -6 -910 -162 5 -910 -163 4 -910 -164 12 -909 -165 11 -908 -166 18 -907 -166 16 -906 -170 22 -904 -170 21 -902 -175 24 -900 -174 24 -899 -180 25 -897 -179 25 -896 -185 24 -895 -185 24 -894 -311 3 -969 -311 2 -970 -312 14 -974 -313 20 -976 -312 20 -976 -313 25 -979 -312 25 -979 -313 30 -982 -312 30 -981 -313 35 -984 -311 35 -984 -312 39 -988 -311 39 -988 -312 42 -991 -311 41 -992 -310 3 -970 -312 2 -969 -314 13 -974 -314 19 -977 -315 19 -977 -315 24 -980 -316 24 -980 -316 28 -983 -317 29 -983 -316 32 -987 -317 32 -987 -316 35 -991 -316 36 -996 -316 37 -996 -312 3 -970 -310 2 -969 -311 14 -974 -310 14 -974 -310 19 -977 -309 19 -977 -309 23 -980 -307 27 -983 -307 26 -983 -305 29 -986 -306 29 -986 -303 31 -989 -304 31 -990 -301 32 -992 -302 32 -993 -309 2 -970 -311 16 -975 -310 16 -975 -311 24 -978 -309 24 -978 -310 31 -980 -308 31 -980 -310 39 -982 -308 38 -983 -309 45 -984 -308 45 -985 -309 52 -986 -308 51 -988 -309 57 -990 -309 56 -991 -309 3 -970 -311 2 -969 -312 16 -975 -314 15 -975 -315 23 -979 -317 22 -978 -319 27 -984 -321 27 -983 -322 30 -989 -323 31 -988 -324 31 -995 -325 33 -995 -325 31 -1002 -325 33 -1002 -325 29 -1009 -324 30 -1009 -311 3 -970 -309 2 -969 -309 15 -975 -310 23 -979 -310 22 -979 -310 28 -984 -311 27 -984 -309 31 -990 -310 30 -990 -308 33 -995 -309 32 -995 -305 32 -1001 -306 31 -1001 -302 30 -1006 -303 30 -1006 -328 2 -968 -327 1 -968 -328 11 -969 -327 11 -969 -328 17 -970 -327 17 -970 -329 22 -971 -328 22 -971 -329 27 -973 -328 27 -973 -329 31 -975 -328 31 -975 -329 36 -978 -328 35 -978 -329 39 -981 -328 38 -982 -327 2 -968 -328 1 -967 -329 11 -969 -330 10 -969 -330 16 -971 -331 16 -970 -331 21 -973 -332 21 -972 -332 25 -975 -333 26 -975 -333 29 -978 -333 30 -978 -334 32 -982 -334 33 -981 -335 35 -986 -334 35 -985 -328 2 -967 -327 10 -970 -327 16 -972 -326 15 -972 -326 20 -974 -326 19 -975 -325 23 -978 -325 22 -978 -324 25 -981 -324 25 -982 -322 27 -985 -323 27 -985 -321 28 -989 -322 28 -989 -326 2 -968 -328 13 -970 -331 12 -969 -331 19 -972 -333 19 -971 -335 25 -975 -337 25 -973 -339 28 -979 -340 29 -977 -342 31 -984 -343 32 -983 -345 32 -991 -345 33 -990 -346 31 -997 -346 32 -997 -326 1 -968 -327 13 -970 -326 12 -971 -327 19 -973 -327 18 -974 -328 25 -978 -328 23 -978 -328 28 -983 -329 27 -983 -327 30 -989 -329 29 -989 -326 29 -995 -328 29 -995 -324 28 -1000 -325 28 -1001 -270 5 -956 -269 5 -956 -267 16 -960 -266 22 -962 -265 22 -961 -264 27 -964 -264 28 -963 -263 33 -966 -262 33 -965 -260 37 -968 -259 37 -967 -258 41 -970 -257 41 -969 -254 44 -972 -269 16 -961 -266 22 -963 -268 21 -964 -265 26 -966 -266 26 -967 -263 31 -969 -264 31 -970 -260 34 -972 -261 35 -972 -258 37 -975 -258 38 -975 -254 39 -978 -254 40 -978 -270 5 -957 -269 5 -955 -266 16 -959 -264 22 -961 -263 21 -960 -261 26 -962 -261 25 -962 -257 29 -963 -257 28 -963 -253 32 -963 -254 31 -964 -250 34 -964 -250 33 -965 -246 35 -965 -246 35 -966 -268 5 -955 -266 19 -960 -265 18 -959 -264 26 -962 -263 26 -960 -261 34 -963 -260 34 -961 -260 41 -964 -258 41 -963 -258 48 -965 -257 48 -965 -256 54 -967 -255 54 -967 -254 59 -969 -253 59 -969 -266 19 -961 -268 18 -962 -266 25 -966 -268 24 -967 -265 30 -971 -267 30 -972 -263 33 -978 -265 34 -978 -260 34 -984 -261 35 -984 -256 33 -989 -256 35 -989 -251 32 -993 -251 33 -993 -265 19 -960 -264 18 -959 -262 25 -962 -262 24 -962 -259 31 -966 -259 29 -966 -254 34 -969 -255 32 -970 -249 35 -972 -250 34 -973 -243 34 -973 -244 34 -975 -237 33 -975 -238 33 -976 -283 4 -967 -282 4 -966 -282 13 -968 -282 13 -967 -282 19 -969 -281 19 -968 -281 24 -970 -280 24 -969 -280 29 -971 -279 29 -971 -278 34 -973 -277 34 -972 -276 38 -974 -275 37 -974 -274 41 -977 -273 40 -977 -284 13 -969 -282 18 -970 -284 18 -971 -282 23 -973 -283 23 -973 -280 28 -975 -281 28 -975 -279 31 -978 -280 32 -978 -277 35 -981 -275 37 -984 -275 38 -984 -281 13 -968 -280 13 -967 -279 18 -969 -279 17 -969 -277 22 -970 -276 21 -971 -274 25 -972 -270 28 -973 -270 27 -974 -267 29 -975 -267 29 -976 -263 30 -976 -263 30 -977 -281 5 -966 -281 15 -969 -284 15 -970 -282 22 -972 -284 21 -973 -283 27 -977 -285 27 -977 -283 31 -983 -284 32 -982 -281 33 -989 -282 35 -988 -278 34 -995 -279 36 -994 -274 33 -1001 -274 35 -1000 -283 5 -967 -281 4 -966 -281 15 -968 -279 14 -968 -278 22 -970 -278 21 -971 -276 27 -974 -276 26 -975 -272 31 -978 -272 29 -979 -267 32 -981 -268 31 -983 -262 32 -985 -263 31 -986 -257 30 -987 -257 30 -988 -637 6 -630 -637 5 -630 -634 17 -626 -635 17 -626 -633 23 -625 -634 23 -624 -631 28 -622 -633 28 -622 -630 33 -620 -632 33 -620 -630 38 -617 -631 38 -617 -629 42 -614 -630 42 -613 -628 45 -610 -629 44 -610 -638 6 -630 -636 5 -631 -634 17 -627 -632 16 -627 -632 22 -625 -630 22 -625 -630 27 -622 -628 27 -623 -628 31 -619 -627 32 -620 -626 35 -616 -625 35 -616 -624 38 -612 -622 40 -608 -623 40 -608 -636 6 -630 -638 5 -630 -636 17 -626 -635 22 -623 -636 22 -623 -635 27 -620 -635 26 -620 -636 30 -616 -635 29 -616 -637 32 -613 -636 32 -613 -637 34 -609 -636 34 -609 -638 35 -605 -637 35 -605 -638 5 -629 -635 19 -625 -636 19 -625 -634 27 -622 -636 27 -622 -634 34 -620 -636 34 -619 -633 42 -618 -635 41 -617 -633 48 -616 -634 48 -615 -633 55 -614 -633 54 -613 -632 60 -611 -631 59 -609 -639 6 -629 -637 5 -631 -634 19 -625 -632 18 -627 -630 26 -623 -628 25 -624 -624 30 -620 -623 31 -622 -620 33 -616 -619 34 -617 -615 34 -611 -615 36 -612 -612 34 -605 -612 36 -605 -610 32 -599 -610 33 -598 -639 5 -630 -636 18 -625 -634 26 -621 -634 25 -621 -632 31 -617 -632 30 -616 -631 35 -611 -630 33 -611 -631 36 -605 -629 35 -605 -631 35 -599 -630 34 -599 -632 33 -593 -631 33 -593 -622 5 -638 -621 14 -637 -622 14 -637 -620 20 -636 -622 20 -636 -619 25 -635 -621 25 -635 -619 30 -634 -620 30 -633 -618 35 -632 -619 34 -631 -617 39 -629 -618 38 -629 -616 42 -626 -616 41 -625 -623 5 -638 -621 4 -639 -619 13 -638 -619 19 -636 -617 19 -637 -617 24 -635 -616 24 -636 -615 28 -633 -615 29 -634 -613 32 -630 -613 33 -631 -611 35 -627 -611 36 -628 -609 38 -624 -622 5 -639 -623 4 -638 -622 13 -636 -621 19 -634 -622 18 -634 -621 23 -631 -621 22 -631 -621 26 -628 -620 25 -628 -621 28 -624 -620 28 -624 -621 30 -620 -620 30 -620 -621 31 -616 -620 31 -616 -624 5 -637 -622 4 -638 -621 16 -636 -619 15 -638 -617 23 -636 -616 22 -637 -612 28 -634 -612 28 -636 -607 32 -632 -607 32 -633 -602 34 -628 -602 35 -629 -598 35 -623 -598 36 -624 -594 34 -617 -594 35 -617 -623 4 -637 -621 16 -636 -622 15 -634 -620 22 -633 -620 21 -632 -618 28 -629 -617 26 -629 -616 31 -624 -615 30 -624 -614 33 -618 -613 32 -618 -613 32 -612 -612 32 -612 -613 31 -606 -612 31 -606 -942 5 -31 -942 4 -31 -941 16 -36 -940 16 -35 -940 22 -38 -939 22 -37 -939 27 -40 -938 28 -40 -938 32 -43 -937 32 -42 -936 37 -45 -935 37 -44 -934 41 -47 -933 41 -47 -932 44 -51 -931 43 -51 -941 5 -31 -943 4 -31 -943 15 -37 -941 21 -39 -942 21 -40 -940 26 -42 -942 26 -43 -939 30 -46 -940 31 -46 -938 34 -49 -936 37 -53 -934 39 -57 -934 39 -56 -942 5 -32 -941 4 -31 -939 16 -35 -938 21 -37 -937 21 -37 -935 26 -39 -935 25 -39 -932 29 -41 -932 28 -41 -929 31 -43 -925 33 -44 -926 33 -45 -922 34 -46 -922 34 -47 -940 4 -31 -939 18 -36 -939 18 -35 -938 26 -39 -936 26 -37 -936 34 -40 -934 33 -39 -935 41 -42 -933 40 -41 -934 47 -43 -932 47 -43 -932 54 -45 -931 53 -46 -930 59 -48 -929 58 -49 -940 5 -30 -940 18 -37 -942 17 -38 -941 25 -41 -943 24 -42 -942 29 -47 -944 30 -47 -942 32 -54 -944 33 -53 -941 34 -60 -942 35 -60 -938 33 -67 -939 35 -67 -935 31 -72 -935 33 -72 -938 18 -35 -937 25 -39 -936 24 -39 -934 30 -44 -934 29 -44 -931 34 -48 -932 32 -49 -927 35 -52 -928 34 -53 -922 34 -55 -922 34 -57 -916 32 -58 -917 32 -60 -958 4 -38 -957 4 -37 -957 13 -39 -957 13 -38 -957 19 -40 -956 19 -39 -957 24 -41 -956 24 -41 -956 29 -43 -955 29 -42 -955 34 -45 -954 33 -44 -954 38 -47 -953 37 -47 -952 41 -50 -951 40 -50 -958 3 -38 -958 13 -39 -959 12 -40 -958 18 -41 -960 18 -42 -958 23 -44 -959 23 -44 -958 27 -47 -959 28 -46 -957 31 -50 -958 32 -49 -956 34 -53 -956 35 -52 -955 37 -57 -955 37 -56 -957 3 -37 -955 12 -39 -955 18 -41 -954 17 -41 -953 22 -43 -953 21 -43 -950 25 -45 -951 24 -46 -947 27 -47 -948 27 -48 -944 29 -50 -945 29 -51 -942 30 -53 -955 4 -37 -957 15 -40 -959 14 -40 -959 22 -43 -961 21 -43 -961 27 -48 -963 27 -47 -962 31 -53 -963 32 -52 -962 33 -59 -963 34 -58 -961 34 -66 -962 35 -65 -959 33 -73 -959 34 -72 -956 3 -37 -956 15 -40 -955 14 -40 -954 21 -42 -954 20 -43 -953 27 -46 -953 25 -47 -950 30 -51 -951 29 -52 -947 32 -56 -948 31 -57 -943 32 -61 -944 31 -62 -939 30 -64 -939 30 -65 -895 9 -179 -895 8 -179 -890 20 -179 -891 20 -179 -888 26 -179 -888 26 -178 -885 31 -179 -886 31 -178 -883 36 -178 -883 36 -177 -880 41 -177 -881 41 -176 -877 45 -176 -877 45 -175 -874 48 -174 -874 47 -173 -895 9 -178 -895 8 -180 -890 19 -181 -887 25 -180 -887 25 -182 -884 30 -180 -884 30 -182 -880 34 -180 -880 35 -181 -877 38 -179 -877 38 -180 -872 41 -179 -873 41 -179 -868 42 -177 -869 43 -177 -895 9 -180 -895 8 -178 -890 20 -178 -891 20 -177 -888 25 -176 -886 29 -174 -883 33 -172 -883 32 -172 -881 35 -169 -880 35 -169 -878 37 -166 -877 37 -167 -875 38 -163 -875 38 -164 -895 8 -177 -890 22 -178 -890 22 -177 -887 30 -177 -888 30 -175 -885 37 -176 -886 37 -174 -883 45 -175 -883 44 -173 -881 51 -174 -881 51 -172 -879 58 -173 -878 57 -172 -876 63 -172 -875 62 -171 -895 9 -177 -889 22 -179 -889 21 -181 -885 29 -181 -885 28 -183 -879 33 -183 -880 33 -185 -873 36 -185 -874 37 -186 -867 37 -185 -867 39 -186 -860 37 -184 -860 39 -185 -854 35 -182 -853 36 -182 -896 8 -177 -889 22 -178 -890 21 -176 -886 29 -176 -886 28 -175 -881 34 -175 -881 33 -175 -876 37 -172 -876 36 -173 -871 39 -169 -870 38 -170 -866 38 -165 -866 37 -166 -862 36 -161 -861 36 -162 -893 8 -196 -893 7 -195 -891 17 -196 -892 17 -195 -890 23 -196 -891 23 -195 -889 28 -196 -889 28 -195 -887 33 -196 -887 33 -195 -885 37 -195 -885 37 -194 -883 42 -194 -882 41 -193 -879 45 -193 -879 44 -193 -893 8 -195 -893 7 -196 -891 16 -198 -889 22 -197 -889 22 -199 -887 27 -198 -887 27 -199 -884 31 -198 -885 32 -199 -881 35 -198 -882 36 -199 -877 38 -198 -878 39 -198 -873 41 -198 -874 41 -198 -891 17 -195 -891 16 -194 -889 22 -194 -889 21 -193 -886 26 -192 -886 25 -192 -883 29 -191 -883 28 -191 -881 31 -188 -880 31 -189 -877 33 -186 -877 33 -187 -874 34 -184 -874 34 -185 -893 8 -194 -890 19 -196 -890 18 -198 -888 25 -198 -888 25 -200 -884 31 -201 -885 31 -203 -879 34 -204 -880 35 -205 -873 37 -205 -874 38 -206 -866 38 -206 -867 39 -206 -859 37 -206 -859 38 -205 -893 7 -194 -890 19 -195 -890 18 -193 -887 25 -194 -886 24 -193 -883 31 -193 -882 29 -194 -878 34 -192 -877 33 -193 -872 36 -190 -871 35 -191 -867 35 -187 -866 35 -189 -862 34 -184 -861 34 -185 -888 8 -233 -888 7 -233 -884 19 -231 -881 25 -230 -882 25 -230 -879 30 -229 -880 31 -228 -877 36 -227 -878 36 -226 -876 40 -225 -876 40 -224 -873 44 -222 -874 44 -221 -871 47 -219 -888 8 -232 -887 7 -234 -883 19 -231 -882 19 -233 -880 25 -231 -879 24 -232 -877 29 -229 -877 29 -230 -874 33 -227 -874 34 -228 -871 37 -225 -871 38 -226 -868 40 -223 -868 41 -223 -865 42 -219 -865 43 -219 -887 8 -234 -885 19 -230 -883 25 -228 -883 24 -227 -881 29 -225 -882 28 -225 -880 32 -221 -880 31 -222 -879 35 -218 -879 34 -218 -879 37 -214 -878 36 -214 -878 38 -210 -877 38 -211 -883 22 -230 -884 21 -229 -881 29 -228 -883 29 -227 -880 37 -226 -882 37 -224 -879 44 -224 -880 44 -222 -878 51 -222 -878 50 -221 -876 57 -221 -876 56 -219 -874 62 -218 -873 62 -217 -889 8 -231 -883 21 -230 -881 21 -232 -878 28 -230 -877 27 -232 -872 33 -230 -871 33 -232 -866 36 -228 -865 37 -230 -860 37 -226 -859 38 -226 -854 36 -222 -854 38 -222 -849 35 -217 -849 36 -217 -887 8 -233 -889 8 -232 -885 21 -228 -881 28 -226 -881 27 -226 -877 33 -223 -877 32 -223 -874 37 -219 -873 35 -219 -871 38 -214 -870 37 -214 -869 37 -208 -867 37 -208 -867 36 -202 -866 36 -203 -878 7 -247 -876 16 -246 -877 16 -246 -875 22 -246 -876 22 -246 -874 27 -246 -875 27 -245 -873 32 -245 -873 32 -244 -871 37 -243 -872 37 -242 -870 41 -241 -870 40 -240 -867 44 -239 -867 43 -238 -878 7 -246 -877 7 -248 -876 16 -247 -875 16 -248 -874 21 -247 -873 21 -248 -871 26 -246 -871 26 -247 -869 30 -245 -869 31 -246 -866 34 -244 -866 35 -245 -863 37 -242 -863 38 -242 -859 40 -240 -860 41 -240 -877 16 -245 -875 21 -244 -875 20 -243 -874 25 -241 -873 24 -241 -872 28 -238 -871 28 -238 -870 31 -235 -870 30 -235 -869 32 -231 -868 32 -232 -867 33 -228 -866 33 -228 -879 7 -245 -877 7 -247 -876 18 -246 -874 18 -248 -872 25 -247 -871 24 -249 -867 30 -248 -867 30 -250 -862 34 -248 -862 35 -249 -856 36 -246 -856 38 -247 -849 37 -244 -850 39 -244 -843 36 -240 -844 38 -240 -878 8 -247 -878 7 -246 -876 18 -245 -876 17 -244 -874 25 -243 -873 24 -242 -870 30 -240 -869 29 -240 -866 34 -237 -865 32 -237 -862 35 -233 -861 34 -233 -859 35 -228 -857 34 -228 -856 33 -222 -855 33 -223 -899 5 11 -898 5 11 -895 17 8 -893 23 7 -893 23 8 -891 28 5 -891 28 6 -889 33 4 -888 33 5 -886 38 4 -885 38 5 -883 42 3 -882 41 4 -879 45 2 -878 44 2 -898 5 12 -899 5 10 -896 16 6 -893 22 5 -894 22 4 -891 27 3 -891 27 2 -888 31 1 -888 31 0 -884 35 0 -885 35 0 -880 37 -1 -881 38 -1 -876 39 -3 -876 40 -3 -899 5 12 -895 17 9 -894 16 10 -892 22 9 -892 21 9 -888 26 9 -889 25 9 -885 30 9 -885 29 9 -881 32 10 -877 34 11 -877 34 10 -874 35 12 -874 35 11 -899 6 11 -894 19 9 -894 19 10 -891 27 8 -891 27 9 -889 34 7 -888 34 9 -887 41 7 -886 41 9 -885 48 7 -883 48 8 -882 54 6 -881 54 7 -879 60 5 -878 59 5 -898 6 13 -894 19 8 -895 18 5 -892 25 3 -893 25 1 -889 30 -1 -890 30 -2 -885 33 -6 -886 34 -7 -880 34 -10 -880 36 -11 -874 34 -14 -874 35 -14 -868 32 -16 -867 33 -15 -898 6 11 -898 5 13 -893 18 10 -890 26 8 -889 25 8 -885 31 6 -885 30 6 -880 34 5 -880 33 4 -874 36 4 -874 34 3 -868 35 5 -868 34 3 -862 33 6 -862 33 4 -907 5 -3 -907 4 -3 -906 14 -4 -906 14 -3 -905 19 -5 -905 19 -4 -904 25 -6 -904 25 -5 -902 30 -7 -902 30 -5 -901 34 -7 -900 34 -6 -898 38 -8 -897 38 -7 -895 41 -9 -894 41 -9 -906 5 -2 -907 4 -4 -906 14 -5 -907 13 -6 -905 19 -6 -906 19 -8 -903 24 -8 -904 24 -9 -901 28 -10 -902 28 -11 -899 32 -12 -900 33 -12 -896 35 -14 -897 36 -14 -892 37 -16 -893 38 -16 -907 5 -4 -906 4 -2 -905 14 -4 -904 13 -3 -903 19 -4 -902 18 -4 -900 23 -4 -900 22 -4 -896 26 -4 -896 25 -5 -893 28 -4 -893 28 -5 -889 30 -4 -889 30 -5 -885 31 -5 -906 5 -1 -905 16 -5 -906 15 -6 -904 22 -8 -906 22 -10 -903 28 -13 -905 28 -13 -900 31 -18 -902 32 -18 -897 34 -23 -898 35 -23 -892 34 -27 -892 36 -27 -886 34 -31 -886 35 -31 -906 4 -2 -904 16 -4 -903 15 -3 -901 22 -5 -901 21 -5 -898 28 -7 -897 26 -8 -893 31 -9 -893 30 -10 -887 33 -11 -887 32 -12 -881 32 -12 -881 32 -13 -875 31 -12 -875 31 -13 -883 5 49 -882 4 49 -878 16 47 -879 16 47 -876 22 46 -874 27 44 -874 28 46 -872 32 44 -871 33 45 -869 37 43 -868 37 45 -865 41 43 -865 41 44 -862 44 43 -861 44 43 -882 5 50 -883 4 48 -879 16 46 -879 16 45 -876 21 44 -877 21 43 -874 26 43 -874 26 41 -870 30 41 -871 31 40 -867 34 40 -867 35 39 -863 37 38 -863 38 38 -858 39 37 -859 39 38 -883 5 48 -883 4 50 -878 16 49 -875 21 48 -872 26 48 -872 25 48 -869 29 49 -869 28 49 -865 32 51 -865 31 50 -862 33 52 -861 33 51 -858 35 53 -858 34 52 -877 18 47 -877 18 48 -874 26 47 -874 26 49 -872 34 47 -872 33 49 -870 41 47 -869 41 49 -868 48 47 -867 47 48 -866 54 47 -864 53 47 -863 59 46 -861 59 46 -882 5 51 -877 18 46 -878 18 44 -875 25 42 -876 24 40 -871 30 38 -872 30 36 -866 33 33 -867 34 32 -861 34 30 -861 35 29 -854 33 27 -854 35 27 -848 31 26 -848 33 26 -882 5 49 -877 18 49 -873 25 47 -873 24 48 -868 30 46 -868 29 46 -863 34 45 -863 32 44 -857 35 46 -857 34 45 -851 34 47 -851 34 46 -845 33 49 -845 33 48 -889 4 33 -887 13 32 -888 13 33 -887 19 32 -887 19 33 -885 24 31 -885 24 32 -884 29 30 -883 29 31 -882 34 30 -881 33 31 -879 38 29 -878 37 30 -876 41 29 -875 40 29 -888 4 34 -889 4 32 -888 13 30 -886 18 30 -887 18 29 -884 23 28 -885 23 27 -882 27 27 -883 28 26 -879 31 25 -880 32 25 -876 34 23 -877 35 24 -873 37 22 -886 13 33 -885 18 33 -884 17 33 -882 22 33 -881 21 33 -878 25 33 -878 24 33 -874 28 34 -874 27 33 -871 29 34 -870 29 33 -867 30 34 -888 4 35 -886 15 32 -888 15 30 -885 22 28 -887 21 27 -883 27 24 -885 27 23 -880 31 19 -882 32 19 -876 33 15 -877 34 15 -870 34 11 -871 35 11 -864 33 8 -864 35 8 -888 4 34 -886 15 33 -885 14 34 -883 22 32 -882 21 32 -879 27 30 -878 26 30 -874 30 29 -874 29 28 -868 32 28 -868 31 27 -862 32 28 -862 31 26 -856 30 28 -856 30 27 666 0 644 661 11 644 662 11 644 659 17 644 659 17 643 656 22 644 656 23 643 653 27 644 654 27 642 650 32 642 651 32 641 647 36 641 647 35 640 643 39 640 643 38 639 666 0 643 666 0 645 661 11 645 661 11 646 658 16 645 658 16 647 655 21 645 654 21 647 651 25 645 651 26 646 647 29 645 647 29 646 643 31 644 643 32 644 638 33 643 639 34 643 667 0 643 662 11 642 659 17 642 659 16 641 656 21 640 656 20 640 653 24 637 653 23 638 651 26 634 650 26 635 648 28 632 647 28 632 645 29 629 645 29 630 -861 7 199 -861 6 200 -856 18 199 -856 18 200 -854 24 199 -854 24 200 -851 29 199 -852 29 200 -849 34 200 -849 34 201 -846 39 201 -846 39 202 -843 43 202 -843 43 203 -839 46 203 -839 45 204 -861 7 200 -861 6 199 -856 17 197 -853 23 198 -853 23 196 -850 28 198 -850 28 196 -846 32 198 -847 33 197 -843 36 198 -843 36 197 -838 39 199 -839 39 198 -834 41 200 -857 18 201 -854 23 201 -854 23 202 -851 28 203 -851 27 204 -848 31 206 -848 30 206 -846 33 209 -846 33 208 -843 35 211 -841 36 214 -840 36 213 -861 6 201 -855 20 200 -856 20 201 -853 28 201 -853 28 203 -850 35 202 -851 35 204 -849 43 203 -849 42 205 -847 49 204 -847 49 205 -845 56 205 -844 55 206 -842 61 206 -840 60 206 -861 7 202 -855 20 199 -855 19 197 -851 27 197 -851 26 195 -846 31 194 -846 32 193 -840 34 193 -840 35 191 -833 35 192 -833 37 191 -826 35 192 -826 37 192 -820 33 194 -820 34 194 -862 6 201 -856 19 202 -852 27 202 -852 26 202 -847 32 203 -847 31 203 -842 36 205 -841 34 204 -836 37 208 -836 36 207 -832 36 211 -831 35 210 -827 34 216 -826 34 215 -859 6 183 -860 6 183 -858 15 183 -859 15 183 -857 21 182 -858 21 183 -856 26 182 -856 26 183 -854 31 182 -854 31 183 -852 36 183 -852 35 184 -849 40 183 -849 39 184 -846 43 184 -846 42 185 -859 6 184 -860 5 182 -858 15 182 -858 14 180 -856 20 181 -856 20 179 -854 25 180 -854 25 179 -851 29 180 -852 30 179 -848 33 179 -849 34 179 -844 36 179 -845 37 179 -840 39 179 -841 39 180 -860 6 182 -859 5 183 -857 14 184 -856 20 184 -855 19 185 -853 24 185 -853 23 185 -850 27 187 -850 26 187 -847 29 189 -844 31 191 -843 31 191 -840 32 193 -859 6 185 -859 5 182 -857 17 182 -857 16 180 -854 24 180 -855 23 178 -851 29 176 -852 29 175 -846 33 174 -847 34 173 -840 35 172 -841 36 171 -834 36 171 -834 37 170 -827 35 171 -827 36 171 -859 5 184 -857 17 183 -856 16 185 -854 23 184 -853 22 184 -850 29 184 -849 27 184 -844 32 185 -844 31 184 -839 34 187 -838 33 186 -833 33 189 -832 33 188 -828 32 193 -827 32 192 667 1 644 660 14 643 661 13 642 657 21 642 658 21 640 655 29 641 656 28 639 653 36 640 653 35 638 651 42 639 650 42 638 648 49 638 648 48 637 645 54 637 644 53 637 667 1 642 660 13 644 660 13 646 656 20 646 656 19 648 650 24 649 650 25 650 644 27 650 644 28 652 637 28 651 637 30 652 630 27 650 630 29 651 624 25 649 624 26 648 667 0 642 660 13 643 661 13 641 656 20 641 656 19 641 651 25 640 651 24 640 646 28 638 646 27 639 641 29 635 640 28 636 636 28 631 635 28 632 632 26 627 631 26 628 -606 2 721 -606 1 721 -603 13 717 -602 19 715 -601 24 713 -600 25 714 -599 29 711 -598 29 712 -597 34 709 -596 34 710 -594 38 707 -593 38 708 -591 41 705 -590 40 705 -605 2 721 -607 1 720 -604 13 716 -605 12 715 -603 18 713 -604 18 712 -601 23 711 -602 23 710 -599 27 708 -600 28 707 -597 31 705 -598 31 704 -594 34 701 -594 34 702 -591 36 698 -591 36 699 -606 2 720 -602 13 718 -600 18 716 -600 18 717 -597 23 715 -597 22 715 -594 26 714 -594 25 714 -590 28 713 -586 30 713 -587 30 712 -583 31 712 -583 31 711 -605 1 721 -602 15 717 -602 15 718 -600 23 715 -599 23 716 -598 31 714 -597 30 715 -596 38 712 -595 37 714 -595 44 711 -593 44 712 -593 51 710 -591 50 710 -590 56 708 -589 55 707 -604 2 722 -603 15 716 -605 14 714 -602 22 711 -604 21 710 -602 26 705 -603 27 704 -600 29 699 -601 30 699 -597 31 693 -598 32 693 -592 30 688 -593 32 688 -588 28 683 -587 30 683 -605 2 722 -601 15 718 -599 22 714 -598 21 715 -595 27 711 -595 26 711 -591 31 708 -591 29 707 -585 32 705 -586 31 704 -580 31 703 -580 31 702 -574 29 702 -574 29 701 -619 1 710 -618 10 709 -618 16 708 -618 16 709 -618 21 706 -617 21 707 -616 26 705 -615 26 706 -615 31 704 -614 30 704 -613 35 702 -612 34 702 -610 38 700 -610 37 699 -618 1 710 -620 0 710 -619 10 708 -620 9 707 -619 15 706 -620 15 705 -618 20 704 -619 20 703 -617 24 701 -618 25 701 -615 28 698 -616 29 699 -613 31 695 -614 32 696 -611 34 692 -611 34 693 -620 1 710 -618 0 710 -617 9 709 -616 15 708 -615 14 708 -613 19 706 -613 18 706 -610 22 705 -610 21 704 -607 24 703 -603 26 702 -603 26 701 -599 27 700 -600 27 699 -617 1 711 -618 12 708 -620 11 707 -619 19 704 -621 18 704 -619 24 699 -621 24 699 -619 28 694 -620 29 694 -617 30 688 -618 31 688 -614 31 682 -615 32 682 -611 30 676 -610 31 676 -618 0 711 -617 12 708 -616 11 709 -615 18 706 -614 17 706 -612 24 703 -612 22 702 -608 27 699 -609 26 698 -604 29 695 -604 28 694 -599 29 692 -599 28 691 -593 27 690 -594 27 688 664 0 661 665 0 661 663 8 661 662 14 661 662 14 660 660 19 661 660 19 660 658 24 661 658 24 660 656 29 660 656 29 659 653 33 660 653 32 659 650 36 659 649 35 658 665 0 660 665 0 662 662 8 661 662 8 663 660 14 662 661 13 664 658 18 663 658 18 664 655 22 664 656 23 664 652 26 664 652 27 664 648 29 664 649 30 664 644 31 663 644 32 663 662 8 659 660 13 659 658 17 658 657 16 658 654 20 656 654 19 656 651 22 654 648 24 652 645 25 650 644 25 650 -414 0 893 -414 0 892 -419 10 891 -418 10 891 -421 16 891 -421 16 890 -424 21 890 -423 21 889 -426 26 889 -426 26 888 -429 31 887 -428 31 886 -432 35 885 -431 34 884 -435 37 883 -435 37 882 -419 10 892 -419 10 893 -422 15 892 -423 15 893 -425 20 891 -426 20 892 -429 24 890 -429 24 891 -433 27 889 -433 28 889 -437 30 887 -437 31 887 -441 32 885 -440 33 885 -413 0 892 -418 10 889 -421 15 888 -420 15 888 -423 20 886 -423 19 886 -425 23 883 -425 22 883 -427 25 879 -427 25 880 -429 27 876 -429 26 877 -431 28 873 -413 0 891 -419 12 890 -419 12 889 -422 20 888 -421 20 887 -424 27 887 -423 27 885 -426 34 885 -425 34 883 -428 41 884 -428 41 882 -430 47 883 -430 47 881 -433 53 881 -434 52 880 -413 0 890 -420 12 891 -421 12 893 -425 19 892 -425 18 894 -431 23 893 -431 23 895 -437 26 893 -437 27 895 -444 27 892 -444 28 893 -450 26 890 -450 28 890 -456 24 887 -456 25 887 -418 12 888 -423 19 887 -423 18 887 -427 24 885 -428 23 885 -432 27 882 -433 26 882 -436 28 878 -437 27 879 -440 27 873 -441 27 874 -443 25 868 -444 25 868 -420 -1 908 -419 -1 908 -421 7 908 -422 13 908 -422 13 907 -424 18 908 -423 18 907 -426 23 907 -425 23 906 -428 28 906 -427 27 905 -430 32 904 -430 31 904 -433 35 903 -434 34 902 -419 -1 907 -420 -1 909 -422 7 908 -422 7 910 -424 12 909 -424 12 910 -426 17 909 -426 17 910 -429 21 909 -429 22 910 -433 25 908 -432 26 909 -436 28 907 -436 29 907 -440 30 906 -440 31 906 -421 7 906 -423 12 906 -423 11 905 -426 16 904 -426 15 904 -428 19 901 -429 18 901 -431 21 898 -431 21 899 -433 23 895 -434 22 896 -436 23 893 -437 23 893 -419 0 906 -422 9 908 -423 9 910 -426 16 910 -426 15 912 -430 21 912 -429 21 913 -436 24 913 -435 25 914 -442 26 913 -441 28 914 -449 27 913 -448 29 913 -455 26 911 -455 28 911 -419 0 908 -419 -1 907 -422 9 907 -422 8 905 -425 16 905 -426 14 905 -429 21 904 -430 19 904 -434 24 901 -435 23 902 -439 25 898 -440 24 899 -444 25 894 -445 24 895 -448 23 890 -449 23 891 664 0 659 662 10 661 662 10 663 659 17 664 659 17 666 655 22 667 656 22 668 650 26 669 651 27 670 644 28 671 645 29 672 637 28 672 638 30 672 630 27 672 630 29 672 665 0 659 662 10 660 661 9 659 658 17 659 658 16 659 654 22 659 653 21 659 648 25 658 648 24 659 643 26 656 642 26 657 637 26 653 637 26 654 632 24 650 632 24 651 497 9 780 497 9 779 498 18 773 498 18 774 499 23 770 499 23 771 499 27 767 500 27 768 501 30 764 502 31 764 502 34 761 503 34 761 504 37 758 505 36 758 506 38 754 -376 0 849 -376 0 848 -379 10 844 -381 16 842 -380 16 842 -382 21 840 -381 21 840 -383 26 837 -382 26 837 -384 31 834 -383 31 834 -385 35 831 -384 34 831 -386 37 827 -385 37 827 -375 0 848 -377 0 849 -380 10 844 -381 10 845 -382 15 842 -383 15 843 -384 20 840 -385 20 840 -386 24 837 -387 24 837 -388 27 833 -388 28 834 -390 30 829 -390 31 829 -391 32 825 -391 33 825 -377 10 844 -379 15 841 -378 15 841 -378 20 837 -378 19 838 -378 23 834 -378 22 834 -377 25 830 -378 25 830 -376 27 826 -377 26 826 -376 28 823 -377 28 822 -379 12 843 -378 12 843 -380 20 840 -378 20 840 -380 27 837 -378 27 837 -380 34 835 -379 34 834 -381 41 833 -380 41 832 -382 47 830 -381 47 829 -383 53 827 -383 52 826 -374 0 847 -382 12 845 -384 19 841 -386 18 842 -389 23 838 -390 23 839 -394 26 834 -395 27 835 -399 27 828 -399 28 829 -402 26 823 -402 28 823 -404 24 816 -404 25 816 -374 0 848 -377 12 842 -380 19 839 -379 18 838 -381 24 834 -382 23 834 -383 27 828 -384 26 829 -383 28 822 -384 27 823 -383 27 816 -384 27 816 -382 25 811 -383 25 810 -391 -1 857 -392 7 855 -391 7 855 -393 13 854 -392 13 854 -394 18 853 -393 18 853 -395 23 851 -394 23 851 -395 28 849 -395 27 849 -396 32 847 -396 31 846 -398 35 843 -398 34 843 -390 -1 856 -393 7 855 -394 7 856 -395 12 854 -396 12 855 -396 17 853 -397 17 854 -399 21 850 -399 22 851 -401 25 848 -401 26 849 -403 28 845 -402 29 845 -405 30 841 -404 31 841 -391 7 854 -392 12 852 -392 11 852 -392 16 849 -393 15 849 -393 19 845 -393 18 845 -393 21 842 -393 23 838 -394 22 838 -393 23 834 -394 23 834 -389 0 855 -393 9 854 -394 9 856 -396 16 853 -398 15 855 -401 21 852 -402 21 854 -406 24 849 -406 25 851 -411 26 846 -411 28 847 -416 27 841 -416 29 841 -420 26 835 -419 28 835 -391 0 857 -390 -1 856 -392 9 854 -391 8 853 -393 16 851 -393 14 850 -395 21 847 -396 19 846 -398 24 842 -399 23 842 -399 25 836 -401 24 836 -400 25 830 -402 24 830 -400 23 824 -402 23 824 496 9 780 496 18 773 498 22 770 496 22 769 498 25 766 497 26 766 499 28 762 498 29 762 500 31 758 501 32 754 501 33 754 503 33 750 503 34 750 496 9 779 500 18 774 501 22 771 501 21 771 503 25 768 503 24 768 506 27 765 505 26 765 509 29 763 508 28 763 512 30 761 511 29 760 514 30 759 514 30 758 498 9 780 499 20 772 500 20 773 501 26 769 502 26 770 503 32 766 504 32 766 504 37 763 506 37 763 506 43 760 507 43 760 507 48 757 508 47 757 509 52 754 509 51 753 -171 5 920 -170 4 920 -168 15 918 -166 20 916 -166 20 917 -165 25 915 -164 25 916 -163 29 914 -162 29 915 -161 34 913 -160 33 914 -158 37 912 -157 37 912 -155 40 910 -154 39 910 -171 4 919 -168 15 917 -169 15 916 -167 20 915 -168 20 914 -165 24 913 -166 24 913 -163 28 911 -164 28 911 -161 31 909 -161 32 909 -158 34 906 -158 35 907 -155 36 904 -171 5 919 -167 15 918 -167 14 919 -165 19 917 -164 19 918 -162 23 917 -162 22 917 -158 26 916 -159 25 916 -155 28 916 -155 27 916 -151 29 916 -152 29 915 -148 30 915 -148 30 914 -166 17 918 -166 16 919 -164 24 917 -163 23 918 -162 30 917 -161 30 918 -160 36 917 -158 36 918 -158 42 916 -157 42 917 -156 48 916 -155 47 916 -153 53 915 -152 52 914 -169 5 921 -167 17 917 -169 16 916 -166 23 913 -168 23 912 -165 28 909 -167 28 908 -163 31 904 -165 32 904 -161 32 899 -161 34 899 -157 32 894 -157 34 894 -153 31 890 -153 32 890 -170 5 919 -170 4 921 -165 16 919 -163 23 916 -163 22 917 -160 27 914 -160 26 914 -155 30 911 -156 29 911 -151 31 909 -151 31 908 -146 31 908 -146 30 906 -141 29 906 -141 29 905 -182 6 910 -182 6 911 -181 14 910 -181 14 911 -181 19 910 -180 19 911 -180 24 910 -179 24 910 -178 28 909 -178 28 910 -177 32 908 -176 32 909 -175 36 907 -174 35 907 -172 39 906 -172 38 905 -183 6 910 -183 14 909 -181 19 909 -182 19 908 -180 23 907 -181 23 907 -179 27 905 -180 28 906 -177 31 903 -178 31 904 -175 34 901 -176 34 902 -173 36 898 -173 37 899 -182 5 911 -180 13 911 -179 18 910 -178 18 910 -176 22 909 -176 21 909 -173 24 908 -170 26 907 -170 26 906 -167 28 906 -167 28 905 -163 29 905 -164 29 904 -181 6 911 -181 16 910 -182 16 909 -181 22 907 -183 22 907 -181 27 904 -183 27 904 -181 31 899 -182 32 900 -179 34 894 -180 35 895 -177 35 889 -177 36 890 -173 35 884 -173 36 884 -181 5 911 -180 16 910 -179 15 910 -177 21 909 -177 20 909 -175 26 907 -175 25 906 -171 30 904 -172 29 903 -167 31 900 -168 30 899 -163 31 898 -163 31 896 -158 29 895 -158 30 894 499 9 780 498 20 772 496 19 772 497 24 767 495 24 767 496 28 761 495 28 761 496 29 755 494 30 755 496 29 749 495 30 749 497 27 743 497 28 743 499 24 739 499 25 738 501 19 773 502 25 768 502 24 768 504 28 763 503 27 763 506 30 758 505 29 758 509 30 754 508 29 754 513 28 751 512 27 750 517 25 748 517 25 747 482 9 776 483 17 773 483 17 774 483 21 771 484 21 772 484 25 769 485 26 769 484 29 766 485 29 767 486 33 764 487 33 764 487 36 761 488 36 761 488 38 758 489 37 758 -260 3 880 -260 3 879 -260 14 876 -260 13 876 -260 19 874 -259 19 874 -260 24 872 -259 24 872 -260 28 870 -258 28 870 -259 33 868 -258 32 868 -258 36 865 -257 36 865 -256 39 862 -259 3 879 -261 3 879 -262 13 876 -261 18 873 -263 18 873 -261 23 871 -263 23 871 -261 27 868 -262 27 868 -261 30 865 -262 31 865 -261 33 861 -260 35 857 -260 35 858 -259 3 880 -258 13 876 -258 18 874 -257 18 874 -256 22 872 -256 21 872 -254 25 869 -252 28 867 -252 27 867 -249 29 865 -250 29 864 -247 30 863 -248 30 862 -260 4 880 -259 16 875 -258 15 876 -258 23 873 -257 22 874 -257 29 872 -255 29 872 -256 36 870 -255 35 870 -256 42 869 -254 41 869 -255 47 867 -254 47 866 -254 52 865 -253 52 864 -258 4 880 -261 3 880 -260 16 875 -262 15 875 -262 22 872 -264 21 872 -264 26 867 -266 26 868 -266 29 862 -267 30 863 -267 30 856 -268 32 857 -267 30 850 -267 32 850 -266 29 844 -265 30 844 -260 4 879 -257 15 875 -258 22 872 -257 21 872 -257 27 868 -257 25 868 -255 30 864 -256 28 863 -253 31 859 -254 30 859 -249 31 855 -250 30 854 -246 29 851 -247 29 850 -275 3 878 -275 3 879 -275 11 878 -275 16 877 -274 16 878 -275 21 876 -274 21 876 -275 25 875 -274 25 875 -274 30 873 -273 29 873 -274 33 871 -273 33 871 -273 36 868 -274 3 879 -276 3 879 -275 11 877 -277 11 877 -276 16 876 -278 16 876 -277 20 874 -278 20 875 -277 24 872 -278 25 873 -278 28 870 -278 31 867 -278 33 863 -277 34 864 -273 11 877 -273 16 876 -273 15 875 -272 19 874 -272 18 873 -271 22 871 -271 21 871 -269 24 868 -267 26 866 -268 26 865 -265 27 863 -266 27 862 -273 3 878 -275 13 877 -277 13 877 -277 19 875 -279 19 876 -280 24 872 -281 24 873 -282 27 868 -283 28 869 -284 30 863 -285 31 864 -286 31 857 -286 32 858 -286 31 851 -285 32 851 -274 3 878 -274 13 877 -273 12 876 -273 19 874 -273 18 874 -273 24 871 -274 23 870 -272 27 866 -273 26 866 -271 29 861 -272 28 861 -269 29 856 -270 28 856 -266 27 852 -267 27 851 483 9 776 481 9 776 482 17 773 481 16 773 482 21 770 481 21 770 482 24 767 481 25 767 482 28 764 483 30 760 483 31 761 484 32 757 484 33 757 484 34 753 485 34 753 483 16 773 484 16 773 485 20 770 487 23 768 487 22 767 489 25 765 489 24 764 491 26 762 491 26 761 494 27 759 493 27 759 496 27 756 495 27 756 484 9 776 483 18 772 481 18 772 482 23 768 480 23 768 480 27 763 478 28 764 478 30 758 477 31 759 477 31 753 477 32 753 477 30 747 477 32 747 478 28 741 479 29 741 270 8 896 270 7 896 270 19 891 270 25 889 270 30 886 271 30 886 270 35 883 271 35 884 271 40 880 272 39 881 272 43 877 273 43 877 274 46 873 271 8 896 269 7 896 269 19 891 268 18 891 269 24 888 267 24 888 268 29 885 267 29 885 268 33 881 267 33 881 268 36 877 268 37 877 269 39 873 269 40 873 270 41 868 269 8 896 271 7 897 272 19 892 272 24 889 273 24 889 274 28 886 274 27 886 276 32 883 276 31 883 279 34 880 278 33 880 282 36 877 281 35 877 284 37 875 284 37 874 270 8 897 271 21 890 272 21 891 272 29 887 273 29 888 273 36 885 275 36 885 274 43 883 276 43 883 274 50 881 276 50 880 275 56 878 276 56 877 276 61 875 276 61 874 272 8 896 270 21 890 267 20 890 268 27 886 265 27 886 265 32 880 263 32 881 263 35 874 261 36 875 262 36 867 261 37 868 262 35 861 262 37 861 264 33 854 264 34 854 272 8 897 273 20 891 272 28 886 273 27 886 273 33 881 273 31 881 275 36 876 274 34 875 278 37 871 277 36 870 282 36 866 281 35 865 286 34 861 285 34 860 253 7 895 253 16 893 253 16 894 253 22 892 254 22 893 253 27 891 254 27 891 253 32 889 254 32 889 253 36 887 254 36 887 254 40 884 255 40 884 255 43 880 254 7 895 252 7 895 252 16 893 251 16 893 251 21 891 250 21 891 251 26 889 249 26 889 250 30 886 249 31 887 250 34 883 249 35 883 250 37 879 250 38 880 250 39 875 250 40 875 255 15 893 255 21 891 255 20 891 256 25 888 256 24 888 258 28 885 257 27 885 260 30 882 259 30 881 262 31 878 261 31 878 264 32 875 263 32 874 255 7 895 253 18 892 251 17 893 250 25 890 248 24 890 247 30 886 246 30 887 244 33 881 243 34 882 242 35 875 241 37 876 241 36 868 241 38 869 241 35 861 241 36 862 255 7 895 254 18 892 255 17 892 255 24 889 255 23 888 255 30 885 254 28 884 256 33 879 255 32 878 257 34 873 256 33 873 260 34 868 258 33 867 263 32 863 262 32 862 483 9 776 484 18 772 485 17 772 485 23 768 486 22 768 487 27 764 486 25 763 488 29 759 488 27 758 491 29 754 490 28 753 494 27 749 493 27 749 497 25 746 496 25 745 464 4 782 464 4 781 462 15 777 460 21 775 461 21 775 459 26 773 460 27 772 458 31 770 459 31 770 457 36 767 458 36 766 457 40 763 457 39 763 456 43 759 456 42 759 465 4 781 463 4 782 461 15 777 459 15 778 459 20 775 457 20 776 457 25 772 455 25 773 455 29 769 454 29 769 453 32 765 453 33 766 452 35 761 452 36 762 450 37 757 451 38 757 301 9 913 305 18 908 304 18 908 306 23 905 307 23 906 308 27 902 309 27 903 311 30 900 311 31 901 313 34 898 314 34 899 316 37 896 317 36 896 319 38 893 320 38 894 300 9 912 304 18 907 303 18 906 306 22 904 305 22 903 308 25 901 307 26 900 310 28 898 309 29 897 313 31 894 312 31 894 315 32 891 315 33 891 318 33 888 319 34 889 306 18 909 308 22 906 308 21 907 311 25 905 311 24 905 315 27 903 315 26 903 319 29 902 318 28 902 322 30 902 322 29 901 325 30 901 325 30 900 302 9 913 306 20 907 306 20 908 309 26 904 310 26 906 312 32 902 313 32 904 315 37 900 316 37 902 317 43 899 318 43 899 319 48 897 321 47 896 322 52 894 323 51 893 302 9 914 305 20 907 303 19 905 307 24 901 305 24 900 308 28 896 306 28 895 310 29 890 309 30 889 312 29 885 312 30 884 316 27 880 316 28 879 320 24 876 320 25 876 301 9 912 307 19 908 310 25 904 310 24 905 314 28 900 313 27 900 318 30 897 317 29 897 323 30 895 322 29 894 328 28 893 327 27 892 332 25 892 332 25 891 289 9 903 289 9 904 291 17 901 291 17 902 292 21 899 292 21 900 293 25 898 294 26 898 295 29 896 296 29 896 297 33 894 298 33 894 299 36 892 300 36 892 302 38 889 302 37 889 288 9 903 290 17 901 289 16 900 291 21 898 290 21 897 293 24 895 291 25 895 294 28 893 293 28 893 296 30 890 295 31 890 298 32 887 298 33 887 300 34 883 301 34 884 291 16 901 292 16 902 294 20 900 297 23 898 297 22 898 300 25 896 300 24 896 303 26 894 306 27 893 306 27 892 310 27 891 309 27 891 290 9 904 292 18 900 290 18 899 292 23 896 290 23 896 292 27 891 290 28 891 293 30 886 291 31 886 294 31 880 293 32 880 297 30 875 296 32 875 300 28 870 300 29 870 290 9 904 292 18 900 293 17 901 295 23 898 296 22 897 298 27 894 298 25 893 302 29 890 301 27 889 306 29 887 305 28 886 310 27 884 310 27 883 315 25 882 314 25 881 463 4 781 463 15 776 462 20 774 463 20 774 462 25 770 463 24 770 463 28 767 463 27 767 464 30 763 463 30 763 465 32 759 464 32 759 466 33 755 465 33 755 462 18 776 463 17 776 461 25 773 463 25 773 461 32 770 463 32 770 461 40 768 462 39 767 460 46 766 461 46 764 460 52 763 460 52 762 459 58 760 459 57 758 466 5 780 461 17 776 459 17 777 457 24 773 455 23 774 452 28 770 450 28 771 447 31 765 446 32 767 443 32 760 442 33 761 440 31 754 440 33 754 438 29 748 438 30 747 150 8 930 150 8 929 146 20 926 146 19 926 144 25 925 145 25 924 142 30 923 143 31 922 140 35 920 141 36 920 139 40 918 140 40 917 137 44 915 138 44 914 135 47 911 136 46 911 149 8 930 144 19 928 143 25 925 142 24 926 140 29 923 139 29 924 137 33 920 137 34 921 135 37 917 134 37 918 132 39 914 132 40 914 129 41 910 130 42 910 151 8 929 148 19 925 146 25 923 146 24 922 145 29 919 145 28 919 144 32 916 144 31 916 144 34 912 144 36 908 143 36 908 144 37 904 143 37 904 150 9 929 151 8 928 146 22 925 147 22 924 144 29 922 146 29 921 143 37 920 145 37 919 142 44 917 144 44 916 141 50 916 142 50 914 140 57 913 140 56 912 138 62 910 138 61 909 151 9 928 145 22 925 143 21 927 140 28 924 139 27 926 135 32 922 134 33 924 129 35 919 128 36 921 123 36 916 123 38 916 118 35 911 118 37 911 115 33 905 115 35 905 148 21 924 144 28 921 145 27 920 141 33 917 141 32 917 138 36 912 138 35 912 137 37 906 136 36 907 136 37 900 134 36 900 135 35 894 134 35 894 137 7 941 138 7 941 136 17 940 137 17 940 135 22 939 136 22 939 134 27 938 135 28 938 132 32 937 133 32 936 131 37 935 132 37 934 130 41 933 130 40 932 128 44 930 128 43 929 138 8 940 137 7 942 134 16 941 133 22 940 132 21 941 131 26 938 131 27 940 129 31 937 128 31 938 126 34 935 126 35 936 123 37 932 124 38 933 120 40 929 121 40 930 137 8 941 138 7 940 136 16 939 137 16 938 135 21 937 136 21 936 134 25 934 134 24 934 133 28 931 132 31 927 131 30 927 131 32 923 130 32 923 130 33 919 129 33 920 139 8 939 135 19 939 134 18 941 131 25 939 131 25 941 126 30 939 126 30 941 121 34 938 121 35 939 115 36 935 115 37 936 109 36 932 110 38 932 104 36 927 105 37 927 138 8 941 138 7 940 136 19 938 136 18 937 134 25 936 134 24 935 131 30 932 130 29 932 127 33 928 126 32 928 124 35 923 123 34 923 122 34 917 121 34 918 120 32 912 119 32 912 466 4 781 462 17 776 464 17 775 461 24 771 462 23 771 460 29 767 459 28 766 459 32 761 458 31 761 459 33 755 457 32 755 459 32 749 458 32 749 461 30 743 460 30 743 449 3 789 447 18 786 448 18 786 446 23 785 447 23 785 445 28 783 446 28 783 445 33 781 446 32 780 444 37 778 445 36 778 443 40 775 443 39 774 447 12 787 446 12 788 445 17 786 444 17 787 444 22 784 443 22 785 442 26 782 441 27 783 440 30 779 440 31 780 438 33 776 438 34 777 436 35 772 436 36 773 -899 41 -708 -821 32 -657 -887 9 -648 -873 19 -580 -951 29 -631 -1433 305 4193 -1475 311 4109 -1415 282 4128 -1391 302 4067 -1349 296 4150 -765 31 -472 -822 38 -547 -759 11 -537 -747 34 -603 -691 27 -528 -1421 293 3876 -1464 277 3793 -1402 256 3820 -1380 261 3754 -1338 277 3836 -919 29 -516 -902 29 -608 -863 9 -553 -810 32 -591 -827 32 -499 -1476 298 3828 -1543 302 3894 -1538 270 3832 -1607 284 3828 -1540 280 3762 -749 35 -560 -805 29 -635 -738 11 -624 -730 29 -691 -674 36 -617 -1570 307 4058 -1632 312 4129 -1638 287 4064 -1703 311 4068 -1641 305 3997 -1010 20 -445 -985 29 -535 -949 9 -478 -895 41 -509 -921 33 -419 -1565 300 3906 -1635 299 3968 -1629 275 3902 -1697 294 3898 -1627 295 3836 -1025 33 935 -944 45 890 -960 14 951 -897 38 971 -978 27 1017 -1458 288 3921 -1526 301 3985 -1528 277 3919 -1590 308 3916 -1522 295 3852 -937 32 1031 -900 45 945 -875 14 1003 -814 39 983 -851 27 1068 437 33 1100 519 45 1054 503 14 1115 565 38 1135 484 27 1181 -833 46 973 -795 37 888 -776 14 951 -711 24 926 -748 34 1012 633 32 1208 670 45 1123 695 14 1180 756 39 1160 719 27 1245 -708 43 804 -802 41 794 -749 14 757 -791 28 702 -698 29 712 737 46 1151 774 37 1065 794 14 1128 859 24 1104 822 34 1189 -918 34 910 -1012 34 908 -964 14 860 -1011 37 814 -916 37 816 874 43 1037 781 41 1027 834 14 990 792 28 935 885 29 945 -1008 39 952 -1100 32 937 -1044 14 898 -1086 33 844 -993 39 859 651 34 1087 557 34 1085 605 14 1037 559 37 991 653 37 993 -826 25 963 -919 33 952 -868 14 907 -908 46 859 -814 38 870 686 39 1049 594 32 1034 650 14 996 609 33 941 701 39 956 -3140 400 4726 -3213 419 4671 -3156 380 4661 -3160 403 4595 -3087 383 4650 743 25 1140 650 33 1129 701 14 1084 662 46 1037 755 38 1048 -2991 380 4555 -3085 384 4557 -3041 356 4511 -3087 375 4463 -2993 370 4462 -3970 380 2131 -3953 384 2039 -3919 353 2092 -3861 369 2055 -3878 365 2147 -3184 412 4536 -3278 415 4537 -3232 384 4494 -3280 399 4445 -3186 395 4443 -3727 365 2152 -3767 377 2068 -3711 341 2087 -3685 360 2026 -3644 348 2109 -3286 421 4509 -3256 419 4599 -3315 398 4567 -3346 419 4627 -3375 421 4538 -3782 370 1890 -3825 360 1807 -3767 332 1834 -3744 336 1767 -3700 346 1850 -3194 402 4567 -3157 400 4653 -3222 388 4630 -3242 417 4690 -3279 418 4604 -3841 362 1904 -3907 372 1969 -3905 341 1907 -3973 362 1903 -3906 352 1837 -3289 435 4701 -3265 429 4791 -3325 417 4757 -3354 442 4816 -3379 448 4726 -3923 370 2033 -3983 381 2104 -3992 358 2038 -4054 388 2043 -3993 377 1972 -3183 389 4505 -3153 397 4593 -3217 385 4566 -3239 422 4620 -3269 414 4531 -4047 373 1912 -4117 377 1974 -4113 355 1907 -4179 380 1904 -4109 375 1842 -1623 200 3291 -1539 214 3330 -1601 196 3357 -1580 234 3412 -1664 220 3373 -3825 348 1996 -3891 368 2060 -3895 345 1994 -3953 383 1992 -3887 364 1928 -1576 277 3669 -1484 279 3652 -1520 258 3707 -1467 281 3744 -1559 279 3762 -684 33 983 -668 45 891 -631 14 943 -575 38 907 -592 27 999 -1459 266 3523 -1368 246 3507 -1412 232 3561 -1354 241 3600 -1444 261 3616 -555 32 976 -597 45 893 -537 14 910 -513 39 850 -471 27 933 -1344 240 3514 -1388 235 3432 -1331 204 3458 -1308 210 3391 -1263 215 3474 -537 25 847 -605 33 912 -607 14 844 -668 46 844 -601 38 779 -1471 223 3457 -1522 220 3378 -1458 195 3393 -1444 211 3327 -1393 214 3406 330 33 1669 346 45 1577 383 14 1628 439 38 1593 422 27 1684 -1476 198 3333 -1516 187 3249 -1455 165 3276 -1432 175 3210 -1391 186 3294 744 32 1499 702 45 1416 762 14 1433 786 39 1373 828 27 1456 -1599 258 3517 -1505 257 3521 -1554 247 3571 -1509 279 3612 -1603 280 3608 571 46 1428 529 37 1345 590 14 1370 613 24 1304 655 34 1387 -4185 687 5803 -4102 688 5848 -4168 675 5870 -4147 706 5929 -4229 705 5884 501 43 1218 434 41 1284 439 14 1220 370 28 1217 437 29 1151 -4109 686 5940 -4016 677 5928 -4058 657 5980 -4005 671 6021 -4098 680 6033 467 34 1454 406 34 1525 400 14 1458 335 37 1464 396 37 1392 -3998 661 5894 -4044 669 5812 -3985 636 5829 -3964 653 5766 -3918 645 5847 298 39 1367 228 32 1429 234 14 1361 166 33 1359 236 39 1297 -5004 828 4533 -4989 818 4441 -4957 791 4497 -4899 797 4458 -4914 807 4550 603 25 1563 581 33 1472 641 14 1504 672 46 1451 694 38 1542 -4882 799 4403 -4924 802 4319 -4870 764 4343 -4844 771 4280 -4803 769 4364 1356 33 1336 1372 45 1244 1410 14 1295 1465 38 1259 1448 27 1351 -4964 803 4314 -5022 828 4384 -5034 798 4322 -5093 834 4323 -5035 809 4253 1485 32 1328 1443 45 1245 1503 14 1262 1527 39 1203 1569 27 1286 -2396 123 1771 -2463 145 1710 -2405 106 1704 -2403 131 1639 -2336 108 1700 1404 34 1237 1342 34 1308 1336 14 1241 1271 37 1247 1333 37 1176 -2335 114 1657 -2425 141 1650 -2385 104 1607 -2419 135 1556 -2330 109 1563 1030 28 -182 1046 39 -274 1083 9 -222 1139 33 -258 1122 21 -166 -2421 143 1578 -2514 147 1571 -2465 117 1531 -2508 135 1478 -2414 130 1485 995 31 55 945 24 -23 1011 7 -9 1025 28 -73 1075 34 5 -2520 154 1542 -2499 148 1634 -2554 130 1596 -2591 149 1654 -2611 154 1562 1279 41 -141 1237 32 -224 1299 9 -199 1321 19 -265 1363 29 -182 -2434 132 1608 -2406 126 1697 -2469 116 1667 -2493 142 1726 -2522 148 1637 1117 43 -373 1050 41 -308 1055 14 -372 986 28 -375 1053 29 -440 -2500 146 1659 -2485 136 1751 -2542 126 1710 -2576 150 1768 -2592 159 1676 969 30 -412 876 30 -424 929 10 -466 888 33 -517 981 33 -505 -2417 121 1546 -2396 125 1638 -2457 115 1604 -2484 151 1657 -2505 147 1566 952 34 -346 882 27 -284 888 9 -352 820 28 -355 890 34 -417 606 33 860 687 45 814 671 14 875 734 38 895 653 27 941 1234 25 -353 1166 33 -288 1164 14 -356 1102 46 -356 1170 38 -421 694 32 955 731 45 870 756 14 927 817 39 907 780 27 992 -3279 316 2268 -3259 317 2177 -3230 283 2231 -3170 292 2196 -3190 292 2288 875 46 907 912 37 821 932 14 885 997 24 860 959 34 945 -3132 276 2138 -3200 294 2200 -3203 269 2134 -3262 304 2130 -3194 287 2068 864 43 815 771 41 805 824 14 769 782 28 713 875 29 723 -532 44 2427 -608 56 2373 -546 25 2362 -555 49 2296 -479 38 2350 713 34 834 619 34 832 666 14 784 620 37 738 714 37 740 -484 43 2307 -577 56 2310 -536 25 2263 -580 50 2216 -487 38 2213 748 39 796 655 32 781 711 14 743 670 33 688 762 39 703 -580 57 2238 -673 48 2240 -624 25 2195 -675 35 2147 -581 45 2144 805 25 887 712 33 876 763 14 831 723 46 784 817 38 795 -683 54 2213 -652 52 2301 -708 25 2269 -740 39 2331 -771 41 2242 851 33 618 933 45 573 917 14 634 979 38 654 898 27 700 -589 45 2269 -550 45 2354 -614 25 2331 -636 48 2393 -674 48 2307 939 32 714 977 45 628 1002 14 686 1063 39 666 1025 27 751 -650 50 2327 -624 43 2416 -683 25 2382 -715 44 2443 -741 50 2353 1043 46 656 1081 37 571 1100 14 634 1166 24 609 1128 34 695 -576 36 2206 -547 44 2294 -609 25 2267 -635 57 2323 -665 49 2234 1168 43 487 1075 41 477 1127 14 440 1085 28 385 1179 29 395 -1165 33 526 -1149 45 434 -1111 14 486 -1056 38 450 -1073 27 542 958 34 592 864 34 591 912 14 543 866 37 497 960 37 499 -1036 32 519 -1078 45 436 -1018 14 453 -994 39 393 -952 27 476 868 39 635 776 32 620 832 14 581 791 33 527 883 39 542 -1014 46 402 -1056 37 319 -994 14 344 -972 24 278 -930 34 362 1050 25 646 957 33 635 1008 14 590 969 46 542 1062 38 553 -1035 43 299 -1102 41 364 -1097 14 300 -1166 28 297 -1099 29 232 -953 244 4122 -930 232 4032 -899 212 4091 -839 222 4055 -862 235 4146 -1117 34 428 -1179 34 499 -1185 14 432 -1250 37 438 -1188 37 367 -782 211 4102 -815 202 4015 -756 179 4045 -727 191 3983 -694 201 4071 -1124 39 377 -1194 32 439 -1188 14 371 -1257 33 368 -1187 39 306 -878 203 3846 -917 195 3761 -863 163 3792 -836 162 3727 -797 170 3812 -1018 25 391 -1085 33 455 -1087 14 388 -1149 46 387 -1081 38 323 -941 195 3727 -1010 213 3788 -1007 179 3727 -1072 207 3718 -1003 189 3657 -1156 33 -131 -1232 45 -185 -1170 14 -197 -1179 38 -262 -1103 27 -208 -923 215 3959 -987 234 4026 -993 209 3960 -1052 245 3960 -989 227 3893 -1108 32 -251 -1201 45 -248 -1160 14 -296 -1204 39 -342 -1111 27 -345 -960 216 3851 -1033 230 3908 -1028 204 3842 -1091 236 3834 -1018 223 3776 -1204 46 -321 -1297 37 -318 -1248 14 -363 -1298 24 -411 -1205 34 -414 -749 178 3908 -822 195 3965 -818 163 3902 -880 191 3891 -807 174 3834 -1307 42 -346 -1276 41 -257 -1332 14 -289 -1364 28 -227 -1395 29 -316 -2208 150 2437 -2191 150 2344 -2157 121 2399 -2100 134 2362 -2117 135 2454 -1213 34 -290 -1174 34 -204 -1238 14 -227 -1260 37 -166 -1298 37 -251 -2025 122 2402 -2066 130 2318 -2010 95 2339 -1984 110 2277 -1943 102 2361 -1274 39 -232 -1248 32 -142 -1307 14 -176 -1338 33 -116 -1365 39 -205 -2022 121 2209 -2065 108 2127 -2006 81 2155 -1983 81 2088 -1940 94 2170 -1200 25 -353 -1170 33 -264 -1233 14 -291 -1259 46 -235 -1289 38 -324 -2104 120 2082 -2171 134 2147 -2169 99 2086 -2236 121 2081 -2170 107 2016 483 46 -727 521 37 -813 540 14 -749 606 24 -774 568 34 -689 -2244 159 2358 -2305 174 2428 -2314 148 2363 -2376 179 2367 -2315 164 2296 527 33 -797 434 32 -807 487 5 -844 445 19 -899 538 20 -889 -2174 135 2243 -2244 144 2304 -2240 118 2239 -2306 144 2234 -2236 135 2172 676 34 -739 582 34 -741 630 14 -788 584 37 -834 678 37 -832 -2066 106 2207 -2132 129 2270 -2136 103 2204 -2194 142 2200 -2128 119 2137 476 32 -868 384 26 -883 440 8 -921 399 27 -976 491 33 -961 -1517 309 4156 -1584 314 4090 -1519 287 4090 -1518 309 4023 -1451 304 4089 761 25 -660 668 33 -671 719 14 -716 679 46 -763 773 38 -752 + + + + + + + + + + 0.30078125 0.55078125 0.078125 0.81640625 0.3125 0.5625 0.08984375 0.826171875 0.326171875 0.572265625 0.1015625 0.8359375 0.337890625 0.583984375 0.11328125 0.84765625 0.3515625 0.59375 0.126953125 0.857421875 0.357421875 0.599609375 0.1328125 0.86328125 0.3671875 0.609375 0.14453125 0.873046875 0.37890625 0.6171875 0.154296875 0.880859375 0.390625 0.626953125 0.166015625 0.890625 0.36328125 0.603515625 0.138671875 0.8671875 1 1 1 0 0.5 0.5 0 0 0 1 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 1 1 0 0 3 3 1 1 2 2 4 4 3 3 2 2 5 5 3 3 4 4 6 6 5 5 4 4 7 7 5 5 6 6 8 8 7 7 6 6 9 9 7 7 8 8 10 10 9 9 8 8 11 11 9 9 10 10 12 12 11 11 10 10 13 13 11 11 12 12 14 14 13 13 12 12 15 15 13 13 14 14 16 16 15 15 14 14 17 17 15 15 16 16 20 2 19 1 18 0 21 3 19 1 20 2 22 4 21 3 20 2 23 5 21 3 22 4 24 6 23 5 22 4 25 7 23 5 24 6 26 8 25 7 24 6 27 9 25 7 26 8 28 10 27 9 26 8 29 11 27 9 28 10 30 12 29 11 28 10 31 13 29 11 30 12 32 14 31 13 30 12 33 15 31 13 32 14 34 16 33 15 32 14 35 17 33 15 34 16 38 2 37 1 36 0 39 3 37 1 38 2 40 4 39 3 38 2 41 5 39 3 40 4 42 6 41 5 40 4 43 7 41 5 42 6 44 8 43 7 42 6 45 9 43 7 44 8 46 10 45 9 44 8 47 11 45 9 46 10 48 12 47 11 46 10 49 13 47 11 48 12 50 14 49 13 48 12 51 15 49 13 50 14 52 16 51 15 50 14 53 17 51 15 52 16 56 2 55 1 54 0 57 3 55 1 56 2 58 4 57 3 56 2 59 5 57 3 58 4 60 6 59 5 58 4 61 7 59 5 60 6 62 8 61 7 60 6 63 9 61 7 62 8 64 10 63 9 62 8 65 11 63 9 64 10 66 12 65 11 64 10 67 13 65 11 66 12 68 14 67 13 66 12 69 15 67 13 68 14 70 16 69 15 68 14 71 17 69 15 70 16 74 2 73 1 72 0 75 3 73 1 74 2 76 4 75 3 74 2 77 5 75 3 76 4 78 6 77 5 76 4 79 7 77 5 78 6 80 8 79 7 78 6 81 9 79 7 80 8 82 10 81 9 80 8 83 11 81 9 82 10 84 12 83 11 82 10 85 13 83 11 84 12 86 14 85 13 84 12 87 15 85 13 86 14 88 16 87 15 86 14 89 17 87 15 88 16 92 2 91 1 90 0 93 3 91 1 92 2 94 4 93 3 92 2 95 5 93 3 94 4 96 6 95 5 94 4 97 7 95 5 96 6 98 8 97 7 96 6 99 9 97 7 98 8 100 10 99 9 98 8 101 11 99 9 100 10 102 12 101 11 100 10 103 13 101 11 102 12 104 14 103 13 102 12 105 15 103 13 104 14 106 16 105 15 104 14 107 17 105 15 106 16 110 2 109 1 108 0 111 3 109 1 110 2 112 4 111 3 110 2 113 5 111 3 112 4 114 6 113 5 112 4 115 7 113 5 114 6 116 8 115 7 114 6 117 9 115 7 116 8 118 10 117 9 116 8 119 11 117 9 118 10 120 12 119 11 118 10 121 13 119 11 120 12 122 14 121 13 120 12 123 15 121 13 122 14 124 16 123 15 122 14 125 17 123 15 124 16 110 2 127 1 126 0 128 3 127 1 110 2 129 4 128 3 110 2 130 5 128 3 129 4 131 6 130 5 129 4 132 7 130 5 131 6 133 8 132 7 131 6 134 9 132 7 133 8 135 10 134 9 133 8 136 11 134 9 135 10 137 12 136 11 135 10 138 13 136 11 137 12 139 14 138 13 137 12 140 15 138 13 139 14 141 16 140 15 139 14 142 17 140 15 141 16 145 2 144 1 143 0 146 3 144 1 145 2 147 4 146 3 145 2 148 5 146 3 147 4 149 6 148 5 147 4 150 7 148 5 149 6 151 8 150 7 149 6 152 9 150 7 151 8 153 10 152 9 151 8 154 11 152 9 153 10 155 12 154 11 153 10 156 13 154 11 155 12 157 14 156 13 155 12 158 15 156 13 157 14 159 16 158 15 157 14 160 17 158 15 159 16 163 2 162 1 161 0 164 3 162 1 163 2 165 4 164 3 163 2 166 5 164 3 165 4 167 6 166 5 165 4 168 7 166 5 167 6 169 8 168 7 167 6 170 9 168 7 169 8 171 10 170 9 169 8 172 11 170 9 171 10 173 12 172 11 171 10 174 13 172 11 173 12 175 14 174 13 173 12 176 15 174 13 175 14 177 16 176 15 175 14 178 17 176 15 177 16 181 2 180 1 179 0 182 3 180 1 181 2 183 4 182 3 181 2 184 5 182 3 183 4 185 6 184 5 183 4 186 7 184 5 185 6 187 8 186 7 185 6 188 9 186 7 187 8 189 10 188 9 187 8 190 11 188 9 189 10 191 12 190 11 189 10 192 13 190 11 191 12 193 14 192 13 191 12 194 15 192 13 193 14 195 16 194 15 193 14 195 17 194 15 195 16 198 2 197 1 196 0 199 3 197 1 198 2 200 4 199 3 198 2 201 5 199 3 200 4 202 6 201 5 200 4 203 7 201 5 202 6 204 8 203 7 202 6 205 9 203 7 204 8 206 10 205 9 204 8 207 11 205 9 206 10 208 12 207 11 206 10 209 13 207 11 208 12 210 14 209 13 208 12 211 15 209 13 210 14 212 16 211 15 210 14 213 17 211 15 212 16 216 2 215 1 214 0 217 3 215 1 216 2 218 4 217 3 216 2 219 5 217 3 218 4 220 6 219 5 218 4 221 7 219 5 220 6 222 8 221 7 220 6 223 9 221 7 222 8 224 10 223 9 222 8 225 11 223 9 224 10 226 12 225 11 224 10 227 13 225 11 226 12 228 14 227 13 226 12 229 15 227 13 228 14 230 16 229 15 228 14 231 17 229 15 230 16 234 2 233 1 232 0 235 3 233 1 234 2 236 4 235 3 234 2 237 5 235 3 236 4 238 6 237 5 236 4 239 7 237 5 238 6 240 8 239 7 238 6 241 9 239 7 240 8 242 10 241 9 240 8 243 11 241 9 242 10 244 12 243 11 242 10 245 13 243 11 244 12 246 14 245 13 244 12 247 15 245 13 246 14 248 16 247 15 246 14 248 17 247 15 248 16 251 2 250 1 249 0 252 3 250 1 251 2 253 4 252 3 251 2 254 5 252 3 253 4 255 6 254 5 253 4 256 7 254 5 255 6 257 8 256 7 255 6 258 9 256 7 257 8 259 10 258 9 257 8 260 11 258 9 259 10 261 12 260 11 259 10 262 13 260 11 261 12 263 14 262 13 261 12 264 15 262 13 263 14 265 16 264 15 263 14 265 17 264 15 265 16 268 2 267 1 266 0 269 3 267 1 268 2 270 4 269 3 268 2 271 5 269 3 270 4 272 6 271 5 270 4 273 7 271 5 272 6 274 8 273 7 272 6 275 9 273 7 274 8 276 10 275 9 274 8 277 11 275 9 276 10 278 12 277 11 276 10 279 13 277 11 278 12 280 14 279 13 278 12 281 15 279 13 280 14 282 16 281 15 280 14 283 17 281 15 282 16 286 2 285 1 284 0 287 3 285 1 286 2 288 4 287 3 286 2 289 5 287 3 288 4 290 6 289 5 288 4 291 7 289 5 290 6 292 8 291 7 290 6 293 9 291 7 292 8 294 10 293 9 292 8 295 11 293 9 294 10 296 12 295 11 294 10 297 13 295 11 296 12 298 14 297 13 296 12 299 15 297 13 298 14 300 16 299 15 298 14 301 17 299 15 300 16 304 2 303 1 302 0 305 3 303 1 304 2 306 4 305 3 304 2 307 5 305 3 306 4 308 6 307 5 306 4 309 7 307 5 308 6 310 8 309 7 308 6 311 9 309 7 310 8 312 10 311 9 310 8 313 11 311 9 312 10 314 12 313 11 312 10 315 13 313 11 314 12 316 14 315 13 314 12 317 15 315 13 316 14 318 16 317 15 316 14 319 17 317 15 318 16 322 2 321 1 320 0 323 3 321 1 322 2 324 4 323 3 322 2 325 5 323 3 324 4 326 6 325 5 324 4 327 7 325 5 326 6 328 8 327 7 326 6 329 9 327 7 328 8 330 10 329 9 328 8 331 11 329 9 330 10 332 12 331 11 330 10 333 13 331 11 332 12 334 14 333 13 332 12 335 15 333 13 334 14 336 16 335 15 334 14 336 17 335 15 336 16 339 2 338 1 337 0 340 3 338 1 339 2 341 4 340 3 339 2 342 5 340 3 341 4 343 6 342 5 341 4 344 7 342 5 343 6 345 8 344 7 343 6 346 9 344 7 345 8 347 10 346 9 345 8 348 11 346 9 347 10 349 12 348 11 347 10 350 13 348 11 349 12 351 14 350 13 349 12 352 15 350 13 351 14 353 16 352 15 351 14 354 17 352 15 353 16 357 2 356 1 355 0 358 3 356 1 357 2 359 4 358 3 357 2 360 5 358 3 359 4 361 6 360 5 359 4 362 7 360 5 361 6 363 8 362 7 361 6 364 9 362 7 363 8 365 10 364 9 363 8 366 11 364 9 365 10 367 12 366 11 365 10 368 13 366 11 367 12 369 14 368 13 367 12 370 15 368 13 369 14 371 16 370 15 369 14 372 17 370 15 371 16 375 2 374 1 373 0 376 3 374 1 375 2 377 4 376 3 375 2 378 5 376 3 377 4 379 6 378 5 377 4 380 7 378 5 379 6 381 8 380 7 379 6 382 9 380 7 381 8 383 10 382 9 381 8 384 11 382 9 383 10 385 12 384 11 383 10 386 13 384 11 385 12 387 14 386 13 385 12 388 15 386 13 387 14 389 16 388 15 387 14 390 17 388 15 389 16 393 2 392 1 391 0 394 3 392 1 393 2 395 4 394 3 393 2 396 5 394 3 395 4 397 6 396 5 395 4 398 7 396 5 397 6 399 8 398 7 397 6 400 9 398 7 399 8 401 10 400 9 399 8 402 11 400 9 401 10 403 12 402 11 401 10 404 13 402 11 403 12 405 14 404 13 403 12 406 15 404 13 405 14 407 16 406 15 405 14 408 17 406 15 407 16 411 2 410 1 409 0 412 3 410 1 411 2 413 4 412 3 411 2 414 5 412 3 413 4 415 6 414 5 413 4 416 7 414 5 415 6 417 8 416 7 415 6 418 9 416 7 417 8 419 10 418 9 417 8 420 11 418 9 419 10 421 12 420 11 419 10 422 13 420 11 421 12 423 14 422 13 421 12 424 15 422 13 423 14 425 16 424 15 423 14 426 17 424 15 425 16 429 2 428 1 427 0 430 3 428 1 429 2 431 4 430 3 429 2 432 5 430 3 431 4 433 6 432 5 431 4 434 7 432 5 433 6 435 8 434 7 433 6 436 9 434 7 435 8 437 10 436 9 435 8 438 11 436 9 437 10 439 12 438 11 437 10 440 13 438 11 439 12 441 14 440 13 439 12 442 15 440 13 441 14 443 16 442 15 441 14 444 17 442 15 443 16 447 2 446 1 445 0 448 3 446 1 447 2 449 4 448 3 447 2 450 5 448 3 449 4 451 6 450 5 449 4 452 7 450 5 451 6 453 8 452 7 451 6 454 9 452 7 453 8 455 10 454 9 453 8 456 11 454 9 455 10 457 12 456 11 455 10 458 13 456 11 457 12 459 14 458 13 457 12 460 15 458 13 459 14 461 16 460 15 459 14 462 17 460 15 461 16 465 2 464 1 463 0 466 3 464 1 465 2 467 4 466 3 465 2 468 5 466 3 467 4 469 6 468 5 467 4 470 7 468 5 469 6 471 8 470 7 469 6 472 9 470 7 471 8 473 10 472 9 471 8 474 11 472 9 473 10 475 12 474 11 473 10 476 13 474 11 475 12 477 14 476 13 475 12 478 15 476 13 477 14 479 16 478 15 477 14 480 17 478 15 479 16 483 2 482 1 481 0 484 3 482 1 483 2 485 4 484 3 483 2 486 5 484 3 485 4 487 6 486 5 485 4 488 7 486 5 487 6 489 8 488 7 487 6 490 9 488 7 489 8 491 10 490 9 489 8 492 11 490 9 491 10 493 12 492 11 491 10 494 13 492 11 493 12 495 14 494 13 493 12 496 15 494 13 495 14 497 16 496 15 495 14 498 17 496 15 497 16 501 2 500 1 499 0 502 3 500 1 501 2 503 4 502 3 501 2 504 5 502 3 503 4 505 6 504 5 503 4 506 7 504 5 505 6 507 8 506 7 505 6 508 9 506 7 507 8 509 10 508 9 507 8 510 11 508 9 509 10 511 12 510 11 509 10 512 13 510 11 511 12 513 14 512 13 511 12 514 15 512 13 513 14 515 16 514 15 513 14 516 17 514 15 515 16 519 2 518 1 517 0 520 3 518 1 519 2 521 4 520 3 519 2 522 5 520 3 521 4 523 6 522 5 521 4 524 7 522 5 523 6 525 8 524 7 523 6 526 9 524 7 525 8 527 10 526 9 525 8 528 11 526 9 527 10 529 12 528 11 527 10 530 13 528 11 529 12 531 14 530 13 529 12 532 15 530 13 531 14 533 16 532 15 531 14 534 17 532 15 533 16 537 2 536 1 535 0 538 3 536 1 537 2 539 4 538 3 537 2 540 5 538 3 539 4 541 6 540 5 539 4 542 7 540 5 541 6 543 8 542 7 541 6 544 9 542 7 543 8 545 10 544 9 543 8 546 11 544 9 545 10 547 12 546 11 545 10 548 13 546 11 547 12 549 14 548 13 547 12 550 15 548 13 549 14 551 16 550 15 549 14 552 17 550 15 551 16 555 2 554 1 553 0 556 3 554 1 555 2 557 4 556 3 555 2 558 5 556 3 557 4 559 6 558 5 557 4 560 7 558 5 559 6 561 8 560 7 559 6 562 9 560 7 561 8 563 10 562 9 561 8 564 11 562 9 563 10 565 12 564 11 563 10 566 13 564 11 565 12 567 14 566 13 565 12 568 15 566 13 567 14 569 16 568 15 567 14 570 17 568 15 569 16 573 2 572 1 571 0 574 3 572 1 573 2 575 4 574 3 573 2 576 5 574 3 575 4 577 6 576 5 575 4 578 7 576 5 577 6 579 8 578 7 577 6 580 9 578 7 579 8 581 10 580 9 579 8 582 11 580 9 581 10 583 12 582 11 581 10 584 13 582 11 583 12 585 14 584 13 583 12 586 15 584 13 585 14 587 16 586 15 585 14 588 17 586 15 587 16 591 2 590 1 589 0 592 3 590 1 591 2 593 4 592 3 591 2 594 5 592 3 593 4 595 6 594 5 593 4 596 7 594 5 595 6 597 8 596 7 595 6 598 9 596 7 597 8 599 10 598 9 597 8 600 11 598 9 599 10 601 12 600 11 599 10 602 13 600 11 601 12 603 14 602 13 601 12 604 15 602 13 603 14 605 16 604 15 603 14 606 17 604 15 605 16 609 2 608 1 607 0 610 3 608 1 609 2 611 4 610 3 609 2 612 5 610 3 611 4 613 6 612 5 611 4 614 7 612 5 613 6 615 8 614 7 613 6 616 9 614 7 615 8 617 10 616 9 615 8 618 11 616 9 617 10 619 12 618 11 617 10 620 13 618 11 619 12 621 14 620 13 619 12 622 15 620 13 621 14 623 16 622 15 621 14 624 17 622 15 623 16 627 2 626 1 625 0 628 3 626 1 627 2 629 4 628 3 627 2 630 5 628 3 629 4 631 6 630 5 629 4 632 7 630 5 631 6 633 8 632 7 631 6 634 9 632 7 633 8 635 10 634 9 633 8 636 11 634 9 635 10 637 12 636 11 635 10 638 13 636 11 637 12 639 14 638 13 637 12 640 15 638 13 639 14 641 16 640 15 639 14 642 17 640 15 641 16 645 2 644 1 643 0 646 3 644 1 645 2 647 4 646 3 645 2 648 5 646 3 647 4 649 6 648 5 647 4 650 7 648 5 649 6 651 8 650 7 649 6 652 9 650 7 651 8 653 10 652 9 651 8 654 11 652 9 653 10 655 12 654 11 653 10 656 13 654 11 655 12 657 14 656 13 655 12 658 15 656 13 657 14 659 16 658 15 657 14 660 17 658 15 659 16 663 2 662 1 661 0 664 3 662 1 663 2 665 4 664 3 663 2 666 5 664 3 665 4 667 6 666 5 665 4 668 7 666 5 667 6 669 8 668 7 667 6 670 9 668 7 669 8 671 10 670 9 669 8 672 11 670 9 671 10 673 12 672 11 671 10 674 13 672 11 673 12 675 14 674 13 673 12 676 15 674 13 675 14 677 16 676 15 675 14 677 17 676 15 677 16 680 2 679 1 678 0 681 3 679 1 680 2 682 4 681 3 680 2 683 5 681 3 682 4 684 6 683 5 682 4 685 7 683 5 684 6 686 8 685 7 684 6 687 9 685 7 686 8 688 10 687 9 686 8 689 11 687 9 688 10 690 12 689 11 688 10 691 13 689 11 690 12 692 14 691 13 690 12 693 15 691 13 692 14 694 16 693 15 692 14 694 17 693 15 694 16 697 2 696 1 695 0 698 3 696 1 697 2 699 4 698 3 697 2 700 5 698 3 699 4 701 6 700 5 699 4 702 7 700 5 701 6 703 8 702 7 701 6 704 9 702 7 703 8 705 10 704 9 703 8 706 11 704 9 705 10 707 12 706 11 705 10 708 13 706 11 707 12 709 14 708 13 707 12 710 15 708 13 709 14 711 16 710 15 709 14 712 17 710 15 711 16 715 2 714 1 713 0 716 3 714 1 715 2 717 4 716 3 715 2 718 5 716 3 717 4 719 6 718 5 717 4 720 7 718 5 719 6 721 8 720 7 719 6 722 9 720 7 721 8 723 10 722 9 721 8 724 11 722 9 723 10 725 12 724 11 723 10 726 13 724 11 725 12 727 14 726 13 725 12 728 15 726 13 727 14 729 16 728 15 727 14 730 17 728 15 729 16 733 2 732 1 731 0 734 3 732 1 733 2 735 4 734 3 733 2 736 5 734 3 735 4 737 6 736 5 735 4 738 7 736 5 737 6 739 8 738 7 737 6 740 9 738 7 739 8 741 10 740 9 739 8 742 11 740 9 741 10 743 12 742 11 741 10 744 13 742 11 743 12 745 14 744 13 743 12 746 15 744 13 745 14 747 16 746 15 745 14 748 17 746 15 747 16 751 2 750 1 749 0 752 3 750 1 751 2 753 4 752 3 751 2 754 5 752 3 753 4 755 6 754 5 753 4 756 7 754 5 755 6 757 8 756 7 755 6 758 9 756 7 757 8 759 10 758 9 757 8 760 11 758 9 759 10 761 12 760 11 759 10 762 13 760 11 761 12 763 14 762 13 761 12 764 15 762 13 763 14 765 16 764 15 763 14 766 17 764 15 765 16 769 2 768 1 767 0 770 3 768 1 769 2 771 4 770 3 769 2 772 5 770 3 771 4 773 6 772 5 771 4 774 7 772 5 773 6 775 8 774 7 773 6 776 9 774 7 775 8 777 10 776 9 775 8 778 11 776 9 777 10 779 12 778 11 777 10 780 13 778 11 779 12 781 14 780 13 779 12 782 15 780 13 781 14 783 16 782 15 781 14 784 17 782 15 783 16 787 2 786 1 785 0 788 3 786 1 787 2 789 4 788 3 787 2 790 5 788 3 789 4 791 6 790 5 789 4 792 7 790 5 791 6 793 8 792 7 791 6 794 9 792 7 793 8 795 10 794 9 793 8 796 11 794 9 795 10 797 12 796 11 795 10 798 13 796 11 797 12 799 14 798 13 797 12 800 15 798 13 799 14 801 16 800 15 799 14 802 17 800 15 801 16 805 2 804 1 803 0 806 3 804 1 805 2 807 4 806 3 805 2 808 5 806 3 807 4 809 6 808 5 807 4 810 7 808 5 809 6 811 8 810 7 809 6 812 9 810 7 811 8 813 10 812 9 811 8 814 11 812 9 813 10 815 12 814 11 813 10 816 13 814 11 815 12 817 14 816 13 815 12 818 15 816 13 817 14 819 16 818 15 817 14 820 17 818 15 819 16 823 2 822 1 821 0 824 3 822 1 823 2 825 4 824 3 823 2 826 5 824 3 825 4 827 6 826 5 825 4 828 7 826 5 827 6 829 8 828 7 827 6 830 9 828 7 829 8 831 10 830 9 829 8 832 11 830 9 831 10 833 12 832 11 831 10 834 13 832 11 833 12 835 14 834 13 833 12 836 15 834 13 835 14 837 16 836 15 835 14 838 17 836 15 837 16 841 2 840 1 839 0 842 3 840 1 841 2 843 4 842 3 841 2 844 5 842 3 843 4 845 6 844 5 843 4 846 7 844 5 845 6 847 8 846 7 845 6 848 9 846 7 847 8 849 10 848 9 847 8 850 11 848 9 849 10 851 12 850 11 849 10 852 13 850 11 851 12 853 14 852 13 851 12 854 15 852 13 853 14 855 16 854 15 853 14 856 17 854 15 855 16 859 2 858 1 857 0 860 3 858 1 859 2 861 4 860 3 859 2 862 5 860 3 861 4 863 6 862 5 861 4 864 7 862 5 863 6 865 8 864 7 863 6 866 9 864 7 865 8 867 10 866 9 865 8 868 11 866 9 867 10 869 12 868 11 867 10 870 13 868 11 869 12 871 14 870 13 869 12 872 15 870 13 871 14 873 16 872 15 871 14 874 17 872 15 873 16 877 2 876 1 875 0 878 3 876 1 877 2 879 4 878 3 877 2 880 5 878 3 879 4 881 6 880 5 879 4 882 7 880 5 881 6 883 8 882 7 881 6 884 9 882 7 883 8 885 10 884 9 883 8 886 11 884 9 885 10 887 12 886 11 885 10 888 13 886 11 887 12 889 14 888 13 887 12 890 15 888 13 889 14 891 16 890 15 889 14 892 17 890 15 891 16 895 2 894 1 893 0 896 3 894 1 895 2 897 4 896 3 895 2 898 5 896 3 897 4 899 6 898 5 897 4 900 7 898 5 899 6 901 8 900 7 899 6 902 9 900 7 901 8 903 10 902 9 901 8 904 11 902 9 903 10 905 12 904 11 903 10 906 13 904 11 905 12 907 14 906 13 905 12 908 15 906 13 907 14 909 16 908 15 907 14 910 17 908 15 909 16 913 2 912 1 911 0 914 3 912 1 913 2 915 4 914 3 913 2 916 5 914 3 915 4 917 6 916 5 915 4 918 7 916 5 917 6 919 8 918 7 917 6 920 9 918 7 919 8 921 10 920 9 919 8 922 11 920 9 921 10 923 12 922 11 921 10 924 13 922 11 923 12 925 14 924 13 923 12 926 15 924 13 925 14 927 16 926 15 925 14 928 17 926 15 927 16 931 2 930 1 929 0 932 3 930 1 931 2 933 4 932 3 931 2 934 5 932 3 933 4 935 6 934 5 933 4 936 7 934 5 935 6 937 8 936 7 935 6 938 9 936 7 937 8 939 10 938 9 937 8 940 11 938 9 939 10 941 12 940 11 939 10 942 13 940 11 941 12 943 14 942 13 941 12 944 15 942 13 943 14 945 16 944 15 943 14 946 17 944 15 945 16 949 2 948 1 947 0 950 3 948 1 949 2 951 4 950 3 949 2 952 5 950 3 951 4 953 6 952 5 951 4 954 7 952 5 953 6 955 8 954 7 953 6 956 9 954 7 955 8 957 10 956 9 955 8 958 11 956 9 957 10 959 12 958 11 957 10 960 13 958 11 959 12 961 14 960 13 959 12 962 15 960 13 961 14 963 16 962 15 961 14 964 17 962 15 963 16 967 2 966 1 965 0 968 3 966 1 967 2 969 4 968 3 967 2 970 5 968 3 969 4 971 6 970 5 969 4 972 7 970 5 971 6 973 8 972 7 971 6 974 9 972 7 973 8 975 10 974 9 973 8 976 11 974 9 975 10 977 12 976 11 975 10 978 13 976 11 977 12 979 14 978 13 977 12 980 15 978 13 979 14 981 16 980 15 979 14 982 17 980 15 981 16 985 2 984 1 983 0 986 3 984 1 985 2 987 4 986 3 985 2 988 5 986 3 987 4 989 6 988 5 987 4 990 7 988 5 989 6 991 8 990 7 989 6 992 9 990 7 991 8 993 10 992 9 991 8 994 11 992 9 993 10 995 12 994 11 993 10 996 13 994 11 995 12 997 14 996 13 995 12 998 15 996 13 997 14 999 16 998 15 997 14 1000 17 998 15 999 16 1003 2 1002 1 1001 0 1004 3 1002 1 1003 2 1005 4 1004 3 1003 2 1006 5 1004 3 1005 4 1007 6 1006 5 1005 4 1008 7 1006 5 1007 6 1009 8 1008 7 1007 6 1010 9 1008 7 1009 8 1011 10 1010 9 1009 8 1012 11 1010 9 1011 10 1013 12 1012 11 1011 10 1014 13 1012 11 1013 12 1015 14 1014 13 1013 12 1016 15 1014 13 1015 14 1017 16 1016 15 1015 14 1018 17 1016 15 1017 16 1021 2 1020 1 1019 0 1022 3 1020 1 1021 2 1023 4 1022 3 1021 2 1024 5 1022 3 1023 4 1025 6 1024 5 1023 4 1026 7 1024 5 1025 6 1027 8 1026 7 1025 6 1028 9 1026 7 1027 8 1029 10 1028 9 1027 8 1030 11 1028 9 1029 10 1031 12 1030 11 1029 10 1032 13 1030 11 1031 12 1033 14 1032 13 1031 12 1034 15 1032 13 1033 14 1035 16 1034 15 1033 14 1036 17 1034 15 1035 16 1039 2 1038 1 1037 0 1040 3 1038 1 1039 2 1041 4 1040 3 1039 2 1042 5 1040 3 1041 4 1043 6 1042 5 1041 4 1044 7 1042 5 1043 6 1045 8 1044 7 1043 6 1046 9 1044 7 1045 8 1047 10 1046 9 1045 8 1048 11 1046 9 1047 10 1049 12 1048 11 1047 10 1050 13 1048 11 1049 12 1051 14 1050 13 1049 12 1052 15 1050 13 1051 14 1053 16 1052 15 1051 14 1054 17 1052 15 1053 16 1057 2 1056 1 1055 0 1058 3 1056 1 1057 2 1059 4 1058 3 1057 2 1060 5 1058 3 1059 4 1061 6 1060 5 1059 4 1062 7 1060 5 1061 6 1063 8 1062 7 1061 6 1064 9 1062 7 1063 8 1065 10 1064 9 1063 8 1066 11 1064 9 1065 10 1067 12 1066 11 1065 10 1068 13 1066 11 1067 12 1069 14 1068 13 1067 12 1070 15 1068 13 1069 14 1071 16 1070 15 1069 14 1072 17 1070 15 1071 16 1075 2 1074 1 1073 0 1076 3 1074 1 1075 2 1077 4 1076 3 1075 2 1078 5 1076 3 1077 4 1079 6 1078 5 1077 4 1080 7 1078 5 1079 6 1081 8 1080 7 1079 6 1082 9 1080 7 1081 8 1083 10 1082 9 1081 8 1084 11 1082 9 1083 10 1085 12 1084 11 1083 10 1086 13 1084 11 1085 12 1087 14 1086 13 1085 12 1088 15 1086 13 1087 14 1089 16 1088 15 1087 14 1090 17 1088 15 1089 16 1093 2 1092 1 1091 0 1094 3 1092 1 1093 2 1095 4 1094 3 1093 2 1096 5 1094 3 1095 4 1097 6 1096 5 1095 4 1098 7 1096 5 1097 6 1099 8 1098 7 1097 6 1100 9 1098 7 1099 8 1101 10 1100 9 1099 8 1102 11 1100 9 1101 10 1103 12 1102 11 1101 10 1104 13 1102 11 1103 12 1105 14 1104 13 1103 12 1106 15 1104 13 1105 14 1107 16 1106 15 1105 14 1108 17 1106 15 1107 16 1111 2 1110 1 1109 0 1112 3 1110 1 1111 2 1113 4 1112 3 1111 2 1114 5 1112 3 1113 4 1115 6 1114 5 1113 4 1116 7 1114 5 1115 6 1117 8 1116 7 1115 6 1118 9 1116 7 1117 8 1119 10 1118 9 1117 8 1120 11 1118 9 1119 10 1121 12 1120 11 1119 10 1122 13 1120 11 1121 12 1123 14 1122 13 1121 12 1124 15 1122 13 1123 14 1125 16 1124 15 1123 14 1126 17 1124 15 1125 16 1129 2 1128 1 1127 0 1130 3 1128 1 1129 2 1131 4 1130 3 1129 2 1132 5 1130 3 1131 4 1133 6 1132 5 1131 4 1134 7 1132 5 1133 6 1135 8 1134 7 1133 6 1136 9 1134 7 1135 8 1137 10 1136 9 1135 8 1138 11 1136 9 1137 10 1139 12 1138 11 1137 10 1140 13 1138 11 1139 12 1141 14 1140 13 1139 12 1142 15 1140 13 1141 14 1143 16 1142 15 1141 14 1144 17 1142 15 1143 16 1147 2 1146 1 1145 0 1148 3 1146 1 1147 2 1149 4 1148 3 1147 2 1150 5 1148 3 1149 4 1151 6 1150 5 1149 4 1152 7 1150 5 1151 6 1153 8 1152 7 1151 6 1154 9 1152 7 1153 8 1155 10 1154 9 1153 8 1156 11 1154 9 1155 10 1157 12 1156 11 1155 10 1158 13 1156 11 1157 12 1159 14 1158 13 1157 12 1160 15 1158 13 1159 14 1161 16 1160 15 1159 14 1162 17 1160 15 1161 16 1165 2 1164 1 1163 0 1166 3 1164 1 1165 2 1167 4 1166 3 1165 2 1168 5 1166 3 1167 4 1169 6 1168 5 1167 4 1170 7 1168 5 1169 6 1171 8 1170 7 1169 6 1172 9 1170 7 1171 8 1173 10 1172 9 1171 8 1174 11 1172 9 1173 10 1175 12 1174 11 1173 10 1176 13 1174 11 1175 12 1177 14 1176 13 1175 12 1178 15 1176 13 1177 14 1179 16 1178 15 1177 14 1180 17 1178 15 1179 16 1183 2 1182 1 1181 0 1184 3 1182 1 1183 2 1185 4 1184 3 1183 2 1186 5 1184 3 1185 4 1187 6 1186 5 1185 4 1188 7 1186 5 1187 6 1189 8 1188 7 1187 6 1190 9 1188 7 1189 8 1191 10 1190 9 1189 8 1192 11 1190 9 1191 10 1193 12 1192 11 1191 10 1194 13 1192 11 1193 12 1195 14 1194 13 1193 12 1196 15 1194 13 1195 14 1197 16 1196 15 1195 14 1197 17 1196 15 1197 16 1200 2 1199 1 1198 0 1201 3 1199 1 1200 2 1202 4 1201 3 1200 2 1203 5 1201 3 1202 4 1204 6 1203 5 1202 4 1205 7 1203 5 1204 6 1206 8 1205 7 1204 6 1207 9 1205 7 1206 8 1208 10 1207 9 1206 8 1209 11 1207 9 1208 10 1210 12 1209 11 1208 10 1211 13 1209 11 1210 12 1212 14 1211 13 1210 12 1213 15 1211 13 1212 14 1214 16 1213 15 1212 14 1214 17 1213 15 1214 16 1217 2 1216 1 1215 0 1218 3 1216 1 1217 2 1219 4 1218 3 1217 2 1220 5 1218 3 1219 4 1221 6 1220 5 1219 4 1222 7 1220 5 1221 6 1223 8 1222 7 1221 6 1224 9 1222 7 1223 8 1225 10 1224 9 1223 8 1226 11 1224 9 1225 10 1227 12 1226 11 1225 10 1228 13 1226 11 1227 12 1229 14 1228 13 1227 12 1230 15 1228 13 1229 14 1231 16 1230 15 1229 14 1232 17 1230 15 1231 16 1235 2 1234 1 1233 0 1236 3 1234 1 1235 2 1237 4 1236 3 1235 2 1238 5 1236 3 1237 4 1239 6 1238 5 1237 4 1240 7 1238 5 1239 6 1241 8 1240 7 1239 6 1242 9 1240 7 1241 8 1243 10 1242 9 1241 8 1244 11 1242 9 1243 10 1245 12 1244 11 1243 10 1246 13 1244 11 1245 12 1247 14 1246 13 1245 12 1248 15 1246 13 1247 14 1249 16 1248 15 1247 14 1250 17 1248 15 1249 16 1253 2 1252 1 1251 0 1254 3 1252 1 1253 2 1255 4 1254 3 1253 2 1256 5 1254 3 1255 4 1257 6 1256 5 1255 4 1258 7 1256 5 1257 6 1259 8 1258 7 1257 6 1260 9 1258 7 1259 8 1261 10 1260 9 1259 8 1262 11 1260 9 1261 10 1263 12 1262 11 1261 10 1264 13 1262 11 1263 12 1265 14 1264 13 1263 12 1266 15 1264 13 1265 14 1267 16 1266 15 1265 14 1268 17 1266 15 1267 16 1271 2 1270 1 1269 0 1272 3 1270 1 1271 2 1273 4 1272 3 1271 2 1274 5 1272 3 1273 4 1275 6 1274 5 1273 4 1276 7 1274 5 1275 6 1277 8 1276 7 1275 6 1278 9 1276 7 1277 8 1279 10 1278 9 1277 8 1280 11 1278 9 1279 10 1281 12 1280 11 1279 10 1282 13 1280 11 1281 12 1283 14 1282 13 1281 12 1284 15 1282 13 1283 14 1285 16 1284 15 1283 14 1286 17 1284 15 1285 16 1289 2 1288 1 1287 0 1290 3 1288 1 1289 2 1291 4 1290 3 1289 2 1292 5 1290 3 1291 4 1293 6 1292 5 1291 4 1294 7 1292 5 1293 6 1295 8 1294 7 1293 6 1296 9 1294 7 1295 8 1297 10 1296 9 1295 8 1298 11 1296 9 1297 10 1299 12 1298 11 1297 10 1300 13 1298 11 1299 12 1301 14 1300 13 1299 12 1302 15 1300 13 1301 14 1303 16 1302 15 1301 14 1304 17 1302 15 1303 16 1307 2 1306 1 1305 0 1308 3 1306 1 1307 2 1309 4 1308 3 1307 2 1310 5 1308 3 1309 4 1311 6 1310 5 1309 4 1312 7 1310 5 1311 6 1313 8 1312 7 1311 6 1314 9 1312 7 1313 8 1315 10 1314 9 1313 8 1316 11 1314 9 1315 10 1317 12 1316 11 1315 10 1318 13 1316 11 1317 12 1319 14 1318 13 1317 12 1320 15 1318 13 1319 14 1321 16 1320 15 1319 14 1321 17 1320 15 1321 16 1324 2 1323 1 1322 0 1325 3 1323 1 1324 2 1326 4 1325 3 1324 2 1327 5 1325 3 1326 4 1328 6 1327 5 1326 4 1329 7 1327 5 1328 6 1330 8 1329 7 1328 6 1331 9 1329 7 1330 8 1332 10 1331 9 1330 8 1333 11 1331 9 1332 10 1334 12 1333 11 1332 10 1335 13 1333 11 1334 12 1336 14 1335 13 1334 12 1337 15 1335 13 1336 14 1338 16 1337 15 1336 14 1339 17 1337 15 1338 16 1342 2 1341 1 1340 0 1343 3 1341 1 1342 2 1344 4 1343 3 1342 2 1345 5 1343 3 1344 4 1346 6 1345 5 1344 4 1347 7 1345 5 1346 6 1348 8 1347 7 1346 6 1349 9 1347 7 1348 8 1350 10 1349 9 1348 8 1351 11 1349 9 1350 10 1352 12 1351 11 1350 10 1353 13 1351 11 1352 12 1354 14 1353 13 1352 12 1355 15 1353 13 1354 14 1356 16 1355 15 1354 14 1357 17 1355 15 1356 16 1360 2 1359 1 1358 0 1361 3 1359 1 1360 2 1362 4 1361 3 1360 2 1363 5 1361 3 1362 4 1364 6 1363 5 1362 4 1365 7 1363 5 1364 6 1366 8 1365 7 1364 6 1367 9 1365 7 1366 8 1368 10 1367 9 1366 8 1369 11 1367 9 1368 10 1370 12 1369 11 1368 10 1371 13 1369 11 1370 12 1372 14 1371 13 1370 12 1373 15 1371 13 1372 14 1374 16 1373 15 1372 14 1375 17 1373 15 1374 16 1378 2 1377 1 1376 0 1379 3 1377 1 1378 2 1380 4 1379 3 1378 2 1381 5 1379 3 1380 4 1382 6 1381 5 1380 4 1383 7 1381 5 1382 6 1384 8 1383 7 1382 6 1385 9 1383 7 1384 8 1386 10 1385 9 1384 8 1387 11 1385 9 1386 10 1388 12 1387 11 1386 10 1389 13 1387 11 1388 12 1390 14 1389 13 1388 12 1391 15 1389 13 1390 14 1392 16 1391 15 1390 14 1393 17 1391 15 1392 16 1396 2 1395 1 1394 0 1397 3 1395 1 1396 2 1398 4 1397 3 1396 2 1399 5 1397 3 1398 4 1400 6 1399 5 1398 4 1401 7 1399 5 1400 6 1402 8 1401 7 1400 6 1403 9 1401 7 1402 8 1404 10 1403 9 1402 8 1405 11 1403 9 1404 10 1406 12 1405 11 1404 10 1407 13 1405 11 1406 12 1408 14 1407 13 1406 12 1409 15 1407 13 1408 14 1410 16 1409 15 1408 14 1411 17 1409 15 1410 16 1414 2 1413 1 1412 0 1415 3 1413 1 1414 2 1416 4 1415 3 1414 2 1416 5 1415 3 1416 4 1417 6 1416 5 1416 4 1418 7 1416 5 1417 6 1419 8 1418 7 1417 6 1420 9 1418 7 1419 8 1421 10 1420 9 1419 8 1422 11 1420 9 1421 10 1423 12 1422 11 1421 10 1424 13 1422 11 1423 12 1425 14 1424 13 1423 12 1426 15 1424 13 1425 14 1427 16 1426 15 1425 14 1428 17 1426 15 1427 16 1431 2 1430 1 1429 0 1432 3 1430 1 1431 2 1433 4 1432 3 1431 2 1434 5 1432 3 1433 4 1435 6 1434 5 1433 4 1436 7 1434 5 1435 6 1437 8 1436 7 1435 6 1438 9 1436 7 1437 8 1439 10 1438 9 1437 8 1440 11 1438 9 1439 10 1441 12 1440 11 1439 10 1442 13 1440 11 1441 12 1443 14 1442 13 1441 12 1444 15 1442 13 1443 14 1445 16 1444 15 1443 14 1446 17 1444 15 1445 16 1449 2 1448 1 1447 0 1450 3 1448 1 1449 2 1451 4 1450 3 1449 2 1452 5 1450 3 1451 4 1453 6 1452 5 1451 4 1454 7 1452 5 1453 6 1455 8 1454 7 1453 6 1456 9 1454 7 1455 8 1457 10 1456 9 1455 8 1458 11 1456 9 1457 10 1459 12 1458 11 1457 10 1460 13 1458 11 1459 12 1461 14 1460 13 1459 12 1462 15 1460 13 1461 14 1463 16 1462 15 1461 14 1464 17 1462 15 1463 16 1467 2 1466 1 1465 0 1468 3 1466 1 1467 2 1469 4 1468 3 1467 2 1470 5 1468 3 1469 4 1471 6 1470 5 1469 4 1472 7 1470 5 1471 6 1473 8 1472 7 1471 6 1474 9 1472 7 1473 8 1475 10 1474 9 1473 8 1476 11 1474 9 1475 10 1477 12 1476 11 1475 10 1478 13 1476 11 1477 12 1479 14 1478 13 1477 12 1480 15 1478 13 1479 14 1481 16 1480 15 1479 14 1482 17 1480 15 1481 16 1485 2 1484 1 1483 0 1486 3 1484 1 1485 2 1487 4 1486 3 1485 2 1488 5 1486 3 1487 4 1489 6 1488 5 1487 4 1490 7 1488 5 1489 6 1491 8 1490 7 1489 6 1492 9 1490 7 1491 8 1493 10 1492 9 1491 8 1494 11 1492 9 1493 10 1495 12 1494 11 1493 10 1496 13 1494 11 1495 12 1497 14 1496 13 1495 12 1498 15 1496 13 1497 14 1499 16 1498 15 1497 14 1500 17 1498 15 1499 16 1503 2 1502 1 1501 0 1504 3 1502 1 1503 2 1505 4 1504 3 1503 2 1506 5 1504 3 1505 4 1507 6 1506 5 1505 4 1508 7 1506 5 1507 6 1509 8 1508 7 1507 6 1510 9 1508 7 1509 8 1511 10 1510 9 1509 8 1512 11 1510 9 1511 10 1513 12 1512 11 1511 10 1514 13 1512 11 1513 12 1515 14 1514 13 1513 12 1516 15 1514 13 1515 14 1517 16 1516 15 1515 14 1518 17 1516 15 1517 16 1521 2 1520 1 1519 0 1522 3 1520 1 1521 2 1523 4 1522 3 1521 2 1524 5 1522 3 1523 4 1525 6 1524 5 1523 4 1526 7 1524 5 1525 6 1527 8 1526 7 1525 6 1528 9 1526 7 1527 8 1529 10 1528 9 1527 8 1530 11 1528 9 1529 10 1531 12 1530 11 1529 10 1532 13 1530 11 1531 12 1533 14 1532 13 1531 12 1534 15 1532 13 1533 14 1535 16 1534 15 1533 14 1536 17 1534 15 1535 16 1539 2 1538 1 1537 0 1540 3 1538 1 1539 2 1541 4 1540 3 1539 2 1542 5 1540 3 1541 4 1543 6 1542 5 1541 4 1544 7 1542 5 1543 6 1545 8 1544 7 1543 6 1546 9 1544 7 1545 8 1547 10 1546 9 1545 8 1548 11 1546 9 1547 10 1549 12 1548 11 1547 10 1550 13 1548 11 1549 12 1551 14 1550 13 1549 12 1552 15 1550 13 1551 14 1553 16 1552 15 1551 14 1554 17 1552 15 1553 16 1557 2 1556 1 1555 0 1558 3 1556 1 1557 2 1559 4 1558 3 1557 2 1560 5 1558 3 1559 4 1561 6 1560 5 1559 4 1562 7 1560 5 1561 6 1563 8 1562 7 1561 6 1564 9 1562 7 1563 8 1565 10 1564 9 1563 8 1566 11 1564 9 1565 10 1567 12 1566 11 1565 10 1568 13 1566 11 1567 12 1569 14 1568 13 1567 12 1570 15 1568 13 1569 14 1571 16 1570 15 1569 14 1572 17 1570 15 1571 16 1575 2 1574 1 1573 0 1576 3 1574 1 1575 2 1577 4 1576 3 1575 2 1578 5 1576 3 1577 4 1579 6 1578 5 1577 4 1580 7 1578 5 1579 6 1581 8 1580 7 1579 6 1582 9 1580 7 1581 8 1583 10 1582 9 1581 8 1584 11 1582 9 1583 10 1585 12 1584 11 1583 10 1586 13 1584 11 1585 12 1587 14 1586 13 1585 12 1588 15 1586 13 1587 14 1589 16 1588 15 1587 14 1590 17 1588 15 1589 16 1593 2 1592 1 1591 0 1594 3 1592 1 1593 2 1595 4 1594 3 1593 2 1596 5 1594 3 1595 4 1597 6 1596 5 1595 4 1598 7 1596 5 1597 6 1599 8 1598 7 1597 6 1600 9 1598 7 1599 8 1601 10 1600 9 1599 8 1602 11 1600 9 1601 10 1603 12 1602 11 1601 10 1604 13 1602 11 1603 12 1605 14 1604 13 1603 12 1606 15 1604 13 1605 14 1607 16 1606 15 1605 14 1607 17 1606 15 1607 16 1610 2 1609 1 1608 0 1611 3 1609 1 1610 2 1612 4 1611 3 1610 2 1613 5 1611 3 1612 4 1614 6 1613 5 1612 4 1615 7 1613 5 1614 6 1616 8 1615 7 1614 6 1617 9 1615 7 1616 8 1618 10 1617 9 1616 8 1619 11 1617 9 1618 10 1620 12 1619 11 1618 10 1621 13 1619 11 1620 12 1622 14 1621 13 1620 12 1623 15 1621 13 1622 14 1624 16 1623 15 1622 14 1625 17 1623 15 1624 16 1628 2 1627 1 1626 0 1629 3 1627 1 1628 2 1630 4 1629 3 1628 2 1631 5 1629 3 1630 4 1632 6 1631 5 1630 4 1633 7 1631 5 1632 6 1634 8 1633 7 1632 6 1635 9 1633 7 1634 8 1636 10 1635 9 1634 8 1637 11 1635 9 1636 10 1638 12 1637 11 1636 10 1639 13 1637 11 1638 12 1640 14 1639 13 1638 12 1641 15 1639 13 1640 14 1642 16 1641 15 1640 14 1643 17 1641 15 1642 16 1646 2 1645 1 1644 0 1647 3 1645 1 1646 2 1648 4 1647 3 1646 2 1649 5 1647 3 1648 4 1650 6 1649 5 1648 4 1651 7 1649 5 1650 6 1652 8 1651 7 1650 6 1653 9 1651 7 1652 8 1654 10 1653 9 1652 8 1655 11 1653 9 1654 10 1656 12 1655 11 1654 10 1657 13 1655 11 1656 12 1658 14 1657 13 1656 12 1659 15 1657 13 1658 14 1660 16 1659 15 1658 14 1661 17 1659 15 1660 16 1664 2 1663 1 1662 0 1665 3 1663 1 1664 2 1666 4 1665 3 1664 2 1667 5 1665 3 1666 4 1668 6 1667 5 1666 4 1669 7 1667 5 1668 6 1670 8 1669 7 1668 6 1671 9 1669 7 1670 8 1672 10 1671 9 1670 8 1673 11 1671 9 1672 10 1674 12 1673 11 1672 10 1675 13 1673 11 1674 12 1676 14 1675 13 1674 12 1677 15 1675 13 1676 14 1678 16 1677 15 1676 14 1679 17 1677 15 1678 16 1682 2 1681 1 1680 0 1683 3 1681 1 1682 2 1684 4 1683 3 1682 2 1685 5 1683 3 1684 4 1686 6 1685 5 1684 4 1687 7 1685 5 1686 6 1688 8 1687 7 1686 6 1689 9 1687 7 1688 8 1690 10 1689 9 1688 8 1691 11 1689 9 1690 10 1692 12 1691 11 1690 10 1693 13 1691 11 1692 12 1694 14 1693 13 1692 12 1695 15 1693 13 1694 14 1696 16 1695 15 1694 14 1697 17 1695 15 1696 16 1700 2 1699 1 1698 0 1701 3 1699 1 1700 2 1702 4 1701 3 1700 2 1703 5 1701 3 1702 4 1704 6 1703 5 1702 4 1705 7 1703 5 1704 6 1706 8 1705 7 1704 6 1707 9 1705 7 1706 8 1708 10 1707 9 1706 8 1709 11 1707 9 1708 10 1710 12 1709 11 1708 10 1711 13 1709 11 1710 12 1712 14 1711 13 1710 12 1713 15 1711 13 1712 14 1714 16 1713 15 1712 14 1715 17 1713 15 1714 16 1718 2 1717 1 1716 0 1719 3 1717 1 1718 2 1720 4 1719 3 1718 2 1721 5 1719 3 1720 4 1722 6 1721 5 1720 4 1723 7 1721 5 1722 6 1724 8 1723 7 1722 6 1725 9 1723 7 1724 8 1726 10 1725 9 1724 8 1727 11 1725 9 1726 10 1728 12 1727 11 1726 10 1729 13 1727 11 1728 12 1730 14 1729 13 1728 12 1731 15 1729 13 1730 14 1732 16 1731 15 1730 14 1733 17 1731 15 1732 16 1718 2 1735 1 1734 0 1736 3 1735 1 1718 2 1737 4 1736 3 1718 2 1738 5 1736 3 1737 4 1739 6 1738 5 1737 4 1740 7 1738 5 1739 6 1741 8 1740 7 1739 6 1742 9 1740 7 1741 8 1743 10 1742 9 1741 8 1744 11 1742 9 1743 10 1745 12 1744 11 1743 10 1746 13 1744 11 1745 12 1747 14 1746 13 1745 12 1748 15 1746 13 1747 14 1749 16 1748 15 1747 14 1750 17 1748 15 1749 16 1753 2 1752 1 1751 0 1754 3 1752 1 1753 2 1755 4 1754 3 1753 2 1756 5 1754 3 1755 4 1757 6 1756 5 1755 4 1758 7 1756 5 1757 6 1759 8 1758 7 1757 6 1760 9 1758 7 1759 8 1761 10 1760 9 1759 8 1762 11 1760 9 1761 10 1763 12 1762 11 1761 10 1764 13 1762 11 1763 12 1765 14 1764 13 1763 12 1766 15 1764 13 1765 14 1767 16 1766 15 1765 14 1768 17 1766 15 1767 16 1771 2 1770 1 1769 0 1772 3 1770 1 1771 2 1773 4 1772 3 1771 2 1774 5 1772 3 1773 4 1775 6 1774 5 1773 4 1776 7 1774 5 1775 6 1777 8 1776 7 1775 6 1778 9 1776 7 1777 8 1779 10 1778 9 1777 8 1780 11 1778 9 1779 10 1781 12 1780 11 1779 10 1782 13 1780 11 1781 12 1783 14 1782 13 1781 12 1784 15 1782 13 1783 14 1785 16 1784 15 1783 14 1786 17 1784 15 1785 16 1789 2 1788 1 1787 0 1790 3 1788 1 1789 2 1791 4 1790 3 1789 2 1792 5 1790 3 1791 4 1793 6 1792 5 1791 4 1794 7 1792 5 1793 6 1795 8 1794 7 1793 6 1796 9 1794 7 1795 8 1797 10 1796 9 1795 8 1798 11 1796 9 1797 10 1799 12 1798 11 1797 10 1800 13 1798 11 1799 12 1801 14 1800 13 1799 12 1802 15 1800 13 1801 14 1803 16 1802 15 1801 14 1804 17 1802 15 1803 16 1807 2 1806 1 1805 0 1808 3 1806 1 1807 2 1809 4 1808 3 1807 2 1810 5 1808 3 1809 4 1811 6 1810 5 1809 4 1812 7 1810 5 1811 6 1813 8 1812 7 1811 6 1814 9 1812 7 1813 8 1815 10 1814 9 1813 8 1816 11 1814 9 1815 10 1817 12 1816 11 1815 10 1818 13 1816 11 1817 12 1819 14 1818 13 1817 12 1820 15 1818 13 1819 14 1821 16 1820 15 1819 14 1821 17 1820 15 1821 16 1824 2 1823 1 1822 0 1825 3 1823 1 1824 2 1826 4 1825 3 1824 2 1827 5 1825 3 1826 4 1828 6 1827 5 1826 4 1829 7 1827 5 1828 6 1830 8 1829 7 1828 6 1831 9 1829 7 1830 8 1832 10 1831 9 1830 8 1833 11 1831 9 1832 10 1834 12 1833 11 1832 10 1835 13 1833 11 1834 12 1836 14 1835 13 1834 12 1837 15 1835 13 1836 14 1838 16 1837 15 1836 14 1839 17 1837 15 1838 16 1824 2 1841 1 1840 0 1842 3 1841 1 1824 2 1843 4 1842 3 1824 2 1844 5 1842 3 1843 4 1845 6 1844 5 1843 4 1846 7 1844 5 1845 6 1847 8 1846 7 1845 6 1848 9 1846 7 1847 8 1849 10 1848 9 1847 8 1850 11 1848 9 1849 10 1851 12 1850 11 1849 10 1852 13 1850 11 1851 12 1853 14 1852 13 1851 12 1854 15 1852 13 1853 14 1855 16 1854 15 1853 14 1856 17 1854 15 1855 16 1859 2 1858 1 1857 0 1860 3 1858 1 1859 2 1861 4 1860 3 1859 2 1862 5 1860 3 1861 4 1863 6 1862 5 1861 4 1864 7 1862 5 1863 6 1865 8 1864 7 1863 6 1866 9 1864 7 1865 8 1867 10 1866 9 1865 8 1868 11 1866 9 1867 10 1869 12 1868 11 1867 10 1870 13 1868 11 1869 12 1871 14 1870 13 1869 12 1872 15 1870 13 1871 14 1873 16 1872 15 1871 14 1874 17 1872 15 1873 16 1877 2 1876 1 1875 0 1878 3 1876 1 1877 2 1879 4 1878 3 1877 2 1880 5 1878 3 1879 4 1881 6 1880 5 1879 4 1882 7 1880 5 1881 6 1883 8 1882 7 1881 6 1884 9 1882 7 1883 8 1885 10 1884 9 1883 8 1886 11 1884 9 1885 10 1887 12 1886 11 1885 10 1888 13 1886 11 1887 12 1889 14 1888 13 1887 12 1890 15 1888 13 1889 14 1891 16 1890 15 1889 14 1892 17 1890 15 1891 16 1895 2 1894 1 1893 0 1896 3 1894 1 1895 2 1897 4 1896 3 1895 2 1898 5 1896 3 1897 4 1899 6 1898 5 1897 4 1900 7 1898 5 1899 6 1901 8 1900 7 1899 6 1902 9 1900 7 1901 8 1903 10 1902 9 1901 8 1904 11 1902 9 1903 10 1905 12 1904 11 1903 10 1906 13 1904 11 1905 12 1907 14 1906 13 1905 12 1908 15 1906 13 1907 14 1909 16 1908 15 1907 14 1910 17 1908 15 1909 16 1913 2 1912 1 1911 0 1914 3 1912 1 1913 2 1915 4 1914 3 1913 2 1916 5 1914 3 1915 4 1917 6 1916 5 1915 4 1918 7 1916 5 1917 6 1919 8 1918 7 1917 6 1920 9 1918 7 1919 8 1921 10 1920 9 1919 8 1922 11 1920 9 1921 10 1923 12 1922 11 1921 10 1924 13 1922 11 1923 12 1925 14 1924 13 1923 12 1926 15 1924 13 1925 14 1927 16 1926 15 1925 14 1928 17 1926 15 1927 16 1931 2 1930 1 1929 0 1932 3 1930 1 1931 2 1933 4 1932 3 1931 2 1934 5 1932 3 1933 4 1935 6 1934 5 1933 4 1936 7 1934 5 1935 6 1937 8 1936 7 1935 6 1938 9 1936 7 1937 8 1939 10 1938 9 1937 8 1940 11 1938 9 1939 10 1941 12 1940 11 1939 10 1942 13 1940 11 1941 12 1943 14 1942 13 1941 12 1944 15 1942 13 1943 14 1945 16 1944 15 1943 14 1946 17 1944 15 1945 16 1949 2 1948 1 1947 0 1950 3 1948 1 1949 2 1951 4 1950 3 1949 2 1952 5 1950 3 1951 4 1953 6 1952 5 1951 4 1954 7 1952 5 1953 6 1955 8 1954 7 1953 6 1956 9 1954 7 1955 8 1957 10 1956 9 1955 8 1958 11 1956 9 1957 10 1959 12 1958 11 1957 10 1960 13 1958 11 1959 12 1961 14 1960 13 1959 12 1962 15 1960 13 1961 14 1963 16 1962 15 1961 14 1964 17 1962 15 1963 16 1967 2 1966 1 1965 0 1968 3 1966 1 1967 2 1969 4 1968 3 1967 2 1970 5 1968 3 1969 4 1971 6 1970 5 1969 4 1972 7 1970 5 1971 6 1973 8 1972 7 1971 6 1974 9 1972 7 1973 8 1975 10 1974 9 1973 8 1976 11 1974 9 1975 10 1977 12 1976 11 1975 10 1978 13 1976 11 1977 12 1979 14 1978 13 1977 12 1980 15 1978 13 1979 14 1981 16 1980 15 1979 14 1982 17 1980 15 1981 16 1985 2 1984 1 1983 0 1986 3 1984 1 1985 2 1987 4 1986 3 1985 2 1988 5 1986 3 1987 4 1989 6 1988 5 1987 4 1990 7 1988 5 1989 6 1991 8 1990 7 1989 6 1992 9 1990 7 1991 8 1993 10 1992 9 1991 8 1994 11 1992 9 1993 10 1995 12 1994 11 1993 10 1996 13 1994 11 1995 12 1997 14 1996 13 1995 12 1998 15 1996 13 1997 14 1999 16 1998 15 1997 14 2000 17 1998 15 1999 16 2003 2 2002 1 2001 0 2004 3 2002 1 2003 2 2005 4 2004 3 2003 2 2006 5 2004 3 2005 4 2007 6 2006 5 2005 4 2008 7 2006 5 2007 6 2009 8 2008 7 2007 6 2010 9 2008 7 2009 8 2011 10 2010 9 2009 8 2012 11 2010 9 2011 10 2013 12 2012 11 2011 10 2014 13 2012 11 2013 12 2015 14 2014 13 2013 12 2016 15 2014 13 2015 14 2017 16 2016 15 2015 14 2018 17 2016 15 2017 16 2021 2 2020 1 2019 0 2022 3 2020 1 2021 2 2023 4 2022 3 2021 2 2024 5 2022 3 2023 4 2025 6 2024 5 2023 4 2026 7 2024 5 2025 6 2027 8 2026 7 2025 6 2028 9 2026 7 2027 8 2029 10 2028 9 2027 8 2030 11 2028 9 2029 10 2031 12 2030 11 2029 10 2032 13 2030 11 2031 12 2033 14 2032 13 2031 12 2034 15 2032 13 2033 14 2035 16 2034 15 2033 14 2036 17 2034 15 2035 16 2039 2 2038 1 2037 0 2040 3 2038 1 2039 2 2041 4 2040 3 2039 2 2041 5 2040 3 2041 4 2042 6 2041 5 2041 4 2043 7 2041 5 2042 6 2044 8 2043 7 2042 6 2045 9 2043 7 2044 8 2046 10 2045 9 2044 8 2047 11 2045 9 2046 10 2048 12 2047 11 2046 10 2049 13 2047 11 2048 12 2050 14 2049 13 2048 12 2051 15 2049 13 2050 14 2052 16 2051 15 2050 14 2053 17 2051 15 2052 16 2056 2 2055 1 2054 0 2057 3 2055 1 2056 2 2058 4 2057 3 2056 2 2059 5 2057 3 2058 4 2060 6 2059 5 2058 4 2061 7 2059 5 2060 6 2062 8 2061 7 2060 6 2063 9 2061 7 2062 8 2064 10 2063 9 2062 8 2065 11 2063 9 2064 10 2066 12 2065 11 2064 10 2067 13 2065 11 2066 12 2068 14 2067 13 2066 12 2069 15 2067 13 2068 14 2070 16 2069 15 2068 14 2071 17 2069 15 2070 16 2074 2 2073 1 2072 0 2075 3 2073 1 2074 2 2076 4 2075 3 2074 2 2077 5 2075 3 2076 4 2078 6 2077 5 2076 4 2079 7 2077 5 2078 6 2080 8 2079 7 2078 6 2081 9 2079 7 2080 8 2082 10 2081 9 2080 8 2083 11 2081 9 2082 10 2084 12 2083 11 2082 10 2085 13 2083 11 2084 12 2086 14 2085 13 2084 12 2087 15 2085 13 2086 14 2088 16 2087 15 2086 14 2089 17 2087 15 2088 16 2092 2 2091 1 2090 0 2093 3 2091 1 2092 2 2094 4 2093 3 2092 2 2095 5 2093 3 2094 4 2096 6 2095 5 2094 4 2097 7 2095 5 2096 6 2098 8 2097 7 2096 6 2099 9 2097 7 2098 8 2100 18 2099 9 2098 8 2101 19 2099 9 2100 18 2102 12 2101 19 2100 18 2103 13 2101 19 2102 12 2104 14 2103 13 2102 12 2105 15 2103 13 2104 14 2107 2 2090 1 2106 0 2108 3 2090 1 2107 2 2109 4 2108 3 2107 2 2110 5 2108 3 2109 4 2111 6 2110 5 2109 4 2112 7 2110 5 2111 6 2113 8 2112 7 2111 6 2114 9 2112 7 2113 8 2115 18 2114 9 2113 8 2116 19 2114 9 2115 18 2117 12 2116 19 2115 18 2118 13 2116 19 2117 12 2119 14 2118 13 2117 12 2120 15 2118 13 2119 14 2123 2 2122 1 2121 0 2124 3 2122 1 2123 2 2125 4 2124 3 2123 2 2126 5 2124 3 2125 4 2127 6 2126 5 2125 4 2128 7 2126 5 2127 6 2129 8 2128 7 2127 6 2130 9 2128 7 2129 8 2131 18 2130 9 2129 8 2132 19 2130 9 2131 18 2133 12 2132 19 2131 18 2134 13 2132 19 2133 12 2135 14 2134 13 2133 12 2136 15 2134 13 2135 14 2139 2 2138 1 2137 0 2140 3 2138 1 2139 2 2141 4 2140 3 2139 2 2142 5 2140 3 2141 4 2143 6 2142 5 2141 4 2144 7 2142 5 2143 6 2145 8 2144 7 2143 6 2146 9 2144 7 2145 8 2147 18 2146 9 2145 8 2148 19 2146 9 2147 18 2149 12 2148 19 2147 18 2150 13 2148 19 2149 12 2151 14 2150 13 2149 12 2152 15 2150 13 2151 14 2139 2 2154 1 2153 0 2155 3 2154 1 2139 2 2156 4 2155 3 2139 2 2157 5 2155 3 2156 4 2158 6 2157 5 2156 4 2159 7 2157 5 2158 6 2160 8 2159 7 2158 6 2161 9 2159 7 2160 8 2162 18 2161 9 2160 8 2162 19 2161 9 2162 18 2163 12 2162 19 2162 18 2164 13 2162 19 2163 12 2165 14 2164 13 2163 12 2166 15 2164 13 2165 14 2169 2 2168 1 2167 0 2170 3 2168 1 2169 2 2171 4 2170 3 2169 2 2172 5 2170 3 2171 4 2173 6 2172 5 2171 4 2174 7 2172 5 2173 6 2175 8 2174 7 2173 6 2176 9 2174 7 2175 8 2177 18 2176 9 2175 8 2178 19 2176 9 2177 18 2179 12 2178 19 2177 18 2180 13 2178 19 2179 12 2181 14 2180 13 2179 12 2182 15 2180 13 2181 14 2185 2 2184 1 2183 0 2186 3 2184 1 2185 2 2187 4 2186 3 2185 2 2188 5 2186 3 2187 4 2189 6 2188 5 2187 4 2190 7 2188 5 2189 6 2191 8 2190 7 2189 6 2192 9 2190 7 2191 8 2193 18 2192 9 2191 8 2194 19 2192 9 2193 18 2195 12 2194 19 2193 18 2196 13 2194 19 2195 12 2197 14 2196 13 2195 12 2198 15 2196 13 2197 14 2200 2 2154 1 2199 0 2201 3 2154 1 2200 2 2202 4 2201 3 2200 2 2203 5 2201 3 2202 4 2204 6 2203 5 2202 4 2205 7 2203 5 2204 6 2206 8 2205 7 2204 6 2207 9 2205 7 2206 8 2208 18 2207 9 2206 8 2209 19 2207 9 2208 18 2210 12 2209 19 2208 18 2211 13 2209 19 2210 12 2212 14 2211 13 2210 12 2213 15 2211 13 2212 14 2185 2 2184 1 2153 0 2214 3 2184 1 2185 2 2215 4 2214 3 2185 2 2216 5 2214 3 2215 4 2217 6 2216 5 2215 4 2218 7 2216 5 2217 6 2219 8 2218 7 2217 6 2220 9 2218 7 2219 8 2221 18 2220 9 2219 8 2222 19 2220 9 2221 18 2223 12 2222 19 2221 18 2224 13 2222 19 2223 12 2225 14 2224 13 2223 12 2226 15 2224 13 2225 14 2229 2 2228 1 2227 0 2230 3 2228 1 2229 2 2231 4 2230 3 2229 2 2232 5 2230 3 2231 4 2233 6 2232 5 2231 4 2234 7 2232 5 2233 6 2235 8 2234 7 2233 6 2236 9 2234 7 2235 8 2237 18 2236 9 2235 8 2238 19 2236 9 2237 18 2239 12 2238 19 2237 18 2240 13 2238 19 2239 12 2241 14 2240 13 2239 12 2242 15 2240 13 2241 14 2243 2 2227 1 2228 0 2244 3 2227 1 2243 2 2245 4 2244 3 2243 2 2246 5 2244 3 2245 4 2247 6 2246 5 2245 4 2248 7 2246 5 2247 6 2249 8 2248 7 2247 6 2250 9 2248 7 2249 8 2251 18 2250 9 2249 8 2252 19 2250 9 2251 18 2253 12 2252 19 2251 18 2254 13 2252 19 2253 12 2255 14 2254 13 2253 12 2256 15 2254 13 2255 14 2257 2 2228 1 2227 0 2258 3 2228 1 2257 2 2259 4 2258 3 2257 2 2260 5 2258 3 2259 4 2261 6 2260 5 2259 4 2262 7 2260 5 2261 6 2263 8 2262 7 2261 6 2264 9 2262 7 2263 8 2265 18 2264 9 2263 8 2266 19 2264 9 2265 18 2267 12 2266 19 2265 18 2268 13 2266 19 2267 12 2269 14 2268 13 2267 12 2270 15 2268 13 2269 14 2272 2 2227 1 2271 0 2273 3 2227 1 2272 2 2274 4 2273 3 2272 2 2275 5 2273 3 2274 4 2276 6 2275 5 2274 4 2277 7 2275 5 2276 6 2278 8 2277 7 2276 6 2279 9 2277 7 2278 8 2280 18 2279 9 2278 8 2281 19 2279 9 2280 18 2282 12 2281 19 2280 18 2283 13 2281 19 2282 12 2284 14 2283 13 2282 12 2285 15 2283 13 2284 14 2287 2 2286 1 2227 0 2288 3 2286 1 2287 2 2289 4 2288 3 2287 2 2290 5 2288 3 2289 4 2291 6 2290 5 2289 4 2292 7 2290 5 2291 6 2293 8 2292 7 2291 6 2294 9 2292 7 2293 8 2295 18 2294 9 2293 8 2296 19 2294 9 2295 18 2297 12 2296 19 2295 18 2298 13 2296 19 2297 12 2299 14 2298 13 2297 12 2300 15 2298 13 2299 14 2303 2 2302 1 2301 0 2304 3 2302 1 2303 2 2305 4 2304 3 2303 2 2305 5 2304 3 2305 4 2306 6 2305 5 2305 4 2307 7 2305 5 2306 6 2308 8 2307 7 2306 6 2309 9 2307 7 2308 8 2310 18 2309 9 2308 8 2311 19 2309 9 2310 18 2312 12 2311 19 2310 18 2312 13 2311 19 2312 12 2313 14 2312 13 2312 12 2314 15 2312 13 2313 14 2303 2 2316 1 2315 0 2317 3 2316 1 2303 2 2318 4 2317 3 2303 2 2319 5 2317 3 2318 4 2320 6 2319 5 2318 4 2321 7 2319 5 2320 6 2322 8 2321 7 2320 6 2323 9 2321 7 2322 8 2324 18 2323 9 2322 8 2325 19 2323 9 2324 18 2326 12 2325 19 2324 18 2327 13 2325 19 2326 12 2328 14 2327 13 2326 12 2328 15 2327 13 2328 14 2331 2 2330 1 2329 0 2332 3 2330 1 2331 2 2333 4 2332 3 2331 2 2334 5 2332 3 2333 4 2335 6 2334 5 2333 4 2336 7 2334 5 2335 6 2337 8 2336 7 2335 6 2338 9 2336 7 2337 8 2339 18 2338 9 2337 8 2340 19 2338 9 2339 18 2341 12 2340 19 2339 18 2342 13 2340 19 2341 12 2343 14 2342 13 2341 12 2343 15 2342 13 2343 14 2346 2 2345 1 2344 0 2347 3 2345 1 2346 2 2348 4 2347 3 2346 2 2349 5 2347 3 2348 4 2350 6 2349 5 2348 4 2351 7 2349 5 2350 6 2352 8 2351 7 2350 6 2353 9 2351 7 2352 8 2354 18 2353 9 2352 8 2355 19 2353 9 2354 18 2356 12 2355 19 2354 18 2357 13 2355 19 2356 12 2358 14 2357 13 2356 12 2359 15 2357 13 2358 14 2361 2 2316 1 2360 0 2362 3 2316 1 2361 2 2363 4 2362 3 2361 2 2364 5 2362 3 2363 4 2365 6 2364 5 2363 4 2366 7 2364 5 2365 6 2367 8 2366 7 2365 6 2368 9 2366 7 2367 8 2369 18 2368 9 2367 8 2370 19 2368 9 2369 18 2371 12 2370 19 2369 18 2372 13 2370 19 2371 12 2373 14 2372 13 2371 12 2374 15 2372 13 2373 14 2346 2 2375 1 2301 0 2376 3 2375 1 2346 2 2377 4 2376 3 2346 2 2378 5 2376 3 2377 4 2379 6 2378 5 2377 4 2380 7 2378 5 2379 6 2381 8 2380 7 2379 6 2382 9 2380 7 2381 8 2383 18 2382 9 2381 8 2384 19 2382 9 2383 18 2385 12 2384 19 2383 18 2386 13 2384 19 2385 12 2387 14 2386 13 2385 12 2388 15 2386 13 2387 14 2390 2 2389 1 2389 0 2391 3 2389 1 2390 2 2392 4 2391 3 2390 2 2393 5 2391 3 2392 4 2394 6 2393 5 2392 4 2395 7 2393 5 2394 6 2396 8 2395 7 2394 6 2397 9 2395 7 2396 8 2398 18 2397 9 2396 8 2399 19 2397 9 2398 18 2400 12 2399 19 2398 18 2401 13 2399 19 2400 12 2402 14 2401 13 2400 12 2403 15 2401 13 2402 14 2390 2 2405 1 2404 0 2406 3 2405 1 2390 2 2407 4 2406 3 2390 2 2408 5 2406 3 2407 4 2409 6 2408 5 2407 4 2410 7 2408 5 2409 6 2411 8 2410 7 2409 6 2411 9 2410 7 2411 8 2412 18 2411 9 2411 8 2413 19 2411 9 2412 18 2414 12 2413 19 2412 18 2415 13 2413 19 2414 12 2416 14 2415 13 2414 12 2417 15 2415 13 2416 14 2418 2 2404 1 2405 0 2419 3 2404 1 2418 2 2420 4 2419 3 2418 2 2421 5 2419 3 2420 4 2422 6 2421 5 2420 4 2423 7 2421 5 2422 6 2424 8 2423 7 2422 6 2425 9 2423 7 2424 8 2426 18 2425 9 2424 8 2427 19 2425 9 2426 18 2428 12 2427 19 2426 18 2429 13 2427 19 2428 12 2430 14 2429 13 2428 12 2431 15 2429 13 2430 14 2433 2 2405 1 2432 0 2434 3 2405 1 2433 2 2435 4 2434 3 2433 2 2436 5 2434 3 2435 4 2437 6 2436 5 2435 4 2438 7 2436 5 2437 6 2439 8 2438 7 2437 6 2440 9 2438 7 2439 8 2441 18 2440 9 2439 8 2442 19 2440 9 2441 18 2443 12 2442 19 2441 18 2444 13 2442 19 2443 12 2445 14 2444 13 2443 12 2446 15 2444 13 2445 14 2448 2 2447 1 2389 0 2449 3 2447 1 2448 2 2450 4 2449 3 2448 2 2451 5 2449 3 2450 4 2452 6 2451 5 2450 4 2453 7 2451 5 2452 6 2454 8 2453 7 2452 6 2455 9 2453 7 2454 8 2456 18 2455 9 2454 8 2457 19 2455 9 2456 18 2458 12 2457 19 2456 18 2459 13 2457 19 2458 12 2460 14 2459 13 2458 12 2461 15 2459 13 2460 14 2464 2 2463 1 2462 0 2465 3 2463 1 2464 2 2466 4 2465 3 2464 2 2467 5 2465 3 2466 4 2468 6 2467 5 2466 4 2469 7 2467 5 2468 6 2470 8 2469 7 2468 6 2471 9 2469 7 2470 8 2472 18 2471 9 2470 8 2473 19 2471 9 2472 18 2474 12 2473 19 2472 18 2475 13 2473 19 2474 12 2476 14 2475 13 2474 12 2477 15 2475 13 2476 14 2464 2 2479 1 2478 0 2480 3 2479 1 2464 2 2481 4 2480 3 2464 2 2482 5 2480 3 2481 4 2483 6 2482 5 2481 4 2484 7 2482 5 2483 6 2485 8 2484 7 2483 6 2486 9 2484 7 2485 8 2487 18 2486 9 2485 8 2488 19 2486 9 2487 18 2489 12 2488 19 2487 18 2490 13 2488 19 2489 12 2491 14 2490 13 2489 12 2492 15 2490 13 2491 14 2464 2 2493 1 2479 0 2494 3 2493 1 2464 2 2495 4 2494 3 2464 2 2496 5 2494 3 2495 4 2497 6 2496 5 2495 4 2498 7 2496 5 2497 6 2499 8 2498 7 2497 6 2500 9 2498 7 2499 8 2501 18 2500 9 2499 8 2502 19 2500 9 2501 18 2503 12 2502 19 2501 18 2504 13 2502 19 2503 12 2505 14 2504 13 2503 12 2505 15 2504 13 2505 14 2507 2 2478 1 2506 0 2508 3 2478 1 2507 2 2509 4 2508 3 2507 2 2510 5 2508 3 2509 4 2511 6 2510 5 2509 4 2512 7 2510 5 2511 6 2513 8 2512 7 2511 6 2514 9 2512 7 2513 8 2515 18 2514 9 2513 8 2516 19 2514 9 2515 18 2517 12 2516 19 2515 18 2518 13 2516 19 2517 12 2519 14 2518 13 2517 12 2520 15 2518 13 2519 14 2507 2 2479 1 2521 0 2522 3 2479 1 2507 2 2523 4 2522 3 2507 2 2524 5 2522 3 2523 4 2525 6 2524 5 2523 4 2526 7 2524 5 2525 6 2527 8 2526 7 2525 6 2528 9 2526 7 2527 8 2529 18 2528 9 2527 8 2530 19 2528 9 2529 18 2531 12 2530 19 2529 18 2532 13 2530 19 2531 12 2533 14 2532 13 2531 12 2534 15 2532 13 2533 14 2537 2 2536 1 2535 0 2538 3 2536 1 2537 2 2539 4 2538 3 2537 2 2540 5 2538 3 2539 4 2541 6 2540 5 2539 4 2542 7 2540 5 2541 6 2543 8 2542 7 2541 6 2544 9 2542 7 2543 8 2545 18 2544 9 2543 8 2546 19 2544 9 2545 18 2547 12 2546 19 2545 18 2548 13 2546 19 2547 12 2549 14 2548 13 2547 12 2550 15 2548 13 2549 14 2552 2 2551 1 2551 0 2553 3 2551 1 2552 2 2554 4 2553 3 2552 2 2555 5 2553 3 2554 4 2556 6 2555 5 2554 4 2557 7 2555 5 2556 6 2558 8 2557 7 2556 6 2559 9 2557 7 2558 8 2560 18 2559 9 2558 8 2561 19 2559 9 2560 18 2562 12 2561 19 2560 18 2563 13 2561 19 2562 12 2564 14 2563 13 2562 12 2565 15 2563 13 2564 14 2568 2 2567 1 2566 0 2569 3 2567 1 2568 2 2570 4 2569 3 2568 2 2571 5 2569 3 2570 4 2572 6 2571 5 2570 4 2573 7 2571 5 2572 6 2574 8 2573 7 2572 6 2575 9 2573 7 2574 8 2576 18 2575 9 2574 8 2577 19 2575 9 2576 18 2578 12 2577 19 2576 18 2578 13 2577 19 2578 12 2579 14 2578 13 2578 12 2580 15 2578 13 2579 14 2552 2 2582 1 2581 0 2583 3 2582 1 2552 2 2584 4 2583 3 2552 2 2585 5 2583 3 2584 4 2586 6 2585 5 2584 4 2587 7 2585 5 2586 6 2588 8 2587 7 2586 6 2589 9 2587 7 2588 8 2590 18 2589 9 2588 8 2591 19 2589 9 2590 18 2592 12 2591 19 2590 18 2593 13 2591 19 2592 12 2594 14 2593 13 2592 12 2594 15 2593 13 2594 14 2596 2 2581 1 2595 0 2597 3 2581 1 2596 2 2598 4 2597 3 2596 2 2599 5 2597 3 2598 4 2600 6 2599 5 2598 4 2601 7 2599 5 2600 6 2602 8 2601 7 2600 6 2603 9 2601 7 2602 8 2604 18 2603 9 2602 8 2605 19 2603 9 2604 18 2606 12 2605 19 2604 18 2607 13 2605 19 2606 12 2608 14 2607 13 2606 12 2609 15 2607 13 2608 14 2611 2 2610 1 2551 0 2612 3 2610 1 2611 2 2613 4 2612 3 2611 2 2614 5 2612 3 2613 4 2615 6 2614 5 2613 4 2616 7 2614 5 2615 6 2617 8 2616 7 2615 6 2618 9 2616 7 2617 8 2619 18 2618 9 2617 8 2620 19 2618 9 2619 18 2621 12 2620 19 2619 18 2622 13 2620 19 2621 12 2623 14 2622 13 2621 12 2624 15 2622 13 2623 14 2627 2 2626 1 2625 0 2628 3 2626 1 2627 2 2629 4 2628 3 2627 2 2630 5 2628 3 2629 4 2631 6 2630 5 2629 4 2632 7 2630 5 2631 6 2633 8 2632 7 2631 6 2634 9 2632 7 2633 8 2635 18 2634 9 2633 8 2636 19 2634 9 2635 18 2637 12 2636 19 2635 18 2638 13 2636 19 2637 12 2639 14 2638 13 2637 12 2640 15 2638 13 2639 14 2643 2 2642 1 2641 0 2644 3 2642 1 2643 2 2645 4 2644 3 2643 2 2646 5 2644 3 2645 4 2647 6 2646 5 2645 4 2648 7 2646 5 2647 6 2649 8 2648 7 2647 6 2650 9 2648 7 2649 8 2651 18 2650 9 2649 8 2651 19 2650 9 2651 18 2652 12 2651 19 2651 18 2653 13 2651 19 2652 12 2654 14 2653 13 2652 12 2655 15 2653 13 2654 14 2627 2 2656 1 2625 0 2657 3 2656 1 2627 2 2658 4 2657 3 2627 2 2659 5 2657 3 2658 4 2660 6 2659 5 2658 4 2661 7 2659 5 2660 6 2662 8 2661 7 2660 6 2663 9 2661 7 2662 8 2664 18 2663 9 2662 8 2665 19 2663 9 2664 18 2666 12 2665 19 2664 18 2667 13 2665 19 2666 12 2668 14 2667 13 2666 12 2669 15 2667 13 2668 14 2671 2 2656 1 2670 0 2672 3 2656 1 2671 2 2673 4 2672 3 2671 2 2674 5 2672 3 2673 4 2675 6 2674 5 2673 4 2676 7 2674 5 2675 6 2677 8 2676 7 2675 6 2678 9 2676 7 2677 8 2679 18 2678 9 2677 8 2680 19 2678 9 2679 18 2681 12 2680 19 2679 18 2682 13 2680 19 2681 12 2683 14 2682 13 2681 12 2684 15 2682 13 2683 14 2686 2 2626 1 2685 0 2687 3 2626 1 2686 2 2688 4 2687 3 2686 2 2689 5 2687 3 2688 4 2690 6 2689 5 2688 4 2691 7 2689 5 2690 6 2692 8 2691 7 2690 6 2693 9 2691 7 2692 8 2694 18 2693 9 2692 8 2695 19 2693 9 2694 18 2696 12 2695 19 2694 18 2697 13 2695 19 2696 12 2698 14 2697 13 2696 12 2699 15 2697 13 2698 14 2671 2 2700 1 2625 0 2701 3 2700 1 2671 2 2702 4 2701 3 2671 2 2703 5 2701 3 2702 4 2704 6 2703 5 2702 4 2705 7 2703 5 2704 6 2706 8 2705 7 2704 6 2707 9 2705 7 2706 8 2708 18 2707 9 2706 8 2709 19 2707 9 2708 18 2710 12 2709 19 2708 18 2711 13 2709 19 2710 12 2712 14 2711 13 2710 12 2713 15 2711 13 2712 14 2715 2 2714 1 2714 0 2716 3 2714 1 2715 2 2717 4 2716 3 2715 2 2718 5 2716 3 2717 4 2719 6 2718 5 2717 4 2720 7 2718 5 2719 6 2721 8 2720 7 2719 6 2722 9 2720 7 2721 8 2723 18 2722 9 2721 8 2724 19 2722 9 2723 18 2725 12 2724 19 2723 18 2726 13 2724 19 2725 12 2727 14 2726 13 2725 12 2728 15 2726 13 2727 14 2715 2 2729 1 2714 0 2730 3 2729 1 2715 2 2731 4 2730 3 2715 2 2732 5 2730 3 2731 4 2733 6 2732 5 2731 4 2734 7 2732 5 2733 6 2735 8 2734 7 2733 6 2736 9 2734 7 2735 8 2737 18 2736 9 2735 8 2738 19 2736 9 2737 18 2739 12 2738 19 2737 18 2740 13 2738 19 2739 12 2741 14 2740 13 2739 12 2742 15 2740 13 2741 14 2744 2 2714 1 2743 0 2745 3 2714 1 2744 2 2746 4 2745 3 2744 2 2747 5 2745 3 2746 4 2748 6 2747 5 2746 4 2749 7 2747 5 2748 6 2750 8 2749 7 2748 6 2751 9 2749 7 2750 8 2752 18 2751 9 2750 8 2753 19 2751 9 2752 18 2754 12 2753 19 2752 18 2755 13 2753 19 2754 12 2756 14 2755 13 2754 12 2757 15 2755 13 2756 14 2759 2 2729 1 2758 0 2760 3 2729 1 2759 2 2761 4 2760 3 2759 2 2762 5 2760 3 2761 4 2763 6 2762 5 2761 4 2764 7 2762 5 2763 6 2765 8 2764 7 2763 6 2766 9 2764 7 2765 8 2767 18 2766 9 2765 8 2768 19 2766 9 2767 18 2769 12 2768 19 2767 18 2770 13 2768 19 2769 12 2771 14 2770 13 2769 12 2772 15 2770 13 2771 14 2774 2 2773 1 2714 0 2775 3 2773 1 2774 2 2776 4 2775 3 2774 2 2777 5 2775 3 2776 4 2778 6 2777 5 2776 4 2779 7 2777 5 2778 6 2780 8 2779 7 2778 6 2781 9 2779 7 2780 8 2782 18 2781 9 2780 8 2783 19 2781 9 2782 18 2784 12 2783 19 2782 18 2785 13 2783 19 2784 12 2786 14 2785 13 2784 12 2787 15 2785 13 2786 14 2789 2 2788 1 2788 0 2790 3 2788 1 2789 2 2791 4 2790 3 2789 2 2792 5 2790 3 2791 4 2793 6 2792 5 2791 4 2794 7 2792 5 2793 6 2795 8 2794 7 2793 6 2796 9 2794 7 2795 8 2797 18 2796 9 2795 8 2798 19 2796 9 2797 18 2799 12 2798 19 2797 18 2800 13 2798 19 2799 12 2801 14 2800 13 2799 12 2801 15 2800 13 2801 14 2804 2 2803 1 2802 0 2805 3 2803 1 2804 2 2806 4 2805 3 2804 2 2807 5 2805 3 2806 4 2808 6 2807 5 2806 4 2809 7 2807 5 2808 6 2810 8 2809 7 2808 6 2811 9 2809 7 2810 8 2812 18 2811 9 2810 8 2813 19 2811 9 2812 18 2814 12 2813 19 2812 18 2815 13 2813 19 2814 12 2816 14 2815 13 2814 12 2817 15 2815 13 2816 14 2819 2 2818 1 2803 0 2820 3 2818 1 2819 2 2821 4 2820 3 2819 2 2822 5 2820 3 2821 4 2823 6 2822 5 2821 4 2824 7 2822 5 2823 6 2825 8 2824 7 2823 6 2825 9 2824 7 2825 8 2826 18 2825 9 2825 8 2827 19 2825 9 2826 18 2828 12 2827 19 2826 18 2829 13 2827 19 2828 12 2830 14 2829 13 2828 12 2830 15 2829 13 2830 14 2831 2 2802 1 2788 0 2832 3 2802 1 2831 2 2833 4 2832 3 2831 2 2834 5 2832 3 2833 4 2835 6 2834 5 2833 4 2836 7 2834 5 2835 6 2837 8 2836 7 2835 6 2838 9 2836 7 2837 8 2839 18 2838 9 2837 8 2840 19 2838 9 2839 18 2841 12 2840 19 2839 18 2842 13 2840 19 2841 12 2843 14 2842 13 2841 12 2844 15 2842 13 2843 14 2846 2 2803 1 2845 0 2847 3 2803 1 2846 2 2848 4 2847 3 2846 2 2849 5 2847 3 2848 4 2850 6 2849 5 2848 4 2851 7 2849 5 2850 6 2852 8 2851 7 2850 6 2853 9 2851 7 2852 8 2854 18 2853 9 2852 8 2855 19 2853 9 2854 18 2856 12 2855 19 2854 18 2857 13 2855 19 2856 12 2858 14 2857 13 2856 12 2859 15 2857 13 2858 14 2831 2 2861 1 2860 0 2862 3 2861 1 2831 2 2863 4 2862 3 2831 2 2864 5 2862 3 2863 4 2865 6 2864 5 2863 4 2866 7 2864 5 2865 6 2867 8 2866 7 2865 6 2868 9 2866 7 2867 8 2869 18 2868 9 2867 8 2870 19 2868 9 2869 18 2871 12 2870 19 2869 18 2872 13 2870 19 2871 12 2873 14 2872 13 2871 12 2874 15 2872 13 2873 14 2877 2 2876 1 2875 0 2878 3 2876 1 2877 2 2879 4 2878 3 2877 2 2880 5 2878 3 2879 4 2881 6 2880 5 2879 4 2882 7 2880 5 2881 6 2883 8 2882 7 2881 6 2884 9 2882 7 2883 8 2885 18 2884 9 2883 8 2886 19 2884 9 2885 18 2887 12 2886 19 2885 18 2888 13 2886 19 2887 12 2889 14 2888 13 2887 12 2889 15 2888 13 2889 14 2891 2 2875 1 2890 0 2892 3 2875 1 2891 2 2893 4 2892 3 2891 2 2894 5 2892 3 2893 4 2895 6 2894 5 2893 4 2896 7 2894 5 2895 6 2897 8 2896 7 2895 6 2898 9 2896 7 2897 8 2899 18 2898 9 2897 8 2899 19 2898 9 2899 18 2900 12 2899 19 2899 18 2901 13 2899 19 2900 12 2902 14 2901 13 2900 12 2903 15 2901 13 2902 14 2877 2 2890 1 2875 0 2904 3 2890 1 2877 2 2905 4 2904 3 2877 2 2906 5 2904 3 2905 4 2907 6 2906 5 2905 4 2908 7 2906 5 2907 6 2909 8 2908 7 2907 6 2910 9 2908 7 2909 8 2911 18 2910 9 2909 8 2912 19 2910 9 2911 18 2913 12 2912 19 2911 18 2914 13 2912 19 2913 12 2915 14 2914 13 2913 12 2916 15 2914 13 2915 14 2918 2 2875 1 2917 0 2919 3 2875 1 2918 2 2920 4 2919 3 2918 2 2921 5 2919 3 2920 4 2922 6 2921 5 2920 4 2923 7 2921 5 2922 6 2924 8 2923 7 2922 6 2925 9 2923 7 2924 8 2926 18 2925 9 2924 8 2927 19 2925 9 2926 18 2928 12 2927 19 2926 18 2929 13 2927 19 2928 12 2930 14 2929 13 2928 12 2931 15 2929 13 2930 14 2933 2 2932 1 2876 0 2934 3 2932 1 2933 2 2935 4 2934 3 2933 2 2936 5 2934 3 2935 4 2937 6 2936 5 2935 4 2938 7 2936 5 2937 6 2939 8 2938 7 2937 6 2940 9 2938 7 2939 8 2941 18 2940 9 2939 8 2942 19 2940 9 2941 18 2943 12 2942 19 2941 18 2944 13 2942 19 2943 12 2945 14 2944 13 2943 12 2946 15 2944 13 2945 14 2949 2 2948 1 2947 0 2949 3 2948 1 2949 2 2950 4 2949 3 2949 2 2950 5 2949 3 2950 4 2951 6 2950 5 2950 4 2952 7 2950 5 2951 6 2953 8 2952 7 2951 6 2954 9 2952 7 2953 8 2955 18 2954 9 2953 8 2956 19 2954 9 2955 18 2957 12 2956 19 2955 18 2958 13 2956 19 2957 12 2959 14 2958 13 2957 12 2960 15 2958 13 2959 14 2949 2 2962 1 2961 0 2963 3 2962 1 2949 2 2964 4 2963 3 2949 2 2965 5 2963 3 2964 4 2966 6 2965 5 2964 4 2967 7 2965 5 2966 6 2968 8 2967 7 2966 6 2969 9 2967 7 2968 8 2970 18 2969 9 2968 8 2971 19 2969 9 2970 18 2972 12 2971 19 2970 18 2973 13 2971 19 2972 12 2974 14 2973 13 2972 12 2975 15 2973 13 2974 14 2977 2 2948 1 2976 0 2978 3 2948 1 2977 2 2979 4 2978 3 2977 2 2980 5 2978 3 2979 4 2981 6 2980 5 2979 4 2982 7 2980 5 2981 6 2983 8 2982 7 2981 6 2984 9 2982 7 2983 8 2985 18 2984 9 2983 8 2986 19 2984 9 2985 18 2987 12 2986 19 2985 18 2988 13 2986 19 2987 12 2989 14 2988 13 2987 12 2990 15 2988 13 2989 14 2992 2 2991 1 2961 0 2993 3 2991 1 2992 2 2994 4 2993 3 2992 2 2995 5 2993 3 2994 4 2996 6 2995 5 2994 4 2997 7 2995 5 2996 6 2998 8 2997 7 2996 6 2999 9 2997 7 2998 8 3000 18 2999 9 2998 8 3001 19 2999 9 3000 18 3002 12 3001 19 3000 18 3003 13 3001 19 3002 12 3004 14 3003 13 3002 12 3005 15 3003 13 3004 14 3007 2 2947 1 3006 0 3008 3 2947 1 3007 2 3009 4 3008 3 3007 2 3010 5 3008 3 3009 4 3011 6 3010 5 3009 4 3012 7 3010 5 3011 6 3013 8 3012 7 3011 6 3014 9 3012 7 3013 8 3015 18 3014 9 3013 8 3016 19 3014 9 3015 18 3017 12 3016 19 3015 18 3018 13 3016 19 3017 12 3019 14 3018 13 3017 12 3020 15 3018 13 3019 14 2993 2 3022 1 3021 0 3023 3 3022 1 2993 2 3024 4 3023 3 2993 2 3025 5 3023 3 3024 4 3026 6 3025 5 3024 4 3027 7 3025 5 3026 6 3028 8 3027 7 3026 6 3029 9 3027 7 3028 8 3030 18 3029 9 3028 8 3031 19 3029 9 3030 18 3032 12 3031 19 3030 18 3033 13 3031 19 3032 12 3034 14 3033 13 3032 12 3035 15 3033 13 3034 14 3037 2 3036 1 3036 0 3038 3 3036 1 3037 2 3039 4 3038 3 3037 2 3040 5 3038 3 3039 4 3041 6 3040 5 3039 4 3042 7 3040 5 3041 6 3043 8 3042 7 3041 6 3044 9 3042 7 3043 8 3045 18 3044 9 3043 8 3046 19 3044 9 3045 18 3047 12 3046 19 3045 18 3048 13 3046 19 3047 12 3049 14 3048 13 3047 12 3050 15 3048 13 3049 14 3052 2 3036 1 3051 0 3053 3 3036 1 3052 2 3054 4 3053 3 3052 2 3055 5 3053 3 3054 4 3056 6 3055 5 3054 4 3057 7 3055 5 3056 6 3058 8 3057 7 3056 6 3059 9 3057 7 3058 8 3060 18 3059 9 3058 8 3061 19 3059 9 3060 18 3062 12 3061 19 3060 18 3063 13 3061 19 3062 12 3064 14 3063 13 3062 12 3065 15 3063 13 3064 14 3066 2 3051 1 3036 0 3067 3 3051 1 3066 2 3068 4 3067 3 3066 2 3069 5 3067 3 3068 4 3070 6 3069 5 3068 4 3071 7 3069 5 3070 6 3072 8 3071 7 3070 6 3073 9 3071 7 3072 8 3074 18 3073 9 3072 8 3075 19 3073 9 3074 18 3076 12 3075 19 3074 18 3077 13 3075 19 3076 12 3078 14 3077 13 3076 12 3078 15 3077 13 3078 14 3080 2 3036 1 3079 0 3081 3 3036 1 3080 2 3082 4 3081 3 3080 2 3083 5 3081 3 3082 4 3084 6 3083 5 3082 4 3085 7 3083 5 3084 6 3086 8 3085 7 3084 6 3087 9 3085 7 3086 8 3088 18 3087 9 3086 8 3089 19 3087 9 3088 18 3090 12 3089 19 3088 18 3091 13 3089 19 3090 12 3092 14 3091 13 3090 12 3093 15 3091 13 3092 14 3095 2 3094 1 3036 0 3096 3 3094 1 3095 2 3097 4 3096 3 3095 2 3098 5 3096 3 3097 4 3099 6 3098 5 3097 4 3100 7 3098 5 3099 6 3101 8 3100 7 3099 6 3102 9 3100 7 3101 8 3103 18 3102 9 3101 8 3104 19 3102 9 3103 18 3105 12 3104 19 3103 18 3106 13 3104 19 3105 12 3107 14 3106 13 3105 12 3108 15 3106 13 3107 14 3111 2 3110 1 3109 0 3111 3 3110 1 3111 2 3112 4 3111 3 3111 2 3113 5 3111 3 3112 4 3114 6 3113 5 3112 4 3115 7 3113 5 3114 6 3116 8 3115 7 3114 6 3117 9 3115 7 3116 8 3118 18 3117 9 3116 8 3119 19 3117 9 3118 18 3120 12 3119 19 3118 18 3121 13 3119 19 3120 12 3122 14 3121 13 3120 12 3123 15 3121 13 3122 14 3126 2 3125 1 3124 0 3127 3 3125 1 3126 2 3128 4 3127 3 3126 2 3129 5 3127 3 3128 4 3130 6 3129 5 3128 4 3131 7 3129 5 3130 6 3132 8 3131 7 3130 6 3133 9 3131 7 3132 8 3134 18 3133 9 3132 8 3135 19 3133 9 3134 18 3136 12 3135 19 3134 18 3137 13 3135 19 3136 12 3138 14 3137 13 3136 12 3138 15 3137 13 3138 14 3141 2 3140 1 3139 0 3142 3 3140 1 3141 2 3143 4 3142 3 3141 2 3144 5 3142 3 3143 4 3145 6 3144 5 3143 4 3146 7 3144 5 3145 6 3147 8 3146 7 3145 6 3148 9 3146 7 3147 8 3149 18 3148 9 3147 8 3150 19 3148 9 3149 18 3151 12 3150 19 3149 18 3152 13 3150 19 3151 12 3153 14 3152 13 3151 12 3154 15 3152 13 3153 14 3156 2 3155 1 3109 0 3157 3 3155 1 3156 2 3158 4 3157 3 3156 2 3159 5 3157 3 3158 4 3160 6 3159 5 3158 4 3161 7 3159 5 3160 6 3162 8 3161 7 3160 6 3163 9 3161 7 3162 8 3164 18 3163 9 3162 8 3165 19 3163 9 3164 18 3166 12 3165 19 3164 18 3167 13 3165 19 3166 12 3168 14 3167 13 3166 12 3169 15 3167 13 3168 14 3172 2 3171 1 3170 0 3173 3 3171 1 3172 2 3174 4 3173 3 3172 2 3175 5 3173 3 3174 4 3176 6 3175 5 3174 4 3177 7 3175 5 3176 6 3178 8 3177 7 3176 6 3179 9 3177 7 3178 8 3180 18 3179 9 3178 8 3181 19 3179 9 3180 18 3182 12 3181 19 3180 18 3183 13 3181 19 3182 12 3184 14 3183 13 3182 12 3185 15 3183 13 3184 14 3156 2 3187 1 3186 0 3188 3 3187 1 3156 2 3189 4 3188 3 3156 2 3190 5 3188 3 3189 4 3191 6 3190 5 3189 4 3192 7 3190 5 3191 6 3193 8 3192 7 3191 6 3194 9 3192 7 3193 8 3195 18 3194 9 3193 8 3196 19 3194 9 3195 18 3197 12 3196 19 3195 18 3198 13 3196 19 3197 12 3199 14 3198 13 3197 12 3200 15 3198 13 3199 14 3203 2 3202 1 3201 0 3203 3 3202 1 3203 2 3204 4 3203 3 3203 2 3205 5 3203 3 3204 4 3206 6 3205 5 3204 4 3207 7 3205 5 3206 6 3208 8 3207 7 3206 6 3209 9 3207 7 3208 8 3210 18 3209 9 3208 8 3211 19 3209 9 3210 18 3212 12 3211 19 3210 18 3213 13 3211 19 3212 12 3214 14 3213 13 3212 12 3215 15 3213 13 3214 14 3217 2 3216 1 3202 0 3218 3 3216 1 3217 2 3219 4 3218 3 3217 2 3220 5 3218 3 3219 4 3221 6 3220 5 3219 4 3222 7 3220 5 3221 6 3223 8 3222 7 3221 6 3224 9 3222 7 3223 8 3225 18 3224 9 3223 8 3226 19 3224 9 3225 18 3227 12 3226 19 3225 18 3228 13 3226 19 3227 12 3229 14 3228 13 3227 12 3229 15 3228 13 3229 14 3203 2 3231 1 3230 0 3232 3 3231 1 3203 2 3233 4 3232 3 3203 2 3234 5 3232 3 3233 4 3235 6 3234 5 3233 4 3236 7 3234 5 3235 6 3237 8 3236 7 3235 6 3238 9 3236 7 3237 8 3239 18 3238 9 3237 8 3240 19 3238 9 3239 18 3241 12 3240 19 3239 18 3242 13 3240 19 3241 12 3243 14 3242 13 3241 12 3244 15 3242 13 3243 14 3246 2 3216 1 3245 0 3247 3 3216 1 3246 2 3248 4 3247 3 3246 2 3249 5 3247 3 3248 4 3250 6 3249 5 3248 4 3251 7 3249 5 3250 6 3252 8 3251 7 3250 6 3253 9 3251 7 3252 8 3254 18 3253 9 3252 8 3255 19 3253 9 3254 18 3256 12 3255 19 3254 18 3257 13 3255 19 3256 12 3258 14 3257 13 3256 12 3259 15 3257 13 3258 14 3261 2 3260 1 3201 0 3262 3 3260 1 3261 2 3263 4 3262 3 3261 2 3264 5 3262 3 3263 4 3265 6 3264 5 3263 4 3266 7 3264 5 3265 6 3267 8 3266 7 3265 6 3268 9 3266 7 3267 8 3269 18 3268 9 3267 8 3270 19 3268 9 3269 18 3271 12 3270 19 3269 18 3272 13 3270 19 3271 12 3273 14 3272 13 3271 12 3274 15 3272 13 3273 14 3277 2 3276 1 3275 0 3277 3 3276 1 3277 2 3278 4 3277 3 3277 2 3278 5 3277 3 3278 4 3279 6 3278 5 3278 4 3280 7 3278 5 3279 6 3281 8 3280 7 3279 6 3282 9 3280 7 3281 8 3283 18 3282 9 3281 8 3284 19 3282 9 3283 18 3285 12 3284 19 3283 18 3286 13 3284 19 3285 12 3287 14 3286 13 3285 12 3288 15 3286 13 3287 14 3290 2 3289 1 3276 0 3291 3 3289 1 3290 2 3292 4 3291 3 3290 2 3293 5 3291 3 3292 4 3294 6 3293 5 3292 4 3295 7 3293 5 3294 6 3296 8 3295 7 3294 6 3297 9 3295 7 3296 8 3298 18 3297 9 3296 8 3299 19 3297 9 3298 18 3300 12 3299 19 3298 18 3301 13 3299 19 3300 12 3302 14 3301 13 3300 12 3303 15 3301 13 3302 14 3304 2 3276 1 3289 0 3305 3 3276 1 3304 2 3306 4 3305 3 3304 2 3307 5 3305 3 3306 4 3308 6 3307 5 3306 4 3309 7 3307 5 3308 6 3310 8 3309 7 3308 6 3311 9 3309 7 3310 8 3312 18 3311 9 3310 8 3313 19 3311 9 3312 18 3314 12 3313 19 3312 18 3315 13 3313 19 3314 12 3316 14 3315 13 3314 12 3317 15 3315 13 3316 14 3319 2 3276 1 3318 0 3320 3 3276 1 3319 2 3321 4 3320 3 3319 2 3322 5 3320 3 3321 4 3323 6 3322 5 3321 4 3324 7 3322 5 3323 6 3325 8 3324 7 3323 6 3326 9 3324 7 3325 8 3327 18 3326 9 3325 8 3328 19 3326 9 3327 18 3329 12 3328 19 3327 18 3330 13 3328 19 3329 12 3331 14 3330 13 3329 12 3332 15 3330 13 3331 14 3334 2 3289 1 3333 0 3335 3 3289 1 3334 2 3336 4 3335 3 3334 2 3337 5 3335 3 3336 4 3338 6 3337 5 3336 4 3339 7 3337 5 3338 6 3340 8 3339 7 3338 6 3341 9 3339 7 3340 8 3342 18 3341 9 3340 8 3343 19 3341 9 3342 18 3344 12 3343 19 3342 18 3345 13 3343 19 3344 12 3346 14 3345 13 3344 12 3347 15 3345 13 3346 14 3319 2 3349 1 3348 0 3350 3 3349 1 3319 2 3351 4 3350 3 3319 2 3352 5 3350 3 3351 4 3353 6 3352 5 3351 4 3354 7 3352 5 3353 6 3355 8 3354 7 3353 6 3356 9 3354 7 3355 8 3357 18 3356 9 3355 8 3358 19 3356 9 3357 18 3359 12 3358 19 3357 18 3360 13 3358 19 3359 12 3361 14 3360 13 3359 12 3362 15 3360 13 3361 14 3364 2 3363 1 3363 0 3365 3 3363 1 3364 2 3366 4 3365 3 3364 2 3367 5 3365 3 3366 4 3368 6 3367 5 3366 4 3369 7 3367 5 3368 6 3370 8 3369 7 3368 6 3371 9 3369 7 3370 8 3372 18 3371 9 3370 8 3373 19 3371 9 3372 18 3374 12 3373 19 3372 18 3375 13 3373 19 3374 12 3376 14 3375 13 3374 12 3377 15 3375 13 3376 14 3380 2 3379 1 3378 0 3381 3 3379 1 3380 2 3382 4 3381 3 3380 2 3383 5 3381 3 3382 4 3384 6 3383 5 3382 4 3385 7 3383 5 3384 6 3386 8 3385 7 3384 6 3387 9 3385 7 3386 8 3388 18 3387 9 3386 8 3389 19 3387 9 3388 18 3390 12 3389 19 3388 18 3391 13 3389 19 3390 12 3392 14 3391 13 3390 12 3393 15 3391 13 3392 14 3396 2 3395 1 3394 0 3397 3 3395 1 3396 2 3398 4 3397 3 3396 2 3399 5 3397 3 3398 4 3400 6 3399 5 3398 4 3401 7 3399 5 3400 6 3402 8 3401 7 3400 6 3403 9 3401 7 3402 8 3404 18 3403 9 3402 8 3405 19 3403 9 3404 18 3406 12 3405 19 3404 18 3407 13 3405 19 3406 12 3408 14 3407 13 3406 12 3409 15 3407 13 3408 14 3412 2 3411 1 3410 0 3413 3 3411 1 3412 2 3414 4 3413 3 3412 2 3415 5 3413 3 3414 4 3416 6 3415 5 3414 4 3417 7 3415 5 3416 6 3418 8 3417 7 3416 6 3419 9 3417 7 3418 8 3420 18 3419 9 3418 8 3421 19 3419 9 3420 18 3422 12 3421 19 3420 18 3423 13 3421 19 3422 12 3424 14 3423 13 3422 12 3425 15 3423 13 3424 14 3427 2 3426 1 3394 0 3428 3 3426 1 3427 2 3429 4 3428 3 3427 2 3430 5 3428 3 3429 4 3431 6 3430 5 3429 4 3432 7 3430 5 3431 6 3433 8 3432 7 3431 6 3434 9 3432 7 3433 8 3435 18 3434 9 3433 8 3436 19 3434 9 3435 18 3437 12 3436 19 3435 18 3438 13 3436 19 3437 12 3439 14 3438 13 3437 12 3440 15 3438 13 3439 14 3442 2 3441 1 3441 0 3442 3 3441 1 3442 2 3443 4 3442 3 3442 2 3444 5 3442 3 3443 4 3445 6 3444 5 3443 4 3446 7 3444 5 3445 6 3447 8 3446 7 3445 6 3448 9 3446 7 3447 8 3449 18 3448 9 3447 8 3450 19 3448 9 3449 18 3451 12 3450 19 3449 18 3452 13 3450 19 3451 12 3453 14 3452 13 3451 12 3454 15 3452 13 3453 14 3457 2 3456 1 3455 0 3458 3 3456 1 3457 2 3459 4 3458 3 3457 2 3460 5 3458 3 3459 4 3461 6 3460 5 3459 4 3462 7 3460 5 3461 6 3463 8 3462 7 3461 6 3464 9 3462 7 3463 8 3465 18 3464 9 3463 8 3466 19 3464 9 3465 18 3467 12 3466 19 3465 18 3468 13 3466 19 3467 12 3469 14 3468 13 3467 12 3470 15 3468 13 3469 14 3442 2 3441 1 3456 0 3471 3 3441 1 3442 2 3472 4 3471 3 3442 2 3473 5 3471 3 3472 4 3474 6 3473 5 3472 4 3475 7 3473 5 3474 6 3476 8 3475 7 3474 6 3477 9 3475 7 3476 8 3478 18 3477 9 3476 8 3479 19 3477 9 3478 18 3480 12 3479 19 3478 18 3481 13 3479 19 3480 12 3482 14 3481 13 3480 12 3483 15 3481 13 3482 14 3485 2 3484 1 3441 0 3486 3 3484 1 3485 2 3487 4 3486 3 3485 2 3488 5 3486 3 3487 4 3489 6 3488 5 3487 4 3490 7 3488 5 3489 6 3491 8 3490 7 3489 6 3492 9 3490 7 3491 8 3493 18 3492 9 3491 8 3494 19 3492 9 3493 18 3495 12 3494 19 3493 18 3496 13 3494 19 3495 12 3497 14 3496 13 3495 12 3498 15 3496 13 3497 14 3500 2 3456 1 3499 0 3501 3 3456 1 3500 2 3502 4 3501 3 3500 2 3503 5 3501 3 3502 4 3504 6 3503 5 3502 4 3505 7 3503 5 3504 6 3506 8 3505 7 3504 6 3507 9 3505 7 3506 8 3508 18 3507 9 3506 8 3509 19 3507 9 3508 18 3510 12 3509 19 3508 18 3511 13 3509 19 3510 12 3512 14 3511 13 3510 12 3513 15 3511 13 3512 14 3486 2 3515 1 3514 0 3516 3 3515 1 3486 2 3517 4 3516 3 3486 2 3518 5 3516 3 3517 4 3519 6 3518 5 3517 4 3520 7 3518 5 3519 6 3521 8 3520 7 3519 6 3522 9 3520 7 3521 8 3523 18 3522 9 3521 8 3524 19 3522 9 3523 18 3525 12 3524 19 3523 18 3526 13 3524 19 3525 12 3527 14 3526 13 3525 12 3528 15 3526 13 3527 14 3531 2 3530 1 3529 0 3531 3 3530 1 3531 2 3532 4 3531 3 3531 2 3533 5 3531 3 3532 4 3534 6 3533 5 3532 4 3535 7 3533 5 3534 6 3536 8 3535 7 3534 6 3537 9 3535 7 3536 8 3538 18 3537 9 3536 8 3539 19 3537 9 3538 18 3540 12 3539 19 3538 18 3541 13 3539 19 3540 12 3542 14 3541 13 3540 12 3543 15 3541 13 3542 14 3546 2 3545 1 3544 0 3547 3 3545 1 3546 2 3548 4 3547 3 3546 2 3549 5 3547 3 3548 4 3550 6 3549 5 3548 4 3551 7 3549 5 3550 6 3552 8 3551 7 3550 6 3553 9 3551 7 3552 8 3554 18 3553 9 3552 8 3555 19 3553 9 3554 18 3556 12 3555 19 3554 18 3557 13 3555 19 3556 12 3558 14 3557 13 3556 12 3559 15 3557 13 3558 14 3560 2 3544 1 3545 0 3561 3 3544 1 3560 2 3562 4 3561 3 3560 2 3563 5 3561 3 3562 4 3564 6 3563 5 3562 4 3565 7 3563 5 3564 6 3566 8 3565 7 3564 6 3567 9 3565 7 3566 8 3568 18 3567 9 3566 8 3569 19 3567 9 3568 18 3570 12 3569 19 3568 18 3571 13 3569 19 3570 12 3572 14 3571 13 3570 12 3572 15 3571 13 3572 14 3574 2 3545 1 3573 0 3575 3 3545 1 3574 2 3576 4 3575 3 3574 2 3577 5 3575 3 3576 4 3578 6 3577 5 3576 4 3579 7 3577 5 3578 6 3580 8 3579 7 3578 6 3581 9 3579 7 3580 8 3582 18 3581 9 3580 8 3583 19 3581 9 3582 18 3584 12 3583 19 3582 18 3585 13 3583 19 3584 12 3586 14 3585 13 3584 12 3587 15 3585 13 3586 14 3590 2 3589 1 3588 0 3591 3 3589 1 3590 2 3592 4 3591 3 3590 2 3593 5 3591 3 3592 4 3594 6 3593 5 3592 4 3595 7 3593 5 3594 6 3596 8 3595 7 3594 6 3597 9 3595 7 3596 8 3598 18 3597 9 3596 8 3599 19 3597 9 3598 18 3600 12 3599 19 3598 18 3601 13 3599 19 3600 12 3602 14 3601 13 3600 12 3603 15 3601 13 3602 14 3605 2 3604 1 3604 0 3605 3 3604 1 3605 2 3606 4 3605 3 3605 2 3607 5 3605 3 3606 4 3608 6 3607 5 3606 4 3609 7 3607 5 3608 6 3610 8 3609 7 3608 6 3611 9 3609 7 3610 8 3612 18 3611 9 3610 8 3613 19 3611 9 3612 18 3614 12 3613 19 3612 18 3615 13 3613 19 3614 12 3616 14 3615 13 3614 12 3617 15 3615 13 3616 14 3620 2 3619 1 3618 0 3621 3 3619 1 3620 2 3622 4 3621 3 3620 2 3623 5 3621 3 3622 4 3624 6 3623 5 3622 4 3625 7 3623 5 3624 6 3626 8 3625 7 3624 6 3627 9 3625 7 3626 8 3628 18 3627 9 3626 8 3629 19 3627 9 3628 18 3630 12 3629 19 3628 18 3631 13 3629 19 3630 12 3632 14 3631 13 3630 12 3633 15 3631 13 3632 14 3605 2 3634 1 3619 0 3635 3 3634 1 3605 2 3636 4 3635 3 3605 2 3637 5 3635 3 3636 4 3638 6 3637 5 3636 4 3639 7 3637 5 3638 6 3640 8 3639 7 3638 6 3641 9 3639 7 3640 8 3642 18 3641 9 3640 8 3643 19 3641 9 3642 18 3644 12 3643 19 3642 18 3645 13 3643 19 3644 12 3646 14 3645 13 3644 12 3647 15 3645 13 3646 14 3648 2 3618 1 3604 0 3649 3 3618 1 3648 2 3650 4 3649 3 3648 2 3651 5 3649 3 3650 4 3652 6 3651 5 3650 4 3653 7 3651 5 3652 6 3654 8 3653 7 3652 6 3655 9 3653 7 3654 8 3656 18 3655 9 3654 8 3657 19 3655 9 3656 18 3658 12 3657 19 3656 18 3659 13 3657 19 3658 12 3660 14 3659 13 3658 12 3661 15 3659 13 3660 14 3663 2 3619 1 3662 0 3664 3 3619 1 3663 2 3665 4 3664 3 3663 2 3666 5 3664 3 3665 4 3667 6 3666 5 3665 4 3668 7 3666 5 3667 6 3669 8 3668 7 3667 6 3670 9 3668 7 3669 8 3671 18 3670 9 3669 8 3672 19 3670 9 3671 18 3673 12 3672 19 3671 18 3674 13 3672 19 3673 12 3675 14 3674 13 3673 12 3676 15 3674 13 3675 14 3648 2 3678 1 3677 0 3649 3 3678 1 3648 2 3679 4 3649 3 3648 2 3680 5 3649 3 3679 4 3681 6 3680 5 3679 4 3682 7 3680 5 3681 6 3683 8 3682 7 3681 6 3684 9 3682 7 3683 8 3685 18 3684 9 3683 8 3686 19 3684 9 3685 18 3687 12 3686 19 3685 18 3688 13 3686 19 3687 12 3689 14 3688 13 3687 12 3690 15 3688 13 3689 14 3693 2 3692 1 3691 0 3694 3 3692 1 3693 2 3695 4 3694 3 3693 2 3696 5 3694 3 3695 4 3697 6 3696 5 3695 4 3698 7 3696 5 3697 6 3699 8 3698 7 3697 6 3700 9 3698 7 3699 8 3701 18 3700 9 3699 8 3702 19 3700 9 3701 18 3703 12 3702 19 3701 18 3704 13 3702 19 3703 12 3705 14 3704 13 3703 12 3706 15 3704 13 3705 14 3707 2 3691 1 3692 0 3708 3 3691 1 3707 2 3709 4 3708 3 3707 2 3710 5 3708 3 3709 4 3711 6 3710 5 3709 4 3712 7 3710 5 3711 6 3713 8 3712 7 3711 6 3714 9 3712 7 3713 8 3715 18 3714 9 3713 8 3716 19 3714 9 3715 18 3717 12 3716 19 3715 18 3718 13 3716 19 3717 12 3719 14 3718 13 3717 12 3720 15 3718 13 3719 14 3693 2 3692 1 3691 0 3721 3 3692 1 3693 2 3722 4 3721 3 3693 2 3723 5 3721 3 3722 4 3724 6 3723 5 3722 4 3725 7 3723 5 3724 6 3726 8 3725 7 3724 6 3727 9 3725 7 3726 8 3728 18 3727 9 3726 8 3728 19 3727 9 3728 18 3729 12 3728 19 3728 18 3730 13 3728 19 3729 12 3731 14 3730 13 3729 12 3732 15 3730 13 3731 14 3734 2 3691 1 3733 0 3735 3 3691 1 3734 2 3736 4 3735 3 3734 2 3737 5 3735 3 3736 4 3738 6 3737 5 3736 4 3739 7 3737 5 3738 6 3740 8 3739 7 3738 6 3741 9 3739 7 3740 8 3742 18 3741 9 3740 8 3743 19 3741 9 3742 18 3744 12 3743 19 3742 18 3745 13 3743 19 3744 12 3746 14 3745 13 3744 12 3747 15 3745 13 3746 14 3750 2 3749 1 3748 0 3751 3 3749 1 3750 2 3752 4 3751 3 3750 2 3753 5 3751 3 3752 4 3754 6 3753 5 3752 4 3755 7 3753 5 3754 6 3756 8 3755 7 3754 6 3757 9 3755 7 3756 8 3758 18 3757 9 3756 8 3759 19 3757 9 3758 18 3760 12 3759 19 3758 18 3761 13 3759 19 3760 12 3762 14 3761 13 3760 12 3763 15 3761 13 3762 14 3766 2 3765 1 3764 0 3766 3 3765 1 3766 2 3767 4 3766 3 3766 2 3768 5 3766 3 3767 4 3769 6 3768 5 3767 4 3770 7 3768 5 3769 6 3771 8 3770 7 3769 6 3772 9 3770 7 3771 8 3773 18 3772 9 3771 8 3774 19 3772 9 3773 18 3775 12 3774 19 3773 18 3776 13 3774 19 3775 12 3777 14 3776 13 3775 12 3777 15 3776 13 3777 14 3778 2 3764 1 3765 0 3779 3 3764 1 3778 2 3780 4 3779 3 3778 2 3781 5 3779 3 3780 4 3782 6 3781 5 3780 4 3783 7 3781 5 3782 6 3784 8 3783 7 3782 6 3785 9 3783 7 3784 8 3786 18 3785 9 3784 8 3787 19 3785 9 3786 18 3788 12 3787 19 3786 18 3789 13 3787 19 3788 12 3790 14 3789 13 3788 12 3791 15 3789 13 3790 14 3766 2 3765 1 3792 0 3793 3 3765 1 3766 2 3794 4 3793 3 3766 2 3795 5 3793 3 3794 4 3796 6 3795 5 3794 4 3797 7 3795 5 3796 6 3798 8 3797 7 3796 6 3799 9 3797 7 3798 8 3800 18 3799 9 3798 8 3800 19 3799 9 3800 18 3801 12 3800 19 3800 18 3802 13 3800 19 3801 12 3803 14 3802 13 3801 12 3803 15 3802 13 3803 14 3805 2 3804 1 3765 0 3806 3 3804 1 3805 2 3807 4 3806 3 3805 2 3808 5 3806 3 3807 4 3809 6 3808 5 3807 4 3810 7 3808 5 3809 6 3811 8 3810 7 3809 6 3812 9 3810 7 3811 8 3813 18 3812 9 3811 8 3814 19 3812 9 3813 18 3815 12 3814 19 3813 18 3816 13 3814 19 3815 12 3817 14 3816 13 3815 12 3818 15 3816 13 3817 14 3820 2 3764 1 3819 0 3821 3 3764 1 3820 2 3822 4 3821 3 3820 2 3823 5 3821 3 3822 4 3824 6 3823 5 3822 4 3825 7 3823 5 3824 6 3826 8 3825 7 3824 6 3827 9 3825 7 3826 8 3828 18 3827 9 3826 8 3829 19 3827 9 3828 18 3830 12 3829 19 3828 18 3831 13 3829 19 3830 12 3832 14 3831 13 3830 12 3833 15 3831 13 3832 14 3805 2 3834 1 3764 0 3835 3 3834 1 3805 2 3836 4 3835 3 3805 2 3837 5 3835 3 3836 4 3838 6 3837 5 3836 4 3839 7 3837 5 3838 6 3840 8 3839 7 3838 6 3841 9 3839 7 3840 8 3842 18 3841 9 3840 8 3843 19 3841 9 3842 18 3844 12 3843 19 3842 18 3845 13 3843 19 3844 12 3846 14 3845 13 3844 12 3847 15 3845 13 3846 14 3849 2 3848 1 3848 0 3849 3 3848 1 3849 2 3850 4 3849 3 3849 2 3851 5 3849 3 3850 4 3852 6 3851 5 3850 4 3853 7 3851 5 3852 6 3854 8 3853 7 3852 6 3855 9 3853 7 3854 8 3856 18 3855 9 3854 8 3857 19 3855 9 3856 18 3858 12 3857 19 3856 18 3859 13 3857 19 3858 12 3860 14 3859 13 3858 12 3861 15 3859 13 3860 14 3864 2 3863 1 3862 0 3865 3 3863 1 3864 2 3866 4 3865 3 3864 2 3867 5 3865 3 3866 4 3868 6 3867 5 3866 4 3869 7 3867 5 3868 6 3870 8 3869 7 3868 6 3871 9 3869 7 3870 8 3872 18 3871 9 3870 8 3873 19 3871 9 3872 18 3874 12 3873 19 3872 18 3875 13 3873 19 3874 12 3876 14 3875 13 3874 12 3877 15 3875 13 3876 14 3849 2 3862 1 3863 0 3878 3 3862 1 3849 2 3879 4 3878 3 3849 2 3880 5 3878 3 3879 4 3881 6 3880 5 3879 4 3882 7 3880 5 3881 6 3883 8 3882 7 3881 6 3884 9 3882 7 3883 8 3885 18 3884 9 3883 8 3886 19 3884 9 3885 18 3887 12 3886 19 3885 18 3888 13 3886 19 3887 12 3889 14 3888 13 3887 12 3890 15 3888 13 3889 14 3892 2 3863 1 3891 0 3893 3 3863 1 3892 2 3894 4 3893 3 3892 2 3895 5 3893 3 3894 4 3896 6 3895 5 3894 4 3897 7 3895 5 3896 6 3898 8 3897 7 3896 6 3899 9 3897 7 3898 8 3900 18 3899 9 3898 8 3901 19 3899 9 3900 18 3902 12 3901 19 3900 18 3903 13 3901 19 3902 12 3904 14 3903 13 3902 12 3905 15 3903 13 3904 14 3908 2 3907 1 3906 0 3909 3 3907 1 3908 2 3910 4 3909 3 3908 2 3911 5 3909 3 3910 4 3912 6 3911 5 3910 4 3913 7 3911 5 3912 6 3914 8 3913 7 3912 6 3915 9 3913 7 3914 8 3916 18 3915 9 3914 8 3917 19 3915 9 3916 18 3918 12 3917 19 3916 18 3919 13 3917 19 3918 12 3920 14 3919 13 3918 12 3921 15 3919 13 3920 14 3924 2 3923 1 3922 0 3924 3 3923 1 3924 2 3925 4 3924 3 3924 2 3926 5 3924 3 3925 4 3927 6 3926 5 3925 4 3928 7 3926 5 3927 6 3929 8 3928 7 3927 6 3930 9 3928 7 3929 8 3931 18 3930 9 3929 8 3932 19 3930 9 3931 18 3933 12 3932 19 3931 18 3934 13 3932 19 3933 12 3935 14 3934 13 3933 12 3936 15 3934 13 3935 14 3937 2 3922 1 3923 0 3938 3 3922 1 3937 2 3939 4 3938 3 3937 2 3940 5 3938 3 3939 4 3941 6 3940 5 3939 4 3942 7 3940 5 3941 6 3943 8 3942 7 3941 6 3944 9 3942 7 3943 8 3945 18 3944 9 3943 8 3946 19 3944 9 3945 18 3947 12 3946 19 3945 18 3948 13 3946 19 3947 12 3949 14 3948 13 3947 12 3950 15 3948 13 3949 14 3924 2 3951 1 3922 0 3952 3 3951 1 3924 2 3953 4 3952 3 3924 2 3953 5 3952 3 3953 4 3954 6 3953 5 3953 4 3955 7 3953 5 3954 6 3956 8 3955 7 3954 6 3957 9 3955 7 3956 8 3958 18 3957 9 3956 8 3959 19 3957 9 3958 18 3960 12 3959 19 3958 18 3961 13 3959 19 3960 12 3962 14 3961 13 3960 12 3963 15 3961 13 3962 14 3965 2 3964 1 3923 0 3966 3 3964 1 3965 2 3967 4 3966 3 3965 2 3968 5 3966 3 3967 4 3969 6 3968 5 3967 4 3970 7 3968 5 3969 6 3971 8 3970 7 3969 6 3972 9 3970 7 3971 8 3973 18 3972 9 3971 8 3974 19 3972 9 3973 18 3975 12 3974 19 3973 18 3976 13 3974 19 3975 12 3977 14 3976 13 3975 12 3978 15 3976 13 3977 14 3980 2 3922 1 3979 0 3981 3 3922 1 3980 2 3982 4 3981 3 3980 2 3983 5 3981 3 3982 4 3984 6 3983 5 3982 4 3985 7 3983 5 3984 6 3986 8 3985 7 3984 6 3987 9 3985 7 3986 8 3988 18 3987 9 3986 8 3989 19 3987 9 3988 18 3990 12 3989 19 3988 18 3991 13 3989 19 3990 12 3992 14 3991 13 3990 12 3993 15 3991 13 3992 14 3965 2 3994 1 3923 0 3995 3 3994 1 3965 2 3996 4 3995 3 3965 2 3997 5 3995 3 3996 4 3998 6 3997 5 3996 4 3999 7 3997 5 3998 6 4000 8 3999 7 3998 6 4001 9 3999 7 4000 8 4002 18 4001 9 4000 8 4003 19 4001 9 4002 18 4004 12 4003 19 4002 18 4005 13 4003 19 4004 12 4006 14 4005 13 4004 12 4007 15 4005 13 4006 14 4010 2 4009 1 4008 0 4011 3 4009 1 4010 2 4012 4 4011 3 4010 2 4013 5 4011 3 4012 4 4014 6 4013 5 4012 4 4015 7 4013 5 4014 6 4016 8 4015 7 4014 6 4017 9 4015 7 4016 8 4018 18 4017 9 4016 8 4019 19 4017 9 4018 18 4020 12 4019 19 4018 18 4021 13 4019 19 4020 12 4022 14 4021 13 4020 12 4023 15 4021 13 4022 14 4026 2 4025 1 4024 0 4027 3 4025 1 4026 2 4028 4 4027 3 4026 2 4029 5 4027 3 4028 4 4030 6 4029 5 4028 4 4031 7 4029 5 4030 6 4032 8 4031 7 4030 6 4033 9 4031 7 4032 8 4034 18 4033 9 4032 8 4035 19 4033 9 4034 18 4036 12 4035 19 4034 18 4037 13 4035 19 4036 12 4038 14 4037 13 4036 12 4039 15 4037 13 4038 14 4010 2 4009 1 4008 0 4040 3 4009 1 4010 2 4041 4 4040 3 4010 2 4042 5 4040 3 4041 4 4043 6 4042 5 4041 4 4044 7 4042 5 4043 6 4045 8 4044 7 4043 6 4046 9 4044 7 4045 8 4047 18 4046 9 4045 8 4048 19 4046 9 4047 18 4049 12 4048 19 4047 18 4050 13 4048 19 4049 12 4051 14 4050 13 4049 12 4052 15 4050 13 4051 14 4054 2 4025 1 4053 0 4055 3 4025 1 4054 2 4056 4 4055 3 4054 2 4057 5 4055 3 4056 4 4058 6 4057 5 4056 4 4059 7 4057 5 4058 6 4060 8 4059 7 4058 6 4061 9 4059 7 4060 8 4062 18 4061 9 4060 8 4063 19 4061 9 4062 18 4064 12 4063 19 4062 18 4065 13 4063 19 4064 12 4066 14 4065 13 4064 12 4067 15 4065 13 4066 14 4069 2 4068 1 4008 0 4070 3 4068 1 4069 2 4071 4 4070 3 4069 2 4072 5 4070 3 4071 4 4073 6 4072 5 4071 4 4074 7 4072 5 4073 6 4075 8 4074 7 4073 6 4076 9 4074 7 4075 8 4077 18 4076 9 4075 8 4078 19 4076 9 4077 18 4079 12 4078 19 4077 18 4080 13 4078 19 4079 12 4081 14 4080 13 4079 12 4082 15 4080 13 4081 14 4084 2 4083 1 4083 0 4085 3 4083 1 4084 2 4086 4 4085 3 4084 2 4087 5 4085 3 4086 4 4088 6 4087 5 4086 4 4089 7 4087 5 4088 6 4090 8 4089 7 4088 6 4091 9 4089 7 4090 8 4092 18 4091 9 4090 8 4093 19 4091 9 4092 18 4094 12 4093 19 4092 18 4095 13 4093 19 4094 12 4096 14 4095 13 4094 12 4097 15 4095 13 4096 14 4100 2 4099 1 4098 0 4101 3 4099 1 4100 2 4102 4 4101 3 4100 2 4103 5 4101 3 4102 4 4104 6 4103 5 4102 4 4105 7 4103 5 4104 6 4106 8 4105 7 4104 6 4107 9 4105 7 4106 8 4108 18 4107 9 4106 8 4109 19 4107 9 4108 18 4110 12 4109 19 4108 18 4110 13 4109 19 4110 12 4111 14 4110 13 4110 12 4112 15 4110 13 4111 14 4084 2 4083 1 4099 0 4113 3 4083 1 4084 2 4114 4 4113 3 4084 2 4115 5 4113 3 4114 4 4116 6 4115 5 4114 4 4117 7 4115 5 4116 6 4118 8 4117 7 4116 6 4119 9 4117 7 4118 8 4120 18 4119 9 4118 8 4121 19 4119 9 4120 18 4122 12 4121 19 4120 18 4123 13 4121 19 4122 12 4124 14 4123 13 4122 12 4125 15 4123 13 4124 14 4127 2 4098 1 4126 0 4128 3 4098 1 4127 2 4129 4 4128 3 4127 2 4130 5 4128 3 4129 4 4131 6 4130 5 4129 4 4132 7 4130 5 4131 6 4133 8 4132 7 4131 6 4134 9 4132 7 4133 8 4135 18 4134 9 4133 8 4136 19 4134 9 4135 18 4137 12 4136 19 4135 18 4138 13 4136 19 4137 12 4139 14 4138 13 4137 12 4140 15 4138 13 4139 14 4142 2 4099 1 4141 0 4143 3 4099 1 4142 2 4144 4 4143 3 4142 2 4145 5 4143 3 4144 4 4146 6 4145 5 4144 4 4147 7 4145 5 4146 6 4148 8 4147 7 4146 6 4149 9 4147 7 4148 8 4150 18 4149 9 4148 8 4151 19 4149 9 4150 18 4152 12 4151 19 4150 18 4153 13 4151 19 4152 12 4154 14 4153 13 4152 12 4155 15 4153 13 4154 14 4156 2 4098 1 4126 0 4157 3 4098 1 4156 2 4158 4 4157 3 4156 2 4159 5 4157 3 4158 4 4160 6 4159 5 4158 4 4161 7 4159 5 4160 6 4162 8 4161 7 4160 6 4163 9 4161 7 4162 8 4164 18 4163 9 4162 8 4165 19 4163 9 4164 18 4166 12 4165 19 4164 18 4167 13 4165 19 4166 12 4168 14 4167 13 4166 12 4169 15 4167 13 4168 14 4171 2 4170 1 4170 0 4172 3 4170 1 4171 2 4173 4 4172 3 4171 2 4174 5 4172 3 4173 4 4175 6 4174 5 4173 4 4176 7 4174 5 4175 6 4177 8 4176 7 4175 6 4178 9 4176 7 4177 8 4179 18 4178 9 4177 8 4180 19 4178 9 4179 18 4181 12 4180 19 4179 18 4182 13 4180 19 4181 12 4183 14 4182 13 4181 12 4183 15 4182 13 4183 14 4171 2 4185 1 4184 0 4186 3 4185 1 4171 2 4187 4 4186 3 4171 2 4188 5 4186 3 4187 4 4189 6 4188 5 4187 4 4190 7 4188 5 4189 6 4191 8 4190 7 4189 6 4192 9 4190 7 4191 8 4193 18 4192 9 4191 8 4194 19 4192 9 4193 18 4195 12 4194 19 4193 18 4195 13 4194 19 4195 12 4196 14 4195 13 4195 12 4196 15 4195 13 4196 14 4199 2 4198 1 4197 0 4200 3 4198 1 4199 2 4201 4 4200 3 4199 2 4201 5 4200 3 4201 4 4202 6 4201 5 4201 4 4203 7 4201 5 4202 6 4204 8 4203 7 4202 6 4205 9 4203 7 4204 8 4206 18 4205 9 4204 8 4207 19 4205 9 4206 18 4208 12 4207 19 4206 18 4209 13 4207 19 4208 12 4210 14 4209 13 4208 12 4211 15 4209 13 4210 14 4213 2 4197 1 4212 0 4214 3 4197 1 4213 2 4215 4 4214 3 4213 2 4216 5 4214 3 4215 4 4217 6 4216 5 4215 4 4218 7 4216 5 4217 6 4219 8 4218 7 4217 6 4220 9 4218 7 4219 8 4221 18 4220 9 4219 8 4222 19 4220 9 4221 18 4223 12 4222 19 4221 18 4224 13 4222 19 4223 12 4225 14 4224 13 4223 12 4226 15 4224 13 4225 14 4228 2 4227 1 4170 0 4229 3 4227 1 4228 2 4230 4 4229 3 4228 2 4231 5 4229 3 4230 4 4232 6 4231 5 4230 4 4233 7 4231 5 4232 6 4234 8 4233 7 4232 6 4235 9 4233 7 4234 8 4236 18 4235 9 4234 8 4237 19 4235 9 4236 18 4238 12 4237 19 4236 18 4239 13 4237 19 4238 12 4240 14 4239 13 4238 12 4241 15 4239 13 4240 14 4244 2 4243 1 4242 0 4244 3 4243 1 4244 2 4245 4 4244 3 4244 2 4246 5 4244 3 4245 4 4247 6 4246 5 4245 4 4248 7 4246 5 4247 6 4249 8 4248 7 4247 6 4250 9 4248 7 4249 8 4251 18 4250 9 4249 8 4252 19 4250 9 4251 18 4253 12 4252 19 4251 18 4254 13 4252 19 4253 12 4255 14 4254 13 4253 12 4256 15 4254 13 4255 14 4259 2 4258 1 4257 0 4260 3 4258 1 4259 2 4261 4 4260 3 4259 2 4262 5 4260 3 4261 4 4263 6 4262 5 4261 4 4264 7 4262 5 4263 6 4265 8 4264 7 4263 6 4265 9 4264 7 4265 8 4266 18 4265 9 4265 8 4266 19 4265 9 4266 18 4267 12 4266 19 4266 18 4268 13 4266 19 4267 12 4269 14 4268 13 4267 12 4270 15 4268 13 4269 14 4244 2 4243 1 4271 0 4272 3 4243 1 4244 2 4273 4 4272 3 4244 2 4274 5 4272 3 4273 4 4275 6 4274 5 4273 4 4276 7 4274 5 4275 6 4277 8 4276 7 4275 6 4278 9 4276 7 4277 8 4279 18 4278 9 4277 8 4279 19 4278 9 4279 18 4280 12 4279 19 4279 18 4281 13 4279 19 4280 12 4282 14 4281 13 4280 12 4283 15 4281 13 4282 14 4286 2 4285 1 4284 0 4287 3 4285 1 4286 2 4288 4 4287 3 4286 2 4289 5 4287 3 4288 4 4290 6 4289 5 4288 4 4291 7 4289 5 4290 6 4292 8 4291 7 4290 6 4293 9 4291 7 4292 8 4294 18 4293 9 4292 8 4295 19 4293 9 4294 18 4296 12 4295 19 4294 18 4297 13 4295 19 4296 12 4298 14 4297 13 4296 12 4299 15 4297 13 4298 14 4301 2 4258 1 4300 0 4302 3 4258 1 4301 2 4303 4 4302 3 4301 2 4304 5 4302 3 4303 4 4305 6 4304 5 4303 4 4306 7 4304 5 4305 6 4307 8 4306 7 4305 6 4308 9 4306 7 4307 8 4309 18 4308 9 4307 8 4310 19 4308 9 4309 18 4311 12 4310 19 4309 18 4312 13 4310 19 4311 12 4313 14 4312 13 4311 12 4314 15 4312 13 4313 14 4286 2 4315 1 4257 0 4316 3 4315 1 4286 2 4317 4 4316 3 4286 2 4318 5 4316 3 4317 4 4319 6 4318 5 4317 4 4320 7 4318 5 4319 6 4321 8 4320 7 4319 6 4322 9 4320 7 4321 8 4323 18 4322 9 4321 8 4324 19 4322 9 4323 18 4325 12 4324 19 4323 18 4326 13 4324 19 4325 12 4327 14 4326 13 4325 12 4328 15 4326 13 4327 14 4330 2 4329 1 4329 0 4331 3 4329 1 4330 2 4332 4 4331 3 4330 2 4333 5 4331 3 4332 4 4334 6 4333 5 4332 4 4335 7 4333 5 4334 6 4336 8 4335 7 4334 6 4337 9 4335 7 4336 8 4338 18 4337 9 4336 8 4339 19 4337 9 4338 18 4340 12 4339 19 4338 18 4341 13 4339 19 4340 12 4342 14 4341 13 4340 12 4343 15 4341 13 4342 14 4330 2 4345 1 4344 0 4346 3 4345 1 4330 2 4347 4 4346 3 4330 2 4348 5 4346 3 4347 4 4349 6 4348 5 4347 4 4350 7 4348 5 4349 6 4351 8 4350 7 4349 6 4352 9 4350 7 4351 8 4353 18 4352 9 4351 8 4354 19 4352 9 4353 18 4355 12 4354 19 4353 18 4356 13 4354 19 4355 12 4357 14 4356 13 4355 12 4358 15 4356 13 4357 14 4361 2 4360 1 4359 0 4362 3 4360 1 4361 2 4363 4 4362 3 4361 2 4364 5 4362 3 4363 4 4365 6 4364 5 4363 4 4366 7 4364 5 4365 6 4367 8 4366 7 4365 6 4368 9 4366 7 4367 8 4369 18 4368 9 4367 8 4370 19 4368 9 4369 18 4371 12 4370 19 4369 18 4372 13 4370 19 4371 12 4373 14 4372 13 4371 12 4374 15 4372 13 4373 14 4376 2 4345 1 4375 0 4377 3 4345 1 4376 2 4378 4 4377 3 4376 2 4379 5 4377 3 4378 4 4380 6 4379 5 4378 4 4381 7 4379 5 4380 6 4382 8 4381 7 4380 6 4383 9 4381 7 4382 8 4384 18 4383 9 4382 8 4385 19 4383 9 4384 18 4386 12 4385 19 4384 18 4387 13 4385 19 4386 12 4388 14 4387 13 4386 12 4389 15 4387 13 4388 14 4392 2 4391 1 4390 0 4393 3 4391 1 4392 2 4394 4 4393 3 4392 2 4395 5 4393 3 4394 4 4396 6 4395 5 4394 4 4397 7 4395 5 4396 6 4398 8 4397 7 4396 6 4399 9 4397 7 4398 8 4400 18 4399 9 4398 8 4401 19 4399 9 4400 18 4402 12 4401 19 4400 18 4403 13 4401 19 4402 12 4404 14 4403 13 4402 12 4405 15 4403 13 4404 14 4407 2 4406 1 4406 0 4408 3 4406 1 4407 2 4409 4 4408 3 4407 2 4410 5 4408 3 4409 4 4411 6 4410 5 4409 4 4412 7 4410 5 4411 6 4413 8 4412 7 4411 6 4414 9 4412 7 4413 8 4415 18 4414 9 4413 8 4416 19 4414 9 4415 18 4417 12 4416 19 4415 18 4418 13 4416 19 4417 12 4419 14 4418 13 4417 12 4420 15 4418 13 4419 14 4423 2 4422 1 4421 0 4424 3 4422 1 4423 2 4425 4 4424 3 4423 2 4426 5 4424 3 4425 4 4427 6 4426 5 4425 4 4428 7 4426 5 4427 6 4429 8 4428 7 4427 6 4430 9 4428 7 4429 8 4431 18 4430 9 4429 8 4432 19 4430 9 4431 18 4433 12 4432 19 4431 18 4434 13 4432 19 4433 12 4435 14 4434 13 4433 12 4436 15 4434 13 4435 14 4408 2 4437 1 4422 0 4438 3 4437 1 4408 2 4439 4 4438 3 4408 2 4440 5 4438 3 4439 4 4441 6 4440 5 4439 4 4442 7 4440 5 4441 6 4443 8 4442 7 4441 6 4444 9 4442 7 4443 8 4445 18 4444 9 4443 8 4446 19 4444 9 4445 18 4447 12 4446 19 4445 18 4448 13 4446 19 4447 12 4449 14 4448 13 4447 12 4450 15 4448 13 4449 14 4452 2 4421 1 4451 0 4453 3 4421 1 4452 2 4454 4 4453 3 4452 2 4455 5 4453 3 4454 4 4456 6 4455 5 4454 4 4457 7 4455 5 4456 6 4458 8 4457 7 4456 6 4459 9 4457 7 4458 8 4460 18 4459 9 4458 8 4461 19 4459 9 4460 18 4462 12 4461 19 4460 18 4463 13 4461 19 4462 12 4464 14 4463 13 4462 12 4465 15 4463 13 4464 14 4467 2 4422 1 4466 0 4468 3 4422 1 4467 2 4469 4 4468 3 4467 2 4470 5 4468 3 4469 4 4471 6 4470 5 4469 4 4472 7 4470 5 4471 6 4473 8 4472 7 4471 6 4474 9 4472 7 4473 8 4475 18 4474 9 4473 8 4476 19 4474 9 4475 18 4477 12 4476 19 4475 18 4478 13 4476 19 4477 12 4479 14 4478 13 4477 12 4480 15 4478 13 4479 14 4483 2 4482 1 4481 0 4453 3 4482 1 4483 2 4484 4 4453 3 4483 2 4485 5 4453 3 4484 4 4486 6 4485 5 4484 4 4487 7 4485 5 4486 6 4488 8 4487 7 4486 6 4489 9 4487 7 4488 8 4490 18 4489 9 4488 8 4491 19 4489 9 4490 18 4492 12 4491 19 4490 18 4493 13 4491 19 4492 12 4494 14 4493 13 4492 12 4495 15 4493 13 4494 14 4498 2 4497 1 4496 0 4498 3 4497 1 4498 2 4499 4 4498 3 4498 2 4500 5 4498 3 4499 4 4501 6 4500 5 4499 4 4502 7 4500 5 4501 6 4503 8 4502 7 4501 6 4504 9 4502 7 4503 8 4505 18 4504 9 4503 8 4506 19 4504 9 4505 18 4507 12 4506 19 4505 18 4508 13 4506 19 4507 12 4509 14 4508 13 4507 12 4510 15 4508 13 4509 14 4513 2 4512 1 4511 0 4514 3 4512 1 4513 2 4515 4 4514 3 4513 2 4516 5 4514 3 4515 4 4517 6 4516 5 4515 4 4518 7 4516 5 4517 6 4519 8 4518 7 4517 6 4520 9 4518 7 4519 8 4521 18 4520 9 4519 8 4522 19 4520 9 4521 18 4523 12 4522 19 4521 18 4523 13 4522 19 4523 12 4524 14 4523 13 4523 12 4524 15 4523 13 4524 14 4498 2 4525 1 4496 0 4526 3 4525 1 4498 2 4527 4 4526 3 4498 2 4528 5 4526 3 4527 4 4529 6 4528 5 4527 4 4530 7 4528 5 4529 6 4531 8 4530 7 4529 6 4532 9 4530 7 4531 8 4533 18 4532 9 4531 8 4534 19 4532 9 4533 18 4535 12 4534 19 4533 18 4536 13 4534 19 4535 12 4537 14 4536 13 4535 12 4538 15 4536 13 4537 14 4540 2 4496 1 4539 0 4541 3 4496 1 4540 2 4542 4 4541 3 4540 2 4543 5 4541 3 4542 4 4544 6 4543 5 4542 4 4545 7 4543 5 4544 6 4546 8 4545 7 4544 6 4547 9 4545 7 4546 8 4548 18 4547 9 4546 8 4549 19 4547 9 4548 18 4550 12 4549 19 4548 18 4551 13 4549 19 4550 12 4552 14 4551 13 4550 12 4553 15 4551 13 4552 14 4555 2 4554 1 4496 0 4556 3 4554 1 4555 2 4557 4 4556 3 4555 2 4558 5 4556 3 4557 4 4559 6 4558 5 4557 4 4560 7 4558 5 4559 6 4561 8 4560 7 4559 6 4562 9 4560 7 4561 8 4563 18 4562 9 4561 8 4564 19 4562 9 4563 18 4565 12 4564 19 4563 18 4566 13 4564 19 4565 12 4567 14 4566 13 4565 12 4568 15 4566 13 4567 14 4571 2 4570 1 4569 0 4571 3 4570 1 4571 2 4572 4 4571 3 4571 2 4573 5 4571 3 4572 4 4574 6 4573 5 4572 4 4575 7 4573 5 4574 6 4576 8 4575 7 4574 6 4577 9 4575 7 4576 8 4578 18 4577 9 4576 8 4579 19 4577 9 4578 18 4580 12 4579 19 4578 18 4581 13 4579 19 4580 12 4582 14 4581 13 4580 12 4583 15 4581 13 4582 14 4586 2 4585 1 4584 0 4587 3 4585 1 4586 2 4588 4 4587 3 4586 2 4589 5 4587 3 4588 4 4590 6 4589 5 4588 4 4591 7 4589 5 4590 6 4592 8 4591 7 4590 6 4593 9 4591 7 4592 8 4594 18 4593 9 4592 8 4595 19 4593 9 4594 18 4596 12 4595 19 4594 18 4597 13 4595 19 4596 12 4598 14 4597 13 4596 12 4599 15 4597 13 4598 14 4571 2 4601 1 4600 0 4602 3 4601 1 4571 2 4603 4 4602 3 4571 2 4604 5 4602 3 4603 4 4605 6 4604 5 4603 4 4606 7 4604 5 4605 6 4607 8 4606 7 4605 6 4607 9 4606 7 4607 8 4608 18 4607 9 4607 8 4609 19 4607 9 4608 18 4610 12 4609 19 4608 18 4611 13 4609 19 4610 12 4612 14 4611 13 4610 12 4613 15 4611 13 4612 14 4616 2 4615 1 4614 0 4617 3 4615 1 4616 2 4618 4 4617 3 4616 2 4619 5 4617 3 4618 4 4620 6 4619 5 4618 4 4621 7 4619 5 4620 6 4622 8 4621 7 4620 6 4623 9 4621 7 4622 8 4624 18 4623 9 4622 8 4625 19 4623 9 4624 18 4626 12 4625 19 4624 18 4627 13 4625 19 4626 12 4628 14 4627 13 4626 12 4629 15 4627 13 4628 14 4631 2 4570 1 4630 0 4632 3 4570 1 4631 2 4633 4 4632 3 4631 2 4634 5 4632 3 4633 4 4635 6 4634 5 4633 4 4636 7 4634 5 4635 6 4637 8 4636 7 4635 6 4638 9 4636 7 4637 8 4639 18 4638 9 4637 8 4640 19 4638 9 4639 18 4641 12 4640 19 4639 18 4642 13 4640 19 4641 12 4643 14 4642 13 4641 12 4644 15 4642 13 4643 14 4616 2 4645 1 4569 0 4646 3 4645 1 4616 2 4647 4 4646 3 4616 2 4648 5 4646 3 4647 4 4649 6 4648 5 4647 4 4650 7 4648 5 4649 6 4651 8 4650 7 4649 6 4652 9 4650 7 4651 8 4653 18 4652 9 4651 8 4654 19 4652 9 4653 18 4655 12 4654 19 4653 18 4656 13 4654 19 4655 12 4657 14 4656 13 4655 12 4658 15 4656 13 4657 14 4660 2 4659 1 4659 0 4661 3 4659 1 4660 2 4662 4 4661 3 4660 2 4663 5 4661 3 4662 4 4664 6 4663 5 4662 4 4665 7 4663 5 4664 6 4666 8 4665 7 4664 6 4667 9 4665 7 4666 8 4668 18 4667 9 4666 8 4669 19 4667 9 4668 18 4670 12 4669 19 4668 18 4671 13 4669 19 4670 12 4672 14 4671 13 4670 12 4673 15 4671 13 4672 14 4676 2 4675 1 4674 0 4677 3 4675 1 4676 2 4678 4 4677 3 4676 2 4679 5 4677 3 4678 4 4680 6 4679 5 4678 4 4681 7 4679 5 4680 6 4682 8 4681 7 4680 6 4683 9 4681 7 4682 8 4684 18 4683 9 4682 8 4685 19 4683 9 4684 18 4686 12 4685 19 4684 18 4687 13 4685 19 4686 12 4688 14 4687 13 4686 12 4689 15 4687 13 4688 14 4691 2 4674 1 4690 0 4692 3 4674 1 4691 2 4693 4 4692 3 4691 2 4694 5 4692 3 4693 4 4695 6 4694 5 4693 4 4696 7 4694 5 4695 6 4697 8 4696 7 4695 6 4698 9 4696 7 4697 8 4699 18 4698 9 4697 8 4699 19 4698 9 4699 18 4700 12 4699 19 4699 18 4700 13 4699 19 4700 12 4701 14 4700 13 4700 12 4702 15 4700 13 4701 14 4704 2 4659 1 4703 0 4705 3 4659 1 4704 2 4706 4 4705 3 4704 2 4707 5 4705 3 4706 4 4708 6 4707 5 4706 4 4709 7 4707 5 4708 6 4710 8 4709 7 4708 6 4711 9 4709 7 4710 8 4712 18 4711 9 4710 8 4713 19 4711 9 4712 18 4714 12 4713 19 4712 18 4715 13 4713 19 4714 12 4716 14 4715 13 4714 12 4717 15 4715 13 4716 14 4719 2 4718 1 4690 0 4720 3 4718 1 4719 2 4721 4 4720 3 4719 2 4722 5 4720 3 4721 4 4723 6 4722 5 4721 4 4724 7 4722 5 4723 6 4725 8 4724 7 4723 6 4726 9 4724 7 4725 8 4727 18 4726 9 4725 8 4728 19 4726 9 4727 18 4729 12 4728 19 4727 18 4730 13 4728 19 4729 12 4731 14 4730 13 4729 12 4732 15 4730 13 4731 14 4735 2 4734 1 4733 0 4735 3 4734 1 4735 2 4736 4 4735 3 4735 2 4737 5 4735 3 4736 4 4738 6 4737 5 4736 4 4739 7 4737 5 4738 6 4740 8 4739 7 4738 6 4741 9 4739 7 4740 8 4742 18 4741 9 4740 8 4743 19 4741 9 4742 18 4744 12 4743 19 4742 18 4744 13 4743 19 4744 12 4745 14 4744 13 4744 12 4746 15 4744 13 4745 14 4749 2 4748 1 4747 0 4750 3 4748 1 4749 2 4751 4 4750 3 4749 2 4752 5 4750 3 4751 4 4753 6 4752 5 4751 4 4754 7 4752 5 4753 6 4755 8 4754 7 4753 6 4756 9 4754 7 4755 8 4757 18 4756 9 4755 8 4758 19 4756 9 4757 18 4759 12 4758 19 4757 18 4759 13 4758 19 4759 12 4760 14 4759 13 4759 12 4761 15 4759 13 4760 14 4735 2 4762 1 4733 0 4763 3 4762 1 4735 2 4764 4 4763 3 4735 2 4765 5 4763 3 4764 4 4766 6 4765 5 4764 4 4767 7 4765 5 4766 6 4768 8 4767 7 4766 6 4769 9 4767 7 4768 8 4770 18 4769 9 4768 8 4771 19 4769 9 4770 18 4772 12 4771 19 4770 18 4773 13 4771 19 4772 12 4774 14 4773 13 4772 12 4775 15 4773 13 4774 14 4777 2 4747 1 4776 0 4778 3 4747 1 4777 2 4779 4 4778 3 4777 2 4780 5 4778 3 4779 4 4781 6 4780 5 4779 4 4782 7 4780 5 4781 6 4783 8 4782 7 4781 6 4784 9 4782 7 4783 8 4785 18 4784 9 4783 8 4786 19 4784 9 4785 18 4787 12 4786 19 4785 18 4788 13 4786 19 4787 12 4789 14 4788 13 4787 12 4790 15 4788 13 4789 14 4792 2 4748 1 4791 0 4793 3 4748 1 4792 2 4794 4 4793 3 4792 2 4795 5 4793 3 4794 4 4796 6 4795 5 4794 4 4797 7 4795 5 4796 6 4798 8 4797 7 4796 6 4799 9 4797 7 4798 8 4800 18 4799 9 4798 8 4801 19 4799 9 4800 18 4802 12 4801 19 4800 18 4803 13 4801 19 4802 12 4804 14 4803 13 4802 12 4805 15 4803 13 4804 14 4777 2 4791 1 4733 0 4806 3 4791 1 4777 2 4807 4 4806 3 4777 2 4808 5 4806 3 4807 4 4809 6 4808 5 4807 4 4810 7 4808 5 4809 6 4811 8 4810 7 4809 6 4812 9 4810 7 4811 8 4813 18 4812 9 4811 8 4814 19 4812 9 4813 18 4815 12 4814 19 4813 18 4816 13 4814 19 4815 12 4817 14 4816 13 4815 12 4818 15 4816 13 4817 14 4820 2 4819 1 4819 0 4820 3 4819 1 4820 2 4821 4 4820 3 4820 2 4822 5 4820 3 4821 4 4823 6 4822 5 4821 4 4824 7 4822 5 4823 6 4825 8 4824 7 4823 6 4826 9 4824 7 4825 8 4827 18 4826 9 4825 8 4828 19 4826 9 4827 18 4829 12 4828 19 4827 18 4830 13 4828 19 4829 12 4831 14 4830 13 4829 12 4832 15 4830 13 4831 14 4835 2 4834 1 4833 0 4836 3 4834 1 4835 2 4837 4 4836 3 4835 2 4838 5 4836 3 4837 4 4839 6 4838 5 4837 4 4840 7 4838 5 4839 6 4841 8 4840 7 4839 6 4842 9 4840 7 4841 8 4843 18 4842 9 4841 8 4844 19 4842 9 4843 18 4845 12 4844 19 4843 18 4846 13 4844 19 4845 12 4847 14 4846 13 4845 12 4848 15 4846 13 4847 14 4850 2 4849 1 4819 0 4851 3 4849 1 4850 2 4852 4 4851 3 4850 2 4853 5 4851 3 4852 4 4854 6 4853 5 4852 4 4855 7 4853 5 4854 6 4856 8 4855 7 4854 6 4857 9 4855 7 4856 8 4858 18 4857 9 4856 8 4859 19 4857 9 4858 18 4860 12 4859 19 4858 18 4861 13 4859 19 4860 12 4862 14 4861 13 4860 12 4863 15 4861 13 4862 14 4865 2 4834 1 4864 0 4866 3 4834 1 4865 2 4867 4 4866 3 4865 2 4868 5 4866 3 4867 4 4869 6 4868 5 4867 4 4870 7 4868 5 4869 6 4871 8 4870 7 4869 6 4872 9 4870 7 4871 8 4873 18 4872 9 4871 8 4874 19 4872 9 4873 18 4875 12 4874 19 4873 18 4876 13 4874 19 4875 12 4877 14 4876 13 4875 12 4878 15 4876 13 4877 14 4880 2 4879 1 4819 0 4881 3 4879 1 4880 2 4882 4 4881 3 4880 2 4883 5 4881 3 4882 4 4884 6 4883 5 4882 4 4885 7 4883 5 4884 6 4886 8 4885 7 4884 6 4887 9 4885 7 4886 8 4888 18 4887 9 4886 8 4889 19 4887 9 4888 18 4890 12 4889 19 4888 18 4891 13 4889 19 4890 12 4892 14 4891 13 4890 12 4893 15 4891 13 4892 14 4896 2 4895 1 4894 0 4897 3 4895 1 4896 2 4898 4 4897 3 4896 2 4899 5 4897 3 4898 4 4900 6 4899 5 4898 4 4901 7 4899 5 4900 6 4902 8 4901 7 4900 6 4903 9 4901 7 4902 8 4904 18 4903 9 4902 8 4905 19 4903 9 4904 18 4906 12 4905 19 4904 18 4907 13 4905 19 4906 12 4908 14 4907 13 4906 12 4909 15 4907 13 4908 14 4912 2 4911 1 4910 0 4913 3 4911 1 4912 2 4914 4 4913 3 4912 2 4915 5 4913 3 4914 4 4916 6 4915 5 4914 4 4917 7 4915 5 4916 6 4918 8 4917 7 4916 6 4919 9 4917 7 4918 8 4920 18 4919 9 4918 8 4921 19 4919 9 4920 18 4922 12 4921 19 4920 18 4922 13 4921 19 4922 12 4923 14 4922 13 4922 12 4924 15 4922 13 4923 14 4897 2 4926 1 4925 0 4927 3 4926 1 4897 2 4928 4 4927 3 4897 2 4929 5 4927 3 4928 4 4930 6 4929 5 4928 4 4931 7 4929 5 4930 6 4932 8 4931 7 4930 6 4933 9 4931 7 4932 8 4934 18 4933 9 4932 8 4935 19 4933 9 4934 18 4936 12 4935 19 4934 18 4937 13 4935 19 4936 12 4938 14 4937 13 4936 12 4939 15 4937 13 4938 14 4941 2 4940 1 4910 0 4942 3 4940 1 4941 2 4943 4 4942 3 4941 2 4944 5 4942 3 4943 4 4945 6 4944 5 4943 4 4946 7 4944 5 4945 6 4947 8 4946 7 4945 6 4948 9 4946 7 4947 8 4949 18 4948 9 4947 8 4950 19 4948 9 4949 18 4951 12 4950 19 4949 18 4952 13 4950 19 4951 12 4953 14 4952 13 4951 12 4954 15 4952 13 4953 14 4941 2 4956 1 4955 0 4957 3 4956 1 4941 2 4958 4 4957 3 4941 2 4959 5 4957 3 4958 4 4960 6 4959 5 4958 4 4961 7 4959 5 4960 6 4962 8 4961 7 4960 6 4963 9 4961 7 4962 8 4964 18 4963 9 4962 8 4965 19 4963 9 4964 18 4966 12 4965 19 4964 18 4967 13 4965 19 4966 12 4968 14 4967 13 4966 12 4969 15 4967 13 4968 14 4971 2 4940 1 4970 0 4972 3 4940 1 4971 2 4973 4 4972 3 4971 2 4974 5 4972 3 4973 4 4975 6 4974 5 4973 4 4976 7 4974 5 4975 6 4977 8 4976 7 4975 6 4978 9 4976 7 4977 8 4979 18 4978 9 4977 8 4980 19 4978 9 4979 18 4981 12 4980 19 4979 18 4982 13 4980 19 4981 12 4983 14 4982 13 4981 12 4984 15 4982 13 4983 14 4986 2 4985 1 4985 0 4986 3 4985 1 4986 2 4987 4 4986 3 4986 2 4988 5 4986 3 4987 4 4989 6 4988 5 4987 4 4990 7 4988 5 4989 6 4991 8 4990 7 4989 6 4992 9 4990 7 4991 8 4993 18 4992 9 4991 8 4994 19 4992 9 4993 18 4995 12 4994 19 4993 18 4996 13 4994 19 4995 12 4997 14 4996 13 4995 12 4998 15 4996 13 4997 14 5001 2 5000 1 4999 0 5002 3 5000 1 5001 2 5003 4 5002 3 5001 2 5004 5 5002 3 5003 4 5005 6 5004 5 5003 4 5006 7 5004 5 5005 6 5007 8 5006 7 5005 6 5008 9 5006 7 5007 8 5009 18 5008 9 5007 8 5010 19 5008 9 5009 18 5011 12 5010 19 5009 18 5012 13 5010 19 5011 12 5013 14 5012 13 5011 12 5014 15 5012 13 5013 14 5017 2 5016 1 5015 0 5018 3 5016 1 5017 2 5019 4 5018 3 5017 2 5020 5 5018 3 5019 4 5021 6 5020 5 5019 4 5022 7 5020 5 5021 6 5023 8 5022 7 5021 6 5024 9 5022 7 5023 8 5025 18 5024 9 5023 8 5026 19 5024 9 5025 18 5027 12 5026 19 5025 18 5028 13 5026 19 5027 12 5029 14 5028 13 5027 12 5030 15 5028 13 5029 14 5032 2 5000 1 5031 0 5033 3 5000 1 5032 2 5034 4 5033 3 5032 2 5035 5 5033 3 5034 4 5036 6 5035 5 5034 4 5037 7 5035 5 5036 6 5038 8 5037 7 5036 6 5039 9 5037 7 5038 8 5040 18 5039 9 5038 8 5041 19 5039 9 5040 18 5042 12 5041 19 5040 18 5043 13 5041 19 5042 12 5044 14 5043 13 5042 12 5045 15 5043 13 5044 14 5047 2 5046 1 4985 0 5048 3 5046 1 5047 2 5049 4 5048 3 5047 2 5050 5 5048 3 5049 4 5051 6 5050 5 5049 4 5052 7 5050 5 5051 6 5053 8 5052 7 5051 6 5054 9 5052 7 5053 8 5055 18 5054 9 5053 8 5056 19 5054 9 5055 18 5057 12 5056 19 5055 18 5058 13 5056 19 5057 12 5059 14 5058 13 5057 12 5060 15 5058 13 5059 14 5063 2 5062 1 5061 0 5063 3 5062 1 5063 2 5064 4 5063 3 5063 2 5065 5 5063 3 5064 4 5066 6 5065 5 5064 4 5067 7 5065 5 5066 6 5068 8 5067 7 5066 6 5069 9 5067 7 5068 8 5070 18 5069 9 5068 8 5071 19 5069 9 5070 18 5072 12 5071 19 5070 18 5073 13 5071 19 5072 12 5074 14 5073 13 5072 12 5075 15 5073 13 5074 14 5078 2 5077 1 5076 0 5079 3 5077 1 5078 2 5080 4 5079 3 5078 2 5081 5 5079 3 5080 4 5082 6 5081 5 5080 4 5083 7 5081 5 5082 6 5084 8 5083 7 5082 6 5085 9 5083 7 5084 8 5086 18 5085 9 5084 8 5087 19 5085 9 5086 18 5088 12 5087 19 5086 18 5089 13 5087 19 5088 12 5090 14 5089 13 5088 12 5091 15 5089 13 5090 14 5093 2 5092 1 5061 0 5094 3 5092 1 5093 2 5095 4 5094 3 5093 2 5096 5 5094 3 5095 4 5097 6 5096 5 5095 4 5098 7 5096 5 5097 6 5099 8 5098 7 5097 6 5099 9 5098 7 5099 8 5100 18 5099 9 5099 8 5100 19 5099 9 5100 18 5101 12 5100 19 5100 18 5102 13 5100 19 5101 12 5103 14 5102 13 5101 12 5104 15 5102 13 5103 14 5106 2 5076 1 5105 0 5107 3 5076 1 5106 2 5108 4 5107 3 5106 2 5109 5 5107 3 5108 4 5110 6 5109 5 5108 4 5111 7 5109 5 5110 6 5112 8 5111 7 5110 6 5113 9 5111 7 5112 8 5114 18 5113 9 5112 8 5115 19 5113 9 5114 18 5116 12 5115 19 5114 18 5117 13 5115 19 5116 12 5118 14 5117 13 5116 12 5119 15 5117 13 5118 14 5121 2 5061 1 5120 0 5122 3 5061 1 5121 2 5123 4 5122 3 5121 2 5124 5 5122 3 5123 4 5125 6 5124 5 5123 4 5126 7 5124 5 5125 6 5127 8 5126 7 5125 6 5128 9 5126 7 5127 8 5129 18 5128 9 5127 8 5130 19 5128 9 5129 18 5131 12 5130 19 5129 18 5132 13 5130 19 5131 12 5133 14 5132 13 5131 12 5134 15 5132 13 5133 14 5136 2 5135 1 5061 0 5137 3 5135 1 5136 2 5138 4 5137 3 5136 2 5139 5 5137 3 5138 4 5140 6 5139 5 5138 4 5141 7 5139 5 5140 6 5142 8 5141 7 5140 6 5143 9 5141 7 5142 8 5144 18 5143 9 5142 8 5145 19 5143 9 5144 18 5146 12 5145 19 5144 18 5147 13 5145 19 5146 12 5148 14 5147 13 5146 12 5149 15 5147 13 5148 14 5151 2 5150 1 5150 0 5151 3 5150 1 5151 2 5152 4 5151 3 5151 2 5153 5 5151 3 5152 4 5154 6 5153 5 5152 4 5155 7 5153 5 5154 6 5156 8 5155 7 5154 6 5157 9 5155 7 5156 8 5158 18 5157 9 5156 8 5159 19 5157 9 5158 18 5160 12 5159 19 5158 18 5161 13 5159 19 5160 12 5162 14 5161 13 5160 12 5163 15 5161 13 5162 14 5165 2 5150 1 5164 0 5166 3 5150 1 5165 2 5167 4 5166 3 5165 2 5168 5 5166 3 5167 4 5169 6 5168 5 5167 4 5170 7 5168 5 5169 6 5171 8 5170 7 5169 6 5172 9 5170 7 5171 8 5173 18 5172 9 5171 8 5174 19 5172 9 5173 18 5175 12 5174 19 5173 18 5176 13 5174 19 5175 12 5177 14 5176 13 5175 12 5178 15 5176 13 5177 14 5151 2 5180 1 5179 0 5181 3 5180 1 5151 2 5182 4 5181 3 5151 2 5183 5 5181 3 5182 4 5184 6 5183 5 5182 4 5185 7 5183 5 5184 6 5186 8 5185 7 5184 6 5187 9 5185 7 5186 8 5188 18 5187 9 5186 8 5188 19 5187 9 5188 18 5189 12 5188 19 5188 18 5190 13 5188 19 5189 12 5191 14 5190 13 5189 12 5192 15 5190 13 5191 14 5194 2 5150 1 5193 0 5195 3 5150 1 5194 2 5196 4 5195 3 5194 2 5197 5 5195 3 5196 4 5198 6 5197 5 5196 4 5199 7 5197 5 5198 6 5200 8 5199 7 5198 6 5201 9 5199 7 5200 8 5202 18 5201 9 5200 8 5203 19 5201 9 5202 18 5204 12 5203 19 5202 18 5205 13 5203 19 5204 12 5206 14 5205 13 5204 12 5207 15 5205 13 5206 14 5209 2 5208 1 5179 0 5210 3 5208 1 5209 2 5211 4 5210 3 5209 2 5212 5 5210 3 5211 4 5213 6 5212 5 5211 4 5214 7 5212 5 5213 6 5215 8 5214 7 5213 6 5216 9 5214 7 5215 8 5217 18 5216 9 5215 8 5218 19 5216 9 5217 18 5219 12 5218 19 5217 18 5220 13 5218 19 5219 12 5221 14 5220 13 5219 12 5222 15 5220 13 5221 14 5225 2 5224 1 5223 0 5225 3 5224 1 5225 2 5226 4 5225 3 5225 2 5227 5 5225 3 5226 4 5228 6 5227 5 5226 4 5229 7 5227 5 5228 6 5230 8 5229 7 5228 6 5231 9 5229 7 5230 8 5232 18 5231 9 5230 8 5233 19 5231 9 5232 18 5234 12 5233 19 5232 18 5235 13 5233 19 5234 12 5236 14 5235 13 5234 12 5237 15 5235 13 5236 14 5225 2 5239 1 5238 0 5240 3 5239 1 5225 2 5241 4 5240 3 5225 2 5242 5 5240 3 5241 4 5243 6 5242 5 5241 4 5244 7 5242 5 5243 6 5245 8 5244 7 5243 6 5246 9 5244 7 5245 8 5247 18 5246 9 5245 8 5248 19 5246 9 5247 18 5249 12 5248 19 5247 18 5249 13 5248 19 5249 12 5250 14 5249 13 5249 12 5251 15 5249 13 5250 14 5254 2 5253 1 5252 0 5255 3 5253 1 5254 2 5256 4 5255 3 5254 2 5257 5 5255 3 5256 4 5258 6 5257 5 5256 4 5258 7 5257 5 5258 6 5259 8 5258 7 5258 6 5260 9 5258 7 5259 8 5261 18 5260 9 5259 8 5262 19 5260 9 5261 18 5263 12 5262 19 5261 18 5264 13 5262 19 5263 12 5265 14 5264 13 5263 12 5266 15 5264 13 5265 14 5268 2 5267 1 5223 0 5269 3 5267 1 5268 2 5270 4 5269 3 5268 2 5271 5 5269 3 5270 4 5272 6 5271 5 5270 4 5273 7 5271 5 5272 6 5274 8 5273 7 5272 6 5275 9 5273 7 5274 8 5276 18 5275 9 5274 8 5277 19 5275 9 5276 18 5278 12 5277 19 5276 18 5279 13 5277 19 5278 12 5280 14 5279 13 5278 12 5281 15 5279 13 5280 14 5284 2 5283 1 5282 0 5285 3 5283 1 5284 2 5286 4 5285 3 5284 2 5287 5 5285 3 5286 4 5288 6 5287 5 5286 4 5289 7 5287 5 5288 6 5290 8 5289 7 5288 6 5291 9 5289 7 5290 8 5292 18 5291 9 5290 8 5293 19 5291 9 5292 18 5294 12 5293 19 5292 18 5295 13 5293 19 5294 12 5296 14 5295 13 5294 12 5297 15 5295 13 5296 14 5268 2 5299 1 5298 0 5300 3 5299 1 5268 2 5301 4 5300 3 5268 2 5302 5 5300 3 5301 4 5303 6 5302 5 5301 4 5304 7 5302 5 5303 6 5305 8 5304 7 5303 6 5306 9 5304 7 5305 8 5307 18 5306 9 5305 8 5308 19 5306 9 5307 18 5309 12 5308 19 5307 18 5310 13 5308 19 5309 12 5311 14 5310 13 5309 12 5312 15 5310 13 5311 14 5315 2 5314 1 5313 0 5316 3 5314 1 5315 2 5317 4 5316 3 5315 2 5318 5 5316 3 5317 4 5319 6 5318 5 5317 4 5320 7 5318 5 5319 6 5321 8 5320 7 5319 6 5322 9 5320 7 5321 8 5323 18 5322 9 5321 8 5324 19 5322 9 5323 18 5325 12 5324 19 5323 18 5326 13 5324 19 5325 12 5327 14 5326 13 5325 12 5328 15 5326 13 5327 14 5331 2 5330 1 5329 0 5332 3 5330 1 5331 2 5333 4 5332 3 5331 2 5334 5 5332 3 5333 4 5335 6 5334 5 5333 4 5336 7 5334 5 5335 6 5337 8 5336 7 5335 6 5338 9 5336 7 5337 8 5339 18 5338 9 5337 8 5340 19 5338 9 5339 18 5341 12 5340 19 5339 18 5342 13 5340 19 5341 12 5343 14 5342 13 5341 12 5344 15 5342 13 5343 14 5315 2 5314 1 5345 0 5346 3 5314 1 5315 2 5347 4 5346 3 5315 2 5348 5 5346 3 5347 4 5349 6 5348 5 5347 4 5350 7 5348 5 5349 6 5351 8 5350 7 5349 6 5352 9 5350 7 5351 8 5353 18 5352 9 5351 8 5354 19 5352 9 5353 18 5355 12 5354 19 5353 18 5356 13 5354 19 5355 12 5357 14 5356 13 5355 12 5358 15 5356 13 5357 14 5360 2 5330 1 5359 0 5361 3 5330 1 5360 2 5362 4 5361 3 5360 2 5363 5 5361 3 5362 4 5364 6 5363 5 5362 4 5365 7 5363 5 5364 6 5366 8 5365 7 5364 6 5367 9 5365 7 5366 8 5368 18 5367 9 5366 8 5369 19 5367 9 5368 18 5370 12 5369 19 5368 18 5371 13 5369 19 5370 12 5372 14 5371 13 5370 12 5373 15 5371 13 5372 14 5375 2 5374 1 5329 0 5376 3 5374 1 5375 2 5377 4 5376 3 5375 2 5378 5 5376 3 5377 4 5379 6 5378 5 5377 4 5380 7 5378 5 5379 6 5381 8 5380 7 5379 6 5382 9 5380 7 5381 8 5383 18 5382 9 5381 8 5384 19 5382 9 5383 18 5385 12 5384 19 5383 18 5386 13 5384 19 5385 12 5387 14 5386 13 5385 12 5388 15 5386 13 5387 14 5391 2 5390 1 5389 0 5391 3 5390 1 5391 2 5392 4 5391 3 5391 2 5393 5 5391 3 5392 4 5394 6 5393 5 5392 4 5395 7 5393 5 5394 6 5396 8 5395 7 5394 6 5397 9 5395 7 5396 8 5398 18 5397 9 5396 8 5399 19 5397 9 5398 18 5400 12 5399 19 5398 18 5401 13 5399 19 5400 12 5402 14 5401 13 5400 12 5402 15 5401 13 5402 14 5391 2 5389 1 5390 0 5403 3 5389 1 5391 2 5404 4 5403 3 5391 2 5405 5 5403 3 5404 4 5406 6 5405 5 5404 4 5407 7 5405 5 5406 6 5408 8 5407 7 5406 6 5409 9 5407 7 5408 8 5410 18 5409 9 5408 8 5411 19 5409 9 5410 18 5412 12 5411 19 5410 18 5413 13 5411 19 5412 12 5414 14 5413 13 5412 12 5415 15 5413 13 5414 14 5391 2 5417 1 5416 0 5418 3 5417 1 5391 2 5419 4 5418 3 5391 2 5420 5 5418 3 5419 4 5421 6 5420 5 5419 4 5422 7 5420 5 5421 6 5423 8 5422 7 5421 6 5424 9 5422 7 5423 8 5425 18 5424 9 5423 8 5426 19 5424 9 5425 18 5427 12 5426 19 5425 18 5428 13 5426 19 5427 12 5429 14 5428 13 5427 12 5430 15 5428 13 5429 14 5432 2 5431 1 5390 0 5433 3 5431 1 5432 2 5434 4 5433 3 5432 2 5435 5 5433 3 5434 4 5436 6 5435 5 5434 4 5437 7 5435 5 5436 6 5438 8 5437 7 5436 6 5439 9 5437 7 5438 8 5440 18 5439 9 5438 8 5441 19 5439 9 5440 18 5442 12 5441 19 5440 18 5443 13 5441 19 5442 12 5444 14 5443 13 5442 12 5445 15 5443 13 5444 14 5446 2 5389 1 5431 0 5447 3 5389 1 5446 2 5448 4 5447 3 5446 2 5449 5 5447 3 5448 4 5450 6 5449 5 5448 4 5451 7 5449 5 5450 6 5452 8 5451 7 5450 6 5453 9 5451 7 5452 8 5454 18 5453 9 5452 8 5455 19 5453 9 5454 18 5456 12 5455 19 5454 18 5457 13 5455 19 5456 12 5458 14 5457 13 5456 12 5459 15 5457 13 5458 14 5460 2 5417 1 5390 0 5461 3 5417 1 5460 2 5462 4 5461 3 5460 2 5463 5 5461 3 5462 4 5464 6 5463 5 5462 4 5465 7 5463 5 5464 6 5466 8 5465 7 5464 6 5467 9 5465 7 5466 8 5468 18 5467 9 5466 8 5469 19 5467 9 5468 18 5470 12 5469 19 5468 18 5471 13 5469 19 5470 12 5472 14 5471 13 5470 12 5473 15 5471 13 5472 14 5476 2 5475 1 5474 0 5477 3 5475 1 5476 2 5478 4 5477 3 5476 2 5479 5 5477 3 5478 4 5480 6 5479 5 5478 4 5481 7 5479 5 5480 6 5482 8 5481 7 5480 6 5483 9 5481 7 5482 8 5484 18 5483 9 5482 8 5485 19 5483 9 5484 18 5486 12 5485 19 5484 18 5487 13 5485 19 5486 12 5488 14 5487 13 5486 12 5489 15 5487 13 5488 14 5476 2 5474 1 5475 0 5490 3 5474 1 5476 2 5491 4 5490 3 5476 2 5492 5 5490 3 5491 4 5493 6 5492 5 5491 4 5494 7 5492 5 5493 6 5495 8 5494 7 5493 6 5496 9 5494 7 5495 8 5497 18 5496 9 5495 8 5498 19 5496 9 5497 18 5499 12 5498 19 5497 18 5499 13 5498 19 5499 12 5500 14 5499 13 5499 12 5501 15 5499 13 5500 14 5502 2 5475 1 5474 0 5503 3 5475 1 5502 2 5504 4 5503 3 5502 2 5505 5 5503 3 5504 4 5506 6 5505 5 5504 4 5507 7 5505 5 5506 6 5508 8 5507 7 5506 6 5508 9 5507 7 5508 8 5509 18 5508 9 5508 8 5510 19 5508 9 5509 18 5511 12 5510 19 5509 18 5512 13 5510 19 5511 12 5513 14 5512 13 5511 12 5514 15 5512 13 5513 14 5516 2 5474 1 5515 0 5517 3 5474 1 5516 2 5518 4 5517 3 5516 2 5519 5 5517 3 5518 4 5520 6 5519 5 5518 4 5521 7 5519 5 5520 6 5522 8 5521 7 5520 6 5523 9 5521 7 5522 8 5524 18 5523 9 5522 8 5525 19 5523 9 5524 18 5526 12 5525 19 5524 18 5527 13 5525 19 5526 12 5528 14 5527 13 5526 12 5529 15 5527 13 5528 14 5532 2 5531 1 5530 0 5533 3 5531 1 5532 2 5534 4 5533 3 5532 2 5535 5 5533 3 5534 4 5536 6 5535 5 5534 4 5537 7 5535 5 5536 6 5538 8 5537 7 5536 6 5539 9 5537 7 5538 8 5540 18 5539 9 5538 8 5541 19 5539 9 5540 18 5542 12 5541 19 5540 18 5543 13 5541 19 5542 12 5544 14 5543 13 5542 12 5545 15 5543 13 5544 14 5548 2 5547 1 5546 0 5549 3 5547 1 5548 2 5550 4 5549 3 5548 2 5551 5 5549 3 5550 4 5552 6 5551 5 5550 4 5553 7 5551 5 5552 6 5554 8 5553 7 5552 6 5555 9 5553 7 5554 8 5556 18 5555 9 5554 8 5557 19 5555 9 5556 18 5558 12 5557 19 5556 18 5559 13 5557 19 5558 12 5560 14 5559 13 5558 12 5561 15 5559 13 5560 14 5564 2 5563 1 5562 0 5565 3 5563 1 5564 2 5566 4 5565 3 5564 2 5567 5 5565 3 5566 4 5568 6 5567 5 5566 4 5569 7 5567 5 5568 6 5570 8 5569 7 5568 6 5571 9 5569 7 5570 8 5572 18 5571 9 5570 8 5573 19 5571 9 5572 18 5574 12 5573 19 5572 18 5574 13 5573 19 5574 12 5575 14 5574 13 5574 12 5576 15 5574 13 5575 14 5549 2 5578 1 5577 0 5579 3 5578 1 5549 2 5580 4 5579 3 5549 2 5581 5 5579 3 5580 4 5582 6 5581 5 5580 4 5583 7 5581 5 5582 6 5584 8 5583 7 5582 6 5585 9 5583 7 5584 8 5586 18 5585 9 5584 8 5587 19 5585 9 5586 18 5588 12 5587 19 5586 18 5589 13 5587 19 5588 12 5590 14 5589 13 5588 12 5591 15 5589 13 5590 14 5593 2 5592 1 5546 0 5594 3 5592 1 5593 2 5595 4 5594 3 5593 2 5596 5 5594 3 5595 4 5597 6 5596 5 5595 4 5598 7 5596 5 5597 6 5599 8 5598 7 5597 6 5600 9 5598 7 5599 8 5601 18 5600 9 5599 8 5602 19 5600 9 5601 18 5603 12 5602 19 5601 18 5604 13 5602 19 5603 12 5605 14 5604 13 5603 12 5606 15 5604 13 5605 14 5609 2 5608 1 5607 0 5610 3 5608 1 5609 2 5611 4 5610 3 5609 2 5612 5 5610 3 5611 4 5613 6 5612 5 5611 4 5614 7 5612 5 5613 6 5615 8 5614 7 5613 6 5616 9 5614 7 5615 8 5617 18 5616 9 5615 8 5618 19 5616 9 5617 18 5619 12 5618 19 5617 18 5620 13 5618 19 5619 12 5621 14 5620 13 5619 12 5622 15 5620 13 5621 14 5593 2 5623 1 5546 0 5624 3 5623 1 5593 2 5625 4 5624 3 5593 2 5626 5 5624 3 5625 4 5627 6 5626 5 5625 4 5628 7 5626 5 5627 6 5629 8 5628 7 5627 6 5630 9 5628 7 5629 8 5631 18 5630 9 5629 8 5632 19 5630 9 5631 18 5633 12 5632 19 5631 18 5634 13 5632 19 5633 12 5635 14 5634 13 5633 12 5636 15 5634 13 5635 14 5638 2 5637 1 5637 0 5639 3 5637 1 5638 2 5640 4 5639 3 5638 2 5641 5 5639 3 5640 4 5642 6 5641 5 5640 4 5643 7 5641 5 5642 6 5644 8 5643 7 5642 6 5645 9 5643 7 5644 8 5646 18 5645 9 5644 8 5647 19 5645 9 5646 18 5648 12 5647 19 5646 18 5649 13 5647 19 5648 12 5650 14 5649 13 5648 12 5651 15 5649 13 5650 14 5638 2 5653 1 5652 0 5654 3 5653 1 5638 2 5655 4 5654 3 5638 2 5656 5 5654 3 5655 4 5657 6 5656 5 5655 4 5658 7 5656 5 5657 6 5659 8 5658 7 5657 6 5660 9 5658 7 5659 8 5661 18 5660 9 5659 8 5662 19 5660 9 5661 18 5663 12 5662 19 5661 18 5664 13 5662 19 5663 12 5665 14 5664 13 5663 12 5665 15 5664 13 5665 14 5638 2 5667 1 5666 0 5668 3 5667 1 5638 2 5669 4 5668 3 5638 2 5670 5 5668 3 5669 4 5671 6 5670 5 5669 4 5672 7 5670 5 5671 6 5673 8 5672 7 5671 6 5674 9 5672 7 5673 8 5675 18 5674 9 5673 8 5676 19 5674 9 5675 18 5677 12 5676 19 5675 18 5678 13 5676 19 5677 12 5679 14 5678 13 5677 12 5680 15 5678 13 5679 14 5683 2 5682 1 5681 0 5684 3 5682 1 5683 2 5685 4 5684 3 5683 2 5686 5 5684 3 5685 4 5687 6 5686 5 5685 4 5688 7 5686 5 5687 6 5689 8 5688 7 5687 6 5690 9 5688 7 5689 8 5691 18 5690 9 5689 8 5692 19 5690 9 5691 18 5693 12 5692 19 5691 18 5694 13 5692 19 5693 12 5695 14 5694 13 5693 12 5696 15 5694 13 5695 14 5698 2 5697 1 5637 0 5699 3 5697 1 5698 2 5700 4 5699 3 5698 2 5701 5 5699 3 5700 4 5702 6 5701 5 5700 4 5703 7 5701 5 5702 6 5704 8 5703 7 5702 6 5705 9 5703 7 5704 8 5706 18 5705 9 5704 8 5707 19 5705 9 5706 18 5708 12 5707 19 5706 18 5709 13 5707 19 5708 12 5710 14 5709 13 5708 12 5711 15 5709 13 5710 14 5714 2 5713 1 5712 0 5715 3 5713 1 5714 2 5716 4 5715 3 5714 2 5717 5 5715 3 5716 4 5718 6 5717 5 5716 4 5719 7 5717 5 5718 6 5720 8 5719 7 5718 6 5721 9 5719 7 5720 8 5722 18 5721 9 5720 8 5723 19 5721 9 5722 18 5724 12 5723 19 5722 18 5725 13 5723 19 5724 12 5726 14 5725 13 5724 12 5727 15 5725 13 5726 14 5714 2 5729 1 5728 0 5730 3 5729 1 5714 2 5731 4 5730 3 5714 2 5732 5 5730 3 5731 4 5733 6 5732 5 5731 4 5734 7 5732 5 5733 6 5735 8 5734 7 5733 6 5736 9 5734 7 5735 8 5737 18 5736 9 5735 8 5737 19 5736 9 5737 18 5738 12 5737 19 5737 18 5738 13 5737 19 5738 12 5739 14 5738 13 5738 12 5740 15 5738 13 5739 14 5715 2 5742 1 5741 0 5743 3 5742 1 5715 2 5744 4 5743 3 5715 2 5745 5 5743 3 5744 4 5746 6 5745 5 5744 4 5747 7 5745 5 5746 6 5748 8 5747 7 5746 6 5749 9 5747 7 5748 8 5750 18 5749 9 5748 8 5750 19 5749 9 5750 18 5751 12 5750 19 5750 18 5752 13 5750 19 5751 12 5753 14 5752 13 5751 12 5754 15 5752 13 5753 14 5756 2 5755 1 5712 0 5757 3 5755 1 5756 2 5758 4 5757 3 5756 2 5759 5 5757 3 5758 4 5760 6 5759 5 5758 4 5761 7 5759 5 5760 6 5762 8 5761 7 5760 6 5763 9 5761 7 5762 8 5764 18 5763 9 5762 8 5765 19 5763 9 5764 18 5766 12 5765 19 5764 18 5767 13 5765 19 5766 12 5768 14 5767 13 5766 12 5769 15 5767 13 5768 14 5771 2 5713 1 5770 0 5772 3 5713 1 5771 2 5773 4 5772 3 5771 2 5774 5 5772 3 5773 4 5775 6 5774 5 5773 4 5776 7 5774 5 5775 6 5777 8 5776 7 5775 6 5778 9 5776 7 5777 8 5779 18 5778 9 5777 8 5780 19 5778 9 5779 18 5781 12 5780 19 5779 18 5782 13 5780 19 5781 12 5783 14 5782 13 5781 12 5784 15 5782 13 5783 14 5756 2 5770 1 5712 0 5785 3 5770 1 5756 2 5786 4 5785 3 5756 2 5787 5 5785 3 5786 4 5788 6 5787 5 5786 4 5789 7 5787 5 5788 6 5790 8 5789 7 5788 6 5791 9 5789 7 5790 8 5792 18 5791 9 5790 8 5793 19 5791 9 5792 18 5794 12 5793 19 5792 18 5795 13 5793 19 5794 12 5796 14 5795 13 5794 12 5797 15 5795 13 5796 14 5800 2 5799 1 5798 0 5801 3 5799 1 5800 2 5802 4 5801 3 5800 2 5803 5 5801 3 5802 4 5804 6 5803 5 5802 4 5805 7 5803 5 5804 6 5806 8 5805 7 5804 6 5807 9 5805 7 5806 8 5808 18 5807 9 5806 8 5809 19 5807 9 5808 18 5810 12 5809 19 5808 18 5811 13 5809 19 5810 12 5812 14 5811 13 5810 12 5813 15 5811 13 5812 14 5815 2 5814 1 5799 0 5816 3 5814 1 5815 2 5817 4 5816 3 5815 2 5818 5 5816 3 5817 4 5819 6 5818 5 5817 4 5820 7 5818 5 5819 6 5821 8 5820 7 5819 6 5822 9 5820 7 5821 8 5823 18 5822 9 5821 8 5824 19 5822 9 5823 18 5825 12 5824 19 5823 18 5826 13 5824 19 5825 12 5827 14 5826 13 5825 12 5828 15 5826 13 5827 14 5800 2 5829 1 5798 0 5830 3 5829 1 5800 2 5831 4 5830 3 5800 2 5832 5 5830 3 5831 4 5833 6 5832 5 5831 4 5834 7 5832 5 5833 6 5835 8 5834 7 5833 6 5836 9 5834 7 5835 8 5837 18 5836 9 5835 8 5838 19 5836 9 5837 18 5839 12 5838 19 5837 18 5840 13 5838 19 5839 12 5841 14 5840 13 5839 12 5841 15 5840 13 5841 14 5843 2 5798 1 5842 0 5844 3 5798 1 5843 2 5845 4 5844 3 5843 2 5846 5 5844 3 5845 4 5847 6 5846 5 5845 4 5848 7 5846 5 5847 6 5849 8 5848 7 5847 6 5850 9 5848 7 5849 8 5851 18 5850 9 5849 8 5852 19 5850 9 5851 18 5853 12 5852 19 5851 18 5854 13 5852 19 5853 12 5855 14 5854 13 5853 12 5856 15 5854 13 5855 14 5858 2 5857 1 5799 0 5859 3 5857 1 5858 2 5860 4 5859 3 5858 2 5861 5 5859 3 5860 4 5862 6 5861 5 5860 4 5863 7 5861 5 5862 6 5864 8 5863 7 5862 6 5865 9 5863 7 5864 8 5866 18 5865 9 5864 8 5867 19 5865 9 5866 18 5868 12 5867 19 5866 18 5869 13 5867 19 5868 12 5870 14 5869 13 5868 12 5871 15 5869 13 5870 14 5874 2 5873 1 5872 0 5875 3 5873 1 5874 2 5876 4 5875 3 5874 2 5877 5 5875 3 5876 4 5878 6 5877 5 5876 4 5879 7 5877 5 5878 6 5880 8 5879 7 5878 6 5881 9 5879 7 5880 8 5882 18 5881 9 5880 8 5883 19 5881 9 5882 18 5884 12 5883 19 5882 18 5885 13 5883 19 5884 12 5886 14 5885 13 5884 12 5887 15 5885 13 5886 14 5874 2 5889 1 5888 0 5890 3 5889 1 5874 2 5891 4 5890 3 5874 2 5892 5 5890 3 5891 4 5893 6 5892 5 5891 4 5894 7 5892 5 5893 6 5895 8 5894 7 5893 6 5896 9 5894 7 5895 8 5897 18 5896 9 5895 8 5898 19 5896 9 5897 18 5899 12 5898 19 5897 18 5900 13 5898 19 5899 12 5901 14 5900 13 5899 12 5902 15 5900 13 5901 14 5905 2 5904 1 5903 0 5906 3 5904 1 5905 2 5907 4 5906 3 5905 2 5907 5 5906 3 5907 4 5908 6 5907 5 5907 4 5908 7 5907 5 5908 6 5909 8 5908 7 5908 6 5910 9 5908 7 5909 8 5911 18 5910 9 5909 8 5912 19 5910 9 5911 18 5913 12 5912 19 5911 18 5914 13 5912 19 5913 12 5915 14 5914 13 5913 12 5916 15 5914 13 5915 14 5918 2 5917 1 5872 0 5919 3 5917 1 5918 2 5920 4 5919 3 5918 2 5921 5 5919 3 5920 4 5922 6 5921 5 5920 4 5923 7 5921 5 5922 6 5924 8 5923 7 5922 6 5925 9 5923 7 5924 8 5926 18 5925 9 5924 8 5927 19 5925 9 5926 18 5928 12 5927 19 5926 18 5929 13 5927 19 5928 12 5930 14 5929 13 5928 12 5931 15 5929 13 5930 14 5933 2 5873 1 5932 0 5934 3 5873 1 5933 2 5935 4 5934 3 5933 2 5936 5 5934 3 5935 4 5937 6 5936 5 5935 4 5938 7 5936 5 5937 6 5939 8 5938 7 5937 6 5940 9 5938 7 5939 8 5941 18 5940 9 5939 8 5942 19 5940 9 5941 18 5943 12 5942 19 5941 18 5944 13 5942 19 5943 12 5945 14 5944 13 5943 12 5946 15 5944 13 5945 14 5948 2 5947 1 5872 0 5949 3 5947 1 5948 2 5950 4 5949 3 5948 2 5951 5 5949 3 5950 4 5952 6 5951 5 5950 4 5953 7 5951 5 5952 6 5954 8 5953 7 5952 6 5955 9 5953 7 5954 8 5956 18 5955 9 5954 8 5957 19 5955 9 5956 18 5958 12 5957 19 5956 18 5959 13 5957 19 5958 12 5960 14 5959 13 5958 12 5961 15 5959 13 5960 14 5964 2 5963 1 5962 0 5965 3 5963 1 5964 2 5966 4 5965 3 5964 2 5967 5 5965 3 5966 4 5968 6 5967 5 5966 4 5969 7 5967 5 5968 6 5970 8 5969 7 5968 6 5971 9 5969 7 5970 8 5972 18 5971 9 5970 8 5973 19 5971 9 5972 18 5974 12 5973 19 5972 18 5975 13 5973 19 5974 12 5976 14 5975 13 5974 12 5977 15 5975 13 5976 14 5964 2 5979 1 5978 0 5980 3 5979 1 5964 2 5981 4 5980 3 5964 2 5982 5 5980 3 5981 4 5983 6 5982 5 5981 4 5984 7 5982 5 5983 6 5985 8 5984 7 5983 6 5986 9 5984 7 5985 8 5987 18 5986 9 5985 8 5988 19 5986 9 5987 18 5989 12 5988 19 5987 18 5990 13 5988 19 5989 12 5991 14 5990 13 5989 12 5992 15 5990 13 5991 14 5993 2 5963 1 5962 0 5994 3 5963 1 5993 2 5995 4 5994 3 5993 2 5996 5 5994 3 5995 4 5997 6 5996 5 5995 4 5998 7 5996 5 5997 6 5999 8 5998 7 5997 6 6000 9 5998 7 5999 8 6001 18 6000 9 5999 8 6002 19 6000 9 6001 18 6003 12 6002 19 6001 18 6004 13 6002 19 6003 12 6005 14 6004 13 6003 12 6006 15 6004 13 6005 14 6008 2 5979 1 6007 0 6009 3 5979 1 6008 2 6010 4 6009 3 6008 2 6011 5 6009 3 6010 4 6012 6 6011 5 6010 4 6013 7 6011 5 6012 6 6014 8 6013 7 6012 6 6015 9 6013 7 6014 8 6016 18 6015 9 6014 8 6017 19 6015 9 6016 18 6018 12 6017 19 6016 18 6019 13 6017 19 6018 12 6020 14 6019 13 6018 12 6021 15 6019 13 6020 14 6023 2 6022 1 5962 0 6024 3 6022 1 6023 2 6025 4 6024 3 6023 2 6026 5 6024 3 6025 4 6027 6 6026 5 6025 4 6028 7 6026 5 6027 6 6029 8 6028 7 6027 6 6030 9 6028 7 6029 8 6031 18 6030 9 6029 8 6032 19 6030 9 6031 18 6033 12 6032 19 6031 18 6034 13 6032 19 6033 12 6035 14 6034 13 6033 12 6036 15 6034 13 6035 14 6039 2 6038 1 6037 0 6039 3 6038 1 6039 2 6040 4 6039 3 6039 2 6041 5 6039 3 6040 4 6042 6 6041 5 6040 4 6043 7 6041 5 6042 6 6044 8 6043 7 6042 6 6045 9 6043 7 6044 8 6046 18 6045 9 6044 8 6047 19 6045 9 6046 18 6048 12 6047 19 6046 18 6049 13 6047 19 6048 12 6050 14 6049 13 6048 12 6050 15 6049 13 6050 14 6053 2 6052 1 6051 0 6054 3 6052 1 6053 2 6055 4 6054 3 6053 2 6056 5 6054 3 6055 4 6057 6 6056 5 6055 4 6058 7 6056 5 6057 6 6059 8 6058 7 6057 6 6060 9 6058 7 6059 8 6061 18 6060 9 6059 8 6062 19 6060 9 6061 18 6063 12 6062 19 6061 18 6064 13 6062 19 6063 12 6065 14 6064 13 6063 12 6066 15 6064 13 6065 14 6039 2 6038 1 6067 0 6068 3 6038 1 6039 2 6069 4 6068 3 6039 2 6070 5 6068 3 6069 4 6071 6 6070 5 6069 4 6072 7 6070 5 6071 6 6073 8 6072 7 6071 6 6074 9 6072 7 6073 8 6075 18 6074 9 6073 8 6076 19 6074 9 6075 18 6077 12 6076 19 6075 18 6078 13 6076 19 6077 12 6079 14 6078 13 6077 12 6080 15 6078 13 6079 14 6081 2 6051 1 6037 0 6082 3 6051 1 6081 2 6083 4 6082 3 6081 2 6084 5 6082 3 6083 4 6085 6 6084 5 6083 4 6086 7 6084 5 6085 6 6087 8 6086 7 6085 6 6088 9 6086 7 6087 8 6089 18 6088 9 6087 8 6090 19 6088 9 6089 18 6091 12 6090 19 6089 18 6092 13 6090 19 6091 12 6093 14 6092 13 6091 12 6094 15 6092 13 6093 14 6096 2 6067 1 6095 0 6097 3 6067 1 6096 2 6098 4 6097 3 6096 2 6099 5 6097 3 6098 4 6100 6 6099 5 6098 4 6101 7 6099 5 6100 6 6102 8 6101 7 6100 6 6103 9 6101 7 6102 8 6104 18 6103 9 6102 8 6105 19 6103 9 6104 18 6106 12 6105 19 6104 18 6107 13 6105 19 6106 12 6108 14 6107 13 6106 12 6109 15 6107 13 6108 14 6096 2 6111 1 6110 0 6112 3 6111 1 6096 2 6113 4 6112 3 6096 2 6114 5 6112 3 6113 4 6115 6 6114 5 6113 4 6116 7 6114 5 6115 6 6117 8 6116 7 6115 6 6118 9 6116 7 6117 8 6119 18 6118 9 6117 8 6120 19 6118 9 6119 18 6121 12 6120 19 6119 18 6122 13 6120 19 6121 12 6123 14 6122 13 6121 12 6124 15 6122 13 6123 14 6126 2 6125 1 6125 0 6127 3 6125 1 6126 2 6128 4 6127 3 6126 2 6129 5 6127 3 6128 4 6130 6 6129 5 6128 4 6131 7 6129 5 6130 6 6132 8 6131 7 6130 6 6133 9 6131 7 6132 8 6134 18 6133 9 6132 8 6135 19 6133 9 6134 18 6136 12 6135 19 6134 18 6137 13 6135 19 6136 12 6138 14 6137 13 6136 12 6139 15 6137 13 6138 14 6142 2 6141 1 6140 0 6143 3 6141 1 6142 2 6144 4 6143 3 6142 2 6145 5 6143 3 6144 4 6146 6 6145 5 6144 4 6147 7 6145 5 6146 6 6148 8 6147 7 6146 6 6149 9 6147 7 6148 8 6150 18 6149 9 6148 8 6151 19 6149 9 6150 18 6152 12 6151 19 6150 18 6153 13 6151 19 6152 12 6154 14 6153 13 6152 12 6155 15 6153 13 6154 14 6126 2 6140 1 6141 0 6156 3 6140 1 6126 2 6157 4 6156 3 6126 2 6158 5 6156 3 6157 4 6159 6 6158 5 6157 4 6160 7 6158 5 6159 6 6161 8 6160 7 6159 6 6162 9 6160 7 6161 8 6163 18 6162 9 6161 8 6164 19 6162 9 6163 18 6165 12 6164 19 6163 18 6166 13 6164 19 6165 12 6167 14 6166 13 6165 12 6168 15 6166 13 6167 14 6171 2 6170 1 6169 0 6172 3 6170 1 6171 2 6173 4 6172 3 6171 2 6174 5 6172 3 6173 4 6175 6 6174 5 6173 4 6176 7 6174 5 6175 6 6177 8 6176 7 6175 6 6178 9 6176 7 6177 8 6179 18 6178 9 6177 8 6180 19 6178 9 6179 18 6181 12 6180 19 6179 18 6182 13 6180 19 6181 12 6183 14 6182 13 6181 12 6184 15 6182 13 6183 14 6187 2 6186 1 6185 0 6188 3 6186 1 6187 2 6189 4 6188 3 6187 2 6190 5 6188 3 6189 4 6191 6 6190 5 6189 4 6192 7 6190 5 6191 6 6193 8 6192 7 6191 6 6194 9 6192 7 6193 8 6195 18 6194 9 6193 8 6196 19 6194 9 6195 18 6197 12 6196 19 6195 18 6198 13 6196 19 6197 12 6199 14 6198 13 6197 12 6200 15 6198 13 6199 14 6203 2 6202 1 6201 0 6203 3 6202 1 6203 2 6204 4 6203 3 6203 2 6205 5 6203 3 6204 4 6206 6 6205 5 6204 4 6207 7 6205 5 6206 6 6208 8 6207 7 6206 6 6209 9 6207 7 6208 8 6210 18 6209 9 6208 8 6211 19 6209 9 6210 18 6212 12 6211 19 6210 18 6213 13 6211 19 6212 12 6214 14 6213 13 6212 12 6215 15 6213 13 6214 14 6203 2 6217 1 6216 0 6218 3 6217 1 6203 2 6219 4 6218 3 6203 2 6220 5 6218 3 6219 4 6221 6 6220 5 6219 4 6222 7 6220 5 6221 6 6223 8 6222 7 6221 6 6224 9 6222 7 6223 8 6225 18 6224 9 6223 8 6226 19 6224 9 6225 18 6227 12 6226 19 6225 18 6228 13 6226 19 6227 12 6229 14 6228 13 6227 12 6230 15 6228 13 6229 14 6232 2 6231 1 6217 0 6233 3 6231 1 6232 2 6234 4 6233 3 6232 2 6235 5 6233 3 6234 4 6236 6 6235 5 6234 4 6237 7 6235 5 6236 6 6238 8 6237 7 6236 6 6239 9 6237 7 6238 8 6240 18 6239 9 6238 8 6240 19 6239 9 6240 18 6241 12 6240 19 6240 18 6242 13 6240 19 6241 12 6243 14 6242 13 6241 12 6244 15 6242 13 6243 14 6246 2 6216 1 6245 0 6247 3 6216 1 6246 2 6248 4 6247 3 6246 2 6249 5 6247 3 6248 4 6250 6 6249 5 6248 4 6251 7 6249 5 6250 6 6252 8 6251 7 6250 6 6253 9 6251 7 6252 8 6254 18 6253 9 6252 8 6255 19 6253 9 6254 18 6256 12 6255 19 6254 18 6257 13 6255 19 6256 12 6258 14 6257 13 6256 12 6259 15 6257 13 6258 14 6261 2 6217 1 6260 0 6262 3 6217 1 6261 2 6263 4 6262 3 6261 2 6264 5 6262 3 6263 4 6265 6 6264 5 6263 4 6266 7 6264 5 6265 6 6267 8 6266 7 6265 6 6268 9 6266 7 6267 8 6269 18 6268 9 6267 8 6270 19 6268 9 6269 18 6271 12 6270 19 6269 18 6272 13 6270 19 6271 12 6273 14 6272 13 6271 12 6274 15 6272 13 6273 14 6246 2 6276 1 6275 0 6277 3 6276 1 6246 2 6278 4 6277 3 6246 2 6279 5 6277 3 6278 4 6280 6 6279 5 6278 4 6281 7 6279 5 6280 6 6282 8 6281 7 6280 6 6283 9 6281 7 6282 8 6284 18 6283 9 6282 8 6285 19 6283 9 6284 18 6286 12 6285 19 6284 18 6287 13 6285 19 6286 12 6288 14 6287 13 6286 12 6289 15 6287 13 6288 14 6292 2 6291 1 6290 0 6293 3 6291 1 6292 2 6294 4 6293 3 6292 2 6295 5 6293 3 6294 4 6296 6 6295 5 6294 4 6297 7 6295 5 6296 6 6298 8 6297 7 6296 6 6299 9 6297 7 6298 8 6300 18 6299 9 6298 8 6301 19 6299 9 6300 18 6302 12 6301 19 6300 18 6303 13 6301 19 6302 12 6304 14 6303 13 6302 12 6305 15 6303 13 6304 14 6308 2 6307 1 6306 0 6309 3 6307 1 6308 2 6310 4 6309 3 6308 2 6311 5 6309 3 6310 4 6312 6 6311 5 6310 4 6313 7 6311 5 6312 6 6314 8 6313 7 6312 6 6315 9 6313 7 6314 8 6316 18 6315 9 6314 8 6317 19 6315 9 6316 18 6318 12 6317 19 6316 18 6319 13 6317 19 6318 12 6320 14 6319 13 6318 12 6321 15 6319 13 6320 14 6324 2 6323 1 6322 0 6325 3 6323 1 6324 2 6326 4 6325 3 6324 2 6327 5 6325 3 6326 4 6328 6 6327 5 6326 4 6329 7 6327 5 6328 6 6330 8 6329 7 6328 6 6331 9 6329 7 6330 8 6332 18 6331 9 6330 8 6333 19 6331 9 6332 18 6334 12 6333 19 6332 18 6335 13 6333 19 6334 12 6336 14 6335 13 6334 12 6336 15 6335 13 6336 14 6338 2 6291 1 6337 0 6339 3 6291 1 6338 2 6340 4 6339 3 6338 2 6341 5 6339 3 6340 4 6342 6 6341 5 6340 4 6343 7 6341 5 6342 6 6344 8 6343 7 6342 6 6345 9 6343 7 6344 8 6346 18 6345 9 6344 8 6347 19 6345 9 6346 18 6348 12 6347 19 6346 18 6349 13 6347 19 6348 12 6350 14 6349 13 6348 12 6351 15 6349 13 6350 14 6353 2 6352 1 6290 0 6354 3 6352 1 6353 2 6355 4 6354 3 6353 2 6356 5 6354 3 6355 4 6357 6 6356 5 6355 4 6358 7 6356 5 6357 6 6359 8 6358 7 6357 6 6360 9 6358 7 6359 8 6361 18 6360 9 6359 8 6362 19 6360 9 6361 18 6363 12 6362 19 6361 18 6364 13 6362 19 6363 12 6365 14 6364 13 6363 12 6366 15 6364 13 6365 14 6369 2 6368 1 6367 0 6370 3 6368 1 6369 2 6371 4 6370 3 6369 2 6371 5 6370 3 6371 4 6372 6 6371 5 6371 4 6373 7 6371 5 6372 6 6374 8 6373 7 6372 6 6375 9 6373 7 6374 8 6376 18 6375 9 6374 8 6377 19 6375 9 6376 18 6378 12 6377 19 6376 18 6379 13 6377 19 6378 12 6380 14 6379 13 6378 12 6381 15 6379 13 6380 14 6384 2 6383 1 6382 0 6385 3 6383 1 6384 2 6386 4 6385 3 6384 2 6387 5 6385 3 6386 4 6388 6 6387 5 6386 4 6389 7 6387 5 6388 6 6390 8 6389 7 6388 6 6391 9 6389 7 6390 8 6392 18 6391 9 6390 8 6393 19 6391 9 6392 18 6394 12 6393 19 6392 18 6395 13 6393 19 6394 12 6396 14 6395 13 6394 12 6397 15 6395 13 6396 14 6369 2 6399 1 6398 0 6400 3 6399 1 6369 2 6401 4 6400 3 6369 2 6401 5 6400 3 6401 4 6402 6 6401 5 6401 4 6403 7 6401 5 6402 6 6404 8 6403 7 6402 6 6405 9 6403 7 6404 8 6406 18 6405 9 6404 8 6407 19 6405 9 6406 18 6408 12 6407 19 6406 18 6409 13 6407 19 6408 12 6410 14 6409 13 6408 12 6411 15 6409 13 6410 14 6412 2 6382 1 6367 0 6413 3 6382 1 6412 2 6414 4 6413 3 6412 2 6415 5 6413 3 6414 4 6416 6 6415 5 6414 4 6417 7 6415 5 6416 6 6418 8 6417 7 6416 6 6419 9 6417 7 6418 8 6420 18 6419 9 6418 8 6421 19 6419 9 6420 18 6422 12 6421 19 6420 18 6423 13 6421 19 6422 12 6424 14 6423 13 6422 12 6425 15 6423 13 6424 14 6427 2 6383 1 6426 0 6428 3 6383 1 6427 2 6429 4 6428 3 6427 2 6430 5 6428 3 6429 4 6431 6 6430 5 6429 4 6432 7 6430 5 6431 6 6433 8 6432 7 6431 6 6434 9 6432 7 6433 8 6435 18 6434 9 6433 8 6436 19 6434 9 6435 18 6437 12 6436 19 6435 18 6438 13 6436 19 6437 12 6439 14 6438 13 6437 12 6440 15 6438 13 6439 14 6412 2 6426 1 6441 0 6442 3 6426 1 6412 2 6443 4 6442 3 6412 2 6444 5 6442 3 6443 4 6445 6 6444 5 6443 4 6446 7 6444 5 6445 6 6447 8 6446 7 6445 6 6448 9 6446 7 6447 8 6449 18 6448 9 6447 8 6450 19 6448 9 6449 18 6451 12 6450 19 6449 18 6452 13 6450 19 6451 12 6453 14 6452 13 6451 12 6454 15 6452 13 6453 14 6456 2 6455 1 6455 0 6457 3 6455 1 6456 2 6458 4 6457 3 6456 2 6459 5 6457 3 6458 4 6460 6 6459 5 6458 4 6461 7 6459 5 6460 6 6462 8 6461 7 6460 6 6463 9 6461 7 6462 8 6464 18 6463 9 6462 8 6465 19 6463 9 6464 18 6466 12 6465 19 6464 18 6467 13 6465 19 6466 12 6468 14 6467 13 6466 12 6469 15 6467 13 6468 14 6456 2 6471 1 6470 0 6472 3 6471 1 6456 2 6473 4 6472 3 6456 2 6474 5 6472 3 6473 4 6475 6 6474 5 6473 4 6476 7 6474 5 6475 6 6477 8 6476 7 6475 6 6478 9 6476 7 6477 8 6479 18 6478 9 6477 8 6480 19 6478 9 6479 18 6481 12 6480 19 6479 18 6482 13 6480 19 6481 12 6483 14 6482 13 6481 12 6483 15 6482 13 6483 14 6456 2 6470 1 6455 0 6484 3 6470 1 6456 2 6485 4 6484 3 6456 2 6486 5 6484 3 6485 4 6487 6 6486 5 6485 4 6488 7 6486 5 6487 6 6489 8 6488 7 6487 6 6490 9 6488 7 6489 8 6491 18 6490 9 6489 8 6492 19 6490 9 6491 18 6493 12 6492 19 6491 18 6494 13 6492 19 6493 12 6495 14 6494 13 6493 12 6495 15 6494 13 6495 14 6497 2 6455 1 6496 0 6498 3 6455 1 6497 2 6499 4 6498 3 6497 2 6500 5 6498 3 6499 4 6501 6 6500 5 6499 4 6502 7 6500 5 6501 6 6503 8 6502 7 6501 6 6504 9 6502 7 6503 8 6505 18 6504 9 6503 8 6506 19 6504 9 6505 18 6507 12 6506 19 6505 18 6508 13 6506 19 6507 12 6509 14 6508 13 6507 12 6510 15 6508 13 6509 14 6512 2 6511 1 6455 0 6513 3 6511 1 6512 2 6514 4 6513 3 6512 2 6515 5 6513 3 6514 4 6516 6 6515 5 6514 4 6517 7 6515 5 6516 6 6518 8 6517 7 6516 6 6519 9 6517 7 6518 8 6520 18 6519 9 6518 8 6521 19 6519 9 6520 18 6522 12 6521 19 6520 18 6523 13 6521 19 6522 12 6524 14 6523 13 6522 12 6525 15 6523 13 6524 14 6527 2 6526 1 6526 0 6528 3 6526 1 6527 2 6529 4 6528 3 6527 2 6530 5 6528 3 6529 4 6531 6 6530 5 6529 4 6532 7 6530 5 6531 6 6533 8 6532 7 6531 6 6534 9 6532 7 6533 8 6535 18 6534 9 6533 8 6536 19 6534 9 6535 18 6537 12 6536 19 6535 18 6538 13 6536 19 6537 12 6539 14 6538 13 6537 12 6540 15 6538 13 6539 14 6543 2 6542 1 6541 0 6544 3 6542 1 6543 2 6545 4 6544 3 6543 2 6546 5 6544 3 6545 4 6547 6 6546 5 6545 4 6548 7 6546 5 6547 6 6549 8 6548 7 6547 6 6550 9 6548 7 6549 8 6551 18 6550 9 6549 8 6552 19 6550 9 6551 18 6553 12 6552 19 6551 18 6554 13 6552 19 6553 12 6555 14 6554 13 6553 12 6556 15 6554 13 6555 14 6527 2 6557 1 6542 0 6558 3 6557 1 6527 2 6559 4 6558 3 6527 2 6560 5 6558 3 6559 4 6561 6 6560 5 6559 4 6562 7 6560 5 6561 6 6563 8 6562 7 6561 6 6564 9 6562 7 6563 8 6565 18 6564 9 6563 8 6566 19 6564 9 6565 18 6567 12 6566 19 6565 18 6568 13 6566 19 6567 12 6569 14 6568 13 6567 12 6570 15 6568 13 6569 14 6573 2 6572 1 6571 0 6574 3 6572 1 6573 2 6575 4 6574 3 6573 2 6576 5 6574 3 6575 4 6577 6 6576 5 6575 4 6578 7 6576 5 6577 6 6579 8 6578 7 6577 6 6580 9 6578 7 6579 8 6581 18 6580 9 6579 8 6582 19 6580 9 6581 18 6583 12 6582 19 6581 18 6584 13 6582 19 6583 12 6585 14 6584 13 6583 12 6586 15 6584 13 6585 14 6573 2 6588 1 6587 0 6589 3 6588 1 6573 2 6590 4 6589 3 6573 2 6591 5 6589 3 6590 4 6592 6 6591 5 6590 4 6593 7 6591 5 6592 6 6594 8 6593 7 6592 6 6595 9 6593 7 6594 8 6596 18 6595 9 6594 8 6597 19 6595 9 6596 18 6598 12 6597 19 6596 18 6599 13 6597 19 6598 12 6600 14 6599 13 6598 12 6600 15 6599 13 6600 14 6574 2 6572 1 6571 0 6601 3 6572 1 6574 2 6602 4 6601 3 6574 2 6603 5 6601 3 6602 4 6604 6 6603 5 6602 4 6605 7 6603 5 6604 6 6606 8 6605 7 6604 6 6607 9 6605 7 6606 8 6608 18 6607 9 6606 8 6609 19 6607 9 6608 18 6610 12 6609 19 6608 18 6610 13 6609 19 6610 12 6611 14 6610 13 6610 12 6612 15 6610 13 6611 14 6614 2 6613 1 6587 0 6615 3 6613 1 6614 2 6616 4 6615 3 6614 2 6617 5 6615 3 6616 4 6618 6 6617 5 6616 4 6619 7 6617 5 6618 6 6620 8 6619 7 6618 6 6621 9 6619 7 6620 8 6622 18 6621 9 6620 8 6623 19 6621 9 6622 18 6624 12 6623 19 6622 18 6625 13 6623 19 6624 12 6626 14 6625 13 6624 12 6627 15 6625 13 6626 14 6629 2 6588 1 6628 0 6630 3 6588 1 6629 2 6631 4 6630 3 6629 2 6632 5 6630 3 6631 4 6633 6 6632 5 6631 4 6634 7 6632 5 6633 6 6635 8 6634 7 6633 6 6636 9 6634 7 6635 8 6637 18 6636 9 6635 8 6638 19 6636 9 6637 18 6639 12 6638 19 6637 18 6640 13 6638 19 6639 12 6641 14 6640 13 6639 12 6642 15 6640 13 6641 14 6614 2 6643 1 6571 0 6644 3 6643 1 6614 2 6645 4 6644 3 6614 2 6646 5 6644 3 6645 4 6647 6 6646 5 6645 4 6648 7 6646 5 6647 6 6649 8 6648 7 6647 6 6650 9 6648 7 6649 8 6651 18 6650 9 6649 8 6652 19 6650 9 6651 18 6653 12 6652 19 6651 18 6654 13 6652 19 6653 12 6655 14 6654 13 6653 12 6656 15 6654 13 6655 14 6659 2 6658 1 6657 0 6660 3 6658 1 6659 2 6661 4 6660 3 6659 2 6662 5 6660 3 6661 4 6663 6 6662 5 6661 4 6664 7 6662 5 6663 6 6665 8 6664 7 6663 6 6666 9 6664 7 6665 8 6667 18 6666 9 6665 8 6668 19 6666 9 6667 18 6669 12 6668 19 6667 18 6670 13 6668 19 6669 12 6671 14 6670 13 6669 12 6672 15 6670 13 6671 14 6675 2 6674 1 6673 0 6676 3 6674 1 6675 2 6677 4 6676 3 6675 2 6678 5 6676 3 6677 4 6679 6 6678 5 6677 4 6680 7 6678 5 6679 6 6681 8 6680 7 6679 6 6682 9 6680 7 6681 8 6683 18 6682 9 6681 8 6684 19 6682 9 6683 18 6685 12 6684 19 6683 18 6686 13 6684 19 6685 12 6687 14 6686 13 6685 12 6688 15 6686 13 6687 14 6659 2 6690 1 6689 0 6691 3 6690 1 6659 2 6692 4 6691 3 6659 2 6693 5 6691 3 6692 4 6694 6 6693 5 6692 4 6695 7 6693 5 6694 6 6696 8 6695 7 6694 6 6697 9 6695 7 6696 8 6698 18 6697 9 6696 8 6698 19 6697 9 6698 18 6699 12 6698 19 6698 18 6700 13 6698 19 6699 12 6701 14 6700 13 6699 12 6701 15 6700 13 6701 14 6704 2 6703 1 6702 0 6705 3 6703 1 6704 2 6706 4 6705 3 6704 2 6707 5 6705 3 6706 4 6708 6 6707 5 6706 4 6709 7 6707 5 6708 6 6710 8 6709 7 6708 6 6711 9 6709 7 6710 8 6712 18 6711 9 6710 8 6713 19 6711 9 6712 18 6714 12 6713 19 6712 18 6715 13 6713 19 6714 12 6716 14 6715 13 6714 12 6717 15 6715 13 6716 14 6719 2 6718 1 6657 0 6720 3 6718 1 6719 2 6721 4 6720 3 6719 2 6722 5 6720 3 6721 4 6723 6 6722 5 6721 4 6724 7 6722 5 6723 6 6725 8 6724 7 6723 6 6726 9 6724 7 6725 8 6727 18 6726 9 6725 8 6728 19 6726 9 6727 18 6729 12 6728 19 6727 18 6730 13 6728 19 6729 12 6731 14 6730 13 6729 12 6732 15 6730 13 6731 14 6734 2 6541 1 6733 0 6735 3 6541 1 6734 2 6736 4 6735 3 6734 2 6737 5 6735 3 6736 4 6738 6 6737 5 6736 4 6739 7 6737 5 6738 6 6740 8 6739 7 6738 6 6741 9 6739 7 6740 8 6742 18 6741 9 6740 8 6743 19 6741 9 6742 18 6744 12 6743 19 6742 18 6745 13 6743 19 6744 12 6746 14 6745 13 6744 12 6747 15 6745 13 6746 14 6749 2 6542 1 6748 0 6750 3 6542 1 6749 2 6751 4 6750 3 6749 2 6752 5 6750 3 6751 4 6753 6 6752 5 6751 4 6754 7 6752 5 6753 6 6755 8 6754 7 6753 6 6756 9 6754 7 6755 8 6757 18 6756 9 6755 8 6758 19 6756 9 6757 18 6759 12 6758 19 6757 18 6760 13 6758 19 6759 12 6761 14 6760 13 6759 12 6762 15 6760 13 6761 14 6764 2 6763 1 6526 0 6765 3 6763 1 6764 2 6766 4 6765 3 6764 2 6767 5 6765 3 6766 4 6768 6 6767 5 6766 4 6769 7 6767 5 6768 6 6770 8 6769 7 6768 6 6771 9 6769 7 6770 8 6772 18 6771 9 6770 8 6773 19 6771 9 6772 18 6774 12 6773 19 6772 18 6775 13 6773 19 6774 12 6776 14 6775 13 6774 12 6777 15 6775 13 6776 14 6780 2 6779 1 6778 0 6780 3 6779 1 6780 2 6781 4 6780 3 6780 2 6781 5 6780 3 6781 4 6782 6 6781 5 6781 4 6783 7 6781 5 6782 6 6784 8 6783 7 6782 6 6785 9 6783 7 6784 8 6786 18 6785 9 6784 8 6787 19 6785 9 6786 18 6788 12 6787 19 6786 18 6789 13 6787 19 6788 12 6790 14 6789 13 6788 12 6791 15 6789 13 6790 14 6794 2 6793 1 6792 0 6795 3 6793 1 6794 2 6796 4 6795 3 6794 2 6797 5 6795 3 6796 4 6798 6 6797 5 6796 4 6799 7 6797 5 6798 6 6800 8 6799 7 6798 6 6801 9 6799 7 6800 8 6802 18 6801 9 6800 8 6803 19 6801 9 6802 18 6804 12 6803 19 6802 18 6805 13 6803 19 6804 12 6806 14 6805 13 6804 12 6807 15 6805 13 6806 14 6780 2 6779 1 6808 0 6809 3 6779 1 6780 2 6810 4 6809 3 6780 2 6811 5 6809 3 6810 4 6812 6 6811 5 6810 4 6813 7 6811 5 6812 6 6814 8 6813 7 6812 6 6815 9 6813 7 6814 8 6816 18 6815 9 6814 8 6816 19 6815 9 6816 18 6817 12 6816 19 6816 18 6818 13 6816 19 6817 12 6819 14 6818 13 6817 12 6820 15 6818 13 6819 14 6822 2 6821 1 6778 0 6823 3 6821 1 6822 2 6824 4 6823 3 6822 2 6825 5 6823 3 6824 4 6826 6 6825 5 6824 4 6827 7 6825 5 6826 6 6828 8 6827 7 6826 6 6829 9 6827 7 6828 8 6830 18 6829 9 6828 8 6831 19 6829 9 6830 18 6832 12 6831 19 6830 18 6833 13 6831 19 6832 12 6834 14 6833 13 6832 12 6835 15 6833 13 6834 14 6837 2 6793 1 6836 0 6838 3 6793 1 6837 2 6839 4 6838 3 6837 2 6840 5 6838 3 6839 4 6841 6 6840 5 6839 4 6842 7 6840 5 6841 6 6843 8 6842 7 6841 6 6844 9 6842 7 6843 8 6845 18 6844 9 6843 8 6846 19 6844 9 6845 18 6847 12 6846 19 6845 18 6848 13 6846 19 6847 12 6849 14 6848 13 6847 12 6850 15 6848 13 6849 14 6822 2 6851 1 6808 0 6852 3 6851 1 6822 2 6853 4 6852 3 6822 2 6854 5 6852 3 6853 4 6855 6 6854 5 6853 4 6856 7 6854 5 6855 6 6857 8 6856 7 6855 6 6858 9 6856 7 6857 8 6859 18 6858 9 6857 8 6860 19 6858 9 6859 18 6861 12 6860 19 6859 18 6862 13 6860 19 6861 12 6863 14 6862 13 6861 12 6864 15 6862 13 6863 14 6866 2 6865 1 6865 0 6866 3 6865 1 6866 2 6867 4 6866 3 6866 2 6868 5 6866 3 6867 4 6869 6 6868 5 6867 4 6870 7 6868 5 6869 6 6871 8 6870 7 6869 6 6872 9 6870 7 6871 8 6873 18 6872 9 6871 8 6874 19 6872 9 6873 18 6875 12 6874 19 6873 18 6876 13 6874 19 6875 12 6877 14 6876 13 6875 12 6878 15 6876 13 6877 14 6881 2 6880 1 6879 0 6882 3 6880 1 6881 2 6883 4 6882 3 6881 2 6884 5 6882 3 6883 4 6885 6 6884 5 6883 4 6886 7 6884 5 6885 6 6887 8 6886 7 6885 6 6888 9 6886 7 6887 8 6889 18 6888 9 6887 8 6890 19 6888 9 6889 18 6891 12 6890 19 6889 18 6892 13 6890 19 6891 12 6893 14 6892 13 6891 12 6894 15 6892 13 6893 14 6866 2 6896 1 6895 0 6897 3 6896 1 6866 2 6898 4 6897 3 6866 2 6899 5 6897 3 6898 4 6900 6 6899 5 6898 4 6901 7 6899 5 6900 6 6902 8 6901 7 6900 6 6903 9 6901 7 6902 8 6904 18 6903 9 6902 8 6904 19 6903 9 6904 18 6905 12 6904 19 6904 18 6906 13 6904 19 6905 12 6907 14 6906 13 6905 12 6908 15 6906 13 6907 14 6910 2 6895 1 6909 0 6911 3 6895 1 6910 2 6912 4 6911 3 6910 2 6913 5 6911 3 6912 4 6914 6 6913 5 6912 4 6915 7 6913 5 6914 6 6916 8 6915 7 6914 6 6917 9 6915 7 6916 8 6918 18 6917 9 6916 8 6919 19 6917 9 6918 18 6920 12 6919 19 6918 18 6921 13 6919 19 6920 12 6922 14 6921 13 6920 12 6923 15 6921 13 6922 14 6925 2 6924 1 6865 0 6926 3 6924 1 6925 2 6927 4 6926 3 6925 2 6928 5 6926 3 6927 4 6929 6 6928 5 6927 4 6930 7 6928 5 6929 6 6931 8 6930 7 6929 6 6932 9 6930 7 6931 8 6933 18 6932 9 6931 8 6934 19 6932 9 6933 18 6935 12 6934 19 6933 18 6936 13 6934 19 6935 12 6937 14 6936 13 6935 12 6938 15 6936 13 6937 14 6941 2 6940 1 6939 0 6941 3 6940 1 6941 2 6942 4 6941 3 6941 2 6943 5 6941 3 6942 4 6944 6 6943 5 6942 4 6945 7 6943 5 6944 6 6946 8 6945 7 6944 6 6947 9 6945 7 6946 8 6948 18 6947 9 6946 8 6949 19 6947 9 6948 18 6950 12 6949 19 6948 18 6951 13 6949 19 6950 12 6952 14 6951 13 6950 12 6953 15 6951 13 6952 14 6956 2 6955 1 6954 0 6957 3 6955 1 6956 2 6958 4 6957 3 6956 2 6959 5 6957 3 6958 4 6960 6 6959 5 6958 4 6961 7 6959 5 6960 6 6962 8 6961 7 6960 6 6963 9 6961 7 6962 8 6964 18 6963 9 6962 8 6965 19 6963 9 6964 18 6966 12 6965 19 6964 18 6967 13 6965 19 6966 12 6968 14 6967 13 6966 12 6969 15 6967 13 6968 14 6956 2 6954 1 6940 0 6970 3 6954 1 6956 2 6971 4 6970 3 6956 2 6971 5 6970 3 6971 4 6972 6 6971 5 6971 4 6973 7 6971 5 6972 6 6974 8 6973 7 6972 6 6975 9 6973 7 6974 8 6976 18 6975 9 6974 8 6976 19 6975 9 6976 18 6977 12 6976 19 6976 18 6977 13 6976 19 6977 12 6978 14 6977 13 6977 12 6979 15 6977 13 6978 14 6982 2 6981 1 6980 0 6983 3 6981 1 6982 2 6984 4 6983 3 6982 2 6985 5 6983 3 6984 4 6986 6 6985 5 6984 4 6987 7 6985 5 6986 6 6988 8 6987 7 6986 6 6989 9 6987 7 6988 8 6990 18 6989 9 6988 8 6991 19 6989 9 6990 18 6992 12 6991 19 6990 18 6993 13 6991 19 6992 12 6994 14 6993 13 6992 12 6995 15 6993 13 6994 14 6996 2 6980 1 6981 0 6997 3 6980 1 6996 2 6998 4 6997 3 6996 2 6999 5 6997 3 6998 4 7000 6 6999 5 6998 4 7001 7 6999 5 7000 6 7002 8 7001 7 7000 6 7003 9 7001 7 7002 8 7004 18 7003 9 7002 8 7005 19 7003 9 7004 18 7006 12 7005 19 7004 18 7007 13 7005 19 7006 12 7008 14 7007 13 7006 12 7009 15 7007 13 7008 14 6982 2 7010 1 6980 0 7011 3 7010 1 6982 2 7012 4 7011 3 6982 2 7013 5 7011 3 7012 4 7014 6 7013 5 7012 4 7015 7 7013 5 7014 6 7016 8 7015 7 7014 6 7017 9 7015 7 7016 8 7018 18 7017 9 7016 8 7019 19 7017 9 7018 18 7020 12 7019 19 7018 18 7021 13 7019 19 7020 12 7022 14 7021 13 7020 12 7022 15 7021 13 7022 14 7024 2 7023 1 7010 0 7025 3 7023 1 7024 2 7026 4 7025 3 7024 2 7027 5 7025 3 7026 4 7028 6 7027 5 7026 4 7029 7 7027 5 7028 6 7030 8 7029 7 7028 6 7031 9 7029 7 7030 8 7032 18 7031 9 7030 8 7033 19 7031 9 7032 18 7034 12 7033 19 7032 18 7035 13 7033 19 7034 12 7036 14 7035 13 7034 12 7037 15 7035 13 7036 14 7039 2 6980 1 7038 0 7040 3 6980 1 7039 2 7041 4 7040 3 7039 2 7042 5 7040 3 7041 4 7043 6 7042 5 7041 4 7044 7 7042 5 7043 6 7045 8 7044 7 7043 6 7046 9 7044 7 7045 8 7047 18 7046 9 7045 8 7048 19 7046 9 7047 18 7049 12 7048 19 7047 18 7050 13 7048 19 7049 12 7051 14 7050 13 7049 12 7052 15 7050 13 7051 14 7024 2 7023 1 6981 0 7053 3 7023 1 7024 2 7054 4 7053 3 7024 2 7055 5 7053 3 7054 4 7056 6 7055 5 7054 4 7057 7 7055 5 7056 6 7058 8 7057 7 7056 6 7059 9 7057 7 7058 8 7060 18 7059 9 7058 8 7061 19 7059 9 7060 18 7062 12 7061 19 7060 18 7063 13 7061 19 7062 12 7064 14 7063 13 7062 12 7065 15 7063 13 7064 14 7068 2 7067 1 7066 0 7068 3 7067 1 7068 2 7069 4 7068 3 7068 2 7070 5 7068 3 7069 4 7071 6 7070 5 7069 4 7072 7 7070 5 7071 6 7073 8 7072 7 7071 6 7074 9 7072 7 7073 8 7075 18 7074 9 7073 8 7076 19 7074 9 7075 18 7077 12 7076 19 7075 18 7078 13 7076 19 7077 12 7079 14 7078 13 7077 12 7080 15 7078 13 7079 14 7083 2 7082 1 7081 0 7084 3 7082 1 7083 2 7085 4 7084 3 7083 2 7086 5 7084 3 7085 4 7087 6 7086 5 7085 4 7088 7 7086 5 7087 6 7089 8 7088 7 7087 6 7090 9 7088 7 7089 8 7091 18 7090 9 7089 8 7092 19 7090 9 7091 18 7093 12 7092 19 7091 18 7094 13 7092 19 7093 12 7095 14 7094 13 7093 12 7096 15 7094 13 7095 14 7068 2 7067 1 7082 0 7097 3 7067 1 7068 2 7098 4 7097 3 7068 2 7099 5 7097 3 7098 4 7100 6 7099 5 7098 4 7101 7 7099 5 7100 6 7102 8 7101 7 7100 6 7103 9 7101 7 7102 8 7104 18 7103 9 7102 8 7105 19 7103 9 7104 18 7106 12 7105 19 7104 18 7107 13 7105 19 7106 12 7108 14 7107 13 7106 12 7109 15 7107 13 7108 14 7111 2 7082 1 7110 0 7112 3 7082 1 7111 2 7113 4 7112 3 7111 2 7114 5 7112 3 7113 4 7115 6 7114 5 7113 4 7116 7 7114 5 7115 6 7117 8 7116 7 7115 6 7118 9 7116 7 7117 8 7119 18 7118 9 7117 8 7120 19 7118 9 7119 18 7121 12 7120 19 7119 18 7122 13 7120 19 7121 12 7123 14 7122 13 7121 12 7124 15 7122 13 7123 14 7127 2 7126 1 7125 0 7128 3 7126 1 7127 2 7129 4 7128 3 7127 2 7130 5 7128 3 7129 4 7131 6 7130 5 7129 4 7132 7 7130 5 7131 6 7133 8 7132 7 7131 6 7134 9 7132 7 7133 8 7135 18 7134 9 7133 8 7136 19 7134 9 7135 18 7137 12 7136 19 7135 18 7138 13 7136 19 7137 12 7139 14 7138 13 7137 12 7140 15 7138 13 7139 14 7142 2 6940 1 7141 0 7143 3 6940 1 7142 2 7144 4 7143 3 7142 2 7145 5 7143 3 7144 4 7146 6 7145 5 7144 4 7147 7 7145 5 7146 6 7148 8 7147 7 7146 6 7149 9 7147 7 7148 8 7150 18 7149 9 7148 8 7151 19 7149 9 7150 18 7152 12 7151 19 7150 18 7153 13 7151 19 7152 12 7154 14 7153 13 7152 12 7155 15 7153 13 7154 14 7157 2 7156 1 6940 0 7158 3 7156 1 7157 2 7159 4 7158 3 7157 2 7160 5 7158 3 7159 4 7161 6 7160 5 7159 4 7162 7 7160 5 7161 6 7163 8 7162 7 7161 6 7164 9 7162 7 7163 8 7165 18 7164 9 7163 8 7166 19 7164 9 7165 18 7167 12 7166 19 7165 18 7168 13 7166 19 7167 12 7169 14 7168 13 7167 12 7170 15 7168 13 7169 14 7173 2 7172 1 7171 0 7174 3 7172 1 7173 2 7175 4 7174 3 7173 2 7176 5 7174 3 7175 4 7177 6 7176 5 7175 4 7178 7 7176 5 7177 6 7179 8 7178 7 7177 6 7180 9 7178 7 7179 8 7181 18 7180 9 7179 8 7182 19 7180 9 7181 18 7183 12 7182 19 7181 18 7184 13 7182 19 7183 12 7185 14 7184 13 7183 12 7185 15 7184 13 7185 14 7188 2 7187 1 7186 0 7188 3 7187 1 7188 2 7189 4 7188 3 7188 2 7190 5 7188 3 7189 4 7191 6 7190 5 7189 4 7192 7 7190 5 7191 6 7193 8 7192 7 7191 6 7194 9 7192 7 7193 8 7195 18 7194 9 7193 8 7196 19 7194 9 7195 18 7197 12 7196 19 7195 18 7198 13 7196 19 7197 12 7199 14 7198 13 7197 12 7200 15 7198 13 7199 14 7203 2 7202 1 7201 0 7204 3 7202 1 7203 2 7205 4 7204 3 7203 2 7206 5 7204 3 7205 4 7207 6 7206 5 7205 4 7208 7 7206 5 7207 6 7209 8 7208 7 7207 6 7210 9 7208 7 7209 8 7211 18 7210 9 7209 8 7212 19 7210 9 7211 18 7213 12 7212 19 7211 18 7214 13 7212 19 7213 12 7215 14 7214 13 7213 12 7216 15 7214 13 7215 14 7188 2 7201 1 7202 0 7217 3 7201 1 7188 2 7218 4 7217 3 7188 2 7219 5 7217 3 7218 4 7220 6 7219 5 7218 4 7221 7 7219 5 7220 6 7222 8 7221 7 7220 6 7223 9 7221 7 7222 8 7224 18 7223 9 7222 8 7225 19 7223 9 7224 18 7226 12 7225 19 7224 18 7227 13 7225 19 7226 12 7228 14 7227 13 7226 12 7229 15 7227 13 7228 14 7230 2 7201 1 7186 0 7231 3 7201 1 7230 2 7232 4 7231 3 7230 2 7233 5 7231 3 7232 4 7234 6 7233 5 7232 4 7235 7 7233 5 7234 6 7236 8 7235 7 7234 6 7237 9 7235 7 7236 8 7238 18 7237 9 7236 8 7239 19 7237 9 7238 18 7240 12 7239 19 7238 18 7241 13 7239 19 7240 12 7242 14 7241 13 7240 12 7243 15 7241 13 7242 14 7230 2 7202 1 7244 0 7245 3 7202 1 7230 2 7246 4 7245 3 7230 2 7247 5 7245 3 7246 4 7248 6 7247 5 7246 4 7249 7 7247 5 7248 6 7250 8 7249 7 7248 6 7251 9 7249 7 7250 8 7252 18 7251 9 7250 8 7253 19 7251 9 7252 18 7254 12 7253 19 7252 18 7255 13 7253 19 7254 12 7256 14 7255 13 7254 12 7257 15 7255 13 7256 14 7230 2 7258 1 7187 0 7259 3 7258 1 7230 2 7260 4 7259 3 7230 2 7261 5 7259 3 7260 4 7262 6 7261 5 7260 4 7263 7 7261 5 7262 6 7264 8 7263 7 7262 6 7265 9 7263 7 7264 8 7266 18 7265 9 7264 8 7267 19 7265 9 7266 18 7268 12 7267 19 7266 18 7269 13 7267 19 7268 12 7270 14 7269 13 7268 12 7271 15 7269 13 7270 14 7273 2 7272 1 7272 0 7274 3 7272 1 7273 2 7275 4 7274 3 7273 2 7276 5 7274 3 7275 4 7277 6 7276 5 7275 4 7278 7 7276 5 7277 6 7279 8 7278 7 7277 6 7280 9 7278 7 7279 8 7281 18 7280 9 7279 8 7282 19 7280 9 7281 18 7283 12 7282 19 7281 18 7284 13 7282 19 7283 12 7285 14 7284 13 7283 12 7286 15 7284 13 7285 14 7288 2 7272 1 7287 0 7289 3 7272 1 7288 2 7290 4 7289 3 7288 2 7291 5 7289 3 7290 4 7292 6 7291 5 7290 4 7293 7 7291 5 7292 6 7294 8 7293 7 7292 6 7295 9 7293 7 7294 8 7296 18 7295 9 7294 8 7297 19 7295 9 7296 18 7298 12 7297 19 7296 18 7299 13 7297 19 7298 12 7300 14 7299 13 7298 12 7301 15 7299 13 7300 14 7273 2 7287 1 7272 0 7302 3 7287 1 7273 2 7303 4 7302 3 7273 2 7304 5 7302 3 7303 4 7305 6 7304 5 7303 4 7306 7 7304 5 7305 6 7307 8 7306 7 7305 6 7308 9 7306 7 7307 8 7309 18 7308 9 7307 8 7309 19 7308 9 7309 18 7310 12 7309 19 7309 18 7311 13 7309 19 7310 12 7312 14 7311 13 7310 12 7313 15 7311 13 7312 14 7315 2 7272 1 7314 0 7316 3 7272 1 7315 2 7317 4 7316 3 7315 2 7318 5 7316 3 7317 4 7319 6 7318 5 7317 4 7320 7 7318 5 7319 6 7321 8 7320 7 7319 6 7322 9 7320 7 7321 8 7323 18 7322 9 7321 8 7324 19 7322 9 7323 18 7325 12 7324 19 7323 18 7326 13 7324 19 7325 12 7327 14 7326 13 7325 12 7328 15 7326 13 7327 14 7331 2 7330 1 7329 0 7332 3 7330 1 7331 2 7333 4 7332 3 7331 2 7334 5 7332 3 7333 4 7335 6 7334 5 7333 4 7336 7 7334 5 7335 6 7337 8 7336 7 7335 6 7338 9 7336 7 7337 8 7339 18 7338 9 7337 8 7340 19 7338 9 7339 18 7341 12 7340 19 7339 18 7342 13 7340 19 7341 12 7343 14 7342 13 7341 12 7344 15 7342 13 7343 14 7173 2 7345 1 7171 0 7346 3 7345 1 7173 2 7347 4 7346 3 7173 2 7348 5 7346 3 7347 4 7349 6 7348 5 7347 4 7350 7 7348 5 7349 6 7351 8 7350 7 7349 6 7352 9 7350 7 7351 8 7353 18 7352 9 7351 8 7353 19 7352 9 7353 18 7354 12 7353 19 7353 18 7355 13 7353 19 7354 12 7356 14 7355 13 7354 12 7357 15 7355 13 7356 14 7173 2 7171 1 7358 0 7359 3 7171 1 7173 2 7360 4 7359 3 7173 2 7361 5 7359 3 7360 4 7362 6 7361 5 7360 4 7363 7 7361 5 7362 6 7364 8 7363 7 7362 6 7365 9 7363 7 7364 8 7366 18 7365 9 7364 8 7367 19 7365 9 7366 18 7368 12 7367 19 7366 18 7369 13 7367 19 7368 12 7370 14 7369 13 7368 12 7371 15 7369 13 7370 14 7373 2 7372 1 7171 0 7374 3 7372 1 7373 2 7375 4 7374 3 7373 2 7376 5 7374 3 7375 4 7377 6 7376 5 7375 4 7378 7 7376 5 7377 6 7379 8 7378 7 7377 6 7380 9 7378 7 7379 8 7381 18 7380 9 7379 8 7382 19 7380 9 7381 18 7383 12 7382 19 7381 18 7384 13 7382 19 7383 12 7385 14 7384 13 7383 12 7386 15 7384 13 7385 14 7389 2 7388 1 7387 0 7389 3 7388 1 7389 2 7390 4 7389 3 7389 2 7391 5 7389 3 7390 4 7392 6 7391 5 7390 4 7393 7 7391 5 7392 6 7394 8 7393 7 7392 6 7395 9 7393 7 7394 8 7396 18 7395 9 7394 8 7397 19 7395 9 7396 18 7398 12 7397 19 7396 18 7399 13 7397 19 7398 12 7400 14 7399 13 7398 12 7401 15 7399 13 7400 14 7403 2 7402 1 7388 0 7404 3 7402 1 7403 2 7405 4 7404 3 7403 2 7406 5 7404 3 7405 4 7407 6 7406 5 7405 4 7408 7 7406 5 7407 6 7409 8 7408 7 7407 6 7410 9 7408 7 7409 8 7411 18 7410 9 7409 8 7412 19 7410 9 7411 18 7413 12 7412 19 7411 18 7414 13 7412 19 7413 12 7415 14 7414 13 7413 12 7415 15 7414 13 7415 14 7417 2 7388 1 7416 0 7418 3 7388 1 7417 2 7419 4 7418 3 7417 2 7420 5 7418 3 7419 4 7421 6 7420 5 7419 4 7422 7 7420 5 7421 6 7423 8 7422 7 7421 6 7424 9 7422 7 7423 8 7425 18 7424 9 7423 8 7426 19 7424 9 7425 18 7427 12 7426 19 7425 18 7428 13 7426 19 7427 12 7429 14 7428 13 7427 12 7430 15 7428 13 7429 14 7431 2 7388 1 7387 0 7432 3 7388 1 7431 2 7433 4 7432 3 7431 2 7434 5 7432 3 7433 4 7435 6 7434 5 7433 4 7436 7 7434 5 7435 6 7437 8 7436 7 7435 6 7438 9 7436 7 7437 8 7439 18 7438 9 7437 8 7440 19 7438 9 7439 18 7441 12 7440 19 7439 18 7442 13 7440 19 7441 12 7443 14 7442 13 7441 12 7444 15 7442 13 7443 14 7446 2 7402 1 7445 0 7447 3 7402 1 7446 2 7448 4 7447 3 7446 2 7449 5 7447 3 7448 4 7450 6 7449 5 7448 4 7451 7 7449 5 7450 6 7452 8 7451 7 7450 6 7453 9 7451 7 7452 8 7454 18 7453 9 7452 8 7455 19 7453 9 7454 18 7456 12 7455 19 7454 18 7457 13 7455 19 7456 12 7458 14 7457 13 7456 12 7459 15 7457 13 7458 14 7431 2 7461 1 7460 0 7462 3 7461 1 7431 2 7463 4 7462 3 7431 2 7464 5 7462 3 7463 4 7465 6 7464 5 7463 4 7466 7 7464 5 7465 6 7467 8 7466 7 7465 6 7468 9 7466 7 7467 8 7469 18 7468 9 7467 8 7470 19 7468 9 7469 18 7471 12 7470 19 7469 18 7472 13 7470 19 7471 12 7473 14 7472 13 7471 12 7474 15 7472 13 7473 14 7477 2 7476 1 7475 0 7478 3 7476 1 7477 2 7479 4 7478 3 7477 2 7480 5 7478 3 7479 4 7481 6 7480 5 7479 4 7482 7 7480 5 7481 6 7483 8 7482 7 7481 6 7484 9 7482 7 7483 8 7485 18 7484 9 7483 8 7486 19 7484 9 7485 18 7487 12 7486 19 7485 18 7488 13 7486 19 7487 12 7489 14 7488 13 7487 12 7490 15 7488 13 7489 14 7477 2 7491 1 7476 0 7492 3 7491 1 7477 2 7493 4 7492 3 7477 2 7494 5 7492 3 7493 4 7495 6 7494 5 7493 4 7496 7 7494 5 7495 6 7497 8 7496 7 7495 6 7498 9 7496 7 7497 8 7499 18 7498 9 7497 8 7500 19 7498 9 7499 18 7501 12 7500 19 7499 18 7502 13 7500 19 7501 12 7503 14 7502 13 7501 12 7504 15 7502 13 7503 14 7477 2 7505 1 7491 0 7506 3 7505 1 7477 2 7507 4 7506 3 7477 2 7508 5 7506 3 7507 4 7509 6 7508 5 7507 4 7510 7 7508 5 7509 6 7511 8 7510 7 7509 6 7511 9 7510 7 7511 8 7512 18 7511 9 7511 8 7513 19 7511 9 7512 18 7514 12 7513 19 7512 18 7515 13 7513 19 7514 12 7516 14 7515 13 7514 12 7517 15 7515 13 7516 14 7519 2 7491 1 7518 0 7520 3 7491 1 7519 2 7521 4 7520 3 7519 2 7522 5 7520 3 7521 4 7523 6 7522 5 7521 4 7524 7 7522 5 7523 6 7525 8 7524 7 7523 6 7526 9 7524 7 7525 8 7527 18 7526 9 7525 8 7528 19 7526 9 7527 18 7529 12 7528 19 7527 18 7530 13 7528 19 7529 12 7531 14 7530 13 7529 12 7532 15 7530 13 7531 14 7534 2 7533 1 7476 0 7535 3 7533 1 7534 2 7536 4 7535 3 7534 2 7537 5 7535 3 7536 4 7538 6 7537 5 7536 4 7539 7 7537 5 7538 6 7540 8 7539 7 7538 6 7541 9 7539 7 7540 8 7542 18 7541 9 7540 8 7543 19 7541 9 7542 18 7544 12 7543 19 7542 18 7545 13 7543 19 7544 12 7546 14 7545 13 7544 12 7547 15 7545 13 7546 14 7549 2 7345 1 7548 0 7550 3 7345 1 7549 2 7551 4 7550 3 7549 2 7552 5 7550 3 7551 4 7553 6 7552 5 7551 4 7554 7 7552 5 7553 6 7555 8 7554 7 7553 6 7556 9 7554 7 7555 8 7557 18 7556 9 7555 8 7558 19 7556 9 7557 18 7559 12 7558 19 7557 18 7560 13 7558 19 7559 12 7561 14 7560 13 7559 12 7562 15 7560 13 7561 14 7373 2 7372 1 7172 0 7563 3 7372 1 7373 2 7564 4 7563 3 7373 2 7565 5 7563 3 7564 4 7566 6 7565 5 7564 4 7567 7 7565 5 7566 6 7568 8 7567 7 7566 6 7569 9 7567 7 7568 8 7570 18 7569 9 7568 8 7571 19 7569 9 7570 18 7572 12 7571 19 7570 18 7573 13 7571 19 7572 12 7574 14 7573 13 7572 12 7575 15 7573 13 7574 14 7577 2 7576 1 7576 0 7578 3 7576 1 7577 2 7579 4 7578 3 7577 2 7580 5 7578 3 7579 4 7581 6 7580 5 7579 4 7582 7 7580 5 7581 6 7583 8 7582 7 7581 6 7584 9 7582 7 7583 8 7585 18 7584 9 7583 8 7586 19 7584 9 7585 18 7587 12 7586 19 7585 18 7588 13 7586 19 7587 12 7589 14 7588 13 7587 12 7590 15 7588 13 7589 14 7593 2 7592 1 7591 0 7594 3 7592 1 7593 2 7595 4 7594 3 7593 2 7596 5 7594 3 7595 4 7597 6 7596 5 7595 4 7598 7 7596 5 7597 6 7599 8 7598 7 7597 6 7600 9 7598 7 7599 8 7601 18 7600 9 7599 8 7602 19 7600 9 7601 18 7603 12 7602 19 7601 18 7604 13 7602 19 7603 12 7605 14 7604 13 7603 12 7605 15 7604 13 7605 14 7593 2 7607 1 7606 0 7608 3 7607 1 7593 2 7609 4 7608 3 7593 2 7610 5 7608 3 7609 4 7611 6 7610 5 7609 4 7612 7 7610 5 7611 6 7613 8 7612 7 7611 6 7614 9 7612 7 7613 8 7615 18 7614 9 7613 8 7616 19 7614 9 7615 18 7617 12 7616 19 7615 18 7617 13 7616 19 7617 12 7618 14 7617 13 7617 12 7619 15 7617 13 7618 14 7593 2 7620 1 7607 0 7621 3 7620 1 7593 2 7622 4 7621 3 7593 2 7623 5 7621 3 7622 4 7624 6 7623 5 7622 4 7625 7 7623 5 7624 6 7626 8 7625 7 7624 6 7626 9 7625 7 7626 8 7627 18 7626 9 7626 8 7628 19 7626 9 7627 18 7629 12 7628 19 7627 18 7630 13 7628 19 7629 12 7631 14 7630 13 7629 12 7632 15 7630 13 7631 14 7634 2 7606 1 7633 0 7635 3 7606 1 7634 2 7636 4 7635 3 7634 2 7637 5 7635 3 7636 4 7638 6 7637 5 7636 4 7639 7 7637 5 7638 6 7640 8 7639 7 7638 6 7641 9 7639 7 7640 8 7642 18 7641 9 7640 8 7643 19 7641 9 7642 18 7644 12 7643 19 7642 18 7645 13 7643 19 7644 12 7646 14 7645 13 7644 12 7647 15 7645 13 7646 14 7650 2 7649 1 7648 0 7651 3 7649 1 7650 2 7652 4 7651 3 7650 2 7653 5 7651 3 7652 4 7654 6 7653 5 7652 4 7655 7 7653 5 7654 6 7656 8 7655 7 7654 6 7657 9 7655 7 7656 8 7658 18 7657 9 7656 8 7659 19 7657 9 7658 18 7660 12 7659 19 7658 18 7661 13 7659 19 7660 12 7662 14 7661 13 7660 12 7663 15 7661 13 7662 14 7634 2 7620 1 7664 0 7665 3 7620 1 7634 2 7666 4 7665 3 7634 2 7667 5 7665 3 7666 4 7668 6 7667 5 7666 4 7669 7 7667 5 7668 6 7670 8 7669 7 7668 6 7671 9 7669 7 7670 8 7672 18 7671 9 7670 8 7673 19 7671 9 7672 18 7674 12 7673 19 7672 18 7675 13 7673 19 7674 12 7676 14 7675 13 7674 12 7677 15 7675 13 7676 14 7680 2 7679 1 7678 0 7680 3 7679 1 7680 2 7681 4 7680 3 7680 2 7682 5 7680 3 7681 4 7683 6 7682 5 7681 4 7684 7 7682 5 7683 6 7685 8 7684 7 7683 6 7686 9 7684 7 7685 8 7687 18 7686 9 7685 8 7688 19 7686 9 7687 18 7689 12 7688 19 7687 18 7690 13 7688 19 7689 12 7691 14 7690 13 7689 12 7691 15 7690 13 7691 14 7694 2 7693 1 7692 0 7695 3 7693 1 7694 2 7696 4 7695 3 7694 2 7697 5 7695 3 7696 4 7698 6 7697 5 7696 4 7699 7 7697 5 7698 6 7700 8 7699 7 7698 6 7701 9 7699 7 7700 8 7702 18 7701 9 7700 8 7702 19 7701 9 7702 18 7703 12 7702 19 7702 18 7703 13 7702 19 7703 12 7704 14 7703 13 7703 12 7705 15 7703 13 7704 14 7694 2 7692 1 7679 0 7706 3 7692 1 7694 2 7707 4 7706 3 7694 2 7708 5 7706 3 7707 4 7709 6 7708 5 7707 4 7710 7 7708 5 7709 6 7711 8 7710 7 7709 6 7712 9 7710 7 7711 8 7713 18 7712 9 7711 8 7713 19 7712 9 7713 18 7714 12 7713 19 7713 18 7715 13 7713 19 7714 12 7716 14 7715 13 7714 12 7717 15 7715 13 7716 14 7719 2 7679 1 7718 0 7720 3 7679 1 7719 2 7721 4 7720 3 7719 2 7722 5 7720 3 7721 4 7723 6 7722 5 7721 4 7724 7 7722 5 7723 6 7725 8 7724 7 7723 6 7726 9 7724 7 7725 8 7727 18 7726 9 7725 8 7728 19 7726 9 7727 18 7729 12 7728 19 7727 18 7730 13 7728 19 7729 12 7731 14 7730 13 7729 12 7732 15 7730 13 7731 14 7734 2 7733 1 7679 0 7735 3 7733 1 7734 2 7736 4 7735 3 7734 2 7737 5 7735 3 7736 4 7738 6 7737 5 7736 4 7739 7 7737 5 7738 6 7740 8 7739 7 7738 6 7741 9 7739 7 7740 8 7742 18 7741 9 7740 8 7743 19 7741 9 7742 18 7744 12 7743 19 7742 18 7745 13 7743 19 7744 12 7746 14 7745 13 7744 12 7747 15 7745 13 7746 14 7750 2 7749 1 7748 0 7751 3 7749 1 7750 2 7752 4 7751 3 7750 2 7753 5 7751 3 7752 4 7754 6 7753 5 7752 4 7755 7 7753 5 7754 6 7756 8 7755 7 7754 6 7756 9 7755 7 7756 8 7757 18 7756 9 7756 8 7758 19 7756 9 7757 18 7759 12 7758 19 7757 18 7760 13 7758 19 7759 12 7761 14 7760 13 7759 12 7762 15 7760 13 7761 14 7763 2 7748 1 7576 0 7764 3 7748 1 7763 2 7765 4 7764 3 7763 2 7765 5 7764 3 7765 4 7766 6 7765 5 7765 4 7767 7 7765 5 7766 6 7768 8 7767 7 7766 6 7769 9 7767 7 7768 8 7770 18 7769 9 7768 8 7771 19 7769 9 7770 18 7772 12 7771 19 7770 18 7773 13 7771 19 7772 12 7774 14 7773 13 7772 12 7775 15 7773 13 7774 14 7777 2 7576 1 7776 0 7778 3 7576 1 7777 2 7779 4 7778 3 7777 2 7780 5 7778 3 7779 4 7781 6 7780 5 7779 4 7782 7 7780 5 7781 6 7783 8 7782 7 7781 6 7784 9 7782 7 7783 8 7785 18 7784 9 7783 8 7786 19 7784 9 7785 18 7787 12 7786 19 7785 18 7788 13 7786 19 7787 12 7789 14 7788 13 7787 12 7790 15 7788 13 7789 14 7793 2 7792 1 7791 0 7793 3 7792 1 7793 2 7794 4 7793 3 7793 2 7794 5 7793 3 7794 4 7795 6 7794 5 7794 4 7796 7 7794 5 7795 6 7797 8 7796 7 7795 6 7798 9 7796 7 7797 8 7799 18 7798 9 7797 8 7800 19 7798 9 7799 18 7801 12 7800 19 7799 18 7802 13 7800 19 7801 12 7803 14 7802 13 7801 12 7803 15 7802 13 7803 14 7806 2 7805 1 7804 0 7807 3 7805 1 7806 2 7808 4 7807 3 7806 2 7809 5 7807 3 7808 4 7810 6 7809 5 7808 4 7811 7 7809 5 7810 6 7812 8 7811 7 7810 6 7813 9 7811 7 7812 8 7814 18 7813 9 7812 8 7815 19 7813 9 7814 18 7816 12 7815 19 7814 18 7817 13 7815 19 7816 12 7818 14 7817 13 7816 12 7818 15 7817 13 7818 14 7793 2 7820 1 7819 0 7821 3 7820 1 7793 2 7822 4 7821 3 7793 2 7823 5 7821 3 7822 4 7824 6 7823 5 7822 4 7825 7 7823 5 7824 6 7826 8 7825 7 7824 6 7827 9 7825 7 7826 8 7828 18 7827 9 7826 8 7829 19 7827 9 7828 18 7830 12 7829 19 7828 18 7831 13 7829 19 7830 12 7832 14 7831 13 7830 12 7833 15 7831 13 7832 14 7835 2 7804 1 7834 0 7836 3 7804 1 7835 2 7837 4 7836 3 7835 2 7838 5 7836 3 7837 4 7839 6 7838 5 7837 4 7840 7 7838 5 7839 6 7841 8 7840 7 7839 6 7842 9 7840 7 7841 8 7843 18 7842 9 7841 8 7844 19 7842 9 7843 18 7845 12 7844 19 7843 18 7846 13 7844 19 7845 12 7847 14 7846 13 7845 12 7848 15 7846 13 7847 14 7850 2 7805 1 7849 0 7851 3 7805 1 7850 2 7852 4 7851 3 7850 2 7853 5 7851 3 7852 4 7854 6 7853 5 7852 4 7855 7 7853 5 7854 6 7856 8 7855 7 7854 6 7857 9 7855 7 7856 8 7858 18 7857 9 7856 8 7859 19 7857 9 7858 18 7860 12 7859 19 7858 18 7861 13 7859 19 7860 12 7862 14 7861 13 7860 12 7863 15 7861 13 7862 14 7835 2 7864 1 7791 0 7865 3 7864 1 7835 2 7866 4 7865 3 7835 2 7867 5 7865 3 7866 4 7868 6 7867 5 7866 4 7869 7 7867 5 7868 6 7870 8 7869 7 7868 6 7871 9 7869 7 7870 8 7872 18 7871 9 7870 8 7873 19 7871 9 7872 18 7874 12 7873 19 7872 18 7875 13 7873 19 7874 12 7876 14 7875 13 7874 12 7877 15 7875 13 7876 14 7879 2 7878 1 7878 0 7880 3 7878 1 7879 2 7881 4 7880 3 7879 2 7882 5 7880 3 7881 4 7883 6 7882 5 7881 4 7884 7 7882 5 7883 6 7885 8 7884 7 7883 6 7886 9 7884 7 7885 8 7887 18 7886 9 7885 8 7888 19 7886 9 7887 18 7889 12 7888 19 7887 18 7890 13 7888 19 7889 12 7891 14 7890 13 7889 12 7891 15 7890 13 7891 14 7894 2 7893 1 7892 0 7895 3 7893 1 7894 2 7896 4 7895 3 7894 2 7897 5 7895 3 7896 4 7898 6 7897 5 7896 4 7899 7 7897 5 7898 6 7900 8 7899 7 7898 6 7901 9 7899 7 7900 8 7902 18 7901 9 7900 8 7903 19 7901 9 7902 18 7904 12 7903 19 7902 18 7905 13 7903 19 7904 12 7906 14 7905 13 7904 12 7907 15 7905 13 7906 14 7879 2 7892 1 7878 0 7908 3 7892 1 7879 2 7909 4 7908 3 7879 2 7910 5 7908 3 7909 4 7911 6 7910 5 7909 4 7912 7 7910 5 7911 6 7913 8 7912 7 7911 6 7914 9 7912 7 7913 8 7915 18 7914 9 7913 8 7916 19 7914 9 7915 18 7917 12 7916 19 7915 18 7918 13 7916 19 7917 12 7919 14 7918 13 7917 12 7920 15 7918 13 7919 14 7922 2 7878 1 7921 0 7923 3 7878 1 7922 2 7924 4 7923 3 7922 2 7925 5 7923 3 7924 4 7926 6 7925 5 7924 4 7927 7 7925 5 7926 6 7928 8 7927 7 7926 6 7929 9 7927 7 7928 8 7930 18 7929 9 7928 8 7931 19 7929 9 7930 18 7932 12 7931 19 7930 18 7933 13 7931 19 7932 12 7934 14 7933 13 7932 12 7935 15 7933 13 7934 14 7937 2 7936 1 7878 0 7938 3 7936 1 7937 2 7939 4 7938 3 7937 2 7940 5 7938 3 7939 4 7941 6 7940 5 7939 4 7942 7 7940 5 7941 6 7943 8 7942 7 7941 6 7944 9 7942 7 7943 8 7945 18 7944 9 7943 8 7946 19 7944 9 7945 18 7947 12 7946 19 7945 18 7948 13 7946 19 7947 12 7949 14 7948 13 7947 12 7950 15 7948 13 7949 14 7952 2 7951 1 7576 0 7953 3 7951 1 7952 2 7954 4 7953 3 7952 2 7955 5 7953 3 7954 4 7956 6 7955 5 7954 4 7957 7 7955 5 7956 6 7958 8 7957 7 7956 6 7959 9 7957 7 7958 8 7960 18 7959 9 7958 8 7961 19 7959 9 7960 18 7962 12 7961 19 7960 18 7963 13 7961 19 7962 12 7964 14 7963 13 7962 12 7965 15 7963 13 7964 14 7968 2 7967 1 7966 0 7968 3 7967 1 7968 2 7969 4 7968 3 7968 2 7970 5 7968 3 7969 4 7971 6 7970 5 7969 4 7972 7 7970 5 7971 6 7973 8 7972 7 7971 6 7974 9 7972 7 7973 8 7975 18 7974 9 7973 8 7976 19 7974 9 7975 18 7977 12 7976 19 7975 18 7978 13 7976 19 7977 12 7979 14 7978 13 7977 12 7980 15 7978 13 7979 14 7983 2 7982 1 7981 0 7984 3 7982 1 7983 2 7985 4 7984 3 7983 2 7986 5 7984 3 7985 4 7987 6 7986 5 7985 4 7988 7 7986 5 7987 6 7989 8 7988 7 7987 6 7990 9 7988 7 7989 8 7991 18 7990 9 7989 8 7992 19 7990 9 7991 18 7993 12 7992 19 7991 18 7994 13 7992 19 7993 12 7995 14 7994 13 7993 12 7996 15 7994 13 7995 14 7998 2 7997 1 7997 0 7999 3 7997 1 7998 2 8000 4 7999 3 7998 2 8001 5 7999 3 8000 4 8002 6 8001 5 8000 4 8003 7 8001 5 8002 6 8004 8 8003 7 8002 6 8005 9 8003 7 8004 8 8006 18 8005 9 8004 8 8007 19 8005 9 8006 18 8008 12 8007 19 8006 18 8009 13 8007 19 8008 12 8010 14 8009 13 8008 12 8011 15 8009 13 8010 14 8013 2 8012 1 7997 0 8014 3 8012 1 8013 2 8015 4 8014 3 8013 2 8016 5 8014 3 8015 4 8017 6 8016 5 8015 4 8018 7 8016 5 8017 6 8019 8 8018 7 8017 6 8020 9 8018 7 8019 8 8021 18 8020 9 8019 8 8022 19 8020 9 8021 18 8023 12 8022 19 8021 18 8024 13 8022 19 8023 12 8025 14 8024 13 8023 12 8026 15 8024 13 8025 14 7998 2 7997 1 8012 0 8027 3 7997 1 7998 2 8028 4 8027 3 7998 2 8029 5 8027 3 8028 4 8030 6 8029 5 8028 4 8031 7 8029 5 8030 6 8032 8 8031 7 8030 6 8033 9 8031 7 8032 8 8034 18 8033 9 8032 8 8035 19 8033 9 8034 18 8036 12 8035 19 8034 18 8037 13 8035 19 8036 12 8038 14 8037 13 8036 12 8039 15 8037 13 8038 14 8041 2 8040 1 7997 0 8042 3 8040 1 8041 2 8043 4 8042 3 8041 2 8044 5 8042 3 8043 4 8045 6 8044 5 8043 4 8046 7 8044 5 8045 6 8047 8 8046 7 8045 6 8048 9 8046 7 8047 8 8049 18 8048 9 8047 8 8050 19 8048 9 8049 18 8051 12 8050 19 8049 18 8052 13 8050 19 8051 12 8053 14 8052 13 8051 12 8054 15 8052 13 8053 14 8056 2 8012 1 8055 0 8057 3 8012 1 8056 2 8058 4 8057 3 8056 2 8059 5 8057 3 8058 4 8060 6 8059 5 8058 4 8061 7 8059 5 8060 6 8062 8 8061 7 8060 6 8063 9 8061 7 8062 8 8064 18 8063 9 8062 8 8065 19 8063 9 8064 18 8066 12 8065 19 8064 18 8067 13 8065 19 8066 12 8068 14 8067 13 8066 12 8069 15 8067 13 8068 14 8041 2 8055 1 8070 0 8071 3 8055 1 8041 2 8072 4 8071 3 8041 2 8073 5 8071 3 8072 4 8074 6 8073 5 8072 4 8075 7 8073 5 8074 6 8076 8 8075 7 8074 6 8077 9 8075 7 8076 8 8078 18 8077 9 8076 8 8079 19 8077 9 8078 18 8080 12 8079 19 8078 18 8081 13 8079 19 8080 12 8082 14 8081 13 8080 12 8083 15 8081 13 8082 14 8086 2 8085 1 8084 0 8087 3 8085 1 8086 2 8088 4 8087 3 8086 2 8089 5 8087 3 8088 4 8090 6 8089 5 8088 4 8091 7 8089 5 8090 6 8092 8 8091 7 8090 6 8093 9 8091 7 8092 8 8094 18 8093 9 8092 8 8095 19 8093 9 8094 18 8096 12 8095 19 8094 18 8097 13 8095 19 8096 12 8098 14 8097 13 8096 12 8099 15 8097 13 8098 14 8101 2 8100 1 8085 0 8102 3 8100 1 8101 2 8103 4 8102 3 8101 2 8104 5 8102 3 8103 4 8105 6 8104 5 8103 4 8106 7 8104 5 8105 6 8107 8 8106 7 8105 6 8108 9 8106 7 8107 8 8109 18 8108 9 8107 8 8110 19 8108 9 8109 18 8111 12 8110 19 8109 18 8112 13 8110 19 8111 12 8113 14 8112 13 8111 12 8114 15 8112 13 8113 14 8115 2 8085 1 8100 0 8116 3 8085 1 8115 2 8117 4 8116 3 8115 2 8117 5 8116 3 8117 4 8118 6 8117 5 8117 4 8119 7 8117 5 8118 6 8120 8 8119 7 8118 6 8121 9 8119 7 8120 8 8122 18 8121 9 8120 8 8122 19 8121 9 8122 18 8123 12 8122 19 8122 18 8124 13 8122 19 8123 12 8125 14 8124 13 8123 12 8126 15 8124 13 8125 14 8128 2 8100 1 8127 0 8129 3 8100 1 8128 2 8130 4 8129 3 8128 2 8131 5 8129 3 8130 4 8132 6 8131 5 8130 4 8133 7 8131 5 8132 6 8134 8 8133 7 8132 6 8135 9 8133 7 8134 8 8136 18 8135 9 8134 8 8137 19 8135 9 8136 18 8138 12 8137 19 8136 18 8139 13 8137 19 8138 12 8140 14 8139 13 8138 12 8141 15 8139 13 8140 14 8143 2 8142 1 8084 0 8144 3 8142 1 8143 2 8145 4 8144 3 8143 2 8146 5 8144 3 8145 4 8147 6 8146 5 8145 4 8148 7 8146 5 8147 6 8149 8 8148 7 8147 6 8150 9 8148 7 8149 8 8151 18 8150 9 8149 8 8152 19 8150 9 8151 18 8153 12 8152 19 8151 18 8154 13 8152 19 8153 12 8155 14 8154 13 8153 12 8156 15 8154 13 8155 14 7968 2 7981 1 8157 0 8158 3 7981 1 7968 2 8159 4 8158 3 7968 2 8160 5 8158 3 8159 4 8161 6 8160 5 8159 4 8162 7 8160 5 8161 6 8163 8 8162 7 8161 6 8164 9 8162 7 8163 8 8165 18 8164 9 8163 8 8166 19 8164 9 8165 18 8167 12 8166 19 8165 18 8168 13 8166 19 8167 12 8169 14 8168 13 8167 12 8170 15 8168 13 8169 14 8171 2 7981 1 7967 0 8172 3 7981 1 8171 2 8173 4 8172 3 8171 2 8174 5 8172 3 8173 4 8175 6 8174 5 8173 4 8176 7 8174 5 8175 6 8177 8 8176 7 8175 6 8178 9 8176 7 8177 8 8179 18 8178 9 8177 8 8180 19 8178 9 8179 18 8181 12 8180 19 8179 18 8182 13 8180 19 8181 12 8183 14 8182 13 8181 12 8184 15 8182 13 8183 14 8186 2 7966 1 8185 0 8187 3 7966 1 8186 2 8188 4 8187 3 8186 2 8189 5 8187 3 8188 4 8190 6 8189 5 8188 4 8191 7 8189 5 8190 6 8192 8 8191 7 8190 6 8193 9 8191 7 8192 8 8194 18 8193 9 8192 8 8195 19 8193 9 8194 18 8196 12 8195 19 8194 18 8197 13 8195 19 8196 12 8198 14 8197 13 8196 12 8199 15 8197 13 8198 14 8202 2 8201 1 8200 0 8203 3 8201 1 8202 2 8204 4 8203 3 8202 2 8205 5 8203 3 8204 4 8206 6 8205 5 8204 4 8207 7 8205 5 8206 6 8208 8 8207 7 8206 6 8209 9 8207 7 8208 8 8210 18 8209 9 8208 8 8211 19 8209 9 8210 18 8212 12 8211 19 8210 18 8213 13 8211 19 8212 12 8214 14 8213 13 8212 12 8215 15 8213 13 8214 14 8203 2 8216 1 8201 0 8217 3 8216 1 8203 2 8218 4 8217 3 8203 2 8219 5 8217 3 8218 4 8220 6 8219 5 8218 4 8221 7 8219 5 8220 6 8222 8 8221 7 8220 6 8223 9 8221 7 8222 8 8224 18 8223 9 8222 8 8225 19 8223 9 8224 18 8226 12 8225 19 8224 18 8227 13 8225 19 8226 12 8228 14 8227 13 8226 12 8229 15 8227 13 8228 14 8202 2 8230 1 8216 0 8231 3 8230 1 8202 2 8232 4 8231 3 8202 2 8233 5 8231 3 8232 4 8234 6 8233 5 8232 4 8235 7 8233 5 8234 6 8236 8 8235 7 8234 6 8237 9 8235 7 8236 8 8238 18 8237 9 8236 8 8238 19 8237 9 8238 18 8239 12 8238 19 8238 18 8240 13 8238 19 8239 12 8241 14 8240 13 8239 12 8242 15 8240 13 8241 14 8245 2 8244 1 8243 0 8246 3 8244 1 8245 2 8247 4 8246 3 8245 2 8248 5 8246 3 8247 4 8249 6 8248 5 8247 4 8250 7 8248 5 8249 6 8251 8 8250 7 8249 6 8252 9 8250 7 8251 8 8253 18 8252 9 8251 8 8254 19 8252 9 8253 18 8255 12 8254 19 8253 18 8256 13 8254 19 8255 12 8257 14 8256 13 8255 12 8258 15 8256 13 8257 14 8260 2 8200 1 8259 0 8261 3 8200 1 8260 2 8262 4 8261 3 8260 2 8263 5 8261 3 8262 4 8264 6 8263 5 8262 4 8265 7 8263 5 8264 6 8266 8 8265 7 8264 6 8267 9 8265 7 8266 8 8268 18 8267 9 8266 8 8269 19 8267 9 8268 18 8270 12 8269 19 8268 18 8271 13 8269 19 8270 12 8272 14 8271 13 8270 12 8273 15 8271 13 8272 14 8245 2 8230 1 8243 0 8274 3 8230 1 8245 2 8275 4 8274 3 8245 2 8276 5 8274 3 8275 4 8277 6 8276 5 8275 4 8278 7 8276 5 8277 6 8279 8 8278 7 8277 6 8280 9 8278 7 8279 8 8281 18 8280 9 8279 8 8282 19 8280 9 8281 18 8283 12 8282 19 8281 18 8284 13 8282 19 8283 12 8285 14 8284 13 8283 12 8286 15 8284 13 8285 14 8289 2 8288 1 8287 0 8290 3 8288 1 8289 2 8291 4 8290 3 8289 2 8292 5 8290 3 8291 4 8293 6 8292 5 8291 4 8294 7 8292 5 8293 6 8295 8 8294 7 8293 6 8296 9 8294 7 8295 8 8297 18 8296 9 8295 8 8298 19 8296 9 8297 18 8299 12 8298 19 8297 18 8300 13 8298 19 8299 12 8301 14 8300 13 8299 12 8302 15 8300 13 8301 14 8289 2 8304 1 8303 0 8305 3 8304 1 8289 2 8306 4 8305 3 8289 2 8307 5 8305 3 8306 4 8308 6 8307 5 8306 4 8309 7 8307 5 8308 6 8310 8 8309 7 8308 6 8311 9 8309 7 8310 8 8312 18 8311 9 8310 8 8313 19 8311 9 8312 18 8314 12 8313 19 8312 18 8315 13 8313 19 8314 12 8316 14 8315 13 8314 12 8317 15 8315 13 8316 14 8320 2 8319 1 8318 0 8321 3 8319 1 8320 2 8322 4 8321 3 8320 2 8323 5 8321 3 8322 4 8324 6 8323 5 8322 4 8325 7 8323 5 8324 6 8326 8 8325 7 8324 6 8326 9 8325 7 8326 8 8327 18 8326 9 8326 8 8328 19 8326 9 8327 18 8329 12 8328 19 8327 18 8330 13 8328 19 8329 12 8331 14 8330 13 8329 12 8332 15 8330 13 8331 14 8334 2 8287 1 8333 0 8335 3 8287 1 8334 2 8336 4 8335 3 8334 2 8337 5 8335 3 8336 4 8338 6 8337 5 8336 4 8339 7 8337 5 8338 6 8340 8 8339 7 8338 6 8341 9 8339 7 8340 8 8342 18 8341 9 8340 8 8343 19 8341 9 8342 18 8344 12 8343 19 8342 18 8345 13 8343 19 8344 12 8346 14 8345 13 8344 12 8347 15 8345 13 8346 14 8350 2 8349 1 8348 0 8351 3 8349 1 8350 2 8352 4 8351 3 8350 2 8353 5 8351 3 8352 4 8354 6 8353 5 8352 4 8355 7 8353 5 8354 6 8356 8 8355 7 8354 6 8357 9 8355 7 8356 8 8358 18 8357 9 8356 8 8359 19 8357 9 8358 18 8360 12 8359 19 8358 18 8361 13 8359 19 8360 12 8362 14 8361 13 8360 12 8363 15 8361 13 8362 14 8365 2 8364 1 7967 0 8366 3 8364 1 8365 2 8367 4 8366 3 8365 2 8368 5 8366 3 8367 4 8369 6 8368 5 8367 4 8370 7 8368 5 8369 6 8371 8 8370 7 8369 6 8372 9 8370 7 8371 8 8373 18 8372 9 8371 8 8374 19 8372 9 8373 18 8375 12 8374 19 8373 18 8376 13 8374 19 8375 12 8377 14 8376 13 8375 12 8378 15 8376 13 8377 14 2092 2 8379 1 8379 0 2092 3 8379 1 2092 2 8380 4 2092 3 2092 2 8381 5 2092 3 8380 4 8382 6 8381 5 8380 4 8383 7 8381 5 8382 6 8384 8 8383 7 8382 6 8385 9 8383 7 8384 8 8386 18 8385 9 8384 8 8387 19 8385 9 8386 18 8388 12 8387 19 8386 18 8389 13 8387 19 8388 12 8390 14 8389 13 8388 12 8391 15 8389 13 8390 14 8392 2 2090 1 2091 0 8393 3 2090 1 8392 2 8394 4 8393 3 8392 2 8395 5 8393 3 8394 4 8396 6 8395 5 8394 4 8397 7 8395 5 8396 6 8398 8 8397 7 8396 6 8399 9 8397 7 8398 8 8400 18 8399 9 8398 8 8401 19 8399 9 8400 18 8402 12 8401 19 8400 18 8403 13 8401 19 8402 12 8404 14 8403 13 8402 12 8405 15 8403 13 8404 14 8408 22 8407 21 8406 20 8409 23 8407 21 8408 22 8410 24 8409 23 8408 22 8413 22 8412 21 8411 20 8414 23 8412 21 8413 22 8415 24 8414 23 8413 22 8418 22 8417 21 8416 20 8419 23 8417 21 8418 22 8420 24 8419 23 8418 22 8423 22 8422 21 8421 20 8424 23 8422 21 8423 22 8425 24 8424 23 8423 22 8428 22 8427 21 8426 20 8429 23 8427 21 8428 22 8430 24 8429 23 8428 22 8433 22 8432 21 8431 20 8434 23 8432 21 8433 22 8435 24 8434 23 8433 22 8438 22 8437 21 8436 20 8439 23 8437 21 8438 22 8440 24 8439 23 8438 22 8443 22 8442 21 8441 20 8444 23 8442 21 8443 22 8445 24 8444 23 8443 22 8448 22 8447 21 8446 20 8449 23 8447 21 8448 22 8450 24 8449 23 8448 22 8453 22 8452 21 8451 20 8454 23 8452 21 8453 22 8455 24 8454 23 8453 22 8458 22 8457 21 8456 20 8459 23 8457 21 8458 22 8460 24 8459 23 8458 22 8463 22 8462 21 8461 20 8464 23 8462 21 8463 22 8465 24 8464 23 8463 22 8468 22 8467 21 8466 20 8469 23 8467 21 8468 22 8470 24 8469 23 8468 22 8473 22 8472 21 8471 20 8474 23 8472 21 8473 22 8475 24 8474 23 8473 22 8478 22 8477 21 8476 20 8479 23 8477 21 8478 22 8480 24 8479 23 8478 22 8483 22 8482 21 8481 20 8484 23 8482 21 8483 22 8485 24 8484 23 8483 22 8488 22 8487 21 8486 20 8489 23 8487 21 8488 22 8490 24 8489 23 8488 22 8493 22 8492 21 8491 20 8494 23 8492 21 8493 22 8495 24 8494 23 8493 22 8498 22 8497 21 8496 20 8499 23 8497 21 8498 22 8500 24 8499 23 8498 22 8503 22 8502 21 8501 20 8504 23 8502 21 8503 22 8505 24 8504 23 8503 22 8508 22 8507 21 8506 20 8509 23 8507 21 8508 22 8510 24 8509 23 8508 22 8513 22 8512 21 8511 20 8514 23 8512 21 8513 22 8515 24 8514 23 8513 22 8518 22 8517 21 8516 20 8519 23 8517 21 8518 22 8520 24 8519 23 8518 22 8523 22 8522 21 8521 20 8524 23 8522 21 8523 22 8525 24 8524 23 8523 22 8528 22 8527 21 8526 20 8529 23 8527 21 8528 22 8530 24 8529 23 8528 22 8533 22 8532 21 8531 20 8534 23 8532 21 8533 22 8535 24 8534 23 8533 22 8538 22 8537 21 8536 20 8539 23 8537 21 8538 22 8540 24 8539 23 8538 22 8543 22 8542 21 8541 20 8544 23 8542 21 8543 22 8545 24 8544 23 8543 22 8548 22 8547 21 8546 20 8549 23 8547 21 8548 22 8550 24 8549 23 8548 22 8553 22 8552 21 8551 20 8554 23 8552 21 8553 22 8555 24 8554 23 8553 22 8558 22 8557 21 8556 20 8559 23 8557 21 8558 22 8560 24 8559 23 8558 22 8563 22 8562 21 8561 20 8564 23 8562 21 8563 22 8565 24 8564 23 8563 22 8568 22 8567 21 8566 20 8569 23 8567 21 8568 22 8570 24 8569 23 8568 22 8573 22 8572 21 8571 20 8574 23 8572 21 8573 22 8575 24 8574 23 8573 22 8578 22 8577 21 8576 20 8579 23 8577 21 8578 22 8580 24 8579 23 8578 22 8583 22 8582 21 8581 20 8584 23 8582 21 8583 22 8585 24 8584 23 8583 22 8588 22 8587 21 8586 20 8589 23 8587 21 8588 22 8590 24 8589 23 8588 22 8593 22 8592 21 8591 20 8594 23 8592 21 8593 22 8595 24 8594 23 8593 22 8598 22 8597 21 8596 20 8599 23 8597 21 8598 22 8600 24 8599 23 8598 22 8603 22 8602 21 8601 20 8604 23 8602 21 8603 22 8605 24 8604 23 8603 22 8608 22 8607 21 8606 20 8609 23 8607 21 8608 22 8610 24 8609 23 8608 22 8613 22 8612 21 8611 20 8614 23 8612 21 8613 22 8615 24 8614 23 8613 22 8618 22 8617 21 8616 20 8619 23 8617 21 8618 22 8620 24 8619 23 8618 22 8623 22 8622 21 8621 20 8624 23 8622 21 8623 22 8625 24 8624 23 8623 22 8628 22 8627 21 8626 20 8629 23 8627 21 8628 22 8630 24 8629 23 8628 22 8633 22 8632 21 8631 20 8634 23 8632 21 8633 22 8635 24 8634 23 8633 22 8638 22 8637 21 8636 20 8639 23 8637 21 8638 22 8640 24 8639 23 8638 22 8643 22 8642 21 8641 20 8644 23 8642 21 8643 22 8645 24 8644 23 8643 22 8648 22 8647 21 8646 20 8649 23 8647 21 8648 22 8650 24 8649 23 8648 22 8653 22 8652 21 8651 20 8654 23 8652 21 8653 22 8655 24 8654 23 8653 22 8658 22 8657 21 8656 20 8659 23 8657 21 8658 22 8660 24 8659 23 8658 22 8663 22 8662 21 8661 20 8664 23 8662 21 8663 22 8665 24 8664 23 8663 22 8668 22 8667 21 8666 20 8669 23 8667 21 8668 22 8670 24 8669 23 8668 22 8673 22 8672 21 8671 20 8674 23 8672 21 8673 22 8675 24 8674 23 8673 22 8678 22 8677 21 8676 20 8679 23 8677 21 8678 22 8680 24 8679 23 8678 22 8683 22 8682 21 8681 20 8684 23 8682 21 8683 22 8685 24 8684 23 8683 22 8688 22 8687 21 8686 20 8689 23 8687 21 8688 22 8690 24 8689 23 8688 22 8693 22 8692 21 8691 20 8694 23 8692 21 8693 22 8695 24 8694 23 8693 22 8698 22 8697 21 8696 20 8699 23 8697 21 8698 22 8700 24 8699 23 8698 22 8703 22 8702 21 8701 20 8704 23 8702 21 8703 22 8705 24 8704 23 8703 22 8708 22 8707 21 8706 20 8709 23 8707 21 8708 22 8710 24 8709 23 8708 22 8713 22 8712 21 8711 20 8714 23 8712 21 8713 22 8715 24 8714 23 8713 22 8718 22 8717 21 8716 20 8719 23 8717 21 8718 22 8720 24 8719 23 8718 22 8723 22 8722 21 8721 20 8724 23 8722 21 8723 22 8725 24 8724 23 8723 22 8728 22 8727 21 8726 20 8729 23 8727 21 8728 22 8730 24 8729 23 8728 22 8733 22 8732 21 8731 20 8734 23 8732 21 8733 22 8735 24 8734 23 8733 22 8738 22 8737 21 8736 20 8739 23 8737 21 8738 22 8740 24 8739 23 8738 22 8743 22 8742 21 8741 20 8744 23 8742 21 8743 22 8745 24 8744 23 8743 22 8748 22 8747 21 8746 20 8749 23 8747 21 8748 22 8750 24 8749 23 8748 22 8753 22 8752 21 8751 20 8754 23 8752 21 8753 22 8755 24 8754 23 8753 22 8758 22 8757 21 8756 20 8759 23 8757 21 8758 22 8760 24 8759 23 8758 22 8763 22 8762 21 8761 20 8764 23 8762 21 8763 22 8765 24 8764 23 8763 22 8768 22 8767 21 8766 20 8769 23 8767 21 8768 22 8770 24 8769 23 8768 22 8773 22 8772 21 8771 20 8774 23 8772 21 8773 22 8775 24 8774 23 8773 22 8778 22 8777 21 8776 20 8779 23 8777 21 8778 22 8780 24 8779 23 8778 22 8783 22 8782 21 8781 20 8784 23 8782 21 8783 22 8785 24 8784 23 8783 22 8788 22 8787 21 8786 20 8789 23 8787 21 8788 22 8790 24 8789 23 8788 22 8793 22 8792 21 8791 20 8794 23 8792 21 8793 22 8795 24 8794 23 8793 22 8798 22 8797 21 8796 20 8799 23 8797 21 8798 22 8800 24 8799 23 8798 22 8803 22 8802 21 8801 20 8804 23 8802 21 8803 22 8805 24 8804 23 8803 22 8808 22 8807 21 8806 20 8809 23 8807 21 8808 22 8810 24 8809 23 8808 22 8813 22 8812 21 8811 20 8814 23 8812 21 8813 22 8815 24 8814 23 8813 22 8818 22 8817 21 8816 20 8819 23 8817 21 8818 22 8820 24 8819 23 8818 22 8823 22 8822 21 8821 20 8824 23 8822 21 8823 22 8825 24 8824 23 8823 22 8828 22 8827 21 8826 20 8829 23 8827 21 8828 22 8830 24 8829 23 8828 22 8833 22 8832 21 8831 20 8834 23 8832 21 8833 22 8835 24 8834 23 8833 22 8838 22 8837 21 8836 20 8839 23 8837 21 8838 22 8840 24 8839 23 8838 22 8843 22 8842 21 8841 20 8844 23 8842 21 8843 22 8845 24 8844 23 8843 22 8848 22 8847 21 8846 20 8849 23 8847 21 8848 22 8850 24 8849 23 8848 22 8853 22 8852 21 8851 20 8854 23 8852 21 8853 22 8855 24 8854 23 8853 22 8858 22 8857 21 8856 20 8859 23 8857 21 8858 22 8860 24 8859 23 8858 22 8863 22 8862 21 8861 20 8864 23 8862 21 8863 22 8865 24 8864 23 8863 22 8868 22 8867 21 8866 20 8869 23 8867 21 8868 22 8870 24 8869 23 8868 22 8873 22 8872 21 8871 20 8874 23 8872 21 8873 22 8875 24 8874 23 8873 22 8878 22 8877 21 8876 20 8879 23 8877 21 8878 22 8880 24 8879 23 8878 22 8883 22 8882 21 8881 20 8884 23 8882 21 8883 22 8885 24 8884 23 8883 22 8888 22 8887 21 8886 20 8889 23 8887 21 8888 22 8890 24 8889 23 8888 22 8893 22 8892 21 8891 20 8894 23 8892 21 8893 22 8895 24 8894 23 8893 22 8898 22 8897 21 8896 20 8899 23 8897 21 8898 22 8900 24 8899 23 8898 22 8903 22 8902 21 8901 20 8904 23 8902 21 8903 22 8905 24 8904 23 8903 22 8908 22 8907 21 8906 20 8909 23 8907 21 8908 22 8910 24 8909 23 8908 22 8913 22 8912 21 8911 20 8914 23 8912 21 8913 22 8915 24 8914 23 8913 22 8918 22 8917 21 8916 20 8919 23 8917 21 8918 22 8920 24 8919 23 8918 22 8923 22 8922 21 8921 20 8924 23 8922 21 8923 22 8925 24 8924 23 8923 22 8928 22 8927 21 8926 20 8929 23 8927 21 8928 22 8930 24 8929 23 8928 22 8933 22 8932 21 8931 20 8934 23 8932 21 8933 22 8935 24 8934 23 8933 22 8938 22 8937 21 8936 20 8939 23 8937 21 8938 22 8940 24 8939 23 8938 22 8943 22 8942 21 8941 20 8944 23 8942 21 8943 22 8945 24 8944 23 8943 22 8948 22 8947 21 8946 20 8949 23 8947 21 8948 22 8950 24 8949 23 8948 22 8953 22 8952 21 8951 20 8954 23 8952 21 8953 22 8955 24 8954 23 8953 22 8958 22 8957 21 8956 20 8959 23 8957 21 8958 22 8960 24 8959 23 8958 22 8963 22 8962 21 8961 20 8964 23 8962 21 8963 22 8965 24 8964 23 8963 22 8968 22 8967 21 8966 20 8969 23 8967 21 8968 22 8970 24 8969 23 8968 22 8973 22 8972 21 8971 20 8974 23 8972 21 8973 22 8975 24 8974 23 8973 22 8978 22 8977 21 8976 20 8979 23 8977 21 8978 22 8980 24 8979 23 8978 22 8983 22 8982 21 8981 20 8984 23 8982 21 8983 22 8985 24 8984 23 8983 22 8988 22 8987 21 8986 20 8989 23 8987 21 8988 22 8990 24 8989 23 8988 22 8993 22 8992 21 8991 20 8994 23 8992 21 8993 22 8995 24 8994 23 8993 22 8998 22 8997 21 8996 20 8999 23 8997 21 8998 22 9000 24 8999 23 8998 22 9003 22 9002 21 9001 20 9004 23 9002 21 9003 22 9005 24 9004 23 9003 22 9008 22 9007 21 9006 20 9009 23 9007 21 9008 22 9010 24 9009 23 9008 22 9013 22 9012 21 9011 20 9014 23 9012 21 9013 22 9015 24 9014 23 9013 22 9018 22 9017 21 9016 20 9019 23 9017 21 9018 22 9020 24 9019 23 9018 22 9023 22 9022 21 9021 20 9024 23 9022 21 9023 22 9025 24 9024 23 9023 22 9028 22 9027 21 9026 20 9029 23 9027 21 9028 22 9030 24 9029 23 9028 22 9033 22 9032 21 9031 20 9034 23 9032 21 9033 22 9035 24 9034 23 9033 22 9038 22 9037 21 9036 20 9039 23 9037 21 9038 22 9040 24 9039 23 9038 22 9043 22 9042 21 9041 20 9044 23 9042 21 9043 22 9045 24 9044 23 9043 22 9048 22 9047 21 9046 20 9049 23 9047 21 9048 22 9050 24 9049 23 9048 22 9053 22 9052 21 9051 20 9054 23 9052 21 9053 22 9055 24 9054 23 9053 22 9058 22 9057 21 9056 20 9059 23 9057 21 9058 22 9060 24 9059 23 9058 22 9063 22 9062 21 9061 20 9064 23 9062 21 9063 22 9065 24 9064 23 9063 22 9068 22 9067 21 9066 20 9069 23 9067 21 9068 22 9070 24 9069 23 9068 22 9073 22 9072 21 9071 20 9074 23 9072 21 9073 22 9075 24 9074 23 9073 22 9078 22 9077 21 9076 20 9079 23 9077 21 9078 22 9080 24 9079 23 9078 22 9083 22 9082 21 9081 20 9084 23 9082 21 9083 22 9085 24 9084 23 9083 22 8406 20 8410 24 8408 22 8416 20 8420 24 8418 22 8426 20 8430 24 8428 22 8436 20 8440 24 8438 22 8446 20 8450 24 8448 22 8456 20 8460 24 8458 22 8466 20 8470 24 8468 22 8476 20 8480 24 8478 22 8486 20 8490 24 8488 22 8496 20 8500 24 8498 22 8506 20 8510 24 8508 22 8516 20 8520 24 8518 22 8526 20 8530 24 8528 22 8536 20 8540 24 8538 22 8546 20 8550 24 8548 22 8556 20 8560 24 8558 22 8566 20 8570 24 8568 22 8576 20 8580 24 8578 22 8586 20 8590 24 8588 22 8596 20 8600 24 8598 22 8606 20 8610 24 8608 22 8616 20 8620 24 8618 22 8626 20 8630 24 8628 22 8636 20 8640 24 8638 22 8646 20 8650 24 8648 22 8656 20 8660 24 8658 22 8666 20 8670 24 8668 22 8676 20 8680 24 8678 22 8686 20 8690 24 8688 22 8696 20 8700 24 8698 22 8706 20 8710 24 8708 22 8716 20 8720 24 8718 22 8726 20 8730 24 8728 22 8736 20 8740 24 8738 22 8746 20 8750 24 8748 22 8756 20 8760 24 8758 22 8766 20 8770 24 8768 22 8776 20 8780 24 8778 22 8786 20 8790 24 8788 22 8796 20 8800 24 8798 22 8806 20 8810 24 8808 22 8816 20 8820 24 8818 22 8826 20 8830 24 8828 22 8836 20 8840 24 8838 22 8846 20 8850 24 8848 22 8856 20 8860 24 8858 22 8866 20 8870 24 8868 22 8876 20 8880 24 8878 22 8886 20 8890 24 8888 22 8896 20 8900 24 8898 22 8906 20 8910 24 8908 22 8916 20 8920 24 8918 22 8926 20 8930 24 8928 22 8936 20 8940 24 8938 22 8946 20 8950 24 8948 22 8956 20 8960 24 8958 22 8966 20 8970 24 8968 22 8976 20 8980 24 8978 22 8986 20 8990 24 8988 22 8996 20 9000 24 8998 22 9006 20 9010 24 9008 22 9016 20 9020 24 9018 22 9026 20 9030 24 9028 22 9036 20 9040 24 9038 22 9046 20 9050 24 9048 22 9056 20 9060 24 9058 22 9066 20 9070 24 9068 22 9076 20 9080 24 9078 22 8491 20 8495 24 8493 22 8751 20 8755 24 8753 22 8581 20 8585 24 8583 22 8761 20 8765 24 8763 22 8451 20 8455 24 8453 22 8771 20 8775 24 8773 22 8591 20 8595 24 8593 22 8781 20 8785 24 8783 22 8501 20 8505 24 8503 22 8791 20 8795 24 8793 22 8601 20 8605 24 8603 22 8801 20 8805 24 8803 22 8431 20 8435 24 8433 22 8811 20 8815 24 8813 22 8611 20 8615 24 8613 22 8821 20 8825 24 8823 22 8511 20 8515 24 8513 22 8831 20 8835 24 8833 22 8621 20 8625 24 8623 22 8841 20 8845 24 8843 22 8461 20 8465 24 8463 22 8851 20 8855 24 8853 22 8631 20 8635 24 8633 22 8861 20 8865 24 8863 22 8521 20 8525 24 8523 22 8871 20 8875 24 8873 22 8641 20 8645 24 8643 22 8881 20 8885 24 8883 22 8421 20 8425 24 8423 22 8891 20 8895 24 8893 22 8651 20 8655 24 8653 22 8901 20 8905 24 8903 22 8531 20 8535 24 8533 22 8911 20 8915 24 8913 22 8661 20 8665 24 8663 22 8921 20 8925 24 8923 22 8471 20 8475 24 8473 22 8931 20 8935 24 8933 22 8671 20 8675 24 8673 22 8941 20 8945 24 8943 22 8541 20 8545 24 8543 22 8951 20 8955 24 8953 22 8681 20 8685 24 8683 22 8961 20 8965 24 8963 22 8441 20 8445 24 8443 22 8971 20 8975 24 8973 22 8691 20 8695 24 8693 22 8981 20 8985 24 8983 22 8551 20 8555 24 8553 22 8991 20 8995 24 8993 22 8701 20 8705 24 8703 22 9001 20 9005 24 9003 22 8481 20 8485 24 8483 22 9011 20 9015 24 9013 22 8711 20 8715 24 8713 22 9021 20 9025 24 9023 22 8561 20 8565 24 8563 22 9031 20 9035 24 9033 22 8721 20 8725 24 8723 22 9041 20 9045 24 9043 22 8411 20 8415 24 8413 22 9051 20 9055 24 9053 22 8731 20 8735 24 8733 22 9061 20 9065 24 9063 22 8571 20 8575 24 8573 22 9071 20 9075 24 9073 22 8741 20 8745 24 8743 22 9081 20 9085 24 9083 22

+
+
+
+ + + + -262 5 -949 -262 4 -947 -258 18 -952 -258 18 -951 -255 26 -954 -255 25 -953 -251 31 -955 -251 30 -955 -246 36 -957 -247 35 -958 -242 39 -959 -243 38 -960 -237 40 -961 -237 40 -963 -231 39 -964 -231 39 -965 -226 38 -967 -226 39 -968 -260 5 -947 -263 4 -949 -259 18 -953 -261 18 -955 -258 25 -957 -260 25 -959 -257 31 -962 -259 32 -963 -256 36 -968 -257 37 -968 -254 40 -973 -254 41 -973 -251 42 -979 -251 43 -978 -247 43 -984 -247 44 -983 -243 43 -989 -242 44 -988 -275 2 -961 -274 1 -960 -273 14 -963 -272 14 -962 -270 21 -964 -270 20 -964 -266 27 -966 -267 25 -967 -263 31 -968 -263 30 -969 -258 34 -971 -259 33 -972 -254 35 -974 -255 35 -975 -250 35 -977 -250 35 -978 -246 34 -980 -246 35 -981 -948 2 -35 -947 1 -34 -947 14 -37 -946 13 -37 -945 21 -39 -944 20 -39 -942 26 -41 -942 25 -42 -939 30 -45 -940 30 -46 -936 33 -49 -937 33 -50 -932 35 -53 -934 35 -54 -929 35 -57 -930 35 -58 -926 34 -61 -926 34 -62 -894 5 20 -895 5 22 -890 19 18 -890 18 20 -886 26 19 -886 25 19 -882 32 19 -882 31 18 -877 36 19 -877 35 18 -872 40 19 -872 39 17 -866 41 19 -866 40 17 -860 40 18 -860 40 17 -854 38 18 -854 39 17 -894 8 -225 -896 7 -225 -891 21 -222 -892 21 -221 -889 28 -218 -890 28 -219 -888 34 -214 -887 33 -215 -886 39 -210 -885 38 -211 -883 42 -206 -882 41 -207 -881 43 -201 -879 43 -202 -878 42 -195 -876 42 -196 -875 41 -190 -874 42 -191 -61 -7 -991 -60 -8 -990 -61 6 -994 -59 5 -993 -58 13 -996 -58 12 -995 -55 20 -998 -56 19 -998 -53 25 -1001 -54 24 -1002 -50 29 -1004 -51 28 -1005 -47 30 -1009 -48 30 -1010 -43 30 -1014 -44 31 -1015 -40 30 -1019 -41 31 -1020 -59 -7 -990 -62 -8 -991 -64 5 -995 -63 13 -997 -66 13 -998 -65 20 -1001 -67 20 -1001 -66 25 -1006 -67 26 -1005 -67 29 -1011 -68 31 -1010 -68 33 -1017 -68 34 -1016 -67 35 -1023 -67 36 -1022 -66 36 -1029 -65 37 -1029 818 -2 352 820 -2 352 817 12 349 818 11 349 816 19 346 817 18 346 816 25 342 815 24 343 814 30 338 813 29 339 812 34 334 811 33 335 809 35 330 808 35 330 806 35 324 805 36 325 802 35 320 801 35 320 820 -2 351 818 -2 353 816 12 350 815 11 353 813 19 350 812 19 352 810 26 350 809 27 352 805 32 349 805 33 350 800 36 348 800 38 349 795 40 346 795 41 346 789 42 343 790 43 343 784 43 340 785 44 339 807 -3 367 808 -4 366 808 9 365 808 8 364 807 16 363 807 15 363 806 22 359 805 21 360 804 26 356 803 26 357 802 30 353 800 30 354 798 32 349 797 32 350 795 33 345 794 33 346 791 33 341 668 0 634 670 0 633 663 13 633 664 13 631 660 20 630 660 19 630 656 26 627 656 25 628 652 31 625 652 30 626 648 33 622 647 33 624 643 34 619 642 34 620 638 33 616 637 33 617 633 32 613 632 32 613 669 0 632 669 0 635 662 13 634 662 13 636 658 20 635 658 20 638 653 26 637 654 26 639 648 31 638 648 32 640 642 34 640 642 35 640 636 36 640 636 37 640 629 37 640 630 38 639 623 37 639 623 38 638 665 -2 651 666 -3 650 662 10 651 662 9 649 659 16 649 659 15 649 656 21 647 655 20 647 651 25 645 651 24 646 647 28 643 646 27 644 642 29 641 641 29 642 637 29 639 636 29 640 632 28 637 -78 -10 -996 -77 -11 -995 -78 2 -997 -77 1 -997 -76 9 -998 -76 8 -998 -74 15 -1000 -75 13 -1001 -72 19 -1004 -74 18 -1004 -70 23 -1008 -72 22 -1008 -68 25 -1012 -70 25 -1013 -66 26 -1017 -67 26 -1018 -64 26 -1022 -719 0 590 -721 -1 591 -714 12 589 -715 12 590 -710 19 590 -711 18 590 -706 25 591 -706 24 590 -701 29 592 -701 28 591 -696 32 593 -696 32 591 -691 33 594 -690 33 592 -684 32 595 -684 32 594 -679 31 596 -678 31 595 -720 0 592 -720 -1 589 -714 12 588 -715 11 585 -711 19 585 -712 19 582 -707 25 581 -708 25 580 -703 29 578 -704 30 577 -698 33 574 -698 34 574 -692 35 571 -692 36 572 -686 36 569 -686 37 570 -680 36 568 -680 36 569 -723 -3 572 -723 -4 574 -720 8 572 -720 7 573 -717 15 573 -717 14 572 -713 20 573 -713 19 572 -708 24 574 -708 23 572 -703 27 574 -703 26 572 -698 28 573 -698 28 572 -693 28 573 -692 28 572 -687 27 574 -687 27 573 -897 8 -169 -899 8 -168 -892 22 -167 -893 21 -166 -889 29 -165 -890 28 -165 -886 35 -162 -886 34 -163 -882 40 -159 -882 39 -161 -878 43 -157 -877 42 -158 -874 44 -153 -873 43 -155 -868 43 -150 -868 43 -151 -863 42 -147 -300 2 -970 -299 2 -969 -300 16 -975 -299 15 -974 -299 23 -979 -299 22 -978 -297 29 -982 -298 28 -982 -295 34 -987 -296 33 -987 -294 37 -991 -295 36 -992 -292 38 -997 -293 37 -997 -290 37 -1003 -291 37 -1003 -288 36 -1008 -289 36 -1009 893 1 -149 895 0 -150 891 15 -150 891 14 -152 889 23 -153 889 22 -153 886 29 -155 886 28 -155 882 34 -158 882 33 -156 878 37 -160 878 37 -158 873 39 -162 872 39 -160 867 39 -164 866 39 -163 861 38 -166 861 39 -165 894 1 -151 894 0 -148 891 15 -149 891 15 -147 888 23 -148 889 23 -145 885 30 -146 886 30 -144 881 36 -144 882 36 -143 876 40 -141 877 41 -141 871 43 -140 872 45 -140 865 46 -139 865 47 -140 859 47 -139 859 48 -140 894 0 -131 894 0 -132 893 13 -132 893 12 -133 891 20 -134 891 19 -134 889 25 -136 888 24 -135 885 30 -138 884 29 -136 881 34 -139 880 33 -137 876 36 -140 875 36 -139 870 36 -141 870 37 -140 865 36 -142 865 37 -141 205 2 -885 203 1 -887 203 16 -883 202 15 -884 200 23 -881 200 22 -881 197 29 -879 198 28 -878 194 34 -875 196 33 -875 192 38 -872 193 37 -871 189 40 -867 190 39 -866 186 39 -861 187 40 -861 183 39 -856 184 40 -855 202 1 -886 205 1 -886 204 16 -883 206 15 -882 205 24 -880 207 23 -880 207 30 -877 208 31 -877 208 36 -872 209 37 -873 210 41 -867 210 42 -868 210 44 -862 210 45 -862 210 46 -856 209 47 -856 209 48 -849 209 48 -850 505 9 782 506 9 784 508 19 776 509 19 777 511 25 772 511 24 773 514 29 769 513 28 769 517 32 765 516 31 764 520 34 761 519 33 760 524 33 757 522 33 756 527 31 753 526 32 752 530 29 749 530 30 749 507 9 783 505 8 783 507 19 775 505 19 775 507 25 770 505 25 770 506 29 765 505 29 765 506 32 759 505 33 760 505 34 754 505 35 754 506 35 748 506 36 748 507 35 742 508 36 742 509 33 737 509 34 737 490 7 778 491 6 779 492 17 773 493 16 774 494 22 770 494 21 770 497 26 767 497 25 766 500 29 763 499 28 762 502 30 758 501 29 758 504 30 754 503 30 753 507 29 750 506 29 749 509 27 747 508 28 746 808 0 -576 807 0 -574 813 13 -576 812 13 -575 816 21 -575 816 20 -575 820 27 -574 820 26 -574 825 31 -572 825 30 -574 830 34 -571 830 33 -573 835 35 -570 836 35 -572 841 34 -569 842 35 -570 847 33 -568 848 34 -568 808 0 -574 807 0 -576 813 13 -577 812 13 -580 816 21 -580 815 20 -583 820 27 -583 819 27 -585 824 31 -587 823 32 -588 829 35 -590 829 36 -590 835 37 -593 835 39 -592 841 38 -594 841 39 -594 847 38 -595 847 39 -595 805 -2 -593 805 -3 -592 808 10 -594 808 9 -593 811 16 -593 811 15 -593 815 22 -592 815 21 -593 819 26 -591 819 25 -593 824 29 -591 824 28 -593 829 30 -591 830 30 -592 835 30 -591 835 30 -592 840 29 -590 840 30 -591 222 1 -883 221 0 -883 221 13 -882 220 12 -882 219 20 -881 219 19 -880 216 26 -879 217 25 -878 214 31 -875 216 30 -874 213 34 -871 214 34 -870 211 36 -866 212 36 -866 209 37 -861 210 38 -861 207 37 -856 208 37 -856 -298 3 -970 -301 2 -970 -301 16 -975 -304 15 -975 -304 23 -979 -306 23 -978 -307 29 -983 -308 29 -982 -309 34 -988 -310 35 -987 -312 37 -993 -312 39 -992 -314 39 -999 -314 41 -999 -315 41 -1005 -314 42 -1005 -315 41 -1012 -315 42 -1012 -318 0 -969 -317 0 -969 -318 12 -972 -317 11 -972 -317 19 -975 -317 18 -975 -316 24 -979 -316 23 -979 -315 28 -983 -316 27 -983 -314 31 -988 -315 31 -988 -313 33 -993 -315 32 -994 -312 33 -998 -313 33 -999 -311 32 -1004 -312 32 -1004 -898 9 -167 -898 8 -170 -892 22 -168 -892 21 -171 -888 29 -170 -888 29 -172 -883 35 -171 -883 35 -173 -878 40 -173 -878 41 -174 -872 43 -174 -873 45 -175 -866 45 -175 -866 47 -174 -859 47 -174 -860 48 -173 -853 47 -173 -853 48 -172 -887 0 514 -885 -1 512 -892 12 515 -891 12 513 -896 19 514 -895 18 513 -900 25 512 -900 24 513 -905 29 511 -905 28 513 -910 32 510 -910 32 512 -915 33 509 -916 33 511 -921 32 508 -922 32 509 -927 31 507 -927 31 508 -886 0 512 -886 -1 515 -892 12 516 -891 11 518 -895 19 519 -894 19 521 -899 25 522 -898 25 524 -903 29 526 -903 30 526 -909 33 529 -908 34 529 -914 35 532 -914 36 532 -920 36 534 -920 37 533 -927 36 535 -927 36 534 -883 -3 531 -883 -4 530 -886 8 532 -886 7 531 -889 15 531 -890 14 531 -893 20 530 -894 19 531 -898 24 530 -898 23 531 -903 27 530 -903 26 532 -908 28 530 -909 28 532 -914 28 530 -914 28 531 -919 27 530 -893 6 -186 -894 5 -185 -891 18 -185 -891 17 -184 -888 25 -183 -888 24 -183 -885 30 -181 -884 29 -182 -881 34 -179 -880 33 -180 -876 37 -177 -876 37 -178 -872 39 -175 -871 38 -176 -867 39 -173 -866 39 -174 -862 38 -171 474 4 777 476 4 778 472 17 772 474 17 773 472 24 768 473 23 769 473 30 764 472 29 764 473 34 759 472 33 759 473 37 754 471 37 754 473 38 748 472 38 748 473 37 742 472 37 742 473 36 736 472 36 736 476 4 777 473 3 778 471 17 773 469 17 774 467 24 770 465 24 771 464 30 767 462 30 768 459 35 763 459 36 764 455 38 758 455 39 759 451 40 753 452 41 754 448 41 748 449 42 748 446 41 742 447 41 741 457 1 784 459 0 784 456 13 781 457 13 780 456 20 778 456 19 777 456 25 773 455 24 773 456 29 769 454 28 769 455 32 764 453 31 764 454 33 759 453 33 759 453 33 753 452 33 753 453 32 748 452 32 748 -896 8 -224 -894 7 -226 -890 21 -223 -888 21 -225 -886 28 -222 -884 28 -224 -881 34 -221 -880 35 -223 -875 39 -220 -875 40 -221 -869 42 -218 -870 44 -219 -864 45 -216 -864 46 -216 -858 46 -212 -859 47 -212 -854 46 -208 -854 47 -208 -883 5 -239 -884 4 -238 -881 17 -237 -881 16 -236 -879 24 -234 -879 23 -234 -878 29 -231 -877 28 -231 -875 34 -227 -874 33 -228 -872 37 -223 -871 36 -224 -869 38 -219 -867 38 -220 -865 38 -215 -864 38 -215 -862 37 -211 -862 38 -211 -894 5 22 -895 5 20 -890 19 17 -891 18 15 -888 26 14 -889 25 12 -885 32 10 -886 32 8 -882 37 5 -883 38 5 -877 40 1 -878 41 1 -873 42 -2 -873 44 -2 -867 43 -5 -867 45 -5 -861 44 -8 -861 44 -7 702 -1 -644 704 -2 -645 698 11 -646 699 11 -647 695 18 -649 696 17 -649 692 24 -652 692 23 -652 689 29 -656 688 28 -654 685 32 -659 684 31 -658 681 33 -663 680 33 -662 676 32 -667 675 32 -666 672 31 -671 671 31 -670 703 -1 -646 703 -2 -643 697 11 -645 696 10 -643 693 18 -644 692 18 -642 688 24 -643 688 25 -642 683 29 -643 683 30 -642 677 32 -642 677 34 -642 670 35 -643 671 36 -643 664 36 -644 665 37 -645 658 36 -646 659 37 -647 696 -4 -628 697 -5 -629 694 7 -629 694 6 -630 691 14 -631 691 13 -631 689 19 -634 688 18 -633 685 24 -636 684 23 -635 681 26 -639 680 26 -638 676 28 -642 675 28 -640 672 28 -644 671 28 -643 667 27 -647 667 28 -647 -902 2 4 -901 2 5 -899 15 3 -898 14 4 -896 22 3 -896 20 3 -892 27 3 -892 26 2 -888 31 2 -888 30 1 -883 34 1 -883 33 0 -878 35 0 -878 35 -1 -873 35 0 -873 36 -1 -867 34 -1 -867 35 -2 882 2 -185 884 1 -186 880 16 -186 880 15 -188 877 23 -189 878 22 -189 875 29 -191 875 28 -190 871 34 -193 871 33 -192 867 38 -195 866 37 -194 862 40 -197 861 39 -196 856 39 -199 855 40 -198 850 39 -201 850 40 -200 883 1 -187 883 1 -184 880 16 -185 880 15 -182 877 24 -183 878 23 -181 874 30 -181 875 31 -180 870 36 -179 871 37 -178 866 41 -177 867 42 -177 860 44 -175 861 45 -176 854 46 -174 855 47 -175 848 48 -174 848 48 -175 883 1 -167 883 0 -168 883 13 -168 882 12 -169 881 20 -170 880 19 -170 878 26 -172 877 25 -171 874 31 -173 874 30 -172 870 34 -175 869 34 -173 865 36 -175 865 36 -174 860 37 -176 859 38 -175 854 37 -177 854 37 -176 -932 4 -27 -932 4 -25 -930 18 -31 -929 17 -30 -927 25 -33 -927 24 -33 -923 31 -36 -924 30 -36 -920 36 -38 -921 35 -39 -916 39 -42 -917 38 -43 -912 40 -46 -913 39 -47 -907 39 -50 -908 39 -51 -903 38 -54 -903 38 -55 898 -2 52 900 -2 52 897 12 49 898 11 49 897 19 46 897 18 46 896 25 42 896 24 43 895 30 38 894 29 39 893 34 34 891 33 35 890 35 29 889 35 30 887 35 24 886 36 24 884 35 19 883 35 19 900 -2 51 898 -2 53 896 12 50 895 11 52 893 19 50 892 19 52 890 26 49 889 27 51 885 32 49 885 33 50 880 36 47 881 38 48 875 40 45 876 41 45 870 42 42 871 43 41 865 43 38 865 44 37 887 -3 66 888 -4 65 887 9 65 888 8 64 887 16 62 887 15 62 886 22 59 885 21 59 884 26 55 883 26 56 882 30 52 880 30 53 879 32 48 877 32 49 875 33 44 874 33 45 872 33 40 871 33 40 -181 -7 -927 -181 -8 -929 -184 6 -926 -184 5 -928 -187 13 -927 -187 12 -927 -191 19 -927 -190 18 -926 -195 24 -926 -194 24 -925 -199 28 -924 -199 28 -923 -204 30 -922 -204 30 -921 -210 29 -920 -210 30 -919 -216 29 -917 -215 30 -916 -182 -7 -929 -180 -8 -927 -183 6 -926 -181 5 -924 -183 14 -923 -182 13 -921 -184 21 -919 -183 21 -918 -186 26 -915 -185 27 -915 -188 31 -910 -187 32 -911 -191 34 -905 -190 36 -906 -194 36 -900 -195 38 -901 -199 38 -896 -199 38 -897 -877 0 470 -875 -1 468 -882 12 468 -881 12 467 -885 19 465 -884 18 465 -888 25 462 -888 24 463 -892 29 459 -892 28 460 -896 32 456 -897 32 457 -900 33 453 -901 33 454 -905 32 449 -906 32 450 -910 31 445 -911 31 446 -875 0 468 -876 -1 470 -882 12 469 -883 11 472 -886 19 470 -887 19 472 -891 25 471 -891 25 473 -897 29 472 -897 30 474 -903 33 473 -903 34 474 -909 35 473 -909 36 473 -916 36 472 -915 37 472 -922 36 471 -922 36 470 -881 -3 487 -880 -4 486 -884 8 486 -884 7 485 -887 15 484 -887 14 484 -890 20 481 -891 19 482 -894 24 479 -895 23 480 -899 27 476 -899 26 478 -903 28 474 -904 28 475 -908 28 472 -909 28 473 -913 27 469 -913 27 470 -41 -7 -966 -41 -8 -964 -38 6 -968 -38 5 -966 -36 13 -968 -36 12 -967 -32 20 -968 -32 19 -968 -28 25 -968 -29 24 -969 -24 29 -969 -24 28 -971 -18 30 -970 -19 30 -972 -12 30 -972 -12 31 -973 -6 30 -973 -7 31 -974 699 5 -605 700 5 -607 694 19 -603 695 18 -605 691 26 -604 691 25 -604 687 32 -605 687 31 -604 682 37 -605 682 36 -604 677 40 -606 677 39 -604 671 41 -606 671 40 -604 665 40 -606 665 40 -605 659 39 -606 659 39 -605 699 6 -607 700 5 -604 695 19 -602 696 18 -600 692 26 -599 693 26 -597 689 32 -595 690 32 -594 685 37 -591 686 38 -591 681 40 -587 681 42 -587 675 42 -584 676 44 -584 670 44 -581 670 45 -582 664 44 -579 663 45 -580 705 3 -588 705 2 -589 702 15 -587 702 14 -588 699 22 -588 699 21 -587 695 27 -588 695 26 -587 691 31 -588 691 30 -586 686 34 -587 686 34 -585 681 36 -586 681 36 -585 675 36 -586 675 36 -584 670 35 -585 670 35 -584 -40 -7 -964 -42 -8 -967 -39 6 -969 -41 5 -971 -38 13 -972 -40 13 -974 -37 20 -976 -38 20 -977 -35 25 -981 -36 26 -981 -32 29 -985 -33 31 -985 -29 33 -990 -29 34 -989 -24 35 -994 -24 36 -993 -19 36 -998 -19 37 -997 -51 -10 -981 -50 -11 -980 -50 2 -981 -49 1 -981 -48 9 -981 -47 8 -982 -45 15 -982 -45 13 -983 -41 19 -983 -41 18 -984 -37 23 -985 -37 22 -986 -32 25 -987 -33 25 -988 -27 26 -989 -28 26 -990 -23 26 -991 925 -2 300 926 -2 301 927 12 297 928 11 298 930 19 296 930 18 296 933 25 293 932 24 293 936 30 290 934 29 290 938 34 287 937 33 286 941 35 282 940 35 281 945 35 276 943 36 276 947 35 271 927 -2 300 924 -2 300 926 12 297 923 11 297 925 19 294 922 19 294 923 26 291 922 27 291 922 32 287 921 33 287 921 36 282 920 38 282 920 40 276 920 41 277 920 42 270 921 43 270 921 43 264 922 44 264 907 -3 297 908 -4 297 909 9 296 910 8 296 911 16 295 911 15 294 913 22 293 913 21 292 916 26 289 914 26 288 918 30 285 916 30 284 919 32 280 918 32 280 921 33 276 920 33 275 923 33 271 923 33 270 -168 -8 -914 -169 -9 -915 -170 3 -915 -170 2 -915 -172 10 -915 -172 9 -915 -176 16 -915 -175 15 -914 -179 21 -913 -179 20 -912 -183 24 -911 -182 24 -910 -187 26 -908 -187 26 -907 -192 27 -905 -191 28 -904 -196 27 -903 -196 28 -902 -646 5 -626 -648 5 -627 -645 19 -621 -646 18 -621 -645 26 -618 -645 25 -618 -645 32 -613 -645 31 -614 -645 37 -609 -644 36 -609 -645 40 -604 -644 39 -604 -645 41 -598 -643 40 -598 -645 40 -592 -643 40 -592 -644 39 -586 -643 39 -586 -649 6 -625 -646 5 -627 -644 19 -622 -641 18 -623 -640 26 -619 -638 26 -620 -636 32 -616 -635 32 -618 -632 37 -613 -631 38 -614 -627 40 -609 -627 42 -610 -623 42 -604 -624 44 -604 -620 44 -599 -621 45 -599 -617 44 -593 -618 45 -593 -630 3 -633 -632 2 -633 -629 15 -631 -630 14 -630 -629 22 -627 -629 21 -627 -629 27 -623 -628 26 -623 -629 31 -619 -627 30 -619 -628 34 -614 -626 34 -614 -626 36 -609 -625 36 -609 -625 36 -604 -624 36 -604 -624 35 -599 -931 5 -25 -933 4 -26 -931 18 -31 -933 17 -33 -931 25 -36 -934 25 -37 -932 31 -41 -933 31 -41 -932 36 -46 -933 37 -46 -932 39 -52 -932 41 -52 -930 42 -58 -930 43 -58 -928 43 -64 -928 44 -64 -926 43 -70 -925 44 -70 234 1 -887 232 0 -887 235 15 -884 234 14 -884 235 23 -881 235 22 -881 236 29 -877 236 28 -878 237 34 -873 238 33 -874 238 37 -869 240 37 -870 241 39 -864 242 39 -864 244 39 -858 245 39 -859 247 38 -853 248 39 -853 232 1 -886 234 0 -888 236 15 -885 238 15 -887 239 23 -885 240 23 -887 242 30 -884 243 30 -886 247 36 -883 247 36 -884 252 40 -881 251 41 -882 257 43 -879 256 45 -879 262 46 -875 261 47 -875 267 47 -871 266 48 -871 246 0 -901 245 0 -900 246 13 -899 245 12 -898 246 20 -897 246 19 -896 246 25 -893 247 24 -894 248 30 -890 249 29 -890 251 34 -886 252 33 -887 254 36 -882 255 36 -883 257 36 -878 258 37 -878 260 36 -873 261 37 -874 928 -7 -261 929 -8 -259 931 6 -262 932 5 -261 934 13 -263 934 12 -263 937 19 -265 937 19 -265 941 24 -267 940 24 -268 944 28 -270 943 28 -272 948 30 -274 947 30 -275 952 30 -279 951 30 -280 956 29 -284 956 30 -284 -761 3 505 -761 3 507 -757 16 502 -756 16 503 -753 23 501 -748 29 500 -749 28 499 -744 34 498 -744 33 497 -739 37 496 -740 36 495 -734 37 494 -734 37 493 -728 36 492 -728 36 491 -722 35 490 -722 35 489 -760 3 507 -762 2 505 -757 16 501 -759 16 499 -756 23 497 -758 23 495 -754 29 492 -756 29 491 -752 34 486 -753 35 486 -749 37 481 -750 38 481 -746 39 476 -746 41 476 -742 40 471 -741 41 471 -737 40 467 -736 41 467 802 1 387 804 0 386 800 15 384 802 14 384 800 23 381 800 22 381 798 29 378 798 28 378 796 34 374 795 33 375 794 37 370 792 37 371 790 39 366 789 39 367 786 39 361 785 39 362 782 38 357 781 39 357 803 1 385 802 0 388 800 15 385 799 15 388 797 23 386 796 23 388 793 30 386 793 30 388 789 36 386 789 36 387 783 40 386 784 41 386 778 43 384 779 45 384 772 46 382 773 47 382 767 47 379 767 48 378 794 0 403 794 0 402 794 13 401 794 12 400 793 20 399 793 19 399 792 25 396 791 24 396 789 30 393 788 29 394 786 34 390 785 33 391 782 36 386 781 36 387 778 36 383 777 37 384 774 36 380 773 37 380 -773 0 492 -772 0 493 -770 13 490 -769 12 491 -767 19 489 -767 18 489 -763 24 488 -763 23 487 -759 28 486 -760 28 484 -755 31 483 -755 31 482 -750 32 480 -751 32 479 -745 32 477 -746 32 476 -741 31 475 -741 32 474 930 -7 -259 927 -8 -260 930 6 -263 927 6 -264 929 14 -266 927 14 -266 929 21 -269 927 21 -269 928 26 -274 927 27 -273 928 31 -279 927 32 -278 929 34 -285 929 36 -284 930 36 -291 931 38 -290 932 38 -296 933 38 -296 912 -8 -267 913 -9 -266 913 3 -267 914 2 -267 916 10 -268 916 9 -269 919 16 -270 918 15 -271 921 21 -273 920 20 -274 924 24 -276 923 24 -277 927 26 -280 926 27 -281 930 27 -285 929 28 -286 933 27 -289 932 28 -290 -879 5 59 -880 4 61 -875 18 58 -875 18 59 -871 25 58 -871 24 59 -867 31 59 -867 30 59 -862 36 60 -862 35 59 -857 39 60 -857 38 59 -852 40 61 -851 40 59 -845 39 61 -845 39 60 -839 38 62 -839 38 61 -879 5 61 -880 4 58 -875 18 57 -876 17 54 -872 25 53 -873 25 51 -869 31 50 -870 32 48 -865 36 46 -866 37 45 -860 39 42 -861 41 42 -855 42 39 -855 43 39 -849 43 36 -849 44 37 -843 43 34 -843 44 35 -884 2 42 -885 1 43 -882 14 41 -881 13 42 -879 21 42 -878 20 41 -875 26 42 -875 25 41 -870 31 42 -870 30 40 -865 33 42 -866 33 40 -860 35 41 -860 35 39 -855 35 40 -855 35 39 -850 34 40 -862 6 210 -864 6 211 -858 20 211 -859 19 212 -855 27 213 -855 26 213 -851 33 216 -851 32 215 -847 38 218 -847 37 217 -843 41 221 -842 40 219 -838 42 224 -837 41 222 -833 41 227 -832 41 226 -828 40 230 -827 40 229 -863 7 212 -863 6 209 -857 20 210 -857 19 207 -853 27 208 -853 27 206 -849 33 206 -849 33 204 -844 38 204 -844 39 203 -838 41 203 -838 43 202 -831 44 202 -832 45 202 -825 45 202 -825 46 203 -819 45 203 -819 46 204 -860 4 192 -860 3 193 -857 16 193 -857 15 194 -854 23 194 -854 22 195 -851 28 197 -850 27 196 -847 32 198 -846 31 197 -842 35 200 -842 35 199 -837 37 202 -837 37 201 -832 37 204 -832 37 203 -828 36 206 -827 36 205 -598 1 727 -598 1 730 -595 15 724 -594 14 726 -591 22 723 -591 21 723 -587 28 722 -588 27 721 -583 33 720 -584 32 719 -578 36 718 -579 35 716 -573 37 715 -574 36 714 -567 36 713 -568 36 712 -562 35 710 -562 35 709 -597 2 729 -599 1 728 -595 15 723 -598 14 722 -595 22 719 -597 22 718 -594 28 714 -595 28 714 -592 33 709 -593 34 709 -590 36 703 -591 38 704 -587 39 698 -587 40 698 -583 40 693 -583 41 693 -579 40 688 -578 41 689 -611 0 715 -611 -1 717 -609 11 714 -608 10 714 -606 18 712 -606 17 712 -603 23 711 -603 22 710 -599 27 708 -600 27 707 -595 30 706 -596 30 704 -591 32 703 -591 32 701 -586 32 699 -587 32 698 -582 31 697 -582 31 696 -410 0 883 -408 -1 882 -415 12 881 -413 12 880 -417 19 877 -416 18 877 -420 25 874 -420 24 875 -423 29 870 -424 28 871 -427 32 867 -428 32 868 -431 33 863 -432 33 864 -435 32 858 -436 32 859 -439 31 854 -440 31 855 -408 0 881 -409 -1 884 -416 11 884 -419 19 882 -420 19 884 -425 25 882 -425 25 884 -430 29 883 -430 30 884 -436 33 883 -436 34 883 -443 35 882 -442 36 882 -449 36 880 -448 37 879 -455 36 877 -454 36 876 -417 -3 899 -416 -4 898 -420 8 898 -419 7 897 -422 15 895 -422 14 895 -425 20 892 -425 19 893 -428 24 889 -429 23 890 -432 27 886 -433 26 888 -437 28 883 -438 28 885 -441 28 880 -442 28 881 -445 27 877 -446 27 878 -367 0 844 -365 -1 845 -369 12 839 -367 12 839 -369 19 835 -368 18 835 -368 25 830 -369 24 831 -368 29 826 -370 28 826 -369 32 821 -370 32 821 -369 33 815 -371 33 815 -369 32 809 -371 32 809 -370 31 803 -371 31 803 -364 0 843 -367 -1 845 -370 12 839 -372 11 841 -374 19 837 -376 19 838 -378 25 834 -379 25 835 -382 29 830 -383 30 831 -387 33 826 -387 34 827 -391 35 821 -390 36 821 -394 36 816 -393 37 816 -397 36 810 -396 36 810 -383 -3 851 -381 -4 851 -384 8 848 -383 7 848 -384 15 845 -384 14 845 -384 20 841 -385 19 841 -385 24 836 -386 23 837 -386 27 832 -388 26 832 -388 28 826 -389 28 827 -389 28 821 -390 28 821 -390 27 816 -164 3 926 -164 3 927 -160 15 924 -160 14 925 -156 21 924 -157 20 924 -152 26 923 -153 26 923 -148 30 922 -149 30 921 -144 33 921 -145 33 919 -139 34 919 -140 34 917 -134 33 916 -135 33 915 -130 32 914 -130 33 913 -163 3 927 -165 3 926 -162 15 922 -159 22 921 -161 22 919 -158 28 917 -159 28 916 -156 32 913 -157 33 913 -155 36 908 -155 37 909 -152 38 904 -152 40 904 -148 40 899 -148 41 900 -145 40 895 -144 41 896 -175 3 915 -175 2 916 -173 14 915 -172 13 915 -170 20 914 -170 19 914 -167 24 914 -167 23 913 -163 28 912 -164 27 911 -159 31 910 -160 30 908 -155 32 907 -156 32 906 -152 32 904 -152 32 903 -148 31 902 -148 32 901 -251 3 880 -250 2 882 -250 15 877 -249 14 878 -248 22 874 -248 21 875 -245 27 872 -246 26 872 -243 31 868 -244 30 868 -241 34 865 -242 33 864 -238 35 860 -240 35 860 -236 34 855 -237 35 855 -233 33 851 -234 34 850 -249 3 881 -252 2 881 -251 15 877 -253 15 876 -252 22 874 -254 21 873 -254 27 870 -255 27 870 -255 32 865 -256 32 866 -257 35 860 -257 36 861 -257 37 855 -257 39 856 -257 39 850 -257 40 850 -257 39 844 -256 40 844 -266 1 878 -265 0 879 -266 12 877 -265 11 876 -264 18 875 -264 17 874 -262 23 872 -263 22 871 -261 27 868 -262 26 868 -259 29 864 -260 29 864 -258 31 860 -259 31 859 -256 31 856 -257 31 855 -254 30 851 -255 31 851 280 8 897 282 7 899 281 21 892 283 20 893 284 28 889 284 27 890 286 34 885 286 33 885 289 38 881 287 37 881 291 41 877 290 40 876 294 42 872 293 41 871 297 41 866 296 41 866 300 39 861 299 40 861 283 8 898 280 7 898 280 21 892 278 20 892 279 28 888 276 27 888 277 34 883 275 34 883 275 38 878 274 39 878 273 41 872 273 43 872 272 44 865 273 45 866 273 44 859 273 46 859 273 44 853 274 45 853 263 5 895 264 4 896 263 17 892 264 16 892 265 24 889 265 23 889 267 29 886 266 28 885 269 33 881 268 32 881 271 36 877 269 35 876 272 37 872 271 37 871 274 37 867 273 37 866 276 36 862 275 36 861 308 9 919 308 9 921 313 19 914 313 19 915 317 25 912 316 24 912 321 29 910 321 28 910 326 32 908 325 31 907 330 34 905 329 33 904 334 33 903 334 33 902 339 31 901 339 32 900 344 29 899 343 30 898 309 9 920 307 8 919 312 19 913 310 19 912 314 25 908 312 25 907 315 29 903 314 29 903 317 32 898 316 33 898 319 34 893 319 35 893 322 35 887 322 36 888 325 35 883 326 36 883 329 33 879 330 34 879 296 7 909 296 6 910 299 17 905 300 16 906 303 22 903 303 21 903 306 26 901 306 25 900 310 29 898 310 28 897 314 30 896 313 29 894 318 30 893 317 30 891 322 29 890 321 29 889 325 27 888 325 28 887 158 8 923 160 8 923 155 21 919 156 21 918 154 28 915 153 34 910 153 33 911 152 39 906 151 38 906 150 42 901 149 41 901 148 42 895 147 42 896 147 41 889 145 41 889 145 40 884 144 40 884 160 8 922 158 8 924 154 21 919 152 21 921 150 28 918 148 28 919 145 34 916 144 35 917 140 39 913 139 40 914 134 42 910 134 43 911 129 44 907 130 46 907 125 45 902 125 46 902 121 45 897 121 46 897 144 5 934 145 4 934 142 18 931 143 17 931 141 24 928 141 23 928 140 30 924 139 28 925 138 34 920 137 33 921 136 36 916 135 36 916 133 37 911 132 37 911 131 37 906 130 38 907 129 36 901 128 37 902 448 3 789 450 3 788 448 12 787 449 12 786 448 17 784 448 16 784 448 21 781 448 20 781 448 24 777 447 23 777 448 26 774 447 26 774 448 28 770 447 28 770 448 28 766 447 28 766 451 4 787 447 14 786 445 14 788 444 21 785 442 20 787 439 26 783 438 26 785 434 30 780 434 31 782 429 32 776 429 33 777 425 32 771 425 34 772 421 31 765 422 33 765 449 4 789 450 3 788 448 14 786 449 13 785 447 21 782 447 20 782 445 26 778 444 24 778 443 29 773 442 28 773 442 30 767 440 29 768 441 30 761 440 30 761 441 28 756 440 28 755 892 0 61 892 -1 60 890 11 59 890 10 59 889 17 58 890 17 57 888 22 57 889 23 56 887 28 55 888 28 54 886 33 53 887 33 52 885 37 51 885 37 50 883 41 48 883 40 47 892 0 60 892 -1 61 889 10 60 888 16 58 887 16 60 886 22 57 885 22 59 884 26 56 883 27 57 881 31 54 878 34 51 879 35 52 875 37 48 876 37 49 891 0 61 893 -1 60 890 11 58 891 10 57 890 16 56 891 15 55 890 21 53 890 20 53 889 24 49 889 23 50 888 27 46 888 26 46 888 29 42 887 29 43 887 30 39 886 30 39 893 0 60 893 -1 59 890 13 57 891 13 57 890 21 56 891 21 54 890 29 54 891 28 52 890 36 52 891 35 51 890 43 51 890 42 49 890 49 49 889 49 48 889 55 47 888 54 46 893 0 59 890 13 58 888 12 60 886 20 58 885 20 60 881 26 58 881 26 60 876 30 57 876 31 59 870 32 55 870 34 56 864 33 51 864 35 52 859 32 47 859 34 46 891 12 56 889 20 54 889 19 54 886 26 51 886 25 51 883 30 47 882 29 48 881 32 42 879 31 43 878 32 37 877 31 37 876 31 31 874 31 31 883 0 75 883 0 74 883 9 74 884 8 74 883 14 74 884 14 74 883 20 74 884 20 73 883 25 73 883 25 72 882 30 72 883 29 71 881 34 70 881 34 69 879 38 68 879 37 67 883 9 75 882 8 76 882 14 75 881 14 76 880 19 75 880 19 76 879 24 74 879 24 75 877 28 73 877 29 73 874 32 71 875 33 71 871 35 69 872 36 69 883 8 74 883 8 73 883 14 72 883 13 71 882 18 69 882 17 69 881 21 67 880 21 67 880 24 63 879 24 64 878 26 60 877 26 61 876 27 57 876 28 57 884 0 73 883 11 74 882 10 76 881 18 75 880 17 77 877 24 76 877 24 78 872 28 77 873 29 78 867 32 76 868 33 77 861 34 74 861 35 74 854 35 71 855 36 70 883 0 73 883 11 73 883 10 72 882 17 71 881 16 70 880 23 69 878 22 69 876 28 66 875 27 66 872 30 62 871 29 62 868 31 57 867 30 58 865 30 52 864 30 52 915 0 298 915 -1 298 915 11 296 916 10 296 916 17 295 916 22 293 917 23 293 917 28 291 918 28 292 918 33 290 919 33 290 920 37 287 921 41 284 922 40 284 916 0 298 914 -1 298 913 10 295 914 16 294 913 16 294 914 22 291 913 22 291 915 26 289 914 27 289 915 31 285 915 31 286 916 34 282 916 35 282 917 37 278 914 0 298 915 -1 299 916 11 296 917 10 296 918 16 294 919 15 295 920 21 292 920 20 292 923 24 290 922 23 290 926 27 288 925 26 288 929 29 286 928 29 285 931 30 283 915 0 299 916 -1 298 917 13 295 918 13 296 918 21 294 919 21 295 919 29 293 921 28 294 921 36 293 923 35 293 922 43 292 924 42 292 923 49 291 924 49 290 925 55 289 925 54 288 917 0 299 916 13 295 913 12 295 914 20 292 911 20 292 911 26 288 910 26 288 910 30 282 908 31 283 909 32 276 908 34 277 909 33 269 909 35 269 911 32 263 911 34 263 916 -1 299 918 12 296 918 20 293 919 19 293 920 26 289 920 25 288 922 30 284 921 29 284 925 32 280 924 31 279 929 32 275 928 31 274 933 31 270 932 31 269 898 0 297 898 9 297 899 8 298 898 14 297 899 14 298 899 20 297 900 20 297 899 25 296 900 25 296 900 30 295 901 29 295 901 34 293 902 34 293 902 38 290 902 37 290 899 0 297 897 0 297 896 8 297 897 14 296 896 14 296 897 19 295 895 19 295 896 24 293 897 28 290 896 29 291 897 32 287 897 33 288 897 35 284 897 36 284 899 8 297 900 8 296 900 14 296 901 13 295 902 18 294 902 17 293 904 21 291 903 21 291 906 24 289 905 24 288 908 26 286 908 26 285 910 27 283 910 28 282 900 0 297 898 11 297 896 10 297 896 18 295 894 17 296 893 24 293 892 24 294 891 28 289 890 29 290 889 32 283 889 33 285 888 34 277 888 35 278 888 35 270 888 36 270 899 0 297 899 11 296 901 10 296 901 17 295 901 16 294 901 23 291 901 22 290 902 28 287 901 27 286 904 30 281 903 29 281 907 31 276 905 30 275 910 30 271 909 30 270 798 2 397 797 2 396 795 14 395 796 14 395 794 20 394 795 20 394 793 26 394 794 26 393 791 31 392 792 31 391 790 37 390 791 36 389 788 41 388 789 41 387 786 44 386 786 44 385 798 2 395 797 2 397 794 14 397 793 20 395 792 20 397 791 25 394 790 25 396 788 30 393 788 30 394 785 34 392 786 35 392 782 38 390 783 38 390 779 40 388 779 41 388 798 2 396 796 14 393 795 20 392 795 19 391 794 24 389 794 23 389 792 28 386 792 27 386 791 31 383 791 30 383 790 33 379 789 32 380 788 34 376 798 3 396 795 17 394 796 16 393 794 25 392 796 24 391 794 32 390 795 32 388 794 39 389 795 39 387 794 46 387 794 46 386 793 53 386 793 52 385 792 59 384 791 58 383 798 3 394 794 16 397 791 24 395 791 23 398 786 30 396 786 30 398 781 34 396 781 35 398 775 36 395 775 38 396 768 37 392 768 38 393 762 36 389 763 37 389 797 3 396 799 2 395 795 16 393 796 16 392 793 24 391 793 23 390 790 30 388 790 28 389 787 34 385 786 32 386 783 36 381 782 35 382 779 35 376 778 35 376 776 34 370 775 34 371 791 3 412 791 12 411 792 12 411 791 18 411 792 18 411 791 23 411 792 23 410 790 28 410 791 28 409 790 33 409 790 33 408 788 38 408 788 37 407 786 41 406 785 41 405 791 3 411 791 2 413 791 12 412 790 12 413 790 18 412 790 18 414 789 23 412 789 23 414 787 28 412 787 28 413 784 32 411 785 32 412 782 36 410 778 39 409 779 39 409 791 3 413 791 2 411 791 12 410 791 17 409 790 17 409 789 22 407 789 21 407 788 25 404 787 24 405 786 28 401 785 27 402 784 30 399 783 30 399 781 31 396 792 3 410 791 14 411 790 14 414 789 21 413 789 21 415 786 27 415 786 27 417 781 32 416 782 33 417 775 36 416 776 37 417 769 38 415 770 39 415 762 38 413 763 39 413 791 2 411 791 14 410 791 13 409 790 21 409 789 20 408 787 27 407 786 26 407 783 31 404 782 30 405 778 34 401 777 33 402 774 34 397 773 34 398 770 33 393 769 34 393 812 0 361 812 -1 361 810 11 359 811 10 359 809 17 358 810 17 358 808 22 357 809 23 357 807 28 356 808 28 355 806 33 354 807 33 353 804 37 352 805 37 351 802 41 349 802 40 348 813 0 360 812 -1 362 810 11 360 809 10 361 808 16 359 807 16 361 806 22 358 805 22 359 804 26 357 803 27 358 801 31 355 798 34 352 798 35 353 795 37 350 796 37 350 813 -1 360 811 10 358 810 16 356 811 15 356 809 21 353 809 20 353 809 24 350 808 23 350 808 27 346 807 26 347 807 29 343 806 29 343 806 30 339 805 30 340 813 0 361 810 13 358 811 13 357 810 21 356 811 21 355 810 29 354 811 28 353 810 36 353 811 35 351 810 43 352 810 42 350 810 49 350 809 49 349 808 55 348 807 54 347 813 0 359 810 13 359 808 12 361 806 20 359 805 20 361 801 26 359 801 26 361 796 30 358 796 31 360 790 32 356 790 34 357 784 33 353 784 35 353 778 32 349 779 34 348 814 -1 360 811 12 356 809 20 355 809 19 354 806 26 352 806 25 352 803 30 348 802 29 349 800 32 343 799 31 344 797 32 338 796 31 338 795 31 332 794 31 333 804 0 375 804 9 375 805 8 375 804 14 375 805 14 374 804 20 375 805 20 374 803 25 374 804 25 373 803 30 372 803 29 371 802 34 371 801 34 370 799 38 369 799 37 368 803 0 376 803 8 377 803 14 376 802 14 377 801 19 375 801 19 377 799 24 375 800 24 376 797 28 374 798 29 374 795 32 372 795 33 373 791 35 370 792 36 370 804 0 376 804 8 375 804 8 373 804 14 373 803 13 372 803 18 370 802 17 370 801 21 367 801 21 368 800 24 364 799 24 365 798 26 361 797 26 362 796 27 358 796 28 358 804 0 374 804 11 375 803 10 377 801 18 376 801 17 378 798 24 378 798 24 379 793 28 378 794 29 379 787 32 377 788 33 378 781 34 375 782 35 376 775 35 372 776 36 372 804 0 374 804 11 374 804 10 372 803 17 372 802 16 371 800 23 370 799 22 370 796 28 367 795 27 367 792 30 363 791 29 364 788 31 358 787 30 359 785 30 353 784 30 354 806 0 -586 811 12 -588 810 11 -587 813 17 -589 813 17 -588 815 23 -589 815 23 -588 818 28 -590 818 28 -588 821 33 -590 821 32 -588 824 37 -589 824 36 -589 828 39 -589 807 0 -585 806 0 -587 811 11 -588 810 11 -590 813 17 -590 813 16 -591 816 21 -591 816 22 -593 819 26 -592 819 26 -593 823 29 -593 823 30 -594 827 32 -594 827 33 -594 832 34 -594 831 35 -594 806 0 -585 811 12 -587 811 11 -586 814 17 -586 813 16 -585 817 21 -585 817 20 -585 820 24 -584 823 27 -582 823 26 -583 827 29 -580 827 28 -581 830 30 -579 812 14 -587 811 14 -586 814 21 -587 814 21 -585 817 29 -587 817 29 -585 819 36 -586 819 36 -585 821 43 -586 822 43 -585 823 49 -586 824 49 -586 826 55 -586 828 54 -586 807 1 -584 812 14 -588 811 13 -590 815 20 -591 814 20 -594 819 25 -596 818 25 -597 824 28 -599 823 29 -600 830 29 -602 830 31 -603 837 28 -604 837 30 -604 843 27 -604 844 28 -604 807 0 -586 806 0 -584 812 13 -585 816 20 -587 816 19 -586 821 26 -587 821 24 -587 826 29 -587 826 28 -588 832 30 -586 832 29 -587 838 30 -584 838 29 -585 843 28 -581 844 28 -582 802 0 -603 802 0 -602 804 8 -603 803 8 -603 804 14 -604 804 14 -603 806 19 -604 806 20 -603 807 24 -605 808 24 -604 809 29 -605 810 29 -604 812 33 -605 813 33 -604 816 36 -605 803 0 -602 804 8 -604 803 8 -605 805 14 -605 804 13 -607 807 18 -607 806 18 -608 809 23 -608 809 23 -609 812 27 -609 816 30 -610 815 30 -610 820 32 -612 819 33 -611 805 8 -602 806 13 -602 807 13 -602 809 17 -602 810 16 -602 813 21 -601 813 20 -602 816 23 -600 816 22 -601 820 24 -599 820 24 -600 824 25 -598 824 25 -599 803 0 -601 805 10 -603 804 10 -606 806 17 -607 805 17 -609 809 22 -611 807 22 -612 812 26 -615 811 27 -616 817 28 -619 816 30 -619 823 29 -622 823 31 -622 830 29 -624 830 30 -624 803 0 -601 805 10 -603 806 10 -602 808 17 -603 809 16 -603 812 22 -604 813 21 -605 817 26 -605 818 24 -606 824 27 -605 824 26 -606 830 27 -604 830 27 -606 835 25 -603 836 25 -604 699 -1 -634 699 -2 -635 694 9 -635 692 15 -636 689 20 -636 690 21 -637 687 25 -637 688 26 -638 685 30 -638 685 30 -640 682 34 -640 682 34 -641 678 37 -642 678 37 -643 699 -1 -635 699 -2 -634 694 9 -633 691 14 -635 690 14 -633 688 19 -635 687 19 -633 684 23 -635 684 24 -634 680 27 -637 681 28 -636 677 30 -638 677 31 -638 672 32 -640 673 33 -640 698 -1 -634 694 9 -636 695 9 -637 692 15 -638 693 14 -639 690 19 -640 690 18 -640 688 22 -643 688 21 -643 686 25 -646 685 24 -646 684 26 -650 683 26 -649 682 28 -653 681 27 -652 699 -1 -636 694 12 -636 694 11 -637 691 19 -638 692 19 -639 689 27 -639 690 27 -641 687 34 -640 688 34 -642 686 41 -641 686 40 -643 684 47 -643 683 46 -644 681 52 -644 680 52 -645 699 -1 -637 693 11 -636 693 11 -633 689 18 -634 688 17 -632 683 23 -632 683 23 -631 677 26 -632 677 27 -630 670 27 -632 670 28 -631 663 26 -634 663 28 -634 657 25 -637 657 26 -637 698 -1 -635 700 -1 -636 694 11 -638 690 18 -639 690 17 -639 686 23 -641 685 22 -640 681 27 -644 680 25 -643 676 28 -647 676 27 -646 672 27 -652 671 27 -651 669 26 -657 668 26 -656 694 -2 -618 693 6 -618 693 6 -619 692 12 -618 692 12 -619 690 17 -618 691 17 -619 689 22 -619 689 22 -620 687 27 -620 687 27 -621 684 31 -621 684 30 -622 681 34 -622 681 33 -623 694 -2 -619 692 6 -618 692 6 -616 690 11 -617 690 11 -616 688 16 -617 688 16 -616 685 20 -617 686 21 -616 682 24 -617 683 25 -617 679 27 -618 679 28 -618 675 30 -619 675 31 -619 692 6 -619 692 6 -620 691 11 -620 691 10 -621 688 15 -622 688 14 -622 686 18 -625 685 17 -624 683 21 -627 683 20 -627 680 22 -630 680 22 -629 677 23 -632 694 -2 -620 692 8 -619 691 8 -616 689 15 -616 689 14 -614 685 20 -614 685 20 -612 679 24 -612 680 25 -611 673 26 -611 674 28 -610 666 27 -611 667 28 -611 660 26 -613 660 28 -613 694 -2 -620 692 8 -619 692 7 -621 689 15 -621 688 14 -621 685 20 -622 684 19 -622 680 24 -624 679 22 -623 674 25 -627 674 24 -625 669 25 -630 669 24 -629 665 23 -634 664 23 -633 703 6 -595 702 5 -595 699 17 -593 697 23 -591 697 23 -592 694 28 -590 694 28 -591 692 33 -589 692 33 -591 689 38 -589 689 38 -590 686 42 -589 685 42 -589 682 45 -588 682 44 -589 702 6 -596 703 5 -594 699 17 -592 699 16 -591 697 22 -590 697 22 -589 694 27 -588 694 27 -587 691 31 -587 691 32 -586 687 35 -585 688 35 -585 683 38 -584 684 38 -584 679 40 -583 703 6 -594 703 5 -596 698 17 -593 698 17 -595 695 22 -593 695 22 -594 692 27 -594 692 26 -594 689 30 -595 689 29 -595 685 32 -596 685 32 -595 682 34 -597 681 34 -596 678 35 -598 678 35 -597 702 5 -596 697 19 -593 697 19 -594 695 27 -593 695 27 -594 692 34 -593 692 34 -595 690 42 -592 689 41 -594 688 48 -592 687 48 -594 686 55 -592 685 54 -592 683 60 -591 682 59 -591 702 6 -597 703 5 -595 698 19 -592 699 18 -590 695 26 -588 696 25 -586 692 30 -583 693 31 -582 687 33 -579 688 34 -578 682 34 -575 682 36 -574 675 34 -572 675 36 -572 669 32 -571 669 33 -571 702 6 -595 703 5 -597 697 18 -595 693 26 -593 693 25 -593 689 31 -591 688 30 -591 683 35 -591 683 33 -590 677 36 -591 677 35 -590 671 35 -592 671 34 -591 665 33 -594 665 33 -592 709 5 -579 709 5 -580 708 14 -579 707 20 -578 707 20 -579 706 25 -577 706 25 -578 705 30 -576 704 30 -578 703 35 -576 702 34 -577 700 39 -575 699 38 -576 697 42 -575 696 41 -575 710 4 -579 708 14 -578 709 13 -577 707 19 -576 708 19 -575 705 24 -575 706 24 -574 703 28 -573 704 29 -572 700 32 -571 701 33 -571 697 35 -569 698 36 -570 694 38 -568 710 5 -579 709 4 -580 707 13 -580 705 19 -579 705 18 -579 702 23 -579 702 22 -579 699 26 -579 699 25 -579 695 28 -580 695 28 -579 691 30 -580 691 30 -579 687 31 -580 687 31 -579 708 5 -581 707 16 -578 708 15 -576 706 23 -575 708 22 -573 704 28 -570 706 28 -569 702 32 -565 703 32 -565 697 34 -561 698 35 -561 692 35 -557 693 36 -557 686 34 -553 686 35 -554 708 4 -581 707 16 -579 706 15 -580 704 22 -578 703 21 -578 700 28 -576 699 26 -576 695 31 -575 695 30 -574 689 33 -574 689 32 -572 683 32 -573 683 32 -572 677 31 -574 677 31 -572 -768 3 498 -767 3 498 -765 14 494 -763 20 492 -761 25 489 -761 26 490 -759 30 488 -758 30 489 -757 35 486 -756 35 487 -754 39 484 -753 38 485 -750 42 482 -750 41 483 -768 3 497 -765 14 493 -766 14 492 -764 20 490 -765 19 489 -762 24 487 -763 24 486 -759 28 485 -760 29 484 -756 32 482 -757 32 481 -753 34 479 -754 35 479 -750 36 476 -750 37 476 -764 14 494 -763 14 495 -761 20 493 -761 19 494 -758 24 492 -758 23 492 -754 27 491 -754 26 491 -750 29 491 -751 29 490 -747 31 491 -747 31 490 -743 32 490 -743 32 489 -768 4 498 -763 17 494 -763 16 495 -761 24 492 -760 24 493 -758 32 491 -757 31 492 -756 39 489 -755 38 491 -754 45 488 -753 45 489 -752 52 487 -751 51 487 -749 57 485 -748 56 484 -766 4 499 -764 17 493 -766 16 491 -763 23 488 -765 22 486 -761 27 482 -763 28 481 -759 30 476 -760 31 475 -755 31 470 -756 33 470 -751 30 465 -751 32 465 -745 28 461 -745 29 461 -767 4 497 -767 3 499 -762 16 495 -759 23 491 -759 22 492 -755 28 488 -755 27 488 -750 31 485 -751 30 485 -745 32 483 -746 31 482 -739 31 482 -739 31 481 -733 30 481 -733 29 480 -780 2 486 -779 12 484 -779 11 485 -778 17 483 -778 17 484 -777 22 482 -777 23 483 -776 27 481 -775 27 481 -774 32 479 -773 32 480 -772 36 478 -771 35 478 -769 39 475 -769 38 475 -779 3 486 -781 2 485 -779 11 484 -780 11 483 -779 17 482 -780 16 481 -778 21 479 -779 21 479 -776 26 477 -777 26 477 -774 29 474 -775 30 474 -772 32 471 -772 33 472 -769 35 468 -769 35 469 -780 3 486 -779 2 486 -778 11 484 -777 11 485 -776 16 483 -775 16 484 -773 20 482 -773 19 482 -770 23 481 -770 22 480 -766 25 480 -766 25 479 -762 27 478 -763 27 478 -759 28 477 -759 28 476 -778 3 487 -780 2 485 -778 14 484 -780 13 482 -778 20 480 -780 20 479 -779 25 475 -780 25 475 -778 29 469 -779 30 469 -775 31 463 -776 32 464 -772 31 457 -772 33 458 -768 31 452 -767 32 452 -779 2 487 -777 13 484 -776 13 484 -775 20 482 -774 19 482 -772 25 479 -772 24 478 -768 28 475 -768 27 474 -762 29 472 -763 29 471 -757 29 469 -758 29 468 -752 27 467 -752 27 466 -722 0 580 -717 10 578 -715 16 577 -715 16 578 -712 21 576 -712 21 577 -709 26 575 -709 26 576 -706 31 575 -706 31 576 -703 35 575 -703 34 576 -699 37 575 -699 37 576 -721 0 580 -722 0 579 -717 10 577 -718 10 576 -715 15 575 -715 15 574 -712 20 574 -712 20 572 -708 24 573 -708 24 572 -704 27 571 -705 28 571 -700 30 571 -700 31 570 -695 32 570 -696 33 570 -717 10 580 -714 15 579 -714 15 580 -711 20 580 -711 19 580 -707 23 581 -707 22 581 -704 25 583 -704 25 582 -700 27 584 -700 26 583 -697 28 586 -696 28 585 -721 0 581 -716 12 578 -716 12 579 -713 20 578 -713 20 580 -710 27 578 -710 27 580 -708 34 578 -707 34 580 -706 41 578 -705 41 580 -703 47 578 -702 47 579 -700 53 578 -698 52 578 -721 0 582 -716 12 577 -717 12 575 -713 19 574 -714 18 572 -708 23 569 -710 23 568 -703 26 565 -704 27 564 -697 27 562 -698 28 561 -691 26 560 -691 28 560 -684 24 559 -684 25 560 -721 0 579 -722 0 581 -716 12 580 -712 19 578 -711 18 579 -706 24 578 -706 23 577 -701 27 578 -701 26 577 -695 28 578 -695 27 577 -689 27 580 -689 27 579 -684 25 582 -683 25 581 -726 -1 563 -727 -1 564 -725 7 563 -724 13 562 -724 13 563 -722 18 561 -722 18 562 -721 23 561 -720 23 562 -718 28 561 -718 27 562 -716 32 560 -715 31 561 -712 35 560 -711 34 560 -726 -1 564 -727 -1 563 -725 7 562 -725 7 561 -723 12 560 -724 12 559 -721 17 559 -722 17 558 -719 21 557 -720 22 557 -716 25 556 -717 26 556 -712 28 555 -713 29 555 -708 30 553 -709 31 554 -724 7 563 -724 7 564 -722 12 563 -721 11 564 -719 16 564 -719 15 563 -715 19 564 -715 18 564 -712 21 565 -711 21 564 -708 23 566 -708 22 565 -704 23 566 -726 0 565 -724 9 562 -725 9 560 -722 16 559 -724 15 557 -720 21 554 -721 21 553 -716 24 550 -718 25 550 -711 26 546 -712 28 546 -705 27 543 -706 29 543 -699 26 540 -699 28 541 -726 0 563 -726 -1 565 -723 9 563 -723 8 564 -720 16 563 -719 14 563 -716 21 561 -715 19 561 -710 24 560 -710 23 559 -704 25 560 -704 24 558 -698 25 560 -698 24 559 -693 23 561 -692 23 560 -884 0 524 -889 10 526 -891 16 527 -891 16 526 -894 21 528 -894 21 527 -897 26 528 -897 26 527 -900 31 528 -900 31 527 -903 35 528 -904 34 528 -907 37 528 -908 37 528 -885 0 523 -884 0 525 -889 10 527 -889 10 528 -892 15 528 -891 15 530 -895 20 530 -894 20 531 -898 24 531 -898 24 532 -902 27 532 -902 28 533 -906 30 533 -906 31 533 -911 32 534 -911 33 533 -884 0 523 -889 10 524 -892 15 525 -892 15 524 -896 20 524 -895 19 524 -899 23 523 -899 22 523 -903 25 521 -903 25 522 -906 27 519 -906 26 520 -909 28 518 -910 28 519 -890 12 525 -890 12 524 -893 20 526 -893 20 524 -896 27 525 -896 27 523 -898 34 525 -899 34 523 -900 41 525 -901 41 524 -903 47 525 -904 47 525 -907 53 525 -908 52 525 -885 0 522 -890 12 526 -889 12 529 -894 19 530 -893 18 532 -898 23 534 -897 23 536 -903 26 538 -902 27 539 -909 27 541 -909 28 542 -916 26 543 -916 28 543 -922 24 544 -922 25 544 -885 0 524 -884 0 522 -895 19 525 -895 18 525 -900 24 526 -900 23 526 -905 27 526 -905 26 527 -911 28 525 -911 27 526 -917 27 523 -917 27 524 -922 25 521 -923 25 522 -880 -1 541 -880 -1 540 -882 7 541 -881 7 541 -883 13 542 -882 13 541 -884 18 543 -884 18 541 -886 23 543 -886 23 542 -888 28 543 -889 27 542 -891 32 543 -891 31 543 -894 35 544 -895 34 544 -882 7 542 -881 7 543 -883 12 543 -882 12 545 -885 17 545 -884 17 546 -888 21 546 -887 22 547 -891 25 548 -890 26 548 -894 28 549 -894 29 549 -898 30 550 -898 31 550 -883 7 540 -884 12 541 -885 11 540 -888 16 540 -888 15 540 -891 19 540 -891 18 540 -895 21 539 -899 23 538 -899 22 539 -902 23 537 -903 23 538 -881 0 539 -882 9 542 -882 9 544 -884 16 545 -883 15 547 -887 21 549 -885 21 550 -890 24 554 -889 25 554 -895 26 558 -894 28 558 -901 27 561 -901 29 561 -908 26 563 -908 28 563 -880 0 540 -880 -1 539 -883 9 541 -884 8 540 -886 16 541 -887 14 541 -891 21 542 -891 19 543 -896 24 543 -896 23 544 -902 25 544 -902 24 545 -908 25 543 -908 24 545 -914 23 542 -914 23 543 -879 0 480 -879 0 479 -884 10 479 -887 16 479 -886 16 478 -889 21 479 -889 21 478 -892 26 478 -892 26 477 -895 31 477 -895 31 475 -898 35 475 -898 34 474 -902 37 473 -884 10 480 -885 10 481 -887 15 480 -888 15 482 -891 20 480 -891 20 481 -895 24 480 -895 24 481 -899 27 479 -898 28 479 -903 30 478 -902 31 478 -907 32 476 -907 33 476 -880 0 480 -884 10 477 -886 15 477 -886 15 476 -889 20 474 -889 19 474 -892 23 472 -892 22 472 -894 25 469 -896 27 466 -897 26 466 -899 28 463 -879 0 478 -885 12 478 -884 12 477 -888 20 477 -887 20 475 -890 27 475 -889 27 474 -892 34 474 -892 34 472 -894 41 473 -894 41 472 -896 47 472 -897 47 471 -900 53 471 -901 52 470 -879 0 477 -885 12 479 -886 12 481 -890 19 481 -890 18 483 -896 23 483 -895 23 485 -902 26 484 -902 27 485 -909 27 484 -909 28 485 -916 26 483 -916 28 483 -922 24 481 -922 25 480 -878 0 478 -884 12 476 -889 19 476 -889 18 475 -894 24 474 -894 23 475 -899 27 472 -899 26 473 -904 28 468 -904 27 469 -908 27 464 -909 27 465 -912 25 460 -913 25 460 -882 -1 496 -884 7 496 -885 13 496 -885 13 495 -887 18 496 -887 18 495 -889 23 496 -889 23 495 -891 28 495 -891 27 494 -893 32 494 -894 31 493 -897 35 493 -897 34 492 -882 -1 495 -882 -1 497 -884 7 497 -885 7 498 -887 12 497 -887 12 499 -889 17 498 -889 17 499 -892 21 498 -892 22 499 -895 25 498 -895 26 498 -899 28 498 -898 29 498 -903 30 497 -903 31 497 -885 7 494 -886 12 494 -887 11 494 -889 16 492 -889 15 492 -892 19 490 -892 18 491 -895 21 488 -895 21 489 -898 23 486 -899 22 486 -901 23 483 -902 23 484 -882 0 494 -885 9 496 -885 9 498 -888 16 498 -888 15 500 -892 21 501 -891 21 503 -898 24 503 -896 25 504 -904 26 505 -903 28 505 -911 27 505 -910 29 505 -917 26 504 -917 28 504 -882 0 496 -882 -1 495 -885 9 495 -886 8 494 -888 16 494 -889 14 494 -893 21 493 -894 19 493 -898 24 492 -899 23 493 -904 25 489 -904 24 490 -909 25 486 -910 24 487 -913 23 483 -914 23 483 918 -6 -264 919 -6 -264 920 5 -266 920 11 -267 921 11 -267 921 17 -269 922 17 -268 922 22 -270 923 22 -270 924 27 -272 925 27 -271 926 32 -274 927 31 -274 928 35 -276 928 35 -277 919 5 -266 918 5 -267 919 11 -268 918 11 -269 920 16 -271 918 16 -271 921 21 -273 920 21 -273 922 25 -276 921 26 -276 923 28 -280 923 29 -279 925 31 -283 925 32 -283 919 -7 -263 922 4 -266 923 10 -267 925 15 -268 925 14 -268 928 19 -270 928 18 -270 932 21 -271 931 21 -272 935 23 -273 934 23 -274 938 25 -275 937 25 -276 920 -6 -264 921 7 -266 922 7 -266 922 15 -267 924 15 -266 924 23 -268 926 22 -267 926 30 -268 928 30 -268 927 37 -268 929 37 -269 929 44 -269 930 43 -270 930 49 -271 931 49 -272 921 -6 -263 920 7 -267 918 7 -268 919 15 -270 917 14 -271 918 20 -275 916 21 -275 917 24 -281 916 25 -280 918 27 -287 917 28 -287 920 27 -294 919 29 -293 922 27 -300 923 28 -299 920 -6 -263 923 6 -266 923 14 -269 924 13 -269 926 20 -272 925 19 -272 929 24 -276 928 23 -277 933 26 -280 932 25 -281 937 26 -284 936 26 -285 942 25 -288 941 25 -289 902 -5 -269 903 -6 -269 903 3 -269 903 3 -268 903 9 -268 904 9 -268 903 14 -269 904 14 -268 904 19 -270 905 19 -269 905 24 -270 906 24 -270 906 28 -272 907 28 -272 908 32 -274 908 32 -275 903 -5 -269 902 -6 -269 902 3 -269 901 3 -269 902 8 -270 900 8 -270 902 14 -271 900 14 -271 902 18 -273 901 19 -273 902 23 -276 902 23 -275 903 26 -278 903 27 -278 904 29 -282 905 30 -281 904 2 -269 905 8 -269 906 7 -270 907 12 -271 907 11 -271 909 16 -273 909 15 -274 912 18 -275 912 18 -276 915 20 -277 914 20 -278 918 22 -280 917 22 -281 904 -5 -268 903 5 -269 901 5 -270 901 12 -271 899 12 -271 899 18 -274 897 18 -273 897 23 -278 896 24 -277 897 26 -284 896 28 -283 897 28 -291 897 30 -290 898 29 -297 899 30 -297 904 -6 -269 904 5 -269 905 4 -269 905 12 -271 906 11 -271 907 18 -274 907 17 -275 909 22 -278 908 21 -279 912 24 -283 911 24 -284 915 25 -288 914 25 -289 919 24 -292 919 24 -293 894 2 -139 891 14 -139 892 14 -139 890 20 -139 890 20 -140 889 26 -139 889 26 -140 887 31 -139 887 31 -141 885 37 -140 885 36 -142 882 41 -141 882 41 -142 879 44 -142 878 44 -143 894 2 -140 894 2 -138 891 14 -138 891 14 -137 890 20 -137 890 20 -136 887 25 -137 887 25 -136 884 30 -137 885 30 -136 881 34 -137 882 35 -136 878 38 -137 873 40 -137 874 41 -138 891 14 -141 890 20 -141 890 19 -142 887 24 -143 887 23 -143 885 28 -145 885 27 -145 882 31 -148 882 30 -147 879 33 -150 879 32 -149 876 34 -152 876 34 -151 894 3 -139 891 17 -140 891 16 -141 889 25 -141 890 24 -143 888 32 -142 888 32 -144 887 39 -144 887 39 -146 887 46 -145 886 46 -146 885 53 -146 884 52 -147 883 59 -147 882 58 -147 894 3 -141 891 17 -139 891 16 -136 888 24 -137 888 23 -134 884 30 -133 885 30 -132 879 34 -131 880 35 -130 873 36 -129 874 38 -128 866 37 -128 867 38 -128 860 36 -128 860 37 -129 891 16 -140 891 16 -142 888 24 -141 888 23 -142 884 30 -142 883 28 -142 879 34 -143 878 32 -142 874 36 -145 873 35 -144 868 35 -148 867 35 -147 863 34 -151 862 34 -150 896 3 -122 896 12 -122 896 12 -123 896 18 -122 896 18 -123 895 23 -122 896 23 -124 895 28 -123 894 28 -124 893 33 -124 893 33 -125 891 38 -124 891 37 -125 888 41 -125 896 3 -123 896 2 -121 896 12 -120 895 18 -121 895 18 -119 894 23 -120 894 23 -119 892 28 -120 893 28 -119 889 32 -119 890 32 -119 887 36 -119 883 39 -119 896 3 -121 896 2 -122 895 12 -123 895 12 -124 894 17 -124 892 22 -125 891 21 -125 889 25 -127 889 24 -126 886 28 -129 886 27 -128 883 30 -130 882 30 -129 879 31 -132 879 31 -131 895 3 -124 895 14 -122 896 14 -120 894 21 -120 895 21 -118 892 27 -117 894 27 -115 889 32 -113 890 33 -113 884 36 -111 885 37 -110 878 38 -108 879 39 -109 871 38 -107 871 39 -108 895 2 -123 895 14 -123 894 13 -124 893 21 -124 892 20 -124 890 27 -124 889 26 -123 885 31 -124 884 30 -123 879 34 -125 879 33 -124 873 34 -127 873 34 -125 868 33 -129 867 34 -128 884 3 -174 883 2 -175 881 15 -175 879 21 -175 880 21 -176 878 27 -175 878 27 -176 876 32 -175 876 32 -176 874 37 -176 874 37 -177 871 42 -177 871 41 -178 868 45 -178 868 44 -178 883 3 -175 884 2 -174 881 15 -174 881 14 -172 879 21 -173 879 20 -172 877 26 -173 877 26 -171 874 31 -172 871 35 -172 867 38 -172 867 39 -172 863 41 -173 863 42 -173 883 3 -174 881 14 -177 879 20 -177 879 19 -178 876 25 -179 876 24 -179 874 28 -181 874 28 -180 871 31 -183 868 33 -186 868 33 -185 865 35 -188 865 35 -187 884 3 -175 883 2 -176 880 17 -176 880 17 -177 878 25 -177 879 25 -178 877 33 -178 877 32 -180 876 40 -179 876 40 -181 876 47 -180 875 47 -182 874 53 -181 873 53 -182 872 59 -182 871 59 -182 883 3 -177 880 17 -175 880 17 -172 877 24 -172 878 24 -170 874 30 -169 875 30 -167 869 34 -166 870 35 -165 863 37 -164 863 38 -164 856 37 -163 856 39 -163 849 37 -163 849 38 -164 884 2 -176 880 16 -177 877 24 -177 877 23 -178 873 30 -178 873 29 -177 868 34 -179 868 33 -178 863 36 -181 862 35 -179 857 36 -183 857 36 -182 852 35 -186 851 35 -185 886 3 -158 886 13 -158 886 12 -159 886 18 -158 886 18 -160 885 24 -158 885 24 -160 884 29 -159 884 29 -160 883 34 -160 883 34 -161 881 38 -160 880 38 -161 878 42 -160 877 41 -161 885 3 -159 886 3 -157 886 12 -156 885 18 -157 885 18 -155 884 23 -156 884 24 -155 882 28 -156 883 29 -155 879 32 -155 880 33 -155 876 36 -155 877 37 -155 873 39 -154 873 40 -155 886 4 -157 885 3 -158 885 13 -159 885 12 -160 884 18 -160 883 17 -160 882 22 -161 881 21 -161 879 26 -163 878 25 -162 876 28 -164 875 28 -163 872 30 -166 872 30 -165 869 32 -167 869 32 -166 885 4 -160 885 15 -158 886 14 -156 884 22 -156 885 22 -154 882 28 -153 884 28 -151 879 33 -149 881 33 -149 874 36 -146 875 37 -146 868 38 -144 869 40 -144 861 39 -142 862 40 -143 886 4 -158 885 3 -159 885 15 -159 884 14 -160 883 22 -160 882 21 -160 879 28 -160 878 26 -159 875 32 -160 874 31 -159 869 34 -161 869 34 -159 863 35 -162 863 35 -161 857 34 -164 857 34 -163 241 2 -895 243 14 -893 242 14 -893 244 20 -892 243 20 -892 245 26 -891 244 26 -891 246 31 -890 245 31 -889 246 37 -888 246 36 -887 248 41 -885 247 41 -884 250 44 -882 249 44 -882 240 2 -894 241 2 -896 243 14 -894 244 14 -895 245 20 -893 246 20 -894 247 25 -892 248 25 -893 249 30 -890 249 30 -891 251 34 -888 251 35 -889 254 38 -885 254 38 -886 257 40 -882 256 41 -882 240 2 -895 241 14 -892 242 20 -890 242 19 -890 243 24 -887 243 23 -887 243 28 -884 244 27 -884 244 31 -880 244 30 -881 244 33 -877 245 32 -877 245 34 -873 246 34 -874 240 3 -895 242 17 -892 241 16 -891 243 25 -890 241 24 -889 243 32 -888 241 32 -887 242 39 -887 241 39 -885 242 46 -886 242 46 -884 242 53 -884 243 52 -883 244 59 -882 245 58 -881 239 3 -893 243 17 -893 245 16 -895 247 24 -893 248 23 -895 251 30 -892 252 30 -894 257 34 -891 257 35 -893 263 36 -888 263 38 -889 268 37 -885 268 38 -885 273 36 -880 273 37 -880 241 3 -895 239 2 -894 242 16 -892 244 24 -889 243 23 -888 246 30 -886 247 28 -886 249 34 -882 250 32 -882 251 36 -876 253 35 -877 254 35 -871 255 35 -871 256 34 -865 257 34 -865 251 3 -909 250 3 -909 250 12 -908 250 18 -908 249 18 -908 250 23 -908 250 23 -907 251 28 -907 250 28 -906 251 33 -906 251 33 -905 252 38 -904 252 37 -903 254 41 -902 255 41 -901 250 3 -908 251 2 -910 251 12 -909 252 12 -910 252 18 -909 253 18 -910 253 23 -909 253 23 -910 255 28 -908 255 28 -909 257 32 -907 256 32 -907 259 36 -905 262 39 -903 250 2 -908 250 12 -907 250 17 -906 251 17 -905 251 22 -904 252 21 -904 252 25 -901 253 24 -901 253 28 -897 254 27 -898 255 30 -894 256 30 -895 256 31 -891 257 31 -891 250 3 -907 251 14 -908 252 14 -910 253 21 -909 254 21 -911 257 27 -910 256 27 -912 261 32 -910 261 33 -912 267 36 -909 266 37 -910 273 38 -907 272 39 -907 279 38 -903 278 39 -903 250 2 -908 250 14 -907 250 13 -906 251 21 -905 252 20 -905 254 27 -903 255 26 -903 257 31 -900 258 30 -900 261 34 -895 262 33 -896 264 34 -890 265 34 -891 267 33 -885 268 34 -886 215 3 -884 215 2 -884 214 15 -882 214 21 -880 213 21 -881 214 27 -879 213 27 -879 213 32 -877 212 32 -878 212 37 -875 211 37 -876 210 42 -873 209 41 -873 209 45 -870 208 44 -870 214 3 -884 216 2 -884 215 15 -882 216 14 -881 215 21 -880 217 20 -880 215 26 -877 217 26 -877 215 31 -875 216 31 -875 215 35 -871 215 35 -872 214 38 -868 214 39 -868 213 41 -864 213 42 -864 216 3 -884 214 2 -885 212 14 -882 212 20 -880 211 19 -880 210 25 -878 210 24 -878 207 28 -876 204 31 -874 205 31 -873 201 33 -871 202 33 -871 199 35 -869 200 35 -868 215 3 -885 213 2 -884 213 17 -881 212 17 -882 212 25 -880 210 25 -881 210 33 -879 208 32 -880 209 40 -878 207 40 -878 208 47 -878 206 47 -877 206 53 -877 206 53 -876 205 59 -874 205 59 -873 213 3 -884 214 17 -881 217 17 -881 216 24 -878 218 24 -878 218 30 -874 220 30 -874 220 34 -869 222 35 -869 221 37 -862 222 38 -863 221 37 -855 221 39 -856 220 37 -849 220 38 -849 213 2 -885 211 16 -881 211 24 -879 211 23 -878 210 30 -875 210 29 -874 208 34 -870 209 33 -870 205 36 -865 206 35 -864 202 36 -860 203 36 -859 198 35 -855 199 35 -854 232 3 -884 231 13 -884 231 12 -884 231 18 -884 230 18 -884 231 24 -883 230 24 -884 230 29 -883 229 29 -883 230 34 -881 228 34 -881 229 38 -880 228 38 -879 228 42 -877 227 41 -876 231 3 -884 233 3 -884 232 13 -884 233 12 -883 233 18 -883 234 18 -883 233 23 -881 234 24 -882 233 28 -879 234 29 -880 233 32 -877 234 33 -878 233 36 -874 233 37 -875 233 39 -870 233 40 -871 232 4 -884 231 13 -883 230 12 -883 229 18 -882 229 17 -882 228 22 -880 228 21 -880 226 26 -878 226 25 -877 224 28 -875 222 30 -872 220 32 -869 220 32 -868 230 4 -883 231 15 -883 234 14 -883 233 22 -882 235 22 -883 236 28 -879 238 28 -881 239 33 -875 240 33 -877 241 36 -870 241 37 -871 242 38 -864 242 40 -865 243 39 -857 242 40 -857 230 3 -883 230 15 -883 229 14 -882 229 22 -881 229 21 -880 229 28 -878 229 26 -877 228 32 -873 229 31 -872 226 34 -868 227 34 -867 224 35 -862 225 35 -861 221 34 -857 222 34 -856 -47 -7 -975 -47 -8 -975 -45 4 -977 -44 10 -978 -44 10 -977 -43 15 -980 -43 16 -978 -42 21 -981 -41 21 -980 -40 26 -981 -39 26 -980 -37 30 -982 -34 34 -984 -33 33 -983 -46 -7 -974 -48 -8 -975 -46 4 -978 -46 3 -979 -45 9 -980 -46 9 -981 -43 14 -982 -44 15 -983 -41 19 -984 -42 20 -985 -39 23 -986 -39 24 -986 -36 27 -988 -32 29 -990 -32 30 -990 -47 -8 -974 -44 3 -975 -43 9 -977 -42 9 -976 -40 14 -977 -40 13 -977 -37 18 -977 -37 17 -977 -33 21 -976 -33 20 -977 -30 23 -976 -30 23 -977 -26 25 -976 -26 24 -977 -47 -7 -974 -44 6 -977 -44 6 -976 -43 14 -977 -42 14 -976 -41 22 -978 -40 22 -976 -40 29 -978 -39 29 -976 -39 36 -978 -38 36 -977 -38 43 -978 -37 42 -978 -36 49 -979 -35 48 -980 -46 -7 -973 -45 6 -977 -46 5 -980 -44 13 -982 -46 12 -983 -43 18 -987 -44 18 -988 -40 22 -992 -42 23 -993 -36 24 -997 -37 26 -997 -31 25 -1002 -31 26 -1002 -25 24 -1005 -25 25 -1005 -43 5 -975 -41 13 -978 -41 12 -977 -38 19 -980 -38 18 -980 -33 23 -982 -33 22 -983 -28 25 -983 -28 24 -984 -22 26 -984 -22 25 -985 -15 25 -984 -15 25 -985 -58 -8 -988 -58 0 -988 -58 6 -989 -58 6 -988 -58 11 -989 -57 11 -988 -57 16 -990 -56 16 -989 -56 21 -990 -55 21 -990 -54 26 -991 -53 25 -991 -52 29 -993 -51 29 -993 -57 -8 -987 -58 -9 -988 -58 0 -989 -59 0 -990 -58 5 -990 -59 5 -991 -58 10 -992 -59 11 -993 -57 15 -994 -58 15 -994 -55 19 -996 -56 20 -996 -53 23 -998 -54 24 -998 -50 26 -1001 -50 27 -1000 -57 -9 -987 -57 0 -988 -56 0 -988 -56 5 -988 -55 5 -988 -53 10 -989 -53 9 -989 -50 13 -989 -50 13 -990 -47 16 -990 -47 16 -991 -43 18 -990 -44 18 -991 -40 20 -991 -40 20 -992 -56 -8 -986 -57 2 -989 -59 2 -990 -58 9 -992 -60 8 -993 -59 15 -996 -61 15 -996 -58 19 -1001 -59 20 -1001 -55 22 -1007 -56 23 -1006 -51 24 -1012 -52 25 -1011 -46 24 -1017 -46 26 -1016 -57 -9 -987 -57 2 -988 -55 1 -988 -55 9 -989 -54 8 -990 -52 15 -991 -52 14 -992 -48 19 -994 -48 18 -995 -43 22 -997 -44 21 -998 -38 22 -999 -38 22 -1000 -32 21 -1000 -32 22 -1001 -72 -7 -993 -71 -8 -994 -72 4 -996 -71 4 -996 -72 10 -998 -71 10 -997 -72 15 -1000 -71 16 -999 -71 21 -1001 -70 21 -1001 -70 26 -1003 -69 26 -1003 -69 30 -1006 -68 30 -1006 -68 34 -1009 -67 33 -1009 -71 -7 -993 -72 -8 -994 -72 4 -997 -74 3 -997 -73 9 -999 -75 9 -999 -73 14 -1001 -75 15 -1001 -73 19 -1004 -74 20 -1004 -73 23 -1007 -73 24 -1007 -72 27 -1011 -71 29 -1015 -70 30 -1015 -72 -7 -994 -71 -8 -993 -70 3 -996 -70 9 -998 -69 9 -998 -67 14 -1000 -67 13 -1000 -65 18 -1002 -65 17 -1002 -62 21 -1004 -63 20 -1004 -59 23 -1006 -60 23 -1006 -57 25 -1008 -57 24 -1009 -70 -7 -993 -71 6 -997 -70 6 -996 -70 14 -998 -68 14 -997 -69 22 -999 -67 22 -999 -68 29 -1000 -66 29 -1000 -68 36 -1001 -66 36 -1001 -67 43 -1002 -66 42 -1003 -66 49 -1004 -65 48 -1005 -69 -7 -993 -72 -8 -993 -74 5 -998 -74 13 -1001 -76 12 -1001 -76 18 -1005 -78 18 -1005 -78 22 -1011 -79 23 -1010 -78 24 -1017 -79 26 -1017 -77 25 -1024 -78 26 -1024 -75 24 -1031 -75 25 -1031 -71 -7 -994 -70 6 -997 -69 5 -996 -69 13 -1000 -68 12 -1000 -68 19 -1003 -68 18 -1004 -66 23 -1008 -66 22 -1009 -62 25 -1013 -64 24 -1013 -58 26 -1017 -59 25 -1018 -54 25 -1021 -55 25 -1022 -88 -8 -996 -88 0 -996 -89 6 -997 -88 6 -996 -89 11 -997 -88 11 -997 -89 16 -998 -88 16 -998 -88 21 -999 -87 21 -999 -88 26 -1001 -87 25 -1002 -87 29 -1004 -86 29 -1005 -87 -8 -996 -89 -9 -996 -89 0 -997 -91 0 -997 -90 5 -998 -92 5 -998 -91 10 -999 -92 11 -999 -91 15 -1002 -92 15 -1001 -91 19 -1004 -92 20 -1003 -91 23 -1007 -92 24 -1006 -91 26 -1011 -91 27 -1010 -89 -8 -996 -87 -9 -996 -88 0 -997 -87 0 -997 -87 5 -998 -86 5 -998 -85 10 -1000 -85 9 -1000 -84 13 -1002 -84 13 -1003 -81 16 -1005 -82 16 -1005 -79 18 -1008 -80 18 -1008 -77 20 -1011 -78 20 -1011 -86 -8 -996 -89 2 -997 -91 2 -997 -91 9 -999 -93 8 -998 -94 15 -1002 -96 15 -1001 -97 19 -1006 -98 20 -1005 -99 22 -1012 -99 23 -1011 -99 24 -1019 -99 25 -1018 -99 24 -1025 -98 26 -1025 -87 -9 -996 -88 2 -997 -86 1 -998 -87 9 -999 -86 8 -1000 -86 15 -1003 -87 14 -1004 -85 19 -1007 -86 18 -1008 -83 22 -1013 -84 21 -1013 -80 22 -1018 -81 22 -1019 -77 21 -1023 -78 22 -1023 -173 -6 -920 -173 -7 -920 -175 5 -919 -176 11 -918 -177 11 -918 -177 17 -917 -178 17 -918 -179 22 -916 -180 22 -917 -181 27 -915 -182 27 -916 -184 32 -914 -184 31 -914 -187 35 -912 -187 34 -913 -174 -6 -921 -172 -7 -920 -175 5 -918 -174 5 -917 -176 11 -916 -174 10 -915 -177 16 -914 -176 16 -914 -179 21 -912 -178 21 -912 -181 25 -910 -180 26 -910 -184 28 -908 -184 29 -908 -187 31 -905 -187 32 -906 -174 -7 -921 -176 5 -919 -177 4 -920 -178 10 -919 -179 10 -919 -181 15 -919 -181 14 -919 -184 18 -918 -188 21 -918 -192 23 -918 -191 23 -917 -195 25 -918 -195 25 -917 -173 -6 -921 -176 7 -919 -177 7 -920 -178 15 -918 -179 15 -920 -180 23 -919 -181 22 -920 -182 30 -919 -183 30 -920 -183 37 -919 -184 37 -920 -184 44 -919 -186 43 -919 -187 49 -918 -188 49 -918 -175 -6 -922 -176 7 -918 -174 7 -916 -176 14 -915 -174 14 -913 -177 20 -910 -175 20 -909 -178 24 -904 -177 25 -904 -182 27 -899 -181 28 -899 -186 27 -893 -186 29 -894 -191 27 -889 -191 28 -889 -174 -6 -922 -177 7 -919 -178 6 -920 -180 14 -918 -180 13 -918 -183 20 -916 -183 19 -915 -187 24 -913 -187 23 -912 -193 26 -911 -192 25 -910 -198 26 -909 -198 26 -908 -204 25 -908 -204 25 -906 -160 -6 -909 -161 3 -910 -161 9 -910 -161 8 -911 -161 14 -909 -162 14 -911 -162 19 -909 -163 19 -910 -163 24 -909 -164 24 -909 -165 28 -908 -166 28 -908 -168 32 -906 -168 31 -906 -161 -5 -910 -160 3 -909 -159 2 -908 -160 8 -908 -159 8 -907 -161 13 -907 -159 14 -906 -162 18 -905 -161 19 -905 -163 23 -903 -162 23 -904 -165 26 -901 -164 27 -901 -167 29 -898 -167 30 -899 -160 -5 -909 -161 -6 -910 -162 2 -910 -163 8 -910 -164 7 -910 -165 12 -909 -166 11 -909 -168 16 -908 -168 15 -908 -172 18 -907 -175 20 -906 -175 20 -905 -179 22 -905 -178 22 -904 -162 -5 -910 -161 5 -909 -159 4 -908 -160 12 -907 -158 12 -906 -159 18 -903 -157 18 -903 -159 23 -898 -158 24 -899 -161 26 -893 -160 28 -894 -164 28 -887 -163 30 -888 -168 29 -882 -168 30 -882 -162 -6 -910 -162 5 -910 -163 4 -910 -164 12 -909 -165 11 -908 -166 18 -907 -166 16 -906 -170 22 -904 -170 21 -902 -175 24 -900 -174 24 -899 -180 25 -897 -179 25 -896 -185 24 -895 -185 24 -894 -311 3 -969 -311 2 -970 -312 14 -974 -313 20 -976 -312 20 -976 -313 25 -979 -312 25 -979 -313 30 -982 -312 30 -981 -313 35 -984 -311 35 -984 -312 39 -988 -311 39 -988 -312 42 -991 -311 41 -992 -310 3 -970 -312 2 -969 -314 13 -974 -314 19 -977 -315 19 -977 -315 24 -980 -316 24 -980 -316 28 -983 -317 29 -983 -316 32 -987 -317 32 -987 -316 35 -991 -316 36 -996 -316 37 -996 -312 3 -970 -310 2 -969 -311 14 -974 -310 14 -974 -310 19 -977 -309 19 -977 -309 23 -980 -307 27 -983 -307 26 -983 -305 29 -986 -306 29 -986 -303 31 -989 -304 31 -990 -301 32 -992 -302 32 -993 -309 2 -970 -311 16 -975 -310 16 -975 -311 24 -978 -309 24 -978 -310 31 -980 -308 31 -980 -310 39 -982 -308 38 -983 -309 45 -984 -308 45 -985 -309 52 -986 -308 51 -988 -309 57 -990 -309 56 -991 -309 3 -970 -311 2 -969 -312 16 -975 -314 15 -975 -315 23 -979 -317 22 -978 -319 27 -984 -321 27 -983 -322 30 -989 -323 31 -988 -324 31 -995 -325 33 -995 -325 31 -1002 -325 33 -1002 -325 29 -1009 -324 30 -1009 -311 3 -970 -309 2 -969 -309 15 -975 -310 23 -979 -310 22 -979 -310 28 -984 -311 27 -984 -309 31 -990 -310 30 -990 -308 33 -995 -309 32 -995 -305 32 -1001 -306 31 -1001 -302 30 -1006 -303 30 -1006 -328 2 -968 -327 1 -968 -328 11 -969 -327 11 -969 -328 17 -970 -327 17 -970 -329 22 -971 -328 22 -971 -329 27 -973 -328 27 -973 -329 31 -975 -328 31 -975 -329 36 -978 -328 35 -978 -329 39 -981 -328 38 -982 -327 2 -968 -328 1 -967 -329 11 -969 -330 10 -969 -330 16 -971 -331 16 -970 -331 21 -973 -332 21 -972 -332 25 -975 -333 26 -975 -333 29 -978 -333 30 -978 -334 32 -982 -334 33 -981 -335 35 -986 -334 35 -985 -328 2 -967 -327 10 -970 -327 16 -972 -326 15 -972 -326 20 -974 -326 19 -975 -325 23 -978 -325 22 -978 -324 25 -981 -324 25 -982 -322 27 -985 -323 27 -985 -321 28 -989 -322 28 -989 -326 2 -968 -328 13 -970 -331 12 -969 -331 19 -972 -333 19 -971 -335 25 -975 -337 25 -973 -339 28 -979 -340 29 -977 -342 31 -984 -343 32 -983 -345 32 -991 -345 33 -990 -346 31 -997 -346 32 -997 -326 1 -968 -327 13 -970 -326 12 -971 -327 19 -973 -327 18 -974 -328 25 -978 -328 23 -978 -328 28 -983 -329 27 -983 -327 30 -989 -329 29 -989 -326 29 -995 -328 29 -995 -324 28 -1000 -325 28 -1001 -270 5 -956 -269 5 -956 -267 16 -960 -266 22 -962 -265 22 -961 -264 27 -964 -264 28 -963 -263 33 -966 -262 33 -965 -260 37 -968 -259 37 -967 -258 41 -970 -257 41 -969 -254 44 -972 -269 16 -961 -266 22 -963 -268 21 -964 -265 26 -966 -266 26 -967 -263 31 -969 -264 31 -970 -260 34 -972 -261 35 -972 -258 37 -975 -258 38 -975 -254 39 -978 -254 40 -978 -270 5 -957 -269 5 -955 -266 16 -959 -264 22 -961 -263 21 -960 -261 26 -962 -261 25 -962 -257 29 -963 -257 28 -963 -253 32 -963 -254 31 -964 -250 34 -964 -250 33 -965 -246 35 -965 -246 35 -966 -268 5 -955 -266 19 -960 -265 18 -959 -264 26 -962 -263 26 -960 -261 34 -963 -260 34 -961 -260 41 -964 -258 41 -963 -258 48 -965 -257 48 -965 -256 54 -967 -255 54 -967 -254 59 -969 -253 59 -969 -266 19 -961 -268 18 -962 -266 25 -966 -268 24 -967 -265 30 -971 -267 30 -972 -263 33 -978 -265 34 -978 -260 34 -984 -261 35 -984 -256 33 -989 -256 35 -989 -251 32 -993 -251 33 -993 -265 19 -960 -264 18 -959 -262 25 -962 -262 24 -962 -259 31 -966 -259 29 -966 -254 34 -969 -255 32 -970 -249 35 -972 -250 34 -973 -243 34 -973 -244 34 -975 -237 33 -975 -238 33 -976 -283 4 -967 -282 4 -966 -282 13 -968 -282 13 -967 -282 19 -969 -281 19 -968 -281 24 -970 -280 24 -969 -280 29 -971 -279 29 -971 -278 34 -973 -277 34 -972 -276 38 -974 -275 37 -974 -274 41 -977 -273 40 -977 -284 13 -969 -282 18 -970 -284 18 -971 -282 23 -973 -283 23 -973 -280 28 -975 -281 28 -975 -279 31 -978 -280 32 -978 -277 35 -981 -275 37 -984 -275 38 -984 -281 13 -968 -280 13 -967 -279 18 -969 -279 17 -969 -277 22 -970 -276 21 -971 -274 25 -972 -270 28 -973 -270 27 -974 -267 29 -975 -267 29 -976 -263 30 -976 -263 30 -977 -281 5 -966 -281 15 -969 -284 15 -970 -282 22 -972 -284 21 -973 -283 27 -977 -285 27 -977 -283 31 -983 -284 32 -982 -281 33 -989 -282 35 -988 -278 34 -995 -279 36 -994 -274 33 -1001 -274 35 -1000 -283 5 -967 -281 4 -966 -281 15 -968 -279 14 -968 -278 22 -970 -278 21 -971 -276 27 -974 -276 26 -975 -272 31 -978 -272 29 -979 -267 32 -981 -268 31 -983 -262 32 -985 -263 31 -986 -257 30 -987 -257 30 -988 -637 6 -630 -637 5 -630 -634 17 -626 -635 17 -626 -633 23 -625 -634 23 -624 -631 28 -622 -633 28 -622 -630 33 -620 -632 33 -620 -630 38 -617 -631 38 -617 -629 42 -614 -630 42 -613 -628 45 -610 -629 44 -610 -638 6 -630 -636 5 -631 -634 17 -627 -632 16 -627 -632 22 -625 -630 22 -625 -630 27 -622 -628 27 -623 -628 31 -619 -627 32 -620 -626 35 -616 -625 35 -616 -624 38 -612 -622 40 -608 -623 40 -608 -636 6 -630 -638 5 -630 -636 17 -626 -635 22 -623 -636 22 -623 -635 27 -620 -635 26 -620 -636 30 -616 -635 29 -616 -637 32 -613 -636 32 -613 -637 34 -609 -636 34 -609 -638 35 -605 -637 35 -605 -638 5 -629 -635 19 -625 -636 19 -625 -634 27 -622 -636 27 -622 -634 34 -620 -636 34 -619 -633 42 -618 -635 41 -617 -633 48 -616 -634 48 -615 -633 55 -614 -633 54 -613 -632 60 -611 -631 59 -609 -639 6 -629 -637 5 -631 -634 19 -625 -632 18 -627 -630 26 -623 -628 25 -624 -624 30 -620 -623 31 -622 -620 33 -616 -619 34 -617 -615 34 -611 -615 36 -612 -612 34 -605 -612 36 -605 -610 32 -599 -610 33 -598 -639 5 -630 -636 18 -625 -634 26 -621 -634 25 -621 -632 31 -617 -632 30 -616 -631 35 -611 -630 33 -611 -631 36 -605 -629 35 -605 -631 35 -599 -630 34 -599 -632 33 -593 -631 33 -593 -622 5 -638 -621 14 -637 -622 14 -637 -620 20 -636 -622 20 -636 -619 25 -635 -621 25 -635 -619 30 -634 -620 30 -633 -618 35 -632 -619 34 -631 -617 39 -629 -618 38 -629 -616 42 -626 -616 41 -625 -623 5 -638 -621 4 -639 -619 13 -638 -619 19 -636 -617 19 -637 -617 24 -635 -616 24 -636 -615 28 -633 -615 29 -634 -613 32 -630 -613 33 -631 -611 35 -627 -611 36 -628 -609 38 -624 -622 5 -639 -623 4 -638 -622 13 -636 -621 19 -634 -622 18 -634 -621 23 -631 -621 22 -631 -621 26 -628 -620 25 -628 -621 28 -624 -620 28 -624 -621 30 -620 -620 30 -620 -621 31 -616 -620 31 -616 -624 5 -637 -622 4 -638 -621 16 -636 -619 15 -638 -617 23 -636 -616 22 -637 -612 28 -634 -612 28 -636 -607 32 -632 -607 32 -633 -602 34 -628 -602 35 -629 -598 35 -623 -598 36 -624 -594 34 -617 -594 35 -617 -623 4 -637 -621 16 -636 -622 15 -634 -620 22 -633 -620 21 -632 -618 28 -629 -617 26 -629 -616 31 -624 -615 30 -624 -614 33 -618 -613 32 -618 -613 32 -612 -612 32 -612 -613 31 -606 -612 31 -606 -942 5 -31 -942 4 -31 -941 16 -36 -940 16 -35 -940 22 -38 -939 22 -37 -939 27 -40 -938 28 -40 -938 32 -43 -937 32 -42 -936 37 -45 -935 37 -44 -934 41 -47 -933 41 -47 -932 44 -51 -931 43 -51 -941 5 -31 -943 4 -31 -943 15 -37 -941 21 -39 -942 21 -40 -940 26 -42 -942 26 -43 -939 30 -46 -940 31 -46 -938 34 -49 -936 37 -53 -934 39 -57 -934 39 -56 -942 5 -32 -941 4 -31 -939 16 -35 -938 21 -37 -937 21 -37 -935 26 -39 -935 25 -39 -932 29 -41 -932 28 -41 -929 31 -43 -925 33 -44 -926 33 -45 -922 34 -46 -922 34 -47 -940 4 -31 -939 18 -36 -939 18 -35 -938 26 -39 -936 26 -37 -936 34 -40 -934 33 -39 -935 41 -42 -933 40 -41 -934 47 -43 -932 47 -43 -932 54 -45 -931 53 -46 -930 59 -48 -929 58 -49 -940 5 -30 -940 18 -37 -942 17 -38 -941 25 -41 -943 24 -42 -942 29 -47 -944 30 -47 -942 32 -54 -944 33 -53 -941 34 -60 -942 35 -60 -938 33 -67 -939 35 -67 -935 31 -72 -935 33 -72 -938 18 -35 -937 25 -39 -936 24 -39 -934 30 -44 -934 29 -44 -931 34 -48 -932 32 -49 -927 35 -52 -928 34 -53 -922 34 -55 -922 34 -57 -916 32 -58 -917 32 -60 -958 4 -38 -957 4 -37 -957 13 -39 -957 13 -38 -957 19 -40 -956 19 -39 -957 24 -41 -956 24 -41 -956 29 -43 -955 29 -42 -955 34 -45 -954 33 -44 -954 38 -47 -953 37 -47 -952 41 -50 -951 40 -50 -958 3 -38 -958 13 -39 -959 12 -40 -958 18 -41 -960 18 -42 -958 23 -44 -959 23 -44 -958 27 -47 -959 28 -46 -957 31 -50 -958 32 -49 -956 34 -53 -956 35 -52 -955 37 -57 -955 37 -56 -957 3 -37 -955 12 -39 -955 18 -41 -954 17 -41 -953 22 -43 -953 21 -43 -950 25 -45 -951 24 -46 -947 27 -47 -948 27 -48 -944 29 -50 -945 29 -51 -942 30 -53 -955 4 -37 -957 15 -40 -959 14 -40 -959 22 -43 -961 21 -43 -961 27 -48 -963 27 -47 -962 31 -53 -963 32 -52 -962 33 -59 -963 34 -58 -961 34 -66 -962 35 -65 -959 33 -73 -959 34 -72 -956 3 -37 -956 15 -40 -955 14 -40 -954 21 -42 -954 20 -43 -953 27 -46 -953 25 -47 -950 30 -51 -951 29 -52 -947 32 -56 -948 31 -57 -943 32 -61 -944 31 -62 -939 30 -64 -939 30 -65 -895 9 -179 -895 8 -179 -890 20 -179 -891 20 -179 -888 26 -179 -888 26 -178 -885 31 -179 -886 31 -178 -883 36 -178 -883 36 -177 -880 41 -177 -881 41 -176 -877 45 -176 -877 45 -175 -874 48 -174 -874 47 -173 -895 9 -178 -895 8 -180 -890 19 -181 -887 25 -180 -887 25 -182 -884 30 -180 -884 30 -182 -880 34 -180 -880 35 -181 -877 38 -179 -877 38 -180 -872 41 -179 -873 41 -179 -868 42 -177 -869 43 -177 -895 9 -180 -895 8 -178 -890 20 -178 -891 20 -177 -888 25 -176 -886 29 -174 -883 33 -172 -883 32 -172 -881 35 -169 -880 35 -169 -878 37 -166 -877 37 -167 -875 38 -163 -875 38 -164 -895 8 -177 -890 22 -178 -890 22 -177 -887 30 -177 -888 30 -175 -885 37 -176 -886 37 -174 -883 45 -175 -883 44 -173 -881 51 -174 -881 51 -172 -879 58 -173 -878 57 -172 -876 63 -172 -875 62 -171 -895 9 -177 -889 22 -179 -889 21 -181 -885 29 -181 -885 28 -183 -879 33 -183 -880 33 -185 -873 36 -185 -874 37 -186 -867 37 -185 -867 39 -186 -860 37 -184 -860 39 -185 -854 35 -182 -853 36 -182 -896 8 -177 -889 22 -178 -890 21 -176 -886 29 -176 -886 28 -175 -881 34 -175 -881 33 -175 -876 37 -172 -876 36 -173 -871 39 -169 -870 38 -170 -866 38 -165 -866 37 -166 -862 36 -161 -861 36 -162 -893 8 -196 -893 7 -195 -891 17 -196 -892 17 -195 -890 23 -196 -891 23 -195 -889 28 -196 -889 28 -195 -887 33 -196 -887 33 -195 -885 37 -195 -885 37 -194 -883 42 -194 -882 41 -193 -879 45 -193 -879 44 -193 -893 8 -195 -893 7 -196 -891 16 -198 -889 22 -197 -889 22 -199 -887 27 -198 -887 27 -199 -884 31 -198 -885 32 -199 -881 35 -198 -882 36 -199 -877 38 -198 -878 39 -198 -873 41 -198 -874 41 -198 -891 17 -195 -891 16 -194 -889 22 -194 -889 21 -193 -886 26 -192 -886 25 -192 -883 29 -191 -883 28 -191 -881 31 -188 -880 31 -189 -877 33 -186 -877 33 -187 -874 34 -184 -874 34 -185 -893 8 -194 -890 19 -196 -890 18 -198 -888 25 -198 -888 25 -200 -884 31 -201 -885 31 -203 -879 34 -204 -880 35 -205 -873 37 -205 -874 38 -206 -866 38 -206 -867 39 -206 -859 37 -206 -859 38 -205 -893 7 -194 -890 19 -195 -890 18 -193 -887 25 -194 -886 24 -193 -883 31 -193 -882 29 -194 -878 34 -192 -877 33 -193 -872 36 -190 -871 35 -191 -867 35 -187 -866 35 -189 -862 34 -184 -861 34 -185 -888 8 -233 -888 7 -233 -884 19 -231 -881 25 -230 -882 25 -230 -879 30 -229 -880 31 -228 -877 36 -227 -878 36 -226 -876 40 -225 -876 40 -224 -873 44 -222 -874 44 -221 -871 47 -219 -888 8 -232 -887 7 -234 -883 19 -231 -882 19 -233 -880 25 -231 -879 24 -232 -877 29 -229 -877 29 -230 -874 33 -227 -874 34 -228 -871 37 -225 -871 38 -226 -868 40 -223 -868 41 -223 -865 42 -219 -865 43 -219 -887 8 -234 -885 19 -230 -883 25 -228 -883 24 -227 -881 29 -225 -882 28 -225 -880 32 -221 -880 31 -222 -879 35 -218 -879 34 -218 -879 37 -214 -878 36 -214 -878 38 -210 -877 38 -211 -883 22 -230 -884 21 -229 -881 29 -228 -883 29 -227 -880 37 -226 -882 37 -224 -879 44 -224 -880 44 -222 -878 51 -222 -878 50 -221 -876 57 -221 -876 56 -219 -874 62 -218 -873 62 -217 -889 8 -231 -883 21 -230 -881 21 -232 -878 28 -230 -877 27 -232 -872 33 -230 -871 33 -232 -866 36 -228 -865 37 -230 -860 37 -226 -859 38 -226 -854 36 -222 -854 38 -222 -849 35 -217 -849 36 -217 -887 8 -233 -889 8 -232 -885 21 -228 -881 28 -226 -881 27 -226 -877 33 -223 -877 32 -223 -874 37 -219 -873 35 -219 -871 38 -214 -870 37 -214 -869 37 -208 -867 37 -208 -867 36 -202 -866 36 -203 -878 7 -247 -876 16 -246 -877 16 -246 -875 22 -246 -876 22 -246 -874 27 -246 -875 27 -245 -873 32 -245 -873 32 -244 -871 37 -243 -872 37 -242 -870 41 -241 -870 40 -240 -867 44 -239 -867 43 -238 -878 7 -246 -877 7 -248 -876 16 -247 -875 16 -248 -874 21 -247 -873 21 -248 -871 26 -246 -871 26 -247 -869 30 -245 -869 31 -246 -866 34 -244 -866 35 -245 -863 37 -242 -863 38 -242 -859 40 -240 -860 41 -240 -877 16 -245 -875 21 -244 -875 20 -243 -874 25 -241 -873 24 -241 -872 28 -238 -871 28 -238 -870 31 -235 -870 30 -235 -869 32 -231 -868 32 -232 -867 33 -228 -866 33 -228 -879 7 -245 -877 7 -247 -876 18 -246 -874 18 -248 -872 25 -247 -871 24 -249 -867 30 -248 -867 30 -250 -862 34 -248 -862 35 -249 -856 36 -246 -856 38 -247 -849 37 -244 -850 39 -244 -843 36 -240 -844 38 -240 -878 8 -247 -878 7 -246 -876 18 -245 -876 17 -244 -874 25 -243 -873 24 -242 -870 30 -240 -869 29 -240 -866 34 -237 -865 32 -237 -862 35 -233 -861 34 -233 -859 35 -228 -857 34 -228 -856 33 -222 -855 33 -223 -899 5 11 -898 5 11 -895 17 8 -893 23 7 -893 23 8 -891 28 5 -891 28 6 -889 33 4 -888 33 5 -886 38 4 -885 38 5 -883 42 3 -882 41 4 -879 45 2 -878 44 2 -898 5 12 -899 5 10 -896 16 6 -893 22 5 -894 22 4 -891 27 3 -891 27 2 -888 31 1 -888 31 0 -884 35 0 -885 35 0 -880 37 -1 -881 38 -1 -876 39 -3 -876 40 -3 -899 5 12 -895 17 9 -894 16 10 -892 22 9 -892 21 9 -888 26 9 -889 25 9 -885 30 9 -885 29 9 -881 32 10 -877 34 11 -877 34 10 -874 35 12 -874 35 11 -899 6 11 -894 19 9 -894 19 10 -891 27 8 -891 27 9 -889 34 7 -888 34 9 -887 41 7 -886 41 9 -885 48 7 -883 48 8 -882 54 6 -881 54 7 -879 60 5 -878 59 5 -898 6 13 -894 19 8 -895 18 5 -892 25 3 -893 25 1 -889 30 -1 -890 30 -2 -885 33 -6 -886 34 -7 -880 34 -10 -880 36 -11 -874 34 -14 -874 35 -14 -868 32 -16 -867 33 -15 -898 6 11 -898 5 13 -893 18 10 -890 26 8 -889 25 8 -885 31 6 -885 30 6 -880 34 5 -880 33 4 -874 36 4 -874 34 3 -868 35 5 -868 34 3 -862 33 6 -862 33 4 -907 5 -3 -907 4 -3 -906 14 -4 -906 14 -3 -905 19 -5 -905 19 -4 -904 25 -6 -904 25 -5 -902 30 -7 -902 30 -5 -901 34 -7 -900 34 -6 -898 38 -8 -897 38 -7 -895 41 -9 -894 41 -9 -906 5 -2 -907 4 -4 -906 14 -5 -907 13 -6 -905 19 -6 -906 19 -8 -903 24 -8 -904 24 -9 -901 28 -10 -902 28 -11 -899 32 -12 -900 33 -12 -896 35 -14 -897 36 -14 -892 37 -16 -893 38 -16 -907 5 -4 -906 4 -2 -905 14 -4 -904 13 -3 -903 19 -4 -902 18 -4 -900 23 -4 -900 22 -4 -896 26 -4 -896 25 -5 -893 28 -4 -893 28 -5 -889 30 -4 -889 30 -5 -885 31 -5 -906 5 -1 -905 16 -5 -906 15 -6 -904 22 -8 -906 22 -10 -903 28 -13 -905 28 -13 -900 31 -18 -902 32 -18 -897 34 -23 -898 35 -23 -892 34 -27 -892 36 -27 -886 34 -31 -886 35 -31 -906 4 -2 -904 16 -4 -903 15 -3 -901 22 -5 -901 21 -5 -898 28 -7 -897 26 -8 -893 31 -9 -893 30 -10 -887 33 -11 -887 32 -12 -881 32 -12 -881 32 -13 -875 31 -12 -875 31 -13 -883 5 49 -882 4 49 -878 16 47 -879 16 47 -876 22 46 -874 27 44 -874 28 46 -872 32 44 -871 33 45 -869 37 43 -868 37 45 -865 41 43 -865 41 44 -862 44 43 -861 44 43 -882 5 50 -883 4 48 -879 16 46 -879 16 45 -876 21 44 -877 21 43 -874 26 43 -874 26 41 -870 30 41 -871 31 40 -867 34 40 -867 35 39 -863 37 38 -863 38 38 -858 39 37 -859 39 38 -883 5 48 -883 4 50 -878 16 49 -875 21 48 -872 26 48 -872 25 48 -869 29 49 -869 28 49 -865 32 51 -865 31 50 -862 33 52 -861 33 51 -858 35 53 -858 34 52 -877 18 47 -877 18 48 -874 26 47 -874 26 49 -872 34 47 -872 33 49 -870 41 47 -869 41 49 -868 48 47 -867 47 48 -866 54 47 -864 53 47 -863 59 46 -861 59 46 -882 5 51 -877 18 46 -878 18 44 -875 25 42 -876 24 40 -871 30 38 -872 30 36 -866 33 33 -867 34 32 -861 34 30 -861 35 29 -854 33 27 -854 35 27 -848 31 26 -848 33 26 -882 5 49 -877 18 49 -873 25 47 -873 24 48 -868 30 46 -868 29 46 -863 34 45 -863 32 44 -857 35 46 -857 34 45 -851 34 47 -851 34 46 -845 33 49 -845 33 48 -889 4 33 -887 13 32 -888 13 33 -887 19 32 -887 19 33 -885 24 31 -885 24 32 -884 29 30 -883 29 31 -882 34 30 -881 33 31 -879 38 29 -878 37 30 -876 41 29 -875 40 29 -888 4 34 -889 4 32 -888 13 30 -886 18 30 -887 18 29 -884 23 28 -885 23 27 -882 27 27 -883 28 26 -879 31 25 -880 32 25 -876 34 23 -877 35 24 -873 37 22 -886 13 33 -885 18 33 -884 17 33 -882 22 33 -881 21 33 -878 25 33 -878 24 33 -874 28 34 -874 27 33 -871 29 34 -870 29 33 -867 30 34 -888 4 35 -886 15 32 -888 15 30 -885 22 28 -887 21 27 -883 27 24 -885 27 23 -880 31 19 -882 32 19 -876 33 15 -877 34 15 -870 34 11 -871 35 11 -864 33 8 -864 35 8 -888 4 34 -886 15 33 -885 14 34 -883 22 32 -882 21 32 -879 27 30 -878 26 30 -874 30 29 -874 29 28 -868 32 28 -868 31 27 -862 32 28 -862 31 26 -856 30 28 -856 30 27 666 0 644 661 11 644 662 11 644 659 17 644 659 17 643 656 22 644 656 23 643 653 27 644 654 27 642 650 32 642 651 32 641 647 36 641 647 35 640 643 39 640 643 38 639 666 0 643 666 0 645 661 11 645 661 11 646 658 16 645 658 16 647 655 21 645 654 21 647 651 25 645 651 26 646 647 29 645 647 29 646 643 31 644 643 32 644 638 33 643 639 34 643 667 0 643 662 11 642 659 17 642 659 16 641 656 21 640 656 20 640 653 24 637 653 23 638 651 26 634 650 26 635 648 28 632 647 28 632 645 29 629 645 29 630 -861 7 199 -861 6 200 -856 18 199 -856 18 200 -854 24 199 -854 24 200 -851 29 199 -852 29 200 -849 34 200 -849 34 201 -846 39 201 -846 39 202 -843 43 202 -843 43 203 -839 46 203 -839 45 204 -861 7 200 -861 6 199 -856 17 197 -853 23 198 -853 23 196 -850 28 198 -850 28 196 -846 32 198 -847 33 197 -843 36 198 -843 36 197 -838 39 199 -839 39 198 -834 41 200 -857 18 201 -854 23 201 -854 23 202 -851 28 203 -851 27 204 -848 31 206 -848 30 206 -846 33 209 -846 33 208 -843 35 211 -841 36 214 -840 36 213 -861 6 201 -855 20 200 -856 20 201 -853 28 201 -853 28 203 -850 35 202 -851 35 204 -849 43 203 -849 42 205 -847 49 204 -847 49 205 -845 56 205 -844 55 206 -842 61 206 -840 60 206 -861 7 202 -855 20 199 -855 19 197 -851 27 197 -851 26 195 -846 31 194 -846 32 193 -840 34 193 -840 35 191 -833 35 192 -833 37 191 -826 35 192 -826 37 192 -820 33 194 -820 34 194 -862 6 201 -856 19 202 -852 27 202 -852 26 202 -847 32 203 -847 31 203 -842 36 205 -841 34 204 -836 37 208 -836 36 207 -832 36 211 -831 35 210 -827 34 216 -826 34 215 -859 6 183 -860 6 183 -858 15 183 -859 15 183 -857 21 182 -858 21 183 -856 26 182 -856 26 183 -854 31 182 -854 31 183 -852 36 183 -852 35 184 -849 40 183 -849 39 184 -846 43 184 -846 42 185 -859 6 184 -860 5 182 -858 15 182 -858 14 180 -856 20 181 -856 20 179 -854 25 180 -854 25 179 -851 29 180 -852 30 179 -848 33 179 -849 34 179 -844 36 179 -845 37 179 -840 39 179 -841 39 180 -860 6 182 -859 5 183 -857 14 184 -856 20 184 -855 19 185 -853 24 185 -853 23 185 -850 27 187 -850 26 187 -847 29 189 -844 31 191 -843 31 191 -840 32 193 -859 6 185 -859 5 182 -857 17 182 -857 16 180 -854 24 180 -855 23 178 -851 29 176 -852 29 175 -846 33 174 -847 34 173 -840 35 172 -841 36 171 -834 36 171 -834 37 170 -827 35 171 -827 36 171 -859 5 184 -857 17 183 -856 16 185 -854 23 184 -853 22 184 -850 29 184 -849 27 184 -844 32 185 -844 31 184 -839 34 187 -838 33 186 -833 33 189 -832 33 188 -828 32 193 -827 32 192 667 1 644 660 14 643 661 13 642 657 21 642 658 21 640 655 29 641 656 28 639 653 36 640 653 35 638 651 42 639 650 42 638 648 49 638 648 48 637 645 54 637 644 53 637 667 1 642 660 13 644 660 13 646 656 20 646 656 19 648 650 24 649 650 25 650 644 27 650 644 28 652 637 28 651 637 30 652 630 27 650 630 29 651 624 25 649 624 26 648 667 0 642 660 13 643 661 13 641 656 20 641 656 19 641 651 25 640 651 24 640 646 28 638 646 27 639 641 29 635 640 28 636 636 28 631 635 28 632 632 26 627 631 26 628 -606 2 721 -606 1 721 -603 13 717 -602 19 715 -601 24 713 -600 25 714 -599 29 711 -598 29 712 -597 34 709 -596 34 710 -594 38 707 -593 38 708 -591 41 705 -590 40 705 -605 2 721 -607 1 720 -604 13 716 -605 12 715 -603 18 713 -604 18 712 -601 23 711 -602 23 710 -599 27 708 -600 28 707 -597 31 705 -598 31 704 -594 34 701 -594 34 702 -591 36 698 -591 36 699 -606 2 720 -602 13 718 -600 18 716 -600 18 717 -597 23 715 -597 22 715 -594 26 714 -594 25 714 -590 28 713 -586 30 713 -587 30 712 -583 31 712 -583 31 711 -605 1 721 -602 15 717 -602 15 718 -600 23 715 -599 23 716 -598 31 714 -597 30 715 -596 38 712 -595 37 714 -595 44 711 -593 44 712 -593 51 710 -591 50 710 -590 56 708 -589 55 707 -604 2 722 -603 15 716 -605 14 714 -602 22 711 -604 21 710 -602 26 705 -603 27 704 -600 29 699 -601 30 699 -597 31 693 -598 32 693 -592 30 688 -593 32 688 -588 28 683 -587 30 683 -605 2 722 -601 15 718 -599 22 714 -598 21 715 -595 27 711 -595 26 711 -591 31 708 -591 29 707 -585 32 705 -586 31 704 -580 31 703 -580 31 702 -574 29 702 -574 29 701 -619 1 710 -618 10 709 -618 16 708 -618 16 709 -618 21 706 -617 21 707 -616 26 705 -615 26 706 -615 31 704 -614 30 704 -613 35 702 -612 34 702 -610 38 700 -610 37 699 -618 1 710 -620 0 710 -619 10 708 -620 9 707 -619 15 706 -620 15 705 -618 20 704 -619 20 703 -617 24 701 -618 25 701 -615 28 698 -616 29 699 -613 31 695 -614 32 696 -611 34 692 -611 34 693 -620 1 710 -618 0 710 -617 9 709 -616 15 708 -615 14 708 -613 19 706 -613 18 706 -610 22 705 -610 21 704 -607 24 703 -603 26 702 -603 26 701 -599 27 700 -600 27 699 -617 1 711 -618 12 708 -620 11 707 -619 19 704 -621 18 704 -619 24 699 -621 24 699 -619 28 694 -620 29 694 -617 30 688 -618 31 688 -614 31 682 -615 32 682 -611 30 676 -610 31 676 -618 0 711 -617 12 708 -616 11 709 -615 18 706 -614 17 706 -612 24 703 -612 22 702 -608 27 699 -609 26 698 -604 29 695 -604 28 694 -599 29 692 -599 28 691 -593 27 690 -594 27 688 664 0 661 665 0 661 663 8 661 662 14 661 662 14 660 660 19 661 660 19 660 658 24 661 658 24 660 656 29 660 656 29 659 653 33 660 653 32 659 650 36 659 649 35 658 665 0 660 665 0 662 662 8 661 662 8 663 660 14 662 661 13 664 658 18 663 658 18 664 655 22 664 656 23 664 652 26 664 652 27 664 648 29 664 649 30 664 644 31 663 644 32 663 662 8 659 660 13 659 658 17 658 657 16 658 654 20 656 654 19 656 651 22 654 648 24 652 645 25 650 644 25 650 -414 0 893 -414 0 892 -419 10 891 -418 10 891 -421 16 891 -421 16 890 -424 21 890 -423 21 889 -426 26 889 -426 26 888 -429 31 887 -428 31 886 -432 35 885 -431 34 884 -435 37 883 -435 37 882 -419 10 892 -419 10 893 -422 15 892 -423 15 893 -425 20 891 -426 20 892 -429 24 890 -429 24 891 -433 27 889 -433 28 889 -437 30 887 -437 31 887 -441 32 885 -440 33 885 -413 0 892 -418 10 889 -421 15 888 -420 15 888 -423 20 886 -423 19 886 -425 23 883 -425 22 883 -427 25 879 -427 25 880 -429 27 876 -429 26 877 -431 28 873 -413 0 891 -419 12 890 -419 12 889 -422 20 888 -421 20 887 -424 27 887 -423 27 885 -426 34 885 -425 34 883 -428 41 884 -428 41 882 -430 47 883 -430 47 881 -433 53 881 -434 52 880 -413 0 890 -420 12 891 -421 12 893 -425 19 892 -425 18 894 -431 23 893 -431 23 895 -437 26 893 -437 27 895 -444 27 892 -444 28 893 -450 26 890 -450 28 890 -456 24 887 -456 25 887 -418 12 888 -423 19 887 -423 18 887 -427 24 885 -428 23 885 -432 27 882 -433 26 882 -436 28 878 -437 27 879 -440 27 873 -441 27 874 -443 25 868 -444 25 868 -420 -1 908 -419 -1 908 -421 7 908 -422 13 908 -422 13 907 -424 18 908 -423 18 907 -426 23 907 -425 23 906 -428 28 906 -427 27 905 -430 32 904 -430 31 904 -433 35 903 -434 34 902 -419 -1 907 -420 -1 909 -422 7 908 -422 7 910 -424 12 909 -424 12 910 -426 17 909 -426 17 910 -429 21 909 -429 22 910 -433 25 908 -432 26 909 -436 28 907 -436 29 907 -440 30 906 -440 31 906 -421 7 906 -423 12 906 -423 11 905 -426 16 904 -426 15 904 -428 19 901 -429 18 901 -431 21 898 -431 21 899 -433 23 895 -434 22 896 -436 23 893 -437 23 893 -419 0 906 -422 9 908 -423 9 910 -426 16 910 -426 15 912 -430 21 912 -429 21 913 -436 24 913 -435 25 914 -442 26 913 -441 28 914 -449 27 913 -448 29 913 -455 26 911 -455 28 911 -419 0 908 -419 -1 907 -422 9 907 -422 8 905 -425 16 905 -426 14 905 -429 21 904 -430 19 904 -434 24 901 -435 23 902 -439 25 898 -440 24 899 -444 25 894 -445 24 895 -448 23 890 -449 23 891 664 0 659 662 10 661 662 10 663 659 17 664 659 17 666 655 22 667 656 22 668 650 26 669 651 27 670 644 28 671 645 29 672 637 28 672 638 30 672 630 27 672 630 29 672 665 0 659 662 10 660 661 9 659 658 17 659 658 16 659 654 22 659 653 21 659 648 25 658 648 24 659 643 26 656 642 26 657 637 26 653 637 26 654 632 24 650 632 24 651 497 9 780 497 9 779 498 18 773 498 18 774 499 23 770 499 23 771 499 27 767 500 27 768 501 30 764 502 31 764 502 34 761 503 34 761 504 37 758 505 36 758 506 38 754 -376 0 849 -376 0 848 -379 10 844 -381 16 842 -380 16 842 -382 21 840 -381 21 840 -383 26 837 -382 26 837 -384 31 834 -383 31 834 -385 35 831 -384 34 831 -386 37 827 -385 37 827 -375 0 848 -377 0 849 -380 10 844 -381 10 845 -382 15 842 -383 15 843 -384 20 840 -385 20 840 -386 24 837 -387 24 837 -388 27 833 -388 28 834 -390 30 829 -390 31 829 -391 32 825 -391 33 825 -377 10 844 -379 15 841 -378 15 841 -378 20 837 -378 19 838 -378 23 834 -378 22 834 -377 25 830 -378 25 830 -376 27 826 -377 26 826 -376 28 823 -377 28 822 -379 12 843 -378 12 843 -380 20 840 -378 20 840 -380 27 837 -378 27 837 -380 34 835 -379 34 834 -381 41 833 -380 41 832 -382 47 830 -381 47 829 -383 53 827 -383 52 826 -374 0 847 -382 12 845 -384 19 841 -386 18 842 -389 23 838 -390 23 839 -394 26 834 -395 27 835 -399 27 828 -399 28 829 -402 26 823 -402 28 823 -404 24 816 -404 25 816 -374 0 848 -377 12 842 -380 19 839 -379 18 838 -381 24 834 -382 23 834 -383 27 828 -384 26 829 -383 28 822 -384 27 823 -383 27 816 -384 27 816 -382 25 811 -383 25 810 -391 -1 857 -392 7 855 -391 7 855 -393 13 854 -392 13 854 -394 18 853 -393 18 853 -395 23 851 -394 23 851 -395 28 849 -395 27 849 -396 32 847 -396 31 846 -398 35 843 -398 34 843 -390 -1 856 -393 7 855 -394 7 856 -395 12 854 -396 12 855 -396 17 853 -397 17 854 -399 21 850 -399 22 851 -401 25 848 -401 26 849 -403 28 845 -402 29 845 -405 30 841 -404 31 841 -391 7 854 -392 12 852 -392 11 852 -392 16 849 -393 15 849 -393 19 845 -393 18 845 -393 21 842 -393 23 838 -394 22 838 -393 23 834 -394 23 834 -389 0 855 -393 9 854 -394 9 856 -396 16 853 -398 15 855 -401 21 852 -402 21 854 -406 24 849 -406 25 851 -411 26 846 -411 28 847 -416 27 841 -416 29 841 -420 26 835 -419 28 835 -391 0 857 -390 -1 856 -392 9 854 -391 8 853 -393 16 851 -393 14 850 -395 21 847 -396 19 846 -398 24 842 -399 23 842 -399 25 836 -401 24 836 -400 25 830 -402 24 830 -400 23 824 -402 23 824 496 9 780 496 18 773 498 22 770 496 22 769 498 25 766 497 26 766 499 28 762 498 29 762 500 31 758 501 32 754 501 33 754 503 33 750 503 34 750 496 9 779 500 18 774 501 22 771 501 21 771 503 25 768 503 24 768 506 27 765 505 26 765 509 29 763 508 28 763 512 30 761 511 29 760 514 30 759 514 30 758 498 9 780 499 20 772 500 20 773 501 26 769 502 26 770 503 32 766 504 32 766 504 37 763 506 37 763 506 43 760 507 43 760 507 48 757 508 47 757 509 52 754 509 51 753 -171 5 920 -170 4 920 -168 15 918 -166 20 916 -166 20 917 -165 25 915 -164 25 916 -163 29 914 -162 29 915 -161 34 913 -160 33 914 -158 37 912 -157 37 912 -155 40 910 -154 39 910 -171 4 919 -168 15 917 -169 15 916 -167 20 915 -168 20 914 -165 24 913 -166 24 913 -163 28 911 -164 28 911 -161 31 909 -161 32 909 -158 34 906 -158 35 907 -155 36 904 -171 5 919 -167 15 918 -167 14 919 -165 19 917 -164 19 918 -162 23 917 -162 22 917 -158 26 916 -159 25 916 -155 28 916 -155 27 916 -151 29 916 -152 29 915 -148 30 915 -148 30 914 -166 17 918 -166 16 919 -164 24 917 -163 23 918 -162 30 917 -161 30 918 -160 36 917 -158 36 918 -158 42 916 -157 42 917 -156 48 916 -155 47 916 -153 53 915 -152 52 914 -169 5 921 -167 17 917 -169 16 916 -166 23 913 -168 23 912 -165 28 909 -167 28 908 -163 31 904 -165 32 904 -161 32 899 -161 34 899 -157 32 894 -157 34 894 -153 31 890 -153 32 890 -170 5 919 -170 4 921 -165 16 919 -163 23 916 -163 22 917 -160 27 914 -160 26 914 -155 30 911 -156 29 911 -151 31 909 -151 31 908 -146 31 908 -146 30 906 -141 29 906 -141 29 905 -182 6 910 -182 6 911 -181 14 910 -181 14 911 -181 19 910 -180 19 911 -180 24 910 -179 24 910 -178 28 909 -178 28 910 -177 32 908 -176 32 909 -175 36 907 -174 35 907 -172 39 906 -172 38 905 -183 6 910 -183 14 909 -181 19 909 -182 19 908 -180 23 907 -181 23 907 -179 27 905 -180 28 906 -177 31 903 -178 31 904 -175 34 901 -176 34 902 -173 36 898 -173 37 899 -182 5 911 -180 13 911 -179 18 910 -178 18 910 -176 22 909 -176 21 909 -173 24 908 -170 26 907 -170 26 906 -167 28 906 -167 28 905 -163 29 905 -164 29 904 -181 6 911 -181 16 910 -182 16 909 -181 22 907 -183 22 907 -181 27 904 -183 27 904 -181 31 899 -182 32 900 -179 34 894 -180 35 895 -177 35 889 -177 36 890 -173 35 884 -173 36 884 -181 5 911 -180 16 910 -179 15 910 -177 21 909 -177 20 909 -175 26 907 -175 25 906 -171 30 904 -172 29 903 -167 31 900 -168 30 899 -163 31 898 -163 31 896 -158 29 895 -158 30 894 499 9 780 498 20 772 496 19 772 497 24 767 495 24 767 496 28 761 495 28 761 496 29 755 494 30 755 496 29 749 495 30 749 497 27 743 497 28 743 499 24 739 499 25 738 501 19 773 502 25 768 502 24 768 504 28 763 503 27 763 506 30 758 505 29 758 509 30 754 508 29 754 513 28 751 512 27 750 517 25 748 517 25 747 482 9 776 483 17 773 483 17 774 483 21 771 484 21 772 484 25 769 485 26 769 484 29 766 485 29 767 486 33 764 487 33 764 487 36 761 488 36 761 488 38 758 489 37 758 -260 3 880 -260 3 879 -260 14 876 -260 13 876 -260 19 874 -259 19 874 -260 24 872 -259 24 872 -260 28 870 -258 28 870 -259 33 868 -258 32 868 -258 36 865 -257 36 865 -256 39 862 -259 3 879 -261 3 879 -262 13 876 -261 18 873 -263 18 873 -261 23 871 -263 23 871 -261 27 868 -262 27 868 -261 30 865 -262 31 865 -261 33 861 -260 35 857 -260 35 858 -259 3 880 -258 13 876 -258 18 874 -257 18 874 -256 22 872 -256 21 872 -254 25 869 -252 28 867 -252 27 867 -249 29 865 -250 29 864 -247 30 863 -248 30 862 -260 4 880 -259 16 875 -258 15 876 -258 23 873 -257 22 874 -257 29 872 -255 29 872 -256 36 870 -255 35 870 -256 42 869 -254 41 869 -255 47 867 -254 47 866 -254 52 865 -253 52 864 -258 4 880 -261 3 880 -260 16 875 -262 15 875 -262 22 872 -264 21 872 -264 26 867 -266 26 868 -266 29 862 -267 30 863 -267 30 856 -268 32 857 -267 30 850 -267 32 850 -266 29 844 -265 30 844 -260 4 879 -257 15 875 -258 22 872 -257 21 872 -257 27 868 -257 25 868 -255 30 864 -256 28 863 -253 31 859 -254 30 859 -249 31 855 -250 30 854 -246 29 851 -247 29 850 -275 3 878 -275 3 879 -275 11 878 -275 16 877 -274 16 878 -275 21 876 -274 21 876 -275 25 875 -274 25 875 -274 30 873 -273 29 873 -274 33 871 -273 33 871 -273 36 868 -274 3 879 -276 3 879 -275 11 877 -277 11 877 -276 16 876 -278 16 876 -277 20 874 -278 20 875 -277 24 872 -278 25 873 -278 28 870 -278 31 867 -278 33 863 -277 34 864 -273 11 877 -273 16 876 -273 15 875 -272 19 874 -272 18 873 -271 22 871 -271 21 871 -269 24 868 -267 26 866 -268 26 865 -265 27 863 -266 27 862 -273 3 878 -275 13 877 -277 13 877 -277 19 875 -279 19 876 -280 24 872 -281 24 873 -282 27 868 -283 28 869 -284 30 863 -285 31 864 -286 31 857 -286 32 858 -286 31 851 -285 32 851 -274 3 878 -274 13 877 -273 12 876 -273 19 874 -273 18 874 -273 24 871 -274 23 870 -272 27 866 -273 26 866 -271 29 861 -272 28 861 -269 29 856 -270 28 856 -266 27 852 -267 27 851 483 9 776 481 9 776 482 17 773 481 16 773 482 21 770 481 21 770 482 24 767 481 25 767 482 28 764 483 30 760 483 31 761 484 32 757 484 33 757 484 34 753 485 34 753 483 16 773 484 16 773 485 20 770 487 23 768 487 22 767 489 25 765 489 24 764 491 26 762 491 26 761 494 27 759 493 27 759 496 27 756 495 27 756 484 9 776 483 18 772 481 18 772 482 23 768 480 23 768 480 27 763 478 28 764 478 30 758 477 31 759 477 31 753 477 32 753 477 30 747 477 32 747 478 28 741 479 29 741 270 8 896 270 7 896 270 19 891 270 25 889 270 30 886 271 30 886 270 35 883 271 35 884 271 40 880 272 39 881 272 43 877 273 43 877 274 46 873 271 8 896 269 7 896 269 19 891 268 18 891 269 24 888 267 24 888 268 29 885 267 29 885 268 33 881 267 33 881 268 36 877 268 37 877 269 39 873 269 40 873 270 41 868 269 8 896 271 7 897 272 19 892 272 24 889 273 24 889 274 28 886 274 27 886 276 32 883 276 31 883 279 34 880 278 33 880 282 36 877 281 35 877 284 37 875 284 37 874 270 8 897 271 21 890 272 21 891 272 29 887 273 29 888 273 36 885 275 36 885 274 43 883 276 43 883 274 50 881 276 50 880 275 56 878 276 56 877 276 61 875 276 61 874 272 8 896 270 21 890 267 20 890 268 27 886 265 27 886 265 32 880 263 32 881 263 35 874 261 36 875 262 36 867 261 37 868 262 35 861 262 37 861 264 33 854 264 34 854 272 8 897 273 20 891 272 28 886 273 27 886 273 33 881 273 31 881 275 36 876 274 34 875 278 37 871 277 36 870 282 36 866 281 35 865 286 34 861 285 34 860 253 7 895 253 16 893 253 16 894 253 22 892 254 22 893 253 27 891 254 27 891 253 32 889 254 32 889 253 36 887 254 36 887 254 40 884 255 40 884 255 43 880 254 7 895 252 7 895 252 16 893 251 16 893 251 21 891 250 21 891 251 26 889 249 26 889 250 30 886 249 31 887 250 34 883 249 35 883 250 37 879 250 38 880 250 39 875 250 40 875 255 15 893 255 21 891 255 20 891 256 25 888 256 24 888 258 28 885 257 27 885 260 30 882 259 30 881 262 31 878 261 31 878 264 32 875 263 32 874 255 7 895 253 18 892 251 17 893 250 25 890 248 24 890 247 30 886 246 30 887 244 33 881 243 34 882 242 35 875 241 37 876 241 36 868 241 38 869 241 35 861 241 36 862 255 7 895 254 18 892 255 17 892 255 24 889 255 23 888 255 30 885 254 28 884 256 33 879 255 32 878 257 34 873 256 33 873 260 34 868 258 33 867 263 32 863 262 32 862 483 9 776 484 18 772 485 17 772 485 23 768 486 22 768 487 27 764 486 25 763 488 29 759 488 27 758 491 29 754 490 28 753 494 27 749 493 27 749 497 25 746 496 25 745 464 4 782 464 4 781 462 15 777 460 21 775 461 21 775 459 26 773 460 27 772 458 31 770 459 31 770 457 36 767 458 36 766 457 40 763 457 39 763 456 43 759 456 42 759 465 4 781 463 4 782 461 15 777 459 15 778 459 20 775 457 20 776 457 25 772 455 25 773 455 29 769 454 29 769 453 32 765 453 33 766 452 35 761 452 36 762 450 37 757 451 38 757 301 9 913 305 18 908 304 18 908 306 23 905 307 23 906 308 27 902 309 27 903 311 30 900 311 31 901 313 34 898 314 34 899 316 37 896 317 36 896 319 38 893 320 38 894 300 9 912 304 18 907 303 18 906 306 22 904 305 22 903 308 25 901 307 26 900 310 28 898 309 29 897 313 31 894 312 31 894 315 32 891 315 33 891 318 33 888 319 34 889 306 18 909 308 22 906 308 21 907 311 25 905 311 24 905 315 27 903 315 26 903 319 29 902 318 28 902 322 30 902 322 29 901 325 30 901 325 30 900 302 9 913 306 20 907 306 20 908 309 26 904 310 26 906 312 32 902 313 32 904 315 37 900 316 37 902 317 43 899 318 43 899 319 48 897 321 47 896 322 52 894 323 51 893 302 9 914 305 20 907 303 19 905 307 24 901 305 24 900 308 28 896 306 28 895 310 29 890 309 30 889 312 29 885 312 30 884 316 27 880 316 28 879 320 24 876 320 25 876 301 9 912 307 19 908 310 25 904 310 24 905 314 28 900 313 27 900 318 30 897 317 29 897 323 30 895 322 29 894 328 28 893 327 27 892 332 25 892 332 25 891 289 9 903 289 9 904 291 17 901 291 17 902 292 21 899 292 21 900 293 25 898 294 26 898 295 29 896 296 29 896 297 33 894 298 33 894 299 36 892 300 36 892 302 38 889 302 37 889 288 9 903 290 17 901 289 16 900 291 21 898 290 21 897 293 24 895 291 25 895 294 28 893 293 28 893 296 30 890 295 31 890 298 32 887 298 33 887 300 34 883 301 34 884 291 16 901 292 16 902 294 20 900 297 23 898 297 22 898 300 25 896 300 24 896 303 26 894 306 27 893 306 27 892 310 27 891 309 27 891 290 9 904 292 18 900 290 18 899 292 23 896 290 23 896 292 27 891 290 28 891 293 30 886 291 31 886 294 31 880 293 32 880 297 30 875 296 32 875 300 28 870 300 29 870 290 9 904 292 18 900 293 17 901 295 23 898 296 22 897 298 27 894 298 25 893 302 29 890 301 27 889 306 29 887 305 28 886 310 27 884 310 27 883 315 25 882 314 25 881 463 4 781 463 15 776 462 20 774 463 20 774 462 25 770 463 24 770 463 28 767 463 27 767 464 30 763 463 30 763 465 32 759 464 32 759 466 33 755 465 33 755 462 18 776 463 17 776 461 25 773 463 25 773 461 32 770 463 32 770 461 40 768 462 39 767 460 46 766 461 46 764 460 52 763 460 52 762 459 58 760 459 57 758 466 5 780 461 17 776 459 17 777 457 24 773 455 23 774 452 28 770 450 28 771 447 31 765 446 32 767 443 32 760 442 33 761 440 31 754 440 33 754 438 29 748 438 30 747 150 8 930 150 8 929 146 20 926 146 19 926 144 25 925 145 25 924 142 30 923 143 31 922 140 35 920 141 36 920 139 40 918 140 40 917 137 44 915 138 44 914 135 47 911 136 46 911 149 8 930 144 19 928 143 25 925 142 24 926 140 29 923 139 29 924 137 33 920 137 34 921 135 37 917 134 37 918 132 39 914 132 40 914 129 41 910 130 42 910 151 8 929 148 19 925 146 25 923 146 24 922 145 29 919 145 28 919 144 32 916 144 31 916 144 34 912 144 36 908 143 36 908 144 37 904 143 37 904 150 9 929 151 8 928 146 22 925 147 22 924 144 29 922 146 29 921 143 37 920 145 37 919 142 44 917 144 44 916 141 50 916 142 50 914 140 57 913 140 56 912 138 62 910 138 61 909 151 9 928 145 22 925 143 21 927 140 28 924 139 27 926 135 32 922 134 33 924 129 35 919 128 36 921 123 36 916 123 38 916 118 35 911 118 37 911 115 33 905 115 35 905 148 21 924 144 28 921 145 27 920 141 33 917 141 32 917 138 36 912 138 35 912 137 37 906 136 36 907 136 37 900 134 36 900 135 35 894 134 35 894 137 7 941 138 7 941 136 17 940 137 17 940 135 22 939 136 22 939 134 27 938 135 28 938 132 32 937 133 32 936 131 37 935 132 37 934 130 41 933 130 40 932 128 44 930 128 43 929 138 8 940 137 7 942 134 16 941 133 22 940 132 21 941 131 26 938 131 27 940 129 31 937 128 31 938 126 34 935 126 35 936 123 37 932 124 38 933 120 40 929 121 40 930 137 8 941 138 7 940 136 16 939 137 16 938 135 21 937 136 21 936 134 25 934 134 24 934 133 28 931 132 31 927 131 30 927 131 32 923 130 32 923 130 33 919 129 33 920 139 8 939 135 19 939 134 18 941 131 25 939 131 25 941 126 30 939 126 30 941 121 34 938 121 35 939 115 36 935 115 37 936 109 36 932 110 38 932 104 36 927 105 37 927 138 8 941 138 7 940 136 19 938 136 18 937 134 25 936 134 24 935 131 30 932 130 29 932 127 33 928 126 32 928 124 35 923 123 34 923 122 34 917 121 34 918 120 32 912 119 32 912 466 4 781 462 17 776 464 17 775 461 24 771 462 23 771 460 29 767 459 28 766 459 32 761 458 31 761 459 33 755 457 32 755 459 32 749 458 32 749 461 30 743 460 30 743 449 3 789 447 18 786 448 18 786 446 23 785 447 23 785 445 28 783 446 28 783 445 33 781 446 32 780 444 37 778 445 36 778 443 40 775 443 39 774 447 12 787 446 12 788 445 17 786 444 17 787 444 22 784 443 22 785 442 26 782 441 27 783 440 30 779 440 31 780 438 33 776 438 34 777 436 35 772 436 36 773 -899 41 -708 -821 32 -657 -887 9 -648 -873 19 -580 -951 29 -631 -1433 305 4193 -1475 311 4109 -1415 282 4128 -1391 302 4067 -1349 296 4150 -765 31 -472 -822 38 -547 -759 11 -537 -747 34 -603 -691 27 -528 -1421 293 3876 -1464 277 3793 -1402 256 3820 -1380 261 3754 -1338 277 3836 -919 29 -516 -902 29 -608 -863 9 -553 -810 32 -591 -827 32 -499 -1476 298 3828 -1543 302 3894 -1538 270 3832 -1607 284 3828 -1540 280 3762 -749 35 -560 -805 29 -635 -738 11 -624 -730 29 -691 -674 36 -617 -1570 307 4058 -1632 312 4129 -1638 287 4064 -1703 311 4068 -1641 305 3997 -1010 20 -445 -985 29 -535 -949 9 -478 -895 41 -509 -921 33 -419 -1565 300 3906 -1635 299 3968 -1629 275 3902 -1697 294 3898 -1627 295 3836 -1025 33 935 -944 45 890 -960 14 951 -897 38 971 -978 27 1017 -1458 288 3921 -1526 301 3985 -1528 277 3919 -1590 308 3916 -1522 295 3852 -937 32 1031 -900 45 945 -875 14 1003 -814 39 983 -851 27 1068 437 33 1100 519 45 1054 503 14 1115 565 38 1135 484 27 1181 -833 46 973 -795 37 888 -776 14 951 -711 24 926 -748 34 1012 633 32 1208 670 45 1123 695 14 1180 756 39 1160 719 27 1245 -708 43 804 -802 41 794 -749 14 757 -791 28 702 -698 29 712 737 46 1151 774 37 1065 794 14 1128 859 24 1104 822 34 1189 -918 34 910 -1012 34 908 -964 14 860 -1011 37 814 -916 37 816 874 43 1037 781 41 1027 834 14 990 792 28 935 885 29 945 -1008 39 952 -1100 32 937 -1044 14 898 -1086 33 844 -993 39 859 651 34 1087 557 34 1085 605 14 1037 559 37 991 653 37 993 -826 25 963 -919 33 952 -868 14 907 -908 46 859 -814 38 870 686 39 1049 594 32 1034 650 14 996 609 33 941 701 39 956 -3140 400 4726 -3213 419 4671 -3156 380 4661 -3160 403 4595 -3087 383 4650 743 25 1140 650 33 1129 701 14 1084 662 46 1037 755 38 1048 -2991 380 4555 -3085 384 4557 -3041 356 4511 -3087 375 4463 -2993 370 4462 -3970 380 2131 -3953 384 2039 -3919 353 2092 -3861 369 2055 -3878 365 2147 -3184 412 4536 -3278 415 4537 -3232 384 4494 -3280 399 4445 -3186 395 4443 -3727 365 2152 -3767 377 2068 -3711 341 2087 -3685 360 2026 -3644 348 2109 -3286 421 4509 -3256 419 4599 -3315 398 4567 -3346 419 4627 -3375 421 4538 -3782 370 1890 -3825 360 1807 -3767 332 1834 -3744 336 1767 -3700 346 1850 -3194 402 4567 -3157 400 4653 -3222 388 4630 -3242 417 4690 -3279 418 4604 -3841 362 1904 -3907 372 1969 -3905 341 1907 -3973 362 1903 -3906 352 1837 -3289 435 4701 -3265 429 4791 -3325 417 4757 -3354 442 4816 -3379 448 4726 -3923 370 2033 -3983 381 2104 -3992 358 2038 -4054 388 2043 -3993 377 1972 -3183 389 4505 -3153 397 4593 -3217 385 4566 -3239 422 4620 -3269 414 4531 -4047 373 1912 -4117 377 1974 -4113 355 1907 -4179 380 1904 -4109 375 1842 -1623 200 3291 -1539 214 3330 -1601 196 3357 -1580 234 3412 -1664 220 3373 -3825 348 1996 -3891 368 2060 -3895 345 1994 -3953 383 1992 -3887 364 1928 -1576 277 3669 -1484 279 3652 -1520 258 3707 -1467 281 3744 -1559 279 3762 -684 33 983 -668 45 891 -631 14 943 -575 38 907 -592 27 999 -1459 266 3523 -1368 246 3507 -1412 232 3561 -1354 241 3600 -1444 261 3616 -555 32 976 -597 45 893 -537 14 910 -513 39 850 -471 27 933 -1344 240 3514 -1388 235 3432 -1331 204 3458 -1308 210 3391 -1263 215 3474 -537 25 847 -605 33 912 -607 14 844 -668 46 844 -601 38 779 -1471 223 3457 -1522 220 3378 -1458 195 3393 -1444 211 3327 -1393 214 3406 330 33 1669 346 45 1577 383 14 1628 439 38 1593 422 27 1684 -1476 198 3333 -1516 187 3249 -1455 165 3276 -1432 175 3210 -1391 186 3294 744 32 1499 702 45 1416 762 14 1433 786 39 1373 828 27 1456 -1599 258 3517 -1505 257 3521 -1554 247 3571 -1509 279 3612 -1603 280 3608 571 46 1428 529 37 1345 590 14 1370 613 24 1304 655 34 1387 -4185 687 5803 -4102 688 5848 -4168 675 5870 -4147 706 5929 -4229 705 5884 501 43 1218 434 41 1284 439 14 1220 370 28 1217 437 29 1151 -4109 686 5940 -4016 677 5928 -4058 657 5980 -4005 671 6021 -4098 680 6033 467 34 1454 406 34 1525 400 14 1458 335 37 1464 396 37 1392 -3998 661 5894 -4044 669 5812 -3985 636 5829 -3964 653 5766 -3918 645 5847 298 39 1367 228 32 1429 234 14 1361 166 33 1359 236 39 1297 -5004 828 4533 -4989 818 4441 -4957 791 4497 -4899 797 4458 -4914 807 4550 603 25 1563 581 33 1472 641 14 1504 672 46 1451 694 38 1542 -4882 799 4403 -4924 802 4319 -4870 764 4343 -4844 771 4280 -4803 769 4364 1356 33 1336 1372 45 1244 1410 14 1295 1465 38 1259 1448 27 1351 -4964 803 4314 -5022 828 4384 -5034 798 4322 -5093 834 4323 -5035 809 4253 1485 32 1328 1443 45 1245 1503 14 1262 1527 39 1203 1569 27 1286 -2396 123 1771 -2463 145 1710 -2405 106 1704 -2403 131 1639 -2336 108 1700 1404 34 1237 1342 34 1308 1336 14 1241 1271 37 1247 1333 37 1176 -2335 114 1657 -2425 141 1650 -2385 104 1607 -2419 135 1556 -2330 109 1563 1030 28 -182 1046 39 -274 1083 9 -222 1139 33 -258 1122 21 -166 -2421 143 1578 -2514 147 1571 -2465 117 1531 -2508 135 1478 -2414 130 1485 995 31 55 945 24 -23 1011 7 -9 1025 28 -73 1075 34 5 -2520 154 1542 -2499 148 1634 -2554 130 1596 -2591 149 1654 -2611 154 1562 1279 41 -141 1237 32 -224 1299 9 -199 1321 19 -265 1363 29 -182 -2434 132 1608 -2406 126 1697 -2469 116 1667 -2493 142 1726 -2522 148 1637 1117 43 -373 1050 41 -308 1055 14 -372 986 28 -375 1053 29 -440 -2500 146 1659 -2485 136 1751 -2542 126 1710 -2576 150 1768 -2592 159 1676 969 30 -412 876 30 -424 929 10 -466 888 33 -517 981 33 -505 -2417 121 1546 -2396 125 1638 -2457 115 1604 -2484 151 1657 -2505 147 1566 952 34 -346 882 27 -284 888 9 -352 820 28 -355 890 34 -417 606 33 860 687 45 814 671 14 875 734 38 895 653 27 941 1234 25 -353 1166 33 -288 1164 14 -356 1102 46 -356 1170 38 -421 694 32 955 731 45 870 756 14 927 817 39 907 780 27 992 -3279 316 2268 -3259 317 2177 -3230 283 2231 -3170 292 2196 -3190 292 2288 875 46 907 912 37 821 932 14 885 997 24 860 959 34 945 -3132 276 2138 -3200 294 2200 -3203 269 2134 -3262 304 2130 -3194 287 2068 864 43 815 771 41 805 824 14 769 782 28 713 875 29 723 -532 44 2427 -608 56 2373 -546 25 2362 -555 49 2296 -479 38 2350 713 34 834 619 34 832 666 14 784 620 37 738 714 37 740 -484 43 2307 -577 56 2310 -536 25 2263 -580 50 2216 -487 38 2213 748 39 796 655 32 781 711 14 743 670 33 688 762 39 703 -580 57 2238 -673 48 2240 -624 25 2195 -675 35 2147 -581 45 2144 805 25 887 712 33 876 763 14 831 723 46 784 817 38 795 -683 54 2213 -652 52 2301 -708 25 2269 -740 39 2331 -771 41 2242 851 33 618 933 45 573 917 14 634 979 38 654 898 27 700 -589 45 2269 -550 45 2354 -614 25 2331 -636 48 2393 -674 48 2307 939 32 714 977 45 628 1002 14 686 1063 39 666 1025 27 751 -650 50 2327 -624 43 2416 -683 25 2382 -715 44 2443 -741 50 2353 1043 46 656 1081 37 571 1100 14 634 1166 24 609 1128 34 695 -576 36 2206 -547 44 2294 -609 25 2267 -635 57 2323 -665 49 2234 1168 43 487 1075 41 477 1127 14 440 1085 28 385 1179 29 395 -1165 33 526 -1149 45 434 -1111 14 486 -1056 38 450 -1073 27 542 958 34 592 864 34 591 912 14 543 866 37 497 960 37 499 -1036 32 519 -1078 45 436 -1018 14 453 -994 39 393 -952 27 476 868 39 635 776 32 620 832 14 581 791 33 527 883 39 542 -1014 46 402 -1056 37 319 -994 14 344 -972 24 278 -930 34 362 1050 25 646 957 33 635 1008 14 590 969 46 542 1062 38 553 -1035 43 299 -1102 41 364 -1097 14 300 -1166 28 297 -1099 29 232 -953 244 4122 -930 232 4032 -899 212 4091 -839 222 4055 -862 235 4146 -1117 34 428 -1179 34 499 -1185 14 432 -1250 37 438 -1188 37 367 -782 211 4102 -815 202 4015 -756 179 4045 -727 191 3983 -694 201 4071 -1124 39 377 -1194 32 439 -1188 14 371 -1257 33 368 -1187 39 306 -878 203 3846 -917 195 3761 -863 163 3792 -836 162 3727 -797 170 3812 -1018 25 391 -1085 33 455 -1087 14 388 -1149 46 387 -1081 38 323 -941 195 3727 -1010 213 3788 -1007 179 3727 -1072 207 3718 -1003 189 3657 -1156 33 -131 -1232 45 -185 -1170 14 -197 -1179 38 -262 -1103 27 -208 -923 215 3959 -987 234 4026 -993 209 3960 -1052 245 3960 -989 227 3893 -1108 32 -251 -1201 45 -248 -1160 14 -296 -1204 39 -342 -1111 27 -345 -960 216 3851 -1033 230 3908 -1028 204 3842 -1091 236 3834 -1018 223 3776 -1204 46 -321 -1297 37 -318 -1248 14 -363 -1298 24 -411 -1205 34 -414 -749 178 3908 -822 195 3965 -818 163 3902 -880 191 3891 -807 174 3834 -1307 42 -346 -1276 41 -257 -1332 14 -289 -1364 28 -227 -1395 29 -316 -2208 150 2437 -2191 150 2344 -2157 121 2399 -2100 134 2362 -2117 135 2454 -1213 34 -290 -1174 34 -204 -1238 14 -227 -1260 37 -166 -1298 37 -251 -2025 122 2402 -2066 130 2318 -2010 95 2339 -1984 110 2277 -1943 102 2361 -1274 39 -232 -1248 32 -142 -1307 14 -176 -1338 33 -116 -1365 39 -205 -2022 121 2209 -2065 108 2127 -2006 81 2155 -1983 81 2088 -1940 94 2170 -1200 25 -353 -1170 33 -264 -1233 14 -291 -1259 46 -235 -1289 38 -324 -2104 120 2082 -2171 134 2147 -2169 99 2086 -2236 121 2081 -2170 107 2016 483 46 -727 521 37 -813 540 14 -749 606 24 -774 568 34 -689 -2244 159 2358 -2305 174 2428 -2314 148 2363 -2376 179 2367 -2315 164 2296 527 33 -797 434 32 -807 487 5 -844 445 19 -899 538 20 -889 -2174 135 2243 -2244 144 2304 -2240 118 2239 -2306 144 2234 -2236 135 2172 676 34 -739 582 34 -741 630 14 -788 584 37 -834 678 37 -832 -2066 106 2207 -2132 129 2270 -2136 103 2204 -2194 142 2200 -2128 119 2137 476 32 -868 384 26 -883 440 8 -921 399 27 -976 491 33 -961 -1517 309 4156 -1584 314 4090 -1519 287 4090 -1518 309 4023 -1451 304 4089 761 25 -660 668 33 -671 719 14 -716 679 46 -763 773 38 -752 + + + + + + + + + + 0.3282470703125 0.9227764423076923 0.3306884765625 0.9227764423076923 0.3306884765625 0.9041466346153846 0.3292236328125 0.9227764423076923 0.3287353515625 0.9227764423076923 0.3282470703125 0.8464543269230769 0.3287353515625 0.8849158653846154 0.3292236328125 0.8849158653846154 0.0001220703125 0.9996995192307693 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 0 1 0 0 0 3 0 1 0 2 0 4 0 3 0 2 0 5 0 3 0 4 0 6 1 5 2 4 2 7 2 5 2 6 1 8 1 7 2 6 1 9 1 7 2 8 1 10 3 9 3 8 3 11 3 9 3 10 3 12 3 11 3 10 3 13 3 11 3 12 3 14 3 13 3 12 3 15 3 13 3 14 3 16 3 15 3 14 3 17 3 15 3 16 3 20 0 19 0 18 0 21 0 19 0 20 0 22 0 21 0 20 0 23 0 21 0 22 0 24 1 23 2 22 2 25 1 23 2 24 1 26 3 25 3 24 3 27 3 25 3 26 3 28 3 27 3 26 3 29 3 27 3 28 3 30 3 29 3 28 3 31 3 29 3 30 3 32 3 31 3 30 3 33 3 31 3 32 3 34 3 33 3 32 3 35 3 33 3 34 3 38 0 37 0 36 0 39 0 37 0 38 0 40 0 39 0 38 0 41 0 39 0 40 0 42 0 41 0 40 0 43 0 41 0 42 0 44 1 43 2 42 2 45 1 43 2 44 1 46 3 45 3 44 3 47 3 45 3 46 3 48 3 47 3 46 3 49 3 47 3 48 3 50 3 49 3 48 3 51 3 49 3 50 3 52 3 51 3 50 3 53 3 51 3 52 3 56 0 55 0 54 0 57 0 55 0 56 0 58 0 57 0 56 0 59 0 57 0 58 0 60 0 59 0 58 0 61 0 59 0 60 0 62 1 61 2 60 2 63 1 61 2 62 1 64 3 63 3 62 3 65 3 63 3 64 3 66 3 65 3 64 3 67 3 65 3 66 3 68 3 67 3 66 3 69 3 67 3 68 3 70 3 69 3 68 3 71 3 69 3 70 3 74 0 73 0 72 0 75 0 73 0 74 0 76 0 75 0 74 0 77 0 75 0 76 0 78 1 77 2 76 2 79 2 77 2 78 1 80 1 79 2 78 1 81 1 79 2 80 1 82 3 81 3 80 3 83 3 81 3 82 3 84 3 83 3 82 3 85 3 83 3 84 3 86 3 85 3 84 3 87 3 85 3 86 3 88 3 87 3 86 3 89 3 87 3 88 3 92 0 91 0 90 0 93 0 91 0 92 0 94 0 93 0 92 0 95 0 93 0 94 0 96 1 95 2 94 2 97 2 95 2 96 1 98 1 97 2 96 1 99 1 97 2 98 1 100 3 99 3 98 3 101 3 99 3 100 3 102 3 101 3 100 3 103 3 101 3 102 3 104 3 103 3 102 3 105 3 103 3 104 3 106 3 105 3 104 3 107 3 105 3 106 3 110 0 109 0 108 0 111 0 109 0 110 0 112 0 111 0 110 0 113 0 111 0 112 0 114 1 113 2 112 2 115 2 113 2 114 1 116 1 115 2 114 1 117 1 115 2 116 1 118 3 117 3 116 3 119 3 117 3 118 3 120 3 119 3 118 3 121 3 119 3 120 3 122 3 121 3 120 3 123 3 121 3 122 3 124 3 123 3 122 3 125 3 123 3 124 3 110 0 127 0 126 0 128 0 127 0 110 0 129 0 128 0 110 0 130 0 128 0 129 0 131 1 130 2 129 2 132 1 130 2 131 1 133 3 132 3 131 3 134 3 132 3 133 3 135 3 134 3 133 3 136 3 134 3 135 3 137 3 136 3 135 3 138 3 136 3 137 3 139 3 138 3 137 3 140 3 138 3 139 3 141 3 140 3 139 3 142 3 140 3 141 3 145 0 144 0 143 0 146 0 144 0 145 0 147 0 146 0 145 0 148 0 146 0 147 0 149 1 148 2 147 2 150 2 148 2 149 1 151 1 150 2 149 1 152 1 150 2 151 1 153 3 152 3 151 3 154 3 152 3 153 3 155 3 154 3 153 3 156 3 154 3 155 3 157 3 156 3 155 3 158 3 156 3 157 3 159 3 158 3 157 3 160 3 158 3 159 3 163 0 162 0 161 0 164 0 162 0 163 0 165 0 164 0 163 0 166 0 164 0 165 0 167 1 166 2 165 2 168 1 166 2 167 1 169 3 168 3 167 3 170 3 168 3 169 3 171 3 170 3 169 3 172 3 170 3 171 3 173 3 172 3 171 3 174 3 172 3 173 3 175 3 174 3 173 3 176 3 174 3 175 3 177 3 176 3 175 3 178 3 176 3 177 3 181 0 180 0 179 0 182 0 180 0 181 0 183 0 182 0 181 0 184 0 182 0 183 0 185 0 184 0 183 0 186 0 184 0 185 0 187 1 186 2 185 2 188 1 186 2 187 1 189 3 188 3 187 3 190 3 188 3 189 3 191 3 190 3 189 3 192 3 190 3 191 3 193 3 192 3 191 3 194 3 192 3 193 3 195 3 194 3 193 3 195 3 194 3 195 3 198 0 197 0 196 0 199 0 197 0 198 0 200 0 199 0 198 0 201 0 199 0 200 0 202 1 201 2 200 2 203 2 201 2 202 1 204 1 203 2 202 1 205 1 203 2 204 1 206 3 205 3 204 3 207 3 205 3 206 3 208 3 207 3 206 3 209 3 207 3 208 3 210 3 209 3 208 3 211 3 209 3 210 3 212 3 211 3 210 3 213 3 211 3 212 3 216 0 215 0 214 0 217 0 215 0 216 0 218 0 217 0 216 0 219 0 217 0 218 0 220 1 219 2 218 2 221 1 219 2 220 1 222 3 221 3 220 3 223 3 221 3 222 3 224 3 223 3 222 3 225 3 223 3 224 3 226 3 225 3 224 3 227 3 225 3 226 3 228 3 227 3 226 3 229 3 227 3 228 3 230 3 229 3 228 3 231 3 229 3 230 3 234 0 233 0 232 0 235 0 233 0 234 0 236 0 235 0 234 0 237 0 235 0 236 0 238 0 237 0 236 0 239 0 237 0 238 0 240 1 239 2 238 2 241 1 239 2 240 1 242 3 241 3 240 3 243 3 241 3 242 3 244 3 243 3 242 3 245 3 243 3 244 3 246 3 245 3 244 3 247 3 245 3 246 3 248 3 247 3 246 3 248 3 247 3 248 3 251 0 250 0 249 0 252 0 250 0 251 0 253 0 252 0 251 0 254 0 252 0 253 0 255 0 254 0 253 0 256 0 254 0 255 0 257 1 256 2 255 2 258 1 256 2 257 1 259 3 258 3 257 3 260 3 258 3 259 3 261 3 260 3 259 3 262 3 260 3 261 3 263 3 262 3 261 3 264 3 262 3 263 3 265 3 264 3 263 3 265 3 264 3 265 3 268 0 267 0 266 0 269 0 267 0 268 0 270 0 269 0 268 0 271 0 269 0 270 0 272 1 271 2 270 2 273 2 271 2 272 1 274 1 273 2 272 1 275 1 273 2 274 1 276 3 275 3 274 3 277 3 275 3 276 3 278 3 277 3 276 3 279 3 277 3 278 3 280 3 279 3 278 3 281 3 279 3 280 3 282 3 281 3 280 3 283 3 281 3 282 3 286 0 285 0 284 0 287 0 285 0 286 0 288 0 287 0 286 0 289 0 287 0 288 0 290 1 289 2 288 2 291 1 289 2 290 1 292 3 291 3 290 3 293 3 291 3 292 3 294 3 293 3 292 3 295 3 293 3 294 3 296 3 295 3 294 3 297 3 295 3 296 3 298 3 297 3 296 3 299 3 297 3 298 3 300 3 299 3 298 3 301 3 299 3 300 3 304 0 303 0 302 0 305 0 303 0 304 0 306 0 305 0 304 0 307 0 305 0 306 0 308 0 307 0 306 0 309 0 307 0 308 0 310 1 309 2 308 2 311 1 309 2 310 1 312 3 311 3 310 3 313 3 311 3 312 3 314 3 313 3 312 3 315 3 313 3 314 3 316 3 315 3 314 3 317 3 315 3 316 3 318 3 317 3 316 3 319 3 317 3 318 3 322 0 321 0 320 0 323 0 321 0 322 0 324 0 323 0 322 0 325 0 323 0 324 0 326 1 325 2 324 2 327 2 325 2 326 1 328 1 327 2 326 1 329 1 327 2 328 1 330 3 329 3 328 3 331 3 329 3 330 3 332 3 331 3 330 3 333 3 331 3 332 3 334 3 333 3 332 3 335 3 333 3 334 3 336 3 335 3 334 3 336 3 335 3 336 3 339 0 338 0 337 0 340 0 338 0 339 0 341 0 340 0 339 0 342 0 340 0 341 0 343 1 342 2 341 2 344 2 342 2 343 1 345 1 344 2 343 1 346 1 344 2 345 1 347 3 346 3 345 3 348 3 346 3 347 3 349 3 348 3 347 3 350 3 348 3 349 3 351 3 350 3 349 3 352 3 350 3 351 3 353 3 352 3 351 3 354 3 352 3 353 3 357 0 356 0 355 0 358 0 356 0 357 0 359 0 358 0 357 0 360 0 358 0 359 0 361 1 360 2 359 2 362 2 360 2 361 1 363 1 362 2 361 1 364 1 362 2 363 1 365 3 364 3 363 3 366 3 364 3 365 3 367 3 366 3 365 3 368 3 366 3 367 3 369 3 368 3 367 3 370 3 368 3 369 3 371 3 370 3 369 3 372 3 370 3 371 3 375 0 374 0 373 0 376 0 374 0 375 0 377 0 376 0 375 0 378 0 376 0 377 0 379 1 378 2 377 2 380 1 378 2 379 1 381 3 380 3 379 3 382 3 380 3 381 3 383 3 382 3 381 3 384 3 382 3 383 3 385 3 384 3 383 3 386 3 384 3 385 3 387 3 386 3 385 3 388 3 386 3 387 3 389 3 388 3 387 3 390 3 388 3 389 3 393 0 392 0 391 0 394 0 392 0 393 0 395 0 394 0 393 0 396 0 394 0 395 0 397 0 396 0 395 0 398 0 396 0 397 0 399 1 398 2 397 2 400 1 398 2 399 1 401 3 400 3 399 3 402 3 400 3 401 3 403 3 402 3 401 3 404 3 402 3 403 3 405 3 404 3 403 3 406 3 404 3 405 3 407 3 406 3 405 3 408 3 406 3 407 3 411 0 410 0 409 0 412 0 410 0 411 0 413 0 412 0 411 0 414 0 412 0 413 0 415 1 414 2 413 2 416 2 414 2 415 1 417 1 416 2 415 1 418 1 416 2 417 1 419 3 418 3 417 3 420 3 418 3 419 3 421 3 420 3 419 3 422 3 420 3 421 3 423 3 422 3 421 3 424 3 422 3 423 3 425 3 424 3 423 3 426 3 424 3 425 3 429 0 428 0 427 0 430 0 428 0 429 0 431 0 430 0 429 0 432 0 430 0 431 0 433 1 432 2 431 2 434 1 432 2 433 1 435 3 434 3 433 3 436 3 434 3 435 3 437 3 436 3 435 3 438 3 436 3 437 3 439 3 438 3 437 3 440 3 438 3 439 3 441 3 440 3 439 3 442 3 440 3 441 3 443 3 442 3 441 3 444 3 442 3 443 3 447 3 446 3 445 3 448 3 446 3 447 3 449 3 448 3 447 3 450 3 448 3 449 3 451 3 450 3 449 3 452 3 450 3 451 3 453 3 452 3 451 3 454 3 452 3 453 3 455 3 454 3 453 3 456 3 454 3 455 3 457 3 456 3 455 3 458 3 456 3 457 3 459 3 458 3 457 3 460 3 458 3 459 3 461 3 460 3 459 3 462 3 460 3 461 3 465 3 464 3 463 3 466 3 464 3 465 3 467 3 466 3 465 3 468 3 466 3 467 3 469 3 468 3 467 3 470 3 468 3 469 3 471 3 470 3 469 3 472 3 470 3 471 3 473 3 472 3 471 3 474 3 472 3 473 3 475 3 474 3 473 3 476 3 474 3 475 3 477 3 476 3 475 3 478 3 476 3 477 3 479 3 478 3 477 3 480 3 478 3 479 3 483 3 482 3 481 3 484 3 482 3 483 3 485 3 484 3 483 3 486 3 484 3 485 3 487 3 486 3 485 3 488 3 486 3 487 3 489 3 488 3 487 3 490 3 488 3 489 3 491 3 490 3 489 3 492 3 490 3 491 3 493 3 492 3 491 3 494 3 492 3 493 3 495 3 494 3 493 3 496 3 494 3 495 3 497 3 496 3 495 3 498 3 496 3 497 3 501 0 500 0 499 0 502 0 500 0 501 0 503 0 502 0 501 0 504 0 502 0 503 0 505 1 504 2 503 2 506 2 504 2 505 1 507 1 506 2 505 1 508 1 506 2 507 1 509 3 508 3 507 3 510 3 508 3 509 3 511 3 510 3 509 3 512 3 510 3 511 3 513 3 512 3 511 3 514 3 512 3 513 3 515 3 514 3 513 3 516 3 514 3 515 3 519 0 518 0 517 0 520 0 518 0 519 0 521 0 520 0 519 0 522 0 520 0 521 0 523 1 522 2 521 2 524 1 522 2 523 1 525 3 524 3 523 3 526 3 524 3 525 3 527 3 526 3 525 3 528 3 526 3 527 3 529 3 528 3 527 3 530 3 528 3 529 3 531 3 530 3 529 3 532 3 530 3 531 3 533 3 532 3 531 3 534 3 532 3 533 3 537 0 536 0 535 0 538 0 536 0 537 0 539 0 538 0 537 0 540 0 538 0 539 0 541 0 540 0 539 0 542 0 540 0 541 0 543 1 542 2 541 2 544 1 542 2 543 1 545 3 544 3 543 3 546 3 544 3 545 3 547 3 546 3 545 3 548 3 546 3 547 3 549 3 548 3 547 3 550 3 548 3 549 3 551 3 550 3 549 3 552 3 550 3 551 3 555 0 554 0 553 0 556 0 554 0 555 0 557 0 556 0 555 0 558 0 556 0 557 0 559 0 558 0 557 0 560 0 558 0 559 0 561 1 560 2 559 2 562 1 560 2 561 1 563 3 562 3 561 3 564 3 562 3 563 3 565 3 564 3 563 3 566 3 564 3 565 3 567 3 566 3 565 3 568 3 566 3 567 3 569 3 568 3 567 3 570 3 568 3 569 3 573 0 572 0 571 0 574 0 572 0 573 0 575 0 574 0 573 0 576 0 574 0 575 0 577 1 576 2 575 2 578 1 576 2 577 1 579 3 578 3 577 3 580 3 578 3 579 3 581 3 580 3 579 3 582 3 580 3 581 3 583 3 582 3 581 3 584 3 582 3 583 3 585 3 584 3 583 3 586 3 584 3 585 3 587 3 586 3 585 3 588 3 586 3 587 3 591 0 590 0 589 0 592 0 590 0 591 0 593 0 592 0 591 0 594 0 592 0 593 0 595 0 594 0 593 0 596 0 594 0 595 0 597 1 596 2 595 2 598 1 596 2 597 1 599 3 598 3 597 3 600 3 598 3 599 3 601 3 600 3 599 3 602 3 600 3 601 3 603 3 602 3 601 3 604 3 602 3 603 3 605 3 604 3 603 3 606 3 604 3 605 3 609 0 608 0 607 0 610 0 608 0 609 0 611 0 610 0 609 0 612 0 610 0 611 0 613 1 612 2 611 2 614 1 612 2 613 1 615 3 614 3 613 3 616 3 614 3 615 3 617 3 616 3 615 3 618 3 616 3 617 3 619 3 618 3 617 3 620 3 618 3 619 3 621 3 620 3 619 3 622 3 620 3 621 3 623 3 622 3 621 3 624 3 622 3 623 3 627 0 626 0 625 0 628 0 626 0 627 0 629 0 628 0 627 0 630 0 628 0 629 0 631 1 630 2 629 2 632 2 630 2 631 1 633 1 632 2 631 1 634 1 632 2 633 1 635 3 634 3 633 3 636 3 634 3 635 3 637 3 636 3 635 3 638 3 636 3 637 3 639 3 638 3 637 3 640 3 638 3 639 3 641 3 640 3 639 3 642 3 640 3 641 3 645 0 644 0 643 0 646 0 644 0 645 0 647 0 646 0 645 0 648 0 646 0 647 0 649 1 648 2 647 2 650 1 648 2 649 1 651 3 650 3 649 3 652 3 650 3 651 3 653 3 652 3 651 3 654 3 652 3 653 3 655 3 654 3 653 3 656 3 654 3 655 3 657 3 656 3 655 3 658 3 656 3 657 3 659 3 658 3 657 3 660 3 658 3 659 3 663 0 662 0 661 0 664 0 662 0 663 0 665 0 664 0 663 0 666 0 664 0 665 0 667 0 666 0 665 0 668 0 666 0 667 0 669 1 668 2 667 2 670 1 668 2 669 1 671 3 670 3 669 3 672 3 670 3 671 3 673 3 672 3 671 3 674 3 672 3 673 3 675 3 674 3 673 3 676 3 674 3 675 3 677 3 676 3 675 3 677 3 676 3 677 3 680 0 679 0 678 0 681 0 679 0 680 0 682 0 681 0 680 0 683 0 681 0 682 0 684 0 683 0 682 0 685 0 683 0 684 0 686 1 685 2 684 2 687 1 685 2 686 1 688 3 687 3 686 3 689 3 687 3 688 3 690 3 689 3 688 3 691 3 689 3 690 3 692 3 691 3 690 3 693 3 691 3 692 3 694 3 693 3 692 3 694 3 693 3 694 3 697 0 696 0 695 0 698 0 696 0 697 0 699 0 698 0 697 0 700 0 698 0 699 0 701 1 700 2 699 2 702 2 700 2 701 1 703 1 702 2 701 1 704 1 702 2 703 1 705 3 704 3 703 3 706 3 704 3 705 3 707 3 706 3 705 3 708 3 706 3 707 3 709 3 708 3 707 3 710 3 708 3 709 3 711 3 710 3 709 3 712 3 710 3 711 3 715 0 714 0 713 0 716 0 714 0 715 0 717 0 716 0 715 0 718 0 716 0 717 0 719 1 718 2 717 2 720 1 718 2 719 1 721 3 720 3 719 3 722 3 720 3 721 3 723 3 722 3 721 3 724 3 722 3 723 3 725 3 724 3 723 3 726 3 724 3 725 3 727 3 726 3 725 3 728 3 726 3 727 3 729 3 728 3 727 3 730 3 728 3 729 3 733 0 732 0 731 0 734 0 732 0 733 0 735 0 734 0 733 0 736 0 734 0 735 0 737 0 736 0 735 0 738 0 736 0 737 0 739 1 738 2 737 2 740 1 738 2 739 1 741 3 740 3 739 3 742 3 740 3 741 3 743 3 742 3 741 3 744 3 742 3 743 3 745 3 744 3 743 3 746 3 744 3 745 3 747 3 746 3 745 3 748 3 746 3 747 3 751 0 750 0 749 0 752 0 750 0 751 0 753 0 752 0 751 0 754 0 752 0 753 0 755 1 754 2 753 2 756 1 754 2 755 1 757 3 756 3 755 3 758 3 756 3 757 3 759 3 758 3 757 3 760 3 758 3 759 3 761 3 760 3 759 3 762 3 760 3 761 3 763 3 762 3 761 3 764 3 762 3 763 3 765 3 764 3 763 3 766 3 764 3 765 3 769 0 768 0 767 0 770 0 768 0 769 0 771 0 770 0 769 0 772 0 770 0 771 0 773 0 772 0 771 0 774 0 772 0 773 0 775 1 774 2 773 2 776 1 774 2 775 1 777 3 776 3 775 3 778 3 776 3 777 3 779 3 778 3 777 3 780 3 778 3 779 3 781 3 780 3 779 3 782 3 780 3 781 3 783 3 782 3 781 3 784 3 782 3 783 3 787 0 786 0 785 0 788 0 786 0 787 0 789 0 788 0 787 0 790 0 788 0 789 0 791 1 790 2 789 2 792 1 790 2 791 1 793 3 792 3 791 3 794 3 792 3 793 3 795 3 794 3 793 3 796 3 794 3 795 3 797 3 796 3 795 3 798 3 796 3 797 3 799 3 798 3 797 3 800 3 798 3 799 3 801 3 800 3 799 3 802 3 800 3 801 3 805 0 804 0 803 0 806 0 804 0 805 0 807 0 806 0 805 0 808 0 806 0 807 0 809 1 808 2 807 2 810 2 808 2 809 1 811 1 810 2 809 1 812 1 810 2 811 1 813 3 812 3 811 3 814 3 812 3 813 3 815 3 814 3 813 3 816 3 814 3 815 3 817 3 816 3 815 3 818 3 816 3 817 3 819 3 818 3 817 3 820 3 818 3 819 3 823 0 822 0 821 0 824 0 822 0 823 0 825 0 824 0 823 0 826 0 824 0 825 0 827 1 826 2 825 2 828 1 826 2 827 1 829 3 828 3 827 3 830 3 828 3 829 3 831 3 830 3 829 3 832 3 830 3 831 3 833 3 832 3 831 3 834 3 832 3 833 3 835 3 834 3 833 3 836 3 834 3 835 3 837 3 836 3 835 3 838 3 836 3 837 3 841 0 840 0 839 0 842 0 840 0 841 0 843 0 842 0 841 0 844 0 842 0 843 0 845 0 844 0 843 0 846 0 844 0 845 0 847 1 846 2 845 2 848 1 846 2 847 1 849 3 848 3 847 3 850 3 848 3 849 3 851 3 850 3 849 3 852 3 850 3 851 3 853 3 852 3 851 3 854 3 852 3 853 3 855 3 854 3 853 3 856 3 854 3 855 3 859 0 858 0 857 0 860 0 858 0 859 0 861 0 860 0 859 0 862 0 860 0 861 0 863 0 862 0 861 0 864 0 862 0 863 0 865 1 864 2 863 2 866 1 864 2 865 1 867 3 866 3 865 3 868 3 866 3 867 3 869 3 868 3 867 3 870 3 868 3 869 3 871 3 870 3 869 3 872 3 870 3 871 3 873 3 872 3 871 3 874 3 872 3 873 3 877 0 876 0 875 0 878 0 876 0 877 0 879 0 878 0 877 0 880 0 878 0 879 0 881 1 880 2 879 2 882 2 880 2 881 1 883 1 882 2 881 1 884 1 882 2 883 1 885 3 884 3 883 3 886 3 884 3 885 3 887 3 886 3 885 3 888 3 886 3 887 3 889 3 888 3 887 3 890 3 888 3 889 3 891 3 890 3 889 3 892 3 890 3 891 3 895 0 894 0 893 0 896 0 894 0 895 0 897 0 896 0 895 0 898 0 896 0 897 0 899 1 898 2 897 2 900 1 898 2 899 1 901 3 900 3 899 3 902 3 900 3 901 3 903 3 902 3 901 3 904 3 902 3 903 3 905 3 904 3 903 3 906 3 904 3 905 3 907 3 906 3 905 3 908 3 906 3 907 3 909 3 908 3 907 3 910 3 908 3 909 3 913 0 912 0 911 0 914 0 912 0 913 0 915 0 914 0 913 0 916 0 914 0 915 0 917 0 916 0 915 0 918 0 916 0 917 0 919 1 918 2 917 2 920 1 918 2 919 1 921 3 920 3 919 3 922 3 920 3 921 3 923 3 922 3 921 3 924 3 922 3 923 3 925 3 924 3 923 3 926 3 924 3 925 3 927 3 926 3 925 3 928 3 926 3 927 3 931 0 930 0 929 0 932 0 930 0 931 0 933 0 932 0 931 0 934 0 932 0 933 0 935 1 934 2 933 2 936 2 934 2 935 1 937 1 936 2 935 1 938 1 936 2 937 1 939 3 938 3 937 3 940 3 938 3 939 3 941 3 940 3 939 3 942 3 940 3 941 3 943 3 942 3 941 3 944 3 942 3 943 3 945 3 944 3 943 3 946 3 944 3 945 3 949 0 948 0 947 0 950 0 948 0 949 0 951 0 950 0 949 0 952 0 950 0 951 0 953 1 952 2 951 2 954 2 952 2 953 1 955 1 954 2 953 1 956 1 954 2 955 1 957 3 956 3 955 3 958 3 956 3 957 3 959 3 958 3 957 3 960 3 958 3 959 3 961 3 960 3 959 3 962 3 960 3 961 3 963 3 962 3 961 3 964 3 962 3 963 3 967 0 966 0 965 0 968 0 966 0 967 0 969 0 968 0 967 0 970 0 968 0 969 0 971 1 970 2 969 2 972 1 970 2 971 1 973 3 972 3 971 3 974 3 972 3 973 3 975 3 974 3 973 3 976 3 974 3 975 3 977 3 976 3 975 3 978 3 976 3 977 3 979 3 978 3 977 3 980 3 978 3 979 3 981 3 980 3 979 3 982 3 980 3 981 3 985 0 984 0 983 0 986 0 984 0 985 0 987 0 986 0 985 0 988 0 986 0 987 0 989 0 988 0 987 0 990 0 988 0 989 0 991 1 990 2 989 2 992 1 990 2 991 1 993 3 992 3 991 3 994 3 992 3 993 3 995 3 994 3 993 3 996 3 994 3 995 3 997 3 996 3 995 3 998 3 996 3 997 3 999 3 998 3 997 3 1000 3 998 3 999 3 1003 0 1002 0 1001 0 1004 0 1002 0 1003 0 1005 0 1004 0 1003 0 1006 0 1004 0 1005 0 1007 1 1006 2 1005 2 1008 2 1006 2 1007 1 1009 1 1008 2 1007 1 1010 1 1008 2 1009 1 1011 3 1010 3 1009 3 1012 3 1010 3 1011 3 1013 3 1012 3 1011 3 1014 3 1012 3 1013 3 1015 3 1014 3 1013 3 1016 3 1014 3 1015 3 1017 3 1016 3 1015 3 1018 3 1016 3 1017 3 1021 0 1020 0 1019 0 1022 0 1020 0 1021 0 1023 0 1022 0 1021 0 1024 0 1022 0 1023 0 1025 1 1024 2 1023 2 1026 1 1024 2 1025 1 1027 3 1026 3 1025 3 1028 3 1026 3 1027 3 1029 3 1028 3 1027 3 1030 3 1028 3 1029 3 1031 3 1030 3 1029 3 1032 3 1030 3 1031 3 1033 3 1032 3 1031 3 1034 3 1032 3 1033 3 1035 3 1034 3 1033 3 1036 3 1034 3 1035 3 1039 0 1038 0 1037 0 1040 0 1038 0 1039 0 1041 0 1040 0 1039 0 1042 0 1040 0 1041 0 1043 1 1042 2 1041 2 1044 2 1042 2 1043 1 1045 1 1044 2 1043 1 1046 1 1044 2 1045 1 1047 3 1046 3 1045 3 1048 3 1046 3 1047 3 1049 3 1048 3 1047 3 1050 3 1048 3 1049 3 1051 3 1050 3 1049 3 1052 3 1050 3 1051 3 1053 3 1052 3 1051 3 1054 3 1052 3 1053 3 1057 0 1056 0 1055 0 1058 0 1056 0 1057 0 1059 0 1058 0 1057 0 1060 0 1058 0 1059 0 1061 1 1060 2 1059 2 1062 1 1060 2 1061 1 1063 3 1062 3 1061 3 1064 3 1062 3 1063 3 1065 3 1064 3 1063 3 1066 3 1064 3 1065 3 1067 3 1066 3 1065 3 1068 3 1066 3 1067 3 1069 3 1068 3 1067 3 1070 3 1068 3 1069 3 1071 3 1070 3 1069 3 1072 3 1070 3 1071 3 1075 0 1074 0 1073 0 1076 0 1074 0 1075 0 1077 0 1076 0 1075 0 1078 0 1076 0 1077 0 1079 0 1078 0 1077 0 1080 0 1078 0 1079 0 1081 1 1080 2 1079 2 1082 1 1080 2 1081 1 1083 3 1082 3 1081 3 1084 3 1082 3 1083 3 1085 3 1084 3 1083 3 1086 3 1084 3 1085 3 1087 3 1086 3 1085 3 1088 3 1086 3 1087 3 1089 3 1088 3 1087 3 1090 3 1088 3 1089 3 1093 0 1092 0 1091 0 1094 0 1092 0 1093 0 1095 0 1094 0 1093 0 1096 0 1094 0 1095 0 1097 1 1096 2 1095 2 1098 2 1096 2 1097 1 1099 1 1098 2 1097 1 1100 1 1098 2 1099 1 1101 3 1100 3 1099 3 1102 3 1100 3 1101 3 1103 3 1102 3 1101 3 1104 3 1102 3 1103 3 1105 3 1104 3 1103 3 1106 3 1104 3 1105 3 1107 3 1106 3 1105 3 1108 3 1106 3 1107 3 1111 0 1110 0 1109 0 1112 0 1110 0 1111 0 1113 0 1112 0 1111 0 1114 0 1112 0 1113 0 1115 1 1114 2 1113 2 1116 2 1114 2 1115 1 1117 1 1116 2 1115 1 1118 1 1116 2 1117 1 1119 3 1118 3 1117 3 1120 3 1118 3 1119 3 1121 3 1120 3 1119 3 1122 3 1120 3 1121 3 1123 3 1122 3 1121 3 1124 3 1122 3 1123 3 1125 3 1124 3 1123 3 1126 3 1124 3 1125 3 1129 0 1128 0 1127 0 1130 0 1128 0 1129 0 1131 0 1130 0 1129 0 1132 0 1130 0 1131 0 1133 1 1132 2 1131 2 1134 1 1132 2 1133 1 1135 3 1134 3 1133 3 1136 3 1134 3 1135 3 1137 3 1136 3 1135 3 1138 3 1136 3 1137 3 1139 3 1138 3 1137 3 1140 3 1138 3 1139 3 1141 3 1140 3 1139 3 1142 3 1140 3 1141 3 1143 3 1142 3 1141 3 1144 3 1142 3 1143 3 1147 0 1146 0 1145 0 1148 0 1146 0 1147 0 1149 0 1148 0 1147 0 1150 0 1148 0 1149 0 1151 0 1150 0 1149 0 1152 0 1150 0 1151 0 1153 1 1152 2 1151 2 1154 1 1152 2 1153 1 1155 3 1154 3 1153 3 1156 3 1154 3 1155 3 1157 3 1156 3 1155 3 1158 3 1156 3 1157 3 1159 3 1158 3 1157 3 1160 3 1158 3 1159 3 1161 3 1160 3 1159 3 1162 3 1160 3 1161 3 1165 0 1164 0 1163 0 1166 0 1164 0 1165 0 1167 0 1166 0 1165 0 1168 0 1166 0 1167 0 1169 1 1168 2 1167 2 1170 1 1168 2 1169 1 1171 3 1170 3 1169 3 1172 3 1170 3 1171 3 1173 3 1172 3 1171 3 1174 3 1172 3 1173 3 1175 3 1174 3 1173 3 1176 3 1174 3 1175 3 1177 3 1176 3 1175 3 1178 3 1176 3 1177 3 1179 3 1178 3 1177 3 1180 3 1178 3 1179 3 1183 0 1182 0 1181 0 1184 0 1182 0 1183 0 1185 0 1184 0 1183 0 1186 0 1184 0 1185 0 1187 0 1186 0 1185 0 1188 0 1186 0 1187 0 1189 1 1188 2 1187 2 1190 1 1188 2 1189 1 1191 3 1190 3 1189 3 1192 3 1190 3 1191 3 1193 3 1192 3 1191 3 1194 3 1192 3 1193 3 1195 3 1194 3 1193 3 1196 3 1194 3 1195 3 1197 3 1196 3 1195 3 1197 3 1196 3 1197 3 1200 0 1199 0 1198 0 1201 0 1199 0 1200 0 1202 0 1201 0 1200 0 1203 0 1201 0 1202 0 1204 1 1203 2 1202 2 1205 2 1203 2 1204 1 1206 1 1205 2 1204 1 1207 1 1205 2 1206 1 1208 3 1207 3 1206 3 1209 3 1207 3 1208 3 1210 3 1209 3 1208 3 1211 3 1209 3 1210 3 1212 3 1211 3 1210 3 1213 3 1211 3 1212 3 1214 3 1213 3 1212 3 1214 3 1213 3 1214 3 1217 0 1216 0 1215 0 1218 0 1216 0 1217 0 1219 0 1218 0 1217 0 1220 0 1218 0 1219 0 1221 1 1220 2 1219 2 1222 1 1220 2 1221 1 1223 3 1222 3 1221 3 1224 3 1222 3 1223 3 1225 3 1224 3 1223 3 1226 3 1224 3 1225 3 1227 3 1226 3 1225 3 1228 3 1226 3 1227 3 1229 3 1228 3 1227 3 1230 3 1228 3 1229 3 1231 3 1230 3 1229 3 1232 3 1230 3 1231 3 1235 0 1234 0 1233 0 1236 0 1234 0 1235 0 1237 0 1236 0 1235 0 1238 0 1236 0 1237 0 1239 0 1238 0 1237 0 1240 0 1238 0 1239 0 1241 1 1240 2 1239 2 1242 1 1240 2 1241 1 1243 3 1242 3 1241 3 1244 3 1242 3 1243 3 1245 3 1244 3 1243 3 1246 3 1244 3 1245 3 1247 3 1246 3 1245 3 1248 3 1246 3 1247 3 1249 3 1248 3 1247 3 1250 3 1248 3 1249 3 1253 0 1252 0 1251 0 1254 0 1252 0 1253 0 1255 0 1254 0 1253 0 1256 0 1254 0 1255 0 1257 0 1256 0 1255 0 1258 0 1256 0 1257 0 1259 1 1258 2 1257 2 1260 1 1258 2 1259 1 1261 3 1260 3 1259 3 1262 3 1260 3 1261 3 1263 3 1262 3 1261 3 1264 3 1262 3 1263 3 1265 3 1264 3 1263 3 1266 3 1264 3 1265 3 1267 3 1266 3 1265 3 1268 3 1266 3 1267 3 1271 0 1270 0 1269 0 1272 0 1270 0 1271 0 1273 0 1272 0 1271 0 1274 0 1272 0 1273 0 1275 1 1274 2 1273 2 1276 2 1274 2 1275 1 1277 1 1276 2 1275 1 1278 1 1276 2 1277 1 1279 3 1278 3 1277 3 1280 3 1278 3 1279 3 1281 3 1280 3 1279 3 1282 3 1280 3 1281 3 1283 3 1282 3 1281 3 1284 3 1282 3 1283 3 1285 3 1284 3 1283 3 1286 3 1284 3 1285 3 1289 0 1288 0 1287 0 1290 0 1288 0 1289 0 1291 0 1290 0 1289 0 1292 0 1290 0 1291 0 1293 1 1292 2 1291 2 1294 1 1292 2 1293 1 1295 3 1294 3 1293 3 1296 3 1294 3 1295 3 1297 3 1296 3 1295 3 1298 3 1296 3 1297 3 1299 3 1298 3 1297 3 1300 3 1298 3 1299 3 1301 3 1300 3 1299 3 1302 3 1300 3 1301 3 1303 3 1302 3 1301 3 1304 3 1302 3 1303 3 1307 0 1306 0 1305 0 1308 0 1306 0 1307 0 1309 0 1308 0 1307 0 1310 0 1308 0 1309 0 1311 0 1310 0 1309 0 1312 0 1310 0 1311 0 1313 1 1312 2 1311 2 1314 1 1312 2 1313 1 1315 3 1314 3 1313 3 1316 3 1314 3 1315 3 1317 3 1316 3 1315 3 1318 3 1316 3 1317 3 1319 3 1318 3 1317 3 1320 3 1318 3 1319 3 1321 3 1320 3 1319 3 1321 3 1320 3 1321 3 1324 0 1323 0 1322 0 1325 0 1323 0 1324 0 1326 0 1325 0 1324 0 1327 0 1325 0 1326 0 1328 1 1327 2 1326 2 1329 1 1327 2 1328 1 1330 3 1329 3 1328 3 1331 3 1329 3 1330 3 1332 3 1331 3 1330 3 1333 3 1331 3 1332 3 1334 3 1333 3 1332 3 1335 3 1333 3 1334 3 1336 3 1335 3 1334 3 1337 3 1335 3 1336 3 1338 3 1337 3 1336 3 1339 3 1337 3 1338 3 1342 0 1341 0 1340 0 1343 0 1341 0 1342 0 1344 0 1343 0 1342 0 1345 0 1343 0 1344 0 1346 1 1345 2 1344 2 1347 2 1345 2 1346 1 1348 1 1347 2 1346 1 1349 1 1347 2 1348 1 1350 3 1349 3 1348 3 1351 3 1349 3 1350 3 1352 3 1351 3 1350 3 1353 3 1351 3 1352 3 1354 3 1353 3 1352 3 1355 3 1353 3 1354 3 1356 3 1355 3 1354 3 1357 3 1355 3 1356 3 1360 0 1359 0 1358 0 1361 0 1359 0 1360 0 1362 0 1361 0 1360 0 1363 0 1361 0 1362 0 1364 1 1363 2 1362 2 1365 1 1363 2 1364 1 1366 3 1365 3 1364 3 1367 3 1365 3 1366 3 1368 3 1367 3 1366 3 1369 3 1367 3 1368 3 1370 3 1369 3 1368 3 1371 3 1369 3 1370 3 1372 3 1371 3 1370 3 1373 3 1371 3 1372 3 1374 3 1373 3 1372 3 1375 3 1373 3 1374 3 1378 0 1377 0 1376 0 1379 0 1377 0 1378 0 1380 0 1379 0 1378 0 1381 0 1379 0 1380 0 1382 0 1381 0 1380 0 1383 0 1381 0 1382 0 1384 1 1383 2 1382 2 1385 1 1383 2 1384 1 1386 3 1385 3 1384 3 1387 3 1385 3 1386 3 1388 3 1387 3 1386 3 1389 3 1387 3 1388 3 1390 3 1389 3 1388 3 1391 3 1389 3 1390 3 1392 3 1391 3 1390 3 1393 3 1391 3 1392 3 1396 0 1395 0 1394 0 1397 0 1395 0 1396 0 1398 0 1397 0 1396 0 1399 0 1397 0 1398 0 1400 1 1399 2 1398 2 1401 2 1399 2 1400 1 1402 1 1401 2 1400 1 1403 1 1401 2 1402 1 1404 3 1403 3 1402 3 1405 3 1403 3 1404 3 1406 3 1405 3 1404 3 1407 3 1405 3 1406 3 1408 3 1407 3 1406 3 1409 3 1407 3 1408 3 1410 3 1409 3 1408 3 1411 3 1409 3 1410 3 1414 0 1413 0 1412 0 1415 0 1413 0 1414 0 1416 0 1415 0 1414 0 1416 0 1415 0 1416 0 1417 1 1416 2 1416 2 1418 2 1416 2 1417 1 1419 1 1418 2 1417 1 1420 1 1418 2 1419 1 1421 3 1420 3 1419 3 1422 3 1420 3 1421 3 1423 3 1422 3 1421 3 1424 3 1422 3 1423 3 1425 3 1424 3 1423 3 1426 3 1424 3 1425 3 1427 3 1426 3 1425 3 1428 3 1426 3 1427 3 1431 0 1430 0 1429 0 1432 0 1430 0 1431 0 1433 0 1432 0 1431 0 1434 0 1432 0 1433 0 1435 1 1434 2 1433 2 1436 1 1434 2 1435 1 1437 3 1436 3 1435 3 1438 3 1436 3 1437 3 1439 3 1438 3 1437 3 1440 3 1438 3 1439 3 1441 3 1440 3 1439 3 1442 3 1440 3 1441 3 1443 3 1442 3 1441 3 1444 3 1442 3 1443 3 1445 3 1444 3 1443 3 1446 3 1444 3 1445 3 1449 0 1448 0 1447 0 1450 0 1448 0 1449 0 1451 0 1450 0 1449 0 1452 0 1450 0 1451 0 1453 1 1452 2 1451 2 1454 2 1452 2 1453 1 1455 1 1454 2 1453 1 1456 1 1454 2 1455 1 1457 3 1456 3 1455 3 1458 3 1456 3 1457 3 1459 3 1458 3 1457 3 1460 3 1458 3 1459 3 1461 3 1460 3 1459 3 1462 3 1460 3 1461 3 1463 3 1462 3 1461 3 1464 3 1462 3 1463 3 1467 0 1466 0 1465 0 1468 0 1466 0 1467 0 1469 0 1468 0 1467 0 1470 0 1468 0 1469 0 1471 1 1470 2 1469 2 1472 1 1470 2 1471 1 1473 3 1472 3 1471 3 1474 3 1472 3 1473 3 1475 3 1474 3 1473 3 1476 3 1474 3 1475 3 1477 3 1476 3 1475 3 1478 3 1476 3 1477 3 1479 3 1478 3 1477 3 1480 3 1478 3 1479 3 1481 3 1480 3 1479 3 1482 3 1480 3 1481 3 1485 0 1484 0 1483 0 1486 0 1484 0 1485 0 1487 0 1486 0 1485 0 1488 0 1486 0 1487 0 1489 0 1488 0 1487 0 1490 0 1488 0 1489 0 1491 1 1490 2 1489 2 1492 1 1490 2 1491 1 1493 3 1492 3 1491 3 1494 3 1492 3 1493 3 1495 3 1494 3 1493 3 1496 3 1494 3 1495 3 1497 3 1496 3 1495 3 1498 3 1496 3 1497 3 1499 3 1498 3 1497 3 1500 3 1498 3 1499 3 1503 0 1502 0 1501 0 1504 0 1502 0 1503 0 1505 0 1504 0 1503 0 1506 0 1504 0 1505 0 1507 0 1506 0 1505 0 1508 0 1506 0 1507 0 1509 1 1508 2 1507 2 1510 1 1508 2 1509 1 1511 3 1510 3 1509 3 1512 3 1510 3 1511 3 1513 3 1512 3 1511 3 1514 3 1512 3 1513 3 1515 3 1514 3 1513 3 1516 3 1514 3 1515 3 1517 3 1516 3 1515 3 1518 3 1516 3 1517 3 1521 0 1520 0 1519 0 1522 0 1520 0 1521 0 1523 0 1522 0 1521 0 1524 0 1522 0 1523 0 1525 1 1524 2 1523 2 1526 1 1524 2 1525 1 1527 3 1526 3 1525 3 1528 3 1526 3 1527 3 1529 3 1528 3 1527 3 1530 3 1528 3 1529 3 1531 3 1530 3 1529 3 1532 3 1530 3 1531 3 1533 3 1532 3 1531 3 1534 3 1532 3 1533 3 1535 3 1534 3 1533 3 1536 3 1534 3 1535 3 1539 0 1538 0 1537 0 1540 0 1538 0 1539 0 1541 0 1540 0 1539 0 1542 0 1540 0 1541 0 1543 0 1542 0 1541 0 1544 0 1542 0 1543 0 1545 1 1544 2 1543 2 1546 1 1544 2 1545 1 1547 3 1546 3 1545 3 1548 3 1546 3 1547 3 1549 3 1548 3 1547 3 1550 3 1548 3 1549 3 1551 3 1550 3 1549 3 1552 3 1550 3 1551 3 1553 3 1552 3 1551 3 1554 3 1552 3 1553 3 1557 0 1556 0 1555 0 1558 0 1556 0 1557 0 1559 0 1558 0 1557 0 1560 0 1558 0 1559 0 1561 1 1560 2 1559 2 1562 2 1560 2 1561 1 1563 1 1562 2 1561 1 1564 1 1562 2 1563 1 1565 3 1564 3 1563 3 1566 3 1564 3 1565 3 1567 3 1566 3 1565 3 1568 3 1566 3 1567 3 1569 3 1568 3 1567 3 1570 3 1568 3 1569 3 1571 3 1570 3 1569 3 1572 3 1570 3 1571 3 1575 0 1574 0 1573 0 1576 0 1574 0 1575 0 1577 0 1576 0 1575 0 1578 0 1576 0 1577 0 1579 1 1578 2 1577 2 1580 1 1578 2 1579 1 1581 3 1580 3 1579 3 1582 3 1580 3 1581 3 1583 3 1582 3 1581 3 1584 3 1582 3 1583 3 1585 3 1584 3 1583 3 1586 3 1584 3 1585 3 1587 3 1586 3 1585 3 1588 3 1586 3 1587 3 1589 3 1588 3 1587 3 1590 3 1588 3 1589 3 1593 0 1592 0 1591 0 1594 0 1592 0 1593 0 1595 0 1594 0 1593 0 1596 0 1594 0 1595 0 1597 0 1596 0 1595 0 1598 0 1596 0 1597 0 1599 1 1598 2 1597 2 1600 1 1598 2 1599 1 1601 3 1600 3 1599 3 1602 3 1600 3 1601 3 1603 3 1602 3 1601 3 1604 3 1602 3 1603 3 1605 3 1604 3 1603 3 1606 3 1604 3 1605 3 1607 3 1606 3 1605 3 1607 3 1606 3 1607 3 1610 0 1609 0 1608 0 1611 0 1609 0 1610 0 1612 0 1611 0 1610 0 1613 0 1611 0 1612 0 1614 1 1613 2 1612 2 1615 2 1613 2 1614 1 1616 1 1615 2 1614 1 1617 1 1615 2 1616 1 1618 3 1617 3 1616 3 1619 3 1617 3 1618 3 1620 3 1619 3 1618 3 1621 3 1619 3 1620 3 1622 3 1621 3 1620 3 1623 3 1621 3 1622 3 1624 3 1623 3 1622 3 1625 3 1623 3 1624 3 1628 0 1627 0 1626 0 1629 0 1627 0 1628 0 1630 0 1629 0 1628 0 1631 0 1629 0 1630 0 1632 1 1631 2 1630 2 1633 1 1631 2 1632 1 1634 3 1633 3 1632 3 1635 3 1633 3 1634 3 1636 3 1635 3 1634 3 1637 3 1635 3 1636 3 1638 3 1637 3 1636 3 1639 3 1637 3 1638 3 1640 3 1639 3 1638 3 1641 3 1639 3 1640 3 1642 3 1641 3 1640 3 1643 3 1641 3 1642 3 1646 0 1645 0 1644 0 1647 0 1645 0 1646 0 1648 0 1647 0 1646 0 1649 0 1647 0 1648 0 1650 0 1649 0 1648 0 1651 0 1649 0 1650 0 1652 1 1651 2 1650 2 1653 1 1651 2 1652 1 1654 3 1653 3 1652 3 1655 3 1653 3 1654 3 1656 3 1655 3 1654 3 1657 3 1655 3 1656 3 1658 3 1657 3 1656 3 1659 3 1657 3 1658 3 1660 3 1659 3 1658 3 1661 3 1659 3 1660 3 1664 0 1663 0 1662 0 1665 0 1663 0 1664 0 1666 0 1665 0 1664 0 1667 0 1665 0 1666 0 1668 1 1667 2 1666 2 1669 2 1667 2 1668 1 1670 1 1669 2 1668 1 1671 1 1669 2 1670 1 1672 3 1671 3 1670 3 1673 3 1671 3 1672 3 1674 3 1673 3 1672 3 1675 3 1673 3 1674 3 1676 3 1675 3 1674 3 1677 3 1675 3 1676 3 1678 3 1677 3 1676 3 1679 3 1677 3 1678 3 1682 0 1681 0 1680 0 1683 0 1681 0 1682 0 1684 0 1683 0 1682 0 1685 0 1683 0 1684 0 1686 1 1685 2 1684 2 1687 1 1685 2 1686 1 1688 3 1687 3 1686 3 1689 3 1687 3 1688 3 1690 3 1689 3 1688 3 1691 3 1689 3 1690 3 1692 3 1691 3 1690 3 1693 3 1691 3 1692 3 1694 3 1693 3 1692 3 1695 3 1693 3 1694 3 1696 3 1695 3 1694 3 1697 3 1695 3 1696 3 1700 0 1699 0 1698 0 1701 0 1699 0 1700 0 1702 0 1701 0 1700 0 1703 0 1701 0 1702 0 1704 0 1703 0 1702 0 1705 0 1703 0 1704 0 1706 1 1705 2 1704 2 1707 1 1705 2 1706 1 1708 3 1707 3 1706 3 1709 3 1707 3 1708 3 1710 3 1709 3 1708 3 1711 3 1709 3 1710 3 1712 3 1711 3 1710 3 1713 3 1711 3 1712 3 1714 3 1713 3 1712 3 1715 3 1713 3 1714 3 1718 0 1717 0 1716 0 1719 0 1717 0 1718 0 1720 0 1719 0 1718 0 1721 0 1719 0 1720 0 1722 1 1721 2 1720 2 1723 2 1721 2 1722 1 1724 1 1723 2 1722 1 1725 1 1723 2 1724 1 1726 3 1725 3 1724 3 1727 3 1725 3 1726 3 1728 3 1727 3 1726 3 1729 3 1727 3 1728 3 1730 3 1729 3 1728 3 1731 3 1729 3 1730 3 1732 3 1731 3 1730 3 1733 3 1731 3 1732 3 1718 0 1735 0 1734 0 1736 0 1735 0 1718 0 1737 0 1736 0 1718 0 1738 0 1736 0 1737 0 1739 1 1738 2 1737 2 1740 1 1738 2 1739 1 1741 3 1740 3 1739 3 1742 3 1740 3 1741 3 1743 3 1742 3 1741 3 1744 3 1742 3 1743 3 1745 3 1744 3 1743 3 1746 3 1744 3 1745 3 1747 3 1746 3 1745 3 1748 3 1746 3 1747 3 1749 3 1748 3 1747 3 1750 3 1748 3 1749 3 1753 0 1752 0 1751 0 1754 0 1752 0 1753 0 1755 0 1754 0 1753 0 1756 0 1754 0 1755 0 1757 0 1756 0 1755 0 1758 0 1756 0 1757 0 1759 1 1758 2 1757 2 1760 1 1758 2 1759 1 1761 3 1760 3 1759 3 1762 3 1760 3 1761 3 1763 3 1762 3 1761 3 1764 3 1762 3 1763 3 1765 3 1764 3 1763 3 1766 3 1764 3 1765 3 1767 3 1766 3 1765 3 1768 3 1766 3 1767 3 1771 0 1770 0 1769 0 1772 0 1770 0 1771 0 1773 0 1772 0 1771 0 1774 0 1772 0 1773 0 1775 1 1774 2 1773 2 1776 2 1774 2 1775 1 1777 1 1776 2 1775 1 1778 1 1776 2 1777 1 1779 3 1778 3 1777 3 1780 3 1778 3 1779 3 1781 3 1780 3 1779 3 1782 3 1780 3 1781 3 1783 3 1782 3 1781 3 1784 3 1782 3 1783 3 1785 3 1784 3 1783 3 1786 3 1784 3 1785 3 1789 0 1788 0 1787 0 1790 0 1788 0 1789 0 1791 0 1790 0 1789 0 1792 0 1790 0 1791 0 1793 1 1792 2 1791 2 1794 1 1792 2 1793 1 1795 3 1794 3 1793 3 1796 3 1794 3 1795 3 1797 3 1796 3 1795 3 1798 3 1796 3 1797 3 1799 3 1798 3 1797 3 1800 3 1798 3 1799 3 1801 3 1800 3 1799 3 1802 3 1800 3 1801 3 1803 3 1802 3 1801 3 1804 3 1802 3 1803 3 1807 0 1806 0 1805 0 1808 0 1806 0 1807 0 1809 0 1808 0 1807 0 1810 0 1808 0 1809 0 1811 0 1810 0 1809 0 1812 0 1810 0 1811 0 1813 1 1812 2 1811 2 1814 1 1812 2 1813 1 1815 3 1814 3 1813 3 1816 3 1814 3 1815 3 1817 3 1816 3 1815 3 1818 3 1816 3 1817 3 1819 3 1818 3 1817 3 1820 3 1818 3 1819 3 1821 3 1820 3 1819 3 1821 3 1820 3 1821 3 1824 4 1823 4 1822 4 1825 4 1823 4 1824 4 1826 4 1825 4 1824 4 1827 4 1825 4 1826 4 1828 4 1827 4 1826 4 1829 4 1827 4 1828 4 1830 4 1829 4 1828 4 1831 4 1829 4 1830 4 1832 4 1831 4 1830 4 1833 4 1831 4 1832 4 1834 4 1833 4 1832 4 1835 4 1833 4 1834 4 1836 4 1835 4 1834 4 1837 4 1835 4 1836 4 1838 4 1837 4 1836 4 1839 4 1837 4 1838 4 1824 4 1841 4 1840 4 1842 4 1841 4 1824 4 1843 4 1842 4 1824 4 1844 4 1842 4 1843 4 1845 4 1844 4 1843 4 1846 4 1844 4 1845 4 1847 4 1846 4 1845 4 1848 4 1846 4 1847 4 1849 4 1848 4 1847 4 1850 4 1848 4 1849 4 1851 4 1850 4 1849 4 1852 4 1850 4 1851 4 1853 4 1852 4 1851 4 1854 4 1852 4 1853 4 1855 4 1854 4 1853 4 1856 4 1854 4 1855 4 1859 4 1858 4 1857 4 1860 4 1858 4 1859 4 1861 4 1860 4 1859 4 1862 4 1860 4 1861 4 1863 4 1862 4 1861 4 1864 4 1862 4 1863 4 1865 4 1864 4 1863 4 1866 4 1864 4 1865 4 1867 4 1866 4 1865 4 1868 4 1866 4 1867 4 1869 4 1868 4 1867 4 1870 4 1868 4 1869 4 1871 4 1870 4 1869 4 1872 4 1870 4 1871 4 1873 4 1872 4 1871 4 1874 4 1872 4 1873 4 1877 4 1876 4 1875 4 1878 4 1876 4 1877 4 1879 4 1878 4 1877 4 1880 4 1878 4 1879 4 1881 4 1880 4 1879 4 1882 4 1880 4 1881 4 1883 4 1882 4 1881 4 1884 4 1882 4 1883 4 1885 4 1884 4 1883 4 1886 4 1884 4 1885 4 1887 4 1886 4 1885 4 1888 4 1886 4 1887 4 1889 4 1888 4 1887 4 1890 4 1888 4 1889 4 1891 4 1890 4 1889 4 1892 4 1890 4 1891 4 1895 4 1894 4 1893 4 1896 4 1894 4 1895 4 1897 4 1896 4 1895 4 1898 4 1896 4 1897 4 1899 4 1898 4 1897 4 1900 4 1898 4 1899 4 1901 4 1900 4 1899 4 1902 4 1900 4 1901 4 1903 4 1902 4 1901 4 1904 4 1902 4 1903 4 1905 4 1904 4 1903 4 1906 4 1904 4 1905 4 1907 4 1906 4 1905 4 1908 4 1906 4 1907 4 1909 4 1908 4 1907 4 1910 4 1908 4 1909 4 1913 4 1912 4 1911 4 1914 4 1912 4 1913 4 1915 4 1914 4 1913 4 1916 4 1914 4 1915 4 1917 4 1916 4 1915 4 1918 4 1916 4 1917 4 1919 4 1918 4 1917 4 1920 4 1918 4 1919 4 1921 4 1920 4 1919 4 1922 4 1920 4 1921 4 1923 4 1922 4 1921 4 1924 4 1922 4 1923 4 1925 4 1924 4 1923 4 1926 4 1924 4 1925 4 1927 4 1926 4 1925 4 1928 4 1926 4 1927 4 1931 0 1930 0 1929 0 1932 0 1930 0 1931 0 1933 0 1932 0 1931 0 1934 0 1932 0 1933 0 1935 1 1934 2 1933 2 1936 2 1934 2 1935 1 1937 1 1936 2 1935 1 1938 1 1936 2 1937 1 1939 3 1938 3 1937 3 1940 3 1938 3 1939 3 1941 3 1940 3 1939 3 1942 3 1940 3 1941 3 1943 3 1942 3 1941 3 1944 3 1942 3 1943 3 1945 3 1944 3 1943 3 1946 3 1944 3 1945 3 1949 0 1948 0 1947 0 1950 0 1948 0 1949 0 1951 0 1950 0 1949 0 1952 0 1950 0 1951 0 1953 1 1952 2 1951 2 1954 1 1952 2 1953 1 1955 3 1954 3 1953 3 1956 3 1954 3 1955 3 1957 3 1956 3 1955 3 1958 3 1956 3 1957 3 1959 3 1958 3 1957 3 1960 3 1958 3 1959 3 1961 3 1960 3 1959 3 1962 3 1960 3 1961 3 1963 3 1962 3 1961 3 1964 3 1962 3 1963 3 1967 0 1966 0 1965 0 1968 0 1966 0 1967 0 1969 0 1968 0 1967 0 1970 0 1968 0 1969 0 1971 0 1970 0 1969 0 1972 0 1970 0 1971 0 1973 1 1972 2 1971 2 1974 1 1972 2 1973 1 1975 3 1974 3 1973 3 1976 3 1974 3 1975 3 1977 3 1976 3 1975 3 1978 3 1976 3 1977 3 1979 3 1978 3 1977 3 1980 3 1978 3 1979 3 1981 3 1980 3 1979 3 1982 3 1980 3 1981 3 1985 3 1984 3 1983 3 1986 3 1984 3 1985 3 1987 3 1986 3 1985 3 1988 3 1986 3 1987 3 1989 3 1988 3 1987 3 1990 3 1988 3 1989 3 1991 3 1990 3 1989 3 1992 3 1990 3 1991 3 1993 3 1992 3 1991 3 1994 3 1992 3 1993 3 1995 3 1994 3 1993 3 1996 3 1994 3 1995 3 1997 3 1996 3 1995 3 1998 3 1996 3 1997 3 1999 3 1998 3 1997 3 2000 3 1998 3 1999 3 2003 3 2002 3 2001 3 2004 3 2002 3 2003 3 2005 3 2004 3 2003 3 2006 3 2004 3 2005 3 2007 3 2006 3 2005 3 2008 3 2006 3 2007 3 2009 3 2008 3 2007 3 2010 3 2008 3 2009 3 2011 3 2010 3 2009 3 2012 3 2010 3 2011 3 2013 3 2012 3 2011 3 2014 3 2012 3 2013 3 2015 3 2014 3 2013 3 2016 3 2014 3 2015 3 2017 3 2016 3 2015 3 2018 3 2016 3 2017 3 2021 3 2020 3 2019 3 2022 3 2020 3 2021 3 2023 3 2022 3 2021 3 2024 3 2022 3 2023 3 2025 3 2024 3 2023 3 2026 3 2024 3 2025 3 2027 3 2026 3 2025 3 2028 3 2026 3 2027 3 2029 3 2028 3 2027 3 2030 3 2028 3 2029 3 2031 3 2030 3 2029 3 2032 3 2030 3 2031 3 2033 3 2032 3 2031 3 2034 3 2032 3 2033 3 2035 3 2034 3 2033 3 2036 3 2034 3 2035 3 2039 0 2038 0 2037 0 2040 0 2038 0 2039 0 2041 0 2040 0 2039 0 2041 0 2040 0 2041 0 2042 1 2041 2 2041 2 2043 2 2041 2 2042 1 2044 1 2043 2 2042 1 2045 1 2043 2 2044 1 2046 3 2045 3 2044 3 2047 3 2045 3 2046 3 2048 3 2047 3 2046 3 2049 3 2047 3 2048 3 2050 3 2049 3 2048 3 2051 3 2049 3 2050 3 2052 3 2051 3 2050 3 2053 3 2051 3 2052 3 2056 0 2055 0 2054 0 2057 0 2055 0 2056 0 2058 0 2057 0 2056 0 2059 0 2057 0 2058 0 2060 1 2059 2 2058 2 2061 1 2059 2 2060 1 2062 3 2061 3 2060 3 2063 3 2061 3 2062 3 2064 3 2063 3 2062 3 2065 3 2063 3 2064 3 2066 3 2065 3 2064 3 2067 3 2065 3 2066 3 2068 3 2067 3 2066 3 2069 3 2067 3 2068 3 2070 3 2069 3 2068 3 2071 3 2069 3 2070 3 2074 0 2073 0 2072 0 2075 0 2073 0 2074 0 2076 0 2075 0 2074 0 2077 0 2075 0 2076 0 2078 0 2077 0 2076 0 2079 0 2077 0 2078 0 2080 1 2079 2 2078 2 2081 1 2079 2 2080 1 2082 3 2081 3 2080 3 2083 3 2081 3 2082 3 2084 3 2083 3 2082 3 2085 3 2083 3 2084 3 2086 3 2085 3 2084 3 2087 3 2085 3 2086 3 2088 3 2087 3 2086 3 2089 3 2087 3 2088 3 2092 5 2091 5 2090 5 2093 5 2091 5 2092 5 2094 5 2093 5 2092 5 2095 5 2093 5 2094 5 2096 5 2095 5 2094 5 2097 5 2095 5 2096 5 2098 5 2097 5 2096 5 2099 5 2097 5 2098 5 2100 5 2099 5 2098 5 2101 5 2099 5 2100 5 2102 5 2101 5 2100 5 2103 5 2101 5 2102 5 2104 5 2103 5 2102 5 2105 5 2103 5 2104 5 2107 5 2090 5 2106 5 2108 5 2090 5 2107 5 2109 5 2108 5 2107 5 2110 5 2108 5 2109 5 2111 5 2110 5 2109 5 2112 5 2110 5 2111 5 2113 5 2112 5 2111 5 2114 5 2112 5 2113 5 2115 5 2114 5 2113 5 2116 5 2114 5 2115 5 2117 5 2116 5 2115 5 2118 5 2116 5 2117 5 2119 5 2118 5 2117 5 2120 5 2118 5 2119 5 2123 0 2122 0 2121 5 2124 0 2122 0 2123 0 2125 0 2124 0 2123 0 2126 0 2124 0 2125 0 2127 0 2126 0 2125 0 2128 0 2126 0 2127 0 2129 1 2128 2 2127 2 2130 1 2128 2 2129 1 2131 3 2130 3 2129 3 2132 3 2130 3 2131 3 2133 3 2132 3 2131 3 2134 3 2132 3 2133 3 2135 3 2134 3 2133 3 2136 3 2134 3 2135 3 2139 5 2138 5 2137 5 2140 5 2138 5 2139 5 2141 5 2140 5 2139 5 2142 5 2140 5 2141 5 2143 5 2142 5 2141 5 2144 5 2142 5 2143 5 2145 5 2144 5 2143 5 2146 5 2144 5 2145 5 2147 5 2146 5 2145 5 2148 5 2146 5 2147 5 2149 5 2148 5 2147 5 2150 5 2148 5 2149 5 2151 5 2150 5 2149 5 2152 5 2150 5 2151 5 2139 5 2154 5 2153 5 2155 5 2154 5 2139 5 2156 5 2155 5 2139 5 2157 5 2155 5 2156 5 2158 5 2157 5 2156 5 2159 5 2157 5 2158 5 2160 5 2159 5 2158 5 2161 5 2159 5 2160 5 2162 5 2161 5 2160 5 2162 5 2161 5 2162 5 2163 5 2162 5 2162 5 2164 5 2162 5 2163 5 2165 5 2164 5 2163 5 2166 5 2164 5 2165 5 2169 5 2168 5 2167 5 2170 5 2168 5 2169 5 2171 5 2170 5 2169 5 2172 5 2170 5 2171 5 2173 5 2172 5 2171 5 2174 5 2172 5 2173 5 2175 5 2174 5 2173 5 2176 5 2174 5 2175 5 2177 5 2176 5 2175 5 2178 5 2176 5 2177 5 2179 5 2178 5 2177 5 2180 5 2178 5 2179 5 2181 5 2180 5 2179 5 2182 5 2180 5 2181 5 2185 5 2184 5 2183 5 2186 5 2184 5 2185 5 2187 5 2186 5 2185 5 2188 5 2186 5 2187 5 2189 5 2188 5 2187 5 2190 5 2188 5 2189 5 2191 5 2190 5 2189 5 2192 5 2190 5 2191 5 2193 5 2192 5 2191 5 2194 5 2192 5 2193 5 2195 5 2194 5 2193 5 2196 5 2194 5 2195 5 2197 5 2196 5 2195 5 2198 5 2196 5 2197 5 2200 5 2154 5 2199 5 2201 5 2154 5 2200 5 2202 5 2201 5 2200 5 2203 5 2201 5 2202 5 2204 5 2203 5 2202 5 2205 5 2203 5 2204 5 2206 5 2205 5 2204 5 2207 5 2205 5 2206 5 2208 5 2207 5 2206 5 2209 5 2207 5 2208 5 2210 5 2209 5 2208 5 2211 5 2209 5 2210 5 2212 5 2211 5 2210 5 2213 5 2211 5 2212 5 2185 5 2184 5 2153 5 2214 5 2184 5 2185 5 2215 5 2214 5 2185 5 2216 5 2214 5 2215 5 2217 5 2216 5 2215 5 2218 5 2216 5 2217 5 2219 5 2218 5 2217 5 2220 5 2218 5 2219 5 2221 5 2220 5 2219 5 2222 5 2220 5 2221 5 2223 5 2222 5 2221 5 2224 5 2222 5 2223 5 2225 5 2224 5 2223 5 2226 5 2224 5 2225 5 2229 5 2228 5 2227 5 2230 5 2228 5 2229 5 2231 5 2230 5 2229 5 2232 5 2230 5 2231 5 2233 5 2232 5 2231 5 2234 5 2232 5 2233 5 2235 5 2234 5 2233 5 2236 5 2234 5 2235 5 2237 5 2236 5 2235 5 2238 5 2236 5 2237 5 2239 5 2238 5 2237 5 2240 5 2238 5 2239 5 2241 5 2240 5 2239 5 2242 5 2240 5 2241 5 2243 5 2227 5 2228 5 2244 5 2227 5 2243 5 2245 5 2244 5 2243 5 2246 5 2244 5 2245 5 2247 5 2246 5 2245 5 2248 5 2246 5 2247 5 2249 5 2248 5 2247 5 2250 5 2248 5 2249 5 2251 5 2250 5 2249 5 2252 5 2250 5 2251 5 2253 5 2252 5 2251 5 2254 5 2252 5 2253 5 2255 5 2254 5 2253 5 2256 5 2254 5 2255 5 2257 5 2228 5 2227 5 2258 5 2228 5 2257 5 2259 5 2258 5 2257 5 2260 5 2258 5 2259 5 2261 5 2260 5 2259 5 2262 5 2260 5 2261 5 2263 5 2262 5 2261 5 2264 5 2262 5 2263 5 2265 5 2264 5 2263 5 2266 5 2264 5 2265 5 2267 5 2266 5 2265 5 2268 5 2266 5 2267 5 2269 5 2268 5 2267 5 2270 5 2268 5 2269 5 2272 5 2227 5 2271 5 2273 5 2227 5 2272 5 2274 5 2273 5 2272 5 2275 5 2273 5 2274 5 2276 5 2275 5 2274 5 2277 5 2275 5 2276 5 2278 5 2277 5 2276 5 2279 5 2277 5 2278 5 2280 5 2279 5 2278 5 2281 5 2279 5 2280 5 2282 5 2281 5 2280 5 2283 5 2281 5 2282 5 2284 5 2283 5 2282 5 2285 5 2283 5 2284 5 2287 0 2286 0 2227 5 2288 0 2286 0 2287 0 2289 0 2288 0 2287 0 2290 0 2288 0 2289 0 2291 0 2290 0 2289 0 2292 0 2290 0 2291 0 2293 1 2292 2 2291 2 2294 1 2292 2 2293 1 2295 3 2294 3 2293 3 2296 3 2294 3 2295 3 2297 3 2296 3 2295 3 2298 3 2296 3 2297 3 2299 3 2298 3 2297 3 2300 3 2298 3 2299 3 2303 5 2302 5 2301 5 2304 5 2302 5 2303 5 2305 5 2304 5 2303 5 2305 5 2304 5 2305 5 2306 5 2305 5 2305 5 2307 5 2305 5 2306 5 2308 5 2307 5 2306 5 2309 5 2307 5 2308 5 2310 5 2309 5 2308 5 2311 5 2309 5 2310 5 2312 5 2311 5 2310 5 2312 5 2311 5 2312 5 2313 5 2312 5 2312 5 2314 5 2312 5 2313 5 2303 5 2316 5 2315 5 2317 5 2316 5 2303 5 2318 5 2317 5 2303 5 2319 5 2317 5 2318 5 2320 5 2319 5 2318 5 2321 5 2319 5 2320 5 2322 5 2321 5 2320 5 2323 5 2321 5 2322 5 2324 5 2323 5 2322 5 2325 5 2323 5 2324 5 2326 5 2325 5 2324 5 2327 5 2325 5 2326 5 2328 5 2327 5 2326 5 2328 5 2327 5 2328 5 2331 5 2330 5 2329 5 2332 5 2330 5 2331 5 2333 5 2332 5 2331 5 2334 5 2332 5 2333 5 2335 5 2334 5 2333 5 2336 5 2334 5 2335 5 2337 5 2336 5 2335 5 2338 5 2336 5 2337 5 2339 5 2338 5 2337 5 2340 5 2338 5 2339 5 2341 5 2340 5 2339 5 2342 5 2340 5 2341 5 2343 5 2342 5 2341 5 2343 5 2342 5 2343 5 2346 5 2345 5 2344 5 2347 5 2345 5 2346 5 2348 5 2347 5 2346 5 2349 5 2347 5 2348 5 2350 5 2349 5 2348 5 2351 5 2349 5 2350 5 2352 5 2351 5 2350 5 2353 5 2351 5 2352 5 2354 5 2353 5 2352 5 2355 5 2353 5 2354 5 2356 5 2355 5 2354 5 2357 5 2355 5 2356 5 2358 5 2357 5 2356 5 2359 5 2357 5 2358 5 2361 5 2316 5 2360 5 2362 5 2316 5 2361 5 2363 5 2362 5 2361 5 2364 5 2362 5 2363 5 2365 5 2364 5 2363 5 2366 5 2364 5 2365 5 2367 5 2366 5 2365 5 2368 5 2366 5 2367 5 2369 5 2368 5 2367 5 2370 5 2368 5 2369 5 2371 5 2370 5 2369 5 2372 5 2370 5 2371 5 2373 5 2372 5 2371 5 2374 5 2372 5 2373 5 2346 5 2375 5 2301 5 2376 5 2375 5 2346 5 2377 5 2376 5 2346 5 2378 5 2376 5 2377 5 2379 5 2378 5 2377 5 2380 5 2378 5 2379 5 2381 5 2380 5 2379 5 2382 5 2380 5 2381 5 2383 5 2382 5 2381 5 2384 5 2382 5 2383 5 2385 5 2384 5 2383 5 2386 5 2384 5 2385 5 2387 5 2386 5 2385 5 2388 5 2386 5 2387 5 2390 5 2389 5 2389 5 2391 5 2389 5 2390 5 2392 5 2391 5 2390 5 2393 5 2391 5 2392 5 2394 5 2393 5 2392 5 2395 5 2393 5 2394 5 2396 5 2395 5 2394 5 2397 5 2395 5 2396 5 2398 5 2397 5 2396 5 2399 5 2397 5 2398 5 2400 5 2399 5 2398 5 2401 5 2399 5 2400 5 2402 5 2401 5 2400 5 2403 5 2401 5 2402 5 2390 5 2405 5 2404 5 2406 5 2405 5 2390 5 2407 5 2406 5 2390 5 2408 5 2406 5 2407 5 2409 5 2408 5 2407 5 2410 5 2408 5 2409 5 2411 5 2410 5 2409 5 2411 5 2410 5 2411 5 2412 5 2411 5 2411 5 2413 5 2411 5 2412 5 2414 5 2413 5 2412 5 2415 5 2413 5 2414 5 2416 5 2415 5 2414 5 2417 5 2415 5 2416 5 2418 5 2404 5 2405 5 2419 5 2404 5 2418 5 2420 5 2419 5 2418 5 2421 5 2419 5 2420 5 2422 5 2421 5 2420 5 2423 5 2421 5 2422 5 2424 5 2423 5 2422 5 2425 5 2423 5 2424 5 2426 5 2425 5 2424 5 2427 5 2425 5 2426 5 2428 5 2427 5 2426 5 2429 5 2427 5 2428 5 2430 5 2429 5 2428 5 2431 5 2429 5 2430 5 2433 5 2405 5 2432 5 2434 5 2405 5 2433 5 2435 5 2434 5 2433 5 2436 5 2434 5 2435 5 2437 5 2436 5 2435 5 2438 5 2436 5 2437 5 2439 5 2438 5 2437 5 2440 5 2438 5 2439 5 2441 5 2440 5 2439 5 2442 5 2440 5 2441 5 2443 5 2442 5 2441 5 2444 5 2442 5 2443 5 2445 5 2444 5 2443 5 2446 5 2444 5 2445 5 2448 0 2447 0 2389 5 2449 0 2447 0 2448 0 2450 0 2449 0 2448 0 2451 0 2449 0 2450 0 2452 0 2451 0 2450 0 2453 0 2451 0 2452 0 2454 1 2453 2 2452 2 2455 1 2453 2 2454 1 2456 3 2455 3 2454 3 2457 3 2455 3 2456 3 2458 3 2457 3 2456 3 2459 3 2457 3 2458 3 2460 3 2459 3 2458 3 2461 3 2459 3 2460 3 2464 5 2463 5 2462 5 2465 5 2463 5 2464 5 2466 5 2465 5 2464 5 2467 5 2465 5 2466 5 2468 5 2467 5 2466 5 2469 5 2467 5 2468 5 2470 5 2469 5 2468 5 2471 5 2469 5 2470 5 2472 5 2471 5 2470 5 2473 5 2471 5 2472 5 2474 5 2473 5 2472 5 2475 5 2473 5 2474 5 2476 5 2475 5 2474 5 2477 5 2475 5 2476 5 2464 5 2479 5 2478 5 2480 5 2479 5 2464 5 2481 5 2480 5 2464 5 2482 5 2480 5 2481 5 2483 5 2482 5 2481 5 2484 5 2482 5 2483 5 2485 5 2484 5 2483 5 2486 5 2484 5 2485 5 2487 5 2486 5 2485 5 2488 5 2486 5 2487 5 2489 5 2488 5 2487 5 2490 5 2488 5 2489 5 2491 5 2490 5 2489 5 2492 5 2490 5 2491 5 2464 5 2493 5 2479 5 2494 5 2493 5 2464 5 2495 5 2494 5 2464 5 2496 5 2494 5 2495 5 2497 5 2496 5 2495 5 2498 5 2496 5 2497 5 2499 5 2498 5 2497 5 2500 5 2498 5 2499 5 2501 5 2500 5 2499 5 2502 5 2500 5 2501 5 2503 5 2502 5 2501 5 2504 5 2502 5 2503 5 2505 5 2504 5 2503 5 2505 5 2504 5 2505 5 2507 5 2478 5 2506 5 2508 5 2478 5 2507 5 2509 5 2508 5 2507 5 2510 5 2508 5 2509 5 2511 5 2510 5 2509 5 2512 5 2510 5 2511 5 2513 5 2512 5 2511 5 2514 5 2512 5 2513 5 2515 5 2514 5 2513 5 2516 5 2514 5 2515 5 2517 5 2516 5 2515 5 2518 5 2516 5 2517 5 2519 5 2518 5 2517 5 2520 5 2518 5 2519 5 2507 5 2479 5 2521 5 2522 5 2479 5 2507 5 2523 5 2522 5 2507 5 2524 5 2522 5 2523 5 2525 5 2524 5 2523 5 2526 5 2524 5 2525 5 2527 5 2526 5 2525 5 2528 5 2526 5 2527 5 2529 5 2528 5 2527 5 2530 5 2528 5 2529 5 2531 5 2530 5 2529 5 2532 5 2530 5 2531 5 2533 5 2532 5 2531 5 2534 5 2532 5 2533 5 2537 5 2536 5 2535 5 2538 5 2536 5 2537 5 2539 5 2538 5 2537 5 2540 5 2538 5 2539 5 2541 5 2540 5 2539 5 2542 5 2540 5 2541 5 2543 5 2542 5 2541 5 2544 5 2542 5 2543 5 2545 5 2544 5 2543 5 2546 5 2544 5 2545 5 2547 5 2546 5 2545 5 2548 5 2546 5 2547 5 2549 5 2548 5 2547 5 2550 5 2548 5 2549 5 2552 5 2551 5 2551 5 2553 5 2551 5 2552 5 2554 5 2553 5 2552 5 2555 5 2553 5 2554 5 2556 5 2555 5 2554 5 2557 5 2555 5 2556 5 2558 5 2557 5 2556 5 2559 5 2557 5 2558 5 2560 5 2559 5 2558 5 2561 5 2559 5 2560 5 2562 5 2561 5 2560 5 2563 5 2561 5 2562 5 2564 5 2563 5 2562 5 2565 5 2563 5 2564 5 2568 5 2567 5 2566 5 2569 5 2567 5 2568 5 2570 5 2569 5 2568 5 2571 5 2569 5 2570 5 2572 5 2571 5 2570 5 2573 5 2571 5 2572 5 2574 5 2573 5 2572 5 2575 5 2573 5 2574 5 2576 5 2575 5 2574 5 2577 5 2575 5 2576 5 2578 5 2577 5 2576 5 2578 5 2577 5 2578 5 2579 5 2578 5 2578 5 2580 5 2578 5 2579 5 2552 5 2582 5 2581 5 2583 5 2582 5 2552 5 2584 5 2583 5 2552 5 2585 5 2583 5 2584 5 2586 5 2585 5 2584 5 2587 5 2585 5 2586 5 2588 5 2587 5 2586 5 2589 5 2587 5 2588 5 2590 5 2589 5 2588 5 2591 5 2589 5 2590 5 2592 5 2591 5 2590 5 2593 5 2591 5 2592 5 2594 5 2593 5 2592 5 2594 5 2593 5 2594 5 2596 5 2581 5 2595 5 2597 5 2581 5 2596 5 2598 5 2597 5 2596 5 2599 5 2597 5 2598 5 2600 5 2599 5 2598 5 2601 5 2599 5 2600 5 2602 5 2601 5 2600 5 2603 5 2601 5 2602 5 2604 5 2603 5 2602 5 2605 5 2603 5 2604 5 2606 5 2605 5 2604 5 2607 5 2605 5 2606 5 2608 5 2607 5 2606 5 2609 5 2607 5 2608 5 2611 0 2610 0 2551 5 2612 0 2610 0 2611 0 2613 0 2612 0 2611 0 2614 0 2612 0 2613 0 2615 0 2614 0 2613 0 2616 0 2614 0 2615 0 2617 1 2616 2 2615 2 2618 1 2616 2 2617 1 2619 3 2618 3 2617 3 2620 3 2618 3 2619 3 2621 3 2620 3 2619 3 2622 3 2620 3 2621 3 2623 3 2622 3 2621 3 2624 3 2622 3 2623 3 2627 5 2626 5 2625 5 2628 5 2626 5 2627 5 2629 5 2628 5 2627 5 2630 5 2628 5 2629 5 2631 5 2630 5 2629 5 2632 5 2630 5 2631 5 2633 5 2632 5 2631 5 2634 5 2632 5 2633 5 2635 5 2634 5 2633 5 2636 5 2634 5 2635 5 2637 5 2636 5 2635 5 2638 5 2636 5 2637 5 2639 5 2638 5 2637 5 2640 5 2638 5 2639 5 2643 5 2642 5 2641 5 2644 5 2642 5 2643 5 2645 5 2644 5 2643 5 2646 5 2644 5 2645 5 2647 5 2646 5 2645 5 2648 5 2646 5 2647 5 2649 5 2648 5 2647 5 2650 5 2648 5 2649 5 2651 5 2650 5 2649 5 2651 5 2650 5 2651 5 2652 5 2651 5 2651 5 2653 5 2651 5 2652 5 2654 5 2653 5 2652 5 2655 5 2653 5 2654 5 2627 5 2656 5 2625 5 2657 5 2656 5 2627 5 2658 5 2657 5 2627 5 2659 5 2657 5 2658 5 2660 5 2659 5 2658 5 2661 5 2659 5 2660 5 2662 5 2661 5 2660 5 2663 5 2661 5 2662 5 2664 5 2663 5 2662 5 2665 5 2663 5 2664 5 2666 5 2665 5 2664 5 2667 5 2665 5 2666 5 2668 5 2667 5 2666 5 2669 5 2667 5 2668 5 2671 5 2656 5 2670 5 2672 5 2656 5 2671 5 2673 5 2672 5 2671 5 2674 5 2672 5 2673 5 2675 5 2674 5 2673 5 2676 5 2674 5 2675 5 2677 5 2676 5 2675 5 2678 5 2676 5 2677 5 2679 5 2678 5 2677 5 2680 5 2678 5 2679 5 2681 5 2680 5 2679 5 2682 5 2680 5 2681 5 2683 5 2682 5 2681 5 2684 5 2682 5 2683 5 2686 5 2626 5 2685 5 2687 5 2626 5 2686 5 2688 5 2687 5 2686 5 2689 5 2687 5 2688 5 2690 5 2689 5 2688 5 2691 5 2689 5 2690 5 2692 5 2691 5 2690 5 2693 5 2691 5 2692 5 2694 5 2693 5 2692 5 2695 5 2693 5 2694 5 2696 5 2695 5 2694 5 2697 5 2695 5 2696 5 2698 5 2697 5 2696 5 2699 5 2697 5 2698 5 2671 5 2700 5 2625 5 2701 5 2700 5 2671 5 2702 5 2701 5 2671 5 2703 5 2701 5 2702 5 2704 5 2703 5 2702 5 2705 5 2703 5 2704 5 2706 5 2705 5 2704 5 2707 5 2705 5 2706 5 2708 5 2707 5 2706 5 2709 5 2707 5 2708 5 2710 5 2709 5 2708 5 2711 5 2709 5 2710 5 2712 5 2711 5 2710 5 2713 5 2711 5 2712 5 2715 5 2714 5 2714 5 2716 5 2714 5 2715 5 2717 5 2716 5 2715 5 2718 5 2716 5 2717 5 2719 5 2718 5 2717 5 2720 5 2718 5 2719 5 2721 5 2720 5 2719 5 2722 5 2720 5 2721 5 2723 5 2722 5 2721 5 2724 5 2722 5 2723 5 2725 5 2724 5 2723 5 2726 5 2724 5 2725 5 2727 5 2726 5 2725 5 2728 5 2726 5 2727 5 2715 5 2729 5 2714 5 2730 5 2729 5 2715 5 2731 5 2730 5 2715 5 2732 5 2730 5 2731 5 2733 5 2732 5 2731 5 2734 5 2732 5 2733 5 2735 5 2734 5 2733 5 2736 5 2734 5 2735 5 2737 5 2736 5 2735 5 2738 5 2736 5 2737 5 2739 5 2738 5 2737 5 2740 5 2738 5 2739 5 2741 5 2740 5 2739 5 2742 5 2740 5 2741 5 2744 5 2714 5 2743 5 2745 5 2714 5 2744 5 2746 5 2745 5 2744 5 2747 5 2745 5 2746 5 2748 5 2747 5 2746 5 2749 5 2747 5 2748 5 2750 5 2749 5 2748 5 2751 5 2749 5 2750 5 2752 5 2751 5 2750 5 2753 5 2751 5 2752 5 2754 5 2753 5 2752 5 2755 5 2753 5 2754 5 2756 5 2755 5 2754 5 2757 5 2755 5 2756 5 2759 5 2729 5 2758 5 2760 5 2729 5 2759 5 2761 5 2760 5 2759 5 2762 5 2760 5 2761 5 2763 5 2762 5 2761 5 2764 5 2762 5 2763 5 2765 5 2764 5 2763 5 2766 5 2764 5 2765 5 2767 5 2766 5 2765 5 2768 5 2766 5 2767 5 2769 5 2768 5 2767 5 2770 5 2768 5 2769 5 2771 5 2770 5 2769 5 2772 5 2770 5 2771 5 2774 0 2773 0 2714 5 2775 0 2773 0 2774 0 2776 0 2775 0 2774 0 2777 0 2775 0 2776 0 2778 0 2777 0 2776 0 2779 0 2777 0 2778 0 2780 1 2779 2 2778 2 2781 1 2779 2 2780 1 2782 3 2781 3 2780 3 2783 3 2781 3 2782 3 2784 3 2783 3 2782 3 2785 3 2783 3 2784 3 2786 3 2785 3 2784 3 2787 3 2785 3 2786 3 2789 5 2788 5 2788 5 2790 5 2788 5 2789 5 2791 5 2790 5 2789 5 2792 5 2790 5 2791 5 2793 5 2792 5 2791 5 2794 5 2792 5 2793 5 2795 5 2794 5 2793 5 2796 5 2794 5 2795 5 2797 5 2796 5 2795 5 2798 5 2796 5 2797 5 2799 5 2798 5 2797 5 2800 5 2798 5 2799 5 2801 5 2800 5 2799 5 2801 5 2800 5 2801 5 2804 5 2803 5 2802 5 2805 5 2803 5 2804 5 2806 5 2805 5 2804 5 2807 5 2805 5 2806 5 2808 5 2807 5 2806 5 2809 5 2807 5 2808 5 2810 5 2809 5 2808 5 2811 5 2809 5 2810 5 2812 5 2811 5 2810 5 2813 5 2811 5 2812 5 2814 5 2813 5 2812 5 2815 5 2813 5 2814 5 2816 5 2815 5 2814 5 2817 5 2815 5 2816 5 2819 5 2818 5 2803 5 2820 5 2818 5 2819 5 2821 5 2820 5 2819 5 2822 5 2820 5 2821 5 2823 5 2822 5 2821 5 2824 5 2822 5 2823 5 2825 5 2824 5 2823 5 2825 5 2824 5 2825 5 2826 5 2825 5 2825 5 2827 5 2825 5 2826 5 2828 5 2827 5 2826 5 2829 5 2827 5 2828 5 2830 5 2829 5 2828 5 2830 5 2829 5 2830 5 2831 5 2802 5 2788 5 2832 5 2802 5 2831 5 2833 5 2832 5 2831 5 2834 5 2832 5 2833 5 2835 5 2834 5 2833 5 2836 5 2834 5 2835 5 2837 5 2836 5 2835 5 2838 5 2836 5 2837 5 2839 5 2838 5 2837 5 2840 5 2838 5 2839 5 2841 5 2840 5 2839 5 2842 5 2840 5 2841 5 2843 5 2842 5 2841 5 2844 5 2842 5 2843 5 2846 5 2803 5 2845 5 2847 5 2803 5 2846 5 2848 5 2847 5 2846 5 2849 5 2847 5 2848 5 2850 5 2849 5 2848 5 2851 5 2849 5 2850 5 2852 5 2851 5 2850 5 2853 5 2851 5 2852 5 2854 5 2853 5 2852 5 2855 5 2853 5 2854 5 2856 5 2855 5 2854 5 2857 5 2855 5 2856 5 2858 5 2857 5 2856 5 2859 5 2857 5 2858 5 2831 5 2861 5 2860 5 2862 5 2861 5 2831 5 2863 5 2862 5 2831 5 2864 5 2862 5 2863 5 2865 5 2864 5 2863 5 2866 5 2864 5 2865 5 2867 5 2866 5 2865 5 2868 5 2866 5 2867 5 2869 5 2868 5 2867 5 2870 5 2868 5 2869 5 2871 5 2870 5 2869 5 2872 5 2870 5 2871 5 2873 5 2872 5 2871 5 2874 5 2872 5 2873 5 2877 5 2876 5 2875 5 2878 5 2876 5 2877 5 2879 5 2878 5 2877 5 2880 5 2878 5 2879 5 2881 5 2880 5 2879 5 2882 5 2880 5 2881 5 2883 5 2882 5 2881 5 2884 5 2882 5 2883 5 2885 5 2884 5 2883 5 2886 5 2884 5 2885 5 2887 5 2886 5 2885 5 2888 5 2886 5 2887 5 2889 5 2888 5 2887 5 2889 5 2888 5 2889 5 2891 5 2875 5 2890 5 2892 5 2875 5 2891 5 2893 5 2892 5 2891 5 2894 5 2892 5 2893 5 2895 5 2894 5 2893 5 2896 5 2894 5 2895 5 2897 5 2896 5 2895 5 2898 5 2896 5 2897 5 2899 5 2898 5 2897 5 2899 5 2898 5 2899 5 2900 5 2899 5 2899 5 2901 5 2899 5 2900 5 2902 5 2901 5 2900 5 2903 5 2901 5 2902 5 2877 5 2890 5 2875 5 2904 5 2890 5 2877 5 2905 5 2904 5 2877 5 2906 5 2904 5 2905 5 2907 5 2906 5 2905 5 2908 5 2906 5 2907 5 2909 5 2908 5 2907 5 2910 5 2908 5 2909 5 2911 5 2910 5 2909 5 2912 5 2910 5 2911 5 2913 5 2912 5 2911 5 2914 5 2912 5 2913 5 2915 5 2914 5 2913 5 2916 5 2914 5 2915 5 2918 5 2875 5 2917 5 2919 5 2875 5 2918 5 2920 5 2919 5 2918 5 2921 5 2919 5 2920 5 2922 5 2921 5 2920 5 2923 5 2921 5 2922 5 2924 5 2923 5 2922 5 2925 5 2923 5 2924 5 2926 5 2925 5 2924 5 2927 5 2925 5 2926 5 2928 5 2927 5 2926 5 2929 5 2927 5 2928 5 2930 5 2929 5 2928 5 2931 5 2929 5 2930 5 2933 0 2932 0 2876 5 2934 0 2932 0 2933 0 2935 0 2934 0 2933 0 2936 0 2934 0 2935 0 2937 0 2936 0 2935 0 2938 0 2936 0 2937 0 2939 1 2938 2 2937 2 2940 1 2938 2 2939 1 2941 3 2940 3 2939 3 2942 3 2940 3 2941 3 2943 3 2942 3 2941 3 2944 3 2942 3 2943 3 2945 3 2944 3 2943 3 2946 3 2944 3 2945 3 2949 5 2948 5 2947 5 2949 5 2948 5 2949 5 2950 5 2949 5 2949 5 2950 5 2949 5 2950 5 2951 5 2950 5 2950 5 2952 5 2950 5 2951 5 2953 5 2952 5 2951 5 2954 5 2952 5 2953 5 2955 5 2954 5 2953 5 2956 5 2954 5 2955 5 2957 5 2956 5 2955 5 2958 5 2956 5 2957 5 2959 5 2958 5 2957 5 2960 5 2958 5 2959 5 2949 5 2962 5 2961 5 2963 5 2962 5 2949 5 2964 5 2963 5 2949 5 2965 5 2963 5 2964 5 2966 5 2965 5 2964 5 2967 5 2965 5 2966 5 2968 5 2967 5 2966 5 2969 5 2967 5 2968 5 2970 5 2969 5 2968 5 2971 5 2969 5 2970 5 2972 5 2971 5 2970 5 2973 5 2971 5 2972 5 2974 5 2973 5 2972 5 2975 5 2973 5 2974 5 2977 5 2948 5 2976 5 2978 5 2948 5 2977 5 2979 5 2978 5 2977 5 2980 5 2978 5 2979 5 2981 5 2980 5 2979 5 2982 5 2980 5 2981 5 2983 5 2982 5 2981 5 2984 5 2982 5 2983 5 2985 5 2984 5 2983 5 2986 5 2984 5 2985 5 2987 5 2986 5 2985 5 2988 5 2986 5 2987 5 2989 5 2988 5 2987 5 2990 5 2988 5 2989 5 2992 5 2991 5 2961 5 2993 5 2991 5 2992 5 2994 5 2993 5 2992 5 2995 5 2993 5 2994 5 2996 5 2995 5 2994 5 2997 5 2995 5 2996 5 2998 5 2997 5 2996 5 2999 5 2997 5 2998 5 3000 5 2999 5 2998 5 3001 5 2999 5 3000 5 3002 5 3001 5 3000 5 3003 5 3001 5 3002 5 3004 5 3003 5 3002 5 3005 5 3003 5 3004 5 3007 5 2947 5 3006 5 3008 5 2947 5 3007 5 3009 5 3008 5 3007 5 3010 5 3008 5 3009 5 3011 5 3010 5 3009 5 3012 5 3010 5 3011 5 3013 5 3012 5 3011 5 3014 5 3012 5 3013 5 3015 5 3014 5 3013 5 3016 5 3014 5 3015 5 3017 5 3016 5 3015 5 3018 5 3016 5 3017 5 3019 5 3018 5 3017 5 3020 5 3018 5 3019 5 2993 5 3022 5 3021 5 3023 5 3022 5 2993 5 3024 5 3023 5 2993 5 3025 5 3023 5 3024 5 3026 5 3025 5 3024 5 3027 5 3025 5 3026 5 3028 5 3027 5 3026 5 3029 5 3027 5 3028 5 3030 5 3029 5 3028 5 3031 5 3029 5 3030 5 3032 5 3031 5 3030 5 3033 5 3031 5 3032 5 3034 5 3033 5 3032 5 3035 5 3033 5 3034 5 3037 5 3036 5 3036 5 3038 5 3036 5 3037 5 3039 5 3038 5 3037 5 3040 5 3038 5 3039 5 3041 5 3040 5 3039 5 3042 5 3040 5 3041 5 3043 5 3042 5 3041 5 3044 5 3042 5 3043 5 3045 5 3044 5 3043 5 3046 5 3044 5 3045 5 3047 5 3046 5 3045 5 3048 5 3046 5 3047 5 3049 5 3048 5 3047 5 3050 5 3048 5 3049 5 3052 5 3036 5 3051 5 3053 5 3036 5 3052 5 3054 5 3053 5 3052 5 3055 5 3053 5 3054 5 3056 5 3055 5 3054 5 3057 5 3055 5 3056 5 3058 5 3057 5 3056 5 3059 5 3057 5 3058 5 3060 5 3059 5 3058 5 3061 5 3059 5 3060 5 3062 5 3061 5 3060 5 3063 5 3061 5 3062 5 3064 5 3063 5 3062 5 3065 5 3063 5 3064 5 3066 5 3051 5 3036 5 3067 5 3051 5 3066 5 3068 5 3067 5 3066 5 3069 5 3067 5 3068 5 3070 5 3069 5 3068 5 3071 5 3069 5 3070 5 3072 5 3071 5 3070 5 3073 5 3071 5 3072 5 3074 5 3073 5 3072 5 3075 5 3073 5 3074 5 3076 5 3075 5 3074 5 3077 5 3075 5 3076 5 3078 5 3077 5 3076 5 3078 5 3077 5 3078 5 3080 5 3036 5 3079 5 3081 5 3036 5 3080 5 3082 5 3081 5 3080 5 3083 5 3081 5 3082 5 3084 5 3083 5 3082 5 3085 5 3083 5 3084 5 3086 5 3085 5 3084 5 3087 5 3085 5 3086 5 3088 5 3087 5 3086 5 3089 5 3087 5 3088 5 3090 5 3089 5 3088 5 3091 5 3089 5 3090 5 3092 5 3091 5 3090 5 3093 5 3091 5 3092 5 3095 0 3094 0 3036 5 3096 0 3094 0 3095 0 3097 0 3096 0 3095 0 3098 0 3096 0 3097 0 3099 0 3098 0 3097 0 3100 0 3098 0 3099 0 3101 1 3100 2 3099 2 3102 1 3100 2 3101 1 3103 3 3102 3 3101 3 3104 3 3102 3 3103 3 3105 3 3104 3 3103 3 3106 3 3104 3 3105 3 3107 3 3106 3 3105 3 3108 3 3106 3 3107 3 3111 5 3110 5 3109 5 3111 5 3110 5 3111 5 3112 5 3111 5 3111 5 3113 5 3111 5 3112 5 3114 5 3113 5 3112 5 3115 5 3113 5 3114 5 3116 5 3115 5 3114 5 3117 5 3115 5 3116 5 3118 5 3117 5 3116 5 3119 5 3117 5 3118 5 3120 5 3119 5 3118 5 3121 5 3119 5 3120 5 3122 5 3121 5 3120 5 3123 5 3121 5 3122 5 3126 5 3125 5 3124 5 3127 5 3125 5 3126 5 3128 5 3127 5 3126 5 3129 5 3127 5 3128 5 3130 5 3129 5 3128 5 3131 5 3129 5 3130 5 3132 5 3131 5 3130 5 3133 5 3131 5 3132 5 3134 5 3133 5 3132 5 3135 5 3133 5 3134 5 3136 5 3135 5 3134 5 3137 5 3135 5 3136 5 3138 5 3137 5 3136 5 3138 5 3137 5 3138 5 3141 5 3140 5 3139 5 3142 5 3140 5 3141 5 3143 5 3142 5 3141 5 3144 5 3142 5 3143 5 3145 5 3144 5 3143 5 3146 5 3144 5 3145 5 3147 5 3146 5 3145 5 3148 5 3146 5 3147 5 3149 5 3148 5 3147 5 3150 5 3148 5 3149 5 3151 5 3150 5 3149 5 3152 5 3150 5 3151 5 3153 5 3152 5 3151 5 3154 5 3152 5 3153 5 3156 5 3155 5 3109 5 3157 5 3155 5 3156 5 3158 5 3157 5 3156 5 3159 5 3157 5 3158 5 3160 5 3159 5 3158 5 3161 5 3159 5 3160 5 3162 5 3161 5 3160 5 3163 5 3161 5 3162 5 3164 5 3163 5 3162 5 3165 5 3163 5 3164 5 3166 5 3165 5 3164 5 3167 5 3165 5 3166 5 3168 5 3167 5 3166 5 3169 5 3167 5 3168 5 3172 5 3171 5 3170 5 3173 5 3171 5 3172 5 3174 5 3173 5 3172 5 3175 5 3173 5 3174 5 3176 5 3175 5 3174 5 3177 5 3175 5 3176 5 3178 5 3177 5 3176 5 3179 5 3177 5 3178 5 3180 5 3179 5 3178 5 3181 5 3179 5 3180 5 3182 5 3181 5 3180 5 3183 5 3181 5 3182 5 3184 5 3183 5 3182 5 3185 5 3183 5 3184 5 3156 5 3187 5 3186 5 3188 5 3187 5 3156 5 3189 5 3188 5 3156 5 3190 5 3188 5 3189 5 3191 5 3190 5 3189 5 3192 5 3190 5 3191 5 3193 5 3192 5 3191 5 3194 5 3192 5 3193 5 3195 5 3194 5 3193 5 3196 5 3194 5 3195 5 3197 5 3196 5 3195 5 3198 5 3196 5 3197 5 3199 5 3198 5 3197 5 3200 5 3198 5 3199 5 3203 5 3202 5 3201 5 3203 5 3202 5 3203 5 3204 5 3203 5 3203 5 3205 5 3203 5 3204 5 3206 5 3205 5 3204 5 3207 5 3205 5 3206 5 3208 5 3207 5 3206 5 3209 5 3207 5 3208 5 3210 5 3209 5 3208 5 3211 5 3209 5 3210 5 3212 5 3211 5 3210 5 3213 5 3211 5 3212 5 3214 5 3213 5 3212 5 3215 5 3213 5 3214 5 3217 5 3216 5 3202 5 3218 5 3216 5 3217 5 3219 5 3218 5 3217 5 3220 5 3218 5 3219 5 3221 5 3220 5 3219 5 3222 5 3220 5 3221 5 3223 5 3222 5 3221 5 3224 5 3222 5 3223 5 3225 5 3224 5 3223 5 3226 5 3224 5 3225 5 3227 5 3226 5 3225 5 3228 5 3226 5 3227 5 3229 5 3228 5 3227 5 3229 5 3228 5 3229 5 3203 5 3231 5 3230 5 3232 5 3231 5 3203 5 3233 5 3232 5 3203 5 3234 5 3232 5 3233 5 3235 5 3234 5 3233 5 3236 5 3234 5 3235 5 3237 5 3236 5 3235 5 3238 5 3236 5 3237 5 3239 5 3238 5 3237 5 3240 5 3238 5 3239 5 3241 5 3240 5 3239 5 3242 5 3240 5 3241 5 3243 5 3242 5 3241 5 3244 5 3242 5 3243 5 3246 5 3216 5 3245 5 3247 5 3216 5 3246 5 3248 5 3247 5 3246 5 3249 5 3247 5 3248 5 3250 5 3249 5 3248 5 3251 5 3249 5 3250 5 3252 5 3251 5 3250 5 3253 5 3251 5 3252 5 3254 5 3253 5 3252 5 3255 5 3253 5 3254 5 3256 5 3255 5 3254 5 3257 5 3255 5 3256 5 3258 5 3257 5 3256 5 3259 5 3257 5 3258 5 3261 0 3260 0 3201 5 3262 0 3260 0 3261 0 3263 0 3262 0 3261 0 3264 0 3262 0 3263 0 3265 0 3264 0 3263 0 3266 0 3264 0 3265 0 3267 1 3266 2 3265 2 3268 1 3266 2 3267 1 3269 3 3268 3 3267 3 3270 3 3268 3 3269 3 3271 3 3270 3 3269 3 3272 3 3270 3 3271 3 3273 3 3272 3 3271 3 3274 3 3272 3 3273 3 3277 5 3276 5 3275 5 3277 5 3276 5 3277 5 3278 5 3277 5 3277 5 3278 5 3277 5 3278 5 3279 5 3278 5 3278 5 3280 5 3278 5 3279 5 3281 5 3280 5 3279 5 3282 5 3280 5 3281 5 3283 5 3282 5 3281 5 3284 5 3282 5 3283 5 3285 5 3284 5 3283 5 3286 5 3284 5 3285 5 3287 5 3286 5 3285 5 3288 5 3286 5 3287 5 3290 5 3289 5 3276 5 3291 5 3289 5 3290 5 3292 5 3291 5 3290 5 3293 5 3291 5 3292 5 3294 5 3293 5 3292 5 3295 5 3293 5 3294 5 3296 5 3295 5 3294 5 3297 5 3295 5 3296 5 3298 5 3297 5 3296 5 3299 5 3297 5 3298 5 3300 5 3299 5 3298 5 3301 5 3299 5 3300 5 3302 5 3301 5 3300 5 3303 5 3301 5 3302 5 3304 5 3276 5 3289 5 3305 5 3276 5 3304 5 3306 5 3305 5 3304 5 3307 5 3305 5 3306 5 3308 5 3307 5 3306 5 3309 5 3307 5 3308 5 3310 5 3309 5 3308 5 3311 5 3309 5 3310 5 3312 5 3311 5 3310 5 3313 5 3311 5 3312 5 3314 5 3313 5 3312 5 3315 5 3313 5 3314 5 3316 5 3315 5 3314 5 3317 5 3315 5 3316 5 3319 5 3276 5 3318 5 3320 5 3276 5 3319 5 3321 5 3320 5 3319 5 3322 5 3320 5 3321 5 3323 5 3322 5 3321 5 3324 5 3322 5 3323 5 3325 5 3324 5 3323 5 3326 5 3324 5 3325 5 3327 5 3326 5 3325 5 3328 5 3326 5 3327 5 3329 5 3328 5 3327 5 3330 5 3328 5 3329 5 3331 5 3330 5 3329 5 3332 5 3330 5 3331 5 3334 5 3289 5 3333 5 3335 5 3289 5 3334 5 3336 5 3335 5 3334 5 3337 5 3335 5 3336 5 3338 5 3337 5 3336 5 3339 5 3337 5 3338 5 3340 5 3339 5 3338 5 3341 5 3339 5 3340 5 3342 5 3341 5 3340 5 3343 5 3341 5 3342 5 3344 5 3343 5 3342 5 3345 5 3343 5 3344 5 3346 5 3345 5 3344 5 3347 5 3345 5 3346 5 3319 5 3349 5 3348 5 3350 5 3349 5 3319 5 3351 5 3350 5 3319 5 3352 5 3350 5 3351 5 3353 5 3352 5 3351 5 3354 5 3352 5 3353 5 3355 5 3354 5 3353 5 3356 5 3354 5 3355 5 3357 5 3356 5 3355 5 3358 5 3356 5 3357 5 3359 5 3358 5 3357 5 3360 5 3358 5 3359 5 3361 5 3360 5 3359 5 3362 5 3360 5 3361 5 3364 5 3363 5 3363 5 3365 5 3363 5 3364 5 3366 5 3365 5 3364 5 3367 5 3365 5 3366 5 3368 5 3367 5 3366 5 3369 5 3367 5 3368 5 3370 5 3369 5 3368 5 3371 5 3369 5 3370 5 3372 5 3371 5 3370 5 3373 5 3371 5 3372 5 3374 5 3373 5 3372 5 3375 5 3373 5 3374 5 3376 5 3375 5 3374 5 3377 5 3375 5 3376 5 3380 5 3379 5 3378 5 3381 5 3379 5 3380 5 3382 5 3381 5 3380 5 3383 5 3381 5 3382 5 3384 5 3383 5 3382 5 3385 5 3383 5 3384 5 3386 5 3385 5 3384 5 3387 5 3385 5 3386 5 3388 5 3387 5 3386 5 3389 5 3387 5 3388 5 3390 5 3389 5 3388 5 3391 5 3389 5 3390 5 3392 5 3391 5 3390 5 3393 5 3391 5 3392 5 3396 5 3395 5 3394 5 3397 5 3395 5 3396 5 3398 5 3397 5 3396 5 3399 5 3397 5 3398 5 3400 5 3399 5 3398 5 3401 5 3399 5 3400 5 3402 5 3401 5 3400 5 3403 5 3401 5 3402 5 3404 5 3403 5 3402 5 3405 5 3403 5 3404 5 3406 5 3405 5 3404 5 3407 5 3405 5 3406 5 3408 5 3407 5 3406 5 3409 5 3407 5 3408 5 3412 5 3411 5 3410 5 3413 5 3411 5 3412 5 3414 5 3413 5 3412 5 3415 5 3413 5 3414 5 3416 5 3415 5 3414 5 3417 5 3415 5 3416 5 3418 5 3417 5 3416 5 3419 5 3417 5 3418 5 3420 5 3419 5 3418 5 3421 5 3419 5 3420 5 3422 5 3421 5 3420 5 3423 5 3421 5 3422 5 3424 5 3423 5 3422 5 3425 5 3423 5 3424 5 3427 0 3426 0 3394 5 3428 0 3426 0 3427 0 3429 0 3428 0 3427 0 3430 0 3428 0 3429 0 3431 0 3430 0 3429 0 3432 0 3430 0 3431 0 3433 1 3432 2 3431 2 3434 1 3432 2 3433 1 3435 3 3434 3 3433 3 3436 3 3434 3 3435 3 3437 3 3436 3 3435 3 3438 3 3436 3 3437 3 3439 3 3438 3 3437 3 3440 3 3438 3 3439 3 3442 5 3441 5 3441 5 3442 5 3441 5 3442 5 3443 5 3442 5 3442 5 3444 5 3442 5 3443 5 3445 5 3444 5 3443 5 3446 5 3444 5 3445 5 3447 5 3446 5 3445 5 3448 5 3446 5 3447 5 3449 5 3448 5 3447 5 3450 5 3448 5 3449 5 3451 5 3450 5 3449 5 3452 5 3450 5 3451 5 3453 5 3452 5 3451 5 3454 5 3452 5 3453 5 3457 5 3456 5 3455 5 3458 5 3456 5 3457 5 3459 5 3458 5 3457 5 3460 5 3458 5 3459 5 3461 5 3460 5 3459 5 3462 5 3460 5 3461 5 3463 5 3462 5 3461 5 3464 5 3462 5 3463 5 3465 5 3464 5 3463 5 3466 5 3464 5 3465 5 3467 5 3466 5 3465 5 3468 5 3466 5 3467 5 3469 5 3468 5 3467 5 3470 5 3468 5 3469 5 3442 5 3441 5 3456 5 3471 5 3441 5 3442 5 3472 5 3471 5 3442 5 3473 5 3471 5 3472 5 3474 5 3473 5 3472 5 3475 5 3473 5 3474 5 3476 5 3475 5 3474 5 3477 5 3475 5 3476 5 3478 5 3477 5 3476 5 3479 5 3477 5 3478 5 3480 5 3479 5 3478 5 3481 5 3479 5 3480 5 3482 5 3481 5 3480 5 3483 5 3481 5 3482 5 3485 5 3484 5 3441 5 3486 5 3484 5 3485 5 3487 5 3486 5 3485 5 3488 5 3486 5 3487 5 3489 5 3488 5 3487 5 3490 5 3488 5 3489 5 3491 5 3490 5 3489 5 3492 5 3490 5 3491 5 3493 5 3492 5 3491 5 3494 5 3492 5 3493 5 3495 5 3494 5 3493 5 3496 5 3494 5 3495 5 3497 5 3496 5 3495 5 3498 5 3496 5 3497 5 3500 5 3456 5 3499 5 3501 5 3456 5 3500 5 3502 5 3501 5 3500 5 3503 5 3501 5 3502 5 3504 5 3503 5 3502 5 3505 5 3503 5 3504 5 3506 5 3505 5 3504 5 3507 5 3505 5 3506 5 3508 5 3507 5 3506 5 3509 5 3507 5 3508 5 3510 5 3509 5 3508 5 3511 5 3509 5 3510 5 3512 5 3511 5 3510 5 3513 5 3511 5 3512 5 3486 5 3515 5 3514 5 3516 5 3515 5 3486 5 3517 5 3516 5 3486 5 3518 5 3516 5 3517 5 3519 5 3518 5 3517 5 3520 5 3518 5 3519 5 3521 5 3520 5 3519 5 3522 5 3520 5 3521 5 3523 5 3522 5 3521 5 3524 5 3522 5 3523 5 3525 5 3524 5 3523 5 3526 5 3524 5 3525 5 3527 5 3526 5 3525 5 3528 5 3526 5 3527 5 3531 5 3530 5 3529 5 3531 5 3530 5 3531 5 3532 5 3531 5 3531 5 3533 5 3531 5 3532 5 3534 5 3533 5 3532 5 3535 5 3533 5 3534 5 3536 5 3535 5 3534 5 3537 5 3535 5 3536 5 3538 5 3537 5 3536 5 3539 5 3537 5 3538 5 3540 5 3539 5 3538 5 3541 5 3539 5 3540 5 3542 5 3541 5 3540 5 3543 5 3541 5 3542 5 3546 5 3545 5 3544 5 3547 5 3545 5 3546 5 3548 5 3547 5 3546 5 3549 5 3547 5 3548 5 3550 5 3549 5 3548 5 3551 5 3549 5 3550 5 3552 5 3551 5 3550 5 3553 5 3551 5 3552 5 3554 5 3553 5 3552 5 3555 5 3553 5 3554 5 3556 5 3555 5 3554 5 3557 5 3555 5 3556 5 3558 5 3557 5 3556 5 3559 5 3557 5 3558 5 3560 5 3544 5 3545 5 3561 5 3544 5 3560 5 3562 5 3561 5 3560 5 3563 5 3561 5 3562 5 3564 5 3563 5 3562 5 3565 5 3563 5 3564 5 3566 5 3565 5 3564 5 3567 5 3565 5 3566 5 3568 5 3567 5 3566 5 3569 5 3567 5 3568 5 3570 5 3569 5 3568 5 3571 5 3569 5 3570 5 3572 5 3571 5 3570 5 3572 5 3571 5 3572 5 3574 5 3545 5 3573 5 3575 5 3545 5 3574 5 3576 5 3575 5 3574 5 3577 5 3575 5 3576 5 3578 5 3577 5 3576 5 3579 5 3577 5 3578 5 3580 5 3579 5 3578 5 3581 5 3579 5 3580 5 3582 5 3581 5 3580 5 3583 5 3581 5 3582 5 3584 5 3583 5 3582 5 3585 5 3583 5 3584 5 3586 5 3585 5 3584 5 3587 5 3585 5 3586 5 3590 0 3589 0 3588 5 3591 0 3589 0 3590 0 3592 0 3591 0 3590 0 3593 0 3591 0 3592 0 3594 0 3593 0 3592 0 3595 0 3593 0 3594 0 3596 1 3595 2 3594 2 3597 1 3595 2 3596 1 3598 3 3597 3 3596 3 3599 3 3597 3 3598 3 3600 3 3599 3 3598 3 3601 3 3599 3 3600 3 3602 3 3601 3 3600 3 3603 3 3601 3 3602 3 3605 5 3604 5 3604 5 3605 5 3604 5 3605 5 3606 5 3605 5 3605 5 3607 5 3605 5 3606 5 3608 5 3607 5 3606 5 3609 5 3607 5 3608 5 3610 5 3609 5 3608 5 3611 5 3609 5 3610 5 3612 5 3611 5 3610 5 3613 5 3611 5 3612 5 3614 5 3613 5 3612 5 3615 5 3613 5 3614 5 3616 5 3615 5 3614 5 3617 5 3615 5 3616 5 3620 5 3619 5 3618 5 3621 5 3619 5 3620 5 3622 5 3621 5 3620 5 3623 5 3621 5 3622 5 3624 5 3623 5 3622 5 3625 5 3623 5 3624 5 3626 5 3625 5 3624 5 3627 5 3625 5 3626 5 3628 5 3627 5 3626 5 3629 5 3627 5 3628 5 3630 5 3629 5 3628 5 3631 5 3629 5 3630 5 3632 5 3631 5 3630 5 3633 5 3631 5 3632 5 3605 5 3634 5 3619 5 3635 5 3634 5 3605 5 3636 5 3635 5 3605 5 3637 5 3635 5 3636 5 3638 5 3637 5 3636 5 3639 5 3637 5 3638 5 3640 5 3639 5 3638 5 3641 5 3639 5 3640 5 3642 5 3641 5 3640 5 3643 5 3641 5 3642 5 3644 5 3643 5 3642 5 3645 5 3643 5 3644 5 3646 5 3645 5 3644 5 3647 5 3645 5 3646 5 3648 5 3618 5 3604 5 3649 5 3618 5 3648 5 3650 5 3649 5 3648 5 3651 5 3649 5 3650 5 3652 5 3651 5 3650 5 3653 5 3651 5 3652 5 3654 5 3653 5 3652 5 3655 5 3653 5 3654 5 3656 5 3655 5 3654 5 3657 5 3655 5 3656 5 3658 5 3657 5 3656 5 3659 5 3657 5 3658 5 3660 5 3659 5 3658 5 3661 5 3659 5 3660 5 3663 5 3619 5 3662 5 3664 5 3619 5 3663 5 3665 5 3664 5 3663 5 3666 5 3664 5 3665 5 3667 5 3666 5 3665 5 3668 5 3666 5 3667 5 3669 5 3668 5 3667 5 3670 5 3668 5 3669 5 3671 5 3670 5 3669 5 3672 5 3670 5 3671 5 3673 5 3672 5 3671 5 3674 5 3672 5 3673 5 3675 5 3674 5 3673 5 3676 5 3674 5 3675 5 3648 5 3678 5 3677 5 3649 5 3678 5 3648 5 3679 5 3649 5 3648 5 3680 5 3649 5 3679 5 3681 5 3680 5 3679 5 3682 5 3680 5 3681 5 3683 5 3682 5 3681 5 3684 5 3682 5 3683 5 3685 5 3684 5 3683 5 3686 5 3684 5 3685 5 3687 5 3686 5 3685 5 3688 5 3686 5 3687 5 3689 5 3688 5 3687 5 3690 5 3688 5 3689 5 3693 5 3692 5 3691 5 3694 5 3692 5 3693 5 3695 5 3694 5 3693 5 3696 5 3694 5 3695 5 3697 5 3696 5 3695 5 3698 5 3696 5 3697 5 3699 5 3698 5 3697 5 3700 5 3698 5 3699 5 3701 5 3700 5 3699 5 3702 5 3700 5 3701 5 3703 5 3702 5 3701 5 3704 5 3702 5 3703 5 3705 5 3704 5 3703 5 3706 5 3704 5 3705 5 3707 5 3691 5 3692 5 3708 5 3691 5 3707 5 3709 5 3708 5 3707 5 3710 5 3708 5 3709 5 3711 5 3710 5 3709 5 3712 5 3710 5 3711 5 3713 5 3712 5 3711 5 3714 5 3712 5 3713 5 3715 5 3714 5 3713 5 3716 5 3714 5 3715 5 3717 5 3716 5 3715 5 3718 5 3716 5 3717 5 3719 5 3718 5 3717 5 3720 5 3718 5 3719 5 3693 5 3692 5 3691 5 3721 5 3692 5 3693 5 3722 5 3721 5 3693 5 3723 5 3721 5 3722 5 3724 5 3723 5 3722 5 3725 5 3723 5 3724 5 3726 5 3725 5 3724 5 3727 5 3725 5 3726 5 3728 5 3727 5 3726 5 3728 5 3727 5 3728 5 3729 5 3728 5 3728 5 3730 5 3728 5 3729 5 3731 5 3730 5 3729 5 3732 5 3730 5 3731 5 3734 5 3691 5 3733 5 3735 5 3691 5 3734 5 3736 5 3735 5 3734 5 3737 5 3735 5 3736 5 3738 5 3737 5 3736 5 3739 5 3737 5 3738 5 3740 5 3739 5 3738 5 3741 5 3739 5 3740 5 3742 5 3741 5 3740 5 3743 5 3741 5 3742 5 3744 5 3743 5 3742 5 3745 5 3743 5 3744 5 3746 5 3745 5 3744 5 3747 5 3745 5 3746 5 3750 0 3749 0 3748 5 3751 0 3749 0 3750 0 3752 0 3751 0 3750 0 3753 0 3751 0 3752 0 3754 0 3753 0 3752 0 3755 0 3753 0 3754 0 3756 1 3755 2 3754 2 3757 1 3755 2 3756 1 3758 3 3757 3 3756 3 3759 3 3757 3 3758 3 3760 3 3759 3 3758 3 3761 3 3759 3 3760 3 3762 3 3761 3 3760 3 3763 3 3761 3 3762 3 3766 5 3765 5 3764 5 3766 5 3765 5 3766 5 3767 5 3766 5 3766 5 3768 5 3766 5 3767 5 3769 5 3768 5 3767 5 3770 5 3768 5 3769 5 3771 5 3770 5 3769 5 3772 5 3770 5 3771 5 3773 5 3772 5 3771 5 3774 5 3772 5 3773 5 3775 5 3774 5 3773 5 3776 5 3774 5 3775 5 3777 5 3776 5 3775 5 3777 5 3776 5 3777 5 3778 5 3764 5 3765 5 3779 5 3764 5 3778 5 3780 5 3779 5 3778 5 3781 5 3779 5 3780 5 3782 5 3781 5 3780 5 3783 5 3781 5 3782 5 3784 5 3783 5 3782 5 3785 5 3783 5 3784 5 3786 5 3785 5 3784 5 3787 5 3785 5 3786 5 3788 5 3787 5 3786 5 3789 5 3787 5 3788 5 3790 5 3789 5 3788 5 3791 5 3789 5 3790 5 3766 5 3765 5 3792 5 3793 5 3765 5 3766 5 3794 5 3793 5 3766 5 3795 5 3793 5 3794 5 3796 5 3795 5 3794 5 3797 5 3795 5 3796 5 3798 5 3797 5 3796 5 3799 5 3797 5 3798 5 3800 5 3799 5 3798 5 3800 5 3799 5 3800 5 3801 5 3800 5 3800 5 3802 5 3800 5 3801 5 3803 5 3802 5 3801 5 3803 5 3802 5 3803 5 3805 5 3804 5 3765 5 3806 5 3804 5 3805 5 3807 5 3806 5 3805 5 3808 5 3806 5 3807 5 3809 5 3808 5 3807 5 3810 5 3808 5 3809 5 3811 5 3810 5 3809 5 3812 5 3810 5 3811 5 3813 5 3812 5 3811 5 3814 5 3812 5 3813 5 3815 5 3814 5 3813 5 3816 5 3814 5 3815 5 3817 5 3816 5 3815 5 3818 5 3816 5 3817 5 3820 5 3764 5 3819 5 3821 5 3764 5 3820 5 3822 5 3821 5 3820 5 3823 5 3821 5 3822 5 3824 5 3823 5 3822 5 3825 5 3823 5 3824 5 3826 5 3825 5 3824 5 3827 5 3825 5 3826 5 3828 5 3827 5 3826 5 3829 5 3827 5 3828 5 3830 5 3829 5 3828 5 3831 5 3829 5 3830 5 3832 5 3831 5 3830 5 3833 5 3831 5 3832 5 3805 5 3834 5 3764 5 3835 5 3834 5 3805 5 3836 5 3835 5 3805 5 3837 5 3835 5 3836 5 3838 5 3837 5 3836 5 3839 5 3837 5 3838 5 3840 5 3839 5 3838 5 3841 5 3839 5 3840 5 3842 5 3841 5 3840 5 3843 5 3841 5 3842 5 3844 5 3843 5 3842 5 3845 5 3843 5 3844 5 3846 5 3845 5 3844 5 3847 5 3845 5 3846 5 3849 5 3848 5 3848 5 3849 5 3848 5 3849 5 3850 5 3849 5 3849 5 3851 5 3849 5 3850 5 3852 5 3851 5 3850 5 3853 5 3851 5 3852 5 3854 5 3853 5 3852 5 3855 5 3853 5 3854 5 3856 5 3855 5 3854 5 3857 5 3855 5 3856 5 3858 5 3857 5 3856 5 3859 5 3857 5 3858 5 3860 5 3859 5 3858 5 3861 5 3859 5 3860 5 3864 5 3863 5 3862 5 3865 5 3863 5 3864 5 3866 5 3865 5 3864 5 3867 5 3865 5 3866 5 3868 5 3867 5 3866 5 3869 5 3867 5 3868 5 3870 5 3869 5 3868 5 3871 5 3869 5 3870 5 3872 5 3871 5 3870 5 3873 5 3871 5 3872 5 3874 5 3873 5 3872 5 3875 5 3873 5 3874 5 3876 5 3875 5 3874 5 3877 5 3875 5 3876 5 3849 5 3862 5 3863 5 3878 5 3862 5 3849 5 3879 5 3878 5 3849 5 3880 5 3878 5 3879 5 3881 5 3880 5 3879 5 3882 5 3880 5 3881 5 3883 5 3882 5 3881 5 3884 5 3882 5 3883 5 3885 5 3884 5 3883 5 3886 5 3884 5 3885 5 3887 5 3886 5 3885 5 3888 5 3886 5 3887 5 3889 5 3888 5 3887 5 3890 5 3888 5 3889 5 3892 5 3863 5 3891 5 3893 5 3863 5 3892 5 3894 5 3893 5 3892 5 3895 5 3893 5 3894 5 3896 5 3895 5 3894 5 3897 5 3895 5 3896 5 3898 5 3897 5 3896 5 3899 5 3897 5 3898 5 3900 5 3899 5 3898 5 3901 5 3899 5 3900 5 3902 5 3901 5 3900 5 3903 5 3901 5 3902 5 3904 5 3903 5 3902 5 3905 5 3903 5 3904 5 3908 0 3907 0 3906 5 3909 0 3907 0 3908 0 3910 0 3909 0 3908 0 3911 0 3909 0 3910 0 3912 0 3911 0 3910 0 3913 0 3911 0 3912 0 3914 1 3913 2 3912 2 3915 1 3913 2 3914 1 3916 3 3915 3 3914 3 3917 3 3915 3 3916 3 3918 3 3917 3 3916 3 3919 3 3917 3 3918 3 3920 3 3919 3 3918 3 3921 3 3919 3 3920 3 3924 5 3923 5 3922 5 3924 5 3923 5 3924 5 3925 5 3924 5 3924 5 3926 5 3924 5 3925 5 3927 5 3926 5 3925 5 3928 5 3926 5 3927 5 3929 5 3928 5 3927 5 3930 5 3928 5 3929 5 3931 5 3930 5 3929 5 3932 5 3930 5 3931 5 3933 5 3932 5 3931 5 3934 5 3932 5 3933 5 3935 5 3934 5 3933 5 3936 5 3934 5 3935 5 3937 5 3922 5 3923 5 3938 5 3922 5 3937 5 3939 5 3938 5 3937 5 3940 5 3938 5 3939 5 3941 5 3940 5 3939 5 3942 5 3940 5 3941 5 3943 5 3942 5 3941 5 3944 5 3942 5 3943 5 3945 5 3944 5 3943 5 3946 5 3944 5 3945 5 3947 5 3946 5 3945 5 3948 5 3946 5 3947 5 3949 5 3948 5 3947 5 3950 5 3948 5 3949 5 3924 5 3951 5 3922 5 3952 5 3951 5 3924 5 3953 5 3952 5 3924 5 3953 5 3952 5 3953 5 3954 5 3953 5 3953 5 3955 5 3953 5 3954 5 3956 5 3955 5 3954 5 3957 5 3955 5 3956 5 3958 5 3957 5 3956 5 3959 5 3957 5 3958 5 3960 5 3959 5 3958 5 3961 5 3959 5 3960 5 3962 5 3961 5 3960 5 3963 5 3961 5 3962 5 3965 5 3964 5 3923 5 3966 5 3964 5 3965 5 3967 5 3966 5 3965 5 3968 5 3966 5 3967 5 3969 5 3968 5 3967 5 3970 5 3968 5 3969 5 3971 5 3970 5 3969 5 3972 5 3970 5 3971 5 3973 5 3972 5 3971 5 3974 5 3972 5 3973 5 3975 5 3974 5 3973 5 3976 5 3974 5 3975 5 3977 5 3976 5 3975 5 3978 5 3976 5 3977 5 3980 5 3922 5 3979 5 3981 5 3922 5 3980 5 3982 5 3981 5 3980 5 3983 5 3981 5 3982 5 3984 5 3983 5 3982 5 3985 5 3983 5 3984 5 3986 5 3985 5 3984 5 3987 5 3985 5 3986 5 3988 5 3987 5 3986 5 3989 5 3987 5 3988 5 3990 5 3989 5 3988 5 3991 5 3989 5 3990 5 3992 5 3991 5 3990 5 3993 5 3991 5 3992 5 3965 5 3994 5 3923 5 3995 5 3994 5 3965 5 3996 5 3995 5 3965 5 3997 5 3995 5 3996 5 3998 5 3997 5 3996 5 3999 5 3997 5 3998 5 4000 5 3999 5 3998 5 4001 5 3999 5 4000 5 4002 5 4001 5 4000 5 4003 5 4001 5 4002 5 4004 5 4003 5 4002 5 4005 5 4003 5 4004 5 4006 5 4005 5 4004 5 4007 5 4005 5 4006 5 4010 5 4009 5 4008 5 4011 5 4009 5 4010 5 4012 5 4011 5 4010 5 4013 5 4011 5 4012 5 4014 5 4013 5 4012 5 4015 5 4013 5 4014 5 4016 5 4015 5 4014 5 4017 5 4015 5 4016 5 4018 5 4017 5 4016 5 4019 5 4017 5 4018 5 4020 5 4019 5 4018 5 4021 5 4019 5 4020 5 4022 5 4021 5 4020 5 4023 5 4021 5 4022 5 4026 5 4025 5 4024 5 4027 5 4025 5 4026 5 4028 5 4027 5 4026 5 4029 5 4027 5 4028 5 4030 5 4029 5 4028 5 4031 5 4029 5 4030 5 4032 5 4031 5 4030 5 4033 5 4031 5 4032 5 4034 5 4033 5 4032 5 4035 5 4033 5 4034 5 4036 5 4035 5 4034 5 4037 5 4035 5 4036 5 4038 5 4037 5 4036 5 4039 5 4037 5 4038 5 4010 5 4009 5 4008 5 4040 5 4009 5 4010 5 4041 5 4040 5 4010 5 4042 5 4040 5 4041 5 4043 5 4042 5 4041 5 4044 5 4042 5 4043 5 4045 5 4044 5 4043 5 4046 5 4044 5 4045 5 4047 5 4046 5 4045 5 4048 5 4046 5 4047 5 4049 5 4048 5 4047 5 4050 5 4048 5 4049 5 4051 5 4050 5 4049 5 4052 5 4050 5 4051 5 4054 5 4025 5 4053 5 4055 5 4025 5 4054 5 4056 5 4055 5 4054 5 4057 5 4055 5 4056 5 4058 5 4057 5 4056 5 4059 5 4057 5 4058 5 4060 5 4059 5 4058 5 4061 5 4059 5 4060 5 4062 5 4061 5 4060 5 4063 5 4061 5 4062 5 4064 5 4063 5 4062 5 4065 5 4063 5 4064 5 4066 5 4065 5 4064 5 4067 5 4065 5 4066 5 4069 0 4068 0 4008 5 4070 0 4068 0 4069 0 4071 0 4070 0 4069 0 4072 0 4070 0 4071 0 4073 0 4072 0 4071 0 4074 0 4072 0 4073 0 4075 1 4074 2 4073 2 4076 1 4074 2 4075 1 4077 3 4076 3 4075 3 4078 3 4076 3 4077 3 4079 3 4078 3 4077 3 4080 3 4078 3 4079 3 4081 3 4080 3 4079 3 4082 3 4080 3 4081 3 4084 5 4083 5 4083 5 4085 5 4083 5 4084 5 4086 5 4085 5 4084 5 4087 5 4085 5 4086 5 4088 5 4087 5 4086 5 4089 5 4087 5 4088 5 4090 5 4089 5 4088 5 4091 5 4089 5 4090 5 4092 5 4091 5 4090 5 4093 5 4091 5 4092 5 4094 5 4093 5 4092 5 4095 5 4093 5 4094 5 4096 5 4095 5 4094 5 4097 5 4095 5 4096 5 4100 5 4099 5 4098 5 4101 5 4099 5 4100 5 4102 5 4101 5 4100 5 4103 5 4101 5 4102 5 4104 5 4103 5 4102 5 4105 5 4103 5 4104 5 4106 5 4105 5 4104 5 4107 5 4105 5 4106 5 4108 5 4107 5 4106 5 4109 5 4107 5 4108 5 4110 5 4109 5 4108 5 4110 5 4109 5 4110 5 4111 5 4110 5 4110 5 4112 5 4110 5 4111 5 4084 5 4083 5 4099 5 4113 5 4083 5 4084 5 4114 5 4113 5 4084 5 4115 5 4113 5 4114 5 4116 5 4115 5 4114 5 4117 5 4115 5 4116 5 4118 5 4117 5 4116 5 4119 5 4117 5 4118 5 4120 5 4119 5 4118 5 4121 5 4119 5 4120 5 4122 5 4121 5 4120 5 4123 5 4121 5 4122 5 4124 5 4123 5 4122 5 4125 5 4123 5 4124 5 4127 5 4098 5 4126 5 4128 5 4098 5 4127 5 4129 5 4128 5 4127 5 4130 5 4128 5 4129 5 4131 5 4130 5 4129 5 4132 5 4130 5 4131 5 4133 5 4132 5 4131 5 4134 5 4132 5 4133 5 4135 5 4134 5 4133 5 4136 5 4134 5 4135 5 4137 5 4136 5 4135 5 4138 5 4136 5 4137 5 4139 5 4138 5 4137 5 4140 5 4138 5 4139 5 4142 5 4099 5 4141 5 4143 5 4099 5 4142 5 4144 5 4143 5 4142 5 4145 5 4143 5 4144 5 4146 5 4145 5 4144 5 4147 5 4145 5 4146 5 4148 5 4147 5 4146 5 4149 5 4147 5 4148 5 4150 5 4149 5 4148 5 4151 5 4149 5 4150 5 4152 5 4151 5 4150 5 4153 5 4151 5 4152 5 4154 5 4153 5 4152 5 4155 5 4153 5 4154 5 4156 5 4098 5 4126 5 4157 5 4098 5 4156 5 4158 5 4157 5 4156 5 4159 5 4157 5 4158 5 4160 5 4159 5 4158 5 4161 5 4159 5 4160 5 4162 5 4161 5 4160 5 4163 5 4161 5 4162 5 4164 5 4163 5 4162 5 4165 5 4163 5 4164 5 4166 5 4165 5 4164 5 4167 5 4165 5 4166 5 4168 5 4167 5 4166 5 4169 5 4167 5 4168 5 4171 5 4170 5 4170 5 4172 5 4170 5 4171 5 4173 5 4172 5 4171 5 4174 5 4172 5 4173 5 4175 5 4174 5 4173 5 4176 5 4174 5 4175 5 4177 5 4176 5 4175 5 4178 5 4176 5 4177 5 4179 5 4178 5 4177 5 4180 5 4178 5 4179 5 4181 5 4180 5 4179 5 4182 5 4180 5 4181 5 4183 5 4182 5 4181 5 4183 5 4182 5 4183 5 4171 5 4185 5 4184 5 4186 5 4185 5 4171 5 4187 5 4186 5 4171 5 4188 5 4186 5 4187 5 4189 5 4188 5 4187 5 4190 5 4188 5 4189 5 4191 5 4190 5 4189 5 4192 5 4190 5 4191 5 4193 5 4192 5 4191 5 4194 5 4192 5 4193 5 4195 5 4194 5 4193 5 4195 5 4194 5 4195 5 4196 5 4195 5 4195 5 4196 5 4195 5 4196 5 4199 5 4198 5 4197 5 4200 5 4198 5 4199 5 4201 5 4200 5 4199 5 4201 5 4200 5 4201 5 4202 5 4201 5 4201 5 4203 5 4201 5 4202 5 4204 5 4203 5 4202 5 4205 5 4203 5 4204 5 4206 5 4205 5 4204 5 4207 5 4205 5 4206 5 4208 5 4207 5 4206 5 4209 5 4207 5 4208 5 4210 5 4209 5 4208 5 4211 5 4209 5 4210 5 4213 5 4197 5 4212 5 4214 5 4197 5 4213 5 4215 5 4214 5 4213 5 4216 5 4214 5 4215 5 4217 5 4216 5 4215 5 4218 5 4216 5 4217 5 4219 5 4218 5 4217 5 4220 5 4218 5 4219 5 4221 5 4220 5 4219 5 4222 5 4220 5 4221 5 4223 5 4222 5 4221 5 4224 5 4222 5 4223 5 4225 5 4224 5 4223 5 4226 5 4224 5 4225 5 4228 0 4227 0 4170 5 4229 0 4227 0 4228 0 4230 0 4229 0 4228 0 4231 0 4229 0 4230 0 4232 0 4231 0 4230 0 4233 0 4231 0 4232 0 4234 1 4233 2 4232 2 4235 1 4233 2 4234 1 4236 3 4235 3 4234 3 4237 3 4235 3 4236 3 4238 3 4237 3 4236 3 4239 3 4237 3 4238 3 4240 3 4239 3 4238 3 4241 3 4239 3 4240 3 4244 5 4243 5 4242 5 4244 5 4243 5 4244 5 4245 5 4244 5 4244 5 4246 5 4244 5 4245 5 4247 5 4246 5 4245 5 4248 5 4246 5 4247 5 4249 5 4248 5 4247 5 4250 5 4248 5 4249 5 4251 5 4250 5 4249 5 4252 5 4250 5 4251 5 4253 5 4252 5 4251 5 4254 5 4252 5 4253 5 4255 5 4254 5 4253 5 4256 5 4254 5 4255 5 4259 5 4258 5 4257 5 4260 5 4258 5 4259 5 4261 5 4260 5 4259 5 4262 5 4260 5 4261 5 4263 5 4262 5 4261 5 4264 5 4262 5 4263 5 4265 5 4264 5 4263 5 4265 5 4264 5 4265 5 4266 5 4265 5 4265 5 4266 5 4265 5 4266 5 4267 5 4266 5 4266 5 4268 5 4266 5 4267 5 4269 5 4268 5 4267 5 4270 5 4268 5 4269 5 4244 5 4243 5 4271 5 4272 5 4243 5 4244 5 4273 5 4272 5 4244 5 4274 5 4272 5 4273 5 4275 5 4274 5 4273 5 4276 5 4274 5 4275 5 4277 5 4276 5 4275 5 4278 5 4276 5 4277 5 4279 5 4278 5 4277 5 4279 5 4278 5 4279 5 4280 5 4279 5 4279 5 4281 5 4279 5 4280 5 4282 5 4281 5 4280 5 4283 5 4281 5 4282 5 4286 5 4285 5 4284 5 4287 5 4285 5 4286 5 4288 5 4287 5 4286 5 4289 5 4287 5 4288 5 4290 5 4289 5 4288 5 4291 5 4289 5 4290 5 4292 5 4291 5 4290 5 4293 5 4291 5 4292 5 4294 5 4293 5 4292 5 4295 5 4293 5 4294 5 4296 5 4295 5 4294 5 4297 5 4295 5 4296 5 4298 5 4297 5 4296 5 4299 5 4297 5 4298 5 4301 5 4258 5 4300 5 4302 5 4258 5 4301 5 4303 5 4302 5 4301 5 4304 5 4302 5 4303 5 4305 5 4304 5 4303 5 4306 5 4304 5 4305 5 4307 5 4306 5 4305 5 4308 5 4306 5 4307 5 4309 5 4308 5 4307 5 4310 5 4308 5 4309 5 4311 5 4310 5 4309 5 4312 5 4310 5 4311 5 4313 5 4312 5 4311 5 4314 5 4312 5 4313 5 4286 5 4315 5 4257 5 4316 5 4315 5 4286 5 4317 5 4316 5 4286 5 4318 5 4316 5 4317 5 4319 5 4318 5 4317 5 4320 5 4318 5 4319 5 4321 5 4320 5 4319 5 4322 5 4320 5 4321 5 4323 5 4322 5 4321 5 4324 5 4322 5 4323 5 4325 5 4324 5 4323 5 4326 5 4324 5 4325 5 4327 5 4326 5 4325 5 4328 5 4326 5 4327 5 4330 5 4329 5 4329 5 4331 5 4329 5 4330 5 4332 5 4331 5 4330 5 4333 5 4331 5 4332 5 4334 5 4333 5 4332 5 4335 5 4333 5 4334 5 4336 5 4335 5 4334 5 4337 5 4335 5 4336 5 4338 5 4337 5 4336 5 4339 5 4337 5 4338 5 4340 5 4339 5 4338 5 4341 5 4339 5 4340 5 4342 5 4341 5 4340 5 4343 5 4341 5 4342 5 4330 5 4345 5 4344 5 4346 5 4345 5 4330 5 4347 5 4346 5 4330 5 4348 5 4346 5 4347 5 4349 5 4348 5 4347 5 4350 5 4348 5 4349 5 4351 5 4350 5 4349 5 4352 5 4350 5 4351 5 4353 5 4352 5 4351 5 4354 5 4352 5 4353 5 4355 5 4354 5 4353 5 4356 5 4354 5 4355 5 4357 5 4356 5 4355 5 4358 5 4356 5 4357 5 4361 5 4360 5 4359 5 4362 5 4360 5 4361 5 4363 5 4362 5 4361 5 4364 5 4362 5 4363 5 4365 5 4364 5 4363 5 4366 5 4364 5 4365 5 4367 5 4366 5 4365 5 4368 5 4366 5 4367 5 4369 5 4368 5 4367 5 4370 5 4368 5 4369 5 4371 5 4370 5 4369 5 4372 5 4370 5 4371 5 4373 5 4372 5 4371 5 4374 5 4372 5 4373 5 4376 5 4345 5 4375 5 4377 5 4345 5 4376 5 4378 5 4377 5 4376 5 4379 5 4377 5 4378 5 4380 5 4379 5 4378 5 4381 5 4379 5 4380 5 4382 5 4381 5 4380 5 4383 5 4381 5 4382 5 4384 5 4383 5 4382 5 4385 5 4383 5 4384 5 4386 5 4385 5 4384 5 4387 5 4385 5 4386 5 4388 5 4387 5 4386 5 4389 5 4387 5 4388 5 4392 0 4391 0 4390 5 4393 0 4391 0 4392 0 4394 0 4393 0 4392 0 4395 0 4393 0 4394 0 4396 0 4395 0 4394 0 4397 0 4395 0 4396 0 4398 1 4397 2 4396 2 4399 1 4397 2 4398 1 4400 3 4399 3 4398 3 4401 3 4399 3 4400 3 4402 3 4401 3 4400 3 4403 3 4401 3 4402 3 4404 3 4403 3 4402 3 4405 3 4403 3 4404 3 4407 5 4406 5 4406 5 4408 5 4406 5 4407 5 4409 5 4408 5 4407 5 4410 5 4408 5 4409 5 4411 5 4410 5 4409 5 4412 5 4410 5 4411 5 4413 5 4412 5 4411 5 4414 5 4412 5 4413 5 4415 5 4414 5 4413 5 4416 5 4414 5 4415 5 4417 5 4416 5 4415 5 4418 5 4416 5 4417 5 4419 5 4418 5 4417 5 4420 5 4418 5 4419 5 4423 5 4422 5 4421 5 4424 5 4422 5 4423 5 4425 5 4424 5 4423 5 4426 5 4424 5 4425 5 4427 5 4426 5 4425 5 4428 5 4426 5 4427 5 4429 5 4428 5 4427 5 4430 5 4428 5 4429 5 4431 5 4430 5 4429 5 4432 5 4430 5 4431 5 4433 5 4432 5 4431 5 4434 5 4432 5 4433 5 4435 5 4434 5 4433 5 4436 5 4434 5 4435 5 4408 5 4437 5 4422 5 4438 5 4437 5 4408 5 4439 5 4438 5 4408 5 4440 5 4438 5 4439 5 4441 5 4440 5 4439 5 4442 5 4440 5 4441 5 4443 5 4442 5 4441 5 4444 5 4442 5 4443 5 4445 5 4444 5 4443 5 4446 5 4444 5 4445 5 4447 5 4446 5 4445 5 4448 5 4446 5 4447 5 4449 5 4448 5 4447 5 4450 5 4448 5 4449 5 4452 5 4421 5 4451 5 4453 5 4421 5 4452 5 4454 5 4453 5 4452 5 4455 5 4453 5 4454 5 4456 5 4455 5 4454 5 4457 5 4455 5 4456 5 4458 5 4457 5 4456 5 4459 5 4457 5 4458 5 4460 5 4459 5 4458 5 4461 5 4459 5 4460 5 4462 5 4461 5 4460 5 4463 5 4461 5 4462 5 4464 5 4463 5 4462 5 4465 5 4463 5 4464 5 4467 5 4422 5 4466 5 4468 5 4422 5 4467 5 4469 5 4468 5 4467 5 4470 5 4468 5 4469 5 4471 5 4470 5 4469 5 4472 5 4470 5 4471 5 4473 5 4472 5 4471 5 4474 5 4472 5 4473 5 4475 5 4474 5 4473 5 4476 5 4474 5 4475 5 4477 5 4476 5 4475 5 4478 5 4476 5 4477 5 4479 5 4478 5 4477 5 4480 5 4478 5 4479 5 4483 5 4482 5 4481 5 4453 5 4482 5 4483 5 4484 5 4453 5 4483 5 4485 5 4453 5 4484 5 4486 5 4485 5 4484 5 4487 5 4485 5 4486 5 4488 5 4487 5 4486 5 4489 5 4487 5 4488 5 4490 5 4489 5 4488 5 4491 5 4489 5 4490 5 4492 5 4491 5 4490 5 4493 5 4491 5 4492 5 4494 5 4493 5 4492 5 4495 5 4493 5 4494 5 4498 5 4497 5 4496 5 4498 5 4497 5 4498 5 4499 5 4498 5 4498 5 4500 5 4498 5 4499 5 4501 5 4500 5 4499 5 4502 5 4500 5 4501 5 4503 5 4502 5 4501 5 4504 5 4502 5 4503 5 4505 5 4504 5 4503 5 4506 5 4504 5 4505 5 4507 5 4506 5 4505 5 4508 5 4506 5 4507 5 4509 5 4508 5 4507 5 4510 5 4508 5 4509 5 4513 5 4512 5 4511 5 4514 5 4512 5 4513 5 4515 5 4514 5 4513 5 4516 5 4514 5 4515 5 4517 5 4516 5 4515 5 4518 5 4516 5 4517 5 4519 5 4518 5 4517 5 4520 5 4518 5 4519 5 4521 5 4520 5 4519 5 4522 5 4520 5 4521 5 4523 5 4522 5 4521 5 4523 5 4522 5 4523 5 4524 5 4523 5 4523 5 4524 5 4523 5 4524 5 4498 5 4525 5 4496 5 4526 5 4525 5 4498 5 4527 5 4526 5 4498 5 4528 5 4526 5 4527 5 4529 5 4528 5 4527 5 4530 5 4528 5 4529 5 4531 5 4530 5 4529 5 4532 5 4530 5 4531 5 4533 5 4532 5 4531 5 4534 5 4532 5 4533 5 4535 5 4534 5 4533 5 4536 5 4534 5 4535 5 4537 5 4536 5 4535 5 4538 5 4536 5 4537 5 4540 5 4496 5 4539 5 4541 5 4496 5 4540 5 4542 5 4541 5 4540 5 4543 5 4541 5 4542 5 4544 5 4543 5 4542 5 4545 5 4543 5 4544 5 4546 5 4545 5 4544 5 4547 5 4545 5 4546 5 4548 5 4547 5 4546 5 4549 5 4547 5 4548 5 4550 5 4549 5 4548 5 4551 5 4549 5 4550 5 4552 5 4551 5 4550 5 4553 5 4551 5 4552 5 4555 0 4554 0 4496 5 4556 0 4554 0 4555 0 4557 0 4556 0 4555 0 4558 0 4556 0 4557 0 4559 0 4558 0 4557 0 4560 0 4558 0 4559 0 4561 1 4560 2 4559 2 4562 1 4560 2 4561 1 4563 3 4562 3 4561 3 4564 3 4562 3 4563 3 4565 3 4564 3 4563 3 4566 3 4564 3 4565 3 4567 3 4566 3 4565 3 4568 3 4566 3 4567 3 4571 5 4570 5 4569 5 4571 5 4570 5 4571 5 4572 5 4571 5 4571 5 4573 5 4571 5 4572 5 4574 5 4573 5 4572 5 4575 5 4573 5 4574 5 4576 5 4575 5 4574 5 4577 5 4575 5 4576 5 4578 5 4577 5 4576 5 4579 5 4577 5 4578 5 4580 5 4579 5 4578 5 4581 5 4579 5 4580 5 4582 5 4581 5 4580 5 4583 5 4581 5 4582 5 4586 5 4585 5 4584 5 4587 5 4585 5 4586 5 4588 5 4587 5 4586 5 4589 5 4587 5 4588 5 4590 5 4589 5 4588 5 4591 5 4589 5 4590 5 4592 5 4591 5 4590 5 4593 5 4591 5 4592 5 4594 5 4593 5 4592 5 4595 5 4593 5 4594 5 4596 5 4595 5 4594 5 4597 5 4595 5 4596 5 4598 5 4597 5 4596 5 4599 5 4597 5 4598 5 4571 5 4601 5 4600 5 4602 5 4601 5 4571 5 4603 5 4602 5 4571 5 4604 5 4602 5 4603 5 4605 5 4604 5 4603 5 4606 5 4604 5 4605 5 4607 5 4606 5 4605 5 4607 5 4606 5 4607 5 4608 5 4607 5 4607 5 4609 5 4607 5 4608 5 4610 5 4609 5 4608 5 4611 5 4609 5 4610 5 4612 5 4611 5 4610 5 4613 5 4611 5 4612 5 4616 5 4615 5 4614 5 4617 5 4615 5 4616 5 4618 5 4617 5 4616 5 4619 5 4617 5 4618 5 4620 5 4619 5 4618 5 4621 5 4619 5 4620 5 4622 5 4621 5 4620 5 4623 5 4621 5 4622 5 4624 5 4623 5 4622 5 4625 5 4623 5 4624 5 4626 5 4625 5 4624 5 4627 5 4625 5 4626 5 4628 5 4627 5 4626 5 4629 5 4627 5 4628 5 4631 5 4570 5 4630 5 4632 5 4570 5 4631 5 4633 5 4632 5 4631 5 4634 5 4632 5 4633 5 4635 5 4634 5 4633 5 4636 5 4634 5 4635 5 4637 5 4636 5 4635 5 4638 5 4636 5 4637 5 4639 5 4638 5 4637 5 4640 5 4638 5 4639 5 4641 5 4640 5 4639 5 4642 5 4640 5 4641 5 4643 5 4642 5 4641 5 4644 5 4642 5 4643 5 4616 5 4645 5 4569 5 4646 5 4645 5 4616 5 4647 5 4646 5 4616 5 4648 5 4646 5 4647 5 4649 5 4648 5 4647 5 4650 5 4648 5 4649 5 4651 5 4650 5 4649 5 4652 5 4650 5 4651 5 4653 5 4652 5 4651 5 4654 5 4652 5 4653 5 4655 5 4654 5 4653 5 4656 5 4654 5 4655 5 4657 5 4656 5 4655 5 4658 5 4656 5 4657 5 4660 5 4659 5 4659 5 4661 5 4659 5 4660 5 4662 5 4661 5 4660 5 4663 5 4661 5 4662 5 4664 5 4663 5 4662 5 4665 5 4663 5 4664 5 4666 5 4665 5 4664 5 4667 5 4665 5 4666 5 4668 5 4667 5 4666 5 4669 5 4667 5 4668 5 4670 5 4669 5 4668 5 4671 5 4669 5 4670 5 4672 5 4671 5 4670 5 4673 5 4671 5 4672 5 4676 5 4675 5 4674 5 4677 5 4675 5 4676 5 4678 5 4677 5 4676 5 4679 5 4677 5 4678 5 4680 5 4679 5 4678 5 4681 5 4679 5 4680 5 4682 5 4681 5 4680 5 4683 5 4681 5 4682 5 4684 5 4683 5 4682 5 4685 5 4683 5 4684 5 4686 5 4685 5 4684 5 4687 5 4685 5 4686 5 4688 5 4687 5 4686 5 4689 5 4687 5 4688 5 4691 5 4674 5 4690 5 4692 5 4674 5 4691 5 4693 5 4692 5 4691 5 4694 5 4692 5 4693 5 4695 5 4694 5 4693 5 4696 5 4694 5 4695 5 4697 5 4696 5 4695 5 4698 5 4696 5 4697 5 4699 5 4698 5 4697 5 4699 5 4698 5 4699 5 4700 5 4699 5 4699 5 4700 5 4699 5 4700 5 4701 5 4700 5 4700 5 4702 5 4700 5 4701 5 4704 5 4659 5 4703 5 4705 5 4659 5 4704 5 4706 5 4705 5 4704 5 4707 5 4705 5 4706 5 4708 5 4707 5 4706 5 4709 5 4707 5 4708 5 4710 5 4709 5 4708 5 4711 5 4709 5 4710 5 4712 5 4711 5 4710 5 4713 5 4711 5 4712 5 4714 5 4713 5 4712 5 4715 5 4713 5 4714 5 4716 5 4715 5 4714 5 4717 5 4715 5 4716 5 4719 0 4718 0 4690 5 4720 0 4718 0 4719 0 4721 0 4720 0 4719 0 4722 0 4720 0 4721 0 4723 0 4722 0 4721 0 4724 0 4722 0 4723 0 4725 1 4724 2 4723 2 4726 1 4724 2 4725 1 4727 3 4726 3 4725 3 4728 3 4726 3 4727 3 4729 3 4728 3 4727 3 4730 3 4728 3 4729 3 4731 3 4730 3 4729 3 4732 3 4730 3 4731 3 4735 5 4734 5 4733 5 4735 5 4734 5 4735 5 4736 5 4735 5 4735 5 4737 5 4735 5 4736 5 4738 5 4737 5 4736 5 4739 5 4737 5 4738 5 4740 5 4739 5 4738 5 4741 5 4739 5 4740 5 4742 5 4741 5 4740 5 4743 5 4741 5 4742 5 4744 5 4743 5 4742 5 4744 5 4743 5 4744 5 4745 5 4744 5 4744 5 4746 5 4744 5 4745 5 4749 5 4748 5 4747 5 4750 5 4748 5 4749 5 4751 5 4750 5 4749 5 4752 5 4750 5 4751 5 4753 5 4752 5 4751 5 4754 5 4752 5 4753 5 4755 5 4754 5 4753 5 4756 5 4754 5 4755 5 4757 5 4756 5 4755 5 4758 5 4756 5 4757 5 4759 5 4758 5 4757 5 4759 5 4758 5 4759 5 4760 5 4759 5 4759 5 4761 5 4759 5 4760 5 4735 5 4762 5 4733 5 4763 5 4762 5 4735 5 4764 5 4763 5 4735 5 4765 5 4763 5 4764 5 4766 5 4765 5 4764 5 4767 5 4765 5 4766 5 4768 5 4767 5 4766 5 4769 5 4767 5 4768 5 4770 5 4769 5 4768 5 4771 5 4769 5 4770 5 4772 5 4771 5 4770 5 4773 5 4771 5 4772 5 4774 5 4773 5 4772 5 4775 5 4773 5 4774 5 4777 5 4747 5 4776 5 4778 5 4747 5 4777 5 4779 5 4778 5 4777 5 4780 5 4778 5 4779 5 4781 5 4780 5 4779 5 4782 5 4780 5 4781 5 4783 5 4782 5 4781 5 4784 5 4782 5 4783 5 4785 5 4784 5 4783 5 4786 5 4784 5 4785 5 4787 5 4786 5 4785 5 4788 5 4786 5 4787 5 4789 5 4788 5 4787 5 4790 5 4788 5 4789 5 4792 5 4748 5 4791 5 4793 5 4748 5 4792 5 4794 5 4793 5 4792 5 4795 5 4793 5 4794 5 4796 5 4795 5 4794 5 4797 5 4795 5 4796 5 4798 5 4797 5 4796 5 4799 5 4797 5 4798 5 4800 5 4799 5 4798 5 4801 5 4799 5 4800 5 4802 5 4801 5 4800 5 4803 5 4801 5 4802 5 4804 5 4803 5 4802 5 4805 5 4803 5 4804 5 4777 5 4791 5 4733 5 4806 5 4791 5 4777 5 4807 5 4806 5 4777 5 4808 5 4806 5 4807 5 4809 5 4808 5 4807 5 4810 5 4808 5 4809 5 4811 5 4810 5 4809 5 4812 5 4810 5 4811 5 4813 5 4812 5 4811 5 4814 5 4812 5 4813 5 4815 5 4814 5 4813 5 4816 5 4814 5 4815 5 4817 5 4816 5 4815 5 4818 5 4816 5 4817 5 4820 5 4819 5 4819 5 4820 5 4819 5 4820 5 4821 5 4820 5 4820 5 4822 5 4820 5 4821 5 4823 5 4822 5 4821 5 4824 5 4822 5 4823 5 4825 5 4824 5 4823 5 4826 5 4824 5 4825 5 4827 5 4826 5 4825 5 4828 5 4826 5 4827 5 4829 5 4828 5 4827 5 4830 5 4828 5 4829 5 4831 5 4830 5 4829 5 4832 5 4830 5 4831 5 4835 5 4834 5 4833 5 4836 5 4834 5 4835 5 4837 5 4836 5 4835 5 4838 5 4836 5 4837 5 4839 5 4838 5 4837 5 4840 5 4838 5 4839 5 4841 5 4840 5 4839 5 4842 5 4840 5 4841 5 4843 5 4842 5 4841 5 4844 5 4842 5 4843 5 4845 5 4844 5 4843 5 4846 5 4844 5 4845 5 4847 5 4846 5 4845 5 4848 5 4846 5 4847 5 4850 5 4849 5 4819 5 4851 5 4849 5 4850 5 4852 5 4851 5 4850 5 4853 5 4851 5 4852 5 4854 5 4853 5 4852 5 4855 5 4853 5 4854 5 4856 5 4855 5 4854 5 4857 5 4855 5 4856 5 4858 5 4857 5 4856 5 4859 5 4857 5 4858 5 4860 5 4859 5 4858 5 4861 5 4859 5 4860 5 4862 5 4861 5 4860 5 4863 5 4861 5 4862 5 4865 5 4834 5 4864 5 4866 5 4834 5 4865 5 4867 5 4866 5 4865 5 4868 5 4866 5 4867 5 4869 5 4868 5 4867 5 4870 5 4868 5 4869 5 4871 5 4870 5 4869 5 4872 5 4870 5 4871 5 4873 5 4872 5 4871 5 4874 5 4872 5 4873 5 4875 5 4874 5 4873 5 4876 5 4874 5 4875 5 4877 5 4876 5 4875 5 4878 5 4876 5 4877 5 4880 0 4879 0 4819 5 4881 0 4879 0 4880 0 4882 0 4881 0 4880 0 4883 0 4881 0 4882 0 4884 0 4883 0 4882 0 4885 0 4883 0 4884 0 4886 1 4885 2 4884 2 4887 1 4885 2 4886 1 4888 3 4887 3 4886 3 4889 3 4887 3 4888 3 4890 3 4889 3 4888 3 4891 3 4889 3 4890 3 4892 3 4891 3 4890 3 4893 3 4891 3 4892 3 4896 5 4895 5 4894 5 4897 5 4895 5 4896 5 4898 5 4897 5 4896 5 4899 5 4897 5 4898 5 4900 5 4899 5 4898 5 4901 5 4899 5 4900 5 4902 5 4901 5 4900 5 4903 5 4901 5 4902 5 4904 5 4903 5 4902 5 4905 5 4903 5 4904 5 4906 5 4905 5 4904 5 4907 5 4905 5 4906 5 4908 5 4907 5 4906 5 4909 5 4907 5 4908 5 4912 5 4911 5 4910 5 4913 5 4911 5 4912 5 4914 5 4913 5 4912 5 4915 5 4913 5 4914 5 4916 5 4915 5 4914 5 4917 5 4915 5 4916 5 4918 5 4917 5 4916 5 4919 5 4917 5 4918 5 4920 5 4919 5 4918 5 4921 5 4919 5 4920 5 4922 5 4921 5 4920 5 4922 5 4921 5 4922 5 4923 5 4922 5 4922 5 4924 5 4922 5 4923 5 4897 5 4926 5 4925 5 4927 5 4926 5 4897 5 4928 5 4927 5 4897 5 4929 5 4927 5 4928 5 4930 5 4929 5 4928 5 4931 5 4929 5 4930 5 4932 5 4931 5 4930 5 4933 5 4931 5 4932 5 4934 5 4933 5 4932 5 4935 5 4933 5 4934 5 4936 5 4935 5 4934 5 4937 5 4935 5 4936 5 4938 5 4937 5 4936 5 4939 5 4937 5 4938 5 4941 5 4940 5 4910 5 4942 5 4940 5 4941 5 4943 5 4942 5 4941 5 4944 5 4942 5 4943 5 4945 5 4944 5 4943 5 4946 5 4944 5 4945 5 4947 5 4946 5 4945 5 4948 5 4946 5 4947 5 4949 5 4948 5 4947 5 4950 5 4948 5 4949 5 4951 5 4950 5 4949 5 4952 5 4950 5 4951 5 4953 5 4952 5 4951 5 4954 5 4952 5 4953 5 4941 5 4956 5 4955 5 4957 5 4956 5 4941 5 4958 5 4957 5 4941 5 4959 5 4957 5 4958 5 4960 5 4959 5 4958 5 4961 5 4959 5 4960 5 4962 5 4961 5 4960 5 4963 5 4961 5 4962 5 4964 5 4963 5 4962 5 4965 5 4963 5 4964 5 4966 5 4965 5 4964 5 4967 5 4965 5 4966 5 4968 5 4967 5 4966 5 4969 5 4967 5 4968 5 4971 5 4940 5 4970 5 4972 5 4940 5 4971 5 4973 5 4972 5 4971 5 4974 5 4972 5 4973 5 4975 5 4974 5 4973 5 4976 5 4974 5 4975 5 4977 5 4976 5 4975 5 4978 5 4976 5 4977 5 4979 5 4978 5 4977 5 4980 5 4978 5 4979 5 4981 5 4980 5 4979 5 4982 5 4980 5 4981 5 4983 5 4982 5 4981 5 4984 5 4982 5 4983 5 4986 5 4985 5 4985 5 4986 5 4985 5 4986 5 4987 5 4986 5 4986 5 4988 5 4986 5 4987 5 4989 5 4988 5 4987 5 4990 5 4988 5 4989 5 4991 5 4990 5 4989 5 4992 5 4990 5 4991 5 4993 5 4992 5 4991 5 4994 5 4992 5 4993 5 4995 5 4994 5 4993 5 4996 5 4994 5 4995 5 4997 5 4996 5 4995 5 4998 5 4996 5 4997 5 5001 5 5000 5 4999 5 5002 5 5000 5 5001 5 5003 5 5002 5 5001 5 5004 5 5002 5 5003 5 5005 5 5004 5 5003 5 5006 5 5004 5 5005 5 5007 5 5006 5 5005 5 5008 5 5006 5 5007 5 5009 5 5008 5 5007 5 5010 5 5008 5 5009 5 5011 5 5010 5 5009 5 5012 5 5010 5 5011 5 5013 5 5012 5 5011 5 5014 5 5012 5 5013 5 5017 5 5016 5 5015 5 5018 5 5016 5 5017 5 5019 5 5018 5 5017 5 5020 5 5018 5 5019 5 5021 5 5020 5 5019 5 5022 5 5020 5 5021 5 5023 5 5022 5 5021 5 5024 5 5022 5 5023 5 5025 5 5024 5 5023 5 5026 5 5024 5 5025 5 5027 5 5026 5 5025 5 5028 5 5026 5 5027 5 5029 5 5028 5 5027 5 5030 5 5028 5 5029 5 5032 5 5000 5 5031 5 5033 5 5000 5 5032 5 5034 5 5033 5 5032 5 5035 5 5033 5 5034 5 5036 5 5035 5 5034 5 5037 5 5035 5 5036 5 5038 5 5037 5 5036 5 5039 5 5037 5 5038 5 5040 5 5039 5 5038 5 5041 5 5039 5 5040 5 5042 5 5041 5 5040 5 5043 5 5041 5 5042 5 5044 5 5043 5 5042 5 5045 5 5043 5 5044 5 5047 0 5046 0 4985 5 5048 0 5046 0 5047 0 5049 0 5048 0 5047 0 5050 0 5048 0 5049 0 5051 0 5050 0 5049 0 5052 0 5050 0 5051 0 5053 1 5052 2 5051 2 5054 1 5052 2 5053 1 5055 3 5054 3 5053 3 5056 3 5054 3 5055 3 5057 3 5056 3 5055 3 5058 3 5056 3 5057 3 5059 3 5058 3 5057 3 5060 3 5058 3 5059 3 5063 5 5062 5 5061 5 5063 5 5062 5 5063 5 5064 5 5063 5 5063 5 5065 5 5063 5 5064 5 5066 5 5065 5 5064 5 5067 5 5065 5 5066 5 5068 5 5067 5 5066 5 5069 5 5067 5 5068 5 5070 5 5069 5 5068 5 5071 5 5069 5 5070 5 5072 5 5071 5 5070 5 5073 5 5071 5 5072 5 5074 5 5073 5 5072 5 5075 5 5073 5 5074 5 5078 5 5077 5 5076 5 5079 5 5077 5 5078 5 5080 5 5079 5 5078 5 5081 5 5079 5 5080 5 5082 5 5081 5 5080 5 5083 5 5081 5 5082 5 5084 5 5083 5 5082 5 5085 5 5083 5 5084 5 5086 5 5085 5 5084 5 5087 5 5085 5 5086 5 5088 5 5087 5 5086 5 5089 5 5087 5 5088 5 5090 5 5089 5 5088 5 5091 5 5089 5 5090 5 5093 5 5092 5 5061 5 5094 5 5092 5 5093 5 5095 5 5094 5 5093 5 5096 5 5094 5 5095 5 5097 5 5096 5 5095 5 5098 5 5096 5 5097 5 5099 5 5098 5 5097 5 5099 5 5098 5 5099 5 5100 5 5099 5 5099 5 5100 5 5099 5 5100 5 5101 5 5100 5 5100 5 5102 5 5100 5 5101 5 5103 5 5102 5 5101 5 5104 5 5102 5 5103 5 5106 5 5076 5 5105 5 5107 5 5076 5 5106 5 5108 5 5107 5 5106 5 5109 5 5107 5 5108 5 5110 5 5109 5 5108 5 5111 5 5109 5 5110 5 5112 5 5111 5 5110 5 5113 5 5111 5 5112 5 5114 5 5113 5 5112 5 5115 5 5113 5 5114 5 5116 5 5115 5 5114 5 5117 5 5115 5 5116 5 5118 5 5117 5 5116 5 5119 5 5117 5 5118 5 5121 5 5061 5 5120 5 5122 5 5061 5 5121 5 5123 5 5122 5 5121 5 5124 5 5122 5 5123 5 5125 5 5124 5 5123 5 5126 5 5124 5 5125 5 5127 5 5126 5 5125 5 5128 5 5126 5 5127 5 5129 5 5128 5 5127 5 5130 5 5128 5 5129 5 5131 5 5130 5 5129 5 5132 5 5130 5 5131 5 5133 5 5132 5 5131 5 5134 5 5132 5 5133 5 5136 5 5135 5 5061 5 5137 5 5135 5 5136 5 5138 5 5137 5 5136 5 5139 5 5137 5 5138 5 5140 5 5139 5 5138 5 5141 5 5139 5 5140 5 5142 5 5141 5 5140 5 5143 5 5141 5 5142 5 5144 5 5143 5 5142 5 5145 5 5143 5 5144 5 5146 5 5145 5 5144 5 5147 5 5145 5 5146 5 5148 5 5147 5 5146 5 5149 5 5147 5 5148 5 5151 5 5150 5 5150 5 5151 5 5150 5 5151 5 5152 5 5151 5 5151 5 5153 5 5151 5 5152 5 5154 5 5153 5 5152 5 5155 5 5153 5 5154 5 5156 5 5155 5 5154 5 5157 5 5155 5 5156 5 5158 5 5157 5 5156 5 5159 5 5157 5 5158 5 5160 5 5159 5 5158 5 5161 5 5159 5 5160 5 5162 5 5161 5 5160 5 5163 5 5161 5 5162 5 5165 5 5150 5 5164 5 5166 5 5150 5 5165 5 5167 5 5166 5 5165 5 5168 5 5166 5 5167 5 5169 5 5168 5 5167 5 5170 5 5168 5 5169 5 5171 5 5170 5 5169 5 5172 5 5170 5 5171 5 5173 5 5172 5 5171 5 5174 5 5172 5 5173 5 5175 5 5174 5 5173 5 5176 5 5174 5 5175 5 5177 5 5176 5 5175 5 5178 5 5176 5 5177 5 5151 5 5180 5 5179 5 5181 5 5180 5 5151 5 5182 5 5181 5 5151 5 5183 5 5181 5 5182 5 5184 5 5183 5 5182 5 5185 5 5183 5 5184 5 5186 5 5185 5 5184 5 5187 5 5185 5 5186 5 5188 5 5187 5 5186 5 5188 5 5187 5 5188 5 5189 5 5188 5 5188 5 5190 5 5188 5 5189 5 5191 5 5190 5 5189 5 5192 5 5190 5 5191 5 5194 5 5150 5 5193 5 5195 5 5150 5 5194 5 5196 5 5195 5 5194 5 5197 5 5195 5 5196 5 5198 5 5197 5 5196 5 5199 5 5197 5 5198 5 5200 5 5199 5 5198 5 5201 5 5199 5 5200 5 5202 5 5201 5 5200 5 5203 5 5201 5 5202 5 5204 5 5203 5 5202 5 5205 5 5203 5 5204 5 5206 5 5205 5 5204 5 5207 5 5205 5 5206 5 5209 0 5208 0 5179 5 5210 0 5208 0 5209 0 5211 0 5210 0 5209 0 5212 0 5210 0 5211 0 5213 0 5212 0 5211 0 5214 0 5212 0 5213 0 5215 1 5214 2 5213 2 5216 1 5214 2 5215 1 5217 3 5216 3 5215 3 5218 3 5216 3 5217 3 5219 3 5218 3 5217 3 5220 3 5218 3 5219 3 5221 3 5220 3 5219 3 5222 3 5220 3 5221 3 5225 5 5224 5 5223 5 5225 5 5224 5 5225 5 5226 5 5225 5 5225 5 5227 5 5225 5 5226 5 5228 5 5227 5 5226 5 5229 5 5227 5 5228 5 5230 5 5229 5 5228 5 5231 5 5229 5 5230 5 5232 5 5231 5 5230 5 5233 5 5231 5 5232 5 5234 5 5233 5 5232 5 5235 5 5233 5 5234 5 5236 5 5235 5 5234 5 5237 5 5235 5 5236 5 5225 5 5239 5 5238 5 5240 5 5239 5 5225 5 5241 5 5240 5 5225 5 5242 5 5240 5 5241 5 5243 5 5242 5 5241 5 5244 5 5242 5 5243 5 5245 5 5244 5 5243 5 5246 5 5244 5 5245 5 5247 5 5246 5 5245 5 5248 5 5246 5 5247 5 5249 5 5248 5 5247 5 5249 5 5248 5 5249 5 5250 5 5249 5 5249 5 5251 5 5249 5 5250 5 5254 5 5253 5 5252 5 5255 5 5253 5 5254 5 5256 5 5255 5 5254 5 5257 5 5255 5 5256 5 5258 5 5257 5 5256 5 5258 5 5257 5 5258 5 5259 5 5258 5 5258 5 5260 5 5258 5 5259 5 5261 5 5260 5 5259 5 5262 5 5260 5 5261 5 5263 5 5262 5 5261 5 5264 5 5262 5 5263 5 5265 5 5264 5 5263 5 5266 5 5264 5 5265 5 5268 5 5267 5 5223 5 5269 5 5267 5 5268 5 5270 5 5269 5 5268 5 5271 5 5269 5 5270 5 5272 5 5271 5 5270 5 5273 5 5271 5 5272 5 5274 5 5273 5 5272 5 5275 5 5273 5 5274 5 5276 5 5275 5 5274 5 5277 5 5275 5 5276 5 5278 5 5277 5 5276 5 5279 5 5277 5 5278 5 5280 5 5279 5 5278 5 5281 5 5279 5 5280 5 5284 5 5283 5 5282 5 5285 5 5283 5 5284 5 5286 5 5285 5 5284 5 5287 5 5285 5 5286 5 5288 5 5287 5 5286 5 5289 5 5287 5 5288 5 5290 5 5289 5 5288 5 5291 5 5289 5 5290 5 5292 5 5291 5 5290 5 5293 5 5291 5 5292 5 5294 5 5293 5 5292 5 5295 5 5293 5 5294 5 5296 5 5295 5 5294 5 5297 5 5295 5 5296 5 5268 5 5299 5 5298 5 5300 5 5299 5 5268 5 5301 5 5300 5 5268 5 5302 5 5300 5 5301 5 5303 5 5302 5 5301 5 5304 5 5302 5 5303 5 5305 5 5304 5 5303 5 5306 5 5304 5 5305 5 5307 5 5306 5 5305 5 5308 5 5306 5 5307 5 5309 5 5308 5 5307 5 5310 5 5308 5 5309 5 5311 5 5310 5 5309 5 5312 5 5310 5 5311 5 5315 5 5314 5 5313 5 5316 5 5314 5 5315 5 5317 5 5316 5 5315 5 5318 5 5316 5 5317 5 5319 5 5318 5 5317 5 5320 5 5318 5 5319 5 5321 5 5320 5 5319 5 5322 5 5320 5 5321 5 5323 5 5322 5 5321 5 5324 5 5322 5 5323 5 5325 5 5324 5 5323 5 5326 5 5324 5 5325 5 5327 5 5326 5 5325 5 5328 5 5326 5 5327 5 5331 5 5330 5 5329 5 5332 5 5330 5 5331 5 5333 5 5332 5 5331 5 5334 5 5332 5 5333 5 5335 5 5334 5 5333 5 5336 5 5334 5 5335 5 5337 5 5336 5 5335 5 5338 5 5336 5 5337 5 5339 5 5338 5 5337 5 5340 5 5338 5 5339 5 5341 5 5340 5 5339 5 5342 5 5340 5 5341 5 5343 5 5342 5 5341 5 5344 5 5342 5 5343 5 5315 5 5314 5 5345 5 5346 5 5314 5 5315 5 5347 5 5346 5 5315 5 5348 5 5346 5 5347 5 5349 5 5348 5 5347 5 5350 5 5348 5 5349 5 5351 5 5350 5 5349 5 5352 5 5350 5 5351 5 5353 5 5352 5 5351 5 5354 5 5352 5 5353 5 5355 5 5354 5 5353 5 5356 5 5354 5 5355 5 5357 5 5356 5 5355 5 5358 5 5356 5 5357 5 5360 5 5330 5 5359 5 5361 5 5330 5 5360 5 5362 5 5361 5 5360 5 5363 5 5361 5 5362 5 5364 5 5363 5 5362 5 5365 5 5363 5 5364 5 5366 5 5365 5 5364 5 5367 5 5365 5 5366 5 5368 5 5367 5 5366 5 5369 5 5367 5 5368 5 5370 5 5369 5 5368 5 5371 5 5369 5 5370 5 5372 5 5371 5 5370 5 5373 5 5371 5 5372 5 5375 0 5374 0 5329 5 5376 0 5374 0 5375 0 5377 0 5376 0 5375 0 5378 0 5376 0 5377 0 5379 0 5378 0 5377 0 5380 0 5378 0 5379 0 5381 1 5380 2 5379 2 5382 1 5380 2 5381 1 5383 3 5382 3 5381 3 5384 3 5382 3 5383 3 5385 3 5384 3 5383 3 5386 3 5384 3 5385 3 5387 3 5386 3 5385 3 5388 3 5386 3 5387 3 5391 5 5390 5 5389 5 5391 5 5390 5 5391 5 5392 5 5391 5 5391 5 5393 5 5391 5 5392 5 5394 5 5393 5 5392 5 5395 5 5393 5 5394 5 5396 5 5395 5 5394 5 5397 5 5395 5 5396 5 5398 5 5397 5 5396 5 5399 5 5397 5 5398 5 5400 5 5399 5 5398 5 5401 5 5399 5 5400 5 5402 5 5401 5 5400 5 5402 5 5401 5 5402 5 5391 5 5389 5 5390 5 5403 5 5389 5 5391 5 5404 5 5403 5 5391 5 5405 5 5403 5 5404 5 5406 5 5405 5 5404 5 5407 5 5405 5 5406 5 5408 5 5407 5 5406 5 5409 5 5407 5 5408 5 5410 5 5409 5 5408 5 5411 5 5409 5 5410 5 5412 5 5411 5 5410 5 5413 5 5411 5 5412 5 5414 5 5413 5 5412 5 5415 5 5413 5 5414 5 5391 5 5417 5 5416 5 5418 5 5417 5 5391 5 5419 5 5418 5 5391 5 5420 5 5418 5 5419 5 5421 5 5420 5 5419 5 5422 5 5420 5 5421 5 5423 5 5422 5 5421 5 5424 5 5422 5 5423 5 5425 5 5424 5 5423 5 5426 5 5424 5 5425 5 5427 5 5426 5 5425 5 5428 5 5426 5 5427 5 5429 5 5428 5 5427 5 5430 5 5428 5 5429 5 5432 5 5431 5 5390 5 5433 5 5431 5 5432 5 5434 5 5433 5 5432 5 5435 5 5433 5 5434 5 5436 5 5435 5 5434 5 5437 5 5435 5 5436 5 5438 5 5437 5 5436 5 5439 5 5437 5 5438 5 5440 5 5439 5 5438 5 5441 5 5439 5 5440 5 5442 5 5441 5 5440 5 5443 5 5441 5 5442 5 5444 5 5443 5 5442 5 5445 5 5443 5 5444 5 5446 5 5389 5 5431 5 5447 5 5389 5 5446 5 5448 5 5447 5 5446 5 5449 5 5447 5 5448 5 5450 5 5449 5 5448 5 5451 5 5449 5 5450 5 5452 5 5451 5 5450 5 5453 5 5451 5 5452 5 5454 5 5453 5 5452 5 5455 5 5453 5 5454 5 5456 5 5455 5 5454 5 5457 5 5455 5 5456 5 5458 5 5457 5 5456 5 5459 5 5457 5 5458 5 5460 5 5417 5 5390 5 5461 5 5417 5 5460 5 5462 5 5461 5 5460 5 5463 5 5461 5 5462 5 5464 5 5463 5 5462 5 5465 5 5463 5 5464 5 5466 5 5465 5 5464 5 5467 5 5465 5 5466 5 5468 5 5467 5 5466 5 5469 5 5467 5 5468 5 5470 5 5469 5 5468 5 5471 5 5469 5 5470 5 5472 5 5471 5 5470 5 5473 5 5471 5 5472 5 5476 5 5475 5 5474 5 5477 5 5475 5 5476 5 5478 5 5477 5 5476 5 5479 5 5477 5 5478 5 5480 5 5479 5 5478 5 5481 5 5479 5 5480 5 5482 5 5481 5 5480 5 5483 5 5481 5 5482 5 5484 5 5483 5 5482 5 5485 5 5483 5 5484 5 5486 5 5485 5 5484 5 5487 5 5485 5 5486 5 5488 5 5487 5 5486 5 5489 5 5487 5 5488 5 5476 5 5474 5 5475 5 5490 5 5474 5 5476 5 5491 5 5490 5 5476 5 5492 5 5490 5 5491 5 5493 5 5492 5 5491 5 5494 5 5492 5 5493 5 5495 5 5494 5 5493 5 5496 5 5494 5 5495 5 5497 5 5496 5 5495 5 5498 5 5496 5 5497 5 5499 5 5498 5 5497 5 5499 5 5498 5 5499 5 5500 5 5499 5 5499 5 5501 5 5499 5 5500 5 5502 5 5475 5 5474 5 5503 5 5475 5 5502 5 5504 5 5503 5 5502 5 5505 5 5503 5 5504 5 5506 5 5505 5 5504 5 5507 5 5505 5 5506 5 5508 5 5507 5 5506 5 5508 5 5507 5 5508 5 5509 5 5508 5 5508 5 5510 5 5508 5 5509 5 5511 5 5510 5 5509 5 5512 5 5510 5 5511 5 5513 5 5512 5 5511 5 5514 5 5512 5 5513 5 5516 5 5474 5 5515 5 5517 5 5474 5 5516 5 5518 5 5517 5 5516 5 5519 5 5517 5 5518 5 5520 5 5519 5 5518 5 5521 5 5519 5 5520 5 5522 5 5521 5 5520 5 5523 5 5521 5 5522 5 5524 5 5523 5 5522 5 5525 5 5523 5 5524 5 5526 5 5525 5 5524 5 5527 5 5525 5 5526 5 5528 5 5527 5 5526 5 5529 5 5527 5 5528 5 5532 0 5531 0 5530 5 5533 0 5531 0 5532 0 5534 0 5533 0 5532 0 5535 0 5533 0 5534 0 5536 0 5535 0 5534 0 5537 0 5535 0 5536 0 5538 1 5537 2 5536 2 5539 1 5537 2 5538 1 5540 3 5539 3 5538 3 5541 3 5539 3 5540 3 5542 3 5541 3 5540 3 5543 3 5541 3 5542 3 5544 3 5543 3 5542 3 5545 3 5543 3 5544 3 5548 5 5547 5 5546 5 5549 5 5547 5 5548 5 5550 5 5549 5 5548 5 5551 5 5549 5 5550 5 5552 5 5551 5 5550 5 5553 5 5551 5 5552 5 5554 5 5553 5 5552 5 5555 5 5553 5 5554 5 5556 5 5555 5 5554 5 5557 5 5555 5 5556 5 5558 5 5557 5 5556 5 5559 5 5557 5 5558 5 5560 5 5559 5 5558 5 5561 5 5559 5 5560 5 5564 5 5563 5 5562 5 5565 5 5563 5 5564 5 5566 5 5565 5 5564 5 5567 5 5565 5 5566 5 5568 5 5567 5 5566 5 5569 5 5567 5 5568 5 5570 5 5569 5 5568 5 5571 5 5569 5 5570 5 5572 5 5571 5 5570 5 5573 5 5571 5 5572 5 5574 5 5573 5 5572 5 5574 5 5573 5 5574 5 5575 5 5574 5 5574 5 5576 5 5574 5 5575 5 5549 5 5578 5 5577 5 5579 5 5578 5 5549 5 5580 5 5579 5 5549 5 5581 5 5579 5 5580 5 5582 5 5581 5 5580 5 5583 5 5581 5 5582 5 5584 5 5583 5 5582 5 5585 5 5583 5 5584 5 5586 5 5585 5 5584 5 5587 5 5585 5 5586 5 5588 5 5587 5 5586 5 5589 5 5587 5 5588 5 5590 5 5589 5 5588 5 5591 5 5589 5 5590 5 5593 5 5592 5 5546 5 5594 5 5592 5 5593 5 5595 5 5594 5 5593 5 5596 5 5594 5 5595 5 5597 5 5596 5 5595 5 5598 5 5596 5 5597 5 5599 5 5598 5 5597 5 5600 5 5598 5 5599 5 5601 5 5600 5 5599 5 5602 5 5600 5 5601 5 5603 5 5602 5 5601 5 5604 5 5602 5 5603 5 5605 5 5604 5 5603 5 5606 5 5604 5 5605 5 5609 5 5608 5 5607 5 5610 5 5608 5 5609 5 5611 5 5610 5 5609 5 5612 5 5610 5 5611 5 5613 5 5612 5 5611 5 5614 5 5612 5 5613 5 5615 5 5614 5 5613 5 5616 5 5614 5 5615 5 5617 5 5616 5 5615 5 5618 5 5616 5 5617 5 5619 5 5618 5 5617 5 5620 5 5618 5 5619 5 5621 5 5620 5 5619 5 5622 5 5620 5 5621 5 5593 5 5623 5 5546 5 5624 5 5623 5 5593 5 5625 5 5624 5 5593 5 5626 5 5624 5 5625 5 5627 5 5626 5 5625 5 5628 5 5626 5 5627 5 5629 5 5628 5 5627 5 5630 5 5628 5 5629 5 5631 5 5630 5 5629 5 5632 5 5630 5 5631 5 5633 5 5632 5 5631 5 5634 5 5632 5 5633 5 5635 5 5634 5 5633 5 5636 5 5634 5 5635 5 5638 5 5637 5 5637 5 5639 5 5637 5 5638 5 5640 5 5639 5 5638 5 5641 5 5639 5 5640 5 5642 5 5641 5 5640 5 5643 5 5641 5 5642 5 5644 5 5643 5 5642 5 5645 5 5643 5 5644 5 5646 5 5645 5 5644 5 5647 5 5645 5 5646 5 5648 5 5647 5 5646 5 5649 5 5647 5 5648 5 5650 5 5649 5 5648 5 5651 5 5649 5 5650 5 5638 5 5653 5 5652 5 5654 5 5653 5 5638 5 5655 5 5654 5 5638 5 5656 5 5654 5 5655 5 5657 5 5656 5 5655 5 5658 5 5656 5 5657 5 5659 5 5658 5 5657 5 5660 5 5658 5 5659 5 5661 5 5660 5 5659 5 5662 5 5660 5 5661 5 5663 5 5662 5 5661 5 5664 5 5662 5 5663 5 5665 5 5664 5 5663 5 5665 5 5664 5 5665 5 5638 5 5667 5 5666 5 5668 5 5667 5 5638 5 5669 5 5668 5 5638 5 5670 5 5668 5 5669 5 5671 5 5670 5 5669 5 5672 5 5670 5 5671 5 5673 5 5672 5 5671 5 5674 5 5672 5 5673 5 5675 5 5674 5 5673 5 5676 5 5674 5 5675 5 5677 5 5676 5 5675 5 5678 5 5676 5 5677 5 5679 5 5678 5 5677 5 5680 5 5678 5 5679 5 5683 5 5682 5 5681 5 5684 5 5682 5 5683 5 5685 5 5684 5 5683 5 5686 5 5684 5 5685 5 5687 5 5686 5 5685 5 5688 5 5686 5 5687 5 5689 5 5688 5 5687 5 5690 5 5688 5 5689 5 5691 5 5690 5 5689 5 5692 5 5690 5 5691 5 5693 5 5692 5 5691 5 5694 5 5692 5 5693 5 5695 5 5694 5 5693 5 5696 5 5694 5 5695 5 5698 0 5697 0 5637 5 5699 0 5697 0 5698 0 5700 0 5699 0 5698 0 5701 0 5699 0 5700 0 5702 0 5701 0 5700 0 5703 0 5701 0 5702 0 5704 1 5703 2 5702 2 5705 1 5703 2 5704 1 5706 3 5705 3 5704 3 5707 3 5705 3 5706 3 5708 3 5707 3 5706 3 5709 3 5707 3 5708 3 5710 3 5709 3 5708 3 5711 3 5709 3 5710 3 5714 5 5713 5 5712 5 5715 5 5713 5 5714 5 5716 5 5715 5 5714 5 5717 5 5715 5 5716 5 5718 5 5717 5 5716 5 5719 5 5717 5 5718 5 5720 5 5719 5 5718 5 5721 5 5719 5 5720 5 5722 5 5721 5 5720 5 5723 5 5721 5 5722 5 5724 5 5723 5 5722 5 5725 5 5723 5 5724 5 5726 5 5725 5 5724 5 5727 5 5725 5 5726 5 5714 5 5729 5 5728 5 5730 5 5729 5 5714 5 5731 5 5730 5 5714 5 5732 5 5730 5 5731 5 5733 5 5732 5 5731 5 5734 5 5732 5 5733 5 5735 5 5734 5 5733 5 5736 5 5734 5 5735 5 5737 5 5736 5 5735 5 5737 5 5736 5 5737 5 5738 5 5737 5 5737 5 5738 5 5737 5 5738 5 5739 5 5738 5 5738 5 5740 5 5738 5 5739 5 5715 5 5742 5 5741 5 5743 5 5742 5 5715 5 5744 5 5743 5 5715 5 5745 5 5743 5 5744 5 5746 5 5745 5 5744 5 5747 5 5745 5 5746 5 5748 5 5747 5 5746 5 5749 5 5747 5 5748 5 5750 5 5749 5 5748 5 5750 5 5749 5 5750 5 5751 5 5750 5 5750 5 5752 5 5750 5 5751 5 5753 5 5752 5 5751 5 5754 5 5752 5 5753 5 5756 5 5755 5 5712 5 5757 5 5755 5 5756 5 5758 5 5757 5 5756 5 5759 5 5757 5 5758 5 5760 5 5759 5 5758 5 5761 5 5759 5 5760 5 5762 5 5761 5 5760 5 5763 5 5761 5 5762 5 5764 5 5763 5 5762 5 5765 5 5763 5 5764 5 5766 5 5765 5 5764 5 5767 5 5765 5 5766 5 5768 5 5767 5 5766 5 5769 5 5767 5 5768 5 5771 5 5713 5 5770 5 5772 5 5713 5 5771 5 5773 5 5772 5 5771 5 5774 5 5772 5 5773 5 5775 5 5774 5 5773 5 5776 5 5774 5 5775 5 5777 5 5776 5 5775 5 5778 5 5776 5 5777 5 5779 5 5778 5 5777 5 5780 5 5778 5 5779 5 5781 5 5780 5 5779 5 5782 5 5780 5 5781 5 5783 5 5782 5 5781 5 5784 5 5782 5 5783 5 5756 5 5770 5 5712 5 5785 5 5770 5 5756 5 5786 5 5785 5 5756 5 5787 5 5785 5 5786 5 5788 5 5787 5 5786 5 5789 5 5787 5 5788 5 5790 5 5789 5 5788 5 5791 5 5789 5 5790 5 5792 5 5791 5 5790 5 5793 5 5791 5 5792 5 5794 5 5793 5 5792 5 5795 5 5793 5 5794 5 5796 5 5795 5 5794 5 5797 5 5795 5 5796 5 5800 5 5799 5 5798 5 5801 5 5799 5 5800 5 5802 5 5801 5 5800 5 5803 5 5801 5 5802 5 5804 5 5803 5 5802 5 5805 5 5803 5 5804 5 5806 5 5805 5 5804 5 5807 5 5805 5 5806 5 5808 5 5807 5 5806 5 5809 5 5807 5 5808 5 5810 5 5809 5 5808 5 5811 5 5809 5 5810 5 5812 5 5811 5 5810 5 5813 5 5811 5 5812 5 5815 5 5814 5 5799 5 5816 5 5814 5 5815 5 5817 5 5816 5 5815 5 5818 5 5816 5 5817 5 5819 5 5818 5 5817 5 5820 5 5818 5 5819 5 5821 5 5820 5 5819 5 5822 5 5820 5 5821 5 5823 5 5822 5 5821 5 5824 5 5822 5 5823 5 5825 5 5824 5 5823 5 5826 5 5824 5 5825 5 5827 5 5826 5 5825 5 5828 5 5826 5 5827 5 5800 5 5829 5 5798 5 5830 5 5829 5 5800 5 5831 5 5830 5 5800 5 5832 5 5830 5 5831 5 5833 5 5832 5 5831 5 5834 5 5832 5 5833 5 5835 5 5834 5 5833 5 5836 5 5834 5 5835 5 5837 5 5836 5 5835 5 5838 5 5836 5 5837 5 5839 5 5838 5 5837 5 5840 5 5838 5 5839 5 5841 5 5840 5 5839 5 5841 5 5840 5 5841 5 5843 5 5798 5 5842 5 5844 5 5798 5 5843 5 5845 5 5844 5 5843 5 5846 5 5844 5 5845 5 5847 5 5846 5 5845 5 5848 5 5846 5 5847 5 5849 5 5848 5 5847 5 5850 5 5848 5 5849 5 5851 5 5850 5 5849 5 5852 5 5850 5 5851 5 5853 5 5852 5 5851 5 5854 5 5852 5 5853 5 5855 5 5854 5 5853 5 5856 5 5854 5 5855 5 5858 0 5857 0 5799 5 5859 0 5857 0 5858 0 5860 0 5859 0 5858 0 5861 0 5859 0 5860 0 5862 0 5861 0 5860 0 5863 0 5861 0 5862 0 5864 1 5863 2 5862 2 5865 1 5863 2 5864 1 5866 3 5865 3 5864 3 5867 3 5865 3 5866 3 5868 3 5867 3 5866 3 5869 3 5867 3 5868 3 5870 3 5869 3 5868 3 5871 3 5869 3 5870 3 5874 5 5873 5 5872 5 5875 5 5873 5 5874 5 5876 5 5875 5 5874 5 5877 5 5875 5 5876 5 5878 5 5877 5 5876 5 5879 5 5877 5 5878 5 5880 5 5879 5 5878 5 5881 5 5879 5 5880 5 5882 5 5881 5 5880 5 5883 5 5881 5 5882 5 5884 5 5883 5 5882 5 5885 5 5883 5 5884 5 5886 5 5885 5 5884 5 5887 5 5885 5 5886 5 5874 5 5889 5 5888 5 5890 5 5889 5 5874 5 5891 5 5890 5 5874 5 5892 5 5890 5 5891 5 5893 5 5892 5 5891 5 5894 5 5892 5 5893 5 5895 5 5894 5 5893 5 5896 5 5894 5 5895 5 5897 5 5896 5 5895 5 5898 5 5896 5 5897 5 5899 5 5898 5 5897 5 5900 5 5898 5 5899 5 5901 5 5900 5 5899 5 5902 5 5900 5 5901 5 5905 5 5904 5 5903 5 5906 5 5904 5 5905 5 5907 5 5906 5 5905 5 5907 5 5906 5 5907 5 5908 5 5907 5 5907 5 5908 5 5907 5 5908 5 5909 5 5908 5 5908 5 5910 5 5908 5 5909 5 5911 5 5910 5 5909 5 5912 5 5910 5 5911 5 5913 5 5912 5 5911 5 5914 5 5912 5 5913 5 5915 5 5914 5 5913 5 5916 5 5914 5 5915 5 5918 5 5917 5 5872 5 5919 5 5917 5 5918 5 5920 5 5919 5 5918 5 5921 5 5919 5 5920 5 5922 5 5921 5 5920 5 5923 5 5921 5 5922 5 5924 5 5923 5 5922 5 5925 5 5923 5 5924 5 5926 5 5925 5 5924 5 5927 5 5925 5 5926 5 5928 5 5927 5 5926 5 5929 5 5927 5 5928 5 5930 5 5929 5 5928 5 5931 5 5929 5 5930 5 5933 5 5873 5 5932 5 5934 5 5873 5 5933 5 5935 5 5934 5 5933 5 5936 5 5934 5 5935 5 5937 5 5936 5 5935 5 5938 5 5936 5 5937 5 5939 5 5938 5 5937 5 5940 5 5938 5 5939 5 5941 5 5940 5 5939 5 5942 5 5940 5 5941 5 5943 5 5942 5 5941 5 5944 5 5942 5 5943 5 5945 5 5944 5 5943 5 5946 5 5944 5 5945 5 5948 5 5947 5 5872 5 5949 5 5947 5 5948 5 5950 5 5949 5 5948 5 5951 5 5949 5 5950 5 5952 5 5951 5 5950 5 5953 5 5951 5 5952 5 5954 5 5953 5 5952 5 5955 5 5953 5 5954 5 5956 5 5955 5 5954 5 5957 5 5955 5 5956 5 5958 5 5957 5 5956 5 5959 5 5957 5 5958 5 5960 5 5959 5 5958 5 5961 5 5959 5 5960 5 5964 5 5963 5 5962 5 5965 5 5963 5 5964 5 5966 5 5965 5 5964 5 5967 5 5965 5 5966 5 5968 5 5967 5 5966 5 5969 5 5967 5 5968 5 5970 5 5969 5 5968 5 5971 5 5969 5 5970 5 5972 5 5971 5 5970 5 5973 5 5971 5 5972 5 5974 5 5973 5 5972 5 5975 5 5973 5 5974 5 5976 5 5975 5 5974 5 5977 5 5975 5 5976 5 5964 5 5979 5 5978 5 5980 5 5979 5 5964 5 5981 5 5980 5 5964 5 5982 5 5980 5 5981 5 5983 5 5982 5 5981 5 5984 5 5982 5 5983 5 5985 5 5984 5 5983 5 5986 5 5984 5 5985 5 5987 5 5986 5 5985 5 5988 5 5986 5 5987 5 5989 5 5988 5 5987 5 5990 5 5988 5 5989 5 5991 5 5990 5 5989 5 5992 5 5990 5 5991 5 5993 5 5963 5 5962 5 5994 5 5963 5 5993 5 5995 5 5994 5 5993 5 5996 5 5994 5 5995 5 5997 5 5996 5 5995 5 5998 5 5996 5 5997 5 5999 5 5998 5 5997 5 6000 5 5998 5 5999 5 6001 5 6000 5 5999 5 6002 5 6000 5 6001 5 6003 5 6002 5 6001 5 6004 5 6002 5 6003 5 6005 5 6004 5 6003 5 6006 5 6004 5 6005 5 6008 5 5979 5 6007 5 6009 5 5979 5 6008 5 6010 5 6009 5 6008 5 6011 5 6009 5 6010 5 6012 5 6011 5 6010 5 6013 5 6011 5 6012 5 6014 5 6013 5 6012 5 6015 5 6013 5 6014 5 6016 5 6015 5 6014 5 6017 5 6015 5 6016 5 6018 5 6017 5 6016 5 6019 5 6017 5 6018 5 6020 5 6019 5 6018 5 6021 5 6019 5 6020 5 6023 0 6022 0 5962 5 6024 0 6022 0 6023 0 6025 0 6024 0 6023 0 6026 0 6024 0 6025 0 6027 0 6026 0 6025 0 6028 0 6026 0 6027 0 6029 1 6028 2 6027 2 6030 1 6028 2 6029 1 6031 3 6030 3 6029 3 6032 3 6030 3 6031 3 6033 3 6032 3 6031 3 6034 3 6032 3 6033 3 6035 3 6034 3 6033 3 6036 3 6034 3 6035 3 6039 5 6038 5 6037 5 6039 5 6038 5 6039 5 6040 5 6039 5 6039 5 6041 5 6039 5 6040 5 6042 5 6041 5 6040 5 6043 5 6041 5 6042 5 6044 5 6043 5 6042 5 6045 5 6043 5 6044 5 6046 5 6045 5 6044 5 6047 5 6045 5 6046 5 6048 5 6047 5 6046 5 6049 5 6047 5 6048 5 6050 5 6049 5 6048 5 6050 5 6049 5 6050 5 6053 5 6052 5 6051 5 6054 5 6052 5 6053 5 6055 5 6054 5 6053 5 6056 5 6054 5 6055 5 6057 5 6056 5 6055 5 6058 5 6056 5 6057 5 6059 5 6058 5 6057 5 6060 5 6058 5 6059 5 6061 5 6060 5 6059 5 6062 5 6060 5 6061 5 6063 5 6062 5 6061 5 6064 5 6062 5 6063 5 6065 5 6064 5 6063 5 6066 5 6064 5 6065 5 6039 5 6038 5 6067 5 6068 5 6038 5 6039 5 6069 5 6068 5 6039 5 6070 5 6068 5 6069 5 6071 5 6070 5 6069 5 6072 5 6070 5 6071 5 6073 5 6072 5 6071 5 6074 5 6072 5 6073 5 6075 5 6074 5 6073 5 6076 5 6074 5 6075 5 6077 5 6076 5 6075 5 6078 5 6076 5 6077 5 6079 5 6078 5 6077 5 6080 5 6078 5 6079 5 6081 5 6051 5 6037 5 6082 5 6051 5 6081 5 6083 5 6082 5 6081 5 6084 5 6082 5 6083 5 6085 5 6084 5 6083 5 6086 5 6084 5 6085 5 6087 5 6086 5 6085 5 6088 5 6086 5 6087 5 6089 5 6088 5 6087 5 6090 5 6088 5 6089 5 6091 5 6090 5 6089 5 6092 5 6090 5 6091 5 6093 5 6092 5 6091 5 6094 5 6092 5 6093 5 6096 5 6067 5 6095 5 6097 5 6067 5 6096 5 6098 5 6097 5 6096 5 6099 5 6097 5 6098 5 6100 5 6099 5 6098 5 6101 5 6099 5 6100 5 6102 5 6101 5 6100 5 6103 5 6101 5 6102 5 6104 5 6103 5 6102 5 6105 5 6103 5 6104 5 6106 5 6105 5 6104 5 6107 5 6105 5 6106 5 6108 5 6107 5 6106 5 6109 5 6107 5 6108 5 6096 5 6111 5 6110 5 6112 5 6111 5 6096 5 6113 5 6112 5 6096 5 6114 5 6112 5 6113 5 6115 5 6114 5 6113 5 6116 5 6114 5 6115 5 6117 5 6116 5 6115 5 6118 5 6116 5 6117 5 6119 5 6118 5 6117 5 6120 5 6118 5 6119 5 6121 5 6120 5 6119 5 6122 5 6120 5 6121 5 6123 5 6122 5 6121 5 6124 5 6122 5 6123 5 6126 5 6125 5 6125 5 6127 5 6125 5 6126 5 6128 5 6127 5 6126 5 6129 5 6127 5 6128 5 6130 5 6129 5 6128 5 6131 5 6129 5 6130 5 6132 5 6131 5 6130 5 6133 5 6131 5 6132 5 6134 5 6133 5 6132 5 6135 5 6133 5 6134 5 6136 5 6135 5 6134 5 6137 5 6135 5 6136 5 6138 5 6137 5 6136 5 6139 5 6137 5 6138 5 6142 5 6141 5 6140 5 6143 5 6141 5 6142 5 6144 5 6143 5 6142 5 6145 5 6143 5 6144 5 6146 5 6145 5 6144 5 6147 5 6145 5 6146 5 6148 5 6147 5 6146 5 6149 5 6147 5 6148 5 6150 5 6149 5 6148 5 6151 5 6149 5 6150 5 6152 5 6151 5 6150 5 6153 5 6151 5 6152 5 6154 5 6153 5 6152 5 6155 5 6153 5 6154 5 6126 5 6140 5 6141 5 6156 5 6140 5 6126 5 6157 5 6156 5 6126 5 6158 5 6156 5 6157 5 6159 5 6158 5 6157 5 6160 5 6158 5 6159 5 6161 5 6160 5 6159 5 6162 5 6160 5 6161 5 6163 5 6162 5 6161 5 6164 5 6162 5 6163 5 6165 5 6164 5 6163 5 6166 5 6164 5 6165 5 6167 5 6166 5 6165 5 6168 5 6166 5 6167 5 6171 5 6170 5 6169 5 6172 5 6170 5 6171 5 6173 5 6172 5 6171 5 6174 5 6172 5 6173 5 6175 5 6174 5 6173 5 6176 5 6174 5 6175 5 6177 5 6176 5 6175 5 6178 5 6176 5 6177 5 6179 5 6178 5 6177 5 6180 5 6178 5 6179 5 6181 5 6180 5 6179 5 6182 5 6180 5 6181 5 6183 5 6182 5 6181 5 6184 5 6182 5 6183 5 6187 0 6186 0 6185 5 6188 0 6186 0 6187 0 6189 0 6188 0 6187 0 6190 0 6188 0 6189 0 6191 0 6190 0 6189 0 6192 0 6190 0 6191 0 6193 1 6192 2 6191 2 6194 1 6192 2 6193 1 6195 3 6194 3 6193 3 6196 3 6194 3 6195 3 6197 3 6196 3 6195 3 6198 3 6196 3 6197 3 6199 3 6198 3 6197 3 6200 3 6198 3 6199 3 6203 5 6202 5 6201 5 6203 5 6202 5 6203 5 6204 5 6203 5 6203 5 6205 5 6203 5 6204 5 6206 5 6205 5 6204 5 6207 5 6205 5 6206 5 6208 5 6207 5 6206 5 6209 5 6207 5 6208 5 6210 5 6209 5 6208 5 6211 5 6209 5 6210 5 6212 5 6211 5 6210 5 6213 5 6211 5 6212 5 6214 5 6213 5 6212 5 6215 5 6213 5 6214 5 6203 5 6217 5 6216 5 6218 5 6217 5 6203 5 6219 5 6218 5 6203 5 6220 5 6218 5 6219 5 6221 5 6220 5 6219 5 6222 5 6220 5 6221 5 6223 5 6222 5 6221 5 6224 5 6222 5 6223 5 6225 5 6224 5 6223 5 6226 5 6224 5 6225 5 6227 5 6226 5 6225 5 6228 5 6226 5 6227 5 6229 5 6228 5 6227 5 6230 5 6228 5 6229 5 6232 5 6231 5 6217 5 6233 5 6231 5 6232 5 6234 5 6233 5 6232 5 6235 5 6233 5 6234 5 6236 5 6235 5 6234 5 6237 5 6235 5 6236 5 6238 5 6237 5 6236 5 6239 5 6237 5 6238 5 6240 5 6239 5 6238 5 6240 5 6239 5 6240 5 6241 5 6240 5 6240 5 6242 5 6240 5 6241 5 6243 5 6242 5 6241 5 6244 5 6242 5 6243 5 6246 5 6216 5 6245 5 6247 5 6216 5 6246 5 6248 5 6247 5 6246 5 6249 5 6247 5 6248 5 6250 5 6249 5 6248 5 6251 5 6249 5 6250 5 6252 5 6251 5 6250 5 6253 5 6251 5 6252 5 6254 5 6253 5 6252 5 6255 5 6253 5 6254 5 6256 5 6255 5 6254 5 6257 5 6255 5 6256 5 6258 5 6257 5 6256 5 6259 5 6257 5 6258 5 6261 5 6217 5 6260 5 6262 5 6217 5 6261 5 6263 5 6262 5 6261 5 6264 5 6262 5 6263 5 6265 5 6264 5 6263 5 6266 5 6264 5 6265 5 6267 5 6266 5 6265 5 6268 5 6266 5 6267 5 6269 5 6268 5 6267 5 6270 5 6268 5 6269 5 6271 5 6270 5 6269 5 6272 5 6270 5 6271 5 6273 5 6272 5 6271 5 6274 5 6272 5 6273 5 6246 5 6276 5 6275 5 6277 5 6276 5 6246 5 6278 5 6277 5 6246 5 6279 5 6277 5 6278 5 6280 5 6279 5 6278 5 6281 5 6279 5 6280 5 6282 5 6281 5 6280 5 6283 5 6281 5 6282 5 6284 5 6283 5 6282 5 6285 5 6283 5 6284 5 6286 5 6285 5 6284 5 6287 5 6285 5 6286 5 6288 5 6287 5 6286 5 6289 5 6287 5 6288 5 6292 5 6291 5 6290 5 6293 5 6291 5 6292 5 6294 5 6293 5 6292 5 6295 5 6293 5 6294 5 6296 5 6295 5 6294 5 6297 5 6295 5 6296 5 6298 5 6297 5 6296 5 6299 5 6297 5 6298 5 6300 5 6299 5 6298 5 6301 5 6299 5 6300 5 6302 5 6301 5 6300 5 6303 5 6301 5 6302 5 6304 5 6303 5 6302 5 6305 5 6303 5 6304 5 6308 5 6307 5 6306 5 6309 5 6307 5 6308 5 6310 5 6309 5 6308 5 6311 5 6309 5 6310 5 6312 5 6311 5 6310 5 6313 5 6311 5 6312 5 6314 5 6313 5 6312 5 6315 5 6313 5 6314 5 6316 5 6315 5 6314 5 6317 5 6315 5 6316 5 6318 5 6317 5 6316 5 6319 5 6317 5 6318 5 6320 5 6319 5 6318 5 6321 5 6319 5 6320 5 6324 5 6323 5 6322 5 6325 5 6323 5 6324 5 6326 5 6325 5 6324 5 6327 5 6325 5 6326 5 6328 5 6327 5 6326 5 6329 5 6327 5 6328 5 6330 5 6329 5 6328 5 6331 5 6329 5 6330 5 6332 5 6331 5 6330 5 6333 5 6331 5 6332 5 6334 5 6333 5 6332 5 6335 5 6333 5 6334 5 6336 5 6335 5 6334 5 6336 5 6335 5 6336 5 6338 5 6291 5 6337 5 6339 5 6291 5 6338 5 6340 5 6339 5 6338 5 6341 5 6339 5 6340 5 6342 5 6341 5 6340 5 6343 5 6341 5 6342 5 6344 5 6343 5 6342 5 6345 5 6343 5 6344 5 6346 5 6345 5 6344 5 6347 5 6345 5 6346 5 6348 5 6347 5 6346 5 6349 5 6347 5 6348 5 6350 5 6349 5 6348 5 6351 5 6349 5 6350 5 6353 0 6352 0 6290 5 6354 0 6352 0 6353 0 6355 0 6354 0 6353 0 6356 0 6354 0 6355 0 6357 0 6356 0 6355 0 6358 0 6356 0 6357 0 6359 1 6358 2 6357 2 6360 1 6358 2 6359 1 6361 3 6360 3 6359 3 6362 3 6360 3 6361 3 6363 3 6362 3 6361 3 6364 3 6362 3 6363 3 6365 3 6364 3 6363 3 6366 3 6364 3 6365 3 6369 5 6368 5 6367 5 6370 5 6368 5 6369 5 6371 5 6370 5 6369 5 6371 5 6370 5 6371 5 6372 5 6371 5 6371 5 6373 5 6371 5 6372 5 6374 5 6373 5 6372 5 6375 5 6373 5 6374 5 6376 5 6375 5 6374 5 6377 5 6375 5 6376 5 6378 5 6377 5 6376 5 6379 5 6377 5 6378 5 6380 5 6379 5 6378 5 6381 5 6379 5 6380 5 6384 5 6383 5 6382 5 6385 5 6383 5 6384 5 6386 5 6385 5 6384 5 6387 5 6385 5 6386 5 6388 5 6387 5 6386 5 6389 5 6387 5 6388 5 6390 5 6389 5 6388 5 6391 5 6389 5 6390 5 6392 5 6391 5 6390 5 6393 5 6391 5 6392 5 6394 5 6393 5 6392 5 6395 5 6393 5 6394 5 6396 5 6395 5 6394 5 6397 5 6395 5 6396 5 6369 5 6399 5 6398 5 6400 5 6399 5 6369 5 6401 5 6400 5 6369 5 6401 5 6400 5 6401 5 6402 5 6401 5 6401 5 6403 5 6401 5 6402 5 6404 5 6403 5 6402 5 6405 5 6403 5 6404 5 6406 5 6405 5 6404 5 6407 5 6405 5 6406 5 6408 5 6407 5 6406 5 6409 5 6407 5 6408 5 6410 5 6409 5 6408 5 6411 5 6409 5 6410 5 6412 5 6382 5 6367 5 6413 5 6382 5 6412 5 6414 5 6413 5 6412 5 6415 5 6413 5 6414 5 6416 5 6415 5 6414 5 6417 5 6415 5 6416 5 6418 5 6417 5 6416 5 6419 5 6417 5 6418 5 6420 5 6419 5 6418 5 6421 5 6419 5 6420 5 6422 5 6421 5 6420 5 6423 5 6421 5 6422 5 6424 5 6423 5 6422 5 6425 5 6423 5 6424 5 6427 5 6383 5 6426 5 6428 5 6383 5 6427 5 6429 5 6428 5 6427 5 6430 5 6428 5 6429 5 6431 5 6430 5 6429 5 6432 5 6430 5 6431 5 6433 5 6432 5 6431 5 6434 5 6432 5 6433 5 6435 5 6434 5 6433 5 6436 5 6434 5 6435 5 6437 5 6436 5 6435 5 6438 5 6436 5 6437 5 6439 5 6438 5 6437 5 6440 5 6438 5 6439 5 6412 5 6426 5 6441 5 6442 5 6426 5 6412 5 6443 5 6442 5 6412 5 6444 5 6442 5 6443 5 6445 5 6444 5 6443 5 6446 5 6444 5 6445 5 6447 5 6446 5 6445 5 6448 5 6446 5 6447 5 6449 5 6448 5 6447 5 6450 5 6448 5 6449 5 6451 5 6450 5 6449 5 6452 5 6450 5 6451 5 6453 5 6452 5 6451 5 6454 5 6452 5 6453 5 6456 5 6455 5 6455 5 6457 5 6455 5 6456 5 6458 5 6457 5 6456 5 6459 5 6457 5 6458 5 6460 5 6459 5 6458 5 6461 5 6459 5 6460 5 6462 5 6461 5 6460 5 6463 5 6461 5 6462 5 6464 5 6463 5 6462 5 6465 5 6463 5 6464 5 6466 5 6465 5 6464 5 6467 5 6465 5 6466 5 6468 5 6467 5 6466 5 6469 5 6467 5 6468 5 6456 5 6471 5 6470 5 6472 5 6471 5 6456 5 6473 5 6472 5 6456 5 6474 5 6472 5 6473 5 6475 5 6474 5 6473 5 6476 5 6474 5 6475 5 6477 5 6476 5 6475 5 6478 5 6476 5 6477 5 6479 5 6478 5 6477 5 6480 5 6478 5 6479 5 6481 5 6480 5 6479 5 6482 5 6480 5 6481 5 6483 5 6482 5 6481 5 6483 5 6482 5 6483 5 6456 5 6470 5 6455 5 6484 5 6470 5 6456 5 6485 5 6484 5 6456 5 6486 5 6484 5 6485 5 6487 5 6486 5 6485 5 6488 5 6486 5 6487 5 6489 5 6488 5 6487 5 6490 5 6488 5 6489 5 6491 5 6490 5 6489 5 6492 5 6490 5 6491 5 6493 5 6492 5 6491 5 6494 5 6492 5 6493 5 6495 5 6494 5 6493 5 6495 5 6494 5 6495 5 6497 5 6455 5 6496 5 6498 5 6455 5 6497 5 6499 5 6498 5 6497 5 6500 5 6498 5 6499 5 6501 5 6500 5 6499 5 6502 5 6500 5 6501 5 6503 5 6502 5 6501 5 6504 5 6502 5 6503 5 6505 5 6504 5 6503 5 6506 5 6504 5 6505 5 6507 5 6506 5 6505 5 6508 5 6506 5 6507 5 6509 5 6508 5 6507 5 6510 5 6508 5 6509 5 6512 0 6511 0 6455 5 6513 0 6511 0 6512 0 6514 0 6513 0 6512 0 6515 0 6513 0 6514 0 6516 0 6515 0 6514 0 6517 0 6515 0 6516 0 6518 1 6517 2 6516 2 6519 1 6517 2 6518 1 6520 3 6519 3 6518 3 6521 3 6519 3 6520 3 6522 3 6521 3 6520 3 6523 3 6521 3 6522 3 6524 3 6523 3 6522 3 6525 3 6523 3 6524 3 6527 5 6526 5 6526 5 6528 5 6526 5 6527 5 6529 5 6528 5 6527 5 6530 5 6528 5 6529 5 6531 5 6530 5 6529 5 6532 5 6530 5 6531 5 6533 5 6532 5 6531 5 6534 5 6532 5 6533 5 6535 5 6534 5 6533 5 6536 5 6534 5 6535 5 6537 5 6536 5 6535 5 6538 5 6536 5 6537 5 6539 5 6538 5 6537 5 6540 5 6538 5 6539 5 6543 5 6542 5 6541 5 6544 5 6542 5 6543 5 6545 5 6544 5 6543 5 6546 5 6544 5 6545 5 6547 5 6546 5 6545 5 6548 5 6546 5 6547 5 6549 5 6548 5 6547 5 6550 5 6548 5 6549 5 6551 5 6550 5 6549 5 6552 5 6550 5 6551 5 6553 5 6552 5 6551 5 6554 5 6552 5 6553 5 6555 5 6554 5 6553 5 6556 5 6554 5 6555 5 6527 5 6557 5 6542 5 6558 5 6557 5 6527 5 6559 5 6558 5 6527 5 6560 5 6558 5 6559 5 6561 5 6560 5 6559 5 6562 5 6560 5 6561 5 6563 5 6562 5 6561 5 6564 5 6562 5 6563 5 6565 5 6564 5 6563 5 6566 5 6564 5 6565 5 6567 5 6566 5 6565 5 6568 5 6566 5 6567 5 6569 5 6568 5 6567 5 6570 5 6568 5 6569 5 6573 5 6572 5 6571 5 6574 5 6572 5 6573 5 6575 5 6574 5 6573 5 6576 5 6574 5 6575 5 6577 5 6576 5 6575 5 6578 5 6576 5 6577 5 6579 5 6578 5 6577 5 6580 5 6578 5 6579 5 6581 5 6580 5 6579 5 6582 5 6580 5 6581 5 6583 5 6582 5 6581 5 6584 5 6582 5 6583 5 6585 5 6584 5 6583 5 6586 5 6584 5 6585 5 6573 5 6588 5 6587 5 6589 5 6588 5 6573 5 6590 5 6589 5 6573 5 6591 5 6589 5 6590 5 6592 5 6591 5 6590 5 6593 5 6591 5 6592 5 6594 5 6593 5 6592 5 6595 5 6593 5 6594 5 6596 5 6595 5 6594 5 6597 5 6595 5 6596 5 6598 5 6597 5 6596 5 6599 5 6597 5 6598 5 6600 5 6599 5 6598 5 6600 5 6599 5 6600 5 6574 5 6572 5 6571 5 6601 5 6572 5 6574 5 6602 5 6601 5 6574 5 6603 5 6601 5 6602 5 6604 5 6603 5 6602 5 6605 5 6603 5 6604 5 6606 5 6605 5 6604 5 6607 5 6605 5 6606 5 6608 5 6607 5 6606 5 6609 5 6607 5 6608 5 6610 5 6609 5 6608 5 6610 5 6609 5 6610 5 6611 5 6610 5 6610 5 6612 5 6610 5 6611 5 6614 5 6613 5 6587 5 6615 5 6613 5 6614 5 6616 5 6615 5 6614 5 6617 5 6615 5 6616 5 6618 5 6617 5 6616 5 6619 5 6617 5 6618 5 6620 5 6619 5 6618 5 6621 5 6619 5 6620 5 6622 5 6621 5 6620 5 6623 5 6621 5 6622 5 6624 5 6623 5 6622 5 6625 5 6623 5 6624 5 6626 5 6625 5 6624 5 6627 5 6625 5 6626 5 6629 5 6588 5 6628 5 6630 5 6588 5 6629 5 6631 5 6630 5 6629 5 6632 5 6630 5 6631 5 6633 5 6632 5 6631 5 6634 5 6632 5 6633 5 6635 5 6634 5 6633 5 6636 5 6634 5 6635 5 6637 5 6636 5 6635 5 6638 5 6636 5 6637 5 6639 5 6638 5 6637 5 6640 5 6638 5 6639 5 6641 5 6640 5 6639 5 6642 5 6640 5 6641 5 6614 5 6643 5 6571 5 6644 5 6643 5 6614 5 6645 5 6644 5 6614 5 6646 5 6644 5 6645 5 6647 5 6646 5 6645 5 6648 5 6646 5 6647 5 6649 5 6648 5 6647 5 6650 5 6648 5 6649 5 6651 5 6650 5 6649 5 6652 5 6650 5 6651 5 6653 5 6652 5 6651 5 6654 5 6652 5 6653 5 6655 5 6654 5 6653 5 6656 5 6654 5 6655 5 6659 5 6658 5 6657 5 6660 5 6658 5 6659 5 6661 5 6660 5 6659 5 6662 5 6660 5 6661 5 6663 5 6662 5 6661 5 6664 5 6662 5 6663 5 6665 5 6664 5 6663 5 6666 5 6664 5 6665 5 6667 5 6666 5 6665 5 6668 5 6666 5 6667 5 6669 5 6668 5 6667 5 6670 5 6668 5 6669 5 6671 5 6670 5 6669 5 6672 5 6670 5 6671 5 6675 5 6674 5 6673 5 6676 5 6674 5 6675 5 6677 5 6676 5 6675 5 6678 5 6676 5 6677 5 6679 5 6678 5 6677 5 6680 5 6678 5 6679 5 6681 5 6680 5 6679 5 6682 5 6680 5 6681 5 6683 5 6682 5 6681 5 6684 5 6682 5 6683 5 6685 5 6684 5 6683 5 6686 5 6684 5 6685 5 6687 5 6686 5 6685 5 6688 5 6686 5 6687 5 6659 5 6690 5 6689 5 6691 5 6690 5 6659 5 6692 5 6691 5 6659 5 6693 5 6691 5 6692 5 6694 5 6693 5 6692 5 6695 5 6693 5 6694 5 6696 5 6695 5 6694 5 6697 5 6695 5 6696 5 6698 5 6697 5 6696 5 6698 5 6697 5 6698 5 6699 5 6698 5 6698 5 6700 5 6698 5 6699 5 6701 5 6700 5 6699 5 6701 5 6700 5 6701 5 6704 5 6703 5 6702 5 6705 5 6703 5 6704 5 6706 5 6705 5 6704 5 6707 5 6705 5 6706 5 6708 5 6707 5 6706 5 6709 5 6707 5 6708 5 6710 5 6709 5 6708 5 6711 5 6709 5 6710 5 6712 5 6711 5 6710 5 6713 5 6711 5 6712 5 6714 5 6713 5 6712 5 6715 5 6713 5 6714 5 6716 5 6715 5 6714 5 6717 5 6715 5 6716 5 6719 0 6718 0 6657 5 6720 0 6718 0 6719 0 6721 0 6720 0 6719 0 6722 0 6720 0 6721 0 6723 0 6722 0 6721 0 6724 0 6722 0 6723 0 6725 1 6724 2 6723 2 6726 1 6724 2 6725 1 6727 3 6726 3 6725 3 6728 3 6726 3 6727 3 6729 3 6728 3 6727 3 6730 3 6728 3 6729 3 6731 3 6730 3 6729 3 6732 3 6730 3 6731 3 6734 5 6541 5 6733 5 6735 5 6541 5 6734 5 6736 5 6735 5 6734 5 6737 5 6735 5 6736 5 6738 5 6737 5 6736 5 6739 5 6737 5 6738 5 6740 5 6739 5 6738 5 6741 5 6739 5 6740 5 6742 5 6741 5 6740 5 6743 5 6741 5 6742 5 6744 5 6743 5 6742 5 6745 5 6743 5 6744 5 6746 5 6745 5 6744 5 6747 5 6745 5 6746 5 6749 5 6542 5 6748 5 6750 5 6542 5 6749 5 6751 5 6750 5 6749 5 6752 5 6750 5 6751 5 6753 5 6752 5 6751 5 6754 5 6752 5 6753 5 6755 5 6754 5 6753 5 6756 5 6754 5 6755 5 6757 5 6756 5 6755 5 6758 5 6756 5 6757 5 6759 5 6758 5 6757 5 6760 5 6758 5 6759 5 6761 5 6760 5 6759 5 6762 5 6760 5 6761 5 6764 5 6763 5 6526 5 6765 5 6763 5 6764 5 6766 5 6765 5 6764 5 6767 5 6765 5 6766 5 6768 5 6767 5 6766 5 6769 5 6767 5 6768 5 6770 5 6769 5 6768 5 6771 5 6769 5 6770 5 6772 5 6771 5 6770 5 6773 5 6771 5 6772 5 6774 5 6773 5 6772 5 6775 5 6773 5 6774 5 6776 5 6775 5 6774 5 6777 5 6775 5 6776 5 6780 5 6779 5 6778 5 6780 5 6779 5 6780 5 6781 5 6780 5 6780 5 6781 5 6780 5 6781 5 6782 5 6781 5 6781 5 6783 5 6781 5 6782 5 6784 5 6783 5 6782 5 6785 5 6783 5 6784 5 6786 5 6785 5 6784 5 6787 5 6785 5 6786 5 6788 5 6787 5 6786 5 6789 5 6787 5 6788 5 6790 5 6789 5 6788 5 6791 5 6789 5 6790 5 6794 5 6793 5 6792 5 6795 5 6793 5 6794 5 6796 5 6795 5 6794 5 6797 5 6795 5 6796 5 6798 5 6797 5 6796 5 6799 5 6797 5 6798 5 6800 5 6799 5 6798 5 6801 5 6799 5 6800 5 6802 5 6801 5 6800 5 6803 5 6801 5 6802 5 6804 5 6803 5 6802 5 6805 5 6803 5 6804 5 6806 5 6805 5 6804 5 6807 5 6805 5 6806 5 6780 5 6779 5 6808 5 6809 5 6779 5 6780 5 6810 5 6809 5 6780 5 6811 5 6809 5 6810 5 6812 5 6811 5 6810 5 6813 5 6811 5 6812 5 6814 5 6813 5 6812 5 6815 5 6813 5 6814 5 6816 5 6815 5 6814 5 6816 5 6815 5 6816 5 6817 5 6816 5 6816 5 6818 5 6816 5 6817 5 6819 5 6818 5 6817 5 6820 5 6818 5 6819 5 6822 5 6821 5 6778 5 6823 5 6821 5 6822 5 6824 5 6823 5 6822 5 6825 5 6823 5 6824 5 6826 5 6825 5 6824 5 6827 5 6825 5 6826 5 6828 5 6827 5 6826 5 6829 5 6827 5 6828 5 6830 5 6829 5 6828 5 6831 5 6829 5 6830 5 6832 5 6831 5 6830 5 6833 5 6831 5 6832 5 6834 5 6833 5 6832 5 6835 5 6833 5 6834 5 6837 5 6793 5 6836 5 6838 5 6793 5 6837 5 6839 5 6838 5 6837 5 6840 5 6838 5 6839 5 6841 5 6840 5 6839 5 6842 5 6840 5 6841 5 6843 5 6842 5 6841 5 6844 5 6842 5 6843 5 6845 5 6844 5 6843 5 6846 5 6844 5 6845 5 6847 5 6846 5 6845 5 6848 5 6846 5 6847 5 6849 5 6848 5 6847 5 6850 5 6848 5 6849 5 6822 5 6851 5 6808 5 6852 5 6851 5 6822 5 6853 5 6852 5 6822 5 6854 5 6852 5 6853 5 6855 5 6854 5 6853 5 6856 5 6854 5 6855 5 6857 5 6856 5 6855 5 6858 5 6856 5 6857 5 6859 5 6858 5 6857 5 6860 5 6858 5 6859 5 6861 5 6860 5 6859 5 6862 5 6860 5 6861 5 6863 5 6862 5 6861 5 6864 5 6862 5 6863 5 6866 5 6865 5 6865 5 6866 5 6865 5 6866 5 6867 5 6866 5 6866 5 6868 5 6866 5 6867 5 6869 5 6868 5 6867 5 6870 5 6868 5 6869 5 6871 5 6870 5 6869 5 6872 5 6870 5 6871 5 6873 5 6872 5 6871 5 6874 5 6872 5 6873 5 6875 5 6874 5 6873 5 6876 5 6874 5 6875 5 6877 5 6876 5 6875 5 6878 5 6876 5 6877 5 6881 5 6880 5 6879 5 6882 5 6880 5 6881 5 6883 5 6882 5 6881 5 6884 5 6882 5 6883 5 6885 5 6884 5 6883 5 6886 5 6884 5 6885 5 6887 5 6886 5 6885 5 6888 5 6886 5 6887 5 6889 5 6888 5 6887 5 6890 5 6888 5 6889 5 6891 5 6890 5 6889 5 6892 5 6890 5 6891 5 6893 5 6892 5 6891 5 6894 5 6892 5 6893 5 6866 5 6896 5 6895 5 6897 5 6896 5 6866 5 6898 5 6897 5 6866 5 6899 5 6897 5 6898 5 6900 5 6899 5 6898 5 6901 5 6899 5 6900 5 6902 5 6901 5 6900 5 6903 5 6901 5 6902 5 6904 5 6903 5 6902 5 6904 5 6903 5 6904 5 6905 5 6904 5 6904 5 6906 5 6904 5 6905 5 6907 5 6906 5 6905 5 6908 5 6906 5 6907 5 6910 5 6895 5 6909 5 6911 5 6895 5 6910 5 6912 5 6911 5 6910 5 6913 5 6911 5 6912 5 6914 5 6913 5 6912 5 6915 5 6913 5 6914 5 6916 5 6915 5 6914 5 6917 5 6915 5 6916 5 6918 5 6917 5 6916 5 6919 5 6917 5 6918 5 6920 5 6919 5 6918 5 6921 5 6919 5 6920 5 6922 5 6921 5 6920 5 6923 5 6921 5 6922 5 6925 0 6924 0 6865 5 6926 0 6924 0 6925 0 6927 0 6926 0 6925 0 6928 0 6926 0 6927 0 6929 0 6928 0 6927 0 6930 0 6928 0 6929 0 6931 1 6930 2 6929 2 6932 1 6930 2 6931 1 6933 3 6932 3 6931 3 6934 3 6932 3 6933 3 6935 3 6934 3 6933 3 6936 3 6934 3 6935 3 6937 3 6936 3 6935 3 6938 3 6936 3 6937 3 6941 5 6940 5 6939 5 6941 5 6940 5 6941 5 6942 5 6941 5 6941 5 6943 5 6941 5 6942 5 6944 5 6943 5 6942 5 6945 5 6943 5 6944 5 6946 5 6945 5 6944 5 6947 5 6945 5 6946 5 6948 5 6947 5 6946 5 6949 5 6947 5 6948 5 6950 5 6949 5 6948 5 6951 5 6949 5 6950 5 6952 5 6951 5 6950 5 6953 5 6951 5 6952 5 6956 5 6955 5 6954 5 6957 5 6955 5 6956 5 6958 5 6957 5 6956 5 6959 5 6957 5 6958 5 6960 5 6959 5 6958 5 6961 5 6959 5 6960 5 6962 5 6961 5 6960 5 6963 5 6961 5 6962 5 6964 5 6963 5 6962 5 6965 5 6963 5 6964 5 6966 5 6965 5 6964 5 6967 5 6965 5 6966 5 6968 5 6967 5 6966 5 6969 5 6967 5 6968 5 6956 5 6954 5 6940 5 6970 5 6954 5 6956 5 6971 5 6970 5 6956 5 6971 5 6970 5 6971 5 6972 5 6971 5 6971 5 6973 5 6971 5 6972 5 6974 5 6973 5 6972 5 6975 5 6973 5 6974 5 6976 5 6975 5 6974 5 6976 5 6975 5 6976 5 6977 5 6976 5 6976 5 6977 5 6976 5 6977 5 6978 5 6977 5 6977 5 6979 5 6977 5 6978 5 6982 5 6981 5 6980 5 6983 5 6981 5 6982 5 6984 5 6983 5 6982 5 6985 5 6983 5 6984 5 6986 5 6985 5 6984 5 6987 5 6985 5 6986 5 6988 5 6987 5 6986 5 6989 5 6987 5 6988 5 6990 5 6989 5 6988 5 6991 5 6989 5 6990 5 6992 5 6991 5 6990 5 6993 5 6991 5 6992 5 6994 5 6993 5 6992 5 6995 5 6993 5 6994 5 6996 5 6980 5 6981 5 6997 5 6980 5 6996 5 6998 5 6997 5 6996 5 6999 5 6997 5 6998 5 7000 5 6999 5 6998 5 7001 5 6999 5 7000 5 7002 5 7001 5 7000 5 7003 5 7001 5 7002 5 7004 5 7003 5 7002 5 7005 5 7003 5 7004 5 7006 5 7005 5 7004 5 7007 5 7005 5 7006 5 7008 5 7007 5 7006 5 7009 5 7007 5 7008 5 6982 5 7010 5 6980 5 7011 5 7010 5 6982 5 7012 5 7011 5 6982 5 7013 5 7011 5 7012 5 7014 5 7013 5 7012 5 7015 5 7013 5 7014 5 7016 5 7015 5 7014 5 7017 5 7015 5 7016 5 7018 5 7017 5 7016 5 7019 5 7017 5 7018 5 7020 5 7019 5 7018 5 7021 5 7019 5 7020 5 7022 5 7021 5 7020 5 7022 5 7021 5 7022 5 7024 5 7023 5 7010 5 7025 5 7023 5 7024 5 7026 5 7025 5 7024 5 7027 5 7025 5 7026 5 7028 5 7027 5 7026 5 7029 5 7027 5 7028 5 7030 5 7029 5 7028 5 7031 5 7029 5 7030 5 7032 5 7031 5 7030 5 7033 5 7031 5 7032 5 7034 5 7033 5 7032 5 7035 5 7033 5 7034 5 7036 5 7035 5 7034 5 7037 5 7035 5 7036 5 7039 5 6980 5 7038 5 7040 5 6980 5 7039 5 7041 5 7040 5 7039 5 7042 5 7040 5 7041 5 7043 5 7042 5 7041 5 7044 5 7042 5 7043 5 7045 5 7044 5 7043 5 7046 5 7044 5 7045 5 7047 5 7046 5 7045 5 7048 5 7046 5 7047 5 7049 5 7048 5 7047 5 7050 5 7048 5 7049 5 7051 5 7050 5 7049 5 7052 5 7050 5 7051 5 7024 5 7023 5 6981 5 7053 5 7023 5 7024 5 7054 5 7053 5 7024 5 7055 5 7053 5 7054 5 7056 5 7055 5 7054 5 7057 5 7055 5 7056 5 7058 5 7057 5 7056 5 7059 5 7057 5 7058 5 7060 5 7059 5 7058 5 7061 5 7059 5 7060 5 7062 5 7061 5 7060 5 7063 5 7061 5 7062 5 7064 5 7063 5 7062 5 7065 5 7063 5 7064 5 7068 5 7067 5 7066 5 7068 5 7067 5 7068 5 7069 5 7068 5 7068 5 7070 5 7068 5 7069 5 7071 5 7070 5 7069 5 7072 5 7070 5 7071 5 7073 5 7072 5 7071 5 7074 5 7072 5 7073 5 7075 5 7074 5 7073 5 7076 5 7074 5 7075 5 7077 5 7076 5 7075 5 7078 5 7076 5 7077 5 7079 5 7078 5 7077 5 7080 5 7078 5 7079 5 7083 5 7082 5 7081 5 7084 5 7082 5 7083 5 7085 5 7084 5 7083 5 7086 5 7084 5 7085 5 7087 5 7086 5 7085 5 7088 5 7086 5 7087 5 7089 5 7088 5 7087 5 7090 5 7088 5 7089 5 7091 5 7090 5 7089 5 7092 5 7090 5 7091 5 7093 5 7092 5 7091 5 7094 5 7092 5 7093 5 7095 5 7094 5 7093 5 7096 5 7094 5 7095 5 7068 5 7067 5 7082 5 7097 5 7067 5 7068 5 7098 5 7097 5 7068 5 7099 5 7097 5 7098 5 7100 5 7099 5 7098 5 7101 5 7099 5 7100 5 7102 5 7101 5 7100 5 7103 5 7101 5 7102 5 7104 5 7103 5 7102 5 7105 5 7103 5 7104 5 7106 5 7105 5 7104 5 7107 5 7105 5 7106 5 7108 5 7107 5 7106 5 7109 5 7107 5 7108 5 7111 5 7082 5 7110 5 7112 5 7082 5 7111 5 7113 5 7112 5 7111 5 7114 5 7112 5 7113 5 7115 5 7114 5 7113 5 7116 5 7114 5 7115 5 7117 5 7116 5 7115 5 7118 5 7116 5 7117 5 7119 5 7118 5 7117 5 7120 5 7118 5 7119 5 7121 5 7120 5 7119 5 7122 5 7120 5 7121 5 7123 5 7122 5 7121 5 7124 5 7122 5 7123 5 7127 0 7126 0 7125 5 7128 0 7126 0 7127 0 7129 0 7128 0 7127 0 7130 0 7128 0 7129 0 7131 0 7130 0 7129 0 7132 0 7130 0 7131 0 7133 1 7132 2 7131 2 7134 1 7132 2 7133 1 7135 3 7134 3 7133 3 7136 3 7134 3 7135 3 7137 3 7136 3 7135 3 7138 3 7136 3 7137 3 7139 3 7138 3 7137 3 7140 3 7138 3 7139 3 7142 5 6940 5 7141 5 7143 5 6940 5 7142 5 7144 5 7143 5 7142 5 7145 5 7143 5 7144 5 7146 5 7145 5 7144 5 7147 5 7145 5 7146 5 7148 5 7147 5 7146 5 7149 5 7147 5 7148 5 7150 5 7149 5 7148 5 7151 5 7149 5 7150 5 7152 5 7151 5 7150 5 7153 5 7151 5 7152 5 7154 5 7153 5 7152 5 7155 5 7153 5 7154 5 7157 0 7156 0 6940 5 7158 0 7156 0 7157 0 7159 0 7158 0 7157 0 7160 0 7158 0 7159 0 7161 0 7160 0 7159 0 7162 0 7160 0 7161 0 7163 1 7162 2 7161 2 7164 1 7162 2 7163 1 7165 3 7164 3 7163 3 7166 3 7164 3 7165 3 7167 3 7166 3 7165 3 7168 3 7166 3 7167 3 7169 3 7168 3 7167 3 7170 3 7168 3 7169 3 7173 5 7172 5 7171 5 7174 5 7172 5 7173 5 7175 5 7174 5 7173 5 7176 5 7174 5 7175 5 7177 5 7176 5 7175 5 7178 5 7176 5 7177 5 7179 5 7178 5 7177 5 7180 5 7178 5 7179 5 7181 5 7180 5 7179 5 7182 5 7180 5 7181 5 7183 5 7182 5 7181 5 7184 5 7182 5 7183 5 7185 5 7184 5 7183 5 7185 5 7184 5 7185 5 7188 5 7187 5 7186 5 7188 5 7187 5 7188 5 7189 5 7188 5 7188 5 7190 5 7188 5 7189 5 7191 5 7190 5 7189 5 7192 5 7190 5 7191 5 7193 5 7192 5 7191 5 7194 5 7192 5 7193 5 7195 5 7194 5 7193 5 7196 5 7194 5 7195 5 7197 5 7196 5 7195 5 7198 5 7196 5 7197 5 7199 5 7198 5 7197 5 7200 5 7198 5 7199 5 7203 5 7202 5 7201 5 7204 5 7202 5 7203 5 7205 5 7204 5 7203 5 7206 5 7204 5 7205 5 7207 5 7206 5 7205 5 7208 5 7206 5 7207 5 7209 5 7208 5 7207 5 7210 5 7208 5 7209 5 7211 5 7210 5 7209 5 7212 5 7210 5 7211 5 7213 5 7212 5 7211 5 7214 5 7212 5 7213 5 7215 5 7214 5 7213 5 7216 5 7214 5 7215 5 7188 5 7201 5 7202 5 7217 5 7201 5 7188 5 7218 5 7217 5 7188 5 7219 5 7217 5 7218 5 7220 5 7219 5 7218 5 7221 5 7219 5 7220 5 7222 5 7221 5 7220 5 7223 5 7221 5 7222 5 7224 5 7223 5 7222 5 7225 5 7223 5 7224 5 7226 5 7225 5 7224 5 7227 5 7225 5 7226 5 7228 5 7227 5 7226 5 7229 5 7227 5 7228 5 7230 5 7201 5 7186 5 7231 5 7201 5 7230 5 7232 5 7231 5 7230 5 7233 5 7231 5 7232 5 7234 5 7233 5 7232 5 7235 5 7233 5 7234 5 7236 5 7235 5 7234 5 7237 5 7235 5 7236 5 7238 5 7237 5 7236 5 7239 5 7237 5 7238 5 7240 5 7239 5 7238 5 7241 5 7239 5 7240 5 7242 5 7241 5 7240 5 7243 5 7241 5 7242 5 7230 5 7202 5 7244 5 7245 5 7202 5 7230 5 7246 5 7245 5 7230 5 7247 5 7245 5 7246 5 7248 5 7247 5 7246 5 7249 5 7247 5 7248 5 7250 5 7249 5 7248 5 7251 5 7249 5 7250 5 7252 5 7251 5 7250 5 7253 5 7251 5 7252 5 7254 5 7253 5 7252 5 7255 5 7253 5 7254 5 7256 5 7255 5 7254 5 7257 5 7255 5 7256 5 7230 5 7258 5 7187 5 7259 5 7258 5 7230 5 7260 5 7259 5 7230 5 7261 5 7259 5 7260 5 7262 5 7261 5 7260 5 7263 5 7261 5 7262 5 7264 5 7263 5 7262 5 7265 5 7263 5 7264 5 7266 5 7265 5 7264 5 7267 5 7265 5 7266 5 7268 5 7267 5 7266 5 7269 5 7267 5 7268 5 7270 5 7269 5 7268 5 7271 5 7269 5 7270 5 7273 5 7272 5 7272 5 7274 5 7272 5 7273 5 7275 5 7274 5 7273 5 7276 5 7274 5 7275 5 7277 5 7276 5 7275 5 7278 5 7276 5 7277 5 7279 5 7278 5 7277 5 7280 5 7278 5 7279 5 7281 5 7280 5 7279 5 7282 5 7280 5 7281 5 7283 5 7282 5 7281 5 7284 5 7282 5 7283 5 7285 5 7284 5 7283 5 7286 5 7284 5 7285 5 7288 5 7272 5 7287 5 7289 5 7272 5 7288 5 7290 5 7289 5 7288 5 7291 5 7289 5 7290 5 7292 5 7291 5 7290 5 7293 5 7291 5 7292 5 7294 5 7293 5 7292 5 7295 5 7293 5 7294 5 7296 5 7295 5 7294 5 7297 5 7295 5 7296 5 7298 5 7297 5 7296 5 7299 5 7297 5 7298 5 7300 5 7299 5 7298 5 7301 5 7299 5 7300 5 7273 5 7287 5 7272 5 7302 5 7287 5 7273 5 7303 5 7302 5 7273 5 7304 5 7302 5 7303 5 7305 5 7304 5 7303 5 7306 5 7304 5 7305 5 7307 5 7306 5 7305 5 7308 5 7306 5 7307 5 7309 5 7308 5 7307 5 7309 5 7308 5 7309 5 7310 5 7309 5 7309 5 7311 5 7309 5 7310 5 7312 5 7311 5 7310 5 7313 5 7311 5 7312 5 7315 5 7272 5 7314 5 7316 5 7272 5 7315 5 7317 5 7316 5 7315 5 7318 5 7316 5 7317 5 7319 5 7318 5 7317 5 7320 5 7318 5 7319 5 7321 5 7320 5 7319 5 7322 5 7320 5 7321 5 7323 5 7322 5 7321 5 7324 5 7322 5 7323 5 7325 5 7324 5 7323 5 7326 5 7324 5 7325 5 7327 5 7326 5 7325 5 7328 5 7326 5 7327 5 7331 0 7330 0 7329 5 7332 0 7330 0 7331 0 7333 0 7332 0 7331 0 7334 0 7332 0 7333 0 7335 0 7334 0 7333 0 7336 0 7334 0 7335 0 7337 1 7336 2 7335 2 7338 1 7336 2 7337 1 7339 3 7338 3 7337 3 7340 3 7338 3 7339 3 7341 3 7340 3 7339 3 7342 3 7340 3 7341 3 7343 3 7342 3 7341 3 7344 3 7342 3 7343 3 7173 5 7345 5 7171 5 7346 5 7345 5 7173 5 7347 5 7346 5 7173 5 7348 5 7346 5 7347 5 7349 5 7348 5 7347 5 7350 5 7348 5 7349 5 7351 5 7350 5 7349 5 7352 5 7350 5 7351 5 7353 5 7352 5 7351 5 7353 5 7352 5 7353 5 7354 5 7353 5 7353 5 7355 5 7353 5 7354 5 7356 5 7355 5 7354 5 7357 5 7355 5 7356 5 7173 5 7171 5 7358 5 7359 5 7171 5 7173 5 7360 5 7359 5 7173 5 7361 5 7359 5 7360 5 7362 5 7361 5 7360 5 7363 5 7361 5 7362 5 7364 5 7363 5 7362 5 7365 5 7363 5 7364 5 7366 5 7365 5 7364 5 7367 5 7365 5 7366 5 7368 5 7367 5 7366 5 7369 5 7367 5 7368 5 7370 5 7369 5 7368 5 7371 5 7369 5 7370 5 7373 5 7372 5 7171 5 7374 5 7372 5 7373 5 7375 5 7374 5 7373 5 7376 5 7374 5 7375 5 7377 5 7376 5 7375 5 7378 5 7376 5 7377 5 7379 5 7378 5 7377 5 7380 5 7378 5 7379 5 7381 5 7380 5 7379 5 7382 5 7380 5 7381 5 7383 5 7382 5 7381 5 7384 5 7382 5 7383 5 7385 5 7384 5 7383 5 7386 5 7384 5 7385 5 7389 5 7388 5 7387 5 7389 5 7388 5 7389 5 7390 5 7389 5 7389 5 7391 5 7389 5 7390 5 7392 5 7391 5 7390 5 7393 5 7391 5 7392 5 7394 5 7393 5 7392 5 7395 5 7393 5 7394 5 7396 5 7395 5 7394 5 7397 5 7395 5 7396 5 7398 5 7397 5 7396 5 7399 5 7397 5 7398 5 7400 5 7399 5 7398 5 7401 5 7399 5 7400 5 7403 5 7402 5 7388 5 7404 5 7402 5 7403 5 7405 5 7404 5 7403 5 7406 5 7404 5 7405 5 7407 5 7406 5 7405 5 7408 5 7406 5 7407 5 7409 5 7408 5 7407 5 7410 5 7408 5 7409 5 7411 5 7410 5 7409 5 7412 5 7410 5 7411 5 7413 5 7412 5 7411 5 7414 5 7412 5 7413 5 7415 5 7414 5 7413 5 7415 5 7414 5 7415 5 7417 5 7388 5 7416 5 7418 5 7388 5 7417 5 7419 5 7418 5 7417 5 7420 5 7418 5 7419 5 7421 5 7420 5 7419 5 7422 5 7420 5 7421 5 7423 5 7422 5 7421 5 7424 5 7422 5 7423 5 7425 5 7424 5 7423 5 7426 5 7424 5 7425 5 7427 5 7426 5 7425 5 7428 5 7426 5 7427 5 7429 5 7428 5 7427 5 7430 5 7428 5 7429 5 7431 5 7388 5 7387 5 7432 5 7388 5 7431 5 7433 5 7432 5 7431 5 7434 5 7432 5 7433 5 7435 5 7434 5 7433 5 7436 5 7434 5 7435 5 7437 5 7436 5 7435 5 7438 5 7436 5 7437 5 7439 5 7438 5 7437 5 7440 5 7438 5 7439 5 7441 5 7440 5 7439 5 7442 5 7440 5 7441 5 7443 5 7442 5 7441 5 7444 5 7442 5 7443 5 7446 5 7402 5 7445 5 7447 5 7402 5 7446 5 7448 5 7447 5 7446 5 7449 5 7447 5 7448 5 7450 5 7449 5 7448 5 7451 5 7449 5 7450 5 7452 5 7451 5 7450 5 7453 5 7451 5 7452 5 7454 5 7453 5 7452 5 7455 5 7453 5 7454 5 7456 5 7455 5 7454 5 7457 5 7455 5 7456 5 7458 5 7457 5 7456 5 7459 5 7457 5 7458 5 7431 5 7461 5 7460 5 7462 5 7461 5 7431 5 7463 5 7462 5 7431 5 7464 5 7462 5 7463 5 7465 5 7464 5 7463 5 7466 5 7464 5 7465 5 7467 5 7466 5 7465 5 7468 5 7466 5 7467 5 7469 5 7468 5 7467 5 7470 5 7468 5 7469 5 7471 5 7470 5 7469 5 7472 5 7470 5 7471 5 7473 5 7472 5 7471 5 7474 5 7472 5 7473 5 7477 5 7476 5 7475 5 7478 5 7476 5 7477 5 7479 5 7478 5 7477 5 7480 5 7478 5 7479 5 7481 5 7480 5 7479 5 7482 5 7480 5 7481 5 7483 5 7482 5 7481 5 7484 5 7482 5 7483 5 7485 5 7484 5 7483 5 7486 5 7484 5 7485 5 7487 5 7486 5 7485 5 7488 5 7486 5 7487 5 7489 5 7488 5 7487 5 7490 5 7488 5 7489 5 7477 5 7491 5 7476 5 7492 5 7491 5 7477 5 7493 5 7492 5 7477 5 7494 5 7492 5 7493 5 7495 5 7494 5 7493 5 7496 5 7494 5 7495 5 7497 5 7496 5 7495 5 7498 5 7496 5 7497 5 7499 5 7498 5 7497 5 7500 5 7498 5 7499 5 7501 5 7500 5 7499 5 7502 5 7500 5 7501 5 7503 5 7502 5 7501 5 7504 5 7502 5 7503 5 7477 5 7505 5 7491 5 7506 5 7505 5 7477 5 7507 5 7506 5 7477 5 7508 5 7506 5 7507 5 7509 5 7508 5 7507 5 7510 5 7508 5 7509 5 7511 5 7510 5 7509 5 7511 5 7510 5 7511 5 7512 5 7511 5 7511 5 7513 5 7511 5 7512 5 7514 5 7513 5 7512 5 7515 5 7513 5 7514 5 7516 5 7515 5 7514 5 7517 5 7515 5 7516 5 7519 5 7491 5 7518 5 7520 5 7491 5 7519 5 7521 5 7520 5 7519 5 7522 5 7520 5 7521 5 7523 5 7522 5 7521 5 7524 5 7522 5 7523 5 7525 5 7524 5 7523 5 7526 5 7524 5 7525 5 7527 5 7526 5 7525 5 7528 5 7526 5 7527 5 7529 5 7528 5 7527 5 7530 5 7528 5 7529 5 7531 5 7530 5 7529 5 7532 5 7530 5 7531 5 7534 4 7533 4 7476 6 7535 4 7533 4 7534 4 7536 4 7535 4 7534 4 7537 4 7535 4 7536 4 7538 4 7537 4 7536 4 7539 4 7537 4 7538 4 7540 4 7539 4 7538 4 7541 4 7539 4 7540 4 7542 4 7541 4 7540 4 7543 4 7541 4 7542 4 7544 4 7543 4 7542 4 7545 4 7543 4 7544 4 7546 4 7545 4 7544 4 7547 4 7545 4 7546 4 7549 5 7345 5 7548 5 7550 5 7345 5 7549 5 7551 5 7550 5 7549 5 7552 5 7550 5 7551 5 7553 5 7552 5 7551 5 7554 5 7552 5 7553 5 7555 5 7554 5 7553 5 7556 5 7554 5 7555 5 7557 5 7556 5 7555 5 7558 5 7556 5 7557 5 7559 5 7558 5 7557 5 7560 5 7558 5 7559 5 7561 5 7560 5 7559 5 7562 5 7560 5 7561 5 7373 5 7372 5 7172 5 7563 5 7372 5 7373 5 7564 5 7563 5 7373 5 7565 5 7563 5 7564 5 7566 5 7565 5 7564 5 7567 5 7565 5 7566 5 7568 5 7567 5 7566 5 7569 5 7567 5 7568 5 7570 5 7569 5 7568 5 7571 5 7569 5 7570 5 7572 5 7571 5 7570 5 7573 5 7571 5 7572 5 7574 5 7573 5 7572 5 7575 5 7573 5 7574 5 7577 5 7576 5 7576 5 7578 5 7576 5 7577 5 7579 5 7578 5 7577 5 7580 5 7578 5 7579 5 7581 5 7580 5 7579 5 7582 5 7580 5 7581 5 7583 5 7582 5 7581 5 7584 5 7582 5 7583 5 7585 5 7584 5 7583 5 7586 5 7584 5 7585 5 7587 5 7586 5 7585 5 7588 5 7586 5 7587 5 7589 5 7588 5 7587 5 7590 5 7588 5 7589 5 7593 5 7592 5 7591 5 7594 5 7592 5 7593 5 7595 5 7594 5 7593 5 7596 5 7594 5 7595 5 7597 5 7596 5 7595 5 7598 5 7596 5 7597 5 7599 5 7598 5 7597 5 7600 5 7598 5 7599 5 7601 5 7600 5 7599 5 7602 5 7600 5 7601 5 7603 5 7602 5 7601 5 7604 5 7602 5 7603 5 7605 5 7604 5 7603 5 7605 5 7604 5 7605 5 7593 5 7607 5 7606 5 7608 5 7607 5 7593 5 7609 5 7608 5 7593 5 7610 5 7608 5 7609 5 7611 5 7610 5 7609 5 7612 5 7610 5 7611 5 7613 5 7612 5 7611 5 7614 5 7612 5 7613 5 7615 5 7614 5 7613 5 7616 5 7614 5 7615 5 7617 5 7616 5 7615 5 7617 5 7616 5 7617 5 7618 5 7617 5 7617 5 7619 5 7617 5 7618 5 7593 5 7620 5 7607 5 7621 5 7620 5 7593 5 7622 5 7621 5 7593 5 7623 5 7621 5 7622 5 7624 5 7623 5 7622 5 7625 5 7623 5 7624 5 7626 5 7625 5 7624 5 7626 5 7625 5 7626 5 7627 5 7626 5 7626 5 7628 5 7626 5 7627 5 7629 5 7628 5 7627 5 7630 5 7628 5 7629 5 7631 5 7630 5 7629 5 7632 5 7630 5 7631 5 7634 5 7606 5 7633 5 7635 5 7606 5 7634 5 7636 5 7635 5 7634 5 7637 5 7635 5 7636 5 7638 5 7637 5 7636 5 7639 5 7637 5 7638 5 7640 5 7639 5 7638 5 7641 5 7639 5 7640 5 7642 5 7641 5 7640 5 7643 5 7641 5 7642 5 7644 5 7643 5 7642 5 7645 5 7643 5 7644 5 7646 5 7645 5 7644 5 7647 5 7645 5 7646 5 7650 5 7649 5 7648 5 7651 5 7649 5 7650 5 7652 5 7651 5 7650 5 7653 5 7651 5 7652 5 7654 5 7653 5 7652 5 7655 5 7653 5 7654 5 7656 5 7655 5 7654 5 7657 5 7655 5 7656 5 7658 5 7657 5 7656 5 7659 5 7657 5 7658 5 7660 5 7659 5 7658 5 7661 5 7659 5 7660 5 7662 5 7661 5 7660 5 7663 5 7661 5 7662 5 7634 5 7620 5 7664 5 7665 5 7620 5 7634 5 7666 5 7665 5 7634 5 7667 5 7665 5 7666 5 7668 5 7667 5 7666 5 7669 5 7667 5 7668 5 7670 5 7669 5 7668 5 7671 5 7669 5 7670 5 7672 5 7671 5 7670 5 7673 5 7671 5 7672 5 7674 5 7673 5 7672 5 7675 5 7673 5 7674 5 7676 5 7675 5 7674 5 7677 5 7675 5 7676 5 7680 5 7679 5 7678 5 7680 5 7679 5 7680 5 7681 5 7680 5 7680 5 7682 5 7680 5 7681 5 7683 5 7682 5 7681 5 7684 5 7682 5 7683 5 7685 5 7684 5 7683 5 7686 5 7684 5 7685 5 7687 5 7686 5 7685 5 7688 5 7686 5 7687 5 7689 5 7688 5 7687 5 7690 5 7688 5 7689 5 7691 5 7690 5 7689 5 7691 5 7690 5 7691 5 7694 5 7693 5 7692 5 7695 5 7693 5 7694 5 7696 5 7695 5 7694 5 7697 5 7695 5 7696 5 7698 5 7697 5 7696 5 7699 5 7697 5 7698 5 7700 5 7699 5 7698 5 7701 5 7699 5 7700 5 7702 5 7701 5 7700 5 7702 5 7701 5 7702 5 7703 5 7702 5 7702 5 7703 5 7702 5 7703 5 7704 5 7703 5 7703 5 7705 5 7703 5 7704 5 7694 5 7692 5 7679 5 7706 5 7692 5 7694 5 7707 5 7706 5 7694 5 7708 5 7706 5 7707 5 7709 5 7708 5 7707 5 7710 5 7708 5 7709 5 7711 5 7710 5 7709 5 7712 5 7710 5 7711 5 7713 5 7712 5 7711 5 7713 5 7712 5 7713 5 7714 5 7713 5 7713 5 7715 5 7713 5 7714 5 7716 5 7715 5 7714 5 7717 5 7715 5 7716 5 7719 5 7679 5 7718 5 7720 5 7679 5 7719 5 7721 5 7720 5 7719 5 7722 5 7720 5 7721 5 7723 5 7722 5 7721 5 7724 5 7722 5 7723 5 7725 5 7724 5 7723 5 7726 5 7724 5 7725 5 7727 5 7726 5 7725 5 7728 5 7726 5 7727 5 7729 5 7728 5 7727 5 7730 5 7728 5 7729 5 7731 5 7730 5 7729 5 7732 5 7730 5 7731 5 7734 4 7733 4 7679 6 7735 4 7733 4 7734 4 7736 4 7735 4 7734 4 7737 4 7735 4 7736 4 7738 4 7737 4 7736 4 7739 4 7737 4 7738 4 7740 4 7739 4 7738 4 7741 4 7739 4 7740 4 7742 4 7741 4 7740 4 7743 4 7741 4 7742 4 7744 4 7743 4 7742 4 7745 4 7743 4 7744 4 7746 4 7745 4 7744 4 7747 4 7745 4 7746 4 7750 5 7749 5 7748 5 7751 5 7749 5 7750 5 7752 5 7751 5 7750 5 7753 5 7751 5 7752 5 7754 5 7753 5 7752 5 7755 5 7753 5 7754 5 7756 5 7755 5 7754 5 7756 5 7755 5 7756 5 7757 5 7756 5 7756 5 7758 5 7756 5 7757 5 7759 5 7758 5 7757 5 7760 5 7758 5 7759 5 7761 5 7760 5 7759 5 7762 5 7760 5 7761 5 7763 5 7748 5 7576 5 7764 5 7748 5 7763 5 7765 5 7764 5 7763 5 7765 5 7764 5 7765 5 7766 5 7765 5 7765 5 7767 5 7765 5 7766 5 7768 5 7767 5 7766 5 7769 5 7767 5 7768 5 7770 5 7769 5 7768 5 7771 5 7769 5 7770 5 7772 5 7771 5 7770 5 7773 5 7771 5 7772 5 7774 5 7773 5 7772 5 7775 5 7773 5 7774 5 7777 5 7576 5 7776 5 7778 5 7576 5 7777 5 7779 5 7778 5 7777 5 7780 5 7778 5 7779 5 7781 5 7780 5 7779 5 7782 5 7780 5 7781 5 7783 5 7782 5 7781 5 7784 5 7782 5 7783 5 7785 5 7784 5 7783 5 7786 5 7784 5 7785 5 7787 5 7786 5 7785 5 7788 5 7786 5 7787 5 7789 5 7788 5 7787 5 7790 5 7788 5 7789 5 7793 5 7792 5 7791 5 7793 5 7792 5 7793 5 7794 5 7793 5 7793 5 7794 5 7793 5 7794 5 7795 5 7794 5 7794 5 7796 5 7794 5 7795 5 7797 5 7796 5 7795 5 7798 5 7796 5 7797 5 7799 5 7798 5 7797 5 7800 5 7798 5 7799 5 7801 5 7800 5 7799 5 7802 5 7800 5 7801 5 7803 5 7802 5 7801 5 7803 5 7802 5 7803 5 7806 5 7805 5 7804 5 7807 5 7805 5 7806 5 7808 5 7807 5 7806 5 7809 5 7807 5 7808 5 7810 5 7809 5 7808 5 7811 5 7809 5 7810 5 7812 5 7811 5 7810 5 7813 5 7811 5 7812 5 7814 5 7813 5 7812 5 7815 5 7813 5 7814 5 7816 5 7815 5 7814 5 7817 5 7815 5 7816 5 7818 5 7817 5 7816 5 7818 5 7817 5 7818 5 7793 5 7820 5 7819 5 7821 5 7820 5 7793 5 7822 5 7821 5 7793 5 7823 5 7821 5 7822 5 7824 5 7823 5 7822 5 7825 5 7823 5 7824 5 7826 5 7825 5 7824 5 7827 5 7825 5 7826 5 7828 5 7827 5 7826 5 7829 5 7827 5 7828 5 7830 5 7829 5 7828 5 7831 5 7829 5 7830 5 7832 5 7831 5 7830 5 7833 5 7831 5 7832 5 7835 5 7804 5 7834 5 7836 5 7804 5 7835 5 7837 5 7836 5 7835 5 7838 5 7836 5 7837 5 7839 5 7838 5 7837 5 7840 5 7838 5 7839 5 7841 5 7840 5 7839 5 7842 5 7840 5 7841 5 7843 5 7842 5 7841 5 7844 5 7842 5 7843 5 7845 5 7844 5 7843 5 7846 5 7844 5 7845 5 7847 5 7846 5 7845 5 7848 5 7846 5 7847 5 7850 5 7805 5 7849 5 7851 5 7805 5 7850 5 7852 5 7851 5 7850 5 7853 5 7851 5 7852 5 7854 5 7853 5 7852 5 7855 5 7853 5 7854 5 7856 5 7855 5 7854 5 7857 5 7855 5 7856 5 7858 5 7857 5 7856 5 7859 5 7857 5 7858 5 7860 5 7859 5 7858 5 7861 5 7859 5 7860 5 7862 5 7861 5 7860 5 7863 5 7861 5 7862 5 7835 5 7864 5 7791 5 7865 5 7864 5 7835 5 7866 5 7865 5 7835 5 7867 5 7865 5 7866 5 7868 5 7867 5 7866 5 7869 5 7867 5 7868 5 7870 5 7869 5 7868 5 7871 5 7869 5 7870 5 7872 5 7871 5 7870 5 7873 5 7871 5 7872 5 7874 5 7873 5 7872 5 7875 5 7873 5 7874 5 7876 5 7875 5 7874 5 7877 5 7875 5 7876 5 7879 5 7878 5 7878 5 7880 5 7878 5 7879 5 7881 5 7880 5 7879 5 7882 5 7880 5 7881 5 7883 5 7882 5 7881 5 7884 5 7882 5 7883 5 7885 5 7884 5 7883 5 7886 5 7884 5 7885 5 7887 5 7886 5 7885 5 7888 5 7886 5 7887 5 7889 5 7888 5 7887 5 7890 5 7888 5 7889 5 7891 5 7890 5 7889 5 7891 5 7890 5 7891 5 7894 5 7893 5 7892 5 7895 5 7893 5 7894 5 7896 5 7895 5 7894 5 7897 5 7895 5 7896 5 7898 5 7897 5 7896 5 7899 5 7897 5 7898 5 7900 5 7899 5 7898 5 7901 5 7899 5 7900 5 7902 5 7901 5 7900 5 7903 5 7901 5 7902 5 7904 5 7903 5 7902 5 7905 5 7903 5 7904 5 7906 5 7905 5 7904 5 7907 5 7905 5 7906 5 7879 5 7892 5 7878 5 7908 5 7892 5 7879 5 7909 5 7908 5 7879 5 7910 5 7908 5 7909 5 7911 5 7910 5 7909 5 7912 5 7910 5 7911 5 7913 5 7912 5 7911 5 7914 5 7912 5 7913 5 7915 5 7914 5 7913 5 7916 5 7914 5 7915 5 7917 5 7916 5 7915 5 7918 5 7916 5 7917 5 7919 5 7918 5 7917 5 7920 5 7918 5 7919 5 7922 5 7878 5 7921 5 7923 5 7878 5 7922 5 7924 5 7923 5 7922 5 7925 5 7923 5 7924 5 7926 5 7925 5 7924 5 7927 5 7925 5 7926 5 7928 5 7927 5 7926 5 7929 5 7927 5 7928 5 7930 5 7929 5 7928 5 7931 5 7929 5 7930 5 7932 5 7931 5 7930 5 7933 5 7931 5 7932 5 7934 5 7933 5 7932 5 7935 5 7933 5 7934 5 7937 0 7936 0 7878 5 7938 0 7936 0 7937 0 7939 0 7938 0 7937 0 7940 0 7938 0 7939 0 7941 0 7940 0 7939 0 7942 0 7940 0 7941 0 7943 1 7942 2 7941 2 7944 1 7942 2 7943 1 7945 3 7944 3 7943 3 7946 3 7944 3 7945 3 7947 3 7946 3 7945 3 7948 3 7946 3 7947 3 7949 3 7948 3 7947 3 7950 3 7948 3 7949 3 7952 3 7951 3 7576 7 7953 3 7951 3 7952 3 7954 3 7953 3 7952 3 7955 3 7953 3 7954 3 7956 3 7955 3 7954 3 7957 3 7955 3 7956 3 7958 3 7957 3 7956 3 7959 3 7957 3 7958 3 7960 3 7959 3 7958 3 7961 3 7959 3 7960 3 7962 3 7961 3 7960 3 7963 3 7961 3 7962 3 7964 3 7963 3 7962 3 7965 3 7963 3 7964 3 7968 5 7967 5 7966 5 7968 5 7967 5 7968 5 7969 5 7968 5 7968 5 7970 5 7968 5 7969 5 7971 5 7970 5 7969 5 7972 5 7970 5 7971 5 7973 5 7972 5 7971 5 7974 5 7972 5 7973 5 7975 5 7974 5 7973 5 7976 5 7974 5 7975 5 7977 5 7976 5 7975 5 7978 5 7976 5 7977 5 7979 5 7978 5 7977 5 7980 5 7978 5 7979 5 7983 5 7982 5 7981 5 7984 5 7982 5 7983 5 7985 5 7984 5 7983 5 7986 5 7984 5 7985 5 7987 5 7986 5 7985 5 7988 5 7986 5 7987 5 7989 5 7988 5 7987 5 7990 5 7988 5 7989 5 7991 5 7990 5 7989 5 7992 5 7990 5 7991 5 7993 5 7992 5 7991 5 7994 5 7992 5 7993 5 7995 5 7994 5 7993 5 7996 5 7994 5 7995 5 7998 5 7997 5 7997 5 7999 5 7997 5 7998 5 8000 5 7999 5 7998 5 8001 5 7999 5 8000 5 8002 5 8001 5 8000 5 8003 5 8001 5 8002 5 8004 5 8003 5 8002 5 8005 5 8003 5 8004 5 8006 5 8005 5 8004 5 8007 5 8005 5 8006 5 8008 5 8007 5 8006 5 8009 5 8007 5 8008 5 8010 5 8009 5 8008 5 8011 5 8009 5 8010 5 8013 5 8012 5 7997 5 8014 5 8012 5 8013 5 8015 5 8014 5 8013 5 8016 5 8014 5 8015 5 8017 5 8016 5 8015 5 8018 5 8016 5 8017 5 8019 5 8018 5 8017 5 8020 5 8018 5 8019 5 8021 5 8020 5 8019 5 8022 5 8020 5 8021 5 8023 5 8022 5 8021 5 8024 5 8022 5 8023 5 8025 5 8024 5 8023 5 8026 5 8024 5 8025 5 7998 5 7997 5 8012 5 8027 5 7997 5 7998 5 8028 5 8027 5 7998 5 8029 5 8027 5 8028 5 8030 5 8029 5 8028 5 8031 5 8029 5 8030 5 8032 5 8031 5 8030 5 8033 5 8031 5 8032 5 8034 5 8033 5 8032 5 8035 5 8033 5 8034 5 8036 5 8035 5 8034 5 8037 5 8035 5 8036 5 8038 5 8037 5 8036 5 8039 5 8037 5 8038 5 8041 5 8040 5 7997 5 8042 5 8040 5 8041 5 8043 5 8042 5 8041 5 8044 5 8042 5 8043 5 8045 5 8044 5 8043 5 8046 5 8044 5 8045 5 8047 5 8046 5 8045 5 8048 5 8046 5 8047 5 8049 5 8048 5 8047 5 8050 5 8048 5 8049 5 8051 5 8050 5 8049 5 8052 5 8050 5 8051 5 8053 5 8052 5 8051 5 8054 5 8052 5 8053 5 8056 5 8012 5 8055 5 8057 5 8012 5 8056 5 8058 5 8057 5 8056 5 8059 5 8057 5 8058 5 8060 5 8059 5 8058 5 8061 5 8059 5 8060 5 8062 5 8061 5 8060 5 8063 5 8061 5 8062 5 8064 5 8063 5 8062 5 8065 5 8063 5 8064 5 8066 5 8065 5 8064 5 8067 5 8065 5 8066 5 8068 5 8067 5 8066 5 8069 5 8067 5 8068 5 8041 5 8055 5 8070 5 8071 5 8055 5 8041 5 8072 5 8071 5 8041 5 8073 5 8071 5 8072 5 8074 5 8073 5 8072 5 8075 5 8073 5 8074 5 8076 5 8075 5 8074 5 8077 5 8075 5 8076 5 8078 5 8077 5 8076 5 8079 5 8077 5 8078 5 8080 5 8079 5 8078 5 8081 5 8079 5 8080 5 8082 5 8081 5 8080 5 8083 5 8081 5 8082 5 8086 5 8085 5 8084 5 8087 5 8085 5 8086 5 8088 5 8087 5 8086 5 8089 5 8087 5 8088 5 8090 5 8089 5 8088 5 8091 5 8089 5 8090 5 8092 5 8091 5 8090 5 8093 5 8091 5 8092 5 8094 5 8093 5 8092 5 8095 5 8093 5 8094 5 8096 5 8095 5 8094 5 8097 5 8095 5 8096 5 8098 5 8097 5 8096 5 8099 5 8097 5 8098 5 8101 5 8100 5 8085 5 8102 5 8100 5 8101 5 8103 5 8102 5 8101 5 8104 5 8102 5 8103 5 8105 5 8104 5 8103 5 8106 5 8104 5 8105 5 8107 5 8106 5 8105 5 8108 5 8106 5 8107 5 8109 5 8108 5 8107 5 8110 5 8108 5 8109 5 8111 5 8110 5 8109 5 8112 5 8110 5 8111 5 8113 5 8112 5 8111 5 8114 5 8112 5 8113 5 8115 5 8085 5 8100 5 8116 5 8085 5 8115 5 8117 5 8116 5 8115 5 8117 5 8116 5 8117 5 8118 5 8117 5 8117 5 8119 5 8117 5 8118 5 8120 5 8119 5 8118 5 8121 5 8119 5 8120 5 8122 5 8121 5 8120 5 8122 5 8121 5 8122 5 8123 5 8122 5 8122 5 8124 5 8122 5 8123 5 8125 5 8124 5 8123 5 8126 5 8124 5 8125 5 8128 5 8100 5 8127 5 8129 5 8100 5 8128 5 8130 5 8129 5 8128 5 8131 5 8129 5 8130 5 8132 5 8131 5 8130 5 8133 5 8131 5 8132 5 8134 5 8133 5 8132 5 8135 5 8133 5 8134 5 8136 5 8135 5 8134 5 8137 5 8135 5 8136 5 8138 5 8137 5 8136 5 8139 5 8137 5 8138 5 8140 5 8139 5 8138 5 8141 5 8139 5 8140 5 8143 3 8142 3 8084 7 8144 3 8142 3 8143 3 8145 3 8144 3 8143 3 8146 3 8144 3 8145 3 8147 3 8146 3 8145 3 8148 3 8146 3 8147 3 8149 3 8148 3 8147 3 8150 3 8148 3 8149 3 8151 3 8150 3 8149 3 8152 3 8150 3 8151 3 8153 3 8152 3 8151 3 8154 3 8152 3 8153 3 8155 3 8154 3 8153 3 8156 3 8154 3 8155 3 7968 5 7981 5 8157 5 8158 5 7981 5 7968 5 8159 5 8158 5 7968 5 8160 5 8158 5 8159 5 8161 5 8160 5 8159 5 8162 5 8160 5 8161 5 8163 5 8162 5 8161 5 8164 5 8162 5 8163 5 8165 5 8164 5 8163 5 8166 5 8164 5 8165 5 8167 5 8166 5 8165 5 8168 5 8166 5 8167 5 8169 5 8168 5 8167 5 8170 5 8168 5 8169 5 8171 5 7981 5 7967 5 8172 5 7981 5 8171 5 8173 5 8172 5 8171 5 8174 5 8172 5 8173 5 8175 5 8174 5 8173 5 8176 5 8174 5 8175 5 8177 5 8176 5 8175 5 8178 5 8176 5 8177 5 8179 5 8178 5 8177 5 8180 5 8178 5 8179 5 8181 5 8180 5 8179 5 8182 5 8180 5 8181 5 8183 5 8182 5 8181 5 8184 5 8182 5 8183 5 8186 5 7966 5 8185 5 8187 5 7966 5 8186 5 8188 5 8187 5 8186 5 8189 5 8187 5 8188 5 8190 5 8189 5 8188 5 8191 5 8189 5 8190 5 8192 5 8191 5 8190 5 8193 5 8191 5 8192 5 8194 5 8193 5 8192 5 8195 5 8193 5 8194 5 8196 5 8195 5 8194 5 8197 5 8195 5 8196 5 8198 5 8197 5 8196 5 8199 5 8197 5 8198 5 8202 5 8201 5 8200 5 8203 5 8201 5 8202 5 8204 5 8203 5 8202 5 8205 5 8203 5 8204 5 8206 5 8205 5 8204 5 8207 5 8205 5 8206 5 8208 5 8207 5 8206 5 8209 5 8207 5 8208 5 8210 5 8209 5 8208 5 8211 5 8209 5 8210 5 8212 5 8211 5 8210 5 8213 5 8211 5 8212 5 8214 5 8213 5 8212 5 8215 5 8213 5 8214 5 8203 5 8216 5 8201 5 8217 5 8216 5 8203 5 8218 5 8217 5 8203 5 8219 5 8217 5 8218 5 8220 5 8219 5 8218 5 8221 5 8219 5 8220 5 8222 5 8221 5 8220 5 8223 5 8221 5 8222 5 8224 5 8223 5 8222 5 8225 5 8223 5 8224 5 8226 5 8225 5 8224 5 8227 5 8225 5 8226 5 8228 5 8227 5 8226 5 8229 5 8227 5 8228 5 8202 5 8230 5 8216 5 8231 5 8230 5 8202 5 8232 5 8231 5 8202 5 8233 5 8231 5 8232 5 8234 5 8233 5 8232 5 8235 5 8233 5 8234 5 8236 5 8235 5 8234 5 8237 5 8235 5 8236 5 8238 5 8237 5 8236 5 8238 5 8237 5 8238 5 8239 5 8238 5 8238 5 8240 5 8238 5 8239 5 8241 5 8240 5 8239 5 8242 5 8240 5 8241 5 8245 5 8244 5 8243 5 8246 5 8244 5 8245 5 8247 5 8246 5 8245 5 8248 5 8246 5 8247 5 8249 5 8248 5 8247 5 8250 5 8248 5 8249 5 8251 5 8250 5 8249 5 8252 5 8250 5 8251 5 8253 5 8252 5 8251 5 8254 5 8252 5 8253 5 8255 5 8254 5 8253 5 8256 5 8254 5 8255 5 8257 5 8256 5 8255 5 8258 5 8256 5 8257 5 8260 5 8200 5 8259 5 8261 5 8200 5 8260 5 8262 5 8261 5 8260 5 8263 5 8261 5 8262 5 8264 5 8263 5 8262 5 8265 5 8263 5 8264 5 8266 5 8265 5 8264 5 8267 5 8265 5 8266 5 8268 5 8267 5 8266 5 8269 5 8267 5 8268 5 8270 5 8269 5 8268 5 8271 5 8269 5 8270 5 8272 5 8271 5 8270 5 8273 5 8271 5 8272 5 8245 5 8230 5 8243 5 8274 5 8230 5 8245 5 8275 5 8274 5 8245 5 8276 5 8274 5 8275 5 8277 5 8276 5 8275 5 8278 5 8276 5 8277 5 8279 5 8278 5 8277 5 8280 5 8278 5 8279 5 8281 5 8280 5 8279 5 8282 5 8280 5 8281 5 8283 5 8282 5 8281 5 8284 5 8282 5 8283 5 8285 5 8284 5 8283 5 8286 5 8284 5 8285 5 8289 5 8288 5 8287 5 8290 5 8288 5 8289 5 8291 5 8290 5 8289 5 8292 5 8290 5 8291 5 8293 5 8292 5 8291 5 8294 5 8292 5 8293 5 8295 5 8294 5 8293 5 8296 5 8294 5 8295 5 8297 5 8296 5 8295 5 8298 5 8296 5 8297 5 8299 5 8298 5 8297 5 8300 5 8298 5 8299 5 8301 5 8300 5 8299 5 8302 5 8300 5 8301 5 8289 5 8304 5 8303 5 8305 5 8304 5 8289 5 8306 5 8305 5 8289 5 8307 5 8305 5 8306 5 8308 5 8307 5 8306 5 8309 5 8307 5 8308 5 8310 5 8309 5 8308 5 8311 5 8309 5 8310 5 8312 5 8311 5 8310 5 8313 5 8311 5 8312 5 8314 5 8313 5 8312 5 8315 5 8313 5 8314 5 8316 5 8315 5 8314 5 8317 5 8315 5 8316 5 8320 5 8319 5 8318 5 8321 5 8319 5 8320 5 8322 5 8321 5 8320 5 8323 5 8321 5 8322 5 8324 5 8323 5 8322 5 8325 5 8323 5 8324 5 8326 5 8325 5 8324 5 8326 5 8325 5 8326 5 8327 5 8326 5 8326 5 8328 5 8326 5 8327 5 8329 5 8328 5 8327 5 8330 5 8328 5 8329 5 8331 5 8330 5 8329 5 8332 5 8330 5 8331 5 8334 5 8287 5 8333 5 8335 5 8287 5 8334 5 8336 5 8335 5 8334 5 8337 5 8335 5 8336 5 8338 5 8337 5 8336 5 8339 5 8337 5 8338 5 8340 5 8339 5 8338 5 8341 5 8339 5 8340 5 8342 5 8341 5 8340 5 8343 5 8341 5 8342 5 8344 5 8343 5 8342 5 8345 5 8343 5 8344 5 8346 5 8345 5 8344 5 8347 5 8345 5 8346 5 8350 0 8349 0 8348 5 8351 0 8349 0 8350 0 8352 0 8351 0 8350 0 8353 0 8351 0 8352 0 8354 0 8353 0 8352 0 8355 0 8353 0 8354 0 8356 1 8355 2 8354 2 8357 1 8355 2 8356 1 8358 3 8357 3 8356 3 8359 3 8357 3 8358 3 8360 3 8359 3 8358 3 8361 3 8359 3 8360 3 8362 3 8361 3 8360 3 8363 3 8361 3 8362 3 8365 5 8364 5 7967 5 8366 5 8364 5 8365 5 8367 5 8366 5 8365 5 8368 5 8366 5 8367 5 8369 5 8368 5 8367 5 8370 5 8368 5 8369 5 8371 5 8370 5 8369 5 8372 5 8370 5 8371 5 8373 5 8372 5 8371 5 8374 5 8372 5 8373 5 8375 5 8374 5 8373 5 8376 5 8374 5 8375 5 8377 5 8376 5 8375 5 8378 5 8376 5 8377 5 2092 5 8379 5 8379 5 2092 5 8379 5 2092 5 8380 5 2092 5 2092 5 8381 5 2092 5 8380 5 8382 5 8381 5 8380 5 8383 5 8381 5 8382 5 8384 5 8383 5 8382 5 8385 5 8383 5 8384 5 8386 5 8385 5 8384 5 8387 5 8385 5 8386 5 8388 5 8387 5 8386 5 8389 5 8387 5 8388 5 8390 5 8389 5 8388 5 8391 5 8389 5 8390 5 8392 5 2090 5 2091 5 8393 5 2090 5 8392 5 8394 5 8393 5 8392 5 8395 5 8393 5 8394 5 8396 5 8395 5 8394 5 8397 5 8395 5 8396 5 8398 5 8397 5 8396 5 8399 5 8397 5 8398 5 8400 5 8399 5 8398 5 8401 5 8399 5 8400 5 8402 5 8401 5 8400 5 8403 5 8401 5 8402 5 8404 5 8403 5 8402 5 8405 5 8403 5 8404 5 8408 8 8407 8 8406 8 8409 8 8407 8 8408 8 8410 8 8409 8 8408 8 8413 8 8412 8 8411 8 8414 8 8412 8 8413 8 8415 8 8414 8 8413 8 8418 8 8417 8 8416 8 8419 8 8417 8 8418 8 8420 8 8419 8 8418 8 8423 8 8422 8 8421 8 8424 8 8422 8 8423 8 8425 8 8424 8 8423 8 8428 8 8427 8 8426 8 8429 8 8427 8 8428 8 8430 8 8429 8 8428 8 8433 8 8432 8 8431 8 8434 8 8432 8 8433 8 8435 8 8434 8 8433 8 8438 8 8437 8 8436 8 8439 8 8437 8 8438 8 8440 8 8439 8 8438 8 8443 8 8442 8 8441 8 8444 8 8442 8 8443 8 8445 8 8444 8 8443 8 8448 8 8447 8 8446 8 8449 8 8447 8 8448 8 8450 8 8449 8 8448 8 8453 8 8452 8 8451 8 8454 8 8452 8 8453 8 8455 8 8454 8 8453 8 8458 8 8457 8 8456 8 8459 8 8457 8 8458 8 8460 8 8459 8 8458 8 8463 8 8462 8 8461 8 8464 8 8462 8 8463 8 8465 8 8464 8 8463 8 8468 8 8467 8 8466 8 8469 8 8467 8 8468 8 8470 8 8469 8 8468 8 8473 8 8472 8 8471 8 8474 8 8472 8 8473 8 8475 8 8474 8 8473 8 8478 8 8477 8 8476 8 8479 8 8477 8 8478 8 8480 8 8479 8 8478 8 8483 8 8482 8 8481 8 8484 8 8482 8 8483 8 8485 8 8484 8 8483 8 8488 8 8487 8 8486 8 8489 8 8487 8 8488 8 8490 8 8489 8 8488 8 8493 8 8492 8 8491 8 8494 8 8492 8 8493 8 8495 8 8494 8 8493 8 8498 8 8497 8 8496 8 8499 8 8497 8 8498 8 8500 8 8499 8 8498 8 8503 8 8502 8 8501 8 8504 8 8502 8 8503 8 8505 8 8504 8 8503 8 8508 8 8507 8 8506 8 8509 8 8507 8 8508 8 8510 8 8509 8 8508 8 8513 8 8512 8 8511 8 8514 8 8512 8 8513 8 8515 8 8514 8 8513 8 8518 8 8517 8 8516 8 8519 8 8517 8 8518 8 8520 8 8519 8 8518 8 8523 8 8522 8 8521 8 8524 8 8522 8 8523 8 8525 8 8524 8 8523 8 8528 8 8527 8 8526 8 8529 8 8527 8 8528 8 8530 8 8529 8 8528 8 8533 8 8532 8 8531 8 8534 8 8532 8 8533 8 8535 8 8534 8 8533 8 8538 8 8537 8 8536 8 8539 8 8537 8 8538 8 8540 8 8539 8 8538 8 8543 8 8542 8 8541 8 8544 8 8542 8 8543 8 8545 8 8544 8 8543 8 8548 8 8547 8 8546 8 8549 8 8547 8 8548 8 8550 8 8549 8 8548 8 8553 8 8552 8 8551 8 8554 8 8552 8 8553 8 8555 8 8554 8 8553 8 8558 8 8557 8 8556 8 8559 8 8557 8 8558 8 8560 8 8559 8 8558 8 8563 8 8562 8 8561 8 8564 8 8562 8 8563 8 8565 8 8564 8 8563 8 8568 8 8567 8 8566 8 8569 8 8567 8 8568 8 8570 8 8569 8 8568 8 8573 8 8572 8 8571 8 8574 8 8572 8 8573 8 8575 8 8574 8 8573 8 8578 8 8577 8 8576 8 8579 8 8577 8 8578 8 8580 8 8579 8 8578 8 8583 8 8582 8 8581 8 8584 8 8582 8 8583 8 8585 8 8584 8 8583 8 8588 8 8587 8 8586 8 8589 8 8587 8 8588 8 8590 8 8589 8 8588 8 8593 8 8592 8 8591 8 8594 8 8592 8 8593 8 8595 8 8594 8 8593 8 8598 8 8597 8 8596 8 8599 8 8597 8 8598 8 8600 8 8599 8 8598 8 8603 8 8602 8 8601 8 8604 8 8602 8 8603 8 8605 8 8604 8 8603 8 8608 8 8607 8 8606 8 8609 8 8607 8 8608 8 8610 8 8609 8 8608 8 8613 8 8612 8 8611 8 8614 8 8612 8 8613 8 8615 8 8614 8 8613 8 8618 8 8617 8 8616 8 8619 8 8617 8 8618 8 8620 8 8619 8 8618 8 8623 8 8622 8 8621 8 8624 8 8622 8 8623 8 8625 8 8624 8 8623 8 8628 8 8627 8 8626 8 8629 8 8627 8 8628 8 8630 8 8629 8 8628 8 8633 8 8632 8 8631 8 8634 8 8632 8 8633 8 8635 8 8634 8 8633 8 8638 8 8637 8 8636 8 8639 8 8637 8 8638 8 8640 8 8639 8 8638 8 8643 8 8642 8 8641 8 8644 8 8642 8 8643 8 8645 8 8644 8 8643 8 8648 8 8647 8 8646 8 8649 8 8647 8 8648 8 8650 8 8649 8 8648 8 8653 8 8652 8 8651 8 8654 8 8652 8 8653 8 8655 8 8654 8 8653 8 8658 8 8657 8 8656 8 8659 8 8657 8 8658 8 8660 8 8659 8 8658 8 8663 8 8662 8 8661 8 8664 8 8662 8 8663 8 8665 8 8664 8 8663 8 8668 8 8667 8 8666 8 8669 8 8667 8 8668 8 8670 8 8669 8 8668 8 8673 8 8672 8 8671 8 8674 8 8672 8 8673 8 8675 8 8674 8 8673 8 8678 8 8677 8 8676 8 8679 8 8677 8 8678 8 8680 8 8679 8 8678 8 8683 8 8682 8 8681 8 8684 8 8682 8 8683 8 8685 8 8684 8 8683 8 8688 8 8687 8 8686 8 8689 8 8687 8 8688 8 8690 8 8689 8 8688 8 8693 8 8692 8 8691 8 8694 8 8692 8 8693 8 8695 8 8694 8 8693 8 8698 8 8697 8 8696 8 8699 8 8697 8 8698 8 8700 8 8699 8 8698 8 8703 8 8702 8 8701 8 8704 8 8702 8 8703 8 8705 8 8704 8 8703 8 8708 8 8707 8 8706 8 8709 8 8707 8 8708 8 8710 8 8709 8 8708 8 8713 8 8712 8 8711 8 8714 8 8712 8 8713 8 8715 8 8714 8 8713 8 8718 8 8717 8 8716 8 8719 8 8717 8 8718 8 8720 8 8719 8 8718 8 8723 8 8722 8 8721 8 8724 8 8722 8 8723 8 8725 8 8724 8 8723 8 8728 8 8727 8 8726 8 8729 8 8727 8 8728 8 8730 8 8729 8 8728 8 8733 8 8732 8 8731 8 8734 8 8732 8 8733 8 8735 8 8734 8 8733 8 8738 8 8737 8 8736 8 8739 8 8737 8 8738 8 8740 8 8739 8 8738 8 8743 8 8742 8 8741 8 8744 8 8742 8 8743 8 8745 8 8744 8 8743 8 8748 8 8747 8 8746 8 8749 8 8747 8 8748 8 8750 8 8749 8 8748 8 8753 8 8752 8 8751 8 8754 8 8752 8 8753 8 8755 8 8754 8 8753 8 8758 8 8757 8 8756 8 8759 8 8757 8 8758 8 8760 8 8759 8 8758 8 8763 8 8762 8 8761 8 8764 8 8762 8 8763 8 8765 8 8764 8 8763 8 8768 8 8767 8 8766 8 8769 8 8767 8 8768 8 8770 8 8769 8 8768 8 8773 8 8772 8 8771 8 8774 8 8772 8 8773 8 8775 8 8774 8 8773 8 8778 8 8777 8 8776 8 8779 8 8777 8 8778 8 8780 8 8779 8 8778 8 8783 8 8782 8 8781 8 8784 8 8782 8 8783 8 8785 8 8784 8 8783 8 8788 8 8787 8 8786 8 8789 8 8787 8 8788 8 8790 8 8789 8 8788 8 8793 8 8792 8 8791 8 8794 8 8792 8 8793 8 8795 8 8794 8 8793 8 8798 8 8797 8 8796 8 8799 8 8797 8 8798 8 8800 8 8799 8 8798 8 8803 8 8802 8 8801 8 8804 8 8802 8 8803 8 8805 8 8804 8 8803 8 8808 8 8807 8 8806 8 8809 8 8807 8 8808 8 8810 8 8809 8 8808 8 8813 8 8812 8 8811 8 8814 8 8812 8 8813 8 8815 8 8814 8 8813 8 8818 8 8817 8 8816 8 8819 8 8817 8 8818 8 8820 8 8819 8 8818 8 8823 8 8822 8 8821 8 8824 8 8822 8 8823 8 8825 8 8824 8 8823 8 8828 8 8827 8 8826 8 8829 8 8827 8 8828 8 8830 8 8829 8 8828 8 8833 8 8832 8 8831 8 8834 8 8832 8 8833 8 8835 8 8834 8 8833 8 8838 8 8837 8 8836 8 8839 8 8837 8 8838 8 8840 8 8839 8 8838 8 8843 8 8842 8 8841 8 8844 8 8842 8 8843 8 8845 8 8844 8 8843 8 8848 8 8847 8 8846 8 8849 8 8847 8 8848 8 8850 8 8849 8 8848 8 8853 8 8852 8 8851 8 8854 8 8852 8 8853 8 8855 8 8854 8 8853 8 8858 8 8857 8 8856 8 8859 8 8857 8 8858 8 8860 8 8859 8 8858 8 8863 8 8862 8 8861 8 8864 8 8862 8 8863 8 8865 8 8864 8 8863 8 8868 8 8867 8 8866 8 8869 8 8867 8 8868 8 8870 8 8869 8 8868 8 8873 8 8872 8 8871 8 8874 8 8872 8 8873 8 8875 8 8874 8 8873 8 8878 8 8877 8 8876 8 8879 8 8877 8 8878 8 8880 8 8879 8 8878 8 8883 8 8882 8 8881 8 8884 8 8882 8 8883 8 8885 8 8884 8 8883 8 8888 8 8887 8 8886 8 8889 8 8887 8 8888 8 8890 8 8889 8 8888 8 8893 8 8892 8 8891 8 8894 8 8892 8 8893 8 8895 8 8894 8 8893 8 8898 8 8897 8 8896 8 8899 8 8897 8 8898 8 8900 8 8899 8 8898 8 8903 8 8902 8 8901 8 8904 8 8902 8 8903 8 8905 8 8904 8 8903 8 8908 8 8907 8 8906 8 8909 8 8907 8 8908 8 8910 8 8909 8 8908 8 8913 8 8912 8 8911 8 8914 8 8912 8 8913 8 8915 8 8914 8 8913 8 8918 8 8917 8 8916 8 8919 8 8917 8 8918 8 8920 8 8919 8 8918 8 8923 8 8922 8 8921 8 8924 8 8922 8 8923 8 8925 8 8924 8 8923 8 8928 8 8927 8 8926 8 8929 8 8927 8 8928 8 8930 8 8929 8 8928 8 8933 8 8932 8 8931 8 8934 8 8932 8 8933 8 8935 8 8934 8 8933 8 8938 8 8937 8 8936 8 8939 8 8937 8 8938 8 8940 8 8939 8 8938 8 8943 8 8942 8 8941 8 8944 8 8942 8 8943 8 8945 8 8944 8 8943 8 8948 8 8947 8 8946 8 8949 8 8947 8 8948 8 8950 8 8949 8 8948 8 8953 8 8952 8 8951 8 8954 8 8952 8 8953 8 8955 8 8954 8 8953 8 8958 8 8957 8 8956 8 8959 8 8957 8 8958 8 8960 8 8959 8 8958 8 8963 8 8962 8 8961 8 8964 8 8962 8 8963 8 8965 8 8964 8 8963 8 8968 8 8967 8 8966 8 8969 8 8967 8 8968 8 8970 8 8969 8 8968 8 8973 8 8972 8 8971 8 8974 8 8972 8 8973 8 8975 8 8974 8 8973 8 8978 8 8977 8 8976 8 8979 8 8977 8 8978 8 8980 8 8979 8 8978 8 8983 8 8982 8 8981 8 8984 8 8982 8 8983 8 8985 8 8984 8 8983 8 8988 8 8987 8 8986 8 8989 8 8987 8 8988 8 8990 8 8989 8 8988 8 8993 8 8992 8 8991 8 8994 8 8992 8 8993 8 8995 8 8994 8 8993 8 8998 8 8997 8 8996 8 8999 8 8997 8 8998 8 9000 8 8999 8 8998 8 9003 8 9002 8 9001 8 9004 8 9002 8 9003 8 9005 8 9004 8 9003 8 9008 8 9007 8 9006 8 9009 8 9007 8 9008 8 9010 8 9009 8 9008 8 9013 8 9012 8 9011 8 9014 8 9012 8 9013 8 9015 8 9014 8 9013 8 9018 8 9017 8 9016 8 9019 8 9017 8 9018 8 9020 8 9019 8 9018 8 9023 8 9022 8 9021 8 9024 8 9022 8 9023 8 9025 8 9024 8 9023 8 9028 8 9027 8 9026 8 9029 8 9027 8 9028 8 9030 8 9029 8 9028 8 9033 8 9032 8 9031 8 9034 8 9032 8 9033 8 9035 8 9034 8 9033 8 9038 8 9037 8 9036 8 9039 8 9037 8 9038 8 9040 8 9039 8 9038 8 9043 8 9042 8 9041 8 9044 8 9042 8 9043 8 9045 8 9044 8 9043 8 9048 8 9047 8 9046 8 9049 8 9047 8 9048 8 9050 8 9049 8 9048 8 9053 8 9052 8 9051 8 9054 8 9052 8 9053 8 9055 8 9054 8 9053 8 9058 8 9057 8 9056 8 9059 8 9057 8 9058 8 9060 8 9059 8 9058 8 9063 8 9062 8 9061 8 9064 8 9062 8 9063 8 9065 8 9064 8 9063 8 9068 8 9067 8 9066 8 9069 8 9067 8 9068 8 9070 8 9069 8 9068 8 9073 8 9072 8 9071 8 9074 8 9072 8 9073 8 9075 8 9074 8 9073 8 9078 8 9077 8 9076 8 9079 8 9077 8 9078 8 9080 8 9079 8 9078 8 9083 8 9082 8 9081 8 9084 8 9082 8 9083 8 9085 8 9084 8 9083 8 8406 8 8410 8 8408 8 8416 8 8420 8 8418 8 8426 8 8430 8 8428 8 8436 8 8440 8 8438 8 8446 8 8450 8 8448 8 8456 8 8460 8 8458 8 8466 8 8470 8 8468 8 8476 8 8480 8 8478 8 8486 8 8490 8 8488 8 8496 8 8500 8 8498 8 8506 8 8510 8 8508 8 8516 8 8520 8 8518 8 8526 8 8530 8 8528 8 8536 8 8540 8 8538 8 8546 8 8550 8 8548 8 8556 8 8560 8 8558 8 8566 8 8570 8 8568 8 8576 8 8580 8 8578 8 8586 8 8590 8 8588 8 8596 8 8600 8 8598 8 8606 8 8610 8 8608 8 8616 8 8620 8 8618 8 8626 8 8630 8 8628 8 8636 8 8640 8 8638 8 8646 8 8650 8 8648 8 8656 8 8660 8 8658 8 8666 8 8670 8 8668 8 8676 8 8680 8 8678 8 8686 8 8690 8 8688 8 8696 8 8700 8 8698 8 8706 8 8710 8 8708 8 8716 8 8720 8 8718 8 8726 8 8730 8 8728 8 8736 8 8740 8 8738 8 8746 8 8750 8 8748 8 8756 8 8760 8 8758 8 8766 8 8770 8 8768 8 8776 8 8780 8 8778 8 8786 8 8790 8 8788 8 8796 8 8800 8 8798 8 8806 8 8810 8 8808 8 8816 8 8820 8 8818 8 8826 8 8830 8 8828 8 8836 8 8840 8 8838 8 8846 8 8850 8 8848 8 8856 8 8860 8 8858 8 8866 8 8870 8 8868 8 8876 8 8880 8 8878 8 8886 8 8890 8 8888 8 8896 8 8900 8 8898 8 8906 8 8910 8 8908 8 8916 8 8920 8 8918 8 8926 8 8930 8 8928 8 8936 8 8940 8 8938 8 8946 8 8950 8 8948 8 8956 8 8960 8 8958 8 8966 8 8970 8 8968 8 8976 8 8980 8 8978 8 8986 8 8990 8 8988 8 8996 8 9000 8 8998 8 9006 8 9010 8 9008 8 9016 8 9020 8 9018 8 9026 8 9030 8 9028 8 9036 8 9040 8 9038 8 9046 8 9050 8 9048 8 9056 8 9060 8 9058 8 9066 8 9070 8 9068 8 9076 8 9080 8 9078 8 8491 8 8495 8 8493 8 8751 8 8755 8 8753 8 8581 8 8585 8 8583 8 8761 8 8765 8 8763 8 8451 8 8455 8 8453 8 8771 8 8775 8 8773 8 8591 8 8595 8 8593 8 8781 8 8785 8 8783 8 8501 8 8505 8 8503 8 8791 8 8795 8 8793 8 8601 8 8605 8 8603 8 8801 8 8805 8 8803 8 8431 8 8435 8 8433 8 8811 8 8815 8 8813 8 8611 8 8615 8 8613 8 8821 8 8825 8 8823 8 8511 8 8515 8 8513 8 8831 8 8835 8 8833 8 8621 8 8625 8 8623 8 8841 8 8845 8 8843 8 8461 8 8465 8 8463 8 8851 8 8855 8 8853 8 8631 8 8635 8 8633 8 8861 8 8865 8 8863 8 8521 8 8525 8 8523 8 8871 8 8875 8 8873 8 8641 8 8645 8 8643 8 8881 8 8885 8 8883 8 8421 8 8425 8 8423 8 8891 8 8895 8 8893 8 8651 8 8655 8 8653 8 8901 8 8905 8 8903 8 8531 8 8535 8 8533 8 8911 8 8915 8 8913 8 8661 8 8665 8 8663 8 8921 8 8925 8 8923 8 8471 8 8475 8 8473 8 8931 8 8935 8 8933 8 8671 8 8675 8 8673 8 8941 8 8945 8 8943 8 8541 8 8545 8 8543 8 8951 8 8955 8 8953 8 8681 8 8685 8 8683 8 8961 8 8965 8 8963 8 8441 8 8445 8 8443 8 8971 8 8975 8 8973 8 8691 8 8695 8 8693 8 8981 8 8985 8 8983 8 8551 8 8555 8 8553 8 8991 8 8995 8 8993 8 8701 8 8705 8 8703 8 9001 8 9005 8 9003 8 8481 8 8485 8 8483 8 9011 8 9015 8 9013 8 8711 8 8715 8 8713 8 9021 8 9025 8 9023 8 8561 8 8565 8 8563 8 9031 8 9035 8 9033 8 8721 8 8725 8 8723 8 9041 8 9045 8 9043 8 8411 8 8415 8 8413 8 9051 8 9055 8 9053 8 8731 8 8735 8 8733 8 9061 8 9065 8 9063 8 8571 8 8575 8 8573 8 9071 8 9075 8 9073 8 8741 8 8745 8 8743 8 9081 8 9085 8 9083 8

+
+
+
+ + + + -820 46 -556 -735 31 -592 -760 32 -530 -697 30 -506 -782 45 -470 -992 38 919 -915 43 867 -927 36 932 -862 47 943 -939 42 995 -802 34 -675 -711 30 -670 -759 31 -626 -713 40 -578 -805 43 -584 690 48 939 767 45 877 759 30 946 830 26 954 753 29 1016 -887 27 -634 -784 35 -576 -866 29 -551 -843 47 -470 -945 40 -527 -1032 38 790 -934 42 811 -993 33 850 -953 43 909 -1051 39 889 -947 46 -506 -901 42 -440 -958 39 -449 -967 43 -391 -1013 46 -457 856 58 867 937 41 780 939 34 866 1026 27 862 945 44 950 -857 53 -720 -784 36 -626 -869 29 -638 -880 23 -552 -953 39 -645 -941 48 1015 -863 45 952 -872 30 1022 -801 26 1030 -878 29 1092 -943 33 -561 -905 39 -476 -967 31 -498 -988 42 -436 -1027 37 -521 565 46 847 648 50 792 635 41 861 705 50 874 622 46 930 -856 49 766 -787 34 668 -771 36 753 -686 41 735 -755 56 833 717 49 777 786 34 680 802 36 764 887 41 747 817 56 844 -980 37 786 -889 32 708 -894 32 793 -808 44 797 -899 49 875 638 48 840 754 58 871 682 39 914 726 47 988 609 37 957 -1136 32 959 -1095 40 848 -1057 34 925 -981 52 889 -1021 44 999 609 37 749 700 32 670 695 32 756 781 44 759 690 49 838 -965 53 914 -879 47 830 -879 42 916 -793 48 915 -878 53 999 1020 49 448 1089 34 351 1105 36 436 1190 41 418 1121 56 516 -851 58 934 -771 41 846 -768 34 932 -682 27 929 -762 44 1016 591 32 821 631 40 710 669 34 787 745 52 751 705 44 861 -928 61 981 -845 59 895 -843 47 980 -756 50 978 -839 51 1065 639 38 843 716 43 791 704 36 856 769 47 868 692 42 919 -993 48 915 -876 58 946 -949 39 989 -905 47 1064 -1022 37 1033 666 53 838 751 47 755 751 42 840 838 48 840 753 53 923 896 37 469 987 32 390 983 32 476 1069 44 480 977 49 558 741 32 642 781 40 531 819 34 608 895 52 572 855 44 682 911 53 596 997 47 513 997 42 599 1084 48 598 998 53 682 1025 58 616 1105 41 529 1108 34 615 1194 27 612 1114 44 699 949 61 664 1031 59 578 1033 47 663 1120 50 661 1038 51 748 883 48 598 1000 58 629 927 39 672 971 47 747 854 37 716 884 38 602 962 43 550 950 36 615 1014 47 626 937 42 678 844 38 473 942 42 494 883 33 533 923 43 592 825 39 572 936 48 698 1013 45 635 1004 30 705 1075 26 713 998 29 775 727 49 999 796 34 901 811 36 986 896 41 968 827 56 1066 548 37 1002 639 32 923 634 32 1009 720 44 1012 629 49 1091 529 32 1074 569 40 964 608 34 1040 684 52 1004 644 44 1115 605 53 1091 690 47 1008 690 42 1093 777 48 1093 692 53 1176 719 58 1111 799 41 1024 801 34 1110 888 27 1106 807 44 1194 642 61 1159 725 59 1072 727 47 1157 814 50 1155 731 51 1242 577 48 1093 693 58 1124 621 39 1167 664 47 1242 548 37 1210 578 38 1096 655 43 1044 643 36 1109 708 47 1121 630 42 1172 438 38 1108 521 42 1052 509 33 1122 579 42 1134 496 38 1190 629 48 1192 706 45 1130 697 30 1199 769 26 1207 692 29 1269 416 39 -831 470 27 -907 482 29 -841 548 32 -855 494 44 -779 358 32 -914 427 28 -974 424 28 -909 489 37 -906 420 41 -846 555 32 -751 595 40 -862 633 34 -785 709 52 -822 669 44 -711 691 51 -713 748 47 -769 748 43 -711 807 47 -711 749 51 -655 465 58 -767 545 41 -854 548 34 -768 634 27 -772 554 44 -684 636 38 -708 713 43 -759 701 36 -695 766 47 -683 688 42 -632 + + + + + + + + + + 1 1 1 0 0.5 0.5 0 0 0 1 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 1 1 0 0 3 3 1 1 2 2 4 4 3 3 2 2 7 2 6 1 5 0 8 3 6 1 7 2 9 4 8 3 7 2 12 2 11 1 10 0 13 3 11 1 12 2 14 4 13 3 12 2 17 2 16 1 15 0 18 3 16 1 17 2 19 4 18 3 17 2 22 2 21 1 20 0 23 3 21 1 22 2 24 4 23 3 22 2 27 2 26 1 25 0 28 3 26 1 27 2 29 4 28 3 27 2 32 2 31 1 30 0 33 3 31 1 32 2 34 4 33 3 32 2 37 2 36 1 35 0 38 3 36 1 37 2 39 4 38 3 37 2 42 2 41 1 40 0 43 3 41 1 42 2 44 4 43 3 42 2 47 2 46 1 45 0 48 3 46 1 47 2 49 4 48 3 47 2 52 2 51 1 50 0 53 3 51 1 52 2 54 4 53 3 52 2 57 2 56 1 55 0 58 3 56 1 57 2 59 4 58 3 57 2 62 2 61 1 60 0 63 3 61 1 62 2 64 4 63 3 62 2 67 2 66 1 65 0 68 3 66 1 67 2 69 4 68 3 67 2 72 2 71 1 70 0 73 3 71 1 72 2 74 4 73 3 72 2 77 2 76 1 75 0 78 3 76 1 77 2 79 4 78 3 77 2 82 2 81 1 80 0 83 3 81 1 82 2 84 4 83 3 82 2 87 2 86 1 85 0 88 3 86 1 87 2 89 4 88 3 87 2 92 2 91 1 90 0 93 3 91 1 92 2 94 4 93 3 92 2 97 2 96 1 95 0 98 3 96 1 97 2 99 4 98 3 97 2 102 2 101 1 100 0 103 3 101 1 102 2 104 4 103 3 102 2 107 2 106 1 105 0 108 3 106 1 107 2 109 4 108 3 107 2 112 2 111 1 110 0 113 3 111 1 112 2 114 4 113 3 112 2 117 2 116 1 115 0 118 3 116 1 117 2 119 4 118 3 117 2 122 2 121 1 120 0 123 3 121 1 122 2 124 4 123 3 122 2 127 2 126 1 125 0 128 3 126 1 127 2 129 4 128 3 127 2 132 2 131 1 130 0 133 3 131 1 132 2 134 4 133 3 132 2 137 2 136 1 135 0 138 3 136 1 137 2 139 4 138 3 137 2 142 2 141 1 140 0 143 3 141 1 142 2 144 4 143 3 142 2 147 2 146 1 145 0 148 3 146 1 147 2 149 4 148 3 147 2 152 2 151 1 150 0 153 3 151 1 152 2 154 4 153 3 152 2 157 2 156 1 155 0 158 3 156 1 157 2 159 4 158 3 157 2 162 2 161 1 160 0 163 3 161 1 162 2 164 4 163 3 162 2 167 2 166 1 165 0 168 3 166 1 167 2 169 4 168 3 167 2 172 2 171 1 170 0 173 3 171 1 172 2 174 4 173 3 172 2 177 2 176 1 175 0 178 3 176 1 177 2 179 4 178 3 177 2 182 2 181 1 180 0 183 3 181 1 182 2 184 4 183 3 182 2 187 2 186 1 185 0 188 3 186 1 187 2 189 4 188 3 187 2 192 2 191 1 190 0 193 3 191 1 192 2 194 4 193 3 192 2 197 2 196 1 195 0 198 3 196 1 197 2 199 4 198 3 197 2 202 2 201 1 200 0 203 3 201 1 202 2 204 4 203 3 202 2 207 2 206 1 205 0 208 3 206 1 207 2 209 4 208 3 207 2 212 2 211 1 210 0 213 3 211 1 212 2 214 4 213 3 212 2 217 2 216 1 215 0 218 3 216 1 217 2 219 4 218 3 217 2 222 2 221 1 220 0 223 3 221 1 222 2 224 4 223 3 222 2 227 2 226 1 225 0 228 3 226 1 227 2 229 4 228 3 227 2 232 2 231 1 230 0 233 3 231 1 232 2 234 4 233 3 232 2 237 2 236 1 235 0 238 3 236 1 237 2 239 4 238 3 237 2 242 2 241 1 240 0 243 3 241 1 242 2 244 4 243 3 242 2 247 2 246 1 245 0 248 3 246 1 247 2 249 4 248 3 247 2 252 2 251 1 250 0 253 3 251 1 252 2 254 4 253 3 252 2 95 0 99 4 97 2 0 0 4 4 2 2 130 0 134 4 132 2 10 0 14 4 12 2 135 0 139 4 137 2 20 0 24 4 22 2 140 0 144 4 142 2 30 0 34 4 32 2 145 0 149 4 147 2 40 0 44 4 42 2 150 0 154 4 152 2 50 0 54 4 52 2 155 0 159 4 157 2 60 0 64 4 62 2 160 0 164 4 162 2 70 0 74 4 72 2 165 0 169 4 167 2 80 0 84 4 82 2 170 0 174 4 172 2 90 0 94 4 92 2 175 0 179 4 177 2 100 0 104 4 102 2 180 0 184 4 182 2 110 0 114 4 112 2 185 0 189 4 187 2 120 0 124 4 122 2 190 0 194 4 192 2 5 0 9 4 7 2 195 0 199 4 197 2 25 0 29 4 27 2 200 0 204 4 202 2 45 0 49 4 47 2 205 0 209 4 207 2 65 0 69 4 67 2 210 0 214 4 212 2 85 0 89 4 87 2 215 0 219 4 217 2 105 0 109 4 107 2 220 0 224 4 222 2 125 0 129 4 127 2 225 0 229 4 227 2 35 0 39 4 37 2 230 0 234 4 232 2 75 0 79 4 77 2 235 0 239 4 237 2 115 0 119 4 117 2 240 0 244 4 242 2 55 0 59 4 57 2 245 0 249 4 247 2 15 0 19 4 17 2 250 0 254 4 252 2

+
+
+
+ + + + -820 46 -556 -735 31 -592 -760 32 -530 -697 30 -506 -782 45 -470 -992 38 919 -915 43 867 -927 36 932 -862 47 943 -939 42 995 -802 34 -675 -711 30 -670 -759 31 -626 -713 40 -578 -805 43 -584 690 48 939 767 45 877 759 30 946 830 26 954 753 29 1016 -887 27 -634 -784 35 -576 -866 29 -551 -843 47 -470 -945 40 -527 -1032 38 790 -934 42 811 -993 33 850 -953 43 909 -1051 39 889 -947 46 -506 -901 42 -440 -958 39 -449 -967 43 -391 -1013 46 -457 856 58 867 937 41 780 939 34 866 1026 27 862 945 44 950 -857 53 -720 -784 36 -626 -869 29 -638 -880 23 -552 -953 39 -645 -941 48 1015 -863 45 952 -872 30 1022 -801 26 1030 -878 29 1092 -943 33 -561 -905 39 -476 -967 31 -498 -988 42 -436 -1027 37 -521 565 46 847 648 50 792 635 41 861 705 50 874 622 46 930 -856 49 766 -787 34 668 -771 36 753 -686 41 735 -755 56 833 717 49 777 786 34 680 802 36 764 887 41 747 817 56 844 -980 37 786 -889 32 708 -894 32 793 -808 44 797 -899 49 875 638 48 840 754 58 871 682 39 914 726 47 988 609 37 957 -1136 32 959 -1095 40 848 -1057 34 925 -981 52 889 -1021 44 999 609 37 749 700 32 670 695 32 756 781 44 759 690 49 838 -965 53 914 -879 47 830 -879 42 916 -793 48 915 -878 53 999 1020 49 448 1089 34 351 1105 36 436 1190 41 418 1121 56 516 -851 58 934 -771 41 846 -768 34 932 -682 27 929 -762 44 1016 591 32 821 631 40 710 669 34 787 745 52 751 705 44 861 -928 61 981 -845 59 895 -843 47 980 -756 50 978 -839 51 1065 639 38 843 716 43 791 704 36 856 769 47 868 692 42 919 -993 48 915 -876 58 946 -949 39 989 -905 47 1064 -1022 37 1033 666 53 838 751 47 755 751 42 840 838 48 840 753 53 923 896 37 469 987 32 390 983 32 476 1069 44 480 977 49 558 741 32 642 781 40 531 819 34 608 895 52 572 855 44 682 911 53 596 997 47 513 997 42 599 1084 48 598 998 53 682 1025 58 616 1105 41 529 1108 34 615 1194 27 612 1114 44 699 949 61 664 1031 59 578 1033 47 663 1120 50 661 1038 51 748 883 48 598 1000 58 629 927 39 672 971 47 747 854 37 716 884 38 602 962 43 550 950 36 615 1014 47 626 937 42 678 844 38 473 942 42 494 883 33 533 923 43 592 825 39 572 936 48 698 1013 45 635 1004 30 705 1075 26 713 998 29 775 727 49 999 796 34 901 811 36 986 896 41 968 827 56 1066 548 37 1002 639 32 923 634 32 1009 720 44 1012 629 49 1091 529 32 1074 569 40 964 608 34 1040 684 52 1004 644 44 1115 605 53 1091 690 47 1008 690 42 1093 777 48 1093 692 53 1176 719 58 1111 799 41 1024 801 34 1110 888 27 1106 807 44 1194 642 61 1159 725 59 1072 727 47 1157 814 50 1155 731 51 1242 577 48 1093 693 58 1124 621 39 1167 664 47 1242 548 37 1210 578 38 1096 655 43 1044 643 36 1109 708 47 1121 630 42 1172 438 38 1108 521 42 1052 509 33 1122 579 42 1134 496 38 1190 629 48 1192 706 45 1130 697 30 1199 769 26 1207 692 29 1269 416 39 -831 470 27 -907 482 29 -841 548 32 -855 494 44 -779 358 32 -914 427 28 -974 424 28 -909 489 37 -906 420 41 -846 555 32 -751 595 40 -862 633 34 -785 709 52 -822 669 44 -711 691 51 -713 748 47 -769 748 43 -711 807 47 -711 749 51 -655 465 58 -767 545 41 -854 548 34 -768 634 27 -772 554 44 -684 636 38 -708 713 43 -759 701 36 -695 766 47 -683 688 42 -632 + + + + + + + + + + 0.0001220703125 0.9996995192307693 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 0 1 0 0 0 3 0 1 0 2 0 4 0 3 0 2 0 7 0 6 0 5 0 8 0 6 0 7 0 9 0 8 0 7 0 12 0 11 0 10 0 13 0 11 0 12 0 14 0 13 0 12 0 17 0 16 0 15 0 18 0 16 0 17 0 19 0 18 0 17 0 22 0 21 0 20 0 23 0 21 0 22 0 24 0 23 0 22 0 27 0 26 0 25 0 28 0 26 0 27 0 29 0 28 0 27 0 32 0 31 0 30 0 33 0 31 0 32 0 34 0 33 0 32 0 37 0 36 0 35 0 38 0 36 0 37 0 39 0 38 0 37 0 42 0 41 0 40 0 43 0 41 0 42 0 44 0 43 0 42 0 47 0 46 0 45 0 48 0 46 0 47 0 49 0 48 0 47 0 52 0 51 0 50 0 53 0 51 0 52 0 54 0 53 0 52 0 57 0 56 0 55 0 58 0 56 0 57 0 59 0 58 0 57 0 62 0 61 0 60 0 63 0 61 0 62 0 64 0 63 0 62 0 67 0 66 0 65 0 68 0 66 0 67 0 69 0 68 0 67 0 72 0 71 0 70 0 73 0 71 0 72 0 74 0 73 0 72 0 77 0 76 0 75 0 78 0 76 0 77 0 79 0 78 0 77 0 82 0 81 0 80 0 83 0 81 0 82 0 84 0 83 0 82 0 87 0 86 0 85 0 88 0 86 0 87 0 89 0 88 0 87 0 92 0 91 0 90 0 93 0 91 0 92 0 94 0 93 0 92 0 97 0 96 0 95 0 98 0 96 0 97 0 99 0 98 0 97 0 102 0 101 0 100 0 103 0 101 0 102 0 104 0 103 0 102 0 107 0 106 0 105 0 108 0 106 0 107 0 109 0 108 0 107 0 112 0 111 0 110 0 113 0 111 0 112 0 114 0 113 0 112 0 117 0 116 0 115 0 118 0 116 0 117 0 119 0 118 0 117 0 122 0 121 0 120 0 123 0 121 0 122 0 124 0 123 0 122 0 127 0 126 0 125 0 128 0 126 0 127 0 129 0 128 0 127 0 132 0 131 0 130 0 133 0 131 0 132 0 134 0 133 0 132 0 137 0 136 0 135 0 138 0 136 0 137 0 139 0 138 0 137 0 142 0 141 0 140 0 143 0 141 0 142 0 144 0 143 0 142 0 147 0 146 0 145 0 148 0 146 0 147 0 149 0 148 0 147 0 152 0 151 0 150 0 153 0 151 0 152 0 154 0 153 0 152 0 157 0 156 0 155 0 158 0 156 0 157 0 159 0 158 0 157 0 162 0 161 0 160 0 163 0 161 0 162 0 164 0 163 0 162 0 167 0 166 0 165 0 168 0 166 0 167 0 169 0 168 0 167 0 172 0 171 0 170 0 173 0 171 0 172 0 174 0 173 0 172 0 177 0 176 0 175 0 178 0 176 0 177 0 179 0 178 0 177 0 182 0 181 0 180 0 183 0 181 0 182 0 184 0 183 0 182 0 187 0 186 0 185 0 188 0 186 0 187 0 189 0 188 0 187 0 192 0 191 0 190 0 193 0 191 0 192 0 194 0 193 0 192 0 197 0 196 0 195 0 198 0 196 0 197 0 199 0 198 0 197 0 202 0 201 0 200 0 203 0 201 0 202 0 204 0 203 0 202 0 207 0 206 0 205 0 208 0 206 0 207 0 209 0 208 0 207 0 212 0 211 0 210 0 213 0 211 0 212 0 214 0 213 0 212 0 217 0 216 0 215 0 218 0 216 0 217 0 219 0 218 0 217 0 222 0 221 0 220 0 223 0 221 0 222 0 224 0 223 0 222 0 227 0 226 0 225 0 228 0 226 0 227 0 229 0 228 0 227 0 232 0 231 0 230 0 233 0 231 0 232 0 234 0 233 0 232 0 237 0 236 0 235 0 238 0 236 0 237 0 239 0 238 0 237 0 242 0 241 0 240 0 243 0 241 0 242 0 244 0 243 0 242 0 247 0 246 0 245 0 248 0 246 0 247 0 249 0 248 0 247 0 252 0 251 0 250 0 253 0 251 0 252 0 254 0 253 0 252 0 95 0 99 0 97 0 0 0 4 0 2 0 130 0 134 0 132 0 10 0 14 0 12 0 135 0 139 0 137 0 20 0 24 0 22 0 140 0 144 0 142 0 30 0 34 0 32 0 145 0 149 0 147 0 40 0 44 0 42 0 150 0 154 0 152 0 50 0 54 0 52 0 155 0 159 0 157 0 60 0 64 0 62 0 160 0 164 0 162 0 70 0 74 0 72 0 165 0 169 0 167 0 80 0 84 0 82 0 170 0 174 0 172 0 90 0 94 0 92 0 175 0 179 0 177 0 100 0 104 0 102 0 180 0 184 0 182 0 110 0 114 0 112 0 185 0 189 0 187 0 120 0 124 0 122 0 190 0 194 0 192 0 5 0 9 0 7 0 195 0 199 0 197 0 25 0 29 0 27 0 200 0 204 0 202 0 45 0 49 0 47 0 205 0 209 0 207 0 65 0 69 0 67 0 210 0 214 0 212 0 85 0 89 0 87 0 215 0 219 0 217 0 105 0 109 0 107 0 220 0 224 0 222 0 125 0 129 0 127 0 225 0 229 0 227 0 35 0 39 0 37 0 230 0 234 0 232 0 75 0 79 0 77 0 235 0 239 0 237 0 115 0 119 0 117 0 240 0 244 0 242 0 55 0 59 0 57 0 245 0 249 0 247 0 15 0 19 0 17 0 250 0 254 0 252 0

+
+
+
+ + + + -3060 396 4599 -3147 389 4515 -3062 377 4514 -3063 375 4429 -2976 383 4513 -2368 123 1608 -2329 118 1723 -2406 127 1685 -2440 148 1762 -2479 153 1647 -3147 418 4502 -3246 433 4571 -3232 410 4489 -3316 418 4474 -3218 403 4404 -1658 312 4144 -1718 311 4042 -1634 307 4062 -1613 319 3979 -1554 319 4081 -3264 423 4492 -3228 431 4608 -3303 419 4568 -3344 433 4644 -3379 425 4528 -2464 147 1772 -2585 153 1768 -2522 145 1709 -2580 160 1647 -2459 154 1651 -3128 394 4561 -3078 394 4672 -3159 401 4642 -3185 424 4720 -3235 424 4610 -2496 156 1528 -2472 159 1647 -2543 151 1599 -2590 162 1671 -2614 159 1552 -3242 441 4810 -3363 446 4817 -3306 436 4752 -3370 448 4696 -3249 443 4689 -1464 303 3864 -1480 278 3748 -1412 275 3801 -1359 263 3733 -1343 289 3849 -2403 145 1695 -2480 161 1602 -2400 130 1610 -2392 131 1524 -2315 115 1617 -1599 311 3917 -1630 287 3803 -1555 293 3844 -1514 291 3768 -1483 315 3881 -2381 150 1548 -2485 163 1608 -2464 143 1527 -2547 153 1504 -2442 140 1444 -1585 321 3994 -1594 306 3876 -1528 305 3931 -1473 306 3863 -1464 321 3981 -1689 304 3983 -1692 290 3863 -1629 295 3921 -1572 302 3856 -1569 316 3976 -1508 330 4008 -1523 320 3890 -1455 311 3943 -1402 309 3875 -1388 319 3993 -1567 326 4100 -1520 307 3990 -1487 314 4070 -1407 318 4035 -1454 336 4145 -1598 308 4019 -1588 307 3927 -1546 303 3978 -1496 311 3934 -1505 313 4027 -1518 324 4199 -1595 321 4134 -1524 316 4128 -1532 321 4057 -1455 325 4121 -1447 320 4184 -1446 309 4085 -1398 298 4137 -1347 291 4088 -1348 301 4187 -551 64 2352 -639 67 2268 -554 48 2267 -556 49 2181 -468 46 2265 -545 70 2204 -644 69 2275 -628 51 2192 -713 48 2177 -614 49 2106 -661 59 2195 -626 67 2311 -699 48 2271 -740 52 2348 -776 44 2232 -1169 59 -354 -1267 58 -284 -1252 40 -367 -1337 37 -381 -1238 38 -452 -522 46 2262 -471 48 2372 -553 46 2343 -581 62 2423 -631 60 2312 -603 58 2435 -723 46 2443 -667 47 2378 -732 52 2323 -612 64 2315 -1175 53 -206 -1263 56 -290 -1178 37 -291 -1180 38 -377 -1092 35 -293 -1285 48 -363 -1250 56 -247 -1323 36 -287 -1364 41 -211 -1400 33 -327 -1146 35 -296 -1095 37 -186 -1176 35 -215 -1204 51 -136 -1255 49 -246 -1227 47 -123 -1347 35 -115 -1290 36 -180 -1356 41 -236 -1236 53 -244 + + + + + + + + + + 1 1 1 0 0.5 0.5 0 0 0 1 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 1 1 0 0 3 3 1 1 2 2 4 4 3 3 2 2 7 2 6 1 5 0 8 3 6 1 7 2 9 4 8 3 7 2 12 2 11 1 10 0 13 3 11 1 12 2 14 4 13 3 12 2 17 2 16 1 15 0 18 3 16 1 17 2 19 4 18 3 17 2 22 2 21 1 20 0 23 3 21 1 22 2 24 4 23 3 22 2 27 2 26 1 25 0 28 3 26 1 27 2 29 4 28 3 27 2 32 2 31 1 30 0 33 3 31 1 32 2 34 4 33 3 32 2 37 2 36 1 35 0 38 3 36 1 37 2 39 4 38 3 37 2 42 2 41 1 40 0 43 3 41 1 42 2 44 4 43 3 42 2 47 2 46 1 45 0 48 3 46 1 47 2 49 4 48 3 47 2 52 2 51 1 50 0 53 3 51 1 52 2 54 4 53 3 52 2 57 2 56 1 55 0 58 3 56 1 57 2 59 4 58 3 57 2 62 2 61 1 60 0 63 3 61 1 62 2 64 4 63 3 62 2 67 2 66 1 65 0 68 3 66 1 67 2 69 4 68 3 67 2 72 2 71 1 70 0 73 3 71 1 72 2 74 4 73 3 72 2 77 2 76 1 75 0 78 3 76 1 77 2 79 4 78 3 77 2 82 2 81 1 80 0 83 3 81 1 82 2 84 4 83 3 82 2 87 2 86 1 85 0 88 3 86 1 87 2 89 4 88 3 87 2 92 2 91 1 90 0 93 3 91 1 92 2 94 4 93 3 92 2 97 2 96 1 95 0 98 3 96 1 97 2 99 4 98 3 97 2 102 2 101 1 100 0 103 3 101 1 102 2 104 4 103 3 102 2 107 2 106 1 105 0 108 3 106 1 107 2 109 4 108 3 107 2 112 2 111 1 110 0 113 3 111 1 112 2 114 4 113 3 112 2 117 2 116 1 115 0 118 3 116 1 117 2 119 4 118 3 117 2 122 2 121 1 120 0 123 3 121 1 122 2 124 4 123 3 122 2 127 2 126 1 125 0 128 3 126 1 127 2 129 4 128 3 127 2 132 2 131 1 130 0 133 3 131 1 132 2 134 4 133 3 132 2 137 2 136 1 135 0 138 3 136 1 137 2 139 4 138 3 137 2 142 2 141 1 140 0 143 3 141 1 142 2 144 4 143 3 142 2 147 2 146 1 145 0 148 3 146 1 147 2 149 4 148 3 147 2 70 0 74 4 72 2 75 0 79 4 77 2 0 0 4 4 2 2 80 0 84 4 82 2 10 0 14 4 12 2 85 0 89 4 87 2 20 0 24 4 22 2 90 0 94 4 92 2 40 0 44 4 42 2 95 0 99 4 97 2 50 0 54 4 52 2 100 0 104 4 102 2 60 0 64 4 62 2 105 0 109 4 107 2 30 0 34 4 32 2 35 0 39 4 37 2 5 0 9 4 7 2 120 0 124 4 122 2 25 0 29 4 27 2 125 0 129 4 127 2 55 0 59 4 57 2 130 0 134 4 132 2 110 0 114 4 112 2 115 0 119 4 117 2 15 0 19 4 17 2 135 0 139 4 137 2 65 0 69 4 67 2 140 0 144 4 142 2 45 0 49 4 47 2 145 0 149 4 147 2

+
+
+
+ + + + -3060 396 4599 -3147 389 4515 -3062 377 4514 -3063 375 4429 -2976 383 4513 -2368 123 1608 -2329 118 1723 -2406 127 1685 -2440 148 1762 -2479 153 1647 -3147 418 4502 -3246 433 4571 -3232 410 4489 -3316 418 4474 -3218 403 4404 -1658 312 4144 -1718 311 4042 -1634 307 4062 -1613 319 3979 -1554 319 4081 -3264 423 4492 -3228 431 4608 -3303 419 4568 -3344 433 4644 -3379 425 4528 -2464 147 1772 -2585 153 1768 -2522 145 1709 -2580 160 1647 -2459 154 1651 -3128 394 4561 -3078 394 4672 -3159 401 4642 -3185 424 4720 -3235 424 4610 -2496 156 1528 -2472 159 1647 -2543 151 1599 -2590 162 1671 -2614 159 1552 -3242 441 4810 -3363 446 4817 -3306 436 4752 -3370 448 4696 -3249 443 4689 -1464 303 3864 -1480 278 3748 -1412 275 3801 -1359 263 3733 -1343 289 3849 -2403 145 1695 -2480 161 1602 -2400 130 1610 -2392 131 1524 -2315 115 1617 -1599 311 3917 -1630 287 3803 -1555 293 3844 -1514 291 3768 -1483 315 3881 -2381 150 1548 -2485 163 1608 -2464 143 1527 -2547 153 1504 -2442 140 1444 -1585 321 3994 -1594 306 3876 -1528 305 3931 -1473 306 3863 -1464 321 3981 -1689 304 3983 -1692 290 3863 -1629 295 3921 -1572 302 3856 -1569 316 3976 -1508 330 4008 -1523 320 3890 -1455 311 3943 -1402 309 3875 -1388 319 3993 -1567 326 4100 -1520 307 3990 -1487 314 4070 -1407 318 4035 -1454 336 4145 -1598 308 4019 -1588 307 3927 -1546 303 3978 -1496 311 3934 -1505 313 4027 -1518 324 4199 -1595 321 4134 -1524 316 4128 -1532 321 4057 -1455 325 4121 -1447 320 4184 -1446 309 4085 -1398 298 4137 -1347 291 4088 -1348 301 4187 -551 64 2352 -639 67 2268 -554 48 2267 -556 49 2181 -468 46 2265 -545 70 2204 -644 69 2275 -628 51 2192 -713 48 2177 -614 49 2106 -661 59 2195 -626 67 2311 -699 48 2271 -740 52 2348 -776 44 2232 -1169 59 -354 -1267 58 -284 -1252 40 -367 -1337 37 -381 -1238 38 -452 -522 46 2262 -471 48 2372 -553 46 2343 -581 62 2423 -631 60 2312 -603 58 2435 -723 46 2443 -667 47 2378 -732 52 2323 -612 64 2315 -1175 53 -206 -1263 56 -290 -1178 37 -291 -1180 38 -377 -1092 35 -293 -1285 48 -363 -1250 56 -247 -1323 36 -287 -1364 41 -211 -1400 33 -327 -1146 35 -296 -1095 37 -186 -1176 35 -215 -1204 51 -136 -1255 49 -246 -1227 47 -123 -1347 35 -115 -1290 36 -180 -1356 41 -236 -1236 53 -244 + + + + + + + + + + 0.0001220703125 0.9996995192307693 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 0 1 0 0 0 3 0 1 0 2 0 4 0 3 0 2 0 7 0 6 0 5 0 8 0 6 0 7 0 9 0 8 0 7 0 12 0 11 0 10 0 13 0 11 0 12 0 14 0 13 0 12 0 17 0 16 0 15 0 18 0 16 0 17 0 19 0 18 0 17 0 22 0 21 0 20 0 23 0 21 0 22 0 24 0 23 0 22 0 27 0 26 0 25 0 28 0 26 0 27 0 29 0 28 0 27 0 32 0 31 0 30 0 33 0 31 0 32 0 34 0 33 0 32 0 37 0 36 0 35 0 38 0 36 0 37 0 39 0 38 0 37 0 42 0 41 0 40 0 43 0 41 0 42 0 44 0 43 0 42 0 47 0 46 0 45 0 48 0 46 0 47 0 49 0 48 0 47 0 52 0 51 0 50 0 53 0 51 0 52 0 54 0 53 0 52 0 57 0 56 0 55 0 58 0 56 0 57 0 59 0 58 0 57 0 62 0 61 0 60 0 63 0 61 0 62 0 64 0 63 0 62 0 67 0 66 0 65 0 68 0 66 0 67 0 69 0 68 0 67 0 72 0 71 0 70 0 73 0 71 0 72 0 74 0 73 0 72 0 77 0 76 0 75 0 78 0 76 0 77 0 79 0 78 0 77 0 82 0 81 0 80 0 83 0 81 0 82 0 84 0 83 0 82 0 87 0 86 0 85 0 88 0 86 0 87 0 89 0 88 0 87 0 92 0 91 0 90 0 93 0 91 0 92 0 94 0 93 0 92 0 97 0 96 0 95 0 98 0 96 0 97 0 99 0 98 0 97 0 102 0 101 0 100 0 103 0 101 0 102 0 104 0 103 0 102 0 107 0 106 0 105 0 108 0 106 0 107 0 109 0 108 0 107 0 112 0 111 0 110 0 113 0 111 0 112 0 114 0 113 0 112 0 117 0 116 0 115 0 118 0 116 0 117 0 119 0 118 0 117 0 122 0 121 0 120 0 123 0 121 0 122 0 124 0 123 0 122 0 127 0 126 0 125 0 128 0 126 0 127 0 129 0 128 0 127 0 132 0 131 0 130 0 133 0 131 0 132 0 134 0 133 0 132 0 137 0 136 0 135 0 138 0 136 0 137 0 139 0 138 0 137 0 142 0 141 0 140 0 143 0 141 0 142 0 144 0 143 0 142 0 147 0 146 0 145 0 148 0 146 0 147 0 149 0 148 0 147 0 70 0 74 0 72 0 75 0 79 0 77 0 0 0 4 0 2 0 80 0 84 0 82 0 10 0 14 0 12 0 85 0 89 0 87 0 20 0 24 0 22 0 90 0 94 0 92 0 40 0 44 0 42 0 95 0 99 0 97 0 50 0 54 0 52 0 100 0 104 0 102 0 60 0 64 0 62 0 105 0 109 0 107 0 30 0 34 0 32 0 35 0 39 0 37 0 5 0 9 0 7 0 120 0 124 0 122 0 25 0 29 0 27 0 125 0 129 0 127 0 55 0 59 0 57 0 130 0 134 0 132 0 110 0 114 0 112 0 115 0 119 0 117 0 15 0 19 0 17 0 135 0 139 0 137 0 65 0 69 0 67 0 140 0 144 0 142 0 45 0 49 0 47 0 145 0 149 0 147 0

+
+
+
+ + + + -1395 237 3370 -1277 211 3375 -1338 225 3434 -1275 229 3495 -1393 255 3490 -3964 392 2093 -3865 387 2023 -3880 374 2107 -3794 374 2120 -3892 379 2191 -1515 186 3193 -1400 173 3225 -1473 184 3268 -1427 199 3340 -1542 212 3308 -3962 382 2095 -3952 381 2002 -3911 372 2053 -3860 375 2010 -3869 376 2103 -1513 216 3319 -1399 210 3291 -1441 215 3365 -1366 231 3407 -1480 237 3435 -4004 398 2155 -3994 395 2055 -3949 384 2110 -3895 385 2063 -3904 388 2163 -1455 275 3554 -1534 286 3643 -1541 273 3558 -1626 287 3564 -1547 277 3475 -3739 381 2143 -3739 373 2044 -3693 356 2096 -3642 344 2047 -3642 352 2146 -1435 271 3485 -1320 245 3505 -1390 250 3555 -1340 245 3625 -1455 272 3605 -663 53 923 -673 47 804 -607 42 858 -552 48 791 -542 53 910 -1473 258 3501 -1549 273 3592 -1559 253 3509 -1644 265 3516 -1568 250 3425 -680 48 946 -581 58 876 -594 39 959 -509 47 973 -607 37 1043 -1680 237 3385 -1685 206 3269 -1622 209 3327 -1564 198 3263 -1559 229 3380 -676 38 947 -667 43 855 -625 36 905 -575 47 862 -584 42 955 -1504 226 3362 -1418 227 3397 -1478 228 3423 -1450 242 3482 -1537 242 3447 -570 48 969 -569 45 869 -521 30 920 -469 26 870 -470 29 970 -1603 226 3318 -1511 224 3356 -1576 224 3384 -1546 237 3448 -1639 238 3411 378 49 1308 347 34 1192 422 36 1234 462 41 1157 493 56 1273 -1563 291 3656 -1469 282 3685 -1533 276 3718 -1500 275 3782 -1594 284 3752 173 37 1444 171 32 1324 234 32 1382 291 44 1318 294 49 1438 -4050 668 5783 -3936 649 5760 -3981 655 5832 -3909 659 5879 -4023 678 5901 380 32 1540 320 40 1438 403 34 1457 424 52 1376 484 44 1477 -4042 674 5835 -3959 661 5875 -4021 668 5898 -3995 676 5959 -4078 688 5919 601 53 1416 709 47 1467 628 42 1497 659 48 1578 551 53 1527 -4194 695 5760 -4104 686 5803 -4170 696 5827 -4142 710 5892 -4232 719 5849 529 58 1417 512 41 1299 580 34 1352 633 27 1283 649 44 1401 -4094 698 5928 -4004 676 5963 -4070 676 5991 -4041 667 6056 -4131 690 6022 550 61 1474 660 59 1522 581 47 1553 613 50 1634 503 51 1587 -5048 834 4399 -5108 835 4297 -5027 816 4318 -5005 815 4234 -4945 814 4335 268 48 1634 366 58 1564 353 39 1648 438 47 1662 340 37 1732 -5027 829 4523 -5017 832 4431 -4977 817 4481 -4926 818 4439 -4936 814 4531 427 38 1516 437 43 1424 479 36 1474 529 47 1432 520 42 1524 -4975 838 4582 -4968 821 4484 -4926 808 4540 -4873 792 4494 -4880 809 4592 353 46 1643 363 50 1543 408 41 1597 463 50 1551 453 46 1651 -4894 816 4393 -4897 792 4296 -4851 779 4350 -4803 754 4302 -4800 778 4399 730 48 1492 731 45 1392 779 30 1443 830 26 1393 829 29 1493 -1064 234 3808 -1092 215 3692 -1020 206 3738 -976 195 3664 -948 214 3780 1316 32 1323 1256 40 1222 1340 34 1241 1361 52 1159 1420 44 1260 -1086 246 3919 -1084 231 3800 -1025 224 3862 -964 218 3801 -966 233 3920 1364 38 1300 1373 43 1207 1416 36 1257 1466 47 1215 1456 42 1307 -1013 238 4039 -1065 249 3934 -986 227 3959 -958 234 3877 -906 223 3983 1320 46 1360 1330 50 1260 1376 41 1314 1430 50 1268 1420 46 1368 -880 213 3967 -883 194 3850 -822 186 3909 -763 176 3847 -760 195 3965 1471 48 1321 1472 45 1222 1520 30 1273 1571 26 1223 1570 29 1322 -916 222 3831 -930 199 3715 -868 183 3772 -814 159 3708 -801 183 3824 994 49 -284 963 34 -399 1038 36 -358 1078 41 -434 1109 56 -319 -804 212 3987 -811 198 3868 -750 183 3927 -693 169 3863 -686 184 3982 828 32 -269 825 27 -390 888 27 -331 946 39 -396 948 44 -275 -920 253 4149 -924 234 4030 -862 228 4090 -803 219 4026 -799 238 4145 849 28 -437 901 36 -543 931 30 -463 1010 48 -491 959 41 -385 -964 232 4019 -949 227 3927 -912 216 3980 -859 213 3940 -874 218 4032 1108 53 -277 1098 47 -396 1164 42 -342 1219 48 -409 1228 53 -290 -988 266 4140 -972 245 4043 -931 245 4101 -874 239 4058 -889 260 4155 1237 53 -152 1221 36 -270 1289 29 -217 1341 23 -286 1358 39 -168 -796 224 4090 -784 198 3995 -742 198 4053 -685 186 4010 -697 211 4106 962 43 13 947 32 -62 994 31 -30 1026 29 -78 1040 40 -1 -2226 150 2169 -2259 127 2056 -2184 125 2097 -2143 116 2021 -2110 140 2135 1034 43 -219 1133 52 -290 1120 33 -206 1205 41 -192 1107 31 -122 -2297 156 2318 -2301 139 2199 -2238 137 2258 -2180 136 2193 -2176 153 2312 1038 33 -218 1047 38 -310 1089 31 -260 1139 42 -303 1130 36 -210 -2331 177 2443 -2390 180 2341 -2308 166 2361 -2285 174 2278 -2227 170 2380 994 41 -158 1004 45 -257 1049 36 -203 1104 45 -249 1094 41 -150 -2187 156 2278 -2198 139 2160 -2133 132 2216 -2078 124 2149 -2067 141 2266 977 43 48 971 26 -49 1025 27 -2 1072 26 -56 1078 42 41 -2062 136 2196 -2081 109 2081 -2014 100 2135 -1963 80 2068 -1944 107 2183 -3248 324 2192 -3257 311 2074 -3194 295 2131 -3139 284 2065 -3129 297 2183 -2094 137 2328 -2137 135 2217 -2061 114 2252 -2026 107 2173 -1983 110 2285 -3270 320 2275 -3258 316 2183 -3219 304 2235 -3168 300 2193 -3179 304 2285 -2202 160 2398 -2104 151 2328 -2118 143 2413 -2032 142 2427 -2131 151 2497 -1159 49 388 -1190 34 273 -1115 36 315 -1074 41 238 -1043 56 353 -2206 150 2356 -2196 145 2263 -2155 138 2314 -2104 138 2271 -2114 144 2364 -1249 37 454 -1251 32 333 -1188 32 392 -1131 44 327 -1128 49 448 -2242 170 2459 -2232 162 2360 -2188 153 2415 -2133 151 2369 -2143 159 2468 -1205 32 514 -1265 40 412 -1181 34 432 -1160 52 350 -1101 44 451 -2038 138 2393 -2038 125 2295 -1992 110 2347 -1941 95 2299 -1941 108 2397 -1144 53 466 -1154 47 347 -1088 42 402 -1033 48 335 -1023 53 453 -3962 387 1993 -3996 369 1878 -3920 365 1920 -3880 361 1843 -3847 379 1957 -1056 58 391 -1072 41 274 -1004 34 327 -952 27 258 -936 44 375 -4170 389 1989 -4174 377 1869 -4111 374 1927 -4053 376 1862 -4049 387 1982 -1068 61 481 -1082 59 362 -1015 47 414 -961 50 346 -947 51 465 -4009 383 2119 -4069 391 2017 -3986 377 2037 -3964 388 1954 -3905 380 2055 -1160 48 489 -1062 58 419 -1075 39 502 -990 47 516 -1088 37 586 -3947 394 2070 -3958 382 1952 -3893 373 2006 -3838 369 1939 -3827 380 2057 -1157 38 490 -1148 43 398 -1105 36 448 -1055 47 406 -1065 42 498 -3823 385 1878 -3841 363 1762 -3774 352 1815 -3723 336 1747 -3705 358 1863 -1201 46 551 -1191 50 451 -1145 41 505 -1091 50 459 -1101 46 559 -3755 395 2112 -3771 388 1993 -3705 371 2046 -3652 364 1978 -3637 371 2096 -1050 48 512 -1049 45 413 -1001 30 464 -950 26 414 -951 29 513 + + + + + + + + + + 1 1 1 0 0.5 0.5 0 0 0 1 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 1 1 0 0 3 3 1 1 2 2 4 4 3 3 2 2 7 2 6 1 5 0 8 3 6 1 7 2 9 4 8 3 7 2 12 2 11 1 10 0 13 3 11 1 12 2 14 4 13 3 12 2 17 2 16 1 15 0 18 3 16 1 17 2 19 4 18 3 17 2 22 2 21 1 20 0 23 3 21 1 22 2 24 4 23 3 22 2 27 2 26 1 25 0 28 3 26 1 27 2 29 4 28 3 27 2 32 2 31 1 30 0 33 3 31 1 32 2 34 4 33 3 32 2 37 2 36 1 35 0 38 3 36 1 37 2 39 4 38 3 37 2 42 2 41 1 40 0 43 3 41 1 42 2 44 4 43 3 42 2 47 2 46 1 45 0 48 3 46 1 47 2 49 4 48 3 47 2 52 2 51 1 50 0 53 3 51 1 52 2 54 4 53 3 52 2 57 2 56 1 55 0 58 3 56 1 57 2 59 4 58 3 57 2 62 2 61 1 60 0 63 3 61 1 62 2 64 4 63 3 62 2 67 2 66 1 65 0 68 3 66 1 67 2 69 4 68 3 67 2 72 2 71 1 70 0 73 3 71 1 72 2 74 4 73 3 72 2 77 2 76 1 75 0 78 3 76 1 77 2 79 4 78 3 77 2 82 2 81 1 80 0 83 3 81 1 82 2 84 4 83 3 82 2 87 2 86 1 85 0 88 3 86 1 87 2 89 4 88 3 87 2 92 2 91 1 90 0 93 3 91 1 92 2 94 4 93 3 92 2 97 2 96 1 95 0 98 3 96 1 97 2 99 4 98 3 97 2 102 2 101 1 100 0 103 3 101 1 102 2 104 4 103 3 102 2 107 2 106 1 105 0 108 3 106 1 107 2 109 4 108 3 107 2 112 2 111 1 110 0 113 3 111 1 112 2 114 4 113 3 112 2 117 2 116 1 115 0 118 3 116 1 117 2 119 4 118 3 117 2 122 2 121 1 120 0 123 3 121 1 122 2 124 4 123 3 122 2 127 2 126 1 125 0 128 3 126 1 127 2 129 4 128 3 127 2 132 2 131 1 130 0 133 3 131 1 132 2 134 4 133 3 132 2 137 2 136 1 135 0 138 3 136 1 137 2 139 4 138 3 137 2 142 2 141 1 140 0 143 3 141 1 142 2 144 4 143 3 142 2 147 2 146 1 145 0 148 3 146 1 147 2 149 4 148 3 147 2 152 2 151 1 150 0 153 3 151 1 152 2 154 4 153 3 152 2 157 2 156 1 155 0 158 3 156 1 157 2 159 4 158 3 157 2 162 2 161 1 160 0 163 3 161 1 162 2 164 4 163 3 162 2 167 2 166 1 165 0 168 3 166 1 167 2 169 4 168 3 167 2 172 2 171 1 170 0 173 3 171 1 172 2 174 4 173 3 172 2 177 2 176 1 175 0 178 3 176 1 177 2 179 4 178 3 177 2 182 2 181 1 180 0 183 3 181 1 182 2 184 4 183 3 182 2 187 2 186 1 185 0 188 3 186 1 187 2 189 4 188 3 187 2 192 2 191 1 190 0 193 3 191 1 192 2 194 4 193 3 192 2 197 2 196 1 195 0 198 3 196 1 197 2 199 4 198 3 197 2 202 2 201 1 200 0 203 3 201 1 202 2 204 4 203 3 202 2 207 2 206 1 205 0 208 3 206 1 207 2 209 4 208 3 207 2 212 2 211 1 210 0 213 3 211 1 212 2 214 4 213 3 212 2 217 2 216 1 215 0 218 3 216 1 217 2 219 4 218 3 217 2 222 2 221 1 220 0 223 3 221 1 222 2 224 4 223 3 222 2 227 2 226 1 225 0 228 3 226 1 227 2 229 4 228 3 227 2 232 2 231 1 230 0 233 3 231 1 232 2 234 4 233 3 232 2 237 2 236 1 235 0 238 3 236 1 237 2 239 4 238 3 237 2 242 2 241 1 240 0 243 3 241 1 242 2 244 4 243 3 242 2 247 2 246 1 245 0 248 3 246 1 247 2 249 4 248 3 247 2 252 2 251 1 250 0 253 3 251 1 252 2 254 4 253 3 252 2 257 2 256 1 255 0 258 3 256 1 257 2 259 4 258 3 257 2 262 2 261 1 260 0 263 3 261 1 262 2 264 4 263 3 262 2 267 2 266 1 265 0 268 3 266 1 267 2 269 4 268 3 267 2 272 2 271 1 270 0 273 3 271 1 272 2 274 4 273 3 272 2 277 2 276 1 275 0 278 3 276 1 277 2 279 4 278 3 277 2 282 2 281 1 280 0 283 3 281 1 282 2 284 4 283 3 282 2 287 2 286 1 285 0 288 3 286 1 287 2 289 4 288 3 287 2 292 2 291 1 290 0 293 3 291 1 292 2 294 4 293 3 292 2 297 2 296 1 295 0 298 3 296 1 297 2 299 4 298 3 297 2 302 2 301 1 300 0 303 3 301 1 302 2 304 4 303 3 302 2 307 2 306 1 305 0 308 3 306 1 307 2 309 4 308 3 307 2 312 2 311 1 310 0 313 3 311 1 312 2 314 4 313 3 312 2 317 2 316 1 315 0 318 3 316 1 317 2 319 4 318 3 317 2 322 2 321 1 320 0 323 3 321 1 322 2 324 4 323 3 322 2 327 2 326 1 325 0 328 3 326 1 327 2 329 4 328 3 327 2 332 2 331 1 330 0 333 3 331 1 332 2 334 4 333 3 332 2 337 2 336 1 335 0 338 3 336 1 337 2 339 4 338 3 337 2 342 2 341 1 340 0 343 3 341 1 342 2 344 4 343 3 342 2 347 2 346 1 345 0 348 3 346 1 347 2 349 4 348 3 347 2 352 2 351 1 350 0 353 3 351 1 352 2 354 4 353 3 352 2 357 2 356 1 355 0 358 3 356 1 357 2 359 4 358 3 357 2 362 2 361 1 360 0 363 3 361 1 362 2 364 4 363 3 362 2 367 2 366 1 365 0 368 3 366 1 367 2 369 4 368 3 367 2 372 2 371 1 370 0 373 3 371 1 372 2 374 4 373 3 372 2 377 2 376 1 375 0 378 3 376 1 377 2 379 4 378 3 377 2 382 2 381 1 380 0 383 3 381 1 382 2 384 4 383 3 382 2 387 2 386 1 385 0 388 3 386 1 387 2 389 4 388 3 387 2 392 2 391 1 390 0 393 3 391 1 392 2 394 4 393 3 392 2 397 2 396 1 395 0 398 3 396 1 397 2 399 4 398 3 397 2 402 2 401 1 400 0 403 3 401 1 402 2 404 4 403 3 402 2 407 2 406 1 405 0 408 3 406 1 407 2 409 4 408 3 407 2 412 2 411 1 410 0 413 3 411 1 412 2 414 4 413 3 412 2 417 2 416 1 415 0 418 3 416 1 417 2 419 4 418 3 417 2 422 2 421 1 420 0 423 3 421 1 422 2 424 4 423 3 422 2 427 2 426 1 425 0 428 3 426 1 427 2 429 4 428 3 427 2 432 2 431 1 430 0 433 3 431 1 432 2 434 4 433 3 432 2 437 2 436 1 435 0 438 3 436 1 437 2 439 4 438 3 437 2 0 0 4 4 2 2 10 0 14 4 12 2 20 0 24 4 22 2 30 0 34 4 32 2 40 0 44 4 42 2 50 0 54 4 52 2 60 0 64 4 62 2 70 0 74 4 72 2 80 0 84 4 82 2 90 0 94 4 92 2 100 0 104 4 102 2 110 0 114 4 112 2 120 0 124 4 122 2 130 0 134 4 132 2 140 0 144 4 142 2 150 0 154 4 152 2 160 0 164 4 162 2 170 0 174 4 172 2 180 0 184 4 182 2 190 0 194 4 192 2 200 0 204 4 202 2 210 0 214 4 212 2 220 0 224 4 222 2 230 0 234 4 232 2 240 0 244 4 242 2 250 0 254 4 252 2 260 0 264 4 262 2 270 0 274 4 272 2 280 0 284 4 282 2 290 0 294 4 292 2 300 0 304 4 302 2 310 0 314 4 312 2 320 0 324 4 322 2 330 0 334 4 332 2 340 0 344 4 342 2 350 0 354 4 352 2 360 0 364 4 362 2 370 0 374 4 372 2 380 0 384 4 382 2 390 0 394 4 392 2 400 0 404 4 402 2 410 0 414 4 412 2 420 0 424 4 422 2 430 0 434 4 432 2 55 0 59 4 57 2 225 0 229 4 227 2 115 0 119 4 117 2 235 0 239 4 237 2 15 0 19 4 17 2 245 0 249 4 247 2 125 0 129 4 127 2 255 0 259 4 257 2 65 0 69 4 67 2 265 0 269 4 267 2 135 0 139 4 137 2 275 0 279 4 277 2 35 0 39 4 37 2 285 0 289 4 287 2 145 0 149 4 147 2 295 0 299 4 297 2 75 0 79 4 77 2 305 0 309 4 307 2 155 0 159 4 157 2 315 0 319 4 317 2 5 0 9 4 7 2 325 0 329 4 327 2 165 0 169 4 167 2 335 0 339 4 337 2 85 0 89 4 87 2 345 0 349 4 347 2 175 0 179 4 177 2 355 0 359 4 357 2 45 0 49 4 47 2 365 0 369 4 367 2 185 0 189 4 187 2 375 0 379 4 377 2 95 0 99 4 97 2 385 0 389 4 387 2 195 0 199 4 197 2 395 0 399 4 397 2 25 0 29 4 27 2 405 0 409 4 407 2 205 0 209 4 207 2 415 0 419 4 417 2 105 0 109 4 107 2 425 0 429 4 427 2 215 0 219 4 217 2 435 0 439 4 437 2

+
+
+
+ + + + -1395 237 3370 -1277 211 3375 -1338 225 3434 -1275 229 3495 -1393 255 3490 -3964 392 2093 -3865 387 2023 -3880 374 2107 -3794 374 2120 -3892 379 2191 -1515 186 3193 -1400 173 3225 -1473 184 3268 -1427 199 3340 -1542 212 3308 -3962 382 2095 -3952 381 2002 -3911 372 2053 -3860 375 2010 -3869 376 2103 -1513 216 3319 -1399 210 3291 -1441 215 3365 -1366 231 3407 -1480 237 3435 -4004 398 2155 -3994 395 2055 -3949 384 2110 -3895 385 2063 -3904 388 2163 -1455 275 3554 -1534 286 3643 -1541 273 3558 -1626 287 3564 -1547 277 3475 -3739 381 2143 -3739 373 2044 -3693 356 2096 -3642 344 2047 -3642 352 2146 -1435 271 3485 -1320 245 3505 -1390 250 3555 -1340 245 3625 -1455 272 3605 -663 53 923 -673 47 804 -607 42 858 -552 48 791 -542 53 910 -1473 258 3501 -1549 273 3592 -1559 253 3509 -1644 265 3516 -1568 250 3425 -680 48 946 -581 58 876 -594 39 959 -509 47 973 -607 37 1043 -1680 237 3385 -1685 206 3269 -1622 209 3327 -1564 198 3263 -1559 229 3380 -676 38 947 -667 43 855 -625 36 905 -575 47 862 -584 42 955 -1504 226 3362 -1418 227 3397 -1478 228 3423 -1450 242 3482 -1537 242 3447 -570 48 969 -569 45 869 -521 30 920 -469 26 870 -470 29 970 -1603 226 3318 -1511 224 3356 -1576 224 3384 -1546 237 3448 -1639 238 3411 378 49 1308 347 34 1192 422 36 1234 462 41 1157 493 56 1273 -1563 291 3656 -1469 282 3685 -1533 276 3718 -1500 275 3782 -1594 284 3752 173 37 1444 171 32 1324 234 32 1382 291 44 1318 294 49 1438 -4050 668 5783 -3936 649 5760 -3981 655 5832 -3909 659 5879 -4023 678 5901 380 32 1540 320 40 1438 403 34 1457 424 52 1376 484 44 1477 -4042 674 5835 -3959 661 5875 -4021 668 5898 -3995 676 5959 -4078 688 5919 601 53 1416 709 47 1467 628 42 1497 659 48 1578 551 53 1527 -4194 695 5760 -4104 686 5803 -4170 696 5827 -4142 710 5892 -4232 719 5849 529 58 1417 512 41 1299 580 34 1352 633 27 1283 649 44 1401 -4094 698 5928 -4004 676 5963 -4070 676 5991 -4041 667 6056 -4131 690 6022 550 61 1474 660 59 1522 581 47 1553 613 50 1634 503 51 1587 -5048 834 4399 -5108 835 4297 -5027 816 4318 -5005 815 4234 -4945 814 4335 268 48 1634 366 58 1564 353 39 1648 438 47 1662 340 37 1732 -5027 829 4523 -5017 832 4431 -4977 817 4481 -4926 818 4439 -4936 814 4531 427 38 1516 437 43 1424 479 36 1474 529 47 1432 520 42 1524 -4975 838 4582 -4968 821 4484 -4926 808 4540 -4873 792 4494 -4880 809 4592 353 46 1643 363 50 1543 408 41 1597 463 50 1551 453 46 1651 -4894 816 4393 -4897 792 4296 -4851 779 4350 -4803 754 4302 -4800 778 4399 730 48 1492 731 45 1392 779 30 1443 830 26 1393 829 29 1493 -1064 234 3808 -1092 215 3692 -1020 206 3738 -976 195 3664 -948 214 3780 1316 32 1323 1256 40 1222 1340 34 1241 1361 52 1159 1420 44 1260 -1086 246 3919 -1084 231 3800 -1025 224 3862 -964 218 3801 -966 233 3920 1364 38 1300 1373 43 1207 1416 36 1257 1466 47 1215 1456 42 1307 -1013 238 4039 -1065 249 3934 -986 227 3959 -958 234 3877 -906 223 3983 1320 46 1360 1330 50 1260 1376 41 1314 1430 50 1268 1420 46 1368 -880 213 3967 -883 194 3850 -822 186 3909 -763 176 3847 -760 195 3965 1471 48 1321 1472 45 1222 1520 30 1273 1571 26 1223 1570 29 1322 -916 222 3831 -930 199 3715 -868 183 3772 -814 159 3708 -801 183 3824 994 49 -284 963 34 -399 1038 36 -358 1078 41 -434 1109 56 -319 -804 212 3987 -811 198 3868 -750 183 3927 -693 169 3863 -686 184 3982 828 32 -269 825 27 -390 888 27 -331 946 39 -396 948 44 -275 -920 253 4149 -924 234 4030 -862 228 4090 -803 219 4026 -799 238 4145 849 28 -437 901 36 -543 931 30 -463 1010 48 -491 959 41 -385 -964 232 4019 -949 227 3927 -912 216 3980 -859 213 3940 -874 218 4032 1108 53 -277 1098 47 -396 1164 42 -342 1219 48 -409 1228 53 -290 -988 266 4140 -972 245 4043 -931 245 4101 -874 239 4058 -889 260 4155 1237 53 -152 1221 36 -270 1289 29 -217 1341 23 -286 1358 39 -168 -796 224 4090 -784 198 3995 -742 198 4053 -685 186 4010 -697 211 4106 962 43 13 947 32 -62 994 31 -30 1026 29 -78 1040 40 -1 -2226 150 2169 -2259 127 2056 -2184 125 2097 -2143 116 2021 -2110 140 2135 1034 43 -219 1133 52 -290 1120 33 -206 1205 41 -192 1107 31 -122 -2297 156 2318 -2301 139 2199 -2238 137 2258 -2180 136 2193 -2176 153 2312 1038 33 -218 1047 38 -310 1089 31 -260 1139 42 -303 1130 36 -210 -2331 177 2443 -2390 180 2341 -2308 166 2361 -2285 174 2278 -2227 170 2380 994 41 -158 1004 45 -257 1049 36 -203 1104 45 -249 1094 41 -150 -2187 156 2278 -2198 139 2160 -2133 132 2216 -2078 124 2149 -2067 141 2266 977 43 48 971 26 -49 1025 27 -2 1072 26 -56 1078 42 41 -2062 136 2196 -2081 109 2081 -2014 100 2135 -1963 80 2068 -1944 107 2183 -3248 324 2192 -3257 311 2074 -3194 295 2131 -3139 284 2065 -3129 297 2183 -2094 137 2328 -2137 135 2217 -2061 114 2252 -2026 107 2173 -1983 110 2285 -3270 320 2275 -3258 316 2183 -3219 304 2235 -3168 300 2193 -3179 304 2285 -2202 160 2398 -2104 151 2328 -2118 143 2413 -2032 142 2427 -2131 151 2497 -1159 49 388 -1190 34 273 -1115 36 315 -1074 41 238 -1043 56 353 -2206 150 2356 -2196 145 2263 -2155 138 2314 -2104 138 2271 -2114 144 2364 -1249 37 454 -1251 32 333 -1188 32 392 -1131 44 327 -1128 49 448 -2242 170 2459 -2232 162 2360 -2188 153 2415 -2133 151 2369 -2143 159 2468 -1205 32 514 -1265 40 412 -1181 34 432 -1160 52 350 -1101 44 451 -2038 138 2393 -2038 125 2295 -1992 110 2347 -1941 95 2299 -1941 108 2397 -1144 53 466 -1154 47 347 -1088 42 402 -1033 48 335 -1023 53 453 -3962 387 1993 -3996 369 1878 -3920 365 1920 -3880 361 1843 -3847 379 1957 -1056 58 391 -1072 41 274 -1004 34 327 -952 27 258 -936 44 375 -4170 389 1989 -4174 377 1869 -4111 374 1927 -4053 376 1862 -4049 387 1982 -1068 61 481 -1082 59 362 -1015 47 414 -961 50 346 -947 51 465 -4009 383 2119 -4069 391 2017 -3986 377 2037 -3964 388 1954 -3905 380 2055 -1160 48 489 -1062 58 419 -1075 39 502 -990 47 516 -1088 37 586 -3947 394 2070 -3958 382 1952 -3893 373 2006 -3838 369 1939 -3827 380 2057 -1157 38 490 -1148 43 398 -1105 36 448 -1055 47 406 -1065 42 498 -3823 385 1878 -3841 363 1762 -3774 352 1815 -3723 336 1747 -3705 358 1863 -1201 46 551 -1191 50 451 -1145 41 505 -1091 50 459 -1101 46 559 -3755 395 2112 -3771 388 1993 -3705 371 2046 -3652 364 1978 -3637 371 2096 -1050 48 512 -1049 45 413 -1001 30 464 -950 26 414 -951 29 513 + + + + + + + + + + 0.0001220703125 0.9996995192307693 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 0 1 0 0 0 3 0 1 0 2 0 4 0 3 0 2 0 7 0 6 0 5 0 8 0 6 0 7 0 9 0 8 0 7 0 12 0 11 0 10 0 13 0 11 0 12 0 14 0 13 0 12 0 17 0 16 0 15 0 18 0 16 0 17 0 19 0 18 0 17 0 22 0 21 0 20 0 23 0 21 0 22 0 24 0 23 0 22 0 27 0 26 0 25 0 28 0 26 0 27 0 29 0 28 0 27 0 32 0 31 0 30 0 33 0 31 0 32 0 34 0 33 0 32 0 37 0 36 0 35 0 38 0 36 0 37 0 39 0 38 0 37 0 42 0 41 0 40 0 43 0 41 0 42 0 44 0 43 0 42 0 47 0 46 0 45 0 48 0 46 0 47 0 49 0 48 0 47 0 52 0 51 0 50 0 53 0 51 0 52 0 54 0 53 0 52 0 57 0 56 0 55 0 58 0 56 0 57 0 59 0 58 0 57 0 62 0 61 0 60 0 63 0 61 0 62 0 64 0 63 0 62 0 67 0 66 0 65 0 68 0 66 0 67 0 69 0 68 0 67 0 72 0 71 0 70 0 73 0 71 0 72 0 74 0 73 0 72 0 77 0 76 0 75 0 78 0 76 0 77 0 79 0 78 0 77 0 82 0 81 0 80 0 83 0 81 0 82 0 84 0 83 0 82 0 87 0 86 0 85 0 88 0 86 0 87 0 89 0 88 0 87 0 92 0 91 0 90 0 93 0 91 0 92 0 94 0 93 0 92 0 97 0 96 0 95 0 98 0 96 0 97 0 99 0 98 0 97 0 102 0 101 0 100 0 103 0 101 0 102 0 104 0 103 0 102 0 107 0 106 0 105 0 108 0 106 0 107 0 109 0 108 0 107 0 112 0 111 0 110 0 113 0 111 0 112 0 114 0 113 0 112 0 117 0 116 0 115 0 118 0 116 0 117 0 119 0 118 0 117 0 122 0 121 0 120 0 123 0 121 0 122 0 124 0 123 0 122 0 127 0 126 0 125 0 128 0 126 0 127 0 129 0 128 0 127 0 132 0 131 0 130 0 133 0 131 0 132 0 134 0 133 0 132 0 137 0 136 0 135 0 138 0 136 0 137 0 139 0 138 0 137 0 142 0 141 0 140 0 143 0 141 0 142 0 144 0 143 0 142 0 147 0 146 0 145 0 148 0 146 0 147 0 149 0 148 0 147 0 152 0 151 0 150 0 153 0 151 0 152 0 154 0 153 0 152 0 157 0 156 0 155 0 158 0 156 0 157 0 159 0 158 0 157 0 162 0 161 0 160 0 163 0 161 0 162 0 164 0 163 0 162 0 167 0 166 0 165 0 168 0 166 0 167 0 169 0 168 0 167 0 172 0 171 0 170 0 173 0 171 0 172 0 174 0 173 0 172 0 177 0 176 0 175 0 178 0 176 0 177 0 179 0 178 0 177 0 182 0 181 0 180 0 183 0 181 0 182 0 184 0 183 0 182 0 187 0 186 0 185 0 188 0 186 0 187 0 189 0 188 0 187 0 192 0 191 0 190 0 193 0 191 0 192 0 194 0 193 0 192 0 197 0 196 0 195 0 198 0 196 0 197 0 199 0 198 0 197 0 202 0 201 0 200 0 203 0 201 0 202 0 204 0 203 0 202 0 207 0 206 0 205 0 208 0 206 0 207 0 209 0 208 0 207 0 212 0 211 0 210 0 213 0 211 0 212 0 214 0 213 0 212 0 217 0 216 0 215 0 218 0 216 0 217 0 219 0 218 0 217 0 222 0 221 0 220 0 223 0 221 0 222 0 224 0 223 0 222 0 227 0 226 0 225 0 228 0 226 0 227 0 229 0 228 0 227 0 232 0 231 0 230 0 233 0 231 0 232 0 234 0 233 0 232 0 237 0 236 0 235 0 238 0 236 0 237 0 239 0 238 0 237 0 242 0 241 0 240 0 243 0 241 0 242 0 244 0 243 0 242 0 247 0 246 0 245 0 248 0 246 0 247 0 249 0 248 0 247 0 252 0 251 0 250 0 253 0 251 0 252 0 254 0 253 0 252 0 257 0 256 0 255 0 258 0 256 0 257 0 259 0 258 0 257 0 262 0 261 0 260 0 263 0 261 0 262 0 264 0 263 0 262 0 267 0 266 0 265 0 268 0 266 0 267 0 269 0 268 0 267 0 272 0 271 0 270 0 273 0 271 0 272 0 274 0 273 0 272 0 277 0 276 0 275 0 278 0 276 0 277 0 279 0 278 0 277 0 282 0 281 0 280 0 283 0 281 0 282 0 284 0 283 0 282 0 287 0 286 0 285 0 288 0 286 0 287 0 289 0 288 0 287 0 292 0 291 0 290 0 293 0 291 0 292 0 294 0 293 0 292 0 297 0 296 0 295 0 298 0 296 0 297 0 299 0 298 0 297 0 302 0 301 0 300 0 303 0 301 0 302 0 304 0 303 0 302 0 307 0 306 0 305 0 308 0 306 0 307 0 309 0 308 0 307 0 312 0 311 0 310 0 313 0 311 0 312 0 314 0 313 0 312 0 317 0 316 0 315 0 318 0 316 0 317 0 319 0 318 0 317 0 322 0 321 0 320 0 323 0 321 0 322 0 324 0 323 0 322 0 327 0 326 0 325 0 328 0 326 0 327 0 329 0 328 0 327 0 332 0 331 0 330 0 333 0 331 0 332 0 334 0 333 0 332 0 337 0 336 0 335 0 338 0 336 0 337 0 339 0 338 0 337 0 342 0 341 0 340 0 343 0 341 0 342 0 344 0 343 0 342 0 347 0 346 0 345 0 348 0 346 0 347 0 349 0 348 0 347 0 352 0 351 0 350 0 353 0 351 0 352 0 354 0 353 0 352 0 357 0 356 0 355 0 358 0 356 0 357 0 359 0 358 0 357 0 362 0 361 0 360 0 363 0 361 0 362 0 364 0 363 0 362 0 367 0 366 0 365 0 368 0 366 0 367 0 369 0 368 0 367 0 372 0 371 0 370 0 373 0 371 0 372 0 374 0 373 0 372 0 377 0 376 0 375 0 378 0 376 0 377 0 379 0 378 0 377 0 382 0 381 0 380 0 383 0 381 0 382 0 384 0 383 0 382 0 387 0 386 0 385 0 388 0 386 0 387 0 389 0 388 0 387 0 392 0 391 0 390 0 393 0 391 0 392 0 394 0 393 0 392 0 397 0 396 0 395 0 398 0 396 0 397 0 399 0 398 0 397 0 402 0 401 0 400 0 403 0 401 0 402 0 404 0 403 0 402 0 407 0 406 0 405 0 408 0 406 0 407 0 409 0 408 0 407 0 412 0 411 0 410 0 413 0 411 0 412 0 414 0 413 0 412 0 417 0 416 0 415 0 418 0 416 0 417 0 419 0 418 0 417 0 422 0 421 0 420 0 423 0 421 0 422 0 424 0 423 0 422 0 427 0 426 0 425 0 428 0 426 0 427 0 429 0 428 0 427 0 432 0 431 0 430 0 433 0 431 0 432 0 434 0 433 0 432 0 437 0 436 0 435 0 438 0 436 0 437 0 439 0 438 0 437 0 0 0 4 0 2 0 10 0 14 0 12 0 20 0 24 0 22 0 30 0 34 0 32 0 40 0 44 0 42 0 50 0 54 0 52 0 60 0 64 0 62 0 70 0 74 0 72 0 80 0 84 0 82 0 90 0 94 0 92 0 100 0 104 0 102 0 110 0 114 0 112 0 120 0 124 0 122 0 130 0 134 0 132 0 140 0 144 0 142 0 150 0 154 0 152 0 160 0 164 0 162 0 170 0 174 0 172 0 180 0 184 0 182 0 190 0 194 0 192 0 200 0 204 0 202 0 210 0 214 0 212 0 220 0 224 0 222 0 230 0 234 0 232 0 240 0 244 0 242 0 250 0 254 0 252 0 260 0 264 0 262 0 270 0 274 0 272 0 280 0 284 0 282 0 290 0 294 0 292 0 300 0 304 0 302 0 310 0 314 0 312 0 320 0 324 0 322 0 330 0 334 0 332 0 340 0 344 0 342 0 350 0 354 0 352 0 360 0 364 0 362 0 370 0 374 0 372 0 380 0 384 0 382 0 390 0 394 0 392 0 400 0 404 0 402 0 410 0 414 0 412 0 420 0 424 0 422 0 430 0 434 0 432 0 55 0 59 0 57 0 225 0 229 0 227 0 115 0 119 0 117 0 235 0 239 0 237 0 15 0 19 0 17 0 245 0 249 0 247 0 125 0 129 0 127 0 255 0 259 0 257 0 65 0 69 0 67 0 265 0 269 0 267 0 135 0 139 0 137 0 275 0 279 0 277 0 35 0 39 0 37 0 285 0 289 0 287 0 145 0 149 0 147 0 295 0 299 0 297 0 75 0 79 0 77 0 305 0 309 0 307 0 155 0 159 0 157 0 315 0 319 0 317 0 5 0 9 0 7 0 325 0 329 0 327 0 165 0 169 0 167 0 335 0 339 0 337 0 85 0 89 0 87 0 345 0 349 0 347 0 175 0 179 0 177 0 355 0 359 0 357 0 45 0 49 0 47 0 365 0 369 0 367 0 185 0 189 0 187 0 375 0 379 0 377 0 95 0 99 0 97 0 385 0 389 0 387 0 195 0 199 0 197 0 395 0 399 0 397 0 25 0 29 0 27 0 405 0 409 0 407 0 205 0 209 0 207 0 415 0 419 0 417 0 105 0 109 0 107 0 425 0 429 0 427 0 215 0 219 0 217 0 435 0 439 0 437 0

+
+
+
+ + + + -934 14 244 -886 14 261 -872 14 328 -857 14 219 -812 14 253 -849 14 166 -722 14 114 -861 14 93 -791 14 -10 -883 14 27 -860 14 -85 -911 14 -26 -914 14 -143 -962 14 -49 -947 14 -144 -1002 14 -160 -966 14 -168 -966 14 -186 -963 12 -188 -969 12 -191 -962 1 -192 -991 12 -248 -982 1 -247 -964 12 -346 -956 1 -342 -903 12 -431 -899 1 -423 -840 12 -451 -844 1 -442 -815 12 -389 -823 1 -387 -842 12 -292 -850 1 -292 -901 12 -213 -910 1 -211 -890 12 -202 -901 1 -199 -895 12 -170 -903 1 -176 -915 12 -147 -919 1 -158 -946 12 -148 -940 1 -158 -962 12 -169 -953 1 -174 -951 1 -197 -43 12 1279 -92 14 1239 -90 12 1238 -103 14 1185 -100 12 1185 -94 14 1120 -91 12 1121 -91 14 1019 -89 12 1019 -94 14 947 -91 12 948 -106 14 869 -103 12 869 -138 14 790 -136 12 789 -168 14 741 -165 12 740 -165 14 703 -162 12 704 -125 14 673 -123 12 675 -76 14 663 -75 12 665 -3 14 657 -3 12 660 68 14 664 67 12 666 118 14 680 117 12 683 145 14 709 142 12 710 143 14 746 140 12 745 116 14 790 114 12 790 93 14 870 90 12 869 75 14 948 73 12 948 68 14 1019 66 12 1019 73 14 1120 70 12 1121 79 14 1186 76 12 1186 69 14 1240 26 10 1277 -42 10 1278 -89 10 1238 -99 10 1184 -91 10 1120 -88 10 1018 -91 10 948 -102 10 869 -135 10 789 -163 10 740 -161 10 705 -122 10 676 -75 10 666 -3 10 660 67 10 666 116 10 683 141 10 710 139 10 745 113 10 790 89 10 869 72 10 948 65 10 1018 70 10 1120 -73 10 145 -110 12 110 -109 10 109 -157 12 84 -155 10 82 -171 12 40 -169 10 39 -159 12 -10 -157 10 -11 -148 12 -64 -147 10 -64 -159 12 -134 -158 10 -133 -159 12 -184 -157 10 -182 -134 12 -228 -132 10 -226 -89 12 -241 -88 10 -239 -38 12 -220 -37 10 -218 12 12 -167 12 10 -166 60 12 -123 59 10 -122 107 12 -93 107 10 -92 180 12 -67 179 10 -67 209 12 -36 207 10 -36 223 12 18 221 10 18 200 12 59 198 10 58 145 12 91 144 10 89 74 12 102 73 10 100 18 12 150 18 10 148 -26 12 167 -25 10 165 -74 12 147 -111 14 111 -158 14 84 -172 14 40 -161 14 -11 -150 14 -64 -161 14 -135 -160 14 -184 -135 14 -230 -89 14 -243 -37 14 -221 13 14 -169 61 14 -125 109 14 -94 181 14 -69 211 14 -37 224 14 19 201 14 60 146 14 92 74 14 103 19 14 152 -26 14 168 -75 14 148 -2339 -50 519 -2272 -53 407 -2291 -40 388 -2066 -55 339 -2078 -41 316 -1821 -56 280 -1831 -43 253 -1573 -57 225 -1590 -44 198 -1516 -44 147 -1516 -16 147 -1525 -44 76 -1525 -16 77 -1642 -16 -264 -1616 6 -255 -1582 -16 -552 -1553 10 -540 -1485 -16 -696 -1466 11 -671 -1278 -16 -769 -1271 9 -739 -996 -16 -790 -992 7 -761 -677 -16 -843 -666 5 -819 -541 -16 -948 -519 5 -933 -494 -16 -1120 -465 7 -1115 -479 -16 -1230 -450 10 -1217 -391 -16 -1332 -377 11 -1302 -234 -16 -1336 -242 10 -1306 -31 -16 -1208 -45 7 -1183 186 -16 -1110 171 9 -1083 370 -16 -985 358 6 -959 2614 107 7409 2584 110 7203 3660 14 6296 3537 14 6201 4380 14 4762 4294 14 4753 4612 12 3215 4508 14 3244 4371 11 1758 4240 14 1777 3811 14 635 3669 14 1694 2902 14 1083 2792 21 2049 2510 14 1351 2371 14 1495 2343 14 1297 2089 14 1445 2256 14 1235 2053 14 1147 2220 14 1116 2083 14 947 2233 14 1008 2208 14 812 2322 14 938 2524 14 857 2390 14 988 2592 14 1088 2417 14 1118 2401 14 1239 2403 1 1110 2392 1 1225 -1496 -58 173 -1496 -58 82 -1642 -45 -264 -1582 -45 -552 -1485 -45 -696 -1278 -45 -769 -996 -45 -790 -677 -45 -843 -541 -45 -948 -494 -45 -1120 -479 -45 -1230 -391 -45 -1332 -234 -45 -1336 -31 -45 -1208 186 -45 -1110 370 -45 -985 -334 18 2837 -114 14 2804 -113 10 2808 43 14 2865 42 9 2869 123 14 3005 122 9 3007 290 14 3060 288 10 3062 428 14 3218 425 10 3219 463 14 3419 459 10 3418 403 14 3638 400 10 3636 188 14 3827 187 10 3823 -24 14 3856 -24 10 3852 -246 23 3819 -245 19 3816 -423 41 3658 -420 37 3655 -488 43 3453 -484 38 3452 -461 37 3259 -457 32 3260 -541 39 3115 -536 34 3116 -517 34 2953 -512 29 2956 -1006 14 -19 -1134 14 -34 -1121 14 -154 -1325 14 -143 -1092 14 -347 -1288 14 -566 -1025 14 -498 -969 14 -694 -824 14 -654 -757 14 -747 -682 14 -720 -632 14 -750 -576 14 -805 -589 14 -736 -526 14 -773 -576 14 -694 -496 14 -670 -598 14 -646 -517 14 -517 -644 14 -620 -690 14 -476 -747 14 -535 -839 14 -455 -916 14 -488 -906 14 -435 -968 14 -348 2347 1 1276 3161 14 338 2340 14 60 2517 14 -165 2246 14 -675 2333 6 -761 1798 14 -879 1895 9 -962 1574 14 -1033 1659 9 -1097 1383 14 -1063 1396 10 -1138 1213 14 -1021 1165 9 -1081 930 6 -940 1153 -16 -1109 920 -16 -966 1153 -45 -1109 920 -45 -966 1165 -58 -1081 931 -58 -937 -1223 10 1703 -1156 10 1601 -1216 14 1706 -1147 14 1601 -906 14 1666 -1155 14 1499 -680 14 1185 -1147 14 1258 -864 14 779 -1364 14 868 -1216 14 664 -1414 14 730 -1356 14 447 -1596 15 595 -1787 16 340 -1756 16 541 -2036 17 394 -1915 17 600 -2187 19 456 -2239 20 545 -2336 20 524 -2353 43 716 -2381 -8 507 -2397 18 719 -2381 -37 506 -2397 -10 718 -2353 -27 713 -2114 -23 980 803 1 488 797 12 496 778 12 438 795 14 499 775 14 439 730 14 553 680 14 560 684 14 600 629 14 630 661 14 631 657 14 674 663 12 632 659 12 673 664 1 671 680 1 688 703 1 685 677 12 693 707 12 689 708 14 692 730 14 657 766 14 709 783 14 622 874 14 586 782 14 571 864 14 499 -429 12 902 -433 14 901 -405 12 856 -407 14 853 -360 12 832 -361 14 829 -318 12 843 -316 14 840 -308 12 869 -305 14 865 -217 12 876 -215 14 871 -147 12 934 -142 14 933 -137 12 1010 -133 14 1011 -197 12 1057 -194 14 1060 -288 12 1051 -288 14 1054 -357 12 995 -361 14 998 -360 12 954 -364 14 959 -371 12 958 -371 14 962 -987 0 135 -1010 12 80 -1003 0 79 -1017 12 17 -1010 0 20 -1003 12 -17 -997 0 -11 -961 12 -45 -960 0 -36 -913 12 -23 -917 0 -14 -886 12 29 -893 0 31 -864 12 94 -871 0 95 -852 12 166 -858 0 167 -861 12 218 -866 0 219 -887 12 257 -889 0 251 -933 12 241 -929 0 236 -967 12 193 -961 0 191 -994 12 138 -1014 14 81 -1021 14 16 -970 14 196 -997 14 140 -3199 254 4041 -3227 275 4028 -3577 327 4252 -3581 342 4222 -4660 572 4037 -4663 611 4033 -5169 712 4121 -5174 751 4113 -5587 853 4262 -5586 887 4282 -6182 996 4298 -6112 999 4388 -6246 1030 4480 -5803 988 4746 -6252 1052 4667 -6146 1058 4865 -6381 1068 4642 -6251 1070 4888 -6412 1031 4648 -6272 1038 4912 -6405 989 4658 -6267 997 4922 -6369 965 4668 -6239 971 4912 -3199 254 4041 -3303 241 3618 -3227 275 4028 -3328 262 3637 -3227 313 4028 -3328 299 3637 -3196 333 4043 -3306 326 3620 -3180 327 3657 -3949 355 2566 -3054 319 2831 -3865 349 2049 -2902 235 2209 -3305 263 1792 -3008 228 1933 -2618 157 1851 -2521 157 2039 -2411 136 2006 -2503 141 2047 -2412 124 2018 -2 14 465 73 14 465 159 14 535 213 14 419 248 14 652 333 14 333 517 14 517 419 14 213 651 14 332 465 14 73 722 14 114 465 14 -73 722 14 -114 419 14 -213 651 14 -332 333 14 -333 517 14 -517 213 14 -419 -2283 115 2166 -2321 113 2068 -2263 126 2172 -2306 124 2064 -1977 72 2078 -2253 102 1900 -2186 76 1701 -2445 108 1510 -3158 213 1490 -3142 195 1416 -3927 317 1307 -3854 286 1232 -4425 344 1250 -3847 250 1202 -4412 303 1225 -3843 214 1203 -4408 265 1226 -3846 202 1235 -4416 255 1252 4619 -45 3204 4379 -16 1737 4379 -45 1737 3884 -16 490 3884 -45 490 3196 -16 176 3196 -45 176 2605 -16 -259 2605 -45 -259 2344 -16 -784 2344 -45 -784 1914 -16 -986 1914 -45 -986 1669 -16 -1126 1669 -45 -1126 1395 -16 -1169 1395 -45 -1169 -1485 14 1818 -1345 11 1781 -1486 19 1826 -1341 15 1787 -1232 22 1928 -998 15 1828 -592 14 1789 -382 14 1292 -268 14 1181 -153 14 1333 -43 14 1281 27 12 1277 66 10 1238 -720 78 3432 -593 105 3769 -848 181 3935 -602 155 4062 -867 248 4346 -280 130 4239 -296 201 4761 272 72 4767 -313 275 5282 219 197 5623 -288 299 6317 751 113 5964 670 163 6776 2288 93 6553 588 177 7588 556 199 7985 523 195 8082 -2078 -13 316 -1831 -14 254 -2067 11 340 -1821 11 281 -1538 14 296 -1402 14 219 -1082 14 465 -1130 14 140 -1052 14 270 -797 400 7011 -794 386 6096 -1115 446 6638 -1189 352 5776 -1526 409 6375 -1583 322 5457 -1937 326 6112 -2213 292 5419 -2390 317 5746 -2843 353 5380 -3019 440 5824 -3207 455 5561 -3310 483 5623 -3210 451 5560 -3312 479 5621 -1614 -58 -254 -1554 -58 -540 -1466 -58 -672 -1271 -58 -739 -992 -58 -760 -664 -58 -815 -515 -58 -931 -463 -58 -1114 1872 14 398 1608 14 -393 1280 14 -264 1196 14 -463 1000 14 -298 946 14 -399 882 14 -331 856 14 -415 773 14 -408 828 14 -433 798 14 -439 799 12 -443 774 12 -475 802 1 -453 782 1 -479 -651 14 -332 -419 14 -213 -722 14 -114 -465 14 -73 -465 14 73 -419 14 213 -333 14 333 3879 8 516 3188 7 201 2595 8 -233 -1259 460 7177 -1079 414 7435 -1351 464 7193 -1497 440 7470 -1498 472 7202 -1972 389 7542 -2016 412 7333 -2683 313 7651 -2364 377 6862 -2973 433 6711 -3037 454 6570 -3139 468 6664 -3192 487 6515 -3215 485 6637 -3309 503 6638 -3304 486 6646 -3344 492 6673 1353 14 -816 919 14 -815 672 14 -816 630 6 -887 455 14 -873 313 12 -938 273 9 -985 257 11 -971 242 10 -996 254 9 -970 240 8 -994 235 0 -990 207 0 -1002 806 14 -541 814 12 -534 802 12 -538 787 1 -531 795 1 -542 778 13 -533 755 1 -540 755 12 -535 709 12 -571 754 14 -532 707 14 -569 729 14 -514 690 14 -488 770 14 -473 636 14 -636 408 14 -801 332 14 -651 265 14 -845 114 14 -722 184 14 -837 98 14 -865 138 14 -886 113 14 -921 116 12 -923 104 12 -948 120 0 -927 110 0 -947 194 12 893 128 1 949 121 12 946 116 1 1018 108 12 1021 167 1 1066 163 12 1073 251 1 1065 252 12 1071 319 1 1015 326 12 1018 331 1 946 339 12 944 280 1 899 284 12 893 196 1 900 -320 14 -816 -321 12 -818 -247 14 -867 -250 12 -868 -232 14 -935 -236 12 -934 -289 14 -979 -290 12 -975 -377 14 -971 -376 12 -968 -452 14 -917 -449 12 -916 -466 14 -850 -462 12 -852 -410 14 -804 -409 12 -808 -1297 448 7053 -1302 463 7083 -1308 448 7080 -1352 464 7112 -1351 449 7108 -1402 466 7124 -1401 451 7118 -1438 469 7111 -1429 453 7110 -1423 468 7071 -1419 452 7079 -1380 466 7042 -1376 450 7050 -1327 464 7031 -1325 449 7040 -1295 463 7050 -680 12 -719 -632 12 -747 -591 12 -733 -579 12 -694 -601 12 -648 -644 12 -623 -686 12 -636 -688 14 -634 -698 12 -677 -702 14 -677 -1571 478 7120 -1503 474 6996 -1375 462 6929 -1249 462 6969 -1180 458 7094 -481 14 -909 -422 14 -989 -349 14 -1012 -277 14 -1015 -229 14 -971 -201 14 -1039 -179 14 -980 -123 14 -1005 -123 12 -1002 -59 12 -998 -122 1 -996 -62 1 -992 -693 1 -675 -673 1 -717 -633 1 -739 -596 1 -729 -584 1 -693 -604 1 -652 -644 1 -630 -681 1 -639 -324 1 -825 -407 1 -818 -456 1 -854 -442 1 -913 -373 1 -961 -290 1 -968 -241 1 -932 -255 1 -872 -672 1 747 -685 12 719 -680 1 723 -663 12 702 -660 1 708 -622 12 705 -625 1 710 -590 12 724 -595 1 729 -582 12 754 -588 1 752 -603 12 774 -607 1 767 -646 12 770 -642 1 765 -679 12 750 229 14 744 169 14 811 144 14 871 118 14 944 104 14 1022 193 14 890 161 14 1076 253 14 1074 329 14 1020 342 14 943 286 14 890 -777 14 423 -651 14 332 -668 14 522 -517 14 517 -636 14 636 -519 14 685 -587 14 722 -445 14 779 -578 14 755 -523 14 840 -601 14 777 -641 14 855 -646 14 774 -683 14 751 -3581 380 4222 -4628 655 4070 -5160 789 4140 -5055 798 4226 -5568 902 4376 -4692 758 4561 -4600 758 5501 -4914 845 5759 -4197 686 6414 -5261 876 6044 -817 14 447 -743 14 505 -704 14 588 -722 14 651 -692 14 684 -757 14 757 -689 14 717 550 14 700 459 14 706 476 14 764 371 14 757 399 14 807 258 14 837 -664 14 699 -622 14 701 880 14 82 882 14 127 844 14 216 903 14 150 942 14 290 935 14 138 990 14 131 952 14 99 950 14 52 949 12 98 948 12 54 940 1 61 924 1 45 248 0 -969 261 12 -925 254 0 -925 245 12 -887 238 0 -891 216 12 -876 213 0 -883 182 12 -883 181 0 -889 140 12 -889 145 0 -892 835 1 -467 829 1 -500 845 12 -462 837 12 -501 840 14 -502 816 14 -536 884 14 -562 820 14 -578 818 14 -667 796 14 -634 749 14 -669 794 12 -632 748 12 -666 747 1 -662 708 1 -660 -802 32 2365 -93 14 2080 -167 14 1474 120 14 1633 -59 14 1387 97 14 1383 28 14 1279 66 12 1238 76 10 1186 824 1 -448 827 12 -436 849 14 -460 887 14 -461 1089 14 -620 1015 14 4 1281 14 228 1020 14 272 1028 14 386 964 14 354 977 14 469 931 14 435 862 12 495 859 1 486 1089 14 695 961 14 880 700 14 852 723 14 1053 571 14 855 533 14 934 530 12 932 455 12 972 524 1 926 456 1 964 -332 14 -651 -415 14 -740 -297 14 -764 -182 14 -830 -164 14 -899 -199 14 -934 -196 12 -934 -177 12 -977 -190 1 -935 -174 1 -972 -1284 231 3807 -1328 247 3906 -1300 244 3779 -1352 263 3901 -1557 250 3576 -1558 293 4088 -1902 268 3793 -2042 288 4005 -2246 229 3498 -2527 267 3923 -2430 248 3440 -2601 264 3298 -2429 242 3435 -2597 258 3296 -4452 372 1326 -4724 392 1428 -4760 394 1552 -4798 393 1372 -4849 397 1496 -4817 356 1347 -4874 359 1486 -4813 316 1348 -4870 320 1487 -4789 297 1373 -4842 300 1498 -58 14 -1001 -56 14 -1034 20 14 -989 43 14 -1063 105 14 -1027 168 11 -1037 219 10 -1024 210 11 -1011 -1432 305 4480 -1895 300 4644 -2358 273 4807 -2848 328 4388 -2975 349 5025 -3169 388 4853 -3335 453 5197 -3429 468 5092 -3429 465 5095 -3562 493 5030 555 14 3951 786 14 3549 730 19 4391 1228 22 3690 950 17 4547 1686 69 4891 951 18 4793 651 31 4983 -1807 251 8559 -1767 250 8451 -348 1 937 -349 1 991 -284 1 1045 -200 1 1051 -146 1 1006 -154 1 936 -333 14 -333 -213 14 -419 -73 14 -465 73 14 -465 -2497 156 2240 -2406 145 2289 -2513 173 2248 -2402 159 2303 -2527 197 2495 -2024 105 2408 -2319 193 2860 -1631 98 2948 -2148 176 3001 -2040 176 3177 -2152 172 3004 -2045 172 3176 -2318 128 2258 -2301 140 2268 -1845 67 2309 -1636 17 1785 -1630 12 1778 -1707 10 1596 -1716 14 1595 -1633 14 1500 -1809 29 1450 -1543 14 1294 -1891 39 1206 -1516 15 1008 -1766 26 933 -1578 17 843 -1670 19 822 -1596 5 822 -1665 6 805 -4519 380 1991 -4664 381 1926 -4001 350 2664 -4693 348 1931 -4024 317 2693 -4690 309 1932 -4023 279 2693 -4000 260 2663 182 14 1243 388 14 1410 698 14 1726 596 14 2296 237 14 2542 607 14 2522 -962 14 334 -882 14 450 -818 12 452 -747 12 508 -817 1 460 -751 1 512 -892 14 -168 -857 14 -200 -839 14 -290 -812 14 -390 4619 -16 3204 4386 -16 4762 4386 -45 4762 3660 -45 6296 3649 -58 6283 824 14 -273 895 14 -276 938 14 -267 935 12 -264 966 12 -203 929 1 -257 956 1 -201 181 14 -880 217 14 -873 247 14 -885 298 14 -892 264 14 -925 -2291 -11 389 -2272 15 411 -720 303 4959 -1127 314 4636 -1121 285 4408 -1265 280 4325 -1126 271 4386 -1246 263 4316 4610 -58 3214 4372 -58 1757 3879 -58 517 3188 -58 203 2595 -58 -233 2332 -58 -759 -407 1 939 -419 1 903 -400 1 862 -360 1 840 -323 1 849 -311 1 885 -304 1 877 -2003 51 1388 -2112 51 1347 -2025 42 1179 -2071 23 1171 -2156 23 984 -2156 -6 983 936 1 2529 1087 2 2520 931 14 2548 1101 14 2538 1039 14 2684 1251 17 2612 1813 40 3202 1818 19 2187 2999 96 3901 3904 14 3515 -213 14 419 -284 14 558 -2462 99 1440 -2152 35 1330 -2071 -6 1171 712 14 -718 702 14 -667 686 14 -623 689 12 -623 714 1 -574 809 1 -527 816 12 -578 808 1 -579 -114 14 -722 -71 14 -856 -102 14 -896 -45 14 -923 -102 12 -898 -47 12 -925 -52 1 -929 -36 1 -966 -3901 457 7516 -5325 787 6098 -3921 475 7540 -5350 810 6115 -3921 510 7540 -5350 850 6114 -3901 539 7516 -5326 881 6097 558 1 856 567 12 855 548 14 785 656 14 787 610 14 722 676 14 695 -4628 681 4190 -3838 524 4546 -4331 699 4875 -3903 580 4884 -4038 622 5073 -3721 538 5045 -3837 575 5152 -3835 571 5154 -3911 596 5286 -1026 14 636 -859 14 596 -786 14 653 -856 12 594 -785 12 649 -787 1 641 -731 1 639 -3221 470 6647 -3144 453 6676 -3106 459 6718 -3117 446 6717 -3149 465 6762 -3157 452 6745 -3248 485 6756 -3240 468 6743 -1283 14 -668 -1387 14 -631 -1465 14 -558 -1548 14 -230 -963 14 461 -899 14 513 -895 12 513 -851 1 590 925 12 39 926 14 36 945 14 -74 976 14 -109 1034 14 -157 969 14 -204 101 14 -948 114 14 -981 145 13 -1003 178 12 -1014 209 9 -1009 -1164 10 1503 -1243 10 1438 -1237 14 1431 -1371 14 1415 -1508 14 1435 -1627 10 1504 714 14 594 713 11 597 685 12 602 688 1 606 668 1 636 26 14 -841 28 14 -910 -28 14 -967 -31 12 -967 1155 2 2465 1172 15 2469 1288 16 2352 1070 14 2207 1436 14 1197 -513 14 957 -417 14 946 -414 12 944 -371 1 949 -3812 543 7433 -3179 465 6873 -3336 498 6840 -3328 502 6725 -3317 485 6714 -1793 161 8563 -1807 178 8588 -1807 213 8590 -797 14 -582 -995 14 -247 39 43 4248 219 63 4458 378 21 4257 424 27 4504 524 25 4501 440 15 4522 518 13 4521 787 14 2666 774 14 2497 717 14 2409 792 1 2486 738 1 2416 -853 67 2995 -1068 178 3401 -1144 232 3857 -1031 242 4074 -1156 222 3877 -1051 230 4076 -86 14 -1122 -208 14 -1199 -325 14 -1230 -386 14 -1159 -560 31 2670 -337 23 2833 170 -58 -1083 -46 -58 -1181 -242 -58 -1307 -378 -58 -1304 -451 -58 -1218 -6336 936 4446 -6366 958 4425 -6374 998 4415 -6351 1037 4422 117 12 -979 121 0 -974 -2539 154 2139 -2560 172 2136 -2660 251 2816 -2510 220 2784 -2656 245 2821 -2507 215 2790 -3135 346 4127 -3495 418 4343 -3577 410 4247 -3227 313 4028 -333 14 787 -246 14 826 733 14 617 731 12 618 712 1 599 723 1 656 834 14 -149 897 14 46 898 12 48 904 1 55 -3148 427 5445 -3145 430 5445 -3152 419 5316 -3230 430 5229 -3232 427 5230 -3337 450 5198 -1531 16 819 -1545 15 759 -1611 15 715 -1690 16 693 -1687 4 714 -1729 5 729 942 1 95 933 12 136 928 1 125 904 12 147 908 1 135 884 12 126 892 1 119 899 14 -104 902 12 -107 944 12 -78 943 1 -87 965 1 -113 -3449 526 6731 -3385 521 6567 -3354 510 6668 807 14 353 810 12 355 785 1 435 -6195 957 4278 -6188 917 4289 -6164 898 4321 -3618 574 6016 -3306 511 5974 -3528 534 5677 -3424 506 5607 -3425 502 5605 -5580 814 4272 -5147 698 4159 -4621 562 4081 -3142 166 1388 -2467 74 1413 -3140 132 1388 -2466 43 1413 -3144 119 1412 -2476 30 1429 631 -16 -914 631 -45 -914 630 -58 -884 357 -58 -957 -2205 377 6514 1895 -58 -962 1659 -58 -1097 1396 -58 -1138 -4657 289 1928 -1404 14 75 -1500 4 78 898 1 -264 896 12 -272 871 14 -236 475 1 778 407 1 816 476 12 768 402 12 810 360 14 885 -3932 628 5856 -3677 566 5685 -3805 590 5617 -3676 562 5683 -3803 586 5615 -4116 661 5564 -3902 606 5487 -3914 600 5285 -3899 601 5487 -2112 44 987 -2012 43 969 614 29 4805 713 26 4801 782 22 4687 638 24 4584 625 12 4598 1101 2 2395 957 1 2351 1115 14 2383 959 14 2332 784 14 2182 -3700 498 4737 -3438 438 4709 -3629 443 4362 960 12 354 927 12 433 950 1 353 920 1 430 -2022 189 3343 -2027 185 3340 876 14 -165 880 12 -166 875 12 -236 888 1 -167 882 1 -234 3235 25 4915 -73 14 465 973 12 -110 932 1 300 939 12 293 873 14 293 373 1 886 364 12 885 383 14 956 -3039 439 6843 -1329 265 4120 -1348 282 4122 -725 12 648 -716 1 585 -2735 270 2933 -2713 274 3111 -2708 267 3112 -1620 3 729 -1565 3 768 -1555 3 806 -1030 264 4291 -1053 253 4287 -420 14 -1055 -2152 5 1330 -2030 -23 1167 -972 14 -189 775 1 -512 767 12 -512 763 14 -512 -885 14 -202 -896 14 -214 417 30 4599 493 31 4709 512 18 4708 619 16 4785 728 12 657 -163 12 -901 -104 1 -905 -1487 3 170 -1590 -15 199 1199 14 477 694 1 -624 705 11 -664 537 1 794 545 12 788 890 1 85 882 12 83 -872 1 462 -879 12 454 455 14 977 386 12 954 -1567 5 224 774 14 -531 463 14 1176 876 1 302 874 12 296 -3077 332 4007 -4142 657 5264 -3720 535 5048 -3562 496 5027 -1726 14 1695 -1716 10 1693 -2248 223 3492 -2101 203 3456 -2097 208 3461 -2612 368 6169 -1909 26 764 -1742 20 775 -1720 7 767 -1746 18 717 793 14 2342 806 1 2360 1770 14 925 -127 14 -1045 1316 14 -7 720 24 4698 699 12 4707 146 11 -1001 148 0 -995 178 10 -1012 178 0 -1005 -708 12 588 -154 14 871 727 1 620 788 1 -629 -3528 530 5675 -2266 40 708 -2730 264 2936 438 17 4599 815 1 358 394 1 947 -887 1 516 909 1 -112 -161 1 -907 -2116 -12 1350 -2320 188 2864 -3155 416 5316 -332 14 651 -5570 798 4306 -2789 290 3381 697 14 4785 3660 -16 6296 -560 31 2670 -1373 10 1421 -1506 10 1441 2380 1 997 2321 1 953 2261 1 1003 2244 1 1119 2280 1 1231 -220 1 883 4376 -58 4761 + + + + + + + + + + -1.8671875 7.837890625 -1.78515625 7.80859375 -1.759765625 7.6953125 -1.734375 7.880859375 -1.658203125 7.822265625 -1.720703125 7.970703125 -1.50390625 8.060546875 -1.7421875 8.095703125 -1.623046875 8.2734375 -1.779296875 8.208984375 -1.740234375 8.400390625 -1.826171875 8.30078125 -1.83203125 8.5 -1.9140625 8.33984375 -1.888671875 8.501953125 -1.982421875 8.529296875 -1.921875 8.54296875 -1.919921875 8.572265625 -1.916015625 8.576171875 -1.92578125 8.58203125 -1.9140625 8.583984375 -1.962890625 8.677734375 -1.94921875 8.67578125 -1.91796875 8.845703125 -1.904296875 8.83984375 -1.814453125 8.9921875 -1.806640625 8.9765625 -1.70703125 9.025390625 -1.712890625 9.009765625 -1.6640625 8.919921875 -1.677734375 8.916015625 -1.7109375 8.75390625 -1.72265625 8.75390625 -1.810546875 8.619140625 -1.826171875 8.615234375 -1.791015625 8.599609375 -1.80859375 8.595703125 -1.80078125 8.544921875 -1.814453125 8.5546875 -1.833984375 8.5078125 -1.841796875 8.525390625 -1.88671875 8.5078125 -1.876953125 8.525390625 -1.9140625 8.544921875 -1.8984375 8.552734375 -1.89453125 8.59375 -0.345703125 6.072265625 -0.4296875 6.140625 -0.42578125 6.142578125 -0.447265625 6.232421875 -0.443359375 6.232421875 -0.43359375 6.34375 -0.427734375 6.341796875 -0.427734375 6.515625 -0.423828125 6.515625 -0.43359375 6.638671875 -0.4296875 6.63671875 -0.453125 6.771484375 -0.44921875 6.771484375 -0.509765625 6.90625 -0.50390625 6.908203125 -0.55859375 6.990234375 -0.552734375 6.9921875 -0.552734375 7.0546875 -0.548828125 7.052734375 -0.484375 7.10546875 -0.482421875 7.1015625 -0.40234375 7.123046875 -0.40234375 7.119140625 -0.27734375 7.1328125 -0.27734375 7.12890625 -0.15625 7.12109375 -0.15625 7.1171875 -0.068359375 7.09375 -0.072265625 7.08984375 -0.0234375 7.044921875 -0.029296875 7.04296875 -0.02734375 6.98046875 -0.03125 6.984375 -0.07421875 6.90625 -0.076171875 6.908203125 -0.11328125 6.76953125 -0.1171875 6.771484375 -0.142578125 6.63671875 -0.146484375 6.63671875 -0.15625 6.515625 -0.158203125 6.515625 -0.146484375 6.34375 -0.150390625 6.341796875 -0.13671875 6.23046875 -0.140625 6.23046875 -0.154296875 6.138671875 -0.2265625 6.076171875 -0.345703125 6.07421875 -0.423828125 6.142578125 -0.44140625 6.234375 -0.423828125 6.517578125 -0.427734375 6.63671875 -0.447265625 6.771484375 -0.55078125 6.990234375 -0.546875 7.052734375 -0.48046875 7.1015625 -0.400390625 7.119140625 -0.27734375 7.126953125 -0.158203125 7.1171875 -0.07421875 7.087890625 -0.03125 7.04296875 -0.033203125 6.982421875 -0.078125 6.90625 -0.119140625 6.771484375 -0.1484375 6.63671875 -0.16015625 6.517578125 -0.15234375 6.341796875 -0.3984375 8.0078125 -0.4609375 8.06640625 -0.458984375 8.068359375 -0.541015625 8.111328125 -0.537109375 8.11328125 -0.564453125 8.185546875 -0.560546875 8.1875 -0.544921875 8.2734375 -0.541015625 8.2734375 -0.525390625 8.365234375 -0.5234375 8.365234375 -0.544921875 8.484375 -0.541015625 8.482421875 -0.54296875 8.568359375 -0.541015625 8.56640625 -0.501953125 8.64453125 -0.498046875 8.642578125 -0.42578125 8.66796875 -0.423828125 8.6640625 -0.337890625 8.630859375 -0.3359375 8.62890625 -0.251953125 8.541015625 -0.251953125 8.5390625 -0.169921875 8.466796875 -0.169921875 8.46484375 -0.087890625 8.4140625 -0.08984375 8.4140625 0.03515625 8.37109375 0.033203125 8.37109375 0.083984375 8.31640625 0.080078125 8.31640625 0.107421875 8.22265625 0.103515625 8.224609375 0.068359375 8.154296875 0.06640625 8.15625 -0.0234375 8.099609375 -0.025390625 8.1015625 -0.14453125 8.080078125 -0.146484375 8.083984375 -0.240234375 7.998046875 -0.240234375 8.001953125 -0.31640625 7.970703125 -0.31640625 7.97265625 -0.400390625 8.00390625 -0.462890625 8.064453125 -0.54296875 8.109375 -0.56640625 8.185546875 -0.546875 8.2734375 -0.529296875 8.365234375 -0.546875 8.486328125 -0.546875 8.5703125 -0.501953125 8.6484375 -0.42578125 8.669921875 -0.3359375 8.634765625 -0.25 8.54296875 -0.16796875 8.46875 -0.0859375 8.416015625 0.037109375 8.373046875 0.0859375 8.318359375 0.109375 8.22265625 0.0703125 8.15234375 -0.021484375 8.09765625 -0.14453125 8.078125 -0.23828125 7.99609375 -0.318359375 7.966796875 -0.400390625 8.001953125 -3.947265625 6.892578125 -3.88671875 7.23046875 -3.849609375 7.205078125 -3.65625 7.505859375 -3.607421875 7.48046875 -3.34375 7.75 -3.30859375 7.716796875 -3.017578125 7.921875 -2.978515625 7.89453125 -2.888671875 8.001953125 -2.833984375 7.9765625 -2.89453125 8.1015625 -2.8515625 8.09765625 -3.072265625 8.703125 -3.02734375 8.6875 -2.97265625 9.197265625 -2.923828125 9.177734375 -2.806640625 9.443359375 -2.7734375 9.400390625 -2.453125 9.568359375 -2.44140625 9.517578125 -1.970703125 9.603515625 -1.96484375 9.5546875 -1.427734375 9.6953125 -1.408203125 9.65234375 -1.1953125 9.873046875 -1.158203125 9.84765625 -1.115234375 10.16796875 -1.06640625 10.158203125 -1.08984375 10.35546875 -1.041015625 10.33203125 -0.939453125 10.529296875 -0.916015625 10.478515625 -0.671875 10.53515625 -0.685546875 10.482421875 -0.326171875 10.31640625 -0.349609375 10.2734375 0.04296875 10.1484375 0.017578125 10.103515625 0.357421875 9.935546875 0.337890625 9.892578125 5.42578125 -9.447265625 5.34765625 -9.0390625 10.0546875 -5.689453125 9.751953125 -5.29296875 11.65234375 -1.455078125 11.404296875 -1.26953125 12.068359375 2.76953125 11.8359375 2.65234375 10.68359375 5.255859375 10.611328125 4.923828125 8.248046875 7.087890625 7.501953125 5.36328125 5.1953125 6.408203125 6.611328125 3.572265625 3.9765625 5.94921875 3.701171875 5.703125 3.66015625 6.04296875 3.328125 5.7890625 3.546875 6.146484375 3.28125 6.298828125 3.498046875 6.349609375 3.3203125 6.638671875 3.515625 6.533203125 3.580078125 6.931640625 3.6328125 6.654296875 3.900390625 6.828125 3.740234375 6.568359375 4.080078125 6.408203125 3.794921875 6.345703125 3.76171875 6.140625 3.765625 6.359375 3.7421875 6.1640625 -2.921875 8.017578125 -2.939453125 8.107421875 -3.1328125 8.71875 -3.025390625 9.216796875 -2.837890625 9.48828125 -2.458984375 9.615234375 -1.98046875 9.6484375 -1.44921875 9.73046875 -1.228515625 9.90625 -1.15234375 10.193359375 -1.12890625 10.392578125 -0.96484375 10.5859375 -0.654296875 10.59375 -0.31640625 10.384765625 0.060546875 10.20703125 0.373046875 9.990234375 -0.7734375 3.41015625 -0.466796875 3.470703125 -0.46484375 3.462890625 -0.19921875 3.365234375 -0.19921875 3.359375 -0.0625 3.126953125 -0.0625 3.123046875 0.22265625 3.033203125 0.21875 3.029296875 0.45703125 2.763671875 0.451171875 2.76171875 0.515625 2.421875 0.509765625 2.423828125 0.4140625 2.046875 0.41015625 2.05078125 0.048828125 1.724609375 0.046875 1.73046875 -0.314453125 1.67578125 -0.314453125 1.681640625 -0.685546875 1.73828125 -0.68359375 1.744140625 -0.955078125 2.013671875 -0.94921875 2.017578125 -1.02734375 2.361328125 -1.021484375 2.36328125 -0.966796875 2.69140625 -0.962890625 2.69140625 -1.0625 2.939453125 -1.0546875 2.935546875 -1.01171875 3.212890625 -1.0078125 3.208984375 -1.990234375 8.287109375 -2.20703125 8.314453125 -2.185546875 8.517578125 -2.533203125 8.5 -2.134765625 8.84765625 -2.470703125 9.220703125 -2.021484375 9.10546875 -1.92578125 9.439453125 -1.6796875 9.37109375 -1.564453125 9.53125 -1.4375 9.484375 -1.3515625 9.53515625 -1.25390625 9.62890625 -1.27734375 9.51171875 -1.169921875 9.57421875 -1.25390625 9.439453125 -1.119140625 9.400390625 -1.29296875 9.359375 -1.154296875 9.13671875 -1.37109375 9.314453125 -1.44921875 9.068359375 -1.546875 9.16796875 -1.703125 9.033203125 -1.8359375 9.08984375 -1.818359375 8.998046875 -1.923828125 8.849609375 3.666015625 6.078125 5.87890625 7.677734375 3.736328125 8.15234375 4.1953125 8.537109375 3.55859375 9.408203125 3.71875 9.5546875 2.794921875 9.755859375 2.9609375 9.896484375 2.4140625 10.017578125 2.556640625 10.126953125 2.0859375 10.0703125 2.109375 10.197265625 1.796875 9.998046875 1.71484375 10.099609375 1.314453125 9.859375 1.6953125 10.1484375 1.296875 9.904296875 1.669921875 10.220703125 1.27734375 9.97265625 1.65625 10.275390625 1.25390625 10.01953125 -1.974609375 5.208984375 -1.91796875 5.40234375 -1.962890625 5.205078125 -1.90625 5.40625 -1.5625 5.318359375 -1.94921875 5.58984375 -1.34375 6.201171875 -2.0234375 6.033203125 -1.74609375 6.923828125 -2.55078125 6.755859375 -2.34765625 7.12109375 -2.685546875 7.0078125 -2.5859375 7.4921875 -2.91796875 7.154296875 -3.19140625 7.533203125 -3.12109375 7.171875 -3.5 7.3125 -3.306640625 6.978515625 -3.6640625 7.107421875 -3.693359375 6.896484375 -3.806640625 6.884765625 -3.6953125 6.58203125 -3.86328125 6.88671875 -3.736328125 6.556640625 -3.904296875 6.888671875 -3.78125 6.533203125 -3.81640625 6.515625 -3.439453125 6.1953125 1.09765625 7.421875 1.0859375 7.408203125 1.0546875 7.505859375 1.08203125 7.40234375 1.048828125 7.505859375 0.97265625 7.310546875 0.88671875 7.298828125 0.892578125 7.23046875 0.798828125 7.1796875 0.85546875 7.177734375 0.84765625 7.10546875 0.859375 7.17578125 0.8515625 7.10546875 0.859375 7.109375 0.88671875 7.08203125 0.92578125 7.083984375 0.8828125 7.072265625 0.93359375 7.078125 0.935546875 7.07421875 0.97265625 7.1328125 1.03515625 7.044921875 1.064453125 7.193359375 1.21875 7.255859375 1.060546875 7.279296875 1.201171875 7.40234375 -1 6.716796875 -1.005859375 6.71875 -0.96484375 6.79296875 -0.96875 6.796875 -0.890625 6.833984375 -0.890625 6.837890625 -0.818359375 6.8125 -0.81640625 6.818359375 -0.796875 6.771484375 -0.79296875 6.77734375 -0.640625 6.759765625 -0.63671875 6.767578125 -0.5234375 6.66015625 -0.515625 6.6640625 -0.5078125 6.53125 -0.5 6.529296875 -0.60546875 6.44921875 -0.6015625 6.443359375 -0.763671875 6.4609375 -0.763671875 6.453125 -0.8828125 6.556640625 -0.888671875 6.552734375 -0.890625 6.62890625 -0.896484375 6.619140625 -0.908203125 6.62109375 -0.90625 6.615234375 -1.95703125 8.0234375 -1.99609375 8.1171875 -1.982421875 8.119140625 -2.0078125 8.224609375 -1.99609375 8.21875 -1.984375 8.28515625 -1.974609375 8.2734375 -1.912109375 8.33203125 -1.91015625 8.31640625 -1.830078125 8.294921875 -1.837890625 8.279296875 -1.783203125 8.205078125 -1.794921875 8.201171875 -1.74609375 8.09375 -1.7578125 8.09375 -1.7265625 7.970703125 -1.736328125 7.970703125 -1.740234375 7.880859375 -1.75 7.880859375 -1.78515625 7.81640625 -1.7890625 7.826171875 -1.865234375 7.84375 -1.857421875 7.8515625 -1.923828125 7.923828125 -1.912109375 7.9296875 -1.96875 8.01953125 -2.001953125 8.1171875 -2.015625 8.2265625 -1.927734375 7.919921875 -1.974609375 8.015625 -5.833984375 1.408203125 -5.8125 1.39453125 -6.3828125 1.125 -6.380859375 1.08984375 -8.126953125 1.5625 -8.1328125 1.509765625 -9.099609375 1.400390625 -9.09765625 1.34375 -9.7421875 1.234375 -9.736328125 1.185546875 -10.646484375 1.12109375 -10.55859375 0.96875 -10.791015625 0.8046875 -10.15234375 0.36328125 -10.8515625 0.484375 -10.736328125 0.1484375 -11.05078125 0.5234375 -10.912109375 0.111328125 -11.10546875 0.53125 -10.95703125 0.0859375 -11.162109375 0.541015625 -11.013671875 0.064453125 -11.220703125 0.55078125 -11.052734375 0.044921875 -5.654296875 1.994140625 -5.607421875 1.998046875 -5.77734375 1.3828125 -5.564453125 2.01171875 -5.7265625 1.35546875 -5.51953125 2.03515625 -5.37109375 1.966796875 -5.5625 3.60546875 -4.74609375 3.150390625 -5.140625 4.1796875 -4.013671875 4.078125 -4.2578125 4.58984375 -3.994140625 4.45703125 -3.52734375 4.673828125 -3.4765625 4.419921875 -3.345703125 4.498046875 -3.458984375 4.412109375 -3.349609375 4.478515625 -0.275390625 7.4609375 -0.146484375 7.4609375 0 7.341796875 0.091796875 7.5390625 0.150390625 7.140625 0.294921875 7.685546875 0.609375 7.373046875 0.443359375 7.890625 0.837890625 7.689453125 0.51953125 8.12890625 0.958984375 8.060546875 0.51953125 8.380859375 0.958984375 8.451171875 0.443359375 8.62109375 0.837890625 8.822265625 0.294921875 8.82421875 0.609375 9.13671875 0.091796875 8.970703125 -3.23828125 4.2890625 -3.259765625 4.427734375 -3.21484375 4.28515625 -3.2421875 4.4375 -2.884765625 4.498046875 -3.154296875 4.6953125 -3.0625 5.01171875 -3.33984375 5.248046875 -3.94921875 5.068359375 -3.970703125 5.19140625 -4.673828125 5.138671875 -4.669921875 5.271484375 -5.4296875 5.19140625 -4.6875 5.31640625 -5.44140625 5.236328125 -4.70703125 5.35546875 -5.462890625 5.275390625 -4.728515625 5.390625 -5.482421875 5.30859375 12.18359375 2.796875 10.794921875 5.318359375 10.875 5.36328125 8.302734375 7.478515625 8.32421875 7.564453125 5.998046875 8.01171875 6.03515625 8.099609375 4.423828125 8.740234375 4.453125 8.833984375 3.74609375 9.59375 3.7890625 9.65234375 2.9921875 9.96484375 3.009765625 10.041015625 2.57421875 10.177734375 2.595703125 10.259765625 2.107421875 10.25 2.1015625 10.333984375 -2.296875 4.978515625 -2.11328125 5.052734375 -2.296875 4.96484375 -2.107421875 5.04296875 -1.958984375 4.8359375 -1.654296875 5.021484375 -1.123046875 5.14453125 -0.87890625 6.033203125 -0.712890625 6.232421875 -0.533203125 5.98046875 -0.34765625 6.068359375 -0.158203125 6.142578125 -1.38671875 2.2734375 -1.251953125 1.82421875 -1.697265625 1.541015625 -1.30078125 1.32421875 -1.751953125 0.841796875 -0.75 1.021484375 -0.77734375 0.130859375 0.19140625 0.123046875 -0.806640625 -0.763671875 0.255859375 -1.76171875 -0.552734375 -3.107421875 1.3203125 -2.759765625 1.203125 -5.03125 4.642578125 -4.56640625 1.0859375 -7.302734375 1.03125 -8.484375 0.974609375 -8.82421875 -3.57421875 7.447265625 -3.265625 7.677734375 -3.552734375 7.40625 -3.248046875 7.62890625 -2.857421875 7.70703125 -2.6640625 7.880859375 -2.119140625 7.4609375 -2.201171875 8.015625 -2.068359375 7.794921875 -1.361328125 -4.453125 -1.626953125 -2.361328125 -2.17578125 -3.427734375 -2.30078125 -1.765625 -2.876953125 -2.89453125 -2.974609375 -1.169921875 -3.578125 -2.361328125 -4.048828125 -1.046875 -4.3515625 -1.642578125 -5.123046875 -0.923828125 -5.423828125 -1.6796875 -5.744140625 -1.232421875 -5.919921875 -1.337890625 -5.75 -1.228515625 -5.923828125 -1.333984375 -3.189453125 8.740234375 -3.080078125 9.232421875 -2.875 9.521484375 -2.466796875 9.658203125 -1.9921875 9.6875 -1.46875 9.765625 -1.26171875 9.93359375 -1.185546875 10.21875 2.921875 7.576171875 2.470703125 8.92578125 1.91015625 8.70703125 1.767578125 9.044921875 1.43359375 8.763671875 1.341796875 8.9375 1.23046875 8.8203125 1.1875 8.96484375 1.046875 8.953125 1.140625 8.994140625 1.087890625 9.005859375 1.08984375 9.01171875 1.046875 9.06640625 1.09375 9.02734375 1.060546875 9.07421875 -1.3828125 8.822265625 -0.98828125 8.62109375 -1.50390625 8.451171875 -1.06640625 8.380859375 -1.06640625 8.12890625 -0.98828125 7.890625 -0.83984375 7.685546875 8.279296875 7.373046875 5.966796875 7.91015625 4.3984375 8.654296875 -2.419921875 -4.427734375 -2.11328125 -4.880859375 -2.578125 -4.45703125 -2.828125 -4.892578125 -2.828125 -4.443359375 -3.63671875 -4.853515625 -3.712890625 -4.486328125 -4.849609375 -4.796875 -4.3046875 -3.546875 -5.345703125 -3.193359375 -5.453125 -2.953125 -5.62890625 -3.11328125 -5.71875 -2.859375 -5.7578125 -3.06640625 -5.91796875 -3.068359375 -5.91015625 -3.08203125 -5.9765625 -3.12890625 2.03515625 9.6484375 1.294921875 9.646484375 0.873046875 9.6484375 0.80078125 9.76953125 0.50390625 9.74609375 0.26171875 9.85546875 0.193359375 9.935546875 0.166015625 9.912109375 0.138671875 9.955078125 0.16015625 9.912109375 0.13671875 9.951171875 0.126953125 9.9453125 0.080078125 9.96484375 1.103515625 9.177734375 1.115234375 9.166015625 1.095703125 9.173828125 1.068359375 9.162109375 1.08203125 9.181640625 1.0546875 9.166015625 1.015625 9.177734375 1.013671875 9.16796875 0.9375 9.23046875 1.013671875 9.162109375 0.93359375 9.2265625 0.970703125 9.1328125 0.904296875 9.087890625 1.041015625 9.0625 0.8125 9.341796875 0.423828125 9.623046875 0.29296875 9.3671875 0.1796875 9.697265625 -0.076171875 9.48828125 0.041015625 9.68359375 -0.103515625 9.732421875 -0.03515625 9.767578125 -0.078125 9.826171875 -0.07421875 9.830078125 -0.09375 9.873046875 -0.06640625 9.8359375 -0.08203125 9.873046875 0.05859375 6.73046875 -0.052734375 6.634765625 -0.064453125 6.640625 -0.07421875 6.517578125 -0.087890625 6.513671875 0.01171875 6.435546875 0.005859375 6.423828125 0.15625 6.4375 0.158203125 6.42578125 0.271484375 6.521484375 0.283203125 6.517578125 0.29296875 6.638671875 0.3046875 6.642578125 0.205078125 6.720703125 0.212890625 6.732421875 0.0625 6.71875 -0.818359375 9.646484375 -0.8203125 9.65234375 -0.6953125 9.734375 -0.69921875 9.73828125 -0.66796875 9.8515625 -0.67578125 9.849609375 -0.765625 9.92578125 -0.767578125 9.919921875 -0.916015625 9.912109375 -0.9140625 9.908203125 -1.04296875 9.8203125 -1.0390625 9.818359375 -1.068359375 9.70703125 -1.0625 9.708984375 -0.97265625 9.62890625 -0.970703125 9.634765625 -2.486328125 -4.208984375 -2.494140625 -4.267578125 -2.50390625 -4.2578125 -2.580078125 -4.3203125 -2.578125 -4.306640625 -2.666015625 -4.341796875 -2.662109375 -4.328125 -2.724609375 -4.3125 -2.7109375 -4.30859375 -2.69921875 -4.248046875 -2.693359375 -4.259765625 -2.626953125 -4.201171875 -2.619140625 -4.2109375 -2.537109375 -4.177734375 -2.533203125 -4.189453125 -2.482421875 -4.208984375 -1.431640625 9.482421875 -1.3515625 9.529296875 -1.28125 9.5078125 -1.259765625 9.439453125 -1.296875 9.361328125 -1.37109375 9.318359375 -1.443359375 9.33984375 -1.447265625 9.3359375 -1.46484375 9.41015625 -1.470703125 9.41015625 -2.953125 -4.279296875 -2.8359375 -4.09375 -2.619140625 -4.005859375 -2.404296875 -4.064453125 -2.28515625 -4.27734375 -1.09375 9.806640625 -0.9921875 9.943359375 -0.869140625 9.982421875 -0.74609375 9.98828125 -0.662109375 9.912109375 -0.615234375 10.02734375 -0.578125 9.927734375 -0.482421875 9.970703125 -0.482421875 9.966796875 -0.375 9.958984375 -0.482421875 9.955078125 -0.37890625 9.94921875 -1.455078125 9.408203125 -1.419921875 9.478515625 -1.353515625 9.515625 -1.291015625 9.5 -1.26953125 9.439453125 -1.302734375 9.369140625 -1.37109375 9.330078125 -1.43359375 9.34765625 -0.826171875 9.6640625 -0.966796875 9.650390625 -1.05078125 9.712890625 -1.025390625 9.814453125 -0.908203125 9.89453125 -0.767578125 9.908203125 -0.68359375 9.845703125 -0.708984375 9.744140625 -1.419921875 6.98046875 -1.44140625 7.02734375 -1.43359375 7.01953125 -1.40234375 7.056640625 -1.3984375 7.046875 -1.333984375 7.05078125 -1.33984375 7.04296875 -1.279296875 7.017578125 -1.287109375 7.01171875 -1.265625 6.966796875 -1.275390625 6.970703125 -1.30078125 6.93359375 -1.30859375 6.9453125 -1.375 6.94140625 -1.369140625 6.94921875 -1.431640625 6.974609375 0.1171875 6.986328125 0.015625 6.87109375 -0.025390625 6.767578125 -0.0703125 6.642578125 -0.09375 6.509765625 0.056640625 6.734375 0.001953125 6.41796875 0.158203125 6.421875 0.2890625 6.513671875 0.310546875 6.64453125 0.21484375 6.736328125 -1.599609375 7.533203125 -1.3828125 7.689453125 -1.412109375 7.36328125 -1.154296875 7.373046875 -1.357421875 7.169921875 -1.158203125 7.0859375 -1.2734375 7.021484375 -1.03125 6.92578125 -1.259765625 6.966796875 -1.15625 6.818359375 -1.298828125 6.927734375 -1.3515625 6.7890625 -1.375 6.93359375 -1.4375 6.97265625 -6.380859375 1.05078125 -8.13671875 1.455078125 -9.095703125 1.29296875 -8.947265625 1.138671875 -9.720703125 1.017578125 -8.3046875 0.626953125 -8.154296875 -1.05859375 -8.685546875 -1.505859375 -7.43359375 -2.6875 -9.255859375 -2.03515625 -1.666015625 7.490234375 -1.541015625 7.392578125 -1.474609375 7.251953125 -1.50390625 7.14453125 -1.453125 7.087890625 -1.564453125 6.962890625 -1.44921875 7.03125 0.666015625 7.05859375 0.509765625 7.05078125 0.5390625 6.951171875 0.359375 6.962890625 0.408203125 6.876953125 0.16796875 6.826171875 -1.404296875 7.0625 -1.333984375 7.05859375 1.228515625 8.11328125 1.232421875 8.037109375 1.166015625 7.884765625 1.267578125 7.998046875 1.333984375 7.759765625 1.322265625 8.01953125 1.416015625 8.03125 1.3515625 8.0859375 1.34765625 8.166015625 1.345703125 8.0859375 1.34375 8.162109375 1.330078125 8.1484375 1.302734375 8.177734375 0.150390625 9.908203125 0.173828125 9.833984375 0.16015625 9.833984375 0.14453125 9.76953125 0.1328125 9.775390625 0.095703125 9.75 0.08984375 9.76171875 0.037109375 9.76171875 0.037109375 9.771484375 -0.03125 9.771484375 -0.0234375 9.77734375 1.15234375 9.052734375 1.140625 9.109375 1.16796875 9.04296875 1.15625 9.111328125 1.16015625 9.11328125 1.119140625 9.171875 1.236328125 9.21484375 1.125 9.2421875 1.123046875 9.39453125 1.0859375 9.337890625 1.005859375 9.3984375 1.08203125 9.333984375 1.00390625 9.392578125 1.001953125 9.38671875 0.93359375 9.3828125 -1.38671875 4.171875 -0.431640625 4.705078125 -0.55859375 5.740234375 -0.06640625 5.466796875 -0.373046875 5.888671875 -0.10546875 5.89453125 -0.22265625 6.072265625 -0.158203125 6.140625 -0.142578125 6.23046875 1.1328125 9.01953125 1.138671875 9 1.17578125 9.041015625 1.240234375 9.04296875 1.583984375 9.3125 1.458984375 8.24609375 1.912109375 7.865234375 1.466796875 7.791015625 1.48046875 7.595703125 1.37109375 7.650390625 1.392578125 7.455078125 1.314453125 7.51171875 1.197265625 7.408203125 1.19140625 7.42578125 1.583984375 7.068359375 1.3671875 6.751953125 0.921875 6.80078125 0.9609375 6.458984375 0.701171875 6.796875 0.63671875 6.66015625 0.630859375 6.6640625 0.50390625 6.595703125 0.62109375 6.673828125 0.505859375 6.609375 -0.837890625 9.3671875 -0.98046875 9.517578125 -0.779296875 9.560546875 -0.583984375 9.671875 -0.552734375 9.7890625 -0.61328125 9.849609375 -0.607421875 9.849609375 -0.57421875 9.923828125 -0.59765625 9.8515625 -0.5703125 9.9140625 -2.357421875 1.7578125 -2.482421875 1.58984375 -2.369140625 1.8046875 -2.521484375 1.59765625 -2.662109375 2.150390625 -2.876953125 1.28515625 -3.33203125 1.751953125 -3.705078125 1.416015625 -3.787109375 2.21875 -4.533203125 1.544921875 -4.064453125 2.29296875 -4.267578125 2.494140625 -4.060546875 2.298828125 -4.259765625 2.5 -5.41796875 5.06640625 -5.9453125 4.951171875 -6.07421875 4.8125 -6.033203125 5.015625 -6.185546875 4.876953125 -6.056640625 5.044921875 -6.2265625 4.890625 -6.095703125 5.076171875 -6.267578125 4.908203125 -6.13671875 5.103515625 -6.314453125 4.921875 -0.37109375 9.962890625 -0.369140625 10.01953125 -0.236328125 9.943359375 -0.197265625 10.068359375 -0.091796875 10.0078125 0.013671875 10.025390625 0.099609375 10.00390625 0.0859375 9.98046875 -2.71484375 0.61328125 -3.505859375 0.333984375 -4.294921875 0.0546875 -5.10546875 0.76171875 -5.34765625 -0.31640625 -5.6796875 -0.0234375 -5.962890625 -0.609375 -6.123046875 -0.431640625 -6.123046875 -0.435546875 -6.349609375 -0.326171875 0.673828125 1.513671875 1.06640625 2.19921875 0.97265625 0.765625 1.822265625 1.958984375 1.34765625 0.498046875 3.9296875 0.02734375 1.349609375 0.078125 0.837890625 -0.24609375 -3.35546875 -7.12109375 -3.287109375 -6.873046875 -0.87890625 6.650390625 -0.869140625 6.5625 -0.7578125 6.47265625 -0.61328125 6.4609375 -0.5234375 6.5390625 -0.537109375 6.65625 -0.83984375 8.82421875 -0.63671875 8.970703125 -0.3984375 9.048828125 -0.146484375 9.048828125 -3.515625 4.12890625 -3.416015625 4.078125 -3.537109375 4.11328125 -3.41796875 4.056640625 -3.65625 3.74609375 -2.962890625 3.98828125 -3.509765625 3.251953125 -2.458984375 3.216796875 -3.306640625 3.048828125 -3.232421875 2.771484375 -3.314453125 3.044921875 -3.240234375 2.771484375 -3.30078125 4.14453125 -3.28125 4.1328125 -2.7421875 4.181640625 -2.49609375 5.01171875 -2.48828125 5.021484375 -2.658203125 5.33984375 -2.671875 5.33984375 -2.607421875 5.53125 -2.810546875 5.5703125 -2.587890625 5.931640625 -2.986328125 5.966796875 -2.701171875 6.47265625 -2.98828125 6.486328125 -2.837890625 6.73046875 -2.943359375 6.720703125 -2.865234375 6.7578125 -2.9453125 6.751953125 -5.95703125 4.310546875 -6.123046875 4.39453125 -5.669921875 3.505859375 -6.16796875 4.392578125 -5.70703125 3.4765625 -6.21875 4.38671875 -5.751953125 3.462890625 -5.783203125 3.44921875 0.037109375 6.1328125 0.388671875 5.849609375 0.91796875 5.310546875 0.744140625 4.337890625 0.130859375 3.91796875 0.76171875 3.951171875 -1.9140625 7.68359375 -1.77734375 7.486328125 -1.66796875 7.484375 -1.546875 7.38671875 -1.666015625 7.46875 -1.5546875 7.380859375 -1.79296875 8.54296875 -1.736328125 8.59765625 -1.703125 8.751953125 -1.658203125 8.921875 12.12890625 2.787109375 11.705078125 -1.46875 11.75390625 -1.478515625 10.115234375 -5.73046875 10.140625 -5.75 1.1328125 8.720703125 1.25390625 8.7265625 1.326171875 8.7109375 1.322265625 8.705078125 1.375 8.6015625 1.310546875 8.693359375 1.357421875 8.599609375 0.037109375 9.7578125 0.09765625 9.74609375 0.1484375 9.765625 0.236328125 9.77734375 0.177734375 9.833984375 -3.810546875 7.18359375 -3.779296875 7.15234375 -1.501953125 -0.208984375 -2.1953125 0.345703125 -2.185546875 0.736328125 -2.3984375 0.876953125 -2.1953125 0.7734375 -2.3671875 0.892578125 12.251953125 2.802734375 10.955078125 5.41796875 8.3515625 7.654296875 6.080078125 8.181640625 4.486328125 8.9140625 3.81640625 9.693359375 -0.966796875 6.65234375 -0.98828125 6.712890625 -0.955078125 6.783203125 -0.88671875 6.822265625 -0.82421875 6.8046875 -0.802734375 6.744140625 -0.791015625 6.7578125 -3.009765625 5.607421875 -3.125 5.640625 -3.123046875 5.958984375 -3.171875 5.955078125 -3.34765625 6.232421875 -3.392578125 6.21484375 1.32421875 3.939453125 1.58203125 3.953125 1.314453125 3.90625 1.60546875 3.923828125 1.5 3.67578125 1.861328125 3.798828125 2.8203125 2.791015625 2.828125 4.521484375 5.447265625 1.599609375 9.57421875 1.802734375 -0.63671875 7.5390625 -0.7578125 7.302734375 -3.388671875 5.361328125 -3.169921875 5.654296875 -3.21484375 5.958984375 0.94140625 9.482421875 0.92578125 9.392578125 0.896484375 9.318359375 0.90234375 9.318359375 0.9453125 9.234375 1.107421875 9.154296875 1.119140625 9.2421875 1.10546875 9.244140625 -0.466796875 9.48828125 -0.392578125 9.716796875 -0.4453125 9.783203125 -0.349609375 9.830078125 -0.447265625 9.7890625 -0.353515625 9.833984375 -0.361328125 9.83984375 -0.333984375 9.904296875 -7.12109375 -4.763671875 -9.478515625 -2.244140625 -7.048828125 -4.685546875 -9.44140625 -2.208984375 -6.994140625 -4.638671875 -9.3984375 -2.169921875 -6.927734375 -4.568359375 -9.359375 -2.13671875 0.6796875 6.794921875 0.693359375 6.794921875 0.662109375 6.916015625 0.845703125 6.912109375 0.767578125 7.021484375 0.880859375 7.068359375 -8.17578125 1.259765625 -6.8203125 0.5 -7.6875 0.013671875 -6.931640625 -0.076171875 -7.171875 -0.375 -6.62109375 -0.3515625 -6.8203125 -0.533203125 -6.81640625 -0.537109375 -6.947265625 -0.76171875 -2.0234375 7.169921875 -1.73828125 7.23828125 -1.61328125 7.140625 -1.732421875 7.240234375 -1.61328125 7.146484375 -1.615234375 7.16015625 -1.51953125 7.1640625 -5.76953125 -3.083984375 -5.63671875 -3.134765625 -5.572265625 -3.205078125 -5.58984375 -3.203125 -5.646484375 -3.279296875 -5.66015625 -3.251953125 -5.814453125 -3.26953125 -5.80078125 -3.248046875 -2.4609375 9.39453125 -2.638671875 9.33203125 -2.771484375 9.20703125 -2.91015625 8.642578125 -1.916015625 7.466796875 -1.806640625 7.37890625 -1.798828125 7.37890625 -1.724609375 7.248046875 1.306640625 8.1875 1.306640625 8.193359375 1.33984375 8.380859375 1.392578125 8.44140625 1.490234375 8.5234375 1.380859375 8.603515625 -0.099609375 9.873046875 -0.076171875 9.9296875 -0.025390625 9.966796875 0.03125 9.986328125 0.083984375 9.9765625 -1.9609375 5.58203125 -2.095703125 5.693359375 -2.087890625 5.705078125 -2.283203125 5.720703125 -2.466796875 5.66796875 -2.59765625 5.5234375 0.9453125 7.240234375 0.943359375 7.236328125 0.89453125 7.2265625 0.900390625 7.220703125 0.8671875 7.169921875 -0.2265625 9.689453125 -0.22265625 9.80859375 -0.3203125 9.90625 -0.326171875 9.90625 1.697265625 4.048828125 1.7265625 4.041015625 1.923828125 4.2421875 1.552734375 4.490234375 2.177734375 6.2109375 -1.12109375 6.611328125 -0.98046875 6.638671875 -0.974609375 6.640625 -0.904296875 6.634765625 -6.77734375 -4.42578125 -5.697265625 -3.470703125 -5.962890625 -3.4140625 -5.951171875 -3.216796875 -5.931640625 -3.19921875 -3.42578125 -7.439453125 -3.40625 -7.35546875 -3.380859375 -7.21875 -1.6328125 9.25 -1.970703125 8.677734375 -0.203125 1.005859375 0.099609375 0.650390625 0.373046875 0.9921875 0.44921875 0.572265625 0.62109375 0.576171875 0.478515625 0.541015625 0.609375 0.54296875 1.0703125 3.70703125 1.048828125 3.994140625 0.94921875 4.14453125 1.078125 4.01171875 0.986328125 4.1328125 -1.693359375 3.08984375 -1.927734375 2.140625 -2.154296875 1.671875 -2.03125 1.302734375 -2.185546875 1.638671875 -2.06640625 1.30078125 -0.419921875 10.169921875 -0.626953125 10.30078125 -0.826171875 10.35546875 -0.931640625 10.234375 -1.068359375 3.68359375 -0.77734375 3.41796875 0.0703125 10.26171875 -0.3046875 10.44140625 -0.638671875 10.646484375 -0.974609375 10.6328125 -1.16796875 10.4296875 -11.103515625 0.970703125 -11.0390625 0.947265625 -10.98046875 0.9296875 -10.939453125 0.900390625 -0.072265625 9.92578125 -0.064453125 9.91796875 -3.53125 4.267578125 -3.5546875 4.267578125 -4.064453125 3.251953125 -3.787109375 3.326171875 -4.060546875 3.24609375 -3.787109375 3.318359375 -5.62109375 1.212890625 -6.236328125 0.845703125 -6.376953125 1.009765625 -0.83984375 6.91015625 -0.689453125 6.84375 0.978515625 7.201171875 0.974609375 7.19921875 0.94140625 7.232421875 0.9609375 7.134765625 1.150390625 8.509765625 1.2578125 8.17578125 1.259765625 8.171875 1.26953125 8.16015625 -5.642578125 -1.033203125 -5.638671875 -1.033203125 -5.650390625 -0.8125 -5.783203125 -0.666015625 -5.787109375 -0.66796875 -5.96484375 -0.61328125 -2.798828125 6.794921875 -2.83984375 6.890625 -2.927734375 6.931640625 -3.025390625 6.9296875 -3.015625 6.89453125 -3.052734375 6.84765625 1.333984375 8.09375 1.3203125 8.0234375 1.310546875 8.041015625 1.26953125 8.00390625 1.275390625 8.0234375 1.236328125 8.0390625 1.25 8.052734375 1.26171875 8.43359375 1.265625 8.439453125 1.337890625 8.388671875 1.3359375 8.404296875 1.373046875 8.44921875 -6.15625 -3.228515625 -6.046875 -2.947265625 -5.994140625 -3.119140625 1.103515625 7.65234375 1.109375 7.6484375 1.06640625 7.51171875 -10.671875 1.169921875 -10.693359375 1.2109375 -10.716796875 1.267578125 -6.4453125 -2.0078125 -5.912109375 -1.935546875 -6.29296875 -1.4296875 -6.11328125 -1.30859375 -6.115234375 -1.306640625 -9.748046875 1.291015625 -9.10546875 1.455078125 -8.12890625 1.615234375 -3.990234375 5.236328125 -3.40625 5.40625 -4.0078125 5.271484375 -3.435546875 5.4296875 -4.025390625 5.30859375 -3.46484375 5.453125 0.8046875 9.81640625 0.796875 9.87109375 0.794921875 9.921875 0.375 10.0390625 -4.03515625 -2.9921875 3.02734375 10.103515625 2.611328125 10.322265625 2.103515625 10.392578125 -6.259765625 4.38671875 -2.66796875 8.125 -2.814453125 8.1015625 1.2578125 8.705078125 1.255859375 8.720703125 1.212890625 8.66015625 0.537109375 6.927734375 0.421875 6.86328125 0.5390625 6.943359375 0.412109375 6.87109375 0.341796875 6.744140625 -6.98046875 -1.734375 -6.546875 -1.443359375 -6.763671875 -1.326171875 -6.544921875 -1.439453125 -6.759765625 -1.32421875 -7.3046875 -1.216796875 -6.9296875 -1.10546875 -6.951171875 -0.759765625 -6.92578125 -1.10546875 -3.302734375 6.248046875 -3.216796875 6.318359375 0.775390625 0.05859375 0.943359375 0.064453125 1.0625 0.259765625 0.81640625 0.435546875 0.79296875 0.41015625 1.60546875 4.16796875 1.359375 4.2421875 1.62890625 4.189453125 1.36328125 4.275390625 1.064453125 4.53125 -6.5859375 0.173828125 -6.138671875 0.22265625 -6.46484375 0.814453125 1.365234375 7.650390625 1.30859375 7.515625 1.34765625 7.65234375 1.296875 7.51953125 -3.306640625 2.494140625 -3.314453125 2.5 1.22265625 8.537109375 1.228515625 8.5390625 1.21875 8.658203125 1.2421875 8.5390625 1.232421875 8.654296875 7.033203125 -1.71484375 -0.3984375 7.4609375 1.388671875 8.443359375 1.318359375 7.7421875 1.328125 7.755859375 1.216796875 7.75390625 0.36328125 6.7421875 0.349609375 6.744140625 0.380859375 6.623046875 -5.45703125 -3.419921875 -2.486328125 1.23046875 -2.51953125 1.228515625 -1.509765625 7.1484375 -1.494140625 7.255859375 -4.267578125 3.048828125 -4.341796875 2.771484375 -4.333984375 2.771484375 -2.935546875 6.90234375 -2.857421875 6.865234375 -2.830078125 6.8046875 -2.029296875 0.935546875 -2.0703125 0.943359375 -0.98828125 10.0546875 -3.205078125 5.67578125 -3.26171875 5.966796875 -1.931640625 8.578125 1.05078125 9.12890625 1.03515625 9.12890625 1.029296875 9.12890625 -1.783203125 8.599609375 -1.80078125 8.62109375 0.439453125 0.408203125 0.56640625 0.220703125 0.6015625 0.224609375 0.783203125 0.091796875 0.96875 7.1328125 -0.55078125 9.79296875 -0.44921875 9.798828125 -2.791015625 7.943359375 -2.939453125 7.86328125 1.7734375 7.439453125 0.912109375 9.3203125 0.9296875 9.388671875 0.64453125 6.8984375 0.65625 6.91015625 1.24609375 8.109375 1.232421875 8.11328125 -1.76171875 7.46484375 -1.7734375 7.48046875 0.50390625 6.587890625 0.384765625 6.626953125 -2.904296875 7.826171875 1.046875 9.162109375 0.517578125 6.248046875 1.22265625 7.73828125 1.216796875 7.75 -5.5234375 1.41796875 -7.35546875 -0.69140625 -6.619140625 -0.35546875 -6.349609375 -0.3203125 -2.6328125 5.150390625 -2.62109375 5.15625 -3.787109375 2.2265625 -3.513671875 2.298828125 -3.509765625 2.29296875 -4.728515625 -2.3359375 -3.220703125 6.703125 -3.04296875 6.765625 -3.0234375 6.787109375 -3.076171875 6.859375 1.080078125 4.2578125 1.103515625 4.228515625 2.912109375 6.67578125 -0.48828125 10.0390625 1.97265625 8.267578125 0.955078125 0.240234375 0.919921875 0.224609375 -0.0234375 9.962890625 -0.017578125 9.953125 0.03125 9.982421875 0.03125 9.970703125 -1.48046875 7.251953125 -0.53515625 6.767578125 0.966796875 7.197265625 1.072265625 9.328125 -6.29296875 -1.42578125 -3.615234375 6.630859375 -4.259765625 3.044921875 0.474609375 0.41015625 1.119140625 7.642578125 0.3984375 6.63671875 -1.78515625 7.373046875 1.27734375 8.447265625 -0.546875 9.802734375 -3.2421875 5.6875 -3.513671875 3.24609375 -5.65625 -0.814453125 -0.837890625 7.142578125 -9.755859375 1.34765625 -4.640625 2.34765625 0.916015625 0.09375 10.08984375 -5.71484375 -2.283203125 5.708984375 -2.4609375 5.65625 3.71875 6.552734375 3.630859375 6.62890625 3.552734375 6.54296875 3.53125 6.345703125 3.576171875 6.15234375 -0.646484375 6.748046875 11.80859375 -1.490234375 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 1 1 0 0 3 3 1 1 2 2 4 4 3 3 2 2 5 5 3 3 4 4 6 6 5 5 4 4 7 7 5 5 6 6 8 8 7 7 6 6 9 9 7 7 8 8 10 10 9 9 8 8 11 11 9 9 10 10 12 12 11 11 10 10 13 13 11 11 12 12 14 14 13 13 12 12 15 15 13 13 14 14 16 16 15 15 14 14 17 17 15 15 16 16 18 18 17 17 16 16 19 19 17 17 18 18 20 20 19 19 18 18 21 21 19 19 20 20 22 22 21 21 20 20 23 23 21 21 22 22 24 24 23 23 22 22 25 25 23 23 24 24 26 26 25 25 24 24 27 27 25 25 26 26 28 28 27 27 26 26 29 29 27 27 28 28 30 30 29 29 28 28 31 31 29 29 30 30 32 32 31 31 30 30 33 33 31 31 32 32 34 34 33 33 32 32 35 35 33 33 34 34 36 36 35 35 34 34 37 37 35 35 36 36 38 38 37 37 36 36 39 39 37 37 38 38 40 40 39 39 38 38 41 41 39 39 40 40 42 42 41 41 40 40 43 43 41 41 42 42 44 44 43 43 42 42 18 18 43 43 44 44 45 45 18 18 44 44 20 20 18 18 45 45 48 48 47 47 46 46 49 49 47 47 48 48 50 50 49 49 48 48 51 51 49 49 50 50 52 52 51 51 50 50 53 53 51 51 52 52 54 54 53 53 52 52 55 55 53 53 54 54 56 56 55 55 54 54 57 57 55 55 56 56 58 58 57 57 56 56 59 59 57 57 58 58 60 60 59 59 58 58 61 61 59 59 60 60 62 62 61 61 60 60 63 63 61 61 62 62 64 64 63 63 62 62 65 65 63 63 64 64 66 66 65 65 64 64 67 67 65 65 66 66 68 68 67 67 66 66 69 69 67 67 68 68 70 70 69 69 68 68 71 71 69 69 70 70 72 72 71 71 70 70 73 73 71 71 72 72 74 74 73 73 72 72 75 75 73 73 74 74 76 76 75 75 74 74 77 77 75 75 76 76 78 78 77 77 76 76 79 79 77 77 78 78 80 80 79 79 78 78 81 81 79 79 80 80 82 82 81 81 80 80 83 83 81 81 82 82 84 84 83 83 82 82 85 85 83 83 84 84 86 86 85 85 84 84 87 87 85 85 86 86 88 88 87 87 86 86 89 89 87 87 88 88 90 90 89 89 88 88 91 91 89 89 90 90 93 93 46 46 92 92 48 48 46 46 93 93 94 94 48 48 93 93 50 50 48 48 94 94 95 95 50 50 94 94 52 52 50 50 95 95 96 52 52 52 95 95 54 54 52 52 96 52 97 96 54 54 96 52 56 56 54 54 97 96 98 97 56 56 97 96 58 58 56 56 98 97 99 98 58 58 98 97 60 60 58 58 99 98 100 60 60 60 99 98 62 62 60 60 100 60 101 99 62 62 100 60 64 64 62 62 101 99 102 100 64 64 101 99 66 66 64 64 102 100 103 101 66 66 102 100 68 68 66 66 103 101 104 102 68 68 103 101 70 70 68 68 104 102 105 103 70 70 104 102 72 72 70 70 105 103 106 104 72 72 105 103 74 74 72 72 106 104 107 105 74 74 106 104 76 76 74 74 107 105 108 106 76 76 107 105 78 78 76 76 108 106 109 107 78 78 108 106 80 80 78 78 109 107 110 108 80 80 109 107 82 82 80 80 110 108 111 109 82 82 110 108 84 84 82 82 111 109 112 110 84 84 111 109 86 86 84 84 112 110 113 111 86 86 112 110 88 88 86 86 113 111 114 112 88 88 113 111 90 90 88 88 114 112 117 115 116 114 115 113 118 116 116 114 117 115 119 117 118 116 117 115 120 118 118 116 119 117 121 119 120 118 119 117 122 120 120 118 121 119 123 121 122 120 121 119 124 122 122 120 123 121 125 123 124 122 123 121 126 124 124 122 125 123 127 125 126 124 125 123 128 126 126 124 127 125 129 127 128 126 127 125 130 128 128 126 129 127 131 129 130 128 129 127 132 130 130 128 131 129 133 131 132 130 131 129 134 132 132 130 133 131 135 133 134 132 133 131 136 134 134 132 135 133 137 135 136 134 135 133 138 136 136 134 137 135 139 137 138 136 137 135 140 138 138 136 139 137 141 139 140 138 139 137 142 140 140 138 141 139 143 141 142 140 141 139 144 142 142 140 143 141 145 143 144 142 143 141 146 144 144 142 145 143 147 145 146 144 145 143 148 146 146 144 147 145 149 147 148 146 147 145 150 148 148 146 149 147 151 149 150 148 149 147 152 150 150 148 151 149 153 151 152 150 151 149 154 152 152 150 153 151 155 153 154 152 153 151 156 154 154 152 155 153 157 155 156 154 155 153 158 156 156 154 157 155 118 116 159 157 116 114 160 158 159 157 118 116 120 118 160 158 118 116 161 159 160 158 120 118 122 120 161 159 120 118 162 160 161 159 122 120 124 122 162 160 122 120 163 161 162 160 124 122 126 124 163 161 124 122 164 162 163 161 126 124 128 126 164 162 126 124 165 163 164 162 128 126 130 128 165 163 128 126 166 164 165 163 130 128 132 130 166 164 130 128 167 165 166 164 132 130 134 132 167 165 132 130 168 166 167 165 134 132 136 134 168 166 134 132 169 167 168 166 136 134 138 136 169 167 136 134 170 168 169 167 138 136 140 138 170 168 138 136 171 169 170 168 140 138 142 140 171 169 140 138 172 170 171 169 142 140 144 142 172 170 142 140 173 171 172 170 144 142 146 144 173 171 144 142 174 172 173 171 146 144 148 146 174 172 146 144 175 173 174 172 148 146 150 148 175 173 148 146 176 174 175 173 150 148 152 150 176 174 150 148 177 175 176 174 152 150 154 152 177 175 152 150 178 176 177 175 154 152 156 154 178 176 154 152 179 177 178 176 156 154 158 156 179 177 156 154 180 178 179 177 158 156 183 181 182 180 181 179 184 182 182 180 183 181 185 183 184 182 183 181 186 184 184 182 185 183 187 185 186 184 185 183 188 186 186 184 187 185 189 187 188 186 187 185 190 188 188 186 189 187 191 189 190 188 189 187 192 190 190 188 191 189 193 191 192 190 191 189 194 192 192 190 193 191 195 193 194 192 193 191 196 194 194 192 195 193 197 195 196 194 195 193 198 196 196 194 197 195 199 197 198 196 197 195 200 198 198 196 199 197 201 199 200 198 199 197 202 200 200 198 201 199 203 201 202 200 201 199 204 202 202 200 203 201 205 203 204 202 203 201 206 204 204 202 205 203 207 205 206 204 205 203 208 206 206 204 207 205 209 207 208 206 207 205 210 208 208 206 209 207 211 209 210 208 209 207 212 210 210 208 211 209 213 211 212 210 211 209 214 212 212 210 213 211 215 213 214 212 213 211 216 214 214 212 215 213 217 215 216 214 215 213 218 216 216 214 217 215 219 217 218 216 217 215 220 218 218 216 219 217 221 219 220 218 219 217 224 222 223 221 222 220 225 223 223 221 224 222 226 224 225 223 224 222 227 225 225 223 226 224 228 226 227 225 226 224 229 227 227 225 228 226 230 228 229 227 228 226 231 229 229 227 230 228 232 230 231 229 230 228 233 231 231 229 232 230 234 232 233 231 232 230 235 233 233 231 234 232 236 234 235 233 234 232 237 235 235 233 236 234 238 236 237 235 236 234 239 237 237 235 238 236 240 238 239 237 238 236 241 239 239 237 240 238 242 240 241 239 240 238 243 241 241 239 242 240 244 242 243 241 242 240 245 243 243 241 244 242 246 244 245 243 244 242 247 245 245 243 246 244 248 246 247 245 246 244 249 247 247 245 248 246 250 248 249 247 248 246 251 249 249 247 250 248 252 250 251 249 250 248 253 251 251 249 252 250 192 190 255 253 254 252 256 254 255 253 192 190 194 192 256 254 192 190 257 255 256 254 194 192 196 194 257 255 194 192 258 256 257 255 196 194 198 196 258 256 196 194 259 257 258 256 198 196 200 198 259 257 198 196 260 258 259 257 200 198 202 200 260 258 200 198 261 259 260 258 202 200 204 202 261 259 202 200 262 260 261 259 204 202 206 204 262 260 204 202 263 261 262 260 206 204 208 206 263 261 206 204 264 262 263 261 208 206 210 208 264 262 208 206 265 263 264 262 210 208 212 210 265 263 210 208 266 264 265 263 212 210 214 212 266 264 212 210 267 265 266 264 214 212 216 214 267 265 214 212 268 266 267 265 216 214 218 216 268 266 216 214 269 267 268 266 218 216 220 218 269 267 218 216 272 270 271 269 270 268 273 271 271 269 272 270 274 272 273 271 272 270 275 273 273 271 274 272 276 274 275 273 274 272 277 275 275 273 276 274 278 276 277 275 276 274 279 277 277 275 278 276 280 278 279 277 278 276 281 279 279 277 280 278 282 280 281 279 280 278 283 281 281 279 282 280 284 282 283 281 282 280 285 283 283 281 284 282 286 284 285 283 284 282 287 285 285 283 286 284 288 286 287 285 286 284 289 287 287 285 288 286 290 288 289 287 288 286 291 289 289 287 290 288 292 290 291 289 290 288 293 291 291 289 292 290 294 292 293 291 292 290 295 293 293 291 294 292 296 294 295 293 294 292 297 295 295 293 296 294 298 296 297 295 296 294 299 297 297 295 298 296 300 298 299 297 298 296 15 15 301 299 13 13 302 300 301 299 15 15 303 301 302 300 15 15 304 302 302 300 303 301 305 303 304 302 303 301 306 304 304 302 305 303 307 305 306 304 305 303 308 306 306 304 307 305 309 307 308 306 307 305 310 308 308 306 309 307 311 309 310 308 309 307 205 203 310 308 311 309 312 310 205 203 311 309 313 311 205 203 312 310 314 312 313 311 312 310 315 313 313 311 314 312 316 314 315 313 314 312 317 315 315 313 316 314 318 316 317 315 316 314 319 317 317 315 318 316 320 318 319 317 318 316 321 319 319 317 320 318 322 320 321 319 320 318 323 321 321 319 322 320 324 322 323 321 322 320 325 323 323 321 324 322 326 324 325 323 324 322 25 25 325 323 326 324 23 23 25 25 326 324 238 236 253 251 327 325 251 249 253 251 238 236 236 234 251 249 238 236 249 247 251 249 236 234 234 232 249 247 236 234 247 245 249 247 234 232 328 326 247 245 234 232 329 327 247 245 328 326 330 328 329 327 328 326 331 329 329 327 330 328 332 330 331 329 330 328 333 331 331 329 332 330 334 332 333 331 332 330 335 333 333 331 334 332 336 334 335 333 334 332 337 335 335 333 336 334 338 336 337 335 336 334 339 337 337 335 338 336 340 338 339 337 338 336 341 339 339 337 340 338 342 340 341 339 340 338 343 341 341 339 342 340 344 342 343 341 342 340 345 343 343 341 344 342 346 344 345 343 344 342 347 345 345 343 346 344 350 348 349 347 348 346 351 349 349 347 350 348 352 350 351 349 350 348 353 351 351 349 352 350 354 352 353 351 352 350 355 353 353 351 354 352 356 354 355 353 354 352 357 355 355 353 356 354 358 356 357 355 356 354 359 357 357 355 358 356 360 358 359 357 358 356 361 359 359 357 360 358 362 360 361 359 360 358 363 361 361 359 362 360 364 362 363 361 362 360 365 363 363 361 364 362 366 364 365 363 364 362 367 365 365 363 366 364 368 366 367 365 366 364 369 367 367 365 368 366 370 368 369 367 368 366 371 369 369 367 370 368 372 370 371 369 370 368 373 371 371 369 372 370 374 372 373 371 372 370 375 373 373 371 374 372 378 376 377 375 376 374 379 377 377 375 378 376 380 378 379 377 378 376 381 379 379 377 380 378 382 380 381 379 380 378 383 381 381 379 382 380 384 382 383 381 382 380 385 383 383 381 384 382 386 384 385 383 384 382 387 385 385 383 386 384 388 386 387 385 386 384 389 387 387 385 388 386 390 388 389 387 388 386 391 389 389 387 390 388 392 390 391 389 390 388 393 391 391 389 392 390 394 392 393 391 392 390 395 393 393 391 394 392 396 394 395 393 394 392 397 395 395 393 396 394 398 396 397 395 396 394 399 397 397 395 398 396 400 398 399 397 398 396 379 377 399 397 400 398 377 375 379 377 400 398 403 401 402 400 401 399 404 402 402 400 403 401 405 403 404 402 403 401 406 404 404 402 405 403 407 405 406 404 405 403 408 406 406 404 407 405 409 407 408 406 407 405 410 408 408 406 409 407 411 409 410 408 409 407 412 410 410 408 411 409 413 411 412 410 411 409 414 412 412 410 413 411 415 413 414 412 413 411 416 414 414 412 415 413 417 415 416 414 415 413 418 416 416 414 417 415 419 417 418 416 417 415 420 418 418 416 419 417 421 419 420 418 419 417 422 420 420 418 421 419 423 421 422 420 421 419 424 422 422 420 423 421 425 423 424 422 423 421 426 424 424 422 425 423 429 427 428 426 427 425 430 428 428 426 429 427 431 429 430 428 429 427 432 430 430 428 431 429 433 431 432 430 431 429 434 432 432 430 433 431 435 433 434 432 433 431 436 434 434 432 435 433 437 435 436 434 435 433 438 436 436 434 437 435 439 437 438 436 437 435 440 438 438 436 439 437 441 439 440 438 439 437 442 440 440 438 441 439 443 441 442 440 441 439 444 442 442 440 443 441 445 443 444 442 443 441 446 444 444 442 445 443 447 445 446 444 445 443 448 446 446 444 447 445 449 447 448 446 447 445 450 448 448 446 449 447 451 449 450 448 449 447 452 450 450 448 451 449 430 428 453 451 428 426 454 452 453 451 430 428 432 430 454 452 430 428 301 299 454 452 432 430 434 432 301 299 432 430 13 13 301 299 434 432 436 434 13 13 434 432 11 11 13 13 436 434 438 436 11 11 436 434 9 9 11 11 438 436 440 438 9 9 438 436 7 7 9 9 440 438 442 440 7 7 440 438 5 5 7 7 442 440 444 442 5 5 442 440 3 3 5 5 444 442 446 444 3 3 444 442 1 1 3 3 446 444 448 446 1 1 446 444 0 0 1 1 448 446 450 448 0 0 448 446 455 453 0 0 450 448 452 450 455 453 450 448 456 454 455 453 452 450 459 457 458 456 457 455 460 458 458 456 459 457 461 459 460 458 459 457 462 460 460 458 461 459 463 461 462 460 461 459 464 462 462 460 463 461 465 463 464 462 463 461 466 464 464 462 465 463 467 465 466 464 465 463 468 466 466 464 467 465 469 467 468 466 467 465 470 468 468 466 469 467 471 469 470 468 469 467 472 470 470 468 471 469 473 471 472 470 471 469 474 472 472 470 473 471 475 473 474 472 473 471 476 474 474 472 475 473 477 475 476 474 475 473 478 476 476 474 477 475 479 477 478 476 477 475 480 478 478 476 479 477 483 456 482 479 481 455 484 480 482 479 483 456 485 481 484 480 483 456 486 482 484 480 485 481 487 483 486 482 485 481 488 484 486 482 487 483 489 485 488 484 487 483 490 486 488 484 489 485 491 487 490 486 489 485 492 488 490 486 491 487 493 489 492 488 491 487 494 490 492 488 493 489 495 491 494 490 493 489 496 492 494 490 495 491 497 493 496 492 495 491 498 494 496 492 497 493 499 495 498 494 497 493 500 496 498 494 499 495 71 71 501 497 69 69 502 498 501 497 71 71 503 499 502 498 71 71 504 500 502 498 503 499 505 501 504 500 503 499 506 502 504 500 505 501 507 503 506 502 505 501 508 504 506 502 507 503 509 505 508 504 507 503 510 506 508 504 509 505 511 507 510 506 509 505 512 508 510 506 511 507 513 509 512 508 511 507 514 510 512 508 513 509 515 511 514 510 513 509 516 512 514 510 515 511 517 513 516 512 515 511 518 514 516 512 517 513 521 517 520 516 519 515 522 518 520 516 521 517 523 519 522 518 521 517 524 520 522 518 523 519 525 521 524 520 523 519 496 492 524 520 525 521 526 522 496 492 525 521 527 523 496 492 526 522 528 524 527 523 526 522 529 525 527 523 528 524 530 526 529 525 528 524 531 527 529 525 530 526 532 528 531 527 530 526 533 529 531 527 532 528 534 530 533 529 532 528 535 531 533 529 534 530 536 532 535 531 534 530 537 533 535 531 536 532 540 536 539 535 538 534 541 537 539 535 540 536 542 538 541 537 540 536 543 539 541 537 542 538 544 540 543 539 542 538 545 541 543 539 544 540 546 542 545 541 544 540 547 543 545 541 546 542 548 544 547 543 546 542 549 545 547 543 548 544 550 546 549 545 548 544 551 547 549 545 550 546 552 548 551 547 550 546 553 549 551 547 552 548 554 550 553 549 552 548 342 340 553 549 554 550 344 342 342 340 554 550 557 553 556 552 555 551 558 554 556 552 557 553 559 555 558 554 557 553 350 348 558 554 559 555 560 556 350 348 559 555 352 350 350 348 560 556 561 557 352 350 560 556 354 352 352 350 561 557 562 558 354 352 561 557 563 559 354 352 562 558 564 560 563 559 562 558 47 47 563 559 564 560 565 561 47 47 564 560 46 46 47 47 565 561 566 92 46 46 565 561 92 92 46 46 566 92 567 562 92 92 566 92 502 498 179 177 501 497 178 176 179 177 502 498 504 500 178 176 502 498 177 175 178 176 504 500 506 502 177 175 504 500 176 174 177 175 506 502 508 504 176 174 506 502 175 173 176 174 508 504 510 506 175 173 508 504 174 172 175 173 510 506 512 508 174 172 510 506 173 171 174 172 512 508 514 510 173 171 512 508 172 170 173 171 514 510 516 512 172 170 514 510 171 169 172 170 516 512 170 168 171 169 516 512 570 565 569 564 568 563 571 566 569 564 570 565 572 567 571 566 570 565 573 568 571 566 572 567 574 569 573 568 572 567 575 570 573 568 574 569 576 571 575 570 574 569 577 572 575 570 576 571 578 573 577 572 576 571 579 574 577 572 578 573 580 575 579 574 578 573 581 576 579 574 580 575 582 577 581 576 580 575 223 221 581 576 582 577 583 578 223 221 582 577 222 220 223 221 583 578 584 579 222 220 583 578 585 580 187 185 185 183 586 581 187 185 585 580 587 582 586 581 585 580 588 583 586 581 587 582 362 360 588 583 587 582 589 584 588 583 362 360 360 358 589 584 362 360 590 585 589 584 360 358 591 586 590 585 360 358 592 587 590 585 591 586 593 588 592 587 591 586 453 451 592 587 593 588 456 454 453 451 593 588 428 426 453 451 456 454 452 450 428 426 456 454 427 425 428 426 452 450 451 449 427 425 452 450 578 573 582 577 580 575 594 589 582 577 578 573 595 590 594 589 578 573 596 591 594 589 595 590 597 592 596 591 595 590 598 593 596 591 597 592 599 594 598 593 597 592 600 595 598 593 599 594 601 596 600 595 599 594 602 597 600 595 601 596 603 598 602 597 601 596 604 599 602 597 603 598 605 600 604 599 603 598 606 601 604 599 605 600 607 602 606 601 605 600 608 603 606 601 607 602 256 254 609 604 255 253 610 605 609 604 256 254 257 255 610 605 256 254 611 606 610 605 257 255 258 256 611 606 257 255 612 607 611 606 258 256 259 257 612 607 258 256 613 608 612 607 259 257 260 258 613 608 259 257 614 609 613 608 260 258 261 259 614 609 260 258 615 610 614 609 261 259 262 260 615 610 261 259 616 611 615 610 262 260 263 261 616 611 262 260 264 262 616 611 263 261 329 327 245 243 247 245 617 612 245 243 329 327 618 613 617 612 329 327 619 614 617 612 618 613 620 615 619 614 618 613 621 616 619 614 620 615 622 617 621 616 620 615 623 618 621 616 622 617 624 619 623 618 622 617 625 620 623 618 624 619 626 621 625 620 624 619 627 622 625 620 626 621 628 623 627 622 626 621 629 624 627 622 628 623 630 625 629 624 628 623 631 626 629 624 630 625 632 627 319 317 321 319 633 628 319 317 632 627 634 629 633 628 632 627 635 630 633 628 634 629 636 631 635 630 634 629 161 159 635 630 636 631 637 632 161 159 636 631 160 158 161 159 637 632 638 633 160 158 637 632 159 157 160 158 638 633 180 178 159 157 638 633 116 114 159 157 180 178 158 156 116 114 180 178 115 113 116 114 158 156 157 155 115 113 158 156 541 537 639 634 539 535 640 635 639 634 541 537 543 539 640 635 541 537 641 636 640 635 543 539 545 541 641 636 543 539 332 330 641 636 545 541 547 543 332 330 545 541 334 332 332 330 547 543 549 545 334 332 547 543 336 334 334 332 549 545 551 547 336 334 549 545 338 336 336 334 551 547 553 549 338 336 551 547 340 338 338 336 553 549 342 340 340 338 553 549 644 639 643 638 642 637 645 640 643 638 644 639 646 641 645 640 644 639 647 642 645 640 646 641 648 643 647 642 646 641 649 644 647 642 648 643 650 645 649 644 648 643 651 646 649 644 650 645 652 647 651 646 650 645 653 648 651 646 652 647 654 649 653 648 652 647 655 650 653 648 654 649 656 651 655 650 654 649 657 652 655 650 656 651 658 653 657 652 656 651 339 337 659 654 337 335 660 655 659 654 339 337 341 339 660 655 339 337 661 656 660 655 341 339 662 657 661 656 341 339 663 658 661 656 662 657 221 219 663 658 662 657 664 659 663 658 221 219 665 660 664 659 221 219 666 661 664 659 665 660 667 662 666 661 665 660 668 663 666 661 667 662 669 664 668 663 667 662 670 665 668 663 669 664 671 666 670 665 669 664 674 669 673 668 672 667 675 670 673 668 674 669 676 671 675 670 674 669 677 672 675 670 676 671 678 673 677 672 676 671 679 674 677 672 678 673 680 675 679 674 678 673 681 676 679 674 680 675 682 677 681 676 680 675 683 678 681 676 682 677 684 679 683 678 682 677 685 680 683 678 684 679 625 620 685 680 684 679 627 622 685 680 625 620 686 681 684 679 682 677 517 513 684 679 686 681 687 682 517 513 686 681 688 683 517 513 687 682 689 684 688 683 687 682 690 685 688 683 689 684 691 686 690 685 689 684 692 687 690 685 691 686 693 688 692 687 691 686 694 689 692 687 693 688 695 690 694 689 693 688 696 691 694 689 695 690 697 692 696 691 695 690 698 693 696 691 697 692 701 696 700 695 699 694 702 697 700 695 701 696 703 698 702 697 701 696 704 699 702 697 703 698 705 700 704 699 703 698 706 701 704 699 705 700 707 702 706 701 705 700 708 703 706 701 707 702 709 704 708 703 707 702 710 705 708 703 709 704 711 706 710 705 709 704 712 707 710 705 711 706 713 708 712 707 711 706 714 709 712 707 713 708 717 712 716 711 715 710 718 713 716 711 717 712 719 714 718 713 717 712 720 715 718 713 719 714 721 716 720 715 719 714 722 717 720 715 721 716 723 718 722 717 721 716 724 719 722 717 723 718 725 720 724 719 723 718 726 721 724 719 725 720 727 722 726 721 725 720 728 723 726 721 727 722 729 724 728 723 727 722 730 725 728 723 729 724 733 728 732 727 731 726 734 729 732 727 733 728 735 730 734 729 733 728 736 731 734 729 735 730 737 732 736 731 735 730 738 733 736 731 737 732 739 734 738 733 737 732 740 735 738 733 739 734 741 736 740 735 739 734 742 737 740 735 741 736 743 738 742 737 741 736 744 739 742 737 743 738 745 740 744 739 743 738 746 741 744 739 745 740 748 743 311 309 747 742 312 310 311 309 748 743 749 744 312 310 748 743 314 312 312 310 749 744 750 745 314 312 749 744 316 314 314 312 750 745 751 746 316 314 750 745 318 316 316 314 751 746 752 747 318 316 751 746 320 318 318 316 752 747 753 748 320 318 752 747 754 749 320 318 753 748 755 750 754 749 753 748 756 751 754 749 755 750 734 729 642 637 732 727 644 639 642 637 734 729 736 731 644 639 734 729 646 641 644 639 736 731 738 733 646 641 736 731 757 752 646 641 738 733 740 735 757 752 738 733 758 753 757 752 740 735 742 737 758 753 740 735 759 754 758 753 742 737 744 739 759 754 742 737 760 755 759 754 744 739 746 741 760 755 744 739 761 756 760 755 746 741 725 720 762 757 727 722 763 758 762 757 725 720 723 718 763 758 725 720 764 759 763 758 723 718 721 716 764 759 723 718 765 760 764 759 721 716 766 761 765 760 721 716 767 762 765 760 766 761 768 763 767 762 766 761 769 764 767 762 768 763 770 765 769 764 768 763 771 766 769 764 770 765 772 767 771 766 770 765 773 768 771 766 772 767 775 770 747 742 774 769 748 743 747 742 775 770 776 771 748 743 775 770 749 744 748 743 776 771 777 772 749 744 776 771 750 745 749 744 777 772 778 773 750 745 777 772 751 746 750 745 778 773 779 774 751 746 778 773 752 747 751 746 779 774 780 775 752 747 779 774 753 748 752 747 780 775 781 776 753 748 780 775 755 750 753 748 781 776 783 778 730 725 782 777 728 723 730 725 783 778 784 779 728 723 783 778 726 721 728 723 784 779 785 780 726 721 784 779 724 719 726 721 785 780 786 781 724 719 785 780 722 717 724 719 786 781 787 782 722 717 786 781 720 715 722 717 787 782 788 783 720 715 787 782 718 713 720 715 788 783 789 784 718 713 788 783 716 711 718 713 789 784 792 787 791 786 790 785 793 788 791 786 792 787 794 789 793 788 792 787 795 790 793 788 794 789 796 791 795 790 794 789 797 792 795 790 796 791 798 793 797 792 796 791 799 794 797 792 798 793 800 795 799 794 798 793 801 796 799 794 800 795 802 797 801 796 800 795 803 798 801 796 802 797 804 799 803 798 802 797 805 800 803 798 804 799 73 73 503 499 71 71 505 501 503 499 73 73 75 75 505 501 73 73 806 801 505 501 75 75 77 77 806 801 75 75 807 802 806 801 77 77 79 79 807 802 77 77 808 803 807 802 79 79 81 81 808 803 79 79 809 804 808 803 81 81 83 83 809 804 81 81 810 805 809 804 83 83 85 85 810 805 83 83 87 87 810 805 85 85 809 804 699 694 811 806 701 696 699 694 809 804 810 805 701 696 809 804 703 698 701 696 810 805 812 807 703 698 810 805 705 700 703 698 812 807 813 808 705 700 812 807 707 702 705 700 813 808 814 809 707 702 813 808 709 704 707 702 814 809 815 810 709 704 814 809 711 706 709 704 815 810 816 811 711 706 815 810 713 708 711 706 816 811 819 814 818 813 817 812 820 815 818 813 819 814 821 816 820 815 819 814 822 817 820 815 821 816 823 818 822 817 821 816 824 819 822 817 823 818 825 820 824 819 823 818 826 821 824 819 825 820 827 822 826 821 825 820 828 823 826 821 827 822 829 824 828 823 827 822 830 825 828 823 829 824 805 800 830 825 829 824 462 460 831 826 460 458 832 827 831 826 462 460 464 462 832 827 462 460 833 828 832 827 464 462 466 464 833 828 464 462 834 829 833 828 466 464 835 830 834 829 466 464 836 831 834 829 835 830 470 468 836 831 835 830 837 832 836 831 470 468 838 833 837 832 470 468 839 834 837 832 838 833 840 835 839 834 838 833 842 837 817 812 841 836 819 814 817 812 842 837 843 838 819 814 842 837 821 816 819 814 843 838 844 839 821 816 843 838 845 840 821 816 844 839 846 841 845 840 844 839 847 842 845 840 846 841 830 825 847 842 846 841 791 786 847 842 830 825 805 800 791 786 830 825 790 785 791 786 805 800 804 799 790 785 805 800 507 503 384 382 382 380 848 843 384 382 507 503 849 844 848 843 507 503 850 845 848 843 849 844 851 846 850 845 849 844 852 847 850 845 851 846 853 848 852 847 851 846 816 811 852 847 853 848 811 806 816 811 853 848 713 708 816 811 811 806 699 694 713 708 811 806 714 709 713 708 699 694 700 695 714 709 699 694 793 788 847 842 791 786 854 849 847 842 793 788 795 790 854 849 793 788 855 850 854 849 795 790 797 792 855 850 795 790 823 818 855 850 797 792 799 794 823 818 797 792 825 820 823 818 799 794 801 796 825 820 799 794 827 822 825 820 801 796 803 798 827 822 801 796 829 824 827 822 803 798 805 800 829 824 803 798 511 507 856 851 513 509 857 852 856 851 511 507 858 853 857 852 511 507 859 854 857 852 858 853 860 855 859 854 858 853 861 856 859 854 860 855 862 857 861 856 860 855 863 858 861 856 862 857 864 859 863 858 862 857 865 860 863 858 864 859 866 861 865 860 864 859 867 862 865 860 866 861 868 863 867 862 866 861 869 864 668 663 670 665 870 865 668 663 869 864 871 866 870 865 869 864 872 867 870 865 871 866 873 868 872 867 871 866 874 869 872 867 873 868 875 870 874 869 873 868 876 871 874 869 875 870 877 872 876 871 875 870 878 873 876 871 877 872 879 874 878 873 877 872 695 690 878 873 879 874 697 692 695 690 879 874 882 877 881 876 880 875 883 878 881 876 882 877 884 879 883 878 882 877 885 880 883 878 884 879 886 881 885 880 884 879 887 882 885 880 886 881 888 883 887 882 886 881 889 884 887 882 888 883 890 885 889 884 888 883 891 886 889 884 890 885 892 887 891 886 890 885 893 888 891 886 892 887 894 889 893 888 892 887 895 890 560 556 559 555 561 557 560 556 895 890 896 891 561 557 895 890 897 892 561 557 896 891 898 893 897 892 896 891 899 894 897 892 898 893 900 895 899 894 898 893 901 896 899 894 900 895 91 91 901 896 900 895 902 897 901 896 91 91 90 90 902 897 91 91 903 898 902 897 90 90 114 112 903 898 90 90 628 623 904 899 630 625 905 900 904 899 628 623 626 621 905 900 628 623 906 901 905 900 626 621 624 619 906 901 626 621 907 902 906 901 624 619 622 617 907 902 624 619 908 903 907 902 622 617 620 615 908 903 622 617 659 654 908 903 620 615 618 613 659 654 620 615 333 331 659 654 618 613 862 857 909 904 864 859 910 905 909 904 862 857 911 906 910 905 862 857 912 907 910 905 911 906 913 908 912 907 911 906 914 909 912 907 913 908 915 910 914 909 913 908 400 398 914 909 915 910 916 911 400 398 915 910 377 375 400 398 916 911 917 912 377 375 916 911 376 374 377 375 917 912 398 396 914 909 400 398 918 913 914 909 398 396 396 394 918 913 398 396 919 914 918 913 396 394 920 915 919 914 396 394 921 916 919 914 920 915 922 917 921 916 920 915 923 918 921 916 922 917 924 919 923 918 922 917 925 920 923 918 924 919 926 921 925 920 924 919 927 922 925 920 926 921 928 923 317 315 319 317 929 924 317 315 928 923 930 925 929 924 928 923 715 710 929 924 930 925 931 926 715 710 930 925 717 712 715 710 931 926 932 927 717 712 931 926 933 928 717 712 932 927 934 929 933 928 932 927 935 930 933 928 934 929 936 931 935 930 934 929 937 932 935 930 936 931 940 935 939 934 938 933 941 936 939 934 940 935 942 937 941 936 940 935 943 938 941 936 942 937 944 939 943 938 942 937 945 940 943 938 944 939 946 941 945 940 944 939 947 942 945 940 946 941 948 943 947 942 946 941 949 944 947 942 948 943 950 945 949 944 948 943 951 946 949 944 950 945 952 947 494 490 529 525 492 488 494 490 952 947 953 948 492 488 952 947 954 949 492 488 953 948 955 950 954 949 953 948 956 951 954 949 955 950 957 952 956 951 955 950 958 953 956 951 957 952 959 954 958 953 957 952 960 955 958 953 959 954 961 956 960 955 959 954 962 957 960 955 961 956 963 958 769 764 771 766 964 959 769 764 963 958 965 960 964 959 963 958 966 961 964 959 965 960 967 962 966 961 965 960 219 217 966 961 967 962 968 963 219 217 967 962 969 964 219 217 968 963 970 965 969 964 968 963 667 662 969 964 970 965 669 664 667 662 970 965 945 940 971 966 943 938 972 967 971 966 945 940 947 942 972 967 945 940 973 968 972 967 947 942 974 969 973 968 947 942 975 970 973 968 974 969 976 971 975 970 974 969 977 972 975 970 976 971 978 973 977 972 976 971 979 974 977 972 978 973 980 975 979 974 978 973 981 976 283 281 285 283 982 977 283 281 981 976 983 978 982 977 981 976 984 979 982 977 983 978 985 980 984 979 983 978 986 981 984 979 985 980 987 982 986 981 985 980 579 574 986 981 987 982 988 983 579 574 987 982 577 572 579 574 988 983 575 570 577 572 988 983 583 578 989 984 584 579 990 985 989 984 583 578 582 577 990 985 583 578 643 638 990 985 582 577 594 589 643 638 582 577 642 637 643 638 594 589 761 756 642 637 594 589 732 727 642 637 761 756 746 741 732 727 761 756 731 726 732 727 746 741 745 740 731 726 746 741 423 421 991 986 425 423 992 987 991 986 423 421 421 419 992 987 423 421 993 988 992 987 421 419 419 417 993 988 421 419 994 989 993 988 419 417 417 415 994 989 419 417 995 990 994 989 417 415 415 413 995 990 417 415 996 991 995 990 415 413 413 411 996 991 415 413 165 163 633 628 164 162 997 992 633 628 165 163 166 164 997 992 165 163 998 993 997 992 166 164 167 165 998 993 166 164 999 994 998 993 167 165 1000 995 999 994 167 165 690 685 999 994 1000 995 518 514 690 685 1000 995 688 683 690 685 518 514 517 513 688 683 518 514 1003 998 1002 997 1001 996 1004 999 1002 997 1003 998 1005 1000 1004 999 1003 998 1006 1001 1004 999 1005 1000 1007 1002 1006 1001 1005 1000 1008 1003 1006 1001 1007 1002 1009 1004 1008 1003 1007 1002 1010 1005 1008 1003 1009 1004 1011 1006 1010 1005 1009 1004 1012 1007 1010 1005 1011 1006 1004 999 1013 1008 1002 997 1014 1009 1013 1008 1004 999 1006 1001 1014 1009 1004 999 521 517 1014 1009 1006 1001 1015 1010 521 517 1006 1001 523 519 521 517 1015 1010 557 553 523 519 1015 1010 1016 1011 523 519 557 553 555 551 1016 1011 557 553 1017 1012 1016 1011 555 551 1020 1015 1019 1014 1018 1013 1021 1016 1019 1014 1020 1015 1022 1017 1021 1016 1020 1015 1023 1018 1021 1016 1022 1017 1024 1019 1023 1018 1022 1017 1025 1020 1023 1018 1024 1019 1026 1021 1025 1020 1024 1019 1027 1022 1025 1020 1026 1021 1028 1023 1027 1022 1026 1021 1029 1024 1027 1022 1028 1023 1030 1025 492 488 954 949 490 486 492 488 1030 1025 1031 1026 490 486 1030 1025 1032 1027 490 486 1031 1026 1033 1028 1032 1027 1031 1026 1034 1029 1032 1027 1033 1028 1035 1030 1034 1029 1033 1028 1036 1031 1034 1029 1035 1030 1037 1032 1036 1031 1035 1030 482 479 1036 1031 1037 1032 900 895 1038 1033 91 91 1039 1034 1038 1033 900 895 898 893 1039 1034 900 895 1040 1035 1039 1034 898 893 896 891 1040 1035 898 893 1041 1036 1040 1035 896 891 1042 1037 1041 1036 896 891 1043 1038 1041 1036 1042 1037 277 275 1043 1038 1042 1037 279 277 1043 1038 277 275 593 588 455 453 456 454 0 0 455 453 593 588 1044 1039 0 0 593 588 2 2 0 0 1044 1039 1045 1040 2 2 1044 1039 841 836 2 2 1045 1040 1046 1041 841 836 1045 1040 1047 1042 841 836 1046 1041 1048 1043 1047 1042 1046 1041 1049 1044 1047 1042 1048 1043 12 12 39 39 41 41 1050 1045 39 39 12 12 10 10 1050 1045 12 12 1051 1046 1050 1045 10 10 634 629 1051 1046 10 10 1052 1047 1051 1046 634 629 632 627 1052 1047 634 629 1053 1048 1052 1047 632 627 321 319 1053 1048 632 627 323 321 1053 1048 321 319 232 230 328 326 234 232 639 634 328 326 232 230 230 228 639 634 232 230 539 535 639 634 230 228 1054 1049 539 535 230 228 538 534 539 535 1054 1049 1055 1050 538 534 1054 1049 1056 1051 538 534 1055 1050 1057 1052 1056 1051 1055 1050 1058 1053 1056 1051 1057 1052 515 511 684 679 517 513 625 620 684 679 515 511 1059 1054 625 620 515 511 623 618 625 620 1059 1054 1060 1055 623 618 1059 1054 1061 1056 623 618 1060 1055 1062 1057 1061 1056 1060 1055 1063 1058 1061 1056 1062 1057 1064 1059 1063 1058 1062 1057 1065 1060 1063 1058 1064 1059 693 688 878 873 695 690 1066 1061 878 873 693 688 691 686 1066 1061 693 688 1067 1062 1066 1061 691 686 689 684 1067 1062 691 686 1068 1063 1067 1062 689 684 1069 1064 1068 1063 689 684 1070 1065 1068 1063 1069 1064 664 659 1070 1065 1069 1064 666 661 1070 1065 664 659 372 370 181 179 374 372 183 181 181 179 372 370 370 368 183 181 372 370 1071 1066 183 181 370 368 368 366 1071 1066 370 368 1072 1067 1071 1066 368 366 366 364 1072 1067 368 366 587 582 1072 1067 366 364 364 362 587 582 366 364 362 360 587 582 364 362 576 571 595 590 578 573 597 592 595 590 576 571 1073 1068 597 592 576 571 599 594 597 592 1073 1068 1074 1069 599 594 1073 1068 971 966 599 594 1074 1069 1075 1070 971 966 1074 1069 1076 1071 971 966 1075 1070 1077 1072 1076 1071 1075 1070 1078 1073 1076 1071 1077 1072 1079 1074 538 534 1056 1051 540 536 538 534 1079 1074 1080 1075 540 536 1079 1074 542 538 540 536 1080 1075 1081 1076 542 538 1080 1075 544 540 542 538 1081 1076 1082 1077 544 540 1081 1076 546 542 544 540 1082 1077 1083 1078 546 542 1082 1077 1084 1079 546 542 1083 1078 1086 1081 401 399 1085 1080 403 401 401 399 1086 1081 1087 1082 403 401 1086 1081 405 403 403 401 1087 1082 1088 1083 405 403 1087 1082 407 405 405 403 1088 1083 1089 1084 407 405 1088 1083 409 407 407 405 1089 1084 1090 1085 409 407 1089 1084 1091 1086 409 407 1090 1085 1021 1016 525 521 1019 1014 1092 1087 525 521 1021 1016 1023 1018 1092 1087 1021 1016 1093 1088 1092 1087 1023 1018 1094 1089 1093 1088 1023 1018 1095 1090 1093 1088 1094 1089 1096 1091 1095 1090 1094 1089 1097 1092 1095 1090 1096 1091 371 369 1097 1092 1096 1091 373 371 1097 1092 371 369 1100 1095 1099 1094 1098 1093 1101 1096 1099 1094 1100 1095 1102 1097 1101 1096 1100 1095 1103 1098 1101 1096 1102 1097 1104 1099 1103 1098 1102 1097 1105 1100 1103 1098 1104 1099 1106 1101 1105 1100 1104 1099 235 233 1105 1100 1106 1101 1107 1102 235 233 1106 1101 897 892 562 558 561 557 564 560 562 558 897 892 899 894 564 560 897 892 565 561 564 560 899 894 901 896 565 561 899 894 566 92 565 561 901 896 902 897 566 92 901 896 567 562 566 92 902 897 903 898 567 562 902 897 6 6 636 631 634 629 637 632 636 631 6 6 818 813 637 632 6 6 638 633 637 632 818 813 820 815 638 633 818 813 1108 1103 638 633 820 815 1109 1104 1108 1103 820 815 65 65 1108 1103 1109 1104 63 63 65 65 1109 1104 1092 1087 526 522 525 521 1110 1105 526 522 1092 1087 1093 1088 1110 1105 1092 1087 1111 1106 1110 1105 1093 1088 1095 1090 1111 1106 1093 1088 1112 1107 1111 1106 1095 1090 1097 1092 1112 1107 1095 1090 375 373 1112 1107 1097 1092 373 371 375 373 1097 1092 905 900 880 875 904 899 882 877 880 875 905 900 906 901 882 877 905 900 884 879 882 877 906 901 907 902 884 879 906 901 886 881 884 879 907 902 908 903 886 881 907 902 660 655 886 881 908 903 659 654 660 655 908 903 1113 1108 890 885 888 883 1114 1109 890 885 1113 1108 686 681 1114 1109 1113 1108 1115 1110 1114 1109 686 681 682 677 1115 1110 686 681 1116 1111 1115 1110 682 677 680 675 1116 1111 682 677 1117 1112 1116 1111 680 675 678 673 1117 1112 680 675 883 878 1118 1113 881 876 673 668 1118 1113 883 878 885 880 673 668 883 878 672 667 673 668 885 880 887 882 672 667 885 880 674 669 672 667 887 882 1119 1114 674 669 887 882 676 671 674 669 1119 1114 1120 1115 676 671 1119 1114 1121 1116 930 925 928 923 931 926 930 925 1121 1116 1122 1117 931 926 1121 1116 1123 1118 931 926 1122 1117 1124 1119 1123 1118 1122 1117 1125 1120 1123 1118 1124 1119 1126 1121 1125 1120 1124 1119 1127 1122 1125 1120 1126 1121 1128 1123 1127 1122 1126 1121 1131 1126 1130 1125 1129 1124 1132 1127 1130 1125 1131 1126 1133 1128 1132 1127 1131 1126 1134 1129 1132 1127 1133 1128 1135 1130 1134 1129 1133 1128 1136 1131 1134 1129 1135 1130 840 835 1136 1131 1135 1130 472 470 1136 1131 840 835 470 468 472 470 840 835 924 919 1137 1132 926 921 1138 1133 1137 1132 924 919 922 917 1138 1133 924 919 1139 1134 1138 1133 922 917 1140 1135 1139 1134 922 917 1141 1136 1139 1134 1140 1135 1142 1137 1141 1136 1140 1135 386 384 1141 1136 1142 1137 388 386 386 384 1142 1137 836 831 1143 1138 834 829 1144 1139 1143 1138 836 831 1145 1140 1144 1139 836 831 1146 1141 1144 1139 1145 1140 1147 1142 1146 1141 1145 1140 1148 1143 1146 1141 1147 1142 1149 1144 1148 1143 1147 1142 1150 1145 1148 1143 1149 1144 1151 1146 1150 1145 1149 1144 358 356 591 586 360 358 1152 1147 591 586 358 356 356 354 1152 1147 358 356 1153 1148 1152 1147 356 354 1154 1149 1153 1148 356 354 1155 1150 1153 1148 1154 1149 1156 1151 1155 1150 1154 1149 1157 1152 1155 1150 1156 1151 1158 1153 1157 1152 1156 1151 1159 1154 655 650 657 652 653 648 655 650 1159 1154 1160 1155 653 648 1159 1154 1161 1156 653 648 1160 1155 1162 1157 1161 1156 1160 1155 1163 1158 1161 1156 1162 1157 1164 1159 1163 1158 1162 1157 1165 1160 1163 1158 1164 1159 1166 1161 1165 1160 1164 1159 203 201 310 308 205 203 308 306 310 308 203 201 201 199 308 306 203 201 1167 1162 308 306 201 199 1168 1163 1167 1162 201 199 306 304 1167 1162 1168 1163 1169 1164 306 304 1168 1163 1170 1165 306 304 1169 1164 195 193 1170 1165 1169 1164 591 586 1044 1039 593 588 1171 1166 1044 1039 591 586 1152 1147 1171 1166 591 586 1172 1167 1171 1166 1152 1147 1153 1148 1172 1167 1152 1147 1173 1168 1172 1167 1153 1148 1155 1150 1173 1168 1153 1148 1174 1169 1173 1168 1155 1150 1157 1152 1174 1169 1155 1150 866 861 1175 1170 868 863 1176 1171 1175 1170 866 861 864 859 1176 1171 866 861 1177 1172 1176 1171 864 859 909 904 1177 1172 864 859 1178 1173 1177 1172 909 904 1179 1174 1178 1173 909 904 1180 1175 1178 1173 1179 1174 621 616 1180 1175 1179 1174 1182 1177 965 960 1181 1176 967 962 965 960 1182 1177 1183 1178 967 962 1182 1177 968 963 967 962 1183 1178 1184 1179 968 963 1183 1178 970 965 968 963 1184 1179 1185 1180 970 965 1184 1179 669 664 970 965 1185 1180 671 666 669 664 1185 1180 353 351 1187 1182 1186 1181 1188 1183 1187 1182 353 351 355 353 1188 1183 353 351 1189 1184 1188 1183 355 353 1022 1017 1189 1184 355 353 1190 1185 1189 1184 1022 1017 1020 1015 1190 1185 1022 1017 1191 1186 1190 1185 1020 1015 1018 1013 1191 1186 1020 1015 381 379 399 397 379 377 1192 1187 399 397 381 379 383 381 1192 1187 381 379 1193 1188 1192 1187 383 381 1194 1189 1193 1188 383 381 1195 1190 1193 1188 1194 1189 1196 1191 1195 1190 1194 1189 391 389 1195 1190 1196 1191 389 387 391 389 1196 1191 1197 1192 1121 1116 690 685 1122 1117 1121 1116 1197 1192 1198 1193 1122 1117 1197 1192 1124 1119 1122 1117 1198 1193 1199 1194 1124 1119 1198 1193 1126 1121 1124 1119 1199 1194 1200 1195 1126 1121 1199 1194 1128 1123 1126 1121 1200 1195 773 768 1128 1123 1200 1195 1101 1096 1201 1196 1099 1094 1202 1197 1201 1196 1101 1096 1103 1098 1202 1197 1101 1096 1203 1198 1202 1197 1103 1098 1105 1100 1203 1198 1103 1098 1204 1199 1203 1198 1105 1100 1205 1200 1204 1199 1105 1100 1040 1035 1204 1199 1205 1200 921 916 1040 1035 1205 1200 354 352 828 823 356 354 1206 1201 828 823 354 352 422 420 1206 1201 354 352 1207 1202 1206 1201 422 420 426 424 1207 1202 422 420 1208 1203 1207 1202 426 424 425 423 1208 1203 426 424 1209 1204 1208 1203 425 423 991 986 1209 1204 425 423 649 644 990 985 647 642 1210 1205 990 985 649 644 1211 1206 1210 1205 649 644 1212 1207 1210 1205 1211 1206 1165 1160 1212 1207 1211 1206 1213 1208 1212 1207 1165 1160 1166 1161 1213 1208 1165 1160 1214 1209 1213 1208 1166 1161 1216 1211 1129 1124 1215 1210 1131 1126 1129 1124 1216 1211 1217 1212 1131 1126 1216 1211 1133 1128 1131 1126 1217 1212 989 984 1133 1128 1217 1212 1135 1130 1133 1128 989 984 990 985 1135 1130 989 984 1210 1205 1135 1130 990 985 309 307 1218 1213 756 751 324 322 1218 1213 309 307 307 305 324 322 309 307 326 324 324 322 307 305 305 303 326 324 307 305 1219 1214 326 324 305 303 303 301 1219 1214 305 303 15 15 1219 1214 303 301 573 568 287 285 289 287 1220 1215 287 285 573 568 1221 1216 1220 1215 573 568 1222 1217 1220 1215 1221 1216 1223 1218 1222 1217 1221 1216 1224 1219 1222 1217 1223 1218 1225 1220 1224 1219 1223 1218 1226 1221 1224 1219 1225 1220 982 977 281 279 283 281 279 277 281 279 982 977 1227 1222 279 277 982 977 1043 1038 279 277 1227 1222 1228 1223 1043 1038 1227 1222 1229 1224 1043 1038 1228 1223 1230 1225 1229 1224 1228 1223 1231 1226 1229 1224 1230 1225 1232 1227 297 295 299 297 568 563 297 295 1232 1227 1233 1228 568 563 1232 1227 570 565 568 563 1233 1228 1234 1229 570 565 1233 1228 1235 1230 570 565 1234 1229 1236 1231 1235 1230 1234 1229 1237 1232 1235 1230 1236 1231 217 215 966 961 219 217 1238 1233 966 961 217 215 1239 1234 1238 1233 217 215 767 762 1238 1233 1239 1234 1240 1235 767 762 1239 1234 1241 1236 767 762 1240 1235 213 211 1241 1236 1240 1235 211 209 1241 1236 213 211 1008 1003 1015 1010 1006 1001 895 890 1015 1010 1008 1003 1232 1227 895 890 1008 1003 1242 1237 895 890 1232 1227 299 297 1242 1237 1232 1227 1243 1238 1242 1237 299 297 300 298 1243 1238 299 297 270 268 1243 1238 300 298 1244 1239 268 266 269 267 267 265 268 266 1244 1239 1245 1240 267 265 1244 1239 266 264 267 265 1245 1240 1246 1241 266 264 1245 1240 265 263 266 264 1246 1241 1247 1242 265 263 1246 1241 1248 1243 265 263 1247 1242 477 475 1249 1244 479 477 1250 1245 1249 1244 477 475 475 473 1250 1245 477 475 1251 1246 1250 1245 475 473 473 471 1251 1246 475 473 1252 1247 1251 1246 473 471 471 469 1252 1247 473 471 469 467 1252 1247 471 469 692 687 1197 1192 690 685 1198 1193 1197 1192 692 687 694 689 1198 1193 692 687 1181 1176 1198 1193 694 689 696 691 1181 1176 694 689 1253 1248 1181 1176 696 691 698 693 1253 1248 696 691 1254 1249 1253 1248 698 693 1256 1251 1001 996 1255 1250 1003 998 1001 996 1256 1251 493 489 1003 998 1256 1251 1005 1000 1003 998 493 489 1257 1252 1005 1000 493 489 1258 1253 1005 1000 1257 1252 1259 1254 1258 1253 1257 1252 1260 1255 1258 1253 1259 1254 1261 1256 976 971 974 969 1262 1257 976 971 1261 1256 487 483 1262 1257 1261 1256 1263 1258 1262 1257 487 483 1264 481 1263 1258 487 483 831 826 1263 1258 1264 481 458 456 831 826 1264 481 460 458 831 826 458 456 404 402 826 821 402 400 824 819 826 821 404 402 406 404 824 819 404 402 1265 1259 824 819 406 404 408 406 1265 1259 406 404 1266 1260 1265 1259 408 406 410 408 1266 1260 408 406 412 410 1266 1260 410 408 1192 1187 1267 1261 399 397 1268 1262 1267 1261 1192 1187 1193 1188 1268 1262 1192 1187 1269 1263 1268 1262 1193 1188 1195 1190 1269 1263 1193 1188 1270 1264 1269 1263 1195 1190 391 389 1270 1264 1195 1190 393 391 1270 1264 391 389 513 509 1059 1054 515 511 1271 1265 1059 1054 513 509 856 851 1271 1265 513 509 1272 1266 1271 1265 856 851 1273 1267 1272 1266 856 851 1175 1170 1272 1266 1273 1267 1274 1268 1175 1170 1273 1267 868 863 1175 1170 1274 1268 605 600 1275 1269 607 602 1276 1270 1275 1269 605 600 603 598 1276 1270 605 600 1277 1271 1276 1270 603 598 1278 1272 1277 1271 603 598 1279 1273 1277 1271 1278 1272 1280 1274 1279 1273 1278 1272 973 968 601 596 599 594 603 598 601 596 973 968 975 970 603 598 973 968 1278 1272 603 598 975 970 977 972 1278 1272 975 970 1280 1274 1278 1272 977 972 979 974 1280 1274 977 972 359 357 1281 1275 357 355 1282 1276 1281 1275 359 357 361 359 1282 1276 359 357 1283 1277 1282 1276 361 359 1284 1278 1283 1277 361 359 1285 1279 1283 1277 1284 1278 1286 1280 1285 1279 1284 1278 1287 1281 865 860 867 862 1288 1282 865 860 1287 1281 1289 1283 1288 1282 1287 1281 1290 1284 1288 1282 1289 1283 1291 1285 1290 1284 1289 1283 1292 1286 1290 1284 1291 1285 1293 1287 1292 1286 1291 1285 1176 1171 1272 1266 1175 1170 1294 1288 1272 1266 1176 1171 1177 1172 1294 1288 1176 1171 1295 1289 1294 1288 1177 1172 1296 1290 1295 1289 1177 1172 1297 1291 1295 1289 1296 1290 1298 1292 1297 1291 1296 1290 929 924 315 313 317 315 729 724 315 313 929 924 715 710 729 724 929 924 730 725 729 724 715 710 716 711 730 725 715 710 782 777 730 725 716 711 789 784 782 777 716 711 1210 1205 840 835 1135 1130 839 834 840 835 1210 1205 1299 1293 839 834 1210 1205 1300 1294 839 834 1299 1293 1301 1295 1300 1294 1299 1293 656 651 1300 1294 1301 1295 658 653 656 651 1301 1295 509 505 858 853 511 507 1302 1296 858 853 509 505 380 378 1302 1296 509 505 1303 1297 1302 1296 380 378 378 376 1303 1297 380 378 1304 1298 1303 1297 378 376 376 374 1304 1298 378 376 1206 1201 826 821 828 823 402 400 826 821 1206 1201 1207 1202 402 400 1206 1201 401 399 402 400 1207 1202 1208 1203 401 399 1207 1202 1085 1080 401 399 1208 1203 1209 1204 1085 1080 1208 1203 467 465 1252 1247 469 467 1251 1246 1252 1247 467 465 1305 1299 1251 1246 467 465 1250 1245 1251 1246 1305 1299 1306 1300 1250 1245 1305 1299 1249 1244 1250 1245 1306 1300 1307 1301 1249 1244 1306 1300 654 649 1300 1294 656 651 1308 1302 1300 1294 654 649 1309 1303 1308 1302 654 649 1310 1304 1308 1302 1309 1303 1311 1305 1310 1304 1309 1303 1312 1306 1310 1304 1311 1305 608 603 1312 1306 1311 1305 465 463 1305 1299 467 465 1313 1307 1305 1299 465 463 463 461 1313 1307 465 463 1314 1308 1313 1307 463 461 461 459 1314 1308 463 461 1315 1309 1314 1308 461 459 459 457 1315 1309 461 459 1110 1105 528 524 526 522 1316 1310 528 524 1110 1105 1317 1311 1316 1310 1110 1105 1318 1312 1316 1310 1317 1311 1319 1313 1318 1312 1317 1311 1320 1314 1318 1312 1319 1313 1321 1315 1320 1314 1319 1313 343 341 662 657 341 339 1322 1316 662 657 343 341 345 343 1322 1316 343 341 1323 1317 1322 1316 345 343 1324 1318 1323 1317 345 343 1325 1319 1323 1317 1324 1318 1322 1316 221 219 662 657 220 218 221 219 1322 1316 1323 1317 220 218 1322 1316 269 267 220 218 1323 1317 1325 1319 269 267 1323 1317 1244 1239 269 267 1325 1319 757 752 648 643 646 641 650 645 648 643 757 752 758 753 650 645 757 752 1326 1320 650 645 758 753 759 754 1326 1320 758 753 598 593 1326 1320 759 754 1084 1079 548 544 546 542 550 546 548 544 1084 1079 1327 1321 550 546 1084 1079 552 548 550 546 1327 1321 1328 1322 552 548 1327 1321 1329 1323 552 548 1328 1322 958 953 1031 1026 956 951 1033 1028 1031 1026 958 953 960 955 1033 1028 958 953 1035 1030 1033 1028 960 955 962 957 1035 1030 960 955 1330 1324 1035 1030 962 957 304 302 592 587 302 300 1331 1325 592 587 304 302 1170 1165 1331 1325 304 302 1332 1326 1331 1325 1170 1165 195 193 1332 1326 1170 1165 193 191 1332 1326 195 193 1062 1057 1333 1327 1064 1059 1334 1328 1333 1327 1062 1057 1060 1055 1334 1328 1062 1057 1335 1329 1334 1328 1060 1055 1059 1054 1335 1329 1060 1055 1271 1265 1335 1329 1059 1054 505 501 849 844 507 503 851 846 849 844 505 501 806 801 851 846 505 501 853 848 851 846 806 801 807 802 853 848 806 801 808 803 853 848 807 802 1338 1332 1337 1331 1336 1330 1339 1333 1337 1331 1338 1332 852 847 1339 1333 1338 1332 1340 1334 1339 1333 852 847 816 811 1340 1334 852 847 815 810 1340 1334 816 811 1308 1302 839 834 1300 1294 1341 1335 839 834 1308 1302 1342 1336 1341 1335 1308 1302 1343 1337 1341 1335 1342 1336 1344 1338 1343 1337 1342 1336 1345 1339 1343 1337 1344 1338 534 530 1320 1314 536 532 1318 1312 1320 1314 534 530 532 528 1318 1312 534 530 1316 1310 1318 1312 532 528 530 526 1316 1310 532 528 528 524 1316 1310 530 526 1341 1335 837 832 839 834 1346 1340 837 832 1341 1335 1347 1341 1346 1340 1341 1335 1348 1342 1346 1340 1347 1341 1349 1343 1348 1342 1347 1341 1151 1146 1348 1342 1349 1343 1096 1091 369 367 371 369 1350 1344 369 367 1096 1091 1094 1089 1350 1344 1096 1091 1351 1345 1350 1344 1094 1089 1023 1018 1351 1345 1094 1089 1025 1020 1351 1345 1023 1018 988 983 1352 1346 575 570 1353 1347 1352 1346 988 983 987 982 1353 1347 988 983 1354 1348 1353 1347 987 982 985 980 1354 1348 987 982 983 978 1354 1348 985 980 1222 1217 981 976 285 283 983 978 981 976 1222 1217 1224 1219 983 978 1222 1217 1355 1349 983 978 1224 1219 1226 1221 1355 1349 1224 1219 1356 1350 1355 1349 1226 1221 1228 1223 1098 1093 1230 1225 1100 1095 1098 1093 1228 1223 1227 1222 1100 1095 1228 1223 1102 1097 1100 1095 1227 1222 982 977 1102 1097 1227 1222 984 979 1102 1097 982 977 1359 1353 1358 1352 1357 1351 1360 1354 1358 1352 1359 1353 1204 1199 1360 1354 1359 1353 1361 1355 1360 1354 1204 1199 1040 1035 1361 1355 1204 1199 1041 1036 1361 1355 1040 1035 1200 1195 771 766 773 768 963 958 771 766 1200 1195 1199 1194 963 958 1200 1195 965 960 963 958 1199 1194 1198 1193 965 960 1199 1194 1181 1176 965 960 1198 1193 1362 1356 1146 1141 1148 1143 1144 1139 1146 1141 1362 1356 1363 1357 1144 1139 1362 1356 1364 1358 1144 1139 1363 1357 1262 1257 1364 1358 1363 1357 1263 1258 1364 1358 1262 1257 1053 1048 31 31 1052 1047 29 29 31 31 1053 1048 323 321 29 29 1053 1048 27 27 29 29 323 321 325 323 27 27 323 321 25 25 27 27 325 323 860 855 911 906 862 857 913 908 911 906 860 855 1365 1359 913 908 860 855 1366 1360 913 908 1365 1359 1367 1361 1366 1360 1365 1359 1368 1362 1366 1360 1367 1361 1008 1003 1233 1228 1232 1227 942 937 1233 1228 1008 1003 1010 1005 942 937 1008 1003 1369 1363 942 937 1010 1005 1012 1007 1369 1363 1010 1005 1370 1364 1369 1363 1012 1007 1294 1288 1271 1265 1272 1266 1371 1365 1271 1265 1294 1288 1372 1366 1371 1365 1294 1288 1373 1367 1371 1365 1372 1366 1374 1368 1373 1367 1372 1366 1375 1369 1373 1367 1374 1368 225 223 581 576 223 221 1376 1370 581 576 225 223 227 225 1376 1370 225 223 1107 1102 1376 1370 227 225 229 227 1107 1102 227 225 231 229 1107 1102 229 227 1108 1103 180 178 638 633 179 177 180 178 1108 1103 1377 1371 179 177 1108 1103 501 497 179 177 1377 1371 67 67 501 497 1377 1371 69 69 501 497 67 67 1061 1056 621 616 623 618 1180 1175 621 616 1061 1056 1063 1058 1180 1175 1061 1056 1378 1372 1180 1175 1063 1058 1065 1060 1378 1372 1063 1058 1298 1292 1378 1372 1065 1060 49 49 563 559 47 47 418 416 563 559 49 49 51 51 418 416 49 49 416 414 418 416 51 51 53 53 416 414 51 51 55 55 416 414 53 53 997 992 319 317 633 628 928 923 319 317 997 992 998 993 928 923 997 992 1121 1116 928 923 998 993 999 994 1121 1116 998 993 690 685 1121 1116 999 994 1365 1359 1379 1373 1367 1361 1380 1374 1379 1373 1365 1359 860 855 1380 1374 1365 1359 1381 1375 1380 1374 860 855 858 853 1381 1375 860 855 1302 1296 1381 1375 858 853 533 529 955 950 531 527 957 952 955 950 533 529 535 531 957 952 533 529 959 954 957 952 535 531 537 533 959 954 535 531 961 956 959 954 537 533 1339 1333 1382 1376 1337 1331 1383 1377 1382 1376 1339 1333 1340 1334 1383 1377 1339 1333 1384 1378 1383 1377 1340 1334 815 810 1384 1378 1340 1334 814 809 1384 1378 815 810 1161 1156 651 646 653 648 1385 1379 651 646 1161 1156 1163 1158 1385 1379 1161 1156 1211 1206 1385 1379 1163 1158 1165 1160 1211 1206 1163 1158 941 936 1386 1380 939 934 1387 1381 1386 1380 941 936 943 938 1387 1381 941 936 1076 1071 1387 1381 943 938 971 966 1076 1071 943 938 394 392 1140 1135 396 394 1142 1137 1140 1135 394 392 392 390 1142 1137 394 392 388 386 1142 1137 392 390 390 388 388 386 392 390 844 839 1154 1149 846 841 1156 1151 1154 1149 844 839 1388 1382 1156 1151 844 839 1158 1153 1156 1151 1388 1382 1389 1383 1158 1153 1388 1382 491 487 1257 1252 493 489 1390 1384 1257 1252 491 487 1391 1385 1390 1384 491 487 1392 1386 1390 1384 1391 1385 951 946 1392 1386 1391 1385 756 751 311 309 309 307 747 742 311 309 756 751 755 750 747 742 756 751 774 769 747 742 755 750 781 776 774 769 755 750 1393 1387 1283 1277 1285 1279 1282 1276 1283 1277 1393 1387 1394 1388 1282 1276 1393 1387 1281 1275 1282 1276 1394 1388 1395 1389 1281 1275 1394 1388 572 567 1074 1069 1073 1068 1075 1070 1074 1069 572 567 1396 1390 1075 1070 572 567 1397 1391 1075 1070 1396 1390 1237 1232 1397 1391 1396 1390 1241 1236 765 760 767 762 764 759 765 760 1241 1236 1398 1392 764 759 1241 1236 763 758 764 759 1398 1392 762 757 763 758 1398 1392 1111 1106 1317 1311 1110 1105 1399 1393 1317 1311 1111 1106 1112 1107 1399 1393 1111 1106 1400 1394 1399 1393 1112 1107 375 373 1400 1394 1112 1107 1219 1214 23 23 326 324 21 21 23 23 1219 1214 1401 1395 21 21 1219 1214 19 19 21 21 1401 1395 17 17 19 19 1401 1395 677 672 1402 1396 675 670 1403 1397 1402 1396 677 672 1404 1398 1403 1397 677 672 685 680 1403 1397 1404 1398 683 678 685 680 1404 1398 1405 1399 35 35 37 37 1406 1400 35 35 1405 1399 1052 1047 1406 1400 1405 1399 33 33 1406 1400 1052 1047 31 31 33 33 1052 1047 568 563 295 293 297 295 293 291 295 293 568 563 569 564 293 291 568 563 291 289 293 291 569 564 289 287 291 289 569 564 1106 1101 1376 1370 1107 1102 986 981 1376 1370 1106 1101 1104 1099 986 981 1106 1101 984 979 986 981 1104 1099 1102 1097 984 979 1104 1099 1288 1282 863 858 865 860 861 856 863 858 1288 1282 1290 1284 861 856 1288 1282 859 854 861 856 1290 1284 1292 1286 859 854 1290 1284 575 570 1221 1216 573 568 1407 1401 1221 1216 575 570 1408 1402 1407 1401 575 570 1409 1403 1407 1401 1408 1402 1410 1404 1409 1403 1408 1402 1267 1261 397 395 399 397 395 393 397 395 1267 1261 1411 1405 395 393 1267 1261 393 391 395 393 1411 1405 1270 1264 393 391 1411 1405 1123 1118 932 927 931 926 1412 1406 932 927 1123 1118 1125 1120 1412 1406 1123 1118 1413 1407 1412 1406 1125 1120 1127 1122 1413 1407 1125 1120 727 722 315 313 729 724 313 311 315 313 727 722 762 757 313 311 727 722 205 203 313 311 762 757 207 205 205 203 762 757 191 189 1414 1408 193 191 1415 1409 1414 1408 191 189 189 187 1415 1409 191 189 586 581 1415 1409 189 187 187 185 586 581 189 187 1205 1200 919 914 921 916 918 913 919 914 1205 1200 1416 1410 918 913 1205 1200 914 909 918 913 1416 1410 912 907 914 909 1416 1410 1417 1411 1116 1111 1117 1112 1418 1412 1116 1111 1417 1411 894 889 1418 1412 1417 1411 892 887 1418 1412 894 889 87 87 812 807 810 805 1038 1033 812 807 87 87 89 89 1038 1033 87 87 91 91 1038 1033 89 89 1138 1133 1419 1413 1137 1132 1420 1414 1419 1413 1138 1133 1139 1134 1420 1414 1138 1133 850 845 1420 1414 1139 1134 1420 1414 1336 1330 1419 1413 1338 1332 1336 1330 1420 1414 850 845 1338 1332 1420 1414 852 847 1338 1332 850 845 1422 1416 1293 1287 1421 1415 1292 1286 1293 1287 1422 1416 857 852 1292 1286 1422 1416 859 854 1292 1286 857 852 1046 1041 1423 1417 1048 1043 1424 1418 1423 1417 1046 1041 1045 1040 1424 1418 1046 1041 1172 1167 1424 1418 1045 1040 1425 1419 1384 1378 814 809 1426 1420 1384 1378 1425 1419 925 920 1426 1420 1425 1419 927 922 1426 1420 925 920 588 583 1415 1409 586 581 1427 1421 1415 1409 588 583 589 584 1427 1421 588 583 590 585 1427 1421 589 584 1404 1398 681 676 683 678 1428 1422 681 676 1404 1398 677 672 1428 1422 1404 1398 679 674 1428 1422 677 672 629 624 685 680 627 622 1403 1397 685 680 629 624 631 626 1403 1397 629 624 1402 1396 1403 1397 631 626 1429 1423 814 809 813 808 1425 1419 814 809 1429 1423 923 918 1425 1419 1429 1423 925 920 1425 1419 923 918 1038 1033 813 808 812 807 1429 1423 813 808 1038 1033 1039 1034 1429 1423 1038 1033 1040 1035 1429 1423 1039 1034 1114 1109 892 887 890 885 1418 1412 892 887 1114 1109 1115 1110 1418 1412 1114 1109 1116 1111 1418 1412 1115 1110 660 655 888 883 886 881 1113 1108 888 883 660 655 661 656 1113 1108 660 655 663 658 1113 1108 661 656 1380 1374 1430 1424 1379 1373 1431 1425 1430 1424 1380 1374 1381 1375 1431 1425 1380 1374 1302 1296 1431 1425 1381 1375 947 942 1261 1256 974 969 1432 1426 1261 1256 947 942 489 485 1432 1426 947 942 487 483 1432 1426 489 485 832 827 1263 1258 831 826 1143 1138 1263 1258 832 827 833 828 1143 1138 832 827 834 829 1143 1138 833 828 837 832 1145 1140 836 831 1433 1427 1145 1140 837 832 1346 1340 1433 1427 837 832 1348 1342 1433 1427 1346 1340 1433 1427 1147 1142 1145 1140 1149 1144 1147 1142 1433 1427 1348 1342 1149 1144 1433 1427 1151 1146 1149 1144 1348 1342 1434 1428 1148 1143 1150 1145 1435 1429 1148 1143 1434 1428 980 975 1435 1429 1434 1428 978 973 1435 1429 980 975 1436 1430 525 521 523 519 1019 1014 525 521 1436 1430 1437 1431 1019 1014 1436 1430 1018 1013 1019 1014 1437 1431 946 941 1439 1433 1438 1432 1440 1434 1439 1433 946 941 944 939 1440 1434 946 941 942 937 1440 1434 944 939 4 4 818 813 6 6 817 812 818 813 4 4 2 2 817 812 4 4 841 836 817 812 2 2 1234 1229 938 933 1236 1231 940 935 938 933 1234 1229 1233 1228 940 935 1234 1229 942 937 940 935 1233 1228 1273 1267 1421 1415 1274 1268 1422 1416 1421 1415 1273 1267 856 851 1422 1416 1273 1267 857 852 1422 1416 856 851 1026 1021 1395 1389 1028 1023 1281 1275 1395 1389 1026 1021 1024 1019 1281 1275 1026 1021 357 355 1281 1275 1024 1019 1326 1320 652 647 650 645 1441 1435 652 647 1326 1320 600 595 1441 1435 1326 1320 602 597 1441 1435 600 595 1025 1020 1442 1436 1351 1345 1443 1437 1442 1436 1025 1020 1027 1022 1443 1437 1025 1020 1029 1024 1443 1437 1027 1022 1444 1438 1443 1437 1029 1024 1445 1439 1443 1437 1444 1438 1286 1280 1445 1439 1444 1438 1284 1278 1445 1439 1286 1280 1229 1224 1041 1036 1043 1038 1446 1440 1041 1036 1229 1224 1231 1226 1446 1440 1229 1224 1447 1441 1446 1440 1231 1226 1071 1066 185 183 183 181 585 580 185 183 1071 1066 1072 1067 585 580 1071 1066 587 582 585 580 1072 1067 1366 1360 915 910 913 908 916 911 915 910 1366 1360 1368 1362 916 911 1366 1360 917 912 916 911 1368 1362 239 237 1205 1200 1105 1100 1448 1442 1205 1200 239 237 241 239 1448 1442 239 237 243 241 1448 1442 241 239 1202 1197 1357 1351 1201 1196 1359 1353 1357 1351 1202 1197 1203 1198 1359 1353 1202 1197 1204 1199 1359 1353 1203 1198 935 930 768 763 933 928 770 765 768 763 935 930 937 932 770 765 935 930 772 767 770 765 937 932 1446 1440 1361 1355 1041 1036 1360 1354 1361 1355 1446 1440 1447 1441 1360 1354 1446 1440 1358 1352 1360 1354 1447 1441 498 494 524 520 496 492 522 518 524 520 498 494 500 496 522 518 498 494 520 516 522 518 500 496 1050 1045 37 37 39 39 1405 1399 37 37 1050 1045 1051 1046 1405 1399 1050 1045 1052 1047 1405 1399 1051 1046 1398 1392 207 205 762 757 209 207 207 205 1398 1392 1241 1236 209 207 1398 1392 211 209 209 207 1241 1236 1238 1233 964 959 966 961 1449 1443 964 959 1238 1233 767 762 1449 1443 1238 1233 769 764 1449 1443 767 762 1435 1429 1362 1356 1148 1143 1363 1357 1362 1356 1435 1429 978 973 1363 1357 1435 1429 976 971 1363 1357 978 973 1179 1174 619 614 621 616 1450 1444 619 614 1179 1174 909 904 1450 1444 1179 1174 910 905 1450 1444 909 904 1355 1349 1354 1348 983 978 1451 1445 1354 1348 1355 1349 1356 1350 1451 1445 1355 1349 1452 1446 1451 1445 1356 1350 1253 1248 1182 1177 1181 1176 1453 1447 1182 1177 1253 1248 1254 1249 1453 1447 1253 1248 1454 1448 1453 1447 1254 1249 1453 1447 1183 1178 1182 1177 1455 1449 1183 1178 1453 1447 1454 1448 1455 1449 1453 1447 1456 1450 1455 1449 1454 1448 497 493 1255 1250 499 495 1256 1251 1255 1250 497 493 495 491 1256 1251 497 493 493 489 1256 1251 495 491 1331 1325 590 585 592 587 1414 1408 590 585 1331 1325 1332 1326 1414 1408 1331 1325 193 191 1414 1408 1332 1326 1047 1042 842 837 841 836 1457 1451 842 837 1047 1042 1049 1044 1457 1451 1047 1042 1389 1383 1457 1451 1049 1044 854 849 845 840 847 842 821 816 845 840 854 849 855 850 821 816 854 849 823 818 821 816 855 850 1455 1449 1184 1179 1183 1178 1185 1180 1184 1179 1455 1449 1456 1450 1185 1180 1455 1449 671 666 1185 1180 1456 1450 55 55 414 412 416 414 1458 1452 414 412 55 55 57 57 1458 1452 55 55 59 59 1458 1452 57 57 1458 1452 412 410 414 412 1266 1260 412 410 1458 1452 59 59 1266 1260 1458 1452 61 61 1266 1260 59 59 640 635 328 326 639 634 330 328 328 326 640 635 641 636 330 328 640 635 332 330 330 328 641 636 1268 1262 1411 1405 1267 1261 1459 1453 1411 1405 1268 1262 1269 1263 1459 1453 1268 1262 1270 1264 1459 1453 1269 1263 1460 1454 891 886 893 888 1119 1114 891 886 1460 1454 1120 1115 1119 1114 1460 1454 1310 1304 1342 1336 1308 1302 1461 1455 1342 1336 1310 1304 1312 1306 1461 1455 1310 1304 1462 1456 1442 1436 365 363 1351 1345 1442 1436 1462 1456 1350 1344 1351 1345 1462 1456 1463 1457 1390 1384 1392 1386 1257 1252 1390 1384 1463 1457 1259 1254 1257 1252 1463 1457 215 213 1239 1234 217 215 1240 1235 1239 1234 215 213 213 211 1240 1235 215 213 1407 1401 1223 1218 1221 1216 1464 1458 1223 1218 1407 1401 1409 1403 1464 1458 1407 1401 1303 1297 1431 1425 1302 1296 1465 1459 1431 1425 1303 1297 1304 1298 1465 1459 1303 1297 1347 1341 1345 1339 1349 1343 1343 1337 1345 1339 1347 1341 1341 1335 1343 1337 1347 1341 1448 1442 1416 1410 1205 1200 617 612 1416 1410 1448 1442 245 243 617 612 1448 1442 846 841 828 823 830 825 356 354 828 823 846 841 1154 1149 356 354 846 841 604 599 1441 1435 602 597 652 647 1441 1435 604 599 654 649 652 647 604 599 1445 1439 1442 1436 1443 1437 365 363 1442 1436 1445 1439 1284 1278 365 363 1445 1439 1329 1323 554 550 552 548 344 342 554 550 1329 1323 346 344 344 342 1329 1323 933 928 719 714 717 712 766 761 719 714 933 928 768 763 766 761 933 928 1457 1451 843 838 842 837 1388 1382 843 838 1457 1451 1389 1383 1388 1382 1457 1451 1426 1420 1383 1377 1384 1378 1466 1460 1383 1377 1426 1420 927 922 1466 1460 1426 1420 1173 1168 1424 1418 1172 1167 1467 1461 1424 1418 1173 1168 1174 1169 1467 1461 1173 1168 1295 1289 1372 1366 1294 1288 1468 1462 1372 1366 1295 1289 1297 1291 1468 1462 1295 1289 1054 1049 226 224 1055 1050 228 226 226 224 1054 1049 230 228 228 226 1054 1049 1235 1230 572 567 570 565 1396 1390 572 567 1235 1230 1237 1232 1396 1390 1235 1230 1412 1406 934 929 932 927 1469 1463 934 929 1412 1406 1413 1407 1469 1463 1412 1406 1319 1313 1470 1464 1321 1315 1399 1393 1470 1464 1319 1313 1317 1311 1399 1393 1319 1313 1471 1465 1007 1002 1260 1255 1009 1004 1007 1002 1471 1465 1011 1006 1009 1004 1471 1465 1472 1466 1277 1271 1279 1273 1276 1270 1277 1271 1472 1466 1275 1269 1276 1270 1472 1466 1473 1467 1266 1260 61 61 1265 1259 1266 1260 1473 1467 824 819 1265 1259 1473 1467 1313 1307 1306 1300 1305 1299 1474 1468 1306 1300 1313 1307 1314 1308 1474 1468 1313 1307 1378 1372 1178 1173 1180 1175 1296 1290 1178 1173 1378 1372 1298 1292 1296 1290 1378 1372 1475 1469 491 487 489 485 949 944 491 487 1475 1469 947 942 949 944 1475 1469 1352 1346 1408 1402 575 570 1410 1404 1408 1402 1352 1346 1476 1470 1410 1404 1352 1346 531 527 952 947 529 525 953 948 952 947 531 527 955 950 953 948 531 527 1069 1064 663 658 664 659 687 682 663 658 1069 1064 689 684 687 682 1069 1064 302 300 454 452 301 299 453 451 454 452 302 300 592 587 453 451 302 300 1477 1471 226 224 224 222 1055 1050 226 224 1477 1471 1057 1052 1055 1050 1477 1471 14 14 41 41 43 43 12 12 41 41 14 14 8 8 634 629 10 10 6 6 634 629 8 8 162 160 635 630 161 159 163 161 635 630 162 160 163 161 633 628 635 630 164 162 633 628 163 161 168 166 1000 995 167 165 169 167 1000 995 168 166 169 167 518 514 1000 995 170 168 518 514 169 167 1377 1371 65 65 67 67 1108 1103 65 65 1377 1371 16 16 43 43 18 18 14 14 43 43 16 16 1371 1365 1335 1329 1271 1265 1373 1367 1335 1329 1371 1365 1373 1367 1334 1328 1335 1329 1375 1369 1334 1328 1373 1367 1427 1421 1414 1408 1415 1409 590 585 1414 1408 1427 1421 1169 1164 197 195 195 193 1168 1163 197 195 1169 1164 1168 1163 199 197 197 195 201 199 199 197 1168 1163 581 576 986 981 579 574 1376 1370 986 981 581 576 1450 1444 617 612 619 614 910 905 617 612 1450 1444 1258 1253 1007 1002 1005 1000 1260 1255 1007 1002 1258 1253 509 505 382 380 380 378 507 503 382 380 509 505 1243 1238 271 269 1242 1237 270 268 271 269 1243 1238 1015 1010 559 555 557 553 895 890 559 555 1015 1010 808 803 811 806 853 848 809 804 811 806 808 803 237 235 1105 1100 235 233 239 237 1105 1100 237 235 1478 1237 896 891 895 890 271 269 896 891 1478 1237 558 554 348 346 556 552 350 348 348 346 558 554 351 349 1186 1181 349 347 353 351 1186 1181 351 349 271 269 1042 1037 896 891 273 271 1042 1037 271 269 910 905 1416 1410 617 612 912 907 1416 1410 910 905 1042 1037 275 273 277 275 273 271 275 273 1042 1037 1188 1183 1479 1472 1187 1182 1189 1184 1479 1472 1188 1183 1189 1184 1480 1473 1479 1472 1190 1185 1480 1473 1189 1184 1429 1423 921 916 923 918 1040 1035 921 916 1429 1423 385 383 1194 1189 383 381 387 385 1194 1189 385 383 1014 1009 519 515 1013 1008 521 517 519 515 1014 1009 384 382 1141 1136 386 384 848 843 1141 1136 384 382 848 843 1139 1134 1141 1136 850 845 1139 1134 848 843 665 660 969 964 667 662 221 219 969 964 665 660 920 915 1140 1135 922 917 396 394 1140 1135 920 915 527 523 494 490 496 492 529 525 494 490 527 523 574 569 1073 1068 576 571 572 567 1073 1068 574 569 1196 1191 387 385 389 387 1194 1189 387 385 1196 1191 571 566 289 287 569 564 573 568 289 287 571 566 1220 1215 285 283 287 285 1222 1217 285 283 1220 1215 1364 1358 1143 1138 1144 1139 1263 1258 1143 1138 1364 1358 233 231 1107 1102 231 229 235 233 1107 1102 233 231 948 943 1438 1432 950 945 946 941 1438 1432 948 943 1369 1363 1440 1434 942 937 1370 1364 1440 1434 1369 1363 754 749 322 320 320 318 756 751 322 320 754 749 1391 1385 949 944 951 946 491 487 949 944 1391 1385 322 320 1218 1213 324 322 756 751 1218 1213 322 320 972 967 599 594 971 966 973 968 599 594 972 967 15 15 1401 1395 1219 1214 17 17 1401 1395 15 15 1078 1073 1387 1381 1076 1071 1386 1380 1387 1381 1078 1073 363 361 1284 1278 361 359 365 363 1284 1278 363 361 1212 1207 1299 1293 1210 1205 1213 1208 1299 1293 1212 1207 1451 1445 1353 1347 1354 1348 1452 1446 1353 1347 1451 1445 1476 1470 1353 1347 1452 1446 1352 1346 1353 1347 1476 1470 1213 1208 1301 1295 1299 1293 1214 1209 1301 1295 1213 1208 367 365 1462 1456 365 363 369 367 1462 1456 367 365 250 248 1481 1474 252 250 248 246 1481 1474 250 248 604 599 1309 1303 654 649 606 601 1309 1303 604 599 606 601 1311 1305 1309 1303 608 603 1311 1305 606 601 248 246 1482 1475 1481 1474 246 244 1482 1475 248 246 246 244 1483 1476 1482 1475 244 242 1483 1476 246 244 474 472 1136 1131 472 470 476 474 1136 1131 474 472 476 474 1134 1129 1136 1131 478 476 1134 1129 476 474 478 476 1132 1127 1134 1129 480 478 1132 1127 478 476 244 242 1484 1477 1483 1476 242 240 1484 1477 244 242 242 240 1485 1478 1484 1477 240 238 1485 1478 242 240 240 238 327 325 1485 1478 238 236 327 325 240 238 331 329 618 613 329 327 333 331 618 613 331 329 335 333 659 654 333 331 337 335 659 654 335 333 889 884 1119 1114 887 882 891 886 1119 1114 889 884 1113 1108 687 682 686 681 663 658 687 682 1113 1108 1066 1061 876 871 878 873 1067 1062 876 871 1066 1061 1067 1062 874 869 876 871 1068 1063 874 869 1067 1062 835 830 468 466 470 468 466 464 468 466 835 830 354 352 420 418 422 420 563 559 420 418 354 352 1068 1063 872 867 874 869 1070 1065 872 867 1068 1063 1070 1065 870 865 872 867 666 661 870 865 1070 1065 1091 1086 411 409 409 407 1486 1479 411 409 1091 1086 1486 1479 413 411 411 409 996 991 413 411 1486 1479 594 589 760 755 761 756 596 591 760 755 594 589 596 591 759 754 760 755 598 593 759 754 596 591 63 63 1473 1467 61 61 1109 1104 1473 1467 63 63 820 815 1473 1467 1109 1104 822 817 1473 1467 820 815 1487 1480 1056 1051 1058 1053 1079 1074 1056 1051 1487 1480 190 188 254 252 188 186 192 190 254 252 190 188 264 262 1248 1243 616 611 265 263 1248 1243 264 262 645 640 990 985 643 638 647 642 990 985 645 640 1016 1011 1436 1430 523 519 1017 1012 1436 1430 1016 1011 649 644 1385 1379 1211 1206 651 646 1385 1379 649 644 1171 1166 1045 1040 1044 1039 1172 1167 1045 1040 1171 1166 954 949 1031 1026 1030 1025 956 951 1031 1026 954 949 355 353 1024 1019 1022 1017 357 355 1024 1019 355 353 1032 1027 488 484 490 486 1034 1029 488 484 1032 1027 1034 1029 486 482 488 484 1036 1031 486 482 1034 1029 1036 1031 484 480 486 482 482 479 484 480 1036 1031 1132 1127 480 478 1130 1125 306 304 308 306 1167 1162 1324 1318 345 343 347 345 598 593 600 595 1326 1320 1424 1418 1467 1461 1423 1417 1306 1300 1474 1468 1307 1301 666 661 668 663 870 865 1178 1173 1296 1290 1177 1172 1388 1382 844 839 843 838 221 219 219 217 969 964 1399 1393 1400 1394 1470 1464 769 764 964 959 1449 1443 1383 1377 1466 1460 1382 1376 487 483 1261 1256 1432 1426 1363 1357 976 971 1262 1257 1431 1425 1465 1459 1430 1424 422 420 424 422 426 424 563 559 418 416 420 418 679 674 681 676 1428 1422 1406 1400 33 33 35 35 470 468 840 835 838 833 673 668 675 670 1118 1113 1075 1070 1397 1391 1077 1072 1440 1434 1370 1364 1439 1433 304 302 306 304 1170 1165 721 716 719 714 766 761 824 819 1473 1467 822 817 170 168 516 512 518 514 1223 1218 1464 1458 1225 1220 1475 1469 489 485 947 942 1411 1405 1459 1453 1270 1264 1190 1185 1191 1186 1480 1473 1342 1336 1461 1455 1344 1338 1436 1430 1017 1012 1437 1431 1448 1442 243 241 245 243 1462 1456 369 367 1350 1344 1301 1295 1214 1209 658 653 1372 1366 1468 1462 1374 1368 1334 1328 1375 1369 1333 1327 934 929 1469 1463 936 931 1037 1032 1035 1030 1330 1324

+
+
+
+ + + + -934 14 244 -886 14 261 -872 14 328 -857 14 219 -812 14 253 -849 14 166 -722 14 114 -861 14 93 -791 14 -10 -883 14 27 -860 14 -85 -911 14 -26 -914 14 -143 -962 14 -49 -947 14 -144 -1002 14 -160 -966 14 -168 -966 14 -186 -963 12 -188 -969 12 -191 -962 1 -192 -991 12 -248 -982 1 -247 -964 12 -346 -956 1 -342 -903 12 -431 -899 1 -423 -840 12 -451 -844 1 -442 -815 12 -389 -823 1 -387 -842 12 -292 -850 1 -292 -901 12 -213 -910 1 -211 -890 12 -202 -901 1 -199 -895 12 -170 -903 1 -176 -915 12 -147 -919 1 -158 -946 12 -148 -940 1 -158 -962 12 -169 -953 1 -174 -951 1 -197 -43 12 1279 -92 14 1239 -90 12 1238 -103 14 1185 -100 12 1185 -94 14 1120 -91 12 1121 -91 14 1019 -89 12 1019 -94 14 947 -91 12 948 -106 14 869 -103 12 869 -138 14 790 -136 12 789 -168 14 741 -165 12 740 -165 14 703 -162 12 704 -125 14 673 -123 12 675 -76 14 663 -75 12 665 -3 14 657 -3 12 660 68 14 664 67 12 666 118 14 680 117 12 683 145 14 709 142 12 710 143 14 746 140 12 745 116 14 790 114 12 790 93 14 870 90 12 869 75 14 948 73 12 948 68 14 1019 66 12 1019 73 14 1120 70 12 1121 79 14 1186 76 12 1186 69 14 1240 26 10 1277 -42 10 1278 -89 10 1238 -99 10 1184 -91 10 1120 -88 10 1018 -91 10 948 -102 10 869 -135 10 789 -163 10 740 -161 10 705 -122 10 676 -75 10 666 -3 10 660 67 10 666 116 10 683 141 10 710 139 10 745 113 10 790 89 10 869 72 10 948 65 10 1018 70 10 1120 -73 10 145 -110 12 110 -109 10 109 -157 12 84 -155 10 82 -171 12 40 -169 10 39 -159 12 -10 -157 10 -11 -148 12 -64 -147 10 -64 -159 12 -134 -158 10 -133 -159 12 -184 -157 10 -182 -134 12 -228 -132 10 -226 -89 12 -241 -88 10 -239 -38 12 -220 -37 10 -218 12 12 -167 12 10 -166 60 12 -123 59 10 -122 107 12 -93 107 10 -92 180 12 -67 179 10 -67 209 12 -36 207 10 -36 223 12 18 221 10 18 200 12 59 198 10 58 145 12 91 144 10 89 74 12 102 73 10 100 18 12 150 18 10 148 -26 12 167 -25 10 165 -74 12 147 -111 14 111 -158 14 84 -172 14 40 -161 14 -11 -150 14 -64 -161 14 -135 -160 14 -184 -135 14 -230 -89 14 -243 -37 14 -221 13 14 -169 61 14 -125 109 14 -94 181 14 -69 211 14 -37 224 14 19 201 14 60 146 14 92 74 14 103 19 14 152 -26 14 168 -75 14 148 -2339 -50 519 -2272 -53 407 -2291 -40 388 -2066 -55 339 -2078 -41 316 -1821 -56 280 -1831 -43 253 -1573 -57 225 -1590 -44 198 -1516 -44 147 -1516 -16 147 -1525 -44 76 -1525 -16 77 -1642 -16 -264 -1616 6 -255 -1582 -16 -552 -1553 10 -540 -1485 -16 -696 -1466 11 -671 -1278 -16 -769 -1271 9 -739 -996 -16 -790 -992 7 -761 -677 -16 -843 -666 5 -819 -541 -16 -948 -519 5 -933 -494 -16 -1120 -465 7 -1115 -479 -16 -1230 -450 10 -1217 -391 -16 -1332 -377 11 -1302 -234 -16 -1336 -242 10 -1306 -31 -16 -1208 -45 7 -1183 186 -16 -1110 171 9 -1083 370 -16 -985 358 6 -959 2614 107 7409 2584 110 7203 3660 14 6296 3537 14 6201 4380 14 4762 4294 14 4753 4612 12 3215 4508 14 3244 4371 11 1758 4240 14 1777 3811 14 635 3669 14 1694 2902 14 1083 2792 21 2049 2510 14 1351 2371 14 1495 2343 14 1297 2089 14 1445 2256 14 1235 2053 14 1147 2220 14 1116 2083 14 947 2233 14 1008 2208 14 812 2322 14 938 2524 14 857 2390 14 988 2592 14 1088 2417 14 1118 2401 14 1239 2403 1 1110 2392 1 1225 -1496 -58 173 -1496 -58 82 -1642 -45 -264 -1582 -45 -552 -1485 -45 -696 -1278 -45 -769 -996 -45 -790 -677 -45 -843 -541 -45 -948 -494 -45 -1120 -479 -45 -1230 -391 -45 -1332 -234 -45 -1336 -31 -45 -1208 186 -45 -1110 370 -45 -985 -334 18 2837 -114 14 2804 -113 10 2808 43 14 2865 42 9 2869 123 14 3005 122 9 3007 290 14 3060 288 10 3062 428 14 3218 425 10 3219 463 14 3419 459 10 3418 403 14 3638 400 10 3636 188 14 3827 187 10 3823 -24 14 3856 -24 10 3852 -246 23 3819 -245 19 3816 -423 41 3658 -420 37 3655 -488 43 3453 -484 38 3452 -461 37 3259 -457 32 3260 -541 39 3115 -536 34 3116 -517 34 2953 -512 29 2956 -1006 14 -19 -1134 14 -34 -1121 14 -154 -1325 14 -143 -1092 14 -347 -1288 14 -566 -1025 14 -498 -969 14 -694 -824 14 -654 -757 14 -747 -682 14 -720 -632 14 -750 -576 14 -805 -589 14 -736 -526 14 -773 -576 14 -694 -496 14 -670 -598 14 -646 -517 14 -517 -644 14 -620 -690 14 -476 -747 14 -535 -839 14 -455 -916 14 -488 -906 14 -435 -968 14 -348 2347 1 1276 3161 14 338 2340 14 60 2517 14 -165 2246 14 -675 2333 6 -761 1798 14 -879 1895 9 -962 1574 14 -1033 1659 9 -1097 1383 14 -1063 1396 10 -1138 1213 14 -1021 1165 9 -1081 930 6 -940 1153 -16 -1109 920 -16 -966 1153 -45 -1109 920 -45 -966 1165 -58 -1081 931 -58 -937 -1223 10 1703 -1156 10 1601 -1216 14 1706 -1147 14 1601 -906 14 1666 -1155 14 1499 -680 14 1185 -1147 14 1258 -864 14 779 -1364 14 868 -1216 14 664 -1414 14 730 -1356 14 447 -1596 15 595 -1787 16 340 -1756 16 541 -2036 17 394 -1915 17 600 -2187 19 456 -2239 20 545 -2336 20 524 -2353 43 716 -2381 -8 507 -2397 18 719 -2381 -37 506 -2397 -10 718 -2353 -27 713 -2114 -23 980 803 1 488 797 12 496 778 12 438 795 14 499 775 14 439 730 14 553 680 14 560 684 14 600 629 14 630 661 14 631 657 14 674 663 12 632 659 12 673 664 1 671 680 1 688 703 1 685 677 12 693 707 12 689 708 14 692 730 14 657 766 14 709 783 14 622 874 14 586 782 14 571 864 14 499 -429 12 902 -433 14 901 -405 12 856 -407 14 853 -360 12 832 -361 14 829 -318 12 843 -316 14 840 -308 12 869 -305 14 865 -217 12 876 -215 14 871 -147 12 934 -142 14 933 -137 12 1010 -133 14 1011 -197 12 1057 -194 14 1060 -288 12 1051 -288 14 1054 -357 12 995 -361 14 998 -360 12 954 -364 14 959 -371 12 958 -371 14 962 -987 0 135 -1010 12 80 -1003 0 79 -1017 12 17 -1010 0 20 -1003 12 -17 -997 0 -11 -961 12 -45 -960 0 -36 -913 12 -23 -917 0 -14 -886 12 29 -893 0 31 -864 12 94 -871 0 95 -852 12 166 -858 0 167 -861 12 218 -866 0 219 -887 12 257 -889 0 251 -933 12 241 -929 0 236 -967 12 193 -961 0 191 -994 12 138 -1014 14 81 -1021 14 16 -970 14 196 -997 14 140 -3199 254 4041 -3227 275 4028 -3577 327 4252 -3581 342 4222 -4660 572 4037 -4663 611 4033 -5169 712 4121 -5174 751 4113 -5587 853 4262 -5586 887 4282 -6182 996 4298 -6112 999 4388 -6246 1030 4480 -5803 988 4746 -6252 1052 4667 -6146 1058 4865 -6381 1068 4642 -6251 1070 4888 -6412 1031 4648 -6272 1038 4912 -6405 989 4658 -6267 997 4922 -6369 965 4668 -6239 971 4912 -3199 254 4041 -3303 241 3618 -3227 275 4028 -3328 262 3637 -3227 313 4028 -3328 299 3637 -3196 333 4043 -3306 326 3620 -3180 327 3657 -3949 355 2566 -3054 319 2831 -3865 349 2049 -2902 235 2209 -3305 263 1792 -3008 228 1933 -2618 157 1851 -2521 157 2039 -2411 136 2006 -2503 141 2047 -2412 124 2018 -2 14 465 73 14 465 159 14 535 213 14 419 248 14 652 333 14 333 517 14 517 419 14 213 651 14 332 465 14 73 722 14 114 465 14 -73 722 14 -114 419 14 -213 651 14 -332 333 14 -333 517 14 -517 213 14 -419 -2283 115 2166 -2321 113 2068 -2263 126 2172 -2306 124 2064 -1977 72 2078 -2253 102 1900 -2186 76 1701 -2445 108 1510 -3158 213 1490 -3142 195 1416 -3927 317 1307 -3854 286 1232 -4425 344 1250 -3847 250 1202 -4412 303 1225 -3843 214 1203 -4408 265 1226 -3846 202 1235 -4416 255 1252 4619 -45 3204 4379 -16 1737 4379 -45 1737 3884 -16 490 3884 -45 490 3196 -16 176 3196 -45 176 2605 -16 -259 2605 -45 -259 2344 -16 -784 2344 -45 -784 1914 -16 -986 1914 -45 -986 1669 -16 -1126 1669 -45 -1126 1395 -16 -1169 1395 -45 -1169 -1485 14 1818 -1345 11 1781 -1486 19 1826 -1341 15 1787 -1232 22 1928 -998 15 1828 -592 14 1789 -382 14 1292 -268 14 1181 -153 14 1333 -43 14 1281 27 12 1277 66 10 1238 -720 78 3432 -593 105 3769 -848 181 3935 -602 155 4062 -867 248 4346 -280 130 4239 -296 201 4761 272 72 4767 -313 275 5282 219 197 5623 -288 299 6317 751 113 5964 670 163 6776 2288 93 6553 588 177 7588 556 199 7985 523 195 8082 -2078 -13 316 -1831 -14 254 -2067 11 340 -1821 11 281 -1538 14 296 -1402 14 219 -1082 14 465 -1130 14 140 -1052 14 270 -797 400 7011 -794 386 6096 -1115 446 6638 -1189 352 5776 -1526 409 6375 -1583 322 5457 -1937 326 6112 -2213 292 5419 -2390 317 5746 -2843 353 5380 -3019 440 5824 -3207 455 5561 -3310 483 5623 -3210 451 5560 -3312 479 5621 -1614 -58 -254 -1554 -58 -540 -1466 -58 -672 -1271 -58 -739 -992 -58 -760 -664 -58 -815 -515 -58 -931 -463 -58 -1114 1872 14 398 1608 14 -393 1280 14 -264 1196 14 -463 1000 14 -298 946 14 -399 882 14 -331 856 14 -415 773 14 -408 828 14 -433 798 14 -439 799 12 -443 774 12 -475 802 1 -453 782 1 -479 -651 14 -332 -419 14 -213 -722 14 -114 -465 14 -73 -465 14 73 -419 14 213 -333 14 333 3879 8 516 3188 7 201 2595 8 -233 -1259 460 7177 -1079 414 7435 -1351 464 7193 -1497 440 7470 -1498 472 7202 -1972 389 7542 -2016 412 7333 -2683 313 7651 -2364 377 6862 -2973 433 6711 -3037 454 6570 -3139 468 6664 -3192 487 6515 -3215 485 6637 -3309 503 6638 -3304 486 6646 -3344 492 6673 1353 14 -816 919 14 -815 672 14 -816 630 6 -887 455 14 -873 313 12 -938 273 9 -985 257 11 -971 242 10 -996 254 9 -970 240 8 -994 235 0 -990 207 0 -1002 806 14 -541 814 12 -534 802 12 -538 787 1 -531 795 1 -542 778 13 -533 755 1 -540 755 12 -535 709 12 -571 754 14 -532 707 14 -569 729 14 -514 690 14 -488 770 14 -473 636 14 -636 408 14 -801 332 14 -651 265 14 -845 114 14 -722 184 14 -837 98 14 -865 138 14 -886 113 14 -921 116 12 -923 104 12 -948 120 0 -927 110 0 -947 194 12 893 128 1 949 121 12 946 116 1 1018 108 12 1021 167 1 1066 163 12 1073 251 1 1065 252 12 1071 319 1 1015 326 12 1018 331 1 946 339 12 944 280 1 899 284 12 893 196 1 900 -320 14 -816 -321 12 -818 -247 14 -867 -250 12 -868 -232 14 -935 -236 12 -934 -289 14 -979 -290 12 -975 -377 14 -971 -376 12 -968 -452 14 -917 -449 12 -916 -466 14 -850 -462 12 -852 -410 14 -804 -409 12 -808 -1297 448 7053 -1302 463 7083 -1308 448 7080 -1352 464 7112 -1351 449 7108 -1402 466 7124 -1401 451 7118 -1438 469 7111 -1429 453 7110 -1423 468 7071 -1419 452 7079 -1380 466 7042 -1376 450 7050 -1327 464 7031 -1325 449 7040 -1295 463 7050 -680 12 -719 -632 12 -747 -591 12 -733 -579 12 -694 -601 12 -648 -644 12 -623 -686 12 -636 -688 14 -634 -698 12 -677 -702 14 -677 -1571 478 7120 -1503 474 6996 -1375 462 6929 -1249 462 6969 -1180 458 7094 -481 14 -909 -422 14 -989 -349 14 -1012 -277 14 -1015 -229 14 -971 -201 14 -1039 -179 14 -980 -123 14 -1005 -123 12 -1002 -59 12 -998 -122 1 -996 -62 1 -992 -693 1 -675 -673 1 -717 -633 1 -739 -596 1 -729 -584 1 -693 -604 1 -652 -644 1 -630 -681 1 -639 -324 1 -825 -407 1 -818 -456 1 -854 -442 1 -913 -373 1 -961 -290 1 -968 -241 1 -932 -255 1 -872 -672 1 747 -685 12 719 -680 1 723 -663 12 702 -660 1 708 -622 12 705 -625 1 710 -590 12 724 -595 1 729 -582 12 754 -588 1 752 -603 12 774 -607 1 767 -646 12 770 -642 1 765 -679 12 750 229 14 744 169 14 811 144 14 871 118 14 944 104 14 1022 193 14 890 161 14 1076 253 14 1074 329 14 1020 342 14 943 286 14 890 -777 14 423 -651 14 332 -668 14 522 -517 14 517 -636 14 636 -519 14 685 -587 14 722 -445 14 779 -578 14 755 -523 14 840 -601 14 777 -641 14 855 -646 14 774 -683 14 751 -3581 380 4222 -4628 655 4070 -5160 789 4140 -5055 798 4226 -5568 902 4376 -4692 758 4561 -4600 758 5501 -4914 845 5759 -4197 686 6414 -5261 876 6044 -817 14 447 -743 14 505 -704 14 588 -722 14 651 -692 14 684 -757 14 757 -689 14 717 550 14 700 459 14 706 476 14 764 371 14 757 399 14 807 258 14 837 -664 14 699 -622 14 701 880 14 82 882 14 127 844 14 216 903 14 150 942 14 290 935 14 138 990 14 131 952 14 99 950 14 52 949 12 98 948 12 54 940 1 61 924 1 45 248 0 -969 261 12 -925 254 0 -925 245 12 -887 238 0 -891 216 12 -876 213 0 -883 182 12 -883 181 0 -889 140 12 -889 145 0 -892 835 1 -467 829 1 -500 845 12 -462 837 12 -501 840 14 -502 816 14 -536 884 14 -562 820 14 -578 818 14 -667 796 14 -634 749 14 -669 794 12 -632 748 12 -666 747 1 -662 708 1 -660 -802 32 2365 -93 14 2080 -167 14 1474 120 14 1633 -59 14 1387 97 14 1383 28 14 1279 66 12 1238 76 10 1186 824 1 -448 827 12 -436 849 14 -460 887 14 -461 1089 14 -620 1015 14 4 1281 14 228 1020 14 272 1028 14 386 964 14 354 977 14 469 931 14 435 862 12 495 859 1 486 1089 14 695 961 14 880 700 14 852 723 14 1053 571 14 855 533 14 934 530 12 932 455 12 972 524 1 926 456 1 964 -332 14 -651 -415 14 -740 -297 14 -764 -182 14 -830 -164 14 -899 -199 14 -934 -196 12 -934 -177 12 -977 -190 1 -935 -174 1 -972 -1284 231 3807 -1328 247 3906 -1300 244 3779 -1352 263 3901 -1557 250 3576 -1558 293 4088 -1902 268 3793 -2042 288 4005 -2246 229 3498 -2527 267 3923 -2430 248 3440 -2601 264 3298 -2429 242 3435 -2597 258 3296 -4452 372 1326 -4724 392 1428 -4760 394 1552 -4798 393 1372 -4849 397 1496 -4817 356 1347 -4874 359 1486 -4813 316 1348 -4870 320 1487 -4789 297 1373 -4842 300 1498 -58 14 -1001 -56 14 -1034 20 14 -989 43 14 -1063 105 14 -1027 168 11 -1037 219 10 -1024 210 11 -1011 -1432 305 4480 -1895 300 4644 -2358 273 4807 -2848 328 4388 -2975 349 5025 -3169 388 4853 -3335 453 5197 -3429 468 5092 -3429 465 5095 -3562 493 5030 555 14 3951 786 14 3549 730 19 4391 1228 22 3690 950 17 4547 1686 69 4891 951 18 4793 651 31 4983 -1807 251 8559 -1767 250 8451 -348 1 937 -349 1 991 -284 1 1045 -200 1 1051 -146 1 1006 -154 1 936 -333 14 -333 -213 14 -419 -73 14 -465 73 14 -465 -2497 156 2240 -2406 145 2289 -2513 173 2248 -2402 159 2303 -2527 197 2495 -2024 105 2408 -2319 193 2860 -1631 98 2948 -2148 176 3001 -2040 176 3177 -2152 172 3004 -2045 172 3176 -2318 128 2258 -2301 140 2268 -1845 67 2309 -1636 17 1785 -1630 12 1778 -1707 10 1596 -1716 14 1595 -1633 14 1500 -1809 29 1450 -1543 14 1294 -1891 39 1206 -1516 15 1008 -1766 26 933 -1578 17 843 -1670 19 822 -1596 5 822 -1665 6 805 -4519 380 1991 -4664 381 1926 -4001 350 2664 -4693 348 1931 -4024 317 2693 -4690 309 1932 -4023 279 2693 -4000 260 2663 182 14 1243 388 14 1410 698 14 1726 596 14 2296 237 14 2542 607 14 2522 -962 14 334 -882 14 450 -818 12 452 -747 12 508 -817 1 460 -751 1 512 -892 14 -168 -857 14 -200 -839 14 -290 -812 14 -390 4619 -16 3204 4386 -16 4762 4386 -45 4762 3660 -45 6296 3649 -58 6283 824 14 -273 895 14 -276 938 14 -267 935 12 -264 966 12 -203 929 1 -257 956 1 -201 181 14 -880 217 14 -873 247 14 -885 298 14 -892 264 14 -925 -2291 -11 389 -2272 15 411 -720 303 4959 -1127 314 4636 -1121 285 4408 -1265 280 4325 -1126 271 4386 -1246 263 4316 4610 -58 3214 4372 -58 1757 3879 -58 517 3188 -58 203 2595 -58 -233 2332 -58 -759 -407 1 939 -419 1 903 -400 1 862 -360 1 840 -323 1 849 -311 1 885 -304 1 877 -2003 51 1388 -2112 51 1347 -2025 42 1179 -2071 23 1171 -2156 23 984 -2156 -6 983 936 1 2529 1087 2 2520 931 14 2548 1101 14 2538 1039 14 2684 1251 17 2612 1813 40 3202 1818 19 2187 2999 96 3901 3904 14 3515 -213 14 419 -284 14 558 -2462 99 1440 -2152 35 1330 -2071 -6 1171 712 14 -718 702 14 -667 686 14 -623 689 12 -623 714 1 -574 809 1 -527 816 12 -578 808 1 -579 -114 14 -722 -71 14 -856 -102 14 -896 -45 14 -923 -102 12 -898 -47 12 -925 -52 1 -929 -36 1 -966 -3901 457 7516 -5325 787 6098 -3921 475 7540 -5350 810 6115 -3921 510 7540 -5350 850 6114 -3901 539 7516 -5326 881 6097 558 1 856 567 12 855 548 14 785 656 14 787 610 14 722 676 14 695 -4628 681 4190 -3838 524 4546 -4331 699 4875 -3903 580 4884 -4038 622 5073 -3721 538 5045 -3837 575 5152 -3835 571 5154 -3911 596 5286 -1026 14 636 -859 14 596 -786 14 653 -856 12 594 -785 12 649 -787 1 641 -731 1 639 -3221 470 6647 -3144 453 6676 -3106 459 6718 -3117 446 6717 -3149 465 6762 -3157 452 6745 -3248 485 6756 -3240 468 6743 -1283 14 -668 -1387 14 -631 -1465 14 -558 -1548 14 -230 -963 14 461 -899 14 513 -895 12 513 -851 1 590 925 12 39 926 14 36 945 14 -74 976 14 -109 1034 14 -157 969 14 -204 101 14 -948 114 14 -981 145 13 -1003 178 12 -1014 209 9 -1009 -1164 10 1503 -1243 10 1438 -1237 14 1431 -1371 14 1415 -1508 14 1435 -1627 10 1504 714 14 594 713 11 597 685 12 602 688 1 606 668 1 636 26 14 -841 28 14 -910 -28 14 -967 -31 12 -967 1155 2 2465 1172 15 2469 1288 16 2352 1070 14 2207 1436 14 1197 -513 14 957 -417 14 946 -414 12 944 -371 1 949 -3812 543 7433 -3179 465 6873 -3336 498 6840 -3328 502 6725 -3317 485 6714 -1793 161 8563 -1807 178 8588 -1807 213 8590 -797 14 -582 -995 14 -247 39 43 4248 219 63 4458 378 21 4257 424 27 4504 524 25 4501 440 15 4522 518 13 4521 787 14 2666 774 14 2497 717 14 2409 792 1 2486 738 1 2416 -853 67 2995 -1068 178 3401 -1144 232 3857 -1031 242 4074 -1156 222 3877 -1051 230 4076 -86 14 -1122 -208 14 -1199 -325 14 -1230 -386 14 -1159 -560 31 2670 -337 23 2833 170 -58 -1083 -46 -58 -1181 -242 -58 -1307 -378 -58 -1304 -451 -58 -1218 -6336 936 4446 -6366 958 4425 -6374 998 4415 -6351 1037 4422 117 12 -979 121 0 -974 -2539 154 2139 -2560 172 2136 -2660 251 2816 -2510 220 2784 -2656 245 2821 -2507 215 2790 -3135 346 4127 -3495 418 4343 -3577 410 4247 -3227 313 4028 -333 14 787 -246 14 826 733 14 617 731 12 618 712 1 599 723 1 656 834 14 -149 897 14 46 898 12 48 904 1 55 -3148 427 5445 -3145 430 5445 -3152 419 5316 -3230 430 5229 -3232 427 5230 -3337 450 5198 -1531 16 819 -1545 15 759 -1611 15 715 -1690 16 693 -1687 4 714 -1729 5 729 942 1 95 933 12 136 928 1 125 904 12 147 908 1 135 884 12 126 892 1 119 899 14 -104 902 12 -107 944 12 -78 943 1 -87 965 1 -113 -3449 526 6731 -3385 521 6567 -3354 510 6668 807 14 353 810 12 355 785 1 435 -6195 957 4278 -6188 917 4289 -6164 898 4321 -3618 574 6016 -3306 511 5974 -3528 534 5677 -3424 506 5607 -3425 502 5605 -5580 814 4272 -5147 698 4159 -4621 562 4081 -3142 166 1388 -2467 74 1413 -3140 132 1388 -2466 43 1413 -3144 119 1412 -2476 30 1429 631 -16 -914 631 -45 -914 630 -58 -884 357 -58 -957 -2205 377 6514 1895 -58 -962 1659 -58 -1097 1396 -58 -1138 -4657 289 1928 -1404 14 75 -1500 4 78 898 1 -264 896 12 -272 871 14 -236 475 1 778 407 1 816 476 12 768 402 12 810 360 14 885 -3932 628 5856 -3677 566 5685 -3805 590 5617 -3676 562 5683 -3803 586 5615 -4116 661 5564 -3902 606 5487 -3914 600 5285 -3899 601 5487 -2112 44 987 -2012 43 969 614 29 4805 713 26 4801 782 22 4687 638 24 4584 625 12 4598 1101 2 2395 957 1 2351 1115 14 2383 959 14 2332 784 14 2182 -3700 498 4737 -3438 438 4709 -3629 443 4362 960 12 354 927 12 433 950 1 353 920 1 430 -2022 189 3343 -2027 185 3340 876 14 -165 880 12 -166 875 12 -236 888 1 -167 882 1 -234 3235 25 4915 -73 14 465 973 12 -110 932 1 300 939 12 293 873 14 293 373 1 886 364 12 885 383 14 956 -3039 439 6843 -1329 265 4120 -1348 282 4122 -725 12 648 -716 1 585 -2735 270 2933 -2713 274 3111 -2708 267 3112 -1620 3 729 -1565 3 768 -1555 3 806 -1030 264 4291 -1053 253 4287 -420 14 -1055 -2152 5 1330 -2030 -23 1167 -972 14 -189 775 1 -512 767 12 -512 763 14 -512 -885 14 -202 -896 14 -214 417 30 4599 493 31 4709 512 18 4708 619 16 4785 728 12 657 -163 12 -901 -104 1 -905 -1487 3 170 -1590 -15 199 1199 14 477 694 1 -624 705 11 -664 537 1 794 545 12 788 890 1 85 882 12 83 -872 1 462 -879 12 454 455 14 977 386 12 954 -1567 5 224 774 14 -531 463 14 1176 876 1 302 874 12 296 -3077 332 4007 -4142 657 5264 -3720 535 5048 -3562 496 5027 -1726 14 1695 -1716 10 1693 -2248 223 3492 -2101 203 3456 -2097 208 3461 -2612 368 6169 -1909 26 764 -1742 20 775 -1720 7 767 -1746 18 717 793 14 2342 806 1 2360 1770 14 925 -127 14 -1045 1316 14 -7 720 24 4698 699 12 4707 146 11 -1001 148 0 -995 178 10 -1012 178 0 -1005 -708 12 588 -154 14 871 727 1 620 788 1 -629 -3528 530 5675 -2266 40 708 -2730 264 2936 438 17 4599 815 1 358 394 1 947 -887 1 516 909 1 -112 -161 1 -907 -2116 -12 1350 -2320 188 2864 -3155 416 5316 -332 14 651 -5570 798 4306 -2789 290 3381 697 14 4785 3660 -16 6296 -560 31 2670 -1373 10 1421 -1506 10 1441 2380 1 997 2321 1 953 2261 1 1003 2244 1 1119 2280 1 1231 -220 1 883 4376 -58 4761 + + + + + + + + + + 0.7344970703125 0.36568509615384615 0.7420654296875 0.36568509615384615 0.7344970703125 0.38431490384615385 0.7498779296875 0.36568509615384615 0.7423095703125 0.38431490384615385 0.7423095703125 0.36568509615384615 0.7344970703125 0.34645432692307687 0.7420654296875 0.34645432692307687 0.7344970703125 0.3650841346153846 0.7423095703125 0.34645432692307687 0.7423095703125 0.3650841346153846 0.7498779296875 0.34645432692307687 0.3360595703125 0.8849158653846154 0.3436279296875 0.8849158653846154 0.3360595703125 0.9227764423076923 0.3436279296875 0.8464543269230769 0.3360595703125 0.8843149038461539 0.3360595703125 0.8464543269230769 0.3438720703125 0.8079927884615384 0.3438720703125 0.8458533653846154 0.3514404296875 0.8079927884615384 0.3592529296875 0.8079927884615384 0.3516845703125 0.8079927884615384 0.3516845703125 0.8458533653846154 0.7264404296875 0.3272235576923077 0.7188720703125 0.3272235576923077 0.7188720703125 0.3458533653846154 0.7462158203125 0.10606971153846156 0.7462158203125 0.11508413461538458 0.7479248046875 0.10606971153846156 0.3311767578125 0.9041466346153846 0.3311767578125 0.9227764423076923 0.3319091796875 0.9041466346153846 0.7266845703125 0.3458533653846154 0.7342529296875 0.3272235576923077 0.7266845703125 0.3272235576923077 0.7344970703125 0.3272235576923077 0.7344970703125 0.3458533653846154 0.7420654296875 0.3272235576923077 0.3594970703125 0.8079927884615384 0.3594970703125 0.8458533653846154 0.3670654296875 0.8079927884615384 0.3673095703125 0.8458533653846154 0.3748779296875 0.8079927884615384 0.3673095703125 0.8079927884615384 0.7498779296875 0.3272235576923077 0.7423095703125 0.3458533653846154 0.7423095703125 0.3272235576923077 0.7188720703125 0.32662259615384615 0.7188720703125 0.30799278846153844 0.7264404296875 0.30799278846153844 0.3438720703125 0.76953125 0.3514404296875 0.76953125 0.3438720703125 0.8073918269230769 0.3592529296875 0.76953125 0.3516845703125 0.76953125 0.3516845703125 0.8073918269230769 0.3594970703125 0.76953125 0.3748779296875 0.76953125 0.3594970703125 0.8073918269230769 0.3826904296875 0.8079927884615384 0.3751220703125 0.8079927884615384 0.3751220703125 0.8458533653846154 0.7342529296875 0.30799278846153844 0.7266845703125 0.30799278846153844 0.7266845703125 0.32662259615384615 0.3907470703125 0.5387620192307692 0.3983154296875 0.5387620192307692 0.7420654296875 0.30799278846153844 0.7344970703125 0.32662259615384615 0.7344970703125 0.30799278846153844 0.3829345703125 0.8458533653846154 0.3905029296875 0.8079927884615384 0.3829345703125 0.8079927884615384 0.3907470703125 0.8079927884615384 0.4061279296875 0.8079927884615384 0.3907470703125 0.8458533653846154 0.3826904296875 0.76953125 0.3751220703125 0.76953125 0.3751220703125 0.8073918269230769 0.7498779296875 0.30799278846153844 0.7423095703125 0.30799278846153844 0.7423095703125 0.32662259615384615 0.9844970703125 0.76953125 0.9920654296875 0.76953125 0.3905029296875 0.76953125 0.3829345703125 0.8073918269230769 0.3829345703125 0.76953125 0.7576904296875 0.36568509615384615 0.7501220703125 0.36568509615384615 0.7501220703125 0.38431490384615385 0.7655029296875 0.36568509615384615 0.7579345703125 0.38431490384615385 0.7579345703125 0.36568509615384615 0.7733154296875 0.36568509615384615 0.7657470703125 0.36568509615384615 0.7657470703125 0.38431490384615385 0.7811279296875 0.36568509615384615 0.7735595703125 0.38431490384615385 0.7735595703125 0.36568509615384615 0.3358154296875 0.9041466346153846 0.3321533203125 0.9041466346153846 0.3321533203125 0.9227764423076923 0.7462158203125 0.09645432692307687 0.7462158203125 0.10546875 0.7498779296875 0.09645432692307687 0.7225341796875 0.08683894230769229 0.7188720703125 0.08683894230769229 0.7188720703125 0.09585336538461542 0.7227783203125 0.08683894230769229 0.7264404296875 0.08683894230769229 0.7227783203125 0.09585336538461542 0.3321533203125 0.9035456730769231 0.3358154296875 0.8849158653846154 0.3321533203125 0.8849158653846154 0.3358154296875 0.8656850961538461 0.3321533203125 0.8843149038461539 0.3321533203125 0.8656850961538461 0.3321533203125 0.8464543269230769 0.3358154296875 0.8464543269230769 0.3321533203125 0.8650841346153846 0.7501220703125 0.34645432692307687 0.7501220703125 0.3650841346153846 0.7576904296875 0.34645432692307687 0.7579345703125 0.34645432692307687 0.7655029296875 0.34645432692307687 0.7579345703125 0.3650841346153846 0.7657470703125 0.34645432692307687 0.7657470703125 0.3650841346153846 0.7733154296875 0.34645432692307687 0.7735595703125 0.34645432692307687 0.7811279296875 0.34645432692307687 0.7735595703125 0.3650841346153846 0.7501220703125 0.3272235576923077 0.7501220703125 0.3458533653846154 0.7576904296875 0.3272235576923077 0.7655029296875 0.3272235576923077 0.7579345703125 0.3272235576923077 0.7579345703125 0.3458533653846154 0.7733154296875 0.3272235576923077 0.7657470703125 0.3272235576923077 0.7657470703125 0.3458533653846154 0.7735595703125 0.3272235576923077 0.7735595703125 0.3458533653846154 0.7811279296875 0.3272235576923077 0.3907470703125 0.76953125 0.3983154296875 0.76953125 0.3907470703125 0.8073918269230769 0.4063720703125 0.8079927884615384 0.4063720703125 0.8458533653846154 0.4217529296875 0.8079927884615384 0.4061279296875 0.76953125 0.3985595703125 0.76953125 0.3985595703125 0.8073918269230769 0.7576904296875 0.30799278846153844 0.7501220703125 0.32662259615384615 0.7501220703125 0.30799278846153844 0.7655029296875 0.30799278846153844 0.7579345703125 0.30799278846153844 0.7579345703125 0.32662259615384615 0.7733154296875 0.30799278846153844 0.7657470703125 0.32662259615384615 0.7657470703125 0.30799278846153844 0.7811279296875 0.30799278846153844 0.7735595703125 0.32662259615384615 0.7735595703125 0.30799278846153844 0.7889404296875 0.36568509615384615 0.7813720703125 0.36568509615384615 0.7813720703125 0.38431490384615385 0.7891845703125 0.36568509615384615 0.7891845703125 0.38431490384615385 0.7967529296875 0.36568509615384615 0.8006591796875 0.36568509615384615 0.7969970703125 0.36568509615384615 0.7969970703125 0.38431490384615385 0.7266845703125 0.08683894230769229 0.7266845703125 0.09585336538461542 0.7303466796875 0.08683894230769229 0.7342529296875 0.08683894230769229 0.7305908203125 0.08683894230769229 0.7305908203125 0.09585336538461542 0.7344970703125 0.08683894230769229 0.7344970703125 0.09585336538461542 0.7381591796875 0.08683894230769229 0.3045654296875 0.5387620192307692 0.2969970703125 0.5387620192307692 0.7384033203125 0.08683894230769229 0.7384033203125 0.09585336538461542 0.7420654296875 0.08683894230769229 0.8009033203125 0.36568509615384615 0.8045654296875 0.36568509615384615 0.8009033203125 0.38431490384615385 0.8123779296875 0.36568509615384615 0.8048095703125 0.38431490384615385 0.8048095703125 0.36568509615384615 0.7889404296875 0.34645432692307687 0.7813720703125 0.34645432692307687 0.7813720703125 0.3650841346153846 0.7967529296875 0.34645432692307687 0.7891845703125 0.3650841346153846 0.7891845703125 0.34645432692307687 0.7969970703125 0.34645432692307687 0.8045654296875 0.34645432692307687 0.7969970703125 0.3650841346153846 0.8123779296875 0.34645432692307687 0.8048095703125 0.3650841346153846 0.8048095703125 0.34645432692307687 0.7813720703125 0.3272235576923077 0.7889404296875 0.3272235576923077 0.7813720703125 0.3458533653846154 0.7928466796875 0.3272235576923077 0.7891845703125 0.3272235576923077 0.7891845703125 0.3458533653846154 0.7930908203125 0.3272235576923077 0.7967529296875 0.3272235576923077 0.7930908203125 0.3458533653846154 0.8006591796875 0.3272235576923077 0.7969970703125 0.3458533653846154 0.7969970703125 0.3272235576923077 0.7423095703125 0.08683894230769229 0.7459716796875 0.08683894230769229 0.7423095703125 0.09585336538461542 0.7498779296875 0.08683894230769229 0.7462158203125 0.08683894230769229 0.7462158203125 0.09585336538461542 0.7188720703125 0.07722355769230771 0.7188720703125 0.08623798076923073 0.7225341796875 0.07722355769230771 0.7264404296875 0.07722355769230771 0.7227783203125 0.08623798076923073 0.7227783203125 0.07722355769230771 0.7266845703125 0.07722355769230771 0.7303466796875 0.07722355769230771 0.7266845703125 0.08623798076923073 0.7342529296875 0.07722355769230771 0.7305908203125 0.08623798076923073 0.7305908203125 0.07722355769230771 0.7381591796875 0.07722355769230771 0.7344970703125 0.07722355769230771 0.7344970703125 0.08623798076923073 0.7384033203125 0.07722355769230771 0.7384033203125 0.08623798076923073 0.7420654296875 0.07722355769230771 0.7498779296875 0.10606971153846156 0.7481689453125 0.10606971153846156 0.7481689453125 0.11508413461538458 0.7423095703125 0.08623798076923073 0.7423095703125 0.07722355769230771 0.7440185546875 0.07722355769230771 0.7498779296875 0.07722355769230771 0.7462158203125 0.07722355769230771 0.7462158203125 0.08623798076923073 0.8009033203125 0.3272235576923077 0.8009033203125 0.3458533653846154 0.8045654296875 0.3272235576923077 0.9217529296875 0.4618389423076923 0.9141845703125 0.4618389423076923 0.8084716796875 0.3272235576923077 0.8048095703125 0.3272235576923077 0.8048095703125 0.3458533653846154 0.8087158203125 0.3272235576923077 0.8087158203125 0.3458533653846154 0.8123779296875 0.3272235576923077 0.7889404296875 0.30799278846153844 0.7813720703125 0.30799278846153844 0.7813720703125 0.32662259615384615 0.7891845703125 0.30799278846153844 0.7891845703125 0.32662259615384615 0.7967529296875 0.30799278846153844 0.7969970703125 0.30799278846153844 0.8045654296875 0.30799278846153844 0.7969970703125 0.32662259615384615 0.8123779296875 0.30799278846153844 0.8048095703125 0.32662259615384615 0.8048095703125 0.30799278846153844 0.8126220703125 0.36568509615384615 0.8201904296875 0.36568509615384615 0.8126220703125 0.38431490384615385 0.8240966796875 0.36568509615384615 0.8204345703125 0.38431490384615385 0.8204345703125 0.36568509615384615 0.8243408203125 0.36568509615384615 0.8280029296875 0.36568509615384615 0.8243408203125 0.38431490384615385 0.8319091796875 0.36568509615384615 0.8282470703125 0.38431490384615385 0.8282470703125 0.36568509615384615 0.7537841796875 0.14453125 0.7501220703125 0.14453125 0.7501220703125 0.15354567307692313 0.7576904296875 0.14453125 0.7540283203125 0.15354567307692313 0.7540283203125 0.14453125 0.7459716796875 0.07722355769230771 0.7442626953125 0.07722355769230771 0.7442626953125 0.08623798076923073 0.7579345703125 0.14453125 0.7579345703125 0.15354567307692313 0.7596435546875 0.14453125 0.7655029296875 0.14453125 0.7618408203125 0.14453125 0.7618408203125 0.15354567307692313 0.7657470703125 0.14453125 0.7657470703125 0.15354567307692313 0.7694091796875 0.14453125 0.7615966796875 0.14453125 0.7598876953125 0.14453125 0.7598876953125 0.15354567307692313 0.3475341796875 0.01472355769230771 0.3458251953125 0.018930288461538436 0.3458251953125 0.01472355769230771 0.7696533203125 0.14453125 0.7713623046875 0.14453125 0.7696533203125 0.15354567307692313 0.7772216796875 0.14453125 0.7735595703125 0.15354567307692313 0.7735595703125 0.14453125 0.7774658203125 0.14453125 0.7811279296875 0.14453125 0.7774658203125 0.15354567307692313 0.7459716796875 0.10126201923076927 0.7452392578125 0.10126201923076927 0.7452392578125 0.10546875 0.7716064453125 0.15354567307692313 0.7716064453125 0.14453125 0.7733154296875 0.14453125 0.8280029296875 0.34645432692307687 0.8204345703125 0.34645432692307687 0.8360595703125 0.34645432692307687 0.8436279296875 0.34645432692307687 0.8280029296875 0.3272235576923077 0.8204345703125 0.3272235576923077 0.1251220703125 0.9233774038461539 0.3319091796875 0.8849158653846154 0.3311767578125 0.8849158653846154 0.3311767578125 0.9035456730769231 0.8282470703125 0.30799278846153844 0.8358154296875 0.30799278846153844 0.3299560546875 0.8656850961538461 0.3292236328125 0.8843149038461539 0.3292236328125 0.8656850961538461 0.7501220703125 0.14393028846153844 0.7501220703125 0.13491586538461542 0.7537841796875 0.13491586538461542 0.7540283203125 0.13491586538461542 0.7576904296875 0.13491586538461542 0.7540283203125 0.14393028846153844 0.7615966796875 0.13491586538461542 0.7579345703125 0.14393028846153844 0.7579345703125 0.13491586538461542 0.7618408203125 0.13491586538461542 0.7655029296875 0.13491586538461542 0.7618408203125 0.14393028846153844 0.7694091796875 0.13491586538461542 0.7657470703125 0.14393028846153844 0.7657470703125 0.13491586538461542 0.7733154296875 0.13491586538461542 0.7696533203125 0.13491586538461542 0.7696533203125 0.14393028846153844 0.7735595703125 0.13491586538461542 0.7735595703125 0.14393028846153844 0.7772216796875 0.13491586538461542 0.7811279296875 0.13491586538461542 0.7774658203125 0.13491586538461542 0.7774658203125 0.14393028846153844 0.7501220703125 0.12530048076923073 0.7501220703125 0.13431490384615385 0.7537841796875 0.12530048076923073 0.7576904296875 0.12530048076923073 0.7540283203125 0.12530048076923073 0.7540283203125 0.13431490384615385 0.7615966796875 0.12530048076923073 0.7579345703125 0.12530048076923073 0.7579345703125 0.13431490384615385 0.3302001953125 0.8656850961538461 0.3309326171875 0.8656850961538461 0.3302001953125 0.8843149038461539 0.3477783203125 0.018930288461538436 0.3494873046875 0.01472355769230771 0.3477783203125 0.01472355769230771 0.3514404296875 0.01472355769230771 0.3497314453125 0.01472355769230771 0.3497314453125 0.018930288461538436 0.3311767578125 0.8656850961538461 0.3319091796875 0.8656850961538461 0.3311767578125 0.8843149038461539 0.7452392578125 0.10066105769230771 0.7459716796875 0.09645432692307687 0.7452392578125 0.09645432692307687 0.7618408203125 0.13431490384615385 0.7618408203125 0.12530048076923073 0.7635498046875 0.12530048076923073 0.3533935546875 0.01472355769230771 0.3516845703125 0.01472355769230771 0.3516845703125 0.018930288461538436 0.3292236328125 0.8650841346153846 0.3292236328125 0.8464543269230769 0.3299560546875 0.8464543269230769 0.3302001953125 0.8464543269230769 0.3309326171875 0.8464543269230769 0.3302001953125 0.8650841346153846 0.3536376953125 0.018930288461538436 0.3553466796875 0.01472355769230771 0.3536376953125 0.01472355769230771 0.8360595703125 0.36568509615384615 0.8360595703125 0.38431490384615385 0.8436279296875 0.36568509615384615 0.8126220703125 0.34645432692307687 0.8201904296875 0.34645432692307687 0.8126220703125 0.3650841346153846 0.8204345703125 0.3650841346153846 0.8282470703125 0.34645432692307687 0.8358154296875 0.34645432692307687 0.8282470703125 0.3650841346153846 0.8360595703125 0.3650841346153846 0.8201904296875 0.3272235576923077 0.8126220703125 0.3272235576923077 0.8126220703125 0.3458533653846154 0.8204345703125 0.3458533653846154 0.8282470703125 0.3272235576923077 0.8358154296875 0.3272235576923077 0.8282470703125 0.3458533653846154 0.0623779296875 0.6541466346153846 0.0548095703125 0.6920072115384616 0.8436279296875 0.3272235576923077 0.8360595703125 0.3272235576923077 0.8360595703125 0.3458533653846154 0.8126220703125 0.30799278846153844 0.8126220703125 0.32662259615384615 0.8201904296875 0.30799278846153844 0.8204345703125 0.30799278846153844 0.8280029296875 0.30799278846153844 0.8204345703125 0.32662259615384615 0.8282470703125 0.32662259615384615 0.8436279296875 0.30799278846153844 0.8360595703125 0.30799278846153844 0.8360595703125 0.32662259615384615 0.8514404296875 0.36568509615384615 0.8438720703125 0.38431490384615385 0.8438720703125 0.36568509615384615 0.4219970703125 0.8079927884615384 0.4295654296875 0.8079927884615384 0.4219970703125 0.8458533653846154 0.4217529296875 0.76953125 0.4063720703125 0.8073918269230769 0.4063720703125 0.76953125 0.4373779296875 0.8079927884615384 0.4298095703125 0.8079927884615384 0.4298095703125 0.8458533653846154 0.8592529296875 0.36568509615384615 0.8516845703125 0.38431490384615385 0.8516845703125 0.36568509615384615 0.8594970703125 0.36568509615384615 0.8670654296875 0.36568509615384615 0.8594970703125 0.38431490384615385 0.8748779296875 0.36568509615384615 0.8673095703125 0.38431490384615385 0.8673095703125 0.36568509615384615 0.8514404296875 0.34645432692307687 0.8438720703125 0.34645432692307687 0.8438720703125 0.3650841346153846 0.8516845703125 0.34645432692307687 0.8516845703125 0.3650841346153846 0.8592529296875 0.34645432692307687 0.8594970703125 0.34645432692307687 0.8594970703125 0.3650841346153846 0.8670654296875 0.34645432692307687 0.8673095703125 0.34645432692307687 0.8748779296875 0.34645432692307687 0.8673095703125 0.3650841346153846 0.8438720703125 0.3272235576923077 0.8438720703125 0.3458533653846154 0.8514404296875 0.3272235576923077 0.8592529296875 0.3272235576923077 0.8516845703125 0.3458533653846154 0.8516845703125 0.3272235576923077 0.8594970703125 0.3272235576923077 0.8670654296875 0.3272235576923077 0.8594970703125 0.3458533653846154 0.8748779296875 0.3272235576923077 0.8673095703125 0.3458533653846154 0.8673095703125 0.3272235576923077 0.8438720703125 0.30799278846153844 0.8514404296875 0.30799278846153844 0.8438720703125 0.32662259615384615 0.8592529296875 0.30799278846153844 0.8516845703125 0.32662259615384615 0.8516845703125 0.30799278846153844 0.8594970703125 0.30799278846153844 0.8670654296875 0.30799278846153844 0.8594970703125 0.32662259615384615 0.8748779296875 0.30799278846153844 0.8673095703125 0.32662259615384615 0.8673095703125 0.30799278846153844 0.8826904296875 0.36568509615384615 0.8751220703125 0.36568509615384615 0.8751220703125 0.38431490384615385 0.8829345703125 0.36568509615384615 0.8829345703125 0.38431490384615385 0.8905029296875 0.36568509615384615 0.8983154296875 0.36568509615384615 0.8907470703125 0.36568509615384615 0.8907470703125 0.38431490384615385 0.8985595703125 0.36568509615384615 0.8985595703125 0.38431490384615385 0.9061279296875 0.36568509615384615 0.4219970703125 0.76953125 0.4295654296875 0.76953125 0.4219970703125 0.8073918269230769 0.4373779296875 0.76953125 0.4298095703125 0.8073918269230769 0.4298095703125 0.76953125 0.8826904296875 0.34645432692307687 0.8751220703125 0.34645432692307687 0.8751220703125 0.3650841346153846 0.4376220703125 0.8079927884615384 0.4376220703125 0.8458533653846154 0.4530029296875 0.8079927884615384 0.4686279296875 0.8079927884615384 0.4532470703125 0.8458533653846154 0.4532470703125 0.8079927884615384 0.4530029296875 0.76953125 0.4376220703125 0.76953125 0.4376220703125 0.8073918269230769 0.4686279296875 0.76953125 0.4532470703125 0.8073918269230769 0.4532470703125 0.76953125 0.4764404296875 0.8079927884615384 0.4688720703125 0.8458533653846154 0.4688720703125 0.8079927884615384 0.8829345703125 0.3650841346153846 0.8829345703125 0.34645432692307687 0.8905029296875 0.34645432692307687 0.8983154296875 0.34645432692307687 0.8907470703125 0.34645432692307687 0.8907470703125 0.3650841346153846 0.8985595703125 0.34645432692307687 0.8985595703125 0.3650841346153846 0.9061279296875 0.34645432692307687 0.8751220703125 0.3272235576923077 0.8751220703125 0.3458533653846154 0.8826904296875 0.3272235576923077 0.4844970703125 0.8458533653846154 0.4998779296875 0.8079927884615384 0.4844970703125 0.8079927884615384 0.4842529296875 0.76953125 0.4688720703125 0.76953125 0.4688720703125 0.8073918269230769 0.4844970703125 0.76953125 0.4844970703125 0.8073918269230769 0.4998779296875 0.76953125 0.5155029296875 0.8079927884615384 0.5001220703125 0.8458533653846154 0.5001220703125 0.8079927884615384 0.5311279296875 0.8079927884615384 0.5157470703125 0.8079927884615384 0.5157470703125 0.8458533653846154 0.5001220703125 0.76953125 0.5001220703125 0.8073918269230769 0.5155029296875 0.76953125 0.5157470703125 0.76953125 0.5311279296875 0.76953125 0.5157470703125 0.8073918269230769 0.5467529296875 0.8079927884615384 0.5313720703125 0.8458533653846154 0.5313720703125 0.8079927884615384 0.5469970703125 0.8079927884615384 0.5623779296875 0.8079927884615384 0.5469970703125 0.8458533653846154 0.5467529296875 0.76953125 0.5313720703125 0.8073918269230769 0.5313720703125 0.76953125 0.5469970703125 0.76953125 0.5623779296875 0.76953125 0.5469970703125 0.8073918269230769 0.5626220703125 0.8079927884615384 0.5626220703125 0.8458533653846154 0.5780029296875 0.8079927884615384 0.5782470703125 0.8079927884615384 0.5936279296875 0.8079927884615384 0.5782470703125 0.8458533653846154 0.5626220703125 0.76953125 0.5626220703125 0.8073918269230769 0.5780029296875 0.76953125 0.5936279296875 0.76953125 0.5782470703125 0.76953125 0.5782470703125 0.8073918269230769 0.5938720703125 0.8079927884615384 0.5938720703125 0.8458533653846154 0.6092529296875 0.8079927884615384 0.6248779296875 0.8079927884615384 0.6094970703125 0.8079927884615384 0.6094970703125 0.8458533653846154 0.5938720703125 0.76953125 0.5938720703125 0.8073918269230769 0.6092529296875 0.76953125 0.6094970703125 0.76953125 0.6248779296875 0.76953125 0.6094970703125 0.8073918269230769 0.6251220703125 0.8079927884615384 0.6251220703125 0.8458533653846154 0.6405029296875 0.8079927884615384 0.6407470703125 0.8079927884615384 0.6407470703125 0.8458533653846154 0.6561279296875 0.8079927884615384 0.6405029296875 0.76953125 0.6251220703125 0.76953125 0.6251220703125 0.8073918269230769 0.6561279296875 0.76953125 0.6407470703125 0.8073918269230769 0.6407470703125 0.76953125 0.6563720703125 0.8079927884615384 0.6563720703125 0.8458533653846154 0.6717529296875 0.8079927884615384 0.4842529296875 0.8079927884615384 0.4766845703125 0.8458533653846154 0.4766845703125 0.8079927884615384 0.6795654296875 0.8079927884615384 0.6719970703125 0.8079927884615384 0.6719970703125 0.8458533653846154 0.6798095703125 0.8079927884615384 0.6873779296875 0.8079927884615384 0.6798095703125 0.8458533653846154 0.0001220703125 0.9996995192307693 0.0936279296875 0.7310697115384616 0.0782470703125 0.7310697115384616 0.1163330078125 0.26953125 0.1163330078125 0.2881610576923077 0.7637939453125 0.13431490384615385 0.7637939453125 0.12530048076923073 0.7655029296875 0.12530048076923073 0.7674560546875 0.12530048076923073 0.7657470703125 0.13431490384615385 0.7657470703125 0.12530048076923073 0.8829345703125 0.3458533653846154 0.8829345703125 0.3272235576923077 0.8905029296875 0.3272235576923077 0.8983154296875 0.3272235576923077 0.8907470703125 0.3272235576923077 0.8907470703125 0.3458533653846154 0.6563720703125 0.76953125 0.6563720703125 0.8073918269230769 0.6639404296875 0.76953125 0.6873779296875 0.76953125 0.6719970703125 0.76953125 0.6719970703125 0.8073918269230769 0.6876220703125 0.8079927884615384 0.6876220703125 0.8458533653846154 0.7030029296875 0.8079927884615384 0.7032470703125 0.8079927884615384 0.7186279296875 0.8079927884615384 0.7032470703125 0.8458533653846154 0.6717529296875 0.76953125 0.6641845703125 0.8073918269230769 0.6641845703125 0.76953125 0.6876220703125 0.76953125 0.6951904296875 0.76953125 0.6876220703125 0.8073918269230769 0.7030029296875 0.76953125 0.6954345703125 0.8073918269230769 0.6954345703125 0.76953125 0.9061279296875 0.3272235576923077 0.8985595703125 0.3272235576923077 0.8985595703125 0.3458533653846154 0.7032470703125 0.76953125 0.7032470703125 0.8073918269230769 0.7108154296875 0.76953125 0.7342529296875 0.8079927884615384 0.7188720703125 0.8079927884615384 0.7188720703125 0.8458533653846154 0.7344970703125 0.8079927884615384 0.7344970703125 0.8458533653846154 0.7498779296875 0.8079927884615384 0.7342529296875 0.76953125 0.7188720703125 0.8073918269230769 0.7188720703125 0.76953125 0.8751220703125 0.32662259615384615 0.8751220703125 0.30799278846153844 0.8826904296875 0.30799278846153844 0.7110595703125 0.76953125 0.7110595703125 0.8073918269230769 0.7186279296875 0.76953125 0.7420654296875 0.76953125 0.7344970703125 0.8073918269230769 0.7344970703125 0.76953125 0.8829345703125 0.32662259615384615 0.8905029296875 0.30799278846153844 0.8829345703125 0.30799278846153844 0.8358154296875 0.36568509615384615 0.8321533203125 0.36568509615384615 0.8321533203125 0.38431490384615385 0.7696533203125 0.12530048076923073 0.7696533203125 0.13431490384615385 0.7733154296875 0.12530048076923073 0.7772216796875 0.12530048076923073 0.7735595703125 0.12530048076923073 0.7735595703125 0.13431490384615385 0.7774658203125 0.12530048076923073 0.7811279296875 0.12530048076923073 0.7774658203125 0.13431490384615385 0.7501220703125 0.11568509615384615 0.7501220703125 0.12469951923076927 0.7537841796875 0.11568509615384615 0.8907470703125 0.30799278846153844 0.8944091796875 0.30799278846153844 0.8907470703125 0.32662259615384615 0.8983154296875 0.30799278846153844 0.8946533203125 0.32662259615384615 0.8946533203125 0.30799278846153844 0.8985595703125 0.30799278846153844 0.9022216796875 0.30799278846153844 0.8985595703125 0.32662259615384615 0.9139404296875 0.36568509615384615 0.9063720703125 0.38431490384615385 0.9063720703125 0.36568509615384615 0.9141845703125 0.36568509615384615 0.9217529296875 0.36568509615384615 0.9141845703125 0.38431490384615385 0.9295654296875 0.36568509615384615 0.9219970703125 0.38431490384615385 0.9219970703125 0.36568509615384615 0.9373779296875 0.36568509615384615 0.9298095703125 0.36568509615384615 0.9298095703125 0.38431490384615385 0.9061279296875 0.30799278846153844 0.9024658203125 0.32662259615384615 0.9024658203125 0.30799278846153844 0.7576904296875 0.11568509615384615 0.7540283203125 0.11568509615384615 0.7540283203125 0.12469951923076927 0.9063720703125 0.34645432692307687 0.9063720703125 0.3650841346153846 0.9100341796875 0.34645432692307687 0.9139404296875 0.34645432692307687 0.9102783203125 0.3650841346153846 0.9102783203125 0.34645432692307687 0.3555908203125 0.01472355769230771 0.3555908203125 0.018930288461538436 0.3572998046875 0.01472355769230771 0.7677001953125 0.12530048076923073 0.7694091796875 0.12530048076923073 0.7677001953125 0.13431490384615385 0.7615966796875 0.11568509615384615 0.7579345703125 0.12469951923076927 0.7579345703125 0.11568509615384615 0.7618408203125 0.11568509615384615 0.7655029296875 0.11568509615384615 0.7618408203125 0.12469951923076927 0.7657470703125 0.11568509615384615 0.7694091796875 0.11568509615384615 0.7657470703125 0.12469951923076927 0.9141845703125 0.34645432692307687 0.9141845703125 0.3650841346153846 0.9178466796875 0.34645432692307687 0.9219970703125 0.34645432692307687 0.9295654296875 0.34645432692307687 0.9219970703125 0.3650841346153846 0.9298095703125 0.34645432692307687 0.9298095703125 0.3650841346153846 0.9373779296875 0.34645432692307687 0.9139404296875 0.3272235576923077 0.9063720703125 0.3272235576923077 0.9063720703125 0.3458533653846154 0.7423095703125 0.76953125 0.7423095703125 0.8073918269230769 0.7498779296875 0.76953125 0.7576904296875 0.8079927884615384 0.7501220703125 0.8079927884615384 0.7501220703125 0.8458533653846154 0.9217529296875 0.3272235576923077 0.9141845703125 0.3458533653846154 0.9141845703125 0.3272235576923077 0.9219970703125 0.3272235576923077 0.9295654296875 0.3272235576923077 0.9219970703125 0.3458533653846154 0.7579345703125 0.8079927884615384 0.7579345703125 0.8458533653846154 0.7655029296875 0.8079927884615384 0.7657470703125 0.8079927884615384 0.7811279296875 0.8079927884615384 0.7657470703125 0.8458533653846154 0.7576904296875 0.76953125 0.7501220703125 0.8073918269230769 0.7501220703125 0.76953125 0.9373779296875 0.3272235576923077 0.9298095703125 0.3272235576923077 0.9298095703125 0.3458533653846154 0.9063720703125 0.30799278846153844 0.9063720703125 0.32662259615384615 0.9139404296875 0.30799278846153844 0.9141845703125 0.30799278846153844 0.9217529296875 0.30799278846153844 0.9141845703125 0.32662259615384615 0.9219970703125 0.30799278846153844 0.9219970703125 0.32662259615384615 0.9295654296875 0.30799278846153844 0.9373779296875 0.30799278846153844 0.9298095703125 0.32662259615384615 0.9298095703125 0.30799278846153844 0.9376220703125 0.36568509615384615 0.9451904296875 0.36568509615384615 0.9376220703125 0.38431490384615385 0.9454345703125 0.36568509615384615 0.9454345703125 0.38431490384615385 0.9530029296875 0.36568509615384615 0.9532470703125 0.36568509615384615 0.9608154296875 0.36568509615384615 0.9532470703125 0.38431490384615385 0.9686279296875 0.36568509615384615 0.9610595703125 0.38431490384615385 0.9610595703125 0.36568509615384615 0.9451904296875 0.34645432692307687 0.9376220703125 0.34645432692307687 0.9376220703125 0.3650841346153846 0.9454345703125 0.34645432692307687 0.9454345703125 0.3650841346153846 0.9530029296875 0.34645432692307687 0.9608154296875 0.34645432692307687 0.9532470703125 0.34645432692307687 0.9532470703125 0.3650841346153846 0.9686279296875 0.34645432692307687 0.9610595703125 0.3650841346153846 0.9610595703125 0.34645432692307687 0.9376220703125 0.3272235576923077 0.9451904296875 0.3272235576923077 0.9376220703125 0.3458533653846154 0.9454345703125 0.3272235576923077 0.9454345703125 0.3458533653846154 0.9530029296875 0.3272235576923077 0.9532470703125 0.3272235576923077 0.9608154296875 0.3272235576923077 0.9532470703125 0.3458533653846154 0.9686279296875 0.3272235576923077 0.9610595703125 0.3458533653846154 0.9610595703125 0.3272235576923077 0.9376220703125 0.32662259615384615 0.9376220703125 0.30799278846153844 0.9451904296875 0.30799278846153844 0.9454345703125 0.30799278846153844 0.9454345703125 0.32662259615384615 0.9530029296875 0.30799278846153844 0.7696533203125 0.11568509615384615 0.7733154296875 0.11568509615384615 0.7696533203125 0.12469951923076927 0.3575439453125 0.018930288461538436 0.3575439453125 0.01472355769230771 0.3592529296875 0.01472355769230771 0.7735595703125 0.11568509615384615 0.7735595703125 0.12469951923076927 0.7752685546875 0.11568509615384615 0.7774658203125 0.11568509615384615 0.7811279296875 0.11568509615384615 0.7774658203125 0.12469951923076927 0.7537841796875 0.10606971153846156 0.7501220703125 0.11508413461538458 0.7501220703125 0.10606971153846156 0.7772216796875 0.11568509615384615 0.7755126953125 0.11568509615384615 0.7755126953125 0.12469951923076927 0.3612060546875 0.01472355769230771 0.3594970703125 0.018930288461538436 0.3594970703125 0.01472355769230771 0.7540283203125 0.10606971153846156 0.7540283203125 0.11508413461538458 0.7557373046875 0.10606971153846156 0.7657470703125 0.8073918269230769 0.7811279296875 0.76953125 0.7657470703125 0.76953125 0.7813720703125 0.8079927884615384 0.7967529296875 0.8079927884615384 0.7813720703125 0.8458533653846154 0.7655029296875 0.76953125 0.7579345703125 0.8073918269230769 0.7579345703125 0.76953125 0.9608154296875 0.30799278846153844 0.9532470703125 0.30799278846153844 0.9532470703125 0.32662259615384615 0.9610595703125 0.30799278846153844 0.9610595703125 0.32662259615384615 0.9686279296875 0.30799278846153844 0.9764404296875 0.36568509615384615 0.9688720703125 0.36568509615384615 0.9688720703125 0.38431490384615385 0.7969970703125 0.8079927884615384 0.7969970703125 0.8458533653846154 0.8045654296875 0.8079927884615384 0.7967529296875 0.76953125 0.7813720703125 0.76953125 0.7813720703125 0.8073918269230769 0.7969970703125 0.76953125 0.7969970703125 0.8073918269230769 0.8123779296875 0.76953125 0.8126220703125 0.8079927884615384 0.8280029296875 0.8079927884615384 0.8126220703125 0.8458533653846154 0.8436279296875 0.8079927884615384 0.8282470703125 0.8458533653846154 0.8282470703125 0.8079927884615384 0.8280029296875 0.76953125 0.8126220703125 0.76953125 0.8126220703125 0.8073918269230769 0.8282470703125 0.76953125 0.8436279296875 0.76953125 0.8282470703125 0.8073918269230769 0.7579345703125 0.11508413461538458 0.7615966796875 0.10606971153846156 0.7579345703125 0.10606971153846156 0.7655029296875 0.10606971153846156 0.7618408203125 0.11508413461538458 0.7618408203125 0.10606971153846156 0.9766845703125 0.38431490384615385 0.9842529296875 0.36568509615384615 0.9766845703125 0.36568509615384615 0.9844970703125 0.36568509615384615 0.9920654296875 0.36568509615384615 0.9844970703125 0.38431490384615385 0.9923095703125 0.38431490384615385 0.9923095703125 0.36568509615384615 0.9998779296875 0.36568509615384615 0.9688720703125 0.34645432692307687 0.9764404296875 0.34645432692307687 0.9688720703125 0.3650841346153846 0.8438720703125 0.8458533653846154 0.8438720703125 0.8079927884615384 0.8592529296875 0.8079927884615384 0.8748779296875 0.8079927884615384 0.8594970703125 0.8458533653846154 0.8594970703125 0.8079927884615384 0.8048095703125 0.8458533653846154 0.8048095703125 0.8079927884615384 0.8123779296875 0.8079927884615384 0.8592529296875 0.76953125 0.8438720703125 0.8073918269230769 0.8438720703125 0.76953125 0.7559814453125 0.11508413461538458 0.7559814453125 0.10606971153846156 0.7576904296875 0.10606971153846156 0.7674560546875 0.10606971153846156 0.7657470703125 0.10606971153846156 0.7657470703125 0.11508413461538458 0.3614501953125 0.01472355769230771 0.3614501953125 0.018930288461538436 0.3631591796875 0.01472355769230771 0.3651123046875 0.01472355769230771 0.3634033203125 0.018930288461538436 0.3634033203125 0.01472355769230771 0.3311767578125 0.8650841346153846 0.3311767578125 0.8464543269230769 0.3319091796875 0.8464543269230769 0.9180908203125 0.34645432692307687 0.9188232421875 0.34645432692307687 0.9180908203125 0.3650841346153846 0.9197998046875 0.34645432692307687 0.9190673828125 0.34645432692307687 0.9190673828125 0.3650841346153846 0.9200439453125 0.3650841346153846 0.9207763671875 0.34645432692307687 0.9200439453125 0.34645432692307687 0.9210205078125 0.34645432692307687 0.9217529296875 0.34645432692307687 0.9210205078125 0.3650841346153846 0.9774169921875 0.34645432692307687 0.9766845703125 0.34645432692307687 0.9766845703125 0.3650841346153846 0.9776611328125 0.34645432692307687 0.9783935546875 0.34645432692307687 0.9776611328125 0.3650841346153846 0.8594970703125 0.8073918269230769 0.8748779296875 0.76953125 0.8594970703125 0.76953125 0.8751220703125 0.8079927884615384 0.8751220703125 0.8458533653846154 0.8905029296875 0.8079927884615384 0.7696533203125 0.11508413461538458 0.7733154296875 0.10606971153846156 0.7696533203125 0.10606971153846156 0.9805908203125 0.34645432692307687 0.9805908203125 0.3650841346153846 0.9842529296875 0.34645432692307687 0.8907470703125 0.8458533653846154 0.9061279296875 0.8079927884615384 0.8907470703125 0.8079927884615384 0.8905029296875 0.76953125 0.8751220703125 0.8073918269230769 0.8751220703125 0.76953125 0.9844970703125 0.3650841346153846 0.9844970703125 0.34645432692307687 0.9920654296875 0.34645432692307687 0.9923095703125 0.34645432692307687 0.9923095703125 0.3650841346153846 0.9998779296875 0.34645432692307687 0.7735595703125 0.11508413461538458 0.7772216796875 0.10606971153846156 0.7735595703125 0.10606971153846156 0.7811279296875 0.10606971153846156 0.7774658203125 0.10606971153846156 0.7774658203125 0.11508413461538458 0.9688720703125 0.3272235576923077 0.9725341796875 0.3272235576923077 0.9688720703125 0.3458533653846154 0.9727783203125 0.3458533653846154 0.9764404296875 0.3272235576923077 0.9727783203125 0.3272235576923077 0.9803466796875 0.3272235576923077 0.9766845703125 0.3458533653846154 0.9766845703125 0.3272235576923077 0.7501220703125 0.09645432692307687 0.7537841796875 0.09645432692307687 0.7501220703125 0.10546875 0.7576904296875 0.09645432692307687 0.7540283203125 0.09645432692307687 0.7540283203125 0.10546875 0.9786376953125 0.34645432692307687 0.9786376953125 0.3650841346153846 0.9793701171875 0.34645432692307687 0.9796142578125 0.3650841346153846 0.9796142578125 0.34645432692307687 0.9803466796875 0.34645432692307687 0.3653564453125 0.01472355769230771 0.3660888671875 0.01472355769230771 0.3653564453125 0.018930288461538436 0.3673095703125 0.01472355769230771 0.3673095703125 0.018930288461538436 0.3690185546875 0.01472355769230771 0.3709716796875 0.01472355769230771 0.3692626953125 0.01472355769230771 0.3692626953125 0.018930288461538436 0.8712158203125 0.15414663461538458 0.8748779296875 0.15414663461538458 0.3670654296875 0.01472355769230771 0.3663330078125 0.01472355769230771 0.3663330078125 0.018930288461538436 0.9805908203125 0.3272235576923077 0.9805908203125 0.3458533653846154 0.9813232421875 0.3272235576923077 0.7677001953125 0.11508413461538458 0.7677001953125 0.10606971153846156 0.7694091796875 0.10606971153846156 0.8907470703125 0.8073918269230769 0.9061279296875 0.76953125 0.8907470703125 0.76953125 0.9063720703125 0.8079927884615384 0.9063720703125 0.8458533653846154 0.9217529296875 0.8079927884615384 0.7579345703125 0.09645432692307687 0.7615966796875 0.09645432692307687 0.7579345703125 0.10546875 0.7618408203125 0.09645432692307687 0.7618408203125 0.10546875 0.7635498046875 0.09645432692307687 0.9219970703125 0.8458533653846154 0.9373779296875 0.8079927884615384 0.9219970703125 0.8079927884615384 0.9139404296875 0.76953125 0.9063720703125 0.8073918269230769 0.9063720703125 0.76953125 0.9217529296875 0.76953125 0.9141845703125 0.76953125 0.9141845703125 0.8073918269230769 0.9219970703125 0.8073918269230769 0.9295654296875 0.76953125 0.9219970703125 0.76953125 0.9373779296875 0.76953125 0.9298095703125 0.76953125 0.9298095703125 0.8073918269230769 0.9376220703125 0.8458533653846154 0.9451904296875 0.8079927884615384 0.9376220703125 0.8079927884615384 0.9530029296875 0.8079927884615384 0.9454345703125 0.8079927884615384 0.9454345703125 0.8458533653846154 0.9844970703125 0.3458533653846154 0.9844970703125 0.3272235576923077 0.9920654296875 0.3272235576923077 0.9998779296875 0.3272235576923077 0.9923095703125 0.3458533653846154 0.9923095703125 0.3272235576923077 0.9532470703125 0.8079927884615384 0.9608154296875 0.8079927884615384 0.9532470703125 0.8458533653846154 0.9686279296875 0.8079927884615384 0.9610595703125 0.8079927884615384 0.9610595703125 0.8458533653846154 0.9376220703125 0.8073918269230769 0.9451904296875 0.76953125 0.9376220703125 0.76953125 0.9686279296875 0.76953125 0.9532470703125 0.76953125 0.9532470703125 0.8073918269230769 0.9688720703125 0.30799278846153844 0.9725341796875 0.30799278846153844 0.9688720703125 0.32662259615384615 0.2344970703125 0.38431490384615385 0.2420654296875 0.34645432692307687 0.8123779296875 0.6926081730769231 0.8048095703125 0.73046875 0.9842529296875 0.30799278846153844 0.9766845703125 0.32662259615384615 0.9766845703125 0.30799278846153844 0.9454345703125 0.8073918269230769 0.9454345703125 0.76953125 0.9530029296875 0.76953125 0.9764404296875 0.8079927884615384 0.9688720703125 0.8458533653846154 0.9688720703125 0.8079927884615384 0.9766845703125 0.8458533653846154 0.9766845703125 0.8079927884615384 0.9842529296875 0.8079927884615384 0.9998779296875 0.8079927884615384 0.9844970703125 0.8458533653846154 0.9844970703125 0.8079927884615384 0.9815673828125 0.3272235576923077 0.9822998046875 0.3272235576923077 0.9815673828125 0.3458533653846154 0.9825439453125 0.3272235576923077 0.9832763671875 0.3272235576923077 0.9825439453125 0.3458533653846154 0.9844970703125 0.32662259615384615 0.9844970703125 0.30799278846153844 0.9920654296875 0.30799278846153844 0.9998779296875 0.30799278846153844 0.9923095703125 0.32662259615384615 0.9923095703125 0.30799278846153844 0.0001220703125 0.30739182692307687 0.0001220703125 0.2887620192307693 0.0076904296875 0.2887620192307693 0.0079345703125 0.2887620192307693 0.0079345703125 0.30739182692307687 0.0155029296875 0.2887620192307693 0.0233154296875 0.2887620192307693 0.0157470703125 0.2887620192307693 0.0157470703125 0.30739182692307687 0.0235595703125 0.2887620192307693 0.0235595703125 0.30739182692307687 0.0311279296875 0.2887620192307693 0.0076904296875 0.26953125 0.0001220703125 0.26953125 0.0001220703125 0.2881610576923077 0.9688720703125 0.76953125 0.9688720703125 0.8073918269230769 0.9764404296875 0.76953125 0.9842529296875 0.76953125 0.9766845703125 0.76953125 0.9766845703125 0.8073918269230769 0.0079345703125 0.26953125 0.0079345703125 0.2881610576923077 0.0155029296875 0.26953125 0.0233154296875 0.26953125 0.0157470703125 0.26953125 0.0157470703125 0.2881610576923077 0.9998779296875 0.76953125 0.9923095703125 0.76953125 0.7889404296875 0.6541466346153846 0.7813720703125 0.6920072115384616 0.9764404296875 0.30799278846153844 0.9727783203125 0.32662259615384615 0.9727783203125 0.30799278846153844 0.0235595703125 0.26953125 0.0272216796875 0.26953125 0.0235595703125 0.2881610576923077 0.0076904296875 0.2503004807692307 0.0001220703125 0.26893028846153844 0.0001220703125 0.2503004807692307 0.0079345703125 0.2503004807692307 0.0155029296875 0.2503004807692307 0.0079345703125 0.26893028846153844 0.0157470703125 0.2503004807692307 0.0157470703125 0.26893028846153844 0.0233154296875 0.2503004807692307 0.0311279296875 0.2503004807692307 0.0235595703125 0.2503004807692307 0.0235595703125 0.26893028846153844 0.0001220703125 0.23106971153846156 0.0001220703125 0.24969951923076927 0.0076904296875 0.23106971153846156 0.0155029296875 0.23106971153846156 0.0079345703125 0.23106971153846156 0.0079345703125 0.24969951923076927 0.0157470703125 0.23106971153846156 0.0157470703125 0.24969951923076927 0.0233154296875 0.23106971153846156 0.0311279296875 0.23106971153846156 0.0235595703125 0.23106971153846156 0.0235595703125 0.24969951923076927 0.9844970703125 0.8073918269230769 0.9923095703125 0.8073918269230769 0.0311279296875 0.26953125 0.0274658203125 0.2881610576923077 0.0274658203125 0.26953125 0.0313720703125 0.2887620192307693 0.0350341796875 0.2887620192307693 0.0313720703125 0.30739182692307687 0.0467529296875 0.2887620192307693 0.0391845703125 0.30739182692307687 0.0391845703125 0.2887620192307693 0.0469970703125 0.2887620192307693 0.0545654296875 0.2887620192307693 0.0469970703125 0.30739182692307687 0.0623779296875 0.2887620192307693 0.0548095703125 0.30739182692307687 0.0548095703125 0.2887620192307693 0.0001220703125 0.7689302884615384 0.0076904296875 0.7310697115384616 0.0001220703125 0.7310697115384616 0.0157470703125 0.7310697115384616 0.0311279296875 0.7310697115384616 0.0157470703125 0.7689302884615384 0.0155029296875 0.7310697115384616 0.0079345703125 0.7310697115384616 0.0079345703125 0.7689302884615384 0.0389404296875 0.26953125 0.0313720703125 0.26953125 0.0313720703125 0.2881610576923077 0.5626220703125 0.5772235576923077 0.5701904296875 0.5772235576923077 0.0467529296875 0.26953125 0.0391845703125 0.26953125 0.0391845703125 0.2881610576923077 0.0469970703125 0.26953125 0.0545654296875 0.26953125 0.0469970703125 0.2881610576923077 0.0623779296875 0.26953125 0.0548095703125 0.2881610576923077 0.0548095703125 0.26953125 0.0313720703125 0.2503004807692307 0.0389404296875 0.2503004807692307 0.0313720703125 0.26893028846153844 0.0391845703125 0.2503004807692307 0.0391845703125 0.26893028846153844 0.0467529296875 0.2503004807692307 0.0001220703125 0.6926081730769231 0.0076904296875 0.6926081730769231 0.0001220703125 0.73046875 0.0155029296875 0.6926081730769231 0.0079345703125 0.6926081730769231 0.0079345703125 0.73046875 0.0545654296875 0.2503004807692307 0.0469970703125 0.2503004807692307 0.0469970703125 0.26893028846153844 0.0548095703125 0.2503004807692307 0.0623779296875 0.2503004807692307 0.0548095703125 0.26893028846153844 0.0389404296875 0.23106971153846156 0.0313720703125 0.24969951923076927 0.0313720703125 0.23106971153846156 0.0391845703125 0.23106971153846156 0.0467529296875 0.23106971153846156 0.0391845703125 0.24969951923076927 0.0469970703125 0.23106971153846156 0.0545654296875 0.23106971153846156 0.0469970703125 0.24969951923076927 0.0623779296875 0.23106971153846156 0.0548095703125 0.24969951923076927 0.0548095703125 0.23106971153846156 0.0157470703125 0.6926081730769231 0.0233154296875 0.6926081730769231 0.0157470703125 0.73046875 0.0313720703125 0.7310697115384616 0.0313720703125 0.7689302884615384 0.0467529296875 0.7310697115384616 0.0311279296875 0.6926081730769231 0.0235595703125 0.6926081730769231 0.0235595703125 0.73046875 0.0469970703125 0.7310697115384616 0.0469970703125 0.7689302884615384 0.0545654296875 0.7310697115384616 0.0623779296875 0.7310697115384616 0.0548095703125 0.7310697115384616 0.0548095703125 0.7689302884615384 0.0626220703125 0.2887620192307693 0.0626220703125 0.30739182692307687 0.0701904296875 0.2887620192307693 0.0780029296875 0.2887620192307693 0.0704345703125 0.30739182692307687 0.0704345703125 0.2887620192307693 0.0782470703125 0.2887620192307693 0.0858154296875 0.2887620192307693 0.0782470703125 0.30739182692307687 0.0936279296875 0.2887620192307693 0.0860595703125 0.30739182692307687 0.0860595703125 0.2887620192307693 0.0626220703125 0.26953125 0.0701904296875 0.26953125 0.0626220703125 0.2881610576923077 0.0780029296875 0.26953125 0.0704345703125 0.2881610576923077 0.0704345703125 0.26953125 0.0313720703125 0.6926081730769231 0.0389404296875 0.6926081730769231 0.0313720703125 0.73046875 0.0469970703125 0.6926081730769231 0.0469970703125 0.73046875 0.0623779296875 0.6926081730769231 0.0467529296875 0.6926081730769231 0.0391845703125 0.6926081730769231 0.0391845703125 0.73046875 0.0626220703125 0.7310697115384616 0.0626220703125 0.7689302884615384 0.0701904296875 0.7310697115384616 0.0780029296875 0.7310697115384616 0.0704345703125 0.7310697115384616 0.0704345703125 0.7689302884615384 0.0858154296875 0.26953125 0.0782470703125 0.2881610576923077 0.0782470703125 0.26953125 0.0860595703125 0.26953125 0.0936279296875 0.26953125 0.0860595703125 0.2881610576923077 0.7637939453125 0.10546875 0.7655029296875 0.09645432692307687 0.7637939453125 0.09645432692307687 0.0352783203125 0.30739182692307687 0.0389404296875 0.2887620192307693 0.0352783203125 0.2887620192307693 0.0626220703125 0.26893028846153844 0.0626220703125 0.2503004807692307 0.0701904296875 0.2503004807692307 0.0740966796875 0.2503004807692307 0.0704345703125 0.26893028846153844 0.0704345703125 0.2503004807692307 0.0743408203125 0.2503004807692307 0.0780029296875 0.2503004807692307 0.0743408203125 0.26893028846153844 0.0782470703125 0.2503004807692307 0.0858154296875 0.2503004807692307 0.0782470703125 0.26893028846153844 0.0860595703125 0.26893028846153844 0.0860595703125 0.2503004807692307 0.0936279296875 0.2503004807692307 0.0782470703125 0.7689302884615384 0.0780029296875 0.6926081730769231 0.0626220703125 0.73046875 0.0626220703125 0.6926081730769231 0.7657470703125 0.09645432692307687 0.7657470703125 0.10546875 0.7674560546875 0.09645432692307687 0.7696533203125 0.09645432692307687 0.7696533203125 0.10546875 0.7733154296875 0.09645432692307687 0.0782470703125 0.73046875 0.0936279296875 0.6926081730769231 0.0782470703125 0.6926081730769231 0.0626220703125 0.24969951923076927 0.0626220703125 0.23106971153846156 0.0701904296875 0.23106971153846156 0.0938720703125 0.7689302884615384 0.0938720703125 0.7310697115384616 0.1014404296875 0.7310697115384616 0.1092529296875 0.7310697115384616 0.1016845703125 0.7310697115384616 0.1016845703125 0.7689302884615384 0.0001220703125 0.9233774038461539 0.0155029296875 0.9233774038461539 0.0311279296875 0.9233774038461539 0.0157470703125 0.9996995192307693 0.0157470703125 0.9233774038461539 0.7772216796875 0.09645432692307687 0.7735595703125 0.10546875 0.7735595703125 0.09645432692307687 0.7774658203125 0.09645432692307687 0.7774658203125 0.10546875 0.7811279296875 0.09645432692307687 0.7501220703125 0.09585336538461542 0.7501220703125 0.08683894230769229 0.7537841796875 0.08683894230769229 0.7694091796875 0.09645432692307687 0.7677001953125 0.09645432692307687 0.7677001953125 0.10546875 0.3729248046875 0.01472355769230771 0.3712158203125 0.018930288461538436 0.3712158203125 0.01472355769230771 0.3739013671875 0.01472355769230771 0.3731689453125 0.018930288461538436 0.3731689453125 0.01472355769230771 0.0704345703125 0.24969951923076927 0.0704345703125 0.23106971153846156 0.0780029296875 0.23106971153846156 0.0858154296875 0.23106971153846156 0.0782470703125 0.24969951923076927 0.0782470703125 0.23106971153846156 0.1094970703125 0.7689302884615384 0.1094970703125 0.7310697115384616 0.1248779296875 0.7310697115384616 0.0938720703125 0.6926081730769231 0.0938720703125 0.73046875 0.1092529296875 0.6926081730769231 0.0897216796875 0.23106971153846156 0.0860595703125 0.24969951923076927 0.0860595703125 0.23106971153846156 0.7576904296875 0.08683894230769229 0.7540283203125 0.08683894230769229 0.7540283203125 0.09585336538461542 0.3741455078125 0.01472355769230771 0.3748779296875 0.01472355769230771 0.3741455078125 0.018930288461538436 0.7579345703125 0.09585336538461542 0.7579345703125 0.08683894230769229 0.7596435546875 0.08683894230769229 0.7618408203125 0.08683894230769229 0.7655029296875 0.08683894230769229 0.7618408203125 0.09585336538461542 0.7615966796875 0.08683894230769229 0.7598876953125 0.08683894230769229 0.7598876953125 0.09585336538461542 0.3458251953125 0.009915865384615419 0.3475341796875 0.009915865384615419 0.3458251953125 0.014122596153846145 0.7657470703125 0.08683894230769229 0.7657470703125 0.09585336538461542 0.7674560546875 0.08683894230769229 0.7696533203125 0.08683894230769229 0.7733154296875 0.08683894230769229 0.7696533203125 0.09585336538461542 0.7694091796875 0.08683894230769229 0.7677001953125 0.09585336538461542 0.7677001953125 0.08683894230769229 0.7735595703125 0.08683894230769229 0.7752685546875 0.08683894230769229 0.7735595703125 0.09585336538461542 0.7772216796875 0.08683894230769229 0.7755126953125 0.08683894230769229 0.7755126953125 0.09585336538461542 0.3477783203125 0.009915865384615419 0.3485107421875 0.009915865384615419 0.3477783203125 0.014122596153846145 0.3494873046875 0.009915865384615419 0.3487548828125 0.014122596153846145 0.3487548828125 0.009915865384615419 0.3497314453125 0.009915865384615419 0.3504638671875 0.009915865384615419 0.3497314453125 0.014122596153846145 0.3514404296875 0.009915865384615419 0.3507080078125 0.014122596153846145 0.3507080078125 0.009915865384615419 0.0467529296875 0.9233774038461539 0.0313720703125 0.9996995192307693 0.0313720703125 0.9233774038461539 0.0899658203125 0.23106971153846156 0.0936279296875 0.23106971153846156 0.0899658203125 0.24969951923076927 0.7774658203125 0.08683894230769229 0.7774658203125 0.09585336538461542 0.7811279296875 0.08683894230769229 0.3516845703125 0.009915865384615419 0.3533935546875 0.009915865384615419 0.3516845703125 0.014122596153846145 0.9835205078125 0.3458533653846154 0.9842529296875 0.3272235576923077 0.9835205078125 0.3272235576923077 0.0938720703125 0.2887620192307693 0.0938720703125 0.30739182692307687 0.0946044921875 0.2887620192307693 0.3536376953125 0.014122596153846145 0.3536376953125 0.009915865384615419 0.3553466796875 0.009915865384615419 0.3555908203125 0.009915865384615419 0.3572998046875 0.009915865384615419 0.3555908203125 0.014122596153846145 0.0938720703125 0.5387620192307692 0.1092529296875 0.5387620192307692 0.1094970703125 0.6926081730769231 0.1094970703125 0.73046875 0.1170654296875 0.6926081730769231 0.1173095703125 0.73046875 0.1173095703125 0.6926081730769231 0.1248779296875 0.6926081730769231 0.1326904296875 0.7310697115384616 0.1251220703125 0.7310697115384616 0.1251220703125 0.7689302884615384 0.1407470703125 0.7689302884615384 0.1407470703125 0.7310697115384616 0.1561279296875 0.7310697115384616 0.1405029296875 0.6926081730769231 0.1251220703125 0.73046875 0.1251220703125 0.6926081730769231 0.0313720703125 0.6156850961538461 0.0467529296875 0.6156850961538461 0.7501220703125 0.07722355769230771 0.7518310546875 0.07722355769230771 0.7501220703125 0.08623798076923073 0.7540283203125 0.07722355769230771 0.7540283203125 0.08623798076923073 0.7576904296875 0.07722355769230771 0.7579345703125 0.07722355769230771 0.7579345703125 0.08623798076923073 0.7615966796875 0.07722355769230771 0.7655029296875 0.07722355769230771 0.7618408203125 0.07722355769230771 0.7618408203125 0.08623798076923073 0.0977783203125 0.2887620192307693 0.0977783203125 0.30739182692307687 0.1014404296875 0.2887620192307693 0.1053466796875 0.2887620192307693 0.1016845703125 0.2887620192307693 0.1016845703125 0.30739182692307687 0.7694091796875 0.07722355769230771 0.7657470703125 0.08623798076923073 0.7657470703125 0.07722355769230771 0.7696533203125 0.07722355769230771 0.7733154296875 0.07722355769230771 0.7696533203125 0.08623798076923073 0.7772216796875 0.07722355769230771 0.7735595703125 0.08623798076923073 0.7735595703125 0.07722355769230771 0.7537841796875 0.07722355769230771 0.7520751953125 0.07722355769230771 0.7520751953125 0.08623798076923073 0.7774658203125 0.07722355769230771 0.7774658203125 0.08623798076923073 0.7791748046875 0.07722355769230771 0.7850341796875 0.14453125 0.7813720703125 0.14453125 0.7813720703125 0.15354567307692313 0.7852783203125 0.14453125 0.7852783203125 0.15354567307692313 0.7889404296875 0.14453125 0.1094970703125 0.30739182692307687 0.1170654296875 0.2887620192307693 0.1094970703125 0.2887620192307693 0.1173095703125 0.2887620192307693 0.1173095703125 0.30739182692307687 0.1248779296875 0.2887620192307693 0.3575439453125 0.014122596153846145 0.3592529296875 0.009915865384615419 0.3575439453125 0.009915865384615419 0.3594970703125 0.009915865384615419 0.3612060546875 0.009915865384615419 0.3594970703125 0.014122596153846145 0.7794189453125 0.07722355769230771 0.7794189453125 0.08623798076923073 0.7811279296875 0.07722355769230771 0.1014404296875 0.26953125 0.0938720703125 0.26953125 0.0938720703125 0.2881610576923077 0.1092529296875 0.2887620192307693 0.1055908203125 0.2887620192307693 0.1055908203125 0.30739182692307687 0.7891845703125 0.14453125 0.7928466796875 0.14453125 0.7891845703125 0.15354567307692313 0.7930908203125 0.14453125 0.7930908203125 0.15354567307692313 0.7967529296875 0.14453125 0.7969970703125 0.14453125 0.8006591796875 0.14453125 0.7969970703125 0.15354567307692313 0.8045654296875 0.14453125 0.8009033203125 0.14453125 0.8009033203125 0.15354567307692313 0.1407470703125 0.73046875 0.1561279296875 0.6926081730769231 0.1407470703125 0.6926081730769231 0.1717529296875 0.7310697115384616 0.1563720703125 0.7310697115384616 0.1563720703125 0.7689302884615384 0.1016845703125 0.2881610576923077 0.1092529296875 0.26953125 0.1016845703125 0.26953125 0.1131591796875 0.26953125 0.1094970703125 0.26953125 0.1094970703125 0.2881610576923077 0.9608154296875 0.23106971153846156 0.9571533203125 0.23106971153846156 0.3614501953125 0.014122596153846145 0.3614501953125 0.009915865384615419 0.3621826171875 0.009915865384615419 0.3631591796875 0.009915865384615419 0.3624267578125 0.009915865384615419 0.3624267578125 0.014122596153846145 0.3634033203125 0.009915865384615419 0.3634033203125 0.014122596153846145 0.3641357421875 0.009915865384615419 0.3651123046875 0.009915865384615419 0.3643798828125 0.009915865384615419 0.3643798828125 0.014122596153846145 0.3653564453125 0.009915865384615419 0.3653564453125 0.014122596153846145 0.3660888671875 0.009915865384615419 0.3673095703125 0.009915865384615419 0.3690185546875 0.009915865384615419 0.3673095703125 0.014122596153846145 0.3692626953125 0.009915865384615419 0.3692626953125 0.014122596153846145 0.3709716796875 0.009915865384615419 0.3712158203125 0.009915865384615419 0.3729248046875 0.009915865384615419 0.3712158203125 0.014122596153846145 0.8048095703125 0.14453125 0.8048095703125 0.15354567307692313 0.8065185546875 0.14453125 0.8087158203125 0.14453125 0.8123779296875 0.14453125 0.8087158203125 0.15354567307692313 0.7813720703125 0.13491586538461542 0.7813720703125 0.14393028846153844 0.7850341796875 0.13491586538461542 0.7852783203125 0.13491586538461542 0.7852783203125 0.14393028846153844 0.7889404296875 0.13491586538461542 0.7891845703125 0.13491586538461542 0.7928466796875 0.13491586538461542 0.7891845703125 0.14393028846153844 0.0948486328125 0.2887620192307693 0.0955810546875 0.2887620192307693 0.0948486328125 0.30739182692307687 0.8067626953125 0.15354567307692313 0.8084716796875 0.14453125 0.8067626953125 0.14453125 0.7947998046875 0.13491586538461542 0.7930908203125 0.14393028846153844 0.7930908203125 0.13491586538461542 0.7950439453125 0.13491586538461542 0.7967529296875 0.13491586538461542 0.7950439453125 0.14393028846153844 0.7969970703125 0.13491586538461542 0.8006591796875 0.13491586538461542 0.7969970703125 0.14393028846153844 0.3731689453125 0.014122596153846145 0.3748779296875 0.009915865384615419 0.3731689453125 0.009915865384615419 0.8009033203125 0.13491586538461542 0.8009033203125 0.14393028846153844 0.8026123046875 0.13491586538461542 0.1251220703125 0.6156850961538461 0.1405029296875 0.6156850961538461 0.0958251953125 0.2887620192307693 0.0965576171875 0.2887620192307693 0.0958251953125 0.30739182692307687 0.3663330078125 0.009915865384615419 0.3670654296875 0.009915865384615419 0.3663330078125 0.014122596153846145 0.3438720703125 0.005108173076923128 0.3438720703125 0.009314903846153855 0.3446044921875 0.005108173076923128 0.3448486328125 0.005108173076923128 0.3455810546875 0.005108173076923128 0.3448486328125 0.009314903846153855 0.7889404296875 0.15414663461538458 0.7813720703125 0.15414663461538458 0.1248779296875 0.26953125 0.1173095703125 0.26953125 0.1173095703125 0.2881610576923077 0.1014404296875 0.2503004807692307 0.0938720703125 0.2503004807692307 0.0938720703125 0.26893028846153844 0.8048095703125 0.14393028846153844 0.8048095703125 0.13491586538461542 0.8084716796875 0.13491586538461542 0.8087158203125 0.26893028846153844 0.8123779296875 0.2503004807692307 0.1719970703125 0.7310697115384616 0.1719970703125 0.7689302884615384 0.1873779296875 0.7310697115384616 0.0975341796875 0.2887620192307693 0.0968017578125 0.2887620192307693 0.0968017578125 0.30739182692307687 0.1134033203125 0.26953125 0.1141357421875 0.26953125 0.1134033203125 0.2881610576923077 0.1143798828125 0.26953125 0.1151123046875 0.26953125 0.1143798828125 0.2881610576923077 0.9530029296875 0.6156850961538461 0.9376220703125 0.6156850961538461 0.8123779296875 0.13491586538461542 0.8087158203125 0.14393028846153844 0.8087158203125 0.13491586538461542 0.3458251953125 0.005108173076923128 0.3465576171875 0.005108173076923128 0.3458251953125 0.009314903846153855 0.1563720703125 0.73046875 0.1563720703125 0.6926081730769231 0.1717529296875 0.6926081730769231 0.1719970703125 0.6926081730769231 0.1873779296875 0.6926081730769231 0.1719970703125 0.73046875 0.1016845703125 0.26893028846153844 0.1016845703125 0.2503004807692307 0.1092529296875 0.2503004807692307 0.1094970703125 0.2503004807692307 0.1170654296875 0.2503004807692307 0.1094970703125 0.26893028846153844 0.1173095703125 0.26893028846153844 0.1173095703125 0.2503004807692307 0.1248779296875 0.2503004807692307 0.8028564453125 0.14393028846153844 0.8028564453125 0.13491586538461542 0.8045654296875 0.13491586538461542 0.7813720703125 0.12530048076923073 0.7813720703125 0.13431490384615385 0.7850341796875 0.12530048076923073 0.1160888671875 0.26953125 0.1153564453125 0.26953125 0.1153564453125 0.2881610576923077 0.1170654296875 0.26953125 0.2615966796875 0.2118389423076923 0.2579345703125 0.23046875 0.7852783203125 0.12530048076923073 0.7852783203125 0.13431490384615385 0.7889404296875 0.12530048076923073 0.0938720703125 0.24969951923076927 0.1014404296875 0.23106971153846156 0.0938720703125 0.23106971153846156 0.1329345703125 0.7310697115384616 0.1329345703125 0.7689302884615384 0.1405029296875 0.7310697115384616 0.1876220703125 0.7689302884615384 0.1876220703125 0.7310697115384616 0.2030029296875 0.7310697115384616 0.2032470703125 0.7310697115384616 0.2186279296875 0.7310697115384616 0.2032470703125 0.7689302884615384 0.1876220703125 0.6926081730769231 0.1876220703125 0.73046875 0.2030029296875 0.6926081730769231 0.2032470703125 0.6926081730769231 0.2032470703125 0.73046875 0.2186279296875 0.6926081730769231 0.2342529296875 0.7310697115384616 0.2188720703125 0.7689302884615384 0.2188720703125 0.7310697115384616 0.2498779296875 0.7310697115384616 0.2344970703125 0.7310697115384616 0.2344970703125 0.7689302884615384 0.2342529296875 0.6926081730769231 0.2188720703125 0.73046875 0.2188720703125 0.6926081730769231 0.2498779296875 0.6926081730769231 0.2344970703125 0.6926081730769231 0.2344970703125 0.73046875 0.2655029296875 0.7310697115384616 0.2501220703125 0.7689302884615384 0.2501220703125 0.7310697115384616 0.2733154296875 0.7310697115384616 0.2657470703125 0.7310697115384616 0.2657470703125 0.7689302884615384 0.1092529296875 0.23106971153846156 0.1016845703125 0.24969951923076927 0.1016845703125 0.23106971153846156 0.2735595703125 0.7310697115384616 0.2811279296875 0.7310697115384616 0.2735595703125 0.7689302884615384 0.2501220703125 0.6926081730769231 0.2501220703125 0.73046875 0.2655029296875 0.6926081730769231 0.2657470703125 0.6926081730769231 0.2657470703125 0.73046875 0.2811279296875 0.6926081730769231 0.3468017578125 0.009314903846153855 0.3475341796875 0.005108173076923128 0.3468017578125 0.005108173076923128 0.1102294921875 0.23106971153846156 0.1094970703125 0.24969951923076927 0.1094970703125 0.23106971153846156 0.1104736328125 0.24969951923076927 0.1112060546875 0.23106971153846156 0.1104736328125 0.23106971153846156 0.1121826171875 0.23106971153846156 0.1114501953125 0.23106971153846156 0.1114501953125 0.24969951923076927 0.7891845703125 0.13431490384615385 0.7928466796875 0.12530048076923073 0.7891845703125 0.12530048076923073 0.7947998046875 0.12530048076923073 0.7930908203125 0.12530048076923073 0.7930908203125 0.13431490384615385 0.3485107421875 0.005108173076923128 0.3477783203125 0.005108173076923128 0.3477783203125 0.009314903846153855 0.3497314453125 0.009314903846153855 0.3514404296875 0.005108173076923128 0.3497314453125 0.005108173076923128 0.7950439453125 0.13431490384615385 0.7950439453125 0.12530048076923073 0.7967529296875 0.12530048076923073 0.1173095703125 0.24969951923076927 0.1248779296875 0.23106971153846156 0.1173095703125 0.23106971153846156 0.1251220703125 0.2887620192307693 0.1251220703125 0.30739182692307687 0.1326904296875 0.2887620192307693 0.2813720703125 0.7689302884615384 0.2889404296875 0.7310697115384616 0.2813720703125 0.7310697115384616 0.2891845703125 0.7310697115384616 0.2891845703125 0.7689302884615384 0.2967529296875 0.7310697115384616 0.1329345703125 0.30739182692307687 0.1405029296875 0.2887620192307693 0.1329345703125 0.2887620192307693 0.1124267578125 0.23106971153846156 0.1124267578125 0.24969951923076927 0.1131591796875 0.23106971153846156 0.3516845703125 0.009314903846153855 0.3533935546875 0.005108173076923128 0.3516845703125 0.005108173076923128 0.7908935546875 0.07722355769230771 0.7891845703125 0.08623798076923073 0.3553466796875 0.005108173076923128 0.3536376953125 0.005108173076923128 0.3536376953125 0.009314903846153855 0.8458251953125 0.08623798076923073 0.8475341796875 0.07722355769230771 0.8455810546875 0.07722355769230771 0.8438720703125 0.07722355769230771 0.3494873046875 0.005108173076923128 0.3487548828125 0.009314903846153855 0.3487548828125 0.005108173076923128 0.3555908203125 0.005108173076923128 0.3563232421875 0.005108173076923128 0.3555908203125 0.009314903846153855 0.3592529296875 0.005108173076923128 0.3575439453125 0.009314903846153855 0.3575439453125 0.005108173076923128 0.3594970703125 0.005108173076923128 0.3612060546875 0.005108173076923128 0.3594970703125 0.009314903846153855 0.1407470703125 0.30739182692307687 0.1483154296875 0.2887620192307693 0.1407470703125 0.2887620192307693 0.1485595703125 0.2887620192307693 0.1561279296875 0.2887620192307693 0.1485595703125 0.30739182692307687 0.3565673828125 0.005108173076923128 0.3565673828125 0.009314903846153855 0.3572998046875 0.005108173076923128 0.3614501953125 0.009314903846153855 0.3631591796875 0.005108173076923128 0.3614501953125 0.005108173076923128 0.3123779296875 0.7310697115384616 0.2969970703125 0.7689302884615384 0.2969970703125 0.7310697115384616 0.2967529296875 0.6926081730769231 0.2813720703125 0.6926081730769231 0.2813720703125 0.73046875 0.2969970703125 0.6926081730769231 0.2969970703125 0.73046875 0.3123779296875 0.6926081730769231 0.3126220703125 0.7310697115384616 0.3280029296875 0.7310697115384616 0.3126220703125 0.7689302884615384 0.3282470703125 0.7310697115384616 0.3282470703125 0.7689302884615384 0.3436279296875 0.7310697115384616 0.3280029296875 0.6926081730769231 0.3126220703125 0.6926081730769231 0.3126220703125 0.73046875 0.3436279296875 0.6926081730769231 0.3282470703125 0.73046875 0.3282470703125 0.6926081730769231 0.3438720703125 0.7310697115384616 0.3592529296875 0.7310697115384616 0.3438720703125 0.7689302884615384 0.3594970703125 0.7310697115384616 0.3594970703125 0.7689302884615384 0.3748779296875 0.7310697115384616 0.3592529296875 0.6926081730769231 0.3438720703125 0.6926081730769231 0.3438720703125 0.73046875 0.3594970703125 0.6926081730769231 0.3594970703125 0.73046875 0.3748779296875 0.6926081730769231 0.7969970703125 0.12530048076923073 0.7969970703125 0.13431490384615385 0.7987060546875 0.12530048076923073 0.8045654296875 0.12530048076923073 0.8009033203125 0.12530048076923073 0.8009033203125 0.13431490384615385 0.1134033203125 0.23106971153846156 0.1141357421875 0.23106971153846156 0.1134033203125 0.24969951923076927 0.1151123046875 0.23106971153846156 0.1143798828125 0.23106971153846156 0.1143798828125 0.24969951923076927 0.3634033203125 0.005108173076923128 0.3641357421875 0.005108173076923128 0.3634033203125 0.009314903846153855 0.3751220703125 0.7689302884615384 0.3751220703125 0.7310697115384616 0.3905029296875 0.7310697115384616 0.3983154296875 0.7310697115384616 0.3907470703125 0.7689302884615384 0.3907470703125 0.7310697115384616 0.3985595703125 0.7310697115384616 0.4061279296875 0.7310697115384616 0.3985595703125 0.7689302884615384 0.3905029296875 0.6926081730769231 0.3751220703125 0.6926081730769231 0.3751220703125 0.73046875 0.1251220703125 0.2881610576923077 0.1326904296875 0.26953125 0.1251220703125 0.26953125 0.8751220703125 0.6920072115384616 0.8826904296875 0.6541466346153846 0.1160888671875 0.23106971153846156 0.1153564453125 0.24969951923076927 0.1153564453125 0.23106971153846156 0.1170654296875 0.23106971153846156 0.1163330078125 0.23106971153846156 0.1163330078125 0.24969951923076927 0.9998779296875 0.6541466346153846 0.9844970703125 0.6541466346153846 0.2420654296875 0.2118389423076923 0.2344970703125 0.2118389423076923 0.8048095703125 0.13431490384615385 0.8084716796875 0.12530048076923073 0.8048095703125 0.12530048076923073 0.1329345703125 0.2881610576923077 0.1329345703125 0.26953125 0.1405029296875 0.26953125 0.1483154296875 0.26953125 0.1407470703125 0.26953125 0.1407470703125 0.2881610576923077 0.3907470703125 0.73046875 0.4061279296875 0.6926081730769231 0.3907470703125 0.6926081730769231 0.4139404296875 0.7310697115384616 0.4063720703125 0.7310697115384616 0.4063720703125 0.7689302884615384 0.1485595703125 0.2881610576923077 0.1561279296875 0.26953125 0.1485595703125 0.26953125 0.4141845703125 0.7310697115384616 0.4217529296875 0.7310697115384616 0.4141845703125 0.7689302884615384 0.1251220703125 0.2503004807692307 0.1326904296875 0.2503004807692307 0.1251220703125 0.26893028846153844 0.8087158203125 0.13431490384615385 0.8087158203125 0.12530048076923073 0.8123779296875 0.12530048076923073 0.6563720703125 0.7310697115384616 0.6717529296875 0.7310697115384616 0.8006591796875 0.12530048076923073 0.7989501953125 0.13431490384615385 0.7989501953125 0.12530048076923073 0.7813720703125 0.11568509615384615 0.7850341796875 0.11568509615384615 0.7813720703125 0.12469951923076927 0.1329345703125 0.26893028846153844 0.1329345703125 0.2503004807692307 0.1405029296875 0.2503004807692307 0.1407470703125 0.2503004807692307 0.1483154296875 0.2503004807692307 0.1407470703125 0.26893028846153844 0.1485595703125 0.26893028846153844 0.1485595703125 0.2503004807692307 0.1561279296875 0.2503004807692307 0.4219970703125 0.7310697115384616 0.4295654296875 0.7310697115384616 0.4219970703125 0.7689302884615384 0.4298095703125 0.7689302884615384 0.4373779296875 0.7310697115384616 0.4298095703125 0.7310697115384616 0.4063720703125 0.6926081730769231 0.4063720703125 0.73046875 0.4217529296875 0.6926081730769231 0.4295654296875 0.6926081730769231 0.4219970703125 0.6926081730769231 0.4219970703125 0.73046875 0.4376220703125 0.7310697115384616 0.4530029296875 0.7310697115384616 0.4376220703125 0.7689302884615384 0.7852783203125 0.11568509615384615 0.7852783203125 0.12469951923076927 0.7889404296875 0.11568509615384615 0.7891845703125 0.11568509615384615 0.7908935546875 0.11568509615384615 0.7891845703125 0.12469951923076927 0.1258544921875 0.23106971153846156 0.1251220703125 0.24969951923076927 0.1251220703125 0.23106971153846156 0.3653564453125 0.009314903846153855 0.3670654296875 0.005108173076923128 0.3653564453125 0.005108173076923128 0.3690185546875 0.005108173076923128 0.3673095703125 0.005108173076923128 0.3673095703125 0.009314903846153855 0.7911376953125 0.11568509615384615 0.7911376953125 0.12469951923076927 0.7928466796875 0.11568509615384615 0.7947998046875 0.11568509615384615 0.7930908203125 0.12469951923076927 0.7930908203125 0.11568509615384615 0.1329345703125 0.24969951923076927 0.1329345703125 0.23106971153846156 0.1405029296875 0.23106971153846156 0.1407470703125 0.23106971153846156 0.1407470703125 0.24969951923076927 0.1483154296875 0.23106971153846156 0.4298095703125 0.73046875 0.4373779296875 0.6926081730769231 0.4298095703125 0.6926081730769231 0.1561279296875 0.23106971153846156 0.1485595703125 0.24969951923076927 0.1485595703125 0.23106971153846156 0.4532470703125 0.7689302884615384 0.4532470703125 0.7310697115384616 0.4686279296875 0.7310697115384616 0.1290283203125 0.24969951923076927 0.1290283203125 0.23106971153846156 0.1326904296875 0.23106971153846156 0.3204345703125 0.6150841346153846 0.3280029296875 0.5772235576923077 0.1563720703125 0.2887620192307693 0.1563720703125 0.30739182692307687 0.1639404296875 0.2887620192307693 0.1717529296875 0.2887620192307693 0.1641845703125 0.30739182692307687 0.1641845703125 0.2887620192307693 0.1756591796875 0.2887620192307693 0.1719970703125 0.30739182692307687 0.1719970703125 0.2887620192307693 0.8126220703125 0.7310697115384616 0.8201904296875 0.7310697115384616 0.8006591796875 0.11568509615384615 0.7969970703125 0.12469951923076927 0.7969970703125 0.11568509615384615 0.1759033203125 0.30739182692307687 0.1795654296875 0.2887620192307693 0.1759033203125 0.2887620192307693 0.1834716796875 0.2887620192307693 0.1798095703125 0.30739182692307687 0.1798095703125 0.2887620192307693 0.9610595703125 0.5387620192307692 0.9686279296875 0.5387620192307692 0.4376220703125 0.6926081730769231 0.4376220703125 0.73046875 0.4451904296875 0.6926081730769231 0.4686279296875 0.6926081730769231 0.4532470703125 0.6926081730769231 0.4532470703125 0.73046875 0.4688720703125 0.7310697115384616 0.4688720703125 0.7689302884615384 0.4842529296875 0.7310697115384616 0.4530029296875 0.6926081730769231 0.4454345703125 0.6926081730769231 0.4454345703125 0.73046875 0.1639404296875 0.26953125 0.1563720703125 0.2881610576923077 0.1563720703125 0.26953125 0.1641845703125 0.26953125 0.1717529296875 0.26953125 0.1641845703125 0.2881610576923077 0.1795654296875 0.26953125 0.1719970703125 0.2881610576923077 0.1719970703125 0.26953125 0.1798095703125 0.26953125 0.1873779296875 0.26953125 0.1798095703125 0.2881610576923077 0.1563720703125 0.2503004807692307 0.1563720703125 0.26893028846153844 0.1639404296875 0.2503004807692307 0.4844970703125 0.7689302884615384 0.4920654296875 0.7310697115384616 0.4844970703125 0.7310697115384616 0.4998779296875 0.7310697115384616 0.4923095703125 0.7310697115384616 0.4923095703125 0.7689302884615384 0.1717529296875 0.2503004807692307 0.1641845703125 0.26893028846153844 0.1641845703125 0.2503004807692307 0.1719970703125 0.2503004807692307 0.1795654296875 0.2503004807692307 0.1719970703125 0.26893028846153844 0.4688720703125 0.73046875 0.4688720703125 0.6926081730769231 0.4764404296875 0.6926081730769231 0.4766845703125 0.6926081730769231 0.4766845703125 0.73046875 0.4842529296875 0.6926081730769231 0.4844970703125 0.6926081730769231 0.4998779296875 0.6926081730769231 0.4844970703125 0.73046875 0.5076904296875 0.7310697115384616 0.5001220703125 0.7689302884615384 0.5001220703125 0.7310697115384616 0.5079345703125 0.7310697115384616 0.5155029296875 0.7310697115384616 0.5079345703125 0.7689302884615384 0.5233154296875 0.7310697115384616 0.5157470703125 0.7310697115384616 0.5157470703125 0.7689302884615384 0.1873779296875 0.2503004807692307 0.1798095703125 0.2503004807692307 0.1798095703125 0.26893028846153844 0.5235595703125 0.7689302884615384 0.5311279296875 0.7310697115384616 0.5235595703125 0.7310697115384616 0.5001220703125 0.6926081730769231 0.5155029296875 0.6926081730769231 0.5001220703125 0.73046875 0.5233154296875 0.6926081730769231 0.5157470703125 0.73046875 0.5157470703125 0.6926081730769231 0.1563720703125 0.23106971153846156 0.1639404296875 0.23106971153846156 0.1563720703125 0.24969951923076927 0.1641845703125 0.23106971153846156 0.1641845703125 0.24969951923076927 0.1717529296875 0.23106971153846156 0.1795654296875 0.23106971153846156 0.1719970703125 0.23106971153846156 0.1719970703125 0.24969951923076927 0.5235595703125 0.6926081730769231 0.5235595703125 0.73046875 0.5311279296875 0.6926081730769231 0.5389404296875 0.7310697115384616 0.5313720703125 0.7310697115384616 0.5313720703125 0.7689302884615384 0.5391845703125 0.7310697115384616 0.5391845703125 0.7689302884615384 0.5467529296875 0.7310697115384616 0.5545654296875 0.7310697115384616 0.5469970703125 0.7310697115384616 0.5469970703125 0.7689302884615384 0.1873779296875 0.23106971153846156 0.1798095703125 0.24969951923076927 0.1798095703125 0.23106971153846156 0.5548095703125 0.7310697115384616 0.5623779296875 0.7310697115384616 0.5548095703125 0.7689302884615384 0.5389404296875 0.6926081730769231 0.5313720703125 0.73046875 0.5313720703125 0.6926081730769231 0.1876220703125 0.2887620192307693 0.1951904296875 0.2887620192307693 0.1876220703125 0.30739182692307687 0.6641845703125 0.6920072115384616 0.6717529296875 0.6541466346153846 0.2030029296875 0.2887620192307693 0.1954345703125 0.2887620192307693 0.1954345703125 0.30739182692307687 0.5469970703125 0.6926081730769231 0.5469970703125 0.73046875 0.5623779296875 0.6926081730769231 0.5780029296875 0.7310697115384616 0.5626220703125 0.7310697115384616 0.5626220703125 0.7689302884615384 0.5936279296875 0.7310697115384616 0.5782470703125 0.7689302884615384 0.5782470703125 0.7310697115384616 0.5626220703125 0.6926081730769231 0.5780029296875 0.6926081730769231 0.5626220703125 0.73046875 0.5467529296875 0.6926081730769231 0.5391845703125 0.73046875 0.5391845703125 0.6926081730769231 0.2032470703125 0.2887620192307693 0.2108154296875 0.2887620192307693 0.2032470703125 0.30739182692307687 0.5782470703125 0.6926081730769231 0.5782470703125 0.73046875 0.5858154296875 0.6926081730769231 0.6092529296875 0.7310697115384616 0.5938720703125 0.7310697115384616 0.5938720703125 0.7689302884615384 0.6094970703125 0.7310697115384616 0.6094970703125 0.7689302884615384 0.6248779296875 0.7310697115384616 0.6092529296875 0.6926081730769231 0.5938720703125 0.6926081730769231 0.5938720703125 0.73046875 0.6248779296875 0.6926081730769231 0.6094970703125 0.73046875 0.6094970703125 0.6926081730769231 0.6251220703125 0.7310697115384616 0.6405029296875 0.7310697115384616 0.6251220703125 0.7689302884615384 0.5936279296875 0.6926081730769231 0.5860595703125 0.73046875 0.5860595703125 0.6926081730769231 0.2110595703125 0.2887620192307693 0.2186279296875 0.2887620192307693 0.2110595703125 0.30739182692307687 0.1837158203125 0.2887620192307693 0.1837158203125 0.30739182692307687 0.1873779296875 0.2887620192307693 0.6251220703125 0.73046875 0.6326904296875 0.6926081730769231 0.1876220703125 0.26953125 0.1876220703125 0.2881610576923077 0.1951904296875 0.26953125 0.1954345703125 0.26953125 0.2030029296875 0.26953125 0.1954345703125 0.2881610576923077 0.2069091796875 0.26953125 0.2032470703125 0.2881610576923077 0.2032470703125 0.26953125 0.2071533203125 0.26953125 0.2108154296875 0.26953125 0.2071533203125 0.2881610576923077 0.2186279296875 0.26953125 0.2110595703125 0.26953125 0.2110595703125 0.2881610576923077 0.8009033203125 0.12469951923076927 0.8045654296875 0.11568509615384615 0.8009033203125 0.11568509615384615 0.1876220703125 0.2503004807692307 0.1876220703125 0.26893028846153844 0.1912841796875 0.2503004807692307 0.2030029296875 0.2503004807692307 0.1954345703125 0.26893028846153844 0.1954345703125 0.2503004807692307 0.6407470703125 0.7689302884615384 0.6407470703125 0.7310697115384616 0.6561279296875 0.7310697115384616 0.6251220703125 0.6926081730769231 0.6407470703125 0.73046875 0.6407470703125 0.6926081730769231 0.6561279296875 0.6926081730769231 0.6563720703125 0.7689302884615384 0.2032470703125 0.2503004807692307 0.2108154296875 0.2503004807692307 0.2032470703125 0.26893028846153844 0.8516845703125 0.7689302884615384 0.8592529296875 0.7310697115384616 0.2186279296875 0.2503004807692307 0.2110595703125 0.2503004807692307 0.2110595703125 0.26893028846153844 0.3126220703125 0.38431490384615385 0.3201904296875 0.34645432692307687 0.1951904296875 0.23106971153846156 0.1876220703125 0.23106971153846156 0.1876220703125 0.24969951923076927 0.1951904296875 0.2503004807692307 0.1915283203125 0.2503004807692307 0.1915283203125 0.26893028846153844 0.1954345703125 0.23106971153846156 0.2030029296875 0.23106971153846156 0.1954345703125 0.24969951923076927 0.8516845703125 0.5766225961538461 0.8592529296875 0.5387620192307692 0.2032470703125 0.23106971153846156 0.2108154296875 0.23106971153846156 0.2032470703125 0.24969951923076927 0.9219970703125 0.4227764423076923 0.9295654296875 0.3849158653846154 0.2186279296875 0.23106971153846156 0.2110595703125 0.23106971153846156 0.2110595703125 0.24969951923076927 0.3829345703125 0.5766225961538461 0.3905029296875 0.5387620192307692 0.2188720703125 0.2887620192307693 0.2264404296875 0.2887620192307693 0.2188720703125 0.30739182692307687 0.6329345703125 0.6926081730769231 0.6405029296875 0.6926081730769231 0.6329345703125 0.73046875 0.6795654296875 0.7310697115384616 0.6719970703125 0.7310697115384616 0.6719970703125 0.7689302884615384 0.2342529296875 0.2887620192307693 0.2266845703125 0.2887620192307693 0.2266845703125 0.30739182692307687 0.2579345703125 0.6535456730769231 0.2655029296875 0.6156850961538461 0.2420654296875 0.2887620192307693 0.2344970703125 0.2887620192307693 0.2344970703125 0.30739182692307687 0.2498779296875 0.2887620192307693 0.2423095703125 0.30739182692307687 0.2423095703125 0.2887620192307693 0.2225341796875 0.26953125 0.2188720703125 0.2881610576923077 0.2188720703125 0.26953125 0.7950439453125 0.12469951923076927 0.7950439453125 0.11568509615384615 0.7967529296875 0.11568509615384615 0.2227783203125 0.26953125 0.2264404296875 0.26953125 0.2227783203125 0.2881610576923077 0.2266845703125 0.26953125 0.2342529296875 0.26953125 0.2266845703125 0.2881610576923077 0.2344970703125 0.26953125 0.2420654296875 0.26953125 0.2344970703125 0.2881610576923077 0.2459716796875 0.26953125 0.2423095703125 0.26953125 0.2423095703125 0.2881610576923077 0.2462158203125 0.26953125 0.2498779296875 0.26953125 0.2462158203125 0.2881610576923077 0.8048095703125 0.11568509615384615 0.8048095703125 0.12469951923076927 0.8084716796875 0.11568509615384615 0.8104248046875 0.11568509615384615 0.8087158203125 0.11568509615384615 0.8087158203125 0.12469951923076927 0.8106689453125 0.11568509615384615 0.8106689453125 0.12469951923076927 0.8123779296875 0.11568509615384615 0.3692626953125 0.009314903846153855 0.3692626953125 0.005108173076923128 0.3709716796875 0.005108173076923128 0.3651123046875 0.005108173076923128 0.3643798828125 0.005108173076923128 0.3643798828125 0.009314903846153855 0.7813720703125 0.11508413461538458 0.7850341796875 0.10606971153846156 0.7813720703125 0.10606971153846156 0.7869873046875 0.10606971153846156 0.7852783203125 0.10606971153846156 0.7852783203125 0.11508413461538458 0.2188720703125 0.26893028846153844 0.2225341796875 0.2503004807692307 0.2188720703125 0.2503004807692307 0.2342529296875 0.2503004807692307 0.2266845703125 0.26893028846153844 0.2266845703125 0.2503004807692307 0.2264404296875 0.2503004807692307 0.2227783203125 0.2503004807692307 0.2227783203125 0.26893028846153844 0.2344970703125 0.26893028846153844 0.2344970703125 0.2503004807692307 0.2381591796875 0.2503004807692307 0.6798095703125 0.7310697115384616 0.6798095703125 0.7689302884615384 0.6873779296875 0.7310697115384616 0.6639404296875 0.6926081730769231 0.6563720703125 0.6926081730769231 0.6563720703125 0.73046875 0.2423095703125 0.2503004807692307 0.2423095703125 0.26893028846153844 0.2498779296875 0.2503004807692307 0.2264404296875 0.23106971153846156 0.2188720703125 0.23106971153846156 0.2188720703125 0.24969951923076927 0.2342529296875 0.23106971153846156 0.2266845703125 0.24969951923076927 0.2266845703125 0.23106971153846156 0.2344970703125 0.23106971153846156 0.2420654296875 0.23106971153846156 0.2344970703125 0.24969951923076927 0.2498779296875 0.23106971153846156 0.2423095703125 0.24969951923076927 0.2423095703125 0.23106971153846156 0.2501220703125 0.2887620192307693 0.2576904296875 0.2887620192307693 0.2501220703125 0.30739182692307687 0.2655029296875 0.2887620192307693 0.2579345703125 0.30739182692307687 0.2579345703125 0.2887620192307693 0.2657470703125 0.2887620192307693 0.2733154296875 0.2887620192307693 0.2657470703125 0.30739182692307687 0.2811279296875 0.2887620192307693 0.2735595703125 0.30739182692307687 0.2735595703125 0.2887620192307693 0.2420654296875 0.2503004807692307 0.2384033203125 0.2503004807692307 0.2384033203125 0.26893028846153844 0.7928466796875 0.10606971153846156 0.7891845703125 0.11508413461538458 0.7891845703125 0.10606971153846156 0.2501220703125 0.26953125 0.2537841796875 0.26953125 0.2501220703125 0.2881610576923077 0.2540283203125 0.26953125 0.2540283203125 0.2881610576923077 0.2576904296875 0.26953125 0.2615966796875 0.26953125 0.2579345703125 0.26953125 0.2579345703125 0.2881610576923077 0.7967529296875 0.10606971153846156 0.7930908203125 0.11508413461538458 0.7930908203125 0.10606971153846156 0.8006591796875 0.10606971153846156 0.7969970703125 0.10606971153846156 0.7969970703125 0.11508413461538458 0.2657470703125 0.2881610576923077 0.2657470703125 0.26953125 0.2733154296875 0.26953125 0.2811279296875 0.26953125 0.2735595703125 0.26953125 0.2735595703125 0.2881610576923077 0.2655029296875 0.26953125 0.2618408203125 0.26953125 0.2618408203125 0.2881610576923077 0.2501220703125 0.2503004807692307 0.2537841796875 0.2503004807692307 0.2501220703125 0.26893028846153844 0.2579345703125 0.2503004807692307 0.2579345703125 0.26893028846153844 0.2655029296875 0.2503004807692307 0.6641845703125 0.73046875 0.6717529296875 0.6926081730769231 0.6641845703125 0.6926081730769231 0.6873779296875 0.6926081730769231 0.6719970703125 0.73046875 0.6719970703125 0.6926081730769231 0.2657470703125 0.26893028846153844 0.2657470703125 0.2503004807692307 0.2733154296875 0.2503004807692307 0.2735595703125 0.2503004807692307 0.2811279296875 0.2503004807692307 0.2735595703125 0.26893028846153844 0.2501220703125 0.24969951923076927 0.2501220703125 0.23106971153846156 0.2576904296875 0.23106971153846156 0.2655029296875 0.23106971153846156 0.2579345703125 0.24969951923076927 0.2579345703125 0.23106971153846156 0.2657470703125 0.23106971153846156 0.2657470703125 0.24969951923076927 0.2733154296875 0.23106971153846156 0.2811279296875 0.23106971153846156 0.2735595703125 0.23106971153846156 0.2735595703125 0.24969951923076927 0.2889404296875 0.2887620192307693 0.2813720703125 0.30739182692307687 0.2813720703125 0.2887620192307693 0.2891845703125 0.2887620192307693 0.2967529296875 0.2887620192307693 0.2891845703125 0.30739182692307687 0.2576904296875 0.2503004807692307 0.2540283203125 0.2503004807692307 0.2540283203125 0.26893028846153844 0.8009033203125 0.10606971153846156 0.8045654296875 0.10606971153846156 0.8009033203125 0.11508413461538458 0.2969970703125 0.2887620192307693 0.3006591796875 0.2887620192307693 0.2969970703125 0.30739182692307687 0.3009033203125 0.2887620192307693 0.3045654296875 0.2887620192307693 0.3009033203125 0.30739182692307687 0.3048095703125 0.2887620192307693 0.3123779296875 0.2887620192307693 0.3048095703125 0.30739182692307687 0.6876220703125 0.7689302884615384 0.6876220703125 0.7310697115384616 0.6951904296875 0.7310697115384616 0.2813720703125 0.26953125 0.2889404296875 0.26953125 0.2813720703125 0.2881610576923077 0.2891845703125 0.2881610576923077 0.2891845703125 0.26953125 0.2967529296875 0.26953125 0.7872314453125 0.11508413461538458 0.7872314453125 0.10606971153846156 0.7889404296875 0.10606971153846156 0.8065185546875 0.10606971153846156 0.8048095703125 0.10606971153846156 0.8048095703125 0.11508413461538458 0.8087158203125 0.11508413461538458 0.8123779296875 0.10606971153846156 0.8087158203125 0.10606971153846156 0.2969970703125 0.2881610576923077 0.2969970703125 0.26953125 0.3045654296875 0.26953125 0.3084716796875 0.26953125 0.3048095703125 0.2881610576923077 0.3048095703125 0.26953125 0.2813720703125 0.26893028846153844 0.2889404296875 0.2503004807692307 0.2813720703125 0.2503004807692307 0.2967529296875 0.2503004807692307 0.2891845703125 0.26893028846153844 0.2891845703125 0.2503004807692307 0.3045654296875 0.2503004807692307 0.2969970703125 0.2503004807692307 0.2969970703125 0.26893028846153844 0.3048095703125 0.2503004807692307 0.3123779296875 0.2503004807692307 0.3048095703125 0.26893028846153844 0.2813720703125 0.24969951923076927 0.2813720703125 0.23106971153846156 0.2889404296875 0.23106971153846156 0.2891845703125 0.23106971153846156 0.2967529296875 0.23106971153846156 0.2891845703125 0.24969951923076927 0.7813720703125 0.10546875 0.7813720703125 0.09645432692307687 0.7850341796875 0.09645432692307687 0.7032470703125 0.7310697115384616 0.7032470703125 0.7689302884615384 0.7186279296875 0.7310697115384616 0.7030029296875 0.7310697115384616 0.6954345703125 0.7310697115384616 0.6954345703125 0.7689302884615384 0.6876220703125 0.6926081730769231 0.6876220703125 0.73046875 0.6951904296875 0.6926081730769231 0.7030029296875 0.6926081730769231 0.6954345703125 0.6926081730769231 0.6954345703125 0.73046875 0.3045654296875 0.23106971153846156 0.2969970703125 0.24969951923076927 0.2969970703125 0.23106971153846156 0.7032470703125 0.6926081730769231 0.7108154296875 0.6926081730769231 0.7032470703125 0.73046875 0.7186279296875 0.6926081730769231 0.7110595703125 0.73046875 0.7110595703125 0.6926081730769231 0.7188720703125 0.7310697115384616 0.7264404296875 0.7310697115384616 0.7188720703125 0.7689302884615384 0.7498779296875 0.7310697115384616 0.7344970703125 0.7689302884615384 0.7344970703125 0.7310697115384616 0.7342529296875 0.6926081730769231 0.7188720703125 0.6926081730769231 0.7188720703125 0.73046875 0.7344970703125 0.6926081730769231 0.7344970703125 0.73046875 0.7498779296875 0.6926081730769231 0.7342529296875 0.7310697115384616 0.7266845703125 0.7310697115384616 0.7266845703125 0.7689302884615384 0.3123779296875 0.23106971153846156 0.3048095703125 0.24969951923076927 0.3048095703125 0.23106971153846156 0.7655029296875 0.7310697115384616 0.7501220703125 0.7689302884615384 0.7501220703125 0.7310697115384616 0.7811279296875 0.7310697115384616 0.7657470703125 0.7310697115384616 0.7657470703125 0.7689302884615384 0.7576904296875 0.6926081730769231 0.7501220703125 0.73046875 0.7501220703125 0.6926081730769231 0.3201904296875 0.2887620192307693 0.3126220703125 0.2887620192307693 0.3126220703125 0.30739182692307687 0.3123779296875 0.26953125 0.3087158203125 0.2881610576923077 0.3087158203125 0.26953125 0.3204345703125 0.30739182692307687 0.3240966796875 0.2887620192307693 0.3204345703125 0.2887620192307693 0.7579345703125 0.6926081730769231 0.7579345703125 0.73046875 0.7655029296875 0.6926081730769231 0.7657470703125 0.6926081730769231 0.7811279296875 0.6926081730769231 0.7657470703125 0.73046875 0.7889404296875 0.7310697115384616 0.7813720703125 0.7689302884615384 0.7813720703125 0.7310697115384616 0.7891845703125 0.7310697115384616 0.7967529296875 0.7310697115384616 0.7891845703125 0.7689302884615384 0.8045654296875 0.7310697115384616 0.7969970703125 0.7310697115384616 0.7969970703125 0.7689302884615384 0.8048095703125 0.7310697115384616 0.8123779296875 0.7310697115384616 0.8048095703125 0.7689302884615384 0.7813720703125 0.6926081730769231 0.7813720703125 0.73046875 0.7889404296875 0.6926081730769231 0.7967529296875 0.6926081730769231 0.7891845703125 0.6926081730769231 0.7891845703125 0.73046875 0.7969970703125 0.6926081730769231 0.8045654296875 0.6926081730769231 0.7969970703125 0.73046875 0.8048095703125 0.6926081730769231 0.3280029296875 0.2887620192307693 0.3243408203125 0.2887620192307693 0.3243408203125 0.30739182692307687 0.8126220703125 0.7689302884615384 0.8282470703125 0.7310697115384616 0.8436279296875 0.7310697115384616 0.8282470703125 0.7689302884615384 0.3358154296875 0.2887620192307693 0.3282470703125 0.30739182692307687 0.3282470703125 0.2887620192307693 0.3360595703125 0.30739182692307687 0.3360595703125 0.2887620192307693 0.3397216796875 0.2887620192307693 0.3201904296875 0.26953125 0.3126220703125 0.2881610576923077 0.3126220703125 0.26953125 0.8126220703125 0.73046875 0.8126220703125 0.6926081730769231 0.8280029296875 0.6926081730769231 0.8280029296875 0.7310697115384616 0.8204345703125 0.7310697115384616 0.8204345703125 0.7689302884615384 0.3280029296875 0.26953125 0.3204345703125 0.2881610576923077 0.3204345703125 0.26953125 0.8282470703125 0.6926081730769231 0.8358154296875 0.6926081730769231 0.8282470703125 0.73046875 0.8436279296875 0.6926081730769231 0.8360595703125 0.6926081730769231 0.8360595703125 0.73046875 0.8438720703125 0.7689302884615384 0.8514404296875 0.7310697115384616 0.8438720703125 0.7310697115384616 0.8594970703125 0.7310697115384616 0.8748779296875 0.7310697115384616 0.8594970703125 0.7689302884615384 0.3282470703125 0.2881610576923077 0.3282470703125 0.26953125 0.3358154296875 0.26953125 0.1094970703125 0.3458533653846154 0.1170654296875 0.30799278846153844 0.4571533203125 0.09645432692307687 0.4608154296875 0.09645432692307687 0.8377685546875 0.13491586538461542 0.8360595703125 0.14393028846153844 0.3729248046875 0.005108173076923128 0.3712158203125 0.005108173076923128 0.3712158203125 0.009314903846153855 0.1260986328125 0.23106971153846156 0.1268310546875 0.23106971153846156 0.1260986328125 0.24969951923076927 0.3731689453125 0.005108173076923128 0.3739013671875 0.005108173076923128 0.3731689453125 0.009314903846153855 0.7852783203125 0.10546875 0.7852783203125 0.09645432692307687 0.7889404296875 0.09645432692307687 0.7891845703125 0.09645432692307687 0.7928466796875 0.09645432692307687 0.7891845703125 0.10546875 0.3360595703125 0.2881610576923077 0.3360595703125 0.26953125 0.3436279296875 0.26953125 0.3201904296875 0.2503004807692307 0.3126220703125 0.2503004807692307 0.3126220703125 0.26893028846153844 0.7930908203125 0.10546875 0.7967529296875 0.09645432692307687 0.7930908203125 0.09645432692307687 0.8006591796875 0.09645432692307687 0.7969970703125 0.09645432692307687 0.7969970703125 0.10546875 0.8516845703125 0.7310697115384616 0.8438720703125 0.73046875 0.8514404296875 0.6926081730769231 0.8438720703125 0.6926081730769231 0.3280029296875 0.2503004807692307 0.3204345703125 0.26893028846153844 0.3204345703125 0.2503004807692307 0.3282470703125 0.26893028846153844 0.3282470703125 0.2503004807692307 0.3358154296875 0.2503004807692307 0.3436279296875 0.2503004807692307 0.3360595703125 0.26893028846153844 0.3360595703125 0.2503004807692307 0.8067626953125 0.11508413461538458 0.8067626953125 0.10606971153846156 0.8084716796875 0.10606971153846156 0.8009033203125 0.09645432692307687 0.8009033203125 0.10546875 0.8045654296875 0.09645432692307687 0.3438720703125 0.00030048076923072653 0.3455810546875 0.00030048076923072653 0.3438720703125 0.004507211538461564 0.1270751953125 0.24969951923076927 0.1270751953125 0.23106971153846156 0.1278076171875 0.23106971153846156 0.3201904296875 0.23106971153846156 0.3126220703125 0.23106971153846156 0.3126220703125 0.24969951923076927 0.3399658203125 0.2887620192307693 0.3436279296875 0.2887620192307693 0.3399658203125 0.30739182692307687 0.3240966796875 0.23106971153846156 0.3204345703125 0.24969951923076927 0.3204345703125 0.23106971153846156 0.3243408203125 0.23106971153846156 0.3243408203125 0.24969951923076927 0.3280029296875 0.23106971153846156 0.8516845703125 0.73046875 0.8592529296875 0.6926081730769231 0.8516845703125 0.6926081730769231 0.3358154296875 0.23106971153846156 0.3282470703125 0.23106971153846156 0.3282470703125 0.24969951923076927 0.3360595703125 0.23106971153846156 0.3360595703125 0.24969951923076927 0.3436279296875 0.23106971153846156 0.3514404296875 0.2887620192307693 0.3438720703125 0.30739182692307687 0.3438720703125 0.2887620192307693 0.3516845703125 0.30739182692307687 0.3516845703125 0.2887620192307693 0.3553466796875 0.2887620192307693 0.3670654296875 0.2887620192307693 0.3594970703125 0.30739182692307687 0.3594970703125 0.2887620192307693 0.8594970703125 0.73046875 0.8594970703125 0.6926081730769231 0.8670654296875 0.6926081730769231 0.3673095703125 0.2887620192307693 0.3748779296875 0.2887620192307693 0.3673095703125 0.30739182692307687 0.3555908203125 0.30739182692307687 0.3555908203125 0.2887620192307693 0.3592529296875 0.2887620192307693 0.8084716796875 0.09645432692307687 0.8048095703125 0.10546875 0.8048095703125 0.09645432692307687 0.8087158203125 0.09645432692307687 0.8123779296875 0.09645432692307687 0.8087158203125 0.10546875 0.7830810546875 0.08683894230769229 0.7813720703125 0.09585336538461542 0.7813720703125 0.08683894230769229 0.3475341796875 0.00030048076923072653 0.3458251953125 0.004507211538461564 0.3458251953125 0.00030048076923072653 0.8751220703125 0.7689302884615384 0.8751220703125 0.7310697115384616 0.8905029296875 0.7310697115384616 0.8907470703125 0.7310697115384616 0.8907470703125 0.7689302884615384 0.9061279296875 0.7310697115384616 0.8673095703125 0.73046875 0.8748779296875 0.6926081730769231 0.8673095703125 0.6926081730769231 0.3438720703125 0.26953125 0.3438720703125 0.2881610576923077 0.3514404296875 0.26953125 0.3516845703125 0.2881610576923077 0.3553466796875 0.26953125 0.3516845703125 0.26953125 0.7850341796875 0.08683894230769229 0.7833251953125 0.09585336538461542 0.7833251953125 0.08683894230769229 0.7852783203125 0.08683894230769229 0.7869873046875 0.08683894230769229 0.7852783203125 0.09585336538461542 0.7891845703125 0.08683894230769229 0.7928466796875 0.08683894230769229 0.7891845703125 0.09585336538461542 0.3594970703125 0.2881610576923077 0.3594970703125 0.26953125 0.3670654296875 0.26953125 0.8751220703125 0.6926081730769231 0.8751220703125 0.73046875 0.8826904296875 0.6926081730769231 0.8905029296875 0.6926081730769231 0.8829345703125 0.6926081730769231 0.8829345703125 0.73046875 0.3748779296875 0.26953125 0.3673095703125 0.2881610576923077 0.3673095703125 0.26953125 0.3438720703125 0.2503004807692307 0.3438720703125 0.26893028846153844 0.3514404296875 0.2503004807692307 0.3516845703125 0.26893028846153844 0.3516845703125 0.2503004807692307 0.3592529296875 0.2503004807692307 0.3594970703125 0.2503004807692307 0.3594970703125 0.26893028846153844 0.3670654296875 0.2503004807692307 0.8907470703125 0.73046875 0.9061279296875 0.6926081730769231 0.8907470703125 0.6926081730769231 0.9063720703125 0.7310697115384616 0.9063720703125 0.7689302884615384 0.9217529296875 0.7310697115384616 0.9219970703125 0.7689302884615384 0.9219970703125 0.7310697115384616 0.9373779296875 0.7310697115384616 0.9217529296875 0.6926081730769231 0.9063720703125 0.73046875 0.9063720703125 0.6926081730769231 0.3673095703125 0.26893028846153844 0.3673095703125 0.2503004807692307 0.3748779296875 0.2503004807692307 0.3592529296875 0.26953125 0.3555908203125 0.2881610576923077 0.3555908203125 0.26953125 0.7266845703125 0.23106971153846156 0.7303466796875 0.23106971153846156 0.7889404296875 0.08683894230769229 0.7872314453125 0.09585336538461542 0.7872314453125 0.08683894230769229 0.7930908203125 0.08683894230769229 0.7947998046875 0.08683894230769229 0.7930908203125 0.09585336538461542 0.7969970703125 0.08683894230769229 0.7969970703125 0.09585336538461542 0.8006591796875 0.08683894230769229 0.3438720703125 0.24969951923076927 0.3438720703125 0.23106971153846156 0.3514404296875 0.23106971153846156 0.3516845703125 0.23106971153846156 0.3516845703125 0.24969951923076927 0.3592529296875 0.23106971153846156 0.1287841796875 0.23106971153846156 0.1280517578125 0.23106971153846156 0.1280517578125 0.24969951923076927 0.9373779296875 0.6926081730769231 0.9219970703125 0.73046875 0.9219970703125 0.6926081730769231 0.3477783203125 0.004507211538461564 0.3494873046875 0.00030048076923072653 0.3477783203125 0.00030048076923072653 0.3497314453125 0.00030048076923072653 0.3497314453125 0.004507211538461564 0.3514404296875 0.00030048076923072653 0.9376220703125 0.7689302884615384 0.9530029296875 0.7310697115384616 0.9376220703125 0.7310697115384616 0.3594970703125 0.23106971153846156 0.3670654296875 0.23106971153846156 0.3594970703125 0.24969951923076927 0.3673095703125 0.24969951923076927 0.3673095703125 0.23106971153846156 0.3709716796875 0.23106971153846156 0.3712158203125 0.23106971153846156 0.3748779296875 0.23106971153846156 0.3712158203125 0.24969951923076927 0.3741455078125 0.009314903846153855 0.3741455078125 0.005108173076923128 0.3748779296875 0.005108173076923128 0.3516845703125 0.004507211538461564 0.3516845703125 0.00030048076923072653 0.3524169921875 0.00030048076923072653 0.7950439453125 0.08683894230769229 0.7967529296875 0.08683894230769229 0.7950439453125 0.09585336538461542 0.8009033203125 0.08683894230769229 0.8009033203125 0.09585336538461542 0.8045654296875 0.08683894230769229 0.8048095703125 0.08683894230769229 0.8048095703125 0.09585336538461542 0.8084716796875 0.08683894230769229 0.3751220703125 0.30739182692307687 0.3826904296875 0.2887620192307693 0.3751220703125 0.2887620192307693 0.3905029296875 0.2887620192307693 0.3829345703125 0.30739182692307687 0.3829345703125 0.2887620192307693 0.3907470703125 0.30739182692307687 0.3907470703125 0.2887620192307693 0.3983154296875 0.2887620192307693 0.3026123046875 0.09645432692307687 0.3018798828125 0.11508413461538458 0.3536376953125 0.004507211538461564 0.3553466796875 0.00030048076923072653 0.3536376953125 0.00030048076923072653 0.3533935546875 0.00030048076923072653 0.3526611328125 0.00030048076923072653 0.3526611328125 0.004507211538461564 0.3985595703125 0.2887620192307693 0.3985595703125 0.30739182692307687 0.4022216796875 0.2887620192307693 0.3751220703125 0.2881610576923077 0.3826904296875 0.26953125 0.3751220703125 0.26953125 0.3829345703125 0.26953125 0.3905029296875 0.26953125 0.3829345703125 0.2881610576923077 0.4061279296875 0.2887620192307693 0.4024658203125 0.30739182692307687 0.4024658203125 0.2887620192307693 0.8087158203125 0.09585336538461542 0.8087158203125 0.08683894230769229 0.8104248046875 0.08683894230769229 0.7813720703125 0.07722355769230771 0.7850341796875 0.07722355769230771 0.7813720703125 0.08623798076923073 0.8123779296875 0.08683894230769229 0.8106689453125 0.08683894230769229 0.8106689453125 0.09585336538461542 0.3555908203125 0.00030048076923072653 0.3572998046875 0.00030048076923072653 0.3555908203125 0.004507211538461564 0.3592529296875 0.00030048076923072653 0.3575439453125 0.004507211538461564 0.3575439453125 0.00030048076923072653 0.3594970703125 0.00030048076923072653 0.3594970703125 0.004507211538461564 0.3612060546875 0.00030048076923072653 0.3907470703125 0.26953125 0.3914794921875 0.26953125 0.3907470703125 0.2881610576923077 0.3917236328125 0.2881610576923077 0.3924560546875 0.26953125 0.3917236328125 0.26953125 0.3614501953125 0.004507211538461564 0.3614501953125 0.00030048076923072653 0.3631591796875 0.00030048076923072653 0.4061279296875 0.26953125 0.3985595703125 0.26953125 0.3985595703125 0.2881610576923077 0.3634033203125 0.00030048076923072653 0.3651123046875 0.00030048076923072653 0.3634033203125 0.004507211538461564 0.7852783203125 0.08623798076923073 0.7852783203125 0.07722355769230771 0.7889404296875 0.07722355769230771 0.5584716796875 0.15414663461538458 0.5548095703125 0.15414663461538458 0.3670654296875 0.00030048076923072653 0.3653564453125 0.004507211538461564 0.3653564453125 0.00030048076923072653 0.9532470703125 0.7689302884615384 0.9686279296875 0.7310697115384616 0.9532470703125 0.7310697115384616 0.9451904296875 0.6926081730769231 0.9376220703125 0.6926081730769231 0.9376220703125 0.73046875 0.9532470703125 0.73046875 0.9686279296875 0.6926081730769231 0.9532470703125 0.6926081730769231 0.3751220703125 0.2503004807692307 0.3751220703125 0.26893028846153844 0.3826904296875 0.2503004807692307 0.3829345703125 0.2503004807692307 0.3829345703125 0.26893028846153844 0.3905029296875 0.2503004807692307 0.3907470703125 0.2503004807692307 0.3907470703125 0.26893028846153844 0.3983154296875 0.2503004807692307 0.4061279296875 0.2503004807692307 0.3985595703125 0.26893028846153844 0.3985595703125 0.2503004807692307 0.7891845703125 0.07722355769230771 0.7911376953125 0.07722355769230771 0.7928466796875 0.07722355769230771 0.7911376953125 0.08623798076923073 0.7930908203125 0.07722355769230771 0.7930908203125 0.08623798076923073 0.7967529296875 0.07722355769230771 0.4998779296875 0.11568509615384615 0.4962158203125 0.11568509615384615 0.7987060546875 0.07722355769230771 0.7969970703125 0.08623798076923073 0.7969970703125 0.07722355769230771 0.7989501953125 0.07722355769230771 0.8006591796875 0.07722355769230771 0.7989501953125 0.08623798076923073 0.8009033203125 0.07722355769230771 0.8045654296875 0.07722355769230771 0.8009033203125 0.08623798076923073 0.3927001953125 0.26953125 0.3927001953125 0.2881610576923077 0.3934326171875 0.26953125 0.3936767578125 0.2881610576923077 0.3936767578125 0.26953125 0.3944091796875 0.26953125 0.9688720703125 0.7689302884615384 0.9688720703125 0.7310697115384616 0.9842529296875 0.7310697115384616 0.9998779296875 0.7310697115384616 0.9844970703125 0.7689302884615384 0.9844970703125 0.7310697115384616 0.3751220703125 0.24969951923076927 0.3751220703125 0.23106971153846156 0.3826904296875 0.23106971153846156 0.3905029296875 0.23106971153846156 0.3829345703125 0.24969951923076927 0.3829345703125 0.23106971153846156 0.8048095703125 0.08623798076923073 0.8065185546875 0.07722355769230771 0.8048095703125 0.07722355769230771 0.8067626953125 0.07722355769230771 0.8084716796875 0.07722355769230771 0.8067626953125 0.08623798076923073 0.8087158203125 0.07722355769230771 0.8087158203125 0.08623798076923073 0.8123779296875 0.07722355769230771 0.3907470703125 0.24969951923076927 0.3907470703125 0.23106971153846156 0.3983154296875 0.23106971153846156 0.3985595703125 0.23106971153846156 0.3985595703125 0.24969951923076927 0.4061279296875 0.23106971153846156 0.4063720703125 0.30739182692307687 0.4139404296875 0.2887620192307693 0.4063720703125 0.2887620192307693 0.4141845703125 0.2887620192307693 0.4217529296875 0.2887620192307693 0.4141845703125 0.30739182692307687 0.4295654296875 0.2887620192307693 0.4219970703125 0.30739182692307687 0.4219970703125 0.2887620192307693 0.4373779296875 0.2887620192307693 0.4298095703125 0.30739182692307687 0.4298095703125 0.2887620192307693 0.8126220703125 0.15354567307692313 0.8143310546875 0.14453125 0.8126220703125 0.14453125 0.4063720703125 0.26953125 0.4139404296875 0.26953125 0.4063720703125 0.2881610576923077 0.8165283203125 0.15354567307692313 0.8165283203125 0.14453125 0.8201904296875 0.14453125 0.8240966796875 0.14453125 0.8204345703125 0.14453125 0.8204345703125 0.15354567307692313 0.3946533203125 0.2881610576923077 0.3946533203125 0.26953125 0.3953857421875 0.26953125 0.9454345703125 0.73046875 0.9530029296875 0.6926081730769231 0.9454345703125 0.6926081730769231 0.4217529296875 0.26953125 0.4141845703125 0.2881610576923077 0.4141845703125 0.26953125 0.9688720703125 0.73046875 0.9688720703125 0.6926081730769231 0.9842529296875 0.6926081730769231 0.8243408203125 0.15354567307692313 0.8280029296875 0.14453125 0.8243408203125 0.14453125 0.9844970703125 0.73046875 0.9920654296875 0.6926081730769231 0.9844970703125 0.6926081730769231 0.9923095703125 0.73046875 0.9923095703125 0.6926081730769231 0.9998779296875 0.6926081730769231 0.4295654296875 0.26953125 0.4219970703125 0.2881610576923077 0.4219970703125 0.26953125 0.0001220703125 0.6541466346153846 0.0076904296875 0.6541466346153846 0.0001220703125 0.6920072115384616 0.0157470703125 0.6541466346153846 0.0311279296875 0.6541466346153846 0.0157470703125 0.6920072115384616 0.4373779296875 0.26953125 0.4298095703125 0.2881610576923077 0.4298095703125 0.26953125 0.8282470703125 0.15354567307692313 0.8319091796875 0.14453125 0.8282470703125 0.14453125 0.8321533203125 0.14453125 0.8321533203125 0.15354567307692313 0.8358154296875 0.14453125 0.3673095703125 0.004507211538461564 0.3690185546875 0.00030048076923072653 0.3673095703125 0.00030048076923072653 0.3692626953125 0.00030048076923072653 0.3692626953125 0.004507211538461564 0.3709716796875 0.00030048076923072653 0.3712158203125 0.004507211538461564 0.3729248046875 0.00030048076923072653 0.3712158203125 0.00030048076923072653 0.3731689453125 0.00030048076923072653 0.3748779296875 0.00030048076923072653 0.3731689453125 0.004507211538461564 0.3768310546875 0.07241586538461542 0.3751220703125 0.07662259615384615 0.3751220703125 0.07241586538461542 0.3770751953125 0.07241586538461542 0.3787841796875 0.07241586538461542 0.3770751953125 0.07662259615384615 0.8145751953125 0.15354567307692313 0.8162841796875 0.14453125 0.8145751953125 0.14453125 0.3807373046875 0.07241586538461542 0.3790283203125 0.07662259615384615 0.3790283203125 0.07241586538461542 0.0001220703125 0.6535456730769231 0.0001220703125 0.6156850961538461 0.0155029296875 0.6156850961538461 0.0311279296875 0.6156850961538461 0.0157470703125 0.6156850961538461 0.0157470703125 0.6535456730769231 0.0155029296875 0.6541466346153846 0.0079345703125 0.6920072115384616 0.0079345703125 0.6541466346153846 0.4063720703125 0.26893028846153844 0.4139404296875 0.2503004807692307 0.4063720703125 0.2503004807692307 0.0313720703125 0.6920072115384616 0.0313720703125 0.6541466346153846 0.0389404296875 0.6541466346153846 0.0391845703125 0.6920072115384616 0.0467529296875 0.6541466346153846 0.0391845703125 0.6541466346153846 0.0469970703125 0.6541466346153846 0.0469970703125 0.6920072115384616 0.0545654296875 0.6541466346153846 0.4141845703125 0.26893028846153844 0.4178466796875 0.2503004807692307 0.4141845703125 0.2503004807692307 0.8397216796875 0.14453125 0.8360595703125 0.14453125 0.8360595703125 0.15354567307692313 0.4219970703125 0.26893028846153844 0.4219970703125 0.2503004807692307 0.4295654296875 0.2503004807692307 0.4217529296875 0.2503004807692307 0.4180908203125 0.2503004807692307 0.4180908203125 0.26893028846153844 0.4298095703125 0.26893028846153844 0.4298095703125 0.2503004807692307 0.4373779296875 0.2503004807692307 0.4139404296875 0.23106971153846156 0.4063720703125 0.23106971153846156 0.4063720703125 0.24969951923076927 0.4141845703125 0.23106971153846156 0.4141845703125 0.24969951923076927 0.4217529296875 0.23106971153846156 0.0548095703125 0.6541466346153846 0.0313720703125 0.6535456730769231 0.0469970703125 0.6156850961538461 0.0469970703125 0.6535456730769231 0.0623779296875 0.6156850961538461 0.0701904296875 0.6541466346153846 0.0626220703125 0.6920072115384616 0.0626220703125 0.6541466346153846 0.3956298828125 0.26953125 0.3956298828125 0.2881610576923077 0.3963623046875 0.26953125 0.0704345703125 0.6920072115384616 0.0780029296875 0.6541466346153846 0.0704345703125 0.6541466346153846 0.0782470703125 0.6541466346153846 0.0782470703125 0.6920072115384616 0.0858154296875 0.6541466346153846 0.0626220703125 0.6535456730769231 0.0780029296875 0.6156850961538461 0.0626220703125 0.6156850961538461 0.8436279296875 0.14453125 0.8399658203125 0.15354567307692313 0.8399658203125 0.14453125 0.8162841796875 0.13491586538461542 0.8126220703125 0.13491586538461542 0.8126220703125 0.14393028846153844 0.8182373046875 0.13491586538461542 0.8165283203125 0.14393028846153844 0.8165283203125 0.13491586538461542 0.8184814453125 0.13491586538461542 0.8184814453125 0.14393028846153844 0.8201904296875 0.13491586538461542 0.4219970703125 0.24969951923076927 0.4219970703125 0.23106971153846156 0.4295654296875 0.23106971153846156 0.4298095703125 0.23106971153846156 0.4298095703125 0.24969951923076927 0.4373779296875 0.23106971153846156 0.0860595703125 0.6920072115384616 0.0936279296875 0.6541466346153846 0.0860595703125 0.6541466346153846 0.0782470703125 0.6156850961538461 0.0782470703125 0.6535456730769231 0.0858154296875 0.6156850961538461 0.0860595703125 0.6535456730769231 0.0936279296875 0.6156850961538461 0.0860595703125 0.6156850961538461 0.0938720703125 0.6920072115384616 0.0938720703125 0.6541466346153846 0.1092529296875 0.6541466346153846 0.1170654296875 0.6541466346153846 0.1094970703125 0.6541466346153846 0.1094970703125 0.6920072115384616 0.1173095703125 0.6541466346153846 0.1173095703125 0.6920072115384616 0.1248779296875 0.6541466346153846 0.1014404296875 0.6156850961538461 0.0938720703125 0.6156850961538461 0.0938720703125 0.6535456730769231 0.4376220703125 0.2887620192307693 0.4376220703125 0.30739182692307687 0.4451904296875 0.2887620192307693 0.4530029296875 0.2887620192307693 0.4454345703125 0.2887620192307693 0.4454345703125 0.30739182692307687 0.4532470703125 0.2887620192307693 0.4532470703125 0.30739182692307687 0.4608154296875 0.2887620192307693 0.4610595703125 0.2887620192307693 0.4686279296875 0.2887620192307693 0.4610595703125 0.30739182692307687 0.1016845703125 0.6156850961538461 0.1016845703125 0.6535456730769231 0.1092529296875 0.6156850961538461 0.1170654296875 0.6156850961538461 0.1094970703125 0.6156850961538461 0.1094970703125 0.6535456730769231 0.1251220703125 0.6541466346153846 0.1251220703125 0.6920072115384616 0.1405029296875 0.6541466346153846 0.8204345703125 0.13491586538461542 0.8240966796875 0.13491586538461542 0.8204345703125 0.14393028846153844 0.8243408203125 0.14393028846153844 0.8243408203125 0.13491586538461542 0.8260498046875 0.13491586538461542 0.1407470703125 0.6920072115384616 0.1561279296875 0.6541466346153846 0.1407470703125 0.6541466346153846 0.1251220703125 0.6535456730769231 0.3966064453125 0.26953125 0.3973388671875 0.26953125 0.3966064453125 0.2881610576923077 0.3975830078125 0.2881610576923077 0.3975830078125 0.26953125 0.3983154296875 0.26953125 0.3809814453125 0.07241586538461542 0.3809814453125 0.07662259615384615 0.3817138671875 0.07241586538461542 0.8262939453125 0.14393028846153844 0.8262939453125 0.13491586538461542 0.8280029296875 0.13491586538461542 0.4376220703125 0.2881610576923077 0.4412841796875 0.26953125 0.4376220703125 0.26953125 0.4415283203125 0.26953125 0.4415283203125 0.2881610576923077 0.4451904296875 0.26953125 0.1407470703125 0.6535456730769231 0.1561279296875 0.6156850961538461 0.1407470703125 0.6156850961538461 0.1563720703125 0.6541466346153846 0.1563720703125 0.6920072115384616 0.1717529296875 0.6541466346153846 0.1719970703125 0.6541466346153846 0.1719970703125 0.6920072115384616 0.1873779296875 0.6541466346153846 0.1563720703125 0.6156850961538461 0.1563720703125 0.6535456730769231 0.1717529296875 0.6156850961538461 0.1873779296875 0.6156850961538461 0.1719970703125 0.6156850961538461 0.1719970703125 0.6535456730769231 0.2030029296875 0.6541466346153846 0.1876220703125 0.6920072115384616 0.1876220703125 0.6541466346153846 0.2186279296875 0.6541466346153846 0.2032470703125 0.6541466346153846 0.2032470703125 0.6920072115384616 0.2030029296875 0.6156850961538461 0.1876220703125 0.6535456730769231 0.1876220703125 0.6156850961538461 0.2032470703125 0.6156850961538461 0.2186279296875 0.6156850961538461 0.2032470703125 0.6535456730769231 0.2188720703125 0.6541466346153846 0.2188720703125 0.6920072115384616 0.2342529296875 0.6541466346153846 0.2344970703125 0.6541466346153846 0.2344970703125 0.6920072115384616 0.2498779296875 0.6541466346153846 0.4530029296875 0.26953125 0.4454345703125 0.26953125 0.4454345703125 0.2881610576923077 0.4608154296875 0.26953125 0.4532470703125 0.26953125 0.4532470703125 0.2881610576923077 0.4686279296875 0.26953125 0.4610595703125 0.2881610576923077 0.4610595703125 0.26953125 0.8282470703125 0.13491586538461542 0.8319091796875 0.13491586538461542 0.8282470703125 0.14393028846153844 0.1795654296875 0.09645432692307687 0.1719970703125 0.09645432692307687 0.8321533203125 0.13491586538461542 0.8338623046875 0.13491586538461542 0.8321533203125 0.14393028846153844 0.2188720703125 0.6535456730769231 0.2188720703125 0.6156850961538461 0.2342529296875 0.6156850961538461 0.2498779296875 0.6156850961538461 0.2344970703125 0.6156850961538461 0.2344970703125 0.6535456730769231 0.4376220703125 0.26893028846153844 0.4451904296875 0.2503004807692307 0.4376220703125 0.2503004807692307 0.4454345703125 0.2503004807692307 0.4454345703125 0.26893028846153844 0.4530029296875 0.2503004807692307 0.4569091796875 0.2503004807692307 0.4532470703125 0.2503004807692307 0.4532470703125 0.26893028846153844 0.4610595703125 0.26893028846153844 0.4686279296875 0.2503004807692307 0.4610595703125 0.2503004807692307 0.1173095703125 0.6156850961538461 0.1173095703125 0.6535456730769231 0.1248779296875 0.6156850961538461 0.2501220703125 0.6920072115384616 0.2576904296875 0.6541466346153846 0.2501220703125 0.6541466346153846 0.2579345703125 0.6541466346153846 0.2579345703125 0.6920072115384616 0.2655029296875 0.6541466346153846 0.8341064453125 0.13491586538461542 0.8358154296875 0.13491586538461542 0.8341064453125 0.14393028846153844 0.3846435546875 0.07241586538461542 0.3829345703125 0.07662259615384615 0.3829345703125 0.07241586538461542 0.4571533203125 0.26893028846153844 0.4571533203125 0.2503004807692307 0.4578857421875 0.2503004807692307 0.8360595703125 0.13491586538461542 0.3865966796875 0.07241586538461542 0.3848876953125 0.07241586538461542 0.3848876953125 0.07662259615384615 0.3826904296875 0.07241586538461542 0.3819580078125 0.07662259615384615 0.3819580078125 0.07241586538461542 0.8399658203125 0.14393028846153844 0.8436279296875 0.13491586538461542 0.8399658203125 0.13491586538461542 0.8162841796875 0.12530048076923073 0.8126220703125 0.12530048076923073 0.8126220703125 0.13431490384615385 0.2657470703125 0.6920072115384616 0.2811279296875 0.6541466346153846 0.2657470703125 0.6541466346153846 0.2576904296875 0.6156850961538461 0.2501220703125 0.6156850961538461 0.2501220703125 0.6535456730769231 0.8165283203125 0.13431490384615385 0.8201904296875 0.12530048076923073 0.8165283203125 0.12530048076923073 0.8240966796875 0.12530048076923073 0.8204345703125 0.12530048076923073 0.8204345703125 0.13431490384615385 0.3868408203125 0.07241586538461542 0.3868408203125 0.07662259615384615 0.3885498046875 0.07241586538461542 0.3905029296875 0.07241586538461542 0.3887939453125 0.07241586538461542 0.3887939453125 0.07662259615384615 0.3907470703125 0.07241586538461542 0.3907470703125 0.07662259615384615 0.3924560546875 0.07241586538461542 0.3944091796875 0.07241586538461542 0.3927001953125 0.07241586538461542 0.3927001953125 0.07662259615384615 0.8380126953125 0.13491586538461542 0.8380126953125 0.14393028846153844 0.8397216796875 0.13491586538461542 0.8260498046875 0.12530048076923073 0.8243408203125 0.12530048076923073 0.8243408203125 0.13431490384615385 0.3963623046875 0.07241586538461542 0.3946533203125 0.07662259615384615 0.3946533203125 0.07241586538461542 0.4376220703125 0.24969951923076927 0.4376220703125 0.23106971153846156 0.4412841796875 0.23106971153846156 0.8282470703125 0.12530048076923073 0.8319091796875 0.12530048076923073 0.8282470703125 0.13431490384615385 0.0350341796875 0.11568509615384615 0.0313720703125 0.11568509615384615 0.3966064453125 0.07241586538461542 0.3983154296875 0.07241586538461542 0.3966064453125 0.07662259615384615 0.2657470703125 0.6535456730769231 0.2657470703125 0.6156850961538461 0.2811279296875 0.6156850961538461 0.2967529296875 0.6541466346153846 0.2813720703125 0.6541466346153846 0.2813720703125 0.6920072115384616 0.4454345703125 0.24969951923076927 0.4530029296875 0.23106971153846156 0.4454345703125 0.23106971153846156 0.4608154296875 0.23106971153846156 0.4532470703125 0.23106971153846156 0.4532470703125 0.24969951923076927 0.4610595703125 0.24969951923076927 0.4686279296875 0.23106971153846156 0.4610595703125 0.23106971153846156 0.4688720703125 0.2887620192307693 0.4688720703125 0.30739182692307687 0.4764404296875 0.2887620192307693 0.2579345703125 0.6156850961538461 0.4766845703125 0.30739182692307687 0.4766845703125 0.2887620192307693 0.4842529296875 0.2887620192307693 0.4451904296875 0.23106971153846156 0.4415283203125 0.24969951923076927 0.4415283203125 0.23106971153846156 0.2969970703125 0.6920072115384616 0.2969970703125 0.6541466346153846 0.3045654296875 0.6541466346153846 0.2967529296875 0.6156850961538461 0.2813720703125 0.6535456730769231 0.2813720703125 0.6156850961538461 0.8321533203125 0.13431490384615385 0.8321533203125 0.12530048076923073 0.8358154296875 0.12530048076923073 0.8360595703125 0.12530048076923073 0.8360595703125 0.13431490384615385 0.8397216796875 0.12530048076923073 0.3048095703125 0.6541466346153846 0.3048095703125 0.6920072115384616 0.3123779296875 0.6541466346153846 0.3045654296875 0.6156850961538461 0.2969970703125 0.6156850961538461 0.2969970703125 0.6535456730769231 0.4920654296875 0.2887620192307693 0.4844970703125 0.30739182692307687 0.4844970703125 0.2887620192307693 0.4923095703125 0.2887620192307693 0.4998779296875 0.2887620192307693 0.4923095703125 0.30739182692307687 0.3048095703125 0.6156850961538461 0.3123779296875 0.6156850961538461 0.3048095703125 0.6535456730769231 0.4688720703125 0.2881610576923077 0.4688720703125 0.26953125 0.4764404296875 0.26953125 0.4766845703125 0.26953125 0.4842529296875 0.26953125 0.4766845703125 0.2881610576923077 0.4844970703125 0.2881610576923077 0.4844970703125 0.26953125 0.4881591796875 0.26953125 0.4920654296875 0.26953125 0.4884033203125 0.2881610576923077 0.4884033203125 0.26953125 0.4923095703125 0.2881610576923077 0.4923095703125 0.26953125 0.4998779296875 0.26953125 0.4764404296875 0.2503004807692307 0.4688720703125 0.26893028846153844 0.4688720703125 0.2503004807692307 0.4766845703125 0.26893028846153844 0.4766845703125 0.2503004807692307 0.4803466796875 0.2503004807692307 0.3126220703125 0.6541466346153846 0.3201904296875 0.6541466346153846 0.3126220703125 0.6920072115384616 0.3280029296875 0.6541466346153846 0.3204345703125 0.6541466346153846 0.3204345703125 0.6920072115384616 0.4805908203125 0.2503004807692307 0.4842529296875 0.2503004807692307 0.4805908203125 0.26893028846153844 0.4844970703125 0.2503004807692307 0.4844970703125 0.26893028846153844 0.4881591796875 0.2503004807692307 0.4920654296875 0.2503004807692307 0.4884033203125 0.26893028846153844 0.4884033203125 0.2503004807692307 0.8280029296875 0.12530048076923073 0.8262939453125 0.13431490384615385 0.8262939453125 0.12530048076923073 0.4923095703125 0.26893028846153844 0.4959716796875 0.2503004807692307 0.4923095703125 0.2503004807692307 0.4998779296875 0.2503004807692307 0.4962158203125 0.2503004807692307 0.4962158203125 0.26893028846153844 0.3282470703125 0.6920072115384616 0.3358154296875 0.6541466346153846 0.3282470703125 0.6541466346153846 0.3280029296875 0.6156850961538461 0.3126220703125 0.6156850961538461 0.3126220703125 0.6535456730769231 0.3282470703125 0.6535456730769231 0.3436279296875 0.6156850961538461 0.3282470703125 0.6156850961538461 0.3592529296875 0.6541466346153846 0.3438720703125 0.6541466346153846 0.3438720703125 0.6920072115384616 0.3594970703125 0.6920072115384616 0.3594970703125 0.6541466346153846 0.3748779296875 0.6541466346153846 0.3592529296875 0.6156850961538461 0.3438720703125 0.6535456730769231 0.3438720703125 0.6156850961538461 0.4688720703125 0.23106971153846156 0.4688720703125 0.24969951923076927 0.4764404296875 0.23106971153846156 0.3360595703125 0.6920072115384616 0.3436279296875 0.6541466346153846 0.3360595703125 0.6541466346153846 0.4766845703125 0.23106971153846156 0.4766845703125 0.24969951923076927 0.4842529296875 0.23106971153846156 0.4844970703125 0.24969951923076927 0.4920654296875 0.23106971153846156 0.4844970703125 0.23106971153846156 0.4998779296875 0.23106971153846156 0.4923095703125 0.24969951923076927 0.4923095703125 0.23106971153846156 0.5001220703125 0.30739182692307687 0.5076904296875 0.2887620192307693 0.5001220703125 0.2887620192307693 0.5079345703125 0.2887620192307693 0.5079345703125 0.30739182692307687 0.5155029296875 0.2887620192307693 0.3594970703125 0.6535456730769231 0.3748779296875 0.6156850961538461 0.3594970703125 0.6156850961538461 0.5194091796875 0.2887620192307693 0.5157470703125 0.30739182692307687 0.5157470703125 0.2887620192307693 0.5235595703125 0.30739182692307687 0.5235595703125 0.2887620192307693 0.5311279296875 0.2887620192307693 0.5001220703125 0.26953125 0.5076904296875 0.26953125 0.5001220703125 0.2881610576923077 0.8416748046875 0.12530048076923073 0.8399658203125 0.13431490384615385 0.8399658203125 0.12530048076923073 0.8419189453125 0.13431490384615385 0.8436279296875 0.12530048076923073 0.8419189453125 0.12530048076923073 0.8126220703125 0.11568509615384615 0.8162841796875 0.11568509615384615 0.8126220703125 0.12469951923076927 0.3751220703125 0.6920072115384616 0.3751220703125 0.6541466346153846 0.3905029296875 0.6541466346153846 0.4061279296875 0.6541466346153846 0.3907470703125 0.6541466346153846 0.3907470703125 0.6920072115384616 0.5079345703125 0.2881610576923077 0.5155029296875 0.26953125 0.5079345703125 0.26953125 0.5233154296875 0.26953125 0.5157470703125 0.26953125 0.5157470703125 0.2881610576923077 0.5235595703125 0.2881610576923077 0.5311279296875 0.26953125 0.5235595703125 0.26953125 0.3751220703125 0.6156850961538461 0.3826904296875 0.6156850961538461 0.3751220703125 0.6535456730769231 0.4061279296875 0.6156850961538461 0.3907470703125 0.6535456730769231 0.3907470703125 0.6156850961538461 0.4063720703125 0.6541466346153846 0.4217529296875 0.6541466346153846 0.4063720703125 0.6920072115384616 0.4219970703125 0.6541466346153846 0.4219970703125 0.6920072115384616 0.4373779296875 0.6541466346153846 0.4217529296875 0.6156850961538461 0.4063720703125 0.6156850961538461 0.4063720703125 0.6535456730769231 0.4373779296875 0.6156850961538461 0.4219970703125 0.6535456730769231 0.4219970703125 0.6156850961538461 0.3905029296875 0.6156850961538461 0.3829345703125 0.6156850961538461 0.3829345703125 0.6535456730769231 0.5001220703125 0.2503004807692307 0.5001220703125 0.26893028846153844 0.5076904296875 0.2503004807692307 0.8165283203125 0.12469951923076927 0.8165283203125 0.11568509615384615 0.8201904296875 0.11568509615384615 0.8240966796875 0.11568509615384615 0.8204345703125 0.12469951923076927 0.8204345703125 0.11568509615384615 0.3985595703125 0.07241586538461542 0.3985595703125 0.07662259615384615 0.4002685546875 0.07241586538461542 0.4588623046875 0.2503004807692307 0.4581298828125 0.2503004807692307 0.4581298828125 0.26893028846153844 0.4591064453125 0.26893028846153844 0.4598388671875 0.2503004807692307 0.4591064453125 0.2503004807692307 0.4005126953125 0.07241586538461542 0.4022216796875 0.07241586538461542 0.4005126953125 0.07662259615384615 0.8670654296875 0.19260817307692313 0.8594970703125 0.19260817307692313 0.4530029296875 0.6541466346153846 0.4376220703125 0.6920072115384616 0.4376220703125 0.6541466346153846 0.5079345703125 0.26893028846153844 0.5079345703125 0.2503004807692307 0.5155029296875 0.2503004807692307 0.5157470703125 0.2503004807692307 0.5233154296875 0.2503004807692307 0.5157470703125 0.26893028846153844 0.5196533203125 0.30739182692307687 0.5196533203125 0.2887620192307693 0.5233154296875 0.2887620192307693 0.5235595703125 0.2503004807692307 0.5272216796875 0.2503004807692307 0.5235595703125 0.26893028846153844 0.4532470703125 0.6541466346153846 0.4608154296875 0.6541466346153846 0.4532470703125 0.6920072115384616 0.4376220703125 0.6535456730769231 0.4376220703125 0.6156850961538461 0.4530029296875 0.6156850961538461 0.4686279296875 0.6541466346153846 0.4610595703125 0.6541466346153846 0.4610595703125 0.6920072115384616 0.8243408203125 0.12469951923076927 0.8280029296875 0.11568509615384615 0.8243408203125 0.11568509615384615 0.5274658203125 0.26893028846153844 0.5311279296875 0.2503004807692307 0.5274658203125 0.2503004807692307 0.4532470703125 0.6535456730769231 0.4608154296875 0.6156850961538461 0.4532470703125 0.6156850961538461 0.4686279296875 0.6156850961538461 0.4610595703125 0.6535456730769231 0.4610595703125 0.6156850961538461 0.4688720703125 0.6541466346153846 0.4764404296875 0.6541466346153846 0.4688720703125 0.6920072115384616 0.4844970703125 0.6541466346153846 0.4844970703125 0.6920072115384616 0.4998779296875 0.6541466346153846 0.5001220703125 0.23106971153846156 0.5001220703125 0.24969951923076927 0.5076904296875 0.23106971153846156 0.5155029296875 0.23106971153846156 0.5079345703125 0.23106971153846156 0.5079345703125 0.24969951923076927 0.4766845703125 0.6541466346153846 0.4766845703125 0.6920072115384616 0.4842529296875 0.6541466346153846 0.4764404296875 0.6156850961538461 0.4688720703125 0.6156850961538461 0.4688720703125 0.6535456730769231 0.5233154296875 0.23106971153846156 0.5157470703125 0.24969951923076927 0.5157470703125 0.23106971153846156 0.5311279296875 0.23106971153846156 0.5235595703125 0.24969951923076927 0.5235595703125 0.23106971153846156 0.5313720703125 0.30739182692307687 0.5313720703125 0.2887620192307693 0.5389404296875 0.2887620192307693 0.5391845703125 0.30739182692307687 0.5467529296875 0.2887620192307693 0.5391845703125 0.2887620192307693 0.5545654296875 0.2887620192307693 0.5469970703125 0.30739182692307687 0.5469970703125 0.2887620192307693 0.8282470703125 0.12469951923076927 0.8282470703125 0.11568509615384615 0.8319091796875 0.11568509615384615 0.8358154296875 0.11568509615384615 0.8321533203125 0.11568509615384615 0.8321533203125 0.12469951923076927 0.8360595703125 0.11568509615384615 0.8360595703125 0.12469951923076927 0.8397216796875 0.11568509615384615 0.8399658203125 0.11568509615384615 0.8436279296875 0.11568509615384615 0.8399658203125 0.12469951923076927 0.8162841796875 0.10606971153846156 0.8126220703125 0.10606971153846156 0.8126220703125 0.11508413461538458 0.5548095703125 0.30739182692307687 0.5623779296875 0.2887620192307693 0.5548095703125 0.2887620192307693 0.5313720703125 0.26953125 0.5389404296875 0.26953125 0.5313720703125 0.2881610576923077 0.5467529296875 0.26953125 0.5391845703125 0.26953125 0.5391845703125 0.2881610576923077 0.5469970703125 0.2881610576923077 0.5469970703125 0.26953125 0.5506591796875 0.26953125 0.5509033203125 0.26953125 0.5545654296875 0.26953125 0.5509033203125 0.2881610576923077 0.4766845703125 0.6535456730769231 0.4766845703125 0.6156850961538461 0.4842529296875 0.6156850961538461 0.4844970703125 0.6156850961538461 0.4920654296875 0.6156850961538461 0.4844970703125 0.6535456730769231 0.5548095703125 0.2881610576923077 0.5548095703125 0.26953125 0.5623779296875 0.26953125 0.4031982421875 0.07241586538461542 0.4024658203125 0.07241586538461542 0.4024658203125 0.07662259615384615 0.4044189453125 0.07662259615384615 0.4061279296875 0.07241586538461542 0.4044189453125 0.07241586538461542 0.8165283203125 0.11508413461538458 0.8201904296875 0.10606971153846156 0.8165283203125 0.10606971153846156 0.8240966796875 0.10606971153846156 0.8204345703125 0.11508413461538458 0.8204345703125 0.10606971153846156 0.5001220703125 0.6920072115384616 0.5155029296875 0.6541466346153846 0.5001220703125 0.6541466346153846 0.5311279296875 0.6541466346153846 0.5157470703125 0.6541466346153846 0.5157470703125 0.6920072115384616 0.5001220703125 0.6535456730769231 0.5155029296875 0.6156850961538461 0.5001220703125 0.6156850961538461 0.5311279296875 0.6156850961538461 0.5157470703125 0.6156850961538461 0.5157470703125 0.6535456730769231 0.4923095703125 0.6535456730769231 0.4998779296875 0.6156850961538461 0.4923095703125 0.6156850961538461 0.5313720703125 0.6541466346153846 0.5313720703125 0.6920072115384616 0.5389404296875 0.6541466346153846 0.5391845703125 0.6920072115384616 0.5467529296875 0.6541466346153846 0.5391845703125 0.6541466346153846 0.5389404296875 0.2503004807692307 0.5313720703125 0.26893028846153844 0.5313720703125 0.2503004807692307 0.3751220703125 0.07181490384615385 0.3751220703125 0.06760817307692313 0.3768310546875 0.06760817307692313 0.8243408203125 0.11508413461538458 0.8280029296875 0.10606971153846156 0.8243408203125 0.10606971153846156 0.8319091796875 0.10606971153846156 0.8282470703125 0.11508413461538458 0.8282470703125 0.10606971153846156 0.8358154296875 0.10606971153846156 0.8321533203125 0.11508413461538458 0.8321533203125 0.10606971153846156 0.8360595703125 0.11508413461538458 0.8377685546875 0.10606971153846156 0.8360595703125 0.10606971153846156 0.3787841796875 0.06760817307692313 0.3770751953125 0.07181490384615385 0.3770751953125 0.06760817307692313 0.5469970703125 0.6920072115384616 0.5469970703125 0.6541466346153846 0.5623779296875 0.6541466346153846 0.5467529296875 0.6156850961538461 0.5313720703125 0.6535456730769231 0.5313720703125 0.6156850961538461 0.5391845703125 0.26893028846153844 0.5391845703125 0.2503004807692307 0.5467529296875 0.2503004807692307 0.5469970703125 0.2503004807692307 0.5469970703125 0.26893028846153844 0.5545654296875 0.2503004807692307 0.5548095703125 0.26893028846153844 0.5584716796875 0.2503004807692307 0.5548095703125 0.2503004807692307 0.5587158203125 0.2503004807692307 0.5587158203125 0.26893028846153844 0.5623779296875 0.2503004807692307 0.9139404296875 0.15414663461538458 0.9063720703125 0.15414663461538458 0.8399658203125 0.10606971153846156 0.8399658203125 0.11508413461538458 0.8436279296875 0.10606971153846156 0.5469970703125 0.6535456730769231 0.5623779296875 0.6156850961538461 0.5469970703125 0.6156850961538461 0.5780029296875 0.6541466346153846 0.5626220703125 0.6920072115384616 0.5626220703125 0.6541466346153846 0.5782470703125 0.6920072115384616 0.5782470703125 0.6541466346153846 0.5858154296875 0.6541466346153846 0.5780029296875 0.6156850961538461 0.5626220703125 0.6535456730769231 0.5626220703125 0.6156850961538461 0.5782470703125 0.6535456730769231 0.5936279296875 0.6156850961538461 0.5782470703125 0.6156850961538461 0.5938720703125 0.6541466346153846 0.5938720703125 0.6920072115384616 0.6092529296875 0.6541466346153846 0.8126220703125 0.10546875 0.8162841796875 0.09645432692307687 0.8126220703125 0.09645432692307687 0.8165283203125 0.09645432692307687 0.8165283203125 0.10546875 0.8201904296875 0.09645432692307687 0.6094970703125 0.6920072115384616 0.6248779296875 0.6541466346153846 0.6094970703125 0.6541466346153846 0.5938720703125 0.6156850961538461 0.5938720703125 0.6535456730769231 0.6092529296875 0.6156850961538461 0.8204345703125 0.10546875 0.8240966796875 0.09645432692307687 0.8204345703125 0.09645432692307687 0.6094970703125 0.6156850961538461 0.6248779296875 0.6156850961538461 0.6094970703125 0.6535456730769231 0.8380126953125 0.11508413461538458 0.8397216796875 0.10606971153846156 0.8380126953125 0.10606971153846156 0.8260498046875 0.09645432692307687 0.8243408203125 0.10546875 0.8243408203125 0.09645432692307687 0.5860595703125 0.6920072115384616 0.5936279296875 0.6541466346153846 0.5860595703125 0.6541466346153846 0.6405029296875 0.6541466346153846 0.6251220703125 0.6920072115384616 0.6251220703125 0.6541466346153846 0.6483154296875 0.6541466346153846 0.6407470703125 0.6541466346153846 0.6407470703125 0.6920072115384616 0.6485595703125 0.6541466346153846 0.6485595703125 0.6920072115384616 0.6561279296875 0.6541466346153846 0.6326904296875 0.6156850961538461 0.6251220703125 0.6535456730769231 0.6251220703125 0.6156850961538461 0.8282470703125 0.10546875 0.8282470703125 0.09645432692307687 0.8319091796875 0.09645432692307687 0.8321533203125 0.09645432692307687 0.8321533203125 0.10546875 0.8358154296875 0.09645432692307687 0.4600830078125 0.26893028846153844 0.4600830078125 0.2503004807692307 0.4608154296875 0.2503004807692307 0.5321044921875 0.23106971153846156 0.5313720703125 0.24969951923076927 0.5313720703125 0.23106971153846156 0.5391845703125 0.24969951923076927 0.5391845703125 0.23106971153846156 0.5467529296875 0.23106971153846156 0.6329345703125 0.6156850961538461 0.6329345703125 0.6535456730769231 0.6405029296875 0.6156850961538461 0.6407470703125 0.6535456730769231 0.6483154296875 0.6156850961538461 0.6407470703125 0.6156850961538461 0.5545654296875 0.23106971153846156 0.5469970703125 0.24969951923076927 0.5469970703125 0.23106971153846156 0.5548095703125 0.24969951923076927 0.5548095703125 0.23106971153846156 0.5623779296875 0.23106971153846156 0.5389404296875 0.23106971153846156 0.5352783203125 0.23106971153846156 0.5352783203125 0.24969951923076927 0.8360595703125 0.09645432692307687 0.8397216796875 0.09645432692307687 0.8360595703125 0.10546875 0.3790283203125 0.07181490384615385 0.3807373046875 0.06760817307692313 0.3790283203125 0.06760817307692313 0.6485595703125 0.6535456730769231 0.6485595703125 0.6156850961538461 0.6561279296875 0.6156850961538461 0.6639404296875 0.6541466346153846 0.6563720703125 0.6920072115384616 0.6563720703125 0.6541466346153846 0.6641845703125 0.6541466346153846 0.6873779296875 0.6541466346153846 0.6719970703125 0.6920072115384616 0.6719970703125 0.6541466346153846 0.5626220703125 0.30739182692307687 0.5626220703125 0.2887620192307693 0.5662841796875 0.2887620192307693 0.5701904296875 0.2887620192307693 0.5665283203125 0.2887620192307693 0.5665283203125 0.30739182692307687 0.8280029296875 0.09645432692307687 0.8262939453125 0.09645432692307687 0.8262939453125 0.10546875 0.8399658203125 0.09645432692307687 0.8416748046875 0.09645432692307687 0.8399658203125 0.10546875 0.5704345703125 0.30739182692307687 0.5780029296875 0.2887620192307693 0.5704345703125 0.2887620192307693 0.5782470703125 0.2887620192307693 0.5782470703125 0.30739182692307687 0.5858154296875 0.2887620192307693 0.6563720703125 0.6535456730769231 0.6639404296875 0.6156850961538461 0.6563720703125 0.6156850961538461 0.5860595703125 0.2887620192307693 0.5860595703125 0.30739182692307687 0.5936279296875 0.2887620192307693 0.4034423828125 0.07662259615384615 0.4034423828125 0.07241586538461542 0.4041748046875 0.07241586538461542 0.6873779296875 0.2118389423076923 0.6837158203125 0.2118389423076923 0.3826904296875 0.06760817307692313 0.3809814453125 0.06760817307692313 0.3809814453125 0.07181490384615385 0.8419189453125 0.10546875 0.8436279296875 0.09645432692307687 0.8419189453125 0.09645432692307687 0.8162841796875 0.08683894230769229 0.8126220703125 0.09585336538461542 0.8126220703125 0.08683894230769229 0.8182373046875 0.08683894230769229 0.8165283203125 0.09585336538461542 0.8165283203125 0.08683894230769229 0.5330810546875 0.23106971153846156 0.5323486328125 0.23106971153846156 0.5323486328125 0.24969951923076927 0.5333251953125 0.24969951923076927 0.5340576171875 0.23106971153846156 0.5333251953125 0.23106971153846156 0.3846435546875 0.06760817307692313 0.3829345703125 0.07181490384615385 0.3829345703125 0.06760817307692313 0.8204345703125 0.09585336538461542 0.8240966796875 0.08683894230769229 0.8204345703125 0.08683894230769229 0.8243408203125 0.08683894230769229 0.8280029296875 0.08683894230769229 0.8243408203125 0.09585336538461542 0.3865966796875 0.06760817307692313 0.3848876953125 0.07181490384615385 0.3848876953125 0.06760817307692313 0.5626220703125 0.2881610576923077 0.5626220703125 0.26953125 0.5701904296875 0.26953125 0.5780029296875 0.26953125 0.5704345703125 0.2881610576923077 0.5704345703125 0.26953125 0.6719970703125 0.6535456730769231 0.6719970703125 0.6156850961538461 0.6873779296875 0.6156850961538461 0.6876220703125 0.6541466346153846 0.7030029296875 0.6541466346153846 0.6876220703125 0.6920072115384616 0.7032470703125 0.6541466346153846 0.7032470703125 0.6920072115384616 0.7186279296875 0.6541466346153846 0.6876220703125 0.6156850961538461 0.7030029296875 0.6156850961538461 0.6876220703125 0.6535456730769231 0.7032470703125 0.6156850961538461 0.7186279296875 0.6156850961538461 0.7032470703125 0.6535456730769231 0.6641845703125 0.6535456730769231 0.6717529296875 0.6156850961538461 0.6641845703125 0.6156850961538461 0.7188720703125 0.6541466346153846 0.7188720703125 0.6920072115384616 0.7264404296875 0.6541466346153846 0.5858154296875 0.26953125 0.5782470703125 0.2881610576923077 0.5782470703125 0.26953125 0.5860595703125 0.26953125 0.5936279296875 0.26953125 0.5860595703125 0.2881610576923077 0.7266845703125 0.6920072115384616 0.7342529296875 0.6541466346153846 0.7266845703125 0.6541466346153846 0.5626220703125 0.2503004807692307 0.5626220703125 0.26893028846153844 0.5701904296875 0.2503004807692307 0.3868408203125 0.07181490384615385 0.3885498046875 0.06760817307692313 0.3868408203125 0.06760817307692313 0.3895263671875 0.06760817307692313 0.3887939453125 0.06760817307692313 0.3887939453125 0.07181490384615385 0.5704345703125 0.26893028846153844 0.5704345703125 0.2503004807692307 0.5780029296875 0.2503004807692307 0.5858154296875 0.2503004807692307 0.5782470703125 0.26893028846153844 0.5782470703125 0.2503004807692307 0.7344970703125 0.6920072115384616 0.7344970703125 0.6541466346153846 0.7420654296875 0.6541466346153846 0.7188720703125 0.6156850961538461 0.7188720703125 0.6535456730769231 0.7342529296875 0.6156850961538461 0.7344970703125 0.6535456730769231 0.7498779296875 0.6156850961538461 0.7344970703125 0.6156850961538461 0.7501220703125 0.6920072115384616 0.7501220703125 0.6541466346153846 0.7655029296875 0.6541466346153846 0.7657470703125 0.6541466346153846 0.7657470703125 0.6920072115384616 0.7811279296875 0.6541466346153846 0.5860595703125 0.26893028846153844 0.5897216796875 0.2503004807692307 0.5860595703125 0.2503004807692307 0.8282470703125 0.09585336538461542 0.8282470703125 0.08683894230769229 0.8319091796875 0.08683894230769229 0.8358154296875 0.08683894230769229 0.8321533203125 0.09585336538461542 0.8321533203125 0.08683894230769229 0.5626220703125 0.24969951923076927 0.5626220703125 0.23106971153846156 0.5701904296875 0.23106971153846156 0.5780029296875 0.23106971153846156 0.5704345703125 0.24969951923076927 0.5704345703125 0.23106971153846156 0.5782470703125 0.24969951923076927 0.5858154296875 0.23106971153846156 0.5782470703125 0.23106971153846156 0.5936279296875 0.23106971153846156 0.5860595703125 0.24969951923076927 0.5860595703125 0.23106971153846156 0.7423095703125 0.6541466346153846 0.7423095703125 0.6920072115384616 0.7498779296875 0.6541466346153846 0.7576904296875 0.6156850961538461 0.7501220703125 0.6156850961538461 0.7501220703125 0.6535456730769231 0.5938720703125 0.2887620192307693 0.5938720703125 0.30739182692307687 0.6014404296875 0.2887620192307693 0.6092529296875 0.2887620192307693 0.6016845703125 0.2887620192307693 0.6016845703125 0.30739182692307687 0.7579345703125 0.6535456730769231 0.7579345703125 0.6156850961538461 0.7655029296875 0.6156850961538461 0.7733154296875 0.6156850961538461 0.7657470703125 0.6156850961538461 0.7657470703125 0.6535456730769231 0.7735595703125 0.6156850961538461 0.7735595703125 0.6535456730769231 0.7811279296875 0.6156850961538461 0.7813720703125 0.6541466346153846 0.6170654296875 0.2887620192307693 0.6094970703125 0.2887620192307693 0.6094970703125 0.30739182692307687 0.7969970703125 0.6920072115384616 0.8123779296875 0.6541466346153846 0.7969970703125 0.6541466346153846 0.7813720703125 0.6156850961538461 0.7967529296875 0.6156850961538461 0.7813720703125 0.6535456730769231 0.6173095703125 0.30739182692307687 0.6173095703125 0.2887620192307693 0.6248779296875 0.2887620192307693 0.3924560546875 0.06760817307692313 0.3907470703125 0.07181490384615385 0.3907470703125 0.06760817307692313 0.8184814453125 0.09585336538461542 0.8201904296875 0.08683894230769229 0.8184814453125 0.08683894230769229 0.7969970703125 0.6535456730769231 0.8123779296875 0.6156850961538461 0.7969970703125 0.6156850961538461 0.7967529296875 0.6541466346153846 0.7891845703125 0.6920072115384616 0.7891845703125 0.6541466346153846 0.8126220703125 0.6541466346153846 0.8126220703125 0.6920072115384616 0.8201904296875 0.6541466346153846 0.8280029296875 0.6541466346153846 0.8204345703125 0.6920072115384616 0.8204345703125 0.6541466346153846 0.5938720703125 0.2881610576923077 0.5938720703125 0.26953125 0.6014404296875 0.26953125 0.6016845703125 0.2881610576923077 0.6092529296875 0.26953125 0.6016845703125 0.26953125 0.6170654296875 0.26953125 0.6094970703125 0.2881610576923077 0.6094970703125 0.26953125 0.8360595703125 0.09585336538461542 0.8360595703125 0.08683894230769229 0.8397216796875 0.08683894230769229 0.8399658203125 0.08683894230769229 0.8436279296875 0.08683894230769229 0.8399658203125 0.09585336538461542 0.5899658203125 0.2503004807692307 0.5936279296875 0.2503004807692307 0.5899658203125 0.26893028846153844 0.8282470703125 0.6920072115384616 0.8282470703125 0.6541466346153846 0.8358154296875 0.6541466346153846 0.6248779296875 0.26953125 0.6173095703125 0.26953125 0.6173095703125 0.2881610576923077 0.5938720703125 0.2503004807692307 0.6014404296875 0.2503004807692307 0.5938720703125 0.26893028846153844 0.6016845703125 0.26893028846153844 0.6016845703125 0.2503004807692307 0.6092529296875 0.2503004807692307 0.6094970703125 0.2503004807692307 0.6170654296875 0.2503004807692307 0.6094970703125 0.26893028846153844 0.6248779296875 0.2503004807692307 0.6173095703125 0.26893028846153844 0.6173095703125 0.2503004807692307 0.5938720703125 0.23106971153846156 0.6014404296875 0.23106971153846156 0.5938720703125 0.24969951923076927 0.6092529296875 0.23106971153846156 0.6016845703125 0.24969951923076927 0.6016845703125 0.23106971153846156 0.8360595703125 0.6541466346153846 0.8436279296875 0.6541466346153846 0.8360595703125 0.6920072115384616 0.8201904296875 0.6156850961538461 0.8126220703125 0.6156850961538461 0.8126220703125 0.6535456730769231 0.8282470703125 0.6535456730769231 0.8436279296875 0.6156850961538461 0.8282470703125 0.6156850961538461 0.6094970703125 0.23106971153846156 0.6131591796875 0.23106971153846156 0.6094970703125 0.24969951923076927 0.8204345703125 0.6156850961538461 0.8280029296875 0.6156850961538461 0.8204345703125 0.6535456730769231 0.8514404296875 0.6541466346153846 0.8438720703125 0.6541466346153846 0.8438720703125 0.6920072115384616 0.8516845703125 0.6541466346153846 0.8592529296875 0.6541466346153846 0.8516845703125 0.6920072115384616 0.8143310546875 0.07722355769230771 0.8126220703125 0.08623798076923073 0.8126220703125 0.07722355769230771 0.8165283203125 0.08623798076923073 0.8165283203125 0.07722355769230771 0.8201904296875 0.07722355769230771 0.8594970703125 0.6920072115384616 0.8670654296875 0.6541466346153846 0.8594970703125 0.6541466346153846 0.8592529296875 0.6156850961538461 0.8438720703125 0.6156850961538461 0.8438720703125 0.6535456730769231 0.8594970703125 0.6535456730769231 0.8748779296875 0.6156850961538461 0.8594970703125 0.6156850961538461 0.3897705078125 0.07181490384615385 0.3897705078125 0.06760817307692313 0.3905029296875 0.06760817307692313 0.6173095703125 0.24969951923076927 0.6173095703125 0.23106971153846156 0.6248779296875 0.23106971153846156 0.6251220703125 0.2887620192307693 0.6326904296875 0.2887620192307693 0.6251220703125 0.30739182692307687 0.6329345703125 0.30739182692307687 0.6329345703125 0.2887620192307693 0.6405029296875 0.2887620192307693 0.6407470703125 0.2887620192307693 0.6483154296875 0.2887620192307693 0.6407470703125 0.30739182692307687 0.6485595703125 0.30739182692307687 0.6485595703125 0.2887620192307693 0.6561279296875 0.2887620192307693 0.8240966796875 0.07722355769230771 0.8204345703125 0.07722355769230771 0.8204345703125 0.08623798076923073 0.8162841796875 0.07722355769230771 0.8145751953125 0.08623798076923073 0.8145751953125 0.07722355769230771 0.6251220703125 0.2881610576923077 0.6326904296875 0.26953125 0.6251220703125 0.26953125 0.8673095703125 0.6541466346153846 0.8673095703125 0.6920072115384616 0.8748779296875 0.6541466346153846 0.8751220703125 0.6541466346153846 0.8260498046875 0.07722355769230771 0.8243408203125 0.08623798076923073 0.8243408203125 0.07722355769230771 0.8907470703125 0.6920072115384616 0.9061279296875 0.6541466346153846 0.8907470703125 0.6541466346153846 0.8905029296875 0.6156850961538461 0.8751220703125 0.6156850961538461 0.8751220703125 0.6535456730769231 0.8829345703125 0.6920072115384616 0.8905029296875 0.6541466346153846 0.8829345703125 0.6541466346153846 0.8983154296875 0.6156850961538461 0.8907470703125 0.6156850961538461 0.8907470703125 0.6535456730769231 0.6134033203125 0.24969951923076927 0.6170654296875 0.23106971153846156 0.6134033203125 0.23106971153846156 0.1561279296875 0.3849158653846154 0.1407470703125 0.3849158653846154 0.6329345703125 0.2881610576923077 0.6329345703125 0.26953125 0.6405029296875 0.26953125 0.8985595703125 0.6156850961538461 0.9061279296875 0.6156850961538461 0.8985595703125 0.6535456730769231 0.6407470703125 0.2881610576923077 0.6407470703125 0.26953125 0.6483154296875 0.26953125 0.6485595703125 0.26953125 0.6561279296875 0.26953125 0.6485595703125 0.2881610576923077 0.6251220703125 0.26893028846153844 0.6251220703125 0.2503004807692307 0.6326904296875 0.2503004807692307 0.6405029296875 0.2503004807692307 0.6329345703125 0.26893028846153844 0.6329345703125 0.2503004807692307 0.6407470703125 0.2503004807692307 0.6483154296875 0.2503004807692307 0.6407470703125 0.26893028846153844 0.6522216796875 0.2503004807692307 0.6485595703125 0.26893028846153844 0.6485595703125 0.2503004807692307 0.0469970703125 0.9996995192307693 0.0623779296875 0.9233774038461539 0.0469970703125 0.9233774038461539 0.0780029296875 0.9233774038461539 0.0626220703125 0.9233774038461539 0.0626220703125 0.9996995192307693 0.9217529296875 0.6541466346153846 0.9063720703125 0.6541466346153846 0.9063720703125 0.6920072115384616 0.8282470703125 0.08623798076923073 0.8319091796875 0.07722355769230771 0.8282470703125 0.07722355769230771 0.6561279296875 0.2503004807692307 0.6524658203125 0.26893028846153844 0.6524658203125 0.2503004807692307 0.9219970703125 0.6920072115384616 0.9219970703125 0.6541466346153846 0.9295654296875 0.6541466346153846 0.9298095703125 0.6541466346153846 0.9373779296875 0.6541466346153846 0.9298095703125 0.6920072115384616 0.6251220703125 0.23106971153846156 0.6287841796875 0.23106971153846156 0.6251220703125 0.24969951923076927 0.6329345703125 0.24969951923076927 0.6329345703125 0.23106971153846156 0.6405029296875 0.23106971153846156 0.6407470703125 0.23106971153846156 0.6483154296875 0.23106971153846156 0.6407470703125 0.24969951923076927 0.9063720703125 0.6535456730769231 0.9063720703125 0.6156850961538461 0.9217529296875 0.6156850961538461 0.9295654296875 0.6156850961538461 0.9219970703125 0.6535456730769231 0.9219970703125 0.6156850961538461 0.6561279296875 0.23106971153846156 0.6485595703125 0.23106971153846156 0.6485595703125 0.24969951923076927 0.3927001953125 0.06760817307692313 0.3944091796875 0.06760817307692313 0.3927001953125 0.07181490384615385 0.9376220703125 0.6920072115384616 0.9376220703125 0.6541466346153846 0.9530029296875 0.6541466346153846 0.9532470703125 0.6541466346153846 0.9686279296875 0.6541466346153846 0.9532470703125 0.6920072115384616 0.6563720703125 0.30739182692307687 0.6563720703125 0.2887620192307693 0.6639404296875 0.2887620192307693 0.6641845703125 0.2887620192307693 0.6717529296875 0.2887620192307693 0.6641845703125 0.30739182692307687 0.6719970703125 0.30739182692307687 0.6719970703125 0.2887620192307693 0.6795654296875 0.2887620192307693 0.6873779296875 0.2887620192307693 0.6798095703125 0.2887620192307693 0.6798095703125 0.30739182692307687 0.9376220703125 0.6535456730769231 0.9686279296875 0.6156850961538461 0.9532470703125 0.6535456730769231 0.9532470703125 0.6156850961538461 0.6563720703125 0.2881610576923077 0.6563720703125 0.26953125 0.6639404296875 0.26953125 0.6641845703125 0.26953125 0.6641845703125 0.2881610576923077 0.6717529296875 0.26953125 0.9688720703125 0.6920072115384616 0.9842529296875 0.6541466346153846 0.9688720703125 0.6541466346153846 0.9844970703125 0.6920072115384616 0.9688720703125 0.6156850961538461 0.9688720703125 0.6535456730769231 0.9842529296875 0.6156850961538461 0.5350341796875 0.23106971153846156 0.5343017578125 0.23106971153846156 0.5343017578125 0.24969951923076927 0.6290283203125 0.23106971153846156 0.6297607421875 0.23106971153846156 0.6290283203125 0.24969951923076927 0.3946533203125 0.07181490384615385 0.3946533203125 0.06760817307692313 0.3953857421875 0.06760817307692313 0.8516845703125 0.07722355769230771 0.8533935546875 0.07722355769230771 0.3966064453125 0.06760817307692313 0.3966064453125 0.07181490384615385 0.3983154296875 0.06760817307692313 0.9844970703125 0.6535456730769231 0.9998779296875 0.6156850961538461 0.9844970703125 0.6156850961538461 0.0001220703125 0.5772235576923077 0.0155029296875 0.5772235576923077 0.0001220703125 0.6150841346153846 0.0157470703125 0.5772235576923077 0.0157470703125 0.6150841346153846 0.0311279296875 0.5772235576923077 0.0001220703125 0.5387620192307692 0.0155029296875 0.5387620192307692 0.0001220703125 0.5766225961538461 0.0157470703125 0.5387620192307692 0.0157470703125 0.5766225961538461 0.0311279296875 0.5387620192307692 0.0313720703125 0.5772235576923077 0.0313720703125 0.6150841346153846 0.0467529296875 0.5772235576923077 0.3985595703125 0.07181490384615385 0.4002685546875 0.06760817307692313 0.3985595703125 0.06760817307692313 0.8321533203125 0.08623798076923073 0.8321533203125 0.07722355769230771 0.8358154296875 0.07722355769230771 0.0469970703125 0.6150841346153846 0.0623779296875 0.5772235576923077 0.0469970703125 0.5772235576923077 0.8262939453125 0.08623798076923073 0.8262939453125 0.07722355769230771 0.8280029296875 0.07722355769230771 0.8360595703125 0.07722355769230771 0.8360595703125 0.08623798076923073 0.8397216796875 0.07722355769230771 0.0467529296875 0.5387620192307692 0.0313720703125 0.5387620192307692 0.0313720703125 0.5766225961538461 0.0469970703125 0.5387620192307692 0.0469970703125 0.5766225961538461 0.0623779296875 0.5387620192307692 0.0626220703125 0.6150841346153846 0.0780029296875 0.5772235576923077 0.0626220703125 0.5772235576923077 0.9373779296875 0.6156850961538461 0.9298095703125 0.6535456730769231 0.9298095703125 0.6156850961538461 0.0782470703125 0.6150841346153846 0.0782470703125 0.5772235576923077 0.0858154296875 0.5772235576923077 0.0936279296875 0.5772235576923077 0.0860595703125 0.6150841346153846 0.0860595703125 0.5772235576923077 0.8436279296875 0.07722355769230771 0.8399658203125 0.08623798076923073 0.8399658203125 0.07722355769230771 0.6719970703125 0.26953125 0.6756591796875 0.26953125 0.6719970703125 0.2881610576923077 0.6795654296875 0.26953125 0.6759033203125 0.2881610576923077 0.6759033203125 0.26953125 0.8438720703125 0.14453125 0.8475341796875 0.14453125 0.8438720703125 0.15354567307692313 0.8514404296875 0.14453125 0.8477783203125 0.15354567307692313 0.8477783203125 0.14453125 0.8553466796875 0.14453125 0.8516845703125 0.14453125 0.8516845703125 0.15354567307692313 0.4686279296875 0.5387620192307692 0.4610595703125 0.5766225961538461 0.6873779296875 0.26953125 0.6798095703125 0.26953125 0.6798095703125 0.2881610576923077 0.6563720703125 0.2503004807692307 0.6563720703125 0.26893028846153844 0.6639404296875 0.2503004807692307 0.3956298828125 0.06760817307692313 0.3956298828125 0.07181490384615385 0.3963623046875 0.06760817307692313 0.8592529296875 0.14453125 0.8555908203125 0.14453125 0.8555908203125 0.15354567307692313 0.6678466796875 0.2503004807692307 0.6641845703125 0.26893028846153844 0.6641845703125 0.2503004807692307 0.0626220703125 0.5766225961538461 0.0701904296875 0.5387620192307692 0.0626220703125 0.5387620192307692 0.6795654296875 0.2503004807692307 0.6719970703125 0.26893028846153844 0.6719970703125 0.2503004807692307 0.0782470703125 0.5766225961538461 0.0782470703125 0.5387620192307692 0.0936279296875 0.5387620192307692 0.0780029296875 0.5387620192307692 0.0704345703125 0.5766225961538461 0.0704345703125 0.5387620192307692 0.0938720703125 0.6150841346153846 0.0938720703125 0.5772235576923077 0.1014404296875 0.5772235576923077 0.1092529296875 0.5772235576923077 0.1016845703125 0.6150841346153846 0.1016845703125 0.5772235576923077 0.1094970703125 0.6150841346153846 0.1094970703125 0.5772235576923077 0.1248779296875 0.5772235576923077 0.0938720703125 0.5766225961538461 0.6798095703125 0.26893028846153844 0.6798095703125 0.2503004807692307 0.6873779296875 0.2503004807692307 0.6563720703125 0.23106971153846156 0.6563720703125 0.24969951923076927 0.6639404296875 0.23106971153846156 0.1094970703125 0.5387620192307692 0.1094970703125 0.5766225961538461 0.1248779296875 0.5387620192307692 0.1405029296875 0.5772235576923077 0.1251220703125 0.5772235576923077 0.1251220703125 0.6150841346153846 0.1561279296875 0.5772235576923077 0.1407470703125 0.5772235576923077 0.1407470703125 0.6150841346153846 0.8594970703125 0.15354567307692313 0.8631591796875 0.14453125 0.8594970703125 0.14453125 0.2344970703125 0.15414663461538458 0.2420654296875 0.15414663461538458 0.1873779296875 0.09645432692307687 0.1798095703125 0.09645432692307687 0.1251220703125 0.5387620192307692 0.1251220703125 0.5766225961538461 0.1326904296875 0.5387620192307692 0.1405029296875 0.5387620192307692 0.1329345703125 0.5766225961538461 0.1329345703125 0.5387620192307692 0.6680908203125 0.2503004807692307 0.6680908203125 0.26893028846153844 0.6717529296875 0.2503004807692307 0.6678466796875 0.23106971153846156 0.6641845703125 0.23106971153846156 0.6641845703125 0.24969951923076927 0.8670654296875 0.14453125 0.8634033203125 0.15354567307692313 0.8634033203125 0.14453125 0.8690185546875 0.14453125 0.8673095703125 0.15354567307692313 0.8673095703125 0.14453125 0.8748779296875 0.14453125 0.8712158203125 0.14453125 0.8712158203125 0.15354567307692313 0.4005126953125 0.07181490384615385 0.4005126953125 0.06760817307692313 0.4022216796875 0.06760817307692313 0.1407470703125 0.5766225961538461 0.1561279296875 0.5387620192307692 0.1407470703125 0.5387620192307692 0.1563720703125 0.5772235576923077 0.1563720703125 0.6150841346153846 0.1717529296875 0.5772235576923077 0.6719970703125 0.24969951923076927 0.6795654296875 0.23106971153846156 0.6719970703125 0.23106971153846156 0.6873779296875 0.23106971153846156 0.6798095703125 0.24969951923076927 0.6798095703125 0.23106971153846156 0.6876220703125 0.30739182692307687 0.6951904296875 0.2887620192307693 0.6876220703125 0.2887620192307693 0.7030029296875 0.2887620192307693 0.6954345703125 0.30739182692307687 0.6954345703125 0.2887620192307693 0.1719970703125 0.6150841346153846 0.1719970703125 0.5772235576923077 0.1795654296875 0.5772235576923077 0.1563720703125 0.5387620192307692 0.1563720703125 0.5766225961538461 0.1717529296875 0.5387620192307692 0.8438720703125 0.14393028846153844 0.8475341796875 0.13491586538461542 0.8438720703125 0.13491586538461542 0.8477783203125 0.13491586538461542 0.8477783203125 0.14393028846153844 0.8514404296875 0.13491586538461542 0.7032470703125 0.30739182692307687 0.7032470703125 0.2887620192307693 0.7108154296875 0.2887620192307693 0.7186279296875 0.2887620192307693 0.7110595703125 0.2887620192307693 0.7110595703125 0.30739182692307687 0.1798095703125 0.6150841346153846 0.1798095703125 0.5772235576923077 0.1873779296875 0.5772235576923077 0.1719970703125 0.5387620192307692 0.1719970703125 0.5766225961538461 0.1873779296875 0.5387620192307692 0.8516845703125 0.14393028846153844 0.8553466796875 0.13491586538461542 0.8516845703125 0.13491586538461542 0.8709716796875 0.14453125 0.8692626953125 0.15354567307692313 0.8692626953125 0.14453125 0.1876220703125 0.5772235576923077 0.2030029296875 0.5772235576923077 0.1876220703125 0.6150841346153846 0.6876220703125 0.2881610576923077 0.6876220703125 0.26953125 0.6951904296875 0.26953125 0.2032470703125 0.5772235576923077 0.2108154296875 0.5772235576923077 0.2032470703125 0.6150841346153846 0.6680908203125 0.24969951923076927 0.6680908203125 0.23106971153846156 0.6717529296875 0.23106971153846156 0.8572998046875 0.13491586538461542 0.8555908203125 0.13491586538461542 0.8555908203125 0.14393028846153844 0.6954345703125 0.2881610576923077 0.6954345703125 0.26953125 0.7030029296875 0.26953125 0.2110595703125 0.5772235576923077 0.2110595703125 0.6150841346153846 0.2186279296875 0.5772235576923077 0.1951904296875 0.5387620192307692 0.1876220703125 0.5387620192307692 0.1876220703125 0.5766225961538461 0.1954345703125 0.5387620192307692 0.1954345703125 0.5766225961538461 0.2030029296875 0.5387620192307692 0.2108154296875 0.5387620192307692 0.2032470703125 0.5387620192307692 0.2032470703125 0.5766225961538461 0.7108154296875 0.26953125 0.7032470703125 0.26953125 0.7032470703125 0.2881610576923077 0.7110595703125 0.26953125 0.7147216796875 0.26953125 0.7110595703125 0.2881610576923077 0.7149658203125 0.2881610576923077 0.7149658203125 0.26953125 0.7186279296875 0.26953125 0.2110595703125 0.5387620192307692 0.2110595703125 0.5766225961538461 0.2186279296875 0.5387620192307692 0.2188720703125 0.6150841346153846 0.2264404296875 0.5772235576923077 0.2188720703125 0.5772235576923077 0.2266845703125 0.5772235576923077 0.2266845703125 0.6150841346153846 0.2342529296875 0.5772235576923077 0.6876220703125 0.26893028846153844 0.6951904296875 0.2503004807692307 0.6876220703125 0.2503004807692307 0.6954345703125 0.2503004807692307 0.6954345703125 0.26893028846153844 0.7030029296875 0.2503004807692307 0.4041748046875 0.06760817307692313 0.4024658203125 0.06760817307692313 0.4024658203125 0.07181490384615385 0.8575439453125 0.14393028846153844 0.8592529296875 0.13491586538461542 0.8575439453125 0.13491586538461542 0.8594970703125 0.13491586538461542 0.8594970703125 0.14393028846153844 0.8612060546875 0.13491586538461542 0.7032470703125 0.26893028846153844 0.7108154296875 0.2503004807692307 0.7032470703125 0.2503004807692307 0.7110595703125 0.2503004807692307 0.7110595703125 0.26893028846153844 0.7186279296875 0.2503004807692307 0.6951904296875 0.23106971153846156 0.6876220703125 0.24969951923076927 0.6876220703125 0.23106971153846156 0.6954345703125 0.23106971153846156 0.6954345703125 0.24969951923076927 0.7030029296875 0.23106971153846156 0.2344970703125 0.6150841346153846 0.2420654296875 0.5772235576923077 0.2344970703125 0.5772235576923077 0.2423095703125 0.5772235576923077 0.2423095703125 0.6150841346153846 0.2498779296875 0.5772235576923077 0.7032470703125 0.24969951923076927 0.7069091796875 0.23106971153846156 0.7032470703125 0.23106971153846156 0.8634033203125 0.14393028846153844 0.8634033203125 0.13491586538461542 0.8670654296875 0.13491586538461542 0.7071533203125 0.23106971153846156 0.7108154296875 0.23106971153846156 0.7071533203125 0.24969951923076927 0.7110595703125 0.23106971153846156 0.7186279296875 0.23106971153846156 0.7110595703125 0.24969951923076927 0.7264404296875 0.2887620192307693 0.7188720703125 0.30739182692307687 0.7188720703125 0.2887620192307693 0.7266845703125 0.30739182692307687 0.7342529296875 0.2887620192307693 0.7266845703125 0.2887620192307693 0.2188720703125 0.5387620192307692 0.2188720703125 0.5766225961538461 0.2264404296875 0.5387620192307692 0.2266845703125 0.5766225961538461 0.2342529296875 0.5387620192307692 0.2266845703125 0.5387620192307692 0.7420654296875 0.2887620192307693 0.7344970703125 0.30739182692307687 0.7344970703125 0.2887620192307693 0.7423095703125 0.30739182692307687 0.7423095703125 0.2887620192307693 0.7498779296875 0.2887620192307693 0.9063720703125 0.6150841346153846 0.9139404296875 0.5772235576923077 0.4044189453125 0.06760817307692313 0.4044189453125 0.07181490384615385 0.4051513671875 0.06760817307692313 0.7188720703125 0.2881610576923077 0.7188720703125 0.26953125 0.7264404296875 0.26953125 0.7342529296875 0.26953125 0.7266845703125 0.2881610576923077 0.7266845703125 0.26953125 0.7420654296875 0.26953125 0.7344970703125 0.26953125 0.7344970703125 0.2881610576923077 0.7459716796875 0.26953125 0.7423095703125 0.2881610576923077 0.7423095703125 0.26953125 0.8709716796875 0.13491586538461542 0.8673095703125 0.14393028846153844 0.8673095703125 0.13491586538461542 0.3751220703125 0.06280048076923073 0.3751220703125 0.06700721153846156 0.3768310546875 0.06280048076923073 0.8614501953125 0.13491586538461542 0.8631591796875 0.13491586538461542 0.8614501953125 0.14393028846153844 0.8729248046875 0.13491586538461542 0.8712158203125 0.14393028846153844 0.8712158203125 0.13491586538461542 0.4053955078125 0.06760817307692313 0.4053955078125 0.07181490384615385 0.4061279296875 0.06760817307692313 0.7188720703125 0.26893028846153844 0.7264404296875 0.2503004807692307 0.7188720703125 0.2503004807692307 0.2344970703125 0.5387620192307692 0.2344970703125 0.5766225961538461 0.2420654296875 0.5387620192307692 0.2423095703125 0.5766225961538461 0.2498779296875 0.5387620192307692 0.2423095703125 0.5387620192307692 0.7342529296875 0.2503004807692307 0.7266845703125 0.2503004807692307 0.7266845703125 0.26893028846153844 0.7344970703125 0.2503004807692307 0.7344970703125 0.26893028846153844 0.7420654296875 0.2503004807692307 0.2501220703125 0.5772235576923077 0.2576904296875 0.5772235576923077 0.2501220703125 0.6150841346153846 0.2579345703125 0.5772235576923077 0.2579345703125 0.6150841346153846 0.2655029296875 0.5772235576923077 0.8438720703125 0.13431490384615385 0.8475341796875 0.12530048076923073 0.8438720703125 0.12530048076923073 0.8514404296875 0.12530048076923073 0.8477783203125 0.12530048076923073 0.8477783203125 0.13431490384615385 0.2657470703125 0.6150841346153846 0.2657470703125 0.5772235576923077 0.2811279296875 0.5772235576923077 0.7462158203125 0.26953125 0.7462158203125 0.2881610576923077 0.7498779296875 0.26953125 0.7423095703125 0.26893028846153844 0.7459716796875 0.2503004807692307 0.7423095703125 0.2503004807692307 0.7462158203125 0.2503004807692307 0.7462158203125 0.26893028846153844 0.7498779296875 0.2503004807692307 0.3787841796875 0.06280048076923073 0.3770751953125 0.06280048076923073 0.3770751953125 0.06700721153846156 0.6300048828125 0.24969951923076927 0.6307373046875 0.23106971153846156 0.6300048828125 0.23106971153846156 0.2576904296875 0.5387620192307692 0.2501220703125 0.5766225961538461 0.2501220703125 0.5387620192307692 0.2579345703125 0.5387620192307692 0.2579345703125 0.5766225961538461 0.2655029296875 0.5387620192307692 0.2733154296875 0.5387620192307692 0.2657470703125 0.5387620192307692 0.2657470703125 0.5766225961538461 0.2735595703125 0.5387620192307692 0.2735595703125 0.5766225961538461 0.2811279296875 0.5387620192307692 0.2813720703125 0.6150841346153846 0.2967529296875 0.5772235576923077 0.2813720703125 0.5772235576923077 0.3045654296875 0.5772235576923077 0.2969970703125 0.6150841346153846 0.2969970703125 0.5772235576923077 0.7188720703125 0.24969951923076927 0.7188720703125 0.23106971153846156 0.7225341796875 0.23106971153846156 0.7264404296875 0.23106971153846156 0.7227783203125 0.23106971153846156 0.7227783203125 0.24969951923076927 0.7266845703125 0.24969951923076927 0.7344970703125 0.24969951923076927 0.7420654296875 0.23106971153846156 0.7344970703125 0.23106971153846156 0.7498779296875 0.23106971153846156 0.7423095703125 0.24969951923076927 0.7423095703125 0.23106971153846156 0.3048095703125 0.6150841346153846 0.3048095703125 0.5772235576923077 0.3123779296875 0.5772235576923077 0.2813720703125 0.5387620192307692 0.2813720703125 0.5766225961538461 0.2967529296875 0.5387620192307692 0.7501220703125 0.30739182692307687 0.7576904296875 0.2887620192307693 0.7501220703125 0.2887620192307693 0.2969970703125 0.5766225961538461 0.3048095703125 0.5766225961538461 0.3123779296875 0.5387620192307692 0.3048095703125 0.5387620192307692 0.3201904296875 0.5772235576923077 0.3126220703125 0.5772235576923077 0.3126220703125 0.6150841346153846 0.3204345703125 0.5772235576923077 0.3436279296875 0.5772235576923077 0.3282470703125 0.5772235576923077 0.3282470703125 0.6150841346153846 0.8516845703125 0.12530048076923073 0.8516845703125 0.13431490384615385 0.8553466796875 0.12530048076923073 0.8592529296875 0.12530048076923073 0.8555908203125 0.12530048076923073 0.8555908203125 0.13431490384615385 0.7579345703125 0.30739182692307687 0.7579345703125 0.2887620192307693 0.7655029296875 0.2887620192307693 0.7657470703125 0.2887620192307693 0.7733154296875 0.2887620192307693 0.7657470703125 0.30739182692307687 0.3280029296875 0.5387620192307692 0.3126220703125 0.5387620192307692 0.3126220703125 0.5766225961538461 0.3282470703125 0.5766225961538461 0.3436279296875 0.5387620192307692 0.3282470703125 0.5387620192307692 0.3514404296875 0.5772235576923077 0.3438720703125 0.5772235576923077 0.3438720703125 0.6150841346153846 0.7735595703125 0.30739182692307687 0.7811279296875 0.2887620192307693 0.7735595703125 0.2887620192307693 0.3594970703125 0.5772235576923077 0.3748779296875 0.5772235576923077 0.3594970703125 0.6150841346153846 0.3438720703125 0.5387620192307692 0.3592529296875 0.5387620192307692 0.3438720703125 0.5766225961538461 0.8594970703125 0.13431490384615385 0.8631591796875 0.12530048076923073 0.8594970703125 0.12530048076923073 0.7305908203125 0.24969951923076927 0.7305908203125 0.23106971153846156 0.7342529296875 0.23106971153846156 0.7501220703125 0.26953125 0.7537841796875 0.26953125 0.7501220703125 0.2881610576923077 0.3594970703125 0.5766225961538461 0.3594970703125 0.5387620192307692 0.3748779296875 0.5387620192307692 0.3751220703125 0.5772235576923077 0.3905029296875 0.5772235576923077 0.3751220703125 0.6150841346153846 0.8634033203125 0.12530048076923073 0.8634033203125 0.13431490384615385 0.8670654296875 0.12530048076923073 0.7540283203125 0.26953125 0.7576904296875 0.26953125 0.7540283203125 0.2881610576923077 0.7615966796875 0.26953125 0.7579345703125 0.2881610576923077 0.7579345703125 0.26953125 0.8673095703125 0.12530048076923073 0.8709716796875 0.12530048076923073 0.8673095703125 0.13431490384615385 0.3712158203125 0.21123798076923073 0.3748779296875 0.19260817307692313 0.3907470703125 0.5772235576923077 0.4061279296875 0.5772235576923077 0.3907470703125 0.6150841346153846 0.7657470703125 0.2881610576923077 0.7657470703125 0.26953125 0.7733154296875 0.26953125 0.7811279296875 0.26953125 0.7735595703125 0.26953125 0.7735595703125 0.2881610576923077 0.7501220703125 0.26893028846153844 0.7576904296875 0.2503004807692307 0.7501220703125 0.2503004807692307 0.7579345703125 0.2503004807692307 0.7655029296875 0.2503004807692307 0.7579345703125 0.26893028846153844 0.3516845703125 0.5772235576923077 0.3516845703125 0.6150841346153846 0.3592529296875 0.5772235576923077 0.3826904296875 0.5387620192307692 0.3751220703125 0.5387620192307692 0.3751220703125 0.5766225961538461 0.7655029296875 0.26953125 0.7618408203125 0.2881610576923077 0.7618408203125 0.26953125 0.7657470703125 0.2503004807692307 0.7694091796875 0.2503004807692307 0.7657470703125 0.26893028846153844 0.7811279296875 0.2503004807692307 0.7735595703125 0.26893028846153844 0.7735595703125 0.2503004807692307 0.8731689453125 0.13491586538461542 0.8731689453125 0.14393028846153844 0.8748779296875 0.13491586538461542 0.7501220703125 0.24969951923076927 0.7576904296875 0.23106971153846156 0.7501220703125 0.23106971153846156 0.7579345703125 0.23106971153846156 0.7579345703125 0.24969951923076927 0.7655029296875 0.23106971153846156 0.7657470703125 0.24969951923076927 0.7733154296875 0.23106971153846156 0.7657470703125 0.23106971153846156 0.7696533203125 0.26893028846153844 0.7696533203125 0.2503004807692307 0.7733154296875 0.2503004807692307 0.7811279296875 0.23106971153846156 0.7735595703125 0.23106971153846156 0.7735595703125 0.24969951923076927 0.3829345703125 0.5387620192307692 0.3907470703125 0.5766225961538461 0.8712158203125 0.13431490384615385 0.8712158203125 0.12530048076923073 0.8729248046875 0.12530048076923073 0.8748779296875 0.12530048076923073 0.8731689453125 0.13431490384615385 0.8731689453125 0.12530048076923073 0.6309814453125 0.23106971153846156 0.6309814453125 0.24969951923076927 0.6317138671875 0.23106971153846156 0.6319580078125 0.23106971153846156 0.6319580078125 0.24969951923076927 0.6326904296875 0.23106971153846156 0.7813720703125 0.2887620192307693 0.7813720703125 0.30739182692307687 0.7821044921875 0.2887620192307693 0.8438720703125 0.12469951923076927 0.8475341796875 0.11568509615384615 0.8438720703125 0.11568509615384615 0.7889404296875 0.2887620192307693 0.7852783203125 0.30739182692307687 0.7852783203125 0.2887620192307693 0.7891845703125 0.2887620192307693 0.7928466796875 0.2887620192307693 0.7891845703125 0.30739182692307687 0.8045654296875 0.2887620192307693 0.7969970703125 0.30739182692307687 0.7969970703125 0.2887620192307693 0.8048095703125 0.2887620192307693 0.8123779296875 0.2887620192307693 0.8048095703125 0.30739182692307687 0.3985595703125 0.5387620192307692 0.3985595703125 0.5766225961538461 0.4061279296875 0.5387620192307692 0.3790283203125 0.06700721153846156 0.3807373046875 0.06280048076923073 0.3790283203125 0.06280048076923073 0.4063720703125 0.6150841346153846 0.4063720703125 0.5772235576923077 0.4217529296875 0.5772235576923077 0.4219970703125 0.5772235576923077 0.4373779296875 0.5772235576923077 0.4219970703125 0.6150841346153846 0.4063720703125 0.5766225961538461 0.4063720703125 0.5387620192307692 0.4139404296875 0.5387620192307692 0.7967529296875 0.2887620192307693 0.7930908203125 0.2887620192307693 0.7930908203125 0.30739182692307687 0.7813720703125 0.2881610576923077 0.7889404296875 0.26953125 0.7813720703125 0.26953125 0.4141845703125 0.5387620192307692 0.4141845703125 0.5766225961538461 0.4217529296875 0.5387620192307692 0.4219970703125 0.5766225961538461 0.4295654296875 0.5387620192307692 0.4219970703125 0.5387620192307692 0.7967529296875 0.26953125 0.7891845703125 0.2881610576923077 0.7891845703125 0.26953125 0.7969970703125 0.2881610576923077 0.7969970703125 0.26953125 0.8045654296875 0.26953125 0.8477783203125 0.11568509615384615 0.8514404296875 0.11568509615384615 0.8477783203125 0.12469951923076927 0.8048095703125 0.2881610576923077 0.8048095703125 0.26953125 0.8123779296875 0.26953125 0.7813720703125 0.2503004807692307 0.7889404296875 0.2503004807692307 0.7813720703125 0.26893028846153844 0.4376220703125 0.6150841346153846 0.4376220703125 0.5772235576923077 0.4530029296875 0.5772235576923077 0.7967529296875 0.2503004807692307 0.7891845703125 0.26893028846153844 0.7891845703125 0.2503004807692307 0.7969970703125 0.2503004807692307 0.8045654296875 0.2503004807692307 0.7969970703125 0.26893028846153844 0.8084716796875 0.2503004807692307 0.8048095703125 0.2503004807692307 0.8048095703125 0.26893028846153844 0.8516845703125 0.11568509615384615 0.8553466796875 0.11568509615384615 0.8516845703125 0.12469951923076927 0.8555908203125 0.11568509615384615 0.8592529296875 0.11568509615384615 0.8555908203125 0.12469951923076927 0.4532470703125 0.5772235576923077 0.4532470703125 0.6150841346153846 0.4686279296875 0.5772235576923077 0.4530029296875 0.5387620192307692 0.4376220703125 0.5766225961538461 0.4376220703125 0.5387620192307692 0.7813720703125 0.24969951923076927 0.7813720703125 0.23106971153846156 0.7889404296875 0.23106971153846156 0.7891845703125 0.23106971153846156 0.7967529296875 0.23106971153846156 0.7891845703125 0.24969951923076927 0.8087158203125 0.2503004807692307 0.8594970703125 0.11568509615384615 0.8612060546875 0.11568509615384615 0.8594970703125 0.12469951923076927 0.3809814453125 0.06280048076923073 0.3826904296875 0.06280048076923073 0.3809814453125 0.06700721153846156 0.7969970703125 0.24969951923076927 0.7969970703125 0.23106971153846156 0.8045654296875 0.23106971153846156 0.8048095703125 0.23106971153846156 0.8123779296875 0.23106971153846156 0.8048095703125 0.24969951923076927 0.8201904296875 0.2887620192307693 0.8126220703125 0.2887620192307693 0.8126220703125 0.30739182692307687 0.8204345703125 0.30739182692307687 0.8204345703125 0.2887620192307693 0.8280029296875 0.2887620192307693 0.4298095703125 0.5387620192307692 0.4298095703125 0.5766225961538461 0.4373779296875 0.5387620192307692 0.8634033203125 0.11568509615384615 0.8634033203125 0.12469951923076927 0.8670654296875 0.11568509615384615 0.8631591796875 0.11568509615384615 0.8614501953125 0.12469951923076927 0.8614501953125 0.11568509615384615 0.4532470703125 0.5387620192307692 0.4532470703125 0.5766225961538461 0.4608154296875 0.5387620192307692 0.8282470703125 0.30739182692307687 0.8358154296875 0.2887620192307693 0.8282470703125 0.2887620192307693 0.8397216796875 0.2887620192307693 0.8360595703125 0.30739182692307687 0.8360595703125 0.2887620192307693 0.4610595703125 0.5387620192307692 0.8399658203125 0.30739182692307687 0.8399658203125 0.2887620192307693 0.8436279296875 0.2887620192307693 0.8201904296875 0.26953125 0.8126220703125 0.26953125 0.8126220703125 0.2881610576923077 0.8240966796875 0.26953125 0.8204345703125 0.26953125 0.8204345703125 0.2881610576923077 0.4688720703125 0.6150841346153846 0.4764404296875 0.5772235576923077 0.4688720703125 0.5772235576923077 0.4766845703125 0.5772235576923077 0.4766845703125 0.6150841346153846 0.4842529296875 0.5772235576923077 0.4844970703125 0.5772235576923077 0.4844970703125 0.6150841346153846 0.4920654296875 0.5772235576923077 0.4923095703125 0.6150841346153846 0.4998779296875 0.5772235576923077 0.4923095703125 0.5772235576923077 0.8280029296875 0.26953125 0.8243408203125 0.26953125 0.8243408203125 0.2881610576923077 0.7830810546875 0.2887620192307693 0.7823486328125 0.30739182692307687 0.7823486328125 0.2887620192307693 0.8282470703125 0.2881610576923077 0.8358154296875 0.26953125 0.8282470703125 0.26953125 0.8360595703125 0.26953125 0.8436279296875 0.26953125 0.8360595703125 0.2881610576923077 0.4688720703125 0.5766225961538461 0.4688720703125 0.5387620192307692 0.4842529296875 0.5387620192307692 0.4998779296875 0.5387620192307692 0.4844970703125 0.5766225961538461 0.4844970703125 0.5387620192307692 0.7840576171875 0.2887620192307693 0.7833251953125 0.30739182692307687 0.7833251953125 0.2887620192307693 0.7850341796875 0.2887620192307693 0.7843017578125 0.30739182692307687 0.7843017578125 0.2887620192307693 0.8126220703125 0.2503004807692307 0.8201904296875 0.2503004807692307 0.8126220703125 0.26893028846153844 0.8204345703125 0.26893028846153844 0.8204345703125 0.2503004807692307 0.8240966796875 0.2503004807692307 0.8243408203125 0.2503004807692307 0.8280029296875 0.2503004807692307 0.8243408203125 0.26893028846153844 0.8709716796875 0.11568509615384615 0.8673095703125 0.12469951923076927 0.8673095703125 0.11568509615384615 0.5001220703125 0.6150841346153846 0.5076904296875 0.5772235576923077 0.5001220703125 0.5772235576923077 0.8282470703125 0.2503004807692307 0.8282470703125 0.26893028846153844 0.8358154296875 0.2503004807692307 0.8360595703125 0.26893028846153844 0.8397216796875 0.2503004807692307 0.8360595703125 0.2503004807692307 0.5157470703125 0.6150841346153846 0.5157470703125 0.5772235576923077 0.5311279296875 0.5772235576923077 0.5001220703125 0.5387620192307692 0.5155029296875 0.5387620192307692 0.5001220703125 0.5766225961538461 0.5311279296875 0.5387620192307692 0.5157470703125 0.5387620192307692 0.5157470703125 0.5766225961538461 0.8126220703125 0.24969951923076927 0.8201904296875 0.23106971153846156 0.8126220703125 0.23106971153846156 0.5313720703125 0.6150841346153846 0.5313720703125 0.5772235576923077 0.5467529296875 0.5772235576923077 0.8712158203125 0.11568509615384615 0.8712158203125 0.12469951923076927 0.8748779296875 0.11568509615384615 0.5469970703125 0.5772235576923077 0.5469970703125 0.6150841346153846 0.5623779296875 0.5772235576923077 0.5467529296875 0.5387620192307692 0.5313720703125 0.5387620192307692 0.5313720703125 0.5766225961538461 0.5155029296875 0.5772235576923077 0.5079345703125 0.6150841346153846 0.5079345703125 0.5772235576923077 0.8204345703125 0.23106971153846156 0.8280029296875 0.23106971153846156 0.8204345703125 0.24969951923076927 0.8399658203125 0.26893028846153844 0.8399658203125 0.2503004807692307 0.8436279296875 0.2503004807692307 0.8319091796875 0.23106971153846156 0.8282470703125 0.24969951923076927 0.8282470703125 0.23106971153846156 0.3829345703125 0.06280048076923073 0.3829345703125 0.06700721153846156 0.3846435546875 0.06280048076923073 0.5469970703125 0.5766225961538461 0.5469970703125 0.5387620192307692 0.5623779296875 0.5387620192307692 0.5626220703125 0.6150841346153846 0.8360595703125 0.23106971153846156 0.8360595703125 0.24969951923076927 0.8436279296875 0.23106971153846156 0.8514404296875 0.2887620192307693 0.8438720703125 0.30739182692307687 0.8438720703125 0.2887620192307693 0.8321533203125 0.23106971153846156 0.8321533203125 0.24969951923076927 0.8328857421875 0.23106971153846156 0.8516845703125 0.30739182692307687 0.8592529296875 0.2887620192307693 0.8516845703125 0.2887620192307693 0.8594970703125 0.2887620192307693 0.8594970703125 0.30739182692307687 0.8670654296875 0.2887620192307693 0.8748779296875 0.2887620192307693 0.8673095703125 0.2887620192307693 0.8673095703125 0.30739182692307687 0.8514404296875 0.26953125 0.8438720703125 0.26953125 0.8438720703125 0.2881610576923077 0.8438720703125 0.10606971153846156 0.8438720703125 0.11508413461538458 0.8455810546875 0.10606971153846156 0.2772216796875 0.2118389423076923 0.2735595703125 0.23046875 0.8516845703125 0.2881610576923077 0.8592529296875 0.26953125 0.8516845703125 0.26953125 0.8477783203125 0.11508413461538458 0.8514404296875 0.10606971153846156 0.8477783203125 0.10606971153846156 0.3848876953125 0.06700721153846156 0.3856201171875 0.06280048076923073 0.3848876953125 0.06280048076923073 0.8516845703125 0.11508413461538458 0.8516845703125 0.10606971153846156 0.8553466796875 0.10606971153846156 0.8594970703125 0.26953125 0.8594970703125 0.2881610576923077 0.8631591796875 0.26953125 0.5704345703125 0.5772235576923077 0.5780029296875 0.5772235576923077 0.5704345703125 0.6150841346153846 0.5782470703125 0.6150841346153846 0.5936279296875 0.5772235576923077 0.5782470703125 0.5772235576923077 0.5626220703125 0.5387620192307692 0.5626220703125 0.5766225961538461 0.5780029296875 0.5387620192307692 0.8673095703125 0.2881610576923077 0.8748779296875 0.26953125 0.8673095703125 0.26953125 0.8438720703125 0.2503004807692307 0.8438720703125 0.26893028846153844 0.8514404296875 0.2503004807692307 0.8592529296875 0.2503004807692307 0.8516845703125 0.2503004807692307 0.8516845703125 0.26893028846153844 0.8594970703125 0.2503004807692307 0.8594970703125 0.26893028846153844 0.8670654296875 0.2503004807692307 0.5782470703125 0.5387620192307692 0.5782470703125 0.5766225961538461 0.5858154296875 0.5387620192307692 0.5938720703125 0.5772235576923077 0.5938720703125 0.6150841346153846 0.6092529296875 0.5772235576923077 0.5860595703125 0.5766225961538461 0.5936279296875 0.5387620192307692 0.5860595703125 0.5387620192307692 0.8673095703125 0.2503004807692307 0.8673095703125 0.26893028846153844 0.8748779296875 0.2503004807692307 0.3885498046875 0.06280048076923073 0.3868408203125 0.06700721153846156 0.3868408203125 0.06280048076923073 0.3858642578125 0.06280048076923073 0.3865966796875 0.06280048076923073 0.3858642578125 0.06700721153846156 0.8438720703125 0.24969951923076927 0.8438720703125 0.23106971153846156 0.8514404296875 0.23106971153846156 0.8516845703125 0.23106971153846156 0.8592529296875 0.23106971153846156 0.8516845703125 0.24969951923076927 0.6094970703125 0.6150841346153846 0.6094970703125 0.5772235576923077 0.6248779296875 0.5772235576923077 0.5938720703125 0.5387620192307692 0.6092529296875 0.5387620192307692 0.5938720703125 0.5766225961538461 0.6248779296875 0.5387620192307692 0.6094970703125 0.5387620192307692 0.6094970703125 0.5766225961538461 0.8594970703125 0.24969951923076927 0.8594970703125 0.23106971153846156 0.8670654296875 0.23106971153846156 0.6251220703125 0.5772235576923077 0.6251220703125 0.6150841346153846 0.6326904296875 0.5772235576923077 0.6329345703125 0.6150841346153846 0.6405029296875 0.5772235576923077 0.6329345703125 0.5772235576923077 0.8748779296875 0.23106971153846156 0.8673095703125 0.24969951923076927 0.8673095703125 0.23106971153846156 0.8555908203125 0.11508413461538458 0.8555908203125 0.10606971153846156 0.8592529296875 0.10606971153846156 0.8631591796875 0.10606971153846156 0.8594970703125 0.11508413461538458 0.8594970703125 0.10606971153846156 0.6407470703125 0.6150841346153846 0.6407470703125 0.5772235576923077 0.6561279296875 0.5772235576923077 0.6251220703125 0.5766225961538461 0.6326904296875 0.5387620192307692 0.6251220703125 0.5387620192307692 0.8670654296875 0.26953125 0.8634033203125 0.2881610576923077 0.8634033203125 0.26953125 0.3887939453125 0.06280048076923073 0.3895263671875 0.06280048076923073 0.3887939453125 0.06700721153846156 0.8338623046875 0.23106971153846156 0.8331298828125 0.23106971153846156 0.8331298828125 0.24969951923076927 0.8634033203125 0.11508413461538458 0.8634033203125 0.10606971153846156 0.8670654296875 0.10606971153846156 0.8475341796875 0.10606971153846156 0.8458251953125 0.11508413461538458 0.8458251953125 0.10606971153846156 0.6407470703125 0.5766225961538461 0.6407470703125 0.5387620192307692 0.6561279296875 0.5387620192307692 0.6405029296875 0.5387620192307692 0.6329345703125 0.5766225961538461 0.6329345703125 0.5387620192307692 0.6563720703125 0.5772235576923077 0.6563720703125 0.6150841346153846 0.6639404296875 0.5772235576923077 0.6717529296875 0.5772235576923077 0.6641845703125 0.6150841346153846 0.6641845703125 0.5772235576923077 0.8751220703125 0.30739182692307687 0.8826904296875 0.2887620192307693 0.8751220703125 0.2887620192307693 0.6719970703125 0.5772235576923077 0.6719970703125 0.6150841346153846 0.6795654296875 0.5772235576923077 0.6563720703125 0.5766225961538461 0.6717529296875 0.5387620192307692 0.6563720703125 0.5387620192307692 0.6719970703125 0.5766225961538461 0.6873779296875 0.5387620192307692 0.6719970703125 0.5387620192307692 0.6876220703125 0.5772235576923077 0.6876220703125 0.6150841346153846 0.7030029296875 0.5772235576923077 0.8829345703125 0.30739182692307687 0.8865966796875 0.2887620192307693 0.8829345703125 0.2887620192307693 0.8673095703125 0.10606971153846156 0.8673095703125 0.11508413461538458 0.8709716796875 0.10606971153846156 0.8905029296875 0.2887620192307693 0.8868408203125 0.30739182692307687 0.8868408203125 0.2887620192307693 0.0782470703125 0.9996995192307693 0.0782470703125 0.9233774038461539 0.0936279296875 0.9233774038461539 0.0938720703125 0.9233774038461539 0.0938720703125 0.9996995192307693 0.1248779296875 0.9233774038461539 0.8907470703125 0.2887620192307693 0.8907470703125 0.30739182692307687 0.8944091796875 0.2887620192307693 0.8983154296875 0.2887620192307693 0.8946533203125 0.30739182692307687 0.8946533203125 0.2887620192307693 0.8985595703125 0.30739182692307687 0.8985595703125 0.2887620192307693 0.9022216796875 0.2887620192307693 0.8826904296875 0.26953125 0.8751220703125 0.26953125 0.8751220703125 0.2881610576923077 0.3907470703125 0.06700721153846156 0.3924560546875 0.06280048076923073 0.3907470703125 0.06280048076923073 0.3927001953125 0.06280048076923073 0.3944091796875 0.06280048076923073 0.3927001953125 0.06700721153846156 0.8348388671875 0.23106971153846156 0.8341064453125 0.23106971153846156 0.8341064453125 0.24969951923076927 0.3946533203125 0.06280048076923073 0.3963623046875 0.06280048076923073 0.3946533203125 0.06700721153846156 0.3966064453125 0.06280048076923073 0.3983154296875 0.06280048076923073 0.3966064453125 0.06700721153846156 0.8829345703125 0.2881610576923077 0.8829345703125 0.26953125 0.8905029296875 0.26953125 0.8712158203125 0.10606971153846156 0.8712158203125 0.11508413461538458 0.8748779296875 0.10606971153846156 0.8438720703125 0.09645432692307687 0.8438720703125 0.10546875 0.8475341796875 0.09645432692307687 0.8514404296875 0.09645432692307687 0.8477783203125 0.09645432692307687 0.8477783203125 0.10546875 0.8516845703125 0.09645432692307687 0.8516845703125 0.10546875 0.8553466796875 0.09645432692307687 0.8555908203125 0.09645432692307687 0.8592529296875 0.09645432692307687 0.8555908203125 0.10546875 0.8612060546875 0.09645432692307687 0.8594970703125 0.09645432692307687 0.8594970703125 0.10546875 0.4002685546875 0.06280048076923073 0.3985595703125 0.06280048076923073 0.3985595703125 0.06700721153846156 0.7032470703125 0.6150841346153846 0.7186279296875 0.5772235576923077 0.7032470703125 0.5772235576923077 0.6873779296875 0.5772235576923077 0.6798095703125 0.6150841346153846 0.6798095703125 0.5772235576923077 0.8907470703125 0.2881610576923077 0.8907470703125 0.26953125 0.8983154296875 0.26953125 0.9061279296875 0.26953125 0.8985595703125 0.2881610576923077 0.8985595703125 0.26953125 0.6876220703125 0.5766225961538461 0.7030029296875 0.5387620192307692 0.6876220703125 0.5387620192307692 0.7032470703125 0.5387620192307692 0.7032470703125 0.5766225961538461 0.7186279296875 0.5387620192307692 0.7188720703125 0.6150841346153846 0.7264404296875 0.5772235576923077 0.7188720703125 0.5772235576923077 0.7344970703125 0.6150841346153846 0.7498779296875 0.5772235576923077 0.7344970703125 0.5772235576923077 0.7342529296875 0.5772235576923077 0.7266845703125 0.6150841346153846 0.7266845703125 0.5772235576923077 0.8751220703125 0.26893028846153844 0.8751220703125 0.2503004807692307 0.8826904296875 0.2503004807692307 0.7188720703125 0.5766225961538461 0.7342529296875 0.5387620192307692 0.7188720703125 0.5387620192307692 0.7498779296875 0.5387620192307692 0.7344970703125 0.5766225961538461 0.7344970703125 0.5387620192307692 0.8829345703125 0.26893028846153844 0.8829345703125 0.2503004807692307 0.8905029296875 0.2503004807692307 0.8983154296875 0.2503004807692307 0.8907470703125 0.26893028846153844 0.8907470703125 0.2503004807692307 0.8358154296875 0.23106971153846156 0.8350830078125 0.23106971153846156 0.8350830078125 0.24969951923076927 0.7501220703125 0.6150841346153846 0.7655029296875 0.5772235576923077 0.7501220703125 0.5772235576923077 0.7657470703125 0.6150841346153846 0.7733154296875 0.5772235576923077 0.7657470703125 0.5772235576923077 0.9061279296875 0.2887620192307693 0.9024658203125 0.30739182692307687 0.9024658203125 0.2887620192307693 0.8985595703125 0.2503004807692307 0.8985595703125 0.26893028846153844 0.9022216796875 0.2503004807692307 0.8751220703125 0.23106971153846156 0.8751220703125 0.24969951923076927 0.8826904296875 0.23106971153846156 0.9024658203125 0.26893028846153844 0.9024658203125 0.2503004807692307 0.9061279296875 0.2503004807692307 0.8905029296875 0.23106971153846156 0.8829345703125 0.23106971153846156 0.8829345703125 0.24969951923076927 0.7735595703125 0.5772235576923077 0.7735595703125 0.6150841346153846 0.7811279296875 0.5772235576923077 0.7576904296875 0.5387620192307692 0.7501220703125 0.5766225961538461 0.7501220703125 0.5387620192307692 0.8907470703125 0.24969951923076927 0.8907470703125 0.23106971153846156 0.8983154296875 0.23106971153846156 0.9061279296875 0.23106971153846156 0.8985595703125 0.24969951923076927 0.8985595703125 0.23106971153846156 0.7579345703125 0.5766225961538461 0.7579345703125 0.5387620192307692 0.7655029296875 0.5387620192307692 0.7811279296875 0.5387620192307692 0.7657470703125 0.5766225961538461 0.7657470703125 0.5387620192307692 0.8634033203125 0.10546875 0.8634033203125 0.09645432692307687 0.8670654296875 0.09645432692307687 0.8709716796875 0.09645432692307687 0.8673095703125 0.10546875 0.8673095703125 0.09645432692307687 0.4005126953125 0.06280048076923073 0.4005126953125 0.06700721153846156 0.4022216796875 0.06280048076923073 0.8614501953125 0.09645432692307687 0.8614501953125 0.10546875 0.8631591796875 0.09645432692307687 0.9063720703125 0.30739182692307687 0.9063720703125 0.2887620192307693 0.9100341796875 0.2887620192307693 0.9139404296875 0.2887620192307693 0.9102783203125 0.30739182692307687 0.9102783203125 0.2887620192307693 0.8712158203125 0.10546875 0.8712158203125 0.09645432692307687 0.8748779296875 0.09645432692307687 0.7967529296875 0.5772235576923077 0.7813720703125 0.5772235576923077 0.7813720703125 0.6150841346153846 0.9141845703125 0.30739182692307687 0.9217529296875 0.2887620192307693 0.9141845703125 0.2887620192307693 0.9219970703125 0.2887620192307693 0.9295654296875 0.2887620192307693 0.9219970703125 0.30739182692307687 0.8438720703125 0.08683894230769229 0.8475341796875 0.08683894230769229 0.8438720703125 0.09585336538461542 0.7969970703125 0.6150841346153846 0.7969970703125 0.5772235576923077 0.8123779296875 0.5772235576923077 0.7967529296875 0.5387620192307692 0.7813720703125 0.5387620192307692 0.7813720703125 0.5766225961538461 0.9305419921875 0.2887620192307693 0.9298095703125 0.30739182692307687 0.9298095703125 0.2887620192307693 0.8477783203125 0.09585336538461542 0.8514404296875 0.08683894230769229 0.8477783203125 0.08683894230769229 0.9139404296875 0.26953125 0.9063720703125 0.2881610576923077 0.9063720703125 0.26953125 0.3905029296875 0.06280048076923073 0.3897705078125 0.06280048076923073 0.3897705078125 0.06700721153846156 0.9307861328125 0.2887620192307693 0.9315185546875 0.2887620192307693 0.9307861328125 0.30739182692307687 0.4024658203125 0.06700721153846156 0.4031982421875 0.06280048076923073 0.4024658203125 0.06280048076923073 0.7969970703125 0.5387620192307692 0.8045654296875 0.5387620192307692 0.7969970703125 0.5766225961538461 0.8048095703125 0.5766225961538461 0.8048095703125 0.5387620192307692 0.8123779296875 0.5387620192307692 0.8126220703125 0.5772235576923077 0.8201904296875 0.5772235576923077 0.8126220703125 0.6150841346153846 0.9141845703125 0.26953125 0.9217529296875 0.26953125 0.9141845703125 0.2881610576923077 0.9337158203125 0.30739182692307687 0.9337158203125 0.2887620192307693 0.9373779296875 0.2887620192307693 0.9219970703125 0.2881610576923077 0.9295654296875 0.26953125 0.9219970703125 0.26953125 0.9373779296875 0.26953125 0.9298095703125 0.2881610576923077 0.9298095703125 0.26953125 0.9063720703125 0.26893028846153844 0.9063720703125 0.2503004807692307 0.9139404296875 0.2503004807692307 0.4061279296875 0.06280048076923073 0.4044189453125 0.06700721153846156 0.4044189453125 0.06280048076923073 0.3751220703125 0.057992788461538436 0.3751220703125 0.062199519230769273 0.3768310546875 0.057992788461538436 0.9324951171875 0.2887620192307693 0.9317626953125 0.30739182692307687 0.9317626953125 0.2887620192307693 0.8280029296875 0.5772235576923077 0.8204345703125 0.5772235576923077 0.8204345703125 0.6150841346153846 0.8282470703125 0.6150841346153846 0.8282470703125 0.5772235576923077 0.8436279296875 0.5772235576923077 0.9217529296875 0.2503004807692307 0.9141845703125 0.26893028846153844 0.9141845703125 0.2503004807692307 0.9219970703125 0.2503004807692307 0.9219970703125 0.26893028846153844 0.9295654296875 0.2503004807692307 0.8126220703125 0.5766225961538461 0.8280029296875 0.5387620192307692 0.8126220703125 0.5387620192307692 0.8436279296875 0.5387620192307692 0.8282470703125 0.5387620192307692 0.8282470703125 0.5766225961538461 0.8592529296875 0.5772235576923077 0.8438720703125 0.6150841346153846 0.8438720703125 0.5772235576923077 0.9298095703125 0.2503004807692307 0.9334716796875 0.2503004807692307 0.9298095703125 0.26893028846153844 0.8516845703125 0.08683894230769229 0.8516845703125 0.09585336538461542 0.8553466796875 0.08683894230769229 0.8555908203125 0.09585336538461542 0.8555908203125 0.08683894230769229 0.8572998046875 0.08683894230769229 0.9337158203125 0.26893028846153844 0.9337158203125 0.2503004807692307 0.9373779296875 0.2503004807692307 0.9100341796875 0.23106971153846156 0.9063720703125 0.23106971153846156 0.9063720703125 0.24969951923076927 0.8594970703125 0.6150841346153846 0.8594970703125 0.5772235576923077 0.8670654296875 0.5772235576923077 0.9217529296875 0.23106971153846156 0.9141845703125 0.23106971153846156 0.9141845703125 0.24969951923076927 0.9219970703125 0.24969951923076927 0.9295654296875 0.23106971153846156 0.9219970703125 0.23106971153846156 0.9102783203125 0.24969951923076927 0.9139404296875 0.23106971153846156 0.9102783203125 0.23106971153846156 0.8673095703125 0.6150841346153846 0.8673095703125 0.5772235576923077 0.8748779296875 0.5772235576923077 0.9373779296875 0.23106971153846156 0.9298095703125 0.23106971153846156 0.9298095703125 0.24969951923076927 0.8514404296875 0.5387620192307692 0.8438720703125 0.5387620192307692 0.8438720703125 0.5766225961538461 0.8516845703125 0.5387620192307692 0.8748779296875 0.5387620192307692 0.8594970703125 0.5387620192307692 0.8594970703125 0.5766225961538461 0.8751220703125 0.6150841346153846 0.8905029296875 0.5772235576923077 0.8751220703125 0.5772235576923077 0.9376220703125 0.30739182692307687 0.9376220703125 0.2887620192307693 0.9451904296875 0.2887620192307693 0.9530029296875 0.2887620192307693 0.9454345703125 0.30739182692307687 0.9454345703125 0.2887620192307693 0.8907470703125 0.6150841346153846 0.8907470703125 0.5772235576923077 0.8983154296875 0.5772235576923077 0.9532470703125 0.2887620192307693 0.9608154296875 0.2887620192307693 0.9532470703125 0.30739182692307687 0.8751220703125 0.5766225961538461 0.8751220703125 0.5387620192307692 0.8905029296875 0.5387620192307692 0.9610595703125 0.30739182692307687 0.9686279296875 0.2887620192307693 0.9610595703125 0.2887620192307693 0.9412841796875 0.26953125 0.9376220703125 0.2881610576923077 0.9376220703125 0.26953125 0.9454345703125 0.2881610576923077 0.9454345703125 0.26953125 0.9530029296875 0.26953125 0.9608154296875 0.26953125 0.9532470703125 0.2881610576923077 0.9532470703125 0.26953125 0.9061279296875 0.5772235576923077 0.8985595703125 0.6150841346153846 0.8985595703125 0.5772235576923077 0.9610595703125 0.26953125 0.9686279296875 0.26953125 0.9610595703125 0.2881610576923077 0.9451904296875 0.2503004807692307 0.9376220703125 0.26893028846153844 0.9376220703125 0.2503004807692307 0.9454345703125 0.2503004807692307 0.9454345703125 0.26893028846153844 0.9530029296875 0.2503004807692307 0.9451904296875 0.26953125 0.9415283203125 0.26953125 0.9415283203125 0.2881610576923077 0.8631591796875 0.08683894230769229 0.8594970703125 0.09585336538461542 0.8594970703125 0.08683894230769229 0.9532470703125 0.2503004807692307 0.9569091796875 0.2503004807692307 0.9532470703125 0.26893028846153844 0.8907470703125 0.5766225961538461 0.8907470703125 0.5387620192307692 0.9061279296875 0.5387620192307692 0.9610595703125 0.26893028846153844 0.9610595703125 0.2503004807692307 0.9686279296875 0.2503004807692307 0.9608154296875 0.2503004807692307 0.9571533203125 0.2503004807692307 0.9571533203125 0.26893028846153844 0.9063720703125 0.5772235576923077 0.8634033203125 0.09585336538461542 0.8634033203125 0.08683894230769229 0.8670654296875 0.08683894230769229 0.2618408203125 0.19200721153846156 0.2655029296875 0.17337740384615385 0.9217529296875 0.5772235576923077 0.9141845703125 0.5772235576923077 0.9141845703125 0.6150841346153846 0.9219970703125 0.5772235576923077 0.9295654296875 0.5772235576923077 0.9219970703125 0.6150841346153846 0.9373779296875 0.5772235576923077 0.9298095703125 0.5772235576923077 0.9298095703125 0.6150841346153846 0.8575439453125 0.08683894230769229 0.8575439453125 0.09585336538461542 0.8592529296875 0.08683894230769229 0.8690185546875 0.08683894230769229 0.8673095703125 0.08683894230769229 0.8673095703125 0.09585336538461542 0.3770751953125 0.057992788461538436 0.3770751953125 0.062199519230769273 0.3787841796875 0.057992788461538436 0.9063720703125 0.5766225961538461 0.9063720703125 0.5387620192307692 0.9139404296875 0.5387620192307692 0.9219970703125 0.5387620192307692 0.9373779296875 0.5387620192307692 0.9219970703125 0.5766225961538461 0.9530029296875 0.5772235576923077 0.9376220703125 0.6150841346153846 0.9376220703125 0.5772235576923077 0.1251220703125 0.9996995192307693 0.1561279296875 0.9233774038461539 0.1717529296875 0.9233774038461539 0.1563720703125 0.9996995192307693 0.1563720703125 0.9233774038461539 0.9141845703125 0.5766225961538461 0.9217529296875 0.5387620192307692 0.9141845703125 0.5387620192307692 0.9376220703125 0.23106971153846156 0.9376220703125 0.24969951923076927 0.9451904296875 0.23106971153846156 0.8692626953125 0.09585336538461542 0.8692626953125 0.08683894230769229 0.8709716796875 0.08683894230769229 0.8748779296875 0.08683894230769229 0.8712158203125 0.08683894230769229 0.8712158203125 0.09585336538461542 0.8438720703125 0.08623798076923073 0.8458251953125 0.07722355769230771 0.9454345703125 0.23106971153846156 0.9454345703125 0.24969951923076927 0.9490966796875 0.23106971153846156 0.9530029296875 0.23106971153846156 0.9493408203125 0.24969951923076927 0.9493408203125 0.23106971153846156 0.8477783203125 0.08623798076923073 0.8514404296875 0.07722355769230771 0.8477783203125 0.07722355769230771 0.9532470703125 0.24969951923076927 0.9569091796875 0.23106971153846156 0.9532470703125 0.23106971153846156 0.9571533203125 0.24969951923076927 0.9532470703125 0.6150841346153846 0.9608154296875 0.5772235576923077 0.9532470703125 0.5772235576923077 0.9610595703125 0.5772235576923077 0.9610595703125 0.6150841346153846 0.9686279296875 0.5772235576923077 0.9610595703125 0.23106971153846156 0.9686279296875 0.23106971153846156 0.9610595703125 0.24969951923076927 0.9376220703125 0.5766225961538461 0.9376220703125 0.5387620192307692 0.9530029296875 0.5387620192307692 0.9532470703125 0.5766225961538461 0.9608154296875 0.5387620192307692 0.9532470703125 0.5387620192307692 0.9610595703125 0.5766225961538461 0.9688720703125 0.5772235576923077 0.9842529296875 0.5772235576923077 0.9688720703125 0.6150841346153846 0.9327392578125 0.30739182692307687 0.9334716796875 0.2887620192307693 0.9327392578125 0.2887620192307693 0.9688720703125 0.2887620192307693 0.9696044921875 0.2887620192307693 0.9688720703125 0.30739182692307687 0.8516845703125 0.08623798076923073 0.9705810546875 0.2887620192307693 0.9698486328125 0.30739182692307687 0.9698486328125 0.2887620192307693 0.9708251953125 0.30739182692307687 0.9708251953125 0.2887620192307693 0.9715576171875 0.2887620192307693 0.8555908203125 0.07722355769230771 0.8592529296875 0.07722355769230771 0.8555908203125 0.08623798076923073 0.9766845703125 0.30739182692307687 0.9766845703125 0.2887620192307693 0.9842529296875 0.2887620192307693 0.3790283203125 0.062199519230769273 0.3790283203125 0.057992788461538436 0.3807373046875 0.057992788461538436 0.3809814453125 0.057992788461538436 0.3826904296875 0.057992788461538436 0.3809814453125 0.062199519230769273 0.9844970703125 0.30739182692307687 0.9844970703125 0.2887620192307693 0.9920654296875 0.2887620192307693 0.3829345703125 0.062199519230769273 0.3829345703125 0.057992788461538436 0.3846435546875 0.057992788461538436 0.9923095703125 0.2887620192307693 0.9923095703125 0.30739182692307687 0.9998779296875 0.2887620192307693 0.9764404296875 0.2887620192307693 0.9727783203125 0.2887620192307693 0.9727783203125 0.30739182692307687 0.4034423828125 0.06280048076923073 0.4041748046875 0.06280048076923073 0.4034423828125 0.06700721153846156 0.3848876953125 0.062199519230769273 0.3848876953125 0.057992788461538436 0.3856201171875 0.057992788461538436 0.3868408203125 0.062199519230769273 0.3885498046875 0.057992788461538436 0.3868408203125 0.057992788461538436 0.8536376953125 0.08623798076923073 0.8536376953125 0.07722355769230771 0.8553466796875 0.07722355769230771 0.9764404296875 0.26953125 0.9688720703125 0.2881610576923077 0.9688720703125 0.26953125 0.9766845703125 0.2881610576923077 0.9842529296875 0.26953125 0.9766845703125 0.26953125 0.9844970703125 0.26953125 0.9844970703125 0.2881610576923077 0.9920654296875 0.26953125 0.8594970703125 0.08623798076923073 0.8631591796875 0.07722355769230771 0.8594970703125 0.07722355769230771 0.8634033203125 0.07722355769230771 0.8634033203125 0.08623798076923073 0.8670654296875 0.07722355769230771 0.3905029296875 0.057992788461538436 0.3887939453125 0.062199519230769273 0.3887939453125 0.057992788461538436 0.9923095703125 0.2881610576923077 0.9959716796875 0.26953125 0.9923095703125 0.26953125 0.9962158203125 0.2881610576923077 0.9962158203125 0.26953125 0.9998779296875 0.26953125 0.9725341796875 0.2503004807692307 0.9688720703125 0.2503004807692307 0.9688720703125 0.26893028846153844 0.9766845703125 0.26893028846153844 0.9766845703125 0.2503004807692307 0.9842529296875 0.2503004807692307 0.9844970703125 0.2503004807692307 0.9844970703125 0.26893028846153844 0.9920654296875 0.2503004807692307 0.9923095703125 0.26893028846153844 0.9923095703125 0.2503004807692307 0.9998779296875 0.2503004807692307 0.9764404296875 0.23106971153846156 0.9688720703125 0.24969951923076927 0.9688720703125 0.23106971153846156 0.9998779296875 0.5772235576923077 0.9844970703125 0.5772235576923077 0.9844970703125 0.6150841346153846 0.8673095703125 0.07722355769230771 0.8709716796875 0.07722355769230771 0.8673095703125 0.08623798076923073 0.9764404296875 0.5387620192307692 0.9688720703125 0.5766225961538461 0.9688720703125 0.5387620192307692 0.9766845703125 0.23106971153846156 0.9842529296875 0.23106971153846156 0.9766845703125 0.24969951923076927 0.9998779296875 0.5387620192307692 0.9844970703125 0.5766225961538461 0.9844970703125 0.5387620192307692 0.9920654296875 0.23106971153846156 0.9844970703125 0.23106971153846156 0.9844970703125 0.24969951923076927 0.8729248046875 0.07722355769230771 0.8712158203125 0.08623798076923073 0.8712158203125 0.07722355769230771 0.9998779296875 0.23106971153846156 0.9923095703125 0.24969951923076927 0.9923095703125 0.23106971153846156 0.0001220703125 0.2118389423076923 0.0076904296875 0.2118389423076923 0.0001220703125 0.23046875 0.0079345703125 0.2118389423076923 0.0155029296875 0.2118389423076923 0.0079345703125 0.23046875 0.9727783203125 0.26893028846153844 0.9727783203125 0.2503004807692307 0.9764404296875 0.2503004807692307 0.9766845703125 0.5387620192307692 0.9842529296875 0.5387620192307692 0.9766845703125 0.5766225961538461 0.9725341796875 0.2887620192307693 0.9718017578125 0.2887620192307693 0.9718017578125 0.30739182692307687 0.0157470703125 0.2118389423076923 0.0194091796875 0.2118389423076923 0.0157470703125 0.23046875 0.3907470703125 0.062199519230769273 0.3907470703125 0.057992788461538436 0.3924560546875 0.057992788461538436 0.8731689453125 0.07722355769230771 0.8731689453125 0.08623798076923073 0.8748779296875 0.07722355769230771 0.8787841796875 0.14453125 0.8751220703125 0.15354567307692313 0.8751220703125 0.14453125 0.8826904296875 0.14453125 0.8790283203125 0.14453125 0.8790283203125 0.15354567307692313 0.0235595703125 0.23046875 0.0311279296875 0.2118389423076923 0.0235595703125 0.2118389423076923 0.0155029296875 0.5003004807692308 0.0001220703125 0.5381610576923077 0.0001220703125 0.5003004807692308 0.0157470703125 0.5003004807692308 0.0157470703125 0.5381610576923077 0.0311279296875 0.5003004807692308 0.0076904296875 0.19260817307692313 0.0001220703125 0.19260817307692313 0.0001220703125 0.21123798076923073 0.8829345703125 0.15354567307692313 0.8865966796875 0.14453125 0.8829345703125 0.14453125 0.3944091796875 0.057992788461538436 0.3927001953125 0.057992788461538436 0.3927001953125 0.062199519230769273 0.0001220703125 0.4996995192307693 0.0001220703125 0.4618389423076923 0.0155029296875 0.4618389423076923 0.8885498046875 0.14453125 0.8868408203125 0.15354567307692313 0.8868408203125 0.14453125 0.3865966796875 0.057992788461538436 0.3858642578125 0.062199519230769273 0.3858642578125 0.057992788461538436 0.0157470703125 0.4996995192307693 0.0157470703125 0.4618389423076923 0.0233154296875 0.4618389423076923 0.0313720703125 0.5003004807692308 0.0467529296875 0.5003004807692308 0.0313720703125 0.5381610576923077 0.0469970703125 0.5381610576923077 0.0623779296875 0.5003004807692308 0.0469970703125 0.5003004807692308 0.0311279296875 0.4618389423076923 0.0235595703125 0.4996995192307693 0.0235595703125 0.4618389423076923 0.0079345703125 0.19260817307692313 0.0079345703125 0.21123798076923073 0.0155029296875 0.19260817307692313 0.0157470703125 0.19260817307692313 0.0157470703125 0.21123798076923073 0.0233154296875 0.19260817307692313 0.8887939453125 0.14453125 0.8905029296875 0.14453125 0.8887939453125 0.15354567307692313 0.0313720703125 0.4996995192307693 0.0313720703125 0.4618389423076923 0.0467529296875 0.4618389423076923 0.0235595703125 0.21123798076923073 0.0311279296875 0.19260817307692313 0.0235595703125 0.19260817307692313 0.0469970703125 0.4996995192307693 0.0469970703125 0.4618389423076923 0.0545654296875 0.4618389423076923 0.0780029296875 0.5003004807692308 0.0626220703125 0.5381610576923077 0.0626220703125 0.5003004807692308 0.0623779296875 0.4618389423076923 0.0548095703125 0.4996995192307693 0.0548095703125 0.4618389423076923 0.0782470703125 0.5003004807692308 0.0858154296875 0.5003004807692308 0.0782470703125 0.5381610576923077 0.0626220703125 0.4996995192307693 0.0626220703125 0.4618389423076923 0.0780029296875 0.4618389423076923 0.0001220703125 0.19200721153846156 0.0001220703125 0.17337740384615385 0.0076904296875 0.17337740384615385 0.0860595703125 0.5003004807692308 0.0860595703125 0.5381610576923077 0.0936279296875 0.5003004807692308 0.8944091796875 0.14453125 0.8907470703125 0.14453125 0.8907470703125 0.15354567307692313 0.8946533203125 0.15354567307692313 0.8946533203125 0.14453125 0.8983154296875 0.14453125 0.0233154296875 0.2118389423076923 0.0196533203125 0.2118389423076923 0.0196533203125 0.23046875 0.0782470703125 0.4996995192307693 0.0936279296875 0.4618389423076923 0.0782470703125 0.4618389423076923 0.0938720703125 0.5381610576923077 0.0938720703125 0.5003004807692308 0.1092529296875 0.5003004807692308 0.1719970703125 0.9233774038461539 0.1719970703125 0.9996995192307693 0.1873779296875 0.9233774038461539 0.1876220703125 0.9996995192307693 0.2030029296875 0.9233774038461539 0.1876220703125 0.9233774038461539 0.1248779296875 0.5003004807692308 0.1094970703125 0.5381610576923077 0.1094970703125 0.5003004807692308 0.0938720703125 0.4996995192307693 0.1014404296875 0.4618389423076923 0.0938720703125 0.4618389423076923 0.0155029296875 0.17337740384615385 0.0079345703125 0.19200721153846156 0.0079345703125 0.17337740384615385 0.0157470703125 0.19200721153846156 0.0157470703125 0.17337740384615385 0.0233154296875 0.17337740384615385 0.0235595703125 0.17337740384615385 0.0235595703125 0.19200721153846156 0.0311279296875 0.17337740384615385 0.1092529296875 0.4618389423076923 0.1016845703125 0.4996995192307693 0.1016845703125 0.4618389423076923 0.0001220703125 0.1727764423076923 0.0001220703125 0.15414663461538458 0.0008544921875 0.15414663461538458 0.0018310546875 0.15414663461538458 0.0010986328125 0.1727764423076923 0.0010986328125 0.15414663461538458 0.0155029296875 0.15414663461538458 0.0079345703125 0.1727764423076923 0.0079345703125 0.15414663461538458 0.0157470703125 0.15414663461538458 0.0233154296875 0.15414663461538458 0.0157470703125 0.1727764423076923 0.9002685546875 0.14453125 0.8985595703125 0.14453125 0.8985595703125 0.15354567307692313 0.3946533203125 0.057992788461538436 0.3963623046875 0.057992788461538436 0.3946533203125 0.062199519230769273 0.1094970703125 0.4618389423076923 0.1094970703125 0.4996995192307693 0.1170654296875 0.4618389423076923 0.1251220703125 0.5003004807692308 0.1251220703125 0.5381610576923077 0.1405029296875 0.5003004807692308 0.1407470703125 0.5381610576923077 0.1561279296875 0.5003004807692308 0.1407470703125 0.5003004807692308 0.1251220703125 0.4618389423076923 0.1251220703125 0.4996995192307693 0.1405029296875 0.4618389423076923 0.1407470703125 0.4996995192307693 0.1561279296875 0.4618389423076923 0.1407470703125 0.4618389423076923 0.1248779296875 0.4618389423076923 0.1173095703125 0.4996995192307693 0.1173095703125 0.4618389423076923 0.1563720703125 0.5381610576923077 0.1717529296875 0.5003004807692308 0.1563720703125 0.5003004807692308 0.1795654296875 0.5003004807692308 0.1719970703125 0.5381610576923077 0.1719970703125 0.5003004807692308 0.0235595703125 0.1727764423076923 0.0235595703125 0.15414663461538458 0.0311279296875 0.15414663461538458 0.1798095703125 0.5003004807692308 0.1798095703125 0.5381610576923077 0.1873779296875 0.5003004807692308 0.0313720703125 0.23046875 0.0313720703125 0.2118389423076923 0.0389404296875 0.2118389423076923 0.0020751953125 0.1727764423076923 0.0020751953125 0.15414663461538458 0.0028076171875 0.15414663461538458 0.9061279296875 0.14453125 0.9024658203125 0.15354567307692313 0.9024658203125 0.14453125 0.8751220703125 0.13491586538461542 0.8787841796875 0.13491586538461542 0.8751220703125 0.14393028846153844 0.3973388671875 0.057992788461538436 0.3966064453125 0.057992788461538436 0.3966064453125 0.062199519230769273 0.0037841796875 0.15414663461538458 0.0030517578125 0.15414663461538458 0.0030517578125 0.1727764423076923 0.1639404296875 0.4618389423076923 0.1563720703125 0.4996995192307693 0.1563720703125 0.4618389423076923 0.0467529296875 0.2118389423076923 0.0391845703125 0.23046875 0.0391845703125 0.2118389423076923 0.0469970703125 0.23046875 0.0545654296875 0.2118389423076923 0.0469970703125 0.2118389423076923 0.0548095703125 0.2118389423076923 0.0548095703125 0.23046875 0.0623779296875 0.2118389423076923 0.1719970703125 0.4618389423076923 0.1719970703125 0.4996995192307693 0.1873779296875 0.4618389423076923 0.8826904296875 0.13491586538461542 0.8790283203125 0.14393028846153844 0.8790283203125 0.13491586538461542 0.9005126953125 0.14453125 0.9022216796875 0.14453125 0.9005126953125 0.15354567307692313 0.0389404296875 0.19260817307692313 0.0313720703125 0.21123798076923073 0.0313720703125 0.19260817307692313 0.1641845703125 0.4618389423076923 0.1717529296875 0.4618389423076923 0.1641845703125 0.4996995192307693 0.0040283203125 0.15414663461538458 0.0040283203125 0.1727764423076923 0.0047607421875 0.15414663461538458 0.8865966796875 0.13491586538461542 0.8829345703125 0.13491586538461542 0.8829345703125 0.14393028846153844 0.1876220703125 0.5381610576923077 0.2030029296875 0.5003004807692308 0.1876220703125 0.5003004807692308 0.2186279296875 0.5003004807692308 0.2032470703125 0.5003004807692308 0.2032470703125 0.5381610576923077 0.0391845703125 0.21123798076923073 0.0428466796875 0.19260817307692313 0.0391845703125 0.19260817307692313 0.0467529296875 0.19260817307692313 0.0430908203125 0.19260817307692313 0.0430908203125 0.21123798076923073 0.0469970703125 0.21123798076923073 0.0506591796875 0.19260817307692313 0.0469970703125 0.19260817307692313 0.1876220703125 0.4996995192307693 0.1876220703125 0.4618389423076923 0.2030029296875 0.4618389423076923 0.3983154296875 0.057992788461538436 0.3975830078125 0.062199519230769273 0.3975830078125 0.057992788461538436 0.2186279296875 0.4618389423076923 0.2032470703125 0.4996995192307693 0.2032470703125 0.4618389423076923 0.2188720703125 0.5381610576923077 0.2342529296875 0.5003004807692308 0.2188720703125 0.5003004807692308 0.2420654296875 0.5003004807692308 0.2344970703125 0.5003004807692308 0.2344970703125 0.5381610576923077 0.0509033203125 0.19260817307692313 0.0509033203125 0.21123798076923073 0.0545654296875 0.19260817307692313 0.0548095703125 0.19260817307692313 0.0584716796875 0.19260817307692313 0.0548095703125 0.21123798076923073 0.0587158203125 0.21123798076923073 0.0587158203125 0.19260817307692313 0.0623779296875 0.19260817307692313 0.0313720703125 0.19200721153846156 0.0313720703125 0.17337740384615385 0.0389404296875 0.17337740384615385 0.0391845703125 0.19200721153846156 0.0391845703125 0.17337740384615385 0.0467529296875 0.17337740384615385 0.0469970703125 0.19200721153846156 0.0545654296875 0.17337740384615385 0.0469970703125 0.17337740384615385 0.0548095703125 0.17337740384615385 0.0548095703125 0.19200721153846156 0.0623779296875 0.17337740384615385 0.0313720703125 0.15414663461538458 0.0313720703125 0.1727764423076923 0.0389404296875 0.15414663461538458 0.2188720703125 0.4996995192307693 0.2188720703125 0.4618389423076923 0.2342529296875 0.4618389423076923 0.0050048828125 0.15414663461538458 0.0057373046875 0.15414663461538458 0.0050048828125 0.1727764423076923 0.0391845703125 0.15414663461538458 0.0428466796875 0.15414663461538458 0.0391845703125 0.1727764423076923 0.0059814453125 0.1727764423076923 0.0067138671875 0.15414663461538458 0.0059814453125 0.15414663461538458 0.2344970703125 0.4996995192307693 0.2344970703125 0.4618389423076923 0.2498779296875 0.4618389423076923 0.8907470703125 0.5381610576923077 0.8983154296875 0.5003004807692308 0.2501220703125 0.5381610576923077 0.2501220703125 0.5003004807692308 0.2655029296875 0.5003004807692308 0.0469970703125 0.1727764423076923 0.0545654296875 0.15414663461538458 0.0469970703125 0.15414663461538458 0.4002685546875 0.057992788461538436 0.3985595703125 0.062199519230769273 0.3985595703125 0.057992788461538436 0.8868408203125 0.14393028846153844 0.8905029296875 0.13491586538461542 0.8868408203125 0.13491586538461542 0.2657470703125 0.5381610576923077 0.2811279296875 0.5003004807692308 0.2657470703125 0.5003004807692308 0.2501220703125 0.4996995192307693 0.2501220703125 0.4618389423076923 0.2655029296875 0.4618389423076923 0.2657470703125 0.4618389423076923 0.2657470703125 0.4996995192307693 0.2811279296875 0.4618389423076923 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 0 1 1 0 2 3 2 1 1 2 0 4 3 3 4 2 5 5 6 3 7 4 8 6 9 5 10 4 11 7 12 5 13 6 14 8 15 7 16 6 17 9 16 7 16 8 15 10 18 9 19 8 20 11 21 9 22 10 23 12 24 11 25 10 26 13 27 11 28 12 29 14 30 13 31 12 32 15 33 13 34 14 35 16 36 15 37 14 38 17 39 15 40 16 41 18 42 17 43 16 44 19 45 17 46 18 47 20 48 19 49 18 50 21 51 19 52 20 53 22 53 21 51 20 53 23 54 21 55 22 56 24 56 23 54 22 56 25 55 23 54 24 56 26 53 25 51 24 53 27 57 25 58 26 59 28 59 27 57 26 59 29 60 27 61 28 62 30 62 29 60 28 62 31 63 29 64 30 65 32 66 31 67 30 66 33 66 31 67 32 66 34 53 33 53 32 53 35 68 33 69 34 69 36 69 35 68 34 69 37 70 35 68 36 69 38 71 37 72 36 71 39 73 37 72 38 71 40 71 39 73 38 71 41 74 39 75 40 76 42 76 41 74 40 76 43 77 41 78 42 79 44 79 43 77 42 79 18 80 43 81 44 82 45 83 18 84 44 83 20 83 18 84 45 83 48 85 47 86 46 87 49 88 47 89 48 90 50 91 49 92 48 93 51 94 49 95 50 96 52 97 51 98 50 99 53 100 51 101 52 102 54 103 53 104 52 105 55 106 53 107 54 108 56 108 55 106 54 108 57 109 55 110 56 111 58 112 57 113 56 112 59 114 57 113 58 112 60 115 59 116 58 117 61 118 59 119 60 120 62 121 61 122 60 123 63 124 61 125 62 126 64 127 63 128 62 129 65 130 63 131 64 132 66 133 65 134 64 135 67 136 65 137 66 138 68 138 67 136 66 138 69 139 67 140 68 141 70 142 69 143 68 144 71 145 69 146 70 147 72 148 71 149 70 150 73 151 71 152 72 153 74 154 73 155 72 156 75 157 73 158 74 159 76 160 75 161 74 162 77 161 75 161 76 160 78 163 77 164 76 165 79 166 77 167 78 168 80 169 79 170 78 171 81 172 79 173 80 174 82 175 81 176 80 177 83 178 81 179 82 180 84 181 83 182 82 183 85 184 83 184 84 185 86 186 85 187 84 188 87 189 85 190 86 191 88 192 87 193 86 194 89 195 87 196 88 197 90 198 89 199 88 200 91 201 89 202 90 203 93 204 46 205 92 206 48 207 46 208 93 209 94 210 48 211 93 212 50 213 48 214 94 215 95 216 50 217 94 218 52 219 50 220 95 221 96 221 52 219 95 221 54 222 52 223 96 224 97 225 54 226 96 227 56 226 54 226 97 225 98 225 56 226 97 225 58 226 56 226 98 225 99 228 58 229 98 230 60 231 58 232 99 233 100 234 60 235 99 236 62 237 60 238 100 239 101 240 62 241 100 242 64 243 62 244 101 245 102 246 64 247 101 248 66 249 64 250 102 251 103 252 66 253 102 254 68 255 66 255 103 256 104 256 68 255 103 256 70 257 68 258 104 259 105 260 70 261 104 262 72 263 70 264 105 265 106 266 72 267 105 268 74 269 72 270 106 271 107 272 74 273 106 274 76 275 74 276 107 277 108 278 76 279 107 280 78 281 76 282 108 283 109 284 78 285 108 286 80 287 78 288 109 289 110 290 80 291 109 292 82 293 80 294 110 295 111 296 82 297 110 298 84 299 82 300 111 301 112 302 84 303 111 304 86 305 84 306 112 307 113 308 86 309 112 310 88 311 86 312 113 313 114 314 88 315 113 316 90 317 88 318 114 319 117 320 116 321 115 322 118 323 116 324 117 325 119 323 118 323 117 325 120 326 118 327 119 327 121 326 120 326 119 327 122 328 120 329 121 329 123 328 122 328 121 329 124 330 122 331 123 331 125 330 124 330 123 331 126 332 124 332 125 332 127 333 126 334 125 334 128 335 126 334 127 333 129 335 128 335 127 333 130 336 128 337 129 337 131 336 130 336 129 337 132 338 130 339 131 339 133 339 132 338 131 339 134 340 132 338 133 339 135 341 134 342 133 343 136 344 134 345 135 346 137 347 136 348 135 349 138 350 136 351 137 352 139 353 138 354 137 355 140 356 138 357 139 358 141 359 140 360 139 361 142 362 140 363 141 364 143 365 142 366 141 367 144 368 142 369 143 370 145 371 144 372 143 373 146 374 144 375 145 376 147 375 146 374 145 376 148 377 146 378 147 379 149 380 148 381 147 382 150 383 148 384 149 385 151 384 150 383 149 385 152 386 150 387 151 388 153 389 152 390 151 391 154 391 152 390 153 389 155 392 154 393 153 394 156 395 154 396 155 397 157 398 156 399 155 400 158 401 156 402 157 403 118 404 159 405 116 406 160 407 159 408 118 409 120 326 160 410 118 327 161 411 160 412 120 413 122 328 161 414 120 329 162 415 161 416 122 417 124 330 162 418 122 331 163 419 162 420 124 421 126 422 163 423 124 422 164 424 163 425 126 426 128 427 164 428 126 429 165 430 164 431 128 432 130 336 165 433 128 337 166 434 165 435 130 436 132 437 166 438 130 439 167 440 166 441 132 442 134 443 167 444 132 445 168 446 167 447 134 448 136 449 168 450 134 451 169 452 168 453 136 454 138 455 169 456 136 457 170 458 169 459 138 460 140 461 170 462 138 463 171 462 170 462 140 461 142 464 171 465 140 466 172 467 171 468 142 469 144 470 172 471 142 472 173 471 172 471 144 470 146 473 173 474 144 475 174 476 173 477 146 478 148 479 174 480 146 481 175 482 174 483 148 484 150 485 175 486 148 487 176 488 175 489 150 490 152 491 176 492 150 493 177 494 176 495 152 496 154 497 177 498 152 499 178 500 177 501 154 502 156 503 178 504 154 505 179 506 178 507 156 508 158 509 179 510 156 511 180 512 179 513 158 514 183 515 182 516 181 516 184 516 182 516 183 515 185 517 184 516 183 515 186 516 184 516 185 517 187 518 186 519 185 520 188 521 186 522 187 523 189 524 188 525 187 526 190 527 188 528 189 529 191 530 190 531 189 532 192 533 190 534 191 535 193 536 192 537 191 538 194 539 192 540 193 541 195 542 194 543 193 544 196 545 194 546 195 547 197 548 196 549 195 550 198 549 196 549 197 548 199 551 198 552 197 553 200 554 198 555 199 556 201 557 200 558 199 559 202 560 200 561 201 562 203 563 202 564 201 565 204 566 202 567 203 568 205 569 204 570 203 571 206 572 204 573 205 574 207 575 206 576 205 577 208 578 206 579 207 580 209 581 208 582 207 583 210 584 208 585 209 586 211 587 210 588 209 589 212 590 210 591 211 592 213 593 212 594 211 595 214 596 212 597 213 598 215 599 214 600 213 601 216 600 214 600 215 599 217 602 216 603 215 604 218 605 216 606 217 607 219 608 218 609 217 610 220 609 218 609 219 608 221 611 220 612 219 613 224 614 223 615 222 614 225 615 223 615 224 614 226 616 225 615 224 614 227 617 225 618 226 619 228 620 227 621 226 622 229 620 227 621 228 620 230 623 229 623 228 623 231 623 229 623 230 623 232 624 231 625 230 625 233 624 231 625 232 624 234 626 233 627 232 627 235 627 233 627 234 626 236 628 235 629 234 630 237 631 235 632 236 633 238 634 237 635 236 636 239 637 237 638 238 639 240 640 239 641 238 642 241 643 239 644 240 645 242 646 241 647 240 648 243 649 241 650 242 651 244 652 243 653 242 654 245 655 243 656 244 657 246 658 245 659 244 660 247 661 245 662 246 663 248 664 247 665 246 666 249 667 247 668 248 669 250 670 249 671 248 672 251 673 249 674 250 675 252 676 251 677 250 678 253 679 251 680 252 681 192 682 255 683 254 683 256 684 255 683 192 682 194 685 256 686 192 687 257 688 256 689 194 690 196 691 257 692 194 693 258 694 257 695 196 696 198 696 258 694 196 696 259 697 258 698 198 699 200 700 259 701 198 702 260 703 259 704 200 705 202 706 260 707 200 708 261 709 260 710 202 711 204 712 261 713 202 714 262 715 261 716 204 717 206 718 262 719 204 720 263 721 262 722 206 723 208 724 263 725 206 726 264 727 263 728 208 729 210 730 264 731 208 732 265 733 264 734 210 735 212 736 265 737 210 738 266 739 265 740 212 741 214 742 266 743 212 744 267 745 266 746 214 747 216 747 267 745 214 747 268 748 267 749 216 750 218 751 268 752 216 753 269 754 268 755 218 756 220 756 269 754 218 756 272 757 271 758 270 759 273 760 271 761 272 762 274 763 273 764 272 765 275 766 273 767 274 768 276 769 275 770 274 771 277 772 275 773 276 774 278 775 277 776 276 777 279 778 277 779 278 780 280 781 279 782 278 783 281 784 279 785 280 786 282 787 281 788 280 789 283 790 281 791 282 792 284 793 283 794 282 795 285 794 283 794 284 793 286 795 285 794 284 793 287 790 285 790 286 792 288 796 287 797 286 798 289 799 287 800 288 801 290 802 289 803 288 804 291 805 289 806 290 807 292 808 291 809 290 810 293 811 291 812 292 813 294 814 293 815 292 816 295 817 293 818 294 819 296 820 295 821 294 822 297 823 295 824 296 825 298 826 297 827 296 828 299 829 297 830 298 831 300 832 299 833 298 834 15 835 301 836 13 837 302 838 301 839 15 840 303 841 302 842 15 843 304 844 302 845 303 846 305 847 304 848 303 849 306 850 304 851 305 852 307 853 306 854 305 855 308 856 306 857 307 858 309 859 308 860 307 861 310 862 308 863 309 864 311 865 310 866 309 867 205 868 310 869 311 870 312 871 205 872 311 873 313 874 205 875 312 876 314 877 313 878 312 879 315 880 313 881 314 882 316 883 315 884 314 885 317 886 315 887 316 888 318 889 317 890 316 891 319 892 317 893 318 894 320 895 319 896 318 897 321 898 319 899 320 900 322 901 321 902 320 903 323 904 321 905 322 906 324 907 323 908 322 909 325 910 323 911 324 912 326 913 325 914 324 915 25 916 325 917 326 918 23 919 25 920 326 921 238 922 253 923 327 924 251 925 253 926 238 927 236 928 251 929 238 930 249 931 251 932 236 933 234 934 249 935 236 936 247 937 249 938 234 939 328 940 247 941 234 942 329 943 247 944 328 945 330 557 329 559 328 557 331 557 329 559 330 557 332 946 331 947 330 947 333 948 331 947 332 946 334 949 333 950 332 951 335 952 333 953 334 954 336 955 335 956 334 957 337 948 335 947 336 946 338 949 337 950 336 951 339 958 337 959 338 960 340 961 339 962 338 963 341 964 339 965 340 966 342 967 341 968 340 969 343 970 341 971 342 972 344 973 343 974 342 975 345 976 343 977 344 978 346 979 345 980 344 981 347 982 345 983 346 984 350 985 349 986 348 987 351 988 349 989 350 990 352 991 351 992 350 993 353 994 351 995 352 996 354 997 353 998 352 999 355 1000 353 1001 354 1002 356 1003 355 1004 354 1005 357 1006 355 1007 356 1008 358 1009 357 1010 356 1011 359 1012 357 1013 358 1014 360 1015 359 1016 358 1017 361 1018 359 1019 360 1020 362 1021 361 1022 360 1023 363 1024 361 1025 362 1026 364 1027 363 1028 362 1027 365 1029 363 1030 364 1031 366 1032 365 1033 364 1034 367 1032 365 1033 366 1032 368 563 367 565 366 565 369 1035 367 1036 368 1037 370 1038 369 1039 368 1040 371 1041 369 1042 370 1043 372 1044 371 1045 370 1046 373 1047 371 1048 372 1049 374 1050 373 1051 372 1052 375 1053 373 1054 374 1055 378 1056 377 1057 376 1058 379 1059 377 1060 378 1061 380 1062 379 1063 378 1064 381 1065 379 1066 380 1067 382 1068 381 1069 380 1070 383 1071 381 1072 382 1073 384 1074 383 1075 382 1076 385 1077 383 1078 384 1079 386 1080 385 1081 384 1082 387 1083 385 1084 386 1085 388 1086 387 1087 386 1088 389 1089 387 1090 388 1091 390 1092 389 1092 388 1093 391 53 389 53 390 53 392 1094 391 1095 390 1095 393 1096 391 1097 392 1098 394 1099 393 1100 392 1101 395 1102 393 1103 394 1104 396 1105 395 1106 394 1107 397 1108 395 1109 396 1110 398 1111 397 1112 396 1113 399 1114 397 1115 398 1116 400 1117 399 1118 398 1119 379 1120 399 1121 400 1122 377 1123 379 1124 400 1125 403 1126 402 1127 401 1128 404 1129 402 1130 403 1131 405 1132 404 1133 403 1134 406 1135 404 1136 405 1137 407 1138 406 1139 405 1140 408 1141 406 1142 407 1143 409 1144 408 1145 407 1146 410 1147 408 1148 409 1149 411 1150 410 1150 409 1151 412 1152 410 1153 411 1153 413 1154 412 1155 411 1156 414 1157 412 1158 413 1159 415 1160 414 1161 413 1162 416 1163 414 1164 415 1165 417 1166 416 1167 415 1168 418 1169 416 1170 417 1171 419 1172 418 1173 417 1174 420 1175 418 1176 419 1177 421 1178 420 1179 419 1180 422 1181 420 1182 421 1183 423 83 422 1184 421 84 424 1150 422 1185 423 1151 425 1186 424 1187 423 1188 426 1189 424 1190 425 1191 429 1192 428 1193 427 1194 430 1195 428 1196 429 1197 431 1198 430 1199 429 1200 432 1201 430 1201 431 1202 433 1203 432 1201 431 1202 434 1204 432 1205 433 1206 435 1206 434 1204 433 1206 436 1207 434 1208 435 1209 437 1209 436 1207 435 1209 438 1210 436 1211 437 1212 439 1213 438 1214 437 1213 440 1215 438 1216 439 1217 441 53 440 52 439 53 442 1218 440 1219 441 1220 443 1221 442 1222 441 1223 444 1224 442 1225 443 1226 445 1227 444 1228 443 1229 446 1230 444 1231 445 1232 447 71 446 73 445 71 448 1233 446 1234 447 1235 449 1235 448 1233 447 1235 450 1236 448 1237 449 1238 451 66 450 67 449 66 452 1239 450 1240 451 1241 430 1242 453 1243 428 1244 454 1245 453 1246 430 1247 432 1247 454 1245 430 1247 301 1248 454 1249 432 1250 434 1251 301 1252 432 1253 13 1254 301 1255 434 1256 436 1257 13 1258 434 1259 11 1260 13 1261 436 1262 438 1263 11 1264 436 1265 9 1266 11 1267 438 1268 440 1269 9 1270 438 1271 7 1270 9 1270 440 1269 442 1272 7 1273 440 1274 5 1275 7 1276 442 1277 444 1278 5 1279 442 1280 3 1281 5 1282 444 1283 446 1284 3 1285 444 1286 1 1287 3 1288 446 1289 448 1290 1 1291 446 1292 0 1293 1 1294 448 1295 450 1296 0 1297 448 1298 455 1299 0 1300 450 1301 452 1302 455 1303 450 1304 456 1305 455 1306 452 1307 459 1308 458 1309 457 1309 460 1310 458 1309 459 1308 461 1311 460 1312 459 1313 462 1314 460 1315 461 1316 463 1317 462 1318 461 1319 464 1320 462 1321 463 1322 465 1323 464 1324 463 1325 466 1326 464 1327 465 1328 467 1326 466 1326 465 1328 468 623 466 623 467 623 469 623 468 623 467 623 470 623 468 623 469 623 471 623 470 623 469 623 472 623 470 623 471 623 473 624 472 625 471 625 474 625 472 625 473 624 475 1329 474 625 473 624 476 1330 474 1331 475 1332 477 1333 476 1334 475 1335 478 1336 476 1337 477 1338 479 1339 478 1340 477 1341 480 1339 478 1340 479 1339 483 1342 482 1343 481 1342 484 1344 482 1343 483 1342 485 1345 484 1346 483 1347 486 1348 484 1349 485 1350 487 623 486 1351 485 1352 488 1353 486 1354 487 1355 489 1356 488 1357 487 1358 490 1359 488 1360 489 1361 491 948 490 947 489 948 492 947 490 947 491 948 493 1362 492 1363 491 1364 494 1365 492 1366 493 1367 495 1368 494 1369 493 1370 496 1371 494 1372 495 1373 497 1374 496 1375 495 1376 498 1377 496 1378 497 1379 499 1380 498 1381 497 1382 500 1383 498 1384 499 1385 71 1386 501 1387 69 1388 502 1387 501 1387 71 1386 503 1389 502 1390 71 1391 504 1392 502 1393 503 1394 505 1395 504 1396 503 1397 506 1398 504 1399 505 1400 507 1401 506 1402 505 1403 508 1404 506 1405 507 1406 509 1407 508 1408 507 1409 510 1410 508 1411 509 1412 511 1413 510 1414 509 1415 512 1416 510 1417 511 1418 513 1419 512 1420 511 1421 514 1422 512 1423 513 1424 515 1425 514 1426 513 1427 516 1428 514 1429 515 1430 517 1431 516 1432 515 1433 518 593 516 593 517 595 521 1434 520 1435 519 1435 522 1436 520 1435 521 1434 523 1437 522 1438 521 1439 524 1440 522 1441 523 1442 525 1443 524 1444 523 1445 496 1446 524 1446 525 1447 526 1448 496 1446 525 1447 527 1449 496 1450 526 1451 528 1452 527 1453 526 1454 529 1455 527 1456 528 1457 530 1458 529 1458 528 1459 531 623 529 623 530 623 532 1460 531 1461 530 1461 533 1462 531 1461 532 1460 534 1463 533 1464 532 1465 535 1466 533 1467 534 1468 536 1469 535 1470 534 1471 537 1472 535 1473 536 1474 540 1475 539 1476 538 1475 541 1477 539 1478 540 1479 542 1480 541 1481 540 1482 543 41 541 41 542 39 544 1483 543 1484 542 1485 545 1484 543 1484 544 1483 546 1485 545 1484 544 1483 547 1486 545 1487 546 1488 548 1489 547 1490 546 1491 549 1492 547 1493 548 1494 550 1495 549 1496 548 1497 551 1498 549 1499 550 1500 552 1501 551 1502 550 1503 553 1504 551 1505 552 1506 554 1507 553 1508 552 1509 342 1510 553 1511 554 1512 344 1513 342 1514 554 1515 557 1516 556 1517 555 1518 558 1519 556 1520 557 1521 559 1522 558 1523 557 1524 350 1525 558 1526 559 1527 560 1528 350 1529 559 1530 352 571 350 569 560 571 561 1531 352 1532 560 1532 354 1533 352 1532 561 1531 562 1534 354 1535 561 1536 563 1537 354 1538 562 1539 564 1540 563 1541 562 1542 47 1543 563 1544 564 1545 565 1546 47 1547 564 1548 46 1549 47 1550 565 1551 566 1552 46 1553 565 1554 92 1555 46 1556 566 1557 567 1558 92 1559 566 1560 502 1561 179 1562 501 1561 178 1563 179 1564 502 1565 504 1564 178 1563 502 1565 177 1566 178 1567 504 1568 506 1569 177 1570 504 1571 176 1572 177 1573 506 1574 508 1575 176 1576 506 1577 175 1578 176 1579 508 1580 510 1581 175 1582 508 1583 174 1584 175 1585 510 1586 512 1587 174 1588 510 1589 173 1590 174 1591 512 1592 514 1593 173 1594 512 1595 172 1594 173 1594 514 1593 516 1596 172 1597 514 1598 171 1599 172 1600 516 1601 170 1599 171 1599 516 1601 570 1602 569 1603 568 1604 571 1605 569 1606 570 1607 572 1608 571 1609 570 1610 573 1611 571 1612 572 1613 574 1614 573 1615 572 1616 575 1617 573 1618 574 1619 576 1620 575 1621 574 1622 577 1622 575 1621 576 1620 578 1623 577 1624 576 1623 579 1625 577 1626 578 1627 580 1628 579 1629 578 1630 581 1631 579 1632 580 1633 582 1634 581 1635 580 1636 223 1637 581 1638 582 1637 583 1639 223 1640 582 1640 222 1641 223 1640 583 1639 584 1642 222 1643 583 1644 585 1645 187 1646 185 1647 586 1648 187 1649 585 1648 587 1650 586 1651 585 1651 588 1652 586 1651 587 1650 362 1653 588 1654 587 1655 589 1656 588 1657 362 1658 360 1659 589 1660 362 1661 590 1662 589 1663 360 1662 591 1664 590 1665 360 1665 592 1666 590 1665 591 1664 593 1667 592 1668 591 1669 453 1670 592 1671 593 1672 456 1673 453 1674 593 1675 428 1676 453 1677 456 1678 452 1679 428 1680 456 1681 427 1682 428 1683 452 1684 451 1241 427 1241 452 1239 578 1685 582 1686 580 1687 594 1688 582 1689 578 1690 595 1691 594 1692 578 1693 596 1692 594 1692 595 1691 597 626 596 627 595 1694 598 627 596 627 597 626 599 626 598 627 597 626 600 1694 598 627 599 626 601 948 600 947 599 948 602 947 600 947 601 948 603 948 602 947 601 948 604 948 602 947 603 948 605 1695 604 1696 603 1696 606 1697 604 1698 605 1699 607 1700 606 1701 605 1702 608 1703 606 1704 607 1705 256 1706 609 1707 255 1708 610 1709 609 1710 256 1711 257 1712 610 1713 256 1714 611 1713 610 1713 257 1712 258 1715 611 1716 257 1717 612 1716 611 1716 258 1715 259 1718 612 1719 258 1720 613 1721 612 1722 259 1723 260 1724 613 1725 259 1726 614 1727 613 1728 260 1729 261 1730 614 1731 260 1732 615 1733 614 1734 261 1735 262 1736 615 1737 261 1738 616 1739 615 1740 262 1741 263 1742 616 1743 262 1744 264 1745 616 1746 263 1747 329 1748 245 1749 247 1750 617 1626 245 1625 329 1627 618 1751 617 1752 329 1753 619 1754 617 1755 618 1756 620 1757 619 1758 618 1759 621 1760 619 1761 620 1762 622 1763 621 1764 620 1765 623 1766 621 1767 622 1768 624 1769 623 1770 622 1771 625 1772 623 1773 624 1774 626 1775 625 1776 624 1777 627 1778 625 1779 626 1780 628 1781 627 1782 626 1783 629 1784 627 1785 628 1786 630 1787 629 1788 628 1789 631 66 629 67 630 66 632 1790 319 1791 321 1792 633 1793 319 1794 632 1795 634 1796 633 1797 632 1796 635 1798 633 1799 634 1800 636 1801 635 1801 634 1802 161 1803 635 1804 636 1804 637 1805 161 1806 636 1807 160 1808 161 1809 637 1810 638 1811 160 1812 637 1813 159 1814 160 1815 638 1816 180 1815 159 1814 638 1816 116 1817 159 1818 180 1819 158 1820 116 1821 180 1822 115 1823 116 1824 158 1825 157 1826 115 1827 158 1828 541 1829 639 1830 539 1831 640 1331 639 1331 541 1330 543 1330 640 1331 541 1330 641 1331 640 1331 543 1330 545 1330 641 1331 543 1330 332 1832 641 1833 545 1834 547 1835 332 1836 545 1837 334 1838 332 1839 547 1840 549 1841 334 1842 547 1843 336 1844 334 1845 549 1846 551 1847 336 1848 549 1849 338 1850 336 1851 551 1852 553 1853 338 1854 551 1855 340 1856 338 1857 553 1858 342 1859 340 1860 553 1861 644 1862 643 1863 642 1864 645 1865 643 1866 644 1867 646 1037 645 1036 644 1035 647 1868 645 1869 646 1870 648 1871 647 1872 646 1873 649 627 647 627 648 626 650 627 649 627 648 626 651 1870 649 1868 650 1868 652 1874 651 1875 650 1876 653 1877 651 1878 652 1879 654 1880 653 1881 652 1882 655 1883 653 1884 654 1885 656 1886 655 1887 654 1888 657 1889 655 1890 656 1891 658 1892 657 1892 656 1893 339 958 659 958 337 959 660 1446 659 1447 339 1447 341 1894 660 1895 339 1896 661 1895 660 1895 341 1894 662 1896 661 1895 341 1894 663 1897 661 1898 662 1899 221 1900 663 1900 662 1901 664 1902 663 1903 221 1903 665 1904 664 1905 221 1906 666 1907 664 1908 665 1909 667 1910 666 1911 665 1912 668 1913 666 1914 667 1915 669 1916 668 1917 667 1918 670 1919 668 1920 669 1921 671 1922 670 1923 669 1924 674 1925 673 1926 672 1927 675 1928 673 1929 674 1930 676 1931 675 1931 674 1932 677 1933 675 1934 676 1934 678 1934 677 1933 676 1934 679 1935 677 1933 678 1934 680 1936 679 1937 678 1938 681 1939 679 1940 680 1941 682 1942 681 1943 680 1944 683 1945 681 1946 682 1947 684 1948 683 1949 682 1950 685 1951 683 1952 684 1953 625 1954 685 1955 684 1956 627 1957 685 1958 625 1959 686 1960 684 1961 682 1962 517 1963 684 1964 686 1965 687 1966 517 1967 686 1968 688 1969 517 1970 687 1971 689 1972 688 1973 687 1974 690 1975 688 1976 689 1977 691 1978 690 1979 689 1980 692 1981 690 1982 691 1983 693 1984 692 1985 691 1986 694 1987 692 1988 693 1989 695 1990 694 1991 693 1992 696 1993 694 1994 695 1995 697 1996 696 1997 695 1998 698 71 696 73 697 71 701 1999 700 2000 699 2001 702 2002 700 2002 701 2003 703 2004 702 2005 701 2006 704 1095 702 1095 703 1094 705 2007 704 2008 703 2009 706 1213 704 1213 705 1214 707 2010 706 2011 705 2012 708 2013 706 2013 707 2014 709 2015 708 2016 707 2017 710 2018 708 2018 709 2019 711 2020 710 2018 709 2019 712 2002 710 2002 711 2003 713 2021 712 2022 711 2023 714 2024 712 2024 713 2025 717 2026 716 2027 715 2028 718 2029 716 2030 717 2031 719 2032 718 2033 717 2034 720 2035 718 2036 719 2037 721 2038 720 2039 719 2040 722 2041 720 2042 721 2043 723 2044 722 2045 721 2046 724 2047 722 2048 723 2049 725 2050 724 2051 723 2052 726 2053 724 2053 725 2054 727 2055 726 2053 725 2054 728 2056 726 2057 727 2058 729 2059 728 2060 727 2061 730 2062 728 2063 729 2064 733 2065 732 2066 731 2065 734 2067 732 2066 733 2065 735 2068 734 2069 733 2070 736 2071 734 2072 735 2073 737 2074 736 2075 735 2076 738 2077 736 2078 737 2079 739 2079 738 2077 737 2079 740 2080 738 2081 739 2082 741 2082 740 2080 739 2082 742 2083 740 2084 741 2085 743 2086 742 2087 741 2086 744 2088 742 2087 743 2086 745 2086 744 2088 743 2086 746 2089 744 2090 745 2091 748 2092 311 2093 747 2094 312 2095 311 2096 748 2097 749 2098 312 2099 748 2100 314 2101 312 2102 749 2103 750 2104 314 2105 749 2106 316 2107 314 2108 750 2109 751 2110 316 2111 750 2112 318 2113 316 2114 751 2115 752 2116 318 2117 751 2118 320 2119 318 2120 752 2121 753 2122 320 2123 752 2124 754 2125 320 2126 753 2127 755 2128 754 2129 753 2128 756 2130 754 2131 755 2132 734 2133 642 2134 732 2135 644 2136 642 2137 734 2138 736 2139 644 2140 734 2141 646 2142 644 2143 736 2144 738 2145 646 2146 736 2147 757 2148 646 2149 738 2150 740 2151 757 2152 738 2153 758 2154 757 2155 740 2156 742 2157 758 2158 740 2159 759 2160 758 2161 742 2162 744 2163 759 2164 742 2165 760 2166 759 2167 744 2168 746 2169 760 2170 744 2171 761 2172 760 2173 746 2174 725 2175 762 2176 727 2177 763 2178 762 2178 725 2179 723 2180 763 2181 725 2182 764 2183 763 2184 723 2185 721 2186 764 2187 723 2188 765 2189 764 2190 721 2191 766 2192 765 2193 721 2194 767 2195 765 2196 766 2197 768 2198 767 2199 766 2200 769 2201 767 2202 768 2203 770 2204 769 2205 768 2206 771 2179 769 2178 770 2207 772 2208 771 2209 770 2210 773 1932 771 2211 772 1931 775 1241 747 1239 774 1241 748 2212 747 2213 775 2214 776 2215 748 2216 775 2215 749 2217 748 2218 776 2219 777 2220 749 2221 776 2220 750 2222 749 2223 777 2224 778 53 750 52 777 53 751 2225 750 2226 778 2227 779 2227 751 2225 778 2227 752 2226 751 2225 779 2227 780 53 752 52 779 53 753 2228 752 2229 780 2230 781 2231 753 2232 780 2231 755 2232 753 2232 781 2231 783 79 730 77 782 79 728 2233 730 2234 783 2235 784 2236 728 2237 783 2236 726 2238 728 2239 784 2240 785 2241 726 2242 784 2241 724 2242 726 2242 785 2241 786 2241 724 2242 785 2241 722 2243 724 2244 786 2245 787 1209 722 1207 786 1209 720 2246 722 2247 787 2248 788 2248 720 2246 787 2248 718 2249 720 2250 788 2251 789 2251 718 2249 788 2251 716 2252 718 2253 789 2254 792 2255 791 2256 790 2255 793 2257 791 2258 792 2259 794 2260 793 2261 792 2262 795 2263 793 2264 794 2265 796 2266 795 2267 794 2268 797 2269 795 2270 796 2271 798 1213 797 1214 796 1213 799 2272 797 2273 798 2274 800 2215 799 2216 798 2215 801 2275 799 2276 800 2277 802 56 801 54 800 56 803 2278 801 2279 802 2280 804 2280 803 2278 802 2280 805 2281 803 2282 804 2283 73 2284 503 2285 71 2286 505 2287 503 2288 73 2289 75 2290 505 2291 73 2292 806 2292 505 2291 75 2290 77 157 806 158 75 157 807 2293 806 2294 77 2295 79 2296 807 2297 77 2298 808 2299 807 2300 79 2301 81 2302 808 2303 79 2304 809 2305 808 2306 81 2307 83 2308 809 2309 81 2310 810 2311 809 2312 83 2313 85 2313 810 2311 83 2313 87 2314 810 2315 85 2316 809 2317 699 2318 811 2319 701 2320 699 2321 809 2322 810 2323 701 2324 809 2325 703 2326 701 2327 810 2328 812 2329 703 2330 810 2331 705 2332 703 2333 812 2334 813 2335 705 2336 812 2337 707 2338 705 2339 813 2340 814 2341 707 2342 813 2343 709 2344 707 2345 814 2346 815 2347 709 2348 814 2349 711 2350 709 2351 815 2352 816 2353 711 2354 815 2355 713 2356 711 2357 816 2358 819 2359 818 2360 817 2361 820 2362 818 2363 819 2364 821 2365 820 2366 819 2367 822 2368 820 2369 821 2370 823 2371 822 2372 821 2373 824 2374 822 2375 823 2376 825 2377 824 2378 823 2379 826 2380 824 2381 825 2382 827 2383 826 2384 825 2385 828 2386 826 2386 827 2387 829 2388 828 2386 827 2387 830 2389 828 2390 829 2391 805 2392 830 2393 829 2394 462 2395 831 2396 460 2397 832 2398 831 2399 462 2400 464 2401 832 2402 462 2403 833 1326 832 1326 464 1327 466 1326 833 1326 464 1327 834 623 833 623 466 623 835 623 834 623 466 623 836 623 834 623 835 623 470 623 836 623 835 623 837 624 836 625 470 625 838 624 837 624 470 625 839 624 837 624 838 624 840 625 839 624 838 624 842 2404 817 2405 841 2406 819 2407 817 2408 842 2409 843 2410 819 2411 842 2412 821 2413 819 2414 843 2415 844 2416 821 2417 843 2418 845 2419 821 2420 844 2421 846 2422 845 2423 844 2424 847 2425 845 2426 846 2427 830 2428 847 2429 846 2430 791 2431 847 2432 830 2433 805 2434 791 2435 830 2436 790 2437 791 2438 805 2439 804 2254 790 2254 805 2252 507 2440 384 2441 382 2442 848 2443 384 2444 507 2445 849 2446 848 2447 507 2448 850 2449 848 2450 849 2451 851 2452 850 2453 849 2454 852 2455 850 2456 851 2457 853 2458 852 2459 851 2460 816 2461 852 2462 853 2463 811 2464 816 2465 853 2466 713 2467 816 2468 811 2469 699 2470 713 2471 811 2472 714 2473 713 2474 699 2475 700 1931 714 1931 699 1932 793 2476 847 2477 791 2478 854 2479 847 2480 793 2481 795 2482 854 2483 793 2484 855 2485 854 2486 795 2487 797 2488 855 2489 795 2490 823 2491 855 2492 797 2493 799 2494 823 2495 797 2496 825 2497 823 2498 799 2499 801 2500 825 2501 799 2502 827 2503 825 2504 801 2505 803 2506 827 2507 801 2508 829 2509 827 2510 803 2511 805 2512 829 2513 803 2514 511 2515 856 2516 513 2517 857 2518 856 2519 511 2520 858 2521 857 2522 511 2523 859 2524 857 2525 858 2526 860 2527 859 2528 858 2529 861 2530 859 2531 860 2532 862 2533 861 2534 860 2535 863 2536 861 2537 862 2538 864 2539 863 2540 862 2541 865 2542 863 2543 864 2544 866 2545 865 2546 864 2547 867 2548 865 2549 866 2550 868 1203 867 1203 866 1201 869 2551 668 2552 670 2553 870 2554 668 2555 869 2556 871 1209 870 1207 869 1209 872 2557 870 2558 871 2559 873 1058 872 1057 871 1058 874 1094 872 2560 873 1095 875 1095 874 1094 873 1095 876 2561 874 2562 875 2563 877 2013 876 2014 875 2013 878 2564 876 2014 877 2013 879 2013 878 2564 877 2013 695 2565 878 2566 879 2567 697 1996 695 1998 879 1996 882 2256 881 2255 880 2255 883 2568 881 2569 882 2570 884 2571 883 2572 882 2573 885 2574 883 2575 884 2576 886 2577 885 2578 884 2579 887 2580 885 2581 886 2582 888 2583 887 2584 886 2585 889 2586 887 2587 888 2588 890 2589 889 2590 888 2591 891 2592 889 2593 890 2594 892 2595 891 2596 890 2597 893 2598 891 2599 892 2600 894 2601 893 2601 892 2602 895 2603 560 2603 559 2604 561 1531 560 1532 895 1532 896 1531 561 1531 895 1532 897 2605 561 2606 896 2606 898 2607 897 2608 896 2609 899 2610 897 2611 898 2612 900 2613 899 2614 898 2615 901 2616 899 2617 900 2618 91 2619 901 2620 900 2621 902 2622 901 2623 91 2624 90 2625 902 2626 91 2627 903 2628 902 2629 90 2630 114 2631 903 2632 90 2633 628 2216 904 2215 630 2215 905 2634 904 2215 628 2216 626 2635 905 2636 628 2637 906 2638 905 2639 626 2640 624 2641 906 2642 626 2643 907 2644 906 2645 624 2646 622 2647 907 2648 624 2649 908 2650 907 2651 622 2652 620 2653 908 2654 622 2655 659 2656 908 2657 620 2658 618 1447 659 1447 620 1446 333 959 659 958 618 958 862 2659 909 2660 864 2661 910 2662 909 2663 862 2664 911 2665 910 2666 862 2667 912 2668 910 2669 911 2670 913 2671 912 2672 911 2673 914 2674 912 2675 913 2676 915 2677 914 2678 913 2679 400 2680 914 2681 915 2682 916 2683 400 2684 915 2685 377 2686 400 2687 916 2688 917 2689 377 2690 916 2691 376 1058 377 1057 917 1058 398 2692 914 2693 400 2694 918 2695 914 2696 398 2697 396 2698 918 2699 398 2700 919 2701 918 2702 396 2703 920 2704 919 2705 396 2706 921 2707 919 2708 920 2709 922 2710 921 2711 920 2712 923 2713 921 2714 922 2715 924 2716 923 2717 922 2718 925 2719 923 2720 924 2721 926 2722 925 2723 924 2724 927 2280 925 2278 926 2280 928 2725 317 2726 319 2727 929 2728 317 2729 928 2730 930 2731 929 2732 928 2733 715 2734 929 2735 930 2736 931 2737 715 2738 930 2739 717 2740 715 2741 931 2742 932 2743 717 2744 931 2745 933 2746 717 2747 932 2748 934 2749 933 2750 932 2751 935 2752 933 2753 934 2754 936 2755 935 2756 934 2757 937 2758 935 2759 936 2760 940 2761 939 2762 938 2763 941 2764 939 2765 940 2766 942 2767 941 2768 940 2769 943 2770 941 2771 942 2772 944 2665 943 2665 942 2666 945 2773 943 2774 944 2774 946 2775 945 2776 944 2777 947 2778 945 2779 946 2780 948 2781 947 2782 946 2783 949 2783 947 2782 948 2781 950 2784 949 2785 948 2786 951 2787 949 2788 950 2789 952 1857 494 1856 529 1857 492 2790 494 2791 952 2792 953 954 492 952 952 954 954 954 492 952 953 954 955 623 954 623 953 623 956 623 954 623 955 623 957 2793 956 2794 955 2794 958 2795 956 2794 957 2793 959 2796 958 2797 957 2798 960 2799 958 2800 959 2801 961 2802 960 2803 959 2804 962 2802 960 2803 961 2802 963 2805 769 2806 771 2807 964 2808 769 2809 963 2810 965 2811 964 2812 963 2813 966 2814 964 2815 965 2816 967 2817 966 2818 965 2819 219 2820 966 2821 967 2822 968 2823 219 2824 967 2825 969 2826 219 2827 968 2828 970 2829 969 2830 968 2831 667 2832 969 2833 970 2834 669 2835 667 2836 970 2837 945 2773 971 2773 943 2774 972 2838 971 2839 945 2839 947 2840 972 2841 945 2842 973 2843 972 2844 947 2845 974 1449 973 1450 947 1451 975 602 973 604 974 602 976 948 975 948 974 948 977 2846 975 2847 976 2847 978 2848 977 2846 976 2847 979 2849 977 2850 978 2851 980 2852 979 2853 978 2854 981 2855 283 2856 285 2856 982 2857 283 2856 981 2855 983 2858 982 2859 981 2860 984 2861 982 2862 983 2863 985 2864 984 2865 983 2866 986 2867 984 2868 985 2869 987 2870 986 2871 985 2872 579 2873 986 2874 987 2875 988 2876 579 2877 987 2878 577 2879 579 2880 988 2881 575 2882 577 2883 988 2884 583 2885 989 2886 584 2887 990 2886 989 2886 583 2885 582 2888 990 2889 583 2890 643 2891 990 2892 582 2893 594 1688 643 1688 582 1689 642 2894 643 2895 594 2895 761 2896 642 2897 594 2898 732 2899 642 2900 761 2901 746 2902 732 2903 761 2904 731 2905 732 2906 746 2907 745 2091 731 2091 746 2089 423 1188 991 1188 425 1186 992 53 991 53 423 53 421 84 992 83 423 83 993 83 992 83 421 84 419 2908 993 2909 421 2910 994 2241 993 2241 419 2242 417 2911 994 2912 419 2913 995 1058 994 1058 417 1056 415 2914 995 2915 417 2916 996 79 995 79 415 77 413 2917 996 2918 415 2919 165 1796 633 1797 164 2920 997 2921 633 2922 165 2923 166 2924 997 2925 165 2926 998 2927 997 2927 166 2928 167 2929 998 2930 166 2931 999 2932 998 2933 167 2934 1000 2935 999 2936 167 2937 690 2938 999 2938 1000 2939 518 2940 690 2938 1000 2939 688 2939 690 2938 518 2940 517 2941 688 2942 518 2943 1003 2944 1002 2945 1001 2946 1004 2947 1002 2948 1003 2949 1005 2950 1004 2951 1003 2952 1006 2953 1004 2954 1005 2955 1007 2956 1006 2957 1005 2958 1008 2959 1006 2960 1007 2961 1009 2962 1008 2963 1007 2964 1010 2964 1008 2963 1009 2962 1011 2965 1010 2966 1009 2967 1012 2968 1010 2969 1011 2970 1004 2947 1013 2948 1002 2948 1014 2949 1013 2948 1004 2947 1006 2971 1014 2972 1004 2973 521 2974 1014 2975 1006 2976 1015 2977 521 2978 1006 2979 523 2980 521 2981 1015 2982 557 2983 523 2984 1015 2985 1016 2983 523 2984 557 2983 555 1518 1016 1516 557 1516 1017 1518 1016 1516 555 1518 1020 2986 1019 2987 1018 2988 1021 2989 1019 2990 1020 2991 1022 2992 1021 2993 1020 2994 1023 961 1021 961 1022 962 1024 2995 1023 2996 1022 2997 1025 1750 1023 1748 1024 1749 1026 2998 1025 2999 1024 3000 1027 3001 1025 3002 1026 3003 1028 3004 1027 3005 1026 3006 1029 3004 1027 3005 1028 3004 1030 954 492 952 954 954 490 952 492 952 1030 954 1031 954 490 952 1030 954 1032 3007 490 3008 1031 3009 1033 3010 1032 3011 1031 3012 1034 3013 1032 3014 1033 3015 1035 3016 1034 3017 1033 3018 1036 3019 1034 3020 1035 3021 1037 3022 1036 3023 1035 3024 482 3025 1036 3026 1037 3027 900 3028 1038 3029 91 3030 1039 3031 1038 3032 900 3033 898 3034 1039 3035 900 3036 1040 3037 1039 3038 898 3039 896 3040 1040 3041 898 3042 1041 3043 1040 3044 896 3045 1042 3046 1041 3047 896 3048 1043 3049 1041 3050 1042 3051 277 3052 1043 3053 1042 3054 279 3055 1043 3056 277 3057 593 3058 455 3059 456 3060 0 3061 455 3062 593 3063 1044 506 0 508 593 506 2 3064 0 3065 1044 3066 1045 3067 2 3068 1044 3069 841 3070 2 3071 1045 3072 1046 3073 841 3074 1045 3075 1047 3076 841 3077 1046 3078 1048 3079 1047 3080 1046 3081 1049 3082 1047 3083 1048 3084 12 3085 39 3086 41 3087 1050 3088 39 3089 12 3090 10 3091 1050 3092 12 3093 1051 3094 1050 3095 10 3096 634 3097 1051 3098 10 3099 1052 3100 1051 422 634 423 632 423 1052 3100 634 423 1053 1476 1052 1475 632 3101 321 3102 1053 3103 632 3104 323 3105 1053 3106 321 3107 232 627 328 1694 234 626 639 3108 328 3109 232 3110 230 625 639 625 232 624 539 1831 639 1830 230 1830 1054 1831 539 1831 230 1830 538 1475 539 1476 1054 1476 1055 3111 538 3112 1054 3113 1056 3114 538 3115 1055 3116 1057 3117 1056 3118 1055 3119 1058 3117 1056 3118 1057 3117 515 3120 684 3121 517 3122 625 3123 684 3124 515 3125 1059 3126 625 3127 515 3128 623 3129 625 3130 1059 3131 1060 3132 623 3133 1059 3134 1061 3135 623 3136 1060 3137 1062 3138 1061 3139 1060 3140 1063 3141 1061 3142 1062 3143 1064 3144 1063 3145 1062 3146 1065 3144 1063 3145 1064 3144 693 3147 878 3148 695 3149 1066 3150 878 3151 693 3152 691 3153 1066 3154 693 3155 1067 3156 1066 3157 691 3158 689 3159 1067 3160 691 3161 1068 3162 1067 3163 689 3164 1069 3165 1068 3166 689 3167 1070 3168 1068 3169 1069 3170 664 3171 1070 3172 1069 3173 666 3174 1070 3175 664 3176 372 1052 181 1050 374 1050 183 3177 181 3178 372 3179 370 3180 183 3181 372 3182 1071 3183 183 3184 370 3185 368 3186 1071 3187 370 3188 1072 1623 1071 3189 368 1624 366 3190 1072 3191 368 3192 587 557 1072 559 366 557 364 948 587 947 366 947 362 948 587 947 364 948 576 559 595 557 578 559 597 1653 595 1655 576 1654 1073 3193 597 3194 576 3195 599 1871 597 1871 1073 1873 1074 3196 599 3197 1073 3198 971 3199 599 3200 1074 3201 1075 3202 971 3203 1074 3204 1076 3205 971 3206 1075 3207 1077 3208 1076 3209 1075 3210 1078 3211 1076 3212 1077 3213 1079 3214 538 3215 1056 3216 540 3215 538 3215 1079 3214 1080 3217 540 3218 1079 3219 542 3220 540 3221 1080 3222 1081 3223 542 3224 1080 3225 544 3226 542 3227 1081 3228 1082 3229 544 3230 1081 3231 546 3232 544 3233 1082 3234 1083 3235 546 3236 1082 3237 1084 3238 546 3239 1083 3240 1086 2255 401 2256 1085 2255 403 3241 401 3242 1086 3243 1087 2231 403 2232 1086 2231 405 3244 403 3245 1087 3246 1088 2002 405 2003 1087 2002 407 3247 405 3248 1088 3249 1089 1203 407 1202 1088 1203 409 1203 407 1202 1089 1203 1090 53 409 53 1089 53 1091 53 409 53 1090 53 1021 3250 525 3251 1019 3252 1092 961 525 962 1021 961 1023 551 1092 551 1021 551 1093 3253 1092 3254 1023 3254 1094 3255 1093 3256 1023 3257 1095 3258 1093 3259 1094 3260 1096 3261 1095 3262 1094 3263 1097 3264 1095 3265 1096 3266 371 3267 1097 3268 1096 3269 373 3270 1097 3271 371 3272 1100 3273 1099 3274 1098 3275 1101 3276 1099 3277 1100 3278 1102 3279 1101 3280 1100 3281 1103 3282 1101 3283 1102 3284 1104 3285 1103 3286 1102 3287 1105 3288 1103 3289 1104 3290 1106 3291 1105 3292 1104 3293 235 3291 1105 3292 1106 3291 1107 624 235 624 1106 624 897 2605 562 3294 561 2606 564 3295 562 3296 897 3297 899 3298 564 3299 897 3300 565 3301 564 3302 899 3303 901 3304 565 3305 899 3306 566 3307 565 3308 901 3309 902 3310 566 3311 901 3312 567 3313 566 3314 902 3315 903 3316 567 3317 902 3318 6 3319 636 3320 634 3321 637 3322 636 3323 6 3324 818 3325 637 3326 6 3327 638 3328 637 3329 818 3330 820 3331 638 3332 818 3333 1108 3334 638 3335 820 3336 1109 3337 1108 3338 820 3339 65 3340 1108 3341 1109 3342 63 3343 65 3344 1109 3345 1092 961 526 961 525 962 1110 3346 526 3347 1092 3347 1093 3348 1110 3349 1092 3350 1111 3351 1110 3352 1093 3353 1095 3354 1111 3355 1093 3356 1112 3357 1111 3358 1095 3359 1097 3360 1112 3361 1095 3362 375 3363 1112 3364 1097 3365 373 3366 375 3367 1097 3368 905 1998 880 1996 904 1996 882 2256 880 2255 905 3369 906 3370 882 3371 905 3372 884 3373 882 3374 906 3375 907 3376 884 3377 906 3378 886 3379 884 3380 907 3381 908 3382 886 3383 907 3384 660 3385 886 3386 908 3387 659 2656 660 2658 908 2657 1113 3388 890 3389 888 3390 1114 3391 890 3392 1113 3393 686 3394 1114 3395 1113 3396 1115 3397 1114 3398 686 3399 682 3400 1115 3401 686 3402 1116 3403 1115 3404 682 3405 680 3406 1116 3407 682 3408 1117 3409 1116 3410 680 3411 678 2013 1117 2013 680 2014 883 67 1118 66 881 66 673 3412 1118 3413 883 3414 885 3415 673 3416 883 3417 672 3418 673 3419 885 3420 887 3421 672 3422 885 3423 674 3424 672 3425 887 3426 1119 3427 674 3428 887 3429 676 3430 674 3431 1119 3432 1120 2251 676 2251 1119 2249 1121 3433 930 3434 928 3435 931 3436 930 3437 1121 3438 1122 3439 931 3440 1121 3441 1123 3442 931 3443 1122 3444 1124 3445 1123 3446 1122 3447 1125 3448 1123 3449 1124 3450 1126 3451 1125 3452 1124 3453 1127 3454 1125 3455 1126 3456 1128 3457 1127 3458 1126 3459 1131 3460 1130 3461 1129 3462 1132 3460 1130 3461 1131 3460 1133 287 1132 289 1131 289 1134 287 1132 289 1133 287 1135 3463 1134 3464 1133 3464 1136 3465 1134 3464 1135 3463 840 3465 1136 3465 1135 3463 472 623 1136 623 840 623 470 623 472 623 840 623 924 2242 1137 2241 926 2241 1138 3466 1137 3467 924 3468 922 3469 1138 3470 924 3471 1139 3472 1138 3473 922 3474 1140 3475 1139 3476 922 3477 1141 3478 1139 3479 1140 3480 1142 3481 1141 3482 1140 3483 386 3484 1141 3485 1142 3486 388 3487 386 3488 1142 3489 836 623 1143 623 834 623 1144 952 1143 954 836 954 1145 3110 1144 3109 836 3108 1146 1691 1144 1691 1145 1692 1147 1691 1146 1691 1145 1692 1148 3490 1146 3491 1147 3491 1149 3492 1148 3490 1147 3491 1150 3493 1148 3494 1149 3495 1151 3496 1150 3497 1149 3498 358 3499 591 3500 360 3501 1152 3502 591 3503 358 3504 356 3505 1152 3506 358 3507 1153 3508 1152 3509 356 3510 1154 3511 1153 3512 356 3513 1155 3514 1153 3515 1154 3516 1156 3517 1155 3518 1154 3519 1157 3520 1155 3521 1156 3522 1158 2002 1157 2002 1156 2003 1159 3523 655 3524 657 3523 653 3525 655 3524 1159 3523 1160 3526 653 3527 1159 3528 1161 3529 653 3530 1160 3531 1162 3532 1161 3533 1160 3534 1163 3535 1161 3536 1162 3537 1164 3538 1163 3539 1162 3540 1165 3541 1163 3542 1164 3543 1166 3544 1165 3545 1164 3546 203 3547 310 3548 205 3549 308 3550 310 3551 203 3552 201 3553 308 3554 203 3555 1167 3555 308 3554 201 3553 1168 3556 1167 3557 201 3558 306 3559 1167 3560 1168 3561 1169 3561 306 3559 1168 3561 1170 3561 306 3559 1169 3561 195 946 1170 946 1169 946 591 581 1044 583 593 583 1171 3562 1044 3563 591 3564 1152 3565 1171 3565 591 3566 1172 3567 1171 3568 1152 3568 1153 3569 1172 3567 1152 3568 1173 3570 1172 3571 1153 3572 1155 3573 1173 3574 1153 3575 1174 3576 1173 3577 1155 3578 1157 3579 1174 3580 1155 3581 866 3582 1175 3583 868 3584 1176 3585 1175 3586 866 3587 864 3588 1176 3589 866 3590 1177 3591 1176 3592 864 3593 909 3594 1177 3595 864 3596 1178 3597 1177 3598 909 3599 1179 3600 1178 3601 909 3602 1180 3603 1178 3604 1179 3605 621 3606 1180 3607 1179 3608 1182 3609 965 3610 1181 3611 967 3612 965 3613 1182 3614 1183 3615 967 3616 1182 3617 968 3618 967 3619 1183 3620 1184 3621 968 3622 1183 3623 970 3624 968 3625 1184 3626 1185 3627 970 3628 1184 3629 669 2835 970 2837 1185 2835 671 1922 669 1924 1185 1924 353 3630 1187 3631 1186 3632 1188 3633 1187 3634 353 3635 355 3636 1188 3637 353 3638 1189 3639 1188 3640 355 3641 1022 3642 1189 3643 355 3644 1190 3645 1189 3646 1022 3647 1020 3648 1190 3649 1022 3650 1191 3651 1190 3652 1020 3653 1018 3654 1191 3655 1020 3656 381 3657 399 3658 379 3659 1192 3660 399 3661 381 3662 383 3663 1192 3664 381 3665 1193 3666 1192 3667 383 3668 1194 3669 1193 3670 383 3671 1195 3672 1193 3673 1194 3674 1196 1151 1195 1151 1194 1150 391 53 1195 53 1196 53 389 53 391 53 1196 53 1197 3675 1121 3676 690 3677 1122 3678 1121 3679 1197 3680 1198 3679 1122 3678 1197 3680 1124 3681 1122 3682 1198 3683 1199 3684 1124 3685 1198 3686 1126 3687 1124 3688 1199 3689 1200 3690 1126 3691 1199 3692 1128 3693 1126 3694 1200 3695 773 3696 1128 3697 1200 3698 1101 3699 1201 3700 1099 3701 1202 3702 1201 3703 1101 3704 1103 3705 1202 3706 1101 3707 1203 3708 1202 3709 1103 3710 1105 3711 1203 3712 1103 3713 1204 3714 1203 3715 1105 3716 1205 3717 1204 3718 1105 3719 1040 3720 1204 3721 1205 3722 921 3723 1040 3724 1205 3725 354 1005 828 1003 356 1003 1206 3726 828 3727 354 3728 422 3729 1206 3730 354 3731 1207 3732 1206 3733 422 3734 426 3735 1207 3736 422 3737 1208 3738 1207 3739 426 3740 425 3741 1208 3742 426 3743 1209 3744 1208 3745 425 3746 991 1188 1209 1188 425 1186 649 2891 990 2892 647 2891 1210 2891 990 2892 649 2891 1211 3747 1210 3748 649 3748 1212 3749 1210 3750 1211 3751 1165 3752 1212 3753 1211 3754 1213 3755 1212 3756 1165 3757 1166 3758 1213 3759 1165 3760 1214 3761 1213 3762 1166 3763 1216 3764 1129 3765 1215 3766 1131 3767 1129 3768 1216 3769 1217 3770 1131 3771 1216 3772 1133 3773 1131 3774 1217 3775 989 3776 1133 3777 1217 3778 1135 3779 1133 3780 989 3781 990 3781 1135 3779 989 3781 1210 3782 1135 3783 990 3784 309 3785 1218 3786 756 3787 324 3788 1218 3789 309 3790 307 3791 324 3792 309 3793 326 3794 324 3795 307 3796 305 3797 326 3798 307 3799 1219 3800 326 3801 305 3802 303 3803 1219 3804 305 3805 15 3806 1219 3807 303 3808 573 3809 287 3810 289 3811 1220 3812 287 3813 573 3814 1221 3815 1220 3816 573 3817 1222 3818 1220 3819 1221 3820 1223 3821 1222 3822 1221 3823 1224 3824 1222 3825 1223 3826 1225 3827 1224 3828 1223 3829 1226 3830 1224 3831 1225 3832 982 3833 281 3834 283 3835 279 3836 281 3837 982 3838 1227 3839 279 3840 982 3841 1043 3842 279 3843 1227 3844 1228 3845 1043 3846 1227 3847 1229 3848 1043 3849 1228 3850 1230 2128 1229 3851 1228 2129 1231 3852 1229 3853 1230 3854 1232 3855 297 3856 299 3857 568 3858 297 3859 1232 3860 1233 3861 568 3862 1232 3863 570 3864 568 3865 1233 3866 1234 3867 570 3868 1233 3869 1235 3870 570 3871 1234 3872 1236 3873 1235 3874 1234 3875 1237 3876 1235 3877 1236 3878 217 3879 966 3880 219 3881 1238 3882 966 3882 217 3883 1239 3884 1238 3885 217 3886 767 3887 1238 3888 1239 3889 1240 3890 767 3891 1239 3892 1241 3893 767 3894 1240 3895 213 3896 1241 3897 1240 3898 211 3899 1241 3900 213 3901 1008 3711 1015 3712 1006 3713 895 3902 1015 3903 1008 3904 1232 3556 895 3557 1008 3556 1242 3905 895 3906 1232 3907 299 3908 1242 3909 1232 3910 1243 3911 1242 3912 299 3913 300 3914 1243 3915 299 3916 270 3917 1243 3918 300 3919 1244 3920 268 3921 269 3922 267 3923 268 3924 1244 3925 1245 3926 267 3927 1244 3928 266 3929 267 3930 1245 3931 1246 3931 266 3929 1245 3931 265 3932 266 3933 1246 3934 1247 3934 265 3932 1246 3934 1248 3934 265 3932 1247 3934 477 3935 1249 3936 479 3937 1250 3938 1249 3939 477 3940 475 3941 1250 3942 477 3943 1251 3944 1250 3945 475 3946 473 3947 1251 3948 475 3949 1252 3950 1251 3951 473 3952 471 625 1252 625 473 624 469 623 1252 623 471 623 692 3953 1197 3954 690 3955 1198 3956 1197 3957 692 3958 694 3959 1198 3960 692 3961 1181 3962 1198 3963 694 3964 696 3965 1181 3966 694 3967 1253 3968 1181 3969 696 3970 698 3971 1253 3972 696 3973 1254 53 1253 51 698 53 1256 3974 1001 3975 1255 3976 1003 3977 1001 3978 1256 3979 493 3980 1003 3981 1256 3982 1005 3204 1003 3202 493 3203 1257 3983 1005 3984 493 3985 1258 3986 1005 3987 1257 3988 1259 3989 1258 3990 1257 3991 1260 1775 1258 1777 1259 1775 1261 949 976 950 974 950 1262 950 976 950 1261 949 487 949 1262 950 1261 949 1263 949 1262 950 487 949 1264 3992 1263 3993 487 3993 831 3994 1263 3993 1264 3992 458 3995 831 3996 1264 3997 460 3998 831 3999 458 4000 404 4001 826 4002 402 4003 824 4004 826 4005 404 4006 406 4007 824 4008 404 4009 1265 4010 824 4011 406 4012 408 4013 1265 4014 406 4015 1266 4016 1265 4017 408 4018 410 4019 1266 4020 408 4021 412 1152 1266 4022 410 1153 1192 4023 1267 4024 399 4025 1268 4026 1267 4027 1192 4028 1193 4029 1268 4030 1192 4031 1269 4032 1268 4033 1193 4034 1195 2002 1269 2002 1193 2003 1270 53 1269 53 1195 53 391 53 1270 53 1195 53 393 68 1270 69 391 69 513 4035 1059 4036 515 4037 1271 4038 1059 4039 513 4040 856 4041 1271 4042 513 4043 1272 4044 1271 4045 856 4046 1273 4047 1272 4048 856 4049 1175 4050 1272 4051 1273 4052 1274 4053 1175 4054 1273 4055 868 56 1175 54 1274 56 605 4056 1275 4057 607 4058 1276 4059 1275 4060 605 4061 603 4062 1276 4063 605 4064 1277 4065 1276 4066 603 4067 1278 4068 1277 4069 603 4070 1279 4071 1277 4072 1278 4073 1280 4074 1279 4075 1278 4076 973 604 601 602 599 602 603 602 601 602 973 604 975 602 603 602 973 604 1278 4068 603 4070 975 4070 977 4077 1278 4078 975 4079 1280 4080 1278 4081 977 4082 979 4083 1280 4084 977 4085 359 4086 1281 4087 357 4088 1282 4089 1281 4090 359 4091 361 4092 1282 4093 359 4094 1283 4095 1282 4096 361 4097 1284 4098 1283 4099 361 4100 1285 4101 1283 4102 1284 4103 1286 4101 1285 4101 1284 4103 1287 2548 865 2549 867 2548 1288 4104 865 4105 1287 4106 1289 62 1288 60 1287 62 1290 4107 1288 4108 1289 4109 1291 1203 1290 1201 1289 1203 1292 4110 1290 4111 1291 4112 1293 1058 1292 1056 1291 1058 1176 4113 1272 4114 1175 4115 1294 4116 1272 4117 1176 4118 1177 4119 1294 4120 1176 4121 1295 4122 1294 4123 1177 4124 1296 4125 1295 4126 1177 4127 1297 4128 1295 4129 1296 4130 1298 4128 1297 4128 1296 4130 929 4131 315 4132 317 4133 729 4134 315 4135 929 4136 715 4137 729 4138 929 4139 730 4140 729 4141 715 4142 716 4143 730 4144 715 4145 782 4146 730 4147 716 4148 789 2254 782 2254 716 2252 1210 4149 840 4150 1135 4151 839 624 840 625 1210 624 1299 4152 839 4153 1210 4153 1300 4154 839 4153 1299 4152 1301 4155 1300 4156 1299 4157 656 4158 1300 4159 1301 4160 658 1892 656 1893 1301 4161 509 4162 858 4163 511 4164 1302 4165 858 4166 509 4167 380 4168 1302 4169 509 4170 1303 4171 1302 4172 380 4173 378 4174 1303 4175 380 4176 1304 4177 1303 4178 378 4179 376 1058 1304 1058 378 1056 1206 4180 826 4181 828 4181 402 4182 826 4183 1206 4184 1207 4185 402 4186 1206 4187 401 4188 402 4189 1207 4190 1208 4191 401 4192 1207 4193 1085 4194 401 4195 1208 4196 1209 69 1085 69 1208 68 467 623 1252 623 469 623 1251 1462 1252 1461 467 1461 1305 4197 1251 4198 467 4199 1250 4200 1251 4201 1305 4202 1306 4203 1250 4204 1305 4205 1249 4206 1250 4207 1306 4208 1307 4209 1249 4210 1306 4211 654 4212 1300 4213 656 4214 1308 4215 1300 4216 654 4217 1309 4215 1308 4215 654 4217 1310 4218 1308 4219 1309 4219 1311 4220 1310 4218 1309 4219 1312 4221 1310 4222 1311 4223 608 4224 1312 4225 1311 4226 465 4227 1305 4228 467 4229 1313 4230 1305 4231 465 4232 463 4233 1313 4234 465 4235 1314 4236 1313 4237 463 4238 461 4239 1314 4240 463 4241 1315 4240 1314 4240 461 4239 459 4242 1315 4243 461 4244 1110 4245 528 4246 526 4247 1316 4248 528 4249 1110 4250 1317 4251 1316 4252 1110 4253 1318 4254 1316 4255 1317 4256 1319 4257 1318 4258 1317 4259 1320 4260 1318 4261 1319 4262 1321 4263 1320 4264 1319 4265 343 4266 662 1663 341 1662 1322 4267 662 4268 343 4269 345 4270 1322 4271 343 4272 1323 4273 1322 4274 345 4275 1324 4276 1323 4277 345 4278 1325 4276 1323 4277 1324 4276 1322 4279 221 1900 662 1901 220 612 221 611 1322 612 1323 3403 220 3405 1322 3405 269 4275 220 4274 1323 4273 1325 4276 269 4278 1323 4277 1244 4280 269 4281 1325 4282 757 4283 648 4284 646 4285 650 4286 648 4287 757 4288 758 4289 650 4290 757 4291 1326 4292 650 4292 758 4293 759 4294 1326 4295 758 4296 598 2895 1326 2895 759 2894 1084 4297 548 4298 546 4299 550 4300 548 4301 1084 4302 1327 4303 550 4304 1084 4305 552 4306 550 4307 1327 4308 1328 4309 552 4310 1327 4311 1329 4309 552 4310 1328 4309 958 2795 1031 2794 956 2794 1033 4312 1031 4313 958 4314 960 4315 1033 4316 958 4317 1035 4318 1033 4319 960 4320 962 4321 1035 4322 960 4323 1330 4321 1035 4322 962 4321 304 4324 592 4325 302 4326 1331 4327 592 4328 304 4329 1170 1015 1331 1015 304 1016 1332 4330 1331 4331 1170 4331 195 4331 1332 4330 1170 4331 193 4332 1332 4330 195 4331 1062 3146 1333 3144 1064 3144 1334 4333 1333 4334 1062 4335 1060 4336 1334 4337 1062 4338 1335 4339 1334 4340 1060 4341 1059 4342 1335 4343 1060 4344 1271 4345 1335 4346 1059 4347 505 4348 849 4349 507 4350 851 4351 849 4352 505 4353 806 4354 851 4355 505 4356 853 4357 851 4358 806 4359 807 4360 853 4361 806 4362 808 4363 853 4364 807 4365 1338 4366 1337 4367 1336 4367 1339 4368 1337 4369 1338 4370 852 4371 1339 4372 1338 4373 1340 4371 1339 4372 852 4371 816 2461 1340 2462 852 2462 815 4374 1340 4375 816 4376 1308 4377 839 4378 1300 4379 1341 1691 839 1692 1308 1691 1342 4380 1341 4381 1308 4381 1343 4382 1341 4381 1342 4380 1344 4383 1343 4384 1342 4385 1345 4386 1343 4387 1344 4388 534 4389 1320 4390 536 4391 1318 4392 1320 4393 534 4394 532 4395 1318 4396 534 4397 1316 4398 1318 4399 532 4400 530 4401 1316 4402 532 4403 528 1459 1316 4404 530 1458 1341 1691 837 1692 839 1692 1346 1692 837 1692 1341 1691 1347 4405 1346 4406 1341 4407 1348 4408 1346 4409 1347 4410 1349 496 1348 494 1347 495 1151 496 1348 494 1349 496 1096 4411 369 4412 371 4413 1350 4414 369 4415 1096 4416 1094 4417 1350 4418 1096 4419 1351 4420 1350 4421 1094 4422 1023 4423 1351 4423 1094 4424 1025 4425 1351 4426 1023 4426 988 4427 1352 4428 575 4429 1353 4430 1352 4431 988 4432 987 4433 1353 4434 988 4435 1354 4436 1353 4437 987 4438 985 4439 1354 4440 987 4441 983 4442 1354 4443 985 4444 1222 4445 981 4446 285 4447 983 4448 981 4449 1222 4450 1224 4451 983 4452 1222 4453 1355 4454 983 4455 1224 4456 1226 4457 1355 4458 1224 4459 1356 4460 1355 4461 1226 4462 1228 4463 1098 4464 1230 4465 1100 4466 1098 4467 1228 4468 1227 4469 1100 4470 1228 4471 1102 4472 1100 4473 1227 4474 982 4475 1102 4476 1227 4477 984 4478 1102 4479 982 4480 1359 4481 1358 4482 1357 4483 1360 4484 1358 4485 1359 4486 1204 4487 1360 4488 1359 4489 1361 4490 1360 4491 1204 4492 1040 4493 1361 4494 1204 4495 1041 4496 1361 4497 1040 4498 1200 4499 771 4500 773 4501 963 4502 771 4503 1200 4504 1199 4505 963 4506 1200 4507 965 4508 963 4509 1199 4510 1198 4511 965 4512 1199 4513 1181 4514 965 4515 1198 4516 1362 3491 1146 3491 1148 3490 1144 947 1146 947 1362 947 1363 947 1144 947 1362 947 1364 954 1144 952 1363 952 1262 953 1364 954 1363 952 1263 949 1364 949 1262 950 1053 4517 31 4518 1052 4519 29 4520 31 4521 1053 4522 323 4523 29 4524 1053 4525 27 4526 29 4527 323 4528 325 4529 27 4530 323 4531 25 4532 27 4533 325 4534 860 4535 911 4536 862 4537 913 4538 911 4539 860 4540 1365 4541 913 4542 860 4543 1366 4544 913 4545 1365 4546 1367 4547 1366 4548 1365 4549 1368 4550 1366 4551 1367 4552 1008 3863 1233 3861 1232 3863 942 4553 1233 4554 1008 4555 1010 4556 942 4557 1008 4558 1369 4559 942 4560 1010 4561 1012 4562 1369 4563 1010 4564 1370 4565 1369 4566 1012 4567 1294 4568 1271 4569 1272 4570 1371 4571 1271 4572 1294 4573 1372 4574 1371 4575 1294 4576 1373 4577 1371 4578 1372 4579 1374 4580 1373 4581 1372 4582 1375 2024 1373 2025 1374 2024 225 1637 581 1638 223 1637 1376 1638 581 1638 225 1637 227 4583 1376 4584 225 4585 1107 4586 1376 4587 227 4588 229 4589 1107 4590 227 4591 231 625 1107 624 229 625 1108 1571 180 1570 638 1569 179 4385 180 4384 1108 4385 1377 1561 179 1562 1108 1562 501 1561 179 1562 1377 1561 67 4592 501 4593 1377 4593 69 4594 501 4593 67 4592 1061 4595 621 4596 623 4597 1180 4598 621 4599 1061 4600 1063 4601 1180 4602 1061 4603 1378 4604 1180 4605 1063 4606 1065 4607 1378 4608 1063 4609 1298 4610 1378 4611 1065 4610 49 4612 563 4613 47 4614 418 4615 563 4616 49 4617 51 4618 418 4619 49 4620 416 4621 418 4622 51 4623 53 4624 416 4625 51 4626 55 4627 416 4628 53 4629 997 4630 319 4631 633 4632 928 4633 319 4634 997 4635 998 4635 928 4633 997 4635 1121 4636 928 4637 998 4638 999 4639 1121 4640 998 4641 690 3677 1121 3676 999 3677 1365 4642 1379 4643 1367 4644 1380 4645 1379 4646 1365 4647 860 4648 1380 4649 1365 4650 1381 4651 1380 4652 860 4653 858 4654 1381 4655 860 4656 1302 4657 1381 4658 858 4659 533 1462 955 1461 531 1461 957 4660 955 4661 533 4662 535 4663 957 4664 533 4665 959 4666 957 4667 535 4668 537 4669 959 4670 535 4671 961 2802 959 2804 537 2802 1339 4368 1382 4369 1337 4369 1383 4672 1382 4673 1339 4674 1340 4675 1383 4676 1339 4677 1384 4678 1383 4679 1340 4680 815 4681 1384 4682 1340 4683 814 4684 1384 4685 815 4686 1161 4687 651 4688 653 4689 1385 4688 651 4688 1161 4687 1163 4690 1385 4691 1161 4692 1211 4693 1385 4694 1163 4695 1165 4696 1211 4697 1163 4698 941 4699 1386 4700 939 4701 1387 4702 1386 4703 941 4704 943 4705 1387 4706 941 4707 1076 4708 1387 4709 943 4710 971 2773 1076 4711 943 2774 394 4712 1140 4713 396 4714 1142 4715 1140 4716 394 4717 392 4718 1142 4719 394 4720 388 4721 1142 4722 392 4723 390 4724 388 4725 392 4726 844 184 1154 185 846 4727 1156 4728 1154 4729 844 4730 1388 4731 1156 4732 844 4733 1158 2002 1156 2003 1388 4734 1389 4735 1158 4736 1388 4737 491 4738 1257 4739 493 4740 1390 4741 1257 4742 491 4743 1391 4742 1390 4741 491 4743 1392 4744 1390 4745 1391 4746 951 4747 1392 4748 1391 4749 756 4750 311 4751 309 4752 747 4753 311 4754 756 4755 755 4756 747 4757 756 4758 774 4759 747 4760 755 4761 781 2231 774 2231 755 2232 1393 4101 1283 4102 1285 4101 1282 4762 1283 4763 1393 4764 1394 4764 1282 4762 1393 4764 1281 4765 1282 4766 1394 4767 1395 4767 1281 4765 1394 4767 572 4768 1074 4769 1073 4770 1075 4771 1074 4772 572 4773 1396 4774 1075 4775 572 4776 1397 4777 1075 4778 1396 4779 1237 4780 1397 4781 1396 4782 1241 4783 765 4784 767 4785 764 4786 765 4787 1241 4788 1398 4789 764 4790 1241 4791 763 4792 764 4793 1398 4794 762 4795 763 4795 1398 4796 1111 4797 1317 4798 1110 4799 1399 4800 1317 4801 1111 4802 1112 4803 1399 4804 1111 4805 1400 4806 1399 4807 1112 4808 375 4809 1400 4810 1112 4811 1219 4812 23 4813 326 4814 21 4815 23 4816 1219 4817 1401 4818 21 4819 1219 4820 19 4821 21 4822 1401 4823 17 4824 19 4825 1401 4826 677 1933 1402 1934 675 1934 1403 4827 1402 4828 677 4829 1404 4830 1403 4831 677 4832 685 4833 1403 4834 1404 4835 683 4836 685 4837 1404 4838 1405 4839 35 4840 37 4841 1406 4842 35 4843 1405 4844 1052 720 1406 719 1405 718 33 2241 1406 2242 1052 4845 31 67 33 66 1052 4846 568 4847 295 4848 297 4849 293 4850 295 4851 568 4852 569 1603 293 1602 568 1604 291 4853 293 4854 569 4855 289 4856 291 4857 569 4858 1106 4586 1376 4587 1107 4586 986 4586 1376 4587 1106 4586 1104 1693 986 1692 1106 1692 984 4859 986 4860 1104 4861 1102 4862 984 4863 1104 4864 1288 4865 863 4866 865 4867 861 4868 863 4869 1288 4870 1290 4871 861 4872 1288 4873 859 4874 861 4875 1290 4876 1292 4877 859 4878 1290 4879 575 4880 1221 4881 573 4882 1407 4883 1221 4884 575 4885 1408 4886 1407 4887 575 4888 1409 4889 1407 4890 1408 4891 1410 4892 1409 4893 1408 4894 1267 4895 397 4896 399 4897 395 4898 397 4899 1267 4900 1411 4901 395 4902 1267 4903 393 4904 395 4905 1411 4906 1270 4907 393 4908 1411 4909 1123 4910 932 4911 931 4912 1412 4913 932 4914 1123 4915 1125 4916 1412 4917 1123 4918 1413 4919 1412 4920 1125 4921 1127 3454 1413 3454 1125 3455 727 4922 315 4923 729 4924 313 4925 315 4926 727 4927 762 4928 313 4929 727 4930 205 4931 313 4932 762 4933 207 4934 205 4935 762 4936 191 4937 1414 4938 193 4939 1415 4940 1414 4941 191 4942 189 4943 1415 4944 191 4945 586 4946 1415 4947 189 4948 187 1649 586 1648 189 4949 1205 4950 919 4951 921 4952 918 4953 919 4954 1205 4955 1416 3049 918 3050 1205 3051 914 4956 918 4957 1416 4958 912 2810 914 2809 1416 2808 1417 71 1116 72 1117 71 1418 4959 1116 4960 1417 4961 894 79 1418 77 1417 79 892 4962 1418 4963 894 4964 87 4965 812 4966 810 4967 1038 4968 812 4969 87 4970 89 4971 1038 4972 87 4973 91 4974 1038 4975 89 4976 1138 1233 1419 1235 1137 1235 1420 4977 1419 4978 1138 4979 1139 4980 1420 4981 1138 4982 850 4983 1420 4984 1139 4985 1420 3146 1336 3144 1419 3144 1338 4366 1336 4367 1420 4986 850 4987 1338 4988 1420 4989 852 4990 1338 4991 850 4992 1422 4993 1293 4994 1421 4994 1292 4995 1293 4994 1422 4993 857 4996 1292 4997 1422 4998 859 4999 1292 5000 857 5001 1046 1094 1423 1095 1048 1095 1424 5002 1423 5003 1046 5004 1045 5005 1424 5006 1046 5007 1172 5008 1424 5009 1045 5010 1425 5011 1384 5012 814 5013 1426 5014 1384 5015 1425 5016 925 5017 1426 5018 1425 5019 927 2722 1426 2724 925 2723 588 5020 1415 5021 586 5022 1427 5023 1415 5024 588 5025 589 5026 1427 5027 588 5028 590 5029 1427 5030 589 5031 1404 5032 681 5033 683 5034 1428 5035 681 5036 1404 5037 677 5038 1428 5039 1404 5040 679 5041 1428 5042 677 5043 629 5044 685 5045 627 5046 1403 5047 685 5048 629 5049 631 5050 1403 5051 629 5052 1402 2548 1403 2549 631 2548 1429 5053 814 5054 813 5055 1425 5056 814 5057 1429 5058 923 5059 1425 5060 1429 5061 925 5062 1425 5063 923 5064 1038 5065 813 5066 812 5067 1429 5053 813 5055 1038 5053 1039 3031 1429 3032 1038 3032 1040 5068 1429 5069 1039 5070 1114 5071 892 5072 890 5073 1418 5074 892 5075 1114 5076 1115 5077 1418 5078 1114 5079 1116 5080 1418 5081 1115 5082 660 5083 888 5084 886 5085 1113 5086 888 5087 660 5088 661 5088 1113 5086 660 5088 663 5089 1113 5090 661 5091 1380 5092 1430 5093 1379 5094 1431 1214 1430 1213 1380 5095 1381 5096 1431 5097 1380 5098 1302 5099 1431 5100 1381 5101 947 5102 1261 5103 974 5104 1432 1856 1261 1857 947 1856 489 553 1432 551 947 551 487 5103 1432 5102 489 5104 832 2398 1263 2398 831 2399 1143 623 1263 623 832 623 833 623 1143 623 832 623 834 623 1143 623 833 623 837 624 1145 624 836 625 1433 624 1145 624 837 624 1346 624 1433 624 837 624 1348 4408 1433 4409 1346 4409 1433 1692 1147 1691 1145 1692 1149 5105 1147 5106 1433 5107 1348 4408 1149 4408 1433 4409 1151 496 1149 494 1348 494 1434 5108 1148 5109 1150 5110 1435 5111 1148 5112 1434 5113 980 4058 1435 4056 1434 4057 978 5114 1435 5115 980 5116 1436 5117 525 5118 523 5119 1019 5120 525 5121 1436 5120 1437 2988 1019 2987 1436 2987 1018 2988 1019 2987 1437 2988 946 5122 1439 5123 1438 5124 1440 5122 1439 5123 946 5122 944 4492 1440 4490 946 4490 942 5125 1440 5126 944 5127 4 5128 818 5129 6 5130 817 5131 818 5132 4 5133 2 5134 817 5135 4 5136 841 5137 817 5138 2 5139 1234 5140 938 5141 1236 5142 940 5143 938 5144 1234 5145 1233 5146 940 5147 1234 5148 942 5149 940 5150 1233 5151 1273 60 1421 62 1274 62 1422 5152 1421 5153 1273 5154 856 5155 1422 5156 1273 5157 857 5158 1422 5159 856 5160 1026 3006 1395 3004 1028 3004 1281 5161 1395 5162 1026 5163 1024 5164 1281 5165 1026 5166 357 5167 1281 5168 1024 5169 1326 2895 652 2894 650 2895 1441 5170 652 5171 1326 5172 600 1691 1441 1691 1326 1692 602 947 1441 947 600 947 1025 5173 1442 5174 1351 5175 1443 5176 1442 5177 1025 5178 1027 5179 1443 5180 1025 5181 1029 5182 1443 5183 1027 5184 1444 5182 1443 5183 1029 5182 1445 5185 1443 5186 1444 5187 1286 5187 1445 5185 1444 5187 1284 5188 1445 5189 1286 5190 1229 5191 1041 5192 1043 5193 1446 5194 1041 5195 1229 5196 1231 5197 1446 5198 1229 5199 1447 5200 1446 5201 1231 5202 1071 5203 185 5204 183 5205 585 5206 185 5207 1071 5208 1072 5209 585 5210 1071 5211 587 1650 585 1651 1072 1652 1366 5212 915 5213 913 5214 916 5215 915 5216 1366 5217 1368 4964 916 4963 1366 4962 917 79 916 77 1368 79 239 5218 1205 5219 1105 5220 1448 5221 1205 5222 239 5223 241 5224 1448 5225 239 5226 243 5227 1448 5228 241 5229 1202 5230 1357 5231 1201 5232 1359 5233 1357 5234 1202 5235 1203 5236 1359 5237 1202 5238 1204 5239 1359 5240 1203 5241 935 5242 768 5243 933 5244 770 5245 768 5246 935 5247 937 5248 770 5249 935 5250 772 2208 770 2210 937 2208 1446 5251 1361 5252 1041 5253 1360 5254 1361 5255 1446 5256 1447 5257 1360 5258 1446 5259 1358 5260 1360 5261 1447 5262 498 1377 524 1378 496 1378 522 5263 524 5264 498 5265 500 5266 522 5267 498 5268 520 5269 522 5270 500 5271 1050 5272 37 5273 39 5274 1405 5275 37 5276 1050 5277 1051 5278 1405 5279 1050 5280 1052 5281 1405 5282 1051 5283 1398 4935 207 4934 762 4936 209 5284 207 5285 1398 5286 1241 5287 209 5288 1398 5289 211 5290 209 5291 1241 5292 1238 4884 964 4885 966 4884 1449 5293 964 5294 1238 5295 767 5296 1449 5297 1238 5298 769 5299 1449 5300 767 5301 1435 5302 1362 5303 1148 5304 1363 5303 1362 5303 1435 5302 978 5305 1363 5306 1435 5307 976 5308 1363 5309 978 5310 1179 5311 619 5312 621 5313 1450 5314 619 5315 1179 5316 909 5317 1450 5318 1179 5319 910 5320 1450 5321 909 5322 1355 5323 1354 5324 983 5325 1451 5326 1354 5327 1355 5328 1356 5329 1451 5330 1355 5331 1452 5332 1451 5333 1356 5334 1253 5335 1182 5336 1181 5337 1453 5338 1182 5339 1253 5340 1254 5341 1453 5342 1253 5343 1454 2251 1453 2249 1254 2251 1453 5344 1183 5345 1182 5346 1455 5347 1183 5348 1453 5349 1454 5350 1455 5351 1453 5352 1456 56 1455 54 1454 56 497 5353 1255 5354 499 5355 1256 5356 1255 5357 497 5358 495 5359 1256 5360 497 5361 493 5362 1256 5363 495 5364 1331 1665 590 1665 592 1666 1414 1895 590 1894 1331 1894 1332 5365 1414 5366 1331 5367 193 5368 1414 5369 1332 5370 1047 5371 842 5372 841 5373 1457 5374 842 5375 1047 5376 1049 5377 1457 5378 1047 5379 1389 5380 1457 5381 1049 5382 854 5383 845 5384 847 5385 821 5386 845 5387 854 5388 855 5389 821 5390 854 5391 823 5392 821 5393 855 5394 1455 5395 1184 5396 1183 5397 1185 5398 1184 5399 1455 5400 1456 5401 1185 5402 1455 5403 671 5404 1185 5405 1456 5406 55 5407 414 5408 416 5409 1458 5410 414 5411 55 5412 57 5413 1458 5414 55 5415 59 5416 1458 5417 57 5418 1458 5419 412 5420 414 5421 1266 5422 412 5423 1458 5424 59 5425 1266 5426 1458 5427 61 118 1266 120 59 119 640 954 328 952 639 954 330 952 328 952 640 954 641 954 330 952 640 954 332 955 330 956 641 957 1268 5428 1411 5429 1267 5430 1459 5431 1411 5432 1268 5433 1269 56 1459 56 1268 54 1270 53 1459 53 1269 53 1460 2231 891 2232 893 2231 1119 5434 891 5435 1460 5436 1120 2251 1119 2249 1460 2251 1310 5437 1342 5438 1308 5439 1461 5440 1342 5441 1310 5442 1312 5443 1461 5444 1310 5445 1462 1032 1442 1033 365 1033 1351 5446 1442 5447 1462 5448 1350 5449 1351 5450 1462 5451 1463 4744 1390 4745 1392 4744 1257 4746 1390 4745 1463 4744 1259 5452 1257 5453 1463 5454 215 5455 1239 5456 217 5457 1240 5458 1239 5459 215 5460 213 5461 1240 5462 215 5463 1407 5464 1223 5465 1221 5466 1464 5467 1223 5468 1407 5469 1409 5470 1464 5471 1407 5472 1303 5473 1431 5474 1302 5475 1465 5476 1431 5477 1303 5478 1304 2548 1465 2548 1303 2549 1347 5479 1345 5480 1349 5481 1343 5482 1345 5483 1347 5484 1341 5485 1343 5486 1347 5487 1448 5488 1416 5489 1205 5490 617 5491 1416 5492 1448 5493 245 5494 617 5495 1448 5496 846 5497 828 5498 830 5499 356 5498 828 5498 846 5497 1154 5500 356 5501 846 5502 604 948 1441 947 602 947 652 941 1441 940 604 942 654 938 652 937 604 939 1445 5503 1442 5504 1443 5505 365 5504 1442 5504 1445 5503 1284 5506 365 5507 1445 5508 1329 5509 554 5510 552 5511 344 5512 554 5513 1329 5514 346 5515 344 5516 1329 5517 933 5518 719 5519 717 5520 766 5521 719 5522 933 5523 768 5524 766 5525 933 5526 1457 5527 843 5528 842 5529 1388 5530 843 5531 1457 5532 1389 5533 1388 5534 1457 5535 1426 5536 1383 5537 1384 5538 1466 5539 1383 5540 1426 5541 927 2241 1466 2241 1426 2242 1173 5542 1424 5543 1172 5544 1467 5545 1424 5546 1173 5547 1174 5548 1467 5549 1173 5550 1295 5551 1372 5552 1294 5553 1468 2231 1372 2232 1295 5554 1297 53 1468 53 1295 51 1054 5555 226 5556 1055 5557 228 5558 226 5559 1054 5560 230 1830 228 1830 1054 1831 1235 5561 572 5562 570 5563 1396 5564 572 5565 1235 5566 1237 5567 1396 5568 1235 5569 1412 5570 934 5571 932 5572 1469 5573 934 5574 1412 5575 1413 2758 1469 2758 1412 2759 1319 5576 1470 5577 1321 5578 1399 5579 1470 5580 1319 5581 1317 5582 1399 5583 1319 5584 1471 5585 1007 5586 1260 5587 1009 2967 1007 2966 1471 2965 1011 4344 1009 4342 1471 4344 1472 5588 1277 5589 1279 5590 1276 5591 1277 5592 1472 5593 1275 5594 1276 5595 1472 5596 1473 5597 1266 5598 61 5599 1265 5600 1266 5601 1473 5602 824 5603 1265 5604 1473 5605 1313 5606 1306 5607 1305 5608 1474 5609 1306 5610 1313 5611 1314 4236 1474 4236 1313 4237 1378 5612 1178 5613 1180 5614 1296 5615 1178 5616 1378 5617 1298 4610 1296 5618 1378 4611 1475 551 491 553 489 553 949 5619 491 5620 1475 5621 947 5622 949 5623 1475 5622 1352 5624 1408 5625 575 5626 1410 5627 1408 5628 1352 5629 1476 5630 1410 5631 1352 5632 531 623 952 623 529 623 953 623 952 623 531 623 955 623 953 623 531 623 1069 5633 663 5634 664 5635 687 5636 663 5637 1069 5638 689 5639 687 5640 1069 5641 302 5642 454 5643 301 5644 453 5645 454 5646 302 5647 592 5648 453 5649 302 5650 1477 5651 226 5652 224 332 1055 5653 226 5654 1477 5655 1057 5655 1055 5653 1477 5655 14 5656 41 5657 43 5658 12 5659 41 5660 14 5661 8 5662 634 5663 10 5664 6 5665 634 5666 8 5667 162 5668 635 1804 161 1803 163 1802 635 1801 162 5669 163 1800 633 1799 635 1798 164 2920 633 1797 163 1796 168 5670 1000 5671 167 5672 169 5673 1000 5674 168 5675 169 5676 518 5677 1000 5678 170 1599 518 1601 169 1600 1377 5679 65 5680 67 5681 1108 1562 65 5682 1377 1561 16 5683 43 5684 18 5685 14 5686 43 5687 16 5688 1371 5689 1335 5690 1271 5691 1373 5692 1335 5693 1371 5694 1373 5695 1334 5696 1335 5697 1375 2024 1334 5698 1373 2025 1427 5699 1414 5700 1415 5701 590 5367 1414 5366 1427 5365 1169 946 197 948 195 946 1168 946 197 948 1169 946 1168 5702 199 5703 197 5704 201 5705 199 5706 1168 5707 581 5708 986 4292 579 4293 1376 4587 986 4586 581 4587 1450 5709 617 5710 619 5711 910 5712 617 5713 1450 5714 1258 5715 1007 5716 1005 5717 1260 5718 1007 5719 1258 5720 509 1069 382 1068 380 1070 507 5721 382 5722 509 5723 1243 5724 271 5725 1242 5726 270 5727 271 5728 1243 5729 1015 2985 559 2984 557 2983 895 5730 559 5731 1015 5732 808 5733 811 5734 853 5735 809 5736 811 5737 808 5738 237 5739 1105 5740 235 5741 239 5742 1105 5743 237 5744 1478 5745 896 5746 895 5747 271 5748 896 5749 1478 5750 558 1519 348 1520 556 1520 350 5751 348 5752 558 5753 351 5754 1186 5755 349 5756 353 5757 1186 5758 351 5759 271 5760 1042 5761 896 5762 273 5763 1042 5764 271 5765 910 5766 1416 5767 617 5768 912 5769 1416 5770 910 5771 1042 5772 275 5773 277 5774 273 5775 275 5776 1042 5777 1188 5778 1479 5779 1187 5780 1189 5781 1479 5782 1188 5783 1189 5784 1480 5785 1479 5786 1190 5787 1480 5788 1189 5789 1429 5790 921 5791 923 5792 1040 5793 921 5794 1429 5795 385 5796 1194 5797 383 5798 387 5799 1194 5800 385 5801 1014 2944 519 2945 1013 2945 521 5802 519 5803 1014 5804 384 5805 1141 5806 386 5807 848 5808 1141 5809 384 5810 848 5811 1139 5812 1141 5813 850 5814 1139 5815 848 5816 665 5817 969 5818 667 5819 221 5820 969 5821 665 5822 920 5823 1140 5824 922 5825 396 5826 1140 5827 920 5828 527 1449 494 1451 496 1450 529 5103 494 5102 527 5104 574 1624 1073 1624 576 1623 572 1616 1073 1614 574 1614 1196 1089 387 1090 389 1089 1194 5829 387 5830 1196 5831 571 5832 289 5833 569 5834 573 5835 289 5836 571 5837 1220 3812 285 3813 287 3813 1222 5838 285 5839 1220 5840 1364 954 1143 954 1144 952 1263 623 1143 623 1364 623 233 624 1107 624 231 625 235 624 1107 624 233 624 948 2786 1438 2784 950 2784 946 2785 1438 2784 948 2786 1369 5841 1440 5842 942 5843 1370 5844 1440 5845 1369 5846 754 5847 322 5848 320 5849 756 5850 322 5851 754 5852 1391 5853 949 5854 951 5855 491 5856 949 5857 1391 5858 322 5859 1218 5860 324 5861 756 5862 1218 5863 322 5864 972 5865 599 5866 971 5867 973 5868 599 5869 972 5870 15 5871 1401 5872 1219 5873 17 5874 1401 5875 15 5876 1078 5877 1387 5878 1076 5879 1386 5880 1387 5881 1078 5882 363 5883 1284 5884 361 5885 365 5886 1284 5887 363 5888 1212 5889 1299 5890 1210 5891 1213 5892 1299 5893 1212 5894 1451 5895 1353 5896 1354 5897 1452 5898 1353 5899 1451 5900 1476 5901 1353 5902 1452 5903 1352 5904 1353 5905 1476 5906 1213 5907 1301 5908 1299 5909 1214 5910 1301 5911 1213 5912 367 1032 1462 1032 365 1033 369 1035 1462 1036 367 1036 250 5913 1481 5914 252 5915 248 5916 1481 5917 250 5918 604 5919 1309 5920 654 5921 606 5922 1309 5923 604 5924 606 5925 1311 5926 1309 5927 608 5928 1311 5929 606 5930 248 5931 1482 5932 1481 5933 246 5934 1482 5935 248 5936 246 5937 1483 5938 1482 5939 244 5940 1483 5941 246 5942 474 623 1136 623 472 623 476 1330 1136 1331 474 1331 476 1330 1134 1330 1136 1331 478 289 1134 287 476 287 478 289 1132 289 1134 287 480 1339 1132 1340 478 1340 244 5943 1484 5944 1483 5945 242 5946 1484 5947 244 5948 242 5949 1485 5950 1484 5951 240 5952 1485 5953 242 5954 240 5955 327 5956 1485 5956 238 5957 327 5956 240 5955 331 5958 618 5959 329 5960 333 5961 618 5962 331 5963 335 5963 659 5962 333 5961 337 5961 659 5962 335 5963 889 5964 1119 5965 887 5966 891 5967 1119 5968 889 5969 1113 5970 687 5971 686 5972 663 5973 687 5974 1113 5975 1066 5976 876 5977 878 5978 1067 5979 876 5980 1066 5981 1067 5982 874 5983 876 5984 1068 5985 874 5986 1067 5987 835 623 468 623 470 623 466 623 468 623 835 623 354 5988 420 5989 422 5990 563 5991 420 5992 354 5993 1068 5994 872 5995 874 5996 1070 5997 872 5998 1068 5999 1070 6000 870 6001 872 6002 666 6003 870 6004 1070 6005 1091 1151 411 1150 409 1151 1486 1151 411 1150 1091 1151 1486 6006 413 6007 411 6008 996 56 413 54 1486 56 594 6009 760 6010 761 6011 596 1868 760 1870 594 1868 596 1876 759 1874 760 1875 598 2895 759 2894 596 2895 63 6012 1473 6013 61 6014 1109 6015 1473 6016 63 6017 820 6018 1473 6019 1109 6020 822 6021 1473 6022 820 6023 1487 6024 1056 6025 1058 6026 1079 6027 1056 6028 1487 6029 190 6030 254 6031 188 6032 192 6033 254 6034 190 6035 264 1745 1248 1746 616 1746 265 6036 1248 6037 264 6038 645 6039 990 6040 643 6041 647 6041 990 6040 645 6039 1016 2983 1436 2983 523 2984 1017 1518 1436 1516 1016 1516 649 6042 1385 6043 1211 6044 651 1870 1385 1870 649 1868 1171 6045 1045 6046 1044 6047 1172 6048 1045 6049 1171 6050 954 623 1031 623 1030 623 956 623 1031 623 954 623 355 1757 1024 1758 1022 1759 357 6051 1024 6052 355 6053 1032 6054 488 6055 490 6056 1034 6057 488 6058 1032 6059 1034 6060 486 6061 488 6062 1036 6063 486 6064 1034 6065 1036 6066 484 6067 486 6068 482 6069 484 6070 1036 6071 1132 6072 480 6073 1130 6074 306 6075 308 6076 1167 6077 1324 6078 345 6079 347 6080 598 1692 600 1691 1326 1692 1424 3455 1467 3454 1423 3454 1306 4211 1474 4209 1307 4209 666 6081 668 6082 870 6083 1178 6084 1296 6085 1177 6086 1388 6087 844 6088 843 6089 221 6090 219 6091 969 6092 1399 6093 1400 6094 1470 6095 769 6096 964 6097 1449 6098 1383 52 1466 53 1382 53 487 1857 1261 1857 1432 1856 1363 947 976 948 1262 948 1431 1214 1465 1213 1430 1213 422 6099 424 6100 426 6101 563 6102 418 6103 420 6104 679 6105 681 6106 1428 6107 1406 6108 33 6109 35 6110 470 625 840 625 838 624 673 2553 675 2551 1118 2551 1075 6111 1397 6112 1077 6113 1440 5122 1370 5123 1439 5123 304 6114 306 6115 1170 6116 721 6117 719 6118 766 6119 824 6120 1473 6121 822 6122 170 1599 516 1601 518 1601 1223 6123 1464 6124 1225 6125 1475 551 489 553 947 551 1411 1239 1459 1241 1270 1241 1190 6126 1191 6127 1480 6127 1342 6128 1461 6129 1344 6130 1436 6131 1017 6132 1437 6133 1448 6134 243 6135 245 6136 1462 6137 369 6138 1350 6139 1301 6140 1214 6141 658 6142 1372 2232 1468 2231 1374 2231 1334 1998 1375 1996 1333 1996 934 6143 1469 6144 936 6145 1037 6146 1035 6147 1330 6148

+
+
+
+ + + + -1247 -2374 237 -1383 -2374 -248 -1566 -1481 -195 -1494 -1479 -470 -1627 -786 -260 -1577 -787 -549 -1636 -574 -263 -1545 -573 -580 -1636 -347 -263 -1541 -346 -579 -1627 -47 -260 -1567 -48 -546 -1580 -2373 491 -1516 -1480 249 -1428 -1481 236 -1592 -784 179 -1506 -943 91 -1590 -572 180 -1538 -507 149 -1652 -233 200 -1505 -347 160 -1585 -47 212 -1505 -47 161 -2024 -2376 1539 -2025 -2370 1221 -2197 -1481 1376 -2132 -1476 1235 -2300 -1027 1298 -2157 -1024 1219 -2292 -543 1299 -2058 -556 1153 -2287 -303 1286 -2046 -194 1167 -2133 0 1341 -2049 -11 1168 -6011 889 4295 -6171 913 4302 -6004 487 4401 -6196 514 4417 -5901 167 4474 -6061 -56 4522 -5843 -125 4558 -5925 -473 4605 -5601 -1105 4732 -5759 -1100 4742 -5208 -2374 4987 -5449 -2376 5055 -2371 -16 718 -2133 -11 981 -2366 -220 800 -2208 -203 994 -2391 -556 741 -2226 -554 959 -2424 -888 752 -2294 -958 999 -2301 -1476 854 -2217 -1476 1056 -2025 -2370 1221 -2132 -1476 1235 -593 -47 -890 -667 -46 -829 -571 -260 -895 -668 -348 -842 -573 -576 -857 -701 -576 -824 -568 -994 -844 -705 -1044 -799 -526 -1479 -800 -619 -1401 -701 -332 -2374 -682 -564 -2371 -638 -2316 -2375 1482 -2343 -1479 1469 -2197 -1481 1376 -2340 -1052 1470 -2300 -1027 1298 -2434 -534 1376 -2292 -543 1299 -2423 -216 1374 -2287 -303 1286 -2288 18 1378 -5487 -2367 5605 -5625 -2375 5312 -5890 -1089 5353 -6036 -1086 5061 -6125 -89 5185 -6238 -184 4901 -6161 219 5109 -6335 224 4813 -6200 553 5026 -6365 539 4780 -6252 990 4917 -6386 985 4668 -3212 270 4034 -3580 340 4246 -3212 -125 4035 -3579 -57 4238 -3212 -424 4035 -3563 -589 4274 -3212 -703 4035 -3531 -980 4215 -3131 -1473 4062 -3453 -1650 4230 -3314 -2374 4402 -4800 312 1597 -4673 304 1930 -4743 -97 1622 -4635 -257 1939 -4702 -553 1632 -4604 -700 1946 -4574 -1476 1741 -4456 -1476 2006 -4248 -2370 2035 -3639 -2368 2875 -3941 -2371 4265 -3940 -1440 4118 -3846 -1001 4058 -3876 -575 4096 -3934 -95 4127 -2046 -194 1167 -2058 -556 1153 -784 -229 -857 -942 -576 -850 -869 -787 -795 -705 -1044 -799 -862 -1478 -702 -710 -2372 -530 -4000 -425 2680 -3317 -433 3626 -3996 -707 2681 -3317 -711 3626 -3887 -1475 2726 -3249 -1476 3670 -3088 -2370 3858 -2950 -2376 4200 -385 -47 -1317 -465 -47 -1222 -385 -263 -1317 -465 -347 -1221 -386 -575 -1316 -470 -575 -1174 -469 -902 -1175 -517 -347 -979 -519 -787 -989 -4011 275 2677 -4005 -122 2679 -3317 -135 3626 -3212 -125 4035 -3212 -424 4035 4381 -2364 4762 3654 -2365 6289 4381 -1243 4762 3654 -1243 6289 4381 -622 4762 3654 -622 6289 4381 -47 4762 3654 -47 6289 -4726 -937 1529 -4810 -405 1499 -4836 -57 1498 -4841 314 1499 3861 -2369 720 4395 -2366 1906 3898 -1475 566 4386 -1473 1800 3881 -623 504 4375 -623 1747 3881 -47 504 4375 -47 1748 3192 -47 190 2599 -47 -245 3192 -514 190 2599 -514 -245 3218 -1474 258 2635 -1475 -173 3273 -2369 417 2707 -2369 -11 3881 -623 504 3898 -1475 566 3861 -2369 720 4395 -2366 1906 4631 -2365 3314 4386 -1473 1800 4620 -1361 3235 4375 -623 1747 4614 -622 3208 4614 -47 3208 4631 -2365 3314 4620 -1361 3235 4381 -622 4762 -2288 -1479 587 -2187 -1481 392 -2304 -787 375 -2214 -974 324 -2299 -576 383 -2215 -573 297 -2360 -343 385 -1827 -45 268 -2068 -45 330 -1858 -343 221 -2037 -269 320 -1809 -672 196 -1961 -572 280 -1839 -1037 182 -5044 -2364 6235 -5242 -1133 6126 -5338 53 6114 -4060 238 1205 -4210 249 1220 -4007 -226 1187 -4169 5 1240 -3924 -675 1197 -4143 -433 1275 -4180 -958 1215 -1947 -2375 551 -1580 -2373 491 -2077 -1480 375 -1891 -1451 384 -2214 -974 324 -2070 -787 303 -2215 -573 297 57 -46 -1150 -38 -46 -1193 145 -264 -1129 -38 -346 -1193 230 -690 -1120 -67 -574 -1226 232 -1012 -1100 -573 -576 -857 -519 -787 -989 -568 -994 -844 -439 -1479 -930 -526 -1479 -800 -332 -2374 -682 -4716 306 1333 -4711 -99 1366 -4570 -233 1352 -4679 -409 1374 -4526 -702 1360 -4648 -699 1381 -4415 -1478 1437 256 -1476 -978 466 -1477 -865 232 -1012 -1100 425 -977 -950 230 -690 -1120 403 -573 -959 367 -346 -1013 -4219 -2375 1653 -4516 -1479 1444 -4621 -1133 1482 -4811 -250 1381 1336 -913 -1102 1426 -494 -1184 1277 -458 -1151 1398 -240 -1137 1285 -47 -1126 1395 -46 -1152 -4548 286 1280 -4482 -11 1289 -4389 -425 1272 -4408 -707 1297 -4726 -937 1529 -4621 -1133 1482 -4586 -1479 1578 -4321 -2374 1749 -4269 -1393 1389 -3895 -2371 1395 1336 -913 -1102 1537 -1057 -1130 1411 -1479 -1064 1652 -1478 -969 1659 -2373 -858 -1116 -2374 -475 -1150 -1479 -678 -1420 -1480 -580 -1207 -904 -726 -1442 -903 -725 -1404 -574 -736 -1580 -2373 491 -1707 -1481 287 -1891 -1451 384 -1961 -787 279 -2288 -1479 587 -2304 -787 375 -2301 -1062 618 -2405 -575 454 -2419 -563 609 -2396 -330 598 -5395 -1167 4638 -5511 -465 4553 -5843 -125 4558 -5901 167 4474 -6318 533 4528 -6313 218 4744 -6259 207 4614 -6124 -483 4793 -5945 -1093 4865 -3128 -494 1323 -3177 -990 1258 -2767 -826 1261 -2730 -1601 1399 -2567 -1478 1406 -147 -46 -1264 -239 -47 -1321 -142 -203 -1284 -248 -440 -1353 -67 -574 -1226 -98 -970 -1254 -478 -47 -1117 -478 -346 -1117 760 -573 -922 923 -681 -959 720 -267 -895 922 -346 -959 754 -49 -921 925 -47 -950 -1566 -1481 -195 -1541 -527 37 -5925 -473 4605 -6077 -369 4658 -6222 204 4587 -1220 -575 -757 -1282 -347 -787 -1461 -221 -678 -1475 -48 -683 -1636 -574 -263 -1516 -281 20 -4259 -2377 4451 -4460 -1293 4283 -4582 -1239 4409 -4583 -681 4328 -4843 -485 4461 -4891 18 4325 -1116 -2374 -475 -710 -2372 -530 -1150 -1479 -678 -996 -1035 -821 -2275 -42 396 -2358 -38 513 -2360 -343 385 -2370 -29 599 -1680 -46 232 -1858 -343 221 -1809 -672 196 1158 -47 -1094 1277 -458 -1151 1103 -346 -1024 1104 -575 -1060 230 -690 -1120 249 -345 -1043 145 -264 -1129 179 -46 -1095 -6362 957 4439 -6380 564 4627 -4225 477 4143 -4475 542 4098 -4149 -84 4209 -4349 71 4073 -4057 -492 4162 -4600 -2373 4844 -4920 -1341 4663 -5301 -497 4611 -3910 -608 7527 -3910 471 7527 -1798 175 8575 -2471 42 1421 -2815 -156 1321 -2288 -1479 587 -2097 -2374 682 618 -983 -961 874 -1479 -836 604 -2370 -681 1007 -2373 -653 -737 -45 -818 -871 -45 -795 -976 -336 -856 2337 -48 -771 2337 -346 -771 2337 -573 -771 2338 -861 -736 2375 -1474 -695 2451 -2368 -532 2028 -2368 -751 2451 -2368 -532 1945 -1476 -974 2375 -1474 -695 2338 -861 -736 -1507 -47 71 632 -47 -898 441 -45 -949 442 -194 -955 -529 -47 -936 -4288 -249 4081 -4454 -924 4207 -4020 -933 4118 -4139 -1382 4190 -701 -576 -824 -668 -348 -842 -784 -229 -857 1869 -346 -1023 1727 -659 -1075 1904 -572 -973 1922 -1061 -989 -67 -574 -1226 -38 -346 -1193 -142 -203 -1284 -5597 433 4358 -5556 -105 4491 -5448 110 4470 -2210 -344 351 -4636 -140 4183 -4608 172 4113 -4727 323 4230 -4767 607 4096 -4824 310 1423 -4389 -425 1272 -4368 -131 1236 -2815 -156 1321 -2792 -509 1294 -2626 -448 1360 -2340 -1052 1470 -4636 -140 4183 -4449 -161 4192 -4454 -924 4207 -4636 -140 4183 -4864 279 4205 -4920 662 4113 -3401 -2376 1389 -3561 -1735 1220 -3871 -1493 1253 -3884 -1121 1209 -4346 -1329 4228 -4824 310 1423 -4785 308 1371 -4051 -1608 1313 -2626 -448 1360 -2340 -1052 1470 -2187 -1481 392 -2077 -1480 375 -1947 -2375 551 -2071 -572 310 -1961 -572 280 -1961 -787 279 -99 -2372 -1004 -169 -1477 -1212 -320 -1481 -1210 -355 -945 -1319 874 -1479 -836 762 -787 -922 618 -983 -961 572 -524 -986 -1545 -573 -580 -1577 -787 -549 -1442 -903 -725 -1420 -1480 -580 -1383 -2374 -248 -1494 -1479 -470 -6365 539 4780 1045 -47 -1025 874 -1479 -836 1104 -1090 -1057 1166 -1480 -963 1652 -1478 -969 1712 -960 -1048 1537 -1057 -1130 1563 -575 -1082 1538 -347 -1070 1665 -249 -1110 1539 -46 -1131 466 -1477 -865 618 -983 -961 -28 -1475 -1125 -20 -866 -1193 -98 -970 -1254 -3177 -990 1258 -3128 -494 1323 -3275 -491 1197 -3416 -155 1191 -1652 -233 200 -1809 -672 196 -1590 -572 180 -1592 -784 179 -2767 -826 1261 -1580 -2373 491 -1516 -1480 249 -1707 -1481 287 -1839 -1037 182 -1220 -575 -757 -1110 -241 -796 -1282 -347 -787 -1274 -48 -753 -869 -787 -795 -862 -1478 -702 -28 -1475 -1125 -20 -866 -1193 -3416 -155 1191 -3643 -463 1232 -3275 -491 1197 -3177 -990 1258 -3177 -990 1258 -3256 -1596 1287 -2769 -2375 1505 -4112 -2372 1565 -2210 -344 351 -4389 -425 1272 -4412 266 1240 -3793 -165 1229 -3795 210 1231 -3643 -463 1232 -3884 -1121 1209 -3177 -990 1258 -4349 71 4073 -4449 -161 4192 -4288 -249 4081 -6004 487 4401 -5771 580 4387 -5556 -105 4491 -248 -440 -1353 -385 -263 -1317 -4891 18 4325 -4864 279 4205 -5079 457 4230 -5157 713 4152 -4843 -485 4461 -4761 -1168 4590 -4020 -933 4118 -4288 -249 4081 -5215 20 4403 -5079 457 4230 -5597 433 4358 -5573 814 4297 -5159 -373 4459 -4843 -485 4461 -3884 -1121 1209 -3643 -463 1232 -3924 -675 1197 -4007 -226 1187 -4389 -425 1272 -4180 -958 1215 -4149 -84 4209 -1947 -2375 551 -2097 -2374 682 -2299 -576 383 -3168 -194 1363 -2792 -509 1294 1297 -2374 -779 290 -47 -1019 -224 -865 -1322 -28 -1475 -1125 -169 -1477 -1212 257 -2368 -856 -1461 -221 -678 -1541 -346 -579 -1519 -48 -620 -2396 -330 598 1563 -575 -1082 1398 -240 -1137 1922 -1061 -989 1904 -572 -973 2337 -573 -771 1869 -346 -1023 -1894 -2365 8457 -3911 -2363 7526 -1798 -887 8541 -3910 -608 7527 -5337 804 6106 -5511 -465 4553 -4891 18 4325 2028 -2368 -751 1945 -1476 -974 1659 -2373 -858 1336 -913 -1102 1166 -1480 -963 1297 -2374 -779 1104 -1090 -1057 -386 -575 -1316 -224 -865 -1322 -5747 853 4290 -5597 433 4358 -1207 -904 -726 -976 -336 -856 -1163 -47 -762 -3139 132 1408 -3168 -194 1363 -3317 257 3626 -1442 -903 -725 -355 -945 -1319 -320 -1481 -1210 -4043 437 4166 -3793 -165 1229 760 -573 -922 2337 -346 -771 1904 -48 -973 442 -194 -955 367 -346 -1013 361 -46 -970 232 -1012 -1100 -99 -2372 -1004 442 -194 -955 572 -524 -986 1665 -47 -1110 1792 -47 -1038 1869 -346 -1023 1922 -1061 -989 -5597 433 4358 -5215 20 4403 -4496 252 4134 -4449 -161 4192 -4496 252 4134 -4608 172 4113 -4632 572 4067 -506 -47 -1020 1727 -659 -1075 -995 -46 -774 -99 -2372 -1004 -1383 -2374 -248 -1116 -2374 -475 -1420 -1480 -580 -2815 -156 1321 1869 -346 -1023 1727 -659 -1075 + + + + + + + + + + 4.46484375 0.005859375 3.962890625 0.005859375 4.349609375 1.349609375 3.984375 1.3515625 4.40234375 2.388671875 4.06640625 2.38671875 4.416015625 2.705078125 3.98828125 2.705078125 4.416015625 3.048828125 3.982421875 3.048828125 4.40234375 3.54296875 4.052734375 3.54296875 5.595703125 0.005859375 5.126953125 1.3515625 4.888671875 1.3515625 5.18359375 2.388671875 4.853515625 2.15625 5.18359375 2.705078125 4.947265625 2.806640625 5.322265625 3.26953125 4.94921875 3.048828125 5.18359375 3.54296875 4.94921875 3.54296875 7.572265625 0.005859375 6.99609375 0.005859375 7.5859375 1.3515625 7.076171875 1.3515625 7.609375 2.388671875 7.10546875 2.388671875 7.609375 2.705078125 7.10546875 2.705078125 7.609375 3.048828125 7.10546875 3.048828125 7.609375 3.54296875 7.10546875 3.54296875 16.533203125 3.54296875 16.7265625 3.54296875 16.578125 3.048828125 16.791015625 3.052734375 16.474609375 2.705078125 16.65234375 2.44140625 16.513671875 2.388671875 16.640625 2.005859375 16.529296875 1.3515625 16.646484375 1.3515625 16.46484375 0.005859375 16.916015625 0.005859375 7.02734375 3.54296875 7.068359375 3.54296875 7.02734375 3.048828125 7.068359375 3.048828125 7.02734375 2.705078125 7.068359375 2.705078125 7.02734375 2.388671875 7.068359375 2.388671875 7.001953125 1.3515625 7.0390625 1.3515625 2.08203125 3.54296875 2.27734375 3.54296875 2.037109375 3.1796875 2.28125 3.048828125 2.056640625 2.705078125 2.353515625 2.705078125 2.048828125 2.083984375 2.35546875 1.958984375 1.984375 1.3515625 2.244140625 1.46875 1.634765625 0.005859375 2.16015625 0.005859375 8.24609375 0.005859375 7.98828125 1.3515625 7.98828125 1.990234375 8.005859375 2.705078125 7.921875 3.150390625 8.005859375 3.54296875 17.81640625 0.005859375 17.478515625 0.005859375 17.58203125 1.3515625 17.2578125 1.3515625 17.53515625 2.388671875 17.197265625 2.28515625 17.53515625 2.705078125 17.212890625 2.705078125 17.53515625 3.048828125 17.26953125 3.03125 17.53515625 3.54296875 17.212890625 3.54296875 13.369140625 3.54296875 13.7890625 3.54296875 13.369140625 3.048828125 13.7890625 3.048828125 13.369140625 2.705078125 13.806640625 2.4296875 13.369140625 2.388671875 13.75 2.001953125 13.328125 1.3515625 13.6953125 1.046875 13.7109375 0.005859375 11.005859375 3.54296875 11.474609375 3.54296875 11.005859375 3.048828125 11.474609375 2.876953125 11.005859375 2.546875 11.474609375 2.388671875 11.03125 1.3515625 11.505859375 1.3515625 11.400390625 0.005859375 12.193359375 0.005859375 14.197265625 0.005859375 14.173828125 1.34765625 14.013671875 2.01953125 14.015625 2.462890625 13.974609375 2.9921875 2.423828125 3.201171875 2.8125 2.705078125 2.689453125 2.388671875 2.7265625 1.3515625 2.51953125 0.005859375 12.1328125 2.705078125 12.853515625 2.705078125 12.1328125 2.388671875 12.853515625 2.388671875 12.177734375 1.3515625 12.826171875 1.3515625 12.890625 0.005859375 13.3515625 0.005859375 1.564453125 3.54296875 1.693359375 3.54296875 1.564453125 3.048828125 1.693359375 3.048828125 1.564453125 2.705078125 1.71875 2.705078125 1.71875 2.388671875 1.873046875 2.876953125 1.873046875 2.388671875 12.1328125 3.54296875 12.1328125 3.048828125 12.853515625 3.048828125 42.677734375 0.005859375 37.845703125 0.005859375 42.677734375 1.697265625 37.845703125 1.697265625 42.677734375 2.6328125 37.845703125 2.6328125 42.677734375 3.54296875 37.845703125 3.54296875 10.849609375 2.15234375 10.849609375 2.705078125 10.849609375 3.048828125 10.849609375 3.54296875 49.509765625 0.005859375 47.017578125 0.005859375 49.83203125 1.3515625 47.263671875 1.3515625 49.970703125 2.6328125 47.35546875 2.6328125 49.970703125 3.54296875 47.35546875 3.54296875 52.056640625 3.54296875 53.76953125 3.54296875 52.056640625 2.798828125 53.76953125 2.798828125 51.896484375 1.3515625 53.607421875 1.3515625 51.53515625 0.005859375 53.24609375 0.005859375 44.912109375 0.005859375 45.0390625 1.51953125 45.0859375 2.6328125 45.0859375 3.54296875 6.748046875 1.3515625 6.544921875 1.3515625 6.67578125 2.388671875 6.482421875 2.111328125 6.67578125 2.705078125 6.482421875 2.705078125 6.740234375 3.048828125 5.7109375 3.54296875 6.248046875 3.54296875 5.703125 3.048828125 6.046875 3.162109375 5.595703125 2.5546875 5.96484375 2.705078125 5.626953125 2.017578125 20.10546875 0.005859375 19.9296875 1.3515625 19.87109375 2.6328125 9.521484375 3.54296875 9.705078125 3.54296875 9.501953125 2.962890625 9.71875 3.216796875 9.451171875 2.427734375 9.705078125 2.705078125 9.841796875 2.109375 6.3828125 0.005859375 6.353515625 1.3515625 6.048828125 1.3515625 6.205078125 2.388671875 0.861328125 3.54296875 1.0390625 3.54296875 0.708984375 3.03125 1.0390625 3.048828125 0.583984375 2.6484375 1.1328125 2.705078125 0.6171875 2.04296875 1.744140625 1.3515625 10.390625 3.54296875 10.447265625 3.048828125 10.2734375 2.90625 10.447265625 2.705078125 10.2734375 2.388671875 10.447265625 2.388671875 10.41015625 1.3515625 0.51171875 1.3515625 0.095703125 1.3515625 0.21875 2.388671875 0.21875 2.705078125 0.29296875 3.048828125 10.70703125 0.005859375 10.52734375 1.3515625 10.66015625 1.869140625 10.634765625 2.876953125 57.146484375 2.388671875 57.04296875 2.80859375 57.23828125 2.876953125 57.046875 3.15625 57.234375 3.54296875 57.05859375 3.54296875 10.1171875 3.54296875 10.115234375 3.16796875 10.044921875 2.705078125 10.103515625 2.38671875 10.873046875 1.3515625 10.984375 0.005859375 10.134765625 1.490234375 10.08984375 0.005859375 56.806640625 1.93359375 57.009765625 1.3515625 56.556640625 1.3515625 56.4765625 0.005859375 3.3359375 0.005859375 3.275390625 1.3515625 3.802734375 1.3515625 3.3515625 2.16796875 3.876953125 2.38671875 3.8203125 2.705078125 5.537109375 1.3515625 5.96875 2.388671875 6.83984375 2.111328125 6.802734375 2.705078125 6.876953125 2.705078125 6.876953125 3.048828125 16.279296875 1.29296875 16.193359375 2.0390625 16.943359375 3.048828125 17.14453125 2.705078125 16.943359375 2.705078125 16.970703125 1.98046875 16.978515625 1.3515625 8.697265625 2.705078125 8.82421875 2.0703125 8.583984375 2.388671875 8.708984375 1.3515625 8.4140625 1.3515625 1.2265625 3.54296875 1.35546875 3.54296875 1.2109375 3.126953125 1.376953125 2.908203125 1.140625 2.111328125 1.744140625 3.54296875 1.744140625 3.048828125 58.2109375 2.705078125 57.875 2.546875 58.291015625 3.166015625 57.875 3.048828125 58.2109375 3.54296875 57.8671875 3.54296875 4.787109375 2.775390625 16.81640625 2.103515625 16.859375 2.705078125 3.3515625 2.705078125 3.44921875 3.048828125 3.80078125 3.201171875 3.8203125 3.54296875 4.7890625 3.048828125 15.060546875 0 15.01953125 1.34765625 15.228515625 1.345703125 15.09765625 2.033203125 15.470703125 2.1171875 15.384765625 2.705078125 2.935546875 1.98828125 6.64453125 3.54296875 6.802734375 3.54296875 6.876953125 3.54296875 5.458984375 3.54296875 57.451171875 3.54296875 57.544921875 3.048828125 57.544921875 2.705078125 0.494140625 3.048828125 0.65234375 3.54296875 16.943359375 3.54296875 17.10546875 3.06640625 14.37109375 3.54296875 14.677734375 3.54296875 14.25 2.90625 14.576171875 3.03125 14.224609375 2.494140625 15.95703125 0.005859375 15.990234375 1.12890625 16.0078125 2.01953125 22.609375 2.1640625 22.609375 3.54296875 26.37109375 3.54296875 8.421875 3.54296875 8.419921875 3.048828125 6.728515625 0.005859375 58.404296875 2.095703125 58.826171875 1.3515625 57.970703125 1.3515625 58.54296875 0.005859375 57.66796875 0.005859375 2.4296875 3.54296875 2.689453125 3.54296875 2.80859375 3.048828125 55.30078125 3.54296875 55.30078125 3.048828125 55.30078125 2.705078125 55.30078125 2.388671875 55.14453125 1.3515625 54.798828125 0.005859375 55.76171875 0.005859375 56.080078125 1.3515625 4.78515625 3.54296875 58.474609375 3.54296875 58.865234375 3.54296875 58.86328125 3.275390625 1.91796875 3.54296875 14.5625 2.701171875 14.88671875 1.841796875 14.279296875 2.037109375 14.455078125 1.349609375 56.2265625 3.048828125 56.462890625 2.705078125 56.11328125 2.705078125 56.1015625 1.9765625 16.162109375 3.048828125 16.208984375 2.439453125 16.064453125 2.705078125 6.482421875 3.048828125 14.994140625 2.671875 14.8828125 3.048828125 14.927734375 3.275390625 14.95703125 3.54296875 10.6640625 3.54296875 9.96484375 3.048828125 8.498046875 2.705078125 8.33984375 2.705078125 14.80859375 2.705078125 15.2265625 3.060546875 15.150390625 3.54296875 9.59375 0.005859375 9.341796875 1.07421875 9.609375 1.3515625 9.466796875 1.845703125 14.841796875 1.34765625 10.505859375 3.54296875 9.86328125 1.07421875 6.205078125 2.705078125 1.1328125 0.005859375 1.255859375 1.3515625 1.46875 1.3515625 1.41015625 2.126953125 58.2109375 2.388671875 58.478515625 2.705078125 57.640625 3.54296875 57.544921875 2.388671875 57.41015625 1.3515625 56.5078125 2.15625 56.806640625 2.705078125 56.80859375 3.048828125 56.5859375 3.205078125 56.806640625 3.54296875 58.94921875 2.388671875 58.94921875 2.705078125 1.029296875 1.3515625 1.005859375 2.265625 8.962890625 2.705078125 8.994140625 3.111328125 3.25390625 3.201171875 3.44921875 3.54296875 9.1875 2.705078125 9.0546875 1.3515625 8.9375 0.005859375 10.505859375 0.005859375 9.986328125 3.54296875 9.318359375 3.048828125 9.3359375 3.54296875 16.42578125 3.1875 15.462890625 3.255859375 15.568359375 3.54296875 15.517578125 1.3515625 15.849609375 2.625 16.0703125 3.54296875 15.845703125 2.30859375 8.697265625 3.048828125 57.10546875 0.005859375 0.44921875 3.54296875 1.35546875 2.388671875 0.521484375 0.005859375 3.923828125 3.54296875 26.37109375 0.005859375 22.609375 0.005859375 26.37109375 2.1640625 19.87109375 3.54296875 16.251953125 3.54296875 3.25390625 3.54296875 9.052734375 3.54296875 8.71484375 3.54296875 12.853515625 3.54296875 14.1015625 3.54296875 56.11328125 3.54296875 0.1328125 3.275390625 0.302734375 3.54296875 56.5859375 3.54296875 56.337890625 3.54296875 14.71875 3.263671875 14.80859375 3.54296875 1.833984375 3.54296875 2.935546875 3.54296875 0.134765625 3.54296875 59.2421875 1.3515625 59.251953125 0.005859375 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 1 1 0 0 3 3 1 1 2 2 4 4 3 3 2 2 5 5 3 3 4 4 6 6 5 5 4 4 7 7 5 5 6 6 8 8 7 7 6 6 9 9 7 7 8 8 10 10 9 9 8 8 11 11 9 9 10 10 13 13 0 0 12 12 14 14 0 0 13 13 15 15 14 14 13 13 16 16 14 14 15 15 17 17 16 16 15 15 18 18 16 16 17 17 19 19 18 18 17 17 20 20 18 18 19 19 21 21 20 20 19 19 22 22 20 20 21 21 25 25 24 24 23 23 26 26 24 24 25 25 27 27 26 26 25 25 28 28 26 26 27 27 29 29 28 28 27 27 30 30 28 28 29 29 31 31 30 30 29 29 32 32 30 30 31 31 33 33 32 32 31 31 34 34 32 32 33 33 37 37 36 36 35 35 38 38 36 36 37 37 39 39 38 38 37 37 40 40 38 38 39 39 41 41 40 40 39 39 42 42 40 40 41 41 43 43 42 42 41 41 44 44 42 42 43 43 45 45 44 44 43 43 46 46 44 44 45 45 49 49 48 48 47 47 50 50 48 48 49 49 51 51 50 50 49 49 52 52 50 50 51 51 53 53 52 52 51 51 54 54 52 52 53 53 55 55 54 54 53 53 56 56 54 54 55 55 57 24 56 56 55 55 58 26 56 56 57 24 61 59 60 58 59 57 62 60 60 58 61 59 63 61 62 60 61 59 64 62 62 60 63 61 65 63 64 62 63 61 66 64 64 62 65 63 67 65 66 64 65 63 68 66 66 64 67 65 69 67 68 66 67 65 70 68 68 66 69 67 72 70 23 23 71 69 73 25 23 23 72 70 74 71 73 25 72 70 75 27 73 25 74 71 76 72 75 27 74 71 77 29 75 27 76 72 78 73 77 29 76 72 79 31 77 29 78 73 80 74 79 31 78 73 33 33 79 31 80 74 83 77 82 76 81 75 84 78 82 76 83 77 85 79 84 78 83 77 86 80 84 78 85 79 87 81 86 80 85 79 88 82 86 80 87 81 89 83 88 82 87 81 90 84 88 82 89 83 91 85 90 84 89 83 92 86 90 84 91 85 95 89 94 88 93 87 96 90 94 88 95 89 97 91 96 90 95 89 98 92 96 90 97 91 99 93 98 92 97 91 100 94 98 92 99 93 101 95 100 94 99 93 102 96 100 94 101 95 103 97 102 96 101 95 106 100 105 99 104 98 107 101 105 99 106 100 108 102 107 101 106 100 109 103 107 101 108 102 110 104 109 103 108 102 111 105 109 103 110 104 112 106 111 105 110 104 113 107 111 105 112 106 115 109 103 97 114 108 102 96 103 97 115 109 116 110 102 96 115 109 100 94 102 96 116 110 117 111 100 94 116 110 98 92 100 94 117 111 118 112 98 92 117 111 96 90 98 92 118 112 50 50 34 34 48 48 119 32 34 34 50 50 52 52 119 32 50 50 120 30 119 32 52 52 54 54 120 30 52 52 28 28 120 30 54 54 56 56 28 28 54 54 58 26 28 28 56 56 64 62 122 114 121 113 123 115 122 114 64 62 124 64 123 115 64 62 125 116 123 115 124 64 68 66 125 116 124 64 126 117 125 116 68 66 70 68 126 117 68 66 129 120 128 119 127 118 130 121 128 119 129 120 131 122 130 121 129 120 132 123 130 121 131 122 133 124 132 123 131 122 101 95 132 123 133 124 134 125 101 95 133 124 137 128 136 127 135 126 138 129 136 127 137 128 139 130 138 129 137 128 140 131 138 129 139 130 141 132 140 131 139 130 142 133 140 131 141 132 143 134 142 133 141 132 107 101 144 135 105 99 145 136 144 135 107 101 127 118 145 136 107 101 146 137 145 136 127 118 128 119 146 137 127 118 147 89 146 137 128 119 148 91 147 89 128 119 151 140 150 139 149 138 152 141 150 139 151 140 153 142 152 141 151 140 154 143 152 141 153 142 155 144 154 143 153 142 156 145 154 143 155 144 108 102 157 146 110 104 158 147 157 146 108 102 106 100 158 147 108 102 159 148 158 147 106 100 104 98 159 148 106 100 160 149 159 148 104 98 163 152 162 151 161 150 164 153 162 151 163 152 165 154 164 153 163 152 166 155 164 153 165 154 167 156 166 155 165 154 168 157 166 155 167 156 171 160 170 159 169 158 172 161 170 159 171 160 173 162 172 161 171 160 174 163 172 161 173 162 175 164 174 163 173 162 176 165 174 163 175 164 177 154 169 158 167 156 171 160 169 158 177 154 178 152 171 160 177 154 173 162 171 160 178 152 179 150 173 162 178 152 175 164 173 162 179 150 109 103 127 118 107 101 129 120 127 118 109 103 111 105 129 120 109 103 131 122 129 120 111 105 113 107 131 122 111 105 133 124 131 122 113 107 182 153 181 166 180 151 183 167 181 166 182 153 184 155 183 167 182 153 185 168 183 167 184 155 168 157 185 168 184 155 186 169 185 168 168 157 188 167 149 138 187 166 151 140 149 138 188 167 185 168 151 140 188 167 189 142 151 140 185 168 186 169 189 142 185 168 155 144 189 142 186 169 192 172 191 171 190 170 193 173 191 171 192 172 194 174 193 173 192 172 195 175 193 173 194 174 196 176 195 175 194 174 199 179 198 178 197 177 200 180 198 178 199 179 201 181 200 180 199 179 202 182 200 180 201 181 203 183 202 182 201 181 205 185 81 75 204 184 83 77 81 75 205 185 206 186 83 77 205 185 85 79 83 77 206 186 87 81 85 79 206 186 209 189 208 188 207 187 210 190 208 188 209 189 211 191 210 190 209 189 212 192 210 190 211 191 213 193 212 192 211 191 216 195 215 12 214 194 217 196 215 12 216 195 218 173 217 196 216 195 219 197 217 196 218 173 220 175 219 197 218 173 223 200 222 199 221 198 224 201 222 199 223 200 225 202 224 201 223 200 226 203 224 201 225 202 227 204 226 203 225 202 229 134 228 61 142 133 230 63 228 61 229 134 231 205 230 63 229 134 232 65 230 63 231 205 233 67 232 65 231 205 236 208 235 207 234 206 237 209 235 207 236 208 238 210 237 209 236 208 239 211 237 209 238 210 240 212 239 211 238 210 243 204 242 214 241 213 244 215 242 214 243 204 245 202 244 215 243 204 246 216 244 215 245 202 247 217 246 216 245 202 250 220 249 219 248 218 239 211 249 219 250 220 251 221 239 211 250 220 237 209 239 211 251 221 235 207 237 209 251 221 254 224 253 223 252 222 255 225 253 223 254 224 256 226 255 225 254 224 257 227 255 225 256 226 259 229 234 206 258 228 236 208 234 206 259 229 260 230 236 208 259 229 261 231 236 208 260 230 263 220 262 146 158 147 264 232 262 146 263 220 248 218 264 232 263 220 265 233 264 232 248 218 261 231 238 210 236 208 240 212 238 210 261 231 266 234 240 212 261 231 267 235 240 212 266 234 269 236 268 222 253 223 270 237 268 222 269 236 271 238 270 237 269 236 272 239 270 237 271 238 275 242 274 241 273 240 276 243 274 241 275 242 277 244 276 243 275 242 278 245 276 243 277 244 281 196 280 246 279 12 203 183 280 246 281 196 282 247 203 183 281 196 202 182 203 183 282 247 285 248 284 172 283 170 286 249 284 172 285 248 287 250 286 249 285 248 288 251 286 249 287 250 43 43 289 252 45 45 290 253 289 252 43 43 291 41 290 253 43 43 292 39 290 253 291 41 295 256 294 255 293 254 86 80 294 255 295 256 296 257 86 80 295 256 297 258 86 80 296 257 300 261 299 260 298 259 301 262 299 260 300 261 302 263 301 262 300 261 71 69 301 262 302 263 305 266 304 265 303 264 306 267 304 265 305 266 307 203 306 267 305 266 308 268 306 267 307 203 138 129 309 269 136 127 310 270 309 269 138 129 140 131 310 270 138 129 142 133 310 270 140 131 313 273 312 272 311 271 314 274 312 272 313 273 315 275 314 274 313 273 316 276 314 274 315 275 130 121 148 91 128 119 99 93 148 91 130 121 132 123 99 93 130 121 101 95 99 93 132 123 16 16 4 4 317 2 318 277 4 4 16 16 18 18 318 277 16 16 20 20 318 277 18 18 320 278 319 42 44 44 40 40 319 42 320 278 321 279 40 40 320 278 293 254 40 40 321 279 278 245 322 280 276 243 323 281 322 280 278 245 324 282 323 281 278 245 325 283 323 281 324 282 318 277 326 6 4 4 327 284 326 6 318 277 20 20 327 284 318 277 22 22 327 284 20 20 330 287 329 286 328 285 331 288 329 286 330 287 332 289 331 288 330 287 333 290 331 288 332 289 336 241 335 117 334 240 125 116 335 117 336 241 337 291 125 116 336 241 340 176 339 293 338 292 341 294 339 293 340 176 288 251 341 294 340 176 19 19 197 177 342 295 343 179 197 177 19 19 344 181 343 179 19 19 346 224 345 296 256 226 347 297 345 296 346 224 348 298 347 297 346 224 351 200 350 299 349 202 352 300 350 299 351 200 221 198 352 300 351 200 293 254 92 86 353 301 354 302 92 86 293 254 294 255 354 302 293 254 357 305 356 304 355 303 358 306 356 304 357 305 359 307 358 306 357 305 289 252 360 308 45 45 361 309 360 308 289 252 362 310 361 309 289 252 363 311 206 186 205 185 364 312 206 186 363 311 365 313 364 312 363 311 78 73 366 314 80 74 367 315 366 314 78 73 76 72 367 315 78 73 368 170 55 55 53 53 57 24 55 55 368 170 369 316 57 24 368 170 110 104 265 233 112 106 264 232 265 233 110 104 157 146 264 232 110 104 371 319 242 318 370 317 372 320 242 318 371 319 373 321 372 320 371 319 121 113 375 323 374 322 376 324 375 323 121 113 122 114 376 324 121 113 172 161 377 325 170 159 378 326 377 325 172 161 379 327 378 326 172 161 174 163 381 329 380 328 382 330 381 329 174 163 176 165 382 330 174 163 385 332 384 330 383 331 386 329 384 330 385 332 387 328 386 329 385 332 388 333 327 284 22 22 8 8 327 284 388 333 10 10 8 8 388 333 313 273 389 334 315 275 390 335 389 334 313 273 391 336 390 335 313 273 142 133 59 57 392 337 61 59 59 57 142 133 228 61 61 59 142 133 395 340 394 339 393 338 396 341 394 339 395 340 399 113 398 60 397 62 374 322 398 60 399 113 402 344 401 343 400 342 403 345 401 343 402 344 406 266 405 201 404 203 303 264 405 201 406 266 321 279 295 256 293 254 320 278 295 256 321 279 409 348 408 347 407 346 362 310 408 347 409 348 410 349 196 176 338 292 195 175 196 176 410 349 413 352 412 351 411 350 414 353 412 351 413 352 415 354 159 148 160 149 251 221 159 148 415 354 251 221 158 147 159 148 263 220 158 147 251 221 259 229 417 355 416 230 258 228 417 355 259 229 420 357 419 356 418 315 421 71 419 356 420 357 423 358 422 350 412 351 424 339 422 350 423 358 333 290 425 350 331 288 426 359 425 350 333 290 426 359 413 352 425 350 427 360 413 352 426 359 430 363 429 362 428 361 431 364 429 362 430 363 297 258 44 44 46 46 296 257 44 44 297 258 329 286 432 365 328 285 331 288 432 365 329 286 433 354 235 207 251 221 434 366 235 207 433 354 266 234 435 367 267 235 261 231 435 367 266 234 436 357 76 72 74 71 367 315 76 72 436 357 72 70 302 263 437 71 71 69 302 263 72 70 14 14 317 2 0 0 16 16 317 2 14 14 439 195 438 171 218 173 440 194 438 171 439 195 442 182 441 368 200 180 443 247 441 368 442 182 219 197 443 247 281 196 441 368 443 247 219 197 446 371 445 370 444 369 447 372 445 370 446 371 450 317 449 373 448 319 451 374 449 373 450 317 454 244 453 5 452 7 455 242 453 5 454 244 457 3 455 242 456 1 453 5 455 242 457 3 354 302 458 84 92 86 294 255 458 84 354 302 88 82 294 255 86 80 458 84 294 255 88 82 51 51 287 250 53 53 49 49 287 250 51 51 84 78 297 258 82 76 86 80 297 258 84 78 347 297 314 274 459 375 348 298 314 274 347 297 461 376 460 319 312 272 462 377 460 319 461 376 465 236 464 378 463 238 466 379 464 378 465 236 466 379 401 343 464 378 467 380 401 343 466 379 467 380 468 381 401 343 469 382 468 381 467 380 244 383 471 317 470 318 246 384 471 317 244 383 474 268 473 386 472 385 404 203 473 386 474 268 477 387 476 259 475 260 478 388 476 259 477 387 481 17 480 181 479 19 482 15 480 181 481 17 483 261 421 71 302 263 419 356 421 71 483 261 486 246 485 13 484 12 487 183 485 13 486 246 490 281 489 389 488 280 491 390 489 389 490 281 492 115 337 291 122 114 493 116 337 291 492 115 495 386 227 204 494 385 226 203 227 204 495 386 498 387 497 391 496 388 499 260 497 391 498 387 301 262 501 392 500 260 502 393 501 392 301 262 240 212 249 219 239 211 503 394 249 219 240 212 200 180 504 349 198 178 441 368 504 349 200 180 505 230 212 192 213 193 417 355 212 192 505 230 417 355 210 190 212 192 506 395 210 190 417 355 507 396 496 388 497 391 508 397 496 388 507 396 511 260 510 364 509 391 429 362 510 364 511 260 514 338 513 358 512 306 424 339 513 358 514 338 432 365 396 341 114 108 394 339 396 341 432 365 115 109 396 341 395 340 114 108 396 341 115 109 516 398 515 37 35 35 517 347 515 37 516 398 518 267 135 126 304 265 519 128 135 126 518 267 522 399 521 359 520 290 523 400 521 359 522 399 330 287 525 401 524 289 328 285 525 401 330 287 527 338 359 307 526 340 358 306 359 307 527 338 530 346 529 399 528 402 531 403 529 399 530 346 533 289 532 404 528 402 525 401 532 404 533 289 361 309 525 401 360 308 532 404 525 401 361 309 536 191 535 391 534 364 537 189 535 391 536 191 424 339 331 288 411 350 432 365 331 288 424 339 539 193 261 231 538 230 435 367 261 231 539 193 117 111 359 307 540 305 116 110 359 307 117 111 293 254 38 38 40 40 353 301 38 38 293 254 542 316 191 171 541 194 190 170 191 171 542 316 340 176 286 249 288 251 543 174 286 249 340 176 534 364 213 193 211 191 430 363 213 193 534 364 430 363 435 367 213 193 428 361 435 367 430 363 545 356 298 259 544 405 300 261 298 259 545 356 449 373 312 272 448 319 311 271 312 272 449 373 546 406 460 319 462 377 373 321 460 319 546 406 350 299 247 217 245 202 547 407 247 217 350 299 482 15 487 183 480 181 485 13 487 183 482 15 308 268 548 408 306 267 549 385 548 408 308 268 549 385 550 370 548 408 551 409 550 370 549 385 441 368 220 175 504 349 219 197 220 175 441 368 553 9 552 282 278 245 554 410 552 282 553 9 49 49 555 251 287 250 47 47 555 251 49 49 557 225 467 380 556 379 257 227 467 380 557 225 517 347 292 39 515 37 290 253 292 39 517 347 558 345 387 328 385 332 559 344 387 328 558 345 559 344 560 327 387 328 561 342 560 327 559 344 564 413 563 412 562 411 565 311 563 412 564 413 204 184 565 311 205 185 563 412 565 311 204 184 206 186 89 83 87 81 566 414 89 83 206 186 567 253 362 310 289 252 408 347 362 310 567 253 568 290 528 402 529 399 533 289 528 402 568 290 348 298 312 272 314 274 461 376 312 272 348 298 571 239 570 332 569 331 463 238 570 332 571 239 270 237 573 377 572 222 574 406 573 377 270 237 572 222 575 376 346 224 573 377 575 376 572 222 253 223 556 379 269 236 557 225 556 379 253 223 577 408 447 372 576 130 445 370 447 372 577 408 320 278 296 257 295 256 44 44 296 257 320 278 578 415 516 398 35 35 579 346 516 398 578 415 580 243 337 291 336 241 488 280 337 291 580 243 488 280 122 114 337 291 489 389 122 114 488 280 489 389 581 324 122 114 582 416 581 324 489 389 583 418 478 388 508 417 584 405 478 388 583 418 285 248 53 53 287 250 368 170 53 53 285 248 145 136 585 419 144 135 146 137 585 419 145 136 452 7 278 245 586 244 553 9 278 245 452 7 576 130 518 267 577 408 519 128 518 267 576 130 587 372 141 132 139 130 588 371 141 132 587 372 141 132 231 205 143 134 588 371 231 205 141 132 118 112 540 305 589 420 117 111 540 305 118 112 94 88 118 112 589 420 96 90 118 112 94 88 395 340 116 110 115 109 359 307 116 110 395 340 418 315 544 405 583 418 545 356 544 405 418 315 537 189 590 396 535 391 207 187 590 396 537 189 591 271 451 374 313 273 449 373 451 374 591 271 561 342 592 326 560 327 593 421 592 326 561 342 595 217 594 422 246 216 596 423 594 422 595 217 241 213 549 385 597 204 551 409 549 385 241 213 146 137 93 87 585 419 147 89 93 87 146 137 588 371 233 67 231 205 598 369 233 67 588 371 600 374 246 384 599 336 471 317 246 384 600 374 602 425 468 381 601 424 603 342 468 381 602 425 463 238 604 345 570 332 464 378 604 345 463 238 172 161 380 328 379 327 174 163 380 328 172 161 429 362 501 392 502 393 299 260 501 392 429 362 606 402 409 348 605 346 532 404 409 348 606 402 532 404 362 310 409 348 361 309 362 310 532 404 607 426 512 306 513 358 356 304 512 306 607 426 610 351 609 426 608 358 611 427 609 426 610 351 310 270 612 428 309 269 142 133 612 428 310 270 355 303 589 420 540 305 523 400 427 360 521 359 247 217 547 407 596 423 468 381 603 342 613 343 478 388 584 405 476 259 614 429 375 323 581 324 491 390 582 416 489 389 574 406 270 237 272 239 429 362 502 393 428 361 342 295 21 21 19 19 550 370 551 409 615 369 555 251 47 47 341 294 348 298 346 224 575 376 467 380 257 227 469 382 350 299 352 300 547 407 240 212 267 235 503 394 249 219 503 394 248 218 506 395 208 188 210 190 508 417 508 417 496 388 611 427 356 304 609 426 427 360 414 353 413 352 11 11 554 410 553 9 594 422 596 423 390 430 551 432 241 431 242 318 434 366 234 206 235 207 392 337 612 428 142 133 316 276 459 375 314 274 578 415 531 403 530 346 525 401 328 285 360 308 618 242 617 240 616 1 338 292 198 178 504 349 583 418 366 314 619 315 432 365 114 108 328 285 207 187 508 397 590 396 374 322 60 58 398 60 303 264 222 199 405 201 103 97 101 95 134 125 435 367 428 361 267 235 451 374 391 336 313 273 593 421 377 325 592 326 516 398 579 346 517 347 468 381 469 382 601 424 82 76 297 258 46 46 301 262 71 69 502 393 551 432 242 318 372 320 365 313 363 311 564 413 364 312 566 414 206 186 566 414 91 85 89 83 353 301 36 36 38 38 414 353 611 427 412 351 325 283 491 390 323 281 602 425 593 421 620 342 327 284 8 8 326 6 258 228 506 395 417 355 531 403 523 400 529 399 459 375 345 296 347 297 554 410 325 283 552 282 582 416 614 429 581 324 621 343 604 345 464 378 284 172 286 249 543 174

+
+
+
+ + + + -1247 -2374 237 -1383 -2374 -248 -1566 -1481 -195 -1494 -1479 -470 -1627 -786 -260 -1577 -787 -549 -1636 -574 -263 -1545 -573 -580 -1636 -347 -263 -1541 -346 -579 -1627 -47 -260 -1567 -48 -546 -1580 -2373 491 -1516 -1480 249 -1428 -1481 236 -1592 -784 179 -1506 -943 91 -1590 -572 180 -1538 -507 149 -1652 -233 200 -1505 -347 160 -1585 -47 212 -1505 -47 161 -2024 -2376 1539 -2025 -2370 1221 -2197 -1481 1376 -2132 -1476 1235 -2300 -1027 1298 -2157 -1024 1219 -2292 -543 1299 -2058 -556 1153 -2287 -303 1286 -2046 -194 1167 -2133 0 1341 -2049 -11 1168 -6011 889 4295 -6171 913 4302 -6004 487 4401 -6196 514 4417 -5901 167 4474 -6061 -56 4522 -5843 -125 4558 -5925 -473 4605 -5601 -1105 4732 -5759 -1100 4742 -5208 -2374 4987 -5449 -2376 5055 -2371 -16 718 -2133 -11 981 -2366 -220 800 -2208 -203 994 -2391 -556 741 -2226 -554 959 -2424 -888 752 -2294 -958 999 -2301 -1476 854 -2217 -1476 1056 -2025 -2370 1221 -2132 -1476 1235 -593 -47 -890 -667 -46 -829 -571 -260 -895 -668 -348 -842 -573 -576 -857 -701 -576 -824 -568 -994 -844 -705 -1044 -799 -526 -1479 -800 -619 -1401 -701 -332 -2374 -682 -564 -2371 -638 -2316 -2375 1482 -2343 -1479 1469 -2197 -1481 1376 -2340 -1052 1470 -2300 -1027 1298 -2434 -534 1376 -2292 -543 1299 -2423 -216 1374 -2287 -303 1286 -2288 18 1378 -5487 -2367 5605 -5625 -2375 5312 -5890 -1089 5353 -6036 -1086 5061 -6125 -89 5185 -6238 -184 4901 -6161 219 5109 -6335 224 4813 -6200 553 5026 -6365 539 4780 -6252 990 4917 -6386 985 4668 -3212 270 4034 -3580 340 4246 -3212 -125 4035 -3579 -57 4238 -3212 -424 4035 -3563 -589 4274 -3212 -703 4035 -3531 -980 4215 -3131 -1473 4062 -3453 -1650 4230 -3314 -2374 4402 -4800 312 1597 -4673 304 1930 -4743 -97 1622 -4635 -257 1939 -4702 -553 1632 -4604 -700 1946 -4574 -1476 1741 -4456 -1476 2006 -4248 -2370 2035 -3639 -2368 2875 -3941 -2371 4265 -3940 -1440 4118 -3846 -1001 4058 -3876 -575 4096 -3934 -95 4127 -2046 -194 1167 -2058 -556 1153 -784 -229 -857 -942 -576 -850 -869 -787 -795 -705 -1044 -799 -862 -1478 -702 -710 -2372 -530 -4000 -425 2680 -3317 -433 3626 -3996 -707 2681 -3317 -711 3626 -3887 -1475 2726 -3249 -1476 3670 -3088 -2370 3858 -2950 -2376 4200 -385 -47 -1317 -465 -47 -1222 -385 -263 -1317 -465 -347 -1221 -386 -575 -1316 -470 -575 -1174 -469 -902 -1175 -517 -347 -979 -519 -787 -989 -4011 275 2677 -4005 -122 2679 -3317 -135 3626 -3212 -125 4035 -3212 -424 4035 4381 -2364 4762 3654 -2365 6289 4381 -1243 4762 3654 -1243 6289 4381 -622 4762 3654 -622 6289 4381 -47 4762 3654 -47 6289 -4726 -937 1529 -4810 -405 1499 -4836 -57 1498 -4841 314 1499 3861 -2369 720 4395 -2366 1906 3898 -1475 566 4386 -1473 1800 3881 -623 504 4375 -623 1747 3881 -47 504 4375 -47 1748 3192 -47 190 2599 -47 -245 3192 -514 190 2599 -514 -245 3218 -1474 258 2635 -1475 -173 3273 -2369 417 2707 -2369 -11 3881 -623 504 3898 -1475 566 3861 -2369 720 4395 -2366 1906 4631 -2365 3314 4386 -1473 1800 4620 -1361 3235 4375 -623 1747 4614 -622 3208 4614 -47 3208 4631 -2365 3314 4620 -1361 3235 4381 -622 4762 -2288 -1479 587 -2187 -1481 392 -2304 -787 375 -2214 -974 324 -2299 -576 383 -2215 -573 297 -2360 -343 385 -1827 -45 268 -2068 -45 330 -1858 -343 221 -2037 -269 320 -1809 -672 196 -1961 -572 280 -1839 -1037 182 -5044 -2364 6235 -5242 -1133 6126 -5338 53 6114 -4060 238 1205 -4210 249 1220 -4007 -226 1187 -4169 5 1240 -3924 -675 1197 -4143 -433 1275 -4180 -958 1215 -1947 -2375 551 -1580 -2373 491 -2077 -1480 375 -1891 -1451 384 -2214 -974 324 -2070 -787 303 -2215 -573 297 57 -46 -1150 -38 -46 -1193 145 -264 -1129 -38 -346 -1193 230 -690 -1120 -67 -574 -1226 232 -1012 -1100 -573 -576 -857 -519 -787 -989 -568 -994 -844 -439 -1479 -930 -526 -1479 -800 -332 -2374 -682 -4716 306 1333 -4711 -99 1366 -4570 -233 1352 -4679 -409 1374 -4526 -702 1360 -4648 -699 1381 -4415 -1478 1437 256 -1476 -978 466 -1477 -865 232 -1012 -1100 425 -977 -950 230 -690 -1120 403 -573 -959 367 -346 -1013 -4219 -2375 1653 -4516 -1479 1444 -4621 -1133 1482 -4811 -250 1381 1336 -913 -1102 1426 -494 -1184 1277 -458 -1151 1398 -240 -1137 1285 -47 -1126 1395 -46 -1152 -4548 286 1280 -4482 -11 1289 -4389 -425 1272 -4408 -707 1297 -4726 -937 1529 -4621 -1133 1482 -4586 -1479 1578 -4321 -2374 1749 -4269 -1393 1389 -3895 -2371 1395 1336 -913 -1102 1537 -1057 -1130 1411 -1479 -1064 1652 -1478 -969 1659 -2373 -858 -1116 -2374 -475 -1150 -1479 -678 -1420 -1480 -580 -1207 -904 -726 -1442 -903 -725 -1404 -574 -736 -1580 -2373 491 -1707 -1481 287 -1891 -1451 384 -1961 -787 279 -2288 -1479 587 -2304 -787 375 -2301 -1062 618 -2405 -575 454 -2419 -563 609 -2396 -330 598 -5395 -1167 4638 -5511 -465 4553 -5843 -125 4558 -5901 167 4474 -6318 533 4528 -6313 218 4744 -6259 207 4614 -6124 -483 4793 -5945 -1093 4865 -3128 -494 1323 -3177 -990 1258 -2767 -826 1261 -2730 -1601 1399 -2567 -1478 1406 -147 -46 -1264 -239 -47 -1321 -142 -203 -1284 -248 -440 -1353 -67 -574 -1226 -98 -970 -1254 -478 -47 -1117 -478 -346 -1117 760 -573 -922 923 -681 -959 720 -267 -895 922 -346 -959 754 -49 -921 925 -47 -950 -1566 -1481 -195 -1541 -527 37 -5925 -473 4605 -6077 -369 4658 -6222 204 4587 -1220 -575 -757 -1282 -347 -787 -1461 -221 -678 -1475 -48 -683 -1636 -574 -263 -1516 -281 20 -4259 -2377 4451 -4460 -1293 4283 -4582 -1239 4409 -4583 -681 4328 -4843 -485 4461 -4891 18 4325 -1116 -2374 -475 -710 -2372 -530 -1150 -1479 -678 -996 -1035 -821 -2275 -42 396 -2358 -38 513 -2360 -343 385 -2370 -29 599 -1680 -46 232 -1858 -343 221 -1809 -672 196 1158 -47 -1094 1277 -458 -1151 1103 -346 -1024 1104 -575 -1060 230 -690 -1120 249 -345 -1043 145 -264 -1129 179 -46 -1095 -6362 957 4439 -6380 564 4627 -4225 477 4143 -4475 542 4098 -4149 -84 4209 -4349 71 4073 -4057 -492 4162 -4600 -2373 4844 -4920 -1341 4663 -5301 -497 4611 -3910 -608 7527 -3910 471 7527 -1798 175 8575 -2471 42 1421 -2815 -156 1321 -2288 -1479 587 -2097 -2374 682 618 -983 -961 874 -1479 -836 604 -2370 -681 1007 -2373 -653 -737 -45 -818 -871 -45 -795 -976 -336 -856 2337 -48 -771 2337 -346 -771 2337 -573 -771 2338 -861 -736 2375 -1474 -695 2451 -2368 -532 2028 -2368 -751 2451 -2368 -532 1945 -1476 -974 2375 -1474 -695 2338 -861 -736 -1507 -47 71 632 -47 -898 441 -45 -949 442 -194 -955 -529 -47 -936 -4288 -249 4081 -4454 -924 4207 -4020 -933 4118 -4139 -1382 4190 -701 -576 -824 -668 -348 -842 -784 -229 -857 1869 -346 -1023 1727 -659 -1075 1904 -572 -973 1922 -1061 -989 -67 -574 -1226 -38 -346 -1193 -142 -203 -1284 -5597 433 4358 -5556 -105 4491 -5448 110 4470 -2210 -344 351 -4636 -140 4183 -4608 172 4113 -4727 323 4230 -4767 607 4096 -4824 310 1423 -4389 -425 1272 -4368 -131 1236 -2815 -156 1321 -2792 -509 1294 -2626 -448 1360 -2340 -1052 1470 -4636 -140 4183 -4449 -161 4192 -4454 -924 4207 -4636 -140 4183 -4864 279 4205 -4920 662 4113 -3401 -2376 1389 -3561 -1735 1220 -3871 -1493 1253 -3884 -1121 1209 -4346 -1329 4228 -4824 310 1423 -4785 308 1371 -4051 -1608 1313 -2626 -448 1360 -2340 -1052 1470 -2187 -1481 392 -2077 -1480 375 -1947 -2375 551 -2071 -572 310 -1961 -572 280 -1961 -787 279 -99 -2372 -1004 -169 -1477 -1212 -320 -1481 -1210 -355 -945 -1319 874 -1479 -836 762 -787 -922 618 -983 -961 572 -524 -986 -1545 -573 -580 -1577 -787 -549 -1442 -903 -725 -1420 -1480 -580 -1383 -2374 -248 -1494 -1479 -470 -6365 539 4780 1045 -47 -1025 874 -1479 -836 1104 -1090 -1057 1166 -1480 -963 1652 -1478 -969 1712 -960 -1048 1537 -1057 -1130 1563 -575 -1082 1538 -347 -1070 1665 -249 -1110 1539 -46 -1131 466 -1477 -865 618 -983 -961 -28 -1475 -1125 -20 -866 -1193 -98 -970 -1254 -3177 -990 1258 -3128 -494 1323 -3275 -491 1197 -3416 -155 1191 -1652 -233 200 -1809 -672 196 -1590 -572 180 -1592 -784 179 -2767 -826 1261 -1580 -2373 491 -1516 -1480 249 -1707 -1481 287 -1839 -1037 182 -1220 -575 -757 -1110 -241 -796 -1282 -347 -787 -1274 -48 -753 -869 -787 -795 -862 -1478 -702 -28 -1475 -1125 -20 -866 -1193 -3416 -155 1191 -3643 -463 1232 -3275 -491 1197 -3177 -990 1258 -3177 -990 1258 -3256 -1596 1287 -2769 -2375 1505 -4112 -2372 1565 -2210 -344 351 -4389 -425 1272 -4412 266 1240 -3793 -165 1229 -3795 210 1231 -3643 -463 1232 -3884 -1121 1209 -3177 -990 1258 -4349 71 4073 -4449 -161 4192 -4288 -249 4081 -6004 487 4401 -5771 580 4387 -5556 -105 4491 -248 -440 -1353 -385 -263 -1317 -4891 18 4325 -4864 279 4205 -5079 457 4230 -5157 713 4152 -4843 -485 4461 -4761 -1168 4590 -4020 -933 4118 -4288 -249 4081 -5215 20 4403 -5079 457 4230 -5597 433 4358 -5573 814 4297 -5159 -373 4459 -4843 -485 4461 -3884 -1121 1209 -3643 -463 1232 -3924 -675 1197 -4007 -226 1187 -4389 -425 1272 -4180 -958 1215 -4149 -84 4209 -1947 -2375 551 -2097 -2374 682 -2299 -576 383 -3168 -194 1363 -2792 -509 1294 1297 -2374 -779 290 -47 -1019 -224 -865 -1322 -28 -1475 -1125 -169 -1477 -1212 257 -2368 -856 -1461 -221 -678 -1541 -346 -579 -1519 -48 -620 -2396 -330 598 1563 -575 -1082 1398 -240 -1137 1922 -1061 -989 1904 -572 -973 2337 -573 -771 1869 -346 -1023 -1894 -2365 8457 -3911 -2363 7526 -1798 -887 8541 -3910 -608 7527 -5337 804 6106 -5511 -465 4553 -4891 18 4325 2028 -2368 -751 1945 -1476 -974 1659 -2373 -858 1336 -913 -1102 1166 -1480 -963 1297 -2374 -779 1104 -1090 -1057 -386 -575 -1316 -224 -865 -1322 -5747 853 4290 -5597 433 4358 -1207 -904 -726 -976 -336 -856 -1163 -47 -762 -3139 132 1408 -3168 -194 1363 -3317 257 3626 -1442 -903 -725 -355 -945 -1319 -320 -1481 -1210 -4043 437 4166 -3793 -165 1229 760 -573 -922 2337 -346 -771 1904 -48 -973 442 -194 -955 367 -346 -1013 361 -46 -970 232 -1012 -1100 -99 -2372 -1004 442 -194 -955 572 -524 -986 1665 -47 -1110 1792 -47 -1038 1869 -346 -1023 1922 -1061 -989 -5597 433 4358 -5215 20 4403 -4496 252 4134 -4449 -161 4192 -4496 252 4134 -4608 172 4113 -4632 572 4067 -506 -47 -1020 1727 -659 -1075 -995 -46 -774 -99 -2372 -1004 -1383 -2374 -248 -1116 -2374 -475 -1420 -1480 -580 -2815 -156 1321 1869 -346 -1023 1727 -659 -1075 + + + + + + + + + + 0.2188720703125 0.9996995192307693 0.2188720703125 0.9233774038461539 0.2498779296875 0.9233774038461539 0.2501220703125 0.9233774038461539 0.2501220703125 0.9996995192307693 0.2811279296875 0.9233774038461539 0.8907470703125 0.13491586538461542 0.8924560546875 0.13491586538461542 0.8907470703125 0.14393028846153844 0.8946533203125 0.14393028846153844 0.8946533203125 0.13491586538461542 0.8983154296875 0.13491586538461542 0.8944091796875 0.13491586538461542 0.8927001953125 0.13491586538461542 0.8927001953125 0.14393028846153844 0.4005126953125 0.062199519230769273 0.4022216796875 0.057992788461538436 0.4005126953125 0.057992788461538436 0.4041748046875 0.057992788461538436 0.4024658203125 0.062199519230769273 0.4024658203125 0.057992788461538436 0.4044189453125 0.057992788461538436 0.4061279296875 0.057992788461538436 0.4044189453125 0.062199519230769273 0.2813720703125 0.5381610576923077 0.2813720703125 0.5003004807692308 0.2967529296875 0.5003004807692308 0.2813720703125 0.9996995192307693 0.2813720703125 0.9233774038461539 0.3123779296875 0.9233774038461539 0.3126220703125 0.9233774038461539 0.3126220703125 0.9996995192307693 0.3436279296875 0.9233774038461539 0.8985595703125 0.14393028846153844 0.8985595703125 0.13491586538461542 0.9022216796875 0.13491586538461542 0.9024658203125 0.13491586538461542 0.9024658203125 0.14393028846153844 0.9061279296875 0.13491586538461542 0.3751220703125 0.05739182692307687 0.3758544921875 0.053185096153846145 0.3751220703125 0.053185096153846145 0.8751220703125 0.13431490384615385 0.8768310546875 0.12530048076923073 0.8751220703125 0.12530048076923073 0.0430908203125 0.1727764423076923 0.0430908203125 0.15414663461538458 0.0467529296875 0.15414663461538458 0.0584716796875 0.15414663461538458 0.0548095703125 0.15414663461538458 0.0548095703125 0.1727764423076923 0.2423095703125 0.5381610576923077 0.2498779296875 0.5003004807692308 0.2423095703125 0.5003004807692308 0.3438720703125 0.9996995192307693 0.3438720703125 0.9233774038461539 0.3748779296875 0.9233774038461539 0.3751220703125 0.9233774038461539 0.3751220703125 0.9996995192307693 0.4061279296875 0.9233774038461539 0.8770751953125 0.13431490384615385 0.8787841796875 0.12530048076923073 0.8770751953125 0.12530048076923073 0.3787841796875 0.053185096153846145 0.3770751953125 0.05739182692307687 0.3770751953125 0.053185096153846145 0.0069580078125 0.15414663461538458 0.0069580078125 0.1727764423076923 0.0076904296875 0.15414663461538458 0.3790283203125 0.05739182692307687 0.3790283203125 0.053185096153846145 0.3807373046875 0.053185096153846145 0.0587158203125 0.15414663461538458 0.0623779296875 0.15414663461538458 0.0587158203125 0.1727764423076923 0.5157470703125 0.5381610576923077 0.5233154296875 0.5003004807692308 0.3123779296875 0.5003004807692308 0.2969970703125 0.5381610576923077 0.2969970703125 0.5003004807692308 0.8790283203125 0.12530048076923073 0.8790283203125 0.13431490384615385 0.8826904296875 0.12530048076923073 0.8865966796875 0.12530048076923073 0.8829345703125 0.13431490384615385 0.8829345703125 0.12530048076923073 0.8885498046875 0.12530048076923073 0.8868408203125 0.13431490384615385 0.8868408203125 0.12530048076923073 0.8887939453125 0.13431490384615385 0.8887939453125 0.12530048076923073 0.8905029296875 0.12530048076923073 0.5623779296875 0.9233774038461539 0.2813720703125 0.4618389423076923 0.2813720703125 0.4996995192307693 0.2889404296875 0.4618389423076923 0.3826904296875 0.053185096153846145 0.3809814453125 0.053185096153846145 0.3809814453125 0.05739182692307687 0.8907470703125 0.13431490384615385 0.8924560546875 0.12530048076923073 0.8907470703125 0.12530048076923073 0.8983154296875 0.12530048076923073 0.8946533203125 0.12530048076923073 0.8946533203125 0.13431490384615385 0.3829345703125 0.05739182692307687 0.3846435546875 0.053185096153846145 0.3829345703125 0.053185096153846145 0.8927001953125 0.12530048076923073 0.8944091796875 0.12530048076923073 0.8927001953125 0.13431490384615385 0.8985595703125 0.13431490384615385 0.8985595703125 0.12530048076923073 0.9002685546875 0.12530048076923073 0.4063720703125 0.9996995192307693 0.4063720703125 0.9233774038461539 0.4373779296875 0.9233774038461539 0.4376220703125 0.9233774038461539 0.4686279296875 0.9233774038461539 0.4376220703125 0.9996995192307693 0.0626220703125 0.2118389423076923 0.0626220703125 0.23046875 0.0701904296875 0.2118389423076923 0.3848876953125 0.05739182692307687 0.3865966796875 0.053185096153846145 0.3848876953125 0.053185096153846145 0.3868408203125 0.053185096153846145 0.3885498046875 0.053185096153846145 0.3868408203125 0.05739182692307687 0.9005126953125 0.12530048076923073 0.9005126953125 0.13431490384615385 0.9022216796875 0.12530048076923073 0.9041748046875 0.12530048076923073 0.9024658203125 0.12530048076923073 0.9024658203125 0.13431490384615385 0.3887939453125 0.053185096153846145 0.3887939453125 0.05739182692307687 0.3905029296875 0.053185096153846145 0.0704345703125 0.23046875 0.0704345703125 0.2118389423076923 0.0740966796875 0.2118389423076923 0.4688720703125 0.9996995192307693 0.4688720703125 0.9233774038461539 0.4998779296875 0.9233774038461539 0.5001220703125 0.9233774038461539 0.5001220703125 0.9996995192307693 0.5311279296875 0.9233774038461539 0.5313720703125 0.9996995192307693 0.5313720703125 0.9233774038461539 0.3123779296875 0.4618389423076923 0.2969970703125 0.4618389423076923 0.2969970703125 0.4996995192307693 0.8787841796875 0.11568509615384615 0.8751220703125 0.12469951923076927 0.8751220703125 0.11568509615384615 0.9044189453125 0.12530048076923073 0.9044189453125 0.13431490384615385 0.9061279296875 0.12530048076923073 0.8826904296875 0.11568509615384615 0.8790283203125 0.11568509615384615 0.8790283203125 0.12469951923076927 0.8829345703125 0.11568509615384615 0.8829345703125 0.12469951923076927 0.8865966796875 0.11568509615384615 0.8885498046875 0.11568509615384615 0.8868408203125 0.11568509615384615 0.8868408203125 0.12469951923076927 0.0743408203125 0.23046875 0.0780029296875 0.2118389423076923 0.0743408203125 0.2118389423076923 0.6563720703125 0.5003004807692308 0.6639404296875 0.5003004807692308 0.2032470703125 0.9996995192307693 0.5936279296875 0.9233774038461539 0.5626220703125 0.9233774038461539 0.5626220703125 0.9996995192307693 0.8944091796875 0.11568509615384615 0.8907470703125 0.12469951923076927 0.8907470703125 0.11568509615384615 0.8887939453125 0.11568509615384615 0.8887939453125 0.12469951923076927 0.8905029296875 0.11568509615384615 0.8946533203125 0.11568509615384615 0.8946533203125 0.12469951923076927 0.8983154296875 0.11568509615384615 0.0789794921875 0.2118389423076923 0.0782470703125 0.2118389423076923 0.0782470703125 0.23046875 0.0792236328125 0.23046875 0.0799560546875 0.2118389423076923 0.0792236328125 0.2118389423076923 0.0860595703125 0.23046875 0.0936279296875 0.2118389423076923 0.0860595703125 0.2118389423076923 0.3282470703125 0.5381610576923077 0.3358154296875 0.5003004807692308 0.2186279296875 0.9233774038461539 0.3592529296875 0.5003004807692308 0.3516845703125 0.5003004807692308 0.0821533203125 0.2118389423076923 0.0858154296875 0.2118389423076923 0.0821533203125 0.23046875 0.0701904296875 0.19260817307692313 0.0626220703125 0.21123798076923073 0.0626220703125 0.19260817307692313 0.3907470703125 0.053185096153846145 0.3907470703125 0.05739182692307687 0.3924560546875 0.053185096153846145 0.8985595703125 0.11568509615384615 0.9022216796875 0.11568509615384615 0.8985595703125 0.12469951923076927 0.9061279296875 0.11568509615384615 0.9024658203125 0.12469951923076927 0.9024658203125 0.11568509615384615 0.0780029296875 0.19260817307692313 0.0704345703125 0.21123798076923073 0.0704345703125 0.19260817307692313 0.3944091796875 0.053185096153846145 0.3927001953125 0.053185096153846145 0.3927001953125 0.05739182692307687 0.8751220703125 0.11508413461538458 0.8768310546875 0.10606971153846156 0.8751220703125 0.10606971153846156 0.8787841796875 0.10606971153846156 0.8770751953125 0.10606971153846156 0.8770751953125 0.11508413461538458 0.3946533203125 0.05739182692307687 0.3963623046875 0.053185096153846145 0.3946533203125 0.053185096153846145 0.8790283203125 0.10606971153846156 0.8807373046875 0.10606971153846156 0.8790283203125 0.11508413461538458 0.3966064453125 0.05739182692307687 0.3966064453125 0.053185096153846145 0.3983154296875 0.053185096153846145 0.0782470703125 0.19260817307692313 0.0819091796875 0.19260817307692313 0.0782470703125 0.21123798076923073 0.8826904296875 0.10606971153846156 0.8809814453125 0.10606971153846156 0.8809814453125 0.11508413461538458 0.8829345703125 0.10606971153846156 0.8829345703125 0.11508413461538458 0.8846435546875 0.10606971153846156 0.8905029296875 0.10606971153846156 0.8868408203125 0.11508413461538458 0.8868408203125 0.10606971153846156 0.8907470703125 0.11508413461538458 0.8907470703125 0.10606971153846156 0.8944091796875 0.10606971153846156 0.5938720703125 0.9996995192307693 0.5938720703125 0.9233774038461539 0.6248779296875 0.9233774038461539 0.6251220703125 0.9233774038461539 0.6561279296875 0.9233774038461539 0.6251220703125 0.9996995192307693 0.0936279296875 0.19260817307692313 0.0860595703125 0.21123798076923073 0.0860595703125 0.19260817307692313 0.0626220703125 0.17337740384615385 0.0701904296875 0.17337740384615385 0.0626220703125 0.19200721153846156 0.2891845703125 0.4996995192307693 0.2891845703125 0.4618389423076923 0.2967529296875 0.4618389423076923 0.3126220703125 0.5003004807692308 0.3280029296875 0.5003004807692308 0.3126220703125 0.5381610576923077 0.3282470703125 0.5003004807692308 0.3126220703125 0.4618389423076923 0.3126220703125 0.4996995192307693 0.3280029296875 0.4618389423076923 0.4002685546875 0.053185096153846145 0.3985595703125 0.053185096153846145 0.3985595703125 0.05739182692307687 0.4005126953125 0.05739182692307687 0.4022216796875 0.053185096153846145 0.4005126953125 0.053185096153846145 0.8848876953125 0.10606971153846156 0.8865966796875 0.10606971153846156 0.8848876953125 0.11508413461538458 0.8946533203125 0.10606971153846156 0.8946533203125 0.11508413461538458 0.8963623046875 0.10606971153846156 0.8966064453125 0.11508413461538458 0.8983154296875 0.10606971153846156 0.8966064453125 0.10606971153846156 0.2032470703125 0.9233774038461539 0.6717529296875 0.9233774038461539 0.6563720703125 0.9996995192307693 0.6563720703125 0.9233774038461539 0.3360595703125 0.5003004807692308 0.3436279296875 0.5003004807692308 0.3360595703125 0.5381610576923077 0.0704345703125 0.19200721153846156 0.0704345703125 0.17337740384615385 0.0780029296875 0.17337740384615385 0.0782470703125 0.17337740384615385 0.0858154296875 0.17337740384615385 0.0782470703125 0.19200721153846156 0.0860595703125 0.19200721153846156 0.0860595703125 0.17337740384615385 0.0936279296875 0.17337740384615385 0.0626220703125 0.15414663461538458 0.0701904296875 0.15414663461538458 0.0626220703125 0.1727764423076923 0.6876220703125 0.9996995192307693 0.6876220703125 0.9233774038461539 0.7186279296875 0.9233774038461539 0.7188720703125 0.9233774038461539 0.7188720703125 0.9996995192307693 0.7498779296875 0.9233774038461539 0.3282470703125 0.4618389423076923 0.3282470703125 0.4996995192307693 0.3436279296875 0.4618389423076923 0.3514404296875 0.5003004807692308 0.3438720703125 0.5381610576923077 0.3438720703125 0.5003004807692308 0.0704345703125 0.15414663461538458 0.0780029296875 0.15414663461538458 0.0704345703125 0.1727764423076923 0.7501220703125 0.9996995192307693 0.7501220703125 0.9233774038461539 0.7811279296875 0.9233774038461539 0.7813720703125 0.9233774038461539 0.7813720703125 0.9996995192307693 0.8123779296875 0.9233774038461539 0.8985595703125 0.11508413461538458 0.9022216796875 0.10606971153846156 0.8985595703125 0.10606971153846156 0.9024658203125 0.10606971153846156 0.9024658203125 0.11508413461538458 0.9061279296875 0.10606971153846156 0.3594970703125 0.5381610576923077 0.3594970703125 0.5003004807692308 0.3748779296875 0.5003004807692308 0.3592529296875 0.4618389423076923 0.3438720703125 0.4996995192307693 0.3438720703125 0.4618389423076923 0.8751220703125 0.10546875 0.8751220703125 0.09645432692307687 0.8768310546875 0.09645432692307687 0.8826904296875 0.09645432692307687 0.8790283203125 0.10546875 0.8790283203125 0.09645432692307687 0.8126220703125 0.9996995192307693 0.8126220703125 0.9233774038461539 0.8436279296875 0.9233774038461539 0.8438720703125 0.9233774038461539 0.8438720703125 0.9996995192307693 0.8748779296875 0.9233774038461539 0.3594970703125 0.4618389423076923 0.3594970703125 0.4996995192307693 0.3748779296875 0.4618389423076923 0.8770751953125 0.09645432692307687 0.8787841796875 0.09645432692307687 0.8770751953125 0.10546875 0.4024658203125 0.053185096153846145 0.4024658203125 0.05739182692307687 0.4041748046875 0.053185096153846145 0.8751220703125 0.9996995192307693 0.8751220703125 0.9233774038461539 0.9061279296875 0.9233774038461539 0.9063720703125 0.9233774038461539 0.9063720703125 0.9996995192307693 0.9373779296875 0.9233774038461539 0.3516845703125 0.5381610576923077 0.0782470703125 0.15414663461538458 0.0858154296875 0.15414663461538458 0.0782470703125 0.1727764423076923 0.0860595703125 0.15414663461538458 0.0860595703125 0.1727764423076923 0.0936279296875 0.15414663461538458 0.9376220703125 0.9996995192307693 0.9376220703125 0.9233774038461539 0.9686279296875 0.9233774038461539 0.9688720703125 0.9233774038461539 0.9688720703125 0.9996995192307693 0.9998779296875 0.9233774038461539 0.4044189453125 0.05739182692307687 0.4061279296875 0.053185096153846145 0.4044189453125 0.053185096153846145 0.3751220703125 0.048377403846153855 0.3751220703125 0.05258413461538458 0.3768310546875 0.048377403846153855 0.3751220703125 0.5381610576923077 0.3751220703125 0.5003004807692308 0.3905029296875 0.5003004807692308 0.0001220703125 0.9227764423076923 0.0001220703125 0.8464543269230769 0.0311279296875 0.8464543269230769 0.0313720703125 0.8464543269230769 0.0313720703125 0.9227764423076923 0.0623779296875 0.8464543269230769 0.3907470703125 0.5003004807692308 0.3907470703125 0.5381610576923077 0.4061279296875 0.5003004807692308 0.3905029296875 0.4618389423076923 0.3751220703125 0.4618389423076923 0.3751220703125 0.4996995192307693 0.4061279296875 0.4618389423076923 0.3907470703125 0.4618389423076923 0.3907470703125 0.4996995192307693 0.0938720703125 0.23046875 0.1014404296875 0.2118389423076923 0.0938720703125 0.2118389423076923 0.8829345703125 0.10546875 0.8865966796875 0.09645432692307687 0.8829345703125 0.09645432692307687 0.8905029296875 0.09645432692307687 0.8868408203125 0.10546875 0.8868408203125 0.09645432692307687 0.3760986328125 0.053185096153846145 0.3760986328125 0.05739182692307687 0.3768310546875 0.053185096153846145 0.3770751953125 0.048377403846153855 0.3770751953125 0.05258413461538458 0.3787841796875 0.048377403846153855 0.3790283203125 0.048377403846153855 0.3807373046875 0.048377403846153855 0.3790283203125 0.05258413461538458 0.4063720703125 0.5003004807692308 0.4063720703125 0.5381610576923077 0.4217529296875 0.5003004807692308 0.0802001953125 0.2118389423076923 0.0809326171875 0.2118389423076923 0.0802001953125 0.23046875 0.0811767578125 0.2118389423076923 0.0819091796875 0.2118389423076923 0.0811767578125 0.23046875 0.8907470703125 0.10546875 0.8907470703125 0.09645432692307687 0.8924560546875 0.09645432692307687 0.4219970703125 0.5003004807692308 0.4219970703125 0.5381610576923077 0.4373779296875 0.5003004807692308 0.3809814453125 0.048377403846153855 0.3826904296875 0.048377403846153855 0.3809814453125 0.05258413461538458 0.3829345703125 0.048377403846153855 0.3836669921875 0.048377403846153855 0.3829345703125 0.05258413461538458 0.0626220703125 0.9227764423076923 0.0626220703125 0.8464543269230769 0.0936279296875 0.8464543269230769 0.0938720703125 0.8464543269230769 0.0938720703125 0.9227764423076923 0.1248779296875 0.8464543269230769 0.0821533203125 0.21123798076923073 0.0821533203125 0.19260817307692313 0.0858154296875 0.19260817307692313 0.1016845703125 0.2118389423076923 0.1016845703125 0.23046875 0.1092529296875 0.2118389423076923 0.8946533203125 0.10546875 0.8983154296875 0.09645432692307687 0.8946533203125 0.09645432692307687 0.4217529296875 0.4618389423076923 0.4063720703125 0.4996995192307693 0.4063720703125 0.4618389423076923 0.8944091796875 0.09645432692307687 0.8927001953125 0.09645432692307687 0.8927001953125 0.10546875 0.3839111328125 0.048377403846153855 0.3839111328125 0.05258413461538458 0.3846435546875 0.048377403846153855 0.3848876953125 0.05258413461538458 0.3848876953125 0.048377403846153855 0.3865966796875 0.048377403846153855 0.3875732421875 0.048377403846153855 0.3868408203125 0.05258413461538458 0.3868408203125 0.048377403846153855 0.3878173828125 0.048377403846153855 0.3885498046875 0.048377403846153855 0.3878173828125 0.05258413461538458 0.3887939453125 0.048377403846153855 0.3905029296875 0.048377403846153855 0.3887939453125 0.05258413461538458 0.1094970703125 0.23046875 0.1094970703125 0.2118389423076923 0.1102294921875 0.2118389423076923 0.1251220703125 0.9227764423076923 0.1251220703125 0.8464543269230769 0.1561279296875 0.8464543269230769 0.8985595703125 0.10546875 0.8985595703125 0.09645432692307687 0.9002685546875 0.09645432692307687 0.9022216796875 0.09645432692307687 0.9005126953125 0.09645432692307687 0.9005126953125 0.10546875 0.9024658203125 0.10546875 0.9024658203125 0.09645432692307687 0.9061279296875 0.09645432692307687 0.8787841796875 0.08683894230769229 0.8751220703125 0.08683894230769229 0.8751220703125 0.09585336538461542 0.1134033203125 0.2118389423076923 0.1134033203125 0.23046875 0.1170654296875 0.2118389423076923 0.1248779296875 0.2118389423076923 0.1173095703125 0.23046875 0.1173095703125 0.2118389423076923 0.3907470703125 0.05258413461538458 0.3907470703125 0.048377403846153855 0.3914794921875 0.048377403846153855 0.3927001953125 0.048377403846153855 0.3927001953125 0.05258413461538458 0.3944091796875 0.048377403846153855 0.4219970703125 0.4996995192307693 0.4219970703125 0.4618389423076923 0.4373779296875 0.4618389423076923 0.8826904296875 0.08683894230769229 0.8790283203125 0.09585336538461542 0.8790283203125 0.08683894230769229 0.0975341796875 0.19260817307692313 0.0938720703125 0.21123798076923073 0.0938720703125 0.19260817307692313 0.3917236328125 0.05258413461538458 0.3924560546875 0.048377403846153855 0.3917236328125 0.048377403846153855 0.8829345703125 0.09585336538461542 0.8829345703125 0.08683894230769229 0.8865966796875 0.08683894230769229 0.8885498046875 0.08683894230769229 0.8868408203125 0.08683894230769229 0.8868408203125 0.09585336538461542 0.1563720703125 0.9227764423076923 0.1563720703125 0.8464543269230769 0.1873779296875 0.8464543269230769 0.1876220703125 0.8464543269230769 0.2186279296875 0.8464543269230769 0.1876220703125 0.9227764423076923 0.8887939453125 0.09585336538461542 0.8887939453125 0.08683894230769229 0.8905029296875 0.08683894230769229 0.8907470703125 0.08683894230769229 0.8924560546875 0.08683894230769229 0.8907470703125 0.09585336538461542 0.3946533203125 0.05258413461538458 0.3946533203125 0.048377403846153855 0.3963623046875 0.048377403846153855 0.2188720703125 0.8464543269230769 0.2498779296875 0.8464543269230769 0.2188720703125 0.9227764423076923 0.8946533203125 0.09585336538461542 0.8983154296875 0.08683894230769229 0.8946533203125 0.08683894230769229 0.0977783203125 0.19260817307692313 0.1014404296875 0.19260817307692313 0.0977783203125 0.21123798076923073 0.8927001953125 0.09585336538461542 0.8927001953125 0.08683894230769229 0.8944091796875 0.08683894230769229 0.9022216796875 0.08683894230769229 0.8985595703125 0.09585336538461542 0.8985595703125 0.08683894230769229 0.9024658203125 0.08683894230769229 0.9061279296875 0.08683894230769229 0.9024658203125 0.09585336538461542 0.8787841796875 0.07722355769230771 0.8751220703125 0.07722355769230771 0.8751220703125 0.08623798076923073 0.3966064453125 0.048377403846153855 0.3983154296875 0.048377403846153855 0.3966064453125 0.05258413461538458 0.8790283203125 0.07722355769230771 0.8790283203125 0.08623798076923073 0.8826904296875 0.07722355769230771 0.8829345703125 0.07722355769230771 0.8846435546875 0.07722355769230771 0.8829345703125 0.08623798076923073 0.8848876953125 0.07722355769230771 0.8865966796875 0.07722355769230771 0.8848876953125 0.08623798076923073 0.4376220703125 0.5381610576923077 0.4451904296875 0.5003004807692308 0.4376220703125 0.5003004807692308 0.4532470703125 0.5003004807692308 0.4532470703125 0.5381610576923077 0.4686279296875 0.5003004807692308 0.3985595703125 0.048377403846153855 0.3992919921875 0.048377403846153855 0.3985595703125 0.05258413461538458 0.8868408203125 0.08623798076923073 0.8868408203125 0.07722355769230771 0.8885498046875 0.07722355769230771 0.4530029296875 0.4618389423076923 0.4376220703125 0.4996995192307693 0.4376220703125 0.4618389423076923 0.8905029296875 0.07722355769230771 0.8887939453125 0.07722355769230771 0.8887939453125 0.08623798076923073 0.1307373046875 0.2118389423076923 0.1300048828125 0.2118389423076923 0.4532470703125 0.4618389423076923 0.4686279296875 0.4618389423076923 0.4532470703125 0.4996995192307693 0.1016845703125 0.19260817307692313 0.1016845703125 0.21123798076923073 0.1092529296875 0.19260817307692313 0.1094970703125 0.19260817307692313 0.1170654296875 0.19260817307692313 0.1094970703125 0.21123798076923073 0.1173095703125 0.19260817307692313 0.1173095703125 0.21123798076923073 0.1248779296875 0.19260817307692313 0.1014404296875 0.17337740384615385 0.0938720703125 0.17337740384615385 0.0938720703125 0.19200721153846156 0.4022216796875 0.048377403846153855 0.4005126953125 0.048377403846153855 0.4005126953125 0.05258413461538458 0.4024658203125 0.05258413461538458 0.4041748046875 0.048377403846153855 0.4024658203125 0.048377403846153855 0.4044189453125 0.048377403846153855 0.4061279296875 0.048377403846153855 0.4044189453125 0.05258413461538458 0.3995361328125 0.048377403846153855 0.3995361328125 0.05258413461538458 0.4002685546875 0.048377403846153855 0.1112060546875 0.2118389423076923 0.1104736328125 0.23046875 0.1104736328125 0.2118389423076923 0.4688720703125 0.5381610576923077 0.4688720703125 0.5003004807692308 0.4842529296875 0.5003004807692308 0.8907470703125 0.07722355769230771 0.8907470703125 0.08623798076923073 0.8924560546875 0.07722355769230771 0.8944091796875 0.07722355769230771 0.8927001953125 0.08623798076923073 0.8927001953125 0.07722355769230771 0.3768310546875 0.043569711538461564 0.3751220703125 0.04777644230769229 0.3751220703125 0.043569711538461564 0.1016845703125 0.19200721153846156 0.1016845703125 0.17337740384615385 0.1092529296875 0.17337740384615385 0.3306884765625 0.9035456730769231 0.3306884765625 0.8849158653846154 0.8946533203125 0.08623798076923073 0.8946533203125 0.07722355769230771 0.8963623046875 0.07722355769230771 0.8983154296875 0.07722355769230771 0.8966064453125 0.07722355769230771 0.8966064453125 0.08623798076923073 0.2501220703125 0.9227764423076923 0.2501220703125 0.8464543269230769 0.2811279296875 0.8464543269230769 0.2813720703125 0.8464543269230769 0.2813720703125 0.9227764423076923 0.3123779296875 0.8464543269230769 0.8985595703125 0.07722355769230771 0.8985595703125 0.08623798076923073 0.9002685546875 0.07722355769230771 0.4844970703125 0.5003004807692308 0.4844970703125 0.5381610576923077 0.4998779296875 0.5003004807692308 0.4688720703125 0.4618389423076923 0.4688720703125 0.4996995192307693 0.4842529296875 0.4618389423076923 0.3787841796875 0.043569711538461564 0.3770751953125 0.04777644230769229 0.3770751953125 0.043569711538461564 0.4844970703125 0.4618389423076923 0.4844970703125 0.4996995192307693 0.4998779296875 0.4618389423076923 0.3790283203125 0.043569711538461564 0.3797607421875 0.043569711538461564 0.3790283203125 0.04777644230769229 0.9024658203125 0.08623798076923073 0.9024658203125 0.07722355769230771 0.9061279296875 0.07722355769230771 0.5001220703125 0.5381610576923077 0.5155029296875 0.5003004807692308 0.5001220703125 0.5003004807692308 0.4530029296875 0.5003004807692308 0.4454345703125 0.5381610576923077 0.4454345703125 0.5003004807692308 0.1094970703125 0.17337740384615385 0.1094970703125 0.19200721153846156 0.1131591796875 0.17337740384615385 0.6873779296875 0.9233774038461539 0.6719970703125 0.9996995192307693 0.6719970703125 0.9233774038461539 0.3126220703125 0.9227764423076923 0.3280029296875 0.8464543269230769 0.3126220703125 0.8464543269230769 0.5157470703125 0.5003004807692308 0.1134033203125 0.17337740384615385 0.1134033203125 0.19200721153846156 0.1170654296875 0.17337740384615385 0.9100341796875 0.14453125 0.9063720703125 0.15354567307692313 0.9063720703125 0.14453125 0.3438720703125 0.9227764423076923 0.3438720703125 0.8464543269230769 0.3748779296875 0.8464543269230769 0.3751220703125 0.8464543269230769 0.4061279296875 0.8464543269230769 0.3751220703125 0.9227764423076923 0.9102783203125 0.14453125 0.9139404296875 0.14453125 0.9102783203125 0.15354567307692313 0.4063720703125 0.9227764423076923 0.4063720703125 0.8464543269230769 0.4373779296875 0.8464543269230769 0.4376220703125 0.8464543269230769 0.4686279296875 0.8464543269230769 0.4376220703125 0.9227764423076923 0.5001220703125 0.4618389423076923 0.5001220703125 0.4996995192307693 0.5155029296875 0.4618389423076923 0.9178466796875 0.14453125 0.9141845703125 0.14453125 0.9141845703125 0.15354567307692313 0.5311279296875 0.4618389423076923 0.5157470703125 0.4996995192307693 0.5157470703125 0.4618389423076923 0.3809814453125 0.043569711538461564 0.3826904296875 0.043569711538461564 0.3809814453125 0.04777644230769229 0.3800048828125 0.043569711538461564 0.3800048828125 0.04777644230769229 0.3807373046875 0.043569711538461564 0.4688720703125 0.9227764423076923 0.4688720703125 0.8464543269230769 0.4998779296875 0.8464543269230769 0.5001220703125 0.8464543269230769 0.5311279296875 0.8464543269230769 0.5001220703125 0.9227764423076923 0.5313720703125 0.9227764423076923 0.5313720703125 0.8464543269230769 0.5623779296875 0.8464543269230769 0.5626220703125 0.8464543269230769 0.5626220703125 0.9227764423076923 0.5936279296875 0.8464543269230769 0.1114501953125 0.2118389423076923 0.1114501953125 0.23046875 0.1121826171875 0.2118389423076923 0.5235595703125 0.5381610576923077 0.5311279296875 0.5003004807692308 0.5235595703125 0.5003004807692308 0.5313720703125 0.5003004807692308 0.5313720703125 0.5381610576923077 0.5467529296875 0.5003004807692308 0.7186279296875 0.5003004807692308 0.7110595703125 0.5381610576923077 0.1248779296875 0.17337740384615385 0.1173095703125 0.19200721153846156 0.1173095703125 0.17337740384615385 0.3829345703125 0.04777644230769229 0.3846435546875 0.043569711538461564 0.3829345703125 0.043569711538461564 0.9005126953125 0.07722355769230771 0.9022216796875 0.07722355769230771 0.9005126953125 0.08623798076923073 0.9180908203125 0.15354567307692313 0.9217529296875 0.14453125 0.9180908203125 0.14453125 0.9219970703125 0.15354567307692313 0.9256591796875 0.14453125 0.9219970703125 0.14453125 0.5469970703125 0.5381610576923077 0.5545654296875 0.5003004807692308 0.5469970703125 0.5003004807692308 0.3287353515625 0.8843149038461539 0.3287353515625 0.8656850961538461 0.3848876953125 0.04777644230769229 0.3865966796875 0.043569711538461564 0.3848876953125 0.043569711538461564 0.5313720703125 0.4996995192307693 0.5467529296875 0.4618389423076923 0.5313720703125 0.4618389423076923 0.9295654296875 0.14453125 0.9259033203125 0.15354567307692313 0.9259033203125 0.14453125 0.9334716796875 0.14453125 0.9298095703125 0.15354567307692313 0.9298095703125 0.14453125 0.5623779296875 0.4618389423076923 0.5469970703125 0.4618389423076923 0.5469970703125 0.4996995192307693 0.1124267578125 0.2118389423076923 0.1124267578125 0.23046875 0.1131591796875 0.2118389423076923 0.9337158203125 0.15354567307692313 0.9337158203125 0.14453125 0.9373779296875 0.14453125 0.5548095703125 0.5381610576923077 0.5548095703125 0.5003004807692308 0.5623779296875 0.5003004807692308 0.5701904296875 0.5003004807692308 0.5626220703125 0.5381610576923077 0.5626220703125 0.5003004807692308 0.7447509765625 0.11508413461538458 0.7447509765625 0.10606971153846156 0.0938720703125 0.1727764423076923 0.0938720703125 0.15414663461538458 0.0975341796875 0.15414663461538458 0.1016845703125 0.15414663461538458 0.1016845703125 0.1727764423076923 0.1092529296875 0.15414663461538458 0.3868408203125 0.043569711538461564 0.3885498046875 0.043569711538461564 0.3868408203125 0.04777644230769229 0.9063720703125 0.14393028846153844 0.9063720703125 0.13491586538461542 0.9100341796875 0.13491586538461542 0.9102783203125 0.13491586538461542 0.9102783203125 0.14393028846153844 0.9139404296875 0.13491586538461542 0.0977783203125 0.15414663461538458 0.1014404296875 0.15414663461538458 0.0977783203125 0.1727764423076923 0.1094970703125 0.15414663461538458 0.1094970703125 0.1727764423076923 0.1131591796875 0.15414663461538458 0.5704345703125 0.5381610576923077 0.5780029296875 0.5003004807692308 0.5704345703125 0.5003004807692308 0.7452392578125 0.11508413461538458 0.7452392578125 0.10606971153846156 0.5858154296875 0.5003004807692308 0.5782470703125 0.5381610576923077 0.5782470703125 0.5003004807692308 0.9141845703125 0.14393028846153844 0.9178466796875 0.13491586538461542 0.9141845703125 0.13491586538461542 0.1134033203125 0.1727764423076923 0.1134033203125 0.15414663461538458 0.1170654296875 0.15414663461538458 0.3297119140625 0.9227764423076923 0.3297119140625 0.8849158653846154 0.5938720703125 0.8464543269230769 0.6248779296875 0.8464543269230769 0.5938720703125 0.9227764423076923 0.9180908203125 0.13491586538461542 0.9217529296875 0.13491586538461542 0.9180908203125 0.14393028846153844 0.3887939453125 0.043569711538461564 0.3905029296875 0.043569711538461564 0.3887939453125 0.04777644230769229 0.6251220703125 0.9227764423076923 0.6251220703125 0.8464543269230769 0.6561279296875 0.8464543269230769 0.3287353515625 0.8650841346153846 0.3287353515625 0.8464543269230769 0.9219970703125 0.14393028846153844 0.9219970703125 0.13491586538461542 0.9237060546875 0.13491586538461542 0.1173095703125 0.15414663461538458 0.1248779296875 0.15414663461538458 0.1173095703125 0.1727764423076923 0.9239501953125 0.14393028846153844 0.9239501953125 0.13491586538461542 0.9256591796875 0.13491586538461542 0.6563720703125 0.8464543269230769 0.6873779296875 0.8464543269230769 0.6563720703125 0.9227764423076923 0.9259033203125 0.14393028846153844 0.9276123046875 0.13491586538461542 0.9259033203125 0.13491586538461542 0.9298095703125 0.13491586538461542 0.9334716796875 0.13491586538461542 0.9298095703125 0.14393028846153844 0.9337158203125 0.14393028846153844 0.9337158203125 0.13491586538461542 0.9373779296875 0.13491586538461542 0.3924560546875 0.043569711538461564 0.3907470703125 0.043569711538461564 0.3907470703125 0.04777644230769229 0.9063720703125 0.13431490384615385 0.9100341796875 0.12530048076923073 0.9063720703125 0.12530048076923073 0.6876220703125 0.8464543269230769 0.7186279296875 0.8464543269230769 0.6876220703125 0.9227764423076923 0.9102783203125 0.13431490384615385 0.9139404296875 0.12530048076923073 0.9102783203125 0.12530048076923073 0.7188720703125 0.8464543269230769 0.7498779296875 0.8464543269230769 0.7188720703125 0.9227764423076923 0.9178466796875 0.12530048076923073 0.9141845703125 0.12530048076923073 0.9141845703125 0.13431490384615385 0.3944091796875 0.043569711538461564 0.3927001953125 0.043569711538461564 0.3927001953125 0.04777644230769229 0.5626220703125 0.4618389423076923 0.5780029296875 0.4618389423076923 0.5626220703125 0.4996995192307693 0.3953857421875 0.043569711538461564 0.3946533203125 0.043569711538461564 0.3946533203125 0.04777644230769229 0.9180908203125 0.12530048076923073 0.9180908203125 0.13431490384615385 0.9217529296875 0.12530048076923073 0.9256591796875 0.12530048076923073 0.9219970703125 0.12530048076923073 0.9219970703125 0.13431490384615385 0.3809814453125 0.03395432692307687 0.3809814453125 0.03816105769230771 0.9219970703125 0.09645432692307687 0.9237060546875 0.09645432692307687 0.3966064453125 0.043569711538461564 0.3983154296875 0.043569711538461564 0.3966064453125 0.04777644230769229 0.3985595703125 0.04777644230769229 0.3985595703125 0.043569711538461564 0.4002685546875 0.043569711538461564 0.4022216796875 0.043569711538461564 0.4005126953125 0.043569711538461564 0.4005126953125 0.04777644230769229 0.5782470703125 0.4996995192307693 0.5782470703125 0.4618389423076923 0.5936279296875 0.4618389423076923 0.9295654296875 0.13491586538461542 0.9278564453125 0.14393028846153844 0.9278564453125 0.13491586538461542 0.4041748046875 0.043569711538461564 0.4024658203125 0.04777644230769229 0.4024658203125 0.043569711538461564 0.9259033203125 0.12530048076923073 0.9295654296875 0.12530048076923073 0.9259033203125 0.13431490384615385 0.4044189453125 0.04777644230769229 0.4044189453125 0.043569711538461564 0.4061279296875 0.043569711538461564 0.1251220703125 0.23046875 0.1251220703125 0.2118389423076923 0.1287841796875 0.2118389423076923 0.5860595703125 0.5003004807692308 0.5860595703125 0.5381610576923077 0.5936279296875 0.5003004807692308 0.9298095703125 0.13431490384615385 0.9334716796875 0.12530048076923073 0.9298095703125 0.12530048076923073 0.9337158203125 0.12530048076923073 0.9337158203125 0.13431490384615385 0.9373779296875 0.12530048076923073 0.6014404296875 0.5003004807692308 0.5938720703125 0.5003004807692308 0.5938720703125 0.5381610576923077 0.1329345703125 0.2118389423076923 0.1329345703125 0.23046875 0.1405029296875 0.2118389423076923 0.7501220703125 0.8464543269230769 0.7811279296875 0.8464543269230769 0.7501220703125 0.9227764423076923 0.9063720703125 0.12469951923076927 0.9063720703125 0.11568509615384615 0.9100341796875 0.11568509615384615 0.1290283203125 0.2118389423076923 0.1297607421875 0.2118389423076923 0.1290283203125 0.23046875 0.6094970703125 0.5381610576923077 0.6248779296875 0.5003004807692308 0.6094970703125 0.5003004807692308 0.3751220703125 0.038762019230769273 0.3768310546875 0.038762019230769273 0.3751220703125 0.04296875 0.9102783203125 0.12469951923076927 0.9102783203125 0.11568509615384615 0.9139404296875 0.11568509615384615 0.3787841796875 0.038762019230769273 0.3770751953125 0.038762019230769273 0.3770751953125 0.04296875 0.9141845703125 0.12469951923076927 0.9158935546875 0.11568509615384615 0.9141845703125 0.11568509615384615 0.1444091796875 0.2118389423076923 0.1407470703125 0.2118389423076923 0.1407470703125 0.23046875 0.9180908203125 0.11568509615384615 0.9217529296875 0.11568509615384615 0.9180908203125 0.12469951923076927 0.7432861328125 0.11508413461538458 0.7432861328125 0.09645432692307687 0.6092529296875 0.4618389423076923 0.5938720703125 0.4618389423076923 0.5938720703125 0.4996995192307693 0.3963623046875 0.043569711538461564 0.3956298828125 0.04777644230769229 0.3956298828125 0.043569711538461564 0.3790283203125 0.04296875 0.3807373046875 0.038762019230769273 0.3790283203125 0.038762019230769273 0.1446533203125 0.23046875 0.1446533203125 0.2118389423076923 0.1483154296875 0.2118389423076923 0.1485595703125 0.23046875 0.1485595703125 0.2118389423076923 0.1561279296875 0.2118389423076923 0.6016845703125 0.5381610576923077 0.6092529296875 0.5003004807692308 0.6016845703125 0.5003004807692308 0.1287841796875 0.19260817307692313 0.1251220703125 0.21123798076923073 0.1251220703125 0.19260817307692313 0.1329345703125 0.21123798076923073 0.1329345703125 0.19260817307692313 0.1405029296875 0.19260817307692313 0.1407470703125 0.19260817307692313 0.1407470703125 0.21123798076923073 0.1483154296875 0.19260817307692313 0.6094970703125 0.4618389423076923 0.6170654296875 0.4618389423076923 0.6094970703125 0.4996995192307693 0.3809814453125 0.038762019230769273 0.3826904296875 0.038762019230769273 0.3809814453125 0.04296875 0.9161376953125 0.12469951923076927 0.9161376953125 0.11568509615384615 0.9178466796875 0.11568509615384615 0.1524658203125 0.19200721153846156 0.1561279296875 0.17337740384615385 0.6405029296875 0.5003004807692308 0.6251220703125 0.5003004807692308 0.6251220703125 0.5381610576923077 0.6407470703125 0.5003004807692308 0.6407470703125 0.5381610576923077 0.6561279296875 0.5003004807692308 0.9219970703125 0.12469951923076927 0.9219970703125 0.11568509615384615 0.9256591796875 0.11568509615384615 0.1290283203125 0.21123798076923073 0.1290283203125 0.19260817307692313 0.1326904296875 0.19260817307692313 0.7457275390625 0.11508413461538458 0.7457275390625 0.10606971153846156 0.1485595703125 0.21123798076923073 0.1522216796875 0.19260817307692313 0.1485595703125 0.19260817307692313 0.1524658203125 0.19260817307692313 0.1524658203125 0.21123798076923073 0.1561279296875 0.19260817307692313 0.6173095703125 0.4618389423076923 0.6248779296875 0.4618389423076923 0.6173095703125 0.4996995192307693 0.9259033203125 0.11568509615384615 0.9295654296875 0.11568509615384615 0.9259033203125 0.12469951923076927 0.9298095703125 0.12469951923076927 0.9298095703125 0.11568509615384615 0.9315185546875 0.11568509615384615 0.1251220703125 0.17337740384615385 0.1251220703125 0.19200721153846156 0.1287841796875 0.17337740384615385 0.1329345703125 0.17337740384615385 0.1329345703125 0.19200721153846156 0.1405029296875 0.17337740384615385 0.9337158203125 0.11568509615384615 0.9373779296875 0.11568509615384615 0.9337158203125 0.12469951923076927 0.3836669921875 0.038762019230769273 0.3829345703125 0.038762019230769273 0.3829345703125 0.04296875 0.9317626953125 0.12469951923076927 0.9334716796875 0.11568509615384615 0.9317626953125 0.11568509615384615 0.9063720703125 0.11508413461538458 0.9063720703125 0.10606971153846156 0.9100341796875 0.10606971153846156 0.9102783203125 0.10606971153846156 0.9139404296875 0.10606971153846156 0.9102783203125 0.11508413461538458 0.3848876953125 0.038762019230769273 0.3848876953125 0.04296875 0.3865966796875 0.038762019230769273 0.7813720703125 0.8464543269230769 0.7813720703125 0.9227764423076923 0.8123779296875 0.8464543269230769 0.8126220703125 0.8464543269230769 0.8436279296875 0.8464543269230769 0.8126220703125 0.9227764423076923 0.9141845703125 0.11508413461538458 0.9141845703125 0.10606971153846156 0.9158935546875 0.10606971153846156 0.9217529296875 0.10606971153846156 0.9180908203125 0.10606971153846156 0.9180908203125 0.11508413461538458 0.9161376953125 0.11508413461538458 0.9161376953125 0.10606971153846156 0.9178466796875 0.10606971153846156 0.9219970703125 0.11508413461538458 0.9219970703125 0.10606971153846156 0.9256591796875 0.10606971153846156 0.9259033203125 0.10606971153846156 0.9276123046875 0.10606971153846156 0.9259033203125 0.11508413461538458 0.9278564453125 0.10606971153846156 0.9278564453125 0.11508413461538458 0.9295654296875 0.10606971153846156 0.9334716796875 0.10606971153846156 0.9298095703125 0.10606971153846156 0.9298095703125 0.11508413461538458 0.1300048828125 0.23046875 0.8438720703125 0.9227764423076923 0.8438720703125 0.8464543269230769 0.8748779296875 0.8464543269230769 0.8751220703125 0.8464543269230769 0.8751220703125 0.9227764423076923 0.9061279296875 0.8464543269230769 0.3868408203125 0.04296875 0.3868408203125 0.038762019230769273 0.3885498046875 0.038762019230769273 0.6251220703125 0.4996995192307693 0.6251220703125 0.4618389423076923 0.6405029296875 0.4618389423076923 0.9337158203125 0.11508413461538458 0.9354248046875 0.10606971153846156 0.9337158203125 0.10606971153846156 0.9356689453125 0.11508413461538458 0.9356689453125 0.10606971153846156 0.9373779296875 0.10606971153846156 0.9063720703125 0.09645432692307687 0.9080810546875 0.09645432692307687 0.9063720703125 0.10546875 0.9102783203125 0.10546875 0.9102783203125 0.09645432692307687 0.9139404296875 0.09645432692307687 0.9141845703125 0.09645432692307687 0.9178466796875 0.09645432692307687 0.9141845703125 0.10546875 0.9063720703125 0.9227764423076923 0.9063720703125 0.8464543269230769 0.9373779296875 0.8464543269230769 0.1309814453125 0.2118389423076923 0.1317138671875 0.2118389423076923 0.1309814453125 0.23046875 0.9083251953125 0.10546875 0.9083251953125 0.09645432692307687 0.9100341796875 0.09645432692307687 0.3887939453125 0.038762019230769273 0.3887939453125 0.04296875 0.3905029296875 0.038762019230769273 0.6407470703125 0.4996995192307693 0.6407470703125 0.4618389423076923 0.6561279296875 0.4618389423076923 0.3907470703125 0.038762019230769273 0.3924560546875 0.038762019230769273 0.3907470703125 0.04296875 0.1326904296875 0.17337740384615385 0.1290283203125 0.17337740384615385 0.3839111328125 0.04296875 0.3846435546875 0.038762019230769273 0.3839111328125 0.038762019230769273 0.9180908203125 0.10546875 0.9180908203125 0.09645432692307687 0.9197998046875 0.09645432692307687 0.9200439453125 0.09645432692307687 0.9217529296875 0.09645432692307687 0.9200439453125 0.10546875 0.9219970703125 0.10546875 0.9376220703125 0.9227764423076923 0.9376220703125 0.8464543269230769 0.9686279296875 0.8464543269230769 0.6563720703125 0.5381610576923077 0.9256591796875 0.09645432692307687 0.9239501953125 0.10546875 0.9239501953125 0.09645432692307687 0.1290283203125 0.19200721153846156 0.9259033203125 0.10546875 0.9259033203125 0.09645432692307687 0.9276123046875 0.09645432692307687 0.3927001953125 0.038762019230769273 0.3927001953125 0.04296875 0.3944091796875 0.038762019230769273 0.3963623046875 0.038762019230769273 0.3946533203125 0.038762019230769273 0.3946533203125 0.04296875 0.9688720703125 0.8464543269230769 0.9688720703125 0.9227764423076923 0.9998779296875 0.8464543269230769 0.0001220703125 0.76953125 0.0311279296875 0.76953125 0.0001220703125 0.8458533653846154 0.9295654296875 0.09645432692307687 0.9278564453125 0.10546875 0.9278564453125 0.09645432692307687 0.0313720703125 0.8458533653846154 0.0313720703125 0.76953125 0.0623779296875 0.76953125 0.9315185546875 0.09645432692307687 0.9298095703125 0.09645432692307687 0.9298095703125 0.10546875 0.9337158203125 0.10546875 0.9373779296875 0.09645432692307687 0.9337158203125 0.09645432692307687 0.3983154296875 0.038762019230769273 0.3966064453125 0.038762019230769273 0.3966064453125 0.04296875 0.3985595703125 0.04296875 0.4002685546875 0.038762019230769273 0.3985595703125 0.038762019230769273 0.4022216796875 0.038762019230769273 0.4005126953125 0.038762019230769273 0.4005126953125 0.04296875 0.9317626953125 0.10546875 0.9334716796875 0.09645432692307687 0.9317626953125 0.09645432692307687 0.6717529296875 0.5003004807692308 0.6641845703125 0.5003004807692308 0.6641845703125 0.5381610576923077 0.9063720703125 0.09585336538461542 0.9080810546875 0.08683894230769229 0.9063720703125 0.08683894230769229 0.9083251953125 0.08683894230769229 0.9083251953125 0.09585336538461542 0.9100341796875 0.08683894230769229 0.9102783203125 0.09585336538461542 0.9119873046875 0.08683894230769229 0.9102783203125 0.08683894230769229 0.9122314453125 0.08683894230769229 0.9122314453125 0.09585336538461542 0.9139404296875 0.08683894230769229 0.9141845703125 0.09585336538461542 0.9141845703125 0.08683894230769229 0.9178466796875 0.08683894230769229 0.6719970703125 0.5381610576923077 0.6873779296875 0.5003004807692308 0.6719970703125 0.5003004807692308 0.6563720703125 0.4618389423076923 0.6563720703125 0.4996995192307693 0.6717529296875 0.4618389423076923 0.6873779296875 0.4618389423076923 0.6719970703125 0.4996995192307693 0.6719970703125 0.4618389423076923 0.9217529296875 0.08683894230769229 0.9180908203125 0.08683894230769229 0.9180908203125 0.09585336538461542 0.4024658203125 0.038762019230769273 0.4041748046875 0.038762019230769273 0.4024658203125 0.04296875 0.6951904296875 0.5003004807692308 0.6876220703125 0.5003004807692308 0.6876220703125 0.5381610576923077 0.4061279296875 0.038762019230769273 0.4044189453125 0.038762019230769273 0.4044189453125 0.04296875 0.1319580078125 0.23046875 0.1326904296875 0.2118389423076923 0.1319580078125 0.2118389423076923 0.9237060546875 0.08683894230769229 0.9219970703125 0.09585336538461542 0.9219970703125 0.08683894230769229 0.9239501953125 0.08683894230769229 0.9256591796875 0.08683894230769229 0.9239501953125 0.09585336538461542 0.9259033203125 0.09585336538461542 0.9259033203125 0.08683894230769229 0.9295654296875 0.08683894230769229 0.9315185546875 0.08683894230769229 0.9298095703125 0.09585336538461542 0.9298095703125 0.08683894230769229 0.1483154296875 0.17337740384615385 0.1407470703125 0.17337740384615385 0.1407470703125 0.19200721153846156 0.9337158203125 0.09585336538461542 0.9337158203125 0.08683894230769229 0.9373779296875 0.08683894230769229 0.1522216796875 0.17337740384615385 0.1485595703125 0.17337740384615385 0.1485595703125 0.19200721153846156 0.1524658203125 0.17337740384615385 0.3751220703125 0.03395432692307687 0.3751220703125 0.03816105769230771 0.3768310546875 0.03395432692307687 0.7030029296875 0.5003004807692308 0.6954345703125 0.5003004807692308 0.6954345703125 0.5381610576923077 0.9317626953125 0.08683894230769229 0.9317626953125 0.09585336538461542 0.9334716796875 0.08683894230769229 0.1251220703125 0.1727764423076923 0.1326904296875 0.15414663461538458 0.1251220703125 0.15414663461538458 0.7032470703125 0.5381610576923077 0.7108154296875 0.5003004807692308 0.7032470703125 0.5003004807692308 0.9100341796875 0.07722355769230771 0.9063720703125 0.08623798076923073 0.9063720703125 0.07722355769230771 0.9102783203125 0.08623798076923073 0.9119873046875 0.07722355769230771 0.9102783203125 0.07722355769230771 0.6876220703125 0.4996995192307693 0.7030029296875 0.4618389423076923 0.6876220703125 0.4618389423076923 0.9141845703125 0.07722355769230771 0.9178466796875 0.07722355769230771 0.9141845703125 0.08623798076923073 0.7032470703125 0.4996995192307693 0.7186279296875 0.4618389423076923 0.7032470703125 0.4618389423076923 0.3770751953125 0.03816105769230771 0.3787841796875 0.03395432692307687 0.3770751953125 0.03395432692307687 0.0626220703125 0.8458533653846154 0.0626220703125 0.76953125 0.0936279296875 0.76953125 0.1329345703125 0.15414663461538458 0.1329345703125 0.1727764423076923 0.1405029296875 0.15414663461538458 0.1407470703125 0.15414663461538458 0.1483154296875 0.15414663461538458 0.1407470703125 0.1727764423076923 0.0938720703125 0.76953125 0.0938720703125 0.8458533653846154 0.1248779296875 0.76953125 0.1251220703125 0.76953125 0.1561279296875 0.76953125 0.1251220703125 0.8458533653846154 0.9180908203125 0.07722355769230771 0.9180908203125 0.08623798076923073 0.9217529296875 0.07722355769230771 0.9139404296875 0.07722355769230771 0.9122314453125 0.07722355769230771 0.9122314453125 0.08623798076923073 0.7188720703125 0.5003004807692308 0.7342529296875 0.5003004807692308 0.7188720703125 0.5381610576923077 0.3807373046875 0.03395432692307687 0.3790283203125 0.03816105769230771 0.3790283203125 0.03395432692307687 0.3826904296875 0.03395432692307687 0.9219970703125 0.08623798076923073 0.9219970703125 0.07722355769230771 0.9237060546875 0.07722355769230771 0.9295654296875 0.07722355769230771 0.9259033203125 0.07722355769230771 0.9259033203125 0.08623798076923073 0.1485595703125 0.1727764423076923 0.1522216796875 0.15414663461538458 0.1485595703125 0.15414663461538458 0.9334716796875 0.07722355769230771 0.9298095703125 0.08623798076923073 0.9298095703125 0.07722355769230771 0.9337158203125 0.08623798076923073 0.9373779296875 0.07722355769230771 0.9337158203125 0.07722355769230771 0.3836669921875 0.03395432692307687 0.3829345703125 0.03816105769230771 0.3829345703125 0.03395432692307687 0.7344970703125 0.5381610576923077 0.7344970703125 0.5003004807692308 0.7498779296875 0.5003004807692308 0.9239501953125 0.07722355769230771 0.9256591796875 0.07722355769230771 0.9239501953125 0.08623798076923073 0.7188720703125 0.4996995192307693 0.7342529296875 0.4618389423076923 0.7188720703125 0.4618389423076923 0.7110595703125 0.5003004807692308 0.3865966796875 0.03395432692307687 0.3848876953125 0.03395432692307687 0.3848876953125 0.03816105769230771 0.7344970703125 0.4996995192307693 0.7498779296875 0.4618389423076923 0.7344970703125 0.4618389423076923 0.1563720703125 0.76953125 0.1563720703125 0.8458533653846154 0.1873779296875 0.76953125 0.1876220703125 0.8458533653846154 0.1876220703125 0.76953125 0.2186279296875 0.76953125 0.7576904296875 0.5003004807692308 0.7501220703125 0.5003004807692308 0.7501220703125 0.5381610576923077 0.2188720703125 0.8458533653846154 0.2188720703125 0.76953125 0.2498779296875 0.76953125 0.2501220703125 0.8458533653846154 0.2501220703125 0.76953125 0.2811279296875 0.76953125 0.9376220703125 0.14453125 0.9393310546875 0.14453125 0.9376220703125 0.15354567307692313 0.9451904296875 0.14453125 0.9415283203125 0.15354567307692313 0.9415283203125 0.14453125 0.2813720703125 0.76953125 0.2813720703125 0.8458533653846154 0.3123779296875 0.76953125 0.3436279296875 0.76953125 0.3126220703125 0.8458533653846154 0.3126220703125 0.76953125 0.3302001953125 0.9227764423076923 0.3302001953125 0.8849158653846154 0.9395751953125 0.15354567307692313 0.9395751953125 0.14453125 0.9412841796875 0.14453125 0.3868408203125 0.03816105769230771 0.3868408203125 0.03395432692307687 0.3885498046875 0.03395432692307687 0.3887939453125 0.03816105769230771 0.3905029296875 0.03395432692307687 0.3887939453125 0.03395432692307687 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 0 1 1 0 2 3 3 1 4 2 5 4 6 3 7 2 8 5 9 3 10 4 11 6 12 5 13 4 14 7 15 5 16 6 17 8 18 7 19 6 20 9 21 7 22 8 23 10 24 9 25 8 26 11 24 9 25 10 24 13 27 0 28 12 29 14 30 0 31 13 32 15 33 14 34 13 35 16 36 14 37 15 38 17 39 16 40 15 41 18 42 16 43 17 44 19 45 18 46 17 47 20 48 18 49 19 50 21 51 20 52 19 53 22 51 20 52 21 51 25 54 24 55 23 56 26 57 24 58 25 59 27 60 26 61 25 62 28 63 26 64 27 65 29 66 28 67 27 68 30 69 28 70 29 71 31 69 30 69 29 71 32 72 30 73 31 73 33 74 32 72 31 73 34 75 32 76 33 75 37 77 36 78 35 78 38 79 36 78 37 77 39 80 38 81 37 82 40 81 38 81 39 80 41 83 40 84 39 85 42 86 40 87 41 88 43 89 42 90 41 91 44 89 42 90 43 89 45 92 44 92 43 92 46 92 44 92 45 92 49 93 48 94 47 94 50 95 48 94 49 93 51 96 50 97 49 98 52 99 50 100 51 101 53 102 52 103 51 104 54 105 52 106 53 107 55 108 54 109 53 110 56 111 54 112 55 113 57 114 56 115 55 116 58 117 56 118 57 119 61 120 60 121 59 121 62 122 60 121 61 120 63 123 62 124 61 125 64 126 62 127 63 128 65 129 64 130 63 131 66 132 64 133 65 134 67 135 66 136 65 137 68 138 66 139 67 140 69 141 68 142 67 143 70 144 68 145 69 146 72 92 23 147 71 92 73 148 23 147 72 92 74 149 73 150 72 151 75 152 73 153 74 154 76 155 75 156 74 157 77 158 75 159 76 160 78 161 77 162 76 163 79 164 77 165 78 166 80 167 79 168 78 169 33 167 79 168 80 167 83 170 82 171 81 171 84 171 82 171 83 170 85 170 84 171 83 170 86 170 84 171 85 170 87 172 86 172 85 172 88 172 86 172 87 172 89 172 88 172 87 172 90 173 88 174 89 174 91 175 90 173 89 174 92 175 90 173 91 175 95 176 94 177 93 177 96 178 94 177 95 176 97 179 96 180 95 181 98 182 96 183 97 184 99 185 98 186 97 187 100 186 98 186 99 185 101 188 100 189 99 190 102 191 100 192 101 193 103 194 102 194 101 195 106 172 105 196 104 196 107 172 105 196 106 172 108 172 107 172 106 172 109 197 107 198 108 198 110 199 109 200 108 201 111 199 109 200 110 199 112 92 111 92 110 92 113 92 111 92 112 92 115 92 103 92 114 92 102 92 103 92 115 92 116 202 102 203 115 203 100 204 102 203 116 202 117 205 100 206 116 207 98 208 100 208 117 209 118 210 98 208 117 209 96 211 98 212 118 213 50 52 34 51 48 51 119 214 34 215 50 216 52 217 119 218 50 219 120 220 119 221 52 222 54 223 120 224 52 225 28 226 120 227 54 228 56 229 28 230 54 231 58 232 28 233 56 234 64 235 122 236 121 237 123 238 122 239 64 240 124 241 123 242 64 243 125 244 123 245 124 246 68 247 125 248 124 249 126 250 125 251 68 252 70 253 126 254 68 255 129 256 128 257 127 258 130 259 128 260 129 261 131 262 130 263 129 264 132 265 130 266 131 267 133 267 132 265 131 267 101 195 132 268 133 194 134 194 101 195 133 194 137 269 136 270 135 270 138 271 136 270 137 269 139 272 138 273 137 274 140 275 138 276 139 277 141 278 140 279 139 280 142 281 140 282 141 283 143 284 142 285 141 286 107 172 144 287 105 196 145 288 144 289 107 290 127 291 145 292 107 293 146 294 145 295 127 296 128 297 146 298 127 299 147 300 146 301 128 302 148 303 147 304 128 305 151 306 150 307 149 308 152 309 150 310 151 311 153 312 152 313 151 314 154 313 152 313 153 312 155 315 154 316 153 317 156 316 154 316 155 315 108 318 157 319 110 320 158 318 157 319 108 318 106 172 158 172 108 172 159 172 158 172 106 172 104 196 159 172 106 172 160 196 159 172 104 196 163 321 162 322 161 323 164 324 162 325 163 326 165 327 164 328 163 329 166 330 164 331 165 332 167 333 166 334 165 335 168 333 166 334 167 333 171 336 170 337 169 337 172 338 170 337 171 336 173 339 172 340 171 341 174 342 172 343 173 344 175 345 174 346 173 347 176 348 174 349 175 350 177 351 169 352 167 352 171 353 169 352 177 351 178 354 171 355 177 356 173 357 171 358 178 359 179 360 173 361 178 362 175 363 173 364 179 365 109 197 127 366 107 198 129 367 127 368 109 369 111 370 129 371 109 372 131 262 129 264 111 262 113 92 131 92 111 92 133 92 131 92 113 92 182 373 181 374 180 375 183 376 181 377 182 378 184 379 183 380 182 381 185 382 183 383 184 384 168 385 185 386 184 387 186 385 185 386 168 385 188 388 149 389 187 390 151 391 149 392 188 393 185 394 151 395 188 396 189 397 151 398 185 399 186 400 189 401 185 402 155 403 189 404 186 405 192 406 191 407 190 408 193 409 191 410 192 411 194 412 193 413 192 414 195 415 193 416 194 417 196 418 195 419 194 420 199 421 198 422 197 422 200 423 198 422 199 421 201 424 200 425 199 426 202 427 200 428 201 429 203 430 202 431 201 432 205 170 81 171 204 171 83 170 81 171 205 170 206 172 83 172 205 172 85 172 83 172 206 172 87 172 85 172 206 172 209 433 208 434 207 434 210 435 208 434 209 433 211 436 210 437 209 438 212 439 210 440 211 441 213 440 212 439 211 441 216 442 215 443 214 444 217 445 215 446 216 447 218 448 217 449 216 450 219 451 217 452 218 453 220 454 219 455 218 456 223 351 222 352 221 352 224 457 222 458 223 459 225 460 224 461 223 462 226 463 224 464 225 465 227 466 226 467 225 468 229 469 228 470 142 471 230 472 228 473 229 474 231 475 230 476 229 477 232 478 230 479 231 480 233 481 232 482 231 483 236 172 235 172 234 196 237 172 235 172 236 172 238 172 237 172 236 172 239 172 237 172 238 172 240 171 239 170 238 170 243 484 242 485 241 486 244 487 242 488 243 489 245 490 244 491 243 492 246 493 244 494 245 495 247 496 246 497 245 498 250 499 249 500 248 500 239 501 249 500 250 499 251 501 239 501 250 499 237 172 239 172 251 172 235 172 237 172 251 172 254 502 253 503 252 504 255 505 253 506 254 507 256 508 255 509 254 510 257 508 255 509 256 508 259 172 234 196 258 196 236 172 234 196 259 172 260 511 236 512 259 512 261 513 236 512 260 511 263 172 262 172 158 172 264 171 262 170 263 170 248 171 264 171 263 170 265 92 264 92 248 92 261 514 238 515 236 515 240 516 238 515 261 514 266 516 240 516 261 514 267 92 240 92 266 92 269 517 268 518 253 519 270 520 268 521 269 522 271 523 270 524 269 525 272 526 270 527 271 528 275 529 274 530 273 531 276 532 274 533 275 534 277 535 276 536 275 537 278 538 276 539 277 540 281 541 280 542 279 543 203 544 280 545 281 546 282 547 203 548 281 549 202 550 203 551 282 552 285 553 284 554 283 555 286 556 284 557 285 558 287 559 286 560 285 561 288 562 286 563 287 564 43 92 289 92 45 92 290 565 289 566 43 566 291 567 290 565 43 566 292 568 290 569 291 570 295 172 294 172 293 172 86 172 294 172 295 172 296 172 86 172 295 172 297 171 86 170 296 170 300 571 299 572 298 573 301 574 299 575 300 576 302 574 301 574 300 576 71 92 301 92 302 92 305 577 304 578 303 578 306 579 304 578 305 577 307 580 306 581 305 582 308 583 306 584 307 585 138 271 309 270 136 270 310 586 309 587 138 588 140 589 310 590 138 591 142 281 310 283 140 282 313 592 312 592 311 593 314 594 312 595 313 595 315 596 314 594 313 595 316 51 314 53 315 51 130 597 148 598 128 599 99 600 148 601 130 602 132 603 99 604 130 605 101 606 99 607 132 608 16 609 4 610 317 611 318 41 4 39 16 40 18 612 318 613 16 614 20 614 318 613 18 612 320 170 319 170 44 171 40 172 319 172 320 172 321 172 40 172 320 172 293 172 40 172 321 172 278 615 322 616 276 617 323 618 322 619 278 620 324 621 323 622 278 623 325 624 323 625 324 626 318 627 326 628 4 629 327 630 326 631 318 632 20 633 327 634 318 635 22 636 327 637 20 638 330 92 329 92 328 92 331 639 329 640 330 640 332 641 331 642 330 643 333 644 331 645 332 646 336 647 335 648 334 649 125 650 335 651 336 652 337 653 125 654 336 655 340 656 339 657 338 657 341 657 339 657 340 656 288 658 341 657 340 656 19 53 197 51 342 51 343 659 197 660 19 661 344 662 343 663 19 664 346 665 345 666 256 666 347 667 345 666 346 665 348 668 347 669 346 670 351 671 350 672 349 673 352 674 350 675 351 676 221 657 352 657 351 656 293 172 92 287 353 196 354 172 92 287 293 172 294 172 354 172 293 172 357 677 356 678 355 678 358 679 356 678 357 677 359 680 358 681 357 682 289 92 360 92 45 92 361 92 360 92 289 92 362 92 361 92 289 92 363 683 206 684 205 684 364 685 206 684 363 683 365 686 364 687 363 688 78 76 366 75 80 75 367 689 366 75 78 76 76 690 367 691 78 692 368 693 55 694 53 695 57 696 55 697 368 698 369 699 57 700 368 701 110 92 265 92 112 92 264 92 265 92 110 92 157 319 264 320 110 320 371 702 242 703 370 704 372 705 242 706 371 707 373 708 372 709 371 710 121 711 375 712 374 712 376 713 375 712 121 711 122 714 376 715 121 716 172 338 377 337 170 337 378 717 377 718 172 719 379 720 378 721 172 722 174 723 381 724 380 725 382 726 381 727 174 728 176 729 382 730 174 731 385 732 384 733 383 734 386 735 384 736 385 737 387 738 386 739 385 740 388 741 327 742 22 741 8 743 327 742 388 741 10 24 8 26 388 24 313 595 389 596 315 596 390 596 389 596 313 595 391 744 390 745 313 746 142 747 59 748 392 748 61 749 59 750 142 751 228 752 61 753 142 754 395 755 394 756 393 757 396 758 394 759 395 760 399 761 398 762 397 763 374 764 398 765 399 766 402 767 401 768 400 768 403 768 401 768 402 767 406 769 405 770 404 771 303 772 405 773 406 774 321 172 295 172 293 172 320 172 295 172 321 172 409 775 408 776 407 777 362 778 408 779 409 780 410 781 196 782 338 783 195 784 196 785 410 786 413 787 412 788 411 789 414 790 412 791 413 792 415 793 159 794 160 795 251 794 159 794 415 793 251 172 158 172 159 172 263 172 158 172 251 172 259 796 417 796 416 797 258 196 417 172 259 172 420 798 419 799 418 800 421 801 419 802 420 803 423 804 422 805 412 806 424 807 422 808 423 809 333 810 425 811 331 812 426 813 425 814 333 815 426 816 413 817 425 818 427 819 413 820 426 821 430 92 429 92 428 92 431 822 429 823 430 823 297 92 44 92 46 92 296 170 44 171 297 171 329 92 432 92 328 92 331 639 432 640 329 640 433 824 235 825 251 825 434 826 235 825 433 824 266 92 435 92 267 92 261 514 435 516 266 516 436 827 76 828 74 829 367 830 76 831 436 832 72 833 302 833 437 834 71 92 302 92 72 92 14 835 317 836 0 837 16 838 317 839 14 840 439 841 438 842 218 843 440 844 438 845 439 846 442 847 441 848 200 847 443 849 441 850 442 851 219 852 443 853 281 854 441 855 443 856 219 857 446 858 445 859 444 860 447 861 445 862 446 863 450 864 449 865 448 866 451 867 449 868 450 869 454 870 453 871 452 872 455 873 453 874 454 875 457 876 455 877 456 878 453 879 455 880 457 881 354 882 458 883 92 884 294 882 458 883 354 882 88 172 294 172 86 172 458 883 294 882 88 882 51 885 287 886 53 887 49 888 287 889 51 890 84 92 297 92 82 92 86 170 297 171 84 171 347 891 314 892 459 893 348 894 314 895 347 896 461 897 460 898 312 899 462 900 460 901 461 902 465 903 464 903 463 904 466 905 464 906 465 906 466 907 401 908 464 909 467 910 401 911 466 912 467 913 468 914 401 915 469 916 468 917 467 918 244 919 471 920 470 921 246 922 471 923 244 924 474 925 473 926 472 927 404 928 473 929 474 930 477 931 476 932 475 933 478 934 476 935 477 936 481 937 480 938 479 939 482 940 480 941 481 942 483 943 421 944 302 945 419 946 421 947 483 948 486 949 485 950 484 951 487 952 485 953 486 954 490 955 489 956 488 957 491 958 489 959 490 960 492 961 337 962 122 963 493 964 337 965 492 966 495 967 227 968 494 969 226 970 227 971 495 972 498 973 497 974 496 975 499 976 497 977 498 978 301 979 501 979 500 980 502 92 501 92 301 92 240 171 249 171 239 170 503 92 249 92 240 92 200 981 504 982 198 983 441 984 504 985 200 986 505 987 212 988 213 989 417 990 212 991 505 992 417 993 210 994 212 995 506 996 210 997 417 998 507 999 496 1000 497 1001 508 1002 496 1003 507 1004 511 1005 510 1006 509 1007 429 1008 510 1009 511 1010 514 1011 513 1012 512 1013 424 1014 513 1015 514 1016 432 92 396 92 114 92 394 759 396 758 432 758 115 1017 396 1017 395 1018 114 92 396 92 115 92 516 1019 515 1020 35 1021 517 1020 515 1020 516 1019 518 334 135 333 304 333 519 1022 135 1023 518 1024 522 1025 521 1026 520 1027 523 1028 521 1029 522 1030 330 1031 525 1031 524 1032 328 92 525 92 330 92 527 1033 359 1034 526 1035 358 1036 359 1037 527 1038 530 1039 529 1040 528 1039 531 1041 529 1040 530 1039 533 1042 532 1043 528 1044 525 1045 532 1046 533 1047 361 92 525 92 360 92 532 1046 525 1045 361 1045 536 1048 535 1049 534 1050 537 1051 535 1052 536 1053 424 1054 331 1055 411 1056 432 1057 331 1058 424 1059 539 1060 261 1061 538 1062 435 1063 261 1064 539 1065 117 1066 359 1067 540 1068 116 1069 359 1070 117 1071 293 172 38 172 40 172 353 196 38 172 293 172 542 1072 191 1073 541 1074 190 1075 191 1076 542 1077 340 1078 286 1079 288 1080 543 1081 286 1082 340 1083 534 1084 213 1085 211 1086 430 1087 213 1088 534 1089 430 1087 435 1087 213 1088 428 92 435 92 430 92 545 1090 298 1091 544 1092 300 1093 298 1094 545 1095 449 1096 312 1097 448 1098 311 593 312 592 449 1099 546 1100 460 1101 462 1102 373 1103 460 1104 546 1105 350 1106 247 1107 245 1108 547 1109 247 1110 350 1111 482 1112 487 1113 480 1114 485 1115 487 1116 482 1117 308 1118 548 1119 306 1120 549 1121 548 1122 308 1123 549 1124 550 1125 548 1126 551 1127 550 1128 549 1129 441 1130 220 1131 504 1132 219 1133 220 1134 441 1135 553 388 552 388 278 388 554 270 552 269 553 269 49 1136 555 1137 287 1138 47 1139 555 1140 49 1141 557 1142 467 1143 556 1144 257 916 467 918 557 917 517 172 292 172 515 172 290 1145 292 1146 517 1146 558 1147 387 1148 385 1149 559 1150 387 1151 558 1152 559 1153 560 1154 387 1155 561 905 560 1156 559 906 564 1157 563 1158 562 1158 565 1159 563 1158 564 1157 204 171 565 1160 205 170 563 1158 565 1159 204 1158 206 172 89 172 87 172 566 287 89 172 206 172 567 1161 362 1162 289 1162 408 1163 362 1162 567 1161 568 1145 528 1146 529 1164 533 1165 528 1166 568 1167 348 1168 312 1169 314 1170 461 1171 312 1172 348 1173 571 1174 570 1175 569 1176 463 1177 570 1178 571 1179 270 1180 573 1181 572 1182 574 1183 573 1184 270 1185 572 1186 575 1187 346 1188 573 1189 575 1190 572 1191 253 1192 556 1193 269 1194 557 1195 556 1196 253 1197 577 1198 447 1199 576 1200 445 1201 447 1202 577 1203 320 172 296 172 295 172 44 171 296 170 320 170 578 1021 516 1019 35 1021 579 1204 516 1205 578 1206 580 1207 337 1208 336 1209 488 1210 337 1211 580 1212 488 1213 122 1214 337 1215 489 1216 122 1217 488 1218 489 1219 581 1220 122 1221 582 1222 581 1223 489 1224 583 1225 478 1226 508 1227 584 1228 478 1229 583 1230 285 1231 53 1232 287 1233 368 1234 53 1235 285 1236 145 288 585 289 144 289 146 1237 585 1238 145 1239 452 1131 278 1132 586 1130 553 1132 278 1132 452 1131 576 1240 518 1241 577 1242 519 1243 518 1244 576 1245 587 1246 141 1247 139 1248 588 1249 141 1250 587 1251 141 1252 231 1253 143 1254 588 1255 231 1256 141 1257 118 1258 540 1259 589 1260 117 1261 540 1262 118 1263 94 826 118 824 589 826 96 1264 118 1265 94 1266 395 1018 116 1267 115 1017 359 1268 116 1269 395 1270 418 1271 544 1272 583 1273 545 1274 544 1275 418 1276 537 1277 590 1278 535 1279 207 1280 590 1281 537 1282 591 1283 451 1284 313 1283 449 1285 451 1284 591 1283 561 1286 592 1287 560 1288 593 1289 592 1290 561 1291 595 1292 594 1293 246 1294 596 1295 594 1296 595 1297 241 1298 549 1299 597 1300 551 1301 549 1302 241 1303 146 1304 93 1305 585 1306 147 1307 93 1308 146 1309 588 1310 233 1311 231 1312 598 1313 233 1314 588 1315 600 1316 246 1317 599 1318 471 1319 246 1320 600 1321 602 916 468 917 601 916 603 1322 468 1323 602 1324 463 1325 604 1326 570 1327 464 903 604 1328 463 904 172 1329 380 1330 379 1331 174 1332 380 1333 172 1334 429 92 501 92 502 92 299 575 501 574 429 574 606 1335 409 1336 605 1337 532 1338 409 1339 606 1340 532 1341 362 1342 409 1343 361 1045 362 1045 532 1046 607 1344 512 1345 513 1346 356 1347 512 1348 607 1349 610 1350 609 1351 608 1352 611 1353 609 1354 610 1355 310 586 612 587 309 587 142 747 612 748 310 1356 355 1260 589 1260 540 1259 523 1028 427 1028 521 1029 247 271 547 270 596 270 468 1357 603 1358 613 1359 478 1360 584 1361 476 1362 614 1222 375 1222 581 1223 491 666 582 666 489 665 574 1363 270 1364 272 1365 429 92 502 92 428 92 342 51 21 51 19 53 550 1366 551 1367 615 1368 555 53 47 51 341 51 348 1186 346 1188 575 1187 467 387 257 385 469 385 350 288 352 289 547 289 240 92 267 92 503 92 249 92 503 92 248 92 506 1369 208 1370 210 1371 508 1002 508 1002 496 1003 611 1353 356 1353 609 1354 427 790 414 790 413 792 11 270 554 270 553 269 594 1296 596 1295 390 1295 551 1372 241 1373 242 1374 434 196 234 196 235 172 392 748 612 748 142 747 316 51 459 51 314 53 578 196 531 196 530 172 525 92 328 92 360 92 618 1375 617 1376 616 1377 338 270 198 270 504 269 583 24 366 24 619 26 432 92 114 92 328 92 207 1280 508 1280 590 1281 374 764 60 764 398 765 303 772 222 772 405 773 103 194 101 195 134 194 435 92 428 92 267 92 451 1378 391 1379 313 1380 593 270 377 270 592 271 516 1381 579 1382 517 1383 468 917 469 916 601 916 82 92 297 92 46 92 301 92 71 92 502 92 551 1384 242 1385 372 1386 365 1387 363 1388 564 1389 364 287 566 287 206 172 566 287 91 287 89 172 353 196 36 196 38 172 414 790 611 790 412 791 325 508 491 508 323 510 602 1390 593 1390 620 1391 327 1392 8 1393 326 1394 258 196 506 196 417 172 531 1041 523 1041 529 1040 459 24 345 24 347 25 554 270 325 270 552 269 582 1222 614 1222 581 1223 621 1395 604 1396 464 1397 284 1398 286 1399 543 1400

+
+
+
+ + + + -1325 449 7040 -1297 448 7053 -1329 465 7036 -1302 466 7052 -1344 494 7038 -1319 498 7050 -1362 520 7046 -1340 524 7052 -1369 541 7050 -1358 541 7057 -1379 547 7064 -1361 543 7071 -1375 545 7078 -1370 528 7089 -1398 528 7096 -1402 503 7106 -1425 507 7095 -1430 474 7105 -1419 471 7074 -1419 452 7079 -1376 450 7050 -2503 141 2047 -2412 124 2018 -2513 177 2051 -2411 161 2027 -2511 238 2084 -2423 231 2059 -2492 292 2126 -2435 289 2099 -2476 335 2145 -2434 325 2135 -2436 342 2178 -2385 323 2156 -2380 327 2187 -2342 286 2188 -2358 292 2240 -2338 237 2253 -2425 260 2275 -2416 191 2288 -2506 197 2239 -2497 156 2240 -2539 154 2139 -1053 253 4287 -1126 271 4386 -1047 315 4274 -1131 340 4366 -1061 392 4205 -1134 426 4293 -1095 492 4122 -1139 518 4202 -1116 574 4089 -1153 580 4126 -1164 602 4033 -1204 598 4099 -1219 603 4034 -1285 546 4050 -1279 537 3929 -1320 442 3908 -1256 433 3828 -1275 309 3804 -1148 292 3877 -1156 222 3877 -1051 230 4076 2261 1 1003 2321 1 953 2256 32 1010 2323 35 964 2261 83 1048 2320 93 1004 2279 131 1096 2316 139 1055 2292 169 1115 2320 169 1097 2322 179 1148 2356 173 1115 2361 175 1151 2379 144 1146 2374 143 1211 2383 96 1223 2334 101 1263 2340 41 1277 2274 37 1231 2280 1 1231 2244 1 1119 699 12 4707 697 14 4785 697 48 4698 687 52 4776 666 107 4668 659 120 4740 619 162 4638 624 173 4694 595 207 4628 590 207 4660 551 219 4617 554 214 4665 523 216 4637 509 182 4656 467 180 4596 448 126 4593 458 129 4525 444 60 4517 522 54 4518 518 13 4521 625 12 4598 -3144 453 6676 -3118 445 6717 -3148 482 6672 -3126 477 6716 -3175 534 6668 -3153 536 6707 -3210 583 6669 -3187 585 6696 -3226 620 6673 -3217 617 6691 -3252 633 6683 -3234 623 6706 -3260 630 6703 -3260 602 6718 -3303 610 6702 -3314 569 6708 -3333 579 6669 -3343 527 6669 -3303 517 6643 -3304 486 6646 -3221 470 6647 -1565 3 768 -1555 3 806 -1560 12 764 -1551 14 808 -1562 25 759 -1553 29 806 -1587 42 758 -1572 45 796 -1607 57 759 -1604 58 782 -1642 62 764 -1631 61 796 -1660 62 786 -1666 50 802 -1711 50 773 -1725 34 769 -1729 34 725 -1732 17 724 -1687 14 708 -1687 4 714 -1620 3 729 1101 2 2395 1155 2 2465 1094 42 2387 1140 46 2464 1044 108 2384 1090 121 2452 980 169 2390 1026 180 2437 953 219 2399 971 219 2431 905 233 2421 942 225 2461 895 227 2459 896 187 2485 815 186 2463 797 125 2474 757 131 2407 738 52 2409 808 47 2355 806 1 2360 957 1 2351 505 217 4605 482 177 4545 521 120 4528 629 49 4597 -3281 635 6693 -3313 612 6670 -3300 568 6648 -3220 498 6644 -2394 334 2212 -2433 306 2251 -2497 262 2234 -2547 191 2137 856 229 2444 792 184 2407 815 122 2363 960 42 2346 -1680 62 769 -1708 48 734 -1685 30 710 -1615 12 725 -1390 546 7080 -1415 529 7083 -1416 503 7070 -1376 468 7045 2354 176 1183 2328 142 1236 2281 94 1225 2239 33 1117 -1222 602 3976 -1227 519 3876 -1154 412 3890 -1043 294 4078 -1308 448 7080 -1307 468 7079 -1326 500 7078 -1342 525 7072 -2321 113 2068 -2314 153 2069 -2327 222 2103 -2361 280 2125 2245 95 1136 2286 141 1208 2322 178 1201 -1596 5 822 -1592 16 829 -1599 32 827 -1605 48 819 2380 1 997 2383 39 998 2380 96 1041 2367 141 1074 -1383 502 7044 -1408 528 7064 -1401 547 7072 1087 2 2520 1085 50 2526 1031 125 2512 992 183 2484 -3234 556 6644 -3289 607 6653 -3288 639 6673 619 16 4785 615 60 4788 587 126 4748 575 177 4708 -1617 29 723 -1671 46 720 -1680 62 744 -3157 452 6745 -3158 486 6748 -3187 544 6738 -3207 589 6721 611 120 4584 531 174 4546 513 218 4572 -1246 263 4316 -1254 342 4316 -1248 447 4262 -1215 535 4175 934 123 2348 836 183 2372 838 231 2409 -2542 263 2154 -2490 312 2221 -2441 345 2221 -1056 411 4044 -1149 510 3921 -1192 594 3939 -1361 501 7097 -1402 470 7118 -1429 453 7110 508 126 4682 431 56 4600 440 15 4522 -2310 225 2179 -2309 164 2261 -2406 145 2289 914 124 2510 786 45 2492 738 1 2416 2393 96 1129 2396 35 1229 2347 1 1276 -1318 449 4072 -1340 317 3901 -1284 231 3807 -3251 556 6732 -3320 516 6717 -3344 492 6673 -1667 33 809 -1728 17 770 -1729 5 729 -3238 597 6653 -3274 630 6660 -1382 526 7046 -1398 543 7060 -2519 310 2159 -2481 342 2203 597 171 4591 544 208 4568 927 180 2364 863 221 2383 2262 139 1140 2292 170 1185 -1080 505 4041 -1141 573 3962 -1613 45 732 -1657 58 732 -2277 154 2177 -2318 128 2258 -3249 502 6744 -3317 485 6714 920 48 2532 792 1 2486 -1355 469 7108 -1401 451 7118 -1673 17 808 -1720 7 767 500 59 4701 438 17 4599 -1339 341 4100 -1328 247 3906 2407 37 1122 2392 1 1225 -1113 578 4035 -2487 342 2168 578 210 4599 -1382 543 7052 -3245 627 6664 2286 172 1145 916 223 2386 -1626 58 744 936 1 2529 -2283 115 2166 -1329 265 4120 512 18 4708 -3240 468 6743 -1351 449 7108 -1665 6 805 2403 1 1110 181 0 -889 184 34 -888 213 0 -883 213 31 -885 241 16 -891 239 34 -904 247 40 -926 232 52 -913 233 57 -929 209 54 -908 208 62 -939 182 62 -911 178 68 -943 149 54 -951 177 59 -983 149 46 -976 155 25 -1004 131 38 -969 132 23 -977 112 19 -949 124 11 -975 110 0 -947 121 0 -974 -633 1 -739 -596 1 -729 -632 25 -743 -594 25 -730 -628 64 -736 -593 71 -723 -601 123 -712 -581 75 -686 -592 125 -686 -599 82 -648 -606 128 -657 -638 86 -626 -631 134 -638 -674 100 -646 -656 144 -651 -669 125 -678 -651 155 -671 -645 150 -691 -630 161 -675 -628 148 -699 -609 147 -694 475 1 778 537 1 794 476 36 771 542 37 793 477 95 775 537 105 798 516 182 819 557 110 862 531 184 864 527 120 927 507 188 914 454 127 967 459 197 939 391 147 932 417 211 918 400 184 878 425 228 882 437 220 849 461 237 876 465 218 836 497 216 843 965 1 -113 943 1 -87 971 14 -110 943 15 -83 972 40 -122 943 37 -96 944 59 -115 904 39 -122 909 54 -144 898 54 -187 918 67 -156 911 70 -188 931 78 -192 908 71 -215 919 73 -228 904 58 -253 935 58 -247 899 41 -266 935 38 -259 896 18 -270 933 16 -261 929 1 -257 956 1 -201 -871 0 95 -879 55 89 -893 0 31 -895 49 32 -919 25 -21 -929 55 -12 -956 64 -22 -934 84 4 -950 92 5 -915 87 46 -943 100 58 -900 101 100 -928 110 117 -917 87 177 -966 96 131 -941 74 185 -971 39 180 -922 61 217 -932 37 217 -891 31 249 -924 17 233 -889 0 251 -929 0 236 -360 1 840 -323 1 849 -359 34 835 -320 35 848 -355 89 842 -320 99 855 -328 171 866 -308 103 893 -319 174 892 -325 113 931 -333 177 922 -364 120 953 -358 186 940 -401 138 932 -383 199 928 -396 173 901 -378 214 907 -371 208 887 -357 223 903 -354 205 880 -336 204 884 859 1 486 803 1 488 859 58 488 801 63 487 856 179 471 812 171 463 851 240 440 830 256 431 858 312 410 847 311 404 863 330 377 838 319 385 850 322 362 841 266 358 872 264 326 868 177 311 920 185 315 937 74 303 953 66 356 950 1 353 920 1 430 694 1 -624 708 1 -660 693 22 -619 711 24 -656 704 56 -606 719 63 -640 723 88 -593 730 94 -619 733 114 -589 741 114 -604 754 121 -585 760 117 -607 771 118 -595 781 97 -604 793 97 -577 802 65 -576 786 68 -544 792 28 -540 753 25 -539 755 1 -540 714 1 -574 280 1 899 331 1 946 281 80 897 333 86 949 275 246 916 304 259 959 247 381 952 261 402 980 240 463 975 248 462 991 218 489 1003 245 473 1019 222 478 1030 229 400 1043 186 385 1047 179 243 1065 135 254 1015 113 101 1012 127 91 944 128 1 949 196 1 900 -290 1 -968 -241 1 -932 -296 34 -971 -249 36 -928 -321 87 -961 -277 97 -923 -349 136 -938 -312 145 -917 -359 177 -925 -340 176 -906 -375 187 -896 -343 181 -876 -367 183 -865 -358 151 -846 -403 150 -841 -408 101 -828 -450 105 -866 -458 42 -859 -443 38 -918 -442 1 -913 -373 1 -961 688 1 606 712 1 599 685 11 604 712 12 600 686 24 608 707 27 605 684 41 618 703 44 615 685 54 632 698 54 630 691 58 647 706 56 640 702 56 652 715 46 657 702 45 677 703 28 684 678 30 686 678 13 691 661 12 670 664 1 671 668 1 636 -595 1 729 -588 1 752 -593 11 726 -586 12 753 -594 24 723 -587 27 752 -607 40 725 -597 43 747 -617 55 727 -614 55 742 -634 59 735 -626 57 754 -641 58 751 -643 45 763 -667 45 749 -674 28 749 -680 30 720 -682 13 720 -660 12 705 -660 1 708 -625 1 710 -907 1 -211 -962 1 -192 -901 28 -214 -959 30 -201 -888 71 -244 -940 80 -230 -879 112 -285 -917 119 -267 -878 145 -304 -902 144 -300 -882 153 -338 -915 148 -324 -903 150 -353 -920 124 -358 -889 123 -403 -892 83 -417 -842 86 -428 -839 35 -440 -820 31 -385 -823 1 -387 -850 1 -292 -934 1 -215 -914 1 -215 -939 12 -221 -911 12 -220 -944 25 -220 -914 29 -220 -941 43 -209 -919 46 -212 -939 59 -201 -924 58 -200 -932 63 -186 -913 60 -188 -916 61 -177 -905 48 -173 -918 48 -157 -919 31 -151 -946 34 -156 -946 14 -151 -962 13 -172 -953 1 -174 -951 1 -197 -887 1 516 -873 1 462 -889 58 516 -872 63 460 -872 179 518 -852 171 478 -841 240 522 -826 256 504 -814 312 537 -805 311 528 -784 330 551 -784 319 525 -766 322 543 -759 266 535 -737 264 575 -722 177 575 -741 185 623 -734 74 643 -789 66 644 -786 1 641 -851 1 590 -154 1 936 -146 1 1006 -148 93 937 -141 99 1011 -165 259 943 -161 271 1001 -196 403 952 -193 407 987 -218 505 959 -221 508 977 -252 523 964 -233 505 993 -261 506 987 -272 420 1010 -308 422 978 -341 268 986 -340 254 922 -361 114 913 -310 104 881 -304 1 877 -220 1 883 787 1 -531 769 19 -511 775 1 -512 774 18 -477 782 1 -479 799 19 -444 802 1 -453 826 21 -437 824 1 -448 844 19 -462 835 1 -467 837 19 -499 829 1 -500 812 20 -535 809 1 -527 787 24 -532 924 1 45 898 19 52 904 1 55 883 18 84 890 1 85 885 19 124 892 1 119 904 21 145 908 1 135 933 19 134 928 1 125 948 19 100 942 1 95 947 20 56 940 1 61 925 24 44 -174 1 -972 -122 1 -996 -169 17 -972 -117 16 -994 -149 28 -969 -116 28 -984 -128 36 -962 -111 36 -967 -109 38 -947 -95 35 -965 -84 35 -950 -61 30 -956 -72 27 -933 -59 15 -928 -106 13 -906 -104 1 -905 -161 1 -907 -190 1 -935 -178 14 -937 -153 13 -909 -159 27 -939 -138 22 -917 -127 34 -927 -106 23 -916 -104 30 -929 -91 32 -938 895 44 58 920 45 51 900 58 70 917 59 68 911 64 93 932 62 81 930 62 99 944 48 100 932 47 131 770 44 -504 786 45 -524 781 58 -497 793 59 -508 803 64 -484 813 62 -507 822 62 -490 834 48 -497 842 47 -464 941 71 -146 963 58 -143 952 73 -165 962 58 -195 951 71 -191 933 69 -223 -391 184 -866 -433 148 -876 -436 99 -913 -373 34 -965 892 56 -226 879 38 -238 874 15 -236 898 1 -264 738 116 -576 750 114 -562 727 94 -571 753 95 -551 718 64 -567 755 64 -543 711 23 -573 696 57 664 680 45 678 662 28 668 665 11 633 -886 151 -374 -849 122 -406 -827 81 -383 -847 28 -289 870 325 349 902 262 327 933 173 359 922 60 433 -652 58 743 -669 44 724 -659 28 705 -622 11 707 -281 503 968 -310 418 936 -297 254 887 -217 95 879 -925 62 -170 -944 47 -161 -958 32 -174 -958 12 -201 -759 325 566 -747 262 603 -786 173 623 -854 60 592 197 482 1026 160 382 1019 147 238 959 196 82 895 -901 1 -199 -892 14 -201 -893 30 -198 -900 47 -196 667 28 633 669 45 662 684 57 664 210 57 -967 239 50 -963 250 38 -950 237 26 -976 251 20 -968 235 0 -990 908 174 419 910 259 358 881 327 350 885 41 85 885 41 119 902 47 138 -607 1 767 -605 13 772 -608 28 771 -612 44 767 785 1 435 782 71 432 789 177 413 817 260 405 -623 28 706 -652 44 710 -654 59 726 747 1 -662 749 27 -664 757 65 -646 756 95 -627 -843 81 -305 -837 121 -372 -860 152 -377 -385 99 -957 -424 147 -912 -410 185 -887 319 1 1015 320 97 1021 298 277 1022 259 408 1017 201 239 921 166 391 981 187 485 1015 -200 1 1051 -198 110 1057 -210 277 1038 -224 413 1014 727 1 620 729 13 621 726 28 623 716 45 630 -225 247 893 -281 411 915 -283 502 951 -982 1 -247 -986 34 -249 -965 83 -279 -940 121 -298 -837 174 582 -779 259 602 -763 327 577 777 41 -476 796 41 -448 821 47 -442 -817 1 460 -814 71 458 -797 177 470 -798 260 499 -971 92 62 -986 80 5 -981 60 -21 -997 41 12 -999 31 -16 -1010 0 20 -255 1 -872 -254 41 -868 -285 101 -864 -312 147 -873 -959 32 -199 -957 47 -177 -941 62 -172 394 1 947 373 1 886 386 44 946 369 39 878 369 102 877 406 34 813 405 94 817 120 0 -928 125 12 -918 120 0 -927 152 26 -898 145 0 -892 237 251 1065 166 87 1073 116 1 1018 -681 1 -639 -693 1 -675 -685 31 -640 -695 27 -680 -691 70 -677 -674 24 -718 -670 64 -712 -407 1 939 -419 1 903 -412 42 938 -422 37 898 -418 97 902 -400 33 860 -397 88 866 722 28 656 706 12 688 680 1 688 -939 82 -352 -901 30 -428 -844 1 -442 788 1 -629 793 25 -626 786 65 -617 -643 28 768 -676 12 750 -680 1 723 882 1 -234 885 16 -173 888 1 -167 900 16 -112 909 1 -112 -341 100 -834 -407 36 -812 -456 1 -854 -77 25 -975 -65 15 -988 -44 18 -961 -36 1 -966 -52 1 -929 -867 0 220 -870 18 214 -866 0 219 -869 42 154 -858 0 167 823 176 348 874 63 298 932 1 300 -745 176 521 -711 63 584 -730 1 639 -903 1 -176 -897 13 -169 -899 30 -172 -285 278 1028 -356 121 991 -357 1 922 -851 119 -313 -850 145 -357 128 42 -950 131 32 -928 238 0 -891 255 9 -925 254 0 -925 248 0 -969 671 44 636 677 55 654 -917 0 -14 -960 14 -38 -960 0 -36 -997 0 -11 -955 46 -200 -950 59 -182 777 96 -553 776 119 -580 -382 164 875 -355 162 859 -622 43 711 -644 55 716 -336 216 915 -354 220 926 -370 221 920 -383 145 -943 -407 177 -912 -655 119 -704 -629 117 -719 -609 156 -664 -627 159 -652 -643 159 -658 894 256 399 898 313 371 501 226 899 466 234 915 439 235 905 202 386 953 184 465 978 -232 407 918 -270 505 939 -903 67 218 -883 51 205 424 174 834 477 172 808 -814 256 575 -788 313 586 -330 39 -819 -407 1 -818 965 34 -198 -139 34 -941 -955 32 -353 -899 1 -423 207 0 -1002 182 22 -1007 178 0 -1005 148 0 -995 -1003 0 79 -994 51 73 -992 35 128 208 32 -992 245 92 1072 167 1 1066 824 63 -473 812 64 -458 797 60 -461 -646 12 768 -672 1 747 817 67 350 876 1 302 725 12 659 703 1 685 808 1 -579 812 24 -580 -916 12 -149 -940 1 -158 -292 120 1043 -349 1 991 -745 67 515 -716 1 585 922 63 114 904 64 119 894 60 109 -987 0 135 -961 0 191 678 55 641 -584 1 -693 -582 29 -693 766 120 -564 -381 179 -924 883 317 393 -946 60 -194 -311 1 885 -309 40 886 -331 1 926 -330 42 929 -371 1 949 -370 45 953 -804 317 565 -863 147 -324 558 1 856 562 42 857 524 1 926 526 45 930 456 1 964 454 48 967 253 24 -920 -62 1 -992 962 14 -201 886 38 -180 -954 38 -35 209 470 970 813 46 -529 945 46 62 -627 56 720 -604 1 -652 -603 31 -650 -644 1 -630 -643 33 -625 -243 507 938 -891 79 144 893 59 87 -919 1 -158 -642 1 765 -752 1 511 251 1 1065 815 1 358 -324 1 -825 160 49 -916 723 1 656 795 1 -542 -604 149 -679 505 219 869 -331 207 899 -956 1 -342 784 59 -479 -284 1 1045 -400 1 862 -673 1 -717 407 1 816 + + + + + + + + + + 0.65625 0.369140625 0.685546875 0.3203125 0.677734375 0.388671875 0.70703125 0.341796875 0.701171875 0.4375 0.734375 0.3984375 0.720703125 0.48828125 0.748046875 0.455078125 0.7421875 0.517578125 0.75390625 0.498046875 0.740234375 0.5390625 0.75390625 0.505859375 0.740234375 0.53125 0.72265625 0.509765625 0.693359375 0.556640625 0.654296875 0.541015625 0.634765625 0.583984375 0.583984375 0.56640625 0.591796875 0.544921875 0.564453125 0.529296875 0.607421875 0.455078125 0.7109375 0.353515625 0.916015625 0.337890625 0.685546875 0.443359375 0.888671875 0.427734375 0.58984375 0.56640625 0.77734375 0.578125 0.484375 0.66796875 0.638671875 0.6875 0.447265625 0.759765625 0.529296875 0.748046875 0.39453125 0.75 0.525390625 0.7265625 0.435546875 0.708984375 0.478515625 0.603515625 0.296875 0.572265625 0.28125 0.419921875 0.103515625 0.453125 0.072265625 0.267578125 0.1171875 0.326171875 0.123046875 0.21875 0.3828125 0.3046875 0.357421875 0.228515625 0.3828125 0.3203125 0.412109375 0.259765625 0.431640625 0.37109375 0.455078125 0.345703125 0.494140625 0.453125 0.46875 0.451171875 0.513671875 0.51953125 0.505859375 0.53125 0.509765625 0.576171875 0.455078125 0.603515625 0.466796875 0.6484375 0.4140625 0.66796875 0.337890625 0.671875 0.25 0.673828125 0.126953125 0.638671875 0.125 0.548828125 -0.017578125 0.482421875 0.08984375 0.349609375 0.015625 0.314453125 0.205078125 0.224609375 0.61328125 0.248046875 0.7578125 0.212890625 0.61328125 0.3203125 0.755859375 0.29296875 0.5703125 0.455078125 0.708984375 0.4453125 0.517578125 0.583984375 0.6328125 0.576171875 0.51171875 0.6796875 0.568359375 0.666015625 0.474609375 0.716796875 0.5625 0.681640625 0.49609375 0.705078125 0.5078125 0.6328125 0.375 0.66796875 0.333984375 0.5703125 0.212890625 0.609375 0.154296875 0.482421875 0.193359375 0.455078125 0.17578125 0.376953125 0.373046875 0.31640625 0.181640625 0.275390625 0.123046875 0.275390625 0.173828125 0.328125 0.123046875 0.337890625 0.212890625 0.43359375 0.158203125 0.453125 0.271484375 0.541015625 0.21484375 0.552734375 0.2890625 0.619140625 0.271484375 0.62109375 0.3515625 0.662109375 0.3125 0.6484375 0.373046875 0.669921875 0.392578125 0.625 0.498046875 0.646484375 0.548828125 0.576171875 0.587890625 0.578125 0.646484375 0.482421875 0.546875 0.431640625 0.568359375 0.375 0.365234375 0.31640625 -0.240234375 2.130859375 -0.21484375 2.099609375 -0.21875 2.158203125 -0.1953125 2.1328125 -0.203125 2.2265625 -0.171875 2.20703125 -0.197265625 2.30078125 -0.16796875 2.279296875 -0.1796875 2.34765625 -0.171875 2.3359375 -0.19921875 2.38671875 -0.185546875 2.359375 -0.208984375 2.392578125 -0.236328125 2.37109375 -0.279296875 2.421875 -0.330078125 2.400390625 -0.345703125 2.42578125 -0.40625 2.396484375 -0.369140625 2.345703125 -0.400390625 2.3203125 -0.318359375 2.22265625 0.564453125 0.34765625 0.5859375 0.3359375 0.587890625 0.37109375 0.609375 0.361328125 0.60546875 0.412109375 0.634765625 0.41015625 0.595703125 0.482421875 0.630859375 0.474609375 0.59375 0.544921875 0.6015625 0.541015625 0.546875 0.587890625 0.568359375 0.56640625 0.5234375 0.595703125 0.49609375 0.5625 0.423828125 0.6015625 0.375 0.564453125 0.359375 0.580078125 0.326171875 0.533203125 0.388671875 0.4921875 0.369140625 0.4609375 0.474609375 0.400390625 0.365234375 0.056640625 0.41015625 -0.064453125 0.44921875 0.107421875 0.494140625 0.005859375 0.55859375 0.2734375 0.625 0.181640625 0.64453125 0.46875 0.70703125 0.375 0.734375 0.5703125 0.748046875 0.529296875 0.724609375 0.689453125 0.73828125 0.59765625 0.705078125 0.70703125 0.615234375 0.671875 0.546875 0.853515625 0.39453125 0.84375 0.373046875 0.939453125 0.181640625 0.91796875 0.228515625 0.755859375 0.123046875 0.720703125 0.248046875 0.3828125 0.421875 0.681640625 0.51953125 0.634765625 0.5078125 0.53125 0.34375 0.3671875 -0.228515625 2.41796875 -0.291015625 2.431640625 -0.31640625 2.3828125 -0.2890625 2.244140625 0.33984375 0.701171875 0.16796875 0.591796875 0.142578125 0.4921875 0.380859375 0.400390625 0.67578125 0.796875 0.525390625 0.90234375 0.40234375 0.802734375 0.341796875 0.41015625 0.4921875 0.615234375 0.41796875 0.603515625 0.41796875 0.537109375 0.5 0.423828125 0.728515625 0.556640625 0.67578125 0.583984375 0.638671875 0.564453125 0.630859375 0.46875 0.427734375 0.728515625 0.28515625 0.685546875 0.244140625 0.578125 0.388671875 0.384765625 0.376953125 0.6640625 0.251953125 0.5859375 0.208984375 0.439453125 0.2734375 0.2578125 0.673828125 0.337890625 0.703125 0.353515625 0.73046875 0.412109375 0.748046875 0.458984375 0.876953125 0.267578125 0.8828125 0.37109375 0.763671875 0.51953125 0.650390625 0.646484375 0.392578125 0.533203125 0.30859375 0.669921875 0.369140625 0.744140625 0.52734375 0.369140625 0.5546875 0.400390625 0.572265625 0.451171875 0.587890625 0.50390625 0.72265625 0.232421875 0.74609375 0.314453125 0.69140625 0.466796875 0.63671875 0.5859375 0.671875 0.509765625 0.681640625 0.572265625 0.716796875 0.576171875 0.353515625 0.08984375 0.462890625 0.134765625 0.5859375 0.31640625 0.685546875 0.451171875 -0.251953125 2.3046875 -0.267578125 2.40234375 -0.236328125 2.427734375 0.22265625 0.318359375 0.205078125 0.384765625 0.244140625 0.5 0.267578125 0.58203125 0.525390625 0.4765625 0.46875 0.572265625 0.486328125 0.62109375 -0.25390625 2.146484375 -0.22265625 2.17578125 -0.203125 2.25 -0.185546875 2.306640625 0.345703125 0.484375 0.455078125 0.607421875 0.439453125 0.6796875 0.267578125 0.44921875 0.337890625 0.509765625 0.39453125 0.587890625 0.451171875 0.619140625 0.501953125 0.533203125 0.556640625 0.8046875 0.666015625 0.837890625 0.3359375 0.56640625 0.193359375 0.6328125 0.255859375 0.71875 0.365234375 0.35546875 0.322265625 0.505859375 0.376953125 0.615234375 0.6953125 0.470703125 0.607421875 0.513671875 0.5546875 0.546875 0.400390625 0.541015625 0.599609375 0.48046875 0.669921875 0.416015625 0.548828125 0.45703125 0.2890625 0.224609375 0.083984375 0.1484375 0.48828125 0.580078125 0.205078125 0.802734375 0.068359375 0.875 0.529296875 0.513671875 0.302734375 0.435546875 0.140625 0.39453125 0.25 0.640625 -0.015625 0.591796875 -0.099609375 0.44140625 -0.267578125 2.326171875 -0.388671875 2.365234375 -0.439453125 2.369140625 0.466796875 0.509765625 0.33984375 0.517578125 0.3125 0.494140625 -0.21875 2.341796875 -0.228515625 2.404296875 0.70703125 0.52734375 0.71484375 0.568359375 0.34765625 0.6796875 0.26171875 0.724609375 0.333984375 0.56640625 0.40625 0.650390625 0.625 0.59765625 0.6640625 0.7734375 0.423828125 0.630859375 0.373046875 0.720703125 0.43359375 0.4453125 0.40625 0.548828125 0.556640625 0.517578125 0.51171875 0.59375 0.59375 0.275390625 0.2890625 0.1328125 -0.314453125 2.28125 -0.4140625 2.3359375 0.322265625 0.501953125 0.111328125 0.75390625 0.65625 0.435546875 0.58203125 0.498046875 0.431640625 0.46875 0.333984375 0.48046875 0.427734375 0.4453125 0.609375 0.41796875 0.126953125 0.59765625 -0.072265625 0.53515625 0.52734375 0.376953125 0.28515625 0.359375 0.474609375 0.53125 0.361328125 0.755859375 0.333984375 0.634765625 0.732421875 0.541015625 -0.197265625 2.373046875 0.44921875 0.703125 0.712890625 0.65625 0.564453125 0.56640625 0.23046875 0.4296875 0.6171875 0.181640625 0.078125 0.537109375 0.42578125 0.376953125 -0.3359375 2.24609375 0.6328125 0.412109375 0.423828125 0.4296875 0.525390625 0.29296875 0.638671875 0.3984375 0.693359375 0.5 0.71484375 0.34375 0.755859375 0.4375 0.802734375 0.341796875 0.822265625 0.40234375 0.849609375 0.404296875 0.830078125 0.470703125 0.83984375 0.482421875 0.779296875 0.515625 0.787109375 0.54296875 0.7265625 0.58984375 0.724609375 0.61328125 0.63671875 0.623046875 0.7109375 0.58984375 0.611328125 0.521484375 0.5703125 0.60546875 0.5546875 0.556640625 0.5 0.58203125 0.517578125 0.53515625 0.470703125 0.525390625 0.49609375 0.505859375 0.935546875 0.10546875 0.982421875 0.103515625 0.923828125 0.25390625 0.95703125 0.251953125 0.837890625 0.486328125 0.8515625 0.51953125 0.6875 0.814453125 0.671875 0.484375 0.56640625 0.7890625 0.408203125 0.462890625 0.36328125 0.751953125 0.173828125 0.44140625 0.1875 0.751953125 0.166015625 0.541015625 0.171875 0.8203125 0.310546875 0.744140625 0.279296875 0.921875 0.412109375 0.92578125 0.34765625 0.97265625 0.501953125 0.93359375 0.53125 0.92578125 0.576171875 0.017578125 0.7578125 -0.072265625 0.640625 0.15234375 0.822265625 0.060546875 0.705078125 0.38671875 0.876953125 0.33984375 0.857421875 0.677734375 0.81640625 0.330078125 0.818359375 0.666015625 0.58984375 0.416015625 0.6328125 0.71484375 0.259765625 0.548828125 0.427734375 0.8203125 0.142578125 0.71875 0.34375 0.939453125 0.33203125 0.85546875 0.46484375 0.994140625 0.568359375 0.947265625 0.615234375 0.978515625 0.693359375 0.896484375 0.783203125 0.841796875 0.345703125 0.458984375 0.169921875 0.4140625 0.33203125 0.53515625 0.138671875 0.482421875 0.369140625 0.650390625 0.177734375 0.578125 0.25 0.669921875 0.197265625 0.474609375 0.296875 0.546875 0.46875 0.5 0.36328125 0.625 0.494140625 0.609375 0.5546875 0.693359375 0.609375 0.58984375 0.6953125 0.623046875 0.787109375 0.505859375 0.8359375 0.583984375 0.8515625 0.404296875 0.912109375 0.482421875 0.8828125 0.287109375 0.935546875 0.376953125 0.91796875 0.298828125 0.73046875 0.39453125 0.5390625 0.310546875 0.55859375 0.501953125 0.7578125 0.310546875 0.755859375 0.482421875 0.94140625 0.400390625 0.91015625 0.50390625 0.943359375 0.53515625 0.853515625 0.603515625 0.84765625 0.6328125 0.708984375 0.615234375 0.666015625 0.66015625 0.51953125 0.66015625 0.4609375 0.69140625 0.255859375 0.61328125 0.412109375 0.64453125 0.228515625 0.568359375 0.244140625 0.44921875 0.115234375 0.5234375 0.115234375 0.439453125 0.005859375 0.41796875 0.060546875 0.37109375 0 0.310546875 0.05078125 0.310546875 0.423828125 -0.048828125 0.525390625 -0.064453125 0.498046875 0.0703125 0.6015625 0.0625 0.60546875 0.296875 0.712890625 0.326171875 0.802734375 0.642578125 0.677734375 0.40625 0.779296875 0.693359375 0.552734375 0.537109375 0.669921875 0.77734375 0.3828125 0.64453125 0.5625 0.873046875 0.341796875 0.712890625 0.533203125 0.92578125 0.498046875 0.783203125 0.625 0.94140625 0.6796875 0.869140625 0.720703125 0.94921875 0.748046875 0.830078125 0.798828125 0.8125 0.126953125 0.234375 0.076171875 0.2421875 0.15234375 0.34375 0.10546875 0.359375 0.236328125 0.56640625 0.208984375 0.552734375 0.31640625 0.66796875 0.322265625 0.6953125 0.408203125 0.7890625 0.408203125 0.78515625 0.478515625 0.806640625 0.4375 0.79296875 0.48828125 0.787109375 0.458984375 0.677734375 0.541015625 0.654296875 0.51953125 0.482421875 0.560546875 0.494140625 0.541015625 0.2734375 0.4609375 0.283203125 0.431640625 0.158203125 0.2734375 0.19921875 0.55078125 0.248046875 0.642578125 0.21875 0.56640625 0.314453125 0.65625 0.29296875 0.55859375 0.443359375 0.650390625 0.439453125 0.541015625 0.572265625 0.619140625 0.564453125 0.55078125 0.6640625 0.587890625 0.65234375 0.525390625 0.705078125 0.580078125 0.671875 0.533203125 0.697265625 0.5234375 0.6328125 0.4296875 0.66796875 0.376953125 0.580078125 0.3046875 0.611328125 0.234375 0.494140625 0.26953125 0.45703125 0.240234375 0.384765625 0.384765625 0.31640625 0.375 0.060546875 0.458984375 0.0234375 0.435546875 0.1875 0.525390625 0.16015625 0.552734375 0.462890625 0.609375 0.4609375 0.609375 0.703125 0.6484375 0.7265625 0.66015625 0.841796875 0.671875 0.833984375 0.64453125 0.900390625 0.67578125 0.85546875 0.642578125 0.880859375 0.59375 0.748046875 0.513671875 0.755859375 0.39453125 0.53125 0.33203125 0.58203125 0.1796875 0.349609375 0.193359375 0.322265625 0.12890625 0.177734375 0.23828125 0.125 0.7734375 0.00390625 0.87109375 -0.072265625 0.80078125 0.15234375 0.884765625 0.08984375 0.755859375 0.423828125 0.8515625 0.3984375 0.66796875 0.681640625 0.76953125 0.662109375 0.65234375 0.873046875 0.681640625 0.83984375 0.54296875 0.943359375 0.60546875 0.8671875 0.494140625 0.912109375 0.443359375 0.7578125 0.255859375 0.826171875 0.140625 0.62109375 0.078125 0.70703125 -0.05078125 0.447265625 0.1328125 0.404296875 0.078125 0.244140625 0.443359375 0.134765625 0.560546875 0.2890625 0.630859375 0.224609375 0.583984375 0.3203125 0.66015625 0.2578125 0.615234375 0.3671875 0.6796875 0.326171875 0.63671875 0.4453125 0.6953125 0.408203125 0.6484375 0.509765625 0.681640625 0.478515625 0.638671875 0.537109375 0.685546875 0.484375 0.65234375 0.515625 0.640625 0.46484375 0.568359375 0.52734375 0.5078125 0.482421875 0.4453125 0.546875 0.390625 0.50390625 0.390625 0.49609375 0.365234375 0.458984375 0.451171875 0.384765625 0.646484375 0.314453125 0.681640625 0.3046875 0.669921875 0.35546875 0.705078125 0.349609375 0.6796875 0.41796875 0.720703125 0.42578125 0.638671875 0.51171875 0.693359375 0.515625 0.61328125 0.59765625 0.625 0.59375 0.53515625 0.638671875 0.5703125 0.6171875 0.498046875 0.640625 0.47265625 0.583984375 0.357421875 0.61328125 0.302734375 0.54296875 0.27734375 0.55859375 0.248046875 0.48046875 0.34765625 0.44921875 0.3359375 0.396484375 0.501953125 0.3515625 0.173828125 0.126953125 0.005859375 0.10546875 0.1796875 0.234375 0.025390625 0.224609375 0.279296875 0.4296875 0.125 0.4453125 0.41015625 0.619140625 0.26953125 0.62890625 0.455078125 0.76171875 0.39453125 0.75390625 0.5625 0.8203125 0.451171875 0.783203125 0.57421875 0.810546875 0.576171875 0.708984375 0.79296875 0.7421875 0.86328125 0.591796875 0.994140625 0.623046875 1.076171875 0.4296875 0.923828125 0.380859375 0.9453125 0.263671875 0.564453125 0.193359375 0.63671875 0.396484375 0.6796875 0.40234375 0.640625 0.447265625 0.69140625 0.45703125 0.61328125 0.5078125 0.666015625 0.53125 0.55078125 0.5703125 0.603515625 0.595703125 0.505859375 0.6328125 0.53125 0.634765625 0.455078125 0.634765625 0.50390625 0.6328125 0.453125 0.623046875 0.474609375 0.564453125 0.384765625 0.541015625 0.37890625 0.45703125 0.34375 0.47265625 0.345703125 0.37890625 0.3984375 0.390625 0.435546875 0.345703125 0.53515625 0.373046875 0.03125 0.201171875 -0.017578125 0.1796875 0.1015625 0.353515625 0.0625 0.33984375 0.30078125 0.646484375 0.27734375 0.59375 0.458984375 0.759765625 0.486328125 0.779296875 0.638671875 0.90625 0.642578125 0.890625 0.751953125 0.91015625 0.697265625 0.880859375 0.771484375 0.861328125 0.69921875 0.703125 0.80859375 0.6640625 0.728515625 0.412109375 0.76953125 0.4609375 0.669921875 0.158203125 0.533203125 0.22265625 0.453125 0.046875 0.2265625 0.146484375 0.392578125 -0.025390625 0.470703125 -0.033203125 0.4765625 0.12109375 0.564453125 0.125 0.595703125 0.412109375 0.66796875 0.4296875 0.681640625 0.68359375 0.72265625 0.6875 0.740234375 0.873046875 0.755859375 0.880859375 0.7109375 0.935546875 0.751953125 0.88671875 0.705078125 0.916015625 0.640625 0.78515625 0.560546875 0.822265625 0.392578125 0.59765625 0.322265625 0.572265625 0.166015625 0.361328125 0.201171875 0.294921875 0.12109375 0.119140625 0.24609375 0.037109375 0.693359375 0.3203125 0.666015625 0.349609375 0.634765625 0.291015625 0.5078125 0.361328125 0.482421875 0.306640625 0.3203125 0.423828125 0.330078125 0.35546875 0.23828125 0.49609375 0.26171875 0.41015625 0.30078125 0.533203125 0.3203125 0.4375 0.47265625 0.51953125 0.47265625 0.421875 0.6796875 0.458984375 0.625 0.373046875 0.724609375 0.416015625 0.892578125 0.306640625 0.833984375 0.396484375 0.814453125 0.32421875 0.68359375 0.43359375 0.671875 0.361328125 0.529296875 0.484375 0.546875 0.3984375 0.48828125 0.5078125 0.51171875 0.412109375 0.583984375 0.48046875 0.58984375 0.39453125 0.74609375 0.44140625 0.734375 0.357421875 0.916015625 0.39453125 0.859375 0.3203125 0.923828125 0.404296875 0.240234375 0.515625 0.4375 0.443359375 0.28125 0.56640625 0.4765625 0.490234375 0.373046875 0.583984375 0.5 0.537109375 0.466796875 0.58203125 0.53125 0.55859375 0.541015625 0.56640625 0.58984375 0.53515625 0.6328125 0.51953125 0.712890625 0.46875 0.666015625 0.47265625 0.701171875 0.408203125 0.51953125 0.46484375 0.5078125 0.41796875 0.291015625 0.49609375 0.1796875 0.537109375 0.2421875 0.5703125 0.3359375 0.53125 0.333984375 0.591796875 0.40625 0.544921875 0.46484375 0.57421875 0.53125 0.501953125 0.548828125 0.525390625 0.6015625 0.513671875 0.833984375 0.513671875 0.912109375 0.501953125 0.8125 0.583984375 0.85546875 0.5859375 0.75 0.63671875 0.83984375 0.60546875 0.763671875 0.630859375 0.771484375 0.564453125 0.625 0.6015625 0.666015625 0.458984375 0.716796875 0.501953125 0.62890625 0.54296875 0.65234375 0.580078125 0.53515625 0.625 0.60546875 0.638671875 0.517578125 0.6640625 0.3515625 0.646484375 0.375 0.708984375 0.42578125 0.705078125 0.486328125 0.73828125 0.666015625 0.6796875 0.607421875 0.7109375 0.7109375 0.64453125 0.408203125 0.955078125 0.224609375 0.8671875 0.228515625 0.65625 0.498046875 0.279296875 0.63671875 0.474609375 0.671875 0.3515625 0.671875 0.236328125 0.873046875 0.216796875 0.51171875 0.6875 0.455078125 0.70703125 0.48046875 0.615234375 0.396484375 0.66015625 0.44140625 0.521484375 0.33203125 0.57421875 0.412109375 0.380859375 0.61328125 0.552734375 0.51171875 0.576171875 0.44140625 0.5390625 0.4765625 0.416015625 0.6796875 0.833984375 0.876953125 0.74609375 0.8671875 0.572265625 0.541015625 0.296875 0.529296875 0.78125 0.564453125 0.646484375 0.490234375 0.4921875 0.298828125 0.3125 0.4453125 0.658203125 0.34765625 0.61328125 0.373046875 0.521484375 0.52734375 0.39453125 0.65625 0.931640625 0.513671875 0.81640625 0.349609375 0.533203125 0.32421875 0.189453125 0.408203125 0.615234375 0.3515625 0.53515625 0.390625 0.478515625 0.5234375 0.421875 0.826171875 0.857421875 0.826171875 0.673828125 0.650390625 0.5 0.296875 0.3046875 0.60546875 0.904296875 0.46875 0.771484375 0.337890625 0.546875 0.298828125 0.255859375 0.640625 0.388671875 0.65234375 0.447265625 0.6171875 0.517578125 0.576171875 0.5859375 0.52734375 0.466796875 0.517578125 0.568359375 0.5859375 0.580078125 0.78515625 0.5234375 0.84375 0.44921875 0.853515625 0.392578125 0.806640625 0.37890625 0.83203125 0.3359375 0.765625 0.3046875 0.3671875 0.525390625 0.515625 0.658203125 0.5390625 0.78515625 0.70703125 0.53515625 0.57421875 0.5703125 0.54296875 0.61328125 0.587890625 0.330078125 0.61328125 0.380859375 0.6171875 0.458984375 0.619140625 0.5390625 0.150390625 0.21875 0.1875 0.349609375 0.27734375 0.541015625 0.357421875 0.69140625 0.544921875 0.4765625 0.4296875 0.58984375 0.435546875 0.662109375 0.607421875 0.24609375 0.640625 0.32421875 0.62890625 0.46875 0.61328125 0.58203125 0.568359375 0.51953125 0.783203125 0.720703125 0.73828125 0.84375 0.5234375 0.578125 0.341796875 0.84765625 0.384765625 0.9921875 0.439453125 0.03125 0.513671875 0.185546875 0.61328125 0.49609375 0.6484375 0.73828125 0.42578125 0.5078125 0.486328125 0.78125 0.591796875 0.91796875 0.435546875 0.01953125 0.53515625 0.197265625 0.638671875 0.486328125 0.70703125 0.7265625 0.623046875 0.232421875 0.65625 0.265625 0.6875 0.32421875 0.697265625 0.41015625 0.453125 0.451171875 0.529296875 0.779296875 0.63671875 0.9296875 0.15625 0.138671875 0.13671875 0.267578125 0.248046875 0.484375 0.333984375 0.65234375 0.474609375 0.580078125 0.748046875 0.71484375 0.8359375 0.869140625 0.53125 0.46484375 0.369140625 0.5078125 0.30078125 0.59375 0.103515625 0.09375 0.201171875 0.271484375 0.396484375 0.52734375 0.55078125 0.74609375 0.650390625 0.630859375 0.849609375 0.587890625 0.94140625 0.521484375 0.82421875 0.453125 0.92578125 0.421875 0.794921875 0.310546875 0.681640625 -0.05078125 0.73046875 0.1171875 0.6875 0.42578125 0.669921875 0.671875 0.490234375 0.5078125 0.390625 0.548828125 0.3828125 0.615234375 -0.0625 0.134765625 -0.001953125 0.166015625 -0.03125 0.318359375 0.044921875 0.322265625 0.126953125 0.57421875 0.3046875 0.25 0.3671875 0.48828125 0.494140625 0.5078125 0.521484375 0.53515625 0.607421875 0.53125 0.494140625 0.501953125 0.255859375 0.287109375 0.107421875 0.185546875 0.265625 -0.068359375 0.4296875 -0.015625 0.212890625 0.109375 0.408203125 0.146484375 0.333984375 0.40234375 0.677734375 0.193359375 0.58984375 0.4296875 0.037109375 0.19140625 0.078125 0.1328125 0.103515625 0.35546875 0.150390625 0.267578125 0.2734375 0.50390625 0.30078125 0.154296875 0.408203125 0.3828125 0.607421875 0.392578125 0.45703125 0.43359375 0.369140625 0.455078125 0.548828125 0.537109375 0.919921875 0.390625 1.095703125 0.296875 0.462890625 0.314453125 0.48046875 0.39453125 0.51171875 0.521484375 0.451171875 0.501953125 0.2734375 0.466796875 0.2421875 0.421875 0.693359375 0.189453125 0.408203125 0.294921875 0.396484375 0.236328125 0.162109375 0.36328125 0.197265625 0.31640625 0.40625 0.51171875 0.01953125 0.341796875 -0.109375 0.265625 0.673828125 0.4140625 0.763671875 0.39453125 0.767578125 0.322265625 0.70703125 0.345703125 0.10546875 0.310546875 0.126953125 0.376953125 0.107421875 0.310546875 0.333984375 0.458984375 0.291015625 0.310546875 0.41796875 0.50390625 0.4921875 0.2578125 0.505859375 0.134765625 0.59375 0.443359375 0.619140625 0.095703125 0.576171875 -0.037109375 0.54296875 0.359375 0.517578125 0.40625 0.501953125 0.484375 0.521484375 0.560546875 0.25390625 0.3671875 0.0859375 0.169921875 0.5546875 0.671875 0.69140625 0.806640625 0.568359375 0.623046875 0.5625 0.5859375 0.7734375 0.298828125 0.826171875 0.294921875 0.8125 0.26953125 0.796875 0.28125 0.576171875 0.513671875 0.58203125 0.568359375 0.91796875 0.310546875 1 0.361328125 0.9921875 0.310546875 0.90625 0.310546875 0.486328125 0.572265625 0.408203125 0.609375 0.375 0.6796875 0.48828125 0.720703125 0.5859375 0.685546875 0.70703125 0.62109375 0.57421875 0.546875 0.482421875 0.634765625 0.75390625 0.921875 0.673828125 0.978515625 0.63671875 0.986328125 0.5625 0.7734375 0.4453125 0.951171875 0.5 0.751953125 0.658203125 0.77734375 0.349609375 0.931640625 0.234375 0.92578125 0.22265625 0.93359375 0.4296875 0.673828125 0.509765625 0.767578125 0.693359375 0.876953125 0.546875 0.95703125 0.4765625 1 0.541015625 0.74609375 0.5703125 0.888671875 0.599609375 0.72265625 0.646484375 0.921875 0.111328125 0.544921875 0.158203125 0.490234375 0.734375 0.697265625 0.62109375 0.759765625 0.7734375 0.87109375 0.328125 0.23046875 -0.01171875 0.189453125 0.70703125 0.572265625 0.41796875 0.591796875 0.556640625 0.337890625 0.927734375 0.275390625 0.69921875 0.353515625 0.671875 0.46484375 0.6328125 0.404296875 0.560546875 0.45703125 0.59375 0.310546875 0.61328125 0.490234375 0.423828125 0.43359375 0.74609375 0.44921875 0.38671875 0.236328125 0.19140625 0.146484375 0.443359375 0.669921875 0.408203125 0.642578125 0.447265625 0.591796875 0.41796875 0.4296875 0.27734375 0.412109375 0.357421875 0.296875 0.455078125 0.142578125 0.56640625 0.341796875 0.427734375 0.40234375 0.296875 0.3828125 0.32421875 0.455078125 0.400390625 0.375 0.3984375 0.330078125 0.39453125 0.302734375 0.1640625 0.162109375 0.44140625 0.158203125 0.525390625 -0.05859375 0.689453125 0.65234375 0.634765625 0.666015625 0.65234375 0.640625 0.3984375 0.310546875 0.20703125 0.310546875 0.615234375 0.54296875 0.8203125 0.05078125 0.779296875 0.21875 0.451171875 0.732421875 0.57421875 0.919921875 0.4609375 0.787109375 0.462890625 0.62890625 0.484375 -0.005859375 0.56640625 0.14453125 0.32421875 0.09375 0.404296875 0.2578125 0.140625 0.17578125 0.21875 0.357421875 0.708984375 0.90625 0.552734375 0.7890625 0.697265625 -0.103515625 0.76171875 0.0546875 0.43359375 -0.0546875 0.486328125 0.1171875 0.1171875 0.044921875 0.16015625 0.234375 0.841796875 0.345703125 0.66796875 0.359375 0.73046875 0.470703125 0.419921875 0.3984375 0.990234375 0.4453125 0.615234375 0.876953125 0.68359375 0.57421875 0.919921875 0.515625 0.564453125 0.6171875 0.54296875 -0.01953125 0.48828125 0.15625 0.3125 -0.0703125 0.240234375 0.115234375 0.6875 0.900390625 0.369140625 0.5859375 0.732421875 0.609375 0.44140625 0.3359375 0.421875 0.375 0.330078125 -0.00390625 0.328125 0.083984375 0.306640625 0.17578125 0.31640625 0.05859375 0.65625 0.587890625 0.537109375 0.3046875 0.205078125 0.412109375 0.45703125 0.916015625 0.76171875 0.84375 0.78515625 0.849609375 0.5390625 0.208984375 0.546875 0.5546875 0.30859375 0.099609375 0.23828125 0.033203125 0.70703125 0.056640625 0.26171875 0.1171875 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 1 1 0 0 3 3 1 1 2 2 4 4 3 3 2 2 5 5 3 3 4 4 6 6 5 5 4 4 7 7 5 5 6 6 8 8 7 7 6 6 9 9 7 7 8 8 10 10 9 9 8 8 11 11 9 9 10 10 12 12 11 11 10 10 13 13 11 11 12 12 14 14 13 13 12 12 15 15 13 13 14 14 16 16 15 15 14 14 17 17 15 15 16 16 18 18 17 17 16 16 19 19 17 17 18 18 20 20 19 19 18 18 23 23 22 22 21 21 24 24 22 22 23 23 25 25 24 24 23 23 26 26 24 24 25 25 27 27 26 26 25 25 28 28 26 26 27 27 29 29 28 28 27 27 30 30 28 28 29 29 31 31 30 30 29 29 32 32 30 30 31 31 33 33 32 32 31 31 34 34 32 32 33 33 35 35 34 34 33 33 36 36 34 34 35 35 37 37 36 36 35 35 38 38 36 36 37 37 39 39 38 38 37 37 40 40 38 38 39 39 41 41 40 40 39 39 44 44 43 43 42 42 45 45 43 43 44 44 46 46 45 45 44 44 47 47 45 45 46 46 48 48 47 47 46 46 49 49 47 47 48 48 50 50 49 49 48 48 51 51 49 49 50 50 52 52 51 51 50 50 53 53 51 51 52 52 54 54 53 53 52 52 55 55 53 53 54 54 56 56 55 55 54 54 57 57 55 55 56 56 58 58 57 57 56 56 59 59 57 57 58 58 60 60 59 59 58 58 61 61 59 59 60 60 62 62 61 61 60 60 65 65 64 64 63 63 66 66 64 64 65 65 67 67 66 66 65 65 68 68 66 66 67 67 69 69 68 68 67 67 70 70 68 68 69 69 71 71 70 70 69 69 72 72 70 70 71 71 73 73 72 72 71 71 74 74 72 72 73 73 75 75 74 74 73 73 76 76 74 74 75 75 77 77 76 76 75 75 78 78 76 76 77 77 79 79 78 78 77 77 80 80 78 78 79 79 81 81 80 80 79 79 82 82 80 80 81 81 83 83 82 82 81 81 86 86 85 85 84 84 87 87 85 85 86 86 88 88 87 87 86 86 89 89 87 87 88 88 90 90 89 89 88 88 91 91 89 89 90 90 92 92 91 91 90 90 93 93 91 91 92 92 94 94 93 93 92 92 95 95 93 93 94 94 96 96 95 95 94 94 97 97 95 95 96 96 98 98 97 97 96 96 99 99 97 97 98 98 100 100 99 99 98 98 101 101 99 99 100 100 102 102 101 101 100 100 103 103 101 101 102 102 104 104 103 103 102 102 107 107 106 106 105 105 108 108 106 106 107 107 109 109 108 108 107 107 110 110 108 108 109 109 111 111 110 110 109 109 112 112 110 110 111 111 113 113 112 112 111 111 114 114 112 112 113 113 115 115 114 114 113 113 116 116 114 114 115 115 117 117 116 116 115 115 118 118 116 116 117 117 119 119 118 118 117 117 120 120 118 118 119 119 121 121 120 120 119 119 122 122 120 120 121 121 123 123 122 122 121 121 124 124 122 122 123 123 125 125 124 124 123 123 128 128 127 127 126 126 129 129 127 127 128 128 130 130 129 129 128 128 131 131 129 129 130 130 132 132 131 131 130 130 133 133 131 131 132 132 134 134 133 133 132 132 135 135 133 133 134 134 136 136 135 135 134 134 137 137 135 135 136 136 138 138 137 137 136 136 139 139 137 137 138 138 140 140 139 139 138 138 141 141 139 139 140 140 142 142 141 141 140 140 143 143 141 141 142 142 144 144 143 143 142 142 145 145 143 143 144 144 146 146 145 145 144 144 149 149 148 148 147 147 150 150 148 148 149 149 151 151 150 150 149 149 152 152 150 150 151 151 153 153 152 152 151 151 154 154 152 152 153 153 155 155 154 154 153 153 156 156 154 154 155 155 157 157 156 156 155 155 158 158 156 156 157 157 159 159 158 158 157 157 160 160 158 158 159 159 161 161 160 160 159 159 162 162 160 160 161 161 163 163 162 162 161 161 164 164 162 162 163 163 165 165 164 164 163 163 166 166 164 164 165 165 167 167 166 166 165 165 168 168 96 96 94 94 98 98 96 96 168 168 169 169 98 98 168 168 100 100 98 98 169 169 170 170 100 100 169 169 102 102 100 100 170 170 171 171 102 102 170 170 104 104 102 102 171 171 84 84 104 104 171 171 172 172 117 117 115 115 119 119 117 117 172 172 173 173 119 119 172 172 121 121 119 119 173 173 174 174 121 121 173 173 123 123 121 121 174 174 175 175 123 123 174 174 125 125 123 123 175 175 105 105 125 125 175 175 176 176 33 33 31 31 35 35 33 33 176 176 177 177 35 35 176 176 37 37 35 35 177 177 178 178 37 37 177 177 39 39 37 37 178 178 179 179 39 39 178 178 41 41 39 39 179 179 21 21 41 41 179 179 180 180 159 159 157 157 161 161 159 159 180 180 181 181 161 161 180 180 163 163 161 161 181 181 182 182 163 163 181 181 165 165 163 163 182 182 183 183 165 165 182 182 167 167 165 165 183 183 147 147 167 167 183 183 184 184 138 138 136 136 140 140 138 138 184 184 185 185 140 140 184 184 142 142 140 140 185 185 186 186 142 142 185 185 144 144 142 142 186 186 187 187 144 144 186 186 146 146 144 144 187 187 126 126 146 146 187 187 188 188 12 12 10 10 14 14 12 12 188 188 189 189 14 14 188 188 16 16 14 14 189 189 190 190 16 16 189 189 18 18 16 16 190 190 191 191 18 18 190 190 20 20 18 18 191 191 0 0 20 20 191 191 192 192 75 75 73 73 77 77 75 75 192 192 193 193 77 77 192 192 79 79 77 77 193 193 194 194 79 79 193 193 81 81 79 79 194 194 195 195 81 81 194 194 83 83 81 81 195 195 63 63 83 83 195 195 196 196 54 54 52 52 56 56 54 54 196 196 197 197 56 56 196 196 58 58 56 56 197 197 198 198 58 58 197 197 60 60 58 58 198 198 199 199 60 60 198 198 62 62 60 60 199 199 42 42 62 62 199 199 3 3 200 200 1 1 201 201 200 200 3 3 5 5 201 201 3 3 202 202 201 201 5 5 7 7 202 202 5 5 203 203 202 202 7 7 9 9 203 203 7 7 11 11 203 203 9 9 24 24 204 204 22 22 205 205 204 204 24 24 26 26 205 205 24 24 206 206 205 205 26 26 28 28 206 206 26 26 207 207 206 206 28 28 30 30 207 207 28 28 32 32 207 207 30 30 195 195 65 65 63 63 208 208 65 65 195 195 194 194 208 208 195 195 209 209 208 208 194 194 193 193 209 209 194 194 210 210 209 209 193 193 192 192 210 210 193 193 73 73 210 210 192 192 129 129 211 211 127 127 212 212 211 211 129 129 131 131 212 212 129 129 213 213 212 212 131 131 133 133 213 213 131 131 214 214 213 213 133 133 135 135 214 214 133 133 137 137 214 214 135 135 66 66 215 215 64 64 216 216 215 215 66 66 68 68 216 216 66 66 217 217 216 216 68 68 70 70 217 217 68 68 218 218 217 217 70 70 72 72 218 218 70 70 74 74 218 218 72 72 191 191 2 2 0 0 219 219 2 2 191 191 190 190 219 219 191 191 220 220 219 219 190 190 189 189 220 220 190 190 221 221 220 220 189 189 188 188 221 221 189 189 10 10 221 221 188 188 150 150 222 222 148 148 223 223 222 222 150 150 152 152 223 223 150 150 224 224 223 223 152 152 154 154 224 224 152 152 225 225 224 224 154 154 156 156 225 225 154 154 158 158 225 225 156 156 175 175 107 107 105 105 226 226 107 107 175 175 174 174 226 226 175 175 227 227 226 226 174 174 173 173 227 227 174 174 228 228 227 227 173 173 172 172 228 228 173 173 115 115 228 228 172 172 87 87 229 229 85 85 230 230 229 229 87 87 89 89 230 230 87 87 231 231 230 230 89 89 91 91 231 231 89 89 232 232 231 231 91 91 93 93 232 232 91 91 95 95 232 232 93 93 187 187 128 128 126 126 233 233 128 128 187 187 186 186 233 233 187 187 234 234 233 233 186 186 185 185 234 234 186 186 235 235 234 234 185 185 184 184 235 235 185 185 136 136 235 235 184 184 108 108 236 236 106 106 237 237 236 236 108 108 110 110 237 237 108 108 238 238 237 237 110 110 112 112 238 238 110 110 239 239 238 238 112 112 114 114 239 239 112 112 116 116 239 239 114 114 171 171 86 86 84 84 240 240 86 86 171 171 170 170 240 240 171 171 241 241 240 240 170 170 169 169 241 241 170 170 242 242 241 241 169 169 168 168 242 242 169 169 94 94 242 242 168 168 45 45 243 243 43 43 244 244 243 243 45 45 47 47 244 244 45 45 245 245 244 244 47 47 49 49 245 245 47 47 246 246 245 245 49 49 51 51 246 246 49 49 53 53 246 246 51 51 183 183 149 149 147 147 247 247 149 149 183 183 182 182 247 247 183 183 248 248 247 247 182 182 181 181 248 248 182 182 249 249 248 248 181 181 180 180 249 249 181 181 157 157 249 249 180 180 179 179 23 23 21 21 250 250 23 23 179 179 178 178 250 250 179 179 251 251 250 250 178 178 177 177 251 251 178 178 252 252 251 251 177 177 176 176 252 252 177 177 31 31 252 252 176 176 199 199 44 44 42 42 253 253 44 44 199 199 198 198 253 253 199 199 254 254 253 253 198 198 197 197 254 254 198 198 255 255 254 254 197 197 196 196 255 255 197 197 52 52 255 255 196 196 13 13 203 203 11 11 256 256 203 203 13 13 15 15 256 256 13 13 257 257 256 256 15 15 17 17 257 257 15 15 258 258 257 257 17 17 19 19 258 258 17 17 97 97 232 232 95 95 259 259 232 232 97 97 99 99 259 259 97 97 260 260 259 259 99 99 101 101 260 260 99 99 261 261 260 260 101 101 103 103 261 261 101 101 34 34 207 207 32 32 262 262 207 207 34 34 36 36 262 262 34 34 263 263 262 262 36 36 38 38 263 263 36 36 264 264 263 263 38 38 40 40 264 264 38 38 160 160 225 225 158 158 265 265 225 225 160 160 162 162 265 265 160 160 266 266 265 265 162 162 164 164 266 266 162 162 267 267 266 266 164 164 166 166 267 267 164 164 76 76 218 218 74 74 268 268 218 218 76 76 78 78 268 268 76 76 269 269 268 268 78 78 80 80 269 269 78 78 270 270 269 269 80 80 82 82 270 270 80 80 55 55 246 246 53 53 271 271 246 246 55 55 57 57 271 271 55 55 272 272 271 271 57 57 59 59 272 272 57 57 273 273 272 272 59 59 61 61 273 273 59 59 118 118 239 239 116 116 274 274 239 239 118 118 120 120 274 274 118 118 275 275 274 274 120 120 122 122 275 275 120 120 276 276 275 275 122 122 124 124 276 276 122 122 139 139 214 214 137 137 277 277 214 214 139 139 141 141 277 277 139 139 278 278 277 277 141 141 143 143 278 278 141 141 279 279 278 278 143 143 145 145 279 279 143 143 226 226 109 109 107 107 280 280 109 109 226 226 227 227 280 280 226 226 281 281 280 280 227 227 228 228 281 281 227 227 115 115 281 281 228 228 219 219 4 4 2 2 282 282 4 4 219 219 220 220 282 282 219 219 283 283 282 282 220 220 221 221 283 283 220 220 10 10 283 283 221 221 250 250 25 25 23 23 284 284 25 25 250 250 251 251 284 284 250 250 285 285 284 284 251 251 252 252 285 285 251 251 31 31 285 285 252 252 240 240 88 88 86 86 286 286 88 88 240 240 241 241 286 286 240 240 287 287 286 286 241 241 242 242 287 287 241 241 94 94 287 287 242 242 247 247 151 151 149 149 288 288 151 151 247 247 248 248 288 288 247 247 289 289 288 288 248 248 249 249 289 289 248 248 157 157 289 289 249 249 208 208 67 67 65 65 290 290 67 67 208 208 209 209 290 290 208 208 291 291 290 290 209 209 210 210 291 291 209 209 73 73 291 291 210 210 253 253 46 46 44 44 292 292 46 46 253 253 254 254 292 292 253 253 293 293 292 292 254 254 255 255 293 293 254 254 52 52 293 293 255 255 233 233 130 130 128 128 294 294 130 130 233 233 234 234 294 294 233 233 295 295 294 294 234 234 235 235 295 295 234 234 136 136 295 295 235 235 262 262 206 206 207 207 296 296 206 206 262 262 263 263 296 296 262 262 297 297 296 296 263 263 264 264 297 297 263 263 274 274 238 238 239 239 298 298 238 238 274 274 275 275 298 298 274 274 299 299 298 298 275 275 276 276 299 299 275 275 265 265 224 224 225 225 300 300 224 224 265 265 266 266 300 300 265 265 301 301 300 300 266 266 267 267 301 301 266 266 256 256 202 202 203 203 302 302 202 202 256 256 257 257 302 302 256 256 303 303 302 302 257 257 258 258 303 303 257 257 277 277 213 213 214 214 304 304 213 213 277 277 278 278 304 304 277 277 305 305 304 304 278 278 279 279 305 305 278 278 259 259 231 231 232 232 306 306 231 231 259 259 260 260 306 306 259 259 307 307 306 306 260 260 261 261 307 307 260 260 271 271 245 245 246 246 308 308 245 245 271 271 272 272 308 308 271 271 309 309 308 308 272 272 273 273 309 309 272 272 268 268 217 217 218 218 310 310 217 217 268 268 269 269 310 310 268 268 311 311 310 310 269 269 270 270 311 311 269 269 292 292 48 48 46 46 312 312 48 48 292 292 293 293 312 312 292 292 52 52 312 312 293 293 284 284 27 27 25 25 313 313 27 27 284 284 285 285 313 313 284 284 31 31 313 313 285 285 286 286 90 90 88 88 314 314 90 90 286 286 287 287 314 314 286 286 94 94 314 314 287 287 282 282 6 6 4 4 315 315 6 6 282 282 283 283 315 315 282 282 10 10 315 315 283 283 280 280 111 111 109 109 316 316 111 111 280 280 281 281 316 316 280 280 115 115 316 316 281 281 290 290 69 69 67 67 317 317 69 69 290 290 291 291 317 317 290 290 73 73 317 317 291 291 288 288 153 153 151 151 318 318 153 153 288 288 289 289 318 318 288 288 157 157 318 318 289 289 294 294 132 132 130 130 319 319 132 132 294 294 295 295 319 319 294 294 136 136 319 319 295 295 300 300 223 223 224 224 320 320 223 223 300 300 301 301 320 320 300 300 296 296 205 205 206 206 321 321 205 205 296 296 297 297 321 321 296 296 308 308 244 244 245 245 322 322 244 244 308 308 309 309 322 322 308 308 306 306 230 230 231 231 323 323 230 230 306 306 307 307 323 323 306 306 298 298 237 237 238 238 324 324 237 237 298 298 299 299 324 324 298 298 302 302 201 201 202 202 325 325 201 201 302 302 303 303 325 325 302 302 304 304 212 212 213 213 326 326 212 212 304 304 305 305 326 326 304 304 310 310 216 216 217 217 327 327 216 216 310 310 311 311 327 327 310 310 50 50 312 312 52 52 48 48 312 312 50 50 92 92 314 314 94 94 90 90 314 314 92 92 29 29 313 313 31 31 27 27 313 313 29 29 8 8 315 315 10 10 6 6 315 315 8 8 113 113 316 316 115 115 111 111 316 316 113 113 71 71 317 317 73 73 69 69 317 317 71 71 155 155 318 318 157 157 153 153 318 318 155 155 134 134 319 319 136 136 132 132 319 319 134 134 321 321 204 204 205 205 322 322 243 243 244 244 323 323 229 229 230 230 320 320 222 222 223 223 324 324 236 236 237 237 325 325 200 200 201 201 327 327 215 215 216 216 326 326 211 211 212 212 330 330 329 329 328 328 331 331 329 329 330 330 332 332 331 331 330 330 333 333 331 331 332 332 334 334 333 333 332 332 335 335 333 333 334 334 336 336 335 335 334 334 337 337 335 335 336 336 338 338 337 337 336 336 339 339 337 337 338 338 340 340 339 339 338 338 341 341 339 339 340 340 342 342 341 341 340 340 343 288 341 341 342 342 344 343 343 288 342 342 345 344 343 288 344 343 346 345 345 344 344 343 347 346 345 344 346 345 348 347 347 346 346 345 349 348 347 346 348 347 350 349 349 348 348 347 353 352 352 351 351 350 354 353 352 351 353 352 355 354 354 353 353 352 356 355 354 353 355 354 357 356 356 355 355 354 358 357 356 355 357 356 359 358 358 357 357 356 360 359 358 357 359 358 361 360 360 359 359 358 362 361 360 359 361 360 363 362 362 361 361 360 364 363 362 361 363 362 365 364 364 363 363 362 366 365 364 363 365 364 367 366 366 365 365 364 368 367 366 365 367 366 369 368 368 367 367 366 370 369 368 367 369 368 371 370 370 369 369 368 357 356 370 369 371 370 359 358 357 356 371 370 374 373 373 372 372 371 375 374 373 372 374 373 376 375 375 374 374 373 377 376 375 374 376 375 378 377 377 376 376 375 379 378 377 376 378 377 380 379 379 378 378 377 381 380 379 378 380 379 382 381 381 380 380 379 383 382 381 380 382 381 384 383 383 382 382 381 385 384 383 382 384 383 386 385 385 384 384 383 387 386 385 384 386 385 388 387 387 386 386 385 389 388 387 386 388 387 390 389 389 388 388 387 391 390 389 388 390 389 392 391 391 390 390 389 378 377 391 390 392 391 380 379 378 377 392 391 395 394 394 393 393 392 396 395 394 393 395 394 397 396 396 395 395 394 398 397 396 395 397 396 399 398 398 397 397 396 400 399 398 397 399 398 401 400 400 399 399 398 402 401 400 399 401 400 403 402 402 401 401 400 404 403 402 401 403 402 405 404 404 403 403 402 406 405 404 403 405 404 407 406 406 405 405 404 408 407 406 405 407 406 409 408 408 407 407 406 410 409 408 407 409 408 411 410 410 409 409 408 412 411 410 409 411 410 413 412 412 411 411 410 414 413 412 411 413 412 415 414 414 413 413 412 418 417 417 416 416 415 419 418 417 416 418 417 420 419 419 418 418 417 421 420 419 418 420 419 422 421 421 420 420 419 423 422 421 420 422 421 424 423 423 422 422 421 425 424 423 422 424 423 426 425 425 424 424 423 427 426 425 424 426 425 428 427 427 426 426 425 429 428 427 426 428 427 430 429 429 428 428 427 431 430 429 428 430 429 432 431 431 430 430 429 433 432 431 430 432 431 434 433 433 432 432 431 435 434 433 432 434 433 436 435 435 434 434 433 437 436 435 434 436 435 438 437 437 436 436 435 441 440 440 439 439 438 442 441 440 439 441 440 443 442 442 441 441 440 444 443 442 441 443 442 445 444 444 443 443 442 446 445 444 443 445 444 447 446 446 445 445 444 448 447 446 445 447 446 449 448 448 447 447 446 450 449 448 447 449 448 451 450 450 449 449 448 452 451 450 449 451 450 453 452 452 451 451 450 454 453 452 451 453 452 455 454 454 453 453 452 456 455 454 453 455 454 457 456 456 455 455 454 458 457 456 455 457 456 459 458 458 457 457 456 445 444 458 457 459 458 447 446 445 444 459 458 462 461 461 460 460 459 463 462 461 460 462 461 464 463 463 462 462 461 465 464 463 462 464 463 466 465 465 464 464 463 467 466 465 464 466 465 468 467 467 466 466 465 469 468 467 466 468 467 470 469 469 468 468 467 471 470 469 468 470 469 472 471 471 470 470 469 473 472 471 470 472 471 474 473 473 472 472 471 475 474 473 472 474 473 476 475 475 474 474 473 477 476 475 474 476 475 478 477 477 476 476 475 479 478 477 476 478 477 480 479 479 478 478 477 483 482 482 481 481 480 484 483 482 481 483 482 485 484 484 483 483 482 486 485 484 483 485 484 487 486 486 485 485 484 488 487 486 485 487 486 489 488 488 487 487 486 490 489 488 487 489 488 491 490 490 489 489 488 492 491 490 489 491 490 493 492 492 491 491 490 494 493 492 491 493 492 495 494 494 493 493 492 496 495 494 493 495 494 497 496 496 495 495 494 498 497 496 495 497 496 499 498 498 497 497 496 500 499 498 497 499 498 501 500 500 499 499 498 504 503 503 502 502 501 505 504 503 502 504 503 506 505 505 504 504 503 507 506 505 504 506 505 508 507 507 506 506 505 509 508 507 506 508 507 510 509 509 508 508 507 511 510 509 508 510 509 512 511 511 510 510 509 513 512 511 510 512 511 514 513 513 512 512 511 515 514 513 512 514 513 516 515 515 514 514 513 517 516 515 514 516 515 518 517 517 516 516 515 519 518 517 516 518 517 520 519 519 518 518 517 521 520 519 518 520 519 522 521 521 520 520 519 525 524 524 523 523 522 526 525 524 523 525 524 527 526 526 525 525 524 528 527 526 525 527 526 529 528 528 527 527 526 530 529 528 527 529 528 531 530 530 529 529 528 532 531 530 529 531 530 533 532 532 531 531 530 534 533 532 531 533 532 535 534 534 533 533 532 536 535 534 533 535 534 537 536 536 535 535 534 538 537 536 535 537 536 539 538 538 537 537 536 540 539 538 537 539 538 541 540 540 539 539 538 542 541 540 539 541 540 543 542 542 541 541 540 546 545 545 544 544 543 547 546 545 544 546 545 548 547 547 546 546 545 549 548 547 546 548 547 550 549 549 548 548 547 551 550 549 548 550 549 552 551 551 550 550 549 553 552 551 550 552 551 554 553 553 552 552 551 555 554 553 552 554 553 556 555 555 554 554 553 557 556 555 554 556 555 558 557 557 556 556 555 559 558 557 556 558 557 560 559 559 558 558 557 561 560 559 558 560 559 562 561 561 560 560 559 563 562 561 560 562 561 564 563 563 562 562 561 567 566 566 565 565 564 568 567 566 565 567 566 569 568 568 567 567 566 570 569 568 567 569 568 571 570 570 569 569 568 572 571 570 569 571 570 573 572 572 571 571 570 574 573 572 571 573 572 575 574 574 573 573 572 576 575 574 573 575 574 577 576 576 575 575 574 578 577 576 575 577 576 579 578 578 577 577 576 580 579 578 577 579 578 581 580 580 579 579 578 582 581 580 579 581 580 583 582 582 581 581 580 584 583 582 581 583 582 585 584 584 583 583 582 588 587 587 586 586 585 589 588 587 586 588 587 590 589 589 588 588 587 591 590 589 588 590 589 592 591 591 590 590 589 593 592 591 590 592 591 594 593 593 592 592 591 595 594 593 592 594 593 596 595 595 594 594 593 597 596 595 594 596 595 598 597 597 596 596 595 599 598 597 596 598 597 600 599 599 598 598 597 601 600 599 598 600 599 602 601 601 600 600 599 603 602 601 600 602 601 604 603 603 602 602 601 605 604 603 602 604 603 606 605 605 604 604 603 609 608 608 607 607 606 610 609 608 607 609 608 611 610 610 609 609 608 612 611 610 609 611 610 613 612 612 611 611 610 614 613 612 611 613 612 615 614 614 613 613 612 616 615 614 613 615 614 617 616 616 615 615 614 618 617 616 615 617 616 619 618 618 617 617 616 620 619 618 617 619 618 621 620 620 619 619 618 622 621 620 619 621 620 623 622 622 621 621 620 624 623 622 621 623 622 625 624 624 623 623 622 626 625 624 623 625 624 627 626 626 625 625 624 630 629 629 628 628 627 631 630 629 628 630 629 632 631 631 630 630 629 633 632 631 630 632 631 634 633 633 632 632 631 635 634 633 632 634 633 636 635 635 634 634 633 637 636 635 634 636 635 638 637 637 636 636 635 639 638 637 636 638 637 640 639 639 638 638 637 641 640 639 638 640 639 642 641 641 640 640 639 643 642 641 640 642 641 644 643 643 642 642 641 645 644 643 642 644 643 646 645 645 644 644 643 647 646 645 644 646 645 648 647 647 646 646 645 651 650 650 649 649 648 652 651 650 649 651 650 653 652 652 651 651 650 654 653 652 651 653 652 655 654 654 653 653 652 656 655 654 653 655 654 657 656 656 655 655 654 658 657 656 655 657 656 659 658 658 657 657 656 660 659 658 657 659 658 661 660 660 659 659 658 662 661 660 659 661 660 663 662 662 661 661 660 664 663 662 661 663 662 665 664 664 663 663 662 666 665 664 663 665 664 667 666 666 665 665 664 668 667 666 665 667 666 669 668 668 667 667 666 672 671 671 670 670 669 673 672 671 670 672 671 674 673 673 672 672 671 675 674 673 672 674 673 676 675 675 674 674 673 677 676 675 674 676 675 678 677 677 676 676 675 679 678 677 676 678 677 680 679 679 678 678 677 681 680 679 678 680 679 682 681 681 680 680 679 683 682 681 680 682 681 684 683 683 682 682 681 685 684 683 682 684 683 670 669 685 684 684 683 671 670 685 684 670 669 688 687 687 686 686 685 689 688 687 686 688 687 690 689 689 688 688 687 691 690 689 688 690 689 692 691 691 690 690 689 693 692 691 690 692 691 694 693 693 692 692 691 695 694 693 692 694 693 696 695 695 694 694 693 697 696 695 694 696 695 698 697 697 696 696 695 699 698 697 696 698 697 700 699 699 698 698 697 701 700 699 698 700 699 686 685 701 700 700 699 687 686 701 700 686 685 704 703 703 702 702 701 705 704 703 702 704 703 706 705 705 704 704 703 707 706 705 704 706 705 708 707 707 706 706 705 709 708 707 706 708 707 710 709 709 708 708 707 711 710 709 708 710 709 712 711 711 710 710 709 713 712 711 710 712 711 714 713 713 712 712 711 715 714 713 712 714 713 716 715 715 714 714 713 717 716 715 714 716 715 718 717 717 716 716 715 719 718 704 703 702 701 720 719 704 703 719 718 721 720 720 719 719 718 722 721 720 719 721 720 723 722 722 721 721 720 724 723 722 721 723 722 725 724 724 723 723 722 726 725 724 723 725 724 714 713 726 725 725 724 727 726 726 725 714 713 712 711 727 726 714 713 710 709 727 726 712 711 728 727 701 700 687 686 729 728 701 700 728 727 730 729 729 728 728 727 731 730 729 728 730 729 732 731 731 730 730 729 733 732 731 730 732 731 734 733 733 732 732 731 735 734 733 732 734 733 736 735 735 734 734 733 697 696 735 734 736 735 695 694 697 696 736 735 737 736 685 684 671 670 738 737 685 684 737 736 739 738 738 737 737 736 740 739 738 737 739 738 741 740 740 739 739 738 742 741 740 739 741 740 743 742 742 741 741 740 744 617 742 741 743 742 745 743 744 617 743 742 681 680 744 617 745 743 679 678 681 680 745 743 399 398 403 402 401 400 746 744 403 402 399 398 747 745 746 744 399 398 748 746 746 744 747 745 749 747 748 746 747 745 750 748 748 746 749 747 409 408 750 748 749 747 751 749 750 748 409 408 407 406 751 749 409 408 405 404 751 749 407 406 752 750 535 534 533 532 537 536 535 534 752 750 753 751 537 536 752 750 539 538 537 536 753 751 754 752 539 538 753 751 541 540 539 538 754 752 755 753 541 540 754 752 543 542 541 540 755 753 523 522 543 542 755 753 406 405 402 401 404 403 756 754 402 401 406 405 408 407 756 754 406 405 757 755 756 754 408 407 410 409 757 755 408 407 758 756 757 755 410 409 412 411 758 756 410 409 759 757 758 756 412 411 414 413 759 757 412 411 760 758 491 490 489 488 761 759 491 490 760 758 762 760 761 759 760 758 763 761 761 759 762 760 764 762 763 761 762 760 765 763 763 761 764 762 766 764 765 763 764 762 499 498 765 763 766 764 501 500 499 498 766 764 767 765 556 555 554 553 558 557 556 555 767 765 768 766 558 557 767 765 560 559 558 557 768 766 769 767 560 559 768 766 562 561 560 559 769 767 770 768 562 561 769 767 564 563 562 561 770 768 544 543 564 563 770 768 771 769 598 597 596 595 600 599 598 597 771 769 772 770 600 599 771 769 602 601 600 599 772 770 773 771 602 601 772 770 604 603 602 601 773 771 774 772 604 603 773 771 606 605 604 603 774 772 586 585 606 605 774 772 775 773 472 471 470 469 474 473 472 471 775 773 776 774 474 473 775 773 476 475 474 473 776 774 777 775 476 475 776 774 478 477 476 475 777 775 778 776 478 477 777 775 480 479 478 477 778 776 460 459 480 479 778 776 779 777 577 576 575 574 579 578 577 576 779 777 780 778 579 578 779 777 581 580 579 578 780 778 781 779 581 580 780 778 583 582 581 580 781 779 782 780 583 582 781 779 585 584 583 582 782 780 565 564 585 584 782 780 783 781 661 660 659 658 663 662 661 660 783 781 784 782 663 662 783 781 665 664 663 662 784 782 785 783 665 664 784 782 667 666 665 664 785 783 786 784 667 666 785 783 669 668 667 666 786 784 649 648 669 668 786 784 787 785 619 618 617 616 621 620 619 618 787 785 788 786 621 620 787 785 623 622 621 620 788 786 789 787 623 622 788 786 625 624 623 622 789 787 790 788 625 624 789 787 627 626 625 624 790 788 607 606 627 626 790 788 791 789 640 639 638 637 642 641 640 639 791 789 792 790 642 641 791 789 644 643 642 641 792 790 793 791 644 643 792 790 646 645 644 643 793 791 794 792 646 645 793 791 648 647 646 645 794 792 628 627 648 647 794 792 795 793 514 513 512 511 516 515 514 513 795 793 796 794 516 515 795 793 518 517 516 515 796 794 797 795 518 517 796 794 520 519 518 517 797 795 798 796 520 519 797 795 522 521 520 519 798 796 502 501 522 521 798 796 610 609 799 797 608 607 800 798 799 797 610 609 612 611 800 798 610 609 801 799 800 798 612 611 614 613 801 799 612 611 802 800 801 799 614 613 616 615 802 800 614 613 618 617 802 800 616 615 770 768 546 545 544 543 803 801 546 545 770 768 769 767 803 801 770 768 804 802 803 801 769 767 768 766 804 802 769 767 805 803 804 802 768 766 767 765 805 803 768 766 554 553 805 803 767 765 338 338 342 342 340 340 806 804 342 342 338 338 336 336 806 804 338 338 807 805 806 804 336 336 808 806 807 805 336 336 809 807 807 805 808 806 810 808 809 807 808 806 811 809 809 807 810 808 778 776 462 461 460 459 812 810 462 461 778 776 777 775 812 810 778 776 813 811 812 810 777 775 776 774 813 811 777 775 814 812 813 811 776 774 775 773 814 812 776 774 470 469 814 812 775 773 689 688 728 727 687 686 815 813 728 727 689 688 691 690 815 813 689 688 816 814 815 813 691 690 693 692 816 814 691 690 817 815 816 814 693 692 695 694 817 815 693 692 736 735 817 815 695 694 568 567 818 816 566 565 819 817 818 816 568 567 570 569 819 817 568 567 820 818 819 817 570 569 572 571 820 818 570 569 821 819 820 818 572 571 574 573 821 819 572 571 576 575 821 819 574 573 463 462 822 820 461 460 823 821 822 820 463 462 465 464 823 821 463 462 824 822 823 821 465 464 467 466 824 822 465 464 825 823 824 822 467 466 469 468 825 823 467 466 471 470 825 823 469 468 782 780 567 566 565 564 826 824 567 566 782 780 781 779 826 824 782 780 827 825 826 824 781 779 780 778 827 825 781 779 828 826 827 825 780 778 779 777 828 826 780 778 575 574 828 826 779 777 484 483 829 827 482 481 830 828 829 827 484 483 486 485 830 828 484 483 831 829 830 828 486 485 488 487 831 829 486 485 832 830 831 829 488 487 490 489 832 830 488 487 492 491 832 830 490 489 774 772 588 587 586 585 833 831 588 587 774 772 773 771 833 831 774 772 834 832 833 831 773 771 772 770 834 832 773 771 835 833 834 832 772 770 771 769 835 833 772 770 596 595 835 833 771 769 755 753 525 524 523 522 836 834 525 524 755 753 754 752 836 834 755 753 837 835 836 834 754 752 753 751 837 835 754 752 838 836 837 835 753 751 752 750 838 836 753 751 533 532 838 836 752 750 505 504 839 837 503 502 840 838 839 837 505 504 507 506 840 838 505 504 841 839 840 838 507 506 509 508 841 839 507 506 842 840 841 839 509 508 511 510 842 840 509 508 513 512 842 840 511 510 798 796 504 503 502 501 843 841 504 503 798 796 797 795 843 841 798 796 844 842 843 841 797 795 796 794 844 842 797 795 845 843 844 842 796 794 795 793 845 843 796 794 512 511 845 843 795 793 652 651 846 844 650 649 847 845 846 844 652 651 654 653 847 845 652 651 848 846 847 845 654 653 656 655 848 846 654 653 849 847 848 846 656 655 658 657 849 847 656 655 660 659 849 847 658 657 547 546 850 848 545 544 851 849 850 848 547 546 549 548 851 849 547 546 852 850 851 849 549 548 551 550 852 850 549 548 853 851 852 850 551 550 553 552 853 851 551 550 555 554 853 851 553 552 786 784 651 650 649 648 854 852 651 650 786 784 785 783 854 852 786 784 855 853 854 852 785 783 784 782 855 853 785 783 856 854 855 853 784 782 783 781 856 854 784 782 659 658 856 854 783 781 589 588 857 855 587 586 858 856 857 855 589 588 591 590 858 856 589 588 859 857 858 856 591 590 593 592 859 857 591 590 860 858 859 857 593 592 595 594 860 858 593 592 597 596 860 858 595 594 794 792 630 629 628 627 861 859 630 629 794 792 793 791 861 859 794 792 862 860 861 859 793 791 792 790 862 860 793 791 863 861 862 860 792 790 791 789 863 861 792 790 638 637 863 861 791 789 673 672 737 736 671 670 864 862 737 736 673 672 675 674 864 862 673 672 865 863 864 862 675 674 677 676 865 863 675 674 866 864 865 863 677 676 679 678 866 864 677 676 745 743 866 864 679 678 631 630 867 865 629 628 868 866 867 865 631 630 633 632 868 866 631 630 869 867 868 866 633 632 635 634 869 867 633 632 870 868 869 867 635 634 637 636 870 868 635 634 639 638 870 868 637 636 766 764 481 480 501 500 483 482 481 480 766 764 764 762 483 482 766 764 485 484 483 482 764 762 762 760 485 484 764 762 487 486 485 484 762 760 760 758 487 486 762 760 489 488 487 486 760 758 426 425 430 429 428 427 871 869 430 429 426 425 424 423 871 869 426 425 872 870 871 869 424 423 873 871 872 870 424 423 874 872 872 870 873 871 875 873 874 872 873 871 876 874 874 872 875 873 526 525 877 875 524 523 878 876 877 875 526 525 528 527 878 876 526 525 879 877 878 876 528 527 530 529 879 877 528 527 880 878 879 877 530 529 532 531 880 878 530 529 534 533 880 878 532 531 790 788 609 608 607 606 881 879 609 608 790 788 789 787 881 879 790 788 882 880 881 879 789 787 788 786 882 880 789 787 883 881 882 880 788 786 787 785 883 881 788 786 617 616 883 881 787 785 886 884 885 883 884 882 887 885 885 883 886 884 888 886 887 885 886 884 889 887 887 885 888 886 890 888 889 887 888 886 374 373 889 887 890 888 376 375 374 373 890 888 891 889 347 346 349 348 892 890 347 346 891 889 893 889 892 890 891 889 894 891 892 890 893 889 895 505 894 891 893 889 329 329 894 891 895 505 328 328 329 329 895 505 515 514 842 840 513 512 896 892 842 840 515 514 517 516 896 892 515 514 897 893 896 892 517 516 519 518 897 893 517 516 898 894 897 893 519 518 521 520 898 894 519 518 901 897 900 896 899 895 902 898 900 896 901 897 903 899 902 898 901 897 904 900 902 898 903 899 905 901 904 900 903 899 353 352 904 900 905 901 355 354 353 352 905 901 908 904 907 903 906 902 909 905 907 903 908 904 910 906 909 905 908 904 911 907 909 905 910 906 912 908 911 907 910 906 441 440 911 907 912 908 443 442 441 440 912 908 557 556 853 851 555 554 913 909 853 851 557 556 559 558 913 909 557 556 914 910 913 909 559 558 561 560 914 910 559 558 915 911 914 910 561 560 563 562 915 911 561 560 599 598 860 858 597 596 916 912 860 858 599 598 601 600 916 912 599 598 917 913 916 912 601 600 603 602 917 913 601 600 918 914 917 913 603 602 605 604 918 914 603 602 830 828 919 915 829 827 920 916 919 915 830 828 831 829 920 916 830 828 921 917 920 916 831 829 832 830 921 917 831 829 494 493 921 917 832 830 492 491 494 493 832 830 578 577 821 819 576 575 922 918 821 819 578 577 580 579 922 918 578 577 923 919 922 918 580 579 582 581 923 919 580 579 924 920 923 919 582 581 584 583 924 920 582 581 925 921 758 756 759 757 926 922 758 756 925 921 927 923 926 922 925 921 928 924 926 922 927 923 929 925 928 924 927 923 396 395 928 924 929 925 394 393 396 395 929 925 536 535 880 878 534 533 930 926 880 878 536 535 538 537 930 926 536 535 931 927 930 926 538 537 540 539 931 927 538 537 932 928 931 927 540 539 542 541 932 928 540 539 711 710 707 706 709 708 933 153 707 706 711 710 713 712 933 153 711 710 934 929 933 153 713 712 935 930 934 929 713 712 936 931 934 929 935 930 937 932 936 931 935 930 938 933 435 434 437 436 939 934 435 434 938 933 940 935 939 934 938 933 941 936 939 934 940 935 942 937 941 936 940 935 417 416 941 936 942 937 416 415 417 416 942 937 473 472 825 823 471 470 943 938 825 823 473 472 475 474 943 938 473 472 944 939 943 938 475 474 477 476 944 939 475 474 945 940 944 939 477 476 479 478 945 940 477 476 641 640 870 868 639 638 946 941 870 868 641 640 643 642 946 941 641 640 947 942 946 941 643 642 645 644 947 942 643 642 948 943 947 942 645 644 647 646 948 943 645 644 800 798 949 944 799 797 950 945 949 944 800 798 801 799 950 945 800 798 951 946 950 945 801 799 802 800 951 946 801 799 620 619 951 946 802 800 618 617 620 619 802 800 662 661 849 847 660 659 952 947 849 847 662 661 664 663 952 947 662 661 953 948 952 947 664 663 666 665 953 948 664 663 954 949 953 948 666 665 668 667 954 949 666 665 833 831 590 589 588 587 955 950 590 589 833 831 834 832 955 950 833 831 956 951 955 950 834 832 835 833 956 951 834 832 596 595 956 951 835 833 345 344 341 341 343 288 957 952 341 341 345 344 347 346 957 952 345 344 958 953 957 952 347 346 892 890 958 953 347 346 894 891 958 953 892 890 959 954 332 332 330 330 960 955 332 332 959 954 961 956 960 955 959 954 810 808 960 955 961 956 962 957 810 808 961 956 811 809 810 808 962 957 803 801 548 547 546 545 963 958 548 547 803 801 804 802 963 958 803 801 964 959 963 958 804 802 805 803 964 959 804 802 554 553 964 959 805 803 965 960 420 419 418 417 966 961 420 419 965 960 967 962 966 961 965 960 875 873 966 961 967 962 968 963 875 873 967 962 876 874 875 873 968 963 881 879 611 610 609 608 969 964 611 610 881 879 882 880 969 964 881 879 970 965 969 964 882 880 883 881 970 965 882 880 617 616 970 965 883 881 497 496 765 763 499 498 971 966 765 763 497 496 495 494 971 966 497 496 972 967 971 966 495 494 493 492 972 967 495 494 491 490 972 967 493 492 454 453 912 908 910 906 973 968 912 908 454 453 456 455 973 968 454 453 974 969 973 968 456 455 458 457 974 969 456 455 445 444 974 969 458 457 826 824 569 568 567 566 975 970 569 568 826 824 827 825 975 970 826 824 976 971 975 970 827 825 828 826 976 971 827 825 575 574 976 971 828 826 977 972 449 448 447 446 978 973 449 448 977 972 457 456 978 973 977 972 979 974 978 973 457 456 455 454 979 974 457 456 453 452 979 974 455 454 836 834 527 526 525 524 980 975 527 526 836 834 837 835 980 975 836 834 981 976 980 975 837 835 838 836 981 976 837 835 533 532 981 976 838 836 366 365 905 901 903 899 982 977 905 901 366 365 368 367 982 977 366 365 983 978 982 977 368 367 370 369 983 978 368 367 357 356 983 978 370 369 984 979 361 360 359 358 985 980 361 360 984 979 369 368 985 980 984 979 986 981 985 980 369 368 367 366 986 981 369 368 365 364 986 981 367 366 812 810 464 463 462 461 987 982 464 463 812 810 813 811 987 982 812 810 988 983 987 982 813 811 814 812 988 983 813 811 470 469 988 983 814 812 989 984 382 381 380 379 990 985 382 381 989 984 390 389 990 985 989 984 991 986 990 985 390 389 388 387 991 986 390 389 386 385 991 986 388 387 843 841 506 505 504 503 992 987 506 505 843 841 844 842 992 987 843 841 993 988 992 987 844 842 845 843 993 988 844 842 512 511 993 988 845 843 854 852 653 652 651 650 994 989 653 652 854 852 855 853 994 989 854 852 995 990 994 989 855 853 856 854 995 990 855 853 659 658 995 990 856 854 433 432 429 428 431 430 996 991 429 428 433 432 435 434 996 991 433 432 997 992 996 991 435 434 939 934 997 992 435 434 941 936 997 992 939 934 387 386 890 888 888 886 998 453 890 888 387 386 389 388 998 453 387 386 999 993 998 453 389 388 391 390 999 993 389 388 378 377 999 993 391 390 861 859 632 631 630 629 1000 994 632 631 861 859 862 860 1000 994 861 859 1001 995 1000 994 862 860 863 861 1001 995 862 860 638 637 1001 995 863 861 930 926 879 877 880 878 1002 996 879 877 930 926 931 927 1002 996 930 926 1003 997 1002 996 931 927 932 928 1003 997 931 927 749 747 411 410 409 408 1004 998 411 410 749 747 747 745 1004 998 749 747 397 396 1004 998 747 745 399 398 397 396 747 745 722 721 704 703 720 719 706 705 704 703 722 721 1005 999 706 705 722 721 708 707 706 705 1005 999 710 709 708 707 1005 999 916 912 859 857 860 858 1006 1000 859 857 916 912 917 913 1006 1000 916 912 1007 1001 1006 1000 917 913 918 914 1007 1001 917 913 1010 1004 1009 1003 1008 1002 344 343 1009 1003 1010 1004 1011 1005 344 343 1010 1004 348 347 344 343 1011 1005 350 349 348 347 1011 1005 1012 1006 874 872 876 874 1013 1007 874 872 1012 1006 1014 1008 1013 1007 1012 1006 871 869 1013 1007 1014 1008 430 429 871 869 1014 1008 1008 1002 809 807 811 809 1015 1009 809 807 1008 1002 1009 1003 1015 1009 1008 1002 806 804 1015 1009 1009 1003 342 342 806 804 1009 1003 896 892 841 839 842 840 1016 1010 841 839 896 892 897 893 1016 1010 896 892 1017 1011 1016 1010 897 893 898 894 1017 1011 897 893 741 740 1018 1012 743 742 1019 1013 1018 1012 741 740 1020 1014 1019 1013 741 740 865 863 1019 1013 1020 1014 864 862 865 863 1020 1014 922 918 820 818 821 819 1021 1015 820 818 922 918 923 919 1021 1015 922 918 1022 1016 1021 1015 923 919 924 920 1022 1016 923 919 943 938 824 822 825 823 1023 1017 824 822 943 938 944 939 1023 1017 943 938 1024 1018 1023 1017 944 939 945 940 1024 1018 944 939 913 909 852 850 853 851 1025 1019 852 850 913 909 914 910 1025 1019 913 909 1026 1020 1025 1019 914 910 915 911 1026 1020 914 910 920 916 1027 1021 919 915 1028 1022 1027 1021 920 916 921 917 1028 1022 920 916 496 495 1028 1022 921 917 494 493 496 495 921 917 622 621 951 946 620 619 1029 1023 951 946 622 621 624 623 1029 1023 622 621 1030 1024 1029 1023 624 623 626 625 1030 1024 624 623 952 947 848 846 849 847 1031 1025 848 846 952 947 953 948 1031 1025 952 947 1032 1026 1031 1025 953 948 954 949 1032 1026 953 948 946 941 869 867 870 868 1033 1027 869 867 946 941 947 942 1033 1027 946 941 1034 1028 1033 1027 947 942 948 943 1034 1028 947 942 732 731 1035 1029 734 733 1036 1030 1035 1029 732 731 1037 1031 1036 1030 732 731 816 814 1036 1030 1037 1031 815 813 816 814 1037 1031 1038 1032 1014 1008 1012 1006 432 431 1014 1008 1038 1032 1039 1033 432 431 1038 1032 436 435 432 431 1039 1033 438 437 436 435 1039 1033 963 958 550 549 548 547 1040 1034 550 549 963 958 964 959 1040 1034 963 958 554 553 1040 1034 964 959 354 353 1041 1035 352 351 1042 1036 1041 1035 354 353 356 355 1042 1036 354 353 358 357 1042 1036 356 355 971 966 763 761 765 763 1043 1037 763 761 971 966 972 967 1043 1037 971 966 491 490 1043 1037 972 967 980 975 529 528 527 526 1044 1038 529 528 980 975 981 976 1044 1038 980 975 533 532 1044 1038 981 976 987 982 466 465 464 463 1045 1039 466 465 987 982 988 983 1045 1039 987 982 470 469 1045 1039 988 983 969 964 613 612 611 610 1046 1040 613 612 969 964 970 965 1046 1040 969 964 617 616 1046 1040 970 965 442 441 1047 1041 440 439 1048 1042 1047 1041 442 441 444 443 1048 1042 442 441 446 445 1048 1042 444 443 1048 1042 1049 1043 1047 1041 1050 1044 1049 1043 1048 1042 446 445 1050 1044 1048 1042 448 447 1050 1044 446 445 1050 1044 1051 1045 1049 1043 1052 1046 1051 1045 1050 1044 448 447 1052 1046 1050 1044 450 449 1052 1046 448 447 1052 1046 906 902 1051 1045 908 904 906 902 1052 1046 450 449 908 904 1052 1046 452 451 908 904 450 449 1000 994 634 633 632 631 1053 1047 634 633 1000 994 1001 995 1053 1047 1000 994 638 637 1053 1047 1001 995 955 950 592 591 590 589 1054 1048 592 591 955 950 956 951 1054 1048 955 950 596 595 1054 1048 956 951 375 374 1055 1049 373 372 1056 1050 1055 1049 375 374 377 376 1056 1050 375 374 379 378 1056 1050 377 376 1056 1050 1057 1051 1055 1049 1058 1052 1057 1051 1056 1050 379 378 1058 1052 1056 1050 381 380 1058 1052 379 378 1058 1052 1059 1053 1057 1051 1060 1054 1059 1053 1058 1052 381 380 1060 1054 1058 1052 383 382 1060 1054 381 380 1060 1054 884 882 1059 1053 886 884 884 882 1060 1054 383 382 886 884 1060 1054 385 384 886 884 383 382 334 334 808 806 336 336 1061 1055 808 806 334 334 332 332 1061 1055 334 334 960 955 1061 1055 332 332 710 709 726 725 727 726 724 723 726 725 710 709 1005 999 724 723 710 709 722 721 724 723 1005 999 934 929 707 706 933 153 705 704 707 706 934 929 1062 1056 705 704 934 929 703 702 705 704 1062 1056 1018 1012 745 743 743 742 866 864 745 743 1018 1012 1019 1013 866 864 1018 1012 865 863 866 864 1019 1013 1004 998 413 412 411 410 1063 1057 413 412 1004 998 397 396 1063 1057 1004 998 395 394 1063 1057 397 396 926 922 757 755 758 756 1064 1058 757 755 926 922 400 399 1064 1058 926 922 402 401 1064 1058 400 399 422 421 873 871 424 423 1065 1059 873 871 422 421 420 419 1065 1059 422 421 966 961 1065 1059 420 419 992 987 508 507 506 505 1066 1060 508 507 992 987 993 988 1066 1060 992 987 512 511 1066 1060 993 988 683 682 744 617 681 680 1067 1061 744 617 683 682 685 684 1067 1061 683 682 738 737 1067 1061 685 684 699 698 735 734 697 696 1068 1062 735 734 699 698 701 700 1068 1062 699 698 729 728 1068 1062 701 700 1035 1029 736 735 734 733 817 815 736 735 1035 1029 1036 1030 817 815 1035 1029 816 814 817 815 1036 1030 975 970 571 570 569 568 1069 1063 571 570 975 970 976 971 1069 1063 975 970 575 574 1069 1063 976 971 1042 1036 1070 1064 1041 1035 1071 1065 1070 1064 1042 1036 358 357 1071 1065 1042 1036 360 359 1071 1065 358 357 1071 1065 1072 1066 1070 1064 1073 1067 1072 1066 1071 1065 360 359 1073 1067 1071 1065 362 361 1073 1067 360 359 1073 1067 899 895 1072 1066 901 897 899 895 1073 1067 362 361 901 897 1073 1067 364 363 901 897 362 361 994 989 655 654 653 652 1074 1068 655 654 994 989 995 990 1074 1068 994 989 659 658 1074 1068 995 990 1075 1069 429 428 996 991 427 426 429 428 1075 1069 941 936 427 426 1075 1069 1076 1070 1037 1031 732 731 815 813 1037 1031 1076 1070 728 727 815 813 1076 1070 427 426 419 418 425 424 417 416 419 418 427 426 941 936 417 416 427 426 1029 1023 950 945 951 946 1077 1071 950 945 1029 1023 1030 1024 1077 1071 1029 1023 1021 1015 819 817 820 818 1078 1072 819 817 1021 1015 1022 1016 1078 1072 1021 1015 1033 1027 868 866 869 867 1079 1073 868 866 1033 1027 1034 1028 1079 1073 1033 1027 1016 1010 840 838 841 839 1080 1074 840 838 1016 1010 1017 1011 1080 1074 1016 1010 376 375 999 993 378 377 998 453 999 993 376 375 890 888 998 453 376 375 1023 1017 823 821 824 822 1081 1075 823 821 1023 1017 1024 1018 1081 1075 1023 1017 1002 996 878 876 879 877 1082 1076 878 876 1002 996 1003 997 1082 1076 1002 996 1083 1077 341 341 957 952 339 339 341 341 1083 1077 894 891 339 339 1083 1077 1025 1019 851 849 852 850 1084 1078 851 849 1025 1019 1026 1020 1084 1078 1025 1019 498 497 1028 1022 496 495 1085 1079 1028 1022 498 497 500 499 1085 1079 498 497 985 980 363 362 361 360 365 364 363 362 985 980 986 981 365 364 985 980 355 354 983 978 357 356 982 977 983 978 355 354 905 901 982 977 355 354 1063 1057 415 414 413 412 393 392 415 414 1063 1057 395 394 393 392 1063 1057 1086 1080 371 370 369 368 359 358 371 370 1086 1080 984 979 359 358 1086 1080 1087 1081 989 984 380 379 390 389 989 984 1087 1081 392 391 390 389 1087 1081 443 442 974 969 445 444 973 968 974 969 443 442 912 908 973 968 443 442 339 339 331 331 337 337 329 329 331 331 339 339 894 891 329 329 339 339 721 720 716 715 723 722 718 717 716 715 721 720 719 718 718 717 721 720 928 924 400 399 926 922 398 397 400 399 928 924 396 395 398 397 928 924 978 973 451 450 449 448 453 452 451 450 978 973 979 974 453 452 978 973 1088 1082 459 458 457 456 447 446 459 458 1088 1082 977 972 447 446 1088 1082 990 985 384 383 382 381 386 385 384 383 990 985 991 986 386 385 990 985 1006 1000 858 856 859 857 1089 1083 858 856 1006 1000 1007 1001 1089 1083 1006 1000 405 404 750 748 751 749 748 746 750 748 405 404 746 744 748 746 405 404 715 714 935 930 713 712 937 932 935 930 715 714 717 716 937 932 715 714 1090 1084 1020 1014 741 740 864 862 1020 1014 1090 1084 737 736 864 862 1090 1084 1031 1025 847 845 848 846 1091 1085 847 845 1031 1025 1032 1026 1091 1085 1031 1025 966 961 873 871 1065 1059 875 873 873 871 966 961 615 614 1046 1040 617 616 613 612 1046 1040 615 614 872 870 1013 1007 871 869 874 872 1013 1007 872 870 761 759 1043 1037 491 490 763 761 1043 1037 761 759 452 451 910 906 908 904 454 453 910 906 452 451 909 905 1092 1086 907 903 911 907 1092 1086 909 905 911 907 439 438 1092 1086 441 440 439 438 911 907 402 401 757 755 1064 1058 756 754 757 755 402 401 739 738 1090 1084 741 740 737 736 1090 1084 739 738 636 635 1053 1047 638 637 634 633 1053 1047 636 635 725 724 716 715 714 713 723 722 716 715 725 724 958 953 1083 1077 957 952 894 891 1083 1077 958 953 740 739 1067 1061 738 737 742 741 1067 1061 740 739 594 593 1054 1048 596 595 592 591 1054 1048 594 593 335 335 331 331 333 333 337 337 331 331 335 335 904 900 351 350 1093 1087 353 352 351 350 904 900 902 898 1093 1087 900 896 904 900 1093 1087 902 898 385 384 888 886 886 884 387 386 888 886 385 384 960 955 808 806 1061 1055 810 808 808 806 960 955 887 885 1094 1088 885 883 889 887 1094 1088 887 885 889 887 372 371 1094 1088 374 373 372 371 889 887 807 805 1015 1009 806 804 809 807 1015 1009 807 805 531 530 1044 1038 533 532 529 528 1044 1038 531 530 573 572 1069 1063 575 574 571 570 1069 1063 573 572 730 729 1076 1070 732 731 728 727 1076 1070 730 729 510 509 1066 1060 512 511 508 507 1066 1060 510 509 364 363 903 899 901 897 366 365 903 899 364 363 423 422 419 418 421 420 425 424 419 418 423 422 731 730 1068 1062 729 728 733 732 1068 1062 731 730 552 551 1040 1034 554 553 550 549 1040 1034 552 551 468 467 1045 1039 470 469 466 465 1045 1039 468 467 997 992 1075 1069 996 991 941 936 1075 1069 997 992 657 656 1074 1068 659 658 655 654 1074 1068 657 656 1084 1078 850 848 851 849 1085 1079 1027 1021 1028 1022 342 342 1009 1003 344 343 430 429 1014 1008 432 431 1080 1074 839 837 840 838 1089 1083 857 855 858 856 1078 1072 818 816 819 817 1077 1071 949 944 950 945 936 931 1062 1056 934 929 1079 1073 867 865 868 866 744 617 1067 1061 742 741 1081 1075 822 820 823 821 432 431 436 435 434 433 735 734 1068 1062 733 732 1082 1076 877 875 878 876 1091 1085 846 844 847 845 344 343 348 347 346 345 977 972 1088 1082 457 456 403 402 746 744 405 404 380 379 392 391 1087 1081 984 979 1086 1080 369 368

+
+
+
+ + + + -1325 449 7040 -1297 448 7053 -1329 465 7036 -1302 466 7052 -1344 494 7038 -1319 498 7050 -1362 520 7046 -1340 524 7052 -1369 541 7050 -1358 541 7057 -1379 547 7064 -1361 543 7071 -1375 545 7078 -1370 528 7089 -1398 528 7096 -1402 503 7106 -1425 507 7095 -1430 474 7105 -1419 471 7074 -1419 452 7079 -1376 450 7050 -2503 141 2047 -2412 124 2018 -2513 177 2051 -2411 161 2027 -2511 238 2084 -2423 231 2059 -2492 292 2126 -2435 289 2099 -2476 335 2145 -2434 325 2135 -2436 342 2178 -2385 323 2156 -2380 327 2187 -2342 286 2188 -2358 292 2240 -2338 237 2253 -2425 260 2275 -2416 191 2288 -2506 197 2239 -2497 156 2240 -2539 154 2139 -1053 253 4287 -1126 271 4386 -1047 315 4274 -1131 340 4366 -1061 392 4205 -1134 426 4293 -1095 492 4122 -1139 518 4202 -1116 574 4089 -1153 580 4126 -1164 602 4033 -1204 598 4099 -1219 603 4034 -1285 546 4050 -1279 537 3929 -1320 442 3908 -1256 433 3828 -1275 309 3804 -1148 292 3877 -1156 222 3877 -1051 230 4076 2261 1 1003 2321 1 953 2256 32 1010 2323 35 964 2261 83 1048 2320 93 1004 2279 131 1096 2316 139 1055 2292 169 1115 2320 169 1097 2322 179 1148 2356 173 1115 2361 175 1151 2379 144 1146 2374 143 1211 2383 96 1223 2334 101 1263 2340 41 1277 2274 37 1231 2280 1 1231 2244 1 1119 699 12 4707 697 14 4785 697 48 4698 687 52 4776 666 107 4668 659 120 4740 619 162 4638 624 173 4694 595 207 4628 590 207 4660 551 219 4617 554 214 4665 523 216 4637 509 182 4656 467 180 4596 448 126 4593 458 129 4525 444 60 4517 522 54 4518 518 13 4521 625 12 4598 -3144 453 6676 -3118 445 6717 -3148 482 6672 -3126 477 6716 -3175 534 6668 -3153 536 6707 -3210 583 6669 -3187 585 6696 -3226 620 6673 -3217 617 6691 -3252 633 6683 -3234 623 6706 -3260 630 6703 -3260 602 6718 -3303 610 6702 -3314 569 6708 -3333 579 6669 -3343 527 6669 -3303 517 6643 -3304 486 6646 -3221 470 6647 -1565 3 768 -1555 3 806 -1560 12 764 -1551 14 808 -1562 25 759 -1553 29 806 -1587 42 758 -1572 45 796 -1607 57 759 -1604 58 782 -1642 62 764 -1631 61 796 -1660 62 786 -1666 50 802 -1711 50 773 -1725 34 769 -1729 34 725 -1732 17 724 -1687 14 708 -1687 4 714 -1620 3 729 1101 2 2395 1155 2 2465 1094 42 2387 1140 46 2464 1044 108 2384 1090 121 2452 980 169 2390 1026 180 2437 953 219 2399 971 219 2431 905 233 2421 942 225 2461 895 227 2459 896 187 2485 815 186 2463 797 125 2474 757 131 2407 738 52 2409 808 47 2355 806 1 2360 957 1 2351 505 217 4605 482 177 4545 521 120 4528 629 49 4597 -3281 635 6693 -3313 612 6670 -3300 568 6648 -3220 498 6644 -2394 334 2212 -2433 306 2251 -2497 262 2234 -2547 191 2137 856 229 2444 792 184 2407 815 122 2363 960 42 2346 -1680 62 769 -1708 48 734 -1685 30 710 -1615 12 725 -1390 546 7080 -1415 529 7083 -1416 503 7070 -1376 468 7045 2354 176 1183 2328 142 1236 2281 94 1225 2239 33 1117 -1222 602 3976 -1227 519 3876 -1154 412 3890 -1043 294 4078 -1308 448 7080 -1307 468 7079 -1326 500 7078 -1342 525 7072 -2321 113 2068 -2314 153 2069 -2327 222 2103 -2361 280 2125 2245 95 1136 2286 141 1208 2322 178 1201 -1596 5 822 -1592 16 829 -1599 32 827 -1605 48 819 2380 1 997 2383 39 998 2380 96 1041 2367 141 1074 -1383 502 7044 -1408 528 7064 -1401 547 7072 1087 2 2520 1085 50 2526 1031 125 2512 992 183 2484 -3234 556 6644 -3289 607 6653 -3288 639 6673 619 16 4785 615 60 4788 587 126 4748 575 177 4708 -1617 29 723 -1671 46 720 -1680 62 744 -3157 452 6745 -3158 486 6748 -3187 544 6738 -3207 589 6721 611 120 4584 531 174 4546 513 218 4572 -1246 263 4316 -1254 342 4316 -1248 447 4262 -1215 535 4175 934 123 2348 836 183 2372 838 231 2409 -2542 263 2154 -2490 312 2221 -2441 345 2221 -1056 411 4044 -1149 510 3921 -1192 594 3939 -1361 501 7097 -1402 470 7118 -1429 453 7110 508 126 4682 431 56 4600 440 15 4522 -2310 225 2179 -2309 164 2261 -2406 145 2289 914 124 2510 786 45 2492 738 1 2416 2393 96 1129 2396 35 1229 2347 1 1276 -1318 449 4072 -1340 317 3901 -1284 231 3807 -3251 556 6732 -3320 516 6717 -3344 492 6673 -1667 33 809 -1728 17 770 -1729 5 729 -3238 597 6653 -3274 630 6660 -1382 526 7046 -1398 543 7060 -2519 310 2159 -2481 342 2203 597 171 4591 544 208 4568 927 180 2364 863 221 2383 2262 139 1140 2292 170 1185 -1080 505 4041 -1141 573 3962 -1613 45 732 -1657 58 732 -2277 154 2177 -2318 128 2258 -3249 502 6744 -3317 485 6714 920 48 2532 792 1 2486 -1355 469 7108 -1401 451 7118 -1673 17 808 -1720 7 767 500 59 4701 438 17 4599 -1339 341 4100 -1328 247 3906 2407 37 1122 2392 1 1225 -1113 578 4035 -2487 342 2168 578 210 4599 -1382 543 7052 -3245 627 6664 2286 172 1145 916 223 2386 -1626 58 744 936 1 2529 -2283 115 2166 -1329 265 4120 512 18 4708 -3240 468 6743 -1351 449 7108 -1665 6 805 2403 1 1110 181 0 -889 184 34 -888 213 0 -883 213 31 -885 241 16 -891 239 34 -904 247 40 -926 232 52 -913 233 57 -929 209 54 -908 208 62 -939 182 62 -911 178 68 -943 149 54 -951 177 59 -983 149 46 -976 155 25 -1004 131 38 -969 132 23 -977 112 19 -949 124 11 -975 110 0 -947 121 0 -974 -633 1 -739 -596 1 -729 -632 25 -743 -594 25 -730 -628 64 -736 -593 71 -723 -601 123 -712 -581 75 -686 -592 125 -686 -599 82 -648 -606 128 -657 -638 86 -626 -631 134 -638 -674 100 -646 -656 144 -651 -669 125 -678 -651 155 -671 -645 150 -691 -630 161 -675 -628 148 -699 -609 147 -694 475 1 778 537 1 794 476 36 771 542 37 793 477 95 775 537 105 798 516 182 819 557 110 862 531 184 864 527 120 927 507 188 914 454 127 967 459 197 939 391 147 932 417 211 918 400 184 878 425 228 882 437 220 849 461 237 876 465 218 836 497 216 843 965 1 -113 943 1 -87 971 14 -110 943 15 -83 972 40 -122 943 37 -96 944 59 -115 904 39 -122 909 54 -144 898 54 -187 918 67 -156 911 70 -188 931 78 -192 908 71 -215 919 73 -228 904 58 -253 935 58 -247 899 41 -266 935 38 -259 896 18 -270 933 16 -261 929 1 -257 956 1 -201 -871 0 95 -879 55 89 -893 0 31 -895 49 32 -919 25 -21 -929 55 -12 -956 64 -22 -934 84 4 -950 92 5 -915 87 46 -943 100 58 -900 101 100 -928 110 117 -917 87 177 -966 96 131 -941 74 185 -971 39 180 -922 61 217 -932 37 217 -891 31 249 -924 17 233 -889 0 251 -929 0 236 -360 1 840 -323 1 849 -359 34 835 -320 35 848 -355 89 842 -320 99 855 -328 171 866 -308 103 893 -319 174 892 -325 113 931 -333 177 922 -364 120 953 -358 186 940 -401 138 932 -383 199 928 -396 173 901 -378 214 907 -371 208 887 -357 223 903 -354 205 880 -336 204 884 859 1 486 803 1 488 859 58 488 801 63 487 856 179 471 812 171 463 851 240 440 830 256 431 858 312 410 847 311 404 863 330 377 838 319 385 850 322 362 841 266 358 872 264 326 868 177 311 920 185 315 937 74 303 953 66 356 950 1 353 920 1 430 694 1 -624 708 1 -660 693 22 -619 711 24 -656 704 56 -606 719 63 -640 723 88 -593 730 94 -619 733 114 -589 741 114 -604 754 121 -585 760 117 -607 771 118 -595 781 97 -604 793 97 -577 802 65 -576 786 68 -544 792 28 -540 753 25 -539 755 1 -540 714 1 -574 280 1 899 331 1 946 281 80 897 333 86 949 275 246 916 304 259 959 247 381 952 261 402 980 240 463 975 248 462 991 218 489 1003 245 473 1019 222 478 1030 229 400 1043 186 385 1047 179 243 1065 135 254 1015 113 101 1012 127 91 944 128 1 949 196 1 900 -290 1 -968 -241 1 -932 -296 34 -971 -249 36 -928 -321 87 -961 -277 97 -923 -349 136 -938 -312 145 -917 -359 177 -925 -340 176 -906 -375 187 -896 -343 181 -876 -367 183 -865 -358 151 -846 -403 150 -841 -408 101 -828 -450 105 -866 -458 42 -859 -443 38 -918 -442 1 -913 -373 1 -961 688 1 606 712 1 599 685 11 604 712 12 600 686 24 608 707 27 605 684 41 618 703 44 615 685 54 632 698 54 630 691 58 647 706 56 640 702 56 652 715 46 657 702 45 677 703 28 684 678 30 686 678 13 691 661 12 670 664 1 671 668 1 636 -595 1 729 -588 1 752 -593 11 726 -586 12 753 -594 24 723 -587 27 752 -607 40 725 -597 43 747 -617 55 727 -614 55 742 -634 59 735 -626 57 754 -641 58 751 -643 45 763 -667 45 749 -674 28 749 -680 30 720 -682 13 720 -660 12 705 -660 1 708 -625 1 710 -907 1 -211 -962 1 -192 -901 28 -214 -959 30 -201 -888 71 -244 -940 80 -230 -879 112 -285 -917 119 -267 -878 145 -304 -902 144 -300 -882 153 -338 -915 148 -324 -903 150 -353 -920 124 -358 -889 123 -403 -892 83 -417 -842 86 -428 -839 35 -440 -820 31 -385 -823 1 -387 -850 1 -292 -934 1 -215 -914 1 -215 -939 12 -221 -911 12 -220 -944 25 -220 -914 29 -220 -941 43 -209 -919 46 -212 -939 59 -201 -924 58 -200 -932 63 -186 -913 60 -188 -916 61 -177 -905 48 -173 -918 48 -157 -919 31 -151 -946 34 -156 -946 14 -151 -962 13 -172 -953 1 -174 -951 1 -197 -887 1 516 -873 1 462 -889 58 516 -872 63 460 -872 179 518 -852 171 478 -841 240 522 -826 256 504 -814 312 537 -805 311 528 -784 330 551 -784 319 525 -766 322 543 -759 266 535 -737 264 575 -722 177 575 -741 185 623 -734 74 643 -789 66 644 -786 1 641 -851 1 590 -154 1 936 -146 1 1006 -148 93 937 -141 99 1011 -165 259 943 -161 271 1001 -196 403 952 -193 407 987 -218 505 959 -221 508 977 -252 523 964 -233 505 993 -261 506 987 -272 420 1010 -308 422 978 -341 268 986 -340 254 922 -361 114 913 -310 104 881 -304 1 877 -220 1 883 787 1 -531 769 19 -511 775 1 -512 774 18 -477 782 1 -479 799 19 -444 802 1 -453 826 21 -437 824 1 -448 844 19 -462 835 1 -467 837 19 -499 829 1 -500 812 20 -535 809 1 -527 787 24 -532 924 1 45 898 19 52 904 1 55 883 18 84 890 1 85 885 19 124 892 1 119 904 21 145 908 1 135 933 19 134 928 1 125 948 19 100 942 1 95 947 20 56 940 1 61 925 24 44 -174 1 -972 -122 1 -996 -169 17 -972 -117 16 -994 -149 28 -969 -116 28 -984 -128 36 -962 -111 36 -967 -109 38 -947 -95 35 -965 -84 35 -950 -61 30 -956 -72 27 -933 -59 15 -928 -106 13 -906 -104 1 -905 -161 1 -907 -190 1 -935 -178 14 -937 -153 13 -909 -159 27 -939 -138 22 -917 -127 34 -927 -106 23 -916 -104 30 -929 -91 32 -938 895 44 58 920 45 51 900 58 70 917 59 68 911 64 93 932 62 81 930 62 99 944 48 100 932 47 131 770 44 -504 786 45 -524 781 58 -497 793 59 -508 803 64 -484 813 62 -507 822 62 -490 834 48 -497 842 47 -464 941 71 -146 963 58 -143 952 73 -165 962 58 -195 951 71 -191 933 69 -223 -391 184 -866 -433 148 -876 -436 99 -913 -373 34 -965 892 56 -226 879 38 -238 874 15 -236 898 1 -264 738 116 -576 750 114 -562 727 94 -571 753 95 -551 718 64 -567 755 64 -543 711 23 -573 696 57 664 680 45 678 662 28 668 665 11 633 -886 151 -374 -849 122 -406 -827 81 -383 -847 28 -289 870 325 349 902 262 327 933 173 359 922 60 433 -652 58 743 -669 44 724 -659 28 705 -622 11 707 -281 503 968 -310 418 936 -297 254 887 -217 95 879 -925 62 -170 -944 47 -161 -958 32 -174 -958 12 -201 -759 325 566 -747 262 603 -786 173 623 -854 60 592 197 482 1026 160 382 1019 147 238 959 196 82 895 -901 1 -199 -892 14 -201 -893 30 -198 -900 47 -196 667 28 633 669 45 662 684 57 664 210 57 -967 239 50 -963 250 38 -950 237 26 -976 251 20 -968 235 0 -990 908 174 419 910 259 358 881 327 350 885 41 85 885 41 119 902 47 138 -607 1 767 -605 13 772 -608 28 771 -612 44 767 785 1 435 782 71 432 789 177 413 817 260 405 -623 28 706 -652 44 710 -654 59 726 747 1 -662 749 27 -664 757 65 -646 756 95 -627 -843 81 -305 -837 121 -372 -860 152 -377 -385 99 -957 -424 147 -912 -410 185 -887 319 1 1015 320 97 1021 298 277 1022 259 408 1017 201 239 921 166 391 981 187 485 1015 -200 1 1051 -198 110 1057 -210 277 1038 -224 413 1014 727 1 620 729 13 621 726 28 623 716 45 630 -225 247 893 -281 411 915 -283 502 951 -982 1 -247 -986 34 -249 -965 83 -279 -940 121 -298 -837 174 582 -779 259 602 -763 327 577 777 41 -476 796 41 -448 821 47 -442 -817 1 460 -814 71 458 -797 177 470 -798 260 499 -971 92 62 -986 80 5 -981 60 -21 -997 41 12 -999 31 -16 -1010 0 20 -255 1 -872 -254 41 -868 -285 101 -864 -312 147 -873 -959 32 -199 -957 47 -177 -941 62 -172 394 1 947 373 1 886 386 44 946 369 39 878 369 102 877 406 34 813 405 94 817 120 0 -928 125 12 -918 120 0 -927 152 26 -898 145 0 -892 237 251 1065 166 87 1073 116 1 1018 -681 1 -639 -693 1 -675 -685 31 -640 -695 27 -680 -691 70 -677 -674 24 -718 -670 64 -712 -407 1 939 -419 1 903 -412 42 938 -422 37 898 -418 97 902 -400 33 860 -397 88 866 722 28 656 706 12 688 680 1 688 -939 82 -352 -901 30 -428 -844 1 -442 788 1 -629 793 25 -626 786 65 -617 -643 28 768 -676 12 750 -680 1 723 882 1 -234 885 16 -173 888 1 -167 900 16 -112 909 1 -112 -341 100 -834 -407 36 -812 -456 1 -854 -77 25 -975 -65 15 -988 -44 18 -961 -36 1 -966 -52 1 -929 -867 0 220 -870 18 214 -866 0 219 -869 42 154 -858 0 167 823 176 348 874 63 298 932 1 300 -745 176 521 -711 63 584 -730 1 639 -903 1 -176 -897 13 -169 -899 30 -172 -285 278 1028 -356 121 991 -357 1 922 -851 119 -313 -850 145 -357 128 42 -950 131 32 -928 238 0 -891 255 9 -925 254 0 -925 248 0 -969 671 44 636 677 55 654 -917 0 -14 -960 14 -38 -960 0 -36 -997 0 -11 -955 46 -200 -950 59 -182 777 96 -553 776 119 -580 -382 164 875 -355 162 859 -622 43 711 -644 55 716 -336 216 915 -354 220 926 -370 221 920 -383 145 -943 -407 177 -912 -655 119 -704 -629 117 -719 -609 156 -664 -627 159 -652 -643 159 -658 894 256 399 898 313 371 501 226 899 466 234 915 439 235 905 202 386 953 184 465 978 -232 407 918 -270 505 939 -903 67 218 -883 51 205 424 174 834 477 172 808 -814 256 575 -788 313 586 -330 39 -819 -407 1 -818 965 34 -198 -139 34 -941 -955 32 -353 -899 1 -423 207 0 -1002 182 22 -1007 178 0 -1005 148 0 -995 -1003 0 79 -994 51 73 -992 35 128 208 32 -992 245 92 1072 167 1 1066 824 63 -473 812 64 -458 797 60 -461 -646 12 768 -672 1 747 817 67 350 876 1 302 725 12 659 703 1 685 808 1 -579 812 24 -580 -916 12 -149 -940 1 -158 -292 120 1043 -349 1 991 -745 67 515 -716 1 585 922 63 114 904 64 119 894 60 109 -987 0 135 -961 0 191 678 55 641 -584 1 -693 -582 29 -693 766 120 -564 -381 179 -924 883 317 393 -946 60 -194 -311 1 885 -309 40 886 -331 1 926 -330 42 929 -371 1 949 -370 45 953 -804 317 565 -863 147 -324 558 1 856 562 42 857 524 1 926 526 45 930 456 1 964 454 48 967 253 24 -920 -62 1 -992 962 14 -201 886 38 -180 -954 38 -35 209 470 970 813 46 -529 945 46 62 -627 56 720 -604 1 -652 -603 31 -650 -644 1 -630 -643 33 -625 -243 507 938 -891 79 144 893 59 87 -919 1 -158 -642 1 765 -752 1 511 251 1 1065 815 1 358 -324 1 -825 160 49 -916 723 1 656 795 1 -542 -604 149 -679 505 219 869 -331 207 899 -956 1 -342 784 59 -479 -284 1 1045 -400 1 862 -673 1 -717 407 1 816 + + + + + + + + + + 0.9454345703125 0.15354567307692313 0.9471435546875 0.14453125 0.9454345703125 0.14453125 0.3924560546875 0.03395432692307687 0.3907470703125 0.03816105769230771 0.3907470703125 0.03395432692307687 0.9493408203125 0.15354567307692313 0.9493408203125 0.14453125 0.9530029296875 0.14453125 0.1524658203125 0.15414663461538458 0.1524658203125 0.1727764423076923 0.1561279296875 0.15414663461538458 0.9903564453125 0.13491586538461542 0.9920654296875 0.13491586538461542 0.0001220703125 0.9996995192307693 0.6483154296875 0.15414663461538458 0.6407470703125 0.15414663461538458 0.9473876953125 0.14453125 0.9490966796875 0.14453125 0.9473876953125 0.15354567307692313 0.9532470703125 0.15354567307692313 0.9532470703125 0.14453125 0.9569091796875 0.14453125 0.9571533203125 0.14453125 0.9608154296875 0.14453125 0.9571533203125 0.15354567307692313 0.1563720703125 0.23046875 0.1563720703125 0.2118389423076923 0.1600341796875 0.2118389423076923 0.9627685546875 0.14453125 0.9610595703125 0.15354567307692313 0.9610595703125 0.14453125 0.3944091796875 0.03395432692307687 0.3927001953125 0.03395432692307687 0.3927001953125 0.03816105769230771 0.3846435546875 0.03395432692307687 0.3839111328125 0.03395432692307687 0.3839111328125 0.03816105769230771 0.9649658203125 0.15354567307692313 0.9649658203125 0.14453125 0.9686279296875 0.14453125 0.9647216796875 0.14453125 0.9630126953125 0.15354567307692313 0.9630126953125 0.14453125 0.1602783203125 0.23046875 0.1602783203125 0.2118389423076923 0.1639404296875 0.2118389423076923 0.1641845703125 0.2118389423076923 0.1641845703125 0.23046875 0.1717529296875 0.2118389423076923 0.9376220703125 0.13491586538461542 0.9393310546875 0.13491586538461542 0.9376220703125 0.14393028846153844 0.9395751953125 0.14393028846153844 0.9395751953125 0.13491586538461542 0.9412841796875 0.13491586538461542 0.8731689453125 0.12530048076923073 0.8748779296875 0.12530048076923073 0.8731689453125 0.13431490384615385 0.9415283203125 0.14393028846153844 0.9415283203125 0.13491586538461542 0.9451904296875 0.13491586538461542 0.9454345703125 0.13491586538461542 0.9490966796875 0.13491586538461542 0.9454345703125 0.14393028846153844 0.1719970703125 0.23046875 0.1756591796875 0.2118389423076923 0.1719970703125 0.2118389423076923 0.1795654296875 0.2118389423076923 0.1759033203125 0.2118389423076923 0.1759033203125 0.23046875 0.9493408203125 0.14393028846153844 0.9530029296875 0.13491586538461542 0.9493408203125 0.13491586538461542 0.9532470703125 0.13491586538461542 0.9569091796875 0.13491586538461542 0.9532470703125 0.14393028846153844 0.9571533203125 0.14393028846153844 0.9571533203125 0.13491586538461542 0.9608154296875 0.13491586538461542 0.9610595703125 0.13491586538461542 0.9647216796875 0.13491586538461542 0.9610595703125 0.14393028846153844 0.1798095703125 0.23046875 0.1798095703125 0.2118389423076923 0.1834716796875 0.2118389423076923 0.9686279296875 0.13491586538461542 0.9649658203125 0.14393028846153844 0.9649658203125 0.13491586538461542 0.9393310546875 0.12530048076923073 0.9376220703125 0.12530048076923073 0.9376220703125 0.13431490384615385 0.3963623046875 0.03395432692307687 0.3946533203125 0.03395432692307687 0.3946533203125 0.03816105769230771 0.9415283203125 0.13431490384615385 0.9451904296875 0.12530048076923073 0.9415283203125 0.12530048076923073 0.9412841796875 0.12530048076923073 0.9395751953125 0.13431490384615385 0.9395751953125 0.12530048076923073 0.9454345703125 0.13431490384615385 0.9454345703125 0.12530048076923073 0.9490966796875 0.12530048076923073 0.1837158203125 0.2118389423076923 0.1837158203125 0.23046875 0.1873779296875 0.2118389423076923 0.9493408203125 0.12530048076923073 0.9510498046875 0.12530048076923073 0.9493408203125 0.13431490384615385 0.3966064453125 0.03816105769230771 0.3966064453125 0.03395432692307687 0.3983154296875 0.03395432692307687 0.3985595703125 0.03395432692307687 0.4002685546875 0.03395432692307687 0.3985595703125 0.03816105769230771 0.9532470703125 0.13431490384615385 0.9532470703125 0.12530048076923073 0.9569091796875 0.12530048076923073 0.9571533203125 0.12530048076923073 0.9608154296875 0.12530048076923073 0.9571533203125 0.13431490384615385 0.9610595703125 0.13431490384615385 0.9647216796875 0.12530048076923073 0.9610595703125 0.12530048076923073 0.9686279296875 0.12530048076923073 0.9649658203125 0.12530048076923073 0.9649658203125 0.13431490384615385 0.9376220703125 0.12469951923076927 0.9412841796875 0.11568509615384615 0.9376220703125 0.11568509615384615 0.1563720703125 0.19260817307692313 0.1600341796875 0.19260817307692313 0.1563720703125 0.21123798076923073 0.9415283203125 0.12469951923076927 0.9415283203125 0.11568509615384615 0.9451904296875 0.11568509615384615 0.1602783203125 0.19260817307692313 0.1639404296875 0.19260817307692313 0.1602783203125 0.21123798076923073 0.1641845703125 0.21123798076923073 0.1641845703125 0.19260817307692313 0.1678466796875 0.19260817307692313 0.9490966796875 0.11568509615384615 0.9454345703125 0.12469951923076927 0.9454345703125 0.11568509615384615 0.9530029296875 0.12530048076923073 0.9512939453125 0.12530048076923073 0.9512939453125 0.13431490384615385 0.4012451171875 0.03395432692307687 0.4005126953125 0.03395432692307687 0.4005126953125 0.03816105769230771 0.9493408203125 0.12469951923076927 0.9510498046875 0.11568509615384615 0.9493408203125 0.11568509615384615 0.4041748046875 0.03395432692307687 0.4024658203125 0.03816105769230771 0.4024658203125 0.03395432692307687 0.9532470703125 0.12469951923076927 0.9532470703125 0.11568509615384615 0.9569091796875 0.11568509615384615 0.1680908203125 0.19260817307692313 0.1680908203125 0.21123798076923073 0.1717529296875 0.19260817307692313 0.1092529296875 0.2887620192307693 0.1055908203125 0.2887620192307693 0.9608154296875 0.11568509615384615 0.9571533203125 0.11568509615384615 0.9571533203125 0.12469951923076927 0.9610595703125 0.12469951923076927 0.9647216796875 0.11568509615384615 0.9610595703125 0.11568509615384615 0.1719970703125 0.19260817307692313 0.1756591796875 0.19260817307692313 0.1719970703125 0.21123798076923073 0.9649658203125 0.12469951923076927 0.9686279296875 0.11568509615384615 0.9649658203125 0.11568509615384615 0.9412841796875 0.10606971153846156 0.9376220703125 0.10606971153846156 0.9376220703125 0.11508413461538458 0.9415283203125 0.11508413461538458 0.9451904296875 0.10606971153846156 0.9415283203125 0.10606971153846156 0.1759033203125 0.19260817307692313 0.1795654296875 0.19260817307692313 0.1759033203125 0.21123798076923073 0.9454345703125 0.11508413461538458 0.9454345703125 0.10606971153846156 0.9490966796875 0.10606971153846156 0.1798095703125 0.19260817307692313 0.1834716796875 0.19260817307692313 0.1798095703125 0.21123798076923073 0.1837158203125 0.21123798076923073 0.1837158203125 0.19260817307692313 0.1873779296875 0.19260817307692313 0.9530029296875 0.11568509615384615 0.9512939453125 0.12469951923076927 0.9512939453125 0.11568509615384615 0.4061279296875 0.03395432692307687 0.4044189453125 0.03395432692307687 0.4044189453125 0.03816105769230771 0.3768310546875 0.02914663461538458 0.3751220703125 0.02914663461538458 0.3751220703125 0.03335336538461542 0.9493408203125 0.11508413461538458 0.9493408203125 0.10606971153846156 0.9530029296875 0.10606971153846156 0.1563720703125 0.17337740384615385 0.1563720703125 0.19200721153846156 0.1600341796875 0.17337740384615385 0.9532470703125 0.10606971153846156 0.9549560546875 0.10606971153846156 0.9532470703125 0.11508413461538458 0.3770751953125 0.03335336538461542 0.3770751953125 0.02914663461538458 0.3787841796875 0.02914663461538458 0.3790283203125 0.02914663461538458 0.3807373046875 0.02914663461538458 0.3790283203125 0.03335336538461542 0.9571533203125 0.11508413461538458 0.9571533203125 0.10606971153846156 0.9608154296875 0.10606971153846156 0.1602783203125 0.17337740384615385 0.1639404296875 0.17337740384615385 0.1602783203125 0.19200721153846156 0.9610595703125 0.11508413461538458 0.9647216796875 0.10606971153846156 0.9610595703125 0.10606971153846156 0.9686279296875 0.10606971153846156 0.9649658203125 0.10606971153846156 0.9649658203125 0.11508413461538458 0.9376220703125 0.10546875 0.9412841796875 0.09645432692307687 0.9376220703125 0.09645432692307687 0.9415283203125 0.09645432692307687 0.9451904296875 0.09645432692307687 0.9415283203125 0.10546875 0.9454345703125 0.10546875 0.9454345703125 0.09645432692307687 0.9490966796875 0.09645432692307687 0.1641845703125 0.17337740384615385 0.1678466796875 0.17337740384615385 0.1641845703125 0.19200721153846156 0.1680908203125 0.19200721153846156 0.1680908203125 0.17337740384615385 0.1717529296875 0.17337740384615385 0.9530029296875 0.09645432692307687 0.9493408203125 0.10546875 0.9493408203125 0.09645432692307687 0.9569091796875 0.10606971153846156 0.9552001953125 0.11508413461538458 0.9552001953125 0.10606971153846156 0.3826904296875 0.02914663461538458 0.3809814453125 0.02914663461538458 0.3809814453125 0.03335336538461542 0.9532470703125 0.10546875 0.9549560546875 0.09645432692307687 0.9532470703125 0.09645432692307687 0.3846435546875 0.02914663461538458 0.3829345703125 0.03335336538461542 0.3829345703125 0.02914663461538458 0.9571533203125 0.10546875 0.9571533203125 0.09645432692307687 0.9608154296875 0.09645432692307687 0.3438720703125 0.6156850961538461 0.3592529296875 0.6156850961538461 0.1092529296875 0.42337740384615385 0.0938720703125 0.42337740384615385 0.9552001953125 0.10546875 0.9569091796875 0.09645432692307687 0.9552001953125 0.09645432692307687 0.1719970703125 0.19200721153846156 0.1719970703125 0.17337740384615385 0.1756591796875 0.17337740384615385 0.9627685546875 0.09645432692307687 0.9610595703125 0.10546875 0.9610595703125 0.09645432692307687 0.3865966796875 0.02914663461538458 0.3848876953125 0.02914663461538458 0.3848876953125 0.03335336538461542 0.3885498046875 0.02914663461538458 0.3868408203125 0.02914663461538458 0.3868408203125 0.03335336538461542 0.9649658203125 0.10546875 0.9649658203125 0.09645432692307687 0.9686279296875 0.09645432692307687 0.9647216796875 0.09645432692307687 0.9630126953125 0.10546875 0.9630126953125 0.09645432692307687 0.1759033203125 0.19200721153846156 0.1759033203125 0.17337740384615385 0.1795654296875 0.17337740384615385 0.1873779296875 0.17337740384615385 0.1798095703125 0.19200721153846156 0.1798095703125 0.17337740384615385 0.1563720703125 0.1727764423076923 0.1563720703125 0.15414663461538458 0.1639404296875 0.15414663461538458 0.1717529296875 0.15414663461538458 0.1641845703125 0.1727764423076923 0.1641845703125 0.15414663461538458 0.9376220703125 0.09585336538461542 0.9376220703125 0.08683894230769229 0.9412841796875 0.08683894230769229 0.1719970703125 0.15414663461538458 0.1719970703125 0.1727764423076923 0.1756591796875 0.15414663461538458 0.9415283203125 0.08683894230769229 0.9451904296875 0.08683894230769229 0.9415283203125 0.09585336538461542 0.9454345703125 0.09585336538461542 0.9490966796875 0.08683894230769229 0.9454345703125 0.08683894230769229 0.9510498046875 0.08683894230769229 0.9493408203125 0.08683894230769229 0.9493408203125 0.09585336538461542 0.1798095703125 0.1727764423076923 0.1873779296875 0.15414663461538458 0.1798095703125 0.15414663461538458 0.1951904296875 0.2118389423076923 0.1876220703125 0.2118389423076923 0.1876220703125 0.23046875 0.1759033203125 0.1727764423076923 0.1795654296875 0.15414663461538458 0.1759033203125 0.15414663461538458 0.1954345703125 0.2118389423076923 0.2030029296875 0.2118389423076923 0.1954345703125 0.23046875 0.2032470703125 0.23046875 0.2032470703125 0.2118389423076923 0.2108154296875 0.2118389423076923 0.2147216796875 0.2118389423076923 0.2110595703125 0.2118389423076923 0.2110595703125 0.23046875 0.4014892578125 0.03395432692307687 0.4022216796875 0.03395432692307687 0.4014892578125 0.03816105769230771 0.9512939453125 0.08683894230769229 0.9530029296875 0.08683894230769229 0.9512939453125 0.09585336538461542 0.9532470703125 0.09585336538461542 0.9549560546875 0.08683894230769229 0.9532470703125 0.08683894230769229 0.3905029296875 0.02914663461538458 0.3887939453125 0.03335336538461542 0.3887939453125 0.02914663461538458 0.9571533203125 0.09585336538461542 0.9571533203125 0.08683894230769229 0.9608154296875 0.08683894230769229 0.2149658203125 0.2118389423076923 0.2149658203125 0.23046875 0.2186279296875 0.2118389423076923 0.9569091796875 0.08683894230769229 0.9552001953125 0.09585336538461542 0.9552001953125 0.08683894230769229 0.1912841796875 0.19260817307692313 0.1876220703125 0.19260817307692313 0.1876220703125 0.21123798076923073 0.8165283203125 0.11508413461538458 0.8201904296875 0.10606971153846156 0.8165283203125 0.10606971153846156 0.1954345703125 0.21123798076923073 0.1990966796875 0.19260817307692313 0.9610595703125 0.08683894230769229 0.9647216796875 0.08683894230769229 0.9610595703125 0.09585336538461542 0.1915283203125 0.21123798076923073 0.1915283203125 0.19260817307692313 0.1951904296875 0.19260817307692313 0.9686279296875 0.08683894230769229 0.9649658203125 0.09585336538461542 0.9649658203125 0.08683894230769229 0.9393310546875 0.07722355769230771 0.9376220703125 0.07722355769230771 0.9376220703125 0.08623798076923073 0.9412841796875 0.07722355769230771 0.9395751953125 0.07722355769230771 0.9395751953125 0.08623798076923073 0.1954345703125 0.19260817307692313 0.2032470703125 0.19260817307692313 0.2108154296875 0.19260817307692313 0.2032470703125 0.21123798076923073 0.1993408203125 0.21123798076923073 0.1993408203125 0.19260817307692313 0.2030029296875 0.19260817307692313 0.9451904296875 0.07722355769230771 0.9415283203125 0.07722355769230771 0.9415283203125 0.08623798076923073 0.9454345703125 0.08623798076923073 0.9471435546875 0.07722355769230771 0.9454345703125 0.07722355769230771 0.9490966796875 0.07722355769230771 0.9473876953125 0.07722355769230771 0.9473876953125 0.08623798076923073 0.3907470703125 0.03335336538461542 0.3924560546875 0.02914663461538458 0.3907470703125 0.02914663461538458 0.3944091796875 0.02914663461538458 0.3927001953125 0.02914663461538458 0.3927001953125 0.03335336538461542 0.9061279296875 0.4618389423076923 0.8985595703125 0.4618389423076923 0.9510498046875 0.07722355769230771 0.9493408203125 0.07722355769230771 0.9493408203125 0.08623798076923073 0.9512939453125 0.08623798076923073 0.9530029296875 0.07722355769230771 0.9512939453125 0.07722355769230771 0.9549560546875 0.07722355769230771 0.9532470703125 0.07722355769230771 0.9532470703125 0.08623798076923073 0.3946533203125 0.03335336538461542 0.3963623046875 0.02914663461538458 0.3946533203125 0.02914663461538458 0.3983154296875 0.02914663461538458 0.3966064453125 0.02914663461538458 0.3966064453125 0.03335336538461542 0.9608154296875 0.07722355769230771 0.9571533203125 0.07722355769230771 0.9571533203125 0.08623798076923073 0.2110595703125 0.21123798076923073 0.2147216796875 0.19260817307692313 0.2110595703125 0.19260817307692313 0.1876220703125 0.17337740384615385 0.1951904296875 0.17337740384615385 0.1876220703125 0.19200721153846156 0.9610595703125 0.08623798076923073 0.9610595703125 0.07722355769230771 0.9647216796875 0.07722355769230771 0.9686279296875 0.07722355769230771 0.9649658203125 0.07722355769230771 0.9649658203125 0.08623798076923073 0.9552001953125 0.08623798076923073 0.9569091796875 0.07722355769230771 0.9552001953125 0.07722355769230771 0.9725341796875 0.14453125 0.9688720703125 0.14453125 0.9688720703125 0.15354567307692313 0.3985595703125 0.03335336538461542 0.4002685546875 0.02914663461538458 0.3985595703125 0.02914663461538458 0.4022216796875 0.02914663461538458 0.4005126953125 0.02914663461538458 0.4005126953125 0.03335336538461542 0.9744873046875 0.14453125 0.9727783203125 0.14453125 0.9727783203125 0.15354567307692313 0.2149658203125 0.21123798076923073 0.2186279296875 0.19260817307692313 0.2149658203125 0.19260817307692313 0.1954345703125 0.17337740384615385 0.2030029296875 0.17337740384615385 0.1954345703125 0.19200721153846156 0.9766845703125 0.15354567307692313 0.9766845703125 0.14453125 0.9803466796875 0.14453125 0.9842529296875 0.14453125 0.9805908203125 0.14453125 0.9805908203125 0.15354567307692313 0.9747314453125 0.15354567307692313 0.9764404296875 0.14453125 0.9747314453125 0.14453125 0.9881591796875 0.14453125 0.9844970703125 0.14453125 0.9844970703125 0.15354567307692313 0.4024658203125 0.03335336538461542 0.4041748046875 0.02914663461538458 0.4024658203125 0.02914663461538458 0.4061279296875 0.02914663461538458 0.4044189453125 0.02914663461538458 0.4044189453125 0.03335336538461542 0.3758544921875 0.02433894230769229 0.3751220703125 0.02433894230769229 0.3751220703125 0.028545673076923128 0.2032470703125 0.19200721153846156 0.2108154296875 0.17337740384615385 0.2032470703125 0.17337740384615385 0.2186279296875 0.17337740384615385 0.2110595703125 0.17337740384615385 0.2110595703125 0.19200721153846156 0.1876220703125 0.1727764423076923 0.1951904296875 0.15414663461538458 0.1876220703125 0.15414663461538458 0.2030029296875 0.15414663461538458 0.1954345703125 0.15414663461538458 0.1954345703125 0.1727764423076923 0.2032470703125 0.1727764423076923 0.2069091796875 0.15414663461538458 0.2032470703125 0.15414663461538458 0.2110595703125 0.15414663461538458 0.2186279296875 0.15414663461538458 0.2110595703125 0.1727764423076923 0.9884033203125 0.15354567307692313 0.9884033203125 0.14453125 0.9901123046875 0.14453125 0.9903564453125 0.14453125 0.9920654296875 0.14453125 0.9903564453125 0.15354567307692313 0.8592529296875 0.17337740384615385 0.8516845703125 0.17337740384615385 0.9923095703125 0.14453125 0.9959716796875 0.14453125 0.9923095703125 0.15354567307692313 0.9962158203125 0.15354567307692313 0.9962158203125 0.14453125 0.9998779296875 0.14453125 0.9725341796875 0.13491586538461542 0.9688720703125 0.13491586538461542 0.9688720703125 0.14393028846153844 0.9727783203125 0.14393028846153844 0.9744873046875 0.13491586538461542 0.9727783203125 0.13491586538461542 0.9764404296875 0.13491586538461542 0.9747314453125 0.13491586538461542 0.9747314453125 0.14393028846153844 0.3760986328125 0.028545673076923128 0.3768310546875 0.02433894230769229 0.3760986328125 0.02433894230769229 0.3787841796875 0.02433894230769229 0.3770751953125 0.02433894230769229 0.3770751953125 0.028545673076923128 0.9783935546875 0.13491586538461542 0.9766845703125 0.13491586538461542 0.9766845703125 0.14393028846153844 0.2188720703125 0.23046875 0.2264404296875 0.2118389423076923 0.2188720703125 0.2118389423076923 0.2266845703125 0.2118389423076923 0.2342529296875 0.2118389423076923 0.2266845703125 0.23046875 0.2071533203125 0.1727764423076923 0.2071533203125 0.15414663461538458 0.2108154296875 0.15414663461538458 0.9842529296875 0.13491586538461542 0.9805908203125 0.13491586538461542 0.9805908203125 0.14393028846153844 0.9803466796875 0.13491586538461542 0.9786376953125 0.14393028846153844 0.9786376953125 0.13491586538461542 0.2344970703125 0.23046875 0.2420654296875 0.2118389423076923 0.2344970703125 0.2118389423076923 0.2423095703125 0.2118389423076923 0.2498779296875 0.2118389423076923 0.2423095703125 0.23046875 0.2188720703125 0.21123798076923073 0.2188720703125 0.19260817307692313 0.2225341796875 0.19260817307692313 0.9881591796875 0.13491586538461542 0.9844970703125 0.13491586538461542 0.9844970703125 0.14393028846153844 0.9884033203125 0.14393028846153844 0.9901123046875 0.13491586538461542 0.9884033203125 0.13491586538461542 0.9959716796875 0.13491586538461542 0.9923095703125 0.13491586538461542 0.9923095703125 0.14393028846153844 0.3790283203125 0.028545673076923128 0.3797607421875 0.02433894230769229 0.3790283203125 0.02433894230769229 0.3826904296875 0.02433894230769229 0.3809814453125 0.02433894230769229 0.3809814453125 0.028545673076923128 0.3829345703125 0.028545673076923128 0.3829345703125 0.02433894230769229 0.3846435546875 0.02433894230769229 0.3848876953125 0.02433894230769229 0.3848876953125 0.028545673076923128 0.3865966796875 0.02433894230769229 0.2266845703125 0.21123798076923073 0.2342529296875 0.19260817307692313 0.2266845703125 0.19260817307692313 0.2264404296875 0.19260817307692313 0.2227783203125 0.21123798076923073 0.2227783203125 0.19260817307692313 0.9903564453125 0.14393028846153844 0.9998779296875 0.13491586538461542 0.9962158203125 0.14393028846153844 0.9962158203125 0.13491586538461542 0.2813720703125 0.6926081730769231 0.2967529296875 0.6926081730769231 0.3868408203125 0.028545673076923128 0.3868408203125 0.02433894230769229 0.3885498046875 0.02433894230769229 0.3887939453125 0.02433894230769229 0.3887939453125 0.028545673076923128 0.3905029296875 0.02433894230769229 0.2344970703125 0.21123798076923073 0.2420654296875 0.19260817307692313 0.2344970703125 0.19260817307692313 0.2459716796875 0.19260817307692313 0.2423095703125 0.21123798076923073 0.2423095703125 0.19260817307692313 0.2462158203125 0.19260817307692313 0.2462158203125 0.21123798076923073 0.2498779296875 0.19260817307692313 0.2225341796875 0.17337740384615385 0.2188720703125 0.19200721153846156 0.2188720703125 0.17337740384615385 0.2227783203125 0.19200721153846156 0.2227783203125 0.17337740384615385 0.2264404296875 0.17337740384615385 0.9705810546875 0.12530048076923073 0.9688720703125 0.12530048076923073 0.9688720703125 0.13431490384615385 0.9708251953125 0.13431490384615385 0.9725341796875 0.12530048076923073 0.9708251953125 0.12530048076923073 0.9764404296875 0.12530048076923073 0.9727783203125 0.12530048076923073 0.9727783203125 0.13431490384615385 0.9766845703125 0.13431490384615385 0.9783935546875 0.12530048076923073 0.9766845703125 0.12530048076923073 0.9805908203125 0.12530048076923073 0.9842529296875 0.12530048076923073 0.9805908203125 0.13431490384615385 0.2266845703125 0.19200721153846156 0.2266845703125 0.17337740384615385 0.2342529296875 0.17337740384615385 0.2344970703125 0.17337740384615385 0.2420654296875 0.17337740384615385 0.2344970703125 0.19200721153846156 0.9786376953125 0.13431490384615385 0.9786376953125 0.12530048076923073 0.9803466796875 0.12530048076923073 0.3907470703125 0.02433894230769229 0.3924560546875 0.02433894230769229 0.3907470703125 0.028545673076923128 0.3927001953125 0.028545673076923128 0.3927001953125 0.02433894230769229 0.3944091796875 0.02433894230769229 0.2423095703125 0.19200721153846156 0.2459716796875 0.17337740384615385 0.2423095703125 0.17337740384615385 0.9844970703125 0.12530048076923073 0.9844970703125 0.13431490384615385 0.9881591796875 0.12530048076923073 0.2188720703125 0.1727764423076923 0.2264404296875 0.15414663461538458 0.2188720703125 0.15414663461538458 0.2498779296875 0.17337740384615385 0.2462158203125 0.19200721153846156 0.2462158203125 0.17337740384615385 0.2266845703125 0.1727764423076923 0.2266845703125 0.15414663461538458 0.2342529296875 0.15414663461538458 0.2420654296875 0.15414663461538458 0.2344970703125 0.1727764423076923 0.2344970703125 0.15414663461538458 0.9901123046875 0.12530048076923073 0.9884033203125 0.13431490384615385 0.9884033203125 0.12530048076923073 0.2423095703125 0.1727764423076923 0.2498779296875 0.15414663461538458 0.2423095703125 0.15414663461538458 0.2537841796875 0.2118389423076923 0.2501220703125 0.23046875 0.2501220703125 0.2118389423076923 0.9923095703125 0.13431490384615385 0.9923095703125 0.12530048076923073 0.9959716796875 0.12530048076923073 0.9998779296875 0.12530048076923073 0.9962158203125 0.13431490384615385 0.9962158203125 0.12530048076923073 0.2540283203125 0.23046875 0.2540283203125 0.2118389423076923 0.2576904296875 0.2118389423076923 0.2615966796875 0.2118389423076923 0.2579345703125 0.2118389423076923 0.2579345703125 0.23046875 0.9920654296875 0.12530048076923073 0.9903564453125 0.13431490384615385 0.9903564453125 0.12530048076923073 0.9688720703125 0.12469951923076927 0.9705810546875 0.11568509615384615 0.9688720703125 0.11568509615384615 0.9725341796875 0.11568509615384615 0.9708251953125 0.11568509615384615 0.9708251953125 0.12469951923076927 0.9727783203125 0.12469951923076927 0.9744873046875 0.11568509615384615 0.9727783203125 0.11568509615384615 0.9766845703125 0.11568509615384615 0.9803466796875 0.11568509615384615 0.9766845703125 0.12469951923076927 0.9805908203125 0.12469951923076927 0.9805908203125 0.11568509615384615 0.9842529296875 0.11568509615384615 0.3165283203125 0.2118389423076923 0.3201904296875 0.2118389423076923 0.9747314453125 0.11568509615384615 0.9747314453125 0.12469951923076927 0.9764404296875 0.11568509615384615 0.2657470703125 0.23046875 0.2733154296875 0.2118389423076923 0.2657470703125 0.2118389423076923 0.2655029296875 0.2118389423076923 0.2618408203125 0.23046875 0.2618408203125 0.2118389423076923 0.9844970703125 0.11568509615384615 0.9844970703125 0.12469951923076927 0.9881591796875 0.11568509615384615 0.9920654296875 0.11568509615384615 0.9884033203125 0.12469951923076927 0.9884033203125 0.11568509615384615 0.2735595703125 0.23046875 0.2735595703125 0.2118389423076923 0.2772216796875 0.2118389423076923 0.2811279296875 0.2118389423076923 0.2774658203125 0.2118389423076923 0.2774658203125 0.23046875 0.9940185546875 0.11568509615384615 0.9923095703125 0.11568509615384615 0.9923095703125 0.12469951923076927 0.9942626953125 0.12469951923076927 0.9959716796875 0.11568509615384615 0.9942626953125 0.11568509615384615 0.9979248046875 0.11568509615384615 0.9962158203125 0.11568509615384615 0.9962158203125 0.12469951923076927 0.3946533203125 0.028545673076923128 0.3963623046875 0.02433894230769229 0.3946533203125 0.02433894230769229 0.0938720703125 0.5387620192307692 0.1092529296875 0.5387620192307692 0.8592529296875 0.4618389423076923 0.8516845703125 0.4618389423076923 0.3966064453125 0.02433894230769229 0.3966064453125 0.028545673076923128 0.3983154296875 0.02433894230769229 0.2501220703125 0.21123798076923073 0.2576904296875 0.19260817307692313 0.2501220703125 0.19260817307692313 0.2615966796875 0.19260817307692313 0.2579345703125 0.21123798076923073 0.2579345703125 0.19260817307692313 0.9981689453125 0.12469951923076927 0.9981689453125 0.11568509615384615 0.9998779296875 0.11568509615384615 0.9725341796875 0.10606971153846156 0.9688720703125 0.11508413461538458 0.9688720703125 0.10606971153846156 0.2618408203125 0.21123798076923073 0.2618408203125 0.19260817307692313 0.2655029296875 0.19260817307692313 0.2694091796875 0.19260817307692313 0.2657470703125 0.19260817307692313 0.2657470703125 0.21123798076923073 0.9764404296875 0.10606971153846156 0.9727783203125 0.10606971153846156 0.9727783203125 0.11508413461538458 0.2696533203125 0.21123798076923073 0.2733154296875 0.19260817307692313 0.2696533203125 0.19260817307692313 0.2735595703125 0.19260817307692313 0.2811279296875 0.19260817307692313 0.2735595703125 0.21123798076923073 0.9766845703125 0.11508413461538458 0.9766845703125 0.10606971153846156 0.9803466796875 0.10606971153846156 0.2501220703125 0.17337740384615385 0.2537841796875 0.17337740384615385 0.2501220703125 0.19200721153846156 0.2540283203125 0.19200721153846156 0.2540283203125 0.17337740384615385 0.2576904296875 0.17337740384615385 0.2579345703125 0.17337740384615385 0.2615966796875 0.17337740384615385 0.2579345703125 0.19200721153846156 0.3985595703125 0.02433894230769229 0.3985595703125 0.028545673076923128 0.4002685546875 0.02433894230769229 0.4005126953125 0.028545673076923128 0.4005126953125 0.02433894230769229 0.4022216796875 0.02433894230769229 0.9805908203125 0.10606971153846156 0.9805908203125 0.11508413461538458 0.9822998046875 0.10606971153846156 0.5509033203125 0.2118389423076923 0.5545654296875 0.2118389423076923 0.9842529296875 0.10606971153846156 0.9825439453125 0.11508413461538458 0.9825439453125 0.10606971153846156 0.9844970703125 0.11508413461538458 0.9862060546875 0.10606971153846156 0.9844970703125 0.10606971153846156 0.9881591796875 0.10606971153846156 0.9864501953125 0.10606971153846156 0.9864501953125 0.11508413461538458 0.9884033203125 0.11508413461538458 0.9901123046875 0.10606971153846156 0.9884033203125 0.10606971153846156 0.9959716796875 0.10606971153846156 0.9923095703125 0.10606971153846156 0.9923095703125 0.11508413461538458 0.2657470703125 0.19200721153846156 0.2733154296875 0.17337740384615385 0.2657470703125 0.17337740384615385 0.2735595703125 0.17337740384615385 0.2811279296875 0.17337740384615385 0.2735595703125 0.19200721153846156 0.4024658203125 0.028545673076923128 0.4024658203125 0.02433894230769229 0.4041748046875 0.02433894230769229 0.9903564453125 0.10606971153846156 0.9903564453125 0.11508413461538458 0.9920654296875 0.10606971153846156 0.2501220703125 0.1727764423076923 0.2576904296875 0.15414663461538458 0.2501220703125 0.15414663461538458 0.9962158203125 0.11508413461538458 0.9962158203125 0.10606971153846156 0.9979248046875 0.10606971153846156 0.9725341796875 0.09645432692307687 0.9688720703125 0.10546875 0.9688720703125 0.09645432692307687 0.2618408203125 0.19200721153846156 0.2618408203125 0.17337740384615385 0.2655029296875 0.17337740384615385 0.2615966796875 0.15414663461538458 0.2579345703125 0.15414663461538458 0.2579345703125 0.1727764423076923 0.9981689453125 0.11508413461538458 0.9998779296875 0.10606971153846156 0.9981689453125 0.10606971153846156 0.9727783203125 0.09645432692307687 0.9764404296875 0.09645432692307687 0.9727783203125 0.10546875 0.2657470703125 0.1727764423076923 0.2657470703125 0.15414663461538458 0.2733154296875 0.15414663461538458 0.2735595703125 0.15414663461538458 0.2811279296875 0.15414663461538458 0.2735595703125 0.1727764423076923 0.9766845703125 0.10546875 0.9766845703125 0.09645432692307687 0.9783935546875 0.09645432692307687 0.9803466796875 0.09645432692307687 0.9786376953125 0.09645432692307687 0.9786376953125 0.10546875 0.9805908203125 0.10546875 0.9822998046875 0.09645432692307687 0.9805908203125 0.09645432692307687 0.9881591796875 0.09645432692307687 0.9844970703125 0.09645432692307687 0.9844970703125 0.10546875 0.9825439453125 0.10546875 0.9842529296875 0.09645432692307687 0.9825439453125 0.09645432692307687 0.9920654296875 0.09645432692307687 0.9884033203125 0.09645432692307687 0.9884033203125 0.10546875 0.2813720703125 0.23046875 0.2889404296875 0.2118389423076923 0.2813720703125 0.2118389423076923 0.2891845703125 0.2118389423076923 0.2967529296875 0.2118389423076923 0.2891845703125 0.23046875 0.9923095703125 0.10546875 0.9923095703125 0.09645432692307687 0.9959716796875 0.09645432692307687 0.9979248046875 0.09645432692307687 0.9962158203125 0.10546875 0.9962158203125 0.09645432692307687 0.9981689453125 0.10546875 0.9998779296875 0.09645432692307687 0.9981689453125 0.09645432692307687 0.9725341796875 0.08683894230769229 0.9688720703125 0.08683894230769229 0.9688720703125 0.09585336538461542 0.9727783203125 0.09585336538461542 0.9744873046875 0.08683894230769229 0.9727783203125 0.08683894230769229 0.9766845703125 0.08683894230769229 0.9803466796875 0.08683894230769229 0.9766845703125 0.09585336538461542 0.2969970703125 0.23046875 0.2969970703125 0.2118389423076923 0.3045654296875 0.2118389423076923 0.3048095703125 0.2118389423076923 0.3123779296875 0.2118389423076923 0.3048095703125 0.23046875 0.9747314453125 0.08683894230769229 0.9747314453125 0.09585336538461542 0.9764404296875 0.08683894230769229 0.9805908203125 0.09585336538461542 0.9805908203125 0.08683894230769229 0.9822998046875 0.08683894230769229 0.9825439453125 0.08683894230769229 0.9842529296875 0.08683894230769229 0.9825439453125 0.09585336538461542 0.2618408203125 0.1727764423076923 0.2618408203125 0.15414663461538458 0.2655029296875 0.15414663461538458 0.2813720703125 0.19260817307692313 0.2850341796875 0.19260817307692313 0.2813720703125 0.21123798076923073 0.9844970703125 0.08683894230769229 0.9844970703125 0.09585336538461542 0.9862060546875 0.08683894230769229 0.9864501953125 0.08683894230769229 0.9864501953125 0.09585336538461542 0.9881591796875 0.08683894230769229 0.9884033203125 0.08683894230769229 0.9901123046875 0.08683894230769229 0.9884033203125 0.09585336538461542 0.9903564453125 0.08683894230769229 0.9903564453125 0.09585336538461542 0.9920654296875 0.08683894230769229 0.9923095703125 0.09585336538461542 0.9940185546875 0.08683894230769229 0.9923095703125 0.08683894230769229 0.2852783203125 0.21123798076923073 0.2852783203125 0.19260817307692313 0.2889404296875 0.19260817307692313 0.2891845703125 0.19260817307692313 0.2928466796875 0.19260817307692313 0.2891845703125 0.21123798076923073 0.9962158203125 0.08683894230769229 0.9962158203125 0.09585336538461542 0.9998779296875 0.08683894230769229 0.9942626953125 0.08683894230769229 0.9942626953125 0.09585336538461542 0.9959716796875 0.08683894230769229 0.9688720703125 0.07722355769230771 0.9725341796875 0.07722355769230771 0.9688720703125 0.08623798076923073 0.9727783203125 0.08623798076923073 0.9727783203125 0.07722355769230771 0.9744873046875 0.07722355769230771 0.9747314453125 0.07722355769230771 0.9764404296875 0.07722355769230771 0.9747314453125 0.08623798076923073 0.2930908203125 0.21123798076923073 0.2930908203125 0.19260817307692313 0.2967529296875 0.19260817307692313 0.2969970703125 0.19260817307692313 0.3006591796875 0.19260817307692313 0.2969970703125 0.21123798076923073 0.9766845703125 0.07722355769230771 0.9766845703125 0.08623798076923073 0.9783935546875 0.07722355769230771 0.9786376953125 0.07722355769230771 0.9786376953125 0.08623798076923073 0.9803466796875 0.07722355769230771 0.9805908203125 0.07722355769230771 0.9822998046875 0.07722355769230771 0.9805908203125 0.08623798076923073 0.9825439453125 0.07722355769230771 0.9825439453125 0.08623798076923073 0.9842529296875 0.07722355769230771 0.9844970703125 0.08623798076923073 0.9862060546875 0.07722355769230771 0.9844970703125 0.07722355769230771 0.3009033203125 0.21123798076923073 0.3009033203125 0.19260817307692313 0.3045654296875 0.19260817307692313 0.3048095703125 0.19260817307692313 0.3084716796875 0.19260817307692313 0.3048095703125 0.21123798076923073 0.9884033203125 0.07722355769230771 0.9884033203125 0.08623798076923073 0.9920654296875 0.07722355769230771 0.9864501953125 0.07722355769230771 0.9864501953125 0.08623798076923073 0.9881591796875 0.07722355769230771 0.9923095703125 0.07722355769230771 0.9959716796875 0.07722355769230771 0.9923095703125 0.08623798076923073 0.9962158203125 0.08623798076923073 0.9962158203125 0.07722355769230771 0.9979248046875 0.07722355769230771 0.9981689453125 0.07722355769230771 0.9998779296875 0.07722355769230771 0.9981689453125 0.08623798076923073 0.3087158203125 0.21123798076923073 0.3087158203125 0.19260817307692313 0.3123779296875 0.19260817307692313 0.2813720703125 0.17337740384615385 0.2850341796875 0.17337740384615385 0.2813720703125 0.19200721153846156 0.0001220703125 0.06760817307692313 0.0001220703125 0.07662259615384615 0.0018310546875 0.06760817307692313 0.4044189453125 0.02433894230769229 0.4044189453125 0.028545673076923128 0.4061279296875 0.02433894230769229 0.0020751953125 0.06760817307692313 0.0037841796875 0.06760817307692313 0.0020751953125 0.07662259615384615 0.0040283203125 0.07662259615384615 0.0040283203125 0.06760817307692313 0.0057373046875 0.06760817307692313 0.0059814453125 0.07662259615384615 0.0076904296875 0.06760817307692313 0.0059814453125 0.06760817307692313 0.2852783203125 0.19200721153846156 0.2852783203125 0.17337740384615385 0.2889404296875 0.17337740384615385 0.2891845703125 0.17337740384615385 0.2928466796875 0.17337740384615385 0.2891845703125 0.19200721153846156 0.0079345703125 0.06760817307692313 0.0079345703125 0.07662259615384615 0.0096435546875 0.06760817307692313 0.0098876953125 0.06760817307692313 0.0098876953125 0.07662259615384615 0.0115966796875 0.06760817307692313 0.2930908203125 0.17337740384615385 0.2967529296875 0.17337740384615385 0.2930908203125 0.19200721153846156 0.0118408203125 0.07662259615384615 0.0118408203125 0.06760817307692313 0.0135498046875 0.06760817307692313 0.0137939453125 0.06760817307692313 0.0137939453125 0.07662259615384615 0.0155029296875 0.06760817307692313 0.3045654296875 0.17337740384615385 0.2969970703125 0.17337740384615385 0.2969970703125 0.19200721153846156 0.0157470703125 0.06760817307692313 0.0194091796875 0.06760817307692313 0.0157470703125 0.07662259615384615 0.3048095703125 0.19200721153846156 0.3048095703125 0.17337740384615385 0.3084716796875 0.17337740384615385 0.3087158203125 0.17337740384615385 0.3123779296875 0.17337740384615385 0.3087158203125 0.19200721153846156 0.0196533203125 0.07662259615384615 0.0196533203125 0.06760817307692313 0.0213623046875 0.06760817307692313 0.3768310546875 0.01953125 0.3751220703125 0.023737980769230727 0.3751220703125 0.01953125 0.0233154296875 0.06760817307692313 0.0216064453125 0.06760817307692313 0.0216064453125 0.07662259615384615 0.0252685546875 0.06760817307692313 0.0235595703125 0.06760817307692313 0.0235595703125 0.07662259615384615 0.0255126953125 0.06760817307692313 0.0272216796875 0.06760817307692313 0.0255126953125 0.07662259615384615 0.0274658203125 0.07662259615384615 0.0291748046875 0.06760817307692313 0.0274658203125 0.06760817307692313 0.0001220703125 0.057992788461538436 0.0037841796875 0.057992788461538436 0.0001220703125 0.06700721153846156 0.0311279296875 0.06760817307692313 0.0294189453125 0.06760817307692313 0.0294189453125 0.07662259615384615 0.0040283203125 0.057992788461538436 0.0057373046875 0.057992788461538436 0.0040283203125 0.06700721153846156 0.0059814453125 0.06700721153846156 0.0076904296875 0.057992788461538436 0.0059814453125 0.057992788461538436 0.2813720703125 0.15414663461538458 0.2850341796875 0.15414663461538458 0.2813720703125 0.1727764423076923 0.2852783203125 0.1727764423076923 0.2852783203125 0.15414663461538458 0.2889404296875 0.15414663461538458 0.0096435546875 0.057992788461538436 0.0079345703125 0.057992788461538436 0.0079345703125 0.06700721153846156 0.0098876953125 0.057992788461538436 0.0115966796875 0.057992788461538436 0.0098876953125 0.06700721153846156 0.0118408203125 0.06700721153846156 0.0135498046875 0.057992788461538436 0.0118408203125 0.057992788461538436 0.2891845703125 0.15414663461538458 0.2928466796875 0.15414663461538458 0.2891845703125 0.1727764423076923 0.2930908203125 0.1727764423076923 0.2930908203125 0.15414663461538458 0.2967529296875 0.15414663461538458 0.0155029296875 0.057992788461538436 0.0137939453125 0.057992788461538436 0.0137939453125 0.06700721153846156 0.0157470703125 0.057992788461538436 0.0174560546875 0.057992788461538436 0.0157470703125 0.06700721153846156 0.0194091796875 0.057992788461538436 0.0177001953125 0.057992788461538436 0.0177001953125 0.06700721153846156 0.0196533203125 0.06700721153846156 0.0213623046875 0.057992788461538436 0.0196533203125 0.057992788461538436 0.2969970703125 0.1727764423076923 0.3006591796875 0.15414663461538458 0.2969970703125 0.15414663461538458 0.3009033203125 0.1727764423076923 0.3009033203125 0.15414663461538458 0.3045654296875 0.15414663461538458 0.0216064453125 0.057992788461538436 0.0233154296875 0.057992788461538436 0.0216064453125 0.06700721153846156 0.0235595703125 0.06700721153846156 0.0252685546875 0.057992788461538436 0.0235595703125 0.057992788461538436 0.3048095703125 0.1727764423076923 0.3084716796875 0.15414663461538458 0.3048095703125 0.15414663461538458 0.3087158203125 0.1727764423076923 0.3087158203125 0.15414663461538458 0.3123779296875 0.15414663461538458 0.0272216796875 0.057992788461538436 0.0255126953125 0.057992788461538436 0.0255126953125 0.06700721153846156 0.0274658203125 0.057992788461538436 0.0291748046875 0.057992788461538436 0.0274658203125 0.06700721153846156 0.0294189453125 0.06700721153846156 0.0311279296875 0.057992788461538436 0.0294189453125 0.057992788461538436 0.3126220703125 0.23046875 0.3162841796875 0.2118389423076923 0.3126220703125 0.2118389423076923 0.3165283203125 0.23046875 0.0001220703125 0.048377403846153855 0.0037841796875 0.048377403846153855 0.0001220703125 0.05739182692307687 0.0040283203125 0.05739182692307687 0.0040283203125 0.048377403846153855 0.0076904296875 0.048377403846153855 0.0079345703125 0.048377403846153855 0.0115966796875 0.048377403846153855 0.0079345703125 0.05739182692307687 0.0118408203125 0.05739182692307687 0.0118408203125 0.048377403846153855 0.0155029296875 0.048377403846153855 0.3204345703125 0.2118389423076923 0.3240966796875 0.2118389423076923 0.3204345703125 0.23046875 0.0157470703125 0.048377403846153855 0.0157470703125 0.05739182692307687 0.0194091796875 0.048377403846153855 0.0196533203125 0.048377403846153855 0.0233154296875 0.048377403846153855 0.0196533203125 0.05739182692307687 0.0235595703125 0.05739182692307687 0.0235595703125 0.048377403846153855 0.0272216796875 0.048377403846153855 0.3243408203125 0.2118389423076923 0.3280029296875 0.2118389423076923 0.3243408203125 0.23046875 0.0274658203125 0.05739182692307687 0.0274658203125 0.048377403846153855 0.0311279296875 0.048377403846153855 0.0001220703125 0.038762019230769273 0.0037841796875 0.038762019230769273 0.0001220703125 0.04777644230769229 0.0040283203125 0.04777644230769229 0.0040283203125 0.038762019230769273 0.0057373046875 0.038762019230769273 0.0059814453125 0.038762019230769273 0.0076904296875 0.038762019230769273 0.0059814453125 0.04777644230769229 0.0079345703125 0.038762019230769273 0.0115966796875 0.038762019230769273 0.0079345703125 0.04777644230769229 0.0118408203125 0.04777644230769229 0.0118408203125 0.038762019230769273 0.0155029296875 0.038762019230769273 0.3282470703125 0.2118389423076923 0.3319091796875 0.2118389423076923 0.3282470703125 0.23046875 0.0157470703125 0.04777644230769229 0.0157470703125 0.038762019230769273 0.0194091796875 0.038762019230769273 0.3321533203125 0.2118389423076923 0.3358154296875 0.2118389423076923 0.3321533203125 0.23046875 0.0196533203125 0.04777644230769229 0.0196533203125 0.038762019230769273 0.0213623046875 0.038762019230769273 0.0272216796875 0.038762019230769273 0.0235595703125 0.038762019230769273 0.0235595703125 0.04777644230769229 0.3360595703125 0.23046875 0.3397216796875 0.2118389423076923 0.3360595703125 0.2118389423076923 0.0311279296875 0.038762019230769273 0.0274658203125 0.04777644230769229 0.0274658203125 0.038762019230769273 0.0001220703125 0.02914663461538458 0.0037841796875 0.02914663461538458 0.0001220703125 0.03816105769230771 0.0040283203125 0.03816105769230771 0.0040283203125 0.02914663461538458 0.0076904296875 0.02914663461538458 0.3399658203125 0.2118389423076923 0.3436279296875 0.2118389423076923 0.3399658203125 0.23046875 0.0079345703125 0.03816105769230771 0.0079345703125 0.02914663461538458 0.0115966796875 0.02914663461538458 0.0118408203125 0.02914663461538458 0.0155029296875 0.02914663461538458 0.0118408203125 0.03816105769230771 0.5548095703125 0.13491586538461542 0.5584716796875 0.13491586538461542 0.3162841796875 0.19260817307692313 0.3126220703125 0.21123798076923073 0.3126220703125 0.19260817307692313 0.0216064453125 0.04777644230769229 0.0216064453125 0.038762019230769273 0.0233154296875 0.038762019230769273 0.0157470703125 0.02914663461538458 0.0194091796875 0.02914663461538458 0.0157470703125 0.03816105769230771 0.0196533203125 0.03816105769230771 0.0196533203125 0.02914663461538458 0.0233154296875 0.02914663461538458 0.3165283203125 0.19260817307692313 0.3201904296875 0.19260817307692313 0.3165283203125 0.21123798076923073 0.0235595703125 0.03816105769230771 0.0235595703125 0.02914663461538458 0.0252685546875 0.02914663461538458 0.0272216796875 0.02914663461538458 0.0255126953125 0.03816105769230771 0.0255126953125 0.02914663461538458 0.0274658203125 0.02914663461538458 0.0291748046875 0.02914663461538458 0.0274658203125 0.03816105769230771 0.0311279296875 0.02914663461538458 0.0294189453125 0.02914663461538458 0.0294189453125 0.03816105769230771 0.3204345703125 0.21123798076923073 0.3280029296875 0.19260817307692313 0.3204345703125 0.19260817307692313 0.0018310546875 0.01953125 0.0001220703125 0.028545673076923128 0.0001220703125 0.01953125 0.0020751953125 0.028545673076923128 0.0037841796875 0.01953125 0.0020751953125 0.01953125 0.7596435546875 0.08683894230769229 0.7579345703125 0.08683894230769229 0.7579345703125 0.09585336538461542 0.3282470703125 0.21123798076923073 0.3319091796875 0.19260817307692313 0.3282470703125 0.19260817307692313 0.0057373046875 0.01953125 0.0040283203125 0.028545673076923128 0.0040283203125 0.01953125 0.0059814453125 0.01953125 0.0076904296875 0.01953125 0.0059814453125 0.028545673076923128 0.0096435546875 0.01953125 0.0079345703125 0.01953125 0.0079345703125 0.028545673076923128 0.3360595703125 0.21123798076923073 0.3436279296875 0.19260817307692313 0.3360595703125 0.19260817307692313 0.3787841796875 0.01953125 0.3770751953125 0.023737980769230727 0.3770751953125 0.01953125 0.0098876953125 0.01953125 0.0115966796875 0.01953125 0.0098876953125 0.028545673076923128 0.0135498046875 0.01953125 0.0118408203125 0.01953125 0.0118408203125 0.028545673076923128 0.0155029296875 0.01953125 0.0137939453125 0.028545673076923128 0.0137939453125 0.01953125 0.0157470703125 0.01953125 0.0174560546875 0.01953125 0.0157470703125 0.028545673076923128 0.0194091796875 0.01953125 0.0177001953125 0.01953125 0.0177001953125 0.028545673076923128 0.3126220703125 0.19200721153846156 0.3201904296875 0.17337740384615385 0.3126220703125 0.17337740384615385 0.0213623046875 0.01953125 0.0196533203125 0.028545673076923128 0.0196533203125 0.01953125 0.0216064453125 0.028545673076923128 0.0233154296875 0.01953125 0.0216064453125 0.01953125 0.0252685546875 0.01953125 0.0235595703125 0.01953125 0.0235595703125 0.028545673076923128 0.3204345703125 0.19200721153846156 0.3280029296875 0.17337740384615385 0.3204345703125 0.17337740384615385 0.3358154296875 0.19260817307692313 0.3321533203125 0.19260817307692313 0.3321533203125 0.21123798076923073 0.0255126953125 0.028545673076923128 0.0272216796875 0.01953125 0.0255126953125 0.01953125 0.0311279296875 0.01953125 0.0274658203125 0.01953125 0.0274658203125 0.028545673076923128 0.0001220703125 0.018930288461538436 0.0037841796875 0.009915865384615419 0.0001220703125 0.009915865384615419 0.0040283203125 0.018930288461538436 0.0057373046875 0.009915865384615419 0.0040283203125 0.009915865384615419 0.0079345703125 0.009915865384615419 0.0115966796875 0.009915865384615419 0.0079345703125 0.018930288461538436 0.0059814453125 0.018930288461538436 0.0059814453125 0.009915865384615419 0.0076904296875 0.009915865384615419 0.0118408203125 0.009915865384615419 0.0135498046875 0.009915865384615419 0.0118408203125 0.018930288461538436 0.0157470703125 0.009915865384615419 0.0194091796875 0.009915865384615419 0.0157470703125 0.018930288461538436 0.0137939453125 0.018930288461538436 0.0137939453125 0.009915865384615419 0.0155029296875 0.009915865384615419 0.0196533203125 0.009915865384615419 0.0213623046875 0.009915865384615419 0.0196533203125 0.018930288461538436 0.0235595703125 0.009915865384615419 0.0272216796875 0.009915865384615419 0.0235595703125 0.018930288461538436 0.0216064453125 0.018930288461538436 0.0216064453125 0.009915865384615419 0.0233154296875 0.009915865384615419 0.0274658203125 0.018930288461538436 0.0291748046875 0.009915865384615419 0.0274658203125 0.009915865384615419 0.0001220703125 0.00030048076923072653 0.0037841796875 0.00030048076923072653 0.0001220703125 0.009314903846153855 0.0294189453125 0.018930288461538436 0.0294189453125 0.009915865384615419 0.0311279296875 0.009915865384615419 0.0040283203125 0.00030048076923072653 0.0057373046875 0.00030048076923072653 0.0040283203125 0.009314903846153855 0.0079345703125 0.00030048076923072653 0.0115966796875 0.00030048076923072653 0.0079345703125 0.009314903846153855 0.0059814453125 0.009314903846153855 0.0059814453125 0.00030048076923072653 0.0076904296875 0.00030048076923072653 0.0118408203125 0.00030048076923072653 0.0135498046875 0.00030048076923072653 0.0118408203125 0.009314903846153855 0.0137939453125 0.00030048076923072653 0.0155029296875 0.00030048076923072653 0.0137939453125 0.009314903846153855 0.0157470703125 0.00030048076923072653 0.0194091796875 0.00030048076923072653 0.0157470703125 0.009314903846153855 0.0196533203125 0.00030048076923072653 0.0213623046875 0.00030048076923072653 0.0196533203125 0.009314903846153855 0.3319091796875 0.17337740384615385 0.3282470703125 0.17337740384615385 0.3282470703125 0.19200721153846156 0.3790283203125 0.023737980769230727 0.3807373046875 0.01953125 0.3790283203125 0.01953125 0.0936279296875 0.2503004807692307 0.0860595703125 0.2503004807692307 0.0860595703125 0.26893028846153844 0.3809814453125 0.023737980769230727 0.3826904296875 0.01953125 0.3809814453125 0.01953125 0.0272216796875 0.00030048076923072653 0.0235595703125 0.00030048076923072653 0.0235595703125 0.009314903846153855 0.0216064453125 0.009314903846153855 0.0233154296875 0.00030048076923072653 0.0216064453125 0.00030048076923072653 0.3436279296875 0.17337740384615385 0.3360595703125 0.17337740384615385 0.3360595703125 0.19200721153846156 0.0274658203125 0.009314903846153855 0.0291748046875 0.00030048076923072653 0.0274658203125 0.00030048076923072653 0.3201904296875 0.15414663461538458 0.3126220703125 0.15414663461538458 0.3126220703125 0.1727764423076923 0.7833251953125 0.09585336538461542 0.7850341796875 0.08683894230769229 0.7833251953125 0.08683894230769229 0.0350341796875 0.06760817307692313 0.0313720703125 0.06760817307692313 0.0313720703125 0.07662259615384615 0.0294189453125 0.009314903846153855 0.0311279296875 0.00030048076923072653 0.0294189453125 0.00030048076923072653 0.0352783203125 0.06760817307692313 0.0369873046875 0.06760817307692313 0.0352783203125 0.07662259615384615 0.0936279296875 0.23106971153846156 0.0899658203125 0.23106971153846156 0.0372314453125 0.06760817307692313 0.0389404296875 0.06760817307692313 0.0372314453125 0.07662259615384615 0.3846435546875 0.01953125 0.3829345703125 0.01953125 0.3829345703125 0.023737980769230727 0.7579345703125 0.5003004807692308 0.7579345703125 0.5381610576923077 0.7655029296875 0.5003004807692308 0.7657470703125 0.5003004807692308 0.7811279296875 0.5003004807692308 0.7657470703125 0.5381610576923077 0.7576904296875 0.4618389423076923 0.7501220703125 0.4618389423076923 0.7501220703125 0.4996995192307693 0.0391845703125 0.06760817307692313 0.0428466796875 0.06760817307692313 0.0391845703125 0.07662259615384615 0.3321533203125 0.17337740384615385 0.3358154296875 0.17337740384615385 0.3321533203125 0.19200721153846156 0.0430908203125 0.06760817307692313 0.0430908203125 0.07662259615384615 0.0447998046875 0.06760817307692313 0.0506591796875 0.06760817307692313 0.0469970703125 0.07662259615384615 0.0469970703125 0.06760817307692313 0.3438720703125 0.6926081730769231 0.3592529296875 0.6926081730769231 0.3848876953125 0.023737980769230727 0.3865966796875 0.01953125 0.3848876953125 0.01953125 0.8165283203125 0.15414663461538458 0.8201904296875 0.15414663461538458 0.3204345703125 0.1727764423076923 0.3280029296875 0.15414663461538458 0.3204345703125 0.15414663461538458 0.3319091796875 0.15414663461538458 0.3282470703125 0.1727764423076923 0.3282470703125 0.15414663461538458 0.0509033203125 0.06760817307692313 0.0509033203125 0.07662259615384615 0.0545654296875 0.06760817307692313 0.0548095703125 0.06760817307692313 0.0548095703125 0.07662259615384615 0.0584716796875 0.06760817307692313 0.3885498046875 0.01953125 0.3868408203125 0.01953125 0.3868408203125 0.023737980769230727 0.3360595703125 0.1727764423076923 0.3436279296875 0.15414663461538458 0.3360595703125 0.15414663461538458 0.3438720703125 0.2118389423076923 0.3514404296875 0.2118389423076923 0.3438720703125 0.23046875 0.3321533203125 0.1727764423076923 0.3321533203125 0.15414663461538458 0.3358154296875 0.15414663461538458 0.3553466796875 0.2118389423076923 0.3516845703125 0.23046875 0.3516845703125 0.2118389423076923 0.3594970703125 0.23046875 0.3594970703125 0.2118389423076923 0.3670654296875 0.2118389423076923 0.3748779296875 0.2118389423076923 0.3673095703125 0.23046875 0.3673095703125 0.2118389423076923 0.0587158203125 0.06760817307692313 0.0587158203125 0.07662259615384615 0.0623779296875 0.06760817307692313 0.3555908203125 0.2118389423076923 0.3592529296875 0.2118389423076923 0.3555908203125 0.23046875 0.4844970703125 0.2503004807692307 0.4844970703125 0.26893028846153844 0.3475341796875 0.19260817307692313 0.3438720703125 0.19260817307692313 0.3438720703125 0.21123798076923073 0.0350341796875 0.057992788461538436 0.0313720703125 0.06700721153846156 0.0313720703125 0.057992788461538436 0.0389404296875 0.057992788461538436 0.0352783203125 0.057992788461538436 0.0352783203125 0.06700721153846156 0.0467529296875 0.06760817307692313 0.0450439453125 0.07662259615384615 0.0450439453125 0.06760817307692313 0.0391845703125 0.057992788461538436 0.0391845703125 0.06700721153846156 0.0408935546875 0.057992788461538436 0.0430908203125 0.06700721153846156 0.0467529296875 0.057992788461538436 0.0430908203125 0.057992788461538436 0.0469970703125 0.057992788461538436 0.0469970703125 0.06700721153846156 0.0506591796875 0.057992788461538436 0.9180908203125 0.34645432692307687 0.9188232421875 0.34645432692307687 0.3516845703125 0.19260817307692313 0.3516845703125 0.21123798076923073 0.3592529296875 0.19260817307692313 0.3477783203125 0.21123798076923073 0.3477783203125 0.19260817307692313 0.3514404296875 0.19260817307692313 0.3631591796875 0.19260817307692313 0.3594970703125 0.21123798076923073 0.3594970703125 0.19260817307692313 0.0509033203125 0.06700721153846156 0.0509033203125 0.057992788461538436 0.0545654296875 0.057992788461538436 0.0548095703125 0.057992788461538436 0.0584716796875 0.057992788461538436 0.0548095703125 0.06700721153846156 0.0587158203125 0.057992788461538436 0.0587158203125 0.06700721153846156 0.0623779296875 0.057992788461538436 0.0350341796875 0.048377403846153855 0.0313720703125 0.048377403846153855 0.0313720703125 0.05739182692307687 0.3634033203125 0.21123798076923073 0.3670654296875 0.19260817307692313 0.3634033203125 0.19260817307692313 0.3709716796875 0.19260817307692313 0.3673095703125 0.21123798076923073 0.3673095703125 0.19260817307692313 0.0352783203125 0.048377403846153855 0.0389404296875 0.048377403846153855 0.0352783203125 0.05739182692307687 0.3712158203125 0.19260817307692313 0.3712158203125 0.21123798076923073 0.3748779296875 0.19260817307692313 0.3475341796875 0.17337740384615385 0.3438720703125 0.19200721153846156 0.3438720703125 0.17337740384615385 0.3477783203125 0.19200721153846156 0.3477783203125 0.17337740384615385 0.3514404296875 0.17337740384615385 0.3553466796875 0.17337740384615385 0.3516845703125 0.19200721153846156 0.3516845703125 0.17337740384615385 0.3800048828125 0.02433894230769229 0.3800048828125 0.028545673076923128 0.3807373046875 0.02433894230769229 0.5001220703125 0.15414663461538458 0.5037841796875 0.15414663461538458 0.0428466796875 0.057992788461538436 0.0411376953125 0.057992788461538436 0.0411376953125 0.06700721153846156 0.7579345703125 0.4996995192307693 0.7579345703125 0.4618389423076923 0.7655029296875 0.4618389423076923 0.7733154296875 0.4618389423076923 0.7657470703125 0.4618389423076923 0.7657470703125 0.4996995192307693 0.7735595703125 0.4996995192307693 0.7735595703125 0.4618389423076923 0.7811279296875 0.4618389423076923 0.7813720703125 0.5003004807692308 0.7813720703125 0.5381610576923077 0.7967529296875 0.5003004807692308 0.3555908203125 0.19200721153846156 0.3592529296875 0.17337740384615385 0.3555908203125 0.17337740384615385 0.0391845703125 0.048377403846153855 0.0428466796875 0.048377403846153855 0.0391845703125 0.05739182692307687 0.3631591796875 0.17337740384615385 0.3594970703125 0.19200721153846156 0.3594970703125 0.17337740384615385 0.3673095703125 0.19200721153846156 0.3673095703125 0.17337740384615385 0.3748779296875 0.17337740384615385 0.3670654296875 0.17337740384615385 0.3634033203125 0.17337740384615385 0.3634033203125 0.19200721153846156 0.3438720703125 0.1727764423076923 0.3514404296875 0.15414663461538458 0.3438720703125 0.15414663461538458 0.3592529296875 0.15414663461538458 0.3516845703125 0.15414663461538458 0.3516845703125 0.1727764423076923 0.7969970703125 0.5003004807692308 0.7969970703125 0.5381610576923077 0.8123779296875 0.5003004807692308 0.7813720703125 0.4618389423076923 0.7967529296875 0.4618389423076923 0.7813720703125 0.4996995192307693 0.8123779296875 0.4618389423076923 0.7969970703125 0.4618389423076923 0.7969970703125 0.4996995192307693 0.3594970703125 0.15414663461538458 0.3631591796875 0.15414663461538458 0.3594970703125 0.1727764423076923 0.3673095703125 0.15414663461538458 0.3748779296875 0.15414663461538458 0.3673095703125 0.1727764423076923 0.3887939453125 0.01953125 0.3887939453125 0.023737980769230727 0.3905029296875 0.01953125 0.3670654296875 0.15414663461538458 0.3634033203125 0.15414663461538458 0.3634033203125 0.1727764423076923 0.0430908203125 0.048377403846153855 0.0430908203125 0.05739182692307687 0.0467529296875 0.048377403846153855 0.3751220703125 0.2118389423076923 0.3751220703125 0.23046875 0.3787841796875 0.2118389423076923 0.3924560546875 0.01953125 0.3907470703125 0.01953125 0.3907470703125 0.023737980769230727 0.3829345703125 0.23046875 0.3905029296875 0.2118389423076923 0.3829345703125 0.2118389423076923 0.3907470703125 0.2118389423076923 0.3983154296875 0.2118389423076923 0.3907470703125 0.23046875 0.3985595703125 0.23046875 0.3985595703125 0.2118389423076923 0.4061279296875 0.2118389423076923 0.3826904296875 0.19260817307692313 0.3751220703125 0.21123798076923073 0.3751220703125 0.19260817307692313 0.3790283203125 0.2118389423076923 0.3790283203125 0.23046875 0.3826904296875 0.2118389423076923 0.3865966796875 0.19260817307692313 0.3829345703125 0.19260817307692313 0.3829345703125 0.21123798076923073 0.0506591796875 0.048377403846153855 0.0469970703125 0.048377403846153855 0.0469970703125 0.05739182692307687 0.8126220703125 0.5381610576923077 0.8201904296875 0.5003004807692308 0.8126220703125 0.5003004807692308 0.8280029296875 0.5003004807692308 0.8204345703125 0.5003004807692308 0.8204345703125 0.5381610576923077 0.3983154296875 0.19260817307692313 0.3907470703125 0.21123798076923073 0.3907470703125 0.19260817307692313 0.3985595703125 0.21123798076923073 0.3985595703125 0.19260817307692313 0.4061279296875 0.19260817307692313 0.8282470703125 0.5003004807692308 0.8358154296875 0.5003004807692308 0.8282470703125 0.5381610576923077 0.3927001953125 0.01953125 0.3927001953125 0.023737980769230727 0.3944091796875 0.01953125 0.9197998046875 0.34645432692307687 0.9190673828125 0.3650841346153846 0.3751220703125 0.19200721153846156 0.3826904296875 0.17337740384615385 0.3751220703125 0.17337740384615385 0.3829345703125 0.17337740384615385 0.3829345703125 0.19200721153846156 0.3905029296875 0.17337740384615385 0.8360595703125 0.5381610576923077 0.8436279296875 0.5003004807692308 0.8360595703125 0.5003004807692308 0.3907470703125 0.19200721153846156 0.3907470703125 0.17337740384615385 0.3983154296875 0.17337740384615385 0.4061279296875 0.17337740384615385 0.3985595703125 0.19200721153846156 0.3985595703125 0.17337740384615385 0.3751220703125 0.1727764423076923 0.3751220703125 0.15414663461538458 0.3826904296875 0.15414663461538458 0.3829345703125 0.15414663461538458 0.3829345703125 0.1727764423076923 0.3905029296875 0.15414663461538458 0.0509033203125 0.05739182692307687 0.0545654296875 0.048377403846153855 0.0509033203125 0.048377403846153855 0.0548095703125 0.048377403846153855 0.0548095703125 0.05739182692307687 0.0584716796875 0.048377403846153855 0.0587158203125 0.05739182692307687 0.0604248046875 0.048377403846153855 0.0587158203125 0.048377403846153855 0.0623779296875 0.048377403846153855 0.0606689453125 0.05739182692307687 0.0606689453125 0.048377403846153855 0.0313720703125 0.038762019230769273 0.0330810546875 0.038762019230769273 0.0313720703125 0.04777644230769229 0.0389404296875 0.038762019230769273 0.0352783203125 0.038762019230769273 0.0352783203125 0.04777644230769229 0.3946533203125 0.023737980769230727 0.3963623046875 0.01953125 0.3946533203125 0.01953125 0.3973388671875 0.01953125 0.3966064453125 0.01953125 0.3966064453125 0.023737980769230727 0.3907470703125 0.1727764423076923 0.3983154296875 0.15414663461538458 0.3907470703125 0.15414663461538458 0.4061279296875 0.15414663461538458 0.3985595703125 0.15414663461538458 0.3985595703125 0.1727764423076923 0.3868408203125 0.21123798076923073 0.3905029296875 0.19260817307692313 0.3868408203125 0.19260817307692313 0.4139404296875 0.2118389423076923 0.4063720703125 0.2118389423076923 0.4063720703125 0.23046875 0.4141845703125 0.23046875 0.4217529296875 0.2118389423076923 0.4141845703125 0.2118389423076923 0.4219970703125 0.2118389423076923 0.4219970703125 0.23046875 0.4295654296875 0.2118389423076923 0.0391845703125 0.04777644230769229 0.0428466796875 0.038762019230769273 0.0391845703125 0.038762019230769273 0.4298095703125 0.2118389423076923 0.4298095703125 0.23046875 0.4334716796875 0.2118389423076923 0.1954345703125 0.11568509615384615 0.2030029296875 0.11568509615384615 0.0430908203125 0.04777644230769229 0.0430908203125 0.038762019230769273 0.0467529296875 0.038762019230769273 0.0469970703125 0.038762019230769273 0.0506591796875 0.038762019230769273 0.0469970703125 0.04777644230769229 0.8126220703125 0.4996995192307693 0.8126220703125 0.4618389423076923 0.8280029296875 0.4618389423076923 0.8358154296875 0.4618389423076923 0.8282470703125 0.4996995192307693 0.8282470703125 0.4618389423076923 0.4063720703125 0.19260817307692313 0.4139404296875 0.19260817307692313 0.4063720703125 0.21123798076923073 0.4217529296875 0.19260817307692313 0.4141845703125 0.19260817307692313 0.4141845703125 0.21123798076923073 0.4219970703125 0.21123798076923073 0.4219970703125 0.19260817307692313 0.4295654296875 0.19260817307692313 0.4373779296875 0.19260817307692313 0.4298095703125 0.21123798076923073 0.4298095703125 0.19260817307692313 0.4063720703125 0.19200721153846156 0.4063720703125 0.17337740384615385 0.4139404296875 0.17337740384615385 0.8360595703125 0.4618389423076923 0.8360595703125 0.4996995192307693 0.8436279296875 0.4618389423076923 0.0333251953125 0.04777644230769229 0.0350341796875 0.038762019230769273 0.0333251953125 0.038762019230769273 0.8907470703125 0.76953125 0.9061279296875 0.76953125 0.0509033203125 0.038762019230769273 0.0526123046875 0.038762019230769273 0.0509033203125 0.04777644230769229 0.0548095703125 0.038762019230769273 0.0584716796875 0.038762019230769273 0.0548095703125 0.04777644230769229 0.0528564453125 0.04777644230769229 0.0528564453125 0.038762019230769273 0.0545654296875 0.038762019230769273 0.4002685546875 0.01953125 0.3985595703125 0.01953125 0.3985595703125 0.023737980769230727 0.0587158203125 0.04777644230769229 0.0623779296875 0.038762019230769273 0.0587158203125 0.038762019230769273 0.0350341796875 0.02914663461538458 0.0313720703125 0.02914663461538458 0.0313720703125 0.03816105769230771 0.4141845703125 0.19200721153846156 0.4217529296875 0.17337740384615385 0.4141845703125 0.17337740384615385 0.4295654296875 0.17337740384615385 0.4219970703125 0.17337740384615385 0.4219970703125 0.19200721153846156 0.4298095703125 0.19200721153846156 0.4298095703125 0.17337740384615385 0.4373779296875 0.17337740384615385 0.4139404296875 0.15414663461538458 0.4063720703125 0.1727764423076923 0.4063720703125 0.15414663461538458 0.4141845703125 0.1727764423076923 0.4141845703125 0.15414663461538458 0.4217529296875 0.15414663461538458 0.4219970703125 0.15414663461538458 0.4219970703125 0.1727764423076923 0.4295654296875 0.15414663461538458 0.3975830078125 0.01953125 0.3983154296875 0.01953125 0.3975830078125 0.023737980769230727 0.0352783203125 0.02914663461538458 0.0369873046875 0.02914663461538458 0.0352783203125 0.03816105769230771 0.0391845703125 0.03816105769230771 0.0391845703125 0.02914663461538458 0.0428466796875 0.02914663461538458 0.0389404296875 0.02914663461538458 0.0372314453125 0.02914663461538458 0.0372314453125 0.03816105769230771 0.4298095703125 0.1727764423076923 0.4373779296875 0.15414663461538458 0.4298095703125 0.15414663461538458 0.4451904296875 0.2118389423076923 0.4376220703125 0.2118389423076923 0.4376220703125 0.23046875 0.0430908203125 0.03816105769230771 0.0467529296875 0.02914663461538458 0.0430908203125 0.02914663461538458 0.0506591796875 0.02914663461538458 0.0469970703125 0.02914663461538458 0.0469970703125 0.03816105769230771 0.0509033203125 0.03816105769230771 0.0545654296875 0.02914663461538458 0.0509033203125 0.02914663461538458 0.0565185546875 0.02914663461538458 0.0548095703125 0.03816105769230771 0.0548095703125 0.02914663461538458 0.0587158203125 0.03816105769230771 0.0587158203125 0.02914663461538458 0.0623779296875 0.02914663461538458 0.4337158203125 0.2118389423076923 0.4337158203125 0.23046875 0.4373779296875 0.2118389423076923 0.0567626953125 0.03816105769230771 0.0584716796875 0.02914663461538458 0.0567626953125 0.02914663461538458 0.0313720703125 0.028545673076923128 0.0313720703125 0.01953125 0.0350341796875 0.01953125 0.0352783203125 0.01953125 0.0389404296875 0.01953125 0.0352783203125 0.028545673076923128 0.4490966796875 0.2118389423076923 0.4454345703125 0.23046875 0.4454345703125 0.2118389423076923 0.4532470703125 0.23046875 0.4532470703125 0.2118389423076923 0.4608154296875 0.2118389423076923 0.4686279296875 0.2118389423076923 0.4610595703125 0.2118389423076923 0.4610595703125 0.23046875 0.0391845703125 0.028545673076923128 0.0408935546875 0.01953125 0.0391845703125 0.01953125 0.0428466796875 0.01953125 0.0411376953125 0.01953125 0.0411376953125 0.028545673076923128 0.4376220703125 0.21123798076923073 0.4376220703125 0.19260817307692313 0.4451904296875 0.19260817307692313 0.4530029296875 0.19260817307692313 0.4454345703125 0.21123798076923073 0.4454345703125 0.19260817307692313 0.4493408203125 0.23046875 0.4493408203125 0.2118389423076923 0.4530029296875 0.2118389423076923 0.4532470703125 0.19260817307692313 0.4532470703125 0.21123798076923073 0.4608154296875 0.19260817307692313 0.4610595703125 0.21123798076923073 0.4686279296875 0.19260817307692313 0.4610595703125 0.19260817307692313 0.4376220703125 0.17337740384615385 0.4376220703125 0.19200721153846156 0.4451904296875 0.17337740384615385 0.0430908203125 0.028545673076923128 0.0447998046875 0.01953125 0.0430908203125 0.01953125 0.4454345703125 0.19200721153846156 0.4454345703125 0.17337740384615385 0.4490966796875 0.17337740384615385 0.4022216796875 0.01953125 0.4005126953125 0.01953125 0.4005126953125 0.023737980769230727 0.4532470703125 0.19200721153846156 0.4608154296875 0.17337740384615385 0.4532470703125 0.17337740384615385 0.4686279296875 0.17337740384615385 0.4610595703125 0.17337740384615385 0.4610595703125 0.19200721153846156 0.0469970703125 0.028545673076923128 0.0506591796875 0.01953125 0.0469970703125 0.01953125 0.4493408203125 0.17337740384615385 0.4530029296875 0.17337740384615385 0.4493408203125 0.19200721153846156 0.4376220703125 0.1727764423076923 0.4376220703125 0.15414663461538458 0.4451904296875 0.15414663461538458 0.4490966796875 0.15414663461538458 0.4454345703125 0.15414663461538458 0.4454345703125 0.1727764423076923 0.4532470703125 0.1727764423076923 0.4608154296875 0.15414663461538458 0.4532470703125 0.15414663461538458 0.4686279296875 0.15414663461538458 0.4610595703125 0.15414663461538458 0.4610595703125 0.1727764423076923 0.4688720703125 0.23046875 0.4764404296875 0.2118389423076923 0.4688720703125 0.2118389423076923 0.4766845703125 0.2118389423076923 0.4766845703125 0.23046875 0.4842529296875 0.2118389423076923 0.8438720703125 0.5381610576923077 0.8592529296875 0.5003004807692308 0.8438720703125 0.5003004807692308 0.8594970703125 0.5003004807692308 0.8594970703125 0.5381610576923077 0.8748779296875 0.5003004807692308 0.0509033203125 0.01953125 0.0545654296875 0.01953125 0.0509033203125 0.028545673076923128 0.4024658203125 0.023737980769230727 0.4024658203125 0.01953125 0.4041748046875 0.01953125 0.0936279296875 0.7310697115384616 0.0782470703125 0.7310697115384616 0.4530029296875 0.15414663461538458 0.4493408203125 0.1727764423076923 0.4493408203125 0.15414663461538458 0.4844970703125 0.23046875 0.4844970703125 0.2118389423076923 0.4920654296875 0.2118389423076923 0.4998779296875 0.2118389423076923 0.4923095703125 0.2118389423076923 0.4923095703125 0.23046875 0.4688720703125 0.21123798076923073 0.4764404296875 0.19260817307692313 0.4688720703125 0.19260817307692313 0.5623779296875 0.15414663461538458 0.5587158203125 0.15414663461538458 0.8360595703125 0.15414663461538458 0.8436279296875 0.15414663461538458 0.2108154296875 0.42337740384615385 0.2032470703125 0.42337740384615385 0.4766845703125 0.19260817307692313 0.4766845703125 0.21123798076923073 0.4842529296875 0.19260817307692313 0.8438720703125 0.4996995192307693 0.8514404296875 0.4618389423076923 0.8438720703125 0.4618389423076923 0.4844970703125 0.19260817307692313 0.4844970703125 0.21123798076923073 0.4920654296875 0.19260817307692313 0.4998779296875 0.19260817307692313 0.4923095703125 0.19260817307692313 0.4923095703125 0.21123798076923073 0.4725341796875 0.17337740384615385 0.4688720703125 0.19200721153846156 0.4688720703125 0.17337740384615385 0.4727783203125 0.19200721153846156 0.4764404296875 0.17337740384615385 0.4727783203125 0.17337740384615385 0.4766845703125 0.17337740384615385 0.4842529296875 0.17337740384615385 0.4766845703125 0.19200721153846156 0.0467529296875 0.01953125 0.0450439453125 0.01953125 0.0450439453125 0.028545673076923128 0.4844970703125 0.19200721153846156 0.4920654296875 0.17337740384615385 0.4844970703125 0.17337740384615385 0.4998779296875 0.17337740384615385 0.4923095703125 0.17337740384615385 0.4923095703125 0.19200721153846156 0.4688720703125 0.1727764423076923 0.4764404296875 0.15414663461538458 0.4688720703125 0.15414663461538458 0.4766845703125 0.15414663461538458 0.4842529296875 0.15414663461538458 0.4766845703125 0.1727764423076923 0.4844970703125 0.1727764423076923 0.4844970703125 0.15414663461538458 0.4920654296875 0.15414663461538458 0.4998779296875 0.15414663461538458 0.4923095703125 0.1727764423076923 0.4923095703125 0.15414663461538458 0.5001220703125 0.23046875 0.5001220703125 0.2118389423076923 0.5076904296875 0.2118389423076923 0.5079345703125 0.2118389423076923 0.5079345703125 0.23046875 0.5155029296875 0.2118389423076923 0.0548095703125 0.028545673076923128 0.0565185546875 0.01953125 0.0548095703125 0.01953125 0.0567626953125 0.01953125 0.0567626953125 0.028545673076923128 0.0584716796875 0.01953125 0.9207763671875 0.34645432692307687 0.9200439453125 0.3650841346153846 0.9200439453125 0.34645432692307687 0.0587158203125 0.028545673076923128 0.0604248046875 0.01953125 0.0587158203125 0.01953125 0.0313720703125 0.009915865384615419 0.0350341796875 0.009915865384615419 0.0313720703125 0.018930288461538436 0.0606689453125 0.028545673076923128 0.0606689453125 0.01953125 0.0623779296875 0.01953125 0.4061279296875 0.01953125 0.4044189453125 0.01953125 0.4044189453125 0.023737980769230727 0.5157470703125 0.23046875 0.5233154296875 0.2118389423076923 0.5157470703125 0.2118389423076923 0.5272216796875 0.2118389423076923 0.5235595703125 0.2118389423076923 0.5235595703125 0.23046875 0.5001220703125 0.21123798076923073 0.5076904296875 0.19260817307692313 0.5001220703125 0.19260817307692313 0.5155029296875 0.19260817307692313 0.5079345703125 0.19260817307692313 0.5079345703125 0.21123798076923073 0.5157470703125 0.21123798076923073 0.5157470703125 0.19260817307692313 0.5233154296875 0.19260817307692313 0.5311279296875 0.19260817307692313 0.5235595703125 0.21123798076923073 0.5235595703125 0.19260817307692313 0.5274658203125 0.23046875 0.5274658203125 0.2118389423076923 0.5311279296875 0.2118389423076923 0.5001220703125 0.17337740384615385 0.5001220703125 0.19200721153846156 0.5076904296875 0.17337740384615385 0.0352783203125 0.018930288461538436 0.0389404296875 0.009915865384615419 0.0352783203125 0.009915865384615419 0.0408935546875 0.009915865384615419 0.0391845703125 0.018930288461538436 0.0391845703125 0.009915865384615419 0.0411376953125 0.018930288461538436 0.0411376953125 0.009915865384615419 0.0428466796875 0.009915865384615419 0.9844970703125 0.6926081730769231 0.9920654296875 0.6926081730769231 0.0430908203125 0.018930288461538436 0.0467529296875 0.009915865384615419 0.0430908203125 0.009915865384615419 0.0487060546875 0.009915865384615419 0.0469970703125 0.009915865384615419 0.0469970703125 0.018930288461538436 0.3751220703125 0.018930288461538436 0.3768310546875 0.01472355769230771 0.3751220703125 0.01472355769230771 0.3787841796875 0.01472355769230771 0.3770751953125 0.01472355769230771 0.3770751953125 0.018930288461538436 0.8594970703125 0.4996995192307693 0.8748779296875 0.4618389423076923 0.8594970703125 0.4618389423076923 0.8905029296875 0.5003004807692308 0.8751220703125 0.5003004807692308 0.8751220703125 0.5381610576923077 0.0509033203125 0.009915865384615419 0.0545654296875 0.009915865384615419 0.0509033203125 0.018930288461538436 0.0584716796875 0.009915865384615419 0.0548095703125 0.018930288461538436 0.0548095703125 0.009915865384615419 0.0506591796875 0.009915865384615419 0.0489501953125 0.009915865384615419 0.0489501953125 0.018930288461538436 0.0587158203125 0.009915865384615419 0.0604248046875 0.009915865384615419 0.0587158203125 0.018930288461538436 0.0350341796875 0.00030048076923072653 0.0313720703125 0.00030048076923072653 0.0313720703125 0.009314903846153855 0.3807373046875 0.01472355769230771 0.3790283203125 0.01472355769230771 0.3790283203125 0.018930288461538436 0.0606689453125 0.018930288461538436 0.0606689453125 0.009915865384615419 0.0623779296875 0.009915865384615419 0.0369873046875 0.00030048076923072653 0.0352783203125 0.009314903846153855 0.0352783203125 0.00030048076923072653 0.0391845703125 0.009314903846153855 0.0391845703125 0.00030048076923072653 0.0428466796875 0.00030048076923072653 0.0430908203125 0.00030048076923072653 0.0467529296875 0.00030048076923072653 0.0430908203125 0.009314903846153855 0.0506591796875 0.00030048076923072653 0.0469970703125 0.009314903846153855 0.0469970703125 0.00030048076923072653 0.5079345703125 0.19200721153846156 0.5115966796875 0.17337740384615385 0.5079345703125 0.17337740384615385 0.5155029296875 0.17337740384615385 0.5118408203125 0.17337740384615385 0.5118408203125 0.19200721153846156 0.0372314453125 0.00030048076923072653 0.0372314453125 0.009314903846153855 0.0389404296875 0.00030048076923072653 0.0509033203125 0.009314903846153855 0.0526123046875 0.00030048076923072653 0.0509033203125 0.00030048076923072653 0.5157470703125 0.19200721153846156 0.5157470703125 0.17337740384615385 0.5194091796875 0.17337740384615385 0.9139404296875 0.4618389423076923 0.9063720703125 0.4618389423076923 0.3829345703125 0.76953125 0.5196533203125 0.17337740384615385 0.5196533203125 0.19200721153846156 0.5233154296875 0.17337740384615385 0.3826904296875 0.01472355769230771 0.3809814453125 0.01472355769230771 0.3809814453125 0.018930288461538436 0.0528564453125 0.009314903846153855 0.0528564453125 0.00030048076923072653 0.0545654296875 0.00030048076923072653 0.0548095703125 0.00030048076923072653 0.0548095703125 0.009314903846153855 0.0584716796875 0.00030048076923072653 0.0587158203125 0.009314903846153855 0.0604248046875 0.00030048076923072653 0.0587158203125 0.00030048076923072653 0.0606689453125 0.00030048076923072653 0.0623779296875 0.00030048076923072653 0.0606689453125 0.009314903846153855 0.8516845703125 0.4996995192307693 0.5235595703125 0.17337740384615385 0.5235595703125 0.19200721153846156 0.5311279296875 0.17337740384615385 0.0626220703125 0.07662259615384615 0.0662841796875 0.06760817307692313 0.0626220703125 0.06760817307692313 0.5001220703125 0.1727764423076923 0.8983154296875 0.4618389423076923 0.8907470703125 0.4996995192307693 0.5079345703125 0.15414663461538458 0.5155029296875 0.15414663461538458 0.5079345703125 0.1727764423076923 0.5157470703125 0.1727764423076923 0.5157470703125 0.15414663461538458 0.5233154296875 0.15414663461538458 0.5235595703125 0.15414663461538458 0.5311279296875 0.15414663461538458 0.5235595703125 0.1727764423076923 0.8983154296875 0.5003004807692308 0.8907470703125 0.5381610576923077 0.8907470703125 0.5003004807692308 0.5313720703125 0.2118389423076923 0.5389404296875 0.2118389423076923 0.5313720703125 0.23046875 0.5467529296875 0.2118389423076923 0.5391845703125 0.2118389423076923 0.5391845703125 0.23046875 0.5040283203125 0.1727764423076923 0.5076904296875 0.15414663461538458 0.5040283203125 0.15414663461538458 0.5506591796875 0.2118389423076923 0.5469970703125 0.2118389423076923 0.5469970703125 0.23046875 0.0665283203125 0.06760817307692313 0.0701904296875 0.06760817307692313 0.0665283203125 0.07662259615384615 0.9061279296875 0.5003004807692308 0.8985595703125 0.5003004807692308 0.8985595703125 0.5381610576923077 0.8905029296875 0.4618389423076923 0.8751220703125 0.4996995192307693 0.8751220703125 0.4618389423076923 0.5509033203125 0.23046875 0.8907470703125 0.4618389423076923 0.8985595703125 0.4996995192307693 0.9063720703125 0.5003004807692308 0.9139404296875 0.5003004807692308 0.9063720703125 0.5381610576923077 0.9217529296875 0.5003004807692308 0.9141845703125 0.5381610576923077 0.9141845703125 0.5003004807692308 0.9219970703125 0.5003004807692308 0.9295654296875 0.5003004807692308 0.9219970703125 0.5381610576923077 0.9373779296875 0.5003004807692308 0.9298095703125 0.5003004807692308 0.9298095703125 0.5381610576923077 0.9063720703125 0.4996995192307693 0.9219970703125 0.4618389423076923 0.9219970703125 0.4996995192307693 0.9373779296875 0.4618389423076923 0.5548095703125 0.23046875 0.5623779296875 0.2118389423076923 0.5548095703125 0.2118389423076923 0.5313720703125 0.19260817307692313 0.5350341796875 0.19260817307692313 0.5313720703125 0.21123798076923073 0.5352783203125 0.21123798076923073 0.5352783203125 0.19260817307692313 0.5389404296875 0.19260817307692313 0.5391845703125 0.19260817307692313 0.5428466796875 0.19260817307692313 0.5391845703125 0.21123798076923073 0.0721435546875 0.06760817307692313 0.0704345703125 0.07662259615384615 0.0704345703125 0.06760817307692313 0.0723876953125 0.06760817307692313 0.0740966796875 0.06760817307692313 0.0723876953125 0.07662259615384615 0.0760498046875 0.06760817307692313 0.0743408203125 0.06760817307692313 0.0743408203125 0.07662259615384615 0.5469970703125 0.21123798076923073 0.5545654296875 0.19260817307692313 0.5469970703125 0.19260817307692313 0.5623779296875 0.19260817307692313 0.5548095703125 0.19260817307692313 0.5548095703125 0.21123798076923073 0.0782470703125 0.07662259615384615 0.0819091796875 0.06760817307692313 0.0782470703125 0.06760817307692313 0.0858154296875 0.06760817307692313 0.0821533203125 0.06760817307692313 0.0821533203125 0.07662259615384615 0.5467529296875 0.19260817307692313 0.5430908203125 0.19260817307692313 0.5430908203125 0.21123798076923073 0.5313720703125 0.19200721153846156 0.5389404296875 0.17337740384615385 0.5313720703125 0.17337740384615385 0.5391845703125 0.17337740384615385 0.5467529296875 0.17337740384615385 0.5391845703125 0.19200721153846156 0.5469970703125 0.19200721153846156 0.5469970703125 0.17337740384615385 0.5545654296875 0.17337740384615385 0.5623779296875 0.17337740384615385 0.5548095703125 0.17337740384615385 0.5548095703125 0.19200721153846156 0.5313720703125 0.1727764423076923 0.5313720703125 0.15414663461538458 0.5321044921875 0.15414663461538458 0.0860595703125 0.07662259615384615 0.0897216796875 0.06760817307692313 0.0860595703125 0.06760817307692313 0.0899658203125 0.06760817307692313 0.0899658203125 0.07662259615384615 0.0936279296875 0.06760817307692313 0.0762939453125 0.07662259615384615 0.0780029296875 0.06760817307692313 0.0762939453125 0.06760817307692313 0.0626220703125 0.057992788461538436 0.0626220703125 0.06700721153846156 0.0643310546875 0.057992788461538436 0.0645751953125 0.06700721153846156 0.0662841796875 0.057992788461538436 0.0645751953125 0.057992788461538436 0.0665283203125 0.06700721153846156 0.0665283203125 0.057992788461538436 0.0701904296875 0.057992788461538436 0.5391845703125 0.1727764423076923 0.5467529296875 0.15414663461538458 0.5391845703125 0.15414663461538458 0.5469970703125 0.15414663461538458 0.5545654296875 0.15414663461538458 0.5469970703125 0.1727764423076923 0.5352783203125 0.1727764423076923 0.5352783203125 0.15414663461538458 0.5389404296875 0.15414663461538458 0.0740966796875 0.057992788461538436 0.0704345703125 0.057992788461538436 0.0704345703125 0.06700721153846156 0.3829345703125 0.018930288461538436 0.3846435546875 0.01472355769230771 0.3829345703125 0.01472355769230771 0.3865966796875 0.01472355769230771 0.3848876953125 0.01472355769230771 0.3848876953125 0.018930288461538436 0.3868408203125 0.018930288461538436 0.3885498046875 0.01472355769230771 0.3868408203125 0.01472355769230771 0.5548095703125 0.1727764423076923 0.5548095703125 0.15414663461538458 0.5584716796875 0.15414663461538458 0.0743408203125 0.057992788461538436 0.0780029296875 0.057992788461538436 0.0743408203125 0.06700721153846156 0.5626220703125 0.23046875 0.5626220703125 0.2118389423076923 0.5701904296875 0.2118389423076923 0.5780029296875 0.2118389423076923 0.5704345703125 0.2118389423076923 0.5704345703125 0.23046875 0.5782470703125 0.23046875 0.5858154296875 0.2118389423076923 0.5782470703125 0.2118389423076923 0.9141845703125 0.4618389423076923 0.9217529296875 0.4618389423076923 0.9141845703125 0.4996995192307693 0.5323486328125 0.15414663461538458 0.5323486328125 0.1727764423076923 0.5330810546875 0.15414663461538458 0.5860595703125 0.23046875 0.5936279296875 0.2118389423076923 0.5860595703125 0.2118389423076923 0.5701904296875 0.19260817307692313 0.5626220703125 0.19260817307692313 0.5626220703125 0.21123798076923073 0.5704345703125 0.21123798076923073 0.5780029296875 0.19260817307692313 0.5704345703125 0.19260817307692313 0.5782470703125 0.19260817307692313 0.5858154296875 0.19260817307692313 0.5782470703125 0.21123798076923073 0.3895263671875 0.01472355769230771 0.3887939453125 0.018930288461538436 0.3887939453125 0.01472355769230771 0.5860595703125 0.21123798076923073 0.5936279296875 0.19260817307692313 0.5860595703125 0.19260817307692313 0.5626220703125 0.17337740384615385 0.5701904296875 0.17337740384615385 0.5626220703125 0.19200721153846156 0.5704345703125 0.19200721153846156 0.5704345703125 0.17337740384615385 0.5780029296875 0.17337740384615385 0.5858154296875 0.17337740384615385 0.5782470703125 0.17337740384615385 0.5782470703125 0.19200721153846156 0.0782470703125 0.06700721153846156 0.0819091796875 0.057992788461538436 0.0782470703125 0.057992788461538436 0.0858154296875 0.057992788461538436 0.0821533203125 0.057992788461538436 0.0821533203125 0.06700721153846156 0.5860595703125 0.19200721153846156 0.5936279296875 0.17337740384615385 0.5860595703125 0.17337740384615385 0.5701904296875 0.15414663461538458 0.5626220703125 0.15414663461538458 0.5626220703125 0.1727764423076923 0.1951904296875 0.11568509615384615 0.1876220703125 0.11568509615384615 0.3924560546875 0.01472355769230771 0.3907470703125 0.018930288461538436 0.3907470703125 0.01472355769230771 0.0860595703125 0.06700721153846156 0.0877685546875 0.057992788461538436 0.0860595703125 0.057992788461538436 0.9451904296875 0.5003004807692308 0.9376220703125 0.5381610576923077 0.9376220703125 0.5003004807692308 0.5704345703125 0.15414663461538458 0.5780029296875 0.15414663461538458 0.5704345703125 0.1727764423076923 0.5782470703125 0.15414663461538458 0.5858154296875 0.15414663461538458 0.5782470703125 0.1727764423076923 0.0899658203125 0.057992788461538436 0.0936279296875 0.057992788461538436 0.0899658203125 0.06700721153846156 0.5860595703125 0.1727764423076923 0.5860595703125 0.15414663461538458 0.5936279296875 0.15414663461538458 0.6014404296875 0.2118389423076923 0.5938720703125 0.2118389423076923 0.5938720703125 0.23046875 0.0880126953125 0.06700721153846156 0.0897216796875 0.057992788461538436 0.0880126953125 0.057992788461538436 0.0662841796875 0.048377403846153855 0.0626220703125 0.048377403846153855 0.0626220703125 0.05739182692307687 0.6016845703125 0.23046875 0.6092529296875 0.2118389423076923 0.6016845703125 0.2118389423076923 0.9454345703125 0.5003004807692308 0.9530029296875 0.5003004807692308 0.9454345703125 0.5381610576923077 0.5587158203125 0.1727764423076923 0.0665283203125 0.05739182692307687 0.0701904296875 0.048377403846153855 0.0665283203125 0.048377403846153855 0.6094970703125 0.2118389423076923 0.6131591796875 0.2118389423076923 0.6094970703125 0.23046875 0.3897705078125 0.018930288461538436 0.3897705078125 0.01472355769230771 0.3905029296875 0.01472355769230771 0.6134033203125 0.23046875 0.6170654296875 0.2118389423076923 0.6134033203125 0.2118389423076923 0.6248779296875 0.2118389423076923 0.6173095703125 0.2118389423076923 0.6173095703125 0.23046875 0.5938720703125 0.21123798076923073 0.6014404296875 0.19260817307692313 0.5938720703125 0.19260817307692313 0.6016845703125 0.19260817307692313 0.6092529296875 0.19260817307692313 0.6016845703125 0.21123798076923073 0.1287841796875 0.23106971153846156 0.1280517578125 0.23106971153846156 0.1280517578125 0.24969951923076927 0.0704345703125 0.05739182692307687 0.0740966796875 0.048377403846153855 0.0704345703125 0.048377403846153855 0.0780029296875 0.048377403846153855 0.0743408203125 0.048377403846153855 0.0743408203125 0.05739182692307687 0.3927001953125 0.018930288461538436 0.3944091796875 0.01472355769230771 0.3927001953125 0.01472355769230771 0.3963623046875 0.01472355769230771 0.3946533203125 0.01472355769230771 0.3946533203125 0.018930288461538436 0.6094970703125 0.21123798076923073 0.6131591796875 0.19260817307692313 0.6094970703125 0.19260817307692313 0.6170654296875 0.19260817307692313 0.6134033203125 0.19260817307692313 0.6134033203125 0.21123798076923073 0.6173095703125 0.21123798076923073 0.6248779296875 0.19260817307692313 0.6173095703125 0.19260817307692313 0.5938720703125 0.17337740384615385 0.6014404296875 0.17337740384615385 0.5938720703125 0.19200721153846156 0.0782470703125 0.05739182692307687 0.0819091796875 0.048377403846153855 0.0782470703125 0.048377403846153855 0.6016845703125 0.19200721153846156 0.6016845703125 0.17337740384615385 0.6053466796875 0.17337740384615385 0.0821533203125 0.048377403846153855 0.0821533203125 0.05739182692307687 0.0858154296875 0.048377403846153855 0.6094970703125 0.19200721153846156 0.6170654296875 0.17337740384615385 0.6094970703125 0.17337740384615385 0.6248779296875 0.17337740384615385 0.6173095703125 0.17337740384615385 0.6173095703125 0.19200721153846156 0.6055908203125 0.19200721153846156 0.6092529296875 0.17337740384615385 0.6055908203125 0.17337740384615385 0.5938720703125 0.15414663461538458 0.6014404296875 0.15414663461538458 0.5938720703125 0.1727764423076923 0.6016845703125 0.15414663461538458 0.6016845703125 0.1727764423076923 0.6053466796875 0.15414663461538458 0.0877685546875 0.048377403846153855 0.0860595703125 0.048377403846153855 0.0860595703125 0.05739182692307687 0.0899658203125 0.05739182692307687 0.0936279296875 0.048377403846153855 0.0899658203125 0.048377403846153855 0.0662841796875 0.038762019230769273 0.0626220703125 0.038762019230769273 0.0626220703125 0.04777644230769229 0.0665283203125 0.04777644230769229 0.0701904296875 0.038762019230769273 0.0665283203125 0.038762019230769273 0.6055908203125 0.15414663461538458 0.6092529296875 0.15414663461538458 0.6055908203125 0.1727764423076923 0.6094970703125 0.1727764423076923 0.6094970703125 0.15414663461538458 0.6131591796875 0.15414663461538458 0.6170654296875 0.15414663461538458 0.6134033203125 0.1727764423076923 0.6134033203125 0.15414663461538458 0.9686279296875 0.5003004807692308 0.9532470703125 0.5003004807692308 0.9532470703125 0.5381610576923077 0.6173095703125 0.15414663461538458 0.6248779296875 0.15414663461538458 0.6173095703125 0.1727764423076923 0.6251220703125 0.23046875 0.6251220703125 0.2118389423076923 0.6326904296875 0.2118389423076923 0.6329345703125 0.2118389423076923 0.6405029296875 0.2118389423076923 0.6329345703125 0.23046875 0.3966064453125 0.018930288461538436 0.3966064453125 0.01472355769230771 0.3973388671875 0.01472355769230771 0.5340576171875 0.15414663461538458 0.5333251953125 0.15414663461538458 0.5333251953125 0.1727764423076923 0.0880126953125 0.05739182692307687 0.0897216796875 0.048377403846153855 0.0880126953125 0.048377403846153855 0.6483154296875 0.2118389423076923 0.6407470703125 0.2118389423076923 0.6407470703125 0.23046875 0.6485595703125 0.23046875 0.6561279296875 0.2118389423076923 0.6485595703125 0.2118389423076923 0.6251220703125 0.19260817307692313 0.6251220703125 0.21123798076923073 0.6326904296875 0.19260817307692313 0.6405029296875 0.19260817307692313 0.6329345703125 0.19260817307692313 0.6329345703125 0.21123798076923073 0.6407470703125 0.19260817307692313 0.6407470703125 0.21123798076923073 0.6483154296875 0.19260817307692313 0.6485595703125 0.19260817307692313 0.6561279296875 0.19260817307692313 0.6485595703125 0.21123798076923073 0.6326904296875 0.17337740384615385 0.6251220703125 0.19200721153846156 0.6251220703125 0.17337740384615385 0.6405029296875 0.17337740384615385 0.6329345703125 0.17337740384615385 0.6329345703125 0.19200721153846156 0.6407470703125 0.19200721153846156 0.6444091796875 0.17337740384615385 0.6407470703125 0.17337740384615385 0.8243408203125 0.36568509615384615 0.8243408203125 0.38431490384615385 0.8280029296875 0.36568509615384615 0.6446533203125 0.19200721153846156 0.6483154296875 0.17337740384615385 0.6446533203125 0.17337740384615385 0.0704345703125 0.038762019230769273 0.0704345703125 0.04777644230769229 0.0740966796875 0.038762019230769273 0.6485595703125 0.19200721153846156 0.6561279296875 0.17337740384615385 0.6485595703125 0.17337740384615385 0.6287841796875 0.15414663461538458 0.6251220703125 0.1727764423076923 0.6251220703125 0.15414663461538458 0.6329345703125 0.1727764423076923 0.6329345703125 0.15414663461538458 0.6405029296875 0.15414663461538458 0.6407470703125 0.1727764423076923 0.6290283203125 0.1727764423076923 0.6326904296875 0.15414663461538458 0.6290283203125 0.15414663461538458 0.6485595703125 0.15414663461538458 0.6485595703125 0.1727764423076923 0.6522216796875 0.15414663461538458 0.6563720703125 0.23046875 0.6639404296875 0.2118389423076923 0.6563720703125 0.2118389423076923 0.6717529296875 0.2118389423076923 0.6641845703125 0.23046875 0.6641845703125 0.2118389423076923 0.0743408203125 0.04777644230769229 0.0743408203125 0.038762019230769273 0.0780029296875 0.038762019230769273 0.0819091796875 0.038762019230769273 0.0782470703125 0.04777644230769229 0.0782470703125 0.038762019230769273 0.0821533203125 0.038762019230769273 0.0821533203125 0.04777644230769229 0.0838623046875 0.038762019230769273 0.6795654296875 0.2118389423076923 0.6719970703125 0.2118389423076923 0.6719970703125 0.23046875 0.0860595703125 0.04777644230769229 0.0897216796875 0.038762019230769273 0.0860595703125 0.038762019230769273 0.0936279296875 0.038762019230769273 0.0899658203125 0.038762019230769273 0.0899658203125 0.04777644230769229 0.0626220703125 0.03816105769230771 0.0662841796875 0.02914663461538458 0.0626220703125 0.02914663461538458 0.6524658203125 0.15414663461538458 0.6561279296875 0.15414663461538458 0.6524658203125 0.1727764423076923 0.6798095703125 0.23046875 0.6798095703125 0.2118389423076923 0.6834716796875 0.2118389423076923 0.6837158203125 0.2118389423076923 0.6873779296875 0.2118389423076923 0.6837158203125 0.23046875 0.3985595703125 0.01472355769230771 0.3985595703125 0.018930288461538436 0.4002685546875 0.01472355769230771 0.6563720703125 0.21123798076923073 0.6563720703125 0.19260817307692313 0.6639404296875 0.19260817307692313 0.6717529296875 0.19260817307692313 0.6641845703125 0.21123798076923073 0.6641845703125 0.19260817307692313 0.6719970703125 0.21123798076923073 0.6719970703125 0.19260817307692313 0.6795654296875 0.19260817307692313 0.6834716796875 0.19260817307692313 0.6798095703125 0.21123798076923073 0.6798095703125 0.19260817307692313 0.0841064453125 0.038762019230769273 0.0841064453125 0.04777644230769229 0.0858154296875 0.038762019230769273 0.9376220703125 0.4618389423076923 0.9451904296875 0.4618389423076923 0.9376220703125 0.4996995192307693 0.6563720703125 0.19200721153846156 0.6563720703125 0.17337740384615385 0.6639404296875 0.17337740384615385 0.6717529296875 0.17337740384615385 0.6641845703125 0.17337740384615385 0.6641845703125 0.19200721153846156 0.0665283203125 0.02914663461538458 0.0701904296875 0.02914663461538458 0.0665283203125 0.03816105769230771 0.6873779296875 0.19260817307692313 0.6837158203125 0.19260817307692313 0.6837158203125 0.21123798076923073 0.6719970703125 0.19200721153846156 0.6795654296875 0.17337740384615385 0.6719970703125 0.17337740384615385 0.6873779296875 0.17337740384615385 0.6798095703125 0.17337740384615385 0.6798095703125 0.19200721153846156 0.0704345703125 0.03816105769230771 0.0721435546875 0.02914663461538458 0.0704345703125 0.02914663461538458 0.0740966796875 0.02914663461538458 0.0723876953125 0.02914663461538458 0.0723876953125 0.03816105769230771 0.6563720703125 0.15414663461538458 0.6600341796875 0.15414663461538458 0.6563720703125 0.1727764423076923 0.6602783203125 0.1727764423076923 0.6602783203125 0.15414663461538458 0.6639404296875 0.15414663461538458 0.9454345703125 0.4996995192307693 0.9530029296875 0.4618389423076923 0.9454345703125 0.4618389423076923 0.6717529296875 0.15414663461538458 0.6641845703125 0.1727764423076923 0.6641845703125 0.15414663461538458 0.0743408203125 0.03816105769230771 0.0743408203125 0.02914663461538458 0.0760498046875 0.02914663461538458 0.0780029296875 0.02914663461538458 0.0762939453125 0.02914663461538458 0.0762939453125 0.03816105769230771 0.0782470703125 0.02914663461538458 0.0782470703125 0.03816105769230771 0.0799560546875 0.02914663461538458 0.0819091796875 0.02914663461538458 0.0802001953125 0.02914663461538458 0.0802001953125 0.03816105769230771 0.6719970703125 0.15414663461538458 0.6795654296875 0.15414663461538458 0.6719970703125 0.1727764423076923 0.6798095703125 0.1727764423076923 0.6798095703125 0.15414663461538458 0.6834716796875 0.15414663461538458 0.0858154296875 0.02914663461538458 0.0821533203125 0.02914663461538458 0.0821533203125 0.03816105769230771 0.4005126953125 0.018930288461538436 0.4022216796875 0.01472355769230771 0.4005126953125 0.01472355769230771 0.4041748046875 0.01472355769230771 0.4024658203125 0.01472355769230771 0.4024658203125 0.018930288461538436 0.0897216796875 0.02914663461538458 0.0860595703125 0.02914663461538458 0.0860595703125 0.03816105769230771 0.6837158203125 0.1727764423076923 0.6873779296875 0.15414663461538458 0.6837158203125 0.15414663461538458 0.6876220703125 0.2118389423076923 0.6876220703125 0.23046875 0.6912841796875 0.2118389423076923 0.6915283203125 0.23046875 0.6951904296875 0.2118389423076923 0.6915283203125 0.2118389423076923 0.0936279296875 0.02914663461538458 0.0899658203125 0.03816105769230771 0.0899658203125 0.02914663461538458 0.0626220703125 0.028545673076923128 0.0626220703125 0.01953125 0.0643310546875 0.01953125 0.0662841796875 0.01953125 0.0645751953125 0.028545673076923128 0.0645751953125 0.01953125 0.0665283203125 0.028545673076923128 0.0665283203125 0.01953125 0.0701904296875 0.01953125 0.0740966796875 0.01953125 0.0704345703125 0.028545673076923128 0.0704345703125 0.01953125 0.4044189453125 0.018930288461538436 0.4061279296875 0.01472355769230771 0.4044189453125 0.01472355769230771 0.3751220703125 0.009915865384615419 0.3751220703125 0.014122596153846145 0.3768310546875 0.009915865384615419 0.6954345703125 0.23046875 0.7030029296875 0.2118389423076923 0.6954345703125 0.2118389423076923 0.7069091796875 0.2118389423076923 0.7032470703125 0.23046875 0.7032470703125 0.2118389423076923 0.0743408203125 0.028545673076923128 0.0743408203125 0.01953125 0.0780029296875 0.01953125 0.0819091796875 0.01953125 0.0782470703125 0.028545673076923128 0.0782470703125 0.01953125 0.0821533203125 0.028545673076923128 0.0821533203125 0.01953125 0.0838623046875 0.01953125 0.7110595703125 0.2118389423076923 0.7186279296875 0.2118389423076923 0.7110595703125 0.23046875 0.7071533203125 0.23046875 0.7071533203125 0.2118389423076923 0.7108154296875 0.2118389423076923 0.6876220703125 0.19260817307692313 0.6912841796875 0.19260817307692313 0.6876220703125 0.21123798076923073 0.0860595703125 0.028545673076923128 0.0860595703125 0.01953125 0.0897216796875 0.01953125 0.0899658203125 0.01953125 0.0936279296875 0.01953125 0.0899658203125 0.028545673076923128 0.3975830078125 0.018930288461538436 0.3975830078125 0.01472355769230771 0.3983154296875 0.01472355769230771 0.6915283203125 0.21123798076923073 0.6951904296875 0.19260817307692313 0.6915283203125 0.19260817307692313 0.6954345703125 0.21123798076923073 0.6954345703125 0.19260817307692313 0.7030029296875 0.19260817307692313 0.9532470703125 0.4996995192307693 0.9608154296875 0.4618389423076923 0.9532470703125 0.4618389423076923 0.7108154296875 0.19260817307692313 0.7032470703125 0.21123798076923073 0.7032470703125 0.19260817307692313 0.3770751953125 0.014122596153846145 0.3770751953125 0.009915865384615419 0.3787841796875 0.009915865384615419 0.7110595703125 0.19260817307692313 0.7186279296875 0.19260817307692313 0.7110595703125 0.21123798076923073 0.6876220703125 0.19200721153846156 0.6876220703125 0.17337740384615385 0.6951904296875 0.17337740384615385 0.7030029296875 0.17337740384615385 0.6954345703125 0.17337740384615385 0.6954345703125 0.19200721153846156 0.3790283203125 0.009915865384615419 0.3797607421875 0.009915865384615419 0.3790283203125 0.014122596153846145 0.3809814453125 0.009915865384615419 0.3809814453125 0.014122596153846145 0.3826904296875 0.009915865384615419 0.7069091796875 0.17337740384615385 0.7032470703125 0.19200721153846156 0.7032470703125 0.17337740384615385 0.7071533203125 0.17337740384615385 0.7108154296875 0.17337740384615385 0.7071533203125 0.19200721153846156 0.7110595703125 0.17337740384615385 0.7110595703125 0.19200721153846156 0.7186279296875 0.17337740384615385 0.6951904296875 0.15414663461538458 0.6876220703125 0.15414663461538458 0.6876220703125 0.1727764423076923 0.6954345703125 0.15414663461538458 0.6954345703125 0.1727764423076923 0.7030029296875 0.15414663461538458 0.7032470703125 0.15414663461538458 0.7108154296875 0.15414663461538458 0.7032470703125 0.1727764423076923 0.7186279296875 0.15414663461538458 0.7110595703125 0.1727764423076923 0.7110595703125 0.15414663461538458 0.7188720703125 0.2118389423076923 0.7264404296875 0.2118389423076923 0.7188720703125 0.23046875 0.7266845703125 0.23046875 0.7342529296875 0.2118389423076923 0.7266845703125 0.2118389423076923 0.7344970703125 0.2118389423076923 0.7344970703125 0.23046875 0.7420654296875 0.2118389423076923 0.7423095703125 0.23046875 0.7498779296875 0.2118389423076923 0.7423095703125 0.2118389423076923 0.7264404296875 0.19260817307692313 0.7188720703125 0.21123798076923073 0.7188720703125 0.19260817307692313 0.0626220703125 0.018930288461538436 0.0626220703125 0.009915865384615419 0.0662841796875 0.009915865384615419 0.0701904296875 0.009915865384615419 0.0665283203125 0.018930288461538436 0.0665283203125 0.009915865384615419 0.3846435546875 0.009915865384615419 0.3829345703125 0.014122596153846145 0.3829345703125 0.009915865384615419 0.7266845703125 0.21123798076923073 0.7342529296875 0.19260817307692313 0.7266845703125 0.19260817307692313 0.7344970703125 0.19260817307692313 0.7344970703125 0.21123798076923073 0.7420654296875 0.19260817307692313 0.0841064453125 0.028545673076923128 0.0858154296875 0.01953125 0.0841064453125 0.01953125 0.0704345703125 0.018930288461538436 0.0704345703125 0.009915865384615419 0.0721435546875 0.009915865384615419 0.0723876953125 0.009915865384615419 0.0740966796875 0.009915865384615419 0.0723876953125 0.018930288461538436 0.0743408203125 0.018930288461538436 0.0743408203125 0.009915865384615419 0.0760498046875 0.009915865384615419 0.0762939453125 0.009915865384615419 0.0780029296875 0.009915865384615419 0.0762939453125 0.018930288461538436 0.3800048828125 0.009915865384615419 0.3800048828125 0.014122596153846145 0.3807373046875 0.009915865384615419 0.3865966796875 0.009915865384615419 0.3848876953125 0.014122596153846145 0.3848876953125 0.009915865384615419 0.0782470703125 0.018930288461538436 0.0782470703125 0.009915865384615419 0.0819091796875 0.009915865384615419 0.9688720703125 0.5381610576923077 0.9688720703125 0.5003004807692308 0.9842529296875 0.5003004807692308 0.7423095703125 0.21123798076923073 0.7423095703125 0.19260817307692313 0.7498779296875 0.19260817307692313 0.7225341796875 0.17337740384615385 0.7188720703125 0.19200721153846156 0.7188720703125 0.17337740384615385 0.9610595703125 0.4996995192307693 0.9610595703125 0.4618389423076923 0.9686279296875 0.4618389423076923 0.9920654296875 0.5003004807692308 0.9844970703125 0.5381610576923077 0.9844970703125 0.5003004807692308 0.0858154296875 0.009915865384615419 0.0821533203125 0.018930288461538436 0.0821533203125 0.009915865384615419 0.9998779296875 0.5003004807692308 0.9923095703125 0.5381610576923077 0.9923095703125 0.5003004807692308 0.7227783203125 0.17337740384615385 0.7227783203125 0.19200721153846156 0.7264404296875 0.17337740384615385 0.0897216796875 0.009915865384615419 0.0860595703125 0.009915865384615419 0.0860595703125 0.018930288461538436 0.7266845703125 0.19200721153846156 0.7342529296875 0.17337740384615385 0.7266845703125 0.17337740384615385 0.7344970703125 0.17337740384615385 0.7420654296875 0.17337740384615385 0.7344970703125 0.19200721153846156 0.0899658203125 0.018930288461538436 0.0899658203125 0.009915865384615419 0.0936279296875 0.009915865384615419 0.0626220703125 0.009314903846153855 0.0662841796875 0.00030048076923072653 0.0626220703125 0.00030048076923072653 0.0665283203125 0.00030048076923072653 0.0665283203125 0.009314903846153855 0.0701904296875 0.00030048076923072653 0.0704345703125 0.009314903846153855 0.0740966796875 0.00030048076923072653 0.0704345703125 0.00030048076923072653 0.7423095703125 0.17337740384615385 0.7423095703125 0.19200721153846156 0.7459716796875 0.17337740384615385 0.7462158203125 0.19200721153846156 0.7498779296875 0.17337740384615385 0.7462158203125 0.17337740384615385 0.0780029296875 0.00030048076923072653 0.0743408203125 0.00030048076923072653 0.0743408203125 0.009314903846153855 0.0782470703125 0.00030048076923072653 0.0782470703125 0.009314903846153855 0.0819091796875 0.00030048076923072653 0.7188720703125 0.15414663461538458 0.7188720703125 0.1727764423076923 0.7264404296875 0.15414663461538458 0.7266845703125 0.15414663461538458 0.7342529296875 0.15414663461538458 0.7266845703125 0.1727764423076923 0.7344970703125 0.15414663461538458 0.7344970703125 0.1727764423076923 0.7420654296875 0.15414663461538458 0.9688720703125 0.4618389423076923 0.9764404296875 0.4618389423076923 0.9688720703125 0.4996995192307693 0.9844970703125 0.4618389423076923 0.9844970703125 0.4996995192307693 0.9998779296875 0.4618389423076923 0.9842529296875 0.4618389423076923 0.9766845703125 0.4618389423076923 0.9766845703125 0.4996995192307693 0.7423095703125 0.15414663461538458 0.7423095703125 0.1727764423076923 0.7498779296875 0.15414663461538458 0.3868408203125 0.009915865384615419 0.3875732421875 0.009915865384615419 0.3868408203125 0.014122596153846145 0.3887939453125 0.014122596153846145 0.3887939453125 0.009915865384615419 0.3905029296875 0.009915865384615419 0.0821533203125 0.009314903846153855 0.0838623046875 0.00030048076923072653 0.0821533203125 0.00030048076923072653 0.0860595703125 0.009314903846153855 0.0860595703125 0.00030048076923072653 0.0897216796875 0.00030048076923072653 0.0899658203125 0.00030048076923072653 0.0936279296875 0.00030048076923072653 0.0899658203125 0.009314903846153855 0.7501220703125 0.23046875 0.7501220703125 0.2118389423076923 0.7576904296875 0.2118389423076923 0.7579345703125 0.2118389423076923 0.7655029296875 0.2118389423076923 0.7579345703125 0.23046875 0.0938720703125 0.07662259615384615 0.0975341796875 0.06760817307692313 0.0938720703125 0.06760817307692313 0.0977783203125 0.06760817307692313 0.0977783203125 0.07662259615384615 0.1014404296875 0.06760817307692313 0.7657470703125 0.23046875 0.7733154296875 0.2118389423076923 0.7657470703125 0.2118389423076923 0.7811279296875 0.2118389423076923 0.7735595703125 0.2118389423076923 0.7735595703125 0.23046875 0.7501220703125 0.19260817307692313 0.7501220703125 0.21123798076923073 0.7576904296875 0.19260817307692313 0.7579345703125 0.19260817307692313 0.7655029296875 0.19260817307692313 0.7579345703125 0.21123798076923073 0.7733154296875 0.19260817307692313 0.7657470703125 0.21123798076923073 0.7657470703125 0.19260817307692313 0.7735595703125 0.21123798076923073 0.7735595703125 0.19260817307692313 0.7811279296875 0.19260817307692313 0.7576904296875 0.17337740384615385 0.7501220703125 0.19200721153846156 0.7501220703125 0.17337740384615385 0.1016845703125 0.07662259615384615 0.1016845703125 0.06760817307692313 0.1053466796875 0.06760817307692313 0.0858154296875 0.00030048076923072653 0.0841064453125 0.00030048076923072653 0.0841064453125 0.009314903846153855 0.1055908203125 0.06760817307692313 0.1055908203125 0.07662259615384615 0.1072998046875 0.06760817307692313 0.1094970703125 0.06760817307692313 0.1131591796875 0.06760817307692313 0.1094970703125 0.07662259615384615 0.1170654296875 0.06760817307692313 0.1134033203125 0.07662259615384615 0.1134033203125 0.06760817307692313 0.1075439453125 0.07662259615384615 0.1075439453125 0.06760817307692313 0.1092529296875 0.06760817307692313 0.1173095703125 0.06760817307692313 0.1190185546875 0.06760817307692313 0.1173095703125 0.07662259615384615 0.7579345703125 0.19200721153846156 0.7579345703125 0.17337740384615385 0.7655029296875 0.17337740384615385 0.7657470703125 0.17337740384615385 0.7733154296875 0.17337740384615385 0.7657470703125 0.19200721153846156 0.1212158203125 0.07662259615384615 0.1212158203125 0.06760817307692313 0.1248779296875 0.06760817307692313 0.3907470703125 0.014122596153846145 0.3907470703125 0.009915865384615419 0.3924560546875 0.009915865384615419 0.1192626953125 0.06760817307692313 0.1209716796875 0.06760817307692313 0.1192626953125 0.07662259615384615 0.7735595703125 0.19200721153846156 0.7735595703125 0.17337740384615385 0.7811279296875 0.17337740384615385 0.7501220703125 0.15414663461538458 0.7576904296875 0.15414663461538458 0.7501220703125 0.1727764423076923 0.7579345703125 0.1727764423076923 0.7579345703125 0.15414663461538458 0.7655029296875 0.15414663461538458 0.7733154296875 0.15414663461538458 0.7657470703125 0.15414663461538458 0.7657470703125 0.1727764423076923 0.7735595703125 0.1727764423076923 0.7735595703125 0.15414663461538458 0.7811279296875 0.15414663461538458 0.7889404296875 0.2118389423076923 0.7813720703125 0.23046875 0.7813720703125 0.2118389423076923 0.7891845703125 0.23046875 0.7891845703125 0.2118389423076923 0.7928466796875 0.2118389423076923 0.0955810546875 0.057992788461538436 0.0938720703125 0.06700721153846156 0.0938720703125 0.057992788461538436 0.8045654296875 0.2118389423076923 0.7969970703125 0.2118389423076923 0.7969970703125 0.23046875 0.0958251953125 0.06700721153846156 0.0975341796875 0.057992788461538436 0.0958251953125 0.057992788461538436 0.0977783203125 0.057992788461538436 0.1014404296875 0.057992788461538436 0.0977783203125 0.06700721153846156 0.1016845703125 0.06700721153846156 0.1016845703125 0.057992788461538436 0.1053466796875 0.057992788461538436 0.7930908203125 0.23046875 0.7967529296875 0.2118389423076923 0.7930908203125 0.2118389423076923 0.0001220703125 0.4612379807692307 0.0001220703125 0.42337740384615385 0.0076904296875 0.42337740384615385 0.8123779296875 0.2118389423076923 0.8048095703125 0.2118389423076923 0.8048095703125 0.23046875 0.7889404296875 0.19260817307692313 0.7813720703125 0.21123798076923073 0.7813720703125 0.19260817307692313 0.7967529296875 0.19260817307692313 0.7891845703125 0.19260817307692313 0.7891845703125 0.21123798076923073 0.8045654296875 0.19260817307692313 0.7969970703125 0.21123798076923073 0.7969970703125 0.19260817307692313 0.8123779296875 0.19260817307692313 0.8048095703125 0.19260817307692313 0.8048095703125 0.21123798076923073 0.7813720703125 0.17337740384615385 0.7813720703125 0.19200721153846156 0.7889404296875 0.17337740384615385 0.7928466796875 0.17337740384615385 0.7891845703125 0.19200721153846156 0.7891845703125 0.17337740384615385 0.7930908203125 0.17337740384615385 0.7930908203125 0.19200721153846156 0.7967529296875 0.17337740384615385 0.3927001953125 0.009915865384615419 0.3944091796875 0.009915865384615419 0.3927001953125 0.014122596153846145 0.1055908203125 0.06700721153846156 0.1055908203125 0.057992788461538436 0.1072998046875 0.057992788461538436 0.1075439453125 0.06700721153846156 0.1092529296875 0.057992788461538436 0.1075439453125 0.057992788461538436 0.7969970703125 0.19200721153846156 0.7969970703125 0.17337740384615385 0.8045654296875 0.17337740384615385 0.8123779296875 0.17337740384615385 0.8048095703125 0.17337740384615385 0.8048095703125 0.19200721153846156 0.1094970703125 0.06700721153846156 0.1131591796875 0.057992788461538436 0.1094970703125 0.057992788461538436 0.1170654296875 0.057992788461538436 0.1134033203125 0.057992788461538436 0.1134033203125 0.06700721153846156 0.0311279296875 0.9233774038461539 0.0157470703125 0.9233774038461539 0.1173095703125 0.057992788461538436 0.1209716796875 0.057992788461538436 0.1173095703125 0.06700721153846156 0.7813720703125 0.1727764423076923 0.7813720703125 0.15414663461538458 0.7889404296875 0.15414663461538458 0.0079345703125 0.42337740384615385 0.0155029296875 0.42337740384615385 0.0079345703125 0.4612379807692307 0.7891845703125 0.15414663461538458 0.7891845703125 0.1727764423076923 0.7967529296875 0.15414663461538458 0.7969970703125 0.15414663461538458 0.8045654296875 0.15414663461538458 0.7969970703125 0.1727764423076923 0.8048095703125 0.15414663461538458 0.8048095703125 0.1727764423076923 0.8123779296875 0.15414663461538458 0.0157470703125 0.42337740384615385 0.0233154296875 0.42337740384615385 0.0157470703125 0.4612379807692307 0.0001220703125 0.3849158653846154 0.0001220703125 0.4227764423076923 0.0155029296875 0.3849158653846154 0.0311279296875 0.3849158653846154 0.0157470703125 0.3849158653846154 0.0157470703125 0.4227764423076923 0.0313720703125 0.42337740384615385 0.0313720703125 0.4612379807692307 0.0467529296875 0.42337740384615385 0.5350341796875 0.15414663461538458 0.5343017578125 0.15414663461538458 0.5343017578125 0.1727764423076923 0.3946533203125 0.014122596153846145 0.3963623046875 0.009915865384615419 0.3946533203125 0.009915865384615419 0.3983154296875 0.009915865384615419 0.3966064453125 0.009915865384615419 0.3966064453125 0.014122596153846145 0.8126220703125 0.23046875 0.8201904296875 0.2118389423076923 0.8126220703125 0.2118389423076923 0.8204345703125 0.2118389423076923 0.8280029296875 0.2118389423076923 0.8204345703125 0.23046875 0.8282470703125 0.23046875 0.8282470703125 0.2118389423076923 0.8358154296875 0.2118389423076923 0.8397216796875 0.2118389423076923 0.8360595703125 0.2118389423076923 0.8360595703125 0.23046875 0.3985595703125 0.009915865384615419 0.4002685546875 0.009915865384615419 0.3985595703125 0.014122596153846145 0.1212158203125 0.06700721153846156 0.1212158203125 0.057992788461538436 0.1229248046875 0.057992788461538436 0.1231689453125 0.057992788461538436 0.1248779296875 0.057992788461538436 0.1231689453125 0.06700721153846156 0.8126220703125 0.21123798076923073 0.8126220703125 0.19260817307692313 0.8201904296875 0.19260817307692313 0.8204345703125 0.19260817307692313 0.8280029296875 0.19260817307692313 0.8204345703125 0.21123798076923073 0.8282470703125 0.21123798076923073 0.8282470703125 0.19260817307692313 0.8358154296875 0.19260817307692313 0.8436279296875 0.19260817307692313 0.8360595703125 0.19260817307692313 0.8360595703125 0.21123798076923073 0.8126220703125 0.19200721153846156 0.8201904296875 0.17337740384615385 0.8126220703125 0.17337740384615385 0.8280029296875 0.17337740384615385 0.8204345703125 0.19200721153846156 0.8204345703125 0.17337740384615385 0.8282470703125 0.19200721153846156 0.8282470703125 0.17337740384615385 0.8358154296875 0.17337740384615385 0.8360595703125 0.17337740384615385 0.8360595703125 0.19200721153846156 0.8436279296875 0.17337740384615385 0.0938720703125 0.048377403846153855 0.0955810546875 0.048377403846153855 0.0938720703125 0.05739182692307687 0.0958251953125 0.048377403846153855 0.0958251953125 0.05739182692307687 0.0975341796875 0.048377403846153855 0.8399658203125 0.23046875 0.8436279296875 0.2118389423076923 0.8399658203125 0.2118389423076923 0.1014404296875 0.048377403846153855 0.0977783203125 0.048377403846153855 0.0977783203125 0.05739182692307687 0.3878173828125 0.009915865384615419 0.3885498046875 0.009915865384615419 0.3878173828125 0.014122596153846145 0.4022216796875 0.009915865384615419 0.4005126953125 0.009915865384615419 0.4005126953125 0.014122596153846145 0.1016845703125 0.05739182692307687 0.1053466796875 0.048377403846153855 0.1016845703125 0.048377403846153855 0.0469970703125 0.4612379807692307 0.0623779296875 0.42337740384615385 0.0469970703125 0.42337740384615385 0.0313720703125 0.3849158653846154 0.0313720703125 0.4227764423076923 0.0467529296875 0.3849158653846154 0.1092529296875 0.048377403846153855 0.1055908203125 0.05739182692307687 0.1055908203125 0.048377403846153855 0.0311279296875 0.42337740384615385 0.0235595703125 0.42337740384615385 0.0235595703125 0.4612379807692307 0.1094970703125 0.048377403846153855 0.1112060546875 0.048377403846153855 0.1094970703125 0.05739182692307687 0.1170654296875 0.048377403846153855 0.1134033203125 0.048377403846153855 0.1134033203125 0.05739182692307687 0.1114501953125 0.05739182692307687 0.1131591796875 0.048377403846153855 0.1114501953125 0.048377403846153855 0.8126220703125 0.1727764423076923 0.8126220703125 0.15414663461538458 0.8162841796875 0.15414663461538458 0.8165283203125 0.1727764423076923 0.8204345703125 0.1727764423076923 0.8204345703125 0.15414663461538458 0.8240966796875 0.15414663461538458 0.8280029296875 0.15414663461538458 0.8243408203125 0.15414663461538458 0.8243408203125 0.1727764423076923 0.1209716796875 0.048377403846153855 0.1173095703125 0.05739182692307687 0.1173095703125 0.048377403846153855 0.1229248046875 0.048377403846153855 0.1212158203125 0.048377403846153855 0.1212158203125 0.05739182692307687 0.0469970703125 0.3849158653846154 0.0469970703125 0.4227764423076923 0.0545654296875 0.3849158653846154 0.0623779296875 0.3849158653846154 0.0548095703125 0.3849158653846154 0.0548095703125 0.4227764423076923 0.0626220703125 0.42337740384615385 0.0701904296875 0.42337740384615385 0.0626220703125 0.4612379807692307 0.0975341796875 0.038762019230769273 0.0938720703125 0.038762019230769273 0.0938720703125 0.04777644230769229 0.1231689453125 0.05739182692307687 0.1248779296875 0.048377403846153855 0.1231689453125 0.048377403846153855 0.0977783203125 0.038762019230769273 0.1014404296875 0.038762019230769273 0.0977783203125 0.04777644230769229 0.8282470703125 0.1727764423076923 0.8282470703125 0.15414663461538458 0.8358154296875 0.15414663461538458 0.0782470703125 0.42337740384615385 0.0782470703125 0.4612379807692307 0.0936279296875 0.42337740384615385 0.0780029296875 0.42337740384615385 0.0704345703125 0.42337740384615385 0.0704345703125 0.4612379807692307 0.0626220703125 0.3849158653846154 0.0701904296875 0.3849158653846154 0.0626220703125 0.4227764423076923 0.8360595703125 0.1727764423076923 0.0704345703125 0.3849158653846154 0.0704345703125 0.4227764423076923 0.0780029296875 0.3849158653846154 0.8438720703125 0.2118389423076923 0.8475341796875 0.2118389423076923 0.8438720703125 0.23046875 0.8477783203125 0.23046875 0.8477783203125 0.2118389423076923 0.8514404296875 0.2118389423076923 0.8516845703125 0.2118389423076923 0.8553466796875 0.2118389423076923 0.8516845703125 0.23046875 0.1016845703125 0.04777644230769229 0.1016845703125 0.038762019230769273 0.1053466796875 0.038762019230769273 0.1092529296875 0.038762019230769273 0.1055908203125 0.04777644230769229 0.1055908203125 0.038762019230769273 0.1094970703125 0.04777644230769229 0.1094970703125 0.038762019230769273 0.1131591796875 0.038762019230769273 0.1134033203125 0.04777644230769229 0.1170654296875 0.038762019230769273 0.1134033203125 0.038762019230769273 0.1209716796875 0.038762019230769273 0.1173095703125 0.04777644230769229 0.1173095703125 0.038762019230769273 0.1212158203125 0.04777644230769229 0.1212158203125 0.038762019230769273 0.1229248046875 0.038762019230769273 0.0938720703125 0.02914663461538458 0.0975341796875 0.02914663461538458 0.0938720703125 0.03816105769230771 0.1014404296875 0.02914663461538458 0.0977783203125 0.03816105769230771 0.0977783203125 0.02914663461538458 0.8594970703125 0.23046875 0.8670654296875 0.2118389423076923 0.8594970703125 0.2118389423076923 0.1053466796875 0.02914663461538458 0.1016845703125 0.02914663461538458 0.1016845703125 0.03816105769230771 0.1055908203125 0.03816105769230771 0.1092529296875 0.02914663461538458 0.1055908203125 0.02914663461538458 0.1094970703125 0.02914663461538458 0.1131591796875 0.02914663461538458 0.1094970703125 0.03816105769230771 0.1134033203125 0.03816105769230771 0.1134033203125 0.02914663461538458 0.1170654296875 0.02914663461538458 0.8555908203125 0.2118389423076923 0.8592529296875 0.2118389423076923 0.8555908203125 0.23046875 0.8673095703125 0.2118389423076923 0.8673095703125 0.23046875 0.8709716796875 0.2118389423076923 0.0936279296875 0.3849158653846154 0.0782470703125 0.3849158653846154 0.0782470703125 0.4227764423076923 0.0938720703125 0.4612379807692307 0.8514404296875 0.19260817307692313 0.8438720703125 0.19260817307692313 0.8438720703125 0.21123798076923073 0.4024658203125 0.014122596153846145 0.4041748046875 0.009915865384615419 0.4024658203125 0.009915865384615419 0.8712158203125 0.23046875 0.8748779296875 0.2118389423076923 0.8712158203125 0.2118389423076923 0.8524169921875 0.19260817307692313 0.8516845703125 0.21123798076923073 0.8516845703125 0.19260817307692313 0.1173095703125 0.03816105769230771 0.1173095703125 0.02914663461538458 0.1209716796875 0.02914663461538458 0.8594970703125 0.19260817307692313 0.8670654296875 0.19260817307692313 0.8594970703125 0.21123798076923073 0.1231689453125 0.038762019230769273 0.1231689453125 0.04777644230769229 0.1248779296875 0.038762019230769273 0.4044189453125 0.009915865384615419 0.4051513671875 0.009915865384615419 0.4044189453125 0.014122596153846145 0.3966064453125 0.07662259615384615 0.3966064453125 0.07241586538461542 0.3983154296875 0.07241586538461542 0.8331298828125 0.23106971153846156 0.8331298828125 0.24969951923076927 0.3751220703125 0.009314903846153855 0.3751220703125 0.005108173076923128 0.3768310546875 0.005108173076923128 0.3770751953125 0.005108173076923128 0.3787841796875 0.005108173076923128 0.3770751953125 0.009314903846153855 0.1212158203125 0.03816105769230771 0.1212158203125 0.02914663461538458 0.1248779296875 0.02914663461538458 0.8748779296875 0.19260817307692313 0.8673095703125 0.19260817307692313 0.8673095703125 0.21123798076923073 0.3790283203125 0.009314903846153855 0.3807373046875 0.005108173076923128 0.3790283203125 0.005108173076923128 0.3826904296875 0.005108173076923128 0.3809814453125 0.005108173076923128 0.3809814453125 0.009314903846153855 0.0938720703125 0.028545673076923128 0.0955810546875 0.01953125 0.0938720703125 0.01953125 0.8555908203125 0.19260817307692313 0.8592529296875 0.19260817307692313 0.8555908203125 0.21123798076923073 0.0977783203125 0.028545673076923128 0.0977783203125 0.01953125 0.1014404296875 0.01953125 0.1016845703125 0.01953125 0.1053466796875 0.01953125 0.1016845703125 0.028545673076923128 0.3829345703125 0.009314903846153855 0.3829345703125 0.005108173076923128 0.3846435546875 0.005108173076923128 0.8438720703125 0.19200721153846156 0.8438720703125 0.17337740384615385 0.8514404296875 0.17337740384615385 0.8516845703125 0.19200721153846156 0.8631591796875 0.17337740384615385 0.8594970703125 0.19200721153846156 0.8594970703125 0.17337740384615385 0.0975341796875 0.01953125 0.0958251953125 0.01953125 0.0958251953125 0.028545673076923128 0.8673095703125 0.17337740384615385 0.8748779296875 0.17337740384615385 0.8673095703125 0.19200721153846156 0.1055908203125 0.01953125 0.1055908203125 0.028545673076923128 0.1072998046875 0.01953125 0.1094970703125 0.028545673076923128 0.1131591796875 0.01953125 0.1094970703125 0.01953125 0.1134033203125 0.01953125 0.1134033203125 0.028545673076923128 0.1170654296875 0.01953125 0.3848876953125 0.009314903846153855 0.3865966796875 0.005108173076923128 0.3848876953125 0.005108173076923128 0.8438720703125 0.15414663461538458 0.8514404296875 0.15414663461538458 0.8438720703125 0.1727764423076923 0.4053955078125 0.014122596153846145 0.4053955078125 0.009915865384615419 0.4061279296875 0.009915865384615419 0.8533935546875 0.19260817307692313 0.8526611328125 0.21123798076923073 0.8526611328125 0.19260817307692313 0.3868408203125 0.009314903846153855 0.3875732421875 0.005108173076923128 0.3868408203125 0.005108173076923128 0.3985595703125 0.23106971153846156 0.3985595703125 0.24969951923076927 0.8516845703125 0.15414663461538458 0.8592529296875 0.15414663461538458 0.8516845703125 0.1727764423076923 0.1173095703125 0.028545673076923128 0.1173095703125 0.01953125 0.1209716796875 0.01953125 0.1248779296875 0.01953125 0.1212158203125 0.01953125 0.1212158203125 0.028545673076923128 0.0938720703125 0.009915865384615419 0.0975341796875 0.009915865384615419 0.0938720703125 0.018930288461538436 0.8634033203125 0.17337740384615385 0.8634033203125 0.19200721153846156 0.8670654296875 0.17337740384615385 0.8670654296875 0.15414663461538458 0.8594970703125 0.15414663461538458 0.8594970703125 0.1727764423076923 0.8673095703125 0.1727764423076923 0.8673095703125 0.15414663461538458 0.8709716796875 0.15414663461538458 0.8748779296875 0.15414663461538458 0.8712158203125 0.1727764423076923 0.8712158203125 0.15414663461538458 0.3887939453125 0.005108173076923128 0.3887939453125 0.009314903846153855 0.3905029296875 0.005108173076923128 0.8826904296875 0.2118389423076923 0.8751220703125 0.23046875 0.8751220703125 0.2118389423076923 0.8829345703125 0.23046875 0.8829345703125 0.2118389423076923 0.8905029296875 0.2118389423076923 0.8907470703125 0.2118389423076923 0.8983154296875 0.2118389423076923 0.8907470703125 0.23046875 0.1248779296875 0.42337740384615385 0.1094970703125 0.4612379807692307 0.1094970703125 0.42337740384615385 0.1092529296875 0.3849158653846154 0.0938720703125 0.3849158653846154 0.0938720703125 0.4227764423076923 0.1170654296875 0.3849158653846154 0.1094970703125 0.4227764423076923 0.1094970703125 0.3849158653846154 0.9061279296875 0.2118389423076923 0.8985595703125 0.2118389423076923 0.8985595703125 0.23046875 0.8826904296875 0.19260817307692313 0.8751220703125 0.21123798076923073 0.8751220703125 0.19260817307692313 0.1251220703125 0.42337740384615385 0.1405029296875 0.42337740384615385 0.1251220703125 0.4612379807692307 0.1561279296875 0.42337740384615385 0.1407470703125 0.42337740384615385 0.1407470703125 0.4612379807692307 0.0977783203125 0.018930288461538436 0.1014404296875 0.009915865384615419 0.0977783203125 0.009915865384615419 0.1251220703125 0.3849158653846154 0.1405029296875 0.3849158653846154 0.1251220703125 0.4227764423076923 0.1561279296875 0.3849158653846154 0.1407470703125 0.3849158653846154 0.1407470703125 0.4227764423076923 0.8829345703125 0.21123798076923073 0.8905029296875 0.19260817307692313 0.8829345703125 0.19260817307692313 0.8983154296875 0.19260817307692313 0.8907470703125 0.19260817307692313 0.8907470703125 0.21123798076923073 0.3907470703125 0.005108173076923128 0.3924560546875 0.005108173076923128 0.3907470703125 0.009314903846153855 0.1016845703125 0.018930288461538436 0.1016845703125 0.009915865384615419 0.1053466796875 0.009915865384615419 0.1055908203125 0.009915865384615419 0.1092529296875 0.009915865384615419 0.1055908203125 0.018930288461538436 0.8985595703125 0.21123798076923073 0.8985595703125 0.19260817307692313 0.9061279296875 0.19260817307692313 0.8751220703125 0.17337740384615385 0.8826904296875 0.17337740384615385 0.8751220703125 0.19200721153846156 0.8829345703125 0.19200721153846156 0.8829345703125 0.17337740384615385 0.8905029296875 0.17337740384615385 0.8944091796875 0.17337740384615385 0.8907470703125 0.17337740384615385 0.8907470703125 0.19200721153846156 0.1092529296875 0.01953125 0.1075439453125 0.01953125 0.1075439453125 0.028545673076923128 0.1094970703125 0.009915865384615419 0.1131591796875 0.009915865384615419 0.1094970703125 0.018930288461538436 0.8985595703125 0.19200721153846156 0.8985595703125 0.17337740384615385 0.9061279296875 0.17337740384615385 0.1173095703125 0.3849158653846154 0.1248779296875 0.3849158653846154 0.1173095703125 0.4227764423076923 0.1151123046875 0.009915865384615419 0.1134033203125 0.009915865384615419 0.1134033203125 0.018930288461538436 0.8751220703125 0.1727764423076923 0.8826904296875 0.15414663461538458 0.8751220703125 0.15414663461538458 0.8905029296875 0.15414663461538458 0.8829345703125 0.15414663461538458 0.8829345703125 0.1727764423076923 0.8907470703125 0.1727764423076923 0.8983154296875 0.15414663461538458 0.8907470703125 0.15414663461538458 0.8985595703125 0.15414663461538458 0.9061279296875 0.15414663461538458 0.8985595703125 0.1727764423076923 0.1209716796875 0.009915865384615419 0.1173095703125 0.009915865384615419 0.1173095703125 0.018930288461538436 0.8946533203125 0.19200721153846156 0.8983154296875 0.17337740384615385 0.8946533203125 0.17337740384615385 0.9063720703125 0.2118389423076923 0.9139404296875 0.2118389423076923 0.9063720703125 0.23046875 0.1153564453125 0.018930288461538436 0.1153564453125 0.009915865384615419 0.1170654296875 0.009915865384615419 0.1212158203125 0.009915865384615419 0.1229248046875 0.009915865384615419 0.1212158203125 0.018930288461538436 0.1563720703125 0.4612379807692307 0.1563720703125 0.42337740384615385 0.1639404296875 0.42337740384615385 0.1717529296875 0.42337740384615385 0.1641845703125 0.4612379807692307 0.1641845703125 0.42337740384615385 0.9141845703125 0.23046875 0.9141845703125 0.2118389423076923 0.9217529296875 0.2118389423076923 0.9256591796875 0.2118389423076923 0.9219970703125 0.23046875 0.9219970703125 0.2118389423076923 0.0938720703125 0.00030048076923072653 0.0938720703125 0.009314903846153855 0.0975341796875 0.00030048076923072653 0.0977783203125 0.00030048076923072653 0.1014404296875 0.00030048076923072653 0.0977783203125 0.009314903846153855 0.9298095703125 0.23046875 0.9298095703125 0.2118389423076923 0.9373779296875 0.2118389423076923 0.9139404296875 0.19260817307692313 0.9063720703125 0.19260817307692313 0.9063720703125 0.21123798076923073 0.9141845703125 0.21123798076923073 0.9217529296875 0.19260817307692313 0.9141845703125 0.19260817307692313 0.9295654296875 0.19260817307692313 0.9219970703125 0.19260817307692313 0.9219970703125 0.21123798076923073 0.3944091796875 0.005108173076923128 0.3927001953125 0.009314903846153855 0.3927001953125 0.005108173076923128 0.3946533203125 0.005108173076923128 0.3963623046875 0.005108173076923128 0.3946533203125 0.009314903846153855 0.1231689453125 0.009915865384615419 0.1248779296875 0.009915865384615419 0.1231689453125 0.018930288461538436 0.9298095703125 0.21123798076923073 0.9298095703125 0.19260817307692313 0.9373779296875 0.19260817307692313 0.1719970703125 0.42337740384615385 0.1795654296875 0.42337740384615385 0.1719970703125 0.4612379807692307 0.1016845703125 0.00030048076923072653 0.1053466796875 0.00030048076923072653 0.1016845703125 0.009314903846153855 0.9063720703125 0.19200721153846156 0.9063720703125 0.17337740384615385 0.9139404296875 0.17337740384615385 0.9141845703125 0.17337740384615385 0.9217529296875 0.17337740384615385 0.9141845703125 0.19200721153846156 0.9219970703125 0.19200721153846156 0.9219970703125 0.17337740384615385 0.9295654296875 0.17337740384615385 0.9298095703125 0.17337740384615385 0.9373779296875 0.17337740384615385 0.9298095703125 0.19200721153846156 0.9063720703125 0.1727764423076923 0.9063720703125 0.15414663461538458 0.9139404296875 0.15414663461538458 0.9295654296875 0.2118389423076923 0.9259033203125 0.2118389423076923 0.9259033203125 0.23046875 0.1717529296875 0.3849158653846154 0.1563720703125 0.4227764423076923 0.1563720703125 0.3849158653846154 0.1873779296875 0.3849158653846154 0.1719970703125 0.3849158653846154 0.1719970703125 0.4227764423076923 0.2030029296875 0.42337740384615385 0.1876220703125 0.4612379807692307 0.1876220703125 0.42337740384615385 0.1873779296875 0.42337740384615385 0.1798095703125 0.42337740384615385 0.1798095703125 0.4612379807692307 0.9217529296875 0.15414663461538458 0.9141845703125 0.1727764423076923 0.9141845703125 0.15414663461538458 0.1072998046875 0.00030048076923072653 0.1055908203125 0.00030048076923072653 0.1055908203125 0.009314903846153855 0.9219970703125 0.1727764423076923 0.9256591796875 0.15414663461538458 0.9219970703125 0.15414663461538458 0.9298095703125 0.15414663461538458 0.9373779296875 0.15414663461538458 0.9298095703125 0.1727764423076923 0.1094970703125 0.009314903846153855 0.1131591796875 0.00030048076923072653 0.1094970703125 0.00030048076923072653 0.2186279296875 0.26953125 0.2110595703125 0.2881610576923077 0.9295654296875 0.15414663461538458 0.9259033203125 0.1727764423076923 0.9259033203125 0.15414663461538458 0.1134033203125 0.00030048076923072653 0.1170654296875 0.00030048076923072653 0.1134033203125 0.009314903846153855 0.1173095703125 0.009314903846153855 0.1173095703125 0.00030048076923072653 0.1209716796875 0.00030048076923072653 0.1248779296875 0.00030048076923072653 0.1212158203125 0.00030048076923072653 0.1212158203125 0.009314903846153855 0.3966064453125 0.009314903846153855 0.3983154296875 0.005108173076923128 0.3966064453125 0.005108173076923128 0.4002685546875 0.005108173076923128 0.3985595703125 0.005108173076923128 0.3985595703125 0.009314903846153855 0.8321533203125 0.24969951923076927 0.8328857421875 0.23106971153846156 0.8321533203125 0.23106971153846156 0.2032470703125 0.4612379807692307 0.2110595703125 0.42337740384615385 0.2110595703125 0.4612379807692307 0.2186279296875 0.42337740384615385 0.9376220703125 0.2118389423076923 0.9412841796875 0.2118389423076923 0.9376220703125 0.23046875 0.9454345703125 0.23046875 0.9454345703125 0.2118389423076923 0.9530029296875 0.2118389423076923 0.9608154296875 0.2118389423076923 0.9532470703125 0.2118389423076923 0.9532470703125 0.23046875 0.9610595703125 0.2118389423076923 0.9610595703125 0.23046875 0.9686279296875 0.2118389423076923 0.9415283203125 0.2118389423076923 0.9451904296875 0.2118389423076923 0.9415283203125 0.23046875 0.1287841796875 0.06760817307692313 0.1251220703125 0.06760817307692313 0.1251220703125 0.07662259615384615 0.9376220703125 0.21123798076923073 0.9451904296875 0.19260817307692313 0.9376220703125 0.19260817307692313 0.9530029296875 0.19260817307692313 0.9454345703125 0.21123798076923073 0.9454345703125 0.19260817307692313 0.9532470703125 0.19260817307692313 0.9608154296875 0.19260817307692313 0.9532470703125 0.21123798076923073 0.1092529296875 0.00030048076923072653 0.1075439453125 0.00030048076923072653 0.1075439453125 0.009314903846153855 0.4005126953125 0.005108173076923128 0.4022216796875 0.005108173076923128 0.4005126953125 0.009314903846153855 0.4041748046875 0.005108173076923128 0.4024658203125 0.009314903846153855 0.4024658203125 0.005108173076923128 0.4044189453125 0.005108173076923128 0.4061279296875 0.005108173076923128 0.4044189453125 0.009314903846153855 0.1307373046875 0.06760817307692313 0.1290283203125 0.06760817307692313 0.1290283203125 0.07662259615384615 0.1309814453125 0.06760817307692313 0.1326904296875 0.06760817307692313 0.1309814453125 0.07662259615384615 0.1346435546875 0.06760817307692313 0.1329345703125 0.06760817307692313 0.1329345703125 0.07662259615384615 0.9610595703125 0.21123798076923073 0.9686279296875 0.19260817307692313 0.9610595703125 0.19260817307692313 0.9376220703125 0.17337740384615385 0.9376220703125 0.19200721153846156 0.9451904296875 0.17337740384615385 0.1368408203125 0.07662259615384615 0.1405029296875 0.06760817307692313 0.1368408203125 0.06760817307692313 0.1444091796875 0.06760817307692313 0.1407470703125 0.07662259615384615 0.1407470703125 0.06760817307692313 0.9454345703125 0.19200721153846156 0.9490966796875 0.17337740384615385 0.9454345703125 0.17337740384615385 0.9493408203125 0.17337740384615385 0.9493408203125 0.19200721153846156 0.9530029296875 0.17337740384615385 0.1348876953125 0.07662259615384615 0.1365966796875 0.06760817307692313 0.1348876953125 0.06760817307692313 0.1446533203125 0.06760817307692313 0.1446533203125 0.07662259615384615 0.1463623046875 0.06760817307692313 0.9532470703125 0.19200721153846156 0.9532470703125 0.17337740384615385 0.9608154296875 0.17337740384615385 0.9686279296875 0.17337740384615385 0.9610595703125 0.19200721153846156 0.9610595703125 0.17337740384615385 0.1485595703125 0.07662259615384615 0.1485595703125 0.06760817307692313 0.1522216796875 0.06760817307692313 0.1561279296875 0.06760817307692313 0.1524658203125 0.06760817307692313 0.1524658203125 0.07662259615384615 0.1876220703125 0.3849158653846154 0.1876220703125 0.4227764423076923 0.1951904296875 0.3849158653846154 0.2030029296875 0.3849158653846154 0.1954345703125 0.3849158653846154 0.1954345703125 0.4227764423076923 0.9376220703125 0.15414663461538458 0.9376220703125 0.1727764423076923 0.9451904296875 0.15414663461538458 0.9530029296875 0.15414663461538458 0.9454345703125 0.1727764423076923 0.9454345703125 0.15414663461538458 0.9569091796875 0.15414663461538458 0.9532470703125 0.15414663461538458 0.9532470703125 0.1727764423076923 0.9571533203125 0.1727764423076923 0.9608154296875 0.15414663461538458 0.9571533203125 0.15414663461538458 0.9610595703125 0.15414663461538458 0.9686279296875 0.15414663461538458 0.9610595703125 0.1727764423076923 0.1466064453125 0.07662259615384615 0.1466064453125 0.06760817307692313 0.1483154296875 0.06760817307692313 0.9688720703125 0.2118389423076923 0.9688720703125 0.23046875 0.9725341796875 0.2118389423076923 0.9766845703125 0.23046875 0.9842529296875 0.2118389423076923 0.9766845703125 0.2118389423076923 0.9844970703125 0.2118389423076923 0.9844970703125 0.23046875 0.9920654296875 0.2118389423076923 0.9923095703125 0.2118389423076923 0.9998779296875 0.2118389423076923 0.9923095703125 0.23046875 0.9688720703125 0.19260817307692313 0.9764404296875 0.19260817307692313 0.9688720703125 0.21123798076923073 0.1251220703125 0.057992788461538436 0.1287841796875 0.057992788461538436 0.1251220703125 0.06700721153846156 0.1290283203125 0.057992788461538436 0.1290283203125 0.06700721153846156 0.1326904296875 0.057992788461538436 0.9727783203125 0.2118389423076923 0.9764404296875 0.2118389423076923 0.9727783203125 0.23046875 0.9766845703125 0.19260817307692313 0.9766845703125 0.21123798076923073 0.9842529296875 0.19260817307692313 0.9844970703125 0.19260817307692313 0.9920654296875 0.19260817307692313 0.9844970703125 0.21123798076923073 0.9998779296875 0.19260817307692313 0.9923095703125 0.19260817307692313 0.9923095703125 0.21123798076923073 0.1329345703125 0.06700721153846156 0.1365966796875 0.057992788461538436 0.1329345703125 0.057992788461538436 0.9688720703125 0.19200721153846156 0.9725341796875 0.17337740384615385 0.9688720703125 0.17337740384615385 0.9766845703125 0.17337740384615385 0.9842529296875 0.17337740384615385 0.9766845703125 0.19200721153846156 0.1368408203125 0.06700721153846156 0.1368408203125 0.057992788461538436 0.1405029296875 0.057992788461538436 0.1424560546875 0.057992788461538436 0.1407470703125 0.057992788461538436 0.1407470703125 0.06700721153846156 0.3751220703125 0.004507211538461564 0.3768310546875 0.00030048076923072653 0.3751220703125 0.00030048076923072653 0.2032470703125 0.3849158653846154 0.2032470703125 0.4227764423076923 0.2108154296875 0.3849158653846154 0.2186279296875 0.3849158653846154 0.2110595703125 0.3849158653846154 0.2110595703125 0.4227764423076923 0.2188720703125 0.42337740384615385 0.2188720703125 0.4612379807692307 0.2264404296875 0.42337740384615385 0.2498779296875 0.42337740384615385 0.2344970703125 0.42337740384615385 0.2344970703125 0.4612379807692307 0.9844970703125 0.17337740384615385 0.9844970703125 0.19200721153846156 0.9920654296875 0.17337740384615385 0.9998779296875 0.17337740384615385 0.9923095703125 0.19200721153846156 0.9923095703125 0.17337740384615385 0.9688720703125 0.15414663461538458 0.9764404296875 0.15414663461538458 0.9688720703125 0.1727764423076923 0.9764404296875 0.17337740384615385 0.9727783203125 0.17337740384615385 0.9727783203125 0.19200721153846156 0.1446533203125 0.057992788461538436 0.1483154296875 0.057992788461538436 0.1446533203125 0.06700721153846156 0.1485595703125 0.057992788461538436 0.1522216796875 0.057992788461538436 0.1485595703125 0.06700721153846156 0.9766845703125 0.1727764423076923 0.9766845703125 0.15414663461538458 0.9842529296875 0.15414663461538458 0.1427001953125 0.06700721153846156 0.1444091796875 0.057992788461538436 0.1427001953125 0.057992788461538436 0.1524658203125 0.057992788461538436 0.1524658203125 0.06700721153846156 0.1541748046875 0.057992788461538436 0.1251220703125 0.05739182692307687 0.1287841796875 0.048377403846153855 0.1251220703125 0.048377403846153855 0.1290283203125 0.048377403846153855 0.1290283203125 0.05739182692307687 0.1326904296875 0.048377403846153855 0.1329345703125 0.05739182692307687 0.1329345703125 0.048377403846153855 0.1365966796875 0.048377403846153855 0.7459716796875 0.26953125 0.7423095703125 0.2881610576923077 0.9881591796875 0.15414663461538458 0.9844970703125 0.1727764423076923 0.9844970703125 0.15414663461538458 0.1368408203125 0.05739182692307687 0.1405029296875 0.048377403846153855 0.1368408203125 0.048377403846153855 0.1407470703125 0.048377403846153855 0.1407470703125 0.05739182692307687 0.1444091796875 0.048377403846153855 0.9884033203125 0.1727764423076923 0.9920654296875 0.15414663461538458 0.9884033203125 0.15414663461538458 0.9923095703125 0.15414663461538458 0.9923095703125 0.1727764423076923 0.9959716796875 0.15414663461538458 0.1446533203125 0.048377403846153855 0.1483154296875 0.048377403846153855 0.1446533203125 0.05739182692307687 0.3770751953125 0.004507211538461564 0.3770751953125 0.00030048076923072653 0.3787841796875 0.00030048076923072653 0.1485595703125 0.05739182692307687 0.1485595703125 0.048377403846153855 0.1522216796875 0.048377403846153855 0.1524658203125 0.05739182692307687 0.1561279296875 0.048377403846153855 0.1524658203125 0.048377403846153855 0.0001220703125 0.15354567307692313 0.0076904296875 0.13491586538461542 0.0001220703125 0.13491586538461542 0.9962158203125 0.15414663461538458 0.9998779296875 0.15414663461538458 0.9962158203125 0.1727764423076923 0.0115966796875 0.13491586538461542 0.0079345703125 0.13491586538461542 0.0079345703125 0.15354567307692313 0.0157470703125 0.13491586538461542 0.0233154296875 0.13491586538461542 0.0157470703125 0.15354567307692313 0.0235595703125 0.15354567307692313 0.0235595703125 0.13491586538461542 0.0311279296875 0.13491586538461542 0.0076904296875 0.11568509615384615 0.0001220703125 0.11568509615384615 0.0001220703125 0.13431490384615385 0.1287841796875 0.038762019230769273 0.1251220703125 0.038762019230769273 0.1251220703125 0.04777644230769229 0.0118408203125 0.15354567307692313 0.0155029296875 0.13491586538461542 0.0118408203125 0.13491586538461542 0.0079345703125 0.11568509615384615 0.0155029296875 0.11568509615384615 0.0079345703125 0.13431490384615385 0.0157470703125 0.11568509615384615 0.0233154296875 0.11568509615384615 0.0157470703125 0.13431490384615385 0.0235595703125 0.13431490384615385 0.0235595703125 0.11568509615384615 0.0311279296875 0.11568509615384615 0.0001220703125 0.09645432692307687 0.0076904296875 0.09645432692307687 0.0001220703125 0.11508413461538458 0.0115966796875 0.09645432692307687 0.0079345703125 0.09645432692307687 0.0079345703125 0.11508413461538458 0.0118408203125 0.11508413461538458 0.0155029296875 0.09645432692307687 0.0118408203125 0.09645432692307687 0.0157470703125 0.09645432692307687 0.0233154296875 0.09645432692307687 0.0157470703125 0.11508413461538458 0.7774658203125 0.09585336538461542 0.7774658203125 0.08683894230769229 0.7811279296875 0.08683894230769229 0.1326904296875 0.038762019230769273 0.1290283203125 0.04777644230769229 0.1290283203125 0.038762019230769273 0.1544189453125 0.06700721153846156 0.1544189453125 0.057992788461538436 0.1561279296875 0.057992788461538436 0.0311279296875 0.09645432692307687 0.0235595703125 0.09645432692307687 0.0235595703125 0.11508413461538458 0.0001220703125 0.09585336538461542 0.0076904296875 0.07722355769230771 0.0001220703125 0.07722355769230771 0.0079345703125 0.07722355769230771 0.0155029296875 0.07722355769230771 0.0079345703125 0.09585336538461542 0.0157470703125 0.07722355769230771 0.0233154296875 0.07722355769230771 0.0157470703125 0.09585336538461542 0.0235595703125 0.09585336538461542 0.0235595703125 0.07722355769230771 0.0272216796875 0.07722355769230771 0.1329345703125 0.038762019230769273 0.1365966796875 0.038762019230769273 0.1329345703125 0.04777644230769229 0.1368408203125 0.038762019230769273 0.1368408203125 0.04777644230769229 0.1385498046875 0.038762019230769273 0.0274658203125 0.09585336538461542 0.0274658203125 0.07722355769230771 0.0311279296875 0.07722355769230771 0.1444091796875 0.038762019230769273 0.1407470703125 0.038762019230769273 0.1407470703125 0.04777644230769229 0.3790283203125 0.004507211538461564 0.3807373046875 0.00030048076923072653 0.3790283203125 0.00030048076923072653 0.2266845703125 0.4612379807692307 0.2342529296875 0.42337740384615385 0.2266845703125 0.42337740384615385 0.2188720703125 0.3849158653846154 0.2188720703125 0.4227764423076923 0.2264404296875 0.3849158653846154 0.0350341796875 0.13491586538461542 0.0313720703125 0.15354567307692313 0.0313720703125 0.13491586538461542 0.1446533203125 0.04777644230769229 0.1446533203125 0.038762019230769273 0.1483154296875 0.038762019230769273 0.8634033203125 0.08683894230769229 0.8634033203125 0.09585336538461542 0.8670654296875 0.08683894230769229 0.1485595703125 0.038762019230769273 0.1485595703125 0.04777644230769229 0.1522216796875 0.038762019230769273 0.1561279296875 0.038762019230769273 0.1524658203125 0.04777644230769229 0.1524658203125 0.038762019230769273 0.0467529296875 0.13491586538461542 0.0391845703125 0.15354567307692313 0.0391845703125 0.13491586538461542 0.0469970703125 0.13491586538461542 0.0545654296875 0.13491586538461542 0.0469970703125 0.15354567307692313 0.0623779296875 0.13491586538461542 0.0548095703125 0.15354567307692313 0.0548095703125 0.13491586538461542 0.1251220703125 0.02914663461538458 0.1287841796875 0.02914663461538458 0.1251220703125 0.03816105769230771 0.3809814453125 0.004507211538461564 0.3826904296875 0.00030048076923072653 0.3809814453125 0.00030048076923072653 0.0389404296875 0.13491586538461542 0.0352783203125 0.15354567307692313 0.0352783203125 0.13491586538461542 0.1290283203125 0.02914663461538458 0.1326904296875 0.02914663461538458 0.1290283203125 0.03816105769230771 0.1365966796875 0.02914663461538458 0.1329345703125 0.03816105769230771 0.1329345703125 0.02914663461538458 0.0350341796875 0.11568509615384615 0.0313720703125 0.13431490384615385 0.0313720703125 0.11568509615384615 0.0352783203125 0.11568509615384615 0.0389404296875 0.11568509615384615 0.0352783203125 0.13431490384615385 0.0467529296875 0.11568509615384615 0.0391845703125 0.11568509615384615 0.0391845703125 0.13431490384615385 0.1405029296875 0.02914663461538458 0.1368408203125 0.02914663461538458 0.1368408203125 0.03816105769230771 0.0469970703125 0.13431490384615385 0.0545654296875 0.11568509615384615 0.0469970703125 0.11568509615384615 0.0623779296875 0.11568509615384615 0.0548095703125 0.11568509615384615 0.0548095703125 0.13431490384615385 0.0313720703125 0.09645432692307687 0.0313720703125 0.11508413461538458 0.0389404296875 0.09645432692307687 0.2266845703125 0.3849158653846154 0.2342529296875 0.3849158653846154 0.2266845703125 0.4227764423076923 0.2344970703125 0.3849158653846154 0.2344970703125 0.4227764423076923 0.2498779296875 0.3849158653846154 0.0391845703125 0.09645432692307687 0.0467529296875 0.09645432692307687 0.0391845703125 0.11508413461538458 0.2501220703125 0.4612379807692307 0.2501220703125 0.42337740384615385 0.2576904296875 0.42337740384615385 0.2579345703125 0.42337740384615385 0.2655029296875 0.42337740384615385 0.2579345703125 0.4612379807692307 0.2657470703125 0.4612379807692307 0.2733154296875 0.42337740384615385 0.2657470703125 0.42337740384615385 0.2735595703125 0.42337740384615385 0.2735595703125 0.4612379807692307 0.2811279296875 0.42337740384615385 0.0469970703125 0.09645432692307687 0.0506591796875 0.09645432692307687 0.0469970703125 0.11508413461538458 0.1407470703125 0.02914663461538458 0.1407470703125 0.03816105769230771 0.1444091796875 0.02914663461538458 0.1483154296875 0.02914663461538458 0.1446533203125 0.02914663461538458 0.1446533203125 0.03816105769230771 0.1485595703125 0.02914663461538458 0.1485595703125 0.03816105769230771 0.1522216796875 0.02914663461538458 0.0548095703125 0.09645432692307687 0.0623779296875 0.09645432692307687 0.0548095703125 0.11508413461538458 0.7266845703125 0.2881610576923077 0.7266845703125 0.26953125 0.7342529296875 0.26953125 0.0313720703125 0.07722355769230771 0.0389404296875 0.07722355769230771 0.0313720703125 0.09585336538461542 0.0509033203125 0.09645432692307687 0.0545654296875 0.09645432692307687 0.0509033203125 0.11508413461538458 0.2501220703125 0.4227764423076923 0.2501220703125 0.3849158653846154 0.2576904296875 0.3849158653846154 0.0391845703125 0.07722355769230771 0.0467529296875 0.07722355769230771 0.0391845703125 0.09585336538461542 0.3885498046875 0.005108173076923128 0.3878173828125 0.005108173076923128 0.3878173828125 0.009314903846153855 0.0469970703125 0.09585336538461542 0.0506591796875 0.07722355769230771 0.0469970703125 0.07722355769230771 0.0548095703125 0.07722355769230771 0.0623779296875 0.07722355769230771 0.0548095703125 0.09585336538461542 0.1405029296875 0.038762019230769273 0.1387939453125 0.04777644230769229 0.1387939453125 0.038762019230769273 0.0626220703125 0.15354567307692313 0.0701904296875 0.13491586538461542 0.0626220703125 0.13491586538461542 0.0704345703125 0.13491586538461542 0.0780029296875 0.13491586538461542 0.0704345703125 0.15354567307692313 0.0509033203125 0.09585336538461542 0.0509033203125 0.07722355769230771 0.0545654296875 0.07722355769230771 0.0782470703125 0.13491586538461542 0.0858154296875 0.13491586538461542 0.0782470703125 0.15354567307692313 0.2657470703125 0.4227764423076923 0.2657470703125 0.3849158653846154 0.2811279296875 0.3849158653846154 0.1541748046875 0.02914663461538458 0.1524658203125 0.03816105769230771 0.1524658203125 0.02914663461538458 0.3829345703125 0.00030048076923072653 0.3846435546875 0.00030048076923072653 0.3829345703125 0.004507211538461564 0.1251220703125 0.028545673076923128 0.1251220703125 0.01953125 0.1287841796875 0.01953125 0.1290283203125 0.01953125 0.1326904296875 0.01953125 0.1290283203125 0.028545673076923128 0.1544189453125 0.02914663461538458 0.1544189453125 0.03816105769230771 0.1561279296875 0.02914663461538458 0.0860595703125 0.15354567307692313 0.0936279296875 0.13491586538461542 0.0860595703125 0.13491586538461542 0.0626220703125 0.11568509615384615 0.0626220703125 0.13431490384615385 0.0701904296875 0.11568509615384615 0.0704345703125 0.13431490384615385 0.0704345703125 0.11568509615384615 0.0780029296875 0.11568509615384615 0.0858154296875 0.11568509615384615 0.0782470703125 0.13431490384615385 0.0782470703125 0.11568509615384615 0.0860595703125 0.13431490384615385 0.0860595703125 0.11568509615384615 0.0897216796875 0.11568509615384615 0.0626220703125 0.11508413461538458 0.0701904296875 0.09645432692307687 0.0626220703125 0.09645432692307687 0.3848876953125 0.004507211538461564 0.3856201171875 0.00030048076923072653 0.3848876953125 0.00030048076923072653 0.0780029296875 0.09645432692307687 0.0704345703125 0.11508413461538458 0.0704345703125 0.09645432692307687 0.0936279296875 0.11568509615384615 0.0899658203125 0.13431490384615385 0.0899658203125 0.11568509615384615 0.1329345703125 0.028545673076923128 0.1346435546875 0.01953125 0.1329345703125 0.01953125 0.1348876953125 0.01953125 0.1348876953125 0.028545673076923128 0.1365966796875 0.01953125 0.0782470703125 0.11508413461538458 0.0858154296875 0.09645432692307687 0.0782470703125 0.09645432692307687 0.1368408203125 0.028545673076923128 0.1368408203125 0.01953125 0.1405029296875 0.01953125 0.0860595703125 0.09645432692307687 0.0860595703125 0.11508413461538458 0.0897216796875 0.09645432692307687 0.0899658203125 0.11508413461538458 0.0899658203125 0.09645432692307687 0.0936279296875 0.09645432692307687 0.0662841796875 0.07722355769230771 0.0626220703125 0.09585336538461542 0.0626220703125 0.07722355769230771 0.1407470703125 0.028545673076923128 0.1444091796875 0.01953125 0.1407470703125 0.01953125 0.1446533203125 0.01953125 0.1446533203125 0.028545673076923128 0.1483154296875 0.01953125 0.0665283203125 0.07722355769230771 0.0701904296875 0.07722355769230771 0.0665283203125 0.09585336538461542 0.0704345703125 0.09585336538461542 0.0704345703125 0.07722355769230771 0.0740966796875 0.07722355769230771 0.0743408203125 0.09585336538461542 0.0743408203125 0.07722355769230771 0.0780029296875 0.07722355769230771 0.1485595703125 0.01953125 0.1522216796875 0.01953125 0.1485595703125 0.028545673076923128 0.0782470703125 0.09585336538461542 0.0782470703125 0.07722355769230771 0.0858154296875 0.07722355769230771 0.0860595703125 0.09585336538461542 0.0860595703125 0.07722355769230771 0.0936279296875 0.07722355769230771 0.0938720703125 0.13491586538461542 0.0938720703125 0.15354567307692313 0.1014404296875 0.13491586538461542 0.1053466796875 0.13491586538461542 0.1016845703125 0.13491586538461542 0.1016845703125 0.15354567307692313 0.3868408203125 0.00030048076923072653 0.3885498046875 0.00030048076923072653 0.3868408203125 0.004507211538461564 0.1092529296875 0.13491586538461542 0.1055908203125 0.13491586538461542 0.1055908203125 0.15354567307692313 0.1524658203125 0.028545673076923128 0.1541748046875 0.01953125 0.1524658203125 0.01953125 0.1094970703125 0.15354567307692313 0.1094970703125 0.13491586538461542 0.1170654296875 0.13491586538461542 0.1173095703125 0.13491586538461542 0.1248779296875 0.13491586538461542 0.1173095703125 0.15354567307692313 0.1544189453125 0.028545673076923128 0.1544189453125 0.01953125 0.1561279296875 0.01953125 0.5157470703125 0.6150841346153846 0.5311279296875 0.5772235576923077 0.2655029296875 0.3849158653846154 0.2579345703125 0.4227764423076923 0.2579345703125 0.3849158653846154 0.8204345703125 0.08623798076923073 0.8240966796875 0.07722355769230771 0.8204345703125 0.07722355769230771 0.1251220703125 0.018930288461538436 0.1268310546875 0.009915865384615419 0.1251220703125 0.009915865384615419 0.1270751953125 0.009915865384615419 0.1270751953125 0.018930288461538436 0.1287841796875 0.009915865384615419 0.3905029296875 0.00030048076923072653 0.3887939453125 0.00030048076923072653 0.3887939453125 0.004507211538461564 0.2813720703125 0.42337740384615385 0.2889404296875 0.42337740384615385 0.2813720703125 0.4612379807692307 0.0938720703125 0.13431490384615385 0.1014404296875 0.11568509615384615 0.0938720703125 0.11568509615384615 0.1016845703125 0.13431490384615385 0.1053466796875 0.11568509615384615 0.1016845703125 0.11568509615384615 0.1092529296875 0.11568509615384615 0.1055908203125 0.11568509615384615 0.1055908203125 0.13431490384615385 0.1170654296875 0.11568509615384615 0.1094970703125 0.11568509615384615 0.1094970703125 0.13431490384615385 0.1209716796875 0.11568509615384615 0.1173095703125 0.11568509615384615 0.1173095703125 0.13431490384615385 0.0938720703125 0.09645432692307687 0.1014404296875 0.09645432692307687 0.0938720703125 0.11508413461538458 0.1092529296875 0.09645432692307687 0.1016845703125 0.09645432692307687 0.1016845703125 0.11508413461538458 0.1094970703125 0.09645432692307687 0.1170654296875 0.09645432692307687 0.1094970703125 0.11508413461538458 0.1248779296875 0.11568509615384615 0.1212158203125 0.11568509615384615 0.1212158203125 0.13431490384615385 0.1248779296875 0.09645432692307687 0.1173095703125 0.09645432692307687 0.1173095703125 0.11508413461538458 0.3907470703125 0.00030048076923072653 0.3907470703125 0.004507211538461564 0.3924560546875 0.00030048076923072653 0.1014404296875 0.07722355769230771 0.0938720703125 0.07722355769230771 0.0938720703125 0.09585336538461542 0.1016845703125 0.07722355769230771 0.1053466796875 0.07722355769230771 0.1016845703125 0.09585336538461542 0.1170654296875 0.07722355769230771 0.1094970703125 0.07722355769230771 0.1094970703125 0.09585336538461542 0.3927001953125 0.00030048076923072653 0.3927001953125 0.004507211538461564 0.3944091796875 0.00030048076923072653 0.2969970703125 0.42337740384615385 0.3123779296875 0.42337740384615385 0.2969970703125 0.4612379807692307 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 0 1 1 0 2 3 3 1 4 2 5 4 6 3 7 2 8 5 9 3 10 4 11 6 9 5 9 4 11 7 12 5 13 6 13 8 12 7 12 6 13 9 14 7 14 8 14 10 14 9 14 8 14 11 14 9 14 10 14 12 14 11 14 10 14 13 15 11 16 12 16 14 17 13 18 12 19 15 20 13 21 14 22 16 23 15 24 14 25 17 26 15 27 16 28 18 29 17 30 16 31 19 32 17 33 18 34 20 35 19 36 18 37 23 38 22 39 21 40 24 41 22 42 23 43 25 44 24 45 23 46 26 47 24 48 25 49 27 50 26 51 25 52 28 53 26 54 27 55 29 56 28 57 27 58 30 59 28 60 29 61 31 62 30 63 29 64 32 65 30 66 31 67 33 68 32 69 31 70 34 71 32 72 33 73 35 74 34 75 33 76 36 77 34 78 35 79 37 80 36 81 35 82 38 83 36 84 37 85 39 86 38 87 37 88 40 89 38 90 39 91 41 92 40 93 39 94 44 95 43 96 42 97 45 98 43 99 44 100 46 101 45 102 44 103 47 104 45 105 46 106 48 107 47 108 46 109 49 110 47 111 48 112 50 113 49 114 48 115 51 116 49 117 50 118 52 119 51 120 50 121 53 122 51 123 52 124 54 125 53 126 52 127 55 128 53 129 54 130 56 131 55 132 54 133 57 134 55 135 56 136 58 137 57 138 56 139 59 140 57 141 58 142 60 143 59 144 58 145 61 146 59 147 60 148 62 149 61 150 60 151 65 152 64 153 63 154 66 155 64 156 65 157 67 158 66 159 65 160 68 161 66 162 67 163 69 161 68 161 67 163 70 164 68 165 69 165 71 166 70 167 69 168 72 169 70 170 71 171 73 172 72 173 71 174 74 175 72 176 73 177 75 178 74 179 73 180 76 181 74 182 75 183 77 184 76 185 75 186 78 187 76 188 77 189 79 190 78 191 77 192 80 193 78 194 79 195 81 196 80 197 79 198 82 199 80 200 81 201 83 202 82 203 81 204 86 95 85 96 84 96 87 98 85 99 86 100 88 205 87 206 86 207 89 208 87 209 88 210 90 211 89 212 88 213 91 214 89 215 90 216 92 217 91 218 90 219 93 220 91 221 92 222 94 223 93 224 92 225 95 226 93 227 94 228 96 229 95 230 94 231 97 232 95 233 96 234 98 235 97 236 96 237 99 238 97 239 98 240 100 241 99 242 98 243 101 244 99 245 100 246 102 247 101 248 100 249 103 250 101 251 102 252 104 253 103 254 102 255 107 256 106 257 105 258 108 259 106 260 107 261 109 262 108 263 107 264 110 265 108 266 109 265 111 14 110 14 109 14 112 14 110 14 111 14 113 14 112 14 111 14 114 14 112 14 113 14 115 14 114 14 113 14 116 14 114 14 115 14 117 14 116 14 115 14 118 14 116 14 117 14 119 14 118 14 117 14 120 267 118 268 119 268 121 269 120 270 119 271 122 272 120 273 121 274 123 275 122 276 121 277 124 278 122 279 123 280 125 281 124 282 123 283 128 284 127 285 126 286 129 287 127 288 128 289 130 290 129 291 128 292 131 293 129 294 130 295 132 296 131 297 130 298 133 299 131 300 132 301 134 302 133 303 132 304 135 305 133 306 134 307 136 308 135 309 134 310 137 311 135 312 136 313 138 314 137 315 136 316 139 317 137 318 138 319 140 320 139 321 138 322 141 323 139 324 140 325 142 326 141 327 140 328 143 329 141 330 142 331 144 332 143 333 142 334 145 335 143 336 144 337 146 338 145 339 144 340 149 341 148 342 147 343 150 344 148 345 149 346 151 347 150 348 149 349 152 350 150 351 151 352 153 161 152 161 151 163 154 353 152 354 153 354 155 355 154 353 153 354 156 220 154 221 155 222 157 223 156 224 155 225 158 225 156 224 157 223 159 356 158 357 157 358 160 359 158 360 159 361 161 362 160 362 159 363 162 242 160 243 161 243 163 364 162 365 161 366 164 367 162 368 163 369 165 370 164 371 163 372 166 373 164 374 165 375 167 202 166 203 165 204 168 376 96 377 94 378 98 362 96 363 168 379 169 380 98 381 168 382 100 383 98 384 169 385 170 386 100 387 169 388 102 389 100 390 170 391 171 392 102 393 170 394 104 395 102 396 171 397 84 398 104 399 171 400 172 14 117 14 115 14 119 14 117 14 172 14 173 14 119 14 172 14 121 401 119 402 173 402 174 403 121 404 173 405 123 406 121 407 174 408 175 409 123 410 174 411 125 412 123 413 175 414 105 415 125 416 175 417 176 418 33 419 31 420 35 421 33 422 176 423 177 424 35 425 176 426 37 427 35 428 177 429 178 430 37 431 177 432 39 433 37 434 178 435 179 436 39 437 178 438 41 439 39 440 179 441 21 442 41 443 179 444 180 445 159 446 157 447 161 448 159 449 180 450 181 451 161 452 180 453 163 454 161 455 181 456 182 457 163 458 181 459 165 460 163 461 182 462 183 463 165 464 182 465 167 466 165 467 183 468 147 469 167 470 183 471 184 472 138 473 136 474 140 475 138 476 184 477 185 478 140 479 184 480 142 481 140 482 185 483 186 484 142 485 185 486 144 487 142 488 186 489 187 490 144 491 186 492 146 493 144 494 187 495 126 496 146 497 187 498 188 14 12 14 10 14 14 499 12 500 188 500 189 501 14 502 188 503 16 504 14 505 189 506 190 507 16 508 189 509 18 510 16 511 190 512 191 513 18 514 190 515 20 516 18 517 191 518 0 519 20 520 191 521 192 522 75 523 73 524 77 525 75 526 192 527 193 528 77 529 192 530 79 531 77 532 193 533 194 534 79 535 193 536 81 460 79 461 194 462 195 463 81 464 194 465 83 466 81 467 195 468 63 469 83 470 195 471 196 537 54 538 52 539 56 540 54 541 196 542 197 543 56 544 196 545 58 546 56 547 197 548 198 549 58 550 197 551 60 552 58 553 198 554 199 555 60 556 198 557 62 558 60 559 199 560 42 561 62 562 199 563 3 564 200 565 1 566 201 567 200 568 3 569 5 570 201 571 3 572 202 573 201 574 5 575 7 12 202 576 5 13 203 577 202 578 7 579 9 580 203 581 7 580 11 580 203 581 9 580 24 582 204 583 22 584 205 585 204 586 24 587 26 588 205 589 24 590 206 591 205 592 26 593 28 594 206 595 26 596 207 597 206 598 28 599 30 600 207 601 28 602 32 602 207 601 30 600 195 603 65 604 63 605 208 606 65 607 195 608 194 609 208 610 195 611 209 612 208 613 194 614 193 615 209 616 194 617 210 618 209 619 193 620 192 621 210 622 193 623 73 624 210 625 192 626 129 627 211 628 127 629 212 630 211 631 129 632 131 633 212 634 129 635 213 636 212 637 131 638 133 639 213 640 131 641 214 642 213 643 133 644 135 645 214 646 133 647 137 648 214 649 135 650 66 651 215 652 64 652 216 653 215 652 66 651 68 654 216 655 66 656 217 657 216 658 68 659 70 660 217 661 68 662 218 663 217 664 70 665 72 666 218 667 70 668 74 669 218 670 72 671 191 672 2 673 0 674 219 675 2 676 191 677 190 678 219 679 191 680 220 681 219 682 190 683 189 684 220 685 190 686 221 687 220 688 189 689 188 690 221 690 189 691 10 14 221 14 188 14 150 444 222 443 148 442 223 692 222 693 150 694 152 695 223 696 150 697 224 698 223 699 152 700 154 701 224 702 152 703 225 704 224 705 154 706 156 707 225 708 154 709 158 710 225 711 156 712 175 713 107 714 105 715 226 716 107 717 175 718 174 719 226 720 175 721 227 722 226 723 174 724 173 725 227 725 174 726 228 14 227 14 173 14 172 14 228 14 173 14 115 14 228 14 172 14 87 727 229 728 85 728 230 729 229 730 87 731 89 732 230 733 87 734 231 735 230 736 89 737 91 738 231 739 89 740 232 741 231 742 91 743 93 744 232 745 91 746 95 747 232 748 93 749 187 750 128 751 126 752 233 753 128 754 187 755 186 756 233 757 187 758 234 759 233 760 186 761 185 762 234 763 186 764 235 765 234 766 185 767 184 768 235 769 185 770 136 771 235 772 184 773 108 774 236 775 106 776 237 777 236 778 108 779 110 262 237 264 108 263 238 780 237 781 110 780 112 14 238 14 110 14 239 14 238 14 112 14 114 14 239 14 112 14 116 14 239 14 114 14 171 782 86 783 84 784 240 785 86 786 171 787 170 788 240 789 171 790 241 791 240 792 170 793 169 794 241 795 170 796 242 797 241 798 169 799 168 800 242 801 169 802 94 378 242 377 168 376 45 803 243 804 43 805 244 806 243 807 45 808 47 809 244 810 45 811 245 657 244 658 47 659 49 812 245 813 47 814 246 815 245 816 49 817 51 818 246 819 49 820 53 821 246 822 51 823 183 603 149 604 147 605 247 606 149 607 183 608 182 609 247 610 183 611 248 824 247 825 182 826 181 827 248 828 182 829 249 830 248 831 181 832 180 833 249 834 181 835 157 836 249 837 180 838 179 839 23 840 21 841 250 842 23 843 179 844 178 845 250 846 179 847 251 848 250 849 178 850 177 851 251 852 178 853 252 854 251 855 177 856 176 857 252 858 177 859 31 860 252 861 176 862 199 863 44 864 42 865 253 866 44 867 199 868 198 869 253 870 199 871 254 872 253 873 198 874 197 875 254 876 198 877 255 878 254 879 197 880 196 881 255 882 197 883 52 884 255 885 196 886 13 772 203 773 11 771 256 887 203 888 13 889 15 890 256 891 13 892 257 893 256 894 15 895 17 896 257 897 15 898 258 899 257 900 17 901 19 902 258 903 17 904 97 905 232 906 95 907 259 908 232 909 97 910 99 911 259 912 97 913 260 914 259 915 99 916 101 917 260 918 99 919 261 920 260 921 101 922 103 923 261 924 101 925 34 926 207 927 32 928 262 929 207 930 34 931 36 932 262 933 34 934 263 935 262 936 36 937 38 938 263 939 36 940 264 941 263 942 38 943 40 944 264 945 38 946 160 947 225 948 158 949 265 950 225 951 160 952 162 953 265 954 160 955 266 956 265 957 162 958 164 959 266 960 162 961 267 962 266 963 164 964 166 965 267 966 164 967 76 968 218 969 74 970 268 971 218 972 76 973 78 974 268 975 76 976 269 977 268 978 78 979 80 980 269 981 78 982 270 983 269 984 80 985 82 986 270 987 80 988 55 989 246 990 53 991 271 992 246 993 55 994 57 995 271 996 55 997 272 998 271 999 57 1000 59 1001 272 1002 57 1003 273 1004 272 1005 59 1006 61 1007 273 1008 59 1009 118 14 239 14 116 14 274 14 239 14 118 14 120 267 274 268 118 268 275 225 274 223 120 224 122 1010 275 1011 120 1012 276 1013 275 1014 122 1015 124 1016 276 1017 122 1018 139 1019 214 1020 137 1021 277 617 214 616 139 615 141 1022 277 1023 139 1024 278 1025 277 1026 141 1027 143 1028 278 1029 141 1030 279 1031 278 1032 143 1033 145 1034 279 1035 143 1036 226 1037 109 1038 107 1039 280 539 109 539 226 537 227 539 280 539 226 537 281 14 280 14 227 14 228 14 281 14 227 14 115 14 281 14 228 14 219 1040 4 1041 2 1042 282 1043 4 1044 219 1045 220 1044 282 1043 219 1045 283 1046 282 1047 220 1048 221 1049 283 1050 220 1051 10 268 283 267 221 268 250 1052 25 1053 23 1054 284 1055 25 1056 250 1057 251 1056 284 1055 250 1057 285 1058 284 1059 251 1060 252 1061 285 1062 251 1063 31 1064 285 1065 252 1066 240 1067 88 1068 86 1069 286 1070 88 1071 240 1072 241 1071 286 1070 240 1072 287 1073 286 1074 241 1075 242 1076 287 1077 241 1078 94 1079 287 1080 242 1081 247 1082 151 1083 149 1084 288 1085 151 1086 247 1087 248 1088 288 1089 247 1090 289 1091 288 1092 248 1093 249 1094 289 1095 248 1096 157 1097 289 1098 249 1099 208 1082 67 1083 65 1084 290 1100 67 1101 208 1102 209 1101 290 1100 208 1102 291 1103 290 1104 209 1105 210 1106 291 1107 209 1108 73 1109 291 1110 210 1111 253 1112 46 1113 44 1114 292 1115 46 1116 253 1117 254 1116 292 1115 253 1117 293 1118 292 1119 254 1120 255 1121 293 1122 254 1123 52 690 293 1124 255 691 233 1125 130 1126 128 1127 294 1128 130 1129 233 1130 234 1131 294 1132 233 1133 295 1134 294 1135 234 1136 235 1137 295 1138 234 1139 136 1140 295 1141 235 1142 262 1143 206 1144 207 1145 296 1146 206 1147 262 1148 263 1149 296 1150 262 1151 297 1152 296 1153 263 1154 264 1155 297 1156 263 1157 274 14 238 14 239 14 298 356 238 358 274 358 275 357 298 356 274 358 299 1158 298 1159 275 1160 276 1161 299 1162 275 1163 265 1164 224 1165 225 1166 300 1167 224 1168 265 1169 266 1170 300 1171 265 1172 301 1173 300 1174 266 1175 267 962 301 964 266 963 256 578 202 578 203 577 302 10 202 11 256 11 257 1176 302 1177 256 1178 303 1179 302 1180 257 1181 258 899 303 901 257 900 277 1182 213 1183 214 1184 304 1185 213 1186 277 1187 278 1025 304 1025 277 1026 305 1188 304 1189 278 1189 279 1190 305 1188 278 1189 259 1191 231 1192 232 1193 306 1194 231 1195 259 1196 260 1197 306 1198 259 1199 307 1200 306 1201 260 1202 261 1203 307 1204 260 1205 271 1206 245 1206 246 1207 308 1208 245 1209 271 1209 272 1210 308 1208 271 1209 309 1211 308 1212 272 1213 273 1004 309 1006 272 1005 268 1214 217 1215 218 1216 310 1217 217 1218 268 1219 269 1220 310 1221 268 1222 311 1223 310 1224 269 1225 270 983 311 985 269 984 292 1226 48 1227 46 1228 312 1229 48 1230 292 1231 293 1232 312 1233 292 1234 52 1235 312 1236 293 1237 284 1238 27 1239 25 1240 313 1241 27 1242 284 1243 285 1244 313 1245 284 1246 31 1247 313 1248 285 1249 286 1250 90 1251 88 1252 314 1253 90 1254 286 1255 287 1256 314 1257 286 1258 94 1259 314 1260 287 1261 282 1262 6 1263 4 1264 315 1265 6 1266 282 1267 283 1268 315 1269 282 1270 10 268 315 268 283 267 280 14 111 14 109 14 316 14 111 14 280 14 281 14 316 14 280 14 115 14 316 14 281 14 290 1271 69 1272 67 1273 317 1274 69 1275 290 1276 291 1277 317 1278 290 1279 73 1280 317 1281 291 1282 288 1283 153 1284 151 1285 318 1286 153 1287 288 1288 289 1289 318 1290 288 1291 157 1292 318 1293 289 1294 294 1295 132 1296 130 1297 319 1298 132 1299 294 1300 295 1301 319 1302 294 1303 136 1304 319 1305 295 1306 300 348 223 349 224 347 320 693 223 692 300 694 301 1307 320 1308 300 1309 296 1310 205 1311 206 1312 321 1313 205 1314 296 1315 297 1316 321 1317 296 1318 308 1319 244 1320 245 1321 322 1322 244 1323 308 1324 309 1325 322 1326 308 1327 306 1328 230 1329 231 1330 323 1331 230 1332 306 1333 307 1334 323 1335 306 1336 298 1337 237 1338 238 1339 324 1340 237 1341 298 1342 299 1343 324 1344 298 1345 302 1346 201 1347 202 1348 325 1349 201 1350 302 1351 303 1352 325 1353 302 1354 304 1185 212 1185 213 1186 326 339 212 340 304 340 305 1355 326 1356 304 1357 310 1358 216 1359 217 1360 327 807 216 806 310 808 311 1361 327 1362 310 1363 50 1364 312 1365 52 1366 48 1367 312 1368 50 1369 92 1370 314 1371 94 1372 90 1373 314 1374 92 1375 29 1376 313 1377 31 1378 27 1379 313 1380 29 1381 8 14 315 14 10 14 6 13 315 12 8 12 113 14 316 14 115 14 111 14 316 14 113 14 71 1382 317 1383 73 1384 69 1385 317 1386 71 1387 155 1388 318 1389 157 1390 153 1391 318 1392 155 1393 134 1394 319 1395 136 1396 132 1397 319 1398 134 1399 321 1400 204 1401 205 1402 322 97 243 97 244 95 323 154 229 153 230 152 320 693 222 693 223 692 324 1403 236 1403 237 1404 325 1405 200 1406 201 1407 327 97 215 96 216 95 326 1408 211 1409 212 1410 330 1411 329 1412 328 1413 331 1414 329 1415 330 1416 332 1417 331 1418 330 1419 333 1420 331 1421 332 1422 334 1423 333 1424 332 1425 335 1426 333 1427 334 1428 336 262 335 264 334 263 337 1429 335 1430 336 1431 338 1432 337 1433 336 1432 339 1434 337 1435 338 1436 340 1437 339 1438 338 1437 341 1437 339 1438 340 1437 342 581 341 580 340 580 343 772 341 771 342 773 344 1439 343 1440 342 1441 345 1442 343 1443 344 1444 346 1445 345 1446 344 1447 347 1448 345 1449 346 1450 348 1451 347 1452 346 1453 349 1454 347 1455 348 1456 350 1457 349 1458 348 1459 353 1460 352 1461 351 1462 354 1463 352 1464 353 1465 355 1466 354 1467 353 1468 356 1469 354 1470 355 1471 357 1472 356 1473 355 1474 358 1475 356 1476 357 1477 359 1478 358 1479 357 1478 360 1480 358 1481 359 1482 361 1483 360 1484 359 1485 362 1486 360 1487 361 1488 363 1489 362 1490 361 1491 364 1492 362 1493 363 1494 365 1495 364 1496 363 1497 366 1498 364 1499 365 1500 367 1501 366 1501 365 1502 368 14 366 14 367 14 369 14 368 14 367 14 370 14 368 14 369 14 371 14 370 14 369 14 357 356 370 358 371 358 359 356 357 356 371 358 374 1503 373 1504 372 1504 375 1505 373 1504 374 1503 376 1506 375 1507 374 1508 377 1509 375 1510 376 1511 378 1512 377 1513 376 1514 379 1515 377 1516 378 1517 380 1518 379 1519 378 1520 381 1521 379 1522 380 1523 382 1524 381 1525 380 1524 383 1526 381 1525 382 1524 384 1527 383 1528 382 1529 385 1530 383 1531 384 1532 386 1533 385 1534 384 1535 387 1536 385 1537 386 1538 388 1539 387 1540 386 1541 389 1542 387 1543 388 1544 390 1545 389 1546 388 1547 391 1548 389 1549 390 1548 392 14 391 14 390 14 378 781 391 780 392 780 380 1550 378 1551 392 1552 395 1553 394 1554 393 1555 396 1556 394 1557 395 1558 397 1559 396 1560 395 1561 398 1562 396 1563 397 1564 399 1565 398 1566 397 1567 400 1568 398 1569 399 1570 401 358 400 356 399 358 402 358 400 356 401 358 403 14 402 14 401 14 404 14 402 14 403 14 405 14 404 14 403 14 406 14 404 14 405 14 407 14 406 14 405 14 408 14 406 14 407 14 409 14 408 14 407 14 410 1571 408 1572 409 1572 411 1573 410 1571 409 1572 412 1574 410 1575 411 1576 413 1577 412 1578 411 1579 414 1580 412 1581 413 1582 415 1583 414 1584 413 1585 418 1586 417 1587 416 1588 419 1589 417 1590 418 1591 420 1592 419 1593 418 1594 421 1595 419 1596 420 1597 422 1598 421 1599 420 1600 423 1601 421 1602 422 1603 424 1432 423 1432 422 1433 425 14 423 14 424 14 426 14 425 14 424 14 427 14 425 14 426 14 428 14 427 14 426 14 429 14 427 14 428 14 430 14 429 14 428 14 431 14 429 14 430 14 432 1236 431 1235 430 1235 433 1604 431 1605 432 1606 434 1607 433 1608 432 1609 435 1610 433 1611 434 1612 436 1613 435 1614 434 1615 437 1616 435 1617 436 1618 438 1619 437 1620 436 1621 441 1622 440 1623 439 1624 442 1625 440 1626 441 1627 443 1628 442 1629 441 1630 444 1631 442 1632 443 1633 445 1634 444 1635 443 1636 446 1637 444 1638 445 1639 447 1640 446 1641 445 1642 448 1641 446 1641 447 1640 449 1641 448 1641 447 1640 450 1643 448 1644 449 1644 451 1645 450 1643 449 1644 452 1646 450 1647 451 1648 453 1649 452 1650 451 1651 454 1652 452 1653 453 1654 455 1552 454 1550 453 1551 456 16 454 15 455 16 457 14 456 14 455 14 458 1655 456 1656 457 1656 459 1657 458 1658 457 1659 445 1660 458 1661 459 1662 447 1663 445 1664 459 1665 462 1666 461 1667 460 1668 463 1669 461 1670 462 1671 464 1672 463 1673 462 1674 465 1675 463 1676 464 1677 466 1678 465 1679 464 1680 467 1681 465 1682 466 1683 468 1684 467 1685 466 1686 469 12 467 13 468 12 470 14 469 14 468 14 471 499 469 500 470 500 472 1687 471 1688 470 1689 473 1690 471 1691 472 1692 474 1693 473 1694 472 1695 475 1696 473 1697 474 1698 476 1699 475 1700 474 1701 477 1702 475 1703 476 1704 478 1705 477 1706 476 1707 479 1708 477 1709 478 1710 480 1711 479 1712 478 1713 483 1714 482 1715 481 1716 484 1717 482 1718 483 1719 485 1720 484 1721 483 1722 486 1723 484 1724 485 1725 487 1723 486 1723 485 1725 488 1726 486 1727 487 1727 489 1726 488 1726 487 1727 490 14 488 14 489 14 491 14 490 14 489 14 492 14 490 14 491 14 493 14 492 14 491 14 494 267 492 268 493 268 495 269 494 270 493 271 496 1728 494 1729 495 1730 497 1731 496 1732 495 1733 498 1734 496 1735 497 1736 499 1737 498 1738 497 1739 500 1740 498 1741 499 1742 501 1743 500 1744 499 1745 504 1746 503 1747 502 1748 505 1749 503 1750 504 1751 506 1752 505 1753 504 1754 507 1755 505 1756 506 1757 508 1758 507 1759 506 1760 509 1761 507 1762 508 1761 510 1726 509 1727 508 1727 511 1726 509 1727 510 1726 512 14 511 14 510 14 513 1438 511 1437 512 1437 514 1435 513 1434 512 1436 515 1763 513 1764 514 1765 516 1766 515 1767 514 1768 517 1769 515 1770 516 1771 518 1772 517 1773 516 1774 519 1775 517 1776 518 1777 520 1778 519 1779 518 1780 521 1781 519 1782 520 1783 522 1784 521 1785 520 1786 525 1787 524 1788 523 1789 526 1790 524 1791 525 1792 527 1793 526 1794 525 1795 528 1796 526 1797 527 1798 529 1799 528 1800 527 1801 530 1432 528 1433 529 1432 531 14 530 14 529 14 532 14 530 14 531 14 533 14 532 14 531 14 534 14 532 14 533 14 535 14 534 14 533 14 536 1438 534 1437 535 1437 537 1802 536 1803 535 1804 538 1805 536 1806 537 1807 539 1808 538 1809 537 1810 540 1811 538 1812 539 1813 541 1814 540 1815 539 1816 542 1817 540 1818 541 1819 543 1820 542 1821 541 1822 546 1823 545 1824 544 1825 547 1826 545 1827 546 1828 548 1829 547 1830 546 1831 549 1832 547 1833 548 1834 550 1835 549 1836 548 1837 551 1838 549 1839 550 1840 552 1841 551 1842 550 1843 553 1548 551 1549 552 1548 554 14 553 14 552 14 555 14 553 14 554 14 556 14 555 14 554 14 557 691 555 690 556 690 558 691 557 691 556 690 559 1844 557 1845 558 1845 560 1846 559 1844 558 1845 561 1847 559 1848 560 1849 562 1850 561 1851 560 1852 563 1853 561 1854 562 1855 564 1856 563 1857 562 1858 567 1859 566 1860 565 1861 568 1862 566 1863 567 1864 569 1865 568 1866 567 1867 570 1868 568 1869 569 1870 571 1871 570 1872 569 1873 572 1874 570 1875 571 1876 573 1877 572 1878 571 1879 574 1880 572 1881 573 1882 575 1880 574 1880 573 1882 576 15 574 16 575 16 577 1883 576 1884 575 1885 578 1886 576 1887 577 1888 579 1889 578 1890 577 1891 580 1892 578 1893 579 1894 581 1895 580 1896 579 1897 582 1898 580 1899 581 1900 583 1901 582 1902 581 1903 584 1904 582 1905 583 1906 585 1907 584 1908 583 1909 588 1910 587 1911 586 1912 589 1913 587 1914 588 1915 590 1916 589 1917 588 1918 591 1919 589 1920 590 1921 592 1922 591 1923 590 1924 593 1925 591 1926 592 1927 594 1726 593 1726 592 1727 595 14 593 14 594 14 596 14 595 14 594 14 597 14 595 14 596 14 598 14 597 14 596 14 599 1928 597 1929 598 1929 600 1928 599 1928 598 1929 601 1930 599 1931 600 1931 602 1932 601 1930 600 1931 603 1933 601 1934 602 1935 604 1936 603 1937 602 1938 605 1939 603 1940 604 1941 606 1939 605 1939 604 1941 609 1942 608 1943 607 1943 610 1942 608 1943 609 1942 611 1944 610 1945 609 1945 612 1944 610 1945 611 1944 613 1946 612 1947 611 1947 614 1948 612 1949 613 1950 615 1951 614 1952 613 1953 616 1954 614 1955 615 1956 617 1259 616 1260 615 1261 618 1957 616 1958 617 1959 619 1960 618 1961 617 1962 620 1963 618 1964 619 1965 621 1966 620 1967 619 1968 622 427 620 428 621 429 623 1969 622 1970 621 1971 624 1972 622 1973 623 1974 625 1975 624 1976 623 1977 626 1978 624 1979 625 1980 627 1981 626 1982 625 1983 630 1984 629 1985 628 1986 631 1987 629 1988 630 1989 632 1990 631 1991 630 1992 633 1993 631 1994 632 1995 634 1996 633 1997 632 1998 635 1999 633 2000 634 2001 636 1726 635 1726 634 1727 637 14 635 14 636 14 638 14 637 14 636 14 639 581 637 580 638 580 640 2002 639 2003 638 2004 641 2005 639 2006 640 2007 642 2008 641 2009 640 2010 643 2011 641 2012 642 2013 644 2014 643 2015 642 2016 645 2017 643 2018 644 2019 646 2020 645 2021 644 2022 647 2023 645 2024 646 2025 648 2026 647 2027 646 2028 651 2029 650 2030 649 2031 652 2032 650 2033 651 2034 653 2035 652 2036 651 2037 654 2038 652 2039 653 2040 655 2041 654 2042 653 2043 656 2044 654 2045 655 2046 657 2047 656 2048 655 2049 658 2050 656 2051 657 2050 659 14 658 14 657 14 660 1928 658 1929 659 1929 661 1929 660 1928 659 1929 662 2052 660 2053 661 2054 663 2055 662 2056 661 2057 664 2058 662 2059 663 2060 665 2061 664 2062 663 2063 666 2064 664 2065 665 2066 667 2067 666 2068 665 2069 668 2070 666 2071 667 2072 669 2073 668 2074 667 2075 672 2076 671 2077 670 2078 673 2079 671 2080 672 2081 674 2082 673 2083 672 2084 675 2085 673 2086 674 2087 676 2088 675 2089 674 2090 677 2091 675 2092 676 2093 678 2094 677 2095 676 2096 679 2097 677 2098 678 2099 680 2100 679 2101 678 2102 681 2103 679 2104 680 2105 682 2106 681 2107 680 2108 683 2109 681 2110 682 2111 684 2112 683 2113 682 2114 685 2115 683 2116 684 2117 670 2115 685 2115 684 2117 671 2118 685 2119 670 2119 688 2120 687 2120 686 2120 689 2121 687 2122 688 2122 690 2123 689 2121 688 2122 691 2124 689 2125 690 2126 692 2127 691 2128 690 2129 693 2130 691 2131 692 2132 694 2133 693 2134 692 2135 695 2136 693 2137 694 2138 696 1006 695 1005 694 1004 697 1004 695 1005 696 1006 698 1004 697 1004 696 1006 699 2120 697 2120 698 2120 700 2120 699 2120 698 2120 701 2120 699 2120 700 2120 686 2120 701 2120 700 2120 687 2120 701 2120 686 2120 704 2139 703 727 702 728 705 2140 703 2141 704 2142 706 2143 705 2144 704 2145 707 1548 705 2146 706 1549 708 1548 707 1548 706 1549 709 14 707 14 708 14 710 14 709 14 708 14 711 14 709 14 710 14 712 14 711 14 710 14 713 14 711 14 712 14 714 14 713 14 712 14 715 2147 713 2148 714 2148 716 2149 715 2150 714 2151 717 2152 715 2153 716 2154 718 2155 717 2156 716 2157 719 2158 704 2159 702 2160 720 2161 704 2162 719 2163 721 2164 720 2165 719 2166 722 2167 720 2168 721 2169 723 2170 722 2171 721 2172 724 2173 722 2174 723 2175 725 1550 724 1552 723 1551 726 16 724 16 725 15 714 16 726 16 725 15 727 14 726 14 714 14 712 14 727 14 714 14 710 14 727 14 712 14 728 2176 701 2177 687 2177 729 2177 701 2177 728 2176 730 2178 729 2177 728 2176 731 2179 729 2180 730 2181 732 780 731 2182 730 781 733 2183 731 2147 732 2148 734 401 733 2184 732 402 735 2185 733 2186 734 2187 736 2188 735 2189 734 2190 697 2191 735 2192 736 2193 695 2194 697 2195 736 2196 737 2197 685 2119 671 2118 738 2198 685 2199 737 2200 739 2201 738 2202 737 2203 740 2201 738 2202 739 2201 741 14 740 14 739 14 742 14 740 14 741 14 743 14 742 14 741 14 744 1571 742 1572 743 1572 745 2204 744 2205 743 2206 681 2207 744 2208 745 2209 679 2210 681 2211 745 2212 399 14 403 14 401 14 746 14 403 14 399 14 747 14 746 14 399 14 748 14 746 14 747 14 749 1604 748 1605 747 1605 750 1605 748 1605 749 1604 409 1605 750 1605 749 1604 751 14 750 14 409 14 407 14 751 14 409 14 405 14 751 14 407 14 752 14 535 14 533 14 537 781 535 780 752 780 753 2213 537 2214 752 2215 539 2216 537 2217 753 2218 754 2219 539 2220 753 2221 541 2222 539 2223 754 2224 755 2225 541 2226 754 2227 543 2228 541 2229 755 2230 523 2231 543 2232 755 2233 406 14 402 14 404 14 756 14 402 14 406 14 408 14 756 14 406 14 757 1371 756 1372 408 1372 410 2234 757 2235 408 2236 758 2237 757 2238 410 2239 412 2240 758 2241 410 2242 759 2243 758 2244 412 2245 414 2246 759 2247 412 2248 760 1928 491 1929 489 1929 761 2249 491 2250 760 2251 762 2252 761 2253 760 2254 763 2255 761 2256 762 2257 764 2258 763 2259 762 2260 765 2261 763 2262 764 2263 766 2264 765 2265 764 2266 499 2267 765 2268 766 2269 501 2270 499 2271 766 2272 767 14 556 14 554 14 558 691 556 690 767 690 768 691 558 691 767 690 560 1846 558 1845 768 1845 769 2273 560 2274 768 2275 562 2276 560 2277 769 2278 770 2279 562 2280 769 2281 564 2282 562 2283 770 2284 544 2285 564 2286 770 2287 771 14 598 14 596 14 600 1928 598 1929 771 1929 772 2288 600 2289 771 2290 602 2291 600 2292 772 2293 773 2294 602 2295 772 2296 604 2297 602 2298 773 2299 774 2300 604 2301 773 2302 606 2303 604 2304 774 2305 586 2306 606 2307 774 2308 775 1929 472 1928 470 1929 474 2052 472 2053 775 2054 776 401 474 401 775 402 476 2309 474 2310 776 2310 777 2311 476 2309 776 2310 478 2312 476 2313 777 2314 778 2315 478 2316 777 2317 480 2318 478 2319 778 2320 460 2321 480 2322 778 2323 779 2324 577 2325 575 2326 579 2327 577 2328 779 2329 780 2330 579 2331 779 2332 581 2333 579 2334 780 2335 781 2336 581 2337 780 2338 583 2339 581 2340 781 2341 782 2342 583 2343 781 2344 585 2345 583 2346 782 2347 565 2348 585 2349 782 2350 783 14 661 14 659 14 663 2351 661 2352 783 2352 784 2353 663 2354 783 2355 665 2356 663 2357 784 2358 785 2356 665 2356 784 2358 667 2067 665 2069 785 2069 786 2359 667 2360 785 2361 669 2362 667 2363 786 2364 649 2365 669 2366 786 2367 787 2368 619 2369 617 2370 621 2371 619 2372 787 2373 788 2374 621 2375 787 2376 623 2377 621 2378 788 2379 789 2380 623 2381 788 2382 625 2383 623 2384 789 2385 790 2386 625 2387 789 2388 627 1943 625 2389 790 1942 607 1943 627 1943 790 1942 791 1656 640 1655 638 1656 642 2390 640 2391 791 2392 792 2393 642 2394 791 2395 644 2396 642 2397 792 2398 793 2397 644 2396 792 2398 646 2399 644 2400 793 2401 794 2402 646 2403 793 2404 648 2405 646 2406 794 2407 628 2408 648 2409 794 2410 795 2411 514 2412 512 2413 516 2414 514 2415 795 2416 796 2417 516 2418 795 2419 518 2420 516 2421 796 2422 797 2423 518 2424 796 2425 520 2426 518 2427 797 2428 798 2429 520 2430 797 2431 522 2432 520 2433 798 2434 502 2435 522 2436 798 2437 610 2438 799 2439 608 2440 800 2441 799 2442 610 2443 612 2444 800 2445 610 2446 801 2447 800 2448 612 2449 614 2450 801 2451 612 2452 802 2453 801 2454 614 2455 616 2456 802 2457 614 2458 618 2459 802 2460 616 2461 770 2462 546 2463 544 2464 803 2465 546 2466 770 2467 769 2468 803 2469 770 2470 804 2471 803 2472 769 2473 768 2474 804 2475 769 2476 805 2477 804 2478 768 2479 767 690 805 690 768 691 554 14 805 14 767 14 338 580 342 581 340 580 806 580 342 581 338 580 336 14 806 14 338 14 807 2480 806 2481 336 2481 808 2482 807 2480 336 2481 809 2482 807 2480 808 2482 810 2483 809 2484 808 2484 811 2485 809 2484 810 2483 778 2486 462 2487 460 2488 812 2489 462 2490 778 2491 777 2492 812 2493 778 2494 813 2495 812 2496 777 2497 776 2498 813 2499 777 2500 814 2501 813 2502 776 2503 775 402 814 402 776 401 470 14 814 14 775 14 689 2504 728 2505 687 2506 815 2507 728 2508 689 2509 691 2510 815 2511 689 2512 816 2513 815 2514 691 2515 693 2516 816 2517 691 2518 817 2519 816 2520 693 2521 695 2522 817 2523 693 2524 736 2525 817 2526 695 2527 568 2528 818 2529 566 2530 819 2531 818 2532 568 2533 570 2534 819 2535 568 2536 820 2537 819 2538 570 2539 572 2540 820 2541 570 2542 821 2543 820 2544 572 2545 574 2546 821 2547 572 2548 576 15 821 2549 574 16 463 2550 822 2551 461 2552 823 2553 822 2554 463 2555 465 2556 823 2557 463 2558 824 2559 823 2560 465 2561 467 2562 824 2563 465 2564 825 2565 824 2566 467 2567 469 2568 825 2569 467 2570 471 502 825 501 469 503 782 2571 567 2572 565 2573 826 2574 567 2575 782 2576 781 2577 826 2578 782 2579 827 2580 826 2581 781 2582 780 2583 827 2584 781 2585 828 2586 827 2587 780 2588 779 2589 828 2590 780 2591 575 2592 828 2593 779 2594 484 2595 829 2596 482 2597 830 2598 829 2599 484 2600 486 2601 830 2602 484 2603 831 2604 830 2605 486 2606 488 2607 831 2608 486 2609 832 500 831 499 488 500 490 14 832 14 488 14 492 14 832 14 490 14 774 2610 588 2611 586 2612 833 2613 588 2614 774 2615 773 2616 833 2617 774 2618 834 1512 833 1514 773 1513 772 2619 834 2620 773 2621 835 524 834 523 772 522 771 725 835 725 772 726 596 14 835 14 771 14 755 2622 525 2623 523 2624 836 2625 525 2626 755 2627 754 2628 836 2629 755 2630 837 2631 836 2632 754 2633 753 2634 837 2635 754 2636 838 580 837 580 753 581 752 580 838 580 753 581 533 14 838 14 752 14 505 2637 839 2638 503 2639 840 2640 839 2641 505 2642 507 2643 840 2644 505 2645 841 2646 840 2647 507 2648 509 2649 841 2650 507 2651 842 2652 841 2653 509 2654 511 2655 842 2656 509 2657 513 2658 842 2659 511 2660 798 2661 504 2662 502 2663 843 2664 504 2665 798 2666 797 2667 843 2668 798 2669 844 2670 843 2671 797 2672 796 2673 844 2674 797 2675 845 860 844 862 796 861 795 2676 845 2677 796 2678 512 1656 845 1656 795 1655 652 2679 846 2680 650 2681 847 2682 846 2683 652 2684 654 2685 847 2686 652 2687 848 2688 847 2689 654 2690 656 2691 848 2692 654 2693 849 2694 848 2695 656 2696 658 2697 849 2698 656 2699 660 2700 849 2701 658 2702 547 2703 850 2704 545 2705 851 2706 850 2707 547 2708 549 2709 851 2710 547 2711 852 2712 851 2713 549 2714 551 2715 852 2716 549 2717 853 2718 852 2719 551 2720 553 2721 853 2722 551 2723 555 500 853 499 553 500 786 2724 651 2725 649 2726 854 2727 651 2728 786 2729 785 2730 854 2731 786 2732 855 2733 854 2734 785 2735 784 2736 855 2737 785 2738 856 2739 855 2740 784 2741 783 1432 856 1432 784 1433 659 14 856 14 783 14 589 2742 857 2743 587 2744 858 2745 857 2746 589 2747 591 2748 858 2749 589 2750 859 2751 858 2752 591 2753 593 2754 859 2755 591 2756 860 1437 859 1438 593 1437 595 14 860 14 593 14 597 14 860 14 595 14 794 2757 630 2758 628 2759 861 2760 630 2761 794 2762 793 2763 861 2764 794 2765 862 2766 861 2767 793 2768 792 2769 862 2770 793 2771 863 2477 862 2479 792 2478 791 1372 863 1372 792 1370 638 14 863 14 791 14 673 2772 737 2773 671 2774 864 2775 737 2776 673 2777 675 2778 864 2779 673 2780 865 2781 864 2782 675 2783 677 2784 865 2785 675 2786 866 2787 865 2788 677 2789 679 2790 866 2791 677 2792 745 2793 866 2794 679 2795 631 2796 867 2797 629 2798 868 2799 867 2800 631 2801 633 2802 868 2803 631 2804 869 2805 868 2806 633 2807 635 2808 869 2809 633 2810 870 2811 869 2812 635 2813 637 1437 870 1438 635 1437 639 2814 870 2815 637 2816 766 2817 481 2818 501 2819 483 2820 481 2821 766 2822 764 2823 483 2824 766 2825 485 2826 483 2827 764 2828 762 2829 485 2830 764 2831 487 2832 485 2833 762 2834 760 2835 487 2836 762 2837 489 2838 487 2839 760 2840 426 14 430 14 428 14 871 14 430 14 426 14 424 14 871 14 426 14 872 581 871 580 424 580 873 2636 872 2634 424 2635 874 2841 872 2842 873 2843 875 2844 874 2845 873 2846 876 2847 874 2848 875 2849 526 2850 877 2851 524 2852 878 2853 877 2854 526 2855 528 2856 878 2857 526 2858 879 2859 878 2860 528 2861 530 308 879 310 528 309 880 2862 879 2863 530 2864 532 1726 880 1727 530 1726 534 1726 880 1727 532 1726 790 1942 609 1942 607 1943 881 2865 609 2866 790 2866 789 2867 881 2865 790 2866 882 2868 881 2869 789 2870 788 2871 882 2872 789 2873 883 2874 882 2875 788 2876 787 2877 883 2878 788 2879 617 2880 883 2881 787 2882 886 2883 885 2884 884 2885 887 2886 885 2887 886 2888 888 2889 887 2890 886 2891 889 2892 887 2893 888 2894 890 2895 889 2896 888 2897 374 2898 889 2899 890 2900 376 2901 374 2902 890 2903 891 2904 347 2905 349 2906 892 2907 347 2908 891 2909 893 2910 892 2911 891 2912 894 2913 892 2914 893 2915 895 2916 894 2917 893 2918 329 2919 894 2920 895 2921 328 2922 329 2923 895 2924 515 2925 842 2926 513 2927 896 2928 842 2929 515 2930 517 2931 896 2932 515 2933 897 2934 896 2935 517 2936 519 2937 897 2938 517 2939 898 2940 897 2941 519 2942 521 2943 898 2944 519 2945 901 2946 900 2947 899 2948 902 2949 900 2950 901 2951 903 2952 902 2953 901 2954 904 2955 902 2956 903 2957 905 2958 904 2959 903 2960 353 2961 904 2962 905 2963 355 2964 353 2965 905 2966 908 2967 907 2968 906 2969 909 2970 907 2971 908 2972 910 2973 909 2974 908 2975 911 2976 909 2977 910 2978 912 2979 911 2980 910 2981 441 2982 911 2983 912 2984 443 2985 441 2986 912 2987 557 501 853 502 555 503 913 2988 853 2989 557 2990 559 2991 913 2992 557 2993 914 2994 913 2995 559 2996 561 2997 914 2998 559 2999 915 3000 914 3001 561 3002 563 153 915 154 561 152 599 1928 860 1929 597 1929 916 3003 860 3004 599 3005 601 3006 916 3007 599 3008 917 3009 916 3010 601 3011 603 3012 917 3013 601 3014 918 3015 917 3016 603 3017 605 3018 918 3019 603 3020 830 3021 919 3022 829 3023 920 3024 919 3025 830 3026 831 3027 920 3028 830 3029 921 3027 920 3028 831 3027 832 500 921 499 831 499 494 3030 921 3031 832 3032 492 268 494 267 832 268 578 3033 821 3034 576 3035 922 3036 821 3037 578 3038 580 3039 922 3040 578 3041 923 3042 922 3043 580 3044 582 3045 923 3046 580 3047 924 3048 923 3049 582 3050 584 3051 924 3052 582 3053 925 3054 758 3055 759 3056 926 3057 758 3058 925 3059 927 3060 926 3061 925 3062 928 3063 926 3064 927 3065 929 3066 928 3067 927 3068 396 3069 928 3070 929 3071 394 3072 396 3073 929 3074 536 3075 880 3076 534 3077 930 3078 880 3079 536 3080 538 3081 930 3082 536 3083 931 3084 930 3085 538 3086 540 3087 931 3088 538 3089 932 3090 931 3091 540 3092 542 3093 932 3094 540 3095 711 14 707 14 709 14 933 14 707 14 711 14 713 14 933 14 711 14 934 3096 933 3097 713 3097 935 3098 934 3099 713 3100 936 3101 934 3102 935 3103 937 3104 936 3105 935 3106 938 3107 435 3108 437 3109 939 3110 435 3111 938 3112 940 3113 939 3114 938 3115 941 3116 939 3117 940 3118 942 3119 941 3120 940 3121 417 3122 941 3123 942 3124 416 3125 417 3126 942 3127 473 3128 825 3129 471 3130 943 3131 825 3132 473 3133 475 3134 943 3135 473 3136 944 3137 943 3138 475 3139 477 3140 944 3141 475 3142 945 3143 944 3144 477 3145 479 3146 945 3147 477 3148 641 3149 870 3150 639 3151 946 3152 870 3153 641 3154 643 3155 946 3156 641 3157 947 3158 946 3159 643 3160 645 3161 947 3162 643 3163 948 3164 947 3165 645 3166 647 3167 948 3168 645 3169 800 3170 949 3171 799 3172 950 3173 949 3174 800 3175 801 3176 950 3177 800 3178 951 3179 950 3180 801 3181 802 3182 951 3183 801 3184 620 3185 951 3186 802 3187 618 3188 620 3189 802 3190 662 3191 849 3192 660 3193 952 3194 849 3195 662 3196 664 3197 952 3198 662 3199 953 3200 952 3201 664 3202 666 3203 953 3204 664 3205 954 3206 953 3207 666 3208 668 3209 954 3210 666 3211 833 3212 590 3213 588 3214 955 3215 590 3216 833 3217 834 3218 955 3219 833 3220 956 3221 955 3222 834 3223 835 2173 956 2174 834 2175 596 1501 956 1502 835 1501 345 3224 341 3225 343 3226 957 1438 341 1437 345 3227 347 3228 957 3229 345 3230 958 3231 957 3232 347 3233 892 3234 958 3235 347 3236 894 3237 958 3238 892 3239 959 3240 332 3241 330 3242 960 3243 332 3244 959 3245 961 3245 960 3243 959 3245 810 3246 960 3247 961 3248 962 2485 810 2483 961 2485 811 2485 810 2483 962 2485 803 3249 548 3250 546 3251 963 3252 548 3253 803 3254 804 3255 963 3256 803 3257 964 3258 963 3259 804 3260 805 1372 964 1372 804 1370 554 14 964 14 805 14 965 3261 420 3262 418 3263 966 3264 420 3265 965 3266 967 3266 966 3264 965 3266 875 3267 966 3268 967 3269 968 2847 875 2849 967 2847 876 2847 875 2849 968 2847 881 3270 611 1944 609 1945 969 3271 611 3272 881 3273 882 3274 969 3275 881 3276 970 3277 969 3278 882 3279 883 3280 970 3281 882 3282 617 3283 970 3284 883 3285 497 1739 765 1739 499 1737 971 3286 765 3287 497 3287 495 3288 971 3286 497 3287 972 3289 971 3290 495 3291 493 402 972 402 495 401 491 14 972 14 493 14 454 3292 912 3293 910 3294 973 3295 912 3296 454 3297 456 3298 973 3299 454 3300 974 3301 973 3302 456 3303 458 3304 974 3305 456 3306 445 3307 974 3308 458 3309 826 3310 569 3311 567 3312 975 3313 569 3314 826 3315 827 3316 975 3317 826 3318 976 3319 975 3320 827 3321 828 3322 976 3323 827 3324 575 3325 976 3326 828 3327 977 1641 449 1641 447 1640 978 3328 449 3329 977 3329 457 3330 978 3328 977 3329 979 267 978 3331 457 268 455 268 979 267 457 268 453 1270 979 1268 455 1269 836 3332 527 3333 525 3334 980 3335 527 3336 836 3337 837 2352 980 2352 836 2351 981 14 980 14 837 14 838 14 981 14 837 14 533 14 981 14 838 14 366 3338 905 3339 903 3340 982 2050 905 2051 366 2050 368 14 982 14 366 14 983 14 982 14 368 14 370 14 983 14 368 14 357 356 983 358 370 358 984 3341 361 3342 359 3343 985 3344 361 3345 984 3346 369 308 985 309 984 310 986 1432 985 1433 369 1432 367 14 986 14 369 14 365 1502 986 1501 367 1501 812 3347 464 3348 462 3349 987 3350 464 3351 812 3352 813 3353 987 3354 812 3355 988 3356 987 3357 813 3358 814 1436 988 1435 813 1434 470 1432 988 1433 814 1432 989 3359 382 3360 380 3360 990 3361 382 3362 989 3363 390 3364 990 3365 989 3366 991 1656 990 1655 390 1656 388 1433 991 1432 390 1432 386 3367 991 3368 388 3369 843 3370 506 3371 504 3372 992 3373 506 3374 843 3375 844 3376 992 3377 843 3378 993 3379 992 3380 844 3381 845 500 993 500 844 499 512 14 993 14 845 14 854 3382 653 3383 651 3384 994 3385 653 3386 854 3387 855 3388 994 3389 854 3390 995 3391 994 3392 855 3393 856 1726 995 1726 855 1727 659 14 995 14 856 14 433 1604 429 1605 431 1605 996 1605 429 1605 433 1604 435 3394 996 3395 433 3396 997 499 996 500 435 3397 939 3398 997 3399 435 3400 941 3401 997 3402 939 3403 387 3404 890 3405 888 3406 998 3407 890 3408 387 3409 389 3410 998 3411 387 3412 999 3413 998 3414 389 3415 391 3416 999 3417 389 3418 378 1267 999 1266 391 1265 861 3419 632 3420 630 3421 1000 3422 632 3423 861 3424 862 3425 1000 3426 861 3427 1001 3428 1000 3429 862 3430 863 2568 1001 2570 862 2569 638 12 1001 13 863 12 930 1924 879 1924 880 1922 1002 3431 879 3432 930 3432 931 3433 1002 3434 930 3435 1003 3436 1002 3437 931 3438 932 3439 1003 3440 931 3441 749 1960 411 1961 409 1962 1004 3442 411 3443 749 3444 747 3445 1004 3446 749 3447 397 3448 1004 3449 747 3450 399 1372 397 1371 747 1372 722 3451 704 3452 720 3453 706 3454 704 3455 722 3456 1005 3457 706 3458 722 3459 708 1548 706 1549 1005 1548 710 14 708 14 1005 14 916 1438 859 1438 860 1437 1006 3460 859 3461 916 3461 917 3462 1006 3460 916 3461 1007 3463 1006 3464 917 3465 918 3466 1007 3467 917 3468 1010 3469 1009 3470 1008 3471 344 3472 1009 3473 1010 3474 1011 3475 344 3476 1010 3477 348 3478 344 3479 1011 3480 350 3481 348 3482 1011 3483 1012 2177 874 2178 876 2177 1013 3484 874 3485 1012 3486 1014 3487 1013 3488 1012 3489 871 3490 1013 3491 1014 3492 430 265 871 265 1014 266 1008 2485 809 2484 811 2485 1015 3493 809 3494 1008 3495 1009 3496 1015 3497 1008 3498 806 3499 1015 3500 1009 3501 342 3502 806 3503 1009 3504 896 3505 841 3506 842 3507 1016 3508 841 3509 896 3510 897 3511 1016 3512 896 3513 1017 3514 1016 3515 897 3516 898 3517 1017 3518 897 3519 741 14 1018 14 743 14 1019 14 1018 14 741 14 1020 1549 1019 1548 741 1548 865 3520 1019 3521 1020 3522 864 3523 865 3524 1020 3525 922 3526 820 3527 821 3528 1021 1817 820 1818 922 1819 923 3529 1021 3530 922 3531 1022 3532 1021 3533 923 3534 924 3535 1022 3536 923 3537 943 3538 824 3539 825 3540 1023 3541 824 3542 943 3543 944 3544 1023 3545 943 3546 1024 3547 1023 3548 944 3549 945 3550 1024 3551 944 3552 913 3553 852 3554 853 3555 1025 3556 852 3557 913 3558 914 3559 1025 3560 913 3561 1026 3562 1025 3563 914 3564 915 3565 1026 3566 914 3567 920 3568 1027 3569 919 3570 1028 3571 1027 3572 920 3573 921 3574 1028 3575 920 3576 496 3577 1028 3578 921 3579 494 3580 496 3581 921 3582 622 3583 951 3584 620 3585 1029 3586 951 3587 622 3588 624 3589 1029 3590 622 3591 1030 3592 1029 3593 624 3594 626 3595 1030 3596 624 3597 952 3598 848 3599 849 3600 1031 3601 848 3602 952 3603 953 3604 1031 3605 952 3606 1032 3607 1031 3608 953 3609 954 3610 1032 3611 953 3612 946 3613 869 3614 870 3615 1033 3616 869 3617 946 3618 947 3619 1033 3620 946 3621 1034 3622 1033 3623 947 3624 948 3625 1034 3626 947 3627 732 402 1035 402 734 401 1036 1928 1035 1929 732 1929 1037 2052 1036 2053 732 2054 816 3628 1036 3629 1037 3630 815 3631 816 3632 1037 3633 1038 3634 1014 3635 1012 3636 432 3637 1014 3638 1038 3639 1039 3640 432 3641 1038 3642 436 3643 432 3644 1039 3645 438 3646 436 3647 1039 3648 963 3649 550 3650 548 3651 1040 3652 550 3653 963 3654 964 3655 1040 3656 963 3657 554 1929 1040 1928 964 1929 354 3658 1041 3659 352 3660 1042 3658 1041 3659 354 3658 356 3661 1042 3662 354 3662 358 3663 1042 3664 356 3665 971 3666 763 3667 765 3668 1043 3669 763 3670 971 3671 972 70 1043 70 971 68 491 14 1043 14 972 14 980 539 529 539 527 537 1044 14 529 14 980 14 981 14 1044 14 980 14 533 14 1044 14 981 14 987 3672 466 3673 464 3674 1045 3675 466 3676 987 3677 988 3678 1045 3679 987 3680 470 3681 1045 3682 988 3683 969 3684 613 1946 611 1947 1046 3685 613 3686 969 3687 970 3688 1046 3689 969 3690 617 1247 1046 1249 970 1248 442 3691 1047 3692 440 3693 1048 3694 1047 3695 442 3696 444 3697 1048 3698 442 3699 446 1637 1048 1637 444 1638 1048 3208 1049 3206 1047 3206 1050 3208 1049 3206 1048 3208 446 2120 1050 2120 1048 2120 448 2120 1050 2120 446 2120 1050 3208 1051 3208 1049 3206 1052 2194 1051 2195 1050 2195 448 2195 1052 2194 1050 2195 450 3700 1052 3701 448 3702 1052 3703 906 3704 1051 3705 908 3706 906 3707 1052 3708 450 3709 908 3710 1052 3711 452 3712 908 3713 450 3714 1000 3715 634 3716 632 3717 1053 3718 634 3719 1000 3720 1001 3721 1053 3722 1000 3723 638 3724 1053 3725 1001 3726 955 3727 592 3728 590 3729 1054 3730 592 3731 955 3732 956 3733 1054 3734 955 3735 596 1501 1054 1501 956 1502 375 3736 1055 3737 373 3738 1056 3739 1055 3740 375 3741 377 3742 1056 3743 375 3744 379 3745 1056 3746 377 3747 1056 3748 1057 3749 1055 3750 1058 3751 1057 3752 1056 3753 379 3754 1058 3755 1056 3756 381 3757 1058 3758 379 3759 1058 3760 1059 3761 1057 3762 1060 3763 1059 3764 1058 3765 381 3766 1060 3767 1058 3768 383 3769 1060 3770 381 3771 1060 3772 884 3773 1059 3774 886 3775 884 3776 1060 3777 383 3778 886 3779 1060 3780 385 3781 886 3782 383 3783 334 3784 808 3785 336 3786 1061 3787 808 3788 334 3789 332 3790 1061 3791 334 3792 960 3793 1061 3794 332 3795 710 14 726 14 727 14 724 14 726 14 710 14 1005 14 724 14 710 14 722 1502 724 1501 1005 1501 934 3096 707 3097 933 3097 705 3796 707 3797 934 3798 1062 3799 705 3800 934 3801 703 3802 705 3803 1062 3804 1018 690 745 1124 743 690 866 3805 745 3806 1018 3807 1019 1097 866 1098 1018 1097 865 3808 866 3809 1019 3810 1004 1776 413 1775 411 1777 1063 3811 413 3812 1004 3813 397 3814 1063 3815 1004 3816 395 3817 1063 3818 397 3819 926 3820 757 3821 758 3822 1064 3823 757 3824 926 3825 400 3826 1064 3827 926 3828 402 3829 1064 3830 400 3831 422 312 873 311 424 313 1065 3832 873 3833 422 3834 420 3835 1065 3836 422 3837 966 3838 1065 3839 420 3840 992 3841 508 3842 506 3843 1066 3844 508 3845 992 3846 993 725 1066 725 992 726 512 14 1066 14 993 14 683 3847 744 3848 681 3849 1067 3850 744 3851 683 3852 685 3853 1067 3854 683 3855 738 3856 1067 3857 685 3858 699 2068 735 2067 697 2068 1068 2068 735 2067 699 2068 701 2120 1068 2120 699 2120 729 2120 1068 2120 701 2120 1035 3859 736 3860 734 3861 817 2202 736 2203 1035 2201 1036 3862 817 3863 1035 3864 816 3865 817 3866 1036 3867 975 3868 571 3869 569 3870 1069 3871 571 3872 975 3873 976 3874 1069 3875 975 3876 575 3877 1069 3878 976 3879 1042 3880 1070 3881 1041 3882 1071 3883 1070 3884 1042 3885 358 3886 1071 3887 1042 3888 360 3889 1071 3890 358 3891 1071 3892 1072 3893 1070 3894 1073 3895 1072 3896 1071 3895 360 3897 1073 3898 1071 3898 362 3899 1073 3898 360 3897 1073 3900 899 3901 1072 3902 901 3903 899 3904 1073 3905 362 3906 901 3907 1073 3908 364 3909 901 3910 362 3911 994 3912 655 3913 653 3914 1074 3915 655 3916 994 3917 995 2352 1074 2352 994 2351 659 14 1074 14 995 14 1075 1928 429 1929 996 1929 427 1929 429 1929 1075 1928 941 3918 427 3919 1075 3920 1076 2369 1037 2368 732 2370 815 3921 1037 3922 1076 3923 728 3924 815 3925 1076 3926 427 265 419 266 425 265 417 3927 419 3928 427 3929 941 3930 417 3931 427 3932 1029 3933 950 3934 951 3935 1077 3936 950 3937 1029 3938 1030 3939 1077 3940 1029 3941 1021 3942 819 3943 820 3944 1078 3945 819 3946 1021 3947 1022 3948 1078 3949 1021 3950 1033 3951 868 3952 869 3953 1079 3954 868 3955 1033 3956 1034 3957 1079 3958 1033 3959 1016 3960 840 3961 841 3962 1080 3963 840 3964 1016 3965 1017 3966 1080 3967 1016 3968 376 3969 999 3970 378 3971 998 3972 999 3973 376 3974 890 3975 998 3976 376 3977 1023 3978 823 3979 824 3980 1081 3981 823 3982 1023 3983 1024 3984 1081 3985 1023 3986 1002 3987 878 3988 879 3989 1082 3990 878 3991 1002 3992 1003 3993 1082 3994 1002 3995 1083 3996 341 3997 957 3998 339 3998 341 3997 1083 3996 894 3999 339 4000 1083 4001 1025 4002 851 4003 852 4004 1084 4005 851 4006 1025 4007 1026 3562 1084 3564 1025 3563 498 4008 1028 4009 496 4010 1085 4011 1028 4012 498 4013 500 4014 1085 4015 498 4016 985 4017 363 4018 361 4019 365 4020 363 4021 985 4022 986 3681 365 3682 985 3683 355 4023 983 4024 357 4025 982 2481 983 2481 355 2480 905 4026 982 4027 355 4028 1063 4029 415 4030 413 4031 393 4032 415 4033 1063 4034 395 4035 393 4036 1063 4037 1086 14 371 14 369 14 359 356 371 358 1086 358 984 4038 359 4039 1086 4040 1087 4041 989 4042 380 4043 390 1548 989 1549 1087 1548 392 14 390 14 1087 14 443 4044 974 4045 445 4046 973 4047 974 4048 443 4049 912 4050 973 4051 443 4052 339 4053 331 4054 337 4055 329 4056 331 4057 339 4058 894 4059 329 4060 339 4061 721 4062 716 4063 723 4064 718 4065 716 4066 721 4067 719 4068 718 4069 721 4070 928 4071 400 4072 926 4073 398 4074 400 4075 928 4076 396 4077 398 4078 928 4079 978 4080 451 4081 449 4082 453 4083 451 4084 978 4085 979 4086 453 4087 978 4088 1088 4089 459 4090 457 4091 447 4092 459 4093 1088 4094 977 4095 447 4096 1088 4097 990 4098 384 4099 382 4100 386 4101 384 4102 990 4103 991 4104 386 4105 990 4106 1006 4107 858 4108 859 4109 1089 4110 858 4111 1006 4112 1007 4113 1089 4114 1006 4115 405 14 750 14 751 14 748 14 750 14 405 14 746 14 748 14 405 14 715 4116 935 4117 713 4118 937 4119 935 4120 715 4121 717 4122 937 4123 715 4124 1090 4125 1020 4126 741 4127 864 4128 1020 4129 1090 4130 737 4131 864 4132 1090 4133 1031 4134 847 4135 848 4136 1091 4137 847 4138 1031 4139 1032 4140 1091 4141 1031 4142 966 4143 873 4144 1065 4145 875 4145 873 4144 966 4143 615 4146 1046 4147 617 4148 613 4149 1046 4150 615 4151 872 4152 1013 4153 871 4154 874 4155 1013 4156 872 4157 761 267 1043 268 491 268 763 4158 1043 4159 761 4160 452 4161 910 4162 908 4163 454 4164 910 4165 452 4166 909 4167 1092 4168 907 4169 911 4170 1092 4171 909 4172 911 4173 439 4174 1092 4175 441 4176 439 4177 911 4178 402 4179 757 4180 1064 4181 756 1372 757 1371 402 1372 739 580 1090 581 741 580 737 4182 1090 4183 739 4184 636 1656 1053 1655 638 1656 634 4185 1053 4186 636 4187 725 4188 716 4189 714 4190 723 4191 716 4192 725 4193 958 4194 1083 4195 957 4196 894 4197 1083 4198 958 4199 740 4200 1067 4201 738 4202 742 2148 1067 2147 740 2148 594 14 1054 14 596 14 592 1727 1054 1726 594 1726 335 4203 331 4204 333 4205 337 4206 331 4207 335 4208 904 4209 351 4210 1093 4211 353 4212 351 4213 904 4214 902 4215 1093 4216 900 4217 904 4218 1093 4219 902 4220 385 4221 888 4222 886 4223 387 4224 888 4225 385 4226 960 4227 808 4228 1061 4229 810 4229 808 4228 960 4227 887 4230 1094 4231 885 4232 889 4233 1094 4234 887 4235 889 4236 372 4237 1094 4238 374 4239 372 4240 889 4241 807 4242 1015 4243 806 4244 809 4245 1015 4246 807 4247 531 14 1044 14 533 14 529 14 1044 14 531 14 573 4248 1069 4249 575 4250 571 4251 1069 4252 573 4253 730 3301 1076 3302 732 3303 728 4254 1076 4255 730 4256 510 14 1066 14 512 14 508 1727 1066 1726 510 1726 364 4257 903 4258 901 4259 366 2477 903 2478 364 2479 423 4260 419 4261 421 4262 425 265 419 266 423 265 731 4263 1068 4264 729 4264 733 4265 1068 4266 731 4267 552 1929 1040 1928 554 1929 550 4268 1040 4269 552 4270 468 1501 1045 1502 470 1501 466 4271 1045 4272 468 4273 997 1688 1075 1687 996 1689 941 4274 1075 4275 997 4276 657 14 1074 14 659 14 655 1438 1074 1437 657 1437 1084 4277 850 4278 851 4279 1085 4280 1027 4281 1028 4282 342 4283 1009 4284 344 4285 430 4286 1014 4287 432 4288 1080 4289 839 4290 840 4291 1089 4292 857 4293 858 4294 1078 4295 818 4296 819 4297 1077 4298 949 4299 950 4300 936 4301 1062 4302 934 4303 1079 4304 867 4305 868 4306 744 4307 1067 4308 742 4309 1081 4310 822 4311 823 4312 432 4313 436 4314 434 4315 735 4316 1068 4317 733 4318 1082 4319 877 4320 878 4321 1091 4322 846 4323 847 4324 344 4325 348 4326 346 4327 977 4328 1088 4329 457 4330 403 14 746 14 405 14 380 15 392 16 1087 16 984 266 1086 265 369 265

+
+
+
+ + + + 179 10 -67 88 10 -14 107 10 -92 63 10 -63 59 10 -122 14 10 -88 12 10 -166 -40 10 -79 -37 10 -218 -88 10 -239 221 10 18 198 10 58 79 10 40 0 10 0 40 10 79 -13 10 87 18 10 148 -25 10 165 -157 10 -182 -158 10 -133 -79 10 -40 -147 10 -64 -87 10 13 -157 10 -11 -169 10 39 -122 10 676 -75 10 666 -92 10 721 -3 10 660 -6 10 721 82 10 721 113 10 790 139 10 745 -89 10 1238 -99 10 1184 -6 10 1186 -91 10 1120 -6 10 1120 -6 10 1018 70 10 1120 65 10 1018 -88 10 1018 -91 10 948 -6 10 948 -6 10 868 72 10 948 89 10 869 -73 10 145 -62 10 62 -163 10 740 -135 10 789 -6 10 788 -3676 562 5683 -3605 526 5359 -3528 530 5675 -3380 477 5401 -3425 502 5605 -3312 479 5621 425 10 3219 4 9 3419 288 10 3062 -142 9 3134 122 9 3007 42 9 2869 144 10 89 73 10 100 -155 10 82 -109 10 109 -1243 10 1438 -1164 10 1503 -1437 10 1614 -1156 10 1601 -1223 10 1703 -1345 11 1781 -1485 14 1818 -1630 12 1778 -1716 10 1693 -1707 10 1596 -1627 10 1504 -2045 172 3176 -2027 185 3340 -2377 220 3144 -2101 203 3456 -2248 223 3492 -1506 10 1441 -1373 10 1421 -2708 267 3112 -2730 264 2936 -2656 245 2821 -2507 215 2790 -2320 188 2864 -2152 172 3004 -3899 601 5487 -3911 596 5286 -3835 571 5154 -3720 535 5048 400 10 3636 187 10 3823 -24 10 3852 -245 19 3816 -2429 242 3435 -2597 258 3296 66 10 1238 26 10 1277 -42 10 1278 76 10 1186 -102 10 869 207 10 -36 -3210 451 5560 -3148 427 5445 -3155 416 5316 -3232 427 5230 -3337 450 5198 -3429 465 5095 -3562 493 5030 459 10 3418 -113 10 2808 -334 18 2837 116 10 683 67 10 666 -161 10 705 -512 29 2956 -536 34 3116 -457 32 3260 -484 38 3452 141 10 710 -420 37 3655 -132 10 -226 -3803 586 5615 + + + + + + + + + + 2.119140625 6.166015625 1.224609375 5.642578125 1.408203125 6.416015625 0.978515625 6.125 0.9453125 6.7109375 0.49609375 6.37109375 0.4765625 7.140625 -0.037109375 6.287109375 -0.01171875 7.65234375 -0.515625 7.857421875 2.533203125 5.32421875 2.310546875 4.9296875 1.140625 5.109375 0.359375 5.505859375 0.755859375 4.7265625 0.22265625 4.640625 0.541015625 4.0390625 0.1015625 3.880859375 -1.1875 7.298828125 -1.1171875 6.82421875 -0.419921875 5.904296875 -0.931640625 6.158203125 -0.50390625 5.369140625 -1.15625 5.58984375 -1.306640625 5.115234375 -0.841796875 -1.0703125 -0.37890625 -0.974609375 -0.544921875 -1.509765625 0.328125 -0.921875 0.30078125 -1.509765625 1.16796875 -1.509765625 1.47265625 -2.181640625 1.73046875 -1.748046875 -0.517578125 -6.546875 -0.6171875 -6.029296875 0.30078125 -6.04296875 -0.53125 -5.40625 0.30078125 -5.40625 0.30078125 -4.412109375 1.048828125 -5.40625 1.001953125 -4.412109375 -0.5078125 -4.412109375 -0.533203125 -3.720703125 0.30078125 -3.720703125 0.30078125 -2.94921875 1.072265625 -3.720703125 1.240234375 -2.958984375 -0.369140625 4.07421875 -0.2578125 4.88671875 -1.24609375 -1.701171875 -0.966796875 -2.173828125 0.30078125 -2.16015625 0.63671875 -2.181640625 1.3671875 -1.4453125 0.8359375 -2.74609375 1.642578125 -2.05078125 1.138671875 -2.484375 1.615234375 -2.98828125 1.77734375 4.619140625 1.08203125 4.513671875 -1.171875 4.6875 -0.71484375 4.431640625 4.453125 -5.462890625 4.35546875 -5.36328125 4.587890625 -5.228515625 4.318359375 -5.228515625 4.35546875 -5.09375 4.453125 -4.99609375 4.587890625 -4.958984375 4.72265625 -4.99609375 4.822265625 -5.09375 4.857421875 -5.228515625 4.822265625 -5.36328125 4.591796875 -1.9375 4.671875 -1.640625 5.185546875 -1.9375 4.888671875 -1.421875 5.185546875 -1.34375 4.72265625 -5.462890625 4.587890625 -5.498046875 5.78125 -1.9375 5.701171875 -2.236328125 5.484375 -2.453125 5.185546875 -2.533203125 4.888671875 -2.453125 4.671875 -2.236328125 0.705078125 -1.0859375 1.009765625 -0.66015625 1.421875 -0.638671875 1.84765625 -0.615234375 5.484375 -1.421875 5.701171875 -1.640625 1.01171875 -6.55078125 0.62109375 -6.927734375 -0.05859375 -6.943359375 1.10546875 -6.04296875 -0.646484375 -2.953125 2.400390625 5.861328125 1.798828125 -2.865234375 2.02734375 -2.7109375 2.27734375 -2.54296875 2.51953125 -2.37890625 2.263671875 -1.732421875 2.431640625 -1.181640625 2.169921875 -0.92578125 0.400390625 -1.5078125 1.498046875 -1.14453125 1.017578125 -0.978515625 -1.220703125 -1.3515625 1.748046875 -1.40625 -0.94921875 7.732421875 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 1 1 0 0 3 3 1 1 2 2 4 4 3 3 2 2 5 5 3 3 4 4 6 6 5 5 4 4 7 7 5 5 6 6 8 8 7 7 6 6 9 9 7 7 8 8 1 1 11 11 10 10 12 12 11 11 1 1 13 13 12 12 1 1 14 14 12 12 13 13 15 15 14 14 13 13 16 16 14 14 15 15 17 17 16 16 15 15 19 19 7 7 18 18 20 20 7 7 19 19 21 21 20 20 19 19 22 22 20 20 21 21 23 23 22 22 21 21 24 24 22 22 23 23 27 27 26 26 25 25 28 28 26 26 27 27 29 29 28 28 27 27 30 30 28 28 29 29 31 31 30 30 29 29 32 32 30 30 31 31 35 35 34 34 33 33 36 36 34 34 35 35 37 37 36 36 35 35 38 38 36 36 37 37 39 39 38 38 37 37 40 40 38 38 39 39 38 38 41 41 36 36 42 42 41 41 38 38 43 43 42 42 38 38 44 44 42 42 43 43 45 45 44 44 43 43 46 46 44 44 45 45 15 15 47 47 17 17 48 48 47 47 15 15 13 13 48 48 15 15 22 22 48 48 13 13 20 20 22 22 13 13 50 50 27 27 49 49 29 29 27 27 50 50 51 51 29 29 50 50 31 31 29 29 51 51 46 46 31 31 51 51 54 54 53 53 52 52 55 55 53 53 54 54 56 56 55 55 54 54 57 57 55 55 56 56 60 54 59 53 58 52 61 55 59 53 60 54 62 56 61 55 60 54 63 57 61 55 62 56 12 12 64 58 11 11 65 59 64 58 12 12 14 14 65 59 12 12 16 16 65 59 14 14 66 60 22 22 24 24 48 48 22 22 66 60 67 61 48 48 66 60 47 47 48 48 67 61 70 64 69 63 68 62 71 65 69 63 70 64 72 66 71 65 70 64 70 64 73 67 72 66 74 68 73 67 70 64 75 69 74 68 70 64 70 64 76 70 75 69 77 71 76 70 70 64 78 72 77 71 70 64 81 75 80 74 79 73 82 76 80 74 81 75 83 77 82 76 81 75 70 64 84 78 78 72 85 79 84 78 70 64 68 62 85 79 70 64 81 75 87 81 86 80 88 82 87 81 81 75 89 83 88 82 81 75 81 75 90 84 89 83 91 85 90 84 81 75 79 73 91 85 81 75 53 53 93 87 92 86 94 88 93 87 53 53 95 89 94 88 53 53 59 53 97 87 96 86 98 88 97 87 59 53 99 89 98 88 59 53 81 75 100 90 83 77 101 91 100 90 81 75 86 80 101 91 81 75 35 35 103 93 102 92 104 94 103 93 35 35 33 33 104 94 35 35 105 95 35 35 102 92 37 37 35 35 105 95 39 39 37 37 105 95 44 44 106 96 42 42 50 50 106 96 44 44 51 51 50 50 44 44 107 97 1 1 10 10 0 0 1 1 107 97 108 98 55 55 57 57 109 99 55 55 108 98 110 100 55 55 109 99 111 101 55 55 110 100 112 102 55 55 111 101 113 103 55 55 112 102 113 103 53 53 55 55 114 104 53 53 113 103 3 3 13 13 1 1 5 5 13 13 3 3 7 7 13 13 5 5 20 20 13 13 7 7 115 105 59 53 96 86 58 52 59 53 115 105 116 98 61 55 63 57 117 99 61 55 116 98 119 107 30 30 118 106 28 28 30 30 119 107 120 108 27 27 25 25 49 49 27 27 120 108 121 100 61 55 117 99 122 101 61 55 121 100 123 102 61 55 122 101 124 103 61 55 123 102 125 109 30 30 32 32 118 106 30 30 125 109 124 103 59 53 61 55 126 104 59 53 124 103 127 110 7 7 9 9 18 18 7 7 127 110 43 43 40 40 45 45 38 38 40 40 43 43 128 105 53 53 92 86 52 52 53 53 128 105 53 53 114 104 95 89 59 53 126 104 99 89 46 46 51 51 44 44

+
+
+
+ + + + 179 10 -67 88 10 -14 107 10 -92 63 10 -63 59 10 -122 14 10 -88 12 10 -166 -40 10 -79 -37 10 -218 -88 10 -239 221 10 18 198 10 58 79 10 40 0 10 0 40 10 79 -13 10 87 18 10 148 -25 10 165 -157 10 -182 -158 10 -133 -79 10 -40 -147 10 -64 -87 10 13 -157 10 -11 -169 10 39 -122 10 676 -75 10 666 -92 10 721 -3 10 660 -6 10 721 82 10 721 113 10 790 139 10 745 -89 10 1238 -99 10 1184 -6 10 1186 -91 10 1120 -6 10 1120 -6 10 1018 70 10 1120 65 10 1018 -88 10 1018 -91 10 948 -6 10 948 -6 10 868 72 10 948 89 10 869 -73 10 145 -62 10 62 -163 10 740 -135 10 789 -6 10 788 -3676 562 5683 -3605 526 5359 -3528 530 5675 -3380 477 5401 -3425 502 5605 -3312 479 5621 425 10 3219 4 9 3419 288 10 3062 -142 9 3134 122 9 3007 42 9 2869 144 10 89 73 10 100 -155 10 82 -109 10 109 -1243 10 1438 -1164 10 1503 -1437 10 1614 -1156 10 1601 -1223 10 1703 -1345 11 1781 -1485 14 1818 -1630 12 1778 -1716 10 1693 -1707 10 1596 -1627 10 1504 -2045 172 3176 -2027 185 3340 -2377 220 3144 -2101 203 3456 -2248 223 3492 -1506 10 1441 -1373 10 1421 -2708 267 3112 -2730 264 2936 -2656 245 2821 -2507 215 2790 -2320 188 2864 -2152 172 3004 -3899 601 5487 -3911 596 5286 -3835 571 5154 -3720 535 5048 400 10 3636 187 10 3823 -24 10 3852 -245 19 3816 -2429 242 3435 -2597 258 3296 66 10 1238 26 10 1277 -42 10 1278 76 10 1186 -102 10 869 207 10 -36 -3210 451 5560 -3148 427 5445 -3155 416 5316 -3232 427 5230 -3337 450 5198 -3429 465 5095 -3562 493 5030 459 10 3418 -113 10 2808 -334 18 2837 116 10 683 67 10 666 -161 10 705 -512 29 2956 -536 34 3116 -457 32 3260 -484 38 3452 141 10 710 -420 37 3655 -132 10 -226 -3803 586 5615 + + + + + + + + + + 0.2967529296875 0.3849158653846154 0.2813720703125 0.4227764423076923 0.2813720703125 0.3849158653846154 0.2969970703125 0.3849158653846154 0.2969970703125 0.4227764423076923 0.3123779296875 0.3849158653846154 0.3126220703125 0.42337740384615385 0.3126220703125 0.4612379807692307 0.3280029296875 0.42337740384615385 0.3282470703125 0.42337740384615385 0.3436279296875 0.42337740384615385 0.3282470703125 0.4612379807692307 0.3126220703125 0.3849158653846154 0.3126220703125 0.4227764423076923 0.3280029296875 0.3849158653846154 0.3436279296875 0.3849158653846154 0.3282470703125 0.4227764423076923 0.3282470703125 0.3849158653846154 0.3438720703125 0.4612379807692307 0.3592529296875 0.42337740384615385 0.3438720703125 0.42337740384615385 0.3748779296875 0.42337740384615385 0.3594970703125 0.4612379807692307 0.3594970703125 0.42337740384615385 0.8536376953125 0.19260817307692313 0.8536376953125 0.21123798076923073 0.8543701171875 0.19260817307692313 0.8546142578125 0.19260817307692313 0.8553466796875 0.19260817307692313 0.8546142578125 0.21123798076923073 0.8748779296875 0.4618389423076923 0.8594970703125 0.4618389423076923 0.4376220703125 0.42337740384615385 0.4376220703125 0.4612379807692307 0.3592529296875 0.3849158653846154 0.3438720703125 0.4227764423076923 0.3438720703125 0.3849158653846154 0.2891845703125 0.4612379807692307 0.2891845703125 0.42337740384615385 0.2967529296875 0.42337740384615385 0.1248779296875 0.07722355769230771 0.1173095703125 0.07722355769230771 0.1173095703125 0.09585336538461542 0.1251220703125 0.13491586538461542 0.1251220703125 0.15354567307692313 0.1326904296875 0.13491586538461542 0.3594970703125 0.3849158653846154 0.3594970703125 0.4227764423076923 0.3670654296875 0.3849158653846154 0.3751220703125 0.4612379807692307 0.3905029296875 0.42337740384615385 0.3751220703125 0.42337740384615385 0.3907470703125 0.42337740384615385 0.4061279296875 0.42337740384615385 0.3907470703125 0.4612379807692307 0.3751220703125 0.3849158653846154 0.3751220703125 0.4227764423076923 0.3905029296875 0.3849158653846154 0.4061279296875 0.3849158653846154 0.3907470703125 0.4227764423076923 0.3907470703125 0.3849158653846154 0.1329345703125 0.15354567307692313 0.1405029296875 0.13491586538461542 0.1329345703125 0.13491586538461542 0.3673095703125 0.3849158653846154 0.3673095703125 0.4227764423076923 0.3748779296875 0.3849158653846154 0.4063720703125 0.4612379807692307 0.4217529296875 0.42337740384615385 0.4063720703125 0.42337740384615385 0.4373779296875 0.42337740384615385 0.4219970703125 0.42337740384615385 0.4219970703125 0.4612379807692307 0.4217529296875 0.3849158653846154 0.4063720703125 0.4227764423076923 0.4063720703125 0.3849158653846154 0.4295654296875 0.3849158653846154 0.4219970703125 0.4227764423076923 0.4219970703125 0.3849158653846154 0.4298095703125 0.4227764423076923 0.4373779296875 0.3849158653846154 0.4298095703125 0.3849158653846154 0.1407470703125 0.13491586538461542 0.1407470703125 0.15354567307692313 0.1483154296875 0.13491586538461542 0.1485595703125 0.15354567307692313 0.1485595703125 0.13491586538461542 0.1561279296875 0.13491586538461542 0.1326904296875 0.11568509615384615 0.1251220703125 0.13431490384615385 0.1251220703125 0.11568509615384615 0.1329345703125 0.11568509615384615 0.1329345703125 0.13431490384615385 0.1405029296875 0.11568509615384615 0.1483154296875 0.11568509615384615 0.1407470703125 0.13431490384615385 0.1407470703125 0.11568509615384615 0.4451904296875 0.42337740384615385 0.1485595703125 0.11568509615384615 0.1485595703125 0.13431490384615385 0.1561279296875 0.11568509615384615 0.4530029296875 0.42337740384615385 0.4454345703125 0.4612379807692307 0.4454345703125 0.42337740384615385 0.1251220703125 0.09645432692307687 0.1326904296875 0.09645432692307687 0.1251220703125 0.11508413461538458 0.1405029296875 0.09645432692307687 0.1329345703125 0.09645432692307687 0.1329345703125 0.11508413461538458 0.1407470703125 0.11508413461538458 0.1407470703125 0.09645432692307687 0.1483154296875 0.09645432692307687 0.1485595703125 0.09645432692307687 0.1561279296875 0.09645432692307687 0.1485595703125 0.11508413461538458 0.4532470703125 0.42337740384615385 0.4532470703125 0.4612379807692307 0.4686279296875 0.42337740384615385 0.4451904296875 0.3849158653846154 0.4376220703125 0.4227764423076923 0.4376220703125 0.3849158653846154 0.4454345703125 0.3849158653846154 0.4454345703125 0.4227764423076923 0.4530029296875 0.3849158653846154 0.4532470703125 0.3849158653846154 0.4532470703125 0.4227764423076923 0.4686279296875 0.3849158653846154 0.4764404296875 0.42337740384615385 0.4688720703125 0.4612379807692307 0.4688720703125 0.42337740384615385 0.4766845703125 0.42337740384615385 0.4766845703125 0.4612379807692307 0.4842529296875 0.42337740384615385 0.4920654296875 0.42337740384615385 0.4844970703125 0.42337740384615385 0.4844970703125 0.4612379807692307 0.1326904296875 0.07722355769230771 0.1251220703125 0.09585336538461542 0.1251220703125 0.07722355769230771 0.4923095703125 0.42337740384615385 0.4998779296875 0.42337740384615385 0.4923095703125 0.4612379807692307 0.4764404296875 0.3849158653846154 0.4688720703125 0.4227764423076923 0.4688720703125 0.3849158653846154 0.1329345703125 0.07722355769230771 0.1329345703125 0.09585336538461542 0.1405029296875 0.07722355769230771 0.4844970703125 0.4227764423076923 0.4844970703125 0.3849158653846154 0.4998779296875 0.3849158653846154 0.5155029296875 0.42337740384615385 0.5001220703125 0.42337740384615385 0.5001220703125 0.4612379807692307 0.5157470703125 0.4612379807692307 0.5157470703125 0.42337740384615385 0.5311279296875 0.42337740384615385 0.5001220703125 0.3849158653846154 0.5155029296875 0.3849158653846154 0.5001220703125 0.4227764423076923 0.5157470703125 0.3849158653846154 0.5311279296875 0.3849158653846154 0.5157470703125 0.4227764423076923 0.5313720703125 0.42337740384615385 0.5467529296875 0.42337740384615385 0.5313720703125 0.4612379807692307 0.5469970703125 0.4612379807692307 0.5623779296875 0.42337740384615385 0.5469970703125 0.42337740384615385 0.5467529296875 0.3849158653846154 0.5313720703125 0.3849158653846154 0.5313720703125 0.4227764423076923 0.5469970703125 0.4227764423076923 0.5623779296875 0.3849158653846154 0.5469970703125 0.3849158653846154 0.0936279296875 0.3849158653846154 0.0782470703125 0.4227764423076923 0.5780029296875 0.42337740384615385 0.5626220703125 0.42337740384615385 0.5626220703125 0.4612379807692307 0.5936279296875 0.42337740384615385 0.5782470703125 0.42337740384615385 0.5782470703125 0.4612379807692307 0.5626220703125 0.4227764423076923 0.5780029296875 0.3849158653846154 0.5626220703125 0.3849158653846154 0.5936279296875 0.3849158653846154 0.5782470703125 0.3849158653846154 0.5782470703125 0.4227764423076923 0.5938720703125 0.42337740384615385 0.6092529296875 0.42337740384615385 0.5938720703125 0.4612379807692307 0.6094970703125 0.4612379807692307 0.6248779296875 0.42337740384615385 0.6094970703125 0.42337740384615385 0.6092529296875 0.3849158653846154 0.5938720703125 0.3849158653846154 0.5938720703125 0.4227764423076923 0.6094970703125 0.3849158653846154 0.6248779296875 0.3849158653846154 0.6094970703125 0.4227764423076923 0.6251220703125 0.4612379807692307 0.6251220703125 0.42337740384615385 0.6405029296875 0.42337740384615385 0.6407470703125 0.4612379807692307 0.6407470703125 0.42337740384615385 0.6561279296875 0.42337740384615385 0.6405029296875 0.3849158653846154 0.6251220703125 0.3849158653846154 0.6251220703125 0.4227764423076923 0.6561279296875 0.3849158653846154 0.6407470703125 0.4227764423076923 0.6407470703125 0.3849158653846154 0.6717529296875 0.42337740384615385 0.6563720703125 0.42337740384615385 0.6563720703125 0.4612379807692307 0.6873779296875 0.42337740384615385 0.6719970703125 0.4612379807692307 0.6719970703125 0.42337740384615385 0.1407470703125 0.09585336538461542 0.1483154296875 0.07722355769230771 0.1407470703125 0.07722355769230771 0.1561279296875 0.07722355769230771 0.1485595703125 0.07722355769230771 0.1485595703125 0.09585336538461542 0.1563720703125 0.13491586538461542 0.1563720703125 0.15354567307692313 0.1639404296875 0.13491586538461542 0.6563720703125 0.3849158653846154 0.6563720703125 0.4227764423076923 0.6717529296875 0.3849158653846154 0.6719970703125 0.3849158653846154 0.6719970703125 0.4227764423076923 0.6873779296875 0.3849158653846154 0.7030029296875 0.42337740384615385 0.6876220703125 0.4612379807692307 0.6876220703125 0.42337740384615385 0.7186279296875 0.42337740384615385 0.7032470703125 0.4612379807692307 0.7032470703125 0.42337740384615385 0.6876220703125 0.3849158653846154 0.6876220703125 0.4227764423076923 0.7030029296875 0.3849158653846154 0.7032470703125 0.3849158653846154 0.7032470703125 0.4227764423076923 0.7186279296875 0.3849158653846154 0.4842529296875 0.3849158653846154 0.4766845703125 0.4227764423076923 0.4766845703125 0.3849158653846154 0.7188720703125 0.42337740384615385 0.7188720703125 0.4612379807692307 0.7264404296875 0.42337740384615385 0.6641845703125 0.8073918269230769 0.7344970703125 0.42337740384615385 0.7344970703125 0.4612379807692307 0.7498779296875 0.42337740384615385 0.7342529296875 0.3849158653846154 0.7188720703125 0.4227764423076923 0.7188720703125 0.3849158653846154 0.7498779296875 0.3849158653846154 0.7344970703125 0.4227764423076923 0.7344970703125 0.3849158653846154 0.7501220703125 0.42337740384615385 0.7501220703125 0.4612379807692307 0.7655029296875 0.42337740384615385 0.7811279296875 0.42337740384615385 0.7657470703125 0.4612379807692307 0.7657470703125 0.42337740384615385 0.7655029296875 0.3849158653846154 0.7501220703125 0.4227764423076923 0.7501220703125 0.3849158653846154 0.7811279296875 0.3849158653846154 0.7657470703125 0.4227764423076923 0.7657470703125 0.3849158653846154 0.7813720703125 0.42337740384615385 0.7813720703125 0.4612379807692307 0.7967529296875 0.42337740384615385 0.7342529296875 0.42337740384615385 0.7266845703125 0.4612379807692307 0.7266845703125 0.42337740384615385 0.7969970703125 0.42337740384615385 0.7969970703125 0.4612379807692307 0.8045654296875 0.42337740384615385 0.7813720703125 0.3849158653846154 0.7813720703125 0.4227764423076923 0.7967529296875 0.3849158653846154 0.7969970703125 0.3849158653846154 0.7969970703125 0.4227764423076923 0.8123779296875 0.3849158653846154 0.8280029296875 0.42337740384615385 0.8126220703125 0.4612379807692307 0.8126220703125 0.42337740384615385 0.8436279296875 0.42337740384615385 0.8282470703125 0.4612379807692307 0.8282470703125 0.42337740384615385 0.8201904296875 0.5003004807692308 0.8126220703125 0.5381610576923077 0.8280029296875 0.3849158653846154 0.8126220703125 0.4227764423076923 0.8126220703125 0.3849158653846154 0.8282470703125 0.3849158653846154 0.8282470703125 0.4227764423076923 0.8436279296875 0.3849158653846154 0.8438720703125 0.4612379807692307 0.8438720703125 0.42337740384615385 0.8592529296875 0.42337740384615385 0.8594970703125 0.4612379807692307 0.8594970703125 0.42337740384615385 0.8748779296875 0.42337740384615385 0.1641845703125 0.15354567307692313 0.1641845703125 0.13491586538461542 0.1717529296875 0.13491586538461542 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 0 1 1 0 2 3 1 1 1 2 0 4 3 3 4 2 5 5 4 3 4 4 3 6 6 5 7 4 8 7 9 5 10 6 11 8 12 7 13 6 14 9 15 7 16 8 17 1 18 11 19 10 20 12 21 11 22 1 23 13 24 12 25 1 26 14 27 12 28 13 29 15 30 14 30 13 31 16 32 14 33 15 33 17 32 16 32 15 33 19 34 7 35 18 36 20 37 7 37 19 38 21 39 20 37 19 38 22 40 20 41 21 42 23 43 22 44 21 45 24 46 22 47 23 48 27 49 26 50 25 51 28 52 26 53 27 54 29 55 28 56 27 57 30 58 28 59 29 60 31 61 30 62 29 63 32 64 30 65 31 66 35 67 34 68 33 69 36 70 34 71 35 72 37 73 36 74 35 75 38 76 36 77 37 78 39 79 38 80 37 81 40 82 38 83 39 84 38 85 41 86 36 87 42 82 41 82 38 83 43 88 42 89 38 90 44 91 42 92 43 93 45 92 44 91 43 93 46 94 44 95 45 96 15 33 47 97 17 32 48 98 47 99 15 100 13 29 48 28 15 27 22 25 48 25 13 24 20 24 22 25 13 24 50 101 27 102 49 103 29 104 27 105 50 106 51 107 29 108 50 109 31 110 29 111 51 112 46 113 31 114 51 115 54 116 53 117 52 118 55 117 53 117 54 116 56 119 55 120 54 121 57 122 55 123 56 124 60 125 59 126 58 127 61 126 59 126 60 125 62 128 61 129 60 130 63 131 61 132 62 133 12 21 64 22 11 22 65 134 64 135 12 136 14 137 65 138 12 139 16 140 65 141 14 142 66 22 22 21 24 22 48 21 22 21 66 22 67 143 48 144 66 145 47 146 48 147 67 148 70 149 69 150 68 151 71 151 69 150 70 149 72 152 71 153 70 154 70 155 73 156 72 157 74 158 73 159 70 160 75 161 74 162 70 163 70 163 76 162 75 161 77 158 76 158 70 160 78 164 77 165 70 166 81 167 80 168 79 168 82 169 80 168 81 167 83 169 82 169 81 167 70 166 84 165 78 164 85 170 84 171 70 172 68 153 85 152 70 154 81 173 87 174 86 175 88 176 87 176 81 177 89 178 88 179 81 180 81 180 90 179 89 178 91 181 90 182 81 183 79 168 91 168 81 167 53 184 93 185 92 186 94 187 93 188 53 189 95 190 94 191 53 192 59 193 97 194 96 195 98 196 97 197 59 198 99 199 98 200 59 201 81 202 100 203 83 204 101 174 100 175 81 173 86 175 101 174 81 173 35 205 103 206 102 207 104 206 103 206 35 205 33 208 104 209 35 210 105 211 35 212 102 213 37 214 35 215 105 216 39 217 37 218 105 219 44 220 106 221 42 222 50 223 106 224 44 225 51 226 50 227 44 228 107 229 1 230 10 231 0 232 1 233 107 234 108 235 55 236 57 237 109 238 55 239 108 240 110 241 55 242 109 243 111 244 55 245 110 246 112 247 55 248 111 249 113 250 55 251 112 252 113 185 53 184 55 184 114 185 53 184 113 185 3 10 13 9 1 10 5 10 13 9 3 10 7 9 13 9 5 10 20 253 13 253 7 253 115 194 59 193 96 195 58 254 59 255 115 256 116 257 61 258 63 259 117 260 61 261 116 262 119 263 30 264 118 265 28 266 30 267 119 268 120 269 27 270 25 271 49 272 27 273 120 274 121 262 61 261 117 260 122 275 61 276 121 277 123 278 61 279 122 280 124 281 61 282 123 283 125 284 30 285 32 286 118 287 30 288 125 289 124 194 59 193 61 193 126 194 59 193 124 194 127 290 7 291 9 292 18 293 7 294 127 295 43 296 40 297 45 297 38 90 40 89 43 88 128 298 53 299 92 300 52 301 53 302 128 303 53 304 114 305 95 306 59 307 126 308 99 309 46 310 51 311 44 312

+
+
+
+ + + + -18816 -136 9594 -18135 -296 9246 -18615 150 10479 -17902 -63 10052 -18160 282 11183 -17453 67 10740 -17023 -25 11411 -16772 106 10318 -16353 14 10979 -15685 71 10505 -15888 -145 11471 -15131 -125 11083 -14775 -308 11630 -14194 -503 11158 -13708 -639 11797 -13094 -1031 11213 -13244 -529 12309 -12225 -1106 12223 -12745 -460 12777 -12170 -610 13236 -12684 -184 13864 -11705 -697 13682 -12230 -246 14296 -11740 -197 14699 -12734 227 14883 -12282 326 15428 -12797 478 15490 -12913 476 15911 -13312 630 15552 -13261 472 16009 -13592 476 15892 -13185 235 16695 -13873 322 16232 -13789 -92 17309 -14378 -12 16805 -14877 -211 17376 -14974 5 16332 -16221 -132 16245 -15526 31 15686 -16229 9 15131 -15088 289 15088 -15512 223 14807 -15574 251 14460 -16659 27 14384 -17432 85 14890 -17420 138 13661 -18075 319 14170 -18545 520 13476 -18581 388 14644 -19136 637 13915 -19721 621 14344 -19632 832 13168 -20247 820 13569 -20754 871 12761 -20838 808 13965 -21341 906 13155 -22610 -280 13954 -21878 643 12288 -23595 -692 12022 -22416 22 11421 -13904 -242 19138 -13108 -89 19689 -14330 -302 19732 -13514 -139 20281 -14775 -493 20336 -13041 -23 21411 -13827 -1027 22675 -12231 428 21914 -12022 93 23595 -11421 879 22416 -10468 1352 22805 -11073 913 21758 -10224 1368 22200 -9881 1270 21498 -9275 1686 22553 -8989 1536 21856 -8143 1275 22213 -8704 1263 21156 -7887 1029 21495 -7595 730 20756 -7098 762 21803 -6869 455 21038 -6111 174 21317 -5858 -20 20547 -5004 -168 20813 -4901 -230 20018 -4066 -379 20183 -3673 -172 19396 -3174 -519 20172 -3053 -291 19416 -2329 -534 19556 -2587 -371 19256 -2255 -344 18775 -2858 -150 18744 -3424 31 18636 -3283 -70 18242 -3759 106 18547 -3704 36 18335 -4094 144 18457 -3990 2 18033 -4293 17 18000 -4491 -201 17543 -4845 -20 18258 -5270 -406 17388 -5485 -235 18071 -6212 -498 17768 -5713 -265 18637 -6257 -452 18250 -6642 -510 18428 -7203 -684 17616 -6834 -850 16776 -7922 -619 17124 -7623 -775 16490 -8253 -574 16172 -7209 -1032 15700 -7865 -882 15435 -7364 -2634 14454 -10072 666 24588 -9515 1517 23194 -8641 1302 23550 -8391 1355 22951 -7529 891 23212 -7311 896 22509 -6460 527 22762 -6328 459 22084 -5387 79 22253 -5192 -48 21519 -4349 -312 21723 -4254 -378 21007 -3336 -490 21139 -2312 -481 20467 -2083 -539 19846 -1441 -505 19673 -1535 -385 20433 -1573 -210 21255 -732 -322 20462 -676 -57 21327 -1 -25 21278 -773 168 22062 10 254 22024 35 525 22790 814 193 21959 889 453 22695 1724 318 22638 912 640 23463 1816 478 23391 1889 473 24176 2711 307 23335 2849 275 24106 3809 331 24031 2941 131 24911 3935 22 24848 4142 -692 26155 17954 1368 16584 17392 1270 16041 18583 1686 15790 18009 1536 15303 18609 1275 14609 17431 1263 14816 18005 1029 14144 17393 730 13638 18542 762 13488 17885 455 13034 18385 174 12400 17731 -20 11921 18248 -168 11190 17523 -230 10847 17938 -379 10104 17312 -172 9487 18204 -519 9252 17522 -291 8903 17879 -534 8259 17514 -371 8411 17159 -344 7946 16943 -150 8510 16665 31 9015 16334 -70 8759 16477 106 9307 16293 36 9189 16289 144 9598 15917 2 9367 15793 17 9645 15297 -201 9692 15867 -20 10250 14908 -406 10385 15491 -235 10801 14979 -498 11399 15959 -265 11193 15423 -452 11590 15474 -510 12012 14528 -684 12294 13843 -850 11684 13838 -619 12826 13328 -775 12346 12830 -574 12847 12704 -1032 11708 12249 -882 12250 11473 -2634 11470 -21691 -598 15759 -19688 274 15542 -20180 -1027 17269 -19039 -23 16310 -18725 -1263 18725 -17789 -390 17789 -16304 -540 19044 -15835 -425 18507 -15360 -330 17950 -13474 -227 18522 -12692 -105 19115 -11905 117 19581 -12232 -178 18515 -11496 -17 18923 -11043 -177 18344 -10754 241 19416 -10299 0 18854 -9656 100 19088 -9962 -311 18061 -9177 -338 18292 -8942 -435 17595 -8194 -536 17924 -8263 -554 17579 -8731 -384 16919 -9641 -314 17190 -9272 -103 16420 -9736 -94 16780 -10180 -59 16712 -10688 -332 17442 -10491 -53 16418 -10881 -164 16456 -10363 1 15735 -11188 -56 15401 -10624 -404 14617 -11195 -627 14091 -11211 -1222 13095 -10854 -7117 -10894 -11470 -2634 -11473 -9516 -2626 -13101 -11186 -1219 -13120 -10172 -1082 -14001 -11221 -890 -14121 -10636 -856 -14558 -11664 -652 -14783 -11081 -654 -15223 -11552 -492 -15884 -10505 -636 -15616 -10975 -494 -16304 -10397 -505 -16763 -11435 -322 -16985 -10768 -385 -17433 -11220 -210 -18120 -10159 -481 -17917 -10579 -368 -18640 -9726 -490 -19063 -10851 -298 -19282 -10062 -434 -19739 -10399 -342 -20409 -9250 -312 -20131 -9579 -220 -20792 -8721 79 -21170 -9886 -155 -21479 -9013 140 -21843 -9293 105 -22510 -8152 527 -22212 -8415 494 -22870 -7552 891 -23204 -8663 412 -23541 -7767 848 -23907 -8285 276 -25499 -6851 1302 -24132 -6304 666 -25813 -5935 1517 -24357 -4935 1352 -24603 -5752 1686 -23697 -4777 1368 -23970 -4642 1270 -23200 -3830 913 -24111 -3724 914 -23383 -24421 1355 -888 -23642 1275 -880 -24402 891 11 -23667 896 2 -23644 527 889 -22929 762 -13 -22959 459 805 -22163 174 775 -22829 79 1752 -22070 -48 1711 -22004 -312 2576 -21341 -168 1672 -21293 -378 2445 -20451 -379 2369 -21135 -490 3359 -20166 -519 3214 -20180 -481 4125 -19319 -534 3827 -19518 -539 4151 -19155 -505 4708 -19907 -385 4853 -20701 -210 5071 -19687 -322 5626 -20492 -57 5946 -20237 -25 6574 -21222 168 6081 -20943 254 6815 -21664 525 7076 -20632 193 7560 -21310 453 7859 -20997 318 8635 -22033 640 8118 -21685 478 8956 -22409 473 9267 -21355 307 9789 -22046 275 10158 -21678 331 11049 -22783 131 10495 -13098 -2626 -9519 -13745 -7117 -7028 -14454 -2634 -7366 -15399 -2626 -5005 -15919 -1222 -6615 -16451 -728 -5345 -16861 -627 -6292 -17185 -404 -5587 -17608 -197 -6623 -18104 -56 -5881 -18468 326 -6913 -18897 68 -6149 -19268 374 -7038 -19523 76 -6349 -20152 -35 -6572 -19725 -153 -5656 -20141 -184 -5965 -19891 -332 -4775 -20506 -290 -5769 -20847 -253 -5529 -21389 -178 -5912 -20858 -177 -4834 -21550 -17 -5085 -21789 241 -4227 -22302 117 -5271 -22586 479 -4362 -23230 542 -4562 -22669 768 -3554 -23389 914 -3683 -23499 1270 -2754 -24115 913 -3807 -24273 1368 -2863 -24924 1352 -2908 -24315 1686 -1852 -24999 1517 -1881 -25068 1302 -940 -26497 666 -1980 -26811 276 0 2539 -2634 16022 2379 -7117 15195 5005 -2626 15399 6990 -7117 13767 7366 -2634 14454 9519 -2626 13098 8990 -1222 14709 10167 -728 13994 9942 -627 15001 10618 -404 14621 10352 -197 15708 11189 -56 15400 10877 326 16448 11673 68 16082 11451 374 17019 12062 76 16612 12440 -35 17162 12633 -153 16170 12788 -184 16665 13285 -332 15555 13198 -290 16720 13615 -253 16727 13829 -178 17355 14033 -177 16171 14444 -17 16781 15143 241 16227 14944 117 17373 15708 479 16805 16112 542 17345 16250 768 16200 16757 914 16728 17271 913 17255 18454 1352 17003 19118 1517 16216 19727 1302 15496 20272 666 17177 21691 276 15759 19148 896 13909 19749 891 14333 19651 527 13177 20250 494 13555 20750 105 12748 20846 412 13953 21355 -23 13132 22624 -520 13928 21886 -269 12276 23595 -1027 12022 22416 -515 11421 22793 -267 10470 21733 -309 11067 22126 -180 10157 21447 -147 9858 22469 98 9250 21783 136 8965 22124 473 8094 21116 81 8669 21533 409 7782 20743 168 7553 21686 525 7009 20949 254 6796 21136 193 6010 20236 -25 6576 20427 -39 5929 19643 -298 5596 20553 -124 4992 19799 -308 4781 19964 -301 3986 19064 -458 4599 19252 -437 3857 18525 -535 3676 19438 -269 3076 18770 -226 2972 6618 -1031 15918 7847 -1106 15403 7614 -529 16400 8213 -460 16069 7923 -246 17110 8694 -33 16836 8900 264 17586 9631 350 17131 9871 549 17950 10154 490 17299 10194 581 17756 10677 630 17466 10534 493 18037 10914 476 17838 11150 322 18210 11804 235 17699 12201 -92 18463 12930 -211 17798 13452 -227 18538 14257 -105 17977 14675 -89 18550 15392 161 17935 15854 121 18487 16573 509 17878 17061 428 18404 17789 879 17789 18725 93 18725 -26155 93 -4142 -24848 879 -3935 -24621 428 -4861 -23917 509 -4721 -23693 121 -5637 -22995 161 -5462 -22776 -89 -6382 -22101 -105 -6164 -21779 -227 -7090 -20922 -211 -6799 -20723 -92 -7765 -19953 235 -7380 -19725 322 -8178 -19315 476 -8016 -19124 493 -8400 -18905 630 -7854 -18684 581 -8373 -18383 490 -8026 -18537 549 -8719 -17861 350 -8198 -17537 264 -8996 -16929 -33 -8510 -16467 -246 -9184 -16090 -460 -8173 -15799 -529 -8792 -15402 -1106 -7849 -14710 -1031 -8988 -12221 -982 -12220 -12319 -752 -13233 -11741 -909 -13705 -12826 -535 -13863 -12237 -638 -14329 -12720 -458 -14926 -12126 -478 -15431 -12602 -298 -16073 -12025 -306 -16545 -12506 -25 -17215 -11988 -57 -17651 -12342 168 -18304 -11582 -57 -18778 -11987 81 -19425 -11171 -210 -19930 -11556 -147 -20582 -10741 -277 -21076 -11077 -309 -21728 -10190 -188 -22145 -10490 -269 -22796 -9558 -23 -23176 -10116 -520 -24566 2838 -458 17920 2704 -982 17070 3660 -74 17815 4070 -685 16768 4272 -47 17585 4910 -135 17408 5144 71 18164 5514 -315 17172 5864 -125 17815 6225 -503 16947 6495 -308 17646 6983 -639 16683 7182 -412 17508 7638 -179 18164 8295 55 17860 8530 225 18526 9243 446 18392 9687 289 19012 10391 356 18608 10120 31 19614 10906 5 19288 10437 -132 20447 11928 -211 19519 10753 -203 21094 12324 -330 20156 12708 -425 20779 14338 -302 19726 13074 -540 21391 14775 -493 20336 13863 -1463 22657 15759 -1272 21691 -22735 1022 -2670 -21978 724 -2571 -22810 1263 -1741 -22040 854 -1675 -22087 730 -810 -21231 437 -1600 -21233 302 -719 -20459 -96 -754 -21224 112 7 -20214 -316 212 -20407 -206 904 -19559 -80 1073 -20553 -230 1524 -19680 -80 1736 -19582 -172 2500 -19164 85 1780 -19048 86 2016 -18820 144 1809 -18801 106 2155 -18582 36 2142 -18364 -70 2514 -17978 -149 2273 -17913 -224 2856 -17223 -578 2698 -17139 -679 3429 -16698 -1320 2642 -16467 -1401 3602 -16022 -2634 2536 -15399 -2626 5002 -15231 -7117 2424 -13715 -7117 6957 -12022 -1027 -23595 -11421 -515 -22416 -12285 -267 -21868 -11930 -180 -21223 -12741 98 -20690 -12353 136 -20056 -13141 473 -19553 -12846 409 -18953 -13424 525 -18417 -12953 254 -17812 -13566 193 -17286 -13040 -39 -16804 -13693 -124 -16120 -13207 -308 -15505 -13808 -301 -14959 -13308 -437 -14437 -13917 -269 -13914 -13437 -226 -13437 -7011 -7117 -13737 -7364 -2634 -14456 -5002 -2626 -15401 -6549 -1295 -15415 -5516 -1331 -15962 -6838 -507 -15964 -5869 -768 -16420 -6678 -201 -16833 -5956 -406 -17165 -6811 -20 -17619 -6184 -235 -17844 -7065 -80 -18270 -6332 -265 -18436 -6449 -316 -19159 -5458 -510 -18813 -5605 -96 -19691 -5172 -357 -19195 -4696 -352 -19246 -4527 -684 -18486 -5418 -498 -18026 -4331 -850 -17589 -5238 -648 -17384 -5054 -933 -16644 2972 -226 18770 3733 61 18575 3850 -23 19369 4629 106 19140 4028 -63 20132 4821 67 19918 5024 282 20727 5592 -25 19716 5813 190 20516 6549 33 20295 6045 488 21292 6837 301 21057 7086 520 21802 7609 138 20789 7891 319 21569 8775 85 21180 8185 388 22197 9064 127 21830 9345 86 22490 11078 -282 21740 11421 -390 22416 12022 -1263 23595 15401 -2626 5002 16761 -1219 4039 16459 -1082 5348 17378 -890 4828 17162 -856 5526 18126 -652 5103 17913 -654 5802 18682 -492 6060 17678 -636 6459 18462 -494 6739 18264 -505 7450 19235 -322 7019 18958 -385 7774 19728 -210 8064 18751 -481 8523 19515 -368 8861 19074 -490 9705 20113 -298 9221 19743 -434 10054 20409 -342 10398 19316 -312 10849 19971 -220 11190 19499 79 12000 20623 -155 11565 20131 140 12373 -25838 -1027 -6143 -24393 -23 -5786 -23465 -139 -6585 -23194 -302 -7531 -22498 -242 -7310 -21818 -330 -9062 -21123 -211 -8779 -20426 -12 -8481 -20160 5 -9194 -19344 356 -8946 -19716 31 -9919 -19012 289 -9687 -19406 9 -10759 -18876 223 -10177 -18565 251 -10343 -18288 446 -9446 -16191 -2626 -1 -16685 -1295 1465 -16885 -1331 313 -17296 -507 1570 -17430 -768 507 -18073 -201 1149 -18165 -406 360 -18862 -20 1033 -18881 -235 367 -19490 -265 325 -19579 -510 -622 -19854 -357 -1012 -19755 -352 -1480 -18980 -684 -1407 -18818 -498 -417 -18067 -850 -1315 -18152 -648 -390 -17391 -933 -336 -9979 -539 -17280 -9610 -534 -17190 -9288 -519 -18186 -8573 -379 -18718 -8905 -378 -19496 -8185 -168 -19779 -8448 -48 -20461 -7585 174 -20838 -7861 459 -21586 -7072 762 -21811 -7315 896 -22508 -6468 1275 -22757 -6701 1355 -23500 -15608 67 -13279 -16113 -25 -12663 -16248 282 -13816 -16762 190 -13180 -17406 488 -13672 -17228 33 -12569 -17909 301 -13017 -18376 138 -12346 -18548 520 -13473 -19062 319 -12811 -19669 388 -13146 -19548 85 -11977 -20165 127 -12333 -21099 -203 -10745 -20779 86 -12701 -21741 -282 -11076 -22416 -390 -11421 -22495 -425 -9341 -23150 -540 -9621 -23907 -493 -7767 -21114 0 -3969 -21138 100 -3285 -21901 478 -3435 -23564 1536 -1795 -25137 848 0 -25066 412 964 -26490 -520 2030 24583 -748 10083 23170 -18 9519 23519 344 8637 22801 436 8369 23101 828 7499 22376 678 7257 22597 640 6382 21859 453 6167 22063 318 5355 21299 75 5151 21480 31 4328 20708 -144 4135 20862 -136 3297 20106 -296 3179 -13961 -748 -22607 -13149 -18 -21320 -13950 344 -20812 -13527 436 -20173 -14281 828 -19645 -13837 678 -19023 -14530 640 -18446 -14059 453 -17838 -14701 318 -17300 -14203 75 -16686 -14834 31 -16127 -14323 -144 -15518 -14939 -136 -14930 -14398 -296 -14390 15698 478 15652 15170 100 15083 16269 724 14999 15681 305 14459 16235 437 13773 15195 -96 13880 15645 5 13261 15112 -352 12810 16108 -96 12635 15467 -357 12489 14514 -536 13332 14165 -554 13291 13970 -435 13941 14561 -338 14381 -24557 -389 10133 -23150 402 9568 -23509 618 8662 -22770 708 8387 -23097 828 7511 -22368 678 7281 -22657 473 6455 -21995 409 6361 -22179 81 5397 -21438 -57 5212 -21692 -298 4361 -20997 -368 4301 2048 -389 26487 1946 402 24974 973 618 25036 940 708 24248 6 828 24288 12 678 23524 -861 473 23543 -747 409 22884 -1720 81 22761 -1667 -57 22000 -2554 -298 21978 -2397 -368 21298 0 -304 26811 0 706 25097 -946 344 25037 -913 436 24271 -1853 98 24228 -1794 136 23487 -2748 -147 23443 -2677 -210 22690 -3582 -342 22624 -3461 -434 21883 -7800 -230 -19076 -8429 -172 -17851 -8942 -291 -17502 -9225 -371 -17099 -9211 -344 -16515 -8704 -150 -16844 -8183 31 -17089 -8066 -70 -16688 -7859 106 -17214 -7780 36 -17011 -7536 144 -17339 -7371 2 -16934 -7107 17 -17086 -25499 -304 8285 -23869 706 7755 -24104 344 6836 -23366 436 6631 -23615 98 5723 -22892 136 5551 -23145 -147 4630 -22407 -210 4465 -22624 -342 3583 -21882 -434 3470 -13992 -841 -10169 -14998 -503 -10051 -14555 -315 -10651 -15216 -125 -10966 -14838 71 -11671 -15820 -145 -11565 -15496 14 -12160 -14996 106 -12763 -15092 -63 -13920 -15719 150 -14465 -16288 427 -15016 -15480 23 -15469 -16824 632 -15540 -16053 269 -16042 -16625 521 -16615 18231 -539 8114 18664 -378 10537 18861 -48 11587 19048 459 12843 -16547 -233 -11910 -17093 -165 -11376 -16321 -347 -10899 -16717 -276 -10784 -16856 -179 -10205 -17447 -21 -10667 -18045 35 -11137 -17790 225 -9973 -18232 237 -10354 -18828 27 -11398 10780 -7117 11038 11243 -435 13093 12313 -287 13363 12751 -103 13892 13393 -384 13532 13369 -314 14481 13740 -398 14498 14099 -311 15056 14748 0 15622 -704 -494 19641 9 -492 19641 3 -306 20453 747 -298 20411 672 -39 21260 1603 -124 21090 1682 75 21848 2521 31 21767 2491 235 22646 3557 269 22414 3683 364 23214 17292 -746 20157 16333 -23 19019 15112 -139 19120 13904 -242 19138 11539 -12 18867 -15759 -304 -21691 -14752 706 -20304 -15503 618 -19682 -15013 708 -19064 -15739 473 -18448 -15219 478 -17856 -15909 307 -17285 -15326 235 -16856 -15207 -7117 -2593 -16022 -2634 -2539 -16792 -435 -3983 -17111 -882 -2710 -17816 -287 -3573 -17931 -574 -2852 -18482 -103 -3744 -18789 -384 -3075 -19328 -314 -3857 -19497 -435 -3067 -19638 -398 -3653 -20256 -311 -3893 -20011 -39 7209 -19181 -298 7018 -19451 -306 6324 -18677 -492 6078 -18897 -494 5399 -18098 -636 5165 -18452 -561 4376 -17590 -647 4308 -18553 -344 3656 -17808 -397 3505 -18709 -150 3073 -10083 -804 -14876 -9533 -647 -15398 -9230 -861 -14914 -8837 -397 -15853 -8558 -679 -15240 -8251 -224 -16154 -7888 -578 -15546 -7718 -149 -16396 -7207 -138 -16529 25499 -304 8285 23869 706 7755 24111 618 6811 23351 708 6598 23577 473 5674 22808 478 5500 23031 307 4632 22307 235 4628 22416 269 3543 21617 23 3415 -10035 478 19767 -9237 724 20108 -8905 305 19382 -8082 437 19697 -8505 -96 18740 -7777 5 18978 -7513 -352 18331 -7039 -96 19225 -7098 -357 18569 -1993 -748 26495 -1893 -18 24977 -2914 -267 24913 -2823 -180 24182 -3810 -309 24089 -3698 -277 23365 -4626 -155 23188 -4471 -220 22452 -17036 -861 4169 -16459 -1082 5348 -17264 -804 4992 -17133 -856 5617 -17903 -654 5834 -17664 -652 6525 -18423 -478 6764 -18126 -458 7484 -25815 -748 6291 -24340 -18 5917 -24594 -267 4926 -23871 -180 4787 -24088 -309 3820 -23364 -277 3703 -23483 -155 2765 -22735 -220 2685 -14500 -23 -13406 -13938 61 -12833 -14385 157 -12238 -13793 -47 -11715 -14204 -135 -11197 -6552 -1182 15965 -5002 -2626 15399 -4919 -1331 16155 -3762 -1295 16321 -3851 -507 16934 -2646 -1320 16697 -2755 -578 17214 -2034 -679 17360 -2819 -224 17919 -2168 -397 18019 -19409 -291 3096 -19113 -371 3489 -18782 31 2501 -20336 571 14775 -19127 356 15099 -18501 86 15837 -17960 127 15366 -16739 -203 16746 -4142 -1027 26155 -3935 -515 24848 -4912 -269 24608 -4772 -188 23906 -5712 105 23674 -5547 140 22969 -19562 -124 8042 -18828 -308 7769 -18494 -301 8509 -17843 -437 8195 -17534 -269 8937 -17148 -535 7914 -16932 -226 8627 -16165 -458 8237 -14486 356 15633 -14021 549 14935 -14636 446 14474 -13975 264 13899 -14983 225 13837 -14422 55 13408 -14915 -179 12877 -13824 -246 12823 -14431 -412 12240 13158 -1182 11165 13101 -2626 9516 13844 -1331 9671 14360 -1295 8621 14915 -507 8896 15062 -1320 7677 15520 -578 7940 15881 -679 7299 16171 -224 8218 16467 -397 7631 -26155 -1027 4142 -24848 -515 3935 -24922 -269 2932 -24211 -188 2848 -24280 105 1882 -23559 140 1822 -9864 -561 -16196 1 -2626 16191 1337 -1219 17189 0 -1082 17306 778 -890 18020 47 -856 18030 747 -652 18816 16 -654 18829 -680 -636 18809 12950 -94 14445 12748 -59 14846 12283 42 14318 11762 1 14718 11779 -151 13744 11247 -206 14187 -18968 -94 -4074 -19040 -59 -4517 -18353 42 -4363 -18167 1 -4993 -17608 -151 -4195 -17438 -206 -4866 -16168 35 13720 -15481 237 14140 -15537 -21 13296 -16101 -165 12741 -15422 -276 12566 -15409 -347 12154 -16440 -233 12056 -6253 1029 -22026 -6055 730 -21257 -5393 1263 -22232 -5217 854 -21479 -4346 724 -21697 -5039 437 -20686 -4187 305 -20915 -4134 -96 -20160 -3407 100 -21119 -3327 -338 -20193 -11701 -253 18118 -11823 -290 17719 -12931 -211 17797 -12478 -35 17134 -12648 374 16150 -13899 493 15593 -13737 581 15182 -13314 490 15003 -13023 428 15218 -13317 350 14453 -17253 -282 17254 7321 637 22500 6457 832 22741 7547 621 23189 6648 820 23449 6842 808 24134 5723 871 23682 5916 906 24361 4926 643 24605 6284 -59 25816 -7245 302 19971 -6551 112 20187 -6044 -316 19290 -5446 -206 19688 -5023 -80 18933 -4429 -80 19253 -4228 85 18776 -3968 86 18739 16754 302 13062 17174 112 12469 16478 -316 11709 17041 -206 11264 16454 -80 10628 16942 -80 10162 16550 85 9824 16596 86 9565 4750 689 23951 4629 740 23200 5560 897 22967 5392 785 22247 6277 703 22007 -17947 -138 1746 -18383 2 1777 -18446 17 1479 -18841 106 1421 -5694 -933 16436 -4903 -768 16734 -3885 -138 17609 -18013 703 -14114 -18591 916 -14602 -19148 637 -13899 -19736 621 -14323 -20271 356 -13525 -20866 274 -13921 -21395 -23 -13067 -22660 -1027 -13856 -23595 -1263 -12022 13872 -933 10494 14400 -768 9834 15546 -138 9136 -17439 785 -14828 -17998 981 -15312 -18550 1021 -15795 -17381 740 -16048 -17922 762 -16584 -17207 426 -17202 13749 -7117 6993 14456 -2634 7364 15439 -1401 6764 16233 -861 6640 16763 -647 6853 -11897 -184 17312 -11475 -153 17012 -12071 76 16605 -11687 68 16071 5213 575 21515 4350 427 21722 4477 632 22461 -7165 -7117 13663 -2400 -7117 15236 -2536 -2634 16022 -1662 -1401 16774 -1298 -861 17491 -1338 -647 18061 18880 -478 5356 19453 -306 6316 20074 -57 7234 20408 -57 8384 -15935 -1219 6584 -16897 -890 6308 -16663 -909 6931 -17410 -638 7210 7197 -21 20071 7142 -165 19250 6386 -233 19361 6797 -347 18411 6000 -145 18655 6448 -263 18218 2187 -752 17947 2227 -535 18755 3081 -269 19437 -8904 -287 15840 -9431 -151 15450 -8977 -435 14739 -10016 -206 15081 -10167 -728 13994 11128 472 17559 11142 476 17198 10777 478 16957 10448 428 17088 10219 227 16711 9266 -184 16347 -19324 472 -7665 -19123 476 -7364 -18686 478 -7384 -18497 428 -7683 -18090 227 -7512 -17105 -184 -7778 -11470 -2634 11470 -13098 -2626 9516 -13995 -841 10165 -14690 -685 9053 -15039 -135 10049 -15404 -47 9497 -16085 157 9899 -16512 61 9290 16823 1022 15523 740 -478 19611 1517 -458 19552 1477 -638 18786 1443 -909 17989 17920 -458 2837 17744 -752 3465 17070 -982 2702 16025 -2634 2536 15186 -7117 2434 -17226 -389 -20224 -16254 402 -19060 -17022 131 -18425 -16474 275 -17827 25823 -389 6236 24353 402 5866 24601 131 4901 23807 275 4739 24032 331 3803 23216 364 3670 -5876 302 -20416 -4862 5 -19925 -4279 -359 -19486 -3906 -536 -19317 -19184 -144 8826 -19922 31 9124 -20259 75 8352 -19496 23 9942 -19315 427 10850 -19978 632 11199 -19492 785 12003 -20634 740 11571 -20125 897 12385 -18851 575 11607 -18381 488 12329 -18990 703 12770 -17278 33 12501 -16864 -21 13047 -13433 -74 -12261 -13149 -685 -11173 -24995 -23 1928 -24351 494 936 -17231 -23 9647 -15812 -74 8987 -15398 -982 7847 -21691 -598 -15759 -20336 571 -14775 -19721 808 -15503 -19162 970 -15063 -3500 478 -21890 -3625 768 -22658 -4485 1022 -22447 -5574 1536 -22966 -21185 305 -2480 -20451 -96 -2297 -20233 -338 -3075 -6255 -520 25820 -5889 -23 24368 -6828 412 24137 -6634 494 23448 -21352 -20 777 -22131 455 -32 -22880 1029 -859 -11881 509 21287 -11517 542 20683 -12683 121 20791 -12301 161 20181 -9565 1022 20797 -10385 768 20461 8052 35 19617 7844 -21 18885 20336 848 14775 19234 1355 15073 -20768 235 9367 -20218 269 10309 -17208 55 -9573 -16101 -412 -9942 -15456 -639 -9391 -15627 -308 -10458 -3656 -619 -18510 -3647 -554 -19078 -3107 -435 -19490 12372 -53 15051 12288 -164 15434 -16349 -610 -7484 -18856 -53 -4904 -19013 -164 -5264 -13325 -33 13471 -8285 276 25499 -7767 848 23907 -20258 -263 -17191 -19106 906 -16231 -18448 643 -17010 8827 -610 15665 2466 -144 20973 3310 -136 20860 2378 -301 20219 3189 -296 20105 3431 23 21614 4214 150 20942 -18734 -619 -2243 -19579 -536 -2254 -19855 -359 -1951 5342 -841 16452 -7338 -20 -20066 -7166 -206 -19129 -15925 -263 -10948 8664 237 19093 8940 251 19280 -17208 -1182 -1298 9817 -246 16050 9395 -697 15360 5389 14 18946 4444 157 18356 -7673 -1320 -15064 -8514 -1401 -14548 9289 223 19329 9376 9 20111 8532 27 20288 -17159 -1032 -2004 -18039 -775 -2154 17555 -909 4186 18323 -638 4400 -9516 -2626 13098 -7733 -80 -18180 -7347 102 -17712 -7615 85 -17676 -7804 86 -17493 -6565 112 -20183 -6808 455 -21058 -12829 -458 -12829 -2709 -882 -17111 -3396 -1032 -16939 -2828 -574 -17935 -3525 -775 -17822 -9821 42 16107 12303 -138 15829 -17376 -246 -7214 -16630 -697 -6904 9628 -23 23147 8698 274 23527 10188 -1027 24529 8285 -429 25499 -19257 -138 -5574 -16864 575 -14341 -17264 -1463 20186 -15759 -1542 21691 -20940 364 10676 -21311 689 11919 -10932 -7117 10902 -14454 -2634 7364 8450 356 22857 -15333 -263 11763 -16392 -752 7626 -11252 -138 16592 -17715 190 11869 2280 -437 19502 -3393 -149 17801 15881 -149 8728 -10730 914 21106 -17789 217 -17789 -18725 -692 -18725 -4082 -1182 -16767 -2536 -2634 -16025 21261 -188 11926 -20462 -132 -10407 1570 -308 20307 -17914 301 13010 -9542 -398 17548 21078 -277 10737 -11128 479 20133 -14627 -315 10551 -586 -804 17962 -1539 -561 18901 16901 -804 6108 17500 -561 7305 -4470 106 18358 -4466 102 18648 16078 106 9924 16355 102 10010 -19272 -554 -2426 20752 -210 9557 -25499 -1542 -8285 -24533 -1463 -10181 -36 -7117 72 -2231 -7117 -15264 3929 -7117 -14624 -4142 93 -26155 -3935 879 -24848 10599 -7117 -10531 14594 -7117 -4325 -7174 106 -17479 7767 571 23907 -5980 -648 17143 -19115 102 1514 14456 -648 10985 -5664 -452 -18442 16846 854 14310 14915 -359 13249 7185 -276 18551 -8404 854 20443 -7991 -359 18280 -19290 -452 -311 -20453 5 -1532 -17620 -21 -12007 -2881 -384 -18820 26155 -692 4142 24848 22 3935 + + + + + + + + + + 0.998046875 0.72265625 0.998046875 0.66796875 0.966796875 0.72265625 0.966796875 0.662109375 0.935546875 0.720703125 0.935546875 0.662109375 0.904296875 0.662109375 0.935546875 0.58984375 0.904296875 0.591796875 0.904296875 0.517578125 0.876953125 0.58203125 0.87109375 0.498046875 0.84375 0.505859375 0.84375 0.439453125 0.814453125 0.4453125 0.81640625 0.3515625 0.779296875 0.443359375 0.75 0.34765625 0.748046875 0.439453125 0.716796875 0.431640625 0.71484375 0.505859375 0.6875 0.435546875 0.6875 0.505859375 0.66015625 0.50390625 0.6875 0.583984375 0.66015625 0.595703125 0.673828125 0.62890625 0.66796875 0.6640625 0.6875 0.6640625 0.67578125 0.685546875 0.6875 0.693359375 0.658203125 0.716796875 0.6875 0.724609375 0.66015625 0.7734375 0.6875 0.7734375 0.6875 0.814453125 0.71484375 0.775390625 0.748046875 0.818359375 0.744140625 0.767578125 0.77734375 0.775390625 0.748046875 0.72265625 0.767578125 0.73046875 0.77734375 0.71875 0.806640625 0.767578125 0.8125 0.818359375 0.845703125 0.7734375 0.845703125 0.818359375 0.875 0.81640625 0.84375 0.85546875 0.873046875 0.85546875 0.873046875 0.892578125 0.904296875 0.853515625 0.904296875 0.892578125 0.935546875 0.89453125 0.904296875 0.9296875 0.935546875 0.9296875 0.93359375 1 0.966796875 0.931640625 0.998046875 1 0.998046875 0.931640625 0.625 0.85546875 0.591796875 0.85546875 0.625 0.892578125 0.591796875 0.892578125 0.625 0.931640625 0.560546875 0.931640625 0.560546875 1 0.529296875 0.931640625 0.5 1 0.5 0.931640625 0.466796875 0.931640625 0.5 0.89453125 0.46875 0.896484375 0.466796875 0.85546875 0.435546875 0.89453125 0.435546875 0.85546875 0.404296875 0.85546875 0.435546875 0.814453125 0.404296875 0.814453125 0.404296875 0.771484375 0.375 0.81640625 0.37109375 0.767578125 0.34375 0.77734375 0.34765625 0.7265625 0.3125 0.7265625 0.318359375 0.671875 0.28515625 0.666015625 0.28125 0.58984375 0.25 0.65234375 0.25 0.580078125 0.21875 0.58984375 0.23046875 0.560546875 0.21875 0.509765625 0.24609375 0.5 0.27734375 0.509765625 0.27734375 0.46484375 0.294921875 0.509765625 0.298828125 0.466796875 0.314453125 0.509765625 0.314453125 0.462890625 0.328125 0.466796875 0.34375 0.423828125 0.34765625 0.5078125 0.376953125 0.427734375 0.375 0.505859375 0.40234375 0.5 0.375 0.57421875 0.3984375 0.552734375 0.40625 0.5859375 0.435546875 0.50390625 0.435546875 0.42578125 0.46875 0.50390625 0.46875 0.4296875 0.5 0.423828125 0.466796875 0.345703125 0.5 0.361328125 0.5 0.197265625 0.435546875 1 0.435546875 0.931640625 0.404296875 0.931640625 0.404296875 0.896484375 0.375 0.89453125 0.375 0.85546875 0.345703125 0.85546875 0.34765625 0.818359375 0.314453125 0.81640625 0.3125 0.7734375 0.283203125 0.7734375 0.283203125 0.728515625 0.25 0.7265625 0.21484375 0.669921875 0.20703125 0.615234375 0.18359375 0.595703125 0.185546875 0.6640625 0.18359375 0.724609375 0.154296875 0.662109375 0.150390625 0.7265625 0.125 0.72265625 0.15234375 0.775390625 0.125 0.7734375 0.123046875 0.81640625 0.095703125 0.7734375 0.09375 0.814453125 0.064453125 0.81640625 0.09375 0.85546875 0.064453125 0.85546875 0.0625 0.892578125 0.033203125 0.857421875 0.03125 0.892578125 0 0.89453125 0.03125 0.931640625 0 0.931640625 0 1 0.875 1 0.841796875 0.931640625 0.810546875 1 0.810546875 0.931640625 0.75 1 0.75 0.931640625 0.6875 0.931640625 0.6875 0.892578125 0.6875 0.85546875 0.625 0.814453125 0.591796875 0.818359375 0.55859375 0.818359375 0.58984375 0.77734375 0.55859375 0.7734375 0.556640625 0.728515625 0.52734375 0.775390625 0.5234375 0.73046875 0.5 0.72265625 0.525390625 0.669921875 0.5 0.66796875 0.5 0.58984375 0.46484375 0.587890625 0.474609375 0.55859375 0.5 0.513671875 0.53125 0.587890625 0.533203125 0.50390625 0.54296875 0.560546875 0.560546875 0.576171875 0.5625 0.658203125 0.578125 0.568359375 0.58984375 0.591796875 0.587890625 0.50390625 0.625 0.5234375 0.625 0.435546875 0.658203125 0.431640625 0.685546875 0.341796875 0 0.0078125 0 0.1953125 0.123046875 0.193359375 0.064453125 0.328125 0.123046875 0.3359375 0.091796875 0.419921875 0.123046875 0.41796875 0.09375 0.5078125 0.125 0.5078125 0.125 0.58984375 0.154296875 0.505859375 0.154296875 0.58984375 0.21484375 0.7265625 0.216796875 0.775390625 0.25 0.7734375 0.25 0.81640625 0.28125 0.814453125 0.28125 0.85546875 0.314453125 0.85546875 0.3125 0.892578125 0.34375 0.892578125 0.34375 0.931640625 0.375 0.931640625 0.375 1 0.5 0.85546875 0.998046875 0.197265625 0.998046875 0.0078125 0.876953125 0.193359375 0.75 0.0078125 0.75 0.1953125 0.623046875 0.193359375 0.625 0.369140625 0.625 0.603515625 0.65234375 0.6640625 0.625 0.662109375 0.625 0.7109375 0.59765625 0.6640625 0.603515625 0.69921875 0.591796875 0.71875 0.580078125 0.73828125 0.52734375 0.8203125 0.529296875 0.85546875 0.5 0.81640625 0.3125 0.931640625 0.314453125 1 0.28125 0.931640625 0.25 1 0.25 0.931640625 0.216796875 0.931640625 0.25 0.892578125 0.216796875 0.892578125 0.21875 0.85546875 0.185546875 0.892578125 0.185546875 0.85546875 0.154296875 0.85546875 0.185546875 0.81640625 0.150390625 0.822265625 0.099609375 0.7265625 0.095703125 0.662109375 0.064453125 0.72265625 0.064453125 0.662109375 0.033203125 0.662109375 0.064453125 0.58984375 0.033203125 0.591796875 0.03125 0.509765625 0 0.58984375 0 0.513671875 0.779296875 0.51171875 0.74609375 0.521484375 0.751953125 0.595703125 0.716796875 0.58984375 0.724609375 0.662109375 0.703125 0.626953125 0.708984375 0.662109375 0.703125 0.69140625 0.625 0.763671875 0.560546875 0.85546875 0.560546875 0.892578125 0.529296875 0.892578125 0 0.33203125 0.029296875 0.421875 0.0625 0.421875 0.0625 0.509765625 0.095703125 0.58984375 0.125 0.662109375 0.185546875 0.7734375 0.21875 0.814453125 0.25 0.85546875 0.28125 0.892578125 0.998046875 0.423828125 0.998046875 0.33203125 0.962890625 0.43359375 0.93359375 0.357421875 0.93359375 0.4453125 0.904296875 0.443359375 0.876953125 0.43359375 0.814453125 0.51953125 0.806640625 0.59765625 0.77734375 0.59375 0.78125 0.65625 0.75390625 0.669921875 0.71875 0.720703125 0.748046875 0.85546875 0.6875 1 0.625 1 0.466796875 0.814453125 0.466796875 0.771484375 0.435546875 0.771484375 0.435546875 0.720703125 0.404296875 0.720703125 0.408203125 0.666015625 0.37890625 0.71875 0.375 0.650390625 0.345703125 0.662109375 0.341796875 0.583984375 0.3125 0.595703125 0.3125 0.544921875 0.30078125 0.5390625 0.283203125 0.423828125 0.25 0.423828125 0.263671875 0.37109375 0.23046875 0.365234375 0.267578125 0.30859375 0.22265625 0.298828125 0.28125 0.1953125 0.28125 0.0078125 0.404296875 0.193359375 0.314453125 0.302734375 0.37109375 0.30859375 0.3125 0.37109375 0.357421875 0.365234375 0.41796875 0.611328125 0.435546875 0.6015625 0.40234375 0.427734375 0.400390625 0.365234375 0.998046875 0.513671875 0.966796875 0.513671875 0.966796875 0.59375 0.904296875 0.720703125 0.875 0.720703125 0.904296875 0.771484375 0.875 0.771484375 0.810546875 0.85546875 0.810546875 0.892578125 0.75 0.89453125 0.5 0.77734375 0.185546875 1 0.185546875 0.931640625 0.15625 0.931640625 0.154296875 0.892578125 0.125 0.892578125 0.125 0.85546875 0.064453125 0.7734375 0.033203125 0.7734375 0.033203125 0.72265625 0 0.72265625 0 0.66796875 0.466796875 0.720703125 0.462890625 0.666015625 0.435546875 0.6640625 0.064453125 1 0.0625 0.931640625 0.09375 0.931640625 0.09375 0.892578125 0.125 1 0.125 0.931640625 0.876953125 0.3515625 0.966796875 0.7734375 0.998046875 0.77734375 0.966796875 0.814453125 0.998046875 0.81640625 0.998046875 0.85546875 0.87109375 0.65234375 0.841796875 0.66796875 0.841796875 0.587890625 0.830078125 0.61328125 0.810546875 0.662109375 0.814453125 0.716796875 0.78515625 0.69921875 0.5 0.0078125 0.5 0.1953125 0.55859375 0.392578125 0.533203125 0.435546875 0.51953125 0.61328125 0.0390625 0.822265625 0 0.81640625 0 0.85546875 0 0.77734375 0.189453125 0.51953125 0.18359375 0.427734375 0.220703125 0.4296875 0.150390625 0.419921875 0.185546875 0.36328125 0.314453125 0.4140625 0.935546875 0.51953125 0.4375 0.337890625 0.873046875 0.9296875 0.841796875 0.892578125 0 0.423828125 0.560546875 0.505859375 0.560546875 0.451171875 0.591796875 0.451171875 0.6875 0.623046875 0.96875 0.896484375 0.966796875 0.85546875 0.935546875 0.85546875 0.935546875 0.814453125 0.90234375 0.814453125 0.330078125 0.509765625 0.998046875 0.89453125 0.935546875 0.771484375 0.849609375 0.72265625 0.853515625 0.556640625 0.453125 0.611328125 0.998046875 0.58984375 0.326171875 0.541015625 0.599609375 0.62109375 0.447265625 0.0078125 0.484375 0.0078125 0.25 0.0078125 0.49609375 0.0078125 0.44921875 0.0078125 0.396484375 0.0078125 0.32421875 0.0078125 0.251953125 0.0078125 0.17578125 0.0078125 0.107421875 0.0078125 0.048828125 0.0078125 0.015625 0.0078125 0.00390625 0.0078125 0.05078125 0.0078125 0.169921875 0.0078125 0.328125 0.0078125 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 1 1 0 0 3 3 1 1 2 2 4 4 3 3 2 2 5 5 3 3 4 4 6 6 5 5 4 4 7 7 5 5 6 6 8 8 7 7 6 6 9 9 7 7 8 8 10 10 9 9 8 8 11 11 9 9 10 10 12 12 11 11 10 10 13 13 11 11 12 12 14 14 13 13 12 12 15 15 13 13 14 14 16 16 15 15 14 14 17 17 15 15 16 16 18 18 17 17 16 16 19 19 17 17 18 18 20 20 19 19 18 18 21 21 19 19 20 20 22 22 21 21 20 20 23 23 21 21 22 22 24 24 23 23 22 22 25 25 23 23 24 24 26 26 25 25 24 24 27 27 25 25 26 26 28 28 27 27 26 26 29 29 27 27 28 28 30 30 29 29 28 28 31 31 29 29 30 30 32 32 31 31 30 30 33 33 31 31 32 32 34 34 33 33 32 32 35 35 33 33 34 34 36 36 35 35 34 34 37 37 35 35 36 36 38 38 37 37 36 36 39 39 37 37 38 38 40 40 39 39 38 38 41 41 39 39 40 40 42 42 41 41 40 40 39 39 41 41 42 42 43 43 39 39 42 42 44 44 39 39 43 43 45 45 44 44 43 43 46 46 44 44 45 45 47 47 46 46 45 45 48 48 46 46 47 47 49 49 48 48 47 47 50 50 48 48 49 49 51 51 50 50 49 49 52 52 50 50 51 51 53 53 52 52 51 51 54 54 52 52 53 53 55 55 54 54 53 53 56 56 54 54 55 55 57 57 56 56 55 55 58 58 56 56 57 57 59 59 58 58 57 57 62 62 61 61 60 60 63 63 61 61 62 62 64 64 63 63 62 62 65 65 63 63 64 64 66 66 65 65 64 64 67 67 65 65 66 66 68 68 67 67 66 66 69 69 67 67 68 68 70 70 69 69 68 68 71 71 69 69 70 70 72 72 71 71 70 70 73 73 71 71 72 72 74 74 73 73 72 72 75 75 73 73 74 74 76 76 75 75 74 74 77 77 75 75 76 76 78 78 77 77 76 76 79 79 77 77 78 78 80 80 79 79 78 78 81 81 79 79 80 80 82 82 81 81 80 80 83 83 81 81 82 82 84 84 83 83 82 82 85 85 83 83 84 84 86 86 85 85 84 84 87 87 85 85 86 86 88 88 87 87 86 86 89 89 87 87 88 88 90 90 89 89 88 88 91 91 89 89 90 90 92 92 91 91 90 90 89 89 91 91 92 92 93 93 89 89 92 92 94 94 89 89 93 93 95 95 94 94 93 93 96 96 94 94 95 95 97 97 96 96 95 95 98 98 96 96 97 97 99 99 98 98 97 97 100 100 98 98 99 99 101 101 100 100 99 99 102 102 100 100 101 101 103 103 102 102 101 101 104 104 102 102 103 103 105 105 104 104 103 103 106 106 104 104 105 105 107 107 106 106 105 105 108 108 106 106 107 107 105 105 108 108 107 107 109 109 108 108 105 105 110 110 109 109 105 105 111 111 109 109 110 110 112 112 111 111 110 110 113 113 111 111 112 112 114 114 113 113 112 112 115 115 113 113 114 114 116 116 115 115 114 114 117 117 70 70 68 68 118 118 70 70 117 117 119 119 118 118 117 117 74 74 118 118 119 119 120 120 74 74 119 119 76 76 74 74 120 120 121 121 76 76 120 120 122 122 76 76 121 121 123 123 122 122 121 121 80 80 122 122 123 123 124 124 80 80 123 123 82 82 80 80 124 124 125 125 82 82 124 124 126 126 82 82 125 125 127 127 126 126 125 125 84 84 126 126 127 127 128 128 84 84 127 127 86 86 84 84 128 128 129 129 86 86 128 128 88 88 86 86 129 129 130 130 88 88 129 129 90 90 88 88 130 130 131 131 90 90 130 130 132 132 90 90 131 131 130 130 132 132 131 131 133 133 132 132 130 130 134 134 133 133 130 130 135 135 133 133 134 134 136 136 135 135 134 134 137 137 135 135 136 136 138 138 137 137 136 136 139 139 137 137 138 138 140 140 139 139 138 138 141 141 139 139 140 140 142 142 141 141 140 140 143 143 141 141 142 142 144 144 143 143 142 142 145 145 143 143 144 144 146 146 145 145 144 144 147 147 145 145 146 146 148 148 147 147 146 146 149 149 147 147 148 148 150 150 149 149 148 148 151 151 149 149 150 150 152 152 151 151 150 150 155 74 154 73 153 72 156 75 154 73 155 74 157 76 156 75 155 74 158 77 156 75 157 76 159 78 158 77 157 76 160 79 158 77 159 78 161 80 160 79 159 78 162 81 160 79 161 80 163 82 162 81 161 80 164 83 162 81 163 82 165 84 164 83 163 82 166 85 164 83 165 84 167 86 166 85 165 84 168 87 166 85 167 86 169 88 168 87 167 86 170 89 168 87 169 88 171 90 170 89 169 88 172 91 170 89 171 90 173 92 172 91 171 90 170 89 172 91 173 92 174 93 170 89 173 92 175 94 170 89 174 93 176 95 175 94 174 93 177 96 175 94 176 95 178 97 177 96 176 95 179 98 177 96 178 97 180 99 179 98 178 97 181 100 179 98 180 99 182 101 181 100 180 99 183 102 181 100 182 101 184 103 183 102 182 101 185 104 183 102 184 103 186 105 185 104 184 103 187 106 185 104 186 105 188 107 187 106 186 105 189 108 187 106 188 107 186 105 189 108 188 107 190 109 189 108 186 105 191 110 190 109 186 105 192 111 190 109 191 110 193 112 192 111 191 110 194 113 192 111 193 112 195 114 194 113 193 112 196 115 194 113 195 114 197 116 196 115 195 114 200 155 199 154 198 153 201 156 199 154 200 155 202 157 201 156 200 155 203 158 201 156 202 157 204 159 203 158 202 157 205 160 203 158 204 159 62 62 205 160 204 159 206 161 205 160 62 62 60 60 206 161 62 62 207 162 206 161 60 60 61 61 207 162 60 60 208 163 207 162 61 61 209 164 208 163 61 61 210 165 208 163 209 164 211 166 210 165 209 164 212 167 210 165 211 166 213 168 212 167 211 166 214 169 212 167 213 168 215 170 214 169 213 168 216 171 214 169 215 170 217 172 216 171 215 170 218 173 216 171 217 172 219 174 218 173 217 172 220 175 218 173 219 174 111 111 220 175 219 174 218 173 220 175 111 111 221 176 218 173 111 111 222 177 218 173 221 176 223 178 222 177 221 176 224 179 222 177 223 178 225 180 224 179 223 178 226 181 224 179 225 180 227 182 226 181 225 180 228 183 226 181 227 182 229 184 228 183 227 182 230 185 228 183 229 184 231 186 230 185 229 184 23 23 230 185 231 186 232 187 23 23 231 186 21 21 23 23 232 187 233 188 21 21 232 187 19 19 21 21 233 188 17 17 19 19 233 188 236 191 235 190 234 189 237 192 235 190 236 191 238 193 237 192 236 191 239 194 237 192 238 193 240 195 239 194 238 193 241 196 239 194 240 195 242 197 241 196 240 195 243 198 241 196 242 197 244 199 243 198 242 197 245 200 243 198 244 199 246 132 245 200 244 199 247 135 245 200 246 132 248 133 247 135 246 132 249 134 247 135 248 133 250 130 249 134 248 133 251 201 249 134 250 130 252 129 251 201 250 130 253 202 251 201 252 129 254 203 253 202 252 129 255 204 253 202 254 203 256 127 255 204 254 203 257 205 255 204 256 127 258 125 257 205 256 127 259 206 257 205 258 125 260 207 259 206 258 125 261 208 259 206 260 207 262 123 261 208 260 207 263 209 261 208 262 123 264 121 263 209 262 123 265 210 263 209 264 121 266 211 265 210 264 121 267 212 265 210 266 211 268 119 267 212 266 211 269 117 267 212 268 119 270 118 269 117 268 119 271 70 269 117 270 118 272 74 271 70 270 118 273 72 271 70 272 74 274 73 273 72 272 74 275 71 273 72 274 73 276 213 275 71 274 73 279 121 278 76 277 120 280 122 278 76 279 121 281 123 280 122 279 121 282 80 280 122 281 123 283 124 282 80 281 123 284 82 282 80 283 124 285 125 284 82 283 124 286 126 284 82 285 125 287 127 286 126 285 125 288 84 286 126 287 127 289 128 288 84 287 127 290 86 288 84 289 128 291 129 290 86 289 128 292 88 290 86 291 129 293 130 292 88 291 129 294 90 292 88 293 130 295 131 294 90 293 130 296 132 294 90 295 131 293 130 296 132 295 131 297 133 296 132 293 130 298 134 297 133 293 130 299 135 297 133 298 134 300 136 299 135 298 134 301 137 299 135 300 136 302 138 301 137 300 136 303 139 301 137 302 138 304 140 303 139 302 138 305 141 303 139 304 140 306 142 305 141 304 140 307 143 305 141 306 142 308 144 307 143 306 142 309 145 307 143 308 144 310 146 309 145 308 144 311 147 309 145 310 146 312 148 311 147 310 146 313 149 311 147 312 148 314 150 313 149 312 148 59 151 313 149 314 150 58 152 59 151 314 150 315 216 234 215 235 214 316 217 234 215 315 216 317 218 316 217 315 216 318 219 316 217 317 218 319 188 318 219 317 218 320 220 318 219 319 188 321 187 320 220 319 188 322 186 320 220 321 187 323 23 322 186 321 187 324 185 322 186 323 23 325 25 324 185 323 23 326 221 324 185 325 25 327 222 326 221 325 25 328 223 326 221 327 222 329 224 328 223 327 222 330 225 328 223 329 224 331 226 330 225 329 224 332 181 330 225 331 226 333 227 332 181 331 226 334 228 332 181 333 227 335 165 334 228 333 227 336 167 334 228 335 165 337 166 336 167 335 165 338 168 336 167 337 166 339 164 338 168 337 166 340 229 338 168 339 164 341 230 340 229 339 164 342 231 340 229 341 230 343 213 342 231 341 230 344 73 342 231 343 213 345 71 344 73 343 213 346 72 344 73 345 71 347 70 346 72 345 71 348 74 346 72 347 70 349 118 348 74 347 70 350 119 348 74 349 118 351 117 350 119 349 118 352 212 350 119 351 117 355 216 354 215 353 214 356 217 354 215 355 216 357 218 356 217 355 216 358 219 356 217 357 218 359 188 358 219 357 218 360 220 358 219 359 188 361 187 360 220 359 188 362 186 360 220 361 187 363 23 362 186 361 187 364 185 362 186 363 23 365 25 364 185 363 23 366 221 364 185 365 25 367 222 366 221 365 25 368 223 366 221 367 222 369 224 368 223 367 222 370 225 368 223 369 224 371 226 370 225 369 224 372 181 370 225 371 226 373 227 372 181 371 226 374 228 372 181 373 227 375 165 374 228 373 227 376 167 374 228 375 165 377 166 376 167 375 165 378 168 376 167 377 166 379 164 378 168 377 166 380 229 378 168 379 164 381 230 380 229 379 164 382 231 380 229 381 230 383 213 382 231 381 230 154 73 382 231 383 213 384 71 154 73 383 213 153 72 154 73 384 71 385 70 153 72 384 71 155 74 153 72 385 70 386 118 155 74 385 70 387 119 155 74 386 118 388 117 387 119 386 118 389 212 387 119 388 117 157 76 161 80 159 78 390 122 161 80 157 76 391 121 390 122 157 76 392 123 390 122 391 121 393 209 392 123 391 121 394 208 392 123 393 209 395 210 394 208 393 209 396 232 394 208 395 210 397 233 396 232 395 210 398 234 396 232 397 233 399 235 398 234 397 233 400 236 398 234 399 235 401 237 400 236 399 235 402 238 400 236 401 237 403 239 402 238 401 237 404 240 402 238 403 239 405 241 404 240 403 239 406 242 404 240 405 241 407 243 406 242 405 241 408 244 406 242 407 243 409 245 408 244 407 243 410 138 408 244 409 245 411 140 410 138 409 245 412 139 410 138 411 140 413 141 412 139 411 140 414 137 412 139 413 141 415 246 414 137 413 141 416 247 414 137 415 246 417 248 416 247 415 246 418 249 416 247 417 248 419 250 418 249 417 248 420 251 418 249 419 250 421 252 420 251 419 250 422 253 420 251 421 252 423 254 422 253 421 252 424 255 422 253 423 254 425 15 357 218 355 216 426 17 357 218 425 15 427 16 426 17 425 15 428 18 426 17 427 16 429 256 428 18 427 16 430 257 428 18 429 256 431 258 430 257 429 256 432 259 430 257 431 258 433 260 432 259 431 258 434 261 432 259 433 260 435 262 434 261 433 260 436 28 434 261 435 262 437 263 436 28 435 262 438 30 436 28 437 263 439 32 438 30 437 263 440 31 438 30 439 32 441 33 440 31 439 32 442 264 440 31 441 33 443 162 442 264 441 33 375 165 442 264 443 162 444 163 375 165 443 162 379 164 375 165 444 163 445 61 379 164 444 163 446 265 379 164 445 61 447 266 446 265 445 61 381 230 446 265 447 266 448 267 381 230 447 266 384 71 381 230 448 267 449 67 384 71 448 267 450 69 384 71 449 67 451 68 450 69 449 67 385 70 450 69 451 68 388 117 385 70 451 68 386 118 385 70 388 117 347 70 351 117 349 118 452 68 351 117 347 70 453 69 452 68 347 70 454 67 452 68 453 69 345 71 454 67 453 69 455 267 454 67 345 71 341 230 455 267 345 71 456 266 455 267 341 230 457 265 456 266 341 230 458 61 456 266 457 265 339 164 458 61 457 265 459 163 458 61 339 164 335 165 459 163 339 164 460 162 459 163 335 165 461 264 460 162 335 165 462 33 460 162 461 264 463 31 462 33 461 264 464 32 462 33 463 31 465 30 464 32 463 31 466 263 464 32 465 30 467 28 466 263 465 30 468 262 466 263 467 28 469 261 468 262 467 28 470 260 468 262 469 261 471 259 470 260 469 261 472 258 470 260 471 259 473 257 472 258 471 259 474 256 472 258 473 257 475 18 474 256 473 257 476 16 474 256 475 18 477 17 476 16 475 18 478 15 476 16 477 17 317 218 478 15 477 17 315 216 478 15 317 218 237 192 479 268 235 190 480 269 479 268 237 192 481 270 480 269 237 192 482 253 480 269 481 270 483 271 482 253 481 270 484 251 482 253 483 271 241 196 484 251 483 271 485 272 484 251 241 196 243 198 485 272 241 196 486 247 485 272 243 198 487 273 486 247 243 198 488 137 486 247 487 273 247 135 488 137 487 273 489 136 488 137 247 135 249 134 489 136 247 135 490 138 489 136 249 134 491 274 490 138 249 134 492 244 490 138 491 274 253 202 492 244 491 274 493 275 492 244 253 202 255 204 493 275 253 202 494 240 493 275 255 204 495 276 494 240 255 204 496 238 494 240 495 276 259 206 496 238 495 276 497 277 496 238 259 206 261 208 497 277 259 206 498 234 497 277 261 208 499 232 498 234 261 208 500 233 498 234 499 232 265 210 500 233 499 232 267 212 500 233 265 210 503 280 502 279 501 278 504 281 502 279 503 280 505 282 504 281 503 280 506 283 504 281 505 282 507 9 506 283 505 282 508 284 506 283 507 9 509 11 508 284 507 9 510 13 508 284 509 11 511 12 510 13 509 11 512 14 510 13 511 12 513 285 512 14 511 12 429 256 512 14 513 285 514 286 429 256 513 285 515 287 429 256 514 286 516 288 515 287 514 286 431 258 515 287 516 288 517 289 431 258 516 288 433 260 431 258 517 289 518 40 433 260 517 289 519 290 433 260 518 40 520 38 519 290 518 40 521 36 519 290 520 38 522 37 521 36 520 38 523 35 521 36 522 37 524 291 523 35 522 37 525 161 523 35 524 291 526 160 525 161 524 291 527 62 525 161 526 160 528 159 527 62 526 160 529 64 527 62 528 159 530 292 529 64 528 159 531 293 529 64 530 292 534 77 533 295 532 294 535 296 533 295 534 77 536 79 535 296 534 77 537 297 535 296 536 79 538 298 537 297 536 79 539 299 537 297 538 298 540 300 539 299 538 298 541 301 539 299 540 300 542 302 541 301 540 300 543 303 541 301 542 302 544 85 543 303 542 302 545 304 543 303 544 85 546 87 545 304 544 85 547 305 545 304 546 87 548 306 547 305 546 87 549 98 547 305 548 306 550 96 549 98 548 306 551 97 549 98 550 96 552 95 551 97 550 96 553 307 551 97 552 95 554 308 553 307 552 95 555 309 553 307 554 308 556 310 555 309 554 308 557 311 555 309 556 310 558 312 557 311 556 310 559 313 557 311 558 312 560 191 559 313 558 312 561 314 559 313 560 191 562 189 561 314 560 191 563 235 498 234 500 233 564 236 498 234 563 235 565 237 564 236 563 235 496 238 564 236 565 237 566 239 496 238 565 237 494 240 496 238 566 239 567 241 494 240 566 239 568 242 494 240 567 241 569 243 568 242 567 241 492 244 568 242 569 243 570 245 492 244 569 243 490 138 492 244 570 245 571 140 490 138 570 245 572 139 490 138 571 140 573 141 572 139 571 140 488 137 572 139 573 141 574 246 488 137 573 141 486 247 488 137 574 246 575 248 486 247 574 246 576 249 486 247 575 248 577 250 576 249 575 248 484 251 576 249 577 250 578 252 484 251 577 250 482 253 484 251 578 252 579 254 482 253 578 252 580 255 482 253 579 254 581 314 236 191 234 189 582 313 236 191 581 314 583 315 582 313 581 314 584 316 582 313 583 315 585 317 584 316 583 315 586 318 584 316 585 317 587 319 586 318 585 317 588 101 586 318 587 319 589 103 588 101 587 319 590 102 588 101 589 103 591 104 590 102 589 103 592 303 590 102 591 104 593 106 592 303 591 104 594 301 592 303 593 106 595 108 594 301 593 106 596 299 594 301 595 108 597 320 596 299 595 108 598 321 596 299 597 320 595 108 598 321 597 320 599 109 598 321 595 108 600 105 599 109 595 108 601 110 599 109 600 105 602 322 601 110 600 105 603 323 601 110 602 322 589 103 603 323 602 322 587 319 603 323 589 103 604 324 503 280 501 278 605 325 503 280 604 324 606 326 605 325 604 324 607 7 605 325 606 326 608 3 607 7 606 326 609 5 607 7 608 3 610 4 609 5 608 3 611 6 609 5 610 4 612 327 611 6 610 4 613 328 611 6 612 327 614 329 613 328 612 327 615 330 613 328 614 329 616 47 615 330 614 329 617 45 615 330 616 47 618 46 617 45 616 47 619 44 617 45 618 46 620 48 619 44 618 46 621 331 619 44 620 48 622 332 621 331 620 48 524 291 621 331 622 332 623 333 524 291 622 332 526 160 524 291 623 333 624 158 526 160 623 333 528 159 526 160 624 158 625 157 528 159 624 158 530 292 528 159 625 157 628 193 627 192 626 191 629 194 627 192 628 193 630 195 629 194 628 193 631 196 629 194 630 195 632 197 631 196 630 195 633 198 631 196 632 197 634 199 633 198 632 197 635 200 633 198 634 199 636 132 635 200 634 199 637 135 635 200 636 132 638 133 637 135 636 132 639 134 637 135 638 133 640 130 639 134 638 133 641 201 639 134 640 130 642 129 641 201 640 130 643 202 641 201 642 129 644 203 643 202 642 129 645 204 643 202 644 203 646 127 645 204 644 203 647 205 645 204 646 127 648 125 647 205 646 127 649 206 647 205 648 125 650 207 649 206 648 125 394 208 649 206 650 207 392 123 394 208 650 207 454 67 651 66 452 68 652 65 651 66 454 67 456 266 652 65 454 67 653 63 652 65 456 266 458 61 653 63 456 266 654 62 653 63 458 61 655 60 654 62 458 61 656 161 654 62 655 60 460 162 656 161 655 60 657 35 656 161 460 162 462 33 657 35 460 162 658 34 657 35 462 33 464 32 658 34 462 33 659 36 658 34 464 32 660 290 659 36 464 32 661 38 659 36 660 290 662 40 661 38 660 290 663 39 661 38 662 40 664 41 663 39 662 40 665 42 663 39 664 41 662 40 665 42 664 41 666 289 665 42 662 40 470 260 666 289 662 40 472 258 666 289 470 260 667 315 559 313 561 314 668 316 559 313 667 315 669 317 668 316 667 315 670 318 668 316 669 317 671 319 670 318 669 317 672 101 670 318 671 319 673 103 672 101 671 319 674 102 672 101 673 103 675 104 674 102 673 103 543 303 674 102 675 104 676 106 543 303 675 104 541 301 543 303 676 106 677 108 541 301 676 106 539 299 541 301 677 108 678 320 539 299 677 108 679 321 539 299 678 320 677 108 679 321 678 320 680 109 679 321 677 108 681 105 680 109 677 108 682 110 680 109 681 105 683 322 682 110 681 105 684 323 682 110 683 322 673 103 684 323 683 322 671 319 684 323 673 103 246 132 250 130 248 133 685 131 250 130 246 132 686 90 685 131 246 132 250 130 685 131 686 90 687 88 250 130 686 90 252 129 250 130 687 88 688 86 252 129 687 88 689 128 252 129 688 86 690 84 689 128 688 86 256 127 689 128 690 84 691 126 256 127 690 84 258 125 256 127 691 126 692 82 258 125 691 126 693 124 258 125 692 82 694 80 693 124 692 82 262 123 693 124 694 80 695 122 262 123 694 80 264 121 262 123 695 122 696 76 264 121 695 122 697 120 264 121 696 76 272 74 697 120 696 76 268 119 697 120 272 74 270 118 268 119 272 74 700 4 699 6 698 5 701 327 699 6 700 4 702 329 701 327 700 4 703 328 701 327 702 329 704 330 703 328 702 329 705 45 703 328 704 330 706 47 705 45 704 330 707 46 705 45 706 47 708 48 707 46 706 47 709 44 707 46 708 48 710 331 709 44 708 48 711 291 709 44 710 331 712 332 711 291 710 331 713 333 711 291 712 332 714 158 713 333 712 332 715 160 713 333 714 158 716 159 715 160 714 158 654 62 715 160 716 159 717 64 654 62 716 159 653 63 654 62 717 64 652 65 653 63 717 64 336 167 332 181 334 228 718 169 332 181 336 167 338 168 718 169 336 167 719 170 718 169 338 168 720 334 719 170 338 168 533 295 719 170 720 334 342 231 533 295 720 334 532 294 533 295 342 231 344 73 532 294 342 231 534 77 532 294 344 73 721 75 534 77 344 73 278 76 534 77 721 75 348 74 278 76 721 75 277 120 278 76 348 74 350 119 277 120 348 74 279 121 277 120 350 119 722 211 279 121 350 119 723 210 279 121 722 211 352 212 723 210 722 211 724 233 723 210 352 212 725 335 401 237 399 235 726 336 401 237 725 335 727 337 726 336 725 335 405 241 726 336 727 337 728 338 405 241 727 337 407 243 405 241 728 338 729 339 407 243 728 338 730 340 407 243 729 339 731 144 730 340 729 339 411 140 730 340 731 144 732 142 411 140 731 144 413 141 411 140 732 142 733 143 413 141 732 142 734 341 413 141 733 143 735 342 734 341 733 143 417 248 734 341 735 342 736 343 417 248 735 342 419 250 417 248 736 343 737 344 419 250 736 343 738 345 419 250 737 344 739 335 565 237 563 235 740 336 565 237 739 335 741 337 740 336 739 335 567 241 740 336 741 337 742 338 567 241 741 337 569 243 567 241 742 338 743 339 569 243 742 338 744 340 569 243 743 339 745 144 744 340 743 339 571 140 744 340 745 144 746 142 571 140 745 144 573 141 571 140 746 142 747 143 573 141 746 142 748 341 573 141 747 143 749 342 748 341 747 143 575 248 748 341 749 342 750 343 575 248 749 342 577 250 575 248 750 343 751 344 577 250 750 343 752 345 577 250 751 344 755 295 754 170 753 334 756 346 754 170 755 295 757 297 756 346 755 295 758 347 756 346 757 297 759 348 758 347 757 297 760 321 758 347 759 348 761 299 760 321 759 348 762 320 760 321 761 299 189 108 762 320 761 299 760 321 762 320 189 108 190 109 760 321 189 108 763 174 760 321 190 109 192 111 763 174 190 109 764 175 763 174 192 111 765 173 764 175 192 111 763 174 764 175 765 173 766 172 763 174 765 173 758 347 763 174 766 172 754 170 758 347 766 172 756 346 758 347 754 170 314 150 767 349 58 152 768 350 767 349 314 150 310 146 768 350 314 150 769 351 768 350 310 146 770 352 769 351 310 146 771 339 769 351 770 352 308 144 771 339 770 352 772 340 771 339 308 144 304 140 772 340 308 144 773 243 772 340 304 140 774 245 773 243 304 140 775 244 773 243 774 245 302 138 775 244 774 245 776 274 775 244 302 138 298 134 776 274 302 138 777 202 776 274 298 134 778 201 777 202 298 134 291 129 777 202 778 201 293 130 291 129 778 201 150 150 779 349 152 152 780 350 779 349 150 150 146 146 780 350 150 150 781 351 780 350 146 146 782 352 781 351 146 146 783 339 781 351 782 352 144 144 783 339 782 352 784 340 783 339 144 144 140 140 784 340 144 144 785 243 784 340 140 140 786 245 785 243 140 140 787 244 785 243 786 245 138 138 787 244 786 245 788 274 787 244 138 138 134 134 788 274 138 138 789 202 788 274 134 134 790 201 789 202 134 134 129 129 789 202 790 201 130 130 129 129 790 201 781 351 779 349 780 350 791 353 779 349 781 351 792 354 791 353 781 351 793 337 791 353 792 354 783 339 793 337 792 354 794 338 793 337 783 339 785 243 794 338 783 339 795 241 794 338 785 243 796 242 795 241 785 243 797 240 795 241 796 242 787 244 797 240 796 242 798 275 797 240 787 244 789 202 798 275 787 244 799 204 798 275 789 202 800 203 799 204 789 202 127 127 799 204 800 203 129 129 127 127 800 203 128 128 127 127 129 129 688 86 801 85 690 84 802 87 801 85 688 86 687 88 802 87 688 86 803 89 802 87 687 88 686 90 803 89 687 88 804 91 803 89 686 90 805 92 804 91 686 90 803 89 804 91 805 92 806 93 803 89 805 92 807 94 803 89 806 93 808 95 807 94 806 93 809 96 807 94 808 95 810 97 809 96 808 95 811 98 809 96 810 97 812 99 811 98 810 97 813 100 811 98 812 99 588 101 813 100 812 99 590 102 813 100 588 101 769 351 767 349 768 350 814 353 767 349 769 351 815 354 814 353 769 351 816 337 814 353 815 354 771 339 816 337 815 354 817 338 816 337 771 339 773 243 817 338 771 339 818 241 817 338 773 243 819 242 818 241 773 243 820 240 818 241 819 242 775 244 820 240 819 242 821 275 820 240 775 244 777 202 821 275 775 244 822 204 821 275 777 202 823 203 822 204 777 202 287 127 822 204 823 203 291 129 287 127 823 203 289 128 287 127 291 129 824 355 478 15 315 216 825 13 478 15 824 355 826 284 825 13 824 355 827 11 825 13 826 284 828 9 827 11 826 284 829 10 827 11 828 9 830 8 829 10 828 9 699 6 829 10 830 8 831 7 699 6 830 8 698 5 699 6 831 7 832 3 698 5 831 7 700 4 698 5 832 3 833 2 700 4 832 3 834 356 700 4 833 2 835 357 834 356 833 2 836 358 834 356 835 357 837 359 836 358 835 357 838 360 836 358 837 359 636 132 640 130 638 133 839 131 640 130 636 132 171 90 839 131 636 132 640 130 839 131 171 90 169 88 640 130 171 90 642 129 640 130 169 88 167 86 642 129 169 88 840 128 642 129 167 86 165 84 840 128 167 86 646 127 840 128 165 84 841 126 646 127 165 84 648 125 646 127 841 126 163 82 648 125 841 126 842 124 648 125 163 82 161 80 842 124 163 82 392 123 842 124 161 80 390 122 392 123 161 80 703 328 699 6 701 327 843 361 699 6 703 328 844 362 843 361 703 328 845 363 843 361 844 362 846 364 845 363 844 362 847 286 845 363 846 364 844 362 847 286 846 364 848 365 847 286 844 362 849 366 848 365 844 362 850 288 848 365 849 366 851 367 850 288 849 366 665 42 850 288 851 367 849 366 665 42 851 367 852 43 665 42 849 366 705 45 852 43 849 366 709 44 852 43 705 45 707 46 709 44 705 45 358 219 853 368 356 217 197 369 853 368 358 219 854 370 197 369 358 219 196 115 197 369 854 370 855 371 196 115 854 370 194 113 196 115 855 371 856 178 194 113 855 371 857 176 194 113 856 178 858 177 857 176 856 178 765 173 857 176 858 177 859 372 765 173 858 177 860 171 765 173 859 372 372 181 860 171 859 372 861 169 860 171 372 181 376 167 861 169 372 181 378 168 861 169 376 167 135 135 863 198 862 200 864 273 863 198 135 135 137 137 864 273 135 135 865 247 864 273 137 137 866 246 865 247 137 137 867 248 865 247 866 246 141 141 867 248 866 246 868 341 867 248 141 141 143 143 868 341 141 141 869 342 868 341 143 143 870 373 869 342 143 143 871 374 869 342 870 373 147 147 871 374 870 373 872 375 871 374 147 147 149 149 872 375 147 147 449 67 873 66 451 68 874 65 873 66 449 67 447 266 874 65 449 67 875 63 874 65 447 266 445 61 875 63 447 266 527 62 875 63 445 61 876 60 527 62 445 61 525 161 527 62 876 60 443 162 525 161 876 60 523 35 525 161 443 162 441 33 523 35 443 162 877 34 523 35 441 33 439 32 877 34 441 33 521 36 877 34 439 32 519 290 521 36 439 32 878 353 741 337 739 335 879 354 741 337 878 353 880 351 879 354 878 353 743 339 879 354 880 351 881 352 743 339 880 351 745 144 743 339 881 352 882 146 745 144 881 352 883 145 745 144 882 146 884 147 883 145 882 146 747 143 883 145 884 147 885 373 747 143 884 147 749 342 747 143 885 373 837 374 749 342 885 373 835 376 749 342 837 374 318 219 886 368 316 217 887 369 886 368 318 219 888 370 887 369 318 219 889 115 887 369 888 370 890 371 889 115 888 370 891 113 889 115 890 371 892 178 891 113 890 371 893 176 891 113 892 178 894 177 893 176 892 178 895 173 893 176 894 177 896 372 895 173 894 177 897 171 895 173 896 372 332 181 897 171 896 372 718 169 897 171 332 181 899 247 301 137 898 246 900 273 301 137 899 247 901 198 900 273 899 247 299 135 900 273 901 198 902 200 299 135 901 198 296 132 299 135 902 200 903 199 296 132 902 200 904 377 296 132 903 199 905 378 904 377 903 199 906 92 904 377 905 378 907 379 906 92 905 378 908 93 906 92 907 379 554 308 908 93 907 379 552 95 908 93 554 308 240 195 244 199 242 197 909 380 244 199 240 195 238 193 909 380 240 195 910 378 909 380 238 193 911 381 910 378 238 193 912 379 910 378 911 381 913 310 912 379 911 381 914 308 912 379 913 310 915 309 914 308 913 310 916 307 914 308 915 309 586 318 916 307 915 309 917 382 916 307 586 318 588 101 917 382 586 318 812 99 917 382 588 101 918 353 727 337 725 335 919 354 727 337 918 353 920 351 919 354 918 353 729 339 919 354 920 351 921 352 729 339 920 351 731 144 729 339 921 352 922 146 731 144 921 352 923 145 731 144 922 146 924 147 923 145 922 146 733 143 923 145 924 147 925 373 733 143 924 147 735 342 733 143 925 373 926 374 735 342 925 373 927 376 735 342 926 374 929 295 215 170 928 334 930 346 215 170 929 295 931 297 930 346 929 295 932 347 930 346 931 297 933 348 932 347 931 297 934 321 932 347 933 348 935 299 934 321 933 348 936 320 934 321 935 299 108 108 936 320 935 299 934 321 936 320 108 108 109 109 934 321 108 108 219 174 934 321 109 109 111 111 219 174 109 109 793 337 937 335 791 353 938 336 937 335 793 337 795 241 938 336 793 337 939 237 938 336 795 241 940 239 939 237 795 241 941 238 939 237 940 239 797 240 941 238 940 239 942 276 941 238 797 240 799 204 942 276 797 240 943 206 942 276 799 204 944 205 943 206 799 204 125 125 943 206 944 205 127 127 125 125 944 205 907 379 556 310 554 308 945 381 556 310 907 379 905 378 945 381 907 379 946 193 945 381 905 378 947 380 946 193 905 378 948 195 946 193 947 380 903 199 948 195 947 380 949 197 948 195 903 199 901 198 949 197 903 199 950 196 949 197 901 198 951 272 950 196 901 198 952 251 950 196 951 272 899 247 952 251 951 272 816 337 953 335 814 353 954 336 953 335 816 337 818 241 954 336 816 337 955 237 954 336 818 241 956 239 955 237 818 241 957 238 955 237 956 239 820 240 957 238 956 239 958 276 957 238 820 240 822 204 958 276 820 240 959 206 958 276 822 204 960 205 959 206 822 204 285 125 959 206 960 205 287 127 285 125 960 205 833 2 751 0 835 357 752 1 751 0 833 2 832 3 752 1 833 2 961 326 752 1 832 3 831 7 961 326 832 3 962 325 961 326 831 7 963 383 962 325 831 7 964 282 962 325 963 383 828 9 964 282 963 383 965 283 964 282 828 9 826 284 965 283 828 9 824 355 965 283 826 284 966 384 116 116 114 114 967 315 116 116 966 384 968 317 967 315 966 384 969 316 967 315 968 317 970 318 969 316 968 317 971 311 969 316 970 318 972 309 971 311 970 318 973 310 971 311 972 309 974 308 973 310 972 309 975 379 973 310 974 308 93 93 975 379 974 308 92 92 975 379 93 93 290 86 544 85 288 84 546 87 544 85 290 86 292 88 546 87 290 86 976 89 546 87 292 88 294 90 976 89 292 88 977 91 976 89 294 90 906 92 977 91 294 90 976 89 977 91 906 92 908 93 976 89 906 92 978 94 976 89 908 93 552 95 978 94 908 93 550 96 978 94 552 95 198 153 54 54 56 56 979 385 54 54 198 153 199 154 979 385 198 153 50 50 979 385 199 154 980 386 50 50 199 154 48 48 50 50 980 386 981 332 48 48 980 386 982 331 48 48 981 332 983 291 982 331 981 332 44 44 982 331 983 291 37 37 44 44 983 291 39 39 44 44 37 37 939 237 937 335 938 336 984 235 937 335 939 237 985 236 984 235 939 237 986 234 984 235 985 236 941 238 986 234 985 236 987 277 986 234 941 238 943 206 987 277 941 238 988 208 987 277 943 206 989 207 988 208 943 206 123 123 988 208 989 207 125 125 123 123 989 207 124 124 123 123 125 125 305 141 301 137 303 139 898 246 301 137 305 141 990 248 898 246 305 141 899 247 898 246 990 248 991 249 899 247 990 248 952 251 899 247 991 249 992 250 952 251 991 249 993 252 952 251 992 250 994 254 993 252 992 250 995 253 993 252 994 254 996 255 995 253 994 254 997 387 995 253 996 255 998 290 38 38 36 36 40 40 38 38 998 290 999 260 40 40 998 290 1000 289 40 40 999 260 1001 258 1000 289 999 260 1002 288 1000 289 1001 258 1003 287 1002 288 1001 258 1004 286 1002 288 1003 287 1005 256 1004 286 1003 287 1006 285 1004 286 1005 256 14 14 1006 285 1005 256 12 12 1006 285 14 14 1007 384 197 116 195 114 1008 315 197 116 1007 384 1009 317 1008 315 1007 384 1010 316 1008 315 1009 317 1011 318 1010 316 1009 317 1012 311 1010 316 1011 318 1013 309 1012 311 1011 318 1014 310 1012 311 1013 309 1015 308 1014 310 1013 309 1016 379 1014 310 1015 308 174 93 1016 379 1015 308 173 92 1016 379 174 93 955 237 953 335 954 336 1017 235 953 335 955 237 1018 236 1017 235 955 237 1019 234 1017 235 1018 236 957 238 1019 234 1018 236 1020 277 1019 234 957 238 959 206 1020 277 957 238 1021 208 1020 277 959 206 1022 207 1021 208 959 206 281 123 1021 208 1022 207 285 125 281 123 1022 207 283 124 281 123 285 125 810 97 917 382 812 99 916 307 917 382 810 97 808 95 916 307 810 97 914 308 916 307 808 95 806 93 914 308 808 95 912 379 914 308 806 93 805 92 912 379 806 93 910 378 912 379 805 92 1023 377 910 378 805 92 244 199 910 378 1023 377 246 132 244 199 1023 377 1026 193 1025 192 1024 191 1027 194 1025 192 1026 193 1028 195 1027 194 1026 193 1029 196 1027 194 1028 195 1030 197 1029 196 1028 195 863 198 1029 196 1030 197 1031 199 863 198 1030 197 862 200 863 198 1031 199 132 132 862 200 1031 199 135 135 862 200 132 132 133 133 135 135 132 132 858 177 372 181 859 372 1032 179 372 181 858 177 856 178 1032 179 858 177 1033 180 1032 179 856 178 1034 388 1033 180 856 178 1035 184 1033 180 1034 388 1036 389 1035 184 1034 388 1037 390 1035 184 1036 389 854 370 1037 390 1036 389 360 220 1037 390 854 370 358 219 360 220 854 370 894 177 332 181 896 372 1038 179 332 181 894 177 892 178 1038 179 894 177 1039 180 1038 179 892 178 1040 388 1039 180 892 178 1041 184 1039 180 1040 388 1042 389 1041 184 1040 388 1043 390 1041 184 1042 389 888 370 1043 390 1042 389 320 220 1043 390 888 370 318 219 320 220 888 370 42 42 1044 366 43 43 1045 367 1044 366 42 42 1002 288 1045 367 42 42 1044 366 1045 367 1002 288 1046 365 1044 366 1002 288 1047 362 1044 366 1046 365 1004 286 1047 362 1046 365 1048 364 1047 362 1004 286 1049 363 1048 364 1004 286 1047 362 1048 364 1049 363 1050 361 1047 362 1049 363 694 80 696 76 695 122 1051 78 696 76 694 80 1052 79 1051 78 694 80 1053 77 1051 78 1052 79 1054 296 1053 77 1052 79 1055 295 1053 77 1054 296 1056 297 1055 295 1054 296 1057 346 1055 295 1056 297 1058 347 1057 346 1056 297 1059 170 1057 346 1058 347 1060 172 1059 170 1058 347 226 181 214 169 216 171 212 167 214 169 226 181 1061 228 212 167 226 181 210 165 212 167 1061 228 1062 227 210 165 1061 228 1063 264 210 165 1062 227 1064 224 1063 264 1062 227 31 31 1063 264 1064 224 1065 222 31 31 1064 224 29 29 31 31 1065 222 27 27 29 29 1065 222 32 32 36 36 34 34 998 290 36 36 32 32 1066 263 998 290 32 32 1067 262 998 290 1066 263 28 28 1067 262 1066 263 1068 261 1067 262 28 28 1069 391 1068 261 28 28 1070 259 1068 261 1069 391 24 24 1070 259 1069 391 20 20 1070 259 24 24 22 22 20 20 24 24 33 33 1063 264 31 31 207 162 1063 264 33 33 35 35 207 162 33 33 206 161 207 162 35 35 983 291 206 161 35 35 205 160 206 161 983 291 1071 333 205 160 983 291 203 158 205 160 1071 333 981 332 203 158 1071 333 201 156 203 158 981 332 199 154 201 156 981 332 616 47 620 48 618 46 1072 49 620 48 616 47 1073 51 1072 49 616 47 1074 50 1072 49 1073 51 1075 52 1074 50 1073 51 1076 54 1074 50 1075 52 1077 53 1076 54 1075 52 1078 55 1076 54 1077 53 1079 57 1078 55 1077 53 1080 56 1078 55 1079 57 152 58 1080 56 1079 57 1082 300 935 299 1081 298 1083 301 935 299 1082 300 1084 302 1083 301 1082 300 1085 303 1083 301 1084 302 85 85 1085 303 1084 302 1086 304 1085 303 85 85 87 87 1086 304 85 85 1087 305 1086 304 87 87 1088 306 1087 305 87 87 98 98 1087 305 1088 306 1090 300 761 299 1089 298 1091 301 761 299 1090 300 1092 302 1091 301 1090 300 1093 303 1091 301 1092 302 166 85 1093 303 1092 302 1094 304 1093 303 166 85 168 87 1094 304 166 85 1095 305 1094 304 168 87 1096 306 1095 305 168 87 179 98 1095 305 1096 306 1079 57 151 59 152 58 1097 392 151 59 1079 57 1077 53 1097 392 1079 57 1098 393 1097 392 1077 53 1099 394 1098 393 1077 53 1100 395 1098 393 1099 394 1073 51 1100 395 1099 394 1101 396 1100 395 1073 51 616 47 1101 396 1073 51 614 329 1101 396 616 47 670 318 555 309 557 311 553 307 555 309 670 318 1102 382 553 307 670 318 551 97 553 307 1102 382 1103 99 551 97 1102 382 549 98 551 97 1103 99 1104 100 549 98 1103 99 1105 397 549 98 1104 100 674 102 1105 397 1104 100 543 303 1105 397 674 102 110 110 114 114 112 112 966 384 114 114 110 110 1106 323 966 384 110 110 968 317 966 384 1106 323 1107 319 968 317 1106 323 970 318 968 317 1107 319 101 101 970 318 1107 319 1108 382 970 318 101 101 99 99 1108 382 101 101 97 97 1108 382 99 99 1110 51 706 47 1109 396 1111 49 706 47 1110 51 1112 50 1111 49 1110 51 708 48 1111 49 1112 50 1113 386 708 48 1112 50 712 332 708 48 1113 386 1114 154 712 332 1113 386 1115 156 712 332 1114 154 1116 155 1115 156 1114 154 1117 157 1115 156 1116 155 191 110 195 114 193 112 1007 384 195 114 191 110 1118 323 1007 384 191 110 1009 317 1007 384 1118 323 1119 319 1009 317 1118 323 1011 318 1009 317 1119 319 182 101 1011 318 1119 319 1120 382 1011 318 182 101 180 99 1120 382 182 101 178 97 1120 382 180 99 702 329 706 47 704 330 1109 396 706 47 702 329 1121 395 1109 396 702 329 1110 51 1109 396 1121 395 1122 394 1110 51 1121 395 1123 53 1110 51 1122 394 1124 393 1123 53 1122 394 1125 392 1123 53 1124 393 838 360 1125 392 1124 393 1126 398 1125 392 838 360 1008 315 853 368 197 116 1127 314 853 368 1008 315 1128 313 1127 314 1008 315 626 191 1127 314 1128 313 1129 312 626 191 1128 313 628 193 626 191 1129 312 1130 381 628 193 1129 312 1131 378 628 193 1130 381 1016 379 1131 378 1130 381 173 92 1131 378 1016 379 226 181 1062 227 1061 228 1132 226 1062 227 226 181 1133 225 1132 226 226 181 1064 224 1132 226 1133 225 1134 223 1064 224 1133 225 1065 222 1064 224 1134 223 1135 221 1065 222 1134 223 25 25 1065 222 1135 221 230 185 25 25 1135 221 23 23 25 25 230 185 610 4 614 329 612 327 1136 399 614 329 610 4 1137 356 1136 399 610 4 1100 395 1136 399 1137 356 1138 358 1100 395 1137 356 1098 393 1100 395 1138 358 872 360 1098 393 1138 358 1097 392 1098 393 872 360 149 398 1097 392 872 360 151 59 1097 392 149 398 967 315 1139 368 116 116 1140 314 1139 368 967 315 1141 313 1140 314 967 315 1024 191 1140 314 1141 313 1142 312 1024 191 1141 313 1026 193 1024 191 1142 312 1143 381 1026 193 1142 312 1144 378 1026 193 1143 381 975 379 1144 378 1143 381 92 92 1144 378 975 379 633 198 416 247 1145 272 1146 273 416 247 633 198 637 135 1146 273 633 198 414 137 1146 273 637 135 1147 136 414 137 637 135 410 138 414 137 1147 136 639 134 410 138 1147 136 1148 274 410 138 639 134 643 202 1148 274 639 134 408 244 1148 274 643 202 946 193 560 191 558 312 1149 192 560 191 946 193 1150 194 1149 192 946 193 1151 270 1149 192 1150 194 950 196 1151 270 1150 194 1152 271 1151 270 950 196 952 251 1152 271 950 196 995 253 1152 271 952 251 993 252 995 253 952 251 1154 362 613 328 1153 400 1155 361 613 328 1154 362 1156 363 1155 361 1154 362 1157 10 1155 361 1156 363 1158 401 1157 10 1156 363 511 12 1157 10 1158 401 1156 363 511 12 1158 401 513 285 511 12 1156 363 514 286 513 285 1156 363 1024 191 354 189 1140 314 353 190 354 189 1024 191 1025 192 353 190 1024 191 502 268 353 190 1025 192 1159 269 502 268 1025 192 501 387 502 268 1159 269 1160 253 501 387 1159 269 604 255 501 387 1160 253 1161 254 604 255 1160 253 113 113 221 176 111 111 223 178 221 176 113 113 1162 371 223 178 113 113 1163 389 223 178 1162 371 1164 370 1163 389 1162 371 1165 390 1163 389 1164 370 1166 220 1165 390 1164 370 231 186 1165 390 1166 220 232 187 231 186 1166 220 367 222 440 31 369 224 1167 29 440 31 367 222 1168 27 1167 29 367 222 436 28 1167 29 1168 27 1169 26 436 28 1168 27 1170 391 436 28 1169 26 1171 24 1170 391 1169 26 432 259 1170 391 1171 24 1172 20 432 259 1171 24 327 222 463 31 329 224 1173 29 463 31 327 222 1174 27 1173 29 327 222 467 28 1173 29 1174 27 1175 26 467 28 1174 27 1176 391 467 28 1175 26 1177 24 1176 391 1175 26 471 259 1176 391 1177 24 1178 20 471 259 1177 24 1180 216 15 15 1179 218 1181 355 15 15 1180 216 1182 281 1181 355 1180 216 1183 283 1181 355 1182 281 1184 282 1183 283 1182 281 9 9 1183 283 1184 282 1185 383 9 9 1184 282 7 7 9 9 1185 383 1186 325 7 7 1185 383 158 77 154 73 156 75 1187 294 154 73 158 77 755 295 1187 294 158 77 382 231 1187 294 755 295 753 334 382 231 755 295 378 168 382 231 753 334 754 170 378 168 753 334 861 169 378 168 754 170 860 171 861 169 754 170 865 247 863 198 864 273 1188 272 863 198 865 247 1189 251 1188 272 865 247 1029 196 1188 272 1189 251 1190 271 1029 196 1189 251 1191 270 1029 196 1190 271 1160 253 1191 270 1190 271 1159 269 1191 270 1160 253 1192 387 422 253 424 255 1193 269 422 253 1192 387 1194 268 1193 269 1192 387 627 192 1193 269 1194 268 1195 190 627 192 1194 268 626 191 627 192 1195 190 1196 189 626 191 1195 190 1127 314 626 191 1196 189 1197 349 880 351 878 353 1198 350 880 351 1197 349 1199 150 1198 350 1197 349 882 146 1198 350 1199 150 1200 148 882 146 1199 150 884 147 882 146 1200 148 1126 149 884 147 1200 148 838 375 884 147 1126 149 1201 349 920 351 918 353 1202 350 920 351 1201 349 1203 150 1202 350 1201 349 922 146 1202 350 1203 150 1204 148 922 146 1203 150 924 147 922 146 1204 148 1205 149 924 147 1204 148 1206 375 924 147 1205 149 596 299 1056 297 1207 298 1208 348 1056 297 596 299 598 321 1208 348 596 299 1058 347 1208 348 598 321 1209 402 1058 347 598 321 1210 174 1058 347 1209 402 598 321 1210 174 1209 402 599 109 1210 174 598 321 992 250 1 345 994 254 0 344 1 345 992 250 1211 343 0 344 992 250 1212 342 0 344 1211 343 990 248 1212 342 1211 343 1213 341 1212 342 990 248 305 141 1213 341 990 248 307 143 1213 341 305 141 1214 357 2 2 0 0 1215 356 2 2 1214 357 1216 358 1215 356 1214 357 1217 395 1215 356 1216 358 1218 393 1217 395 1216 358 1219 394 1217 395 1218 393 53 53 1219 394 1218 393 51 51 1219 394 53 53 1215 356 4 4 2 2 1220 399 4 4 1215 356 1217 395 1220 399 1215 356 1221 329 1220 399 1217 395 1222 396 1221 329 1217 395 47 47 1221 329 1222 396 51 51 47 47 1222 396 49 49 47 47 51 51 6 6 10 10 8 8 1050 361 10 10 6 6 1223 328 1050 361 6 6 1047 362 1050 361 1223 328 1224 400 1047 362 1223 328 1044 366 1047 362 1224 400 45 45 1044 366 1224 400 43 43 1044 366 45 45 961 326 579 403 752 1 580 324 579 403 961 326 962 325 580 324 961 326 1225 280 580 324 962 325 964 282 1225 280 962 325 1226 281 1225 280 964 282 965 283 1226 281 964 282 824 355 1226 281 965 283 1019 234 724 233 1017 235 1227 232 724 233 1019 234 1021 208 1227 232 1019 234 723 210 1227 232 1021 208 1228 209 723 210 1021 208 279 121 723 210 1228 209 281 123 279 121 1228 209 7 7 3 3 5 5 1229 326 3 3 7 7 1186 325 1229 326 7 7 996 324 1229 326 1186 325 1230 280 996 324 1186 325 997 278 996 324 1230 280 1231 279 997 278 1230 280 1114 154 1232 153 1116 155 1233 385 1232 153 1114 154 1112 50 1233 385 1114 154 1234 54 1233 385 1112 50 1235 52 1234 54 1112 50 1123 53 1234 54 1235 52 1110 51 1123 53 1235 52 1237 231 1055 295 1236 334 1238 294 1055 295 1237 231 274 73 1238 294 1237 231 1053 77 1238 294 274 73 1239 75 1053 77 274 73 696 76 1053 77 1239 75 272 74 696 76 1239 75 537 297 533 295 535 296 1240 346 533 295 537 297 1241 347 1240 346 537 297 719 170 1240 346 1241 347 1242 172 719 170 1241 347 897 171 719 170 1242 172 895 173 897 171 1242 172 986 234 1243 233 984 235 1244 232 1243 233 986 234 988 208 1244 232 986 234 1245 210 1244 232 988 208 1246 209 1245 210 988 208 121 121 1245 210 1246 209 123 123 121 121 1246 209 540 300 1247 83 542 302 1248 81 1247 83 540 300 536 79 1248 81 540 300 282 80 1248 81 536 79 1249 78 282 80 536 79 278 76 282 80 1249 78 534 77 278 76 1249 78 71 71 67 67 69 69 1250 267 67 67 71 71 1251 230 1250 267 71 71 1252 266 1250 267 1251 230 1253 265 1252 266 1251 230 61 61 1252 266 1253 265 209 164 61 61 1253 265 77 77 73 73 75 75 1254 294 73 73 77 77 929 295 1254 294 77 77 1255 231 1254 294 929 295 928 334 1255 231 929 295 213 168 1255 231 928 334 215 170 213 168 928 334 617 45 613 328 615 330 1153 400 613 328 617 45 1256 366 1153 400 617 45 1154 362 1153 400 1256 366 1257 365 1154 362 1256 366 514 286 1154 362 1257 365 516 288 514 286 1257 365 395 210 389 212 397 233 1258 211 389 212 395 210 391 121 1258 211 395 210 387 119 1258 211 391 121 1259 120 387 119 391 121 155 74 387 119 1259 120 157 76 155 74 1259 120 931 297 935 299 933 348 1081 298 935 299 931 297 79 79 1081 298 931 297 1082 300 1081 298 79 79 81 81 1082 300 79 79 83 83 1082 300 81 81 311 147 307 143 309 145 1260 373 307 143 311 147 1261 374 1260 373 311 147 1212 342 1260 373 1261 374 1214 376 1212 342 1261 374 0 344 1212 342 1214 376 474 256 847 286 1262 287 1263 285 847 286 474 256 1264 14 1263 285 474 256 1265 12 1263 285 1264 14 825 13 1265 12 1264 14 827 11 1265 12 825 13 1266 111 1210 174 599 109 1267 175 1210 174 1266 111 1268 173 1267 175 1266 111 1210 174 1267 175 1268 173 1060 172 1210 174 1268 173 1058 347 1210 174 1060 172 1033 180 372 181 1032 179 1269 182 372 181 1033 180 1035 184 1269 182 1033 180 1270 183 1269 182 1035 184 364 185 1270 183 1035 184 366 221 1270 183 364 185 477 17 319 188 317 218 1271 19 319 188 477 17 475 18 1271 19 477 17 1178 20 1271 19 475 18 473 257 1178 20 475 18 471 259 1178 20 473 257 1039 180 332 181 1038 179 1272 182 332 181 1039 180 1041 184 1272 182 1039 180 1273 183 1272 182 1041 184 324 185 1273 183 1041 184 326 221 1273 183 324 185 1070 259 999 260 1068 261 1001 258 999 260 1070 259 1274 257 1001 258 1070 259 1005 256 1001 258 1274 257 18 18 1005 256 1274 257 16 16 1005 256 18 18 1245 210 1243 233 1244 232 1275 212 1243 233 1245 210 1276 211 1275 212 1245 210 119 119 1275 212 1276 211 121 121 119 119 1276 211 120 120 119 119 121 121 1234 54 1232 153 1233 385 1277 56 1232 153 1234 54 1278 55 1277 56 1234 54 1279 57 1277 56 1278 55 1123 53 1279 57 1278 55 1125 392 1279 57 1123 53 426 17 359 188 357 218 1280 19 359 188 426 17 428 18 1280 19 426 17 1172 20 1280 19 428 18 430 257 1172 20 428 18 432 259 1172 20 430 257 869 342 867 248 868 341 1281 343 867 248 869 342 1282 344 1281 343 869 342 1283 250 1281 343 1282 344 1284 345 1283 250 1282 344 1161 254 1283 250 1284 345 757 297 761 299 759 348 1089 298 761 299 757 297 160 79 1089 298 757 297 1090 300 1089 298 160 79 162 81 1090 300 160 79 164 83 1090 300 162 81 1138 358 871 359 872 360 1285 357 871 359 1138 358 1137 356 1285 357 1138 358 1286 2 1285 357 1137 356 610 4 1286 2 1137 356 608 3 1286 2 610 4 1288 174 680 109 1287 111 679 321 680 109 1288 174 1289 402 679 321 1288 174 1241 347 679 321 1289 402 1288 174 1241 347 1289 402 1242 172 1241 347 1288 174 504 281 353 214 502 279 355 216 353 214 504 281 1290 355 355 216 504 281 425 15 355 216 1290 355 510 13 425 15 1290 355 512 14 425 15 510 13 690 84 692 82 691 126 1291 83 692 82 690 84 801 85 1291 83 690 84 1292 302 1291 83 801 85 592 303 1292 302 801 85 594 301 1292 302 592 303 1083 301 108 108 935 299 106 106 108 108 1083 301 1085 303 106 106 1083 301 104 104 106 106 1085 303 102 102 104 104 1085 303 1091 301 189 108 761 299 187 106 189 108 1091 301 1093 303 187 106 1091 301 185 104 187 106 1093 303 183 102 185 104 1093 303 829 10 1265 12 827 11 1293 401 1265 12 829 10 845 363 1293 401 829 10 1265 12 1293 401 845 363 1263 285 1265 12 845 363 1256 366 516 288 1257 365 1294 367 516 288 1256 366 1295 42 1294 367 1256 366 516 288 1294 367 1295 42 517 289 516 288 1295 42 669 317 684 323 671 319 1296 384 684 323 669 317 667 315 1296 384 669 317 887 116 1296 384 667 315 886 368 887 116 667 315 363 23 1171 24 365 25 1297 22 1171 24 363 23 1298 21 1297 22 363 23 1172 20 1297 22 1298 21 1280 19 1172 20 1298 21 507 9 607 7 1299 8 1300 383 607 7 507 9 505 282 1300 383 507 9 605 325 1300 383 505 282 503 280 605 325 505 282 1301 311 584 316 586 318 582 313 584 316 1301 311 1302 312 582 313 1301 311 236 191 582 313 1302 312 238 193 236 191 1302 312 1295 42 518 40 517 289 1303 41 518 40 1295 42 1304 39 1303 41 1295 42 518 40 1303 41 1304 39 520 38 518 40 1304 39 1304 39 522 37 520 38 619 44 522 37 1304 39 1305 43 619 44 1304 39 617 45 619 44 1305 43 1256 366 617 45 1305 43 891 113 1306 114 889 115 1307 112 1306 114 891 113 1287 111 1307 112 891 113 682 110 1307 112 1287 111 680 109 682 110 1287 111 1308 270 1193 269 627 192 422 253 1193 269 1308 270 1309 271 422 253 1308 270 420 251 422 253 1309 271 631 196 420 251 1309 271 1166 220 233 188 232 187 1310 219 233 188 1166 220 1164 370 1310 219 1166 220 116 369 1310 219 1164 370 115 115 116 369 1164 370 1311 304 592 303 801 85 1312 404 592 303 1311 304 1313 305 1312 404 1311 304 811 98 1312 404 1313 305 1314 306 811 98 1313 305 1315 300 1292 302 594 301 1291 83 1292 302 1315 300 1316 81 1291 83 1315 300 692 82 1291 83 1316 81 694 80 692 82 1316 81 1225 280 1317 278 580 324 479 279 1317 278 1225 280 1226 281 479 279 1225 280 235 214 479 279 1226 281 315 216 235 214 1226 281 1052 79 1056 297 1054 296 1207 298 1056 297 1052 79 1315 300 1207 298 1052 79 596 299 1207 298 1315 300 594 301 596 299 1315 300 1320 113 1319 114 1318 115 1321 112 1319 114 1320 113 1266 111 1321 112 1320 113 601 110 1321 112 1266 111 599 109 601 110 1266 111 229 184 1165 390 231 186 1163 389 1165 390 229 184 1322 388 1163 389 229 184 223 178 1163 389 1322 388 225 180 223 178 1322 388 1270 183 372 181 1269 182 1323 405 372 181 1270 183 366 221 1323 405 1270 183 370 225 1323 405 366 221 368 223 370 225 366 221 611 6 607 7 609 5 1299 8 607 7 611 6 1157 10 1299 8 611 6 507 9 1299 8 1157 10 509 11 507 9 1157 10 323 23 1177 24 325 25 1324 22 1177 24 323 23 1325 21 1324 22 323 23 1178 20 1324 22 1325 21 1271 19 1178 20 1325 21 622 332 624 158 623 333 1326 156 624 158 622 332 1327 154 1326 156 622 332 1328 155 1326 156 1327 154 1329 153 1328 155 1327 154 1273 183 332 181 1272 182 1330 405 332 181 1273 183 326 221 1330 405 1273 183 330 225 1330 405 326 221 328 223 330 225 326 221 1121 395 834 356 836 358 1331 399 834 356 1121 395 702 329 1331 399 1121 395 700 4 1331 399 702 329 850 288 847 286 848 365 1262 287 847 286 850 288 472 258 1262 287 850 288 474 256 1262 287 472 258 94 94 87 87 89 89 1088 306 87 87 94 94 96 96 1088 306 94 94 98 98 1088 306 96 96 1296 384 682 110 684 323 1306 114 682 110 1296 384 887 116 1306 114 1296 384 889 115 1306 114 887 116 1332 292 204 159 202 157 64 64 204 159 1332 292 1333 293 64 64 1332 292 66 66 64 64 1333 293 1334 360 1218 393 1216 358 1335 392 1218 393 1334 360 313 398 1335 392 1334 360 59 59 1335 392 313 398 1336 217 1179 218 1310 219 1180 216 1179 218 1336 217 562 215 1180 216 1336 217 1337 214 1180 216 562 215 1230 280 1182 281 1231 279 1184 282 1182 281 1230 280 1186 325 1184 282 1230 280 1185 383 1184 282 1186 325 1074 50 620 48 1072 49 1338 386 620 48 1074 50 1327 154 1338 386 1074 50 622 332 1338 386 1327 154 1049 363 10 10 1050 361 1339 401 10 10 1049 363 12 12 1339 401 1049 363 10 10 1339 401 12 12 995 253 1151 270 1152 271 1340 269 1151 270 995 253 997 387 1340 269 995 253 1231 268 1340 269 997 387 1133 225 1135 221 1134 223 1341 405 1135 221 1133 225 226 181 1341 405 1133 225 228 183 1341 405 226 181 1221 329 4 4 1220 399 1342 327 4 4 1221 329 1223 328 1342 327 1221 329 6 6 1342 327 1223 328 1189 251 1160 253 1190 271 1343 252 1160 253 1189 251 1283 250 1343 252 1189 251 1161 254 1343 252 1283 250 175 94 168 87 170 89 1096 306 168 87 175 94 177 96 1096 306 175 94 179 98 1096 306 177 96 974 308 95 95 93 93 1344 307 95 95 974 308 972 309 1344 307 974 308 970 318 1344 307 972 309 1015 308 176 95 174 93 1345 307 176 95 1015 308 1013 309 1345 307 1015 308 1011 318 1345 307 1013 309 1255 231 73 73 1254 294 1346 213 73 73 1255 231 1251 230 1346 213 1255 231 71 71 1346 213 1251 230 1347 59 1125 392 1126 398 1279 57 1125 392 1347 59 1348 58 1279 57 1347 59 1277 56 1279 57 1348 58 1349 384 601 110 603 323 1319 114 601 110 1349 384 1350 116 1319 114 1349 384 1318 115 1319 114 1350 116 402 238 398 234 400 236 1351 277 398 234 402 238 649 206 1351 277 402 238 394 208 1351 277 649 206 420 251 416 247 418 249 1145 272 416 247 420 251 631 196 1145 272 420 251 633 198 1145 272 631 196 585 317 603 323 587 319 1349 384 603 323 585 317 583 315 1349 384 585 317 1350 116 1349 384 583 315 1284 1 608 3 606 326 1286 2 608 3 1284 1 1282 0 1286 2 1284 1 1285 357 1286 2 1282 0 659 36 657 35 658 34 1352 37 657 35 659 36 661 38 1352 37 659 36 663 39 1352 37 661 38 1283 250 867 248 1281 343 1353 249 867 248 1283 250 1189 251 1353 249 1283 250 865 247 1353 249 1189 251 1223 328 45 45 1224 400 1354 330 45 45 1223 328 1221 329 1354 330 1223 328 47 47 1354 330 1221 329 807 94 802 87 803 89 1314 306 802 87 807 94 809 96 1314 306 807 94 811 98 1314 306 809 96 226 181 222 177 224 179 1355 372 222 177 226 181 216 171 1355 372 226 181 218 173 1355 372 216 171 656 161 715 160 654 62 711 291 715 160 656 161 657 35 711 291 656 161 1352 37 711 291 657 35 649 206 645 204 647 205 1356 276 645 204 649 206 402 238 1356 276 649 206 404 240 1356 276 402 238 1251 230 209 164 1253 265 1357 229 209 164 1251 230 1255 231 1357 229 1251 230 213 168 1357 229 1255 231 1181 355 13 13 15 15 1358 284 13 13 1181 355 1183 283 1358 284 1181 355 9 9 1358 284 1183 283 1028 195 1031 199 1030 197 1359 380 1031 199 1028 195 1026 193 1359 380 1028 195 1144 378 1359 380 1026 193 1144 378 1031 199 1359 380 1360 377 1031 199 1144 378 92 92 1360 377 1144 378 90 90 1360 377 92 92 630 195 634 199 632 197 1361 380 634 199 630 195 628 193 1361 380 630 195 1131 378 1361 380 628 193 1131 378 634 199 1361 380 1362 377 634 199 1131 378 173 92 1362 377 1131 378 171 90 1362 377 173 92 1363 397 98 98 100 100 1364 404 98 98 1363 397 1085 303 1364 404 1363 397 1086 304 1364 404 1085 303 288 84 284 82 286 126 1247 83 284 82 288 84 544 85 1247 83 288 84 542 302 1247 83 544 85 1365 397 179 98 181 100 1366 404 179 98 1365 397 1093 303 1366 404 1365 397 1094 304 1366 404 1093 303 1367 175 1287 111 895 173 1288 174 1287 111 1367 175 895 173 1288 174 1367 175 1242 172 1288 174 895 173 408 244 404 240 406 242 1368 275 404 240 408 244 643 202 1368 275 408 244 645 204 1368 275 643 202 1264 14 478 15 825 13 476 16 478 15 1264 14 474 256 476 16 1264 14 717 64 651 66 652 65 1369 293 651 66 717 64 1370 292 1369 293 717 64 716 159 1370 292 717 64 1117 157 1370 292 716 159 714 158 1117 157 716 159 672 101 1102 382 670 318 1103 99 1102 382 672 101 1104 100 1103 99 672 101 681 105 673 103 683 322 675 104 673 103 681 105 676 106 675 104 681 105 1290 355 508 284 510 13 506 283 508 284 1290 355 504 281 506 283 1290 355 1036 389 855 371 854 370 856 178 855 371 1036 389 1034 388 856 178 1036 389 362 186 1037 390 360 220 1035 184 1037 390 362 186 364 185 1035 184 362 186 529 64 875 63 527 62 874 65 875 63 529 64 873 66 874 65 529 64 369 224 373 227 371 226 442 264 373 227 369 224 440 31 442 264 369 224 1345 307 178 97 176 95 1120 382 178 97 1345 307 1011 318 1120 382 1345 307 1371 408 1127 407 1196 406 853 409 1127 407 1371 408 356 407 853 409 1371 408 1371 408 354 410 356 407 1140 411 354 410 1371 408 1139 412 1140 411 1371 408 1371 408 1336 413 1139 412 562 414 1336 413 1371 408 561 415 562 414 1371 408 1371 408 886 416 561 415 316 417 886 416 1371 408 234 418 316 417 1371 408 1371 408 581 417 234 418 1372 419 581 417 1371 408 1373 420 1372 419 1371 408 271 70 1374 68 269 117 1375 69 1374 68 271 70 275 71 1375 69 271 70 1371 408 1376 408 1373 420 1377 421 1376 408 1371 408 1196 406 1377 421 1371 408 1344 307 97 97 95 95 1108 382 97 97 1344 307 970 318 1108 382 1344 307 600 105 589 103 602 322 591 104 589 103 600 105 593 106 591 104 600 105 802 87 1311 304 801 85 1313 305 1311 304 802 87 1314 306 1313 305 802 87 57 57 1335 392 59 59 53 53 1335 392 57 57 55 55 53 53 57 57 1378 397 1312 404 811 98 592 303 1312 404 1378 397 590 102 592 303 1378 397 1229 326 1 1 3 3 994 403 1 1 1229 326 996 324 994 403 1229 326 1179 218 233 188 1310 219 17 17 233 188 1179 218 15 15 17 17 1179 218 932 347 215 170 930 346 217 172 215 170 932 347 219 174 217 172 932 347 1298 21 359 188 1280 19 361 187 359 188 1298 21 363 23 361 187 1298 21 1042 389 890 371 888 370 892 178 890 371 1042 389 1040 388 892 178 1042 389 322 186 1043 390 320 220 1041 184 1043 390 322 186 324 185 1041 184 322 186 329 224 333 227 331 226 461 264 333 227 329 224 463 31 461 264 329 224 365 25 1168 27 367 222 1169 26 1168 27 365 25 1171 24 1169 26 365 25 325 25 1174 27 327 222 1175 26 1174 27 325 25 1177 24 1175 26 325 25 1379 385 1076 54 1329 153 1074 50 1076 54 1379 385 1327 154 1074 50 1379 385 1380 322 103 103 1106 323 105 105 103 103 1380 322 110 110 105 105 1380 322 948 195 1150 194 946 193 950 196 1150 194 948 195 949 197 950 196 948 195 1337 190 1149 192 1231 268 560 191 1149 192 1337 190 562 189 560 191 1337 190 1381 404 549 98 1105 397 547 305 549 98 1381 404 545 304 547 305 1381 404 1382 322 184 103 1118 323 186 105 184 103 1382 322 191 110 186 105 1382 322 978 94 546 87 976 89 548 306 546 87 978 94 550 96 548 306 978 94 1383 107 593 106 600 105 595 108 593 106 1383 107 600 105 595 108 1383 107 1384 296 755 295 158 77 757 297 755 295 1384 296 160 79 757 297 1384 296 1385 402 760 321 763 174 758 347 760 321 1385 402 763 174 758 347 1385 402 1386 364 1154 362 514 286 1156 363 1154 362 1386 364 514 286 1156 363 1386 364 1387 296 929 295 77 77 931 297 929 295 1387 296 79 79 931 297 1387 296 1388 402 934 321 219 174 932 347 934 321 1388 402 219 174 932 347 1388 402 1325 21 319 188 1271 19 321 187 319 188 1325 21 323 23 321 187 1325 21 1124 393 836 358 838 360 1121 395 836 358 1124 393 1122 394 1121 395 1124 393 1389 107 676 106 681 105 677 108 676 106 1389 107 681 105 677 108 1389 107 1390 348 1241 347 537 297 679 321 1241 347 1390 348 539 299 679 321 1390 348 1391 400 705 45 849 366 703 328 705 45 1391 400 844 362 703 328 1391 400 668 316 557 311 559 313 670 318 557 311 668 316 26 26 1069 391 28 28 24 24 1069 391 26 26 229 184 225 180 1322 388 227 182 225 180 229 184 207 162 210 165 1063 264 208 163 210 165 207 162 1261 359 1216 358 1214 357 1334 360 1216 358 1261 359 893 176 1287 111 891 113 895 173 1287 111 893 176 990 248 992 250 991 249 1211 343 992 250 990 248 913 310 1302 312 1301 311 911 381 1302 312 913 310 915 309 1301 311 586 318 913 310 1301 311 915 309 1161 403 606 326 604 324 1284 1 606 326 1161 403 488 137 490 138 572 139 489 136 490 138 488 137 264 121 268 119 266 211 697 120 268 119 264 121 42 42 1000 289 1002 288 40 40 1000 289 42 42 743 339 741 337 879 354 742 338 741 337 743 339 249 134 253 202 491 274 251 201 253 202 249 134 512 14 427 16 425 15 429 256 427 16 512 14 567 241 565 237 740 336 566 239 565 237 567 241 1135 221 228 183 230 185 1341 405 228 183 1135 221 1316 81 1052 79 694 80 1315 300 1052 79 1316 81 458 61 460 162 655 60 459 163 460 162 458 61 466 263 660 290 464 32 468 262 660 290 466 263 945 381 558 312 556 310 946 193 558 312 945 381 1392 176 1266 111 1320 113 1268 173 1266 111 1392 176 1084 302 83 83 85 85 1082 300 83 83 1084 302 209 164 213 168 211 166 1357 229 213 168 209 164 437 263 519 290 439 32 435 262 519 290 437 263 465 30 1173 29 467 28 463 31 1173 29 465 30 1059 170 1055 295 1057 346 1236 334 1055 295 1059 170 258 125 262 123 260 207 693 124 262 123 258 125 571 140 569 243 744 340 570 245 569 243 571 140 524 291 619 44 621 331 522 37 619 44 524 291 575 248 573 141 748 341 574 246 573 141 575 248 747 143 745 144 883 145 746 142 745 144 747 143 438 30 1167 29 436 28 440 31 1167 29 438 30 1170 391 434 261 436 28 432 259 434 261 1170 391 261 208 265 210 499 232 263 209 265 210 261 208 882 146 880 351 1198 350 881 352 880 351 882 146 243 198 247 135 487 273 245 200 247 135 243 198 484 251 486 247 576 249 485 272 486 247 484 251 496 238 498 234 564 236 497 277 498 234 496 238 192 111 857 176 765 173 194 113 857 176 192 111 255 204 259 206 495 276 257 205 259 206 255 204 252 129 256 127 254 203 689 128 256 127 252 129 492 244 494 240 568 242 493 275 494 240 492 244 904 377 294 90 296 132 906 92 294 90 904 377 1119 319 184 103 182 101 1118 323 184 103 1119 319 1126 149 1199 150 1347 151 1200 148 1199 150 1126 149 1010 316 1128 313 1008 315 1012 311 1128 313 1010 316 1012 311 1129 312 1128 313 1014 310 1129 312 1012 311 1014 310 1130 381 1129 312 1016 379 1130 381 1014 310 860 171 766 172 765 173 754 170 766 172 860 171 837 374 884 147 838 375 885 373 884 147 837 374 751 344 749 342 835 376 750 343 749 342 751 344 579 254 577 250 752 345 578 252 577 250 579 254 1372 368 583 315 581 314 1350 116 583 315 1372 368 1393 152 1203 150 1201 349 1394 151 1203 150 1393 152 1348 152 1199 150 1197 349 1347 151 1199 150 1348 152 239 194 481 270 237 192 241 196 481 270 239 194 480 269 1317 387 479 268 482 253 1317 387 480 269 1049 363 1006 285 12 12 1004 286 1006 285 1049 363 423 254 419 250 738 345 421 252 419 250 423 254 737 344 735 342 927 376 736 343 735 342 737 344 926 374 924 147 1206 375 925 373 924 147 926 374 1205 149 1203 150 1394 151 1204 148 1203 150 1205 149 1340 269 1149 192 1151 270 1231 268 1149 192 1340 269 642 129 646 127 644 203 840 128 646 127 642 129 147 147 143 143 145 145 870 373 143 143 147 147 1360 377 132 132 1031 199 90 90 132 132 1360 377 398 234 394 208 396 232 1351 277 394 208 398 234 44 44 48 48 982 331 46 46 48 48 44 44 1248 81 284 82 1247 83 282 80 284 82 1248 81 922 146 920 351 1202 350 921 352 920 351 922 146 733 143 731 144 923 145 732 142 731 144 733 143 417 248 413 141 734 341 415 246 413 141 417 248 411 140 407 243 730 340 409 245 407 243 411 140 648 125 392 123 650 207 842 124 392 123 648 125 445 61 443 162 876 60 444 163 443 162 445 61 80 80 76 76 122 122 78 78 76 76 80 80 344 73 348 74 721 75 346 72 348 74 344 73 1080 56 1076 54 1078 55 1329 153 1076 54 1080 56 1077 53 1073 51 1099 394 1075 52 1073 51 1077 53 67 67 1252 266 65 65 1250 267 1252 266 67 67 141 141 137 137 139 139 866 246 137 137 141 141 50 50 54 54 979 385 52 52 54 54 50 50 1092 302 164 83 166 85 1090 300 164 83 1092 302 307 143 1212 342 1213 341 1260 373 1212 342 307 143 1358 284 11 11 13 13 9 9 11 11 1358 284 1025 192 1191 270 1159 269 1027 194 1191 270 1025 192 63 63 1252 266 61 61 65 65 1252 266 63 63 611 6 1155 361 1157 10 613 328 1155 361 611 6 973 310 1143 381 1142 312 975 379 1143 381 973 310 971 311 1142 312 1141 313 973 310 1142 312 971 311 969 316 1141 313 967 315 971 311 1141 313 969 316 1100 395 614 329 1136 399 1101 396 614 329 1100 395 1107 319 103 103 101 101 1106 323 103 103 1107 319 843 361 829 10 699 6 845 363 829 10 843 361 1305 43 1295 42 1256 366 1304 39 1295 42 1305 43 625 157 1326 156 1328 155 624 158 1326 156 625 157 405 241 401 237 726 336 403 239 401 237 405 241 404 240 645 204 1356 276 1368 275 645 204 404 240 1023 377 686 90 246 132 805 92 686 90 1023 377 338 168 342 231 720 334 340 229 342 231 338 168 636 132 1362 377 171 90 634 199 1362 377 636 132 729 339 727 337 919 354 728 338 727 337 729 339 1139 368 1310 219 116 369 1336 217 1310 219 1139 368 1162 371 115 115 1164 370 113 113 115 115 1162 371 1337 214 1182 281 1180 216 1231 279 1182 281 1337 214 1364 404 1087 305 98 98 1086 304 1087 305 1364 404 1363 397 102 102 1085 303 100 100 102 102 1363 397 51 51 1217 395 1219 394 1222 396 1217 395 51 51 629 194 1308 270 627 192 631 196 1308 270 629 194 850 288 666 289 472 258 665 42 666 289 850 288 543 303 1381 404 1105 397 545 304 1381 404 543 303 852 43 663 39 665 42 709 44 663 39 852 43 1115 156 714 158 712 332 1117 157 714 158 1115 156 1366 404 1095 305 179 98 1094 304 1095 305 1366 404 1365 397 183 102 1093 303 181 100 183 102 1365 397 1176 391 469 261 467 28 471 259 469 261 1176 391 1352 37 709 44 711 291 663 39 709 44 1352 37 813 100 1378 397 811 98 590 102 1378 397 813 100 831 7 828 9 963 383 830 8 828 9 831 7 20 20 1274 257 1070 259 18 18 1274 257 20 20 470 260 660 290 468 262 662 40 660 290 470 260 311 147 1334 375 1261 374 313 149 1334 375 311 147 74 74 70 70 118 118 72 72 70 70 74 74 869 342 1285 376 1282 344 871 374 1285 376 869 342 1067 262 999 260 998 290 1068 261 999 260 1067 262 1066 263 30 30 28 28 32 32 30 30 1066 263 275 71 271 70 273 72 523 35 877 34 521 36 376 167 372 181 374 228 241 196 483 271 481 270 272 74 1239 75 274 73 519 290 435 262 433 260 1053 77 1055 295 1238 294 601 110 1319 114 1321 112 1056 297 1208 348 1058 347 1237 231 276 213 274 73 431 258 429 256 515 287 1053 77 696 76 1051 78 910 378 244 199 909 380 1302 312 911 381 238 193 25 25 27 27 1065 222 901 198 899 247 951 272 901 198 903 199 902 200 384 71 450 69 385 70 304 140 302 138 774 245 6 6 4 4 1342 327 14 14 1005 256 16 16 117 117 1275 212 119 119 988 208 986 234 987 277 988 208 123 123 1246 209 536 79 534 77 1249 78 278 76 280 122 282 80 905 378 903 199 947 380 818 241 816 337 817 338 771 339 772 340 773 243 298 134 302 138 300 136 301 137 900 273 299 135 787 244 796 242 785 243 1029 196 1191 270 1027 194 382 231 378 168 380 229 379 164 446 265 381 230 447 266 449 67 448 267 1177 24 1324 22 1178 20 783 339 792 354 781 351 822 204 820 240 821 275 957 238 958 276 959 206 121 121 1276 211 1245 210 719 170 533 295 1240 346 387 119 389 212 1258 211 719 170 897 171 718 169 345 71 343 213 341 230 296 132 297 133 299 135 310 146 308 144 770 352 1021 208 281 123 1228 209 775 244 819 242 773 243 536 79 540 300 538 298 199 154 981 332 980 386 140 140 144 144 142 142 140 140 138 138 786 245 82 82 126 126 84 84 315 216 1226 281 824 355 1001 258 1005 256 1003 287 983 291 35 35 37 37 637 135 633 198 635 200 1004 286 1046 365 1002 288 391 121 395 210 393 209 795 241 793 337 794 338 783 339 784 340 785 243 416 247 1146 273 414 137 410 138 1148 274 408 244 983 291 981 332 1071 333 53 53 1218 393 1335 392 163 82 841 126 165 84 379 164 377 166 375 165 818 241 820 240 956 239 373 227 442 264 375 165 134 134 138 138 136 136 1123 53 1278 55 1234 54 1112 50 1110 51 1235 52 45 45 1354 330 47 47 1064 224 1062 227 1132 226 391 121 157 76 1259 120 637 135 639 134 1147 136 867 248 1353 249 865 247 146 146 150 150 148 148 941 238 985 236 939 237 204 159 64 64 62 62 1112 50 1114 154 1113 386 795 241 797 240 940 239 706 47 1111 49 708 48 715 160 711 291 713 333 511 12 509 11 1157 10 1161 254 1160 253 1343 252 787 244 788 274 789 202 1171 24 1297 22 1172 20 799 204 797 240 798 275 607 7 1300 383 605 325 129 129 800 203 789 202 847 286 1263 285 845 363 134 134 130 130 790 201 73 73 1346 213 71 71 712 332 710 331 708 48 834 356 1331 399 700 4 218 173 222 177 1355 372 643 202 639 134 641 201 382 231 154 73 1187 294 384 71 383 213 381 230 529 64 531 293 873 66 622 332 620 48 1338 386 1029 196 863 198 1188 272 799 204 127 127 944 205 667 315 561 314 886 368 125 125 989 207 943 206 410 138 412 139 414 137 146 146 144 144 782 352 1379 385 1329 153 1327 154 674 102 1104 100 672 101 1106 323 110 110 1380 322 350 119 352 212 722 211 330 225 332 181 1330 405 345 71 453 69 347 70 682 110 1306 114 1307 112 339 164 457 265 341 230 631 196 1309 271 1308 270 456 266 454 67 455 267 339 164 337 166 335 165 333 227 461 264 335 165 1118 323 191 110 1382 322 723 210 724 233 1227 232 310 146 314 150 312 148 957 238 1018 236 955 237 941 238 942 276 943 206 775 244 776 274 777 202 160 79 1384 296 158 77 291 129 823 203 777 202 298 134 293 130 778 201 822 204 287 127 960 205 79 79 1387 296 77 77 285 125 1022 207 959 206 1021 208 1019 234 1020 277 771 339 815 354 769 351 370 225 372 181 1323 405 304 140 308 144 306 142 539 299 1390 348 537 297 482 253 580 255 1317 387 849 366 844 362 1391 400

+
+
+
+ + + + -18816 -136 9594 -18135 -296 9246 -18615 150 10479 -17902 -63 10052 -18160 282 11183 -17453 67 10740 -17023 -25 11411 -16772 106 10318 -16353 14 10979 -15685 71 10505 -15888 -145 11471 -15131 -125 11083 -14775 -308 11630 -14194 -503 11158 -13708 -639 11797 -13094 -1031 11213 -13244 -529 12309 -12225 -1106 12223 -12745 -460 12777 -12170 -610 13236 -12684 -184 13864 -11705 -697 13682 -12230 -246 14296 -11740 -197 14699 -12734 227 14883 -12282 326 15428 -12797 478 15490 -12913 476 15911 -13312 630 15552 -13261 472 16009 -13592 476 15892 -13185 235 16695 -13873 322 16232 -13789 -92 17309 -14378 -12 16805 -14877 -211 17376 -14974 5 16332 -16221 -132 16245 -15526 31 15686 -16229 9 15131 -15088 289 15088 -15512 223 14807 -15574 251 14460 -16659 27 14384 -17432 85 14890 -17420 138 13661 -18075 319 14170 -18545 520 13476 -18581 388 14644 -19136 637 13915 -19721 621 14344 -19632 832 13168 -20247 820 13569 -20754 871 12761 -20838 808 13965 -21341 906 13155 -22610 -280 13954 -21878 643 12288 -23595 -692 12022 -22416 22 11421 -13904 -242 19138 -13108 -89 19689 -14330 -302 19732 -13514 -139 20281 -14775 -493 20336 -13041 -23 21411 -13827 -1027 22675 -12231 428 21914 -12022 93 23595 -11421 879 22416 -10468 1352 22805 -11073 913 21758 -10224 1368 22200 -9881 1270 21498 -9275 1686 22553 -8989 1536 21856 -8143 1275 22213 -8704 1263 21156 -7887 1029 21495 -7595 730 20756 -7098 762 21803 -6869 455 21038 -6111 174 21317 -5858 -20 20547 -5004 -168 20813 -4901 -230 20018 -4066 -379 20183 -3673 -172 19396 -3174 -519 20172 -3053 -291 19416 -2329 -534 19556 -2587 -371 19256 -2255 -344 18775 -2858 -150 18744 -3424 31 18636 -3283 -70 18242 -3759 106 18547 -3704 36 18335 -4094 144 18457 -3990 2 18033 -4293 17 18000 -4491 -201 17543 -4845 -20 18258 -5270 -406 17388 -5485 -235 18071 -6212 -498 17768 -5713 -265 18637 -6257 -452 18250 -6642 -510 18428 -7203 -684 17616 -6834 -850 16776 -7922 -619 17124 -7623 -775 16490 -8253 -574 16172 -7209 -1032 15700 -7865 -882 15435 -7364 -2634 14454 -10072 666 24588 -9515 1517 23194 -8641 1302 23550 -8391 1355 22951 -7529 891 23212 -7311 896 22509 -6460 527 22762 -6328 459 22084 -5387 79 22253 -5192 -48 21519 -4349 -312 21723 -4254 -378 21007 -3336 -490 21139 -2312 -481 20467 -2083 -539 19846 -1441 -505 19673 -1535 -385 20433 -1573 -210 21255 -732 -322 20462 -676 -57 21327 -1 -25 21278 -773 168 22062 10 254 22024 35 525 22790 814 193 21959 889 453 22695 1724 318 22638 912 640 23463 1816 478 23391 1889 473 24176 2711 307 23335 2849 275 24106 3809 331 24031 2941 131 24911 3935 22 24848 4142 -692 26155 17954 1368 16584 17392 1270 16041 18583 1686 15790 18009 1536 15303 18609 1275 14609 17431 1263 14816 18005 1029 14144 17393 730 13638 18542 762 13488 17885 455 13034 18385 174 12400 17731 -20 11921 18248 -168 11190 17523 -230 10847 17938 -379 10104 17312 -172 9487 18204 -519 9252 17522 -291 8903 17879 -534 8259 17514 -371 8411 17159 -344 7946 16943 -150 8510 16665 31 9015 16334 -70 8759 16477 106 9307 16293 36 9189 16289 144 9598 15917 2 9367 15793 17 9645 15297 -201 9692 15867 -20 10250 14908 -406 10385 15491 -235 10801 14979 -498 11399 15959 -265 11193 15423 -452 11590 15474 -510 12012 14528 -684 12294 13843 -850 11684 13838 -619 12826 13328 -775 12346 12830 -574 12847 12704 -1032 11708 12249 -882 12250 11473 -2634 11470 -21691 -598 15759 -19688 274 15542 -20180 -1027 17269 -19039 -23 16310 -18725 -1263 18725 -17789 -390 17789 -16304 -540 19044 -15835 -425 18507 -15360 -330 17950 -13474 -227 18522 -12692 -105 19115 -11905 117 19581 -12232 -178 18515 -11496 -17 18923 -11043 -177 18344 -10754 241 19416 -10299 0 18854 -9656 100 19088 -9962 -311 18061 -9177 -338 18292 -8942 -435 17595 -8194 -536 17924 -8263 -554 17579 -8731 -384 16919 -9641 -314 17190 -9272 -103 16420 -9736 -94 16780 -10180 -59 16712 -10688 -332 17442 -10491 -53 16418 -10881 -164 16456 -10363 1 15735 -11188 -56 15401 -10624 -404 14617 -11195 -627 14091 -11211 -1222 13095 -10854 -7117 -10894 -11470 -2634 -11473 -9516 -2626 -13101 -11186 -1219 -13120 -10172 -1082 -14001 -11221 -890 -14121 -10636 -856 -14558 -11664 -652 -14783 -11081 -654 -15223 -11552 -492 -15884 -10505 -636 -15616 -10975 -494 -16304 -10397 -505 -16763 -11435 -322 -16985 -10768 -385 -17433 -11220 -210 -18120 -10159 -481 -17917 -10579 -368 -18640 -9726 -490 -19063 -10851 -298 -19282 -10062 -434 -19739 -10399 -342 -20409 -9250 -312 -20131 -9579 -220 -20792 -8721 79 -21170 -9886 -155 -21479 -9013 140 -21843 -9293 105 -22510 -8152 527 -22212 -8415 494 -22870 -7552 891 -23204 -8663 412 -23541 -7767 848 -23907 -8285 276 -25499 -6851 1302 -24132 -6304 666 -25813 -5935 1517 -24357 -4935 1352 -24603 -5752 1686 -23697 -4777 1368 -23970 -4642 1270 -23200 -3830 913 -24111 -3724 914 -23383 -24421 1355 -888 -23642 1275 -880 -24402 891 11 -23667 896 2 -23644 527 889 -22929 762 -13 -22959 459 805 -22163 174 775 -22829 79 1752 -22070 -48 1711 -22004 -312 2576 -21341 -168 1672 -21293 -378 2445 -20451 -379 2369 -21135 -490 3359 -20166 -519 3214 -20180 -481 4125 -19319 -534 3827 -19518 -539 4151 -19155 -505 4708 -19907 -385 4853 -20701 -210 5071 -19687 -322 5626 -20492 -57 5946 -20237 -25 6574 -21222 168 6081 -20943 254 6815 -21664 525 7076 -20632 193 7560 -21310 453 7859 -20997 318 8635 -22033 640 8118 -21685 478 8956 -22409 473 9267 -21355 307 9789 -22046 275 10158 -21678 331 11049 -22783 131 10495 -13098 -2626 -9519 -13745 -7117 -7028 -14454 -2634 -7366 -15399 -2626 -5005 -15919 -1222 -6615 -16451 -728 -5345 -16861 -627 -6292 -17185 -404 -5587 -17608 -197 -6623 -18104 -56 -5881 -18468 326 -6913 -18897 68 -6149 -19268 374 -7038 -19523 76 -6349 -20152 -35 -6572 -19725 -153 -5656 -20141 -184 -5965 -19891 -332 -4775 -20506 -290 -5769 -20847 -253 -5529 -21389 -178 -5912 -20858 -177 -4834 -21550 -17 -5085 -21789 241 -4227 -22302 117 -5271 -22586 479 -4362 -23230 542 -4562 -22669 768 -3554 -23389 914 -3683 -23499 1270 -2754 -24115 913 -3807 -24273 1368 -2863 -24924 1352 -2908 -24315 1686 -1852 -24999 1517 -1881 -25068 1302 -940 -26497 666 -1980 -26811 276 0 2539 -2634 16022 2379 -7117 15195 5005 -2626 15399 6990 -7117 13767 7366 -2634 14454 9519 -2626 13098 8990 -1222 14709 10167 -728 13994 9942 -627 15001 10618 -404 14621 10352 -197 15708 11189 -56 15400 10877 326 16448 11673 68 16082 11451 374 17019 12062 76 16612 12440 -35 17162 12633 -153 16170 12788 -184 16665 13285 -332 15555 13198 -290 16720 13615 -253 16727 13829 -178 17355 14033 -177 16171 14444 -17 16781 15143 241 16227 14944 117 17373 15708 479 16805 16112 542 17345 16250 768 16200 16757 914 16728 17271 913 17255 18454 1352 17003 19118 1517 16216 19727 1302 15496 20272 666 17177 21691 276 15759 19148 896 13909 19749 891 14333 19651 527 13177 20250 494 13555 20750 105 12748 20846 412 13953 21355 -23 13132 22624 -520 13928 21886 -269 12276 23595 -1027 12022 22416 -515 11421 22793 -267 10470 21733 -309 11067 22126 -180 10157 21447 -147 9858 22469 98 9250 21783 136 8965 22124 473 8094 21116 81 8669 21533 409 7782 20743 168 7553 21686 525 7009 20949 254 6796 21136 193 6010 20236 -25 6576 20427 -39 5929 19643 -298 5596 20553 -124 4992 19799 -308 4781 19964 -301 3986 19064 -458 4599 19252 -437 3857 18525 -535 3676 19438 -269 3076 18770 -226 2972 6618 -1031 15918 7847 -1106 15403 7614 -529 16400 8213 -460 16069 7923 -246 17110 8694 -33 16836 8900 264 17586 9631 350 17131 9871 549 17950 10154 490 17299 10194 581 17756 10677 630 17466 10534 493 18037 10914 476 17838 11150 322 18210 11804 235 17699 12201 -92 18463 12930 -211 17798 13452 -227 18538 14257 -105 17977 14675 -89 18550 15392 161 17935 15854 121 18487 16573 509 17878 17061 428 18404 17789 879 17789 18725 93 18725 -26155 93 -4142 -24848 879 -3935 -24621 428 -4861 -23917 509 -4721 -23693 121 -5637 -22995 161 -5462 -22776 -89 -6382 -22101 -105 -6164 -21779 -227 -7090 -20922 -211 -6799 -20723 -92 -7765 -19953 235 -7380 -19725 322 -8178 -19315 476 -8016 -19124 493 -8400 -18905 630 -7854 -18684 581 -8373 -18383 490 -8026 -18537 549 -8719 -17861 350 -8198 -17537 264 -8996 -16929 -33 -8510 -16467 -246 -9184 -16090 -460 -8173 -15799 -529 -8792 -15402 -1106 -7849 -14710 -1031 -8988 -12221 -982 -12220 -12319 -752 -13233 -11741 -909 -13705 -12826 -535 -13863 -12237 -638 -14329 -12720 -458 -14926 -12126 -478 -15431 -12602 -298 -16073 -12025 -306 -16545 -12506 -25 -17215 -11988 -57 -17651 -12342 168 -18304 -11582 -57 -18778 -11987 81 -19425 -11171 -210 -19930 -11556 -147 -20582 -10741 -277 -21076 -11077 -309 -21728 -10190 -188 -22145 -10490 -269 -22796 -9558 -23 -23176 -10116 -520 -24566 2838 -458 17920 2704 -982 17070 3660 -74 17815 4070 -685 16768 4272 -47 17585 4910 -135 17408 5144 71 18164 5514 -315 17172 5864 -125 17815 6225 -503 16947 6495 -308 17646 6983 -639 16683 7182 -412 17508 7638 -179 18164 8295 55 17860 8530 225 18526 9243 446 18392 9687 289 19012 10391 356 18608 10120 31 19614 10906 5 19288 10437 -132 20447 11928 -211 19519 10753 -203 21094 12324 -330 20156 12708 -425 20779 14338 -302 19726 13074 -540 21391 14775 -493 20336 13863 -1463 22657 15759 -1272 21691 -22735 1022 -2670 -21978 724 -2571 -22810 1263 -1741 -22040 854 -1675 -22087 730 -810 -21231 437 -1600 -21233 302 -719 -20459 -96 -754 -21224 112 7 -20214 -316 212 -20407 -206 904 -19559 -80 1073 -20553 -230 1524 -19680 -80 1736 -19582 -172 2500 -19164 85 1780 -19048 86 2016 -18820 144 1809 -18801 106 2155 -18582 36 2142 -18364 -70 2514 -17978 -149 2273 -17913 -224 2856 -17223 -578 2698 -17139 -679 3429 -16698 -1320 2642 -16467 -1401 3602 -16022 -2634 2536 -15399 -2626 5002 -15231 -7117 2424 -13715 -7117 6957 -12022 -1027 -23595 -11421 -515 -22416 -12285 -267 -21868 -11930 -180 -21223 -12741 98 -20690 -12353 136 -20056 -13141 473 -19553 -12846 409 -18953 -13424 525 -18417 -12953 254 -17812 -13566 193 -17286 -13040 -39 -16804 -13693 -124 -16120 -13207 -308 -15505 -13808 -301 -14959 -13308 -437 -14437 -13917 -269 -13914 -13437 -226 -13437 -7011 -7117 -13737 -7364 -2634 -14456 -5002 -2626 -15401 -6549 -1295 -15415 -5516 -1331 -15962 -6838 -507 -15964 -5869 -768 -16420 -6678 -201 -16833 -5956 -406 -17165 -6811 -20 -17619 -6184 -235 -17844 -7065 -80 -18270 -6332 -265 -18436 -6449 -316 -19159 -5458 -510 -18813 -5605 -96 -19691 -5172 -357 -19195 -4696 -352 -19246 -4527 -684 -18486 -5418 -498 -18026 -4331 -850 -17589 -5238 -648 -17384 -5054 -933 -16644 2972 -226 18770 3733 61 18575 3850 -23 19369 4629 106 19140 4028 -63 20132 4821 67 19918 5024 282 20727 5592 -25 19716 5813 190 20516 6549 33 20295 6045 488 21292 6837 301 21057 7086 520 21802 7609 138 20789 7891 319 21569 8775 85 21180 8185 388 22197 9064 127 21830 9345 86 22490 11078 -282 21740 11421 -390 22416 12022 -1263 23595 15401 -2626 5002 16761 -1219 4039 16459 -1082 5348 17378 -890 4828 17162 -856 5526 18126 -652 5103 17913 -654 5802 18682 -492 6060 17678 -636 6459 18462 -494 6739 18264 -505 7450 19235 -322 7019 18958 -385 7774 19728 -210 8064 18751 -481 8523 19515 -368 8861 19074 -490 9705 20113 -298 9221 19743 -434 10054 20409 -342 10398 19316 -312 10849 19971 -220 11190 19499 79 12000 20623 -155 11565 20131 140 12373 -25838 -1027 -6143 -24393 -23 -5786 -23465 -139 -6585 -23194 -302 -7531 -22498 -242 -7310 -21818 -330 -9062 -21123 -211 -8779 -20426 -12 -8481 -20160 5 -9194 -19344 356 -8946 -19716 31 -9919 -19012 289 -9687 -19406 9 -10759 -18876 223 -10177 -18565 251 -10343 -18288 446 -9446 -16191 -2626 -1 -16685 -1295 1465 -16885 -1331 313 -17296 -507 1570 -17430 -768 507 -18073 -201 1149 -18165 -406 360 -18862 -20 1033 -18881 -235 367 -19490 -265 325 -19579 -510 -622 -19854 -357 -1012 -19755 -352 -1480 -18980 -684 -1407 -18818 -498 -417 -18067 -850 -1315 -18152 -648 -390 -17391 -933 -336 -9979 -539 -17280 -9610 -534 -17190 -9288 -519 -18186 -8573 -379 -18718 -8905 -378 -19496 -8185 -168 -19779 -8448 -48 -20461 -7585 174 -20838 -7861 459 -21586 -7072 762 -21811 -7315 896 -22508 -6468 1275 -22757 -6701 1355 -23500 -15608 67 -13279 -16113 -25 -12663 -16248 282 -13816 -16762 190 -13180 -17406 488 -13672 -17228 33 -12569 -17909 301 -13017 -18376 138 -12346 -18548 520 -13473 -19062 319 -12811 -19669 388 -13146 -19548 85 -11977 -20165 127 -12333 -21099 -203 -10745 -20779 86 -12701 -21741 -282 -11076 -22416 -390 -11421 -22495 -425 -9341 -23150 -540 -9621 -23907 -493 -7767 -21114 0 -3969 -21138 100 -3285 -21901 478 -3435 -23564 1536 -1795 -25137 848 0 -25066 412 964 -26490 -520 2030 24583 -748 10083 23170 -18 9519 23519 344 8637 22801 436 8369 23101 828 7499 22376 678 7257 22597 640 6382 21859 453 6167 22063 318 5355 21299 75 5151 21480 31 4328 20708 -144 4135 20862 -136 3297 20106 -296 3179 -13961 -748 -22607 -13149 -18 -21320 -13950 344 -20812 -13527 436 -20173 -14281 828 -19645 -13837 678 -19023 -14530 640 -18446 -14059 453 -17838 -14701 318 -17300 -14203 75 -16686 -14834 31 -16127 -14323 -144 -15518 -14939 -136 -14930 -14398 -296 -14390 15698 478 15652 15170 100 15083 16269 724 14999 15681 305 14459 16235 437 13773 15195 -96 13880 15645 5 13261 15112 -352 12810 16108 -96 12635 15467 -357 12489 14514 -536 13332 14165 -554 13291 13970 -435 13941 14561 -338 14381 -24557 -389 10133 -23150 402 9568 -23509 618 8662 -22770 708 8387 -23097 828 7511 -22368 678 7281 -22657 473 6455 -21995 409 6361 -22179 81 5397 -21438 -57 5212 -21692 -298 4361 -20997 -368 4301 2048 -389 26487 1946 402 24974 973 618 25036 940 708 24248 6 828 24288 12 678 23524 -861 473 23543 -747 409 22884 -1720 81 22761 -1667 -57 22000 -2554 -298 21978 -2397 -368 21298 0 -304 26811 0 706 25097 -946 344 25037 -913 436 24271 -1853 98 24228 -1794 136 23487 -2748 -147 23443 -2677 -210 22690 -3582 -342 22624 -3461 -434 21883 -7800 -230 -19076 -8429 -172 -17851 -8942 -291 -17502 -9225 -371 -17099 -9211 -344 -16515 -8704 -150 -16844 -8183 31 -17089 -8066 -70 -16688 -7859 106 -17214 -7780 36 -17011 -7536 144 -17339 -7371 2 -16934 -7107 17 -17086 -25499 -304 8285 -23869 706 7755 -24104 344 6836 -23366 436 6631 -23615 98 5723 -22892 136 5551 -23145 -147 4630 -22407 -210 4465 -22624 -342 3583 -21882 -434 3470 -13992 -841 -10169 -14998 -503 -10051 -14555 -315 -10651 -15216 -125 -10966 -14838 71 -11671 -15820 -145 -11565 -15496 14 -12160 -14996 106 -12763 -15092 -63 -13920 -15719 150 -14465 -16288 427 -15016 -15480 23 -15469 -16824 632 -15540 -16053 269 -16042 -16625 521 -16615 18231 -539 8114 18664 -378 10537 18861 -48 11587 19048 459 12843 -16547 -233 -11910 -17093 -165 -11376 -16321 -347 -10899 -16717 -276 -10784 -16856 -179 -10205 -17447 -21 -10667 -18045 35 -11137 -17790 225 -9973 -18232 237 -10354 -18828 27 -11398 10780 -7117 11038 11243 -435 13093 12313 -287 13363 12751 -103 13892 13393 -384 13532 13369 -314 14481 13740 -398 14498 14099 -311 15056 14748 0 15622 -704 -494 19641 9 -492 19641 3 -306 20453 747 -298 20411 672 -39 21260 1603 -124 21090 1682 75 21848 2521 31 21767 2491 235 22646 3557 269 22414 3683 364 23214 17292 -746 20157 16333 -23 19019 15112 -139 19120 13904 -242 19138 11539 -12 18867 -15759 -304 -21691 -14752 706 -20304 -15503 618 -19682 -15013 708 -19064 -15739 473 -18448 -15219 478 -17856 -15909 307 -17285 -15326 235 -16856 -15207 -7117 -2593 -16022 -2634 -2539 -16792 -435 -3983 -17111 -882 -2710 -17816 -287 -3573 -17931 -574 -2852 -18482 -103 -3744 -18789 -384 -3075 -19328 -314 -3857 -19497 -435 -3067 -19638 -398 -3653 -20256 -311 -3893 -20011 -39 7209 -19181 -298 7018 -19451 -306 6324 -18677 -492 6078 -18897 -494 5399 -18098 -636 5165 -18452 -561 4376 -17590 -647 4308 -18553 -344 3656 -17808 -397 3505 -18709 -150 3073 -10083 -804 -14876 -9533 -647 -15398 -9230 -861 -14914 -8837 -397 -15853 -8558 -679 -15240 -8251 -224 -16154 -7888 -578 -15546 -7718 -149 -16396 -7207 -138 -16529 25499 -304 8285 23869 706 7755 24111 618 6811 23351 708 6598 23577 473 5674 22808 478 5500 23031 307 4632 22307 235 4628 22416 269 3543 21617 23 3415 -10035 478 19767 -9237 724 20108 -8905 305 19382 -8082 437 19697 -8505 -96 18740 -7777 5 18978 -7513 -352 18331 -7039 -96 19225 -7098 -357 18569 -1993 -748 26495 -1893 -18 24977 -2914 -267 24913 -2823 -180 24182 -3810 -309 24089 -3698 -277 23365 -4626 -155 23188 -4471 -220 22452 -17036 -861 4169 -16459 -1082 5348 -17264 -804 4992 -17133 -856 5617 -17903 -654 5834 -17664 -652 6525 -18423 -478 6764 -18126 -458 7484 -25815 -748 6291 -24340 -18 5917 -24594 -267 4926 -23871 -180 4787 -24088 -309 3820 -23364 -277 3703 -23483 -155 2765 -22735 -220 2685 -14500 -23 -13406 -13938 61 -12833 -14385 157 -12238 -13793 -47 -11715 -14204 -135 -11197 -6552 -1182 15965 -5002 -2626 15399 -4919 -1331 16155 -3762 -1295 16321 -3851 -507 16934 -2646 -1320 16697 -2755 -578 17214 -2034 -679 17360 -2819 -224 17919 -2168 -397 18019 -19409 -291 3096 -19113 -371 3489 -18782 31 2501 -20336 571 14775 -19127 356 15099 -18501 86 15837 -17960 127 15366 -16739 -203 16746 -4142 -1027 26155 -3935 -515 24848 -4912 -269 24608 -4772 -188 23906 -5712 105 23674 -5547 140 22969 -19562 -124 8042 -18828 -308 7769 -18494 -301 8509 -17843 -437 8195 -17534 -269 8937 -17148 -535 7914 -16932 -226 8627 -16165 -458 8237 -14486 356 15633 -14021 549 14935 -14636 446 14474 -13975 264 13899 -14983 225 13837 -14422 55 13408 -14915 -179 12877 -13824 -246 12823 -14431 -412 12240 13158 -1182 11165 13101 -2626 9516 13844 -1331 9671 14360 -1295 8621 14915 -507 8896 15062 -1320 7677 15520 -578 7940 15881 -679 7299 16171 -224 8218 16467 -397 7631 -26155 -1027 4142 -24848 -515 3935 -24922 -269 2932 -24211 -188 2848 -24280 105 1882 -23559 140 1822 -9864 -561 -16196 1 -2626 16191 1337 -1219 17189 0 -1082 17306 778 -890 18020 47 -856 18030 747 -652 18816 16 -654 18829 -680 -636 18809 12950 -94 14445 12748 -59 14846 12283 42 14318 11762 1 14718 11779 -151 13744 11247 -206 14187 -18968 -94 -4074 -19040 -59 -4517 -18353 42 -4363 -18167 1 -4993 -17608 -151 -4195 -17438 -206 -4866 -16168 35 13720 -15481 237 14140 -15537 -21 13296 -16101 -165 12741 -15422 -276 12566 -15409 -347 12154 -16440 -233 12056 -6253 1029 -22026 -6055 730 -21257 -5393 1263 -22232 -5217 854 -21479 -4346 724 -21697 -5039 437 -20686 -4187 305 -20915 -4134 -96 -20160 -3407 100 -21119 -3327 -338 -20193 -11701 -253 18118 -11823 -290 17719 -12931 -211 17797 -12478 -35 17134 -12648 374 16150 -13899 493 15593 -13737 581 15182 -13314 490 15003 -13023 428 15218 -13317 350 14453 -17253 -282 17254 7321 637 22500 6457 832 22741 7547 621 23189 6648 820 23449 6842 808 24134 5723 871 23682 5916 906 24361 4926 643 24605 6284 -59 25816 -7245 302 19971 -6551 112 20187 -6044 -316 19290 -5446 -206 19688 -5023 -80 18933 -4429 -80 19253 -4228 85 18776 -3968 86 18739 16754 302 13062 17174 112 12469 16478 -316 11709 17041 -206 11264 16454 -80 10628 16942 -80 10162 16550 85 9824 16596 86 9565 4750 689 23951 4629 740 23200 5560 897 22967 5392 785 22247 6277 703 22007 -17947 -138 1746 -18383 2 1777 -18446 17 1479 -18841 106 1421 -5694 -933 16436 -4903 -768 16734 -3885 -138 17609 -18013 703 -14114 -18591 916 -14602 -19148 637 -13899 -19736 621 -14323 -20271 356 -13525 -20866 274 -13921 -21395 -23 -13067 -22660 -1027 -13856 -23595 -1263 -12022 13872 -933 10494 14400 -768 9834 15546 -138 9136 -17439 785 -14828 -17998 981 -15312 -18550 1021 -15795 -17381 740 -16048 -17922 762 -16584 -17207 426 -17202 13749 -7117 6993 14456 -2634 7364 15439 -1401 6764 16233 -861 6640 16763 -647 6853 -11897 -184 17312 -11475 -153 17012 -12071 76 16605 -11687 68 16071 5213 575 21515 4350 427 21722 4477 632 22461 -7165 -7117 13663 -2400 -7117 15236 -2536 -2634 16022 -1662 -1401 16774 -1298 -861 17491 -1338 -647 18061 18880 -478 5356 19453 -306 6316 20074 -57 7234 20408 -57 8384 -15935 -1219 6584 -16897 -890 6308 -16663 -909 6931 -17410 -638 7210 7197 -21 20071 7142 -165 19250 6386 -233 19361 6797 -347 18411 6000 -145 18655 6448 -263 18218 2187 -752 17947 2227 -535 18755 3081 -269 19437 -8904 -287 15840 -9431 -151 15450 -8977 -435 14739 -10016 -206 15081 -10167 -728 13994 11128 472 17559 11142 476 17198 10777 478 16957 10448 428 17088 10219 227 16711 9266 -184 16347 -19324 472 -7665 -19123 476 -7364 -18686 478 -7384 -18497 428 -7683 -18090 227 -7512 -17105 -184 -7778 -11470 -2634 11470 -13098 -2626 9516 -13995 -841 10165 -14690 -685 9053 -15039 -135 10049 -15404 -47 9497 -16085 157 9899 -16512 61 9290 16823 1022 15523 740 -478 19611 1517 -458 19552 1477 -638 18786 1443 -909 17989 17920 -458 2837 17744 -752 3465 17070 -982 2702 16025 -2634 2536 15186 -7117 2434 -17226 -389 -20224 -16254 402 -19060 -17022 131 -18425 -16474 275 -17827 25823 -389 6236 24353 402 5866 24601 131 4901 23807 275 4739 24032 331 3803 23216 364 3670 -5876 302 -20416 -4862 5 -19925 -4279 -359 -19486 -3906 -536 -19317 -19184 -144 8826 -19922 31 9124 -20259 75 8352 -19496 23 9942 -19315 427 10850 -19978 632 11199 -19492 785 12003 -20634 740 11571 -20125 897 12385 -18851 575 11607 -18381 488 12329 -18990 703 12770 -17278 33 12501 -16864 -21 13047 -13433 -74 -12261 -13149 -685 -11173 -24995 -23 1928 -24351 494 936 -17231 -23 9647 -15812 -74 8987 -15398 -982 7847 -21691 -598 -15759 -20336 571 -14775 -19721 808 -15503 -19162 970 -15063 -3500 478 -21890 -3625 768 -22658 -4485 1022 -22447 -5574 1536 -22966 -21185 305 -2480 -20451 -96 -2297 -20233 -338 -3075 -6255 -520 25820 -5889 -23 24368 -6828 412 24137 -6634 494 23448 -21352 -20 777 -22131 455 -32 -22880 1029 -859 -11881 509 21287 -11517 542 20683 -12683 121 20791 -12301 161 20181 -9565 1022 20797 -10385 768 20461 8052 35 19617 7844 -21 18885 20336 848 14775 19234 1355 15073 -20768 235 9367 -20218 269 10309 -17208 55 -9573 -16101 -412 -9942 -15456 -639 -9391 -15627 -308 -10458 -3656 -619 -18510 -3647 -554 -19078 -3107 -435 -19490 12372 -53 15051 12288 -164 15434 -16349 -610 -7484 -18856 -53 -4904 -19013 -164 -5264 -13325 -33 13471 -8285 276 25499 -7767 848 23907 -20258 -263 -17191 -19106 906 -16231 -18448 643 -17010 8827 -610 15665 2466 -144 20973 3310 -136 20860 2378 -301 20219 3189 -296 20105 3431 23 21614 4214 150 20942 -18734 -619 -2243 -19579 -536 -2254 -19855 -359 -1951 5342 -841 16452 -7338 -20 -20066 -7166 -206 -19129 -15925 -263 -10948 8664 237 19093 8940 251 19280 -17208 -1182 -1298 9817 -246 16050 9395 -697 15360 5389 14 18946 4444 157 18356 -7673 -1320 -15064 -8514 -1401 -14548 9289 223 19329 9376 9 20111 8532 27 20288 -17159 -1032 -2004 -18039 -775 -2154 17555 -909 4186 18323 -638 4400 -9516 -2626 13098 -7733 -80 -18180 -7347 102 -17712 -7615 85 -17676 -7804 86 -17493 -6565 112 -20183 -6808 455 -21058 -12829 -458 -12829 -2709 -882 -17111 -3396 -1032 -16939 -2828 -574 -17935 -3525 -775 -17822 -9821 42 16107 12303 -138 15829 -17376 -246 -7214 -16630 -697 -6904 9628 -23 23147 8698 274 23527 10188 -1027 24529 8285 -429 25499 -19257 -138 -5574 -16864 575 -14341 -17264 -1463 20186 -15759 -1542 21691 -20940 364 10676 -21311 689 11919 -10932 -7117 10902 -14454 -2634 7364 8450 356 22857 -15333 -263 11763 -16392 -752 7626 -11252 -138 16592 -17715 190 11869 2280 -437 19502 -3393 -149 17801 15881 -149 8728 -10730 914 21106 -17789 217 -17789 -18725 -692 -18725 -4082 -1182 -16767 -2536 -2634 -16025 21261 -188 11926 -20462 -132 -10407 1570 -308 20307 -17914 301 13010 -9542 -398 17548 21078 -277 10737 -11128 479 20133 -14627 -315 10551 -586 -804 17962 -1539 -561 18901 16901 -804 6108 17500 -561 7305 -4470 106 18358 -4466 102 18648 16078 106 9924 16355 102 10010 -19272 -554 -2426 20752 -210 9557 -25499 -1542 -8285 -24533 -1463 -10181 -36 -7117 72 -2231 -7117 -15264 3929 -7117 -14624 -4142 93 -26155 -3935 879 -24848 10599 -7117 -10531 14594 -7117 -4325 -7174 106 -17479 7767 571 23907 -5980 -648 17143 -19115 102 1514 14456 -648 10985 -5664 -452 -18442 16846 854 14310 14915 -359 13249 7185 -276 18551 -8404 854 20443 -7991 -359 18280 -19290 -452 -311 -20453 5 -1532 -17620 -21 -12007 -2881 -384 -18820 26155 -692 4142 24848 22 3935 + + + + + + + + + + 0.1055908203125 0.09585336538461542 0.1055908203125 0.07722355769230771 0.1063232421875 0.07722355769230771 0.3858642578125 0.00030048076923072653 0.3858642578125 0.004507211538461564 0.3865966796875 0.00030048076923072653 0.1072998046875 0.07722355769230771 0.1065673828125 0.07722355769230771 0.1065673828125 0.09585336538461542 0.1075439453125 0.09585336538461542 0.1082763671875 0.07722355769230771 0.1075439453125 0.07722355769230771 0.1290283203125 0.018930288461538436 0.1307373046875 0.009915865384615419 0.1290283203125 0.009915865384615419 0.1326904296875 0.009915865384615419 0.1309814453125 0.009915865384615419 0.1309814453125 0.018930288461538436 0.3829345703125 0.009314903846153855 0.3846435546875 0.005108173076923128 0.3829345703125 0.005108173076923128 0.0469970703125 0.009915865384615419 0.0469970703125 0.018930288461538436 0.0487060546875 0.009915865384615419 0.1346435546875 0.009915865384615419 0.1329345703125 0.009915865384615419 0.1329345703125 0.018930288461538436 0.3963623046875 0.00030048076923072653 0.3946533203125 0.00030048076923072653 0.3946533203125 0.004507211538461564 0.3966064453125 0.00030048076923072653 0.3973388671875 0.00030048076923072653 0.3966064453125 0.004507211538461564 0.3985595703125 0.00030048076923072653 0.3985595703125 0.004507211538461564 0.4002685546875 0.00030048076923072653 0.4005126953125 0.00030048076923072653 0.4005126953125 0.004507211538461564 0.4022216796875 0.00030048076923072653 0.4024658203125 0.004507211538461564 0.4024658203125 0.00030048076923072653 0.4041748046875 0.00030048076923072653 0.1348876953125 0.009915865384615419 0.1365966796875 0.009915865384615419 0.1348876953125 0.018930288461538436 0.1368408203125 0.009915865384615419 0.1368408203125 0.018930288461538436 0.1405029296875 0.009915865384615419 0.1424560546875 0.009915865384615419 0.1407470703125 0.018930288461538436 0.1407470703125 0.009915865384615419 0.3983154296875 0.00030048076923072653 0.3975830078125 0.004507211538461564 0.3975830078125 0.00030048076923072653 0.4044189453125 0.00030048076923072653 0.4051513671875 0.00030048076923072653 0.4044189453125 0.004507211538461564 0.0860595703125 0.057992788461538436 0.0877685546875 0.057992788461538436 0.4061279296875 0.00030048076923072653 0.4053955078125 0.004507211538461564 0.4053955078125 0.00030048076923072653 0.1085205078125 0.09585336538461542 0.1085205078125 0.07722355769230771 0.1092529296875 0.07722355769230771 0.2813720703125 0.6926081730769231 0.2967529296875 0.6926081730769231 0.0001220703125 0.9996995192307693 0.6483154296875 0.15414663461538458 0.6407470703125 0.15414663461538458 0.4022216796875 0.01953125 0.4005126953125 0.01953125 0.4005126953125 0.023737980769230727 0.1446533203125 0.018930288461538436 0.1483154296875 0.009915865384615419 0.1446533203125 0.009915865384615419 0.1719970703125 0.13491586538461542 0.1756591796875 0.13491586538461542 0.1719970703125 0.15354567307692313 0.1427001953125 0.018930288461538436 0.1427001953125 0.009915865384615419 0.1444091796875 0.009915865384615419 0.1485595703125 0.009915865384615419 0.1502685546875 0.009915865384615419 0.1485595703125 0.018930288461538436 0.1759033203125 0.15354567307692313 0.1759033203125 0.13491586538461542 0.1795654296875 0.13491586538461542 0.1524658203125 0.009915865384615419 0.1561279296875 0.009915865384615419 0.1524658203125 0.018930288461538436 0.1798095703125 0.15354567307692313 0.1798095703125 0.13491586538461542 0.1805419921875 0.13491586538461542 0.4063720703125 0.07662259615384615 0.4063720703125 0.07241586538461542 0.4071044921875 0.07241586538461542 0.4083251953125 0.07241586538461542 0.4083251953125 0.07662259615384615 0.4100341796875 0.07241586538461542 0.4073486328125 0.07662259615384615 0.4080810546875 0.07241586538461542 0.4073486328125 0.07241586538461542 0.1505126953125 0.018930288461538436 0.1505126953125 0.009915865384615419 0.1522216796875 0.009915865384615419 0.1251220703125 0.009314903846153855 0.1287841796875 0.00030048076923072653 0.1251220703125 0.00030048076923072653 0.1290283203125 0.00030048076923072653 0.1290283203125 0.009314903846153855 0.1326904296875 0.00030048076923072653 0.1329345703125 0.009314903846153855 0.1365966796875 0.00030048076923072653 0.1329345703125 0.00030048076923072653 0.1837158203125 0.13491586538461542 0.1873779296875 0.13491586538461542 0.1837158203125 0.15354567307692313 0.1600341796875 0.11568509615384615 0.1563720703125 0.13431490384615385 0.1563720703125 0.11568509615384615 0.1405029296875 0.00030048076923072653 0.1368408203125 0.00030048076923072653 0.1368408203125 0.009314903846153855 0.1424560546875 0.00030048076923072653 0.1407470703125 0.009314903846153855 0.1407470703125 0.00030048076923072653 0.4119873046875 0.07241586538461542 0.4102783203125 0.07662259615384615 0.4102783203125 0.07241586538461542 0.9844970703125 0.7310697115384616 0.9998779296875 0.7310697115384616 0.1446533203125 0.009314903846153855 0.1483154296875 0.00030048076923072653 0.1446533203125 0.00030048076923072653 0.1444091796875 0.00030048076923072653 0.1427001953125 0.00030048076923072653 0.1427001953125 0.009314903846153855 0.1485595703125 0.009314903846153855 0.1502685546875 0.00030048076923072653 0.1485595703125 0.00030048076923072653 0.1524658203125 0.00030048076923072653 0.1524658203125 0.009314903846153855 0.1561279296875 0.00030048076923072653 0.1600341796875 0.06760817307692313 0.1563720703125 0.06760817307692313 0.1563720703125 0.07662259615384615 0.1639404296875 0.06760817307692313 0.1602783203125 0.06760817307692313 0.1602783203125 0.07662259615384615 0.8438720703125 0.4227764423076923 0.8592529296875 0.3849158653846154 0.8438720703125 0.3849158653846154 0.8123779296875 0.42337740384615385 0.8048095703125 0.42337740384615385 0.8048095703125 0.4612379807692307 0.8594970703125 0.3849158653846154 0.8670654296875 0.3849158653846154 0.8594970703125 0.4227764423076923 0.8748779296875 0.3849158653846154 0.8673095703125 0.4227764423076923 0.8673095703125 0.3849158653846154 0.8516845703125 0.5766225961538461 0.8592529296875 0.5387620192307692 0.1717529296875 0.11568509615384615 0.1641845703125 0.11568509615384615 0.1641845703125 0.13431490384615385 0.1641845703125 0.07662259615384615 0.1641845703125 0.06760817307692313 0.1678466796875 0.06760817307692313 0.1680908203125 0.06760817307692313 0.1680908203125 0.07662259615384615 0.1717529296875 0.06760817307692313 0.8751220703125 0.4612379807692307 0.8905029296875 0.42337740384615385 0.8751220703125 0.42337740384615385 0.8983154296875 0.42337740384615385 0.8907470703125 0.4612379807692307 0.8907470703125 0.42337740384615385 0.1602783203125 0.13431490384615385 0.1602783203125 0.11568509615384615 0.1639404296875 0.11568509615384615 0.1756591796875 0.11568509615384615 0.1719970703125 0.11568509615384615 0.1719970703125 0.13431490384615385 0.1798095703125 0.13431490384615385 0.1873779296875 0.11568509615384615 0.1798095703125 0.11568509615384615 0.8985595703125 0.42337740384615385 0.9061279296875 0.42337740384615385 0.8985595703125 0.4612379807692307 0.1563720703125 0.11508413461538458 0.1563720703125 0.09645432692307687 0.1639404296875 0.09645432692307687 0.8751220703125 0.3849158653846154 0.8826904296875 0.3849158653846154 0.8751220703125 0.4227764423076923 0.1759033203125 0.13431490384615385 0.1759033203125 0.11568509615384615 0.1795654296875 0.11568509615384615 0.1756591796875 0.06760817307692313 0.1719970703125 0.06760817307692313 0.1719970703125 0.07662259615384615 0.1505126953125 0.009314903846153855 0.1522216796875 0.00030048076923072653 0.1505126953125 0.00030048076923072653 0.1795654296875 0.06760817307692313 0.1759033203125 0.07662259615384615 0.1759033203125 0.06760817307692313 0.1798095703125 0.06760817307692313 0.1834716796875 0.06760817307692313 0.1798095703125 0.07662259615384615 0.1854248046875 0.06760817307692313 0.1837158203125 0.06760817307692313 0.1837158203125 0.07662259615384615 0.4139404296875 0.07241586538461542 0.4122314453125 0.07241586538461542 0.4122314453125 0.07662259615384615 0.1856689453125 0.07662259615384615 0.1856689453125 0.06760817307692313 0.1873779296875 0.06760817307692313 0.1580810546875 0.057992788461538436 0.1563720703125 0.06700721153846156 0.1563720703125 0.057992788461538436 0.4141845703125 0.07662259615384615 0.4141845703125 0.07241586538461542 0.4158935546875 0.07241586538461542 0.4161376953125 0.07241586538461542 0.4178466796875 0.07241586538461542 0.4161376953125 0.07662259615384615 0.4197998046875 0.07241586538461542 0.4180908203125 0.07241586538461542 0.4180908203125 0.07662259615384615 0.4207763671875 0.07241586538461542 0.4200439453125 0.07241586538461542 0.4200439453125 0.07662259615384615 0.1602783203125 0.06700721153846156 0.1602783203125 0.057992788461538436 0.1639404296875 0.057992788461538436 0.1678466796875 0.057992788461538436 0.1641845703125 0.057992788461538436 0.1641845703125 0.06700721153846156 0.1680908203125 0.057992788461538436 0.1680908203125 0.06700721153846156 0.1717529296875 0.057992788461538436 0.1600341796875 0.057992788461538436 0.1583251953125 0.057992788461538436 0.1583251953125 0.06700721153846156 0.4217529296875 0.07241586538461542 0.4210205078125 0.07241586538461542 0.4210205078125 0.07662259615384615 0.4219970703125 0.07241586538461542 0.4227294921875 0.07241586538461542 0.4219970703125 0.07662259615384615 0.1641845703125 0.11508413461538458 0.1678466796875 0.09645432692307687 0.1641845703125 0.09645432692307687 0.1680908203125 0.09645432692307687 0.1717529296875 0.09645432692307687 0.1680908203125 0.11508413461538458 0.1719970703125 0.09645432692307687 0.1719970703125 0.11508413461538458 0.1795654296875 0.09645432692307687 0.1873779296875 0.09645432692307687 0.1798095703125 0.11508413461538458 0.1798095703125 0.09645432692307687 0.4239501953125 0.07241586538461542 0.4239501953125 0.07662259615384615 0.4256591796875 0.07241586538461542 0.0938720703125 0.5387620192307692 0.1092529296875 0.5387620192307692 0.1092529296875 0.42337740384615385 0.0938720703125 0.42337740384615385 0.9774169921875 0.34645432692307687 0.9766845703125 0.34645432692307687 0.9766845703125 0.3650841346153846 0.1094970703125 0.24969951923076927 0.1102294921875 0.23106971153846156 0.1094970703125 0.23106971153846156 0.4259033203125 0.07662259615384615 0.4276123046875 0.07241586538461542 0.4259033203125 0.07241586538461542 0.4278564453125 0.07241586538461542 0.4278564453125 0.07662259615384615 0.4295654296875 0.07241586538461542 0.1815185546875 0.13491586538461542 0.1807861328125 0.13491586538461542 0.1807861328125 0.15354567307692313 0.1817626953125 0.15354567307692313 0.1824951171875 0.13491586538461542 0.1817626953125 0.13491586538461542 0.4229736328125 0.07241586538461542 0.4229736328125 0.07662259615384615 0.4237060546875 0.07241586538461542 0.4305419921875 0.07241586538461542 0.4298095703125 0.07662259615384615 0.4298095703125 0.07241586538461542 0.1827392578125 0.13491586538461542 0.1827392578125 0.15354567307692313 0.1834716796875 0.13491586538461542 0.0899658203125 0.11568509615384615 0.0936279296875 0.11568509615384615 0.4600830078125 0.2503004807692307 0.4600830078125 0.26893028846153844 0.1571044921875 0.07722355769230771 0.1563720703125 0.07722355769230771 0.1563720703125 0.09585336538461542 0.4317626953125 0.07662259615384615 0.4334716796875 0.07241586538461542 0.4317626953125 0.07241586538461542 0.1719970703125 0.057992788461538436 0.1719970703125 0.06700721153846156 0.1737060546875 0.057992788461538436 0.1739501953125 0.06700721153846156 0.1756591796875 0.057992788461538436 0.1739501953125 0.057992788461538436 0.3907470703125 0.8458533653846154 0.3907470703125 0.8079927884615384 0.8907470703125 0.3849158653846154 0.9061279296875 0.3849158653846154 0.8907470703125 0.4227764423076923 0.9217529296875 0.42337740384615385 0.9063720703125 0.42337740384615385 0.9063720703125 0.4612379807692307 0.9219970703125 0.4612379807692307 0.9373779296875 0.42337740384615385 0.9219970703125 0.42337740384615385 0.8905029296875 0.3849158653846154 0.8829345703125 0.3849158653846154 0.8829345703125 0.4227764423076923 0.1641845703125 0.07722355769230771 0.1717529296875 0.07722355769230771 0.1641845703125 0.09585336538461542 0.1719970703125 0.07722355769230771 0.1719970703125 0.09585336538461542 0.1795654296875 0.07722355769230771 0.1873779296875 0.07722355769230771 0.1798095703125 0.07722355769230771 0.1798095703125 0.09585336538461542 0.1639404296875 0.07722355769230771 0.1602783203125 0.07722355769230771 0.1602783203125 0.09585336538461542 0.1876220703125 0.15354567307692313 0.1912841796875 0.13491586538461542 0.1876220703125 0.13491586538461542 0.1951904296875 0.13491586538461542 0.1915283203125 0.13491586538461542 0.1915283203125 0.15354567307692313 0.4354248046875 0.07241586538461542 0.4337158203125 0.07662259615384615 0.4337158203125 0.07241586538461542 0.1759033203125 0.06700721153846156 0.1759033203125 0.057992788461538436 0.1776123046875 0.057992788461538436 0.1795654296875 0.057992788461538436 0.1778564453125 0.06700721153846156 0.1778564453125 0.057992788461538436 0.1798095703125 0.057992788461538436 0.1815185546875 0.057992788461538436 0.1798095703125 0.06700721153846156 0.1873779296875 0.057992788461538436 0.1837158203125 0.057992788461538436 0.1837158203125 0.06700721153846156 0.1834716796875 0.057992788461538436 0.1817626953125 0.057992788461538436 0.1817626953125 0.06700721153846156 0.1573486328125 0.07722355769230771 0.1580810546875 0.07722355769230771 0.1573486328125 0.09585336538461542 0.1563720703125 0.05739182692307687 0.1563720703125 0.048377403846153855 0.1580810546875 0.048377403846153855 0.1600341796875 0.048377403846153855 0.1583251953125 0.048377403846153855 0.1583251953125 0.05739182692307687 0.4356689453125 0.07241586538461542 0.4356689453125 0.07662259615384615 0.4373779296875 0.07241586538461542 0.1602783203125 0.05739182692307687 0.1602783203125 0.048377403846153855 0.1619873046875 0.048377403846153855 0.1622314453125 0.048377403846153855 0.1622314453125 0.05739182692307687 0.1639404296875 0.048377403846153855 0.0233154296875 0.00030048076923072653 0.0216064453125 0.00030048076923072653 0.0216064453125 0.009314903846153855 0.4080810546875 0.06760817307692313 0.4063720703125 0.07181490384615385 0.4063720703125 0.06760817307692313 0.4083251953125 0.06760817307692313 0.4100341796875 0.06760817307692313 0.4083251953125 0.07181490384615385 0.4119873046875 0.06760817307692313 0.4102783203125 0.07181490384615385 0.4102783203125 0.06760817307692313 0.4315185546875 0.07241586538461542 0.4307861328125 0.07662259615384615 0.4307861328125 0.07241586538461542 0.4122314453125 0.07181490384615385 0.4122314453125 0.06760817307692313 0.4139404296875 0.06760817307692313 0.4158935546875 0.06760817307692313 0.4141845703125 0.07181490384615385 0.4141845703125 0.06760817307692313 0.9832763671875 0.3272235576923077 0.9825439453125 0.3272235576923077 0.1583251953125 0.09585336538461542 0.1590576171875 0.07722355769230771 0.1583251953125 0.07722355769230771 0.1593017578125 0.07722355769230771 0.1593017578125 0.09585336538461542 0.1600341796875 0.07722355769230771 0.4161376953125 0.06760817307692313 0.4161376953125 0.07181490384615385 0.4168701171875 0.06760817307692313 0.4171142578125 0.07181490384615385 0.4178466796875 0.06760817307692313 0.4171142578125 0.06760817307692313 0.4180908203125 0.07181490384615385 0.4180908203125 0.06760817307692313 0.4197998046875 0.06760817307692313 0.1641845703125 0.05739182692307687 0.1678466796875 0.048377403846153855 0.1641845703125 0.048377403846153855 0.1697998046875 0.048377403846153855 0.1680908203125 0.048377403846153855 0.1680908203125 0.05739182692307687 0.1700439453125 0.048377403846153855 0.1700439453125 0.05739182692307687 0.1717529296875 0.048377403846153855 0.1954345703125 0.13491586538461542 0.1954345703125 0.15354567307692313 0.1990966796875 0.13491586538461542 0.9063720703125 0.4227764423076923 0.9139404296875 0.3849158653846154 0.9063720703125 0.3849158653846154 0.9141845703125 0.3849158653846154 0.9141845703125 0.4227764423076923 0.9217529296875 0.3849158653846154 0.1993408203125 0.13491586538461542 0.2030029296875 0.13491586538461542 0.1993408203125 0.15354567307692313 0.1756591796875 0.048377403846153855 0.1719970703125 0.048377403846153855 0.1719970703125 0.05739182692307687 0.1759033203125 0.05739182692307687 0.1795654296875 0.048377403846153855 0.1759033203125 0.048377403846153855 0.1834716796875 0.048377403846153855 0.1798095703125 0.05739182692307687 0.1798095703125 0.048377403846153855 0.1837158203125 0.048377403846153855 0.1873779296875 0.048377403846153855 0.1837158203125 0.05739182692307687 0.1580810546875 0.038762019230769273 0.1563720703125 0.038762019230769273 0.1563720703125 0.04777644230769229 0.4217529296875 0.06760817307692313 0.4200439453125 0.07181490384615385 0.4200439453125 0.06760817307692313 0.4219970703125 0.07181490384615385 0.4219970703125 0.06760817307692313 0.4237060546875 0.06760817307692313 0.4256591796875 0.06760817307692313 0.4239501953125 0.07181490384615385 0.4239501953125 0.06760817307692313 0.4259033203125 0.07181490384615385 0.4259033203125 0.06760817307692313 0.4276123046875 0.06760817307692313 0.1583251953125 0.038762019230769273 0.1600341796875 0.038762019230769273 0.1583251953125 0.04777644230769229 0.1619873046875 0.038762019230769273 0.1602783203125 0.04777644230769229 0.1602783203125 0.038762019230769273 0.0645751953125 0.06700721153846156 0.0645751953125 0.057992788461538436 0.1678466796875 0.038762019230769273 0.1641845703125 0.038762019230769273 0.1641845703125 0.04777644230769229 0.0157470703125 0.02914663461538458 0.0157470703125 0.03816105769230771 0.0194091796875 0.02914663461538458 0.1639404296875 0.038762019230769273 0.1622314453125 0.038762019230769273 0.1622314453125 0.04777644230769229 0.4295654296875 0.06760817307692313 0.4278564453125 0.06760817307692313 0.4278564453125 0.07181490384615385 0.4298095703125 0.06760817307692313 0.4305419921875 0.06760817307692313 0.4298095703125 0.07181490384615385 0.2032470703125 0.15354567307692313 0.2108154296875 0.13491586538461542 0.2032470703125 0.13491586538461542 0.2110595703125 0.13491586538461542 0.2186279296875 0.13491586538461542 0.2110595703125 0.15354567307692313 0.1876220703125 0.11568509615384615 0.1876220703125 0.13431490384615385 0.1951904296875 0.11568509615384615 0.2030029296875 0.11568509615384615 0.1954345703125 0.13431490384615385 0.1954345703125 0.11568509615384615 0.3592529296875 0.6926081730769231 0.3438720703125 0.6926081730769231 0.1405029296875 0.6156850961538461 0.1251220703125 0.6156850961538461 0.4317626953125 0.06760817307692313 0.4317626953125 0.07181490384615385 0.4334716796875 0.06760817307692313 0.2032470703125 0.13431490384615385 0.2032470703125 0.11568509615384615 0.2039794921875 0.11568509615384615 0.4307861328125 0.06760817307692313 0.4307861328125 0.07181490384615385 0.4315185546875 0.06760817307692313 0.4354248046875 0.06760817307692313 0.4337158203125 0.06760817307692313 0.4337158203125 0.07181490384615385 0.4356689453125 0.06760817307692313 0.4356689453125 0.07181490384615385 0.4373779296875 0.06760817307692313 0.5037841796875 0.15414663461538458 0.5001220703125 0.15414663461538458 0.4063720703125 0.06280048076923073 0.4063720703125 0.06700721153846156 0.4080810546875 0.06280048076923073 0.1680908203125 0.04777644230769229 0.1717529296875 0.038762019230769273 0.1680908203125 0.038762019230769273 0.1759033203125 0.30739182692307687 0.1795654296875 0.2887620192307693 0.7969970703125 0.11568509615384615 0.8006591796875 0.11568509615384615 0.7969970703125 0.12469951923076927 0.8126220703125 0.7310697115384616 0.8201904296875 0.7310697115384616 0.2071533203125 0.11568509615384615 0.2108154296875 0.11568509615384615 0.2071533203125 0.13431490384615385 0.2110595703125 0.11568509615384615 0.2186279296875 0.11568509615384615 0.2110595703125 0.13431490384615385 0.1876220703125 0.11508413461538458 0.1876220703125 0.09645432692307687 0.1951904296875 0.09645432692307687 0.1954345703125 0.09645432692307687 0.2030029296875 0.09645432692307687 0.1954345703125 0.11508413461538458 0.4083251953125 0.06280048076923073 0.4083251953125 0.06700721153846156 0.4090576171875 0.06280048076923073 0.1719970703125 0.04777644230769229 0.1756591796875 0.038762019230769273 0.1719970703125 0.038762019230769273 0.1759033203125 0.038762019230769273 0.1759033203125 0.04777644230769229 0.1795654296875 0.038762019230769273 0.4100341796875 0.06280048076923073 0.4093017578125 0.06280048076923073 0.4093017578125 0.06700721153846156 0.1798095703125 0.04777644230769229 0.1815185546875 0.038762019230769273 0.1798095703125 0.038762019230769273 0.1837158203125 0.038762019230769273 0.1873779296875 0.038762019230769273 0.1837158203125 0.04777644230769229 0.1817626953125 0.04777644230769229 0.1817626953125 0.038762019230769273 0.1834716796875 0.038762019230769273 0.4102783203125 0.06280048076923073 0.4119873046875 0.06280048076923073 0.4102783203125 0.06700721153846156 0.4122314453125 0.06700721153846156 0.4122314453125 0.06280048076923073 0.4139404296875 0.06280048076923073 0.4158935546875 0.06280048076923073 0.4141845703125 0.06280048076923073 0.4141845703125 0.06700721153846156 0.2042236328125 0.13431490384615385 0.2049560546875 0.11568509615384615 0.2042236328125 0.11568509615384615 0.4161376953125 0.06280048076923073 0.4168701171875 0.06280048076923073 0.4161376953125 0.06700721153846156 0.3643798828125 0.009915865384615419 0.3651123046875 0.009915865384615419 0.3643798828125 0.014122596153846145 0.4178466796875 0.06280048076923073 0.4171142578125 0.06700721153846156 0.4171142578125 0.06280048076923073 0.2059326171875 0.11568509615384615 0.2052001953125 0.13431490384615385 0.2052001953125 0.11568509615384615 0.2061767578125 0.13431490384615385 0.2061767578125 0.11568509615384615 0.2069091796875 0.11568509615384615 0.4180908203125 0.06280048076923073 0.4180908203125 0.06700721153846156 0.4188232421875 0.06280048076923073 0.4200439453125 0.06700721153846156 0.4217529296875 0.06280048076923073 0.4200439453125 0.06280048076923073 0.1563720703125 0.02914663461538458 0.1580810546875 0.02914663461538458 0.1563720703125 0.03816105769230771 0.1600341796875 0.02914663461538458 0.1583251953125 0.02914663461538458 0.1583251953125 0.03816105769230771 0.1602783203125 0.03816105769230771 0.1639404296875 0.02914663461538458 0.1602783203125 0.02914663461538458 0.2032470703125 0.09645432692307687 0.2032470703125 0.11508413461538458 0.2069091796875 0.09645432692307687 0.2186279296875 0.09645432692307687 0.2110595703125 0.09645432692307687 0.2110595703125 0.11508413461538458 0.2108154296875 0.09645432692307687 0.2071533203125 0.11508413461538458 0.2071533203125 0.09645432692307687 0.1641845703125 0.02914663461538458 0.1678466796875 0.02914663461538458 0.1641845703125 0.03816105769230771 0.1717529296875 0.02914663461538458 0.1680908203125 0.03816105769230771 0.1680908203125 0.02914663461538458 0.1756591796875 0.02914663461538458 0.1719970703125 0.03816105769230771 0.1719970703125 0.02914663461538458 0.1759033203125 0.03816105769230771 0.1759033203125 0.02914663461538458 0.1795654296875 0.02914663461538458 0.1834716796875 0.02914663461538458 0.1798095703125 0.03816105769230771 0.1798095703125 0.02914663461538458 0.3956298828125 0.2881610576923077 0.3963623046875 0.26953125 0.3956298828125 0.26953125 0.1876220703125 0.09585336538461542 0.1876220703125 0.07722355769230771 0.1883544921875 0.07722355769230771 0.4190673828125 0.06280048076923073 0.4197998046875 0.06280048076923073 0.4190673828125 0.06700721153846156 0.1885986328125 0.07722355769230771 0.1885986328125 0.09585336538461542 0.1893310546875 0.07722355769230771 0.4219970703125 0.06700721153846156 0.4237060546875 0.06280048076923073 0.4219970703125 0.06280048076923073 0.4239501953125 0.06280048076923073 0.4239501953125 0.06700721153846156 0.4256591796875 0.06280048076923073 0.1915283203125 0.09585336538461542 0.1951904296875 0.07722355769230771 0.1915283203125 0.07722355769230771 0.1837158203125 0.02914663461538458 0.1873779296875 0.02914663461538458 0.1837158203125 0.03816105769230771 0.1600341796875 0.01953125 0.1563720703125 0.01953125 0.1563720703125 0.028545673076923128 0.3946533203125 0.07181490384615385 0.3946533203125 0.06760817307692313 0.3953857421875 0.06760817307692313 0.1895751953125 0.07722355769230771 0.1903076171875 0.07722355769230771 0.1895751953125 0.09585336538461542 0.1905517578125 0.09585336538461542 0.1905517578125 0.07722355769230771 0.1912841796875 0.07722355769230771 0.1954345703125 0.07722355769230771 0.1961669921875 0.07722355769230771 0.1954345703125 0.09585336538461542 0.4259033203125 0.06700721153846156 0.4259033203125 0.06280048076923073 0.4276123046875 0.06280048076923073 0.4285888671875 0.06280048076923073 0.4278564453125 0.06280048076923073 0.4278564453125 0.06700721153846156 0.1964111328125 0.07722355769230771 0.1971435546875 0.07722355769230771 0.1964111328125 0.09585336538461542 0.4288330078125 0.06280048076923073 0.4295654296875 0.06280048076923073 0.4288330078125 0.06700721153846156 0.1973876953125 0.07722355769230771 0.1973876953125 0.09585336538461542 0.1981201171875 0.07722355769230771 0.1983642578125 0.07722355769230771 0.1990966796875 0.07722355769230771 0.1983642578125 0.09585336538461542 0.4298095703125 0.06700721153846156 0.4298095703125 0.06280048076923073 0.4315185546875 0.06280048076923073 0.8983154296875 0.17337740384615385 0.8946533203125 0.17337740384615385 0.1619873046875 0.01953125 0.1602783203125 0.028545673076923128 0.1602783203125 0.01953125 0.4317626953125 0.06280048076923073 0.4317626953125 0.06700721153846156 0.4324951171875 0.06280048076923073 0.1993408203125 0.07722355769230771 0.2000732421875 0.07722355769230771 0.1993408203125 0.09585336538461542 0.1622314453125 0.028545673076923128 0.1622314453125 0.01953125 0.1639404296875 0.01953125 0.1658935546875 0.01953125 0.1641845703125 0.01953125 0.1641845703125 0.028545673076923128 0.4354248046875 0.06280048076923073 0.4337158203125 0.06700721153846156 0.4337158203125 0.06280048076923073 0.1680908203125 0.028545673076923128 0.1717529296875 0.01953125 0.1680908203125 0.01953125 0.8983154296875 0.5772235576923077 0.8907470703125 0.5772235576923077 0.1795654296875 0.26953125 0.1719970703125 0.26953125 0.2032470703125 0.07722355769230771 0.2032470703125 0.09585336538461542 0.2069091796875 0.07722355769230771 0.2186279296875 0.07722355769230771 0.2110595703125 0.07722355769230771 0.2110595703125 0.09585336538461542 0.2108154296875 0.07722355769230771 0.2071533203125 0.07722355769230771 0.2071533203125 0.09585336538461542 0.2188720703125 0.15354567307692313 0.2264404296875 0.13491586538461542 0.2188720703125 0.13491586538461542 0.2342529296875 0.13491586538461542 0.2266845703125 0.13491586538461542 0.2266845703125 0.15354567307692313 0.9219970703125 0.4227764423076923 0.9295654296875 0.3849158653846154 0.9219970703125 0.3849158653846154 0.9376220703125 0.42337740384615385 0.9376220703125 0.4612379807692307 0.9530029296875 0.42337740384615385 0.9844970703125 0.76953125 0.9844970703125 0.8073918269230769 0.9532470703125 0.42337740384615385 0.9532470703125 0.4612379807692307 0.9686279296875 0.42337740384615385 0.9530029296875 0.3849158653846154 0.9376220703125 0.4227764423076923 0.9376220703125 0.3849158653846154 0.9298095703125 0.4227764423076923 0.9298095703125 0.3849158653846154 0.9373779296875 0.3849158653846154 0.9686279296875 0.3849158653846154 0.9532470703125 0.4227764423076923 0.9532470703125 0.3849158653846154 0.2344970703125 0.15354567307692313 0.2344970703125 0.13491586538461542 0.2420654296875 0.13491586538461542 0.2423095703125 0.13491586538461542 0.2498779296875 0.13491586538461542 0.2423095703125 0.15354567307692313 0.2264404296875 0.11568509615384615 0.2188720703125 0.13431490384615385 0.2188720703125 0.11568509615384615 0.2266845703125 0.11568509615384615 0.2266845703125 0.13431490384615385 0.2342529296875 0.11568509615384615 0.2420654296875 0.11568509615384615 0.2344970703125 0.11568509615384615 0.2344970703125 0.13431490384615385 0.2459716796875 0.11568509615384615 0.2423095703125 0.11568509615384615 0.2423095703125 0.13431490384615385 0.2462158203125 0.13431490384615385 0.2498779296875 0.11568509615384615 0.2462158203125 0.11568509615384615 0.2225341796875 0.09645432692307687 0.2188720703125 0.09645432692307687 0.2188720703125 0.11508413461538458 0.4373779296875 0.06280048076923073 0.4356689453125 0.06280048076923073 0.4356689453125 0.06700721153846156 0.1661376953125 0.028545673076923128 0.1661376953125 0.01953125 0.1678466796875 0.01953125 0.1737060546875 0.01953125 0.1719970703125 0.01953125 0.1719970703125 0.028545673076923128 0.4063720703125 0.062199519230769273 0.4080810546875 0.057992788461538436 0.4063720703125 0.057992788461538436 0.4100341796875 0.057992788461538436 0.4083251953125 0.057992788461538436 0.4083251953125 0.062199519230769273 0.1759033203125 0.028545673076923128 0.1759033203125 0.01953125 0.1795654296875 0.01953125 0.1756591796875 0.01953125 0.1739501953125 0.01953125 0.1739501953125 0.028545673076923128 0.2003173828125 0.07722355769230771 0.2010498046875 0.07722355769230771 0.2003173828125 0.09585336538461542 0.1798095703125 0.028545673076923128 0.1798095703125 0.01953125 0.1834716796875 0.01953125 0.1873779296875 0.01953125 0.1837158203125 0.01953125 0.1837158203125 0.028545673076923128 0.1563720703125 0.009915865384615419 0.1563720703125 0.018930288461538436 0.1600341796875 0.009915865384615419 0.1602783203125 0.009915865384615419 0.1602783203125 0.018930288461538436 0.1639404296875 0.009915865384615419 0.4102783203125 0.057992788461538436 0.4102783203125 0.062199519230769273 0.4119873046875 0.057992788461538436 0.4139404296875 0.057992788461538436 0.4122314453125 0.062199519230769273 0.4122314453125 0.057992788461538436 0.2012939453125 0.07722355769230771 0.2012939453125 0.09585336538461542 0.2020263671875 0.07722355769230771 0.4158935546875 0.057992788461538436 0.4141845703125 0.057992788461538436 0.4141845703125 0.062199519230769273 0.2030029296875 0.07722355769230771 0.2022705078125 0.07722355769230771 0.2022705078125 0.09585336538461542 0.4327392578125 0.06700721153846156 0.4327392578125 0.06280048076923073 0.4334716796875 0.06280048076923073 0.2227783203125 0.11508413461538458 0.2227783203125 0.09645432692307687 0.2235107421875 0.09645432692307687 0.4161376953125 0.057992788461538436 0.4161376953125 0.062199519230769273 0.4168701171875 0.057992788461538436 0.4180908203125 0.062199519230769273 0.4197998046875 0.057992788461538436 0.4180908203125 0.057992788461538436 0.1641845703125 0.009915865384615419 0.1641845703125 0.018930288461538436 0.1658935546875 0.009915865384615419 0.1680908203125 0.018930288461538436 0.1717529296875 0.009915865384615419 0.1680908203125 0.009915865384615419 0.1756591796875 0.009915865384615419 0.1719970703125 0.009915865384615419 0.1719970703125 0.018930288461538436 0.1759033203125 0.009915865384615419 0.1759033203125 0.018930288461538436 0.1795654296875 0.009915865384615419 0.2266845703125 0.09645432692307687 0.2266845703125 0.11508413461538458 0.2303466796875 0.09645432692307687 0.9688720703125 0.4612379807692307 0.9764404296875 0.42337740384615385 0.9688720703125 0.42337740384615385 0.9766845703125 0.42337740384615385 0.9766845703125 0.4612379807692307 0.9842529296875 0.42337740384615385 0.2305908203125 0.09645432692307687 0.2342529296875 0.09645432692307687 0.2305908203125 0.11508413461538458 0.0782470703125 0.03816105769230771 0.0782470703125 0.02914663461538458 0.0799560546875 0.02914663461538458 0.3165283203125 0.2118389423076923 0.3201904296875 0.2118389423076923 0.3165283203125 0.23046875 0.9998779296875 0.15414663461538458 0.9962158203125 0.1727764423076923 0.9962158203125 0.15414663461538458 0.1798095703125 0.009915865384615419 0.1834716796875 0.009915865384615419 0.1798095703125 0.018930288461538436 0.4178466796875 0.057992788461538436 0.4171142578125 0.057992788461538436 0.4171142578125 0.062199519230769273 0.1661376953125 0.018930288461538436 0.1661376953125 0.009915865384615419 0.1678466796875 0.009915865384615419 0.1837158203125 0.009915865384615419 0.1837158203125 0.018930288461538436 0.1873779296875 0.009915865384615419 0.9190673828125 0.3650841346153846 0.9197998046875 0.34645432692307687 0.0936279296875 0.7310697115384616 0.0782470703125 0.7310697115384616 0.4200439453125 0.062199519230769273 0.4217529296875 0.057992788461538436 0.4200439453125 0.057992788461538436 0.1563720703125 0.009314903846153855 0.1580810546875 0.00030048076923072653 0.1563720703125 0.00030048076923072653 0.1602783203125 0.009314903846153855 0.1602783203125 0.00030048076923072653 0.1639404296875 0.00030048076923072653 0.2344970703125 0.11508413461538458 0.2381591796875 0.09645432692307687 0.2344970703125 0.09645432692307687 0.1641845703125 0.00030048076923072653 0.1678466796875 0.00030048076923072653 0.1641845703125 0.009314903846153855 0.1717529296875 0.00030048076923072653 0.1680908203125 0.009314903846153855 0.1680908203125 0.00030048076923072653 0.1756591796875 0.00030048076923072653 0.1719970703125 0.00030048076923072653 0.1719970703125 0.009314903846153855 0.1600341796875 0.00030048076923072653 0.1583251953125 0.009314903846153855 0.1583251953125 0.00030048076923072653 0.4237060546875 0.057992788461538436 0.4219970703125 0.057992788461538436 0.4219970703125 0.062199519230769273 0.4239501953125 0.057992788461538436 0.4239501953125 0.062199519230769273 0.4256591796875 0.057992788461538436 0.1759033203125 0.009314903846153855 0.1776123046875 0.00030048076923072653 0.1759033203125 0.00030048076923072653 0.1834716796875 0.00030048076923072653 0.1798095703125 0.009314903846153855 0.1798095703125 0.00030048076923072653 0.1795654296875 0.00030048076923072653 0.1778564453125 0.00030048076923072653 0.1778564453125 0.009314903846153855 0.1837158203125 0.00030048076923072653 0.1837158203125 0.009314903846153855 0.1854248046875 0.00030048076923072653 0.1873779296875 0.00030048076923072653 0.1856689453125 0.009314903846153855 0.1856689453125 0.00030048076923072653 0.1876220703125 0.07662259615384615 0.1876220703125 0.06760817307692313 0.1893310546875 0.06760817307692313 0.2384033203125 0.09645432692307687 0.2420654296875 0.09645432692307687 0.2384033203125 0.11508413461538458 0.2459716796875 0.09645432692307687 0.2423095703125 0.11508413461538458 0.2423095703125 0.09645432692307687 0.1915283203125 0.06760817307692313 0.1951904296875 0.06760817307692313 0.1915283203125 0.07662259615384615 0.2188720703125 0.09585336538461542 0.2188720703125 0.07722355769230771 0.2264404296875 0.07722355769230771 0.2342529296875 0.07722355769230771 0.2266845703125 0.09585336538461542 0.2266845703125 0.07722355769230771 0.9844970703125 0.4612379807692307 0.9844970703125 0.42337740384615385 0.9920654296875 0.42337740384615385 0.9688720703125 0.3849158653846154 0.9842529296875 0.3849158653846154 0.9688720703125 0.4227764423076923 0.9998779296875 0.3849158653846154 0.9844970703125 0.4227764423076923 0.9844970703125 0.3849158653846154 0.0001220703125 0.34645432692307687 0.0001220703125 0.38431490384615385 0.0155029296875 0.34645432692307687 0.0157470703125 0.38431490384615385 0.0311279296875 0.34645432692307687 0.0157470703125 0.34645432692307687 0.2852783203125 0.15414663461538458 0.2852783203125 0.1727764423076923 0.2344970703125 0.07722355769230771 0.2344970703125 0.09585336538461542 0.2420654296875 0.07722355769230771 0.2498779296875 0.09645432692307687 0.2462158203125 0.11508413461538458 0.2462158203125 0.09645432692307687 0.2423095703125 0.07722355769230771 0.2459716796875 0.07722355769230771 0.2423095703125 0.09585336538461542 0.4276123046875 0.057992788461538436 0.4259033203125 0.057992788461538436 0.4259033203125 0.062199519230769273 0.1895751953125 0.07662259615384615 0.1895751953125 0.06760817307692313 0.1912841796875 0.06760817307692313 0.1954345703125 0.06760817307692313 0.1954345703125 0.07662259615384615 0.1990966796875 0.06760817307692313 0.2237548828125 0.09645432692307687 0.2244873046875 0.09645432692307687 0.2237548828125 0.11508413461538458 0.3800048828125 0.014122596153846145 0.3807373046875 0.009915865384615419 0.3800048828125 0.009915865384615419 0.4278564453125 0.057992788461538436 0.4295654296875 0.057992788461538436 0.4278564453125 0.062199519230769273 0.1993408203125 0.06760817307692313 0.2010498046875 0.06760817307692313 0.1993408203125 0.07662259615384615 0.2032470703125 0.07662259615384615 0.2032470703125 0.06760817307692313 0.2069091796875 0.06760817307692313 0.2462158203125 0.09585336538461542 0.2498779296875 0.07722355769230771 0.2462158203125 0.07722355769230771 0.2071533203125 0.06760817307692313 0.2108154296875 0.06760817307692313 0.2071533203125 0.07662259615384615 0.2147216796875 0.06760817307692313 0.2110595703125 0.07662259615384615 0.2110595703125 0.06760817307692313 0.9959716796875 0.12530048076923073 0.9923095703125 0.13431490384615385 0.9923095703125 0.12530048076923073 0.2012939453125 0.06760817307692313 0.2012939453125 0.07662259615384615 0.2030029296875 0.06760817307692313 0.2166748046875 0.06760817307692313 0.2149658203125 0.06760817307692313 0.2149658203125 0.07662259615384615 0.4315185546875 0.057992788461538436 0.4298095703125 0.057992788461538436 0.4298095703125 0.062199519230769273 0.1876220703125 0.06700721153846156 0.1912841796875 0.057992788461538436 0.1876220703125 0.057992788461538436 0.1951904296875 0.057992788461538436 0.1915283203125 0.06700721153846156 0.1915283203125 0.057992788461538436 0.1990966796875 0.057992788461538436 0.1954345703125 0.057992788461538436 0.1954345703125 0.06700721153846156 0.1993408203125 0.057992788461538436 0.1993408203125 0.06700721153846156 0.2030029296875 0.057992788461538436 0.2032470703125 0.06700721153846156 0.2032470703125 0.057992788461538436 0.2069091796875 0.057992788461538436 0.2501220703125 0.13491586538461542 0.2537841796875 0.13491586538461542 0.2501220703125 0.15354567307692313 0.2576904296875 0.13491586538461542 0.2540283203125 0.13491586538461542 0.2540283203125 0.15354567307692313 0.2071533203125 0.057992788461538436 0.2108154296875 0.057992788461538436 0.2071533203125 0.06700721153846156 0.2579345703125 0.15354567307692313 0.2579345703125 0.13491586538461542 0.2655029296875 0.13491586538461542 0.9923095703125 0.4612379807692307 0.9923095703125 0.42337740384615385 0.9998779296875 0.42337740384615385 0.0001220703125 0.30799278846153844 0.0155029296875 0.30799278846153844 0.0001220703125 0.3458533653846154 0.0233154296875 0.30799278846153844 0.0157470703125 0.3458533653846154 0.0157470703125 0.30799278846153844 0.0235595703125 0.30799278846153844 0.0235595703125 0.3458533653846154 0.0311279296875 0.30799278846153844 0.4317626953125 0.057992788461538436 0.4334716796875 0.057992788461538436 0.4317626953125 0.062199519230769273 0.2110595703125 0.06700721153846156 0.2110595703125 0.057992788461538436 0.2147216796875 0.057992788461538436 0.2657470703125 0.15354567307692313 0.2733154296875 0.13491586538461542 0.2657470703125 0.13491586538461542 0.2772216796875 0.13491586538461542 0.2735595703125 0.15354567307692313 0.2735595703125 0.13491586538461542 0.2149658203125 0.06700721153846156 0.2149658203125 0.057992788461538436 0.2186279296875 0.057992788461538436 0.2774658203125 0.13491586538461542 0.2774658203125 0.15354567307692313 0.2811279296875 0.13491586538461542 0.2501220703125 0.13431490384615385 0.2576904296875 0.11568509615384615 0.2501220703125 0.11568509615384615 0.2579345703125 0.11568509615384615 0.2579345703125 0.13431490384615385 0.2655029296875 0.11568509615384615 0.0313720703125 0.38431490384615385 0.0389404296875 0.34645432692307687 0.0313720703125 0.34645432692307687 0.8592529296875 0.7310697115384616 0.8516845703125 0.7689302884615384 0.2733154296875 0.11568509615384615 0.2657470703125 0.11568509615384615 0.2657470703125 0.13431490384615385 0.0469970703125 0.26953125 0.0545654296875 0.26953125 0.0469970703125 0.2881610576923077 0.0391845703125 0.38431490384615385 0.0391845703125 0.34645432692307687 0.0467529296875 0.34645432692307687 0.2811279296875 0.11568509615384615 0.2735595703125 0.11568509615384615 0.2735595703125 0.13431490384615385 0.2501220703125 0.11508413461538458 0.2576904296875 0.09645432692307687 0.2501220703125 0.09645432692307687 0.2615966796875 0.09645432692307687 0.2579345703125 0.11508413461538458 0.2579345703125 0.09645432692307687 0.1912841796875 0.048377403846153855 0.1876220703125 0.048377403846153855 0.1876220703125 0.05739182692307687 0.2618408203125 0.09645432692307687 0.2655029296875 0.09645432692307687 0.2618408203125 0.11508413461538458 0.2169189453125 0.06760817307692313 0.2169189453125 0.07662259615384615 0.2186279296875 0.06760817307692313 0.1915283203125 0.05739182692307687 0.1932373046875 0.048377403846153855 0.1915283203125 0.048377403846153855 0.1934814453125 0.05739182692307687 0.1934814453125 0.048377403846153855 0.1951904296875 0.048377403846153855 0.4354248046875 0.057992788461538436 0.4337158203125 0.057992788461538436 0.4337158203125 0.062199519230769273 0.2247314453125 0.11508413461538458 0.2254638671875 0.09645432692307687 0.2247314453125 0.09645432692307687 0.2264404296875 0.09645432692307687 0.2257080078125 0.09645432692307687 0.2257080078125 0.11508413461538458 0.8282470703125 0.76953125 0.8436279296875 0.76953125 0.2657470703125 0.11508413461538458 0.2664794921875 0.09645432692307687 0.2657470703125 0.09645432692307687 0.2674560546875 0.09645432692307687 0.2667236328125 0.11508413461538458 0.2667236328125 0.09645432692307687 0.2677001953125 0.09645432692307687 0.2684326171875 0.09645432692307687 0.2677001953125 0.11508413461538458 0.4356689453125 0.062199519230769273 0.4364013671875 0.057992788461538436 0.4356689453125 0.057992788461538436 0.4063720703125 0.053185096153846145 0.4080810546875 0.053185096153846145 0.4063720703125 0.05739182692307687 0.4083251953125 0.05739182692307687 0.4083251953125 0.053185096153846145 0.4100341796875 0.053185096153846145 0.4373779296875 0.057992788461538436 0.4366455078125 0.062199519230769273 0.4366455078125 0.057992788461538436 0.4102783203125 0.053185096153846145 0.4110107421875 0.053185096153846145 0.4102783203125 0.05739182692307687 0.2735595703125 0.11508413461538458 0.2735595703125 0.09645432692307687 0.2811279296875 0.09645432692307687 0.2576904296875 0.07722355769230771 0.2501220703125 0.09585336538461542 0.2501220703125 0.07722355769230771 0.1954345703125 0.048377403846153855 0.1954345703125 0.05739182692307687 0.1971435546875 0.048377403846153855 0.1993408203125 0.048377403846153855 0.1993408203125 0.05739182692307687 0.2030029296875 0.048377403846153855 0.2686767578125 0.11508413461538458 0.2686767578125 0.09645432692307687 0.2694091796875 0.09645432692307687 0.9180908203125 0.34645432692307687 0.9188232421875 0.34645432692307687 0.2703857421875 0.09645432692307687 0.2696533203125 0.11508413461538458 0.2696533203125 0.09645432692307687 0.2579345703125 0.09585336538461542 0.2655029296875 0.07722355769230771 0.2579345703125 0.07722355769230771 0.2657470703125 0.07722355769230771 0.2657470703125 0.09585336538461542 0.2733154296875 0.07722355769230771 0.2032470703125 0.05739182692307687 0.2069091796875 0.048377403846153855 0.2032470703125 0.048377403846153855 0.1990966796875 0.048377403846153855 0.1973876953125 0.05739182692307687 0.1973876953125 0.048377403846153855 0.2735595703125 0.09585336538461542 0.2735595703125 0.07722355769230771 0.2772216796875 0.07722355769230771 0.2811279296875 0.07722355769230771 0.2774658203125 0.07722355769230771 0.2774658203125 0.09585336538461542 0.2108154296875 0.048377403846153855 0.2071533203125 0.048377403846153855 0.2071533203125 0.05739182692307687 0.2110595703125 0.05739182692307687 0.2147216796875 0.048377403846153855 0.2110595703125 0.048377403846153855 0.2166748046875 0.048377403846153855 0.2149658203125 0.048377403846153855 0.2149658203125 0.05739182692307687 0.4139404296875 0.053185096153846145 0.4122314453125 0.05739182692307687 0.4122314453125 0.053185096153846145 0.2169189453125 0.05739182692307687 0.2169189453125 0.048377403846153855 0.2186279296875 0.048377403846153855 0.1876220703125 0.038762019230769273 0.1876220703125 0.04777644230769229 0.1912841796875 0.038762019230769273 0.2813720703125 0.15354567307692313 0.2850341796875 0.13491586538461542 0.2813720703125 0.13491586538461542 0.2852783203125 0.13491586538461542 0.2889404296875 0.13491586538461542 0.2852783203125 0.15354567307692313 0.2928466796875 0.13491586538461542 0.2891845703125 0.15354567307692313 0.2891845703125 0.13491586538461542 0.1932373046875 0.038762019230769273 0.1915283203125 0.04777644230769229 0.1915283203125 0.038762019230769273 0.0469970703125 0.38431490384615385 0.0469970703125 0.34645432692307687 0.0623779296875 0.34645432692307687 0.0389404296875 0.30799278846153844 0.0313720703125 0.3458533653846154 0.0313720703125 0.30799278846153844 0.2969970703125 0.15354567307692313 0.2969970703125 0.13491586538461542 0.3045654296875 0.13491586538461542 0.0391845703125 0.30799278846153844 0.0467529296875 0.30799278846153844 0.0391845703125 0.3458533653846154 0.0469970703125 0.30799278846153844 0.0623779296875 0.30799278846153844 0.0469970703125 0.3458533653846154 0.3123779296875 0.13491586538461542 0.3048095703125 0.13491586538461542 0.3048095703125 0.15354567307692313 0.0626220703125 0.38431490384615385 0.0626220703125 0.34645432692307687 0.0701904296875 0.34645432692307687 0.0936279296875 0.34645432692307687 0.0782470703125 0.38431490384615385 0.0782470703125 0.34645432692307687 0.2930908203125 0.13491586538461542 0.2930908203125 0.15354567307692313 0.2967529296875 0.13491586538461542 0.2813720703125 0.11568509615384615 0.2889404296875 0.11568509615384615 0.2813720703125 0.13431490384615385 0.2967529296875 0.11568509615384615 0.2891845703125 0.13431490384615385 0.2891845703125 0.11568509615384615 0.3006591796875 0.11568509615384615 0.2969970703125 0.13431490384615385 0.2969970703125 0.11568509615384615 0.1954345703125 0.04777644230769229 0.1954345703125 0.038762019230769273 0.1990966796875 0.038762019230769273 0.1951904296875 0.038762019230769273 0.1934814453125 0.04777644230769229 0.1934814453125 0.038762019230769273 0.4141845703125 0.053185096153846145 0.4141845703125 0.05739182692307687 0.4158935546875 0.053185096153846145 0.1993408203125 0.038762019230769273 0.2010498046875 0.038762019230769273 0.1993408203125 0.04777644230769229 0.2069091796875 0.038762019230769273 0.2032470703125 0.038762019230769273 0.2032470703125 0.04777644230769229 0.2012939453125 0.04777644230769229 0.2030029296875 0.038762019230769273 0.2012939453125 0.038762019230769273 0.3009033203125 0.13431490384615385 0.3009033203125 0.11568509615384615 0.3045654296875 0.11568509615384615 0.3084716796875 0.11568509615384615 0.3048095703125 0.13431490384615385 0.3048095703125 0.11568509615384615 0.2071533203125 0.04777644230769229 0.2071533203125 0.038762019230769273 0.2088623046875 0.038762019230769273 0.3087158203125 0.11568509615384615 0.3087158203125 0.13431490384615385 0.3123779296875 0.11568509615384615 0.2813720703125 0.11508413461538458 0.2850341796875 0.09645432692307687 0.2813720703125 0.09645432692307687 0.2852783203125 0.09645432692307687 0.2852783203125 0.11508413461538458 0.2889404296875 0.09645432692307687 0.4112548828125 0.053185096153846145 0.4119873046875 0.053185096153846145 0.4112548828125 0.05739182692307687 0.4178466796875 0.053185096153846145 0.4161376953125 0.05739182692307687 0.4161376953125 0.053185096153846145 0.2891845703125 0.11508413461538458 0.2891845703125 0.09645432692307687 0.2928466796875 0.09645432692307687 0.2967529296875 0.09645432692307687 0.2930908203125 0.09645432692307687 0.2930908203125 0.11508413461538458 0.4180908203125 0.05739182692307687 0.4180908203125 0.053185096153846145 0.4188232421875 0.053185096153846145 0.4197998046875 0.053185096153846145 0.4190673828125 0.053185096153846145 0.4190673828125 0.05739182692307687 0.6290283203125 0.24969951923076927 0.6290283203125 0.23106971153846156 0.4200439453125 0.05739182692307687 0.4200439453125 0.053185096153846145 0.4217529296875 0.053185096153846145 0.2091064453125 0.038762019230769273 0.2091064453125 0.04777644230769229 0.2108154296875 0.038762019230769273 0.2706298828125 0.09645432692307687 0.2706298828125 0.11508413461538458 0.2713623046875 0.09645432692307687 0.4219970703125 0.053185096153846145 0.4227294921875 0.053185096153846145 0.4219970703125 0.05739182692307687 0.4229736328125 0.05739182692307687 0.4229736328125 0.053185096153846145 0.4237060546875 0.053185096153846145 0.4122314453125 0.09645432692307687 0.4122314453125 0.11508413461538458 0.4139404296875 0.26953125 0.4063720703125 0.26953125 0.4239501953125 0.05739182692307687 0.4246826171875 0.053185096153846145 0.4239501953125 0.053185096153846145 0.4259033203125 0.053185096153846145 0.4276123046875 0.053185096153846145 0.4259033203125 0.05739182692307687 0.2716064453125 0.11508413461538458 0.2716064453125 0.09645432692307687 0.2723388671875 0.09645432692307687 0.4278564453125 0.05739182692307687 0.4295654296875 0.053185096153846145 0.4278564453125 0.053185096153846145 0.2110595703125 0.04777644230769229 0.2110595703125 0.038762019230769273 0.2127685546875 0.038762019230769273 0.4315185546875 0.053185096153846145 0.4298095703125 0.053185096153846145 0.4298095703125 0.05739182692307687 0.4317626953125 0.05739182692307687 0.4334716796875 0.053185096153846145 0.4317626953125 0.053185096153846145 0.2130126953125 0.038762019230769273 0.2147216796875 0.038762019230769273 0.2130126953125 0.04777644230769229 0.4249267578125 0.053185096153846145 0.4249267578125 0.05739182692307687 0.4256591796875 0.053185096153846145 0.2149658203125 0.04777644230769229 0.2166748046875 0.038762019230769273 0.2149658203125 0.038762019230769273 0.2969970703125 0.11508413461538458 0.2969970703125 0.09645432692307687 0.3006591796875 0.09645432692307687 0.1876220703125 0.02914663461538458 0.1876220703125 0.03816105769230771 0.1912841796875 0.02914663461538458 0.1915283203125 0.02914663461538458 0.1951904296875 0.02914663461538458 0.1915283203125 0.03816105769230771 0.3048095703125 0.09645432692307687 0.3048095703125 0.11508413461538458 0.3123779296875 0.09645432692307687 0.2813720703125 0.09585336538461542 0.2889404296875 0.07722355769230771 0.2813720703125 0.07722355769230771 0.2891845703125 0.07722355769230771 0.2891845703125 0.09585336538461542 0.2967529296875 0.07722355769230771 0.0411376953125 0.06700721153846156 0.0411376953125 0.057992788461538436 0.0428466796875 0.057992788461538436 0.0975341796875 0.02914663461538458 0.0938720703125 0.02914663461538458 0.0938720703125 0.03816105769230771 0.3634033203125 0.15414663461538458 0.3670654296875 0.15414663461538458 0.9180908203125 0.3650841346153846 0.4337158203125 0.05739182692307687 0.4344482421875 0.053185096153846145 0.4337158203125 0.053185096153846145 0.4356689453125 0.053185096153846145 0.4356689453125 0.05739182692307687 0.4373779296875 0.053185096153846145 0.4041748046875 0.07241586538461542 0.4034423828125 0.07662259615384615 0.4034423828125 0.07241586538461542 0.2733154296875 0.09645432692307687 0.2725830078125 0.09645432692307687 0.2725830078125 0.11508413461538458 0.4063720703125 0.05258413461538458 0.4080810546875 0.048377403846153855 0.4063720703125 0.048377403846153855 0.4354248046875 0.053185096153846145 0.4346923828125 0.05739182692307687 0.4346923828125 0.053185096153846145 0.2969970703125 0.09585336538461542 0.2969970703125 0.07722355769230771 0.3045654296875 0.07722355769230771 0.3048095703125 0.07722355769230771 0.3048095703125 0.09585336538461542 0.3123779296875 0.07722355769230771 0.3126220703125 0.15354567307692313 0.3201904296875 0.13491586538461542 0.3126220703125 0.13491586538461542 0.3204345703125 0.13491586538461542 0.3204345703125 0.15354567307692313 0.3280029296875 0.13491586538461542 0.4083251953125 0.048377403846153855 0.4083251953125 0.05258413461538458 0.4090576171875 0.048377403846153855 0.4102783203125 0.048377403846153855 0.4119873046875 0.048377403846153855 0.4102783203125 0.05258413461538458 0.6837158203125 0.13491586538461542 0.6873779296875 0.13491586538461542 0.2186279296875 0.038762019230769273 0.2169189453125 0.04777644230769229 0.2169189453125 0.038762019230769273 0.4100341796875 0.048377403846153855 0.4093017578125 0.048377403846153855 0.4093017578125 0.05258413461538458 0.3282470703125 0.15354567307692313 0.3282470703125 0.13491586538461542 0.3358154296875 0.13491586538461542 0.3360595703125 0.13491586538461542 0.3360595703125 0.15354567307692313 0.3436279296875 0.13491586538461542 0.3126220703125 0.13431490384615385 0.3201904296875 0.11568509615384615 0.3126220703125 0.11568509615384615 0.4766845703125 0.6926081730769231 0.4842529296875 0.6926081730769231 0.4122314453125 0.05258413461538458 0.4129638671875 0.048377403846153855 0.4122314453125 0.048377403846153855 0.4132080078125 0.048377403846153855 0.4132080078125 0.05258413461538458 0.4139404296875 0.048377403846153855 0.3009033203125 0.09645432692307687 0.3009033203125 0.11508413461538458 0.3016357421875 0.09645432692307687 0.3026123046875 0.09645432692307687 0.3018798828125 0.09645432692307687 0.3018798828125 0.11508413461538458 0.3035888671875 0.09645432692307687 0.3028564453125 0.09645432692307687 0.3028564453125 0.11508413461538458 0.4141845703125 0.05258413461538458 0.4149169921875 0.048377403846153855 0.4141845703125 0.048377403846153855 0.4151611328125 0.048377403846153855 0.4151611328125 0.05258413461538458 0.4158935546875 0.048377403846153855 0.3045654296875 0.09645432692307687 0.3038330078125 0.09645432692307687 0.3038330078125 0.11508413461538458 0.4161376953125 0.05258413461538458 0.4161376953125 0.048377403846153855 0.4178466796875 0.048377403846153855 0.1954345703125 0.03816105769230771 0.1954345703125 0.02914663461538458 0.1971435546875 0.02914663461538458 0.1990966796875 0.02914663461538458 0.1973876953125 0.03816105769230771 0.1973876953125 0.02914663461538458 0.4180908203125 0.048377403846153855 0.4180908203125 0.05258413461538458 0.4188232421875 0.048377403846153855 0.1173095703125 0.018930288461538436 0.1209716796875 0.009915865384615419 0.1173095703125 0.009915865384615419 0.9493408203125 0.24969951923076927 0.9530029296875 0.23106971153846156 0.8516845703125 0.17337740384615385 0.8592529296875 0.17337740384615385 0.3983154296875 0.01472355769230771 0.3975830078125 0.01472355769230771 0.3975830078125 0.018930288461538436 0.1993408203125 0.03816105769230771 0.2030029296875 0.02914663461538458 0.1993408203125 0.02914663461538458 0.2069091796875 0.02914663461538458 0.2032470703125 0.02914663461538458 0.2032470703125 0.03816105769230771 0.2071533203125 0.03816105769230771 0.2088623046875 0.02914663461538458 0.2071533203125 0.02914663461538458 0.3009033203125 0.1727764423076923 0.3009033203125 0.15414663461538458 0.4610595703125 0.5766225961538461 0.4686279296875 0.5387620192307692 0.3280029296875 0.11568509615384615 0.3204345703125 0.11568509615384615 0.3204345703125 0.13431490384615385 0.3282470703125 0.11568509615384615 0.3358154296875 0.11568509615384615 0.3282470703125 0.13431490384615385 0.0704345703125 0.38431490384615385 0.0704345703125 0.34645432692307687 0.0780029296875 0.34645432692307687 0.3360595703125 0.11568509615384615 0.3436279296875 0.11568509615384615 0.3360595703125 0.13431490384615385 0.3126220703125 0.11508413461538458 0.3126220703125 0.09645432692307687 0.3162841796875 0.09645432692307687 0.2147216796875 0.02914663461538458 0.2110595703125 0.03816105769230771 0.2110595703125 0.02914663461538458 0.3201904296875 0.09645432692307687 0.3165283203125 0.11508413461538458 0.3165283203125 0.09645432692307687 0.2149658203125 0.02914663461538458 0.2149658203125 0.03816105769230771 0.2186279296875 0.02914663461538458 0.4200439453125 0.05258413461538458 0.4217529296875 0.048377403846153855 0.4200439453125 0.048377403846153855 0.2091064453125 0.03816105769230771 0.2091064453125 0.02914663461538458 0.2108154296875 0.02914663461538458 0.4237060546875 0.048377403846153855 0.4219970703125 0.048377403846153855 0.4219970703125 0.05258413461538458 0.4239501953125 0.05258413461538458 0.4256591796875 0.048377403846153855 0.4239501953125 0.048377403846153855 0.4197998046875 0.048377403846153855 0.4190673828125 0.048377403846153855 0.4190673828125 0.05258413461538458 0.3204345703125 0.09645432692307687 0.3211669921875 0.09645432692307687 0.3204345703125 0.11508413461538458 0.3214111328125 0.11508413461538458 0.3221435546875 0.09645432692307687 0.3214111328125 0.09645432692307687 0.6251220703125 0.6541466346153846 0.6405029296875 0.6541466346153846 0.5079345703125 0.2118389423076923 0.5155029296875 0.2118389423076923 0.0860595703125 0.09645432692307687 0.0897216796875 0.09645432692307687 0.1876220703125 0.01953125 0.1876220703125 0.028545673076923128 0.1912841796875 0.01953125 0.1915283203125 0.01953125 0.1951904296875 0.01953125 0.1915283203125 0.028545673076923128 0.0860595703125 0.26893028846153844 0.0936279296875 0.2503004807692307 0.6287841796875 0.23106971153846156 0.6251220703125 0.23106971153846156 0.6251220703125 0.24969951923076927 0.1954345703125 0.028545673076923128 0.1971435546875 0.01953125 0.1954345703125 0.01953125 0.1990966796875 0.01953125 0.1973876953125 0.028545673076923128 0.1973876953125 0.01953125 0.1993408203125 0.028545673076923128 0.2010498046875 0.01953125 0.1993408203125 0.01953125 0.3594970703125 0.19200721153846156 0.3631591796875 0.17337740384615385 0.5545654296875 0.2118389423076923 0.5509033203125 0.2118389423076923 0.2069091796875 0.01953125 0.2032470703125 0.01953125 0.2032470703125 0.028545673076923128 0.4259033203125 0.05258413461538458 0.4276123046875 0.048377403846153855 0.4259033203125 0.048377403846153855 0.4285888671875 0.048377403846153855 0.4278564453125 0.048377403846153855 0.4278564453125 0.05258413461538458 0.4288330078125 0.048377403846153855 0.4288330078125 0.05258413461538458 0.4295654296875 0.048377403846153855 0.3223876953125 0.09645432692307687 0.3231201171875 0.09645432692307687 0.3223876953125 0.11508413461538458 0.6092529296875 0.8079927884615384 0.5938720703125 0.8079927884615384 0.4298095703125 0.05258413461538458 0.4305419921875 0.048377403846153855 0.4298095703125 0.048377403846153855 0.2012939453125 0.01953125 0.2030029296875 0.01953125 0.2012939453125 0.028545673076923128 0.4315185546875 0.048377403846153855 0.4307861328125 0.048377403846153855 0.4307861328125 0.05258413461538458 0.9473876953125 0.14453125 0.9473876953125 0.15354567307692313 0.9490966796875 0.14453125 0.2071533203125 0.01953125 0.2071533203125 0.028545673076923128 0.2108154296875 0.01953125 0.2127685546875 0.01953125 0.2110595703125 0.01953125 0.2110595703125 0.028545673076923128 0.2130126953125 0.01953125 0.2130126953125 0.028545673076923128 0.2147216796875 0.01953125 0.2186279296875 0.01953125 0.2149658203125 0.028545673076923128 0.2149658203125 0.01953125 0.3240966796875 0.09645432692307687 0.3233642578125 0.11508413461538458 0.3233642578125 0.09645432692307687 0.3250732421875 0.09645432692307687 0.3243408203125 0.09645432692307687 0.3243408203125 0.11508413461538458 0.3260498046875 0.09645432692307687 0.3253173828125 0.09645432692307687 0.3253173828125 0.11508413461538458 0.3262939453125 0.11508413461538458 0.3262939453125 0.09645432692307687 0.3270263671875 0.09645432692307687 0.3272705078125 0.09645432692307687 0.3280029296875 0.09645432692307687 0.3272705078125 0.11508413461538458 0.4317626953125 0.05258413461538458 0.4317626953125 0.048377403846153855 0.4334716796875 0.048377403846153855 0.4337158203125 0.048377403846153855 0.4354248046875 0.048377403846153855 0.4337158203125 0.05258413461538458 0.3289794921875 0.09645432692307687 0.3282470703125 0.11508413461538458 0.3282470703125 0.09645432692307687 0.4356689453125 0.05258413461538458 0.4356689453125 0.048377403846153855 0.4373779296875 0.048377403846153855 0.1876220703125 0.009915865384615419 0.1876220703125 0.018930288461538436 0.1893310546875 0.009915865384615419 0.4063720703125 0.04777644230769229 0.4080810546875 0.043569711538461564 0.4063720703125 0.043569711538461564 0.1895751953125 0.009915865384615419 0.1895751953125 0.018930288461538436 0.1912841796875 0.009915865384615419 0.3321533203125 0.11508413461538458 0.3358154296875 0.09645432692307687 0.3321533203125 0.09645432692307687 0.1951904296875 0.009915865384615419 0.1915283203125 0.018930288461538436 0.1915283203125 0.009915865384615419 0.1954345703125 0.018930288461538436 0.1954345703125 0.009915865384615419 0.1971435546875 0.009915865384615419 0.1993408203125 0.009915865384615419 0.1993408203125 0.018930288461538436 0.2030029296875 0.009915865384615419 0.3360595703125 0.11508413461538458 0.3436279296875 0.09645432692307687 0.3360595703125 0.09645432692307687 0.3201904296875 0.07722355769230771 0.3126220703125 0.09585336538461542 0.3126220703125 0.07722355769230771 0.3204345703125 0.09585336538461542 0.3204345703125 0.07722355769230771 0.3280029296875 0.07722355769230771 0.3204345703125 0.6150841346153846 0.3280029296875 0.5772235576923077 0.4083251953125 0.043569711538461564 0.4100341796875 0.043569711538461564 0.4083251953125 0.04777644230769229 0.9200439453125 0.3650841346153846 0.9207763671875 0.34645432692307687 0.9200439453125 0.34645432692307687 0.4102783203125 0.04777644230769229 0.4119873046875 0.043569711538461564 0.4102783203125 0.043569711538461564 0.4122314453125 0.043569711538461564 0.4139404296875 0.043569711538461564 0.4122314453125 0.04777644230769229 0.3292236328125 0.11508413461538458 0.3292236328125 0.09645432692307687 0.3299560546875 0.09645432692307687 0.3302001953125 0.09645432692307687 0.3302001953125 0.11508413461538458 0.3309326171875 0.09645432692307687 0.4141845703125 0.04777644230769229 0.4149169921875 0.043569711538461564 0.4141845703125 0.043569711538461564 0.4161376953125 0.043569711538461564 0.4178466796875 0.043569711538461564 0.4161376953125 0.04777644230769229 0.3311767578125 0.09645432692307687 0.3311767578125 0.11508413461538458 0.3319091796875 0.09645432692307687 0.3282470703125 0.09585336538461542 0.3289794921875 0.07722355769230771 0.3282470703125 0.07722355769230771 0.4180908203125 0.04777644230769229 0.4180908203125 0.043569711538461564 0.4197998046875 0.043569711538461564 0.4158935546875 0.043569711538461564 0.4151611328125 0.043569711538461564 0.4151611328125 0.04777644230769229 0.4200439453125 0.04777644230769229 0.4207763671875 0.043569711538461564 0.4200439453125 0.043569711538461564 0.1973876953125 0.018930288461538436 0.1990966796875 0.009915865384615419 0.1973876953125 0.009915865384615419 0.4219970703125 0.043569711538461564 0.4219970703125 0.04777644230769229 0.4237060546875 0.043569711538461564 0.4210205078125 0.043569711538461564 0.4217529296875 0.043569711538461564 0.4210205078125 0.04777644230769229 0.2032470703125 0.018930288461538436 0.2032470703125 0.009915865384615419 0.2049560546875 0.009915865384615419 0.2052001953125 0.018930288461538436 0.2069091796875 0.009915865384615419 0.2052001953125 0.009915865384615419 0.6798095703125 0.5772235576923077 0.6873779296875 0.5772235576923077 0.3321533203125 0.07722355769230771 0.3321533203125 0.09585336538461542 0.3358154296875 0.07722355769230771 0.7889404296875 0.6926081730769231 0.7813720703125 0.6926081730769231 0.4884033203125 0.26953125 0.4884033203125 0.2881610576923077 0.4920654296875 0.26953125 0.0626220703125 0.3458533653846154 0.0701904296875 0.30799278846153844 0.0626220703125 0.30799278846153844 0.3360595703125 0.07722355769230771 0.3397216796875 0.07722355769230771 0.3360595703125 0.09585336538461542 0.3436279296875 0.07722355769230771 0.3399658203125 0.09585336538461542 0.3399658203125 0.07722355769230771 0.2088623046875 0.009915865384615419 0.2071533203125 0.018930288461538436 0.2071533203125 0.009915865384615419 0.2091064453125 0.018930288461538436 0.2091064453125 0.009915865384615419 0.2108154296875 0.009915865384615419 0.2127685546875 0.009915865384615419 0.2110595703125 0.009915865384615419 0.2110595703125 0.018930288461538436 0.4256591796875 0.043569711538461564 0.4239501953125 0.043569711538461564 0.4239501953125 0.04777644230769229 0.3292236328125 0.07722355769230771 0.3299560546875 0.07722355769230771 0.3292236328125 0.09585336538461542 0.2149658203125 0.018930288461538436 0.2149658203125 0.009915865384615419 0.2186279296875 0.009915865384615419 0.1912841796875 0.00030048076923072653 0.1876220703125 0.00030048076923072653 0.1876220703125 0.009314903846153855 0.3438720703125 0.13491586538461542 0.3438720703125 0.15354567307692313 0.3475341796875 0.13491586538461542 0.3514404296875 0.13491586538461542 0.3477783203125 0.13491586538461542 0.3477783203125 0.15354567307692313 0.3516845703125 0.13491586538461542 0.3516845703125 0.15354567307692313 0.3553466796875 0.13491586538461542 0.3592529296875 0.13491586538461542 0.3555908203125 0.13491586538461542 0.3555908203125 0.15354567307692313 0.3594970703125 0.13491586538461542 0.3594970703125 0.15354567307692313 0.3631591796875 0.13491586538461542 0.1055908203125 0.2887620192307693 0.1092529296875 0.2887620192307693 0.3634033203125 0.15354567307692313 0.3670654296875 0.13491586538461542 0.3634033203125 0.13491586538461542 0.3673095703125 0.13491586538461542 0.3748779296875 0.13491586538461542 0.3673095703125 0.15354567307692313 0.3475341796875 0.11568509615384615 0.3438720703125 0.11568509615384615 0.3438720703125 0.13431490384615385 0.2147216796875 0.009915865384615419 0.2130126953125 0.009915865384615419 0.2130126953125 0.018930288461538436 0.4259033203125 0.043569711538461564 0.4259033203125 0.04777644230769229 0.4276123046875 0.043569711538461564 0.1915283203125 0.00030048076923072653 0.1915283203125 0.009314903846153855 0.1932373046875 0.00030048076923072653 0.3887939453125 0.057992788461538436 0.3905029296875 0.057992788461538436 0.3887939453125 0.062199519230769273 0.0860595703125 0.03816105769230771 0.0860595703125 0.02914663461538458 0.0897216796875 0.02914663461538458 0.1990966796875 0.00030048076923072653 0.1954345703125 0.00030048076923072653 0.1954345703125 0.009314903846153855 0.4278564453125 0.04777644230769229 0.4295654296875 0.043569711538461564 0.4278564453125 0.043569711538461564 0.4305419921875 0.043569711538461564 0.4298095703125 0.04777644230769229 0.4298095703125 0.043569711538461564 0.4307861328125 0.043569711538461564 0.4307861328125 0.04777644230769229 0.4315185546875 0.043569711538461564 0.3309326171875 0.07722355769230771 0.3302001953125 0.07722355769230771 0.3302001953125 0.09585336538461542 0.4317626953125 0.04777644230769229 0.4324951171875 0.043569711538461564 0.4317626953125 0.043569711538461564 0.1016845703125 0.6156850961538461 0.1092529296875 0.6156850961538461 0.4337158203125 0.04777644230769229 0.4354248046875 0.043569711538461564 0.4337158203125 0.043569711538461564 0.4334716796875 0.043569711538461564 0.4327392578125 0.04777644230769229 0.4327392578125 0.043569711538461564 0.4356689453125 0.04777644230769229 0.4356689453125 0.043569711538461564 0.4364013671875 0.043569711538461564 0.4373779296875 0.043569711538461564 0.4366455078125 0.04777644230769229 0.4366455078125 0.043569711538461564 0.4063720703125 0.038762019230769273 0.4063720703125 0.04296875 0.4080810546875 0.038762019230769273 0.4100341796875 0.038762019230769273 0.4083251953125 0.038762019230769273 0.4083251953125 0.04296875 0.1993408203125 0.009314903846153855 0.2030029296875 0.00030048076923072653 0.1993408203125 0.00030048076923072653 0.1951904296875 0.00030048076923072653 0.1934814453125 0.00030048076923072653 0.1934814453125 0.009314903846153855 0.2032470703125 0.00030048076923072653 0.2032470703125 0.009314903846153855 0.2049560546875 0.00030048076923072653 0.2108154296875 0.00030048076923072653 0.2071533203125 0.009314903846153855 0.2071533203125 0.00030048076923072653 0.4110107421875 0.038762019230769273 0.4102783203125 0.038762019230769273 0.4102783203125 0.04296875 0.4122314453125 0.04296875 0.4139404296875 0.038762019230769273 0.4122314453125 0.038762019230769273 0.2052001953125 0.00030048076923072653 0.2069091796875 0.00030048076923072653 0.2052001953125 0.009314903846153855 0.2110595703125 0.009314903846153855 0.2147216796875 0.00030048076923072653 0.2110595703125 0.00030048076923072653 0.2166748046875 0.00030048076923072653 0.2149658203125 0.00030048076923072653 0.2149658203125 0.009314903846153855 0.4141845703125 0.038762019230769273 0.4158935546875 0.038762019230769273 0.4141845703125 0.04296875 0.2169189453125 0.00030048076923072653 0.2169189453125 0.009314903846153855 0.2186279296875 0.00030048076923072653 0.4112548828125 0.038762019230769273 0.4112548828125 0.04296875 0.4119873046875 0.038762019230769273 0.2188720703125 0.07662259615384615 0.2225341796875 0.06760817307692313 0.2188720703125 0.06760817307692313 0.2264404296875 0.06760817307692313 0.2227783203125 0.06760817307692313 0.2227783203125 0.07662259615384615 0.3477783203125 0.13431490384615385 0.3514404296875 0.11568509615384615 0.3477783203125 0.11568509615384615 0.3516845703125 0.11568509615384615 0.3516845703125 0.13431490384615385 0.3592529296875 0.11568509615384615 0.3670654296875 0.11568509615384615 0.3594970703125 0.11568509615384615 0.3594970703125 0.13431490384615385 0.3709716796875 0.11568509615384615 0.3673095703125 0.13431490384615385 0.3673095703125 0.11568509615384615 0.0704345703125 0.3458533653846154 0.0780029296875 0.30799278846153844 0.0704345703125 0.30799278846153844 0.0858154296875 0.30799278846153844 0.0782470703125 0.30799278846153844 0.0782470703125 0.3458533653846154 0.4168701171875 0.038762019230769273 0.4161376953125 0.038762019230769273 0.4161376953125 0.04296875 0.4171142578125 0.038762019230769273 0.4178466796875 0.038762019230769273 0.4171142578125 0.04296875 0.3311767578125 0.09585336538461542 0.3311767578125 0.07722355769230771 0.3319091796875 0.07722355769230771 0.4180908203125 0.038762019230769273 0.4180908203125 0.04296875 0.4197998046875 0.038762019230769273 0.3712158203125 0.11568509615384615 0.3719482421875 0.11568509615384615 0.3712158203125 0.13431490384615385 0.4200439453125 0.04296875 0.4200439453125 0.038762019230769273 0.4207763671875 0.038762019230769273 0.2266845703125 0.07662259615384615 0.2283935546875 0.06760817307692313 0.2266845703125 0.06760817307692313 0.4237060546875 0.038762019230769273 0.4219970703125 0.04296875 0.4219970703125 0.038762019230769273 0.4210205078125 0.038762019230769273 0.4210205078125 0.04296875 0.4217529296875 0.038762019230769273 0.2305908203125 0.07662259615384615 0.2305908203125 0.06760817307692313 0.2342529296875 0.06760817307692313 0.2344970703125 0.06760817307692313 0.2381591796875 0.06760817307692313 0.2344970703125 0.07662259615384615 0.2286376953125 0.07662259615384615 0.2286376953125 0.06760817307692313 0.2303466796875 0.06760817307692313 0.0860595703125 0.3458533653846154 0.0936279296875 0.30799278846153844 0.0860595703125 0.30799278846153844 0.3514404296875 0.09645432692307687 0.3438720703125 0.11508413461538458 0.3438720703125 0.09645432692307687 0.3592529296875 0.09645432692307687 0.3516845703125 0.09645432692307687 0.3516845703125 0.11508413461538458 0.0938720703125 0.34645432692307687 0.0938720703125 0.38431490384615385 0.1014404296875 0.34645432692307687 0.1094970703125 0.34645432692307687 0.1248779296875 0.34645432692307687 0.1094970703125 0.38431490384615385 0.1092529296875 0.34645432692307687 0.1016845703125 0.38431490384615385 0.1016845703125 0.34645432692307687 0.4239501953125 0.04296875 0.4256591796875 0.038762019230769273 0.4239501953125 0.038762019230769273 0.4276123046875 0.038762019230769273 0.4259033203125 0.04296875 0.4259033203125 0.038762019230769273 0.4278564453125 0.04296875 0.4285888671875 0.038762019230769273 0.4278564453125 0.038762019230769273 0.4298095703125 0.04296875 0.4315185546875 0.038762019230769273 0.4298095703125 0.038762019230769273 0.9627685546875 0.09645432692307687 0.9610595703125 0.10546875 0.6876220703125 0.19260817307692313 0.6912841796875 0.19260817307692313 0.4317626953125 0.038762019230769273 0.4317626953125 0.04296875 0.4334716796875 0.038762019230769273 0.4354248046875 0.038762019230769273 0.4337158203125 0.038762019230769273 0.4337158203125 0.04296875 0.4373779296875 0.038762019230769273 0.4356689453125 0.04296875 0.4356689453125 0.038762019230769273 0.2384033203125 0.06760817307692313 0.2401123046875 0.06760817307692313 0.2384033203125 0.07662259615384615 0.2423095703125 0.07662259615384615 0.2423095703125 0.06760817307692313 0.2459716796875 0.06760817307692313 0.1014404296875 0.30799278846153844 0.0938720703125 0.30799278846153844 0.0938720703125 0.3458533653846154 0.3631591796875 0.09645432692307687 0.3594970703125 0.09645432692307687 0.3594970703125 0.11508413461538458 0.3634033203125 0.09645432692307687 0.3634033203125 0.11508413461538458 0.3670654296875 0.09645432692307687 0.3673095703125 0.09645432692307687 0.3673095703125 0.11508413461538458 0.3748779296875 0.09645432692307687 0.1016845703125 0.3458533653846154 0.1092529296875 0.30799278846153844 0.1016845703125 0.30799278846153844 0.3751220703125 0.8073918269230769 0.3826904296875 0.76953125 0.8048095703125 0.73046875 0.8123779296875 0.6926081730769231 0.3438720703125 0.07722355769230771 0.3514404296875 0.07722355769230771 0.3438720703125 0.09585336538461542 0.3592529296875 0.07722355769230771 0.3516845703125 0.07722355769230771 0.3516845703125 0.09585336538461542 0.3594970703125 0.09585336538461542 0.3670654296875 0.07722355769230771 0.3594970703125 0.07722355769230771 0.3673095703125 0.07722355769230771 0.3748779296875 0.07722355769230771 0.3673095703125 0.09585336538461542 0.3751220703125 0.15354567307692313 0.3751220703125 0.13491586538461542 0.3826904296875 0.13491586538461542 0.3865966796875 0.13491586538461542 0.3829345703125 0.13491586538461542 0.3829345703125 0.15354567307692313 0.2403564453125 0.06760817307692313 0.2420654296875 0.06760817307692313 0.2403564453125 0.07662259615384615 0.3868408203125 0.13491586538461542 0.3905029296875 0.13491586538461542 0.3868408203125 0.15354567307692313 0.2462158203125 0.07662259615384615 0.2462158203125 0.06760817307692313 0.2479248046875 0.06760817307692313 0.4063720703125 0.03395432692307687 0.4080810546875 0.03395432692307687 0.4063720703125 0.03816105769230771 0.8126220703125 0.19260817307692313 0.8201904296875 0.19260817307692313 0.3204345703125 0.19260817307692313 0.3280029296875 0.19260817307692313 0.3729248046875 0.11568509615384615 0.3721923828125 0.11568509615384615 0.3721923828125 0.13431490384615385 0.3731689453125 0.13431490384615385 0.3739013671875 0.11568509615384615 0.3731689453125 0.11568509615384615 0.3748779296875 0.11568509615384615 0.3741455078125 0.11568509615384615 0.3741455078125 0.13431490384615385 0.3907470703125 0.13491586538461542 0.3914794921875 0.13491586538461542 0.3907470703125 0.15354567307692313 0.3924560546875 0.13491586538461542 0.3917236328125 0.13491586538461542 0.3917236328125 0.15354567307692313 0.9610595703125 0.26953125 0.9686279296875 0.26953125 0.6719970703125 0.7689302884615384 0.6795654296875 0.7310697115384616 0.3985595703125 0.13491586538461542 0.4061279296875 0.13491586538461542 0.3985595703125 0.15354567307692313 0.3826904296875 0.11568509615384615 0.3751220703125 0.11568509615384615 0.3751220703125 0.13431490384615385 0.3829345703125 0.13431490384615385 0.3905029296875 0.11568509615384615 0.3829345703125 0.11568509615384615 0.3907470703125 0.11568509615384615 0.3983154296875 0.11568509615384615 0.3907470703125 0.13431490384615385 0.3985595703125 0.13431490384615385 0.3985595703125 0.11568509615384615 0.4061279296875 0.11568509615384615 0.3983154296875 0.13491586538461542 0.3946533203125 0.13491586538461542 0.3946533203125 0.15354567307692313 0.2481689453125 0.06760817307692313 0.2498779296875 0.06760817307692313 0.2481689453125 0.07662259615384615 0.2225341796875 0.057992788461538436 0.2188720703125 0.057992788461538436 0.2188720703125 0.06700721153846156 0.4083251953125 0.03816105769230771 0.4100341796875 0.03395432692307687 0.4083251953125 0.03395432692307687 0.2227783203125 0.057992788461538436 0.2244873046875 0.057992788461538436 0.2227783203125 0.06700721153846156 0.3927001953125 0.15354567307692313 0.3927001953125 0.13491586538461542 0.3934326171875 0.13491586538461542 0.4288330078125 0.04296875 0.4288330078125 0.038762019230769273 0.4295654296875 0.038762019230769273 0.4102783203125 0.03395432692307687 0.4119873046875 0.03395432692307687 0.4102783203125 0.03816105769230771 0.4139404296875 0.03395432692307687 0.4122314453125 0.03395432692307687 0.4122314453125 0.03816105769230771 0.4141845703125 0.03816105769230771 0.4158935546875 0.03395432692307687 0.4141845703125 0.03395432692307687 0.4178466796875 0.03395432692307687 0.4161376953125 0.03395432692307687 0.4161376953125 0.03816105769230771 0.3936767578125 0.15354567307692313 0.3944091796875 0.13491586538461542 0.3936767578125 0.13491586538461542 0.4180908203125 0.03395432692307687 0.4180908203125 0.03816105769230771 0.4188232421875 0.03395432692307687 0.4200439453125 0.03395432692307687 0.4200439453125 0.03816105769230771 0.4217529296875 0.03395432692307687 0.1251220703125 0.42337740384615385 0.1405029296875 0.42337740384615385 0.3758544921875 0.09645432692307687 0.3751220703125 0.11508413461538458 0.3751220703125 0.09645432692307687 0.3760986328125 0.09645432692307687 0.3768310546875 0.09645432692307687 0.3760986328125 0.11508413461538458 0.3770751953125 0.09645432692307687 0.3770751953125 0.11508413461538458 0.3778076171875 0.09645432692307687 0.3787841796875 0.09645432692307687 0.3780517578125 0.09645432692307687 0.3780517578125 0.11508413461538458 0.3797607421875 0.09645432692307687 0.3790283203125 0.09645432692307687 0.3790283203125 0.11508413461538458 0.8536376953125 0.19260817307692313 0.8543701171875 0.19260817307692313 0.8536376953125 0.21123798076923073 0.2266845703125 0.06700721153846156 0.2303466796875 0.057992788461538436 0.2266845703125 0.057992788461538436 0.2264404296875 0.057992788461538436 0.2247314453125 0.057992788461538436 0.2247314453125 0.06700721153846156 0.2305908203125 0.057992788461538436 0.2322998046875 0.057992788461538436 0.2305908203125 0.06700721153846156 0.4197998046875 0.03395432692307687 0.4190673828125 0.03395432692307687 0.4190673828125 0.03816105769230771 0.4227294921875 0.03395432692307687 0.4219970703125 0.03816105769230771 0.4219970703125 0.03395432692307687 0.1170654296875 0.30799278846153844 0.1094970703125 0.3458533653846154 0.1094970703125 0.30799278846153844 0.1173095703125 0.3458533653846154 0.1248779296875 0.30799278846153844 0.1173095703125 0.30799278846153844 0.1251220703125 0.34645432692307687 0.1326904296875 0.34645432692307687 0.1251220703125 0.38431490384615385 0.1407470703125 0.34645432692307687 0.1407470703125 0.38431490384615385 0.1561279296875 0.34645432692307687 0.1405029296875 0.30799278846153844 0.1251220703125 0.3458533653846154 0.1251220703125 0.30799278846153844 0.2325439453125 0.06700721153846156 0.2325439453125 0.057992788461538436 0.2342529296875 0.057992788461538436 0.2344970703125 0.057992788461538436 0.2344970703125 0.06700721153846156 0.2381591796875 0.057992788461538436 0.2384033203125 0.06700721153846156 0.2401123046875 0.057992788461538436 0.2384033203125 0.057992788461538436 0.2403564453125 0.057992788461538436 0.2420654296875 0.057992788461538436 0.2403564453125 0.06700721153846156 0.2459716796875 0.057992788461538436 0.2423095703125 0.06700721153846156 0.2423095703125 0.057992788461538436 0.0213623046875 0.01953125 0.0196533203125 0.01953125 0.0196533203125 0.028545673076923128 0.2462158203125 0.057992788461538436 0.2462158203125 0.06700721153846156 0.2479248046875 0.057992788461538436 0.2498779296875 0.057992788461538436 0.2481689453125 0.057992788461538436 0.2481689453125 0.06700721153846156 0.4256591796875 0.03395432692307687 0.4239501953125 0.03816105769230771 0.4239501953125 0.03395432692307687 0.2205810546875 0.048377403846153855 0.2188720703125 0.05739182692307687 0.2188720703125 0.048377403846153855 0.4259033203125 0.03395432692307687 0.4276123046875 0.03395432692307687 0.4259033203125 0.03816105769230771 0.2208251953125 0.048377403846153855 0.2208251953125 0.05739182692307687 0.2225341796875 0.048377403846153855 0.3826904296875 0.8079927884615384 0.3751220703125 0.8458533653846154 0.1329345703125 0.34645432692307687 0.1329345703125 0.38431490384615385 0.1405029296875 0.34645432692307687 0.1407470703125 0.3458533653846154 0.1483154296875 0.30799278846153844 0.1407470703125 0.30799278846153844 0.1485595703125 0.30799278846153844 0.1561279296875 0.30799278846153844 0.1485595703125 0.3458533653846154 0.1563720703125 0.34645432692307687 0.1563720703125 0.38431490384615385 0.1717529296875 0.34645432692307687 0.1873779296875 0.34645432692307687 0.1719970703125 0.38431490384615385 0.1719970703125 0.34645432692307687 0.2227783203125 0.05739182692307687 0.2227783203125 0.048377403846153855 0.2264404296875 0.048377403846153855 0.2303466796875 0.048377403846153855 0.2266845703125 0.05739182692307687 0.2266845703125 0.048377403846153855 0.2305908203125 0.048377403846153855 0.2342529296875 0.048377403846153855 0.2305908203125 0.05739182692307687 0.2362060546875 0.048377403846153855 0.2344970703125 0.05739182692307687 0.2344970703125 0.048377403846153855 0.4295654296875 0.03395432692307687 0.4278564453125 0.03395432692307687 0.4278564453125 0.03816105769230771 0.2364501953125 0.048377403846153855 0.2364501953125 0.05739182692307687 0.2381591796875 0.048377403846153855 0.2401123046875 0.048377403846153855 0.2384033203125 0.05739182692307687 0.2384033203125 0.048377403846153855 0.2403564453125 0.048377403846153855 0.2420654296875 0.048377403846153855 0.2403564453125 0.05739182692307687 0.2440185546875 0.048377403846153855 0.2423095703125 0.05739182692307687 0.2423095703125 0.048377403846153855 0.4315185546875 0.03395432692307687 0.4298095703125 0.03395432692307687 0.4298095703125 0.03816105769230771 0.4317626953125 0.03395432692307687 0.4317626953125 0.03816105769230771 0.4334716796875 0.03395432692307687 0.1639404296875 0.30799278846153844 0.1563720703125 0.3458533653846154 0.1563720703125 0.30799278846153844 0.2579345703125 0.6535456730769231 0.2655029296875 0.6156850961538461 0.1641845703125 0.30799278846153844 0.1641845703125 0.3458533653846154 0.1717529296875 0.30799278846153844 0.1795654296875 0.30799278846153844 0.1719970703125 0.3458533653846154 0.1719970703125 0.30799278846153844 0.1798095703125 0.3458533653846154 0.1798095703125 0.30799278846153844 0.1873779296875 0.30799278846153844 0.1951904296875 0.34645432692307687 0.1876220703125 0.38431490384615385 0.1876220703125 0.34645432692307687 0.3829345703125 0.11508413461538458 0.3829345703125 0.09645432692307687 0.3865966796875 0.09645432692307687 0.3907470703125 0.09645432692307687 0.3983154296875 0.09645432692307687 0.3907470703125 0.11508413461538458 0.3905029296875 0.09645432692307687 0.3868408203125 0.11508413461538458 0.3868408203125 0.09645432692307687 0.2462158203125 0.048377403846153855 0.2462158203125 0.05739182692307687 0.2498779296875 0.048377403846153855 0.2188720703125 0.04777644230769229 0.2225341796875 0.038762019230769273 0.2188720703125 0.038762019230769273 0.2459716796875 0.048377403846153855 0.2442626953125 0.048377403846153855 0.2442626953125 0.05739182692307687 0.4337158203125 0.03395432692307687 0.4337158203125 0.03816105769230771 0.4354248046875 0.03395432692307687 0.4373779296875 0.03395432692307687 0.4356689453125 0.03816105769230771 0.4356689453125 0.03395432692307687 0.4063720703125 0.02914663461538458 0.4063720703125 0.03335336538461542 0.4080810546875 0.02914663461538458 0.4229736328125 0.03395432692307687 0.4237060546875 0.03395432692307687 0.4229736328125 0.03816105769230771 0.2227783203125 0.04777644230769229 0.2227783203125 0.038762019230769273 0.2264404296875 0.038762019230769273 0.2283935546875 0.038762019230769273 0.2266845703125 0.038762019230769273 0.2266845703125 0.04777644230769229 0.8614501953125 0.11568509615384615 0.8614501953125 0.12469951923076927 0.8631591796875 0.11568509615384615 0.2303466796875 0.038762019230769273 0.2286376953125 0.038762019230769273 0.2286376953125 0.04777644230769229 0.4100341796875 0.02914663461538458 0.4083251953125 0.02914663461538458 0.4083251953125 0.03335336538461542 0.3807373046875 0.09645432692307687 0.3800048828125 0.11508413461538458 0.3800048828125 0.09645432692307687 0.3985595703125 0.11508413461538458 0.4061279296875 0.09645432692307687 0.3985595703125 0.09645432692307687 0.3826904296875 0.07722355769230771 0.3751220703125 0.07722355769230771 0.3751220703125 0.09585336538461542 0.3829345703125 0.07722355769230771 0.3829345703125 0.09585336538461542 0.3905029296875 0.07722355769230771 0.3983154296875 0.07722355769230771 0.3907470703125 0.09585336538461542 0.3907470703125 0.07722355769230771 0.3751220703125 0.004507211538461564 0.3751220703125 0.00030048076923072653 0.3768310546875 0.00030048076923072653 0.2030029296875 0.34645432692307687 0.1954345703125 0.38431490384615385 0.1954345703125 0.34645432692307687 0.2032470703125 0.34645432692307687 0.2032470703125 0.38431490384615385 0.2108154296875 0.34645432692307687 0.2186279296875 0.34645432692307687 0.2110595703125 0.38431490384615385 0.2110595703125 0.34645432692307687 0.1876220703125 0.3458533653846154 0.1876220703125 0.30799278846153844 0.1951904296875 0.30799278846153844 0.2030029296875 0.30799278846153844 0.1954345703125 0.3458533653846154 0.1954345703125 0.30799278846153844 0.3985595703125 0.07722355769230771 0.3985595703125 0.09585336538461542 0.4022216796875 0.07722355769230771 0.4063720703125 0.13491586538461542 0.4139404296875 0.13491586538461542 0.4063720703125 0.15354567307692313 0.4061279296875 0.07722355769230771 0.4024658203125 0.09585336538461542 0.4024658203125 0.07722355769230771 0.2322998046875 0.038762019230769273 0.2305908203125 0.038762019230769273 0.2305908203125 0.04777644230769229 0.2325439453125 0.038762019230769273 0.2342529296875 0.038762019230769273 0.2325439453125 0.04777644230769229 0.2362060546875 0.038762019230769273 0.2344970703125 0.04777644230769229 0.2344970703125 0.038762019230769273 0.4110107421875 0.02914663461538458 0.4102783203125 0.02914663461538458 0.4102783203125 0.03335336538461542 0.2364501953125 0.04777644230769229 0.2381591796875 0.038762019230769273 0.2364501953125 0.038762019230769273 0.2401123046875 0.038762019230769273 0.2384033203125 0.038762019230769273 0.2384033203125 0.04777644230769229 0.2403564453125 0.038762019230769273 0.2420654296875 0.038762019230769273 0.2403564453125 0.04777644230769229 0.2423095703125 0.038762019230769273 0.2423095703125 0.04777644230769229 0.2459716796875 0.038762019230769273 0.2479248046875 0.038762019230769273 0.2462158203125 0.038762019230769273 0.2462158203125 0.04777644230769229 0.2481689453125 0.038762019230769273 0.2498779296875 0.038762019230769273 0.2481689453125 0.04777644230769229 0.3817138671875 0.09645432692307687 0.3809814453125 0.11508413461538458 0.3809814453125 0.09645432692307687 0.6561279296875 0.6541466346153846 0.6485595703125 0.6541466346153846 0.4122314453125 0.02914663461538458 0.4139404296875 0.02914663461538458 0.4122314453125 0.03335336538461542 0.3826904296875 0.09645432692307687 0.3819580078125 0.11508413461538458 0.3819580078125 0.09645432692307687 0.4141845703125 0.03335336538461542 0.4141845703125 0.02914663461538458 0.4158935546875 0.02914663461538458 0.2188720703125 0.03816105769230771 0.2188720703125 0.02914663461538458 0.2205810546875 0.02914663461538458 0.4112548828125 0.02914663461538458 0.4112548828125 0.03335336538461542 0.4119873046875 0.02914663461538458 0.0762939453125 0.07662259615384615 0.0780029296875 0.06760817307692313 0.2227783203125 0.03816105769230771 0.2264404296875 0.02914663461538458 0.2227783203125 0.02914663461538458 0.2266845703125 0.02914663461538458 0.2266845703125 0.03816105769230771 0.2303466796875 0.02914663461538458 0.4168701171875 0.02914663461538458 0.4161376953125 0.03335336538461542 0.4161376953125 0.02914663461538458 0.4180908203125 0.03335336538461542 0.4197998046875 0.02914663461538458 0.4180908203125 0.02914663461538458 0.2208251953125 0.02914663461538458 0.2225341796875 0.02914663461538458 0.2208251953125 0.03816105769230771 0.2322998046875 0.02914663461538458 0.2305908203125 0.02914663461538458 0.2305908203125 0.03816105769230771 0.4171142578125 0.02914663461538458 0.4171142578125 0.03335336538461542 0.4178466796875 0.02914663461538458 0.4217529296875 0.02914663461538458 0.4200439453125 0.02914663461538458 0.4200439453125 0.03335336538461542 0.2325439453125 0.02914663461538458 0.2325439453125 0.03816105769230771 0.2342529296875 0.02914663461538458 0.4141845703125 0.15354567307692313 0.4178466796875 0.13491586538461542 0.4141845703125 0.13491586538461542 0.4217529296875 0.13491586538461542 0.4180908203125 0.13491586538461542 0.4180908203125 0.15354567307692313 0.4219970703125 0.03335336538461542 0.4219970703125 0.02914663461538458 0.4227294921875 0.02914663461538458 0.4229736328125 0.03335336538461542 0.4237060546875 0.02914663461538458 0.4229736328125 0.02914663461538458 0.2344970703125 0.03816105769230771 0.2344970703125 0.02914663461538458 0.2362060546875 0.02914663461538458 0.2364501953125 0.02914663461538458 0.2364501953125 0.03816105769230771 0.2381591796875 0.02914663461538458 0.2401123046875 0.02914663461538458 0.2384033203125 0.02914663461538458 0.2384033203125 0.03816105769230771 0.2403564453125 0.02914663461538458 0.2403564453125 0.03816105769230771 0.2420654296875 0.02914663461538458 0.2423095703125 0.02914663461538458 0.2459716796875 0.02914663461538458 0.2423095703125 0.03816105769230771 0.2498779296875 0.02914663461538458 0.2462158203125 0.03816105769230771 0.2462158203125 0.02914663461538458 0.2188720703125 0.01953125 0.2188720703125 0.028545673076923128 0.2225341796875 0.01953125 0.4239501953125 0.02914663461538458 0.4256591796875 0.02914663461538458 0.4239501953125 0.03335336538461542 0.9571533203125 0.12469951923076927 0.9571533203125 0.11568509615384615 0.9608154296875 0.11568509615384615 0.2244873046875 0.01953125 0.2227783203125 0.01953125 0.2227783203125 0.028545673076923128 0.2266845703125 0.028545673076923128 0.2303466796875 0.01953125 0.2266845703125 0.01953125 0.8572998046875 0.08683894230769229 0.8555908203125 0.09585336538461542 0.8555908203125 0.08683894230769229 0.3319091796875 0.17337740384615385 0.3282470703125 0.19200721153846156 0.4219970703125 0.13491586538461542 0.4219970703125 0.15354567307692313 0.4256591796875 0.13491586538461542 0.4295654296875 0.13491586538461542 0.4259033203125 0.15354567307692313 0.4259033203125 0.13491586538461542 0.9061279296875 0.4618389423076923 0.8985595703125 0.4618389423076923 0.9844970703125 0.19200721153846156 0.9920654296875 0.17337740384615385 0.9844970703125 0.17337740384615385 0.4334716796875 0.13491586538461542 0.4298095703125 0.13491586538461542 0.4298095703125 0.15354567307692313 0.2342529296875 0.01953125 0.2305908203125 0.028545673076923128 0.2305908203125 0.01953125 0.2264404296875 0.01953125 0.2247314453125 0.01953125 0.2247314453125 0.028545673076923128 0.4259033203125 0.02914663461538458 0.4259033203125 0.03335336538461542 0.4276123046875 0.02914663461538458 0.4295654296875 0.02914663461538458 0.4278564453125 0.02914663461538458 0.4278564453125 0.03335336538461542 0.9569091796875 0.08683894230769229 0.9552001953125 0.09585336538461542 0.5311279296875 0.17337740384615385 0.5235595703125 0.17337740384615385 0.4298095703125 0.03335336538461542 0.4305419921875 0.02914663461538458 0.4298095703125 0.02914663461538458 0.4344482421875 0.13491586538461542 0.4337158203125 0.13491586538461542 0.4337158203125 0.15354567307692313 0.4307861328125 0.03335336538461542 0.4307861328125 0.02914663461538458 0.4315185546875 0.02914663461538458 0.4324951171875 0.02914663461538458 0.4317626953125 0.03335336538461542 0.4317626953125 0.02914663461538458 0.4346923828125 0.13491586538461542 0.4346923828125 0.15354567307692313 0.4354248046875 0.13491586538461542 0.4356689453125 0.13491586538461542 0.4356689453125 0.15354567307692313 0.4364013671875 0.13491586538461542 0.4366455078125 0.13491586538461542 0.4373779296875 0.13491586538461542 0.4366455078125 0.15354567307692313 0.0174560546875 0.01953125 0.0157470703125 0.01953125 0.4337158203125 0.03335336538461542 0.4337158203125 0.02914663461538458 0.4354248046875 0.02914663461538458 0.4334716796875 0.02914663461538458 0.4327392578125 0.02914663461538458 0.4327392578125 0.03335336538461542 0.2344970703125 0.028545673076923128 0.2344970703125 0.01953125 0.2362060546875 0.01953125 0.0936279296875 0.6156850961538461 0.0860595703125 0.6535456730769231 0.4063720703125 0.11568509615384615 0.4063720703125 0.13431490384615385 0.4139404296875 0.11568509615384615 0.4141845703125 0.13431490384615385 0.4217529296875 0.11568509615384615 0.4141845703125 0.11568509615384615 0.4295654296875 0.11568509615384615 0.4219970703125 0.13431490384615385 0.4219970703125 0.11568509615384615 0.4298095703125 0.13431490384615385 0.4298095703125 0.11568509615384615 0.4373779296875 0.11568509615384615 0.4100341796875 0.09645432692307687 0.4063720703125 0.11508413461538458 0.4063720703125 0.09645432692307687 0.2420654296875 0.01953125 0.2384033203125 0.01953125 0.2384033203125 0.028545673076923128 0.2423095703125 0.01953125 0.2423095703125 0.028545673076923128 0.2459716796875 0.01953125 0.2498779296875 0.01953125 0.2462158203125 0.01953125 0.2462158203125 0.028545673076923128 0.2225341796875 0.009915865384615419 0.2188720703125 0.009915865384615419 0.2188720703125 0.018930288461538436 0.4110107421875 0.09645432692307687 0.4102783203125 0.11508413461538458 0.4102783203125 0.09645432692307687 0.2227783203125 0.018930288461538436 0.2227783203125 0.009915865384615419 0.2264404296875 0.009915865384615419 0.2303466796875 0.009915865384615419 0.2266845703125 0.009915865384615419 0.2266845703125 0.018930288461538436 0.4141845703125 0.09645432692307687 0.4141845703125 0.11508413461538458 0.4178466796875 0.09645432692307687 0.3829345703125 0.8458533653846154 0.3905029296875 0.8079927884615384 0.2108154296875 0.30799278846153844 0.2032470703125 0.30799278846153844 0.2032470703125 0.3458533653846154 0.2110595703125 0.3458533653846154 0.2186279296875 0.30799278846153844 0.2110595703125 0.30799278846153844 0.2188720703125 0.34645432692307687 0.2342529296875 0.34645432692307687 0.2188720703125 0.38431490384615385 0.2305908203125 0.018930288461538436 0.2305908203125 0.009915865384615419 0.2342529296875 0.009915865384615419 0.2344970703125 0.009915865384615419 0.2344970703125 0.018930288461538436 0.2381591796875 0.009915865384615419 0.2420654296875 0.009915865384615419 0.2384033203125 0.009915865384615419 0.2384033203125 0.018930288461538436 0.2459716796875 0.009915865384615419 0.2423095703125 0.009915865384615419 0.2423095703125 0.018930288461538436 0.2364501953125 0.028545673076923128 0.2381591796875 0.01953125 0.2364501953125 0.01953125 0.2479248046875 0.009915865384615419 0.2462158203125 0.009915865384615419 0.2462158203125 0.018930288461538436 0.4356689453125 0.03335336538461542 0.4373779296875 0.02914663461538458 0.4356689453125 0.02914663461538458 0.4080810546875 0.02433894230769229 0.4063720703125 0.02433894230769229 0.4063720703125 0.028545673076923128 0.4083251953125 0.02433894230769229 0.4090576171875 0.02433894230769229 0.4083251953125 0.028545673076923128 0.3592529296875 0.6156850961538461 0.3438720703125 0.6156850961538461 0.0313720703125 0.06760817307692313 0.0313720703125 0.07662259615384615 0.0350341796875 0.06760817307692313 0.2188720703125 0.009314903846153855 0.2188720703125 0.00030048076923072653 0.2225341796875 0.00030048076923072653 0.2264404296875 0.00030048076923072653 0.2227783203125 0.00030048076923072653 0.2227783203125 0.009314903846153855 0.2266845703125 0.00030048076923072653 0.2266845703125 0.009314903846153855 0.2303466796875 0.00030048076923072653 0.2498779296875 0.009915865384615419 0.2481689453125 0.018930288461538436 0.2481689453125 0.009915865384615419 0.4041748046875 0.01953125 0.4024658203125 0.01953125 0.4024658203125 0.023737980769230727 0.2305908203125 0.009314903846153855 0.2342529296875 0.00030048076923072653 0.2305908203125 0.00030048076923072653 0.4180908203125 0.11508413461538458 0.4217529296875 0.09645432692307687 0.4180908203125 0.09645432692307687 0.2381591796875 0.00030048076923072653 0.2344970703125 0.00030048076923072653 0.2344970703125 0.009314903846153855 0.2401123046875 0.00030048076923072653 0.2384033203125 0.009314903846153855 0.2384033203125 0.00030048076923072653 0.4119873046875 0.02433894230769229 0.4102783203125 0.02433894230769229 0.4102783203125 0.028545673076923128 0.4122314453125 0.02433894230769229 0.4122314453125 0.028545673076923128 0.4139404296875 0.02433894230769229 0.4158935546875 0.02433894230769229 0.4141845703125 0.02433894230769229 0.4141845703125 0.028545673076923128 0.4093017578125 0.02433894230769229 0.4100341796875 0.02433894230769229 0.4093017578125 0.028545673076923128 0.4119873046875 0.09645432692307687 0.4112548828125 0.11508413461538458 0.4112548828125 0.09645432692307687 0.4161376953125 0.028545673076923128 0.4161376953125 0.02433894230769229 0.4178466796875 0.02433894230769229 0.4180908203125 0.02433894230769229 0.4197998046875 0.02433894230769229 0.4180908203125 0.028545673076923128 0.4129638671875 0.09645432692307687 0.4200439453125 0.028545673076923128 0.4200439453125 0.02433894230769229 0.4207763671875 0.02433894230769229 0.4237060546875 0.02433894230769229 0.4219970703125 0.028545673076923128 0.4219970703125 0.02433894230769229 0.4239501953125 0.028545673076923128 0.4239501953125 0.02433894230769229 0.4256591796875 0.02433894230769229 0.4259033203125 0.02433894230769229 0.4276123046875 0.02433894230769229 0.4259033203125 0.028545673076923128 0.2403564453125 0.00030048076923072653 0.2403564453125 0.009314903846153855 0.2420654296875 0.00030048076923072653 0.4210205078125 0.02433894230769229 0.4210205078125 0.028545673076923128 0.4217529296875 0.02433894230769229 0.6092529296875 0.7310697115384616 0.5938720703125 0.7310697115384616 0.4278564453125 0.02433894230769229 0.4278564453125 0.028545673076923128 0.4285888671875 0.02433894230769229 0.3905029296875 0.005108173076923128 0.3887939453125 0.009314903846153855 0.3887939453125 0.005108173076923128 0.0936279296875 0.009915865384615419 0.0899658203125 0.018930288461538436 0.0899658203125 0.009915865384615419 0.2344970703125 0.38431490384615385 0.2420654296875 0.34645432692307687 0.2344970703125 0.34645432692307687 0.2498779296875 0.34645432692307687 0.2423095703125 0.34645432692307687 0.2423095703125 0.38431490384615385 0.2188720703125 0.3458533653846154 0.2264404296875 0.30799278846153844 0.2188720703125 0.30799278846153844 0.2344970703125 0.30799278846153844 0.2498779296875 0.30799278846153844 0.2344970703125 0.3458533653846154 0.4219970703125 0.11508413461538458 0.4219970703125 0.09645432692307687 0.4256591796875 0.09645432692307687 0.4259033203125 0.09645432692307687 0.4259033203125 0.11508413461538458 0.4295654296875 0.09645432692307687 0.4334716796875 0.09645432692307687 0.4298095703125 0.09645432692307687 0.4298095703125 0.11508413461538458 0.2459716796875 0.00030048076923072653 0.2423095703125 0.00030048076923072653 0.2423095703125 0.009314903846153855 0.2462158203125 0.009314903846153855 0.2479248046875 0.00030048076923072653 0.2462158203125 0.00030048076923072653 0.2498779296875 0.00030048076923072653 0.2481689453125 0.00030048076923072653 0.2481689453125 0.009314903846153855 0.4298095703125 0.02433894230769229 0.4315185546875 0.02433894230769229 0.4298095703125 0.028545673076923128 0.4288330078125 0.028545673076923128 0.4295654296875 0.02433894230769229 0.4288330078125 0.02433894230769229 0.7437744140625 0.11508413461538458 0.7437744140625 0.09645432692307687 0.4139404296875 0.09645432692307687 0.4132080078125 0.11508413461538458 0.4132080078125 0.09645432692307687 0.4337158203125 0.09645432692307687 0.4344482421875 0.09645432692307687 0.4337158203125 0.11508413461538458 0.4317626953125 0.028545673076923128 0.4317626953125 0.02433894230769229 0.4324951171875 0.02433894230769229 0.4334716796875 0.02433894230769229 0.4327392578125 0.02433894230769229 0.4327392578125 0.028545673076923128 0.1268310546875 0.23106971153846156 0.1260986328125 0.23106971153846156 0.4346923828125 0.11508413461538458 0.4354248046875 0.09645432692307687 0.4346923828125 0.09645432692307687 0.4337158203125 0.02433894230769229 0.4337158203125 0.028545673076923128 0.4344482421875 0.02433894230769229 0.4063720703125 0.07722355769230771 0.4063720703125 0.09585336538461542 0.4139404296875 0.07722355769230771 0.4141845703125 0.09585336538461542 0.4217529296875 0.07722355769230771 0.4141845703125 0.07722355769230771 0.4219970703125 0.07722355769230771 0.4295654296875 0.07722355769230771 0.4219970703125 0.09585336538461542 0.4373779296875 0.07722355769230771 0.4298095703125 0.09585336538461542 0.4298095703125 0.07722355769230771 0.6876220703125 0.38431490384615385 0.6951904296875 0.34645432692307687 0.4376220703125 0.13491586538461542 0.4376220703125 0.15354567307692313 0.4412841796875 0.13491586538461542 0.2501220703125 0.06760817307692313 0.2501220703125 0.07662259615384615 0.2518310546875 0.06760817307692313 0.2576904296875 0.06760817307692313 0.2540283203125 0.06760817307692313 0.2540283203125 0.07662259615384615 0.2615966796875 0.06760817307692313 0.2579345703125 0.07662259615384615 0.2579345703125 0.06760817307692313 0.2618408203125 0.06760817307692313 0.2618408203125 0.07662259615384615 0.2655029296875 0.06760817307692313 0.4356689453125 0.02433894230769229 0.4373779296875 0.02433894230769229 0.4356689453125 0.028545673076923128 0.3927001953125 0.009915865384615419 0.3927001953125 0.014122596153846145 0.3944091796875 0.009915865384615419 0.3983154296875 0.057992788461538436 0.3975830078125 0.062199519230769273 0.3975830078125 0.057992788461538436 0.0079345703125 0.19260817307692313 0.0155029296875 0.19260817307692313 0.3416748046875 0.048377403846153855 0.3399658203125 0.048377403846153855 0.4354248046875 0.02433894230769229 0.4346923828125 0.028545673076923128 0.4346923828125 0.02433894230769229 0.4356689453125 0.09645432692307687 0.4356689453125 0.11508413461538458 0.4364013671875 0.09645432692307687 0.4373779296875 0.09645432692307687 0.4366455078125 0.09645432692307687 0.4366455078125 0.11508413461538458 0.4415283203125 0.13491586538461542 0.4415283203125 0.15354567307692313 0.4422607421875 0.13491586538461542 0.4063720703125 0.023737980769230727 0.4063720703125 0.01953125 0.4071044921875 0.01953125 0.4454345703125 0.13491586538461542 0.4454345703125 0.15354567307692313 0.4530029296875 0.13491586538461542 0.4532470703125 0.15354567307692313 0.4608154296875 0.13491586538461542 0.4532470703125 0.13491586538461542 0.4610595703125 0.13491586538461542 0.4610595703125 0.15354567307692313 0.4686279296875 0.13491586538461542 0.2657470703125 0.07662259615384615 0.2694091796875 0.06760817307692313 0.2657470703125 0.06760817307692313 0.2733154296875 0.06760817307692313 0.2696533203125 0.07662259615384615 0.2696533203125 0.06760817307692313 0.4083251953125 0.01953125 0.4083251953125 0.023737980769230727 0.4100341796875 0.01953125 0.4119873046875 0.01953125 0.4102783203125 0.01953125 0.4102783203125 0.023737980769230727 0.4122314453125 0.01953125 0.4122314453125 0.023737980769230727 0.4139404296875 0.01953125 0.4141845703125 0.023737980769230727 0.4158935546875 0.01953125 0.4141845703125 0.01953125 0.4161376953125 0.01953125 0.4178466796875 0.01953125 0.4161376953125 0.023737980769230727 0.4197998046875 0.01953125 0.4180908203125 0.023737980769230727 0.4180908203125 0.01953125 0.2520751953125 0.06760817307692313 0.2520751953125 0.07662259615384615 0.2537841796875 0.06760817307692313 0.2735595703125 0.06760817307692313 0.2752685546875 0.06760817307692313 0.2735595703125 0.07662259615384615 0.2774658203125 0.06760817307692313 0.2774658203125 0.07662259615384615 0.2811279296875 0.06760817307692313 0.2537841796875 0.057992788461538436 0.2501220703125 0.057992788461538436 0.2501220703125 0.06700721153846156 0.4376220703125 0.13431490384615385 0.4412841796875 0.11568509615384615 0.4376220703125 0.11568509615384615 0.4415283203125 0.11568509615384615 0.4415283203125 0.13431490384615385 0.4451904296875 0.11568509615384615 0.4454345703125 0.13431490384615385 0.4454345703125 0.11568509615384615 0.4530029296875 0.11568509615384615 0.4608154296875 0.11568509615384615 0.4532470703125 0.11568509615384615 0.4532470703125 0.13431490384615385 0.4686279296875 0.11568509615384615 0.4610595703125 0.13431490384615385 0.4610595703125 0.11568509615384615 0.4376220703125 0.09645432692307687 0.4376220703125 0.11508413461538458 0.4451904296875 0.09645432692307687 0.2540283203125 0.06700721153846156 0.2576904296875 0.057992788461538436 0.2540283203125 0.057992788461538436 0.2755126953125 0.07662259615384615 0.2755126953125 0.06760817307692313 0.2772216796875 0.06760817307692313 0.2579345703125 0.06700721153846156 0.2579345703125 0.057992788461538436 0.2615966796875 0.057992788461538436 0.2655029296875 0.057992788461538436 0.2618408203125 0.057992788461538436 0.2618408203125 0.06700721153846156 0.2657470703125 0.057992788461538436 0.2657470703125 0.06700721153846156 0.2694091796875 0.057992788461538436 0.2733154296875 0.057992788461538436 0.2696533203125 0.057992788461538436 0.2696533203125 0.06700721153846156 0.4080810546875 0.01953125 0.4073486328125 0.01953125 0.4073486328125 0.023737980769230727 0.4454345703125 0.11508413461538458 0.4530029296875 0.09645432692307687 0.4454345703125 0.09645432692307687 0.4569091796875 0.09645432692307687 0.4532470703125 0.09645432692307687 0.4532470703125 0.11508413461538458 0.4571533203125 0.09645432692307687 0.4571533203125 0.11508413461538458 0.4608154296875 0.09645432692307687 0.4686279296875 0.09645432692307687 0.4610595703125 0.11508413461538458 0.4610595703125 0.09645432692307687 0.4200439453125 0.023737980769230727 0.4200439453125 0.01953125 0.4217529296875 0.01953125 0.3438720703125 0.8073918269230769 0.3514404296875 0.76953125 0.4412841796875 0.07722355769230771 0.4376220703125 0.07722355769230771 0.4376220703125 0.09585336538461542 0.2501220703125 0.38431490384615385 0.2655029296875 0.34645432692307687 0.2501220703125 0.34645432692307687 0.2811279296875 0.34645432692307687 0.2657470703125 0.34645432692307687 0.2657470703125 0.38431490384615385 0.2735595703125 0.057992788461538436 0.2752685546875 0.057992788461538436 0.2735595703125 0.06700721153846156 0.4415283203125 0.07722355769230771 0.4415283203125 0.09585336538461542 0.4451904296875 0.07722355769230771 0.4490966796875 0.07722355769230771 0.4454345703125 0.07722355769230771 0.4454345703125 0.09585336538461542 0.2811279296875 0.057992788461538436 0.2774658203125 0.06700721153846156 0.2774658203125 0.057992788461538436 0.4493408203125 0.07722355769230771 0.4530029296875 0.07722355769230771 0.4493408203125 0.09585336538461542 0.4569091796875 0.07722355769230771 0.4532470703125 0.09585336538461542 0.4532470703125 0.07722355769230771 0.2537841796875 0.048377403846153855 0.2501220703125 0.048377403846153855 0.2501220703125 0.05739182692307687 0.4686279296875 0.07722355769230771 0.4610595703125 0.09585336538461542 0.4610595703125 0.07722355769230771 0.2266845703125 0.3458533653846154 0.2342529296875 0.30799278846153844 0.2266845703125 0.30799278846153844 0.2498779296875 0.3849158653846154 0.2344970703125 0.3849158653846154 0.2576904296875 0.048377403846153855 0.2540283203125 0.048377403846153855 0.2540283203125 0.05739182692307687 0.2579345703125 0.048377403846153855 0.2579345703125 0.05739182692307687 0.2615966796875 0.048377403846153855 0.4571533203125 0.07722355769230771 0.4571533203125 0.09585336538461542 0.4608154296875 0.07722355769230771 0.2755126953125 0.06700721153846156 0.2772216796875 0.057992788461538436 0.2755126953125 0.057992788461538436 0.2618408203125 0.05739182692307687 0.2618408203125 0.048377403846153855 0.2635498046875 0.048377403846153855 0.4227294921875 0.01953125 0.4219970703125 0.023737980769230727 0.4219970703125 0.01953125 0.4239501953125 0.023737980769230727 0.4256591796875 0.01953125 0.4239501953125 0.01953125 0.4259033203125 0.01953125 0.4259033203125 0.023737980769230727 0.4276123046875 0.01953125 0.8673095703125 0.2887620192307693 0.8748779296875 0.2887620192307693 0.8282470703125 0.5003004807692308 0.8358154296875 0.5003004807692308 0.4237060546875 0.01953125 0.4229736328125 0.023737980769230727 0.4229736328125 0.01953125 0.4425048828125 0.13491586538461542 0.4432373046875 0.13491586538461542 0.4425048828125 0.15354567307692313 0.3966064453125 0.01953125 0.3966064453125 0.023737980769230727 0.3973388671875 0.01953125 0.2637939453125 0.048377403846153855 0.2655029296875 0.048377403846153855 0.2637939453125 0.05739182692307687 0.2657470703125 0.048377403846153855 0.2694091796875 0.048377403846153855 0.2657470703125 0.05739182692307687 0.4434814453125 0.13491586538461542 0.4442138671875 0.13491586538461542 0.4434814453125 0.15354567307692313 0.4688720703125 0.15354567307692313 0.4725341796875 0.13491586538461542 0.4688720703125 0.13491586538461542 0.2696533203125 0.048377403846153855 0.2696533203125 0.05739182692307687 0.2733154296875 0.048377403846153855 0.4766845703125 0.15354567307692313 0.4842529296875 0.13491586538461542 0.4766845703125 0.13491586538461542 0.4920654296875 0.13491586538461542 0.4844970703125 0.15354567307692313 0.4844970703125 0.13491586538461542 0.9805908203125 0.3272235576923077 0.9805908203125 0.3458533653846154 0.9813232421875 0.3272235576923077 0.4278564453125 0.01953125 0.4285888671875 0.01953125 0.4278564453125 0.023737980769230727 0.4041748046875 0.005108173076923128 0.4024658203125 0.009314903846153855 0.6563720703125 0.8079927884615384 0.6717529296875 0.8079927884615384 0.1163330078125 0.24969951923076927 0.1170654296875 0.23106971153846156 0.1163330078125 0.23106971153846156 0.4288330078125 0.023737980769230727 0.4295654296875 0.01953125 0.4288330078125 0.01953125 0.4305419921875 0.01953125 0.4298095703125 0.01953125 0.4298095703125 0.023737980769230727 0.4444580078125 0.15354567307692313 0.4444580078125 0.13491586538461542 0.4451904296875 0.13491586538461542 0.2735595703125 0.048377403846153855 0.2735595703125 0.05739182692307687 0.2772216796875 0.048377403846153855 0.2811279296875 0.048377403846153855 0.2774658203125 0.05739182692307687 0.2774658203125 0.048377403846153855 0.4317626953125 0.01953125 0.4334716796875 0.01953125 0.4317626953125 0.023737980769230727 0.4727783203125 0.15354567307692313 0.4727783203125 0.13491586538461542 0.4735107421875 0.13491586538461542 0.2501220703125 0.04777644230769229 0.2501220703125 0.038762019230769273 0.2537841796875 0.038762019230769273 0.4923095703125 0.13491586538461542 0.4959716796875 0.13491586538461542 0.4923095703125 0.15354567307692313 0.4998779296875 0.13491586538461542 0.4962158203125 0.15354567307692313 0.4962158203125 0.13491586538461542 0.8907470703125 0.19200721153846156 0.8944091796875 0.17337740384615385 0.4764404296875 0.11568509615384615 0.4688720703125 0.13431490384615385 0.4688720703125 0.11568509615384615 0.4766845703125 0.11568509615384615 0.4766845703125 0.13431490384615385 0.4842529296875 0.11568509615384615 0.2501220703125 0.3458533653846154 0.2576904296875 0.30799278846153844 0.2501220703125 0.30799278846153844 0.4920654296875 0.11568509615384615 0.4844970703125 0.13431490384615385 0.4844970703125 0.11568509615384615 0.2540283203125 0.04777644230769229 0.2540283203125 0.038762019230769273 0.2576904296875 0.038762019230769273 0.2615966796875 0.038762019230769273 0.2579345703125 0.04777644230769229 0.2579345703125 0.038762019230769273 0.4923095703125 0.11568509615384615 0.4923095703125 0.13431490384615385 0.4959716796875 0.11568509615384615 0.2618408203125 0.04777644230769229 0.2655029296875 0.038762019230769273 0.2618408203125 0.038762019230769273 0.2657470703125 0.038762019230769273 0.2657470703125 0.04777644230769229 0.2694091796875 0.038762019230769273 0.4315185546875 0.01953125 0.4307861328125 0.01953125 0.4307861328125 0.023737980769230727 0.4337158203125 0.023737980769230727 0.4337158203125 0.01953125 0.4354248046875 0.01953125 0.4373779296875 0.01953125 0.4356689453125 0.01953125 0.4356689453125 0.023737980769230727 0.4063720703125 0.01472355769230771 0.4063720703125 0.018930288461538436 0.4080810546875 0.01472355769230771 0.2969970703125 0.02914663461538458 0.2987060546875 0.02914663461538458 0.7147216796875 0.13491586538461542 0.7110595703125 0.13491586538461542 0.4764404296875 0.09645432692307687 0.4688720703125 0.09645432692307687 0.4688720703125 0.11508413461538458 0.9307861328125 0.2887620192307693 0.9307861328125 0.30739182692307687 0.9315185546875 0.2887620192307693 0.9317626953125 0.30739182692307687 0.9317626953125 0.2887620192307693 0.9324951171875 0.2887620192307693 0.4083251953125 0.01472355769230771 0.4090576171875 0.01472355769230771 0.4083251953125 0.018930288461538436 0.4093017578125 0.018930288461538436 0.4100341796875 0.01472355769230771 0.4093017578125 0.01472355769230771 0.4110107421875 0.01472355769230771 0.4102783203125 0.018930288461538436 0.4102783203125 0.01472355769230771 0.4744873046875 0.13491586538461542 0.4737548828125 0.13491586538461542 0.4737548828125 0.15354567307692313 0.4122314453125 0.018930288461538436 0.4139404296875 0.01472355769230771 0.4122314453125 0.01472355769230771 0.7442626953125 0.11508413461538458 0.7442626953125 0.09645432692307687 0.4112548828125 0.018930288461538436 0.4119873046875 0.01472355769230771 0.4112548828125 0.01472355769230771 0.2696533203125 0.04777644230769229 0.2713623046875 0.038762019230769273 0.2696533203125 0.038762019230769273 0.4766845703125 0.11508413461538458 0.4842529296875 0.09645432692307687 0.4766845703125 0.09645432692307687 0.4998779296875 0.11568509615384615 0.4962158203125 0.11568509615384615 0.4962158203125 0.13431490384615385 0.1014404296875 0.02914663461538458 0.0977783203125 0.03816105769230771 0.0977783203125 0.02914663461538458 0.1912841796875 0.19260817307692313 0.1876220703125 0.21123798076923073 0.2735595703125 0.038762019230769273 0.2772216796875 0.038762019230769273 0.2735595703125 0.04777644230769229 0.4747314453125 0.15354567307692313 0.4754638671875 0.13491586538461542 0.4747314453125 0.13491586538461542 0.4141845703125 0.018930288461538436 0.4158935546875 0.01472355769230771 0.4141845703125 0.01472355769230771 0.4844970703125 0.11508413461538458 0.4881591796875 0.09645432692307687 0.4844970703125 0.09645432692307687 0.2811279296875 0.038762019230769273 0.2774658203125 0.038762019230769273 0.2774658203125 0.04777644230769229 0.2501220703125 0.02914663461538458 0.2501220703125 0.03816105769230771 0.2537841796875 0.02914663461538458 0.2540283203125 0.02914663461538458 0.2576904296875 0.02914663461538458 0.2540283203125 0.03816105769230771 0.2811279296875 0.2118389423076923 0.2774658203125 0.2118389423076923 0.6055908203125 0.15414663461538458 0.6092529296875 0.15414663461538458 0.2716064453125 0.038762019230769273 0.2733154296875 0.038762019230769273 0.2716064453125 0.04777644230769229 0.2596435546875 0.02914663461538458 0.2579345703125 0.03816105769230771 0.2579345703125 0.02914663461538458 0.4178466796875 0.01472355769230771 0.4161376953125 0.01472355769230771 0.4161376953125 0.018930288461538436 0.2598876953125 0.03816105769230771 0.2598876953125 0.02914663461538458 0.2615966796875 0.02914663461538458 0.2635498046875 0.02914663461538458 0.2618408203125 0.02914663461538458 0.2618408203125 0.03816105769230771 0.2637939453125 0.02914663461538458 0.2655029296875 0.02914663461538458 0.2637939453125 0.03816105769230771 0.4757080078125 0.13491586538461542 0.4757080078125 0.15354567307692313 0.4764404296875 0.13491586538461542 0.8516845703125 0.21123798076923073 0.8524169921875 0.19260817307692313 0.2694091796875 0.02914663461538458 0.2657470703125 0.02914663461538458 0.2657470703125 0.03816105769230771 0.4180908203125 0.018930288461538436 0.4197998046875 0.01472355769230771 0.4180908203125 0.01472355769230771 0.2696533203125 0.02914663461538458 0.2713623046875 0.02914663461538458 0.2696533203125 0.03816105769230771 0.4200439453125 0.01472355769230771 0.4200439453125 0.018930288461538436 0.4217529296875 0.01472355769230771 0.2716064453125 0.02914663461538458 0.2716064453125 0.03816105769230771 0.2733154296875 0.02914663461538458 0.4884033203125 0.11508413461538458 0.4884033203125 0.09645432692307687 0.4891357421875 0.09645432692307687 0.2735595703125 0.03816105769230771 0.2735595703125 0.02914663461538458 0.2772216796875 0.02914663461538458 0.4219970703125 0.018930288461538436 0.4219970703125 0.01472355769230771 0.4237060546875 0.01472355769230771 0.4246826171875 0.01472355769230771 0.4239501953125 0.01472355769230771 0.4239501953125 0.018930288461538436 0.4249267578125 0.01472355769230771 0.4249267578125 0.018930288461538436 0.4256591796875 0.01472355769230771 0.4259033203125 0.01472355769230771 0.4259033203125 0.018930288461538436 0.4276123046875 0.01472355769230771 0.4893798828125 0.09645432692307687 0.4901123046875 0.09645432692307687 0.4893798828125 0.11508413461538458 0.2774658203125 0.03816105769230771 0.2774658203125 0.02914663461538458 0.2811279296875 0.02914663461538458 0.2537841796875 0.01953125 0.2501220703125 0.028545673076923128 0.2501220703125 0.01953125 0.2540283203125 0.01953125 0.2540283203125 0.028545673076923128 0.2576904296875 0.01953125 0.4923095703125 0.11508413461538458 0.4998779296875 0.09645432692307687 0.4923095703125 0.09645432692307687 0.4725341796875 0.07722355769230771 0.4688720703125 0.09585336538461542 0.4688720703125 0.07722355769230771 0.2579345703125 0.01953125 0.2579345703125 0.028545673076923128 0.2615966796875 0.01953125 0.2618408203125 0.028545673076923128 0.2655029296875 0.01953125 0.2618408203125 0.01953125 0.4727783203125 0.07722355769230771 0.4727783203125 0.09585336538461542 0.4764404296875 0.07722355769230771 0.2657470703125 0.028545673076923128 0.2694091796875 0.01953125 0.2657470703125 0.01953125 0.4766845703125 0.09585336538461542 0.4766845703125 0.07722355769230771 0.4842529296875 0.07722355769230771 0.4881591796875 0.07722355769230771 0.4844970703125 0.07722355769230771 0.4844970703125 0.09585336538461542 0.3887939453125 0.01472355769230771 0.3895263671875 0.01472355769230771 0.3887939453125 0.018930288461538436 0.4295654296875 0.01472355769230771 0.4278564453125 0.01472355769230771 0.4278564453125 0.018930288461538436 0.4884033203125 0.09585336538461542 0.4920654296875 0.07722355769230771 0.4884033203125 0.07722355769230771 0.2713623046875 0.01953125 0.2696533203125 0.01953125 0.2696533203125 0.028545673076923128 0.2716064453125 0.01953125 0.2716064453125 0.028545673076923128 0.2733154296875 0.01953125 0.2735595703125 0.01953125 0.2735595703125 0.028545673076923128 0.2772216796875 0.01953125 0.4298095703125 0.01472355769230771 0.4298095703125 0.018930288461538436 0.4315185546875 0.01472355769230771 0.2774658203125 0.01953125 0.2791748046875 0.01953125 0.2774658203125 0.028545673076923128 0.2537841796875 0.009915865384615419 0.2501220703125 0.009915865384615419 0.2501220703125 0.018930288461538436 0.4923095703125 0.09585336538461542 0.4998779296875 0.07722355769230771 0.4923095703125 0.07722355769230771 0.2579345703125 0.30799278846153844 0.2579345703125 0.3458533653846154 0.2655029296875 0.30799278846153844 0.2657470703125 0.30799278846153844 0.2811279296875 0.30799278846153844 0.2657470703125 0.3458533653846154 0.2813720703125 0.34645432692307687 0.2967529296875 0.34645432692307687 0.2813720703125 0.38431490384615385 0.2794189453125 0.01953125 0.2794189453125 0.028545673076923128 0.2811279296875 0.01953125 0.4334716796875 0.01472355769230771 0.4317626953125 0.01472355769230771 0.4317626953125 0.018930288461538436 0.2540283203125 0.018930288461538436 0.2576904296875 0.009915865384615419 0.2540283203125 0.009915865384615419 0.2615966796875 0.009915865384615419 0.2579345703125 0.009915865384615419 0.2579345703125 0.018930288461538436 0.2969970703125 0.38431490384615385 0.3123779296875 0.34645432692307687 0.2969970703125 0.34645432692307687 0.2967529296875 0.30799278846153844 0.2813720703125 0.3458533653846154 0.2813720703125 0.30799278846153844 0.3045654296875 0.30799278846153844 0.2969970703125 0.30799278846153844 0.2969970703125 0.3458533653846154 0.3048095703125 0.30799278846153844 0.3123779296875 0.30799278846153844 0.3048095703125 0.3458533653846154 0.3126220703125 0.38431490384615385 0.3126220703125 0.34645432692307687 0.3201904296875 0.34645432692307687 0.4337158203125 0.01472355769230771 0.4354248046875 0.01472355769230771 0.4337158203125 0.018930288461538436 0.5545654296875 0.2887620192307693 0.5469970703125 0.2887620192307693 0.3790283203125 0.07662259615384615 0.3807373046875 0.07241586538461542 0.4356689453125 0.01472355769230771 0.4356689453125 0.018930288461538436 0.4373779296875 0.01472355769230771 0.2618408203125 0.009915865384615419 0.2618408203125 0.018930288461538436 0.2635498046875 0.009915865384615419 0.4063720703125 0.014122596153846145 0.4080810546875 0.009915865384615419 0.4063720703125 0.009915865384615419 0.2657470703125 0.018930288461538436 0.2694091796875 0.009915865384615419 0.2657470703125 0.009915865384615419 0.2696533203125 0.009915865384615419 0.2733154296875 0.009915865384615419 0.2696533203125 0.018930288461538436 0.2735595703125 0.018930288461538436 0.2735595703125 0.009915865384615419 0.2772216796875 0.009915865384615419 0.6309814453125 0.23106971153846156 0.6317138671875 0.23106971153846156 0.4083251953125 0.014122596153846145 0.4083251953125 0.009915865384615419 0.4100341796875 0.009915865384615419 0.2637939453125 0.018930288461538436 0.2637939453125 0.009915865384615419 0.2655029296875 0.009915865384615419 0.1151123046875 0.009915865384615419 0.1134033203125 0.018930288461538436 0.1134033203125 0.009915865384615419 0.4102783203125 0.009915865384615419 0.4102783203125 0.014122596153846145 0.4110107421875 0.009915865384615419 0.2774658203125 0.018930288461538436 0.2791748046875 0.009915865384615419 0.2774658203125 0.009915865384615419 0.2501220703125 0.00030048076923072653 0.2537841796875 0.00030048076923072653 0.2501220703125 0.009314903846153855 0.5001220703125 0.15354567307692313 0.5076904296875 0.13491586538461542 0.5001220703125 0.13491586538461542 0.3204345703125 0.38431490384615385 0.3204345703125 0.34645432692307687 0.3280029296875 0.34645432692307687 0.9376220703125 0.4618389423076923 0.9451904296875 0.4618389423076923 0.9376220703125 0.4996995192307693 0.2794189453125 0.009915865384615419 0.2811279296875 0.009915865384615419 0.2794189453125 0.018930288461538436 0.2540283203125 0.009314903846153855 0.2540283203125 0.00030048076923072653 0.2576904296875 0.00030048076923072653 0.2579345703125 0.00030048076923072653 0.2579345703125 0.009314903846153855 0.2615966796875 0.00030048076923072653 0.2635498046875 0.00030048076923072653 0.2618408203125 0.00030048076923072653 0.2618408203125 0.009314903846153855 0.4139404296875 0.009915865384615419 0.4122314453125 0.009915865384615419 0.4122314453125 0.014122596153846145 0.2694091796875 0.00030048076923072653 0.2657470703125 0.00030048076923072653 0.2657470703125 0.009314903846153855 0.0311279296875 0.9233774038461539 0.0157470703125 0.9233774038461539 0.4158935546875 0.009915865384615419 0.4141845703125 0.014122596153846145 0.4141845703125 0.009915865384615419 0.4112548828125 0.014122596153846145 0.4112548828125 0.009915865384615419 0.4119873046875 0.009915865384615419 0.5079345703125 0.15354567307692313 0.5155029296875 0.13491586538461542 0.5079345703125 0.13491586538461542 0.5233154296875 0.13491586538461542 0.5157470703125 0.15354567307692313 0.5157470703125 0.13491586538461542 0.5311279296875 0.13491586538461542 0.5235595703125 0.15354567307692313 0.5235595703125 0.13491586538461542 0.4161376953125 0.014122596153846145 0.4161376953125 0.009915865384615419 0.4178466796875 0.009915865384615419 0.4180908203125 0.009915865384615419 0.4188232421875 0.009915865384615419 0.4180908203125 0.014122596153846145 0.4200439453125 0.014122596153846145 0.4200439453125 0.009915865384615419 0.4217529296875 0.009915865384615419 0.5001220703125 0.13431490384615385 0.5037841796875 0.11568509615384615 0.5001220703125 0.11568509615384615 0.2733154296875 0.00030048076923072653 0.2696533203125 0.00030048076923072653 0.2696533203125 0.009314903846153855 0.2735595703125 0.00030048076923072653 0.2735595703125 0.009314903846153855 0.2772216796875 0.00030048076923072653 0.5040283203125 0.11568509615384615 0.5040283203125 0.13431490384615385 0.5076904296875 0.11568509615384615 0.3282470703125 0.38431490384615385 0.3436279296875 0.34645432692307687 0.3282470703125 0.34645432692307687 0.3280029296875 0.30799278846153844 0.3126220703125 0.3458533653846154 0.3126220703125 0.30799278846153844 0.5079345703125 0.13431490384615385 0.5079345703125 0.11568509615384615 0.5115966796875 0.11568509615384615 0.9920654296875 0.76953125 0.4219970703125 0.009915865384615419 0.4237060546875 0.009915865384615419 0.4219970703125 0.014122596153846145 0.2637939453125 0.009314903846153855 0.2655029296875 0.00030048076923072653 0.2637939453125 0.00030048076923072653 0.9844970703125 0.6926081730769231 0.9920654296875 0.6926081730769231 0.2774658203125 0.009314903846153855 0.2774658203125 0.00030048076923072653 0.2791748046875 0.00030048076923072653 0.4256591796875 0.009915865384615419 0.4239501953125 0.014122596153846145 0.4239501953125 0.009915865384615419 0.2794189453125 0.00030048076923072653 0.2811279296875 0.00030048076923072653 0.2794189453125 0.009314903846153855 0.2813720703125 0.07662259615384615 0.2850341796875 0.06760817307692313 0.2813720703125 0.06760817307692313 0.5118408203125 0.13431490384615385 0.5155029296875 0.11568509615384615 0.5118408203125 0.11568509615384615 0.5233154296875 0.11568509615384615 0.5157470703125 0.13431490384615385 0.5157470703125 0.11568509615384615 0.5235595703125 0.11568509615384615 0.5311279296875 0.11568509615384615 0.5235595703125 0.13431490384615385 0.5037841796875 0.09645432692307687 0.5001220703125 0.11508413461538458 0.5001220703125 0.09645432692307687 0.2852783203125 0.06760817307692313 0.2852783203125 0.07662259615384615 0.2889404296875 0.06760817307692313 0.2928466796875 0.06760817307692313 0.2891845703125 0.06760817307692313 0.2891845703125 0.07662259615384615 0.6134033203125 0.1727764423076923 0.6170654296875 0.15414663461538458 0.4190673828125 0.009915865384615419 0.4190673828125 0.014122596153846145 0.4197998046875 0.009915865384615419 0.4276123046875 0.009915865384615419 0.4259033203125 0.009915865384615419 0.4259033203125 0.014122596153846145 0.2930908203125 0.07662259615384615 0.2930908203125 0.06760817307692313 0.2967529296875 0.06760817307692313 0.2969970703125 0.06760817307692313 0.3006591796875 0.06760817307692313 0.2969970703125 0.07662259615384615 0.3045654296875 0.06760817307692313 0.3009033203125 0.07662259615384615 0.3009033203125 0.06760817307692313 0.5040283203125 0.09645432692307687 0.5040283203125 0.11508413461538458 0.5076904296875 0.09645432692307687 0.3048095703125 0.06760817307692313 0.3084716796875 0.06760817307692313 0.3048095703125 0.07662259615384615 0.0723876953125 0.02914663461538458 0.0723876953125 0.03816105769230771 0.0740966796875 0.02914663461538458 0.4910888671875 0.09645432692307687 0.4903564453125 0.09645432692307687 0.4903564453125 0.11508413461538458 0.4920654296875 0.09645432692307687 0.4913330078125 0.11508413461538458 0.4913330078125 0.09645432692307687 0.7032470703125 0.2503004807692307 0.7108154296875 0.2503004807692307 0.4278564453125 0.009915865384615419 0.4278564453125 0.014122596153846145 0.4285888671875 0.009915865384615419 0.4298095703125 0.014122596153846145 0.4315185546875 0.009915865384615419 0.4298095703125 0.009915865384615419 0.3087158203125 0.07662259615384615 0.3087158203125 0.06760817307692313 0.3123779296875 0.06760817307692313 0.2813720703125 0.057992788461538436 0.2850341796875 0.057992788461538436 0.2813720703125 0.06700721153846156 0.5079345703125 0.11508413461538458 0.5079345703125 0.09645432692307687 0.5115966796875 0.09645432692307687 0.5118408203125 0.09645432692307687 0.5155029296875 0.09645432692307687 0.5118408203125 0.11508413461538458 0.3282470703125 0.3458533653846154 0.3282470703125 0.30799278846153844 0.3436279296875 0.30799278846153844 0.5233154296875 0.09645432692307687 0.5157470703125 0.11508413461538458 0.5157470703125 0.09645432692307687 0.1719970703125 0.2118389423076923 0.1719970703125 0.23046875 0.5235595703125 0.09645432692307687 0.5235595703125 0.11508413461538458 0.5311279296875 0.09645432692307687 0.5076904296875 0.07722355769230771 0.5001220703125 0.09585336538461542 0.5001220703125 0.07722355769230771 0.2852783203125 0.06700721153846156 0.2869873046875 0.057992788461538436 0.2852783203125 0.057992788461538436 0.5079345703125 0.09585336538461542 0.5079345703125 0.07722355769230771 0.5115966796875 0.07722355769230771 0.5118408203125 0.07722355769230771 0.5155029296875 0.07722355769230771 0.5118408203125 0.09585336538461542 0.4334716796875 0.009915865384615419 0.4317626953125 0.009915865384615419 0.4317626953125 0.014122596153846145 0.9786376953125 0.13491586538461542 0.9803466796875 0.13491586538461542 0.2872314453125 0.057992788461538436 0.2889404296875 0.057992788461538436 0.2872314453125 0.06700721153846156 0.4337158203125 0.014122596153846145 0.4354248046875 0.009915865384615419 0.4337158203125 0.009915865384615419 0.4373779296875 0.009915865384615419 0.4356689453125 0.009915865384615419 0.4356689453125 0.014122596153846145 0.5157470703125 0.07722355769230771 0.5164794921875 0.07722355769230771 0.5157470703125 0.09585336538461542 0.5167236328125 0.07722355769230771 0.5174560546875 0.07722355769230771 0.5167236328125 0.09585336538461542 0.5177001953125 0.09585336538461542 0.5177001953125 0.07722355769230771 0.5184326171875 0.07722355769230771 0.4288330078125 0.014122596153846145 0.4295654296875 0.009915865384615419 0.4288330078125 0.009915865384615419 0.4063720703125 0.009314903846153855 0.4063720703125 0.005108173076923128 0.4080810546875 0.005108173076923128 0.6405029296875 0.30799278846153844 0.6251220703125 0.30799278846153844 0.2891845703125 0.057992788461538436 0.2891845703125 0.06700721153846156 0.2928466796875 0.057992788461538436 0.2967529296875 0.057992788461538436 0.2930908203125 0.06700721153846156 0.2930908203125 0.057992788461538436 0.2811279296875 0.6156850961538461 0.2657470703125 0.6156850961538461 0.8438720703125 0.2503004807692307 0.8514404296875 0.2503004807692307 0.1170654296875 0.13491586538461542 0.1094970703125 0.13491586538461542 0.4083251953125 0.009314903846153855 0.4090576171875 0.005108173076923128 0.4083251953125 0.005108173076923128 0.4100341796875 0.005108173076923128 0.4093017578125 0.009314903846153855 0.4093017578125 0.005108173076923128 0.6319580078125 0.24969951923076927 0.6326904296875 0.23106971153846156 0.6319580078125 0.23106971153846156 0.2969970703125 0.06700721153846156 0.2969970703125 0.057992788461538436 0.2987060546875 0.057992788461538436 0.1114501953125 0.048377403846153855 0.1114501953125 0.05739182692307687 0.1131591796875 0.048377403846153855 0.3006591796875 0.057992788461538436 0.2989501953125 0.06700721153846156 0.2989501953125 0.057992788461538436 0.5079345703125 0.15414663461538458 0.5079345703125 0.1727764423076923 0.5311279296875 0.07722355769230771 0.5235595703125 0.09585336538461542 0.5235595703125 0.07722355769230771 0.5196533203125 0.09585336538461542 0.5233154296875 0.07722355769230771 0.5196533203125 0.07722355769230771 0.3045654296875 0.057992788461538436 0.3009033203125 0.06700721153846156 0.3009033203125 0.057992788461538436 0.4119873046875 0.005108173076923128 0.4102783203125 0.005108173076923128 0.4102783203125 0.009314903846153855 0.5186767578125 0.09585336538461542 0.5186767578125 0.07722355769230771 0.5194091796875 0.07722355769230771 0.3048095703125 0.06700721153846156 0.3084716796875 0.057992788461538436 0.3048095703125 0.057992788461538436 0.4122314453125 0.005108173076923128 0.4122314453125 0.009314903846153855 0.4139404296875 0.005108173076923128 0.3087158203125 0.057992788461538436 0.3087158203125 0.06700721153846156 0.3104248046875 0.057992788461538436 0.3907470703125 0.01472355769230771 0.3924560546875 0.01472355769230771 0.3907470703125 0.018930288461538436 0.4158935546875 0.005108173076923128 0.4141845703125 0.009314903846153855 0.4141845703125 0.005108173076923128 0.5313720703125 0.15354567307692313 0.5389404296875 0.13491586538461542 0.5313720703125 0.13491586538461542 0.5428466796875 0.13491586538461542 0.5391845703125 0.13491586538461542 0.5391845703125 0.15354567307692313 0.2813720703125 0.048377403846153855 0.2813720703125 0.05739182692307687 0.2850341796875 0.048377403846153855 0.5430908203125 0.13491586538461542 0.5430908203125 0.15354567307692313 0.5467529296875 0.13491586538461542 0.3878173828125 0.009314903846153855 0.3885498046875 0.005108173076923128 0.3878173828125 0.005108173076923128 0.5469970703125 0.15354567307692313 0.5545654296875 0.13491586538461542 0.5469970703125 0.13491586538461542 0.5584716796875 0.13491586538461542 0.5548095703125 0.13491586538461542 0.5548095703125 0.15354567307692313 0.2852783203125 0.048377403846153855 0.2852783203125 0.05739182692307687 0.2889404296875 0.048377403846153855 0.5587158203125 0.13491586538461542 0.5587158203125 0.15354567307692313 0.5623779296875 0.13491586538461542 0.4161376953125 0.009314903846153855 0.4178466796875 0.005108173076923128 0.4161376953125 0.005108173076923128 0.9903564453125 0.13491586538461542 0.9920654296875 0.13491586538461542 0.5350341796875 0.11568509615384615 0.5313720703125 0.13431490384615385 0.5313720703125 0.11568509615384615 0.2928466796875 0.048377403846153855 0.2891845703125 0.048377403846153855 0.2891845703125 0.05739182692307687 0.3123779296875 0.057992788461538436 0.3106689453125 0.057992788461538436 0.3106689453125 0.06700721153846156 0.9766845703125 0.10546875 0.9783935546875 0.09645432692307687 0.9766845703125 0.09645432692307687 0.2930908203125 0.048377403846153855 0.2930908203125 0.05739182692307687 0.2967529296875 0.048377403846153855 0.3006591796875 0.048377403846153855 0.2969970703125 0.048377403846153855 0.2969970703125 0.05739182692307687 0.3026123046875 0.048377403846153855 0.3009033203125 0.05739182692307687 0.3009033203125 0.048377403846153855 0.3028564453125 0.05739182692307687 0.3045654296875 0.048377403846153855 0.3028564453125 0.048377403846153855 0.3065185546875 0.048377403846153855 0.3048095703125 0.05739182692307687 0.3048095703125 0.048377403846153855 0.4188232421875 0.005108173076923128 0.4180908203125 0.005108173076923128 0.4180908203125 0.009314903846153855 0.4190673828125 0.005108173076923128 0.4190673828125 0.009314903846153855 0.4197998046875 0.005108173076923128 0.4217529296875 0.005108173076923128 0.4200439453125 0.005108173076923128 0.4200439453125 0.009314903846153855 0.4219970703125 0.009314903846153855 0.4219970703125 0.005108173076923128 0.4227294921875 0.005108173076923128 0.4239501953125 0.005108173076923128 0.4256591796875 0.005108173076923128 0.4239501953125 0.009314903846153855 0.7657470703125 0.19260817307692313 0.7733154296875 0.19260817307692313 0.5343017578125 0.1727764423076923 0.5350341796875 0.15414663461538458 0.5360107421875 0.11568509615384615 0.5352783203125 0.11568509615384615 0.5352783203125 0.13431490384615385 0.5362548828125 0.13431490384615385 0.5369873046875 0.11568509615384615 0.5362548828125 0.11568509615384615 0.5379638671875 0.11568509615384615 0.5372314453125 0.11568509615384615 0.5372314453125 0.13431490384615385 0.5313720703125 0.23106971153846156 0.5321044921875 0.23106971153846156 0.6563720703125 0.8073918269230769 0.3555908203125 0.00030048076923072653 0.3555908203125 0.004507211538461564 0.4276123046875 0.005108173076923128 0.4259033203125 0.009314903846153855 0.4259033203125 0.005108173076923128 0.3438720703125 0.34645432692307687 0.3514404296875 0.34645432692307687 0.3438720703125 0.38431490384615385 0.3592529296875 0.34645432692307687 0.3516845703125 0.34645432692307687 0.3516845703125 0.38431490384615385 0.3594970703125 0.38431490384615385 0.3670654296875 0.34645432692307687 0.3594970703125 0.34645432692307687 0.3592529296875 0.30799278846153844 0.3438720703125 0.30799278846153844 0.3438720703125 0.3458533653846154 0.3087158203125 0.05739182692307687 0.3123779296875 0.048377403846153855 0.3087158203125 0.048377403846153855 0.5391845703125 0.11568509615384615 0.5391845703125 0.13431490384615385 0.5428466796875 0.11568509615384615 0.5469970703125 0.11568509615384615 0.5545654296875 0.11568509615384615 0.5469970703125 0.13431490384615385 0.3673095703125 0.34645432692307687 0.3748779296875 0.34645432692307687 0.3673095703125 0.38431490384615385 0.3670654296875 0.30799278846153844 0.3594970703125 0.30799278846153844 0.3594970703125 0.3458533653846154 0.3673095703125 0.3458533653846154 0.3748779296875 0.30799278846153844 0.3673095703125 0.30799278846153844 0.3905029296875 0.34645432692307687 0.3751220703125 0.34645432692307687 0.3751220703125 0.38431490384615385 0.2813720703125 0.04777644230769229 0.2850341796875 0.038762019230769273 0.2813720703125 0.038762019230769273 0.2852783203125 0.038762019230769273 0.2852783203125 0.04777644230769229 0.2889404296875 0.038762019230769273 0.2928466796875 0.038762019230769273 0.2891845703125 0.038762019230769273 0.2891845703125 0.04777644230769229 0.2930908203125 0.038762019230769273 0.2930908203125 0.04777644230769229 0.2967529296875 0.038762019230769273 0.3084716796875 0.048377403846153855 0.3067626953125 0.048377403846153855 0.3067626953125 0.05739182692307687 0.8399658203125 0.13431490384615385 0.8416748046875 0.12530048076923073 0.2969970703125 0.038762019230769273 0.2987060546875 0.038762019230769273 0.2969970703125 0.04777644230769229 0.3009033203125 0.038762019230769273 0.3009033203125 0.04777644230769229 0.3045654296875 0.038762019230769273 0.3048095703125 0.038762019230769273 0.3048095703125 0.04777644230769229 0.3084716796875 0.038762019230769273 0.5382080078125 0.11568509615384615 0.5382080078125 0.13431490384615385 0.5389404296875 0.11568509615384615 0.4229736328125 0.005108173076923128 0.4229736328125 0.009314903846153855 0.4237060546875 0.005108173076923128 0.4278564453125 0.009314903846153855 0.4278564453125 0.005108173076923128 0.4285888671875 0.005108173076923128 0.4315185546875 0.005108173076923128 0.4298095703125 0.005108173076923128 0.4298095703125 0.009314903846153855 0.4317626953125 0.009314903846153855 0.4317626953125 0.005108173076923128 0.4334716796875 0.005108173076923128 0.4337158203125 0.005108173076923128 0.4337158203125 0.009314903846153855 0.4354248046875 0.005108173076923128 0.4373779296875 0.005108173076923128 0.4356689453125 0.005108173076923128 0.4356689453125 0.009314903846153855 0.4288330078125 0.005108173076923128 0.4288330078125 0.009314903846153855 0.4295654296875 0.005108173076923128 0.4063720703125 0.004507211538461564 0.4063720703125 0.00030048076923072653 0.4071044921875 0.00030048076923072653 0.1055908203125 0.06760817307692313 0.1072998046875 0.06760817307692313 0.1055908203125 0.07662259615384615 0.3123779296875 0.038762019230769273 0.3087158203125 0.04777644230769229 0.3087158203125 0.038762019230769273 0.2813720703125 0.03816105769230771 0.2813720703125 0.02914663461538458 0.2850341796875 0.02914663461538458 0.4073486328125 0.004507211538461564 0.4073486328125 0.00030048076923072653 0.4080810546875 0.00030048076923072653 0.8201904296875 0.2118389423076923 0.8126220703125 0.2118389423076923 0.3436279296875 0.2503004807692307 0.3360595703125 0.2503004807692307 0.2989501953125 0.04777644230769229 0.2989501953125 0.038762019230769273 0.3006591796875 0.038762019230769273 0.2852783203125 0.02914663461538458 0.2869873046875 0.02914663461538458 0.2852783203125 0.03816105769230771 0.4083251953125 0.00030048076923072653 0.4083251953125 0.004507211538461564 0.4090576171875 0.00030048076923072653 0.4102783203125 0.004507211538461564 0.4119873046875 0.00030048076923072653 0.4102783203125 0.00030048076923072653 0.4122314453125 0.00030048076923072653 0.4122314453125 0.004507211538461564 0.4139404296875 0.00030048076923072653 0.3487548828125 0.009314903846153855 0.3494873046875 0.005108173076923128 0.3487548828125 0.005108173076923128 0.0938720703125 0.23106971153846156 0.1014404296875 0.23106971153846156 0.4093017578125 0.004507211538461564 0.4093017578125 0.00030048076923072653 0.4100341796875 0.00030048076923072653 0.4158935546875 0.00030048076923072653 0.4141845703125 0.00030048076923072653 0.4141845703125 0.004507211538461564 0.2889404296875 0.02914663461538458 0.2872314453125 0.03816105769230771 0.2872314453125 0.02914663461538458 0.2891845703125 0.03816105769230771 0.2908935546875 0.02914663461538458 0.2891845703125 0.02914663461538458 0.2911376953125 0.02914663461538458 0.2911376953125 0.03816105769230771 0.2928466796875 0.02914663461538458 0.3985595703125 0.01472355769230771 0.4002685546875 0.01472355769230771 0.3985595703125 0.018930288461538436 0.5548095703125 0.11568509615384615 0.5548095703125 0.13431490384615385 0.5623779296875 0.11568509615384615 0.5313720703125 0.11508413461538458 0.5389404296875 0.09645432692307687 0.5313720703125 0.09645432692307687 0.5467529296875 0.09645432692307687 0.5391845703125 0.09645432692307687 0.5391845703125 0.11508413461538458 0.5469970703125 0.09645432692307687 0.5469970703125 0.11508413461538458 0.5545654296875 0.09645432692307687 0.5548095703125 0.09645432692307687 0.5548095703125 0.11508413461538458 0.5623779296875 0.09645432692307687 0.2930908203125 0.03816105769230771 0.2967529296875 0.02914663461538458 0.2930908203125 0.02914663461538458 0.0567626953125 0.01953125 0.0567626953125 0.028545673076923128 0.0584716796875 0.01953125 0.2969970703125 0.03816105769230771 0.9493408203125 0.08683894230769229 0.9510498046875 0.08683894230769229 0.9493408203125 0.09585336538461542 0.3907470703125 0.38431490384615385 0.4061279296875 0.34645432692307687 0.3907470703125 0.34645432692307687 0.3905029296875 0.30799278846153844 0.3751220703125 0.30799278846153844 0.3751220703125 0.3458533653846154 0.3907470703125 0.30799278846153844 0.3907470703125 0.3458533653846154 0.4061279296875 0.30799278846153844 0.4063720703125 0.34645432692307687 0.4063720703125 0.38431490384615385 0.4217529296875 0.34645432692307687 0.5430908203125 0.13431490384615385 0.5467529296875 0.11568509615384615 0.5430908203125 0.11568509615384615 0.4161376953125 0.004507211538461564 0.4161376953125 0.00030048076923072653 0.4178466796875 0.00030048076923072653 0.2989501953125 0.02914663461538458 0.2989501953125 0.03816105769230771 0.3006591796875 0.02914663461538458 0.3009033203125 0.03816105769230771 0.3026123046875 0.02914663461538458 0.3009033203125 0.02914663461538458 0.3028564453125 0.03816105769230771 0.3028564453125 0.02914663461538458 0.3045654296875 0.02914663461538458 0.3048095703125 0.02914663461538458 0.3065185546875 0.02914663461538458 0.3048095703125 0.03816105769230771 0.4197998046875 0.00030048076923072653 0.4180908203125 0.004507211538461564 0.4180908203125 0.00030048076923072653 0.9002685546875 0.14453125 0.8985595703125 0.14453125 0.4200439453125 0.00030048076923072653 0.4217529296875 0.00030048076923072653 0.4200439453125 0.004507211538461564 0.5313720703125 0.07722355769230771 0.5313720703125 0.09585336538461542 0.5321044921875 0.07722355769230771 0.7657470703125 0.8079927884615384 0.7811279296875 0.8079927884615384 0.5467529296875 0.07722355769230771 0.5391845703125 0.09585336538461542 0.5391845703125 0.07722355769230771 0.5469970703125 0.09585336538461542 0.5469970703125 0.07722355769230771 0.5545654296875 0.07722355769230771 0.5623779296875 0.07722355769230771 0.5548095703125 0.07722355769230771 0.5548095703125 0.09585336538461542 0.5626220703125 0.13491586538461542 0.5626220703125 0.15354567307692313 0.5701904296875 0.13491586538461542 0.5704345703125 0.13491586538461542 0.5704345703125 0.15354567307692313 0.5780029296875 0.13491586538461542 0.3087158203125 0.03816105769230771 0.3123779296875 0.02914663461538458 0.3087158203125 0.02914663461538458 0.4219970703125 0.004507211538461564 0.4219970703125 0.00030048076923072653 0.4237060546875 0.00030048076923072653 0.3067626953125 0.02914663461538458 0.3084716796875 0.02914663461538458 0.3067626953125 0.03816105769230771 0.2830810546875 0.01953125 0.2813720703125 0.028545673076923128 0.2813720703125 0.01953125 0.2833251953125 0.01953125 0.2850341796875 0.01953125 0.2833251953125 0.028545673076923128 0.2852783203125 0.01953125 0.2852783203125 0.028545673076923128 0.2889404296875 0.01953125 0.4219970703125 0.38431490384615385 0.4219970703125 0.34645432692307687 0.4295654296875 0.34645432692307687 0.4217529296875 0.30799278846153844 0.4063720703125 0.3458533653846154 0.4063720703125 0.30799278846153844 0.2891845703125 0.028545673076923128 0.2891845703125 0.01953125 0.2928466796875 0.01953125 0.5352783203125 0.07722355769230771 0.5389404296875 0.07722355769230771 0.5352783203125 0.09585336538461542 0.5819091796875 0.13491586538461542 0.5782470703125 0.15354567307692313 0.5782470703125 0.13491586538461542 0.7264404296875 0.08683894230769229 0.7227783203125 0.09585336538461542 0.7227783203125 0.08683894230769229 0.2930908203125 0.028545673076923128 0.2930908203125 0.01953125 0.2967529296875 0.01953125 0.2969970703125 0.01953125 0.2969970703125 0.028545673076923128 0.2987060546875 0.01953125 0.3006591796875 0.01953125 0.2989501953125 0.028545673076923128 0.2989501953125 0.01953125 0.5330810546875 0.07722355769230771 0.5323486328125 0.07722355769230771 0.5323486328125 0.09585336538461542 0.3009033203125 0.028545673076923128 0.3026123046875 0.01953125 0.3009033203125 0.01953125 0.8280029296875 0.12530048076923073 0.8262939453125 0.13431490384615385 0.8262939453125 0.12530048076923073 0.4239501953125 0.00030048076923072653 0.4239501953125 0.004507211538461564 0.4256591796875 0.00030048076923072653 0.4276123046875 0.00030048076923072653 0.4259033203125 0.00030048076923072653 0.4259033203125 0.004507211538461564 0.4295654296875 0.00030048076923072653 0.4278564453125 0.00030048076923072653 0.4278564453125 0.004507211538461564 0.3966064453125 0.014122596153846145 0.3983154296875 0.009915865384615419 0.3966064453125 0.009915865384615419 0.3028564453125 0.01953125 0.3028564453125 0.028545673076923128 0.3045654296875 0.01953125 0.4298095703125 0.00030048076923072653 0.4305419921875 0.00030048076923072653 0.4298095703125 0.004507211538461564 0.0001220703125 0.7689302884615384 0.0001220703125 0.7310697115384616 0.4219970703125 0.30799278846153844 0.4219970703125 0.3458533653846154 0.4373779296875 0.30799278846153844 0.5860595703125 0.15354567307692313 0.5936279296875 0.13491586538461542 0.5860595703125 0.13491586538461542 0.5701904296875 0.11568509615384615 0.5626220703125 0.11568509615384615 0.5626220703125 0.13431490384615385 0.5704345703125 0.11568509615384615 0.5704345703125 0.13431490384615385 0.5780029296875 0.11568509615384615 0.4298095703125 0.34645432692307687 0.4298095703125 0.38431490384615385 0.4373779296875 0.34645432692307687 0.5821533203125 0.13491586538461542 0.5858154296875 0.13491586538461542 0.5821533203125 0.15354567307692313 0.4334716796875 0.00030048076923072653 0.4317626953125 0.004507211538461564 0.4317626953125 0.00030048076923072653 0.3809814453125 0.057992788461538436 0.3826904296875 0.057992788461538436 0.3809814453125 0.062199519230769273 0.3048095703125 0.01953125 0.3048095703125 0.028545673076923128 0.3084716796875 0.01953125 0.3123779296875 0.01953125 0.3087158203125 0.01953125 0.3087158203125 0.028545673076923128 0.2813720703125 0.009915865384615419 0.2850341796875 0.009915865384615419 0.2813720703125 0.018930288461538436 0.4307861328125 0.004507211538461564 0.4307861328125 0.00030048076923072653 0.4315185546875 0.00030048076923072653 0.4337158203125 0.00030048076923072653 0.4344482421875 0.00030048076923072653 0.4337158203125 0.004507211538461564 0.4346923828125 0.00030048076923072653 0.4346923828125 0.004507211538461564 0.4354248046875 0.00030048076923072653 0.3905029296875 0.06280048076923073 0.3897705078125 0.06280048076923073 0.3897705078125 0.06700721153846156 0.4356689453125 0.00030048076923072653 0.4356689453125 0.004507211538461564 0.4364013671875 0.00030048076923072653 0.4393310546875 0.07241586538461542 0.4376220703125 0.07662259615384615 0.4376220703125 0.07241586538461542 0.4412841796875 0.07241586538461542 0.4395751953125 0.07241586538461542 0.4395751953125 0.07662259615384615 0.8028564453125 0.13491586538461542 0.8045654296875 0.13491586538461542 0.6485595703125 0.09645432692307687 0.6485595703125 0.11508413461538458 0.4366455078125 0.00030048076923072653 0.4366455078125 0.004507211538461564 0.4373779296875 0.00030048076923072653 0.0899658203125 0.07662259615384615 0.0899658203125 0.06760817307692313 0.0936279296875 0.06760817307692313 0.2889404296875 0.009915865384615419 0.2852783203125 0.018930288461538436 0.2852783203125 0.009915865384615419 0.2891845703125 0.018930288461538436 0.2891845703125 0.009915865384615419 0.2928466796875 0.009915865384615419 0.2930908203125 0.009915865384615419 0.2967529296875 0.009915865384615419 0.2930908203125 0.018930288461538436 0.3006591796875 0.009915865384615419 0.2969970703125 0.018930288461538436 0.2969970703125 0.009915865384615419 0.3045654296875 0.009915865384615419 0.3009033203125 0.018930288461538436 0.3009033203125 0.009915865384615419 0.3048095703125 0.009915865384615419 0.3084716796875 0.009915865384615419 0.3048095703125 0.018930288461538436 0.1212158203125 0.04777644230769229 0.1212158203125 0.038762019230769273 0.1229248046875 0.038762019230769273 0.3087158203125 0.018930288461538436 0.3087158203125 0.009915865384615419 0.3104248046875 0.009915865384615419 0.2813720703125 0.00030048076923072653 0.2850341796875 0.00030048076923072653 0.2813720703125 0.009314903846153855 0.2889404296875 0.00030048076923072653 0.2852783203125 0.009314903846153855 0.2852783203125 0.00030048076923072653 0.9190673828125 0.34645432692307687 0.5333251953125 0.09585336538461542 0.5340576171875 0.07722355769230771 0.5333251953125 0.07722355769230771 0.0008544921875 0.15414663461538458 0.0001220703125 0.15414663461538458 0.0001220703125 0.1727764423076923 0.5782470703125 0.11568509615384615 0.5782470703125 0.13431490384615385 0.5858154296875 0.11568509615384615 0.0079345703125 0.7689302884615384 0.0155029296875 0.7310697115384616 0.4376220703125 0.34645432692307687 0.4376220703125 0.38431490384615385 0.4451904296875 0.34645432692307687 0.4532470703125 0.34645432692307687 0.4532470703125 0.38431490384615385 0.4686279296875 0.34645432692307687 0.5860595703125 0.13431490384615385 0.5936279296875 0.11568509615384615 0.5860595703125 0.11568509615384615 0.5626220703125 0.09645432692307687 0.5626220703125 0.11508413461538458 0.5701904296875 0.09645432692307687 0.5704345703125 0.09645432692307687 0.5704345703125 0.11508413461538458 0.5780029296875 0.09645432692307687 0.0548095703125 0.26893028846153844 0.0548095703125 0.2503004807692307 0.5782470703125 0.09645432692307687 0.5782470703125 0.11508413461538458 0.5858154296875 0.09645432692307687 0.5936279296875 0.09645432692307687 0.5860595703125 0.11508413461538458 0.5860595703125 0.09645432692307687 0.4376220703125 0.3458533653846154 0.4376220703125 0.30799278846153844 0.4530029296875 0.30799278846153844 0.4686279296875 0.30799278846153844 0.4532470703125 0.3458533653846154 0.4532470703125 0.30799278846153844 0.7637939453125 0.12530048076923073 0.7637939453125 0.13431490384615385 0.4415283203125 0.07662259615384615 0.4415283203125 0.07241586538461542 0.4422607421875 0.07241586538461542 0.4434814453125 0.07241586538461542 0.4451904296875 0.07241586538461542 0.4434814453125 0.07662259615384615 0.5343017578125 0.09585336538461542 0.5350341796875 0.07722355769230771 0.5343017578125 0.07722355769230771 0.5623779296875 0.2887620192307693 0.5548095703125 0.2887620192307693 0.5633544921875 0.07722355769230771 0.5626220703125 0.07722355769230771 0.5626220703125 0.09585336538461542 0.4425048828125 0.07241586538461542 0.4425048828125 0.07662259615384615 0.4432373046875 0.07241586538461542 0.4461669921875 0.07241586538461542 0.4454345703125 0.07241586538461542 0.4454345703125 0.07662259615384615 0.4464111328125 0.07241586538461542 0.4471435546875 0.07241586538461542 0.4464111328125 0.07662259615384615 0.4473876953125 0.07662259615384615 0.4473876953125 0.07241586538461542 0.4481201171875 0.07241586538461542 0.2891845703125 0.00030048076923072653 0.2928466796875 0.00030048076923072653 0.2891845703125 0.009314903846153855 0.4493408203125 0.07241586538461542 0.4493408203125 0.07662259615384615 0.4510498046875 0.07241586538461542 0.4512939453125 0.07662259615384615 0.4530029296875 0.07241586538461542 0.4512939453125 0.07241586538461542 0.4532470703125 0.07241586538461542 0.4532470703125 0.07662259615384615 0.4549560546875 0.07241586538461542 0.5643310546875 0.07722355769230771 0.5635986328125 0.09585336538461542 0.5635986328125 0.07722355769230771 0.4552001953125 0.07662259615384615 0.4569091796875 0.07241586538461542 0.4552001953125 0.07241586538461542 0.4490966796875 0.07241586538461542 0.4483642578125 0.07241586538461542 0.4483642578125 0.07662259615384615 0.1290283203125 0.02914663461538458 0.1290283203125 0.03816105769230771 0.1326904296875 0.02914663461538458 0.8634033203125 0.19200721153846156 0.8670654296875 0.17337740384615385 0.5665283203125 0.07722355769230771 0.5665283203125 0.09585336538461542 0.5701904296875 0.07722355769230771 0.5780029296875 0.07722355769230771 0.5704345703125 0.09585336538461542 0.5704345703125 0.07722355769230771 0.4578857421875 0.07241586538461542 0.4571533203125 0.07241586538461542 0.4571533203125 0.07662259615384615 0.4581298828125 0.07662259615384615 0.4588623046875 0.07241586538461542 0.4581298828125 0.07241586538461542 0.4591064453125 0.07662259615384615 0.4591064453125 0.07241586538461542 0.4608154296875 0.07241586538461542 0.4610595703125 0.07241586538461542 0.4627685546875 0.07241586538461542 0.4610595703125 0.07662259615384615 0.5645751953125 0.09585336538461542 0.5645751953125 0.07722355769230771 0.5653076171875 0.07722355769230771 0.4630126953125 0.07662259615384615 0.4647216796875 0.07241586538461542 0.4630126953125 0.07241586538461542 0.4649658203125 0.07241586538461542 0.4666748046875 0.07241586538461542 0.4649658203125 0.07662259615384615 0.8026123046875 0.13491586538461542 0.8009033203125 0.14393028846153844 0.3106689453125 0.009915865384615419 0.3123779296875 0.009915865384615419 0.3106689453125 0.018930288461538436 0.4669189453125 0.07662259615384615 0.4676513671875 0.07241586538461542 0.4669189453125 0.07241586538461542 0.2930908203125 0.00030048076923072653 0.2947998046875 0.00030048076923072653 0.2930908203125 0.009314903846153855 0.4376220703125 0.07181490384615385 0.4393310546875 0.06760817307692313 0.4376220703125 0.06760817307692313 0.4678955078125 0.07662259615384615 0.4686279296875 0.07241586538461542 0.4678955078125 0.07241586538461542 0.2950439453125 0.009314903846153855 0.2967529296875 0.00030048076923072653 0.2950439453125 0.00030048076923072653 0.7928466796875 0.12530048076923073 0.7891845703125 0.12530048076923073 0.7891845703125 0.13431490384615385 0.2969970703125 0.009314903846153855 0.2969970703125 0.00030048076923072653 0.2987060546875 0.00030048076923072653 0.3006591796875 0.00030048076923072653 0.2989501953125 0.009314903846153855 0.2989501953125 0.00030048076923072653 0.4920654296875 0.2887620192307693 0.4844970703125 0.2887620192307693 0.5782470703125 0.09585336538461542 0.5819091796875 0.07722355769230771 0.4412841796875 0.06760817307692313 0.4395751953125 0.06760817307692313 0.4395751953125 0.07181490384615385 0.4415283203125 0.06760817307692313 0.4415283203125 0.07181490384615385 0.4432373046875 0.06760817307692313 0.3009033203125 0.00030048076923072653 0.3009033203125 0.009314903846153855 0.3026123046875 0.00030048076923072653 0.3048095703125 0.009314903846153855 0.3048095703125 0.00030048076923072653 0.3084716796875 0.00030048076923072653 0.3028564453125 0.009314903846153855 0.3045654296875 0.00030048076923072653 0.3028564453125 0.00030048076923072653 0.1016845703125 0.11568509615384615 0.1053466796875 0.11568509615384615 0.1016845703125 0.13431490384615385 0.3087158203125 0.009314903846153855 0.3123779296875 0.00030048076923072653 0.3087158203125 0.00030048076923072653 0.5782470703125 0.07722355769230771 0.3126220703125 0.06760817307692313 0.3162841796875 0.06760817307692313 0.3126220703125 0.07662259615384615 0.5821533203125 0.07722355769230771 0.5858154296875 0.07722355769230771 0.5821533203125 0.09585336538461542 0.3165283203125 0.06760817307692313 0.3201904296875 0.06760817307692313 0.3165283203125 0.07662259615384615 0.5860595703125 0.07722355769230771 0.5860595703125 0.09585336538461542 0.5897216796875 0.07722355769230771 0.3204345703125 0.07662259615384615 0.3240966796875 0.06760817307692313 0.3204345703125 0.06760817307692313 0.3243408203125 0.06760817307692313 0.3243408203125 0.07662259615384615 0.3280029296875 0.06760817307692313 0.3282470703125 0.06760817307692313 0.3299560546875 0.06760817307692313 0.3282470703125 0.07662259615384615 0.3302001953125 0.06760817307692313 0.3302001953125 0.07662259615384615 0.3319091796875 0.06760817307692313 0.3321533203125 0.07662259615384615 0.3338623046875 0.06760817307692313 0.3321533203125 0.06760817307692313 0.4434814453125 0.07181490384615385 0.4451904296875 0.06760817307692313 0.4434814453125 0.06760817307692313 0.4454345703125 0.06760817307692313 0.4454345703125 0.07181490384615385 0.4471435546875 0.06760817307692313 0.4473876953125 0.07181490384615385 0.4473876953125 0.06760817307692313 0.4481201171875 0.06760817307692313 0.4490966796875 0.06760817307692313 0.4483642578125 0.07181490384615385 0.4483642578125 0.06760817307692313 0.3768310546875 0.005108173076923128 0.3751220703125 0.005108173076923128 0.3751220703125 0.009314903846153855 0.8331298828125 0.24969951923076927 0.8331298828125 0.23106971153846156 0.3360595703125 0.07662259615384615 0.3397216796875 0.06760817307692313 0.3360595703125 0.06760817307692313 0.3399658203125 0.06760817307692313 0.3399658203125 0.07662259615384615 0.3436279296875 0.06760817307692313 0.5899658203125 0.07722355769230771 0.5936279296875 0.07722355769230771 0.5899658203125 0.09585336538461542 0.5975341796875 0.13491586538461542 0.5938720703125 0.13491586538461542 0.5938720703125 0.15354567307692313 0.3341064453125 0.06760817307692313 0.3341064453125 0.07662259615384615 0.3358154296875 0.06760817307692313 0.3126220703125 0.057992788461538436 0.3162841796875 0.057992788461538436 0.3126220703125 0.06700721153846156 0.0469970703125 0.06760817307692313 0.0506591796875 0.06760817307692313 0.0469970703125 0.07662259615384615 0.3201904296875 0.057992788461538436 0.3165283203125 0.06700721153846156 0.3165283203125 0.057992788461538436 0.5655517578125 0.07722355769230771 0.5655517578125 0.09585336538461542 0.5662841796875 0.07722355769230771 0.5977783203125 0.13491586538461542 0.5985107421875 0.13491586538461542 0.5977783203125 0.15354567307692313 0.1248779296875 0.2887620192307693 0.1173095703125 0.2887620192307693 0.4510498046875 0.06760817307692313 0.4493408203125 0.06760817307692313 0.4493408203125 0.07181490384615385 0.4044189453125 0.009314903846153855 0.4061279296875 0.005108173076923128 0.4044189453125 0.005108173076923128 0.4512939453125 0.06760817307692313 0.4530029296875 0.06760817307692313 0.4512939453125 0.07181490384615385 0.5987548828125 0.13491586538461542 0.5994873046875 0.13491586538461542 0.5987548828125 0.15354567307692313 0.4532470703125 0.07181490384615385 0.4532470703125 0.06760817307692313 0.4549560546875 0.06760817307692313 0.3240966796875 0.057992788461538436 0.3204345703125 0.06700721153846156 0.3204345703125 0.057992788461538436 0.4552001953125 0.06760817307692313 0.4552001953125 0.07181490384615385 0.4559326171875 0.06760817307692313 0.4569091796875 0.06760817307692313 0.4561767578125 0.06760817307692313 0.4561767578125 0.07181490384615385 0.4571533203125 0.06760817307692313 0.4571533203125 0.07181490384615385 0.4578857421875 0.06760817307692313 0.4591064453125 0.26893028846153844 0.4591064453125 0.2503004807692307 0.3907470703125 0.2881610576923077 0.3914794921875 0.26953125 0.4581298828125 0.07181490384615385 0.4581298828125 0.06760817307692313 0.4588623046875 0.06760817307692313 0.4598388671875 0.06760817307692313 0.4591064453125 0.07181490384615385 0.4591064453125 0.06760817307692313 0.6004638671875 0.13491586538461542 0.5997314453125 0.15354567307692313 0.5997314453125 0.13491586538461542 0.3243408203125 0.06700721153846156 0.3280029296875 0.057992788461538436 0.3243408203125 0.057992788461538436 0.3319091796875 0.057992788461538436 0.3282470703125 0.06700721153846156 0.3282470703125 0.057992788461538436 0.3358154296875 0.057992788461538436 0.3321533203125 0.06700721153846156 0.3321533203125 0.057992788461538436 0.3360595703125 0.06700721153846156 0.3360595703125 0.057992788461538436 0.3397216796875 0.057992788461538436 0.8009033203125 0.08683894230769229 0.8009033203125 0.09585336538461542 0.3399658203125 0.057992788461538436 0.3436279296875 0.057992788461538436 0.3399658203125 0.06700721153846156 0.3126220703125 0.048377403846153855 0.3126220703125 0.05739182692307687 0.3162841796875 0.048377403846153855 0.3182373046875 0.048377403846153855 0.3165283203125 0.048377403846153855 0.3165283203125 0.05739182692307687 0.4608154296875 0.06760817307692313 0.4600830078125 0.06760817307692313 0.4600830078125 0.07181490384615385 0.3184814453125 0.05739182692307687 0.3201904296875 0.048377403846153855 0.3184814453125 0.048377403846153855 0.6016845703125 0.13491586538461542 0.6016845703125 0.15354567307692313 0.6092529296875 0.13491586538461542 0.4454345703125 0.34645432692307687 0.4530029296875 0.34645432692307687 0.4454345703125 0.38431490384615385 0.6094970703125 0.15354567307692313 0.6131591796875 0.13491586538461542 0.6094970703125 0.13491586538461542 0.9141845703125 0.8073918269230769 0.9217529296875 0.76953125 0.3240966796875 0.048377403846153855 0.3204345703125 0.05739182692307687 0.3204345703125 0.048377403846153855 0.3243408203125 0.048377403846153855 0.3243408203125 0.05739182692307687 0.3280029296875 0.048377403846153855 0.3282470703125 0.05739182692307687 0.3319091796875 0.048377403846153855 0.3282470703125 0.048377403846153855 0.3321533203125 0.048377403846153855 0.3358154296875 0.048377403846153855 0.3321533203125 0.05739182692307687 0.3360595703125 0.048377403846153855 0.3397216796875 0.048377403846153855 0.3360595703125 0.05739182692307687 0.6014404296875 0.13491586538461542 0.6007080078125 0.13491586538461542 0.6007080078125 0.15354567307692313 0.4610595703125 0.07181490384615385 0.4627685546875 0.06760817307692313 0.4610595703125 0.06760817307692313 0.4647216796875 0.06760817307692313 0.4630126953125 0.07181490384615385 0.4630126953125 0.06760817307692313 0.6141357421875 0.13491586538461542 0.6134033203125 0.13491586538461542 0.6134033203125 0.15354567307692313 0.6173095703125 0.15354567307692313 0.6248779296875 0.13491586538461542 0.6173095703125 0.13491586538461542 0.5975341796875 0.11568509615384615 0.5938720703125 0.13431490384615385 0.5938720703125 0.11568509615384615 0.9493408203125 0.08623798076923073 0.9493408203125 0.07722355769230771 0.9510498046875 0.07722355769230771 0.6151123046875 0.13491586538461542 0.6143798828125 0.13491586538461542 0.6143798828125 0.15354567307692313 0.4649658203125 0.07181490384615385 0.4656982421875 0.06760817307692313 0.4649658203125 0.06760817307692313 0.3399658203125 0.05739182692307687 0.4666748046875 0.06760817307692313 0.4659423828125 0.06760817307692313 0.4659423828125 0.07181490384615385 0.3829345703125 0.5766225961538461 0.3905029296875 0.5387620192307692 0.6014404296875 0.11568509615384615 0.5977783203125 0.13431490384615385 0.5977783203125 0.11568509615384615 0.1915283203125 0.26893028846153844 0.1951904296875 0.2503004807692307 0.3419189453125 0.048377403846153855 0.3436279296875 0.048377403846153855 0.3419189453125 0.05739182692307687 0.6016845703125 0.13431490384615385 0.6016845703125 0.11568509615384615 0.6053466796875 0.11568509615384615 0.6055908203125 0.11568509615384615 0.6092529296875 0.11568509615384615 0.6055908203125 0.13431490384615385 0.4688720703125 0.38431490384615385 0.4688720703125 0.34645432692307687 0.4842529296875 0.34645432692307687 0.6094970703125 0.13431490384615385 0.6094970703125 0.11568509615384615 0.6170654296875 0.11568509615384615 0.6248779296875 0.11568509615384615 0.6173095703125 0.11568509615384615 0.6173095703125 0.13431490384615385 0.3594970703125 0.17337740384615385 0.5975341796875 0.09645432692307687 0.5938720703125 0.09645432692307687 0.5938720703125 0.11508413461538458 0.3126220703125 0.04777644230769229 0.3126220703125 0.038762019230769273 0.3162841796875 0.038762019230769273 0.3165283203125 0.038762019230769273 0.3182373046875 0.038762019230769273 0.3165283203125 0.04777644230769229 0.3184814453125 0.038762019230769273 0.3184814453125 0.04777644230769229 0.3201904296875 0.038762019230769273 0.4844970703125 0.38431490384615385 0.4998779296875 0.34645432692307687 0.4844970703125 0.34645432692307687 0.4764404296875 0.30799278846153844 0.4688720703125 0.30799278846153844 0.4688720703125 0.3458533653846154 0.4686279296875 0.06760817307692313 0.4669189453125 0.07181490384615385 0.4669189453125 0.06760817307692313 0.4376220703125 0.06280048076923073 0.4393310546875 0.06280048076923073 0.4376220703125 0.06700721153846156 0.3204345703125 0.038762019230769273 0.3221435546875 0.038762019230769273 0.3204345703125 0.04777644230769229 0.4395751953125 0.06280048076923073 0.4412841796875 0.06280048076923073 0.4395751953125 0.06700721153846156 0.6153564453125 0.13491586538461542 0.6160888671875 0.13491586538461542 0.6153564453125 0.15354567307692313 0.6170654296875 0.13491586538461542 0.6163330078125 0.15354567307692313 0.6163330078125 0.13491586538461542 0.4415283203125 0.06280048076923073 0.4422607421875 0.06280048076923073 0.4415283203125 0.06700721153846156 0.3280029296875 0.038762019230769273 0.3243408203125 0.04777644230769229 0.3243408203125 0.038762019230769273 0.3282470703125 0.038762019230769273 0.3282470703125 0.04777644230769229 0.3319091796875 0.038762019230769273 0.3223876953125 0.04777644230769229 0.3240966796875 0.038762019230769273 0.3223876953125 0.038762019230769273 0.5977783203125 0.09645432692307687 0.5977783203125 0.11508413461538458 0.5985107421875 0.09645432692307687 0.4425048828125 0.06280048076923073 0.4432373046875 0.06280048076923073 0.4425048828125 0.06700721153846156 0.4434814453125 0.06700721153846156 0.4434814453125 0.06280048076923073 0.4451904296875 0.06280048076923073 0.4454345703125 0.06280048076923073 0.4471435546875 0.06280048076923073 0.4454345703125 0.06700721153846156 0.6016845703125 0.11508413461538458 0.6092529296875 0.09645432692307687 0.6016845703125 0.09645432692307687 0.6131591796875 0.09645432692307687 0.6094970703125 0.11508413461538458 0.6094970703125 0.09645432692307687 0.3321533203125 0.04777644230769229 0.3321533203125 0.038762019230769273 0.3358154296875 0.038762019230769273 0.6134033203125 0.09645432692307687 0.6170654296875 0.09645432692307687 0.6134033203125 0.11508413461538458 0.3360595703125 0.04777644230769229 0.3360595703125 0.038762019230769273 0.3397216796875 0.038762019230769273 0.4844970703125 0.3458533653846154 0.4844970703125 0.30799278846153844 0.4998779296875 0.30799278846153844 0.5155029296875 0.34645432692307687 0.5001220703125 0.38431490384615385 0.5001220703125 0.34645432692307687 0.6173095703125 0.11508413461538458 0.6173095703125 0.09645432692307687 0.6248779296875 0.09645432692307687 0.3826904296875 0.00030048076923072653 0.3809814453125 0.00030048076923072653 0.3809814453125 0.004507211538461564 0.0469970703125 0.07722355769230771 0.0506591796875 0.07722355769230771 0.0469970703125 0.09585336538461542 0.4766845703125 0.3458533653846154 0.4842529296875 0.30799278846153844 0.4766845703125 0.30799278846153844 0.3399658203125 0.04777644230769229 0.3436279296875 0.038762019230769273 0.3399658203125 0.038762019230769273 0.4473876953125 0.06700721153846156 0.4473876953125 0.06280048076923073 0.4481201171875 0.06280048076923073 0.4493408203125 0.06280048076923073 0.4493408203125 0.06700721153846156 0.4510498046875 0.06280048076923073 0.4483642578125 0.06700721153846156 0.4490966796875 0.06280048076923073 0.4483642578125 0.06280048076923073 0.5938720703125 0.07722355769230771 0.5938720703125 0.09585336538461542 0.5975341796875 0.07722355769230771 0.6016845703125 0.07722355769230771 0.6016845703125 0.09585336538461542 0.6092529296875 0.07722355769230771 0.7911376953125 0.11568509615384615 0.7928466796875 0.11568509615384615 0.7911376953125 0.12469951923076927 0.1717529296875 0.5387620192307692 0.1563720703125 0.5387620192307692 0.4512939453125 0.06280048076923073 0.4512939453125 0.06700721153846156 0.4520263671875 0.06280048076923073 0.4522705078125 0.06700721153846156 0.4530029296875 0.06280048076923073 0.4522705078125 0.06280048076923073 0.4532470703125 0.06280048076923073 0.4532470703125 0.06700721153846156 0.4539794921875 0.06280048076923073 0.5987548828125 0.11508413461538458 0.5994873046875 0.09645432692307687 0.5987548828125 0.09645432692307687 0.3126220703125 0.03816105769230771 0.3126220703125 0.02914663461538458 0.3143310546875 0.02914663461538458 0.6004638671875 0.09645432692307687 0.5997314453125 0.11508413461538458 0.5997314453125 0.09645432692307687 0.4552001953125 0.06700721153846156 0.4552001953125 0.06280048076923073 0.4569091796875 0.06280048076923073 0.3145751953125 0.02914663461538458 0.3145751953125 0.03816105769230771 0.3162841796875 0.02914663461538458 0.3182373046875 0.02914663461538458 0.3165283203125 0.03816105769230771 0.3165283203125 0.02914663461538458 0.6007080078125 0.09645432692307687 0.6007080078125 0.11508413461538458 0.6014404296875 0.09645432692307687 0.3184814453125 0.03816105769230771 0.3201904296875 0.02914663461538458 0.3184814453125 0.02914663461538458 0.6094970703125 0.09585336538461542 0.6170654296875 0.07722355769230771 0.6094970703125 0.07722355769230771 0.6014404296875 0.07722355769230771 0.5977783203125 0.09585336538461542 0.5977783203125 0.07722355769230771 0.4588623046875 0.06280048076923073 0.4571533203125 0.06280048076923073 0.4571533203125 0.06700721153846156 0.6173095703125 0.07722355769230771 0.6173095703125 0.09585336538461542 0.6180419921875 0.07722355769230771 0.4591064453125 0.06700721153846156 0.4608154296875 0.06280048076923073 0.4591064453125 0.06280048076923073 0.4610595703125 0.06280048076923073 0.4610595703125 0.06700721153846156 0.4627685546875 0.06280048076923073 0.4630126953125 0.06700721153846156 0.4647216796875 0.06280048076923073 0.4630126953125 0.06280048076923073 0.4666748046875 0.06280048076923073 0.4649658203125 0.06280048076923073 0.4649658203125 0.06700721153846156 0.4669189453125 0.06700721153846156 0.4686279296875 0.06280048076923073 0.4669189453125 0.06280048076923073 0.4376220703125 0.062199519230769273 0.4393310546875 0.057992788461538436 0.4376220703125 0.057992788461538436 0.4395751953125 0.057992788461538436 0.4395751953125 0.062199519230769273 0.4412841796875 0.057992788461538436 0.3204345703125 0.03816105769230771 0.3240966796875 0.02914663461538458 0.3204345703125 0.02914663461538458 0.6212158203125 0.07722355769230771 0.6248779296875 0.07722355769230771 0.6212158203125 0.09585336538461542 0.3260498046875 0.02914663461538458 0.3243408203125 0.03816105769230771 0.3243408203125 0.02914663461538458 0.3262939453125 0.03816105769230771 0.3280029296875 0.02914663461538458 0.3262939453125 0.02914663461538458 0.6251220703125 0.13491586538461542 0.6287841796875 0.13491586538461542 0.6251220703125 0.15354567307692313 0.4432373046875 0.057992788461538436 0.4415283203125 0.062199519230769273 0.4415283203125 0.057992788461538436 0.4434814453125 0.057992788461538436 0.4434814453125 0.062199519230769273 0.4451904296875 0.057992788461538436 0.3907470703125 0.009915865384615419 0.3924560546875 0.009915865384615419 0.3907470703125 0.014122596153846145 0.8165283203125 0.15414663461538458 0.8201904296875 0.15414663461538458 0.8204345703125 0.11568509615384615 0.8240966796875 0.11568509615384615 0.0958251953125 0.2887620192307693 0.0965576171875 0.2887620192307693 0.6190185546875 0.07722355769230771 0.6182861328125 0.07722355769230771 0.6182861328125 0.09585336538461542 0.4542236328125 0.06280048076923073 0.4549560546875 0.06280048076923073 0.4542236328125 0.06700721153846156 0.4471435546875 0.057992788461538436 0.4454345703125 0.057992788461538436 0.4454345703125 0.062199519230769273 0.6329345703125 0.15354567307692313 0.6405029296875 0.13491586538461542 0.6329345703125 0.13491586538461542 0.4473876953125 0.062199519230769273 0.4490966796875 0.057992788461538436 0.4473876953125 0.057992788461538436 0.4493408203125 0.057992788461538436 0.4493408203125 0.062199519230769273 0.4510498046875 0.057992788461538436 0.4512939453125 0.057992788461538436 0.4512939453125 0.062199519230769273 0.4530029296875 0.057992788461538436 0.3787841796875 0.00030048076923072653 0.3770751953125 0.00030048076923072653 0.3770751953125 0.004507211538461564 0.6407470703125 0.15354567307692313 0.6483154296875 0.13491586538461542 0.6407470703125 0.13491586538461542 0.3282470703125 0.03816105769230771 0.3319091796875 0.02914663461538458 0.3282470703125 0.02914663461538458 0.6290283203125 0.13491586538461542 0.6290283203125 0.15354567307692313 0.6326904296875 0.13491586538461542 0.4532470703125 0.062199519230769273 0.4549560546875 0.057992788461538436 0.4532470703125 0.057992788461538436 0.4569091796875 0.057992788461538436 0.4552001953125 0.062199519230769273 0.4552001953125 0.057992788461538436 0.3321533203125 0.02914663461538458 0.3321533203125 0.03816105769230771 0.3338623046875 0.02914663461538458 0.8985595703125 0.15354567307692313 0.4571533203125 0.057992788461538436 0.4571533203125 0.062199519230769273 0.4588623046875 0.057992788461538436 0.3360595703125 0.03816105769230771 0.3397216796875 0.02914663461538458 0.3360595703125 0.02914663461538458 0.3358154296875 0.02914663461538458 0.3341064453125 0.02914663461538458 0.3341064453125 0.03816105769230771 0.6522216796875 0.13491586538461542 0.6485595703125 0.15354567307692313 0.6485595703125 0.13491586538461542 0.6524658203125 0.15354567307692313 0.6524658203125 0.13491586538461542 0.6561279296875 0.13491586538461542 0.2266845703125 0.30739182692307687 0.2342529296875 0.2887620192307693 0.6326904296875 0.11568509615384615 0.6251220703125 0.13431490384615385 0.6251220703125 0.11568509615384615 0.3800048828125 0.028545673076923128 0.3800048828125 0.02433894230769229 0.3807373046875 0.02433894230769229 0.3787841796875 0.005108173076923128 0.3770751953125 0.005108173076923128 0.3770751953125 0.009314903846153855 0.3399658203125 0.03816105769230771 0.3399658203125 0.02914663461538458 0.3416748046875 0.02914663461538458 0.3162841796875 0.01953125 0.3126220703125 0.01953125 0.3126220703125 0.028545673076923128 0.1134033203125 0.24969951923076927 0.1141357421875 0.23106971153846156 0.1134033203125 0.23106971153846156 0.6329345703125 0.13431490384615385 0.6405029296875 0.11568509615384615 0.6329345703125 0.11568509615384615 0.6483154296875 0.11568509615384615 0.6407470703125 0.13431490384615385 0.6407470703125 0.11568509615384615 0.6485595703125 0.13431490384615385 0.6485595703125 0.11568509615384615 0.6561279296875 0.11568509615384615 0.6199951171875 0.07722355769230771 0.6192626953125 0.07722355769230771 0.6192626953125 0.09585336538461542 0.3419189453125 0.03816105769230771 0.3436279296875 0.02914663461538458 0.3419189453125 0.02914663461538458 0.3165283203125 0.01953125 0.3165283203125 0.028545673076923128 0.3201904296875 0.01953125 0.3829345703125 0.8079927884615384 0.4061279296875 0.8079927884615384 0.5157470703125 0.38431490384615385 0.5311279296875 0.34645432692307687 0.5157470703125 0.34645432692307687 0.3204345703125 0.028545673076923128 0.3204345703125 0.01953125 0.3221435546875 0.01953125 0.4591064453125 0.062199519230769273 0.4608154296875 0.057992788461538436 0.4591064453125 0.057992788461538436 0.1368408203125 0.028545673076923128 0.1405029296875 0.01953125 0.1368408203125 0.01953125 0.3243408203125 0.01953125 0.3280029296875 0.01953125 0.3243408203125 0.028545673076923128 0.5155029296875 0.30799278846153844 0.5001220703125 0.3458533653846154 0.5001220703125 0.30799278846153844 0.5157470703125 0.30799278846153844 0.5311279296875 0.30799278846153844 0.5157470703125 0.3458533653846154 0.5389404296875 0.34645432692307687 0.5313720703125 0.38431490384615385 0.5313720703125 0.34645432692307687 0.4610595703125 0.057992788461538436 0.4610595703125 0.062199519230769273 0.4627685546875 0.057992788461538436 0.4647216796875 0.057992788461538436 0.4630126953125 0.057992788461538436 0.4630126953125 0.062199519230769273 0.3223876953125 0.01953125 0.3223876953125 0.028545673076923128 0.3240966796875 0.01953125 0.6251220703125 0.09645432692307687 0.6251220703125 0.11508413461538458 0.6287841796875 0.09645432692307687 0.6326904296875 0.09645432692307687 0.6290283203125 0.09645432692307687 0.6290283203125 0.11508413461538458 0.6329345703125 0.09645432692307687 0.6365966796875 0.09645432692307687 0.6329345703125 0.11508413461538458 0.4656982421875 0.057992788461538436 0.4649658203125 0.057992788461538436 0.4649658203125 0.062199519230769273 0.4659423828125 0.057992788461538436 0.4659423828125 0.062199519230769273 0.4666748046875 0.057992788461538436 0.3282470703125 0.028545673076923128 0.3282470703125 0.01953125 0.3319091796875 0.01953125 0.3321533203125 0.01953125 0.3321533203125 0.028545673076923128 0.3358154296875 0.01953125 0.3360595703125 0.028545673076923128 0.3377685546875 0.01953125 0.3360595703125 0.01953125 0.8123779296875 0.23106971153846156 0.8048095703125 0.23106971153846156 0.8048095703125 0.24969951923076927 0.5469970703125 0.38431490384615385 0.5623779296875 0.34645432692307687 0.5469970703125 0.34645432692307687 0.5313720703125 0.30799278846153844 0.5313720703125 0.3458533653846154 0.5467529296875 0.30799278846153844 0.6202392578125 0.07722355769230771 0.6202392578125 0.09585336538461542 0.6209716796875 0.07722355769230771 0.3663330078125 0.009915865384615419 0.3663330078125 0.014122596153846145 0.3670654296875 0.009915865384615419 0.6368408203125 0.11508413461538458 0.6368408203125 0.09645432692307687 0.6375732421875 0.09645432692307687 0.4669189453125 0.062199519230769273 0.4669189453125 0.057992788461538436 0.4686279296875 0.057992788461538436 0.3380126953125 0.01953125 0.3380126953125 0.028545673076923128 0.3397216796875 0.01953125 0.6407470703125 0.11508413461538458 0.6407470703125 0.09645432692307687 0.6444091796875 0.09645432692307687 0.3399658203125 0.028545673076923128 0.3399658203125 0.01953125 0.3416748046875 0.01953125 0.3126220703125 0.018930288461538436 0.3162841796875 0.009915865384615419 0.3126220703125 0.009915865384615419 0.4376220703125 0.05739182692307687 0.4376220703125 0.053185096153846145 0.4393310546875 0.053185096153846145 0.4031982421875 0.06280048076923073 0.4024658203125 0.06700721153846156 0.4024658203125 0.06280048076923073 0.6446533203125 0.11508413461538458 0.6483154296875 0.09645432692307687 0.6446533203125 0.09645432692307687 0.0819091796875 0.01953125 0.0782470703125 0.028545673076923128 0.0782470703125 0.01953125 0.0821533203125 0.028545673076923128 0.0821533203125 0.01953125 0.0838623046875 0.01953125 0.4412841796875 0.053185096153846145 0.4395751953125 0.053185096153846145 0.4395751953125 0.05739182692307687 0.4415283203125 0.05739182692307687 0.4422607421875 0.053185096153846145 0.4415283203125 0.053185096153846145 0.4432373046875 0.053185096153846145 0.4425048828125 0.05739182692307687 0.4425048828125 0.053185096153846145 0.3436279296875 0.01953125 0.3419189453125 0.028545673076923128 0.3419189453125 0.01953125 0.6385498046875 0.09645432692307687 0.6378173828125 0.09645432692307687 0.6378173828125 0.11508413461538458 0.1346435546875 0.06760817307692313 0.1329345703125 0.07662259615384615 0.1329345703125 0.06760817307692313 0.4434814453125 0.053185096153846145 0.4434814453125 0.05739182692307687 0.4451904296875 0.053185096153846145 0.3201904296875 0.009915865384615419 0.3165283203125 0.018930288461538436 0.3165283203125 0.009915865384615419 0.3204345703125 0.009915865384615419 0.3240966796875 0.009915865384615419 0.3204345703125 0.018930288461538436 0.4471435546875 0.053185096153846145 0.4454345703125 0.053185096153846145 0.4454345703125 0.05739182692307687 0.4473876953125 0.05739182692307687 0.4481201171875 0.053185096153846145 0.4473876953125 0.053185096153846145 0.4493408203125 0.053185096153846145 0.4493408203125 0.05739182692307687 0.4510498046875 0.053185096153846145 0.4490966796875 0.053185096153846145 0.4483642578125 0.05739182692307687 0.4483642578125 0.053185096153846145 0.6387939453125 0.09645432692307687 0.6395263671875 0.09645432692307687 0.6387939453125 0.11508413461538458 0.4530029296875 0.053185096153846145 0.4512939453125 0.05739182692307687 0.4512939453125 0.053185096153846145 0.4532470703125 0.053185096153846145 0.4532470703125 0.05739182692307687 0.4549560546875 0.053185096153846145 0.6397705078125 0.11508413461538458 0.6405029296875 0.09645432692307687 0.6397705078125 0.09645432692307687 0.4569091796875 0.053185096153846145 0.4552001953125 0.053185096153846145 0.4552001953125 0.05739182692307687 0.3243408203125 0.018930288461538436 0.3280029296875 0.009915865384615419 0.3243408203125 0.009915865384615419 0.3282470703125 0.009915865384615419 0.3282470703125 0.018930288461538436 0.3319091796875 0.009915865384615419 0.3321533203125 0.009915865384615419 0.3358154296875 0.009915865384615419 0.3321533203125 0.018930288461538436 0.3360595703125 0.009915865384615419 0.3360595703125 0.018930288461538436 0.3397216796875 0.009915865384615419 0.3436279296875 0.009915865384615419 0.3399658203125 0.018930288461538436 0.3399658203125 0.009915865384615419 0.4571533203125 0.053185096153846145 0.4578857421875 0.053185096153846145 0.4571533203125 0.05739182692307687 0.3126220703125 0.009314903846153855 0.3126220703125 0.00030048076923072653 0.3162841796875 0.00030048076923072653 0.8673095703125 0.09585336538461542 0.8690185546875 0.08683894230769229 0.8673095703125 0.08683894230769229 0.3165283203125 0.00030048076923072653 0.3165283203125 0.009314903846153855 0.3182373046875 0.00030048076923072653 0.6492919921875 0.09645432692307687 0.4581298828125 0.05739182692307687 0.4581298828125 0.053185096153846145 0.4588623046875 0.053185096153846145 0.6561279296875 0.09645432692307687 0.6524658203125 0.09645432692307687 0.6524658203125 0.11508413461538458 0.3184814453125 0.009314903846153855 0.3201904296875 0.00030048076923072653 0.3184814453125 0.00030048076923072653 0.7930908203125 0.11568509615384615 0.7930908203125 0.12469951923076927 0.7947998046875 0.11568509615384615 0.4591064453125 0.053185096153846145 0.4591064453125 0.05739182692307687 0.4608154296875 0.053185096153846145 0.4617919921875 0.053185096153846145 0.4610595703125 0.053185096153846145 0.4610595703125 0.05739182692307687 0.6251220703125 0.09585336538461542 0.6287841796875 0.07722355769230771 0.6251220703125 0.07722355769230771 0.6290283203125 0.07722355769230771 0.6290283203125 0.09585336538461542 0.6326904296875 0.07722355769230771 0.3204345703125 0.009314903846153855 0.3204345703125 0.00030048076923072653 0.3240966796875 0.00030048076923072653 0.6329345703125 0.07722355769230771 0.6329345703125 0.09585336538461542 0.6365966796875 0.07722355769230771 0.6502685546875 0.09645432692307687 0.6495361328125 0.11508413461538458 0.6495361328125 0.09645432692307687 0.6512451171875 0.09645432692307687 0.6505126953125 0.09645432692307687 0.6505126953125 0.11508413461538458 0.6407470703125 0.09585336538461542 0.6407470703125 0.07722355769230771 0.6483154296875 0.07722355769230771 0.6561279296875 0.07722355769230771 0.6485595703125 0.09585336538461542 0.6485595703125 0.07722355769230771 0.3280029296875 0.00030048076923072653 0.3243408203125 0.009314903846153855 0.3243408203125 0.00030048076923072653 0.3299560546875 0.00030048076923072653 0.3282470703125 0.009314903846153855 0.3282470703125 0.00030048076923072653 0.4627685546875 0.053185096153846145 0.4620361328125 0.053185096153846145 0.4620361328125 0.05739182692307687 0.4647216796875 0.053185096153846145 0.4630126953125 0.053185096153846145 0.4630126953125 0.05739182692307687 0.4649658203125 0.05739182692307687 0.4666748046875 0.053185096153846145 0.4649658203125 0.053185096153846145 0.6368408203125 0.09585336538461542 0.6405029296875 0.07722355769230771 0.6368408203125 0.07722355769230771 0.6563720703125 0.15354567307692313 0.6563720703125 0.13491586538461542 0.6639404296875 0.13491586538461542 0.3321533203125 0.00030048076923072653 0.3321533203125 0.009314903846153855 0.3358154296875 0.00030048076923072653 0.1385498046875 0.038762019230769273 0.1368408203125 0.038762019230769273 0.1368408203125 0.04777644230769229 0.6522216796875 0.09645432692307687 0.6514892578125 0.11508413461538458 0.6514892578125 0.09645432692307687 0.4669189453125 0.05739182692307687 0.4686279296875 0.053185096153846145 0.4669189453125 0.053185096153846145 0.3319091796875 0.00030048076923072653 0.3302001953125 0.00030048076923072653 0.3302001953125 0.009314903846153855 0.3360595703125 0.00030048076923072653 0.3397216796875 0.00030048076923072653 0.3360595703125 0.009314903846153855 0.6641845703125 0.15354567307692313 0.6641845703125 0.13491586538461542 0.6717529296875 0.13491586538461542 0.6719970703125 0.13491586538461542 0.6795654296875 0.13491586538461542 0.6719970703125 0.15354567307692313 0.3399658203125 0.009314903846153855 0.3399658203125 0.00030048076923072653 0.3416748046875 0.00030048076923072653 0.0137939453125 0.057992788461538436 0.0155029296875 0.057992788461538436 0.0137939453125 0.06700721153846156 0.3419189453125 0.00030048076923072653 0.3419189453125 0.009314903846153855 0.3436279296875 0.00030048076923072653 0.3438720703125 0.06760817307692313 0.3438720703125 0.07662259615384615 0.3455810546875 0.06760817307692313 0.6798095703125 0.13491586538461542 0.6798095703125 0.15354567307692313 0.6834716796875 0.13491586538461542 0.6837158203125 0.15354567307692313 0.4376220703125 0.05258413461538458 0.4376220703125 0.048377403846153855 0.4393310546875 0.048377403846153855 0.4403076171875 0.048377403846153855 0.4395751953125 0.048377403846153855 0.4395751953125 0.05258413461538458 0.4415283203125 0.05258413461538458 0.4432373046875 0.048377403846153855 0.4415283203125 0.048377403846153855 0.3458251953125 0.06760817307692313 0.3458251953125 0.07662259615384615 0.3475341796875 0.06760817307692313 0.6563720703125 0.11568509615384615 0.6639404296875 0.11568509615384615 0.6563720703125 0.13431490384615385 0.3477783203125 0.07662259615384615 0.3477783203125 0.06760817307692313 0.3494873046875 0.06760817307692313 0.6641845703125 0.13431490384615385 0.6717529296875 0.11568509615384615 0.6641845703125 0.11568509615384615 0.6719970703125 0.11568509615384615 0.6719970703125 0.13431490384615385 0.6795654296875 0.11568509615384615 0.6798095703125 0.13431490384615385 0.6798095703125 0.11568509615384615 0.6873779296875 0.11568509615384615 0.5391845703125 0.34645432692307687 0.5391845703125 0.38431490384615385 0.5467529296875 0.34645432692307687 0.4412841796875 0.048377403846153855 0.4405517578125 0.05258413461538458 0.4405517578125 0.048377403846153855 0.5469970703125 0.3458533653846154 0.5545654296875 0.30799278846153844 0.5469970703125 0.30799278846153844 0.6639404296875 0.09645432692307687 0.6563720703125 0.11508413461538458 0.6563720703125 0.09645432692307687 0.3497314453125 0.07662259615384615 0.3514404296875 0.06760817307692313 0.3497314453125 0.06760817307692313 0.3516845703125 0.06760817307692313 0.3516845703125 0.07662259615384615 0.3533935546875 0.06760817307692313 0.3553466796875 0.06760817307692313 0.3536376953125 0.07662259615384615 0.3536376953125 0.06760817307692313 0.6641845703125 0.09645432692307687 0.6641845703125 0.11508413461538458 0.6678466796875 0.09645432692307687 0.6795654296875 0.09645432692307687 0.6719970703125 0.11508413461538458 0.6719970703125 0.09645432692307687 0.5548095703125 0.3458533653846154 0.5623779296875 0.30799278846153844 0.5548095703125 0.30799278846153844 0.5626220703125 0.34645432692307687 0.5626220703125 0.38431490384615385 0.5701904296875 0.34645432692307687 0.3555908203125 0.07662259615384615 0.3572998046875 0.06760817307692313 0.3555908203125 0.06760817307692313 0.7615966796875 0.08683894230769229 0.7598876953125 0.08683894230769229 0.3594970703125 0.07662259615384615 0.3631591796875 0.06760817307692313 0.3594970703125 0.06760817307692313 0.3670654296875 0.06760817307692313 0.3634033203125 0.06760817307692313 0.3634033203125 0.07662259615384615 0.0155029296875 0.4618389423076923 0.0001220703125 0.4618389423076923 0.4434814453125 0.048377403846153855 0.4442138671875 0.048377403846153855 0.4434814453125 0.05258413461538458 0.3575439453125 0.07662259615384615 0.3575439453125 0.06760817307692313 0.3592529296875 0.06760817307692313 0.3690185546875 0.06760817307692313 0.3673095703125 0.07662259615384615 0.3673095703125 0.06760817307692313 0.6680908203125 0.09645432692307687 0.6680908203125 0.11508413461538458 0.6688232421875 0.09645432692307687 0.4444580078125 0.048377403846153855 0.4444580078125 0.05258413461538458 0.4451904296875 0.048377403846153855 0.4454345703125 0.048377403846153855 0.4471435546875 0.048377403846153855 0.4454345703125 0.05258413461538458 0.6690673828125 0.11508413461538458 0.6690673828125 0.09645432692307687 0.6697998046875 0.09645432692307687 0.6873779296875 0.09645432692307687 0.6798095703125 0.09645432692307687 0.6798095703125 0.11508413461538458 0.6639404296875 0.07722355769230771 0.6563720703125 0.07722355769230771 0.6563720703125 0.09585336538461542 0.4473876953125 0.048377403846153855 0.4473876953125 0.05258413461538458 0.4481201171875 0.048377403846153855 0.4490966796875 0.048377403846153855 0.4483642578125 0.048377403846153855 0.4483642578125 0.05258413461538458 0.3692626953125 0.07662259615384615 0.3709716796875 0.06760817307692313 0.3692626953125 0.06760817307692313 0.3712158203125 0.06760817307692313 0.3729248046875 0.06760817307692313 0.3712158203125 0.07662259615384615 0.7811279296875 0.07722355769230771 0.7794189453125 0.08623798076923073 0.4510498046875 0.048377403846153855 0.4493408203125 0.05258413461538458 0.4493408203125 0.048377403846153855 0.4512939453125 0.05258413461538458 0.4530029296875 0.048377403846153855 0.4512939453125 0.048377403846153855 0.4539794921875 0.048377403846153855 0.4532470703125 0.05258413461538458 0.4532470703125 0.048377403846153855 0.3731689453125 0.07662259615384615 0.3748779296875 0.06760817307692313 0.3731689453125 0.06760817307692313 0.5782470703125 0.38431490384615385 0.5936279296875 0.34645432692307687 0.5782470703125 0.34645432692307687 0.5626220703125 0.30799278846153844 0.5626220703125 0.3458533653846154 0.5780029296875 0.30799278846153844 0.6092529296875 0.76953125 0.5938720703125 0.76953125 0.3438720703125 0.057992788461538436 0.3438720703125 0.06700721153846156 0.3455810546875 0.057992788461538436 0.3475341796875 0.057992788461538436 0.3458251953125 0.057992788461538436 0.3458251953125 0.06700721153846156 0.4569091796875 0.048377403846153855 0.4552001953125 0.05258413461538458 0.4552001953125 0.048377403846153855 0.6641845703125 0.09585336538461542 0.6678466796875 0.07722355769230771 0.6641845703125 0.07722355769230771 0.6719970703125 0.07722355769230771 0.6795654296875 0.07722355769230771 0.6719970703125 0.09585336538461542 0.4542236328125 0.048377403846153855 0.4549560546875 0.048377403846153855 0.4542236328125 0.05258413461538458 0.3477783203125 0.06700721153846156 0.3477783203125 0.057992788461538436 0.3494873046875 0.057992788461538436 0.4588623046875 0.048377403846153855 0.4571533203125 0.05258413461538458 0.4571533203125 0.048377403846153855 0.4608154296875 0.048377403846153855 0.4591064453125 0.048377403846153855 0.4591064453125 0.05258413461538458 0.5704345703125 0.38431490384615385 0.5704345703125 0.34645432692307687 0.5780029296875 0.34645432692307687 0.5782470703125 0.30799278846153844 0.5782470703125 0.3458533653846154 0.5936279296875 0.30799278846153844 0.4610595703125 0.05258413461538458 0.4627685546875 0.048377403846153855 0.4610595703125 0.048377403846153855 0.6700439453125 0.09645432692307687 0.6707763671875 0.09645432692307687 0.6700439453125 0.11508413461538458 0.3516845703125 0.06700721153846156 0.3516845703125 0.057992788461538436 0.3553466796875 0.057992788461538436 0.3592529296875 0.057992788461538436 0.3555908203125 0.06700721153846156 0.3555908203125 0.057992788461538436 0.3594970703125 0.06700721153846156 0.3631591796875 0.057992788461538436 0.3594970703125 0.057992788461538436 0.3634033203125 0.057992788461538436 0.3634033203125 0.06700721153846156 0.3670654296875 0.057992788461538436 0.4647216796875 0.048377403846153855 0.4630126953125 0.048377403846153855 0.4630126953125 0.05258413461538458 0.4649658203125 0.05258413461538458 0.4666748046875 0.048377403846153855 0.4649658203125 0.048377403846153855 0.3709716796875 0.057992788461538436 0.3673095703125 0.057992788461538436 0.3673095703125 0.06700721153846156 0.4669189453125 0.05258413461538458 0.4686279296875 0.048377403846153855 0.4669189453125 0.048377403846153855 0.3514404296875 0.057992788461538436 0.3497314453125 0.06700721153846156 0.3497314453125 0.057992788461538436 0.6680908203125 0.09585336538461542 0.6717529296875 0.07722355769230771 0.6680908203125 0.07722355769230771 0.5938720703125 0.38431490384615385 0.6014404296875 0.34645432692307687 0.5938720703125 0.34645432692307687 0.3712158203125 0.06700721153846156 0.3748779296875 0.057992788461538436 0.3712158203125 0.057992788461538436 0.3475341796875 0.048377403846153855 0.3438720703125 0.05739182692307687 0.3438720703125 0.048377403846153855 0.6094970703125 0.34645432692307687 0.6094970703125 0.38431490384615385 0.6248779296875 0.34645432692307687 0.5938720703125 0.30799278846153844 0.6092529296875 0.30799278846153844 0.5938720703125 0.3458533653846154 0.4393310546875 0.043569711538461564 0.4376220703125 0.04777644230769229 0.4376220703125 0.043569711538461564 0.4403076171875 0.043569711538461564 0.4395751953125 0.043569711538461564 0.4395751953125 0.04777644230769229 0.6094970703125 0.30799278846153844 0.6094970703125 0.3458533653846154 0.6248779296875 0.30799278846153844 0.9532470703125 0.36568509615384615 0.4415283203125 0.04777644230769229 0.4432373046875 0.043569711538461564 0.4415283203125 0.043569711538461564 0.4434814453125 0.043569711538461564 0.4434814453125 0.04777644230769229 0.4451904296875 0.043569711538461564 0.4454345703125 0.043569711538461564 0.4471435546875 0.043569711538461564 0.4454345703125 0.04777644230769229 0.3477783203125 0.048377403846153855 0.3514404296875 0.048377403846153855 0.3477783203125 0.05739182692307687 0.6016845703125 0.38431490384615385 0.6016845703125 0.34645432692307687 0.6092529296875 0.34645432692307687 0.6710205078125 0.09645432692307687 0.6717529296875 0.09645432692307687 0.6710205078125 0.11508413461538458 0.6834716796875 0.07722355769230771 0.6798095703125 0.07722355769230771 0.6798095703125 0.09585336538461542 0.6837158203125 0.09585336538461542 0.6873779296875 0.07722355769230771 0.6837158203125 0.07722355769230771 0.6876220703125 0.13491586538461542 0.6912841796875 0.13491586538461542 0.6876220703125 0.15354567307692313 0.8985595703125 0.2118389423076923 0.9061279296875 0.2118389423076923 0.4405517578125 0.043569711538461564 0.4412841796875 0.043569711538461564 0.4405517578125 0.04777644230769229 0.4473876953125 0.043569711538461564 0.4473876953125 0.04777644230769229 0.4481201171875 0.043569711538461564 0.3739013671875 0.01472355769230771 0.3731689453125 0.018930288461538436 0.3731689453125 0.01472355769230771 0.6915283203125 0.13491586538461542 0.6915283203125 0.15354567307692313 0.6951904296875 0.13491586538461542 0.6954345703125 0.15354567307692313 0.6954345703125 0.13491586538461542 0.7030029296875 0.13491586538461542 0.7108154296875 0.13491586538461542 0.7032470703125 0.15354567307692313 0.7032470703125 0.13491586538461542 0.4510498046875 0.043569711538461564 0.4493408203125 0.043569711538461564 0.4493408203125 0.04777644230769229 0.4483642578125 0.04777644230769229 0.4490966796875 0.043569711538461564 0.4483642578125 0.043569711538461564 0.7110595703125 0.15354567307692313 0.6876220703125 0.11568509615384615 0.6876220703125 0.13431490384615385 0.6951904296875 0.11568509615384615 0.4512939453125 0.04777644230769229 0.4530029296875 0.043569711538461564 0.4512939453125 0.043569711538461564 0.3516845703125 0.05739182692307687 0.3516845703125 0.048377403846153855 0.3533935546875 0.048377403846153855 0.7186279296875 0.13491586538461542 0.7149658203125 0.13491586538461542 0.7149658203125 0.15354567307692313 0.6251220703125 0.38431490384615385 0.6251220703125 0.34645432692307687 0.6326904296875 0.34645432692307687 0.6405029296875 0.34645432692307687 0.6329345703125 0.38431490384615385 0.6329345703125 0.34645432692307687 0.6954345703125 0.13431490384615385 0.7030029296875 0.11568509615384615 0.6954345703125 0.11568509615384615 0.8829345703125 0.21123798076923073 0.8905029296875 0.19260817307692313 0.3555908203125 0.048377403846153855 0.3555908203125 0.05739182692307687 0.3592529296875 0.048377403846153855 0.4549560546875 0.043569711538461564 0.4532470703125 0.04777644230769229 0.4532470703125 0.043569711538461564 0.7032470703125 0.13431490384615385 0.7069091796875 0.11568509615384615 0.7032470703125 0.11568509615384615 0.3594970703125 0.048377403846153855 0.3631591796875 0.048377403846153855 0.3594970703125 0.05739182692307687 0.3670654296875 0.048377403846153855 0.3634033203125 0.048377403846153855 0.3634033203125 0.05739182692307687 0.3887939453125 0.06280048076923073 0.3895263671875 0.06280048076923073 0.3887939453125 0.06700721153846156 0.3673095703125 0.05739182692307687 0.3709716796875 0.048377403846153855 0.3673095703125 0.048377403846153855 0.3712158203125 0.048377403846153855 0.3712158203125 0.05739182692307687 0.3748779296875 0.048377403846153855 0.3475341796875 0.038762019230769273 0.3438720703125 0.038762019230769273 0.3438720703125 0.04777644230769229 0.6407470703125 0.34645432692307687 0.6561279296875 0.34645432692307687 0.6407470703125 0.38431490384615385 0.7110595703125 0.13431490384615385 0.7110595703125 0.11568509615384615 0.7186279296875 0.11568509615384615 0.3536376953125 0.05739182692307687 0.3553466796875 0.048377403846153855 0.3536376953125 0.048377403846153855 0.9454345703125 0.08683894230769229 0.9490966796875 0.08683894230769229 0.9454345703125 0.09585336538461542 0.3514404296875 0.038762019230769273 0.3477783203125 0.04777644230769229 0.3477783203125 0.038762019230769273 0.3553466796875 0.038762019230769273 0.3516845703125 0.038762019230769273 0.3516845703125 0.04777644230769229 0.1160888671875 0.26953125 0.1153564453125 0.26953125 0.1153564453125 0.2881610576923077 0.6951904296875 0.09645432692307687 0.6876220703125 0.09645432692307687 0.6876220703125 0.11508413461538458 0.0958251953125 0.06700721153846156 0.0958251953125 0.057992788461538436 0.4552001953125 0.043569711538461564 0.4559326171875 0.043569711538461564 0.4552001953125 0.04777644230769229 0.4561767578125 0.04777644230769229 0.4561767578125 0.043569711538461564 0.4569091796875 0.043569711538461564 0.7108154296875 0.11568509615384615 0.7071533203125 0.11568509615384615 0.7071533203125 0.13431490384615385 0.3555908203125 0.04777644230769229 0.3592529296875 0.038762019230769273 0.3555908203125 0.038762019230769273 0.6251220703125 0.3458533653846154 0.6954345703125 0.09645432692307687 0.6961669921875 0.09645432692307687 0.6954345703125 0.11508413461538458 0.3594970703125 0.04777644230769229 0.3612060546875 0.038762019230769273 0.3594970703125 0.038762019230769273 0.4588623046875 0.043569711538461564 0.4571533203125 0.043569711538461564 0.4571533203125 0.04777644230769229 0.6993408203125 0.11508413461538458 0.7030029296875 0.09645432692307687 0.6993408203125 0.09645432692307687 0.7032470703125 0.11508413461538458 0.7032470703125 0.09645432692307687 0.7108154296875 0.09645432692307687 0.6964111328125 0.11508413461538458 0.6971435546875 0.09645432692307687 0.6964111328125 0.09645432692307687 0.4591064453125 0.043569711538461564 0.4591064453125 0.04777644230769229 0.4598388671875 0.043569711538461564 0.3634033203125 0.038762019230769273 0.3634033203125 0.04777644230769229 0.3670654296875 0.038762019230769273 0.3614501953125 0.04777644230769229 0.3614501953125 0.038762019230769273 0.3631591796875 0.038762019230769273 0.7110595703125 0.11508413461538458 0.7110595703125 0.09645432692307687 0.7147216796875 0.09645432692307687 0.3673095703125 0.04777644230769229 0.3690185546875 0.038762019230769273 0.3673095703125 0.038762019230769273 0.6981201171875 0.09645432692307687 0.6973876953125 0.09645432692307687 0.6973876953125 0.11508413461538458 0.6876220703125 0.09585336538461542 0.6876220703125 0.07722355769230771 0.6951904296875 0.07722355769230771 0.4600830078125 0.04777644230769229 0.4608154296875 0.043569711538461564 0.4600830078125 0.043569711538461564 0.6329345703125 0.73046875 0.6329345703125 0.6926081730769231 0.6954345703125 0.07722355769230771 0.6954345703125 0.09585336538461542 0.7030029296875 0.07722355769230771 0.7149658203125 0.09645432692307687 0.7149658203125 0.11508413461538458 0.7186279296875 0.09645432692307687 0.4627685546875 0.043569711538461564 0.4610595703125 0.043569711538461564 0.4610595703125 0.04777644230769229 0.3748779296875 0.038762019230769273 0.3712158203125 0.04777644230769229 0.3712158203125 0.038762019230769273 0.4630126953125 0.043569711538461564 0.4630126953125 0.04777644230769229 0.4647216796875 0.043569711538461564 0.7108154296875 0.07722355769230771 0.7032470703125 0.09585336538461542 0.7032470703125 0.07722355769230771 0.3438720703125 0.03816105769230771 0.3438720703125 0.02914663461538458 0.3475341796875 0.02914663461538458 0.4649658203125 0.043569711538461564 0.4656982421875 0.043569711538461564 0.4649658203125 0.04777644230769229 0.6983642578125 0.09645432692307687 0.6983642578125 0.11508413461538458 0.6990966796875 0.09645432692307687 0.3477783203125 0.02914663461538458 0.3477783203125 0.03816105769230771 0.3514404296875 0.02914663461538458 0.7110595703125 0.09585336538461542 0.7110595703125 0.07722355769230771 0.7117919921875 0.07722355769230771 0.3709716796875 0.038762019230769273 0.3692626953125 0.038762019230769273 0.3692626953125 0.04777644230769229 0.3516845703125 0.03816105769230771 0.3516845703125 0.02914663461538458 0.3553466796875 0.02914663461538458 0.6483154296875 0.30799278846153844 0.6407470703125 0.3458533653846154 0.6407470703125 0.30799278846153844 0.6485595703125 0.3458533653846154 0.6561279296875 0.30799278846153844 0.6485595703125 0.30799278846153844 0.4686279296875 0.043569711538461564 0.4669189453125 0.043569711538461564 0.4669189453125 0.04777644230769229 0.3555908203125 0.03816105769230771 0.3592529296875 0.02914663461538458 0.3555908203125 0.02914663461538458 0.7188720703125 0.15354567307692313 0.7264404296875 0.13491586538461542 0.7188720703125 0.13491586538461542 0.6563720703125 0.34645432692307687 0.6563720703125 0.38431490384615385 0.6717529296875 0.34645432692307687 0.4659423828125 0.043569711538461564 0.4666748046875 0.043569711538461564 0.4659423828125 0.04777644230769229 0.7149658203125 0.07722355769230771 0.7149658203125 0.09585336538461542 0.7186279296875 0.07722355769230771 0.3594970703125 0.02914663461538458 0.3594970703125 0.03816105769230771 0.3612060546875 0.02914663461538458 0.3634033203125 0.02914663461538458 0.3634033203125 0.03816105769230771 0.3670654296875 0.02914663461538458 0.4393310546875 0.038762019230769273 0.4376220703125 0.04296875 0.4376220703125 0.038762019230769273 0.6719970703125 0.38431490384615385 0.6873779296875 0.34645432692307687 0.6719970703125 0.34645432692307687 0.4395751953125 0.038762019230769273 0.4395751953125 0.04296875 0.4412841796875 0.038762019230769273 0.9373779296875 0.19260817307692313 0.9298095703125 0.19260817307692313 0.4432373046875 0.038762019230769273 0.4415283203125 0.038762019230769273 0.4415283203125 0.04296875 0.4434814453125 0.038762019230769273 0.4434814453125 0.04296875 0.4451904296875 0.038762019230769273 0.7266845703125 0.13491586538461542 0.7266845703125 0.15354567307692313 0.7342529296875 0.13491586538461542 0.7420654296875 0.13491586538461542 0.7344970703125 0.15354567307692313 0.7344970703125 0.13491586538461542 0.3673095703125 0.03816105769230771 0.3673095703125 0.02914663461538458 0.3709716796875 0.02914663461538458 0.7120361328125 0.07722355769230771 0.7127685546875 0.07722355769230771 0.7120361328125 0.09585336538461542 0.3614501953125 0.02914663461538458 0.3631591796875 0.02914663461538458 0.3614501953125 0.03816105769230771 0.7459716796875 0.13491586538461542 0.7423095703125 0.13491586538461542 0.7423095703125 0.15354567307692313 0.4461669921875 0.038762019230769273 0.4454345703125 0.038762019230769273 0.4454345703125 0.04296875 0.4473876953125 0.04296875 0.4473876953125 0.038762019230769273 0.4490966796875 0.038762019230769273 0.7498779296875 0.13491586538461542 0.7462158203125 0.15354567307692313 0.3729248046875 0.02914663461538458 0.3712158203125 0.03816105769230771 0.3712158203125 0.02914663461538458 0.6563720703125 0.3458533653846154 0.6717529296875 0.30799278846153844 0.6563720703125 0.30799278846153844 0.7188720703125 0.11568509615384615 0.7188720703125 0.13431490384615385 0.7264404296875 0.11568509615384615 0.4464111328125 0.038762019230769273 0.4471435546875 0.038762019230769273 0.4464111328125 0.04296875 0.7266845703125 0.11568509615384615 0.7266845703125 0.13431490384615385 0.7342529296875 0.11568509615384615 0.6719970703125 0.30799278846153844 0.6719970703125 0.3458533653846154 0.6873779296875 0.30799278846153844 0.6876220703125 0.34645432692307687 0.7030029296875 0.34645432692307687 0.6954345703125 0.34645432692307687 0.6954345703125 0.38431490384615385 0.7032470703125 0.34645432692307687 0.7032470703125 0.38431490384615385 0.7186279296875 0.34645432692307687 0.7462158203125 0.13491586538461542 0.3475341796875 0.01953125 0.3438720703125 0.01953125 0.3438720703125 0.028545673076923128 0.8594970703125 0.13491586538461542 0.8594970703125 0.14393028846153844 0.8612060546875 0.13491586538461542 0.4493408203125 0.038762019230769273 0.4493408203125 0.04296875 0.4510498046875 0.038762019230769273 0.4512939453125 0.038762019230769273 0.4512939453125 0.04296875 0.4520263671875 0.038762019230769273 0.4522705078125 0.038762019230769273 0.4530029296875 0.038762019230769273 0.4522705078125 0.04296875 0.7344970703125 0.11568509615384615 0.7381591796875 0.11568509615384615 0.7344970703125 0.13431490384615385 0.7384033203125 0.13431490384615385 0.7420654296875 0.11568509615384615 0.7384033203125 0.11568509615384615 0.4532470703125 0.04296875 0.4532470703125 0.038762019230769273 0.4549560546875 0.038762019230769273 0.3731689453125 0.03816105769230771 0.3731689453125 0.02914663461538458 0.3748779296875 0.02914663461538458 0.3477783203125 0.028545673076923128 0.3477783203125 0.01953125 0.3494873046875 0.01953125 0.7423095703125 0.11568509615384615 0.7423095703125 0.13431490384615385 0.7459716796875 0.11568509615384615 0.7462158203125 0.11568509615384615 0.7462158203125 0.13431490384615385 0.7498779296875 0.11568509615384615 0.5343017578125 0.15414663461538458 0.4569091796875 0.038762019230769273 0.4552001953125 0.04296875 0.4552001953125 0.038762019230769273 0.3516845703125 0.028545673076923128 0.3553466796875 0.01953125 0.3516845703125 0.01953125 0.4295654296875 0.8079927884615384 0.4219970703125 0.8079927884615384 0.3555908203125 0.01953125 0.3555908203125 0.028545673076923128 0.3592529296875 0.01953125 0.7188720703125 0.09645432692307687 0.7188720703125 0.11508413461538458 0.7264404296875 0.09645432692307687 0.7130126953125 0.07722355769230771 0.7130126953125 0.09585336538461542 0.7137451171875 0.07722355769230771 0.3514404296875 0.01953125 0.3497314453125 0.028545673076923128 0.3497314453125 0.01953125 0.7266845703125 0.11508413461538458 0.7266845703125 0.09645432692307687 0.7342529296875 0.09645432692307687 0.4578857421875 0.038762019230769273 0.4571533203125 0.038762019230769273 0.4571533203125 0.04296875 0.3594970703125 0.028545673076923128 0.3594970703125 0.01953125 0.3612060546875 0.01953125 0.7030029296875 0.30799278846153844 0.6876220703125 0.3458533653846154 0.6876220703125 0.30799278846153844 0.7139892578125 0.09585336538461542 0.7139892578125 0.07722355769230771 0.7147216796875 0.07722355769230771 0.3634033203125 0.01953125 0.3634033203125 0.028545673076923128 0.3670654296875 0.01953125 0.7344970703125 0.09645432692307687 0.7344970703125 0.11508413461538458 0.7420654296875 0.09645432692307687 0.7032470703125 0.30799278846153844 0.7032470703125 0.3458533653846154 0.7186279296875 0.30799278846153844 0.7188720703125 0.38431490384615385 0.7188720703125 0.34645432692307687 0.7264404296875 0.34645432692307687 0.3673095703125 0.028545673076923128 0.3709716796875 0.01953125 0.3673095703125 0.01953125 0.4591064453125 0.04296875 0.4608154296875 0.038762019230769273 0.4591064453125 0.038762019230769273 0.4588623046875 0.038762019230769273 0.4581298828125 0.038762019230769273 0.4581298828125 0.04296875 0.3614501953125 0.01953125 0.3614501953125 0.028545673076923128 0.3631591796875 0.01953125 0.3712158203125 0.028545673076923128 0.3712158203125 0.01953125 0.3748779296875 0.01953125 0.7266845703125 0.38431490384615385 0.7342529296875 0.34645432692307687 0.7266845703125 0.34645432692307687 0.3438720703125 0.009915865384615419 0.3438720703125 0.018930288461538436 0.3455810546875 0.009915865384615419 0.7423095703125 0.09645432692307687 0.7430419921875 0.09645432692307687 0.7423095703125 0.11508413461538458 0.0968017578125 0.2887620192307693 0.0975341796875 0.2887620192307693 0.0968017578125 0.30739182692307687 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 0 1 1 0 2 3 3 1 4 2 5 4 6 3 7 2 8 5 9 3 10 4 11 6 11 5 9 4 11 7 12 5 13 6 14 8 15 7 16 6 17 9 18 7 19 8 20 10 21 9 22 8 23 11 24 9 25 10 26 12 27 11 28 10 29 13 30 11 31 12 32 14 33 13 34 12 35 15 36 13 37 14 38 16 39 15 40 14 41 17 42 15 43 16 44 18 45 17 46 16 47 19 48 17 49 18 50 20 51 19 52 18 53 21 54 19 55 20 56 22 57 21 58 20 57 23 59 21 60 22 61 24 62 23 63 22 64 25 65 23 66 24 65 26 67 25 67 24 67 27 68 25 69 26 69 28 70 27 71 26 72 29 73 27 74 28 75 30 76 29 77 28 78 31 79 29 80 30 81 32 82 31 83 30 84 33 85 31 86 32 87 34 88 33 89 32 90 35 91 33 92 34 93 36 94 35 95 34 96 37 97 35 98 36 99 38 100 37 101 36 102 39 103 37 104 38 105 40 106 39 107 38 108 41 109 39 110 40 111 42 112 41 113 40 114 39 115 41 116 42 117 43 118 39 119 42 120 44 121 39 122 43 123 45 124 44 125 43 126 46 127 44 128 45 129 47 130 46 131 45 130 48 132 46 133 47 134 49 135 48 136 47 137 50 138 48 139 49 140 51 141 50 142 49 143 52 144 50 145 51 146 53 147 52 148 51 149 54 150 52 151 53 152 55 153 54 154 53 155 56 156 54 157 55 158 57 159 56 160 55 161 58 162 56 162 57 163 59 164 58 165 57 166 62 167 61 168 60 169 63 170 61 171 62 172 64 173 63 174 62 175 65 176 63 177 64 178 66 179 65 180 64 181 67 182 65 183 66 184 68 184 67 182 66 184 69 185 67 186 68 187 70 188 69 189 68 190 71 191 69 192 70 193 72 194 71 195 70 196 73 197 71 198 72 199 74 200 73 201 72 202 75 203 73 204 74 205 76 206 75 207 74 208 77 209 75 210 76 211 78 212 77 213 76 214 79 215 77 216 78 217 80 218 79 219 78 220 81 221 79 222 80 223 82 224 81 225 80 226 83 227 81 228 82 229 84 230 83 231 82 232 85 233 83 234 84 235 86 236 85 237 84 238 87 239 85 240 86 241 88 242 87 243 86 244 89 245 87 246 88 247 90 248 89 249 88 250 91 251 89 252 90 253 92 254 91 255 90 256 89 257 91 258 92 259 93 260 89 261 92 262 94 263 89 264 93 265 95 266 94 267 93 268 96 269 94 270 95 269 97 67 96 67 95 67 98 67 96 67 97 67 99 67 98 67 97 67 100 67 98 67 99 67 101 67 100 67 99 67 102 271 100 272 101 272 103 273 102 274 101 275 104 276 102 277 103 278 105 279 104 280 103 281 106 282 104 283 105 284 107 285 106 286 105 287 108 288 106 289 107 290 105 291 108 292 107 293 109 294 108 295 105 296 110 297 109 298 105 299 111 300 109 301 110 300 112 302 111 303 110 303 113 304 111 305 112 306 114 307 113 308 112 309 115 310 113 311 114 312 116 313 115 314 114 315 117 316 70 317 68 316 118 318 70 319 117 320 119 321 118 322 117 323 74 324 118 325 119 326 120 327 74 328 119 329 76 330 74 331 120 332 121 333 76 334 120 335 122 336 76 337 121 338 123 339 122 340 121 341 80 342 122 343 123 344 124 345 80 346 123 347 82 348 80 349 124 350 125 351 82 352 124 353 126 352 82 352 125 351 127 354 126 355 125 356 84 357 126 358 127 359 128 360 84 361 127 362 86 362 84 361 128 360 129 363 86 364 128 365 88 366 86 367 129 368 130 369 88 370 129 371 90 372 88 373 130 374 131 375 90 376 130 377 132 378 90 379 131 380 130 381 132 382 131 383 133 384 132 385 130 386 134 387 133 388 130 389 135 390 133 391 134 392 136 393 135 394 134 395 137 396 135 397 136 398 138 399 137 400 136 401 139 402 137 403 138 404 140 405 139 406 138 405 141 407 139 408 140 409 142 410 141 411 140 412 143 413 141 414 142 415 144 416 143 417 142 418 145 419 143 420 144 421 146 422 145 423 144 424 147 425 145 426 146 427 148 428 147 429 146 430 149 431 147 432 148 433 150 434 149 435 148 436 151 437 149 438 150 439 152 440 151 441 150 442 155 443 154 444 153 445 156 446 154 447 155 448 157 449 156 450 155 451 158 452 156 453 157 454 159 455 158 456 157 457 160 458 158 459 159 460 161 461 160 462 159 463 162 464 160 465 161 466 163 467 162 468 161 469 164 470 162 471 163 472 165 473 164 474 163 475 166 473 164 474 165 473 167 476 166 477 165 477 168 478 166 479 167 480 169 481 168 482 167 483 170 484 168 485 169 486 171 487 170 488 169 489 172 490 170 491 171 492 173 493 172 494 171 495 170 496 172 497 173 498 174 499 170 500 173 501 175 502 170 503 174 504 176 504 175 502 174 504 177 504 175 502 176 504 178 67 177 67 176 67 179 67 177 67 178 67 180 67 179 67 178 67 181 67 179 67 180 67 182 67 181 67 180 67 183 505 181 506 182 506 184 505 183 505 182 506 185 507 183 508 184 508 186 279 185 280 184 281 187 509 185 510 186 511 188 286 187 285 186 287 189 512 187 513 188 514 186 515 189 516 188 517 190 518 189 519 186 520 191 521 190 522 186 523 192 16 190 17 191 15 193 18 192 19 191 20 194 504 192 502 193 504 195 524 194 525 193 525 196 526 194 527 195 528 197 529 196 530 195 531 200 532 199 533 198 532 201 534 199 535 200 536 202 537 201 538 200 537 203 539 201 540 202 541 204 542 203 543 202 544 205 545 203 546 204 547 62 548 205 549 204 550 206 551 205 552 62 553 60 554 206 555 62 556 207 557 206 558 60 559 61 560 207 561 60 562 208 563 207 564 61 565 209 566 208 567 61 568 210 569 208 570 209 571 211 572 210 573 209 574 212 575 210 576 211 577 213 578 212 579 211 580 214 581 212 582 213 583 215 584 214 585 213 586 216 587 214 588 215 589 217 590 216 591 215 592 218 593 216 594 217 595 219 596 218 597 217 598 220 599 218 600 219 601 111 602 220 603 219 604 218 605 220 606 111 607 221 608 218 609 111 610 222 611 218 612 221 613 223 614 222 615 221 616 224 617 222 618 223 619 225 620 224 621 223 622 226 623 224 624 225 625 227 626 226 627 225 628 228 629 226 630 227 631 229 632 228 633 227 634 230 635 228 636 229 637 231 638 230 639 229 640 23 641 230 642 231 643 232 644 23 645 231 646 21 647 23 648 232 649 233 650 21 651 232 652 19 652 21 651 233 650 17 653 19 654 233 655 236 656 235 657 234 658 237 659 235 660 236 661 238 662 237 663 236 664 239 665 237 666 238 667 240 668 239 669 238 670 241 671 239 672 240 673 242 674 241 675 240 676 243 677 241 678 242 679 244 680 243 681 242 682 245 683 243 684 244 685 246 686 245 687 244 688 247 689 245 690 246 691 248 692 247 693 246 694 249 695 247 696 248 697 250 698 249 698 248 699 251 700 249 701 250 701 252 702 251 700 250 701 253 703 251 704 252 705 254 706 253 707 252 708 255 709 253 710 254 711 256 710 255 709 254 711 257 712 255 713 256 714 258 715 257 716 256 717 259 718 257 719 258 720 260 721 259 721 258 722 261 723 259 724 260 724 262 725 261 726 260 727 263 728 261 729 262 730 264 731 263 732 262 733 265 734 263 735 264 736 266 737 265 738 264 739 267 740 265 741 266 742 268 743 267 744 266 745 269 746 267 746 268 747 270 748 269 749 268 750 271 751 269 752 270 753 272 754 271 755 270 756 273 757 271 758 272 759 274 760 273 761 272 762 275 763 273 764 274 765 276 766 275 767 274 768 279 769 278 770 277 771 280 772 278 773 279 774 281 775 280 776 279 777 282 778 280 779 281 780 283 781 282 782 281 783 284 784 282 785 283 786 285 787 284 788 283 789 286 790 284 791 285 792 287 705 286 704 285 703 288 793 286 794 287 795 289 796 288 797 287 798 290 799 288 800 289 801 291 802 290 803 289 804 292 805 290 806 291 807 293 808 292 809 291 810 294 811 292 812 293 813 295 814 294 815 293 816 296 817 294 818 295 819 293 820 296 821 295 822 297 823 296 824 293 825 298 826 297 827 293 828 299 584 297 585 298 586 300 829 299 830 298 831 301 832 299 833 300 834 302 835 301 836 300 837 303 835 301 836 302 835 304 408 303 407 302 407 305 407 303 407 304 408 306 838 305 839 304 840 307 841 305 842 306 843 308 844 307 845 306 846 309 847 307 848 308 849 310 850 309 851 308 852 311 853 309 854 310 855 312 856 311 857 310 858 313 859 311 860 312 861 314 862 313 863 312 864 59 865 313 866 314 867 58 868 59 869 314 870 315 871 234 872 235 873 316 874 234 874 315 875 317 876 316 874 315 875 318 877 316 878 317 879 319 880 318 881 317 882 320 883 318 884 319 885 321 886 320 887 319 888 322 889 320 890 321 891 323 892 322 892 321 893 324 894 322 895 323 895 325 895 324 894 323 895 326 896 324 897 325 898 327 899 326 900 325 901 328 902 326 903 327 904 329 905 328 906 327 907 330 908 328 909 329 910 331 911 330 912 329 913 332 914 330 915 331 916 333 917 332 918 331 919 334 920 332 921 333 922 335 923 334 924 333 925 336 926 334 927 335 928 337 929 336 930 335 931 338 932 336 933 337 934 339 935 338 936 337 937 340 938 338 939 339 940 341 941 340 942 339 943 342 944 340 945 341 946 343 947 342 948 341 949 344 950 342 951 343 952 345 953 344 954 343 955 346 956 344 957 345 958 347 959 346 960 345 961 348 962 346 963 347 964 349 965 348 966 347 967 350 968 348 969 349 970 351 971 350 972 349 973 352 746 350 747 351 746 355 974 354 975 353 974 356 975 354 975 355 974 357 976 356 977 355 978 358 979 356 980 357 981 359 982 358 983 357 984 360 985 358 986 359 987 361 988 360 989 359 990 362 991 360 992 361 993 363 994 362 995 361 996 364 997 362 998 363 999 365 504 364 502 363 504 366 1000 364 1001 365 1002 367 1003 366 1004 365 1005 368 1006 366 1007 367 1008 369 1009 368 1010 367 1011 370 1012 368 1013 369 1014 371 1015 370 1016 369 1017 372 1018 370 1019 371 1020 373 1021 372 1022 371 1023 374 1024 372 1025 373 1026 375 1027 374 1028 373 1029 376 1030 374 1031 375 1032 377 1033 376 1034 375 1035 378 1036 376 1037 377 1038 379 1039 378 1040 377 1041 380 1041 378 1040 379 1039 381 1042 380 1043 379 1044 382 1045 380 1046 381 1047 383 1048 382 1049 381 1050 154 1051 382 1052 383 1053 384 1054 154 1055 383 1056 153 199 154 197 384 198 385 1057 153 1058 384 1059 155 1060 153 1061 385 1062 386 1063 155 1064 385 1065 387 1066 155 1067 386 1068 388 749 387 750 386 748 389 746 387 747 388 746 157 1069 161 1070 159 1071 390 1072 161 1073 157 1074 391 1075 390 1076 157 1077 392 1078 390 1079 391 1080 393 1081 392 1082 391 1083 394 1084 392 1085 393 1086 395 1087 394 1088 393 1089 396 1090 394 1091 395 1092 397 1093 396 1094 395 1095 398 1096 396 1096 397 1097 399 1097 398 1096 397 1097 400 1098 398 1099 399 1100 401 1101 400 1102 399 1103 402 1104 400 1105 401 1106 403 1107 402 1108 401 1109 404 1110 402 1111 403 1112 405 1113 404 1114 403 1115 406 1116 404 1117 405 1118 407 1119 406 1120 405 1121 408 1122 406 1123 407 1124 409 1125 408 1126 407 1127 410 1128 408 1129 409 1130 411 1131 410 1132 409 1133 412 1134 410 1135 411 1136 413 1137 412 1138 411 1139 414 1140 412 1140 413 1141 415 1141 414 1140 413 1141 416 1142 414 1143 415 1144 417 1145 416 1146 415 1147 418 1148 416 1149 417 1150 419 693 418 694 417 692 420 1151 418 1152 419 1153 421 1154 420 1155 419 1156 422 1157 420 1158 421 1159 423 1160 422 1161 421 1162 424 1163 422 1164 423 1165 425 1166 357 1167 355 1168 426 1169 357 1170 425 1171 427 1172 426 1173 425 1174 428 1175 426 1176 427 1177 429 1178 428 1179 427 1180 430 1181 428 1181 429 1182 431 1181 430 1181 429 1182 432 67 430 67 431 67 433 66 432 65 431 65 434 65 432 65 433 66 435 1183 434 1184 433 1185 436 1185 434 1184 435 1183 437 1186 436 1187 435 1188 438 1189 436 1190 437 1191 439 1192 438 1193 437 1194 440 1195 438 1196 439 1197 441 1198 440 1199 439 1200 442 1201 440 1202 441 1203 443 1204 442 1205 441 1206 375 1207 442 1208 443 1209 444 1210 375 1211 443 1212 379 1213 375 1214 444 1215 445 1216 379 1217 444 1218 446 1219 379 1220 445 1221 447 1222 446 1223 445 1224 381 1225 446 1226 447 1227 448 1228 381 1229 447 1230 384 1231 381 1232 448 1233 449 1234 384 1235 448 1236 450 1237 384 1238 449 1239 451 1240 450 1241 449 1242 385 1243 450 1244 451 1245 388 1245 385 1243 451 1245 386 1246 385 1247 388 1248 347 319 351 320 349 318 452 316 351 316 347 317 453 189 452 190 347 188 454 1249 452 1250 453 1251 345 1252 454 1253 453 1254 455 1255 454 1256 345 1257 341 1258 455 1259 345 1260 456 1261 455 1262 341 1263 457 1264 456 1265 341 1266 458 1267 456 1268 457 1269 339 1270 458 1271 457 1272 459 1273 458 1274 339 1275 335 1276 459 1277 339 1278 460 1279 459 1280 335 1281 461 1282 460 1283 335 1284 462 1285 460 1286 461 1287 463 1288 462 1289 461 1290 464 1291 462 1292 463 1293 465 1294 464 1295 463 1296 466 1297 464 1298 465 1299 467 1300 466 1301 465 1302 468 1303 466 1304 467 1305 469 1306 468 1307 467 1308 470 505 468 505 469 506 471 506 470 505 469 506 472 506 470 505 471 506 473 67 472 67 471 67 474 67 472 67 473 67 475 67 474 67 473 67 476 67 474 67 475 67 477 68 476 69 475 69 478 1309 476 1310 477 1311 317 1312 478 1313 477 1314 315 1315 478 1316 317 1317 237 1318 479 1319 235 1320 480 1321 479 1322 237 1323 481 1324 480 1324 237 1325 482 273 480 274 481 274 483 1326 482 1327 481 1328 484 1329 482 1330 483 1331 241 1332 484 1333 483 1334 485 1333 484 1333 241 1332 243 1335 485 1336 241 1337 486 1338 485 1339 243 1340 487 1341 486 1341 243 1342 488 1343 486 1344 487 1344 247 693 488 692 487 694 489 1345 488 1346 247 1347 249 1348 489 1349 247 1350 490 1351 489 1352 249 1353 491 1354 490 1355 249 1356 492 1357 490 1358 491 1359 253 1360 492 1361 491 1362 493 1363 492 1364 253 1365 255 1366 493 1367 253 1368 494 1369 493 1370 255 1371 495 1372 494 1373 255 1374 496 1375 494 1376 495 1377 259 1378 496 1379 495 1380 497 1381 496 1382 259 1383 261 723 497 723 259 724 498 1384 497 1385 261 1385 499 1386 498 1384 261 1385 500 1387 498 1388 499 1389 265 1390 500 1391 499 1392 267 740 500 740 265 741 503 1393 502 1394 501 1395 504 1396 502 1397 503 1398 505 1399 504 1400 503 1399 506 1399 504 1400 505 1399 507 67 506 67 505 67 508 67 506 67 507 67 509 67 508 67 507 67 510 67 508 67 509 67 511 1182 510 1181 509 1181 512 1401 510 1181 511 1182 513 1402 512 1403 511 1404 429 1404 512 1403 513 1402 514 1405 429 1406 513 1407 515 1408 429 1409 514 1410 516 1411 515 1412 514 1413 431 1414 515 1415 516 1416 517 501 431 499 516 501 433 1417 431 1418 517 1419 518 1420 433 1421 517 1422 519 1423 433 1424 518 1425 520 1426 519 1427 518 1428 521 1429 519 1430 520 1431 522 1432 521 1433 520 1434 523 1435 521 1436 522 1437 524 1438 523 1438 522 1439 525 1440 523 1441 524 1441 526 1442 525 1440 524 1441 527 1443 525 1444 526 1445 528 1446 527 1447 526 1448 529 1449 527 1450 528 1451 530 1452 529 1453 528 1454 531 1455 529 1456 530 1455 534 1457 533 1458 532 1459 535 1460 533 1461 534 1462 536 1463 535 1464 534 1465 537 1466 535 1467 536 1468 538 1469 537 1470 536 1471 539 1333 537 1332 538 1334 540 1472 539 1473 538 1474 541 1475 539 1476 540 1477 542 1478 541 1479 540 1480 543 1481 541 1482 542 1483 544 1484 543 1485 542 1486 545 1487 543 1488 544 1489 546 1490 545 1491 544 1492 547 1493 545 1494 546 1495 548 1496 547 1496 546 1497 549 1498 547 1499 548 1499 550 1498 549 1498 548 1499 551 67 549 67 550 67 552 67 551 67 550 67 553 67 551 67 552 67 554 67 553 67 552 67 555 502 553 504 554 504 556 1500 555 1501 554 1502 557 1503 555 1504 556 1505 558 1506 557 1507 556 1508 559 1509 557 1510 558 1511 560 1509 559 1509 558 1511 561 1512 559 1513 560 1513 562 1512 561 1512 560 1513 563 1514 498 1515 500 1514 564 1516 498 1517 563 1518 565 1519 564 1520 563 1521 496 1522 564 1523 565 1524 566 1525 496 1526 565 1527 494 1528 496 1529 566 1530 567 1531 494 1532 566 1533 568 1534 494 1534 567 1535 569 1536 568 1534 567 1535 492 1537 568 1538 569 1539 570 1540 492 1541 569 1542 490 1543 492 1544 570 1545 571 1546 490 1547 570 1548 572 1549 490 1550 571 1551 573 1552 572 1553 571 1554 488 1555 572 1556 573 1557 574 1555 488 1555 573 1557 486 1344 488 1343 574 1343 575 1149 486 1148 574 1150 576 1558 486 1559 575 1560 577 1561 576 1561 575 1562 484 1563 576 1564 577 1564 578 1563 484 1563 577 1564 482 1565 484 1566 578 1566 579 1567 482 1568 578 1569 580 1570 482 1571 579 1572 581 1573 236 1574 234 1573 582 1575 236 1576 581 1577 583 1576 582 1575 581 1577 584 1578 582 1579 583 1580 585 1581 584 1582 583 1583 586 1584 584 1585 585 1586 587 1587 586 1587 585 1588 588 67 586 67 587 67 589 67 588 67 587 67 590 67 588 67 589 67 591 67 590 67 589 67 592 1589 590 1590 591 1590 593 1591 592 1592 591 1593 594 1594 592 1595 593 1596 595 1597 594 1598 593 1599 596 1600 594 1601 595 1602 597 1603 596 1604 595 1605 598 1606 596 1606 597 1607 595 1605 598 1604 597 1603 599 1608 598 1609 595 1610 600 1611 599 1612 595 1613 601 1614 599 1615 600 1616 602 1310 601 1311 600 1309 603 69 601 68 602 69 589 67 603 67 602 67 587 67 603 67 589 67 604 1617 503 1618 501 1619 605 1498 503 1498 604 1499 606 1620 605 1621 604 1622 607 1623 605 1624 606 1625 608 1626 607 1627 606 1628 609 1629 607 1630 608 1631 610 1632 609 1633 608 1634 611 1635 609 1636 610 1637 612 1638 611 1639 610 1640 613 1641 611 1642 612 1643 614 1644 613 1645 612 1646 615 1647 613 1648 614 1649 616 1650 615 1651 614 1652 617 1653 615 1654 616 1655 618 1656 617 1657 616 1658 619 1659 617 1660 618 1661 620 1662 619 1663 618 1664 621 1665 619 1666 620 1667 622 1668 621 1669 620 1670 524 1671 621 1672 622 1673 623 1674 524 1675 622 1676 526 1677 524 1678 623 1679 624 1680 526 1681 623 1682 528 1683 526 1684 624 1685 625 1686 528 1687 624 1688 530 1689 528 1690 625 1689 628 1691 627 1692 626 1693 629 1694 627 1695 628 1696 630 1183 629 1185 628 1184 631 1697 629 1698 630 1699 632 1700 631 1701 630 1702 633 1703 631 1704 632 1705 634 1706 633 1707 632 1708 635 1709 633 1710 634 1711 636 1712 635 1713 634 1714 637 1715 635 1716 636 1717 638 1718 637 1719 636 1720 639 1721 637 1722 638 1723 640 1724 639 1725 638 1726 641 1727 639 1728 640 1729 642 1730 641 1731 640 1732 643 1733 641 1734 642 1735 644 1736 643 1737 642 1738 645 1739 643 1740 644 1741 646 1740 645 1739 644 1741 647 712 645 713 646 714 648 1664 647 1662 646 1663 649 1742 647 1743 648 1744 650 1742 649 1742 648 1744 394 1745 649 1746 650 1746 392 1747 394 1748 650 1749 454 1750 651 1751 452 1751 652 1752 651 1753 454 1754 456 1755 652 1756 454 1757 653 1755 652 1756 456 1755 458 1267 653 1268 456 1268 654 1758 653 1759 458 1760 655 1761 654 1762 458 1763 656 1764 654 1765 655 1766 460 1767 656 1768 655 1769 657 1770 656 1771 460 1772 462 1773 657 1774 460 1775 658 1776 657 1777 462 1778 464 1779 658 1780 462 1781 659 1782 658 1783 464 1784 660 1785 659 1786 464 1787 661 1788 659 1789 660 1790 662 1791 661 1792 660 1793 663 1794 661 1795 662 1796 664 1299 663 1298 662 1299 665 1797 663 1798 664 1799 662 1800 665 1801 664 1800 666 1802 665 1803 662 1804 470 1805 666 1806 662 1807 472 1502 666 1501 470 1500 667 1808 559 1809 561 1810 668 1811 559 1812 667 1813 669 1814 668 1815 667 1816 670 1817 668 1818 669 1819 671 1820 670 1821 669 1822 672 1310 670 1311 671 1309 673 504 672 504 671 502 674 67 672 67 673 67 675 893 674 892 673 892 543 1823 674 1824 675 1825 676 1826 543 1827 675 1828 541 1829 543 1830 676 1831 677 1832 541 1833 676 1834 539 1835 541 1836 677 1837 678 296 539 294 677 295 679 1838 539 1839 678 1840 677 1841 679 1842 678 1843 680 1844 679 1844 677 1845 681 1846 680 1847 677 1848 682 1849 680 1850 681 1851 683 1852 682 1853 681 1854 684 1855 682 1856 683 1857 673 1502 684 1501 683 1500 671 502 684 502 673 504 246 1858 250 1859 248 1860 685 1861 250 1862 246 1863 686 1864 685 1865 246 1866 250 1867 685 1868 686 1869 687 1870 250 1871 686 1872 252 1873 250 1874 687 1875 688 1876 252 1877 687 1878 689 1879 252 1880 688 1881 690 1882 689 1883 688 1884 256 1885 689 1886 690 1887 691 1888 256 1889 690 1890 258 1891 256 1892 691 1893 692 1894 258 1895 691 1896 693 1896 258 1895 692 1894 694 1897 693 1898 692 1899 262 1900 693 1901 694 1902 695 1903 262 1904 694 1905 264 1906 262 1907 695 1908 696 1909 264 1910 695 1911 697 1912 264 1913 696 1914 272 1915 697 1916 696 1917 268 1918 697 1919 272 1920 270 1921 268 1922 272 1923 700 1924 699 1925 698 1926 701 1927 699 1928 700 1929 702 1482 701 1483 700 1481 703 1930 701 1931 702 1932 704 399 703 401 702 400 705 1933 703 1934 704 1935 706 1936 705 1937 704 1938 707 1939 705 1940 706 1941 708 1942 707 1943 706 1944 709 1945 707 1946 708 1947 710 1948 709 1949 708 1950 711 1951 709 1952 710 1953 712 1954 711 1955 710 1956 713 1957 711 1958 712 1959 714 1960 713 1961 712 1962 715 1961 713 1961 714 1960 716 1963 715 1964 714 1965 654 1966 715 1967 716 1968 717 1969 654 1970 716 1971 653 1972 654 1973 717 1974 652 1975 653 1976 717 1977 336 1978 332 1979 334 1980 718 1981 332 1982 336 1983 338 1984 718 1985 336 1986 719 1987 718 1988 338 1989 720 1990 719 1990 338 1991 533 1992 719 1993 720 1993 342 1994 533 1995 720 1996 532 1997 533 1998 342 1999 344 2000 532 2001 342 2002 534 2003 532 2004 344 2005 721 2004 534 2003 344 2005 278 2006 534 2007 721 2008 348 2006 278 2006 721 2008 277 2009 278 2010 348 2010 350 2011 277 2009 348 2010 279 2012 277 2013 350 2014 722 2015 279 2016 350 2017 723 2018 279 2019 722 2020 352 2021 723 2022 722 2023 724 2024 723 2025 352 2024 725 2026 401 2027 399 2026 726 2028 401 2029 725 2030 727 2031 726 2032 725 2033 405 2034 726 2035 727 2036 728 2037 405 2038 727 2039 407 2040 405 2041 728 2042 729 2043 407 2044 728 2045 730 2046 407 2047 729 2048 731 2049 730 2050 729 2051 411 2052 730 2053 731 2054 732 2055 411 2056 731 2057 413 2058 411 2059 732 2058 733 2060 413 2061 732 2061 734 2062 413 2063 733 2064 735 408 734 407 733 409 417 2065 734 2066 735 2067 736 2068 417 2069 735 2070 419 2071 417 2072 736 2073 737 2074 419 2075 736 2076 738 2077 419 2077 737 2078 739 2079 565 2080 563 2079 740 2081 565 2082 739 2083 741 2084 740 2085 739 2086 567 2087 740 2088 741 2089 742 2090 567 2091 741 2092 569 2093 567 2094 742 2095 743 2096 569 2097 742 2098 744 2099 569 2100 743 2101 745 2102 744 2103 743 2104 571 2105 744 2106 745 2107 746 2108 571 2109 745 2110 573 2111 571 2112 746 2113 747 2114 573 2115 746 2116 748 2117 573 2118 747 2119 749 2120 748 2121 747 2122 575 2123 748 2124 749 2125 750 2126 575 2127 749 2128 577 2129 575 2130 750 2131 751 2132 577 2133 750 2134 752 2135 577 2136 751 2137 755 688 754 687 753 686 756 1563 754 1564 755 1563 757 2138 756 2139 755 2139 758 2139 756 2139 757 2138 759 2139 758 2139 757 2138 760 2140 758 2141 759 2141 761 2142 760 2140 759 2141 762 2143 760 2144 761 2145 189 2146 762 2147 761 2148 760 2149 762 2150 189 2151 190 2152 760 2153 189 2154 763 2155 760 2156 190 2157 192 2158 763 2159 190 2160 764 2161 763 2162 192 2163 765 2164 764 2165 192 2166 763 2167 764 2168 765 2169 766 1634 763 1633 765 1634 758 2168 763 2167 766 2169 754 2170 758 2171 766 2172 756 1563 758 1563 754 1564 314 2173 767 2174 58 2174 768 2175 767 2174 314 2173 310 2176 768 2177 314 2178 769 2179 768 2180 310 2181 770 2182 769 2183 310 2184 771 2185 769 2186 770 2187 308 2188 771 2189 770 2190 772 2191 771 2192 308 2193 304 2194 772 2195 308 2196 773 2197 772 2198 304 2199 774 2200 773 2201 304 2202 775 2203 773 2204 774 2205 302 2206 775 2207 774 2208 776 2209 775 2210 302 2211 298 2212 776 2213 302 2214 777 702 776 700 298 701 778 2215 777 2216 298 2217 291 2218 777 2219 778 2220 293 2221 291 2222 778 2223 150 2224 779 2225 152 2225 780 2226 779 2227 150 2228 146 2229 780 2230 150 2231 781 2232 780 2233 146 2234 782 2235 781 2236 146 2237 783 2238 781 2239 782 2240 144 2241 783 2242 782 2243 784 2244 783 2245 144 2246 140 1890 784 1889 144 1888 785 2247 784 2248 140 2249 786 2250 785 2251 140 2252 787 2253 785 2254 786 2255 138 2256 787 2257 786 2258 788 2259 787 2260 138 2261 134 785 788 786 138 784 789 2262 788 2263 134 2264 790 2265 789 2266 134 2267 129 2268 789 2269 790 2270 130 2271 129 2272 790 2273 781 2274 779 2275 780 2276 791 2277 779 2277 781 2278 792 2279 791 2280 781 2281 793 2282 791 2283 792 2284 783 2285 793 2286 792 2287 794 2288 793 2289 783 2290 785 2291 794 2292 783 2293 795 2294 794 2295 785 2296 796 2297 795 2298 785 2299 797 2300 795 2301 796 2302 787 2303 797 2304 796 2305 798 2306 797 2307 787 2308 789 2309 798 2310 787 2311 799 2310 798 2310 789 2309 800 2312 799 2313 789 2314 127 2315 799 2316 800 2317 129 2318 127 2319 800 2320 128 365 127 364 129 363 688 2321 801 2322 690 2323 802 2324 801 2325 688 2326 687 2327 802 2328 688 2329 803 2330 802 2331 687 2332 686 2333 803 2334 687 2335 804 2336 803 2337 686 2338 805 2339 804 2340 686 2341 803 2342 804 2343 805 2344 806 2345 803 2346 805 2347 807 2348 803 2349 806 2350 808 2351 807 2352 806 2353 809 269 807 270 808 269 810 67 809 67 808 67 811 67 809 67 810 67 812 67 811 67 810 67 813 67 811 67 812 67 588 67 813 67 812 67 590 67 813 67 588 67 769 2354 767 2355 768 2356 814 2277 767 2277 769 2278 815 2357 814 2358 769 2359 816 2360 814 2361 815 2362 771 2363 816 2364 815 2365 817 2366 816 2367 771 2368 773 2369 817 2370 771 2371 818 2372 817 2373 773 2374 819 2375 818 2376 773 2377 820 2300 818 2301 819 2302 775 1284 820 1282 819 1283 821 2378 820 2379 775 2380 777 2380 821 2378 775 2380 822 2381 821 2382 777 2383 823 2384 822 2385 777 2386 287 2386 822 2385 823 2384 291 2387 287 2388 823 2389 289 2220 287 2219 291 2218 824 1316 478 1316 315 1315 825 504 478 502 824 502 826 504 825 504 824 502 827 505 825 506 826 506 828 506 827 505 826 506 829 2390 827 2391 828 2392 830 2393 829 2394 828 2395 699 2396 829 2397 830 2398 831 2399 699 2400 830 2401 698 2402 699 2403 831 2404 832 2405 698 2406 831 2407 700 2408 698 2409 832 2410 833 2408 700 2408 832 2410 834 2411 700 2412 833 2412 835 2413 834 2414 833 2415 836 2416 834 2417 835 2418 837 2419 836 2420 835 2421 838 2422 836 2423 837 2424 636 2425 640 2426 638 2427 839 2428 640 2428 636 2429 171 2430 839 2431 636 2432 640 1732 839 1732 171 1730 169 2433 640 2434 171 2435 642 2435 640 2434 169 2433 167 2436 642 2437 169 2438 840 2439 642 2440 167 2441 165 2442 840 2443 167 2444 646 2444 840 2443 165 2442 841 2445 646 2446 165 2447 648 705 646 703 841 704 163 2448 648 2449 841 2450 842 2451 648 2452 163 2453 161 2454 842 2455 163 2456 392 2457 842 2458 161 2459 390 2460 392 2461 161 2462 703 2463 699 2464 701 2465 843 2465 699 2464 703 2463 844 1344 843 1344 703 1343 845 690 843 691 844 691 846 2466 845 2467 844 2468 847 2469 845 2470 846 2471 844 2472 847 2473 846 2474 848 2475 847 2476 844 2477 849 2478 848 2479 844 2480 850 2481 848 2482 849 2483 851 2484 850 2485 849 2486 665 2487 850 2488 851 2489 849 2490 665 2491 851 2492 852 2493 665 2494 849 2495 705 2496 852 2497 849 2498 709 2499 852 2500 705 2501 707 2502 709 2503 705 2504 358 2505 853 2506 356 2506 197 2507 853 2508 358 2509 854 2508 197 2507 358 2509 196 2510 197 2511 854 2512 855 269 196 270 854 269 194 269 196 270 855 269 856 67 194 67 855 67 857 2513 194 2514 856 2514 858 2515 857 2516 856 2517 765 2518 857 2519 858 2520 859 2521 765 2522 858 2523 860 2524 765 2525 859 2526 372 2527 860 2528 859 2529 861 2530 860 2531 372 2532 376 2533 861 2533 372 2534 378 2535 861 2536 376 2536 135 2537 863 2538 862 2539 864 2540 863 2541 135 2542 137 2543 864 2544 135 2545 865 2546 864 2547 137 2548 866 2549 865 2550 137 2551 867 2552 865 2553 866 2554 141 2555 867 2556 866 2557 868 2062 867 2063 141 2062 143 2558 868 2559 141 2559 869 843 868 842 143 841 870 2560 869 2561 143 2562 871 2563 869 2564 870 2565 147 2566 871 2567 870 2568 872 2566 871 2567 147 2566 149 431 872 432 147 432 449 2569 873 2570 451 2570 874 2571 873 2572 449 2573 447 2574 874 2575 449 2576 875 2577 874 2578 447 2579 445 2580 875 2581 447 2582 527 2582 875 2581 445 2580 876 2583 527 2584 445 2585 525 2586 527 2587 876 2588 443 2589 525 2590 876 2591 523 2592 525 2593 443 2594 441 2595 523 2596 443 2597 877 2598 523 2599 441 2600 439 2601 877 2602 441 2603 521 2604 877 2605 439 2606 519 2607 521 2608 439 2609 878 2610 741 2611 739 2610 879 2362 741 2360 878 2361 880 2612 879 2613 878 2614 743 2615 879 2616 880 2617 881 2618 743 2619 880 2620 745 2621 743 2622 881 2623 882 2624 745 2625 881 2626 883 2627 745 2628 882 2629 884 2630 883 2631 882 2632 747 2633 883 2634 884 2635 885 2636 747 2637 884 2638 749 2639 747 2640 885 2641 837 2642 749 2643 885 2644 835 2645 749 2646 837 2647 318 2648 886 2649 316 2649 887 2650 886 2651 318 2652 888 2653 887 2654 318 2655 889 2656 887 2657 888 2658 890 2659 889 2660 888 2661 891 2662 889 2663 890 2664 892 2665 891 2666 890 2667 893 2668 891 2669 892 2670 894 2671 893 2672 892 2673 895 2674 893 2675 894 2676 896 2677 895 2678 894 2679 897 2680 895 2681 896 2682 332 2683 897 2684 896 2685 718 2686 897 2687 332 2688 899 2689 301 2690 898 2691 900 2692 301 2693 899 2694 901 2695 900 2696 899 2697 299 2698 900 2699 901 2700 902 1340 299 1338 901 1339 296 2701 299 1341 902 1342 903 2702 296 2703 902 2704 904 2705 296 2706 903 2707 905 2708 904 2709 903 2710 906 2711 904 2712 905 2713 907 2714 906 2715 905 2716 908 2716 906 2715 907 2714 554 999 908 997 907 998 552 504 908 502 554 504 240 2717 244 2718 242 2719 909 652 244 650 240 651 238 670 909 669 240 668 910 2720 909 2720 238 2721 911 2722 910 2723 238 2724 912 2725 910 2726 911 2727 913 2660 912 2661 911 2659 914 2659 912 2661 913 2660 915 2728 914 2729 913 2730 916 2514 914 2514 915 2513 586 2514 916 2514 915 2513 917 67 916 67 586 67 588 67 917 67 586 67 812 67 917 67 588 67 918 2731 727 2732 725 2731 919 2733 727 2732 918 2731 920 2734 919 2735 918 2736 729 2737 919 2738 920 2739 921 2740 729 2741 920 2742 731 2743 729 2744 921 2745 922 2746 731 2747 921 2748 923 2749 731 2750 922 2751 924 2752 923 2753 922 2754 733 2755 923 2756 924 2757 925 2758 733 2759 924 2760 735 2761 733 2762 925 2763 926 2763 735 2761 925 2763 927 2762 735 2761 926 2763 929 2764 215 2765 928 2766 930 2767 215 2768 929 2767 931 9 930 11 929 11 932 2769 930 2770 931 2771 933 2772 932 2773 931 2774 934 2408 932 2408 933 2410 935 2775 934 2776 933 2777 936 2778 934 2779 935 2780 108 2767 936 2767 935 2768 934 2781 936 2782 108 2782 109 2771 934 2769 108 2770 219 2783 934 2784 109 2785 111 2786 219 2787 109 2788 793 163 937 162 791 162 938 2789 937 2790 793 2791 795 2792 938 2793 793 2794 939 2795 938 2796 795 2797 940 2798 939 2799 795 2800 941 2801 939 2802 940 2801 797 2803 941 2804 940 2804 942 2805 941 2804 797 2803 799 2806 942 2807 797 2808 943 2809 942 2810 799 2811 944 2812 943 2813 799 2814 125 2815 943 2816 944 2817 127 2818 125 2819 944 2820 907 995 556 996 554 994 945 994 556 996 907 995 905 997 945 999 907 998 946 2821 945 2822 905 2823 947 2824 946 2825 905 2826 948 2827 946 2828 947 2827 903 2829 948 2830 947 2830 949 2831 948 2832 903 2833 901 2834 949 2835 903 2836 950 2837 949 2838 901 2839 951 2840 950 2841 901 2842 952 2842 950 2841 951 2840 899 2843 952 2844 951 2845 816 2611 953 2610 814 2610 954 2846 953 2847 816 2848 818 2849 954 2850 816 2851 955 2851 954 2850 818 2849 956 2797 955 2795 818 2797 957 2852 955 2853 956 2854 820 2855 957 2856 956 2857 958 2858 957 2859 820 2860 822 2861 958 2862 820 2863 959 2864 958 2865 822 2866 960 2867 959 2868 822 2869 285 1275 959 1274 960 1273 287 1276 285 1278 960 1277 833 2870 751 2871 835 2872 752 2873 751 2874 833 2875 832 2876 752 2877 833 2878 961 2879 752 2880 832 2881 831 2882 961 2883 832 2884 962 1310 961 1311 831 1309 963 504 962 504 831 502 964 67 962 67 963 67 828 67 964 67 963 67 965 67 964 67 828 67 826 67 965 67 828 67 824 502 965 504 826 504 966 2885 116 2886 114 2887 967 2888 116 2889 966 2890 968 2891 967 2892 966 2893 969 2894 967 2895 968 2896 970 2897 969 2898 968 2899 971 2900 969 2901 970 2902 972 2903 971 2904 970 2905 973 2906 971 2907 972 2908 974 2909 973 2910 972 2911 975 1399 973 1400 974 1399 93 505 975 506 974 506 92 2912 975 2913 93 2914 290 2915 544 2916 288 2917 546 2918 544 2919 290 2920 292 2921 546 2922 290 2923 976 2924 546 2925 292 2926 294 849 976 848 292 847 977 2927 976 2928 294 2929 906 2930 977 2931 294 2932 976 2933 977 2934 906 2935 908 2936 976 2937 906 2938 978 2939 976 2940 908 2941 552 2942 978 2943 908 2944 550 525 978 524 552 525 198 2945 54 2946 56 2945 979 2946 54 2946 198 2945 199 2947 979 2948 198 2949 50 2950 979 2951 199 2952 980 2953 50 2954 199 2955 48 2956 50 2957 980 2958 981 2959 48 2960 980 2961 982 2962 48 2963 981 2964 983 2965 982 2966 981 2967 44 2968 982 2969 983 2970 37 2971 44 2972 983 2973 39 2974 44 2975 37 2976 939 2084 937 2086 938 2085 984 2610 937 2610 939 2611 985 2977 984 2978 939 2979 986 1517 984 1518 985 1516 941 2980 986 2981 985 2982 987 2980 986 2981 941 2980 943 2983 987 2984 941 2984 988 2985 987 2986 943 2987 989 2988 988 2989 943 2990 123 2991 988 2992 989 2993 125 2994 123 2995 989 2996 124 2997 123 2998 125 2999 305 835 301 836 303 835 898 3000 301 3001 305 3002 990 3003 898 3004 305 3005 899 3006 898 3007 990 3008 991 3009 899 3009 990 3010 952 3011 899 3012 991 3012 992 3013 952 3014 991 3015 993 3016 952 3017 992 3018 994 3019 993 3020 992 3021 995 3022 993 3023 994 3024 996 3025 995 3026 994 3027 997 3028 995 3029 996 3030 998 3031 38 3032 36 3033 40 3034 38 3035 998 3036 999 3037 40 3038 998 3039 1000 3040 40 3041 999 3042 1001 3043 1000 3044 999 3045 1002 3046 1000 3047 1001 3048 1003 3049 1002 3049 1001 3050 1004 3051 1002 3052 1003 3052 1005 3053 1004 3054 1003 3055 1006 3056 1004 3057 1005 3058 14 3059 1006 3060 1005 3061 12 3062 1006 3063 14 3064 1007 3065 197 3066 195 3067 1008 3068 197 3069 1007 3070 1009 3071 1008 3072 1007 3073 1010 3074 1008 3075 1009 3076 1011 3077 1010 3078 1009 3079 1012 3080 1010 3081 1011 3082 1013 3083 1012 3084 1011 3085 1014 3086 1012 3087 1013 3086 1015 525 1014 524 1013 524 1016 525 1014 524 1015 525 174 67 1016 67 1015 67 173 501 1016 499 174 499 955 2848 953 2847 954 2846 1017 2610 953 2610 955 2611 1018 3088 1017 3089 955 3090 1019 3091 1017 3092 1018 3093 957 3094 1019 3095 1018 3096 1020 3097 1019 3098 957 3099 959 3100 1020 3101 957 3102 1021 1745 1020 1745 959 1746 1022 3103 1021 3104 959 3105 281 3106 1021 3107 1022 3108 285 3109 281 3110 1022 3111 283 3112 281 3113 285 3114 810 67 917 67 812 67 916 67 917 67 810 67 808 67 916 67 810 67 914 67 916 67 808 67 806 502 914 504 808 504 912 3115 914 3116 806 3117 805 3118 912 3119 806 3120 910 3121 912 3122 805 3123 1023 3124 910 3125 805 3126 244 3127 910 3128 1023 3127 246 3129 244 3130 1023 3130 1026 3131 1025 3132 1024 3133 1027 3134 1025 3135 1026 3136 1028 3137 1027 3138 1026 3139 1029 3140 1027 3141 1028 3142 1030 1614 1029 1615 1028 1616 863 3143 1029 3144 1030 3145 1031 3146 863 3147 1030 3148 862 3149 863 3150 1031 3151 132 3152 862 3153 1031 3154 135 3012 862 3011 132 3012 133 3155 135 3156 132 3156 858 3157 372 3158 859 3159 1032 3160 372 3161 858 3162 856 3163 1032 3164 858 3165 1033 3166 1032 3167 856 3168 1034 1590 1033 1589 856 1590 1035 3169 1033 3170 1034 3171 1036 892 1035 893 1034 892 1037 892 1035 893 1036 892 854 67 1037 67 1036 67 360 3172 1037 3173 854 3173 358 3174 360 3175 854 3176 894 3177 332 3178 896 3179 1038 3180 332 3181 894 3182 892 3183 1038 3184 894 3185 1039 3186 1038 3187 892 3188 1040 3189 1039 3190 892 3191 1041 1587 1039 1588 1040 1587 1042 67 1041 67 1040 67 1043 67 1041 67 1042 67 888 1182 1043 1181 1042 1181 320 2660 1043 2659 888 2661 318 3192 320 3193 888 3194 42 3195 1044 3195 43 3196 1045 3197 1044 3198 42 3198 1002 3199 1045 3200 42 3201 1044 3201 1045 3200 1002 3199 1046 3202 1044 3203 1002 3204 1047 3205 1044 3206 1046 3207 1004 3208 1047 3209 1046 3210 1048 3211 1047 3212 1004 3213 1049 3214 1048 3215 1004 3216 1047 3217 1048 3218 1049 3219 1050 3220 1047 3220 1049 3221 694 3222 696 3223 695 3224 1051 3225 696 3226 694 3227 1052 3228 1051 3229 694 3230 1053 3231 1051 3232 1052 3233 1054 886 1053 888 1052 887 1055 3234 1053 3235 1054 3236 1056 893 1055 892 1054 893 1057 892 1055 892 1056 893 1058 3237 1057 3238 1056 3239 1059 272 1057 272 1058 271 1060 3240 1059 3241 1058 3242 226 3243 214 3244 216 3245 212 3246 214 3247 226 3248 1061 3249 212 3250 226 3251 210 3252 212 3253 1061 3254 1062 3255 210 3256 1061 3257 1063 3258 210 3259 1062 3260 1064 3261 1063 3262 1062 3263 31 3264 1063 3265 1064 3266 1065 3267 31 3268 1064 3269 29 3270 31 3271 1065 3272 27 3273 29 3274 1065 3275 32 3276 36 3277 34 3278 998 3279 36 3280 32 3281 1066 3282 998 3283 32 3284 1067 3285 998 3286 1066 3287 28 3288 1067 3289 1066 3290 1068 3291 1067 3292 28 3293 1069 3294 1068 3295 28 3296 1070 895 1068 895 1069 894 24 895 1070 895 1069 894 20 505 1070 506 24 506 22 505 20 505 24 506 33 3297 1063 3298 31 3299 207 3300 1063 3301 33 3302 35 3303 207 3304 33 3305 206 3306 207 3307 35 3308 983 3309 206 3310 35 3311 205 3312 206 3313 983 3314 1071 3315 205 3316 983 3317 203 3318 205 3319 1071 3320 981 3321 203 3322 1071 3323 201 3324 203 3325 981 3326 199 3327 201 3328 981 3329 616 3330 620 3331 618 3332 1072 3332 620 3331 616 3330 1073 3333 1072 3334 616 3335 1074 3336 1072 3337 1073 3338 1075 3339 1074 3340 1073 3341 1076 3342 1074 3343 1075 3344 1077 3345 1076 3346 1075 3347 1078 3348 1076 3349 1077 3350 1079 3351 1078 3352 1077 3353 1080 3354 1078 3355 1079 3356 152 3354 1080 3354 1079 3356 1082 3357 935 3358 1081 3359 1083 834 935 833 1082 832 1084 3360 1083 3360 1082 3361 1085 3362 1083 3363 1084 3363 85 3364 1085 3365 1084 3366 1086 3367 1085 3368 85 3369 87 3370 1086 3371 85 3372 1087 3373 1086 3374 87 3375 1088 3376 1087 3377 87 3378 98 3379 1087 3380 1088 3381 1090 2468 761 2467 1089 2466 1091 1560 761 1558 1090 1559 1092 3382 1091 3383 1090 3382 1093 3384 1091 3385 1092 3386 166 3387 1093 3388 1092 3389 1094 3390 1093 3391 166 3392 168 3393 1094 3394 166 3395 1095 3396 1094 3397 168 3398 1096 3399 1095 3400 168 3401 179 3379 1095 3380 1096 3381 1079 3402 151 3403 152 3404 1097 3405 151 3406 1079 3407 1077 3408 1097 3409 1079 3410 1098 2968 1097 2970 1077 2969 1099 3411 1098 3412 1077 3413 1100 3414 1098 3415 1099 3416 1073 3417 1100 3418 1099 3419 1101 3420 1100 3421 1073 3422 616 3423 1101 3424 1073 3425 614 1652 1101 1651 616 1650 670 3426 555 3427 557 3428 553 1310 555 1309 670 1311 1102 69 553 69 670 68 551 67 553 67 1102 67 1103 67 551 67 1102 67 549 67 551 67 1103 67 1104 67 549 67 1103 67 1105 67 549 67 1104 67 674 67 1105 67 1104 67 543 3429 1105 3430 674 3430 110 3431 114 3432 112 3433 966 1462 114 1461 110 1460 1106 3434 966 3435 110 3436 968 3437 966 3438 1106 3439 1107 3440 968 3441 1106 3442 970 3443 968 3444 1107 3445 101 3446 970 3447 1107 3448 1108 69 970 68 101 69 99 67 1108 67 101 67 97 67 1108 67 99 67 1110 3449 706 3450 1109 3451 1111 3452 706 3453 1110 3454 1112 3455 1111 3456 1110 3457 708 3458 1111 3459 1112 3460 1113 3461 708 3462 1112 3463 712 3464 708 3465 1113 3466 1114 3467 712 3468 1113 3469 1115 3470 712 3471 1114 3472 1116 3473 1115 3474 1114 3475 1117 746 1115 3476 1116 746 191 3477 195 3478 193 3479 1007 648 195 649 191 647 1118 1418 1007 1417 191 1419 1009 3480 1007 3481 1118 3482 1119 3483 1009 3484 1118 3483 1011 3483 1009 3484 1119 3483 182 67 1011 67 1119 67 1120 67 1011 67 182 67 180 67 1120 67 182 67 178 67 1120 67 180 67 702 3485 706 3486 704 3487 1109 3487 706 3486 702 3485 1121 3488 1109 3489 702 3490 1110 3491 1109 3492 1121 3493 1122 2677 1110 2679 1121 2678 1123 3494 1110 3495 1122 3496 1124 3495 1123 3494 1122 3496 1125 3497 1123 3498 1124 3499 838 3500 1125 3501 1124 3502 1126 3503 1125 3504 838 3505 1008 3506 853 3507 197 3508 1127 2514 853 2514 1008 2513 1128 3509 1127 3510 1008 3511 626 3512 1127 3513 1128 3514 1129 310 626 311 1128 310 628 3513 626 3512 1129 3514 1130 3515 628 3515 1129 3516 1131 67 628 67 1130 67 1016 67 1131 67 1130 67 173 501 1131 499 1016 499 226 3517 1062 3518 1061 3519 1132 3520 1062 3521 226 3522 1133 3523 1132 3524 226 3525 1064 3526 1132 3527 1133 3528 1134 3529 1064 3530 1133 3531 1065 3532 1064 3533 1134 3534 1135 3535 1065 3536 1134 3537 25 3538 1065 3539 1135 3540 230 3541 25 3542 1135 3543 23 3543 25 3542 230 3541 610 3544 614 3545 612 3546 1136 3547 614 3548 610 3547 1137 1576 1136 1575 610 1575 1100 3549 1136 3550 1137 3551 1138 3552 1100 3553 1137 3554 1098 3555 1100 3556 1138 3557 872 3558 1098 3559 1138 3560 1097 3561 1098 3562 872 3563 149 3564 1097 3565 872 3566 151 3567 1097 3568 149 3569 967 3570 1139 3571 116 3572 1140 3573 1139 3573 967 3574 1141 3575 1140 3576 967 3577 1024 3578 1140 3579 1141 3580 1142 3581 1024 3582 1141 3583 1026 3584 1024 3585 1142 3586 1143 3587 1026 3588 1142 3589 1144 3590 1026 3591 1143 3592 975 3593 1144 3594 1143 3593 92 3595 1144 3596 975 3597 633 3598 416 3599 1145 3598 1146 3600 416 3599 633 3598 637 3601 1146 3602 633 3603 414 3604 1146 3605 637 3606 1147 3607 414 3608 637 3609 410 3610 414 3611 1147 3612 639 3613 410 3614 1147 3615 1148 3616 410 3617 639 3618 643 792 1148 790 639 791 408 3619 1148 3620 643 3619 946 3621 560 3622 558 3623 1149 3624 560 3625 946 3626 1150 3627 1149 3627 946 3628 1151 3629 1149 3630 1150 3630 950 3630 1151 3629 1150 3630 1152 3630 1151 3629 950 3630 952 3631 1152 3632 950 3632 995 3633 1152 3634 952 3635 993 3636 995 3637 952 3638 1154 3639 613 3640 1153 3641 1155 3382 613 3383 1154 3382 1156 3130 1155 3129 1154 3129 1157 1596 1155 1594 1156 1595 1158 1840 1157 1838 1156 1839 511 3642 1157 3643 1158 3644 1156 3645 511 3646 1158 3647 513 3648 511 3649 1156 3650 514 1164 513 1163 1156 1165 1024 3651 354 3652 1140 3652 353 3653 354 3654 1024 3655 1025 3656 353 3657 1024 3658 502 3659 353 3660 1025 3661 1159 3662 502 3663 1025 3664 501 3665 502 3666 1159 3667 1160 1464 501 1464 1159 1463 604 1705 501 1704 1160 1704 1161 3668 604 3669 1160 3670 113 3671 221 3672 111 3673 223 3674 221 3675 113 3676 1162 3677 223 3678 113 3679 1163 506 223 505 1162 506 1164 502 1163 504 1162 504 1165 504 1163 504 1164 502 1166 20 1165 18 1164 19 231 1692 1165 1691 1166 1693 232 3680 231 3681 1166 3682 367 3683 440 3684 369 3685 1167 3686 440 3687 367 3688 1168 3689 1167 3690 367 3691 436 3692 1167 3693 1168 3694 1169 3695 436 3696 1168 3697 1170 65 436 66 1169 65 1171 67 1170 67 1169 67 432 67 1170 67 1171 67 1172 67 432 67 1171 67 327 3698 463 3699 329 3700 1173 3701 463 3702 327 3703 1174 3704 1173 3705 327 3706 467 3707 1173 3708 1174 3709 1175 3710 467 3711 1174 3712 1176 3713 467 3714 1175 3713 1177 67 1176 67 1175 67 471 67 1176 67 1177 67 1178 67 471 67 1177 67 1180 3715 15 3716 1179 3717 1181 3718 15 3719 1180 3720 1182 3721 1181 3722 1180 3723 1183 3724 1181 3725 1182 3726 1184 3430 1183 3430 1182 3429 9 67 1183 67 1184 67 1185 67 9 67 1184 67 7 502 9 504 1185 504 1186 504 7 502 1185 504 158 3727 154 3728 156 3729 1187 3730 154 3731 158 3732 755 3733 1187 3734 158 3735 382 3736 1187 3737 755 3738 753 3739 382 3740 755 3741 378 3742 382 3743 753 3744 754 3745 378 3746 753 3747 861 2137 378 2135 754 2136 860 3748 861 3749 754 3750 865 3751 863 3752 864 3753 1188 3754 863 3755 865 3756 1189 3757 1188 3757 865 3758 1029 3759 1188 3760 1189 3760 1190 3761 1029 3762 1189 3763 1191 3764 1029 3765 1190 3766 1160 3767 1191 3768 1190 3769 1159 1850 1191 1851 1160 1849 1192 3770 422 3770 424 3771 1193 3772 422 3772 1192 3772 1194 3773 1193 3774 1192 3774 627 3775 1193 3776 1194 3777 1195 640 627 638 1194 639 626 1693 627 1692 1195 1691 1196 499 626 501 1195 499 1127 499 626 501 1196 499 1197 2614 880 2612 878 2614 1198 3778 880 3779 1197 3780 1199 3781 1198 3782 1197 3783 882 3784 1198 3785 1199 3786 1200 3787 882 3788 1199 3789 884 3790 882 3791 1200 3792 1126 3793 884 3794 1200 3795 838 3796 884 3797 1126 3798 1201 1097 920 1096 918 1097 1202 3799 920 3800 1201 3801 1203 3802 1202 3803 1201 3804 922 3805 1202 3806 1203 3807 1204 3808 922 3809 1203 3810 924 3811 922 3812 1204 3813 1205 3814 924 3815 1204 3816 1206 3817 924 3818 1205 3819 596 3820 1056 3821 1207 3822 1208 3823 1056 3824 596 3825 598 3826 1208 3827 596 3826 1058 3828 1208 3829 598 3830 1209 3831 1058 3832 598 3833 1210 3834 1058 3835 1209 3836 598 3837 1210 3838 1209 3839 599 3840 1210 3841 598 3842 992 3843 1 3844 994 3845 0 3846 1 3847 992 3848 1211 3847 0 3846 992 3848 1212 3849 0 3850 1211 3851 990 3852 1212 3853 1211 3854 1213 3855 1212 3856 990 3857 305 2428 1213 2428 990 2429 307 2558 1213 2559 305 2559 1214 3858 2 3859 0 3860 1215 3860 2 3859 1214 3858 1216 3861 1215 3862 1214 3863 1217 3864 1215 3864 1216 3865 1218 3866 1217 3864 1216 3865 1219 3867 1217 3868 1218 3869 53 3870 1219 3871 1218 3872 51 3872 1219 3871 53 3870 1215 3873 4 3874 2 3875 1220 2765 4 2764 1215 2766 1217 3876 1220 3877 1215 3876 1221 3876 1220 3877 1217 3876 1222 3878 1221 3879 1217 3879 47 3880 1221 3881 1222 3882 51 3883 47 3884 1222 3885 49 3886 47 3887 51 3888 6 3889 10 3890 8 3891 1050 3892 10 3893 6 3894 1223 3895 1050 3896 6 3897 1047 3898 1050 3898 1223 3899 1224 3900 1047 3901 1223 3902 1044 3903 1047 3904 1224 3905 45 3880 1044 3881 1224 3882 43 3906 1044 3907 45 3908 961 3909 579 3910 752 3911 580 3912 579 3913 961 3914 962 3915 580 3916 961 3917 1225 1181 580 1182 962 1181 964 67 1225 67 962 67 1226 270 1225 269 964 269 965 269 1226 270 964 269 824 2353 1226 2352 965 2351 1019 1096 724 1097 1017 1097 1227 3918 724 3919 1019 3920 1021 3921 1227 3922 1019 3923 723 3924 1227 3925 1021 3926 1228 3927 723 3928 1021 3929 279 3930 723 3931 1228 3932 281 3933 279 3934 1228 3935 7 2163 3 2162 5 2161 1229 2161 3 2162 7 2163 1186 3936 1229 3937 7 3938 996 3128 1229 3127 1186 3939 1230 525 996 524 1186 525 997 526 996 528 1230 527 1231 3940 997 3941 1230 3942 1114 182 1232 184 1116 184 1233 183 1232 184 1114 182 1112 3943 1233 3944 1114 3945 1234 3946 1233 3947 1112 3948 1235 3949 1234 3950 1112 3951 1123 3952 1234 3953 1235 3954 1110 3955 1123 3956 1235 3957 1237 894 1055 895 1236 895 1238 895 1055 895 1237 894 274 3958 1238 3959 1237 3960 1053 3961 1238 3962 274 3963 1239 3964 1053 3965 274 3966 696 3967 1053 3968 1239 3969 272 3970 696 3971 1239 3972 537 3973 533 3974 535 3975 1240 3976 533 3976 537 3977 1241 3976 1240 3976 537 3977 719 1993 1240 1992 1241 1992 1242 3978 719 3979 1241 3980 897 3981 719 3982 1242 3983 895 3984 897 3985 1242 3984 986 1515 1243 1514 984 1514 1244 3986 1243 3987 986 3988 988 3989 1244 3990 986 3991 1245 3992 1244 3993 988 3994 1246 3995 1245 3996 988 3997 121 3998 1245 3999 1246 4000 123 4001 121 4002 1246 4003 540 690 1247 691 542 691 1248 1479 1247 1478 540 1480 536 4004 1248 4005 540 4006 282 4007 1248 4008 536 4009 1249 4010 282 4011 536 4012 278 4013 282 4014 1249 4015 534 4016 278 4017 1249 4018 71 4019 67 4020 69 4021 1250 4022 67 4023 71 4024 1251 4025 1250 4026 71 4027 1252 4028 1250 4029 1251 4030 1253 4031 1252 4032 1251 4033 61 4034 1252 4035 1253 4036 209 4037 61 4038 1253 4039 77 4040 73 4041 75 4042 1254 4043 73 4044 77 4045 929 4046 1254 4047 77 4048 1255 4049 1254 4050 929 4051 928 4052 1255 4053 929 4054 213 1348 1255 1349 928 1350 215 830 213 831 928 829 617 4055 613 4056 615 4057 1153 4058 613 4059 617 4060 1256 4061 1153 4062 617 4063 1154 2550 1153 2551 1256 2549 1257 4064 1154 4065 1256 4066 514 4067 1154 4068 1257 4069 516 4070 514 4071 1257 4072 395 4073 389 4074 397 4074 1258 4075 389 4076 395 4077 391 4078 1258 4079 395 4080 387 4081 1258 4082 391 4083 1259 4084 387 4085 391 4086 155 4087 387 4088 1259 4089 157 4090 155 4091 1259 4092 931 1339 935 1338 933 1340 1081 4093 935 4094 931 4095 79 2772 1081 2773 931 2774 1082 217 1081 216 79 215 81 4096 1082 4097 79 4098 83 1145 1082 1146 81 1147 311 4099 307 4100 309 4101 1260 4102 307 4103 311 4104 1261 4105 1260 4106 311 4107 1212 4108 1260 4109 1261 4110 1214 4111 1212 4112 1261 4113 0 4114 1212 4115 1214 4116 474 1502 847 1501 1262 1500 1263 2943 847 2944 474 2942 1264 2725 1263 2726 474 2727 1265 4117 1263 4118 1264 4119 825 4120 1265 4121 1264 4122 827 1307 1265 1308 825 1306 1266 4123 1210 4124 599 4125 1267 4126 1210 4127 1266 4128 1268 4129 1267 4129 1266 4130 1210 4131 1267 4132 1268 4132 1060 4133 1210 4134 1268 4135 1058 4136 1210 4137 1060 4138 1033 450 372 451 1032 449 1269 4139 372 4140 1033 4141 1035 4142 1269 4143 1033 4144 1270 4145 1269 4146 1035 4147 364 4148 1270 4149 1035 4150 366 4151 1270 4152 364 4153 477 4154 319 4155 317 4156 1271 4157 319 4158 477 4159 475 69 1271 69 477 68 1178 67 1271 67 475 67 473 67 1178 67 475 67 471 67 1178 67 473 67 1039 4160 332 4161 1038 4162 1272 4160 332 4161 1039 4160 1041 1587 1272 1588 1039 1588 1273 4163 1272 4164 1041 4165 324 635 1273 636 1041 637 326 4166 1273 4167 324 4168 1070 1181 999 1182 1068 1181 1001 893 999 4169 1070 892 1274 639 1001 638 1070 640 1005 4170 1001 4171 1274 4172 18 4171 1005 4170 1274 4172 16 4173 1005 4174 18 4175 1245 4176 1243 4177 1244 4178 1275 4179 1243 4179 1245 4180 1276 4181 1275 4182 1245 4183 119 4184 1275 4185 1276 4186 121 4187 119 4188 1276 4189 120 4190 119 4191 121 4192 1234 4193 1232 4194 1233 4195 1277 4196 1232 4196 1234 4197 1278 4198 1277 4199 1234 4200 1279 4201 1277 4202 1278 4203 1123 4204 1279 4205 1278 4206 1125 4207 1279 4208 1123 4209 426 982 359 982 357 984 1280 4210 359 4211 426 4211 428 1175 1280 1177 426 1176 1172 895 1280 894 428 895 430 67 1172 67 428 67 432 67 1172 67 430 67 869 4212 867 4213 868 4214 1281 4215 867 4216 869 4217 1282 4216 1281 4215 869 4217 1283 4218 1281 4219 1282 4220 1284 4221 1283 4222 1282 4221 1161 4223 1283 4224 1284 4225 757 4226 761 4227 759 4228 1089 4229 761 4230 757 4231 160 4232 1089 4233 757 4234 1090 4235 1089 4236 160 4237 162 1153 1090 1152 160 1151 164 3877 1090 3877 162 3876 1138 4238 871 4239 872 4240 1285 4241 871 4242 1138 4243 1137 4244 1285 4245 1138 4246 1286 4247 1285 4248 1137 4249 610 2129 1286 2130 1137 2131 608 4250 1286 4251 610 4252 1288 4253 680 4254 1287 4255 679 3757 680 3757 1288 3758 1289 4256 679 4257 1288 4258 1241 3074 679 3076 1289 3074 1288 1341 1241 1342 1289 1342 1242 1153 1241 1151 1288 1152 504 4259 353 4260 502 4261 355 4262 353 4262 504 4263 1290 4264 355 4265 504 4266 425 4267 355 4268 1290 4269 510 1502 425 1501 1290 1500 512 4270 425 4271 510 4272 690 4273 692 4274 691 4275 1291 4276 692 4277 690 4278 801 4279 1291 4280 690 4281 1292 4282 1291 4283 801 4284 592 4285 1292 4286 801 4287 594 3601 1292 3602 592 3603 1083 2766 108 2764 935 2765 106 4288 108 4289 1083 4290 1085 3362 106 3362 1083 3363 104 4291 106 4292 1085 4292 102 4293 104 4294 1085 4295 1091 4251 189 4250 761 4252 187 4296 189 4297 1091 4298 1093 3384 187 3384 1091 3385 185 1316 187 1315 1093 1315 183 4299 185 4300 1093 4301 829 4302 1265 4303 827 4304 1293 3663 1265 3664 829 3662 845 4305 1293 4306 829 4307 1265 4308 1293 4309 845 4310 1263 4311 1265 4312 845 4313 1256 4314 516 4315 1257 4316 1294 4317 516 4318 1256 4319 1295 4320 1294 4321 1256 4320 516 4318 1294 4317 1295 4319 517 4322 516 4322 1295 4323 669 4292 684 4291 671 4291 1296 4324 684 4325 669 4326 667 4327 1296 4328 669 4329 887 4330 1296 4331 667 4332 886 4333 887 4334 667 4335 363 67 1171 67 365 67 1297 894 1171 895 363 895 1298 997 1297 998 363 999 1172 999 1297 998 1298 997 1280 998 1172 999 1298 997 507 1310 607 1309 1299 1311 1300 504 607 502 507 504 505 67 1300 67 507 67 605 67 1300 67 505 67 503 67 605 67 505 67 1301 269 584 270 586 269 582 4336 584 4337 1301 4338 1302 4339 582 4340 1301 4341 236 3551 582 3550 1302 3549 238 4342 236 4343 1302 4344 1295 4323 518 4345 517 4322 1303 4346 518 4347 1295 4348 1304 4349 1303 4350 1295 4351 518 4352 1303 4353 1304 4354 520 4355 518 4356 1304 4357 1304 4358 522 4359 520 4360 619 4361 522 4362 1304 4363 1305 4364 619 4365 1304 4366 617 4367 619 4368 1305 4369 1256 4370 617 4371 1305 4372 891 4373 1306 4374 889 4375 1307 4376 1306 4377 891 4378 1287 4379 1307 4380 891 4381 682 4382 1307 4383 1287 4384 680 1468 682 1467 1287 1466 1308 4385 1193 4386 627 4387 422 4388 1193 4388 1308 4389 1309 3769 422 3767 1308 3768 420 1461 422 1460 1309 1462 631 1460 420 1461 1309 1462 1166 651 233 650 232 652 1310 4390 233 4391 1166 4392 1164 4393 1310 4394 1166 4395 116 4396 1310 4397 1164 4398 115 4399 116 4400 1164 4401 1311 4402 592 4403 801 4404 1312 4405 592 4406 1311 4407 1313 4406 1312 4405 1311 4407 811 4408 1312 4409 1313 4410 1314 4411 811 4412 1313 4413 1315 4414 1292 4415 594 4416 1291 4417 1292 4418 1315 4419 1316 4420 1291 4420 1315 4421 692 2534 1291 2533 1316 2533 694 4422 692 4423 1316 4424 1225 892 1317 893 580 4169 479 4425 1317 4426 1225 4427 1226 4428 479 4429 1225 4430 235 4431 479 4432 1226 4433 315 4434 235 4435 1226 4436 1052 46 1056 45 1054 45 1207 4437 1056 4438 1052 4439 1315 4440 1207 4441 1052 4442 596 4443 1207 4444 1315 4445 594 4446 596 4447 1315 4448 1320 4449 1319 4449 1318 4450 1321 4451 1319 4452 1320 4452 1266 4453 1321 4454 1320 4455 601 4456 1321 4457 1266 4458 599 4459 601 4460 1266 4461 229 892 1165 892 231 893 1163 67 1165 67 229 67 1322 894 1163 895 229 895 223 996 1163 994 1322 995 225 4462 223 4463 1322 4464 1270 4465 372 4466 1269 4467 1323 4468 372 4469 1270 4470 366 4471 1323 4472 1270 4473 370 4474 1323 4474 366 4475 368 4476 370 4477 366 4478 611 4479 607 4480 609 4481 1299 4482 607 4483 611 4484 1157 4485 1299 4486 611 4487 507 4488 1299 4489 1157 4490 509 3483 507 3483 1157 3484 323 67 1177 67 325 67 1324 67 1177 67 323 67 1325 1182 1324 1181 323 1181 1178 1181 1324 1181 1325 1182 1271 1181 1178 1181 1325 1182 622 4491 624 4492 623 4493 1326 4494 624 4495 622 4496 1327 4495 1326 4494 622 4496 1328 4497 1326 4498 1327 4499 1329 4500 1328 4500 1327 4501 1273 4502 332 4503 1272 4504 1330 4505 332 4506 1273 4507 326 4508 1330 4509 1273 4510 330 4511 1330 4512 326 4513 328 4514 330 4515 326 4516 1121 4517 834 4518 836 4519 1331 4520 834 4521 1121 4522 702 4523 1331 4524 1121 4525 700 1830 1331 1831 702 1829 850 1172 847 1174 848 1173 1262 4526 847 4527 850 4528 472 994 1262 996 850 995 474 506 1262 505 472 506 94 4529 87 4530 89 4531 1088 4532 87 4533 94 4534 96 4535 1088 4536 94 4537 98 2514 1088 2513 96 2514 1296 4538 682 4539 684 4540 1306 4541 682 4542 1296 4543 887 4544 1306 2829 1296 2830 889 4545 1306 4546 887 4547 1332 4548 204 4549 202 4548 64 4550 204 4551 1332 4552 1333 4553 64 4554 1332 4553 66 4553 64 4554 1333 4553 1334 4555 1218 4556 1216 4557 1335 4558 1218 4559 1334 4560 313 4561 1335 4562 1334 4563 59 4564 1335 4565 313 4566 1336 4567 1179 4568 1310 4569 1180 4570 1179 4571 1336 4572 562 1587 1180 4573 1336 1587 1337 4574 1180 4575 562 4576 1230 4577 1182 4578 1231 4579 1184 3430 1182 3429 1230 3430 1186 67 1184 67 1230 67 1185 67 1184 67 1186 67 1074 4580 620 4581 1072 4582 1338 4583 620 4584 1074 4585 1327 4586 1338 4587 1074 4588 622 4589 1338 4590 1327 4591 1049 4592 10 4593 1050 4594 1339 4595 10 4596 1049 4597 12 4598 1339 4599 1049 4600 10 4601 1339 4602 12 4603 995 4604 1151 4605 1152 4606 1340 4606 1151 4605 995 4604 997 4607 1340 4608 995 4609 1231 4610 1340 4611 997 4612 1133 4613 1135 4614 1134 4615 1341 4616 1135 4617 1133 4618 226 4619 1341 4620 1133 4621 228 4621 1341 4620 226 4619 1221 2766 4 2764 1220 2765 1342 2765 4 2764 1221 2766 1223 4622 1342 4623 1221 4624 6 4625 1342 4626 1223 4627 1189 1463 1160 1464 1190 1465 1343 4628 1160 4629 1189 4630 1283 4631 1343 4632 1189 4633 1161 1479 1343 1480 1283 1478 175 4634 168 4635 170 4636 1096 4637 168 4638 175 4639 177 1624 1096 1625 175 1623 179 2514 1096 2513 177 2514 974 506 95 506 93 505 1344 67 95 67 974 67 972 3484 1344 3483 974 3483 970 4489 1344 4488 972 4490 1015 67 176 67 174 67 1345 67 176 67 1015 67 1013 524 1345 525 1015 525 1011 525 1345 525 1013 524 1255 3856 73 3855 1254 3857 1346 4640 73 4641 1255 4642 1251 4643 1346 4644 1255 4645 71 4646 1346 4647 1251 4648 1347 4649 1125 4650 1126 4651 1279 4652 1125 4653 1347 4654 1348 4655 1279 4656 1347 4657 1277 2570 1279 2569 1348 2570 1349 69 601 68 603 69 1319 4658 601 4659 1349 4660 1350 3084 1319 3083 1349 3085 1318 4661 1319 4662 1350 4663 402 4664 398 4665 400 4666 1351 4664 398 4665 402 4664 649 4667 1351 4668 402 4668 394 4669 1351 4668 649 4667 420 4670 416 4671 418 4672 1145 4673 416 4674 420 4675 631 4676 1145 4677 420 4678 633 301 1145 301 631 300 585 1588 603 1587 587 1587 1349 1587 603 1587 585 1588 583 4679 1349 4680 585 4681 1350 4682 1349 4683 583 4684 1284 4685 608 4686 606 4687 1286 2690 608 2689 1284 2691 1282 4688 1286 4689 1284 4688 1285 4690 1286 4691 1282 4692 659 4693 657 4694 658 4695 1352 4696 657 4697 659 4698 661 4699 1352 4700 659 4701 663 4702 1352 4703 661 4704 1283 4218 867 4220 1281 4219 1353 4705 867 4706 1283 4707 1189 4708 1353 4709 1283 4710 865 4710 1353 4709 1189 4708 1223 4711 45 4712 1224 4713 1354 4714 45 4715 1223 4716 1221 4717 1354 4718 1223 4719 47 4720 1354 4721 1221 4722 807 4723 802 4724 803 4725 1314 4726 802 4727 807 4728 809 4535 1314 4536 807 4537 811 2514 1314 2513 809 2514 226 4729 222 4730 224 4731 1355 4732 222 4733 226 4734 216 4735 1355 4736 226 4737 218 4738 1355 4739 216 4740 656 4741 715 4742 654 4743 711 1958 715 1957 656 1959 657 4744 711 4745 656 4746 1352 4747 711 4748 657 4749 649 4750 645 4751 647 4752 1356 4753 645 4754 649 4755 402 4756 1356 4757 649 4758 404 4759 1356 4760 402 4761 1251 4762 209 4763 1253 4764 1357 4765 209 4766 1251 4767 1255 4768 1357 4769 1251 4770 213 4771 1357 4772 1255 4773 1181 4774 13 4775 15 4776 1358 4777 13 4778 1181 4779 1183 4780 1358 4780 1181 4781 9 67 1358 67 1183 67 1028 4383 1031 4384 1030 4382 1359 4782 1031 4783 1028 4782 1026 4784 1359 4785 1028 4785 1144 4786 1359 4787 1026 4788 1144 4381 1031 4379 1359 4380 1360 4789 1031 4790 1144 4791 92 4792 1360 4793 1144 4794 90 4795 1360 4796 92 4797 630 4798 634 4799 632 4800 1361 4801 634 4802 630 4803 628 3238 1361 3239 630 3237 1131 892 1361 893 628 892 1131 4804 634 4805 1361 4806 1362 4781 634 4781 1131 4780 173 4807 1362 4808 1131 4809 171 4810 1362 4811 173 4812 1363 67 98 67 100 67 1364 505 98 506 1363 506 1085 4813 1364 4814 1363 4815 1086 4816 1364 4817 1085 4818 288 1355 284 1356 286 1354 1247 4819 284 4820 288 4821 544 4822 1247 4823 288 4824 542 474 1247 474 544 473 1365 67 179 67 181 67 1366 502 179 504 1365 504 1093 871 1366 873 1365 872 1094 4825 1366 4826 1093 4827 1367 3976 1287 3977 895 4828 1288 4829 1287 4830 1367 4831 895 1153 1288 1152 1367 1151 1242 3876 1288 3877 895 3876 408 4832 404 4833 406 4834 1368 4835 404 4836 408 4837 643 1293 1368 1291 408 1293 645 1366 1368 1367 643 1368 1264 3115 478 3117 825 3116 476 3116 478 3117 1264 3115 474 1181 476 1181 1264 1182 717 4838 651 4839 652 4840 1369 4553 651 4553 717 4554 1370 4553 1369 4553 717 4554 716 4841 1370 4842 717 4843 1117 4844 1370 4844 716 4845 714 4846 1117 4847 716 4848 672 69 1102 69 670 68 1103 67 1102 67 672 67 1104 67 1103 67 672 67 681 4849 673 4850 683 4851 675 4852 673 4853 681 4854 676 4855 675 4856 681 4857 1290 505 508 506 510 506 506 506 508 506 1290 505 504 2912 506 2913 1290 2914 1036 67 855 67 854 67 856 67 855 67 1036 67 1034 67 856 67 1036 67 362 4858 1037 4859 360 4860 1035 638 1037 640 362 639 364 4861 1035 4862 362 4863 529 4864 875 4865 527 4866 874 4867 875 4868 529 4869 873 4870 874 4871 529 4872 369 4873 373 4874 371 4875 442 4876 373 4877 369 4878 440 4879 442 4880 369 4881 1345 67 178 67 176 67 1120 67 178 67 1345 67 1011 67 1120 67 1345 67 1371 67 1127 67 1196 67 853 67 1127 67 1371 67 356 67 853 67 1371 67 1371 67 354 67 356 67 1140 67 354 67 1371 67 1139 67 1140 67 1371 67 1371 67 1336 67 1139 67 562 67 1336 67 1371 67 561 67 562 67 1371 67 1371 67 886 67 561 67 316 67 886 67 1371 67 234 67 316 67 1371 67 1371 67 581 67 234 67 1372 67 581 67 1371 67 1373 67 1372 67 1371 67 271 4882 1374 2610 269 2610 1375 317 1374 316 271 4883 275 4884 1375 4885 271 4886 1371 67 1376 67 1373 67 1377 67 1376 67 1371 67 1196 67 1377 67 1371 67 1344 67 97 67 95 67 1108 67 97 67 1344 67 970 68 1108 69 1344 69 600 502 589 504 602 504 591 504 589 504 600 502 593 4887 591 4888 600 4889 802 4890 1311 4891 801 4892 1313 4893 1311 4894 802 4895 1314 4896 1313 4897 802 4898 57 4899 1335 4900 59 4901 53 4902 1335 4903 57 4904 55 4905 53 4906 57 4907 1378 506 1312 505 811 506 592 4410 1312 4409 1378 4408 590 1590 592 1589 1378 1590 1229 4908 1 4909 3 4910 994 4911 1 4912 1229 4913 996 4914 994 4915 1229 4916 1179 4917 233 4918 1310 4919 17 4920 233 4921 1179 4922 15 4923 17 4924 1179 4925 932 2779 215 2780 930 2778 217 3357 215 3358 932 3359 219 4926 217 4927 932 4928 1298 1174 359 1173 1280 1172 361 281 359 279 1298 280 363 1502 361 1500 1298 1501 1042 1181 890 1181 888 1182 892 502 890 504 1042 504 1040 504 892 502 1042 504 322 1587 1043 1587 320 1588 1041 67 1043 67 322 67 324 894 1041 895 322 895 329 4929 333 4930 331 4931 461 4932 333 4933 329 4934 463 4935 461 4936 329 4937 365 3962 1168 3963 367 3961 1169 525 1168 524 365 525 1171 67 1169 67 365 67 325 4938 1174 4939 327 4940 1175 4780 1174 4781 325 4780 1177 67 1175 67 325 67 1379 4941 1076 4942 1329 4943 1074 4944 1076 4945 1379 4946 1327 4947 1074 4948 1379 4949 1380 4950 103 4951 1106 4952 105 4953 103 4954 1380 4955 110 3767 105 3769 1380 3768 948 4956 1150 4957 946 4958 950 3766 1150 3766 948 3764 949 3765 950 3766 948 3764 1337 4959 1149 4960 1231 4961 560 4962 1149 4963 1337 4964 562 4965 560 4966 1337 4967 1381 505 549 506 1105 506 547 4968 549 4969 1381 4970 545 4971 547 4972 1381 4973 1382 1308 184 1307 1118 1306 186 4974 184 4975 1382 4976 191 4977 186 4978 1382 4979 978 4980 546 4981 976 4982 548 4983 546 4984 978 4985 550 4986 548 4987 978 4988 1383 4989 593 4990 600 4991 595 4992 593 4993 1383 4994 600 1611 595 1613 1383 1612 1384 4995 755 4996 158 4997 757 1708 755 1707 1384 1706 160 677 757 679 1384 678 1385 1637 760 1635 763 1636 758 2141 760 2140 1385 2142 763 684 758 685 1385 683 1386 4998 1154 4999 514 5000 1156 3130 1154 3129 1386 3130 514 300 1156 301 1386 301 1387 2781 929 2782 77 2781 931 2771 929 2770 1387 2769 79 2772 931 2774 1387 2773 1388 5001 934 5002 219 5003 932 2408 934 2408 1388 2410 219 5003 932 5002 1388 5001 1325 5004 319 5005 1271 5006 321 5007 319 5008 1325 5009 323 892 321 893 1325 4169 1124 5010 836 5011 838 5012 1121 5013 836 5014 1124 5015 1122 2677 1121 2678 1124 2679 1389 5016 676 5017 681 5018 677 5019 676 5020 1389 5021 681 5022 677 5023 1389 5024 1390 5025 1241 5026 537 5027 679 3076 1241 3074 1390 3075 539 5028 679 5029 1390 5030 1391 5031 705 5032 849 5033 703 5034 705 5035 1391 5036 844 5037 703 5038 1391 5039 668 5040 557 5041 559 5042 670 5043 557 5044 668 5045 26 3295 1069 3294 28 3296 24 895 1069 894 26 895 229 5046 225 5047 1322 5048 227 5049 225 5050 229 5051 207 5052 210 5053 1063 5054 208 5055 210 5056 207 5057 1261 5058 1216 5059 1214 5060 1334 5061 1216 5062 1261 5063 893 5064 1287 5065 891 5066 895 5067 1287 5068 893 5069 990 4131 992 4132 991 5070 1211 5071 992 5072 990 5073 913 5074 1302 5075 1301 5076 911 5076 1302 5075 913 5074 915 2513 1301 2514 586 2514 913 2730 1301 2729 915 2728 1161 5077 606 5078 604 5079 1284 5080 606 5081 1161 5082 488 5083 490 5084 572 5085 489 5086 490 5087 488 5088 264 5089 268 5090 266 5091 697 5092 268 5093 264 5094 42 5095 1000 5096 1002 5097 40 5098 1000 5099 42 5100 743 2363 741 2364 879 2365 742 2366 741 2367 743 2368 249 791 253 792 491 790 251 790 253 792 249 791 512 5101 427 5102 425 5103 429 5104 427 5105 512 5106 567 5107 565 5108 740 5109 566 5110 565 5111 567 5112 1135 5113 228 5114 230 5115 1341 4616 228 4618 1135 4617 1316 5116 1052 5117 694 5118 1315 5119 1052 5120 1316 5121 458 5122 460 5123 655 5124 459 5125 460 5126 458 5127 466 5128 660 5129 464 5130 468 5131 660 5132 466 5133 945 5134 558 5135 556 5136 946 5137 558 5138 945 5139 1392 5140 1266 5141 1320 5142 1268 5143 1266 5144 1392 5145 1084 2071 83 2072 85 2073 1082 3982 83 3981 1084 3983 209 2260 213 2261 211 2259 1357 5146 213 5147 209 5148 437 5149 519 5150 439 5151 435 5152 519 5153 437 5154 465 5155 1173 5156 467 5157 463 5158 1173 5159 465 5160 1059 67 1055 67 1057 67 1236 67 1055 67 1059 67 258 5161 262 5162 260 5163 693 5164 262 5165 258 5166 571 5167 569 5168 744 5169 570 5169 569 5168 571 5167 524 5170 619 5171 621 5172 522 1439 619 5173 524 1438 575 5174 573 5175 748 5176 574 5177 573 5178 575 5179 747 5180 745 5181 883 5182 746 5183 745 5184 747 5185 438 5186 1167 5187 436 5188 440 5189 1167 5190 438 5191 1170 65 434 65 436 66 432 67 434 67 1170 67 261 5192 265 5193 499 5194 263 5195 265 5196 261 5197 882 5198 880 5199 1198 5200 881 5201 880 5202 882 5203 243 1151 247 1153 487 1152 245 5204 247 5205 243 5206 484 688 486 686 576 687 485 3130 486 3129 484 3130 496 5207 498 5208 564 5209 497 5210 498 5211 496 5212 192 1627 857 1628 765 1626 194 1624 857 1625 192 1623 255 5213 259 5214 495 5215 257 5216 259 5217 255 5218 252 708 256 707 254 706 689 1660 256 1659 252 1661 492 1537 494 1538 568 1538 493 5219 494 5220 492 5221 904 5222 294 5223 296 5224 906 5225 294 5226 904 5227 1119 506 184 505 182 506 1118 506 184 505 1119 506 1126 5228 1199 5229 1347 5230 1200 5231 1199 5232 1126 5233 1010 4545 1128 4547 1008 4546 1012 5234 1128 5235 1010 5236 1012 5237 1129 5238 1128 5238 1014 5239 1129 5240 1012 5241 1014 5242 1130 5243 1129 5244 1016 525 1130 525 1014 524 860 5245 766 5246 765 5246 754 5247 766 5248 860 5249 837 5250 884 5251 838 5252 885 5253 884 5254 837 5255 751 5256 749 5257 835 5258 750 5259 749 5260 751 5261 579 5262 577 5263 752 5264 578 5265 577 5266 579 5267 1372 1573 583 1574 581 1573 1350 4682 583 4684 1372 4683 1393 2610 1203 2611 1201 2610 1394 5268 1203 5269 1393 5270 1348 1455 1199 1456 1197 1455 1347 5271 1199 5272 1348 5273 239 665 481 667 237 666 241 5274 481 5275 239 5276 480 5277 1317 5278 479 5279 482 4173 1317 4175 480 4174 1049 5280 1006 5281 12 5282 1004 5283 1006 5284 1049 5285 423 5286 419 5287 738 5287 421 5288 419 5289 423 5290 737 5291 735 5292 927 5293 736 5294 735 5295 737 5296 926 5297 924 5298 1206 5299 925 2758 924 2760 926 2758 1205 5300 1203 5301 1394 5302 1204 5303 1203 5304 1205 5305 1340 3630 1149 3630 1151 3629 1231 5306 1149 5307 1340 5307 642 1738 646 1737 644 1736 840 2439 646 2441 642 2440 147 5308 143 5309 145 5310 870 5311 143 5312 147 5313 1360 5314 132 5315 1031 5316 90 5317 132 5318 1360 5319 398 1090 394 1091 396 1090 1351 5320 394 5321 398 5322 44 5323 48 5324 982 5325 46 5326 48 5327 44 5328 1248 5329 284 5330 1247 5331 282 5332 284 5333 1248 5334 922 5335 920 5336 1202 5337 921 5338 920 5339 922 5340 733 5341 731 5342 923 5343 732 225 731 224 733 226 417 5344 413 5345 734 5346 415 2535 413 2535 417 2536 411 5347 407 5348 730 5349 409 5350 407 5351 411 5352 648 5353 392 5354 650 5355 842 5356 392 5357 648 5358 445 5359 443 5360 876 5361 444 5362 443 5363 445 5364 80 5365 76 5366 122 5367 78 5368 76 5369 80 5370 344 5371 348 5372 721 5373 346 5374 348 5375 344 5376 1080 5377 1076 5378 1078 5379 1329 2024 1076 2025 1080 2024 1077 5380 1073 5381 1099 5382 1075 5383 1073 5384 1077 5385 67 5386 1252 5387 65 5388 1250 5389 1252 5390 67 5391 141 5392 137 5393 139 5394 866 5395 137 5396 141 5397 50 2950 54 2951 979 2951 52 5398 54 5399 50 5400 1092 474 164 474 166 473 1090 5401 164 5401 1092 5401 307 5402 1212 5403 1213 5404 1260 5405 1212 5406 307 5407 1358 994 11 996 13 995 9 506 11 505 1358 506 1025 5408 1191 5409 1159 5410 1027 3134 1191 3136 1025 3135 63 5411 1252 5412 61 5413 65 5414 1252 5415 63 5416 611 1597 1155 1598 1157 1599 613 5417 1155 5418 611 5419 973 5420 1143 5421 1142 5422 975 1399 1143 1399 973 1400 971 945 1142 944 1141 945 973 5423 1142 5424 971 5425 969 5426 1141 5427 967 5428 971 5429 1141 5429 969 5430 1100 5431 614 5432 1136 5433 1101 5434 614 5435 1100 5436 1107 267 103 268 101 266 1106 5437 103 5438 1107 5439 843 4631 829 4633 699 4632 845 4632 829 4633 843 4631 1305 5098 1295 5100 1256 5100 1304 5440 1295 5441 1305 5442 625 4497 1326 4498 1328 4497 624 4499 1326 4498 625 4497 405 5443 401 5444 726 5445 403 5446 401 5447 405 5448 404 5449 645 5450 1356 5451 1368 5452 645 5453 404 5454 1023 3130 686 5455 246 3129 805 5456 686 5457 1023 5458 338 5459 342 5460 720 5461 340 5462 342 5463 338 5464 636 5465 1362 5466 171 5467 634 5466 1362 5466 636 5465 729 5468 727 5469 919 5470 728 5471 727 5472 729 5473 1139 5474 1310 5475 116 5476 1336 5477 1310 5478 1139 5477 1162 5479 115 5480 1164 5481 113 3512 115 3514 1162 3513 1337 5482 1182 5483 1180 5484 1231 1831 1182 1830 1337 1829 1364 2391 1087 2390 98 2392 1086 5485 1087 5486 1364 5487 1363 5488 102 5489 1085 5490 100 272 102 271 1363 272 51 3869 1217 3868 1219 3867 1222 5491 1217 5492 51 5493 629 645 1308 644 627 646 631 5494 1308 5495 629 5496 850 998 666 997 472 999 665 5497 666 5498 850 5499 543 4813 1381 4814 1105 4815 545 5500 1381 5501 543 5502 852 1799 663 1798 665 1797 709 5503 663 5504 852 5505 1115 5506 714 5507 712 5508 1117 5509 714 5510 1115 5511 1366 4889 1095 4887 179 4888 1094 5512 1095 5513 1366 5514 1365 5515 183 5516 1093 5517 181 506 183 505 1365 506 1176 3713 469 3713 467 3714 471 67 469 67 1176 67 1352 5518 709 5519 711 5520 663 5521 709 5522 1352 5523 813 67 1378 67 811 67 590 67 1378 67 813 67 831 502 828 504 963 504 830 2943 828 2942 831 2944 20 996 1274 995 1070 994 18 5524 1274 5525 20 5526 470 5131 660 5132 468 5131 662 5527 660 5528 470 5529 311 5530 1334 5530 1261 5531 313 859 1334 860 311 860 74 966 70 967 118 965 72 963 70 964 74 962 869 5532 1285 5533 1282 5534 871 5535 1285 5536 869 5537 1067 3037 999 3037 998 3039 1068 1181 999 1182 1067 1182 1066 5538 30 5539 28 5540 32 5541 30 5542 1066 5543 275 3619 271 5544 273 3620 523 5545 877 5546 521 5547 376 5548 372 5549 374 5550 241 5551 483 5552 481 5553 272 5554 1239 5555 274 5556 519 5557 435 5558 433 5559 1053 1400 1055 1399 1238 1399 601 5560 1319 5561 1321 5562 1056 5563 1208 5564 1058 5565 1237 5566 276 5567 274 5568 431 4120 429 4122 515 4121 1053 5569 696 5570 1051 5571 910 3128 244 3127 909 3128 1302 5572 911 5573 238 5574 25 5575 27 5576 1065 5577 901 2844 899 2843 951 2845 901 5578 903 5579 902 5580 384 5581 450 5582 385 5583 304 5403 302 5404 774 5402 6 2767 4 2767 1342 2768 14 5584 1005 5585 16 5586 117 5587 1275 5587 119 5588 988 5589 986 5590 987 5591 988 5592 123 5593 1246 5594 536 5595 534 5596 1249 5597 278 5598 280 5599 282 5600 905 5601 903 5602 947 5603 818 5604 816 5605 817 5606 771 5607 772 5608 773 5609 298 5610 302 5611 300 5612 301 5613 900 5614 299 5615 787 5616 796 5617 785 5618 1029 5619 1191 5620 1027 5621 382 5622 378 5623 380 5624 379 5625 446 5626 381 5627 447 5628 449 5629 448 5630 1177 67 1324 67 1178 67 783 5631 792 5632 781 5633 822 5634 820 5635 821 5636 957 5637 958 5638 959 5639 121 5640 1276 5641 1245 5642 719 1993 533 1992 1240 1992 387 5643 389 5644 1258 5645 719 5646 897 5647 718 5648 345 5649 343 5650 341 5651 296 3745 297 3746 299 3747 310 5652 308 5653 770 5654 1021 1084 281 1085 1228 1086 775 5655 819 5656 773 5657 536 5658 540 5659 538 5660 199 5661 981 5662 980 5663 140 5664 144 5665 142 5666 140 701 138 701 786 700 82 5667 126 5667 84 5668 315 4434 1226 4436 824 4435 1001 5278 1005 5277 1003 5279 983 5669 35 5670 37 5671 637 686 633 688 635 687 1004 5672 1046 5673 1002 5674 391 5675 395 5676 393 5677 795 5678 793 5679 794 5680 783 5681 784 5682 785 5683 416 5684 1146 5685 414 5686 410 1128 1148 1130 408 1129 983 5687 981 5688 1071 5689 53 5690 1218 5691 1335 5692 163 5693 841 5694 165 5695 379 5696 377 5697 375 5698 818 5699 820 5700 956 5699 373 5701 442 5702 375 5703 134 1492 138 1490 136 1491 1123 5704 1278 5705 1234 5706 1112 5707 1110 5708 1235 5709 45 781 1354 782 47 781 1064 5710 1062 5711 1132 5712 391 5713 157 5714 1259 5715 637 1858 639 1859 1147 1860 867 4706 1353 4705 865 4707 146 5716 150 5717 148 5718 941 2801 985 5719 939 2802 204 5720 64 5721 62 5722 1112 5723 1114 5724 1113 5725 795 5699 797 5700 940 5726 706 5309 1111 5310 708 5308 715 1957 711 1958 713 1957 511 5727 509 5728 1157 5729 1161 5730 1160 5731 1343 5732 787 5733 788 5734 789 5735 1171 895 1297 894 1172 895 799 2306 797 2307 798 2306 607 502 1300 504 605 504 129 5736 800 5737 789 5738 847 2399 1263 2401 845 2400 134 5739 130 5740 790 5741 73 5742 1346 5743 71 5744 712 5745 710 5746 708 5747 834 5748 1331 5749 700 5750 218 5751 222 5752 1355 5753 643 5754 639 5755 641 5756 382 3856 154 3855 1187 3857 384 5757 383 5758 381 5759 529 1456 531 1455 873 1455 622 5760 620 5761 1338 5762 1029 3759 863 5763 1188 3760 799 5764 127 5765 944 5766 667 1588 561 1587 886 1587 125 5767 989 5768 943 5769 410 5770 412 5771 414 5771 146 5772 144 5773 782 5774 1379 5775 1329 5776 1327 5777 674 67 1104 67 672 67 1106 5778 110 5779 1380 5780 350 5643 352 5644 722 5645 330 5781 332 5782 1330 5783 345 5784 453 5785 347 5786 682 5787 1306 5788 1307 5789 339 5790 457 5791 341 5792 631 3767 1309 3769 1308 3768 456 5793 454 5794 455 5795 339 5796 337 5797 335 5798 333 5799 461 5800 335 5801 1118 1414 191 1416 1382 1415 723 5802 724 5803 1227 5804 310 5805 314 5806 312 5807 957 5808 1018 5809 955 5810 941 5811 942 5812 943 5813 775 3255 776 3257 777 3255 160 5814 1384 5815 158 5816 291 2387 823 2389 777 2388 298 5817 293 5818 778 5819 822 5820 287 5821 960 5822 79 2410 1387 2408 77 2408 285 5823 1022 5824 959 5825 1021 1091 1019 1090 1020 1091 771 5826 815 5827 769 5828 370 1801 372 1800 1323 1801 304 5829 308 5830 306 5831 539 5832 1390 5833 537 5834 482 5835 580 5836 1317 5837 849 2554 844 2553 1391 2552

+
+
+
+ + + + 27105 -819 0 27105 15596 0 25778 -819 8376 25778 15596 8376 21928 -819 15932 21928 15596 15932 15932 -819 21928 15932 15596 21928 8376 -819 25778 8376 15596 25778 0 -819 27105 0 15596 26500 -8376 -819 25778 -8376 15596 25778 -15932 -819 21928 -15576 15596 21439 -21928 -819 15932 -21928 15596 15932 -25778 -819 8376 -25203 15596 8189 -27105 -819 0 -27105 15596 0 -25778 -819 -8376 -25203 15596 -8189 -21928 -819 -15932 -21928 15596 -15932 -15932 -819 -21928 -15932 15596 -21928 -8376 -819 -25778 -8376 15596 -25778 -8007 19122 24643 0 19122 25539 6744 19122 24144 0 25709 17935 4644 25709 18779 3063 30266 9429 8020 30266 5827 0 31837 0 9914 30266 0 8020 30266 -5827 18858 25709 0 15256 25709 -11084 25956 18611 0 20998 18611 -15256 21928 15596 -15932 8020 18611 -24685 8376 15596 -25778 -8020 18611 -24685 -20878 19122 -13875 -24289 19122 -7892 -25911 19122 0 -17057 25709 -5542 -17957 25709 0 -9914 30266 0 -17057 25709 5542 -24289 19122 7892 -20963 19122 15230 -14528 25709 10555 -8020 30266 5827 -10542 25709 14509 -15011 19122 20661 -5549 25709 17078 -3063 30266 9429 -8020 30266 -5827 -16424 25709 -10220 -5827 25709 -17935 27105 -10160 0 21928 -10160 15932 0 -10160 0 8376 -10160 25778 -8376 -10160 25778 -21928 -10160 15932 -27075 -10160 0 -21928 -10160 -15932 20998 18611 15256 15256 25709 11084 5827 25709 -17935 -3063 30266 -9429 3063 30266 -9429 -8366 -10160 -25750 21904 -10160 -15914 8366 -10160 -25750 + + + + + + + + + + 4.67578125 0.26171875 4.67578125 0.982421875 4.4921875 0.26171875 4.4921875 0.982421875 4.310546875 0.26171875 4.310546875 0.982421875 4.126953125 0.26171875 4.126953125 0.982421875 3.943359375 0.26171875 3.943359375 0.982421875 3.76171875 0.26171875 3.76171875 0.982421875 3.578125 0.26171875 3.578125 0.982421875 3.39453125 0.26171875 3.39453125 0.982421875 3.212890625 0.26171875 3.212890625 0.982421875 3.029296875 0.26171875 3.029296875 0.982421875 2.845703125 0.26171875 2.845703125 0.982421875 2.6640625 0.26171875 2.6640625 0.982421875 2.48046875 0.26171875 2.48046875 0.982421875 2.296875 0.26171875 2.296875 0.982421875 2.115234375 0.26171875 2.115234375 0.982421875 0.349609375 0.0078125 0.3984375 0.0078125 0.44921875 0.0078125 0.498046875 0.0078125 0.599609375 0.0078125 0.69921875 0.0078125 0.798828125 0.0078125 0.8984375 0.0078125 0.998046875 0.0078125 0.048828125 0.0078125 0.099609375 0.0078125 0.1484375 0.0078125 0.19921875 0.0078125 0.248046875 0.0078125 0.298828125 0.0078125 0 0.0078125 0.6484375 0.0078125 0.548828125 0.0078125 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 1 1 0 0 3 3 1 1 2 2 4 4 3 3 2 2 5 5 3 3 4 4 6 6 5 5 4 4 7 7 5 5 6 6 8 8 7 7 6 6 9 9 7 7 8 8 10 10 9 9 8 8 11 11 9 9 10 10 12 12 11 11 10 10 13 13 11 11 12 12 14 14 13 13 12 12 15 15 13 13 14 14 16 16 15 15 14 14 17 17 15 15 16 16 18 18 17 17 16 16 19 19 17 17 18 18 20 20 19 19 18 18 21 21 19 19 20 20 22 22 21 21 20 20 23 23 21 21 22 22 24 24 23 23 22 22 25 25 23 23 24 24 26 26 25 25 24 24 27 27 25 25 26 26 28 28 27 27 26 26 29 29 27 27 28 28 30 31 13 31 15 30 11 32 13 31 30 31 31 32 11 32 30 31 32 33 11 32 31 32 33 32 32 33 31 32 34 33 32 33 33 32 35 33 34 33 33 32 36 34 34 33 35 33 37 32 36 34 35 33 38 35 36 34 37 32 39 36 38 35 37 32 40 35 38 35 39 36 41 36 40 35 39 36 42 35 40 35 41 36 43 36 42 35 41 36 44 36 42 35 43 36 45 37 44 36 43 36 46 37 44 36 45 37 47 38 46 37 45 37 29 38 46 37 47 38 48 40 25 40 27 39 23 41 25 40 48 40 49 41 23 41 48 40 50 42 23 41 49 41 51 41 50 42 49 41 52 42 50 42 51 41 53 42 52 42 51 41 54 43 52 42 53 42 50 42 21 42 23 41 19 43 21 42 50 42 55 43 19 43 50 42 56 44 19 43 55 43 54 43 56 44 55 43 57 44 56 44 54 43 58 44 57 44 54 43 59 30 57 44 58 44 56 44 17 44 19 43 15 30 17 44 56 44 60 30 15 30 56 44 30 31 15 30 60 30 59 30 30 31 60 30 61 31 30 31 59 30 62 31 61 31 59 30 33 32 61 31 62 31 58 44 62 31 59 30 37 32 62 31 58 44 53 42 37 32 58 44 63 40 37 32 53 42 64 40 63 40 53 42 65 45 63 40 64 40 47 45 65 45 64 40 66 35 2 46 0 35 67 34 2 46 66 35 68 32 67 34 66 35 69 33 67 34 68 32 70 31 69 33 68 32 10 32 69 33 70 31 12 31 10 32 70 31 70 31 14 30 12 31 71 44 14 30 70 31 68 32 71 44 70 31 72 42 71 44 68 32 73 40 72 42 68 32 22 41 72 42 73 40 24 40 22 41 73 40 67 34 4 34 2 46 6 47 4 34 67 34 69 33 6 47 67 34 8 33 6 47 69 33 10 32 8 33 69 33 47 45 27 39 29 45 48 40 27 39 47 45 64 40 48 40 47 45 51 41 48 40 64 40 53 42 51 41 64 40 32 33 9 33 11 32 7 47 9 33 32 33 74 34 7 47 32 33 5 34 7 47 74 34 3 46 5 34 74 34 74 34 42 35 3 46 40 35 42 35 74 34 75 34 40 35 74 34 38 35 40 35 75 34 36 34 38 35 75 34 45 37 65 38 47 38 76 37 65 38 45 37 43 36 76 37 45 37 41 36 76 37 43 36 76 37 77 38 65 38 78 37 77 38 76 37 41 36 78 37 76 37 39 36 78 37 41 36 73 40 26 39 24 40 79 45 26 39 73 40 68 32 79 45 73 40 75 34 34 33 36 34 32 33 34 33 75 34 74 34 32 33 75 34 20 42 72 42 22 41 18 43 72 42 20 42 18 43 71 44 72 42 16 44 71 44 18 43 63 40 77 45 37 32 65 45 77 45 63 40 80 36 68 32 66 35 81 37 68 32 80 36 35 33 62 31 37 32 33 32 62 31 35 33 1 35 42 35 44 36 3 46 42 35 1 35 78 37 37 32 77 38 39 36 37 32 78 37 30 31 33 32 31 32 61 31 33 32 30 31 56 44 59 30 60 30 57 44 59 30 56 44 50 42 54 43 55 43 52 42 54 43 50 42 54 43 53 42 58 44 71 44 16 44 14 30 79 45 28 45 26 39 79 38 68 32 81 37 51 41 49 41 48 40

+
+
+
+ + + + 27105 -819 0 27105 15596 0 25778 -819 8376 25778 15596 8376 21928 -819 15932 21928 15596 15932 15932 -819 21928 15932 15596 21928 8376 -819 25778 8376 15596 25778 0 -819 27105 0 15596 26500 -8376 -819 25778 -8376 15596 25778 -15932 -819 21928 -15576 15596 21439 -21928 -819 15932 -21928 15596 15932 -25778 -819 8376 -25203 15596 8189 -27105 -819 0 -27105 15596 0 -25778 -819 -8376 -25203 15596 -8189 -21928 -819 -15932 -21928 15596 -15932 -15932 -819 -21928 -15932 15596 -21928 -8376 -819 -25778 -8376 15596 -25778 -8007 19122 24643 0 19122 25539 6744 19122 24144 0 25709 17935 4644 25709 18779 3063 30266 9429 8020 30266 5827 0 31837 0 9914 30266 0 8020 30266 -5827 18858 25709 0 15256 25709 -11084 25956 18611 0 20998 18611 -15256 21928 15596 -15932 8020 18611 -24685 8376 15596 -25778 -8020 18611 -24685 -20878 19122 -13875 -24289 19122 -7892 -25911 19122 0 -17057 25709 -5542 -17957 25709 0 -9914 30266 0 -17057 25709 5542 -24289 19122 7892 -20963 19122 15230 -14528 25709 10555 -8020 30266 5827 -10542 25709 14509 -15011 19122 20661 -5549 25709 17078 -3063 30266 9429 -8020 30266 -5827 -16424 25709 -10220 -5827 25709 -17935 27105 -10160 0 21928 -10160 15932 0 -10160 0 8376 -10160 25778 -8376 -10160 25778 -21928 -10160 15932 -27075 -10160 0 -21928 -10160 -15932 20998 18611 15256 15256 25709 11084 5827 25709 -17935 -3063 30266 -9429 3063 30266 -9429 -8366 -10160 -25750 21904 -10160 -15914 8366 -10160 -25750 + + + + + + + + + + 0.0001220703125 0.9996995192307693 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 0 1 0 0 0 3 0 1 0 2 0 4 0 3 0 2 0 5 0 3 0 4 0 6 0 5 0 4 0 7 0 5 0 6 0 8 0 7 0 6 0 9 0 7 0 8 0 10 0 9 0 8 0 11 0 9 0 10 0 12 0 11 0 10 0 13 0 11 0 12 0 14 0 13 0 12 0 15 0 13 0 14 0 16 0 15 0 14 0 17 0 15 0 16 0 18 0 17 0 16 0 19 0 17 0 18 0 20 0 19 0 18 0 21 0 19 0 20 0 22 0 21 0 20 0 23 0 21 0 22 0 24 0 23 0 22 0 25 0 23 0 24 0 26 0 25 0 24 0 27 0 25 0 26 0 28 0 27 0 26 0 29 0 27 0 28 0 30 0 13 0 15 0 11 0 13 0 30 0 31 0 11 0 30 0 32 0 11 0 31 0 33 0 32 0 31 0 34 0 32 0 33 0 35 0 34 0 33 0 36 0 34 0 35 0 37 0 36 0 35 0 38 0 36 0 37 0 39 0 38 0 37 0 40 0 38 0 39 0 41 0 40 0 39 0 42 0 40 0 41 0 43 0 42 0 41 0 44 0 42 0 43 0 45 0 44 0 43 0 46 0 44 0 45 0 47 0 46 0 45 0 29 0 46 0 47 0 48 0 25 0 27 0 23 0 25 0 48 0 49 0 23 0 48 0 50 0 23 0 49 0 51 0 50 0 49 0 52 0 50 0 51 0 53 0 52 0 51 0 54 0 52 0 53 0 50 0 21 0 23 0 19 0 21 0 50 0 55 0 19 0 50 0 56 0 19 0 55 0 54 0 56 0 55 0 57 0 56 0 54 0 58 0 57 0 54 0 59 0 57 0 58 0 56 0 17 0 19 0 15 0 17 0 56 0 60 0 15 0 56 0 30 0 15 0 60 0 59 0 30 0 60 0 61 0 30 0 59 0 62 0 61 0 59 0 33 0 61 0 62 0 58 0 62 0 59 0 37 0 62 0 58 0 53 0 37 0 58 0 63 0 37 0 53 0 64 0 63 0 53 0 65 0 63 0 64 0 47 0 65 0 64 0 66 0 2 0 0 0 67 0 2 0 66 0 68 0 67 0 66 0 69 0 67 0 68 0 70 0 69 0 68 0 10 0 69 0 70 0 12 0 10 0 70 0 70 0 14 0 12 0 71 0 14 0 70 0 68 0 71 0 70 0 72 0 71 0 68 0 73 0 72 0 68 0 22 0 72 0 73 0 24 0 22 0 73 0 67 0 4 0 2 0 6 0 4 0 67 0 69 0 6 0 67 0 8 0 6 0 69 0 10 0 8 0 69 0 47 0 27 0 29 0 48 0 27 0 47 0 64 0 48 0 47 0 51 0 48 0 64 0 53 0 51 0 64 0 32 0 9 0 11 0 7 0 9 0 32 0 74 0 7 0 32 0 5 0 7 0 74 0 3 0 5 0 74 0 74 0 42 0 3 0 40 0 42 0 74 0 75 0 40 0 74 0 38 0 40 0 75 0 36 0 38 0 75 0 45 0 65 0 47 0 76 0 65 0 45 0 43 0 76 0 45 0 41 0 76 0 43 0 76 0 77 0 65 0 78 0 77 0 76 0 41 0 78 0 76 0 39 0 78 0 41 0 73 0 26 0 24 0 79 0 26 0 73 0 68 0 79 0 73 0 75 0 34 0 36 0 32 0 34 0 75 0 74 0 32 0 75 0 20 0 72 0 22 0 18 0 72 0 20 0 18 0 71 0 72 0 16 0 71 0 18 0 63 0 77 0 37 0 65 0 77 0 63 0 80 0 68 0 66 0 81 0 68 0 80 0 35 0 62 0 37 0 33 0 62 0 35 0 1 0 42 0 44 0 3 0 42 0 1 0 78 0 37 0 77 0 39 0 37 0 78 0 30 0 33 0 31 0 61 0 33 0 30 0 56 0 59 0 60 0 57 0 59 0 56 0 50 0 54 0 55 0 52 0 54 0 50 0 54 0 53 0 58 0 71 0 16 0 14 0 79 0 28 0 26 0 79 0 68 0 81 0 51 0 49 0 48 0

+
+
+
+ + + + 15053 -6789 0 15053 -2479 0 14317 -6789 4651 14317 -2479 4651 12178 -6789 8848 12178 -2479 8848 8848 -6789 12178 8848 -2479 12178 4651 -6789 14317 4651 -2479 14317 0 -6789 15053 0 -2479 15053 -4651 -6789 14317 -4651 -2479 14317 -8848 -6789 12178 -8848 -2479 12178 -12178 -6789 8848 -12178 -2479 8848 -14317 -6789 4651 -14317 -2479 4651 -15053 -6789 0 -15053 -2479 0 -14317 -6789 -4651 -14317 -2479 -4651 -12178 -6789 -8848 -12178 -2479 -8848 -8848 -6789 -12178 -8848 -2479 -12178 -4651 -6789 -14317 -4651 -2479 -14317 12178 7551 8848 8848 7551 12178 4651 7551 14317 0 7551 15053 -4651 7551 14317 -8848 7551 12178 -12178 7551 8848 -14317 7551 4651 -15053 7551 0 -14317 7551 -4651 -12178 7551 -8848 -8848 7551 -12178 -4651 7551 -14317 15053 7551 0 14317 7551 4651 + + + + + + + + + + 3.830078125 0 3.830078125 0.25 3.6640625 0 3.6640625 0.25 3.5 0 3.5 0.25 3.333984375 0 3.333984375 0.25 3.169921875 0 3.169921875 0.25 3.00390625 0 3.00390625 0.25 2.83984375 0 2.83984375 0.25 2.673828125 0 2.673828125 0.25 2.509765625 0 2.509765625 0.25 2.34375 0 2.34375 0.25 2.177734375 0 2.177734375 0.25 2.013671875 0 2.013671875 0.25 1.84765625 0 1.84765625 0.25 1.68359375 0 1.68359375 0.25 1.517578125 0 1.517578125 0.25 3.5 1 3.333984375 1 3.169921875 1 3.00390625 1 2.83984375 1 2.673828125 1 2.509765625 1 2.34375 1 2.177734375 1 2.013671875 1 1.84765625 1 1.68359375 1 1.517578125 1 3.830078125 1 3.6640625 1 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 2 1 1 0 0 3 3 1 1 2 2 4 4 3 3 2 2 5 5 3 3 4 4 6 6 5 5 4 4 7 7 5 5 6 6 8 8 7 7 6 6 9 9 7 7 8 8 10 10 9 9 8 8 11 11 9 9 10 10 12 12 11 11 10 10 13 13 11 11 12 12 14 14 13 13 12 12 15 15 13 13 14 14 16 16 15 15 14 14 17 17 15 15 16 16 18 18 17 17 16 16 19 19 17 17 18 18 20 20 19 19 18 18 21 21 19 19 20 20 22 22 21 21 20 20 23 23 21 21 22 22 24 24 23 23 22 22 25 25 23 23 24 24 26 26 25 25 24 24 27 27 25 25 26 26 28 28 27 27 26 26 29 29 27 27 28 28 5 5 30 30 3 3 31 31 30 30 5 5 7 7 31 31 5 5 32 32 31 31 7 7 9 9 32 32 7 7 33 33 32 32 9 9 11 11 33 33 9 9 34 34 33 33 11 11 13 13 34 34 11 11 35 35 34 34 13 13 15 15 35 35 13 13 36 36 35 35 15 15 17 17 36 36 15 15 37 37 36 36 17 17 19 19 37 37 17 17 38 38 37 37 19 19 21 21 38 38 19 19 39 39 38 38 21 21 23 23 39 39 21 21 40 40 39 39 23 23 25 25 40 40 23 23 41 41 40 40 25 25 27 27 41 41 25 25 42 42 41 41 27 27 29 29 42 42 27 27 3 3 43 43 1 1 44 44 43 43 3 3 30 30 44 44 3 3

+
+
+
+ + + + 15053 -6789 0 15053 -2479 0 14317 -6789 4651 14317 -2479 4651 12178 -6789 8848 12178 -2479 8848 8848 -6789 12178 8848 -2479 12178 4651 -6789 14317 4651 -2479 14317 0 -6789 15053 0 -2479 15053 -4651 -6789 14317 -4651 -2479 14317 -8848 -6789 12178 -8848 -2479 12178 -12178 -6789 8848 -12178 -2479 8848 -14317 -6789 4651 -14317 -2479 4651 -15053 -6789 0 -15053 -2479 0 -14317 -6789 -4651 -14317 -2479 -4651 -12178 -6789 -8848 -12178 -2479 -8848 -8848 -6789 -12178 -8848 -2479 -12178 -4651 -6789 -14317 -4651 -2479 -14317 12178 7551 8848 8848 7551 12178 4651 7551 14317 0 7551 15053 -4651 7551 14317 -8848 7551 12178 -12178 7551 8848 -14317 7551 4651 -15053 7551 0 -14317 7551 -4651 -12178 7551 -8848 -8848 7551 -12178 -4651 7551 -14317 15053 7551 0 14317 7551 4651 + + + + + + + + + + 0.0001220703125 0.9996995192307693 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

2 0 1 0 0 0 3 0 1 0 2 0 4 0 3 0 2 0 5 0 3 0 4 0 6 0 5 0 4 0 7 0 5 0 6 0 8 0 7 0 6 0 9 0 7 0 8 0 10 0 9 0 8 0 11 0 9 0 10 0 12 0 11 0 10 0 13 0 11 0 12 0 14 0 13 0 12 0 15 0 13 0 14 0 16 0 15 0 14 0 17 0 15 0 16 0 18 0 17 0 16 0 19 0 17 0 18 0 20 0 19 0 18 0 21 0 19 0 20 0 22 0 21 0 20 0 23 0 21 0 22 0 24 0 23 0 22 0 25 0 23 0 24 0 26 0 25 0 24 0 27 0 25 0 26 0 28 0 27 0 26 0 29 0 27 0 28 0 5 0 30 0 3 0 31 0 30 0 5 0 7 0 31 0 5 0 32 0 31 0 7 0 9 0 32 0 7 0 33 0 32 0 9 0 11 0 33 0 9 0 34 0 33 0 11 0 13 0 34 0 11 0 35 0 34 0 13 0 15 0 35 0 13 0 36 0 35 0 15 0 17 0 36 0 15 0 37 0 36 0 17 0 19 0 37 0 17 0 38 0 37 0 19 0 21 0 38 0 19 0 39 0 38 0 21 0 23 0 39 0 21 0 40 0 39 0 23 0 25 0 40 0 23 0 41 0 40 0 25 0 27 0 41 0 25 0 42 0 41 0 27 0 29 0 42 0 27 0 3 0 43 0 1 0 44 0 43 0 3 0 30 0 44 0 3 0

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/Assets/Models/Garden - SMG/AstroDomeTower_bake.dae.meta b/Assets/Models/Garden - SMG/AstroDomeTower_bake.dae.meta new file mode 100644 index 0000000..72f516b --- /dev/null +++ b/Assets/Models/Garden - SMG/AstroDomeTower_bake.dae.meta @@ -0,0 +1,107 @@ +fileFormatVersion: 2 +guid: 88667e74e8f36b14fa018e647824ffbc +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/Grass0009k.png b/Assets/Models/Garden - SMG/Grass0009k.png new file mode 100644 index 0000000..db63069 Binary files /dev/null and b/Assets/Models/Garden - SMG/Grass0009k.png differ diff --git a/Assets/Models/Garden - SMG/Grass0009k.png.meta b/Assets/Models/Garden - SMG/Grass0009k.png.meta new file mode 100644 index 0000000..fc6ccc1 --- /dev/null +++ b/Assets/Models/Garden - SMG/Grass0009k.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 4ca5b4352c1482b42b8df6246796255e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/Ground00.png b/Assets/Models/Garden - SMG/Ground00.png new file mode 100644 index 0000000..165b549 Binary files /dev/null and b/Assets/Models/Garden - SMG/Ground00.png differ diff --git a/Assets/Models/Garden - SMG/Ground00.png.meta b/Assets/Models/Garden - SMG/Ground00.png.meta new file mode 100644 index 0000000..b5638d5 --- /dev/null +++ b/Assets/Models/Garden - SMG/Ground00.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: cbb757e25cc79f14e934a3798d03f96b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/HighLandCloud01S.png b/Assets/Models/Garden - SMG/HighLandCloud01S.png new file mode 100644 index 0000000..197c0df Binary files /dev/null and b/Assets/Models/Garden - SMG/HighLandCloud01S.png differ diff --git a/Assets/Models/Garden - SMG/HighLandCloud01S.png.meta b/Assets/Models/Garden - SMG/HighLandCloud01S.png.meta new file mode 100644 index 0000000..b24fd90 --- /dev/null +++ b/Assets/Models/Garden - SMG/HighLandCloud01S.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2faa1f00221f9ee4e93bc37a199bbbd2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/HighLandCloud02L.png b/Assets/Models/Garden - SMG/HighLandCloud02L.png new file mode 100644 index 0000000..dda48aa Binary files /dev/null and b/Assets/Models/Garden - SMG/HighLandCloud02L.png differ diff --git a/Assets/Models/Garden - SMG/HighLandCloud02L.png.meta b/Assets/Models/Garden - SMG/HighLandCloud02L.png.meta new file mode 100644 index 0000000..41660a9 --- /dev/null +++ b/Assets/Models/Garden - SMG/HighLandCloud02L.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9b8c20e4f664d0a4a9dc6923b579971b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MAP0000k.png b/Assets/Models/Garden - SMG/MAP0000k.png new file mode 100644 index 0000000..2cb47c3 Binary files /dev/null and b/Assets/Models/Garden - SMG/MAP0000k.png differ diff --git a/Assets/Models/Garden - SMG/MAP0000k.png.meta b/Assets/Models/Garden - SMG/MAP0000k.png.meta new file mode 100644 index 0000000..fbee62a --- /dev/null +++ b/Assets/Models/Garden - SMG/MAP0000k.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d2ea2f9c0d473204a81271dde0e9428c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MAP0048.png b/Assets/Models/Garden - SMG/MAP0048.png new file mode 100644 index 0000000..5280fee Binary files /dev/null and b/Assets/Models/Garden - SMG/MAP0048.png differ diff --git a/Assets/Models/Garden - SMG/MAP0048.png.meta b/Assets/Models/Garden - SMG/MAP0048.png.meta new file mode 100644 index 0000000..646ca70 --- /dev/null +++ b/Assets/Models/Garden - SMG/MAP0048.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: cbb5984457bb9334b8356bc9d8e6bb44 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MATERIALS.meta b/Assets/Models/Garden - SMG/MATERIALS.meta new file mode 100644 index 0000000..3a39280 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c3c8affe4868976438fa26b7952e75bd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MATERIALS/CliffMat_v.mat b/Assets/Models/Garden - SMG/MATERIALS/CliffMat_v.mat new file mode 100644 index 0000000..deb96a9 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/CliffMat_v.mat @@ -0,0 +1,138 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6213261934074618111 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CliffMat_v + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: d2ea2f9c0d473204a81271dde0e9428c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: d2ea2f9c0d473204a81271dde0e9428c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/Models/Garden - SMG/MATERIALS/CliffMat_v.mat.meta b/Assets/Models/Garden - SMG/MATERIALS/CliffMat_v.mat.meta new file mode 100644 index 0000000..1e80556 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/CliffMat_v.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e99143a7f713d1a42aa7a9130197b541 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MATERIALS/CloudMat_v.mat b/Assets/Models/Garden - SMG/MATERIALS/CloudMat_v.mat new file mode 100644 index 0000000..e9b7ee7 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/CloudMat_v.mat @@ -0,0 +1,142 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: CloudMat_v + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - MOTIONVECTORS + - DepthOnly + - SHADOWCASTER + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 9b8c20e4f664d0a4a9dc6923b579971b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9b8c20e4f664d0a4a9dc6923b579971b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2223153234230717105 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Models/Garden - SMG/MATERIALS/CloudMat_v.mat.meta b/Assets/Models/Garden - SMG/MATERIALS/CloudMat_v.mat.meta new file mode 100644 index 0000000..267bf8c --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/CloudMat_v.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f116ff23d8c974469133c33fc12d82b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MATERIALS/DGrass00_v.mat b/Assets/Models/Garden - SMG/MATERIALS/DGrass00_v.mat new file mode 100644 index 0000000..32121f9 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/DGrass00_v.mat @@ -0,0 +1,139 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-502470645934072078 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: DGrass00_v + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 8632a69630f29b548b4f98fd091027f1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 8632a69630f29b548b4f98fd091027f1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/Models/Garden - SMG/MATERIALS/DGrass00_v.mat.meta b/Assets/Models/Garden - SMG/MATERIALS/DGrass00_v.mat.meta new file mode 100644 index 0000000..17dc179 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/DGrass00_v.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d27a82d37e1e49a4fab9ed22f17bcb9c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MATERIALS/FlowerP_v.mat b/Assets/Models/Garden - SMG/MATERIALS/FlowerP_v.mat new file mode 100644 index 0000000..9cf75fa --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/FlowerP_v.mat @@ -0,0 +1,139 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: FlowerP_v + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 14ea7b134f1677a4bb09493edf1bda15, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 14ea7b134f1677a4bb09493edf1bda15, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4997195750874432154 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Models/Garden - SMG/MATERIALS/FlowerP_v.mat.meta b/Assets/Models/Garden - SMG/MATERIALS/FlowerP_v.mat.meta new file mode 100644 index 0000000..1f69760 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/FlowerP_v.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 30e9eaa8ea9e7494497b95d036d7c87e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MATERIALS/FlowerW_v.mat b/Assets/Models/Garden - SMG/MATERIALS/FlowerW_v.mat new file mode 100644 index 0000000..e1d3c84 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/FlowerW_v.mat @@ -0,0 +1,139 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: FlowerW_v + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 9df1c291e3e80534c8a581b14170fa71, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9df1c291e3e80534c8a581b14170fa71, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &835325011476930982 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Models/Garden - SMG/MATERIALS/FlowerW_v.mat.meta b/Assets/Models/Garden - SMG/MATERIALS/FlowerW_v.mat.meta new file mode 100644 index 0000000..2c37a80 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/FlowerW_v.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f626637a430f284f96a5c13f845ef06 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MATERIALS/FlowerY_v.mat b/Assets/Models/Garden - SMG/MATERIALS/FlowerY_v.mat new file mode 100644 index 0000000..90a5586 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/FlowerY_v.mat @@ -0,0 +1,139 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: FlowerY_v + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 472049e006277684abba38b626b78181, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 472049e006277684abba38b626b78181, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7286476482975728293 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Models/Garden - SMG/MATERIALS/FlowerY_v.mat.meta b/Assets/Models/Garden - SMG/MATERIALS/FlowerY_v.mat.meta new file mode 100644 index 0000000..991c0c2 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/FlowerY_v.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bb65c5a4b2b477442a9ab4299ccb6e5b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MATERIALS/GrassMat_v.mat b/Assets/Models/Garden - SMG/MATERIALS/GrassMat_v.mat new file mode 100644 index 0000000..90978fa --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/GrassMat_v.mat @@ -0,0 +1,138 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3952325654751092112 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: GrassMat_v + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 4ca5b4352c1482b42b8df6246796255e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 4ca5b4352c1482b42b8df6246796255e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/Models/Garden - SMG/MATERIALS/GrassMat_v.mat.meta b/Assets/Models/Garden - SMG/MATERIALS/GrassMat_v.mat.meta new file mode 100644 index 0000000..7c21065 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/GrassMat_v.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5f9a6eda778c40748b7f562ab1483fee +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MATERIALS/GroundMat_v.mat b/Assets/Models/Garden - SMG/MATERIALS/GroundMat_v.mat new file mode 100644 index 0000000..7f85704 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/GroundMat_v.mat @@ -0,0 +1,138 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4136430000955180785 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: GroundMat_v + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: cbb757e25cc79f14e934a3798d03f96b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: cbb757e25cc79f14e934a3798d03f96b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/Models/Garden - SMG/MATERIALS/GroundMat_v.mat.meta b/Assets/Models/Garden - SMG/MATERIALS/GroundMat_v.mat.meta new file mode 100644 index 0000000..b09da7c --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/GroundMat_v.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2961d61165ad3254b867651d3947b3ce +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MATERIALS/MoutainMat_v.mat b/Assets/Models/Garden - SMG/MATERIALS/MoutainMat_v.mat new file mode 100644 index 0000000..626ed10 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/MoutainMat_v.mat @@ -0,0 +1,138 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3403094070434113286 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: MoutainMat_v + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 5695d66b2092d5c4aa2c9dc090162e1d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 5695d66b2092d5c4aa2c9dc090162e1d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/Models/Garden - SMG/MATERIALS/MoutainMat_v.mat.meta b/Assets/Models/Garden - SMG/MATERIALS/MoutainMat_v.mat.meta new file mode 100644 index 0000000..f833440 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/MoutainMat_v.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7bb1cfa3baf8a4243ba622593f2036d9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MATERIALS/NearCloud_v.mat b/Assets/Models/Garden - SMG/MATERIALS/NearCloud_v.mat new file mode 100644 index 0000000..4298fd6 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/NearCloud_v.mat @@ -0,0 +1,142 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: NearCloud_v + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - MOTIONVECTORS + - DepthOnly + - SHADOWCASTER + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 2faa1f00221f9ee4e93bc37a199bbbd2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 2faa1f00221f9ee4e93bc37a199bbbd2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4831951653047648347 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Models/Garden - SMG/MATERIALS/NearCloud_v.mat.meta b/Assets/Models/Garden - SMG/MATERIALS/NearCloud_v.mat.meta new file mode 100644 index 0000000..5174698 --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/NearCloud_v.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1201c15f6e1cc9646ad8089c07fc2b58 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/MATERIALS/RockMat_v.mat b/Assets/Models/Garden - SMG/MATERIALS/RockMat_v.mat new file mode 100644 index 0000000..d0e52ae --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/RockMat_v.mat @@ -0,0 +1,138 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: RockMat_v + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: cbb5984457bb9334b8356bc9d8e6bb44, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: cbb5984457bb9334b8356bc9d8e6bb44, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1470756943140961549 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Models/Garden - SMG/MATERIALS/RockMat_v.mat.meta b/Assets/Models/Garden - SMG/MATERIALS/RockMat_v.mat.meta new file mode 100644 index 0000000..e42fcfb --- /dev/null +++ b/Assets/Models/Garden - SMG/MATERIALS/RockMat_v.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0460fdc681cf0c04480238b630c299a1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/Mountain.png b/Assets/Models/Garden - SMG/Mountain.png new file mode 100644 index 0000000..c8f5e68 Binary files /dev/null and b/Assets/Models/Garden - SMG/Mountain.png differ diff --git a/Assets/Models/Garden - SMG/Mountain.png.meta b/Assets/Models/Garden - SMG/Mountain.png.meta new file mode 100644 index 0000000..3ee06f9 --- /dev/null +++ b/Assets/Models/Garden - SMG/Mountain.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5695d66b2092d5c4aa2c9dc090162e1d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/materials.txt b/Assets/Models/Garden - SMG/materials.txt new file mode 100644 index 0000000..55f2fe7 --- /dev/null +++ b/Assets/Models/Garden - SMG/materials.txt @@ -0,0 +1,228 @@ +CliffMat_v +========== + Textures: + - MAP0000k + + Ambient Colors: + - 100, 100, 100, 195 + + Constant Colors: + - 0, 0, 0, 180 + + Material Colors: + - 203, 203, 203, 255 + - 203, 203, 203, 255 + + Color Registers: + - 216, 182, 125, 250 + - 0, 0, 0, 368 + + + +CloudMat_v +========== + Textures: + - HighLandCloud02L + Offset: 0.8801999688148499, 0 + + Ambient Colors: + - 100, 100, 100, 195 + + Constant Colors: + - 0, 77, 167, 255 + + Material Colors: + - 204, 204, 204, 255 + - 204, 204, 204, 255 + + Color Registers: + - 218, 237, 205, 255 + + + +DGrass00_v +========== + Textures: + - puffleaf + + Ambient Colors: + - 100, 100, 100, 195 + + Constant Colors: + - 0, 0, 0, 180 + + Material Colors: + - 203, 203, 203, 255 + - 203, 203, 203, 255 + + Color Registers: + - 255, 255, 255, 250 + - 0, 0, 0, 368 + + + +FlowerP_v +========= + Textures: + - parplehanataba + + Ambient Colors: + - 100, 100, 100, 195 + + Constant Colors: + - 0, 0, 0, 180 + + Material Colors: + - 203, 203, 203, 255 + - 203, 203, 203, 255 + + Color Registers: + - 255, 255, 255, 250 + - 0, 0, 0, 368 + + + +FlowerW_v +========= + Textures: + - whitetaba + + Ambient Colors: + - 100, 100, 100, 195 + + Constant Colors: + - 0, 0, 0, 180 + + Material Colors: + - 203, 203, 203, 255 + - 203, 203, 203, 255 + + Color Registers: + - 255, 255, 255, 250 + - 0, 0, 0, 368 + + + +FlowerY_v +========= + Textures: + - yellowhanataba + + Ambient Colors: + - 100, 100, 100, 195 + + Constant Colors: + - 0, 0, 0, 180 + + Material Colors: + - 203, 203, 203, 255 + - 203, 203, 203, 255 + + Color Registers: + - 255, 255, 255, 250 + - 0, 0, 0, 368 + + + +GrassMat_v +========== + Textures: + - Grass0009k + + Ambient Colors: + - 100, 100, 100, 195 + + Constant Colors: + - 0, 0, 0, 180 + + Material Colors: + - 203, 203, 203, 255 + - 203, 203, 203, 255 + + Color Registers: + - 0, 0, 0, 368 + + + +GroundMat_v +=========== + Textures: + - Ground00 + Scale: -0.2099609375, -0.2099609375 + + Ambient Colors: + - 100, 100, 100, 195 + + Constant Colors: + - 0, 0, 0, 180 + + Material Colors: + - 203, 203, 203, 255 + - 203, 203, 203, 255 + + Color Registers: + - 0, 0, 0, 368 + + + +MoutainMat_v +============ + Textures: + - Mountain + + Ambient Colors: + - 100, 100, 100, 195 + + Constant Colors: + - 0, 0, 0, 180 + - 80, 80, 80, 255 + + Material Colors: + - 203, 203, 203, 255 + - 203, 203, 203, 255 + + Color Registers: + - 255, 255, 255, 250 + - -70, -70, -70, 368 + + + +NearCloud_v +=========== + Textures: + - HighLandCloud01S + Offset: -9.14687728881836, 0 + + Ambient Colors: + - 100, 100, 100, 195 + + Constant Colors: + - 198, 255, 229, 255 + + Material Colors: + - 204, 204, 204, 231 + - 204, 204, 204, 231 + + Color Registers: + - 255, 255, 255, -4 + + + +RockMat_v +========= + Textures: + - MAP0048 + + Ambient Colors: + - 100, 100, 100, 195 + + Constant Colors: + - 0, 0, 0, 180 + + Material Colors: + - 203, 203, 203, 255 + - 203, 203, 203, 255 + + Color Registers: + - 255, 255, 255, 250 + - 0, 0, 0, 368 diff --git a/Assets/Models/Garden - SMG/materials.txt.meta b/Assets/Models/Garden - SMG/materials.txt.meta new file mode 100644 index 0000000..553e612 --- /dev/null +++ b/Assets/Models/Garden - SMG/materials.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2ba67bc66eb3d2a4895d62dc5fa8ee63 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/parplehanataba.png b/Assets/Models/Garden - SMG/parplehanataba.png new file mode 100644 index 0000000..f3ae061 Binary files /dev/null and b/Assets/Models/Garden - SMG/parplehanataba.png differ diff --git a/Assets/Models/Garden - SMG/parplehanataba.png.meta b/Assets/Models/Garden - SMG/parplehanataba.png.meta new file mode 100644 index 0000000..0df8992 --- /dev/null +++ b/Assets/Models/Garden - SMG/parplehanataba.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 14ea7b134f1677a4bb09493edf1bda15 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/puffleaf.png b/Assets/Models/Garden - SMG/puffleaf.png new file mode 100644 index 0000000..6f6a7b2 Binary files /dev/null and b/Assets/Models/Garden - SMG/puffleaf.png differ diff --git a/Assets/Models/Garden - SMG/puffleaf.png.meta b/Assets/Models/Garden - SMG/puffleaf.png.meta new file mode 100644 index 0000000..61573c5 --- /dev/null +++ b/Assets/Models/Garden - SMG/puffleaf.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 8632a69630f29b548b4f98fd091027f1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/vertexColors.png b/Assets/Models/Garden - SMG/vertexColors.png new file mode 100644 index 0000000..6f79113 Binary files /dev/null and b/Assets/Models/Garden - SMG/vertexColors.png differ diff --git a/Assets/Models/Garden - SMG/vertexColors.png.meta b/Assets/Models/Garden - SMG/vertexColors.png.meta new file mode 100644 index 0000000..592d870 --- /dev/null +++ b/Assets/Models/Garden - SMG/vertexColors.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ee43c46687a813544973f9d7efe7e103 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/vertexColors2.png b/Assets/Models/Garden - SMG/vertexColors2.png new file mode 100644 index 0000000..e0682db Binary files /dev/null and b/Assets/Models/Garden - SMG/vertexColors2.png differ diff --git a/Assets/Models/Garden - SMG/vertexColors2.png.meta b/Assets/Models/Garden - SMG/vertexColors2.png.meta new file mode 100644 index 0000000..2245863 --- /dev/null +++ b/Assets/Models/Garden - SMG/vertexColors2.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3bf914d0ab597a64ab1a165e15c0a256 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/vertexColors3.png b/Assets/Models/Garden - SMG/vertexColors3.png new file mode 100644 index 0000000..3b0db9f Binary files /dev/null and b/Assets/Models/Garden - SMG/vertexColors3.png differ diff --git a/Assets/Models/Garden - SMG/vertexColors3.png.meta b/Assets/Models/Garden - SMG/vertexColors3.png.meta new file mode 100644 index 0000000..4c46a83 --- /dev/null +++ b/Assets/Models/Garden - SMG/vertexColors3.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f2ee188a6f521ff4580d14247bf68378 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/whitetaba.png b/Assets/Models/Garden - SMG/whitetaba.png new file mode 100644 index 0000000..016406e Binary files /dev/null and b/Assets/Models/Garden - SMG/whitetaba.png differ diff --git a/Assets/Models/Garden - SMG/whitetaba.png.meta b/Assets/Models/Garden - SMG/whitetaba.png.meta new file mode 100644 index 0000000..454343d --- /dev/null +++ b/Assets/Models/Garden - SMG/whitetaba.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9df1c291e3e80534c8a581b14170fa71 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Models/Garden - SMG/yellowhanataba.png b/Assets/Models/Garden - SMG/yellowhanataba.png new file mode 100644 index 0000000..40fb6f7 Binary files /dev/null and b/Assets/Models/Garden - SMG/yellowhanataba.png differ diff --git a/Assets/Models/Garden - SMG/yellowhanataba.png.meta b/Assets/Models/Garden - SMG/yellowhanataba.png.meta new file mode 100644 index 0000000..41a8dc1 --- /dev/null +++ b/Assets/Models/Garden - SMG/yellowhanataba.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 472049e006277684abba38b626b78181 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/New Terrain.asset b/Assets/New Terrain.asset new file mode 100644 index 0000000..88d5d9d Binary files /dev/null and b/Assets/New Terrain.asset differ diff --git a/Assets/New Terrain.asset.meta b/Assets/New Terrain.asset.meta new file mode 100644 index 0000000..6062b87 --- /dev/null +++ b/Assets/New Terrain.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4958376a3067d234482cf080b4cb4293 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 15600000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus.meta b/Assets/Oculus.meta new file mode 100644 index 0000000..273d315 --- /dev/null +++ b/Assets/Oculus.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2173ed329a7faa349b9dde816b107335 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/OculusProjectConfig.asset b/Assets/Oculus/OculusProjectConfig.asset new file mode 100644 index 0000000..7c8458b --- /dev/null +++ b/Assets/Oculus/OculusProjectConfig.asset @@ -0,0 +1,49 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 05d394ae2a81edd4cbc3c51917e766e3, type: 3} + m_Name: OculusProjectConfig + m_EditorClassIdentifier: + targetDeviceTypes: 04000000020000000300000005000000 + allowOptional3DofHeadTracking: 0 + handTrackingSupport: 1 + handTrackingFrequency: 0 + handTrackingVersion: 2 + anchorSupport: 1 + sharedAnchorSupport: 0 + renderModelSupport: 1 + trackedKeyboardSupport: 0 + bodyTrackingSupport: 0 + faceTrackingSupport: 0 + eyeTrackingSupport: 0 + virtualKeyboardSupport: 0 + colocationSessionSupport: 0 + sceneSupport: 2 + boundaryVisibilitySupport: 0 + disableBackups: 1 + enableNSCConfig: 1 + securityXmlPath: + horizonOsSdkEnabled: 0 + minHorizonOsSdkVersion: 68 + targetHorizonOsSdkVersion: 78 + skipUnneededShaders: 0 + enableIL2CPPLTO: 0 + removeGradleManifest: 1 + focusAware: 1 + requiresSystemKeyboard: 1 + experimentalFeaturesEnabled: 0 + insightPassthroughEnabled: 0 + _insightPassthroughSupport: 0 + isPassthroughCameraAccessEnabled: 0 + _processorFavor: 0 + systemSplashScreen: {fileID: 0} + systemSplashScreenType: 0 + _systemLoadingScreenBackground: 0 diff --git a/Assets/Oculus/OculusProjectConfig.asset.meta b/Assets/Oculus/OculusProjectConfig.asset.meta new file mode 100644 index 0000000..6e416e8 --- /dev/null +++ b/Assets/Oculus/OculusProjectConfig.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a22a835c02609124ebb0f6d0659755f2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/OculusProjectSetupSettings.asset b/Assets/Oculus/OculusProjectSetupSettings.asset new file mode 100644 index 0000000..28e04bc --- /dev/null +++ b/Assets/Oculus/OculusProjectSetupSettings.asset @@ -0,0 +1,24 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 939e07d58bc74256b6cb58d86fe35a56, type: 3} + m_Name: OculusProjectSetupSettings + m_EditorClassIdentifier: + boolProperties: + keys: + - Meta.XR.SDK.6abdb39b0bf66ba7c04b0c267c7e2df8.Ignored.Android + - Meta.XR.SDK.31736735fee7ab217bea57cc359d9f23.MarkedAsFixed.Android + - Meta.XR.SDK.edfb6eef6866b340551639f2f2c3213d.MarkedAsFixed.Android + - Meta.XR.SDK.555a8939e2116242b33de093147cd755.Ignored.Android + values: 01010101 + intProperties: + keys: [] + values: diff --git a/Assets/Oculus/OculusProjectSetupSettings.asset.meta b/Assets/Oculus/OculusProjectSetupSettings.asset.meta new file mode 100644 index 0000000..900f84b --- /dev/null +++ b/Assets/Oculus/OculusProjectSetupSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 234a2bcd979e09243941f16f0291587c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Voice.meta b/Assets/Oculus/Voice.meta new file mode 100644 index 0000000..06f47b1 --- /dev/null +++ b/Assets/Oculus/Voice.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 47670df38ae12344599f369159f935f7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Voice/Resources.meta b/Assets/Oculus/Voice/Resources.meta new file mode 100644 index 0000000..5adfb2d --- /dev/null +++ b/Assets/Oculus/Voice/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea1c05f6bcda2ee47a60525263bed0f4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Voice/Resources/ConduitManifest-8ecba52e-b270-4720-ad30-88f7eacc9908.json b/Assets/Oculus/Voice/Resources/ConduitManifest-8ecba52e-b270-4720-ad30-88f7eacc9908.json new file mode 100644 index 0000000..b583d4b --- /dev/null +++ b/Assets/Oculus/Voice/Resources/ConduitManifest-8ecba52e-b270-4720-ad30-88f7eacc9908.json @@ -0,0 +1 @@ +{"Version": "0.1", "ID": "1385662526600280", "Actions": [], "ErrorHandlers": [], "Entities": [], "Domain": "interface_v4"} diff --git a/Assets/Oculus/Voice/Resources/ConduitManifest-8ecba52e-b270-4720-ad30-88f7eacc9908.json.meta b/Assets/Oculus/Voice/Resources/ConduitManifest-8ecba52e-b270-4720-ad30-88f7eacc9908.json.meta new file mode 100644 index 0000000..8e06f24 --- /dev/null +++ b/Assets/Oculus/Voice/Resources/ConduitManifest-8ecba52e-b270-4720-ad30-88f7eacc9908.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4eeafd3980ad5b542a46465095884374 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Voice/Resources/ConduitManifest-b7b267b2-70ba-4270-8358-a2d6eabf9b04.json b/Assets/Oculus/Voice/Resources/ConduitManifest-b7b267b2-70ba-4270-8358-a2d6eabf9b04.json new file mode 100644 index 0000000..b583d4b --- /dev/null +++ b/Assets/Oculus/Voice/Resources/ConduitManifest-b7b267b2-70ba-4270-8358-a2d6eabf9b04.json @@ -0,0 +1 @@ +{"Version": "0.1", "ID": "1385662526600280", "Actions": [], "ErrorHandlers": [], "Entities": [], "Domain": "interface_v4"} diff --git a/Assets/Oculus/Voice/Resources/ConduitManifest-b7b267b2-70ba-4270-8358-a2d6eabf9b04.json.meta b/Assets/Oculus/Voice/Resources/ConduitManifest-b7b267b2-70ba-4270-8358-a2d6eabf9b04.json.meta new file mode 100644 index 0000000..c142d23 --- /dev/null +++ b/Assets/Oculus/Voice/Resources/ConduitManifest-b7b267b2-70ba-4270-8358-a2d6eabf9b04.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: fbbb983401ba2c94f8820989d6ba5ac9 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins.meta b/Assets/Plugins.meta new file mode 100644 index 0000000..828fa10 --- /dev/null +++ b/Assets/Plugins.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f28caf02992948f4d974cd6dee72f652 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Android.meta b/Assets/Plugins/Android.meta new file mode 100644 index 0000000..b8fc3c0 --- /dev/null +++ b/Assets/Plugins/Android.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 94d60ffd73177ba459e85abebd9407dd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Plugins/Android/AndroidManifest.xml b/Assets/Plugins/Android/AndroidManifest.xml new file mode 100644 index 0000000..222f4d2 --- /dev/null +++ b/Assets/Plugins/Android/AndroidManifest.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Assets/Plugins/Android/AndroidManifest.xml.meta b/Assets/Plugins/Android/AndroidManifest.xml.meta new file mode 100644 index 0000000..c9e6583 --- /dev/null +++ b/Assets/Plugins/Android/AndroidManifest.xml.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d894455ccbaaa0847b85302e6f8fc640 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Readme.asset b/Assets/Readme.asset new file mode 100644 index 0000000..77c2f83 --- /dev/null +++ b/Assets/Readme.asset @@ -0,0 +1,34 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fcf7219bab7fe46a1ad266029b2fee19, type: 3} + m_Name: Readme + m_EditorClassIdentifier: + icon: {fileID: 2800000, guid: 727a75301c3d24613a3ebcec4a24c2c8, type: 3} + title: URP Empty Template + sections: + - heading: Welcome to the Universal Render Pipeline + text: This template includes the settings and assets you need to start creating with the Universal Render Pipeline. + linkText: + url: + - heading: URP Documentation + text: + linkText: Read more about URP + url: https://docs.unity3d.com/Packages/com.unity.render-pipelines.universal@latest + - heading: Forums + text: + linkText: Get answers and support + url: https://forum.unity.com/forums/universal-render-pipeline.383/ + - heading: Report bugs + text: + linkText: Submit a report + url: https://unity3d.com/unity/qa/bug-reporting + loadedLayout: 1 diff --git a/Assets/Readme.asset.meta b/Assets/Readme.asset.meta new file mode 100644 index 0000000..ab3ad45 --- /dev/null +++ b/Assets/Readme.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8105016687592461f977c054a80ce2f2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources.meta b/Assets/Resources.meta new file mode 100644 index 0000000..6b25577 --- /dev/null +++ b/Assets/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 62d097c978444764e837634dc5b46dd9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/BulleFleche.png b/Assets/Resources/BulleFleche.png new file mode 100644 index 0000000..cc0c2dc Binary files /dev/null and b/Assets/Resources/BulleFleche.png differ diff --git a/Assets/Resources/BulleFleche.png.meta b/Assets/Resources/BulleFleche.png.meta new file mode 100644 index 0000000..7a73c99 --- /dev/null +++ b/Assets/Resources/BulleFleche.png.meta @@ -0,0 +1,179 @@ +fileFormatVersion: 2 +guid: d1a677d464b24ff4497b34a192fe77fa +TextureImporter: + internalIDToNameTable: + - first: + 213: 7482667652216324306 + second: Square + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 256 + spriteBorder: {x: 4, y: 4, z: 4, w: 4} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: 0 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: Triangle + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 256 + height: 256 + alignment: 9 + pivot: {x: 0.5, y: 0.28866667} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: + - - {x: 0, y: 93.70251} + - {x: -128, y: -128} + - {x: 128, y: -128} + physicsShape: + - - {x: 0, y: 93.70251} + - {x: -128, y: -128} + - {x: 128, y: -128} + tessellationDetail: 0 + bones: [] + spriteID: 2d009a6b596c7d760800000000000000 + internalID: 7482667652216324306 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: + - - {x: -128, y: 128} + - {x: -128, y: -128} + - {x: 128, y: -128} + - {x: 128, y: 128} + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: + Triangle: 7482667652216324306 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/CorpsBulleSprite (Carré Mini).png b/Assets/Resources/CorpsBulleSprite (Carré Mini).png new file mode 100644 index 0000000..01928fe Binary files /dev/null and b/Assets/Resources/CorpsBulleSprite (Carré Mini).png differ diff --git a/Assets/Resources/CorpsBulleSprite (Carré Mini).png.meta b/Assets/Resources/CorpsBulleSprite (Carré Mini).png.meta new file mode 100644 index 0000000..503c72f --- /dev/null +++ b/Assets/Resources/CorpsBulleSprite (Carré Mini).png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1dc30db7c40b32b4fa666336affad98b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 32, y: 40, z: 37, w: 35} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 16384 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/ImmersiveDebuggerSettings.asset b/Assets/Resources/ImmersiveDebuggerSettings.asset new file mode 100644 index 0000000..33c98ca --- /dev/null +++ b/Assets/Resources/ImmersiveDebuggerSettings.asset @@ -0,0 +1,54 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a7d75bea1662418ab5f9e0c22110bc09, type: 3} + m_Name: ImmersiveDebuggerSettings + m_EditorClassIdentifier: + debugTypes: + - AssemblyName: Meta.XR.ImmersiveDebugger + DebugTypes: + - TestSceneUsage + - UIEditorSetup + - AssemblyName: Meta.XR.MultiplayerBlocks.Shared + DebugTypes: + - Meta.XR.MultiplayerBlocks.Shared.CustomMatchmaking + - Meta.XR.MultiplayerBlocks.Shared.FriendsMatchmaking + immersiveDebuggerEnabled: 0 + immersiveDebuggerDisplayAtStartup: 1 + enableOnlyInDebugBuild: 0 + showInspectors: 0 + showConsole: 0 + followOverride: 1 + rotateOverride: 0 + showInfoLog: 1 + showWarningLog: 1 + showErrorLog: 1 + collapsedIdenticalLogEntries: 0 + maximumNumberOfLogEntries: 1000 + panelDistance: 1 + createEventSystem: 1 + automaticLayerCullingUpdate: 1 + panelLayer: 20 + meshRendererLayer: 21 + overlayDepth: 10 + useOverlay: 1 + inspectedDataEnabled: 010101 + inspectedDataAssets: + - {fileID: 11400000, guid: 7d2b5c7a7c5e53542ab61e3e1f5a2785, type: 2} + - {fileID: 11400000, guid: 168f7a776bb65884397aab8376e40c7d, type: 2} + - {fileID: 11400000, guid: 77088e58ea680884d9b11e7455ce0456, type: 2} + useCustomIntegrationConfig: 0 + customIntegrationConfigClassName: + hierarchyViewShowsPrivateMembers: 0 + clickButton: 8193 + toggleFollowTranslationButton: 0 + toggleFollowRotationButton: 0 + immersiveDebuggerToggleDisplayButton: 2 diff --git a/Assets/Resources/ImmersiveDebuggerSettings.asset.meta b/Assets/Resources/ImmersiveDebuggerSettings.asset.meta new file mode 100644 index 0000000..604ffb5 --- /dev/null +++ b/Assets/Resources/ImmersiveDebuggerSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 00a57c9b8e69af543a54b1a34b6dc13d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/InputActions.asset b/Assets/Resources/InputActions.asset new file mode 100644 index 0000000..09821ad --- /dev/null +++ b/Assets/Resources/InputActions.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8922a6ca86889d84f8371a29d37b6dc8, type: 3} + m_Name: InputActions + m_EditorClassIdentifier: + InputActionDefinitions: [] + InputActionSets: [] diff --git a/Assets/Resources/InputActions.asset.meta b/Assets/Resources/InputActions.asset.meta new file mode 100644 index 0000000..5e82867 --- /dev/null +++ b/Assets/Resources/InputActions.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a5c097408b735be48b14b75fb2790d93 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Materials.meta b/Assets/Resources/Materials.meta new file mode 100644 index 0000000..02337e4 --- /dev/null +++ b/Assets/Resources/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 57c6187133501ba4b8717e66bfec2172 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Materials/BulleMasque.mat b/Assets/Resources/Materials/BulleMasque.mat new file mode 100644 index 0000000..fc7a503 --- /dev/null +++ b/Assets/Resources/Materials/BulleMasque.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8614135499238380450 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BulleMasque + m_Shader: {fileID: 4800000, guid: ca8928164d5f11042802759025fe69a7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _ColorMask: 15 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/Resources/Materials/BulleMasque.mat.meta b/Assets/Resources/Materials/BulleMasque.mat.meta new file mode 100644 index 0000000..ec17558 --- /dev/null +++ b/Assets/Resources/Materials/BulleMasque.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e63fe2130d7c2a146b00441393fe14da +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Materials/BulleRemplissage.mat b/Assets/Resources/Materials/BulleRemplissage.mat new file mode 100644 index 0000000..227d242 --- /dev/null +++ b/Assets/Resources/Materials/BulleRemplissage.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1297910224706506491 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BulleRemplissage + m_Shader: {fileID: 4800000, guid: 26fffa4494d1573488412b39b243dd4a, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _ColorMask: 15 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/Resources/Materials/BulleRemplissage.mat.meta b/Assets/Resources/Materials/BulleRemplissage.mat.meta new file mode 100644 index 0000000..144a571 --- /dev/null +++ b/Assets/Resources/Materials/BulleRemplissage.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9380d95645a9299468d21b0a8f8d38ed +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Materials/LinearGradientUIDark.mat b/Assets/Resources/Materials/LinearGradientUIDark.mat new file mode 100644 index 0000000..c0c40cb --- /dev/null +++ b/Assets/Resources/Materials/LinearGradientUIDark.mat @@ -0,0 +1,49 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LinearGradientUIDark + m_Shader: {fileID: 4800000, guid: d2ff61c91a91a7f4682b2bbf76a6530e, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddUVNoise: 0 + - _ColorMask: 15 + - _Stencil: 0 + - _StencilComp: 0 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UseUIAlphaClip: 0 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _Color0: {r: 0.25490195, g: 0.25490195, b: 0.25490195, a: 1} + - _Color1: {r: 0.15294114, g: 0.15294114, b: 0.15294114, a: 1} + - _Color2: {r: 0.15294114, g: 0.15294114, b: 0.15294114, a: 1} + - _GradientPosition0: {r: 1, g: 1, b: 1.2, a: 1} + - _GradientPosition1: {r: 0, g: 1, b: 1.2, a: 1} + - _GradientPosition2: {r: 0.5, g: -0.2, b: 1, a: 1} + - _LinearGradientColor1: {r: 0.15294118, g: 0.15294118, b: 0.15294118, a: 1} + - _LinearGradientColor2: {r: 0.25490198, g: 0.25490198, b: 0.25490198, a: 1} + - _LinearGradientEnd: {r: 1, g: 1, b: 0, a: 0} + - _LinearGradientStart: {r: 1, g: 0, b: 0, a: 0} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Materials/LinearGradientUIDark.mat.meta b/Assets/Resources/Materials/LinearGradientUIDark.mat.meta new file mode 100644 index 0000000..47e9b29 --- /dev/null +++ b/Assets/Resources/Materials/LinearGradientUIDark.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ece25631b547d4147a737491e4edf3b3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Materials/LinearGradientUILight.mat b/Assets/Resources/Materials/LinearGradientUILight.mat new file mode 100644 index 0000000..d4c101a --- /dev/null +++ b/Assets/Resources/Materials/LinearGradientUILight.mat @@ -0,0 +1,49 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LinearGradientUILight + m_Shader: {fileID: 4800000, guid: d2ff61c91a91a7f4682b2bbf76a6530e, type: 3} + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddUVNoise: 0 + - _ColorMask: 15 + - _Stencil: 0 + - _StencilComp: 0 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UseUIAlphaClip: 0 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _Color0: {r: 0.25490195, g: 0.25490195, b: 0.25490195, a: 1} + - _Color1: {r: 0.15294114, g: 0.15294114, b: 0.15294114, a: 1} + - _Color2: {r: 0.15294114, g: 0.15294114, b: 0.15294114, a: 1} + - _GradientPosition0: {r: 1, g: 1, b: 1.2, a: 1} + - _GradientPosition1: {r: 0, g: 1, b: 1.2, a: 1} + - _GradientPosition2: {r: 0.5, g: -0.2, b: 1, a: 1} + - _LinearGradientColor1: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + - _LinearGradientColor2: {r: 0.9490196, g: 0.9490196, b: 0.9490196, a: 1} + - _LinearGradientEnd: {r: 1, g: 1, b: 0, a: 0} + - _LinearGradientStart: {r: 1, g: 0, b: 0, a: 0} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Materials/LinearGradientUILight.mat.meta b/Assets/Resources/Materials/LinearGradientUILight.mat.meta new file mode 100644 index 0000000..b5f538e --- /dev/null +++ b/Assets/Resources/Materials/LinearGradientUILight.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3fed9a66b317d4c4c9e0dbc32e000de9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Materials/RoundedBoxUIBulles.mat b/Assets/Resources/Materials/RoundedBoxUIBulles.mat new file mode 100644 index 0000000..436b9a8 --- /dev/null +++ b/Assets/Resources/Materials/RoundedBoxUIBulles.mat @@ -0,0 +1,49 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: RoundedBoxUIBulles + m_Shader: {fileID: 4800000, guid: 50f753d0d363948409062071d7115559, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _BorderColorType: 0 + - _BorderWidth: 0 + - _ColorMask: 15 + - _CullMode: 0 + - _Stencil: 0 + - _StencilComp: 0 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UseImageAsSDF: 0 + - _UseUIAlphaClip: 0 + - _ZWrite: 0 + m_Colors: + - _BorderRadius: {r: 0, g: 0, b: 0, a: 0} + - _CenterOffset: {r: 0, g: 0, b: 0, a: 0} + - _Color: {r: 0.95, g: 0.95, b: 0.95, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/Resources/Materials/RoundedBoxUIBulles.mat.meta b/Assets/Resources/Materials/RoundedBoxUIBulles.mat.meta new file mode 100644 index 0000000..2efbc9b --- /dev/null +++ b/Assets/Resources/Materials/RoundedBoxUIBulles.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a8b3963696820314da0fd98d357bebfe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Materials/TriangleMask.mat b/Assets/Resources/Materials/TriangleMask.mat new file mode 100644 index 0000000..98847d9 --- /dev/null +++ b/Assets/Resources/Materials/TriangleMask.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: TriangleMask + m_Shader: {fileID: -6465566751694194690, guid: ab249bb4f6c5bad41afde3165b0f98b9, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueControl: 0 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 0.95, g: 0.95, b: 0.95, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6833231122721399378 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Resources/Materials/TriangleMask.mat.meta b/Assets/Resources/Materials/TriangleMask.mat.meta new file mode 100644 index 0000000..506e5cf --- /dev/null +++ b/Assets/Resources/Materials/TriangleMask.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b7ce72d64cd2ebd4eae63bae6d91e671 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Materials/backgrounds.meta b/Assets/Resources/Materials/backgrounds.meta new file mode 100644 index 0000000..bc6cd4a --- /dev/null +++ b/Assets/Resources/Materials/backgrounds.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5f88ad7b7b39ccb4a83c16ea251d9e01 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Materials/backgrounds/bg01.mat b/Assets/Resources/Materials/backgrounds/bg01.mat new file mode 100644 index 0000000..29482df --- /dev/null +++ b/Assets/Resources/Materials/backgrounds/bg01.mat @@ -0,0 +1,147 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: bg01 + m_Shader: {fileID: 103, guid: 0000000000000000f000000000000000, type: 0} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: + - _MAPPING_LATITUDE_LONGITUDE_LAYOUT + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 17364b205ce85c44884df3eab87c9eb3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Tex: + m_Texture: {fileID: 8900000, guid: 17364b205ce85c44884df3eab87c9eb3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _Exposure: 0.5 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _ImageType: 0 + - _Layout: 0 + - _Mapping: 1 + - _Metallic: 0 + - _MirrorOnBack: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Rotation: 68 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _Tint: {r: 0.5, g: 0.5, b: 0.5, a: 0.5} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &851822325643615633 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Resources/Materials/backgrounds/bg01.mat.meta b/Assets/Resources/Materials/backgrounds/bg01.mat.meta new file mode 100644 index 0000000..e283b4a --- /dev/null +++ b/Assets/Resources/Materials/backgrounds/bg01.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 96386f93354af834399e6f1bb1455bda +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Materials/backgrounds/skybox_sunny.exr b/Assets/Resources/Materials/backgrounds/skybox_sunny.exr new file mode 100644 index 0000000..6732b58 Binary files /dev/null and b/Assets/Resources/Materials/backgrounds/skybox_sunny.exr differ diff --git a/Assets/Resources/Materials/backgrounds/skybox_sunny.exr.meta b/Assets/Resources/Materials/backgrounds/skybox_sunny.exr.meta new file mode 100644 index 0000000..41afaa2 --- /dev/null +++ b/Assets/Resources/Materials/backgrounds/skybox_sunny.exr.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 32494f52772b24b4586ec90c8ef5745d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 2 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Materials/backgrounds/sunny_cloudy_sky.mat b/Assets/Resources/Materials/backgrounds/sunny_cloudy_sky.mat new file mode 100644 index 0000000..bcf585c --- /dev/null +++ b/Assets/Resources/Materials/backgrounds/sunny_cloudy_sky.mat @@ -0,0 +1,142 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: sunny_cloudy_sky + m_Shader: {fileID: 103, guid: 0000000000000000f000000000000000, type: 0} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Tex: + m_Texture: {fileID: 8900000, guid: 32494f52772b24b4586ec90c8ef5745d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _Exposure: 2.25 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Rotation: 0 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _Tint: {r: 0.21960786, g: 0.21960786, b: 0.21960786, a: 0.5} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4816629868032091807 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Resources/Materials/backgrounds/sunny_cloudy_sky.mat.meta b/Assets/Resources/Materials/backgrounds/sunny_cloudy_sky.mat.meta new file mode 100644 index 0000000..722358e --- /dev/null +++ b/Assets/Resources/Materials/backgrounds/sunny_cloudy_sky.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f60649bffa7f434bb677b326c6dafe3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/MetaXRAcousticMaterialMapping.asset b/Assets/Resources/MetaXRAcousticMaterialMapping.asset new file mode 100644 index 0000000..c2a1169 --- /dev/null +++ b/Assets/Resources/MetaXRAcousticMaterialMapping.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 60e5406209e5ed147bb02ed71f9c40f3, type: 3} + m_Name: MetaXRAcousticMaterialMapping + m_EditorClassIdentifier: + mapping: [] + fallbackMaterial: {fileID: 0} diff --git a/Assets/Resources/MetaXRAcousticMaterialMapping.asset.meta b/Assets/Resources/MetaXRAcousticMaterialMapping.asset.meta new file mode 100644 index 0000000..2d7c7be --- /dev/null +++ b/Assets/Resources/MetaXRAcousticMaterialMapping.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b22d9c3dbc42d0c498e2fad505e9f7de +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/MetaXRAcousticSettings.asset b/Assets/Resources/MetaXRAcousticSettings.asset new file mode 100644 index 0000000..b01dac8 --- /dev/null +++ b/Assets/Resources/MetaXRAcousticSettings.asset @@ -0,0 +1,18 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2b76bcf034ab49e4a8cd30239a716460, type: 3} + m_Name: MetaXRAcousticSettings + m_EditorClassIdentifier: + acousticModel: -1 + diffractionEnabled: 1 + excludeTags: [] + mapBakeWriteGeo: 1 diff --git a/Assets/Resources/MetaXRAcousticSettings.asset.meta b/Assets/Resources/MetaXRAcousticSettings.asset.meta new file mode 100644 index 0000000..9b220d4 --- /dev/null +++ b/Assets/Resources/MetaXRAcousticSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 422011bac50fb6142b0aa2a4622c18f8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/MetaXRAudioSettings.asset b/Assets/Resources/MetaXRAudioSettings.asset new file mode 100644 index 0000000..8cf8c83 --- /dev/null +++ b/Assets/Resources/MetaXRAudioSettings.asset @@ -0,0 +1,15 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f3fe6e38ac2d4c22b04340d6eda2a47e, type: 3} + m_Name: MetaXRAudioSettings + m_EditorClassIdentifier: + voiceLimit: 64 diff --git a/Assets/Resources/MetaXRAudioSettings.asset.meta b/Assets/Resources/MetaXRAudioSettings.asset.meta new file mode 100644 index 0000000..d5341b0 --- /dev/null +++ b/Assets/Resources/MetaXRAudioSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7532a41f66f986743b1cf289a695ad20 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/OVRBuildConfig.asset b/Assets/Resources/OVRBuildConfig.asset new file mode 100644 index 0000000..aa9329a --- /dev/null +++ b/Assets/Resources/OVRBuildConfig.asset @@ -0,0 +1,14 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 20553fac56ec59645857c0732b787431, type: 3} + m_Name: OVRBuildConfig + m_EditorClassIdentifier: diff --git a/Assets/Resources/OVRBuildConfig.asset.meta b/Assets/Resources/OVRBuildConfig.asset.meta new file mode 100644 index 0000000..a62e6e7 --- /dev/null +++ b/Assets/Resources/OVRBuildConfig.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4682e68e4b4c1b445bcfee13acbf5cda +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/OVROverlayCanvasSettings.asset b/Assets/Resources/OVROverlayCanvasSettings.asset new file mode 100644 index 0000000..053537b --- /dev/null +++ b/Assets/Resources/OVROverlayCanvasSettings.asset @@ -0,0 +1,19 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efa1458c2bc55e04b872c61942be2866, type: 3} + m_Name: OVROverlayCanvasSettings + m_EditorClassIdentifier: + _transparentImposterShader: {fileID: 0} + _opaqueImposterShader: {fileID: 0} + MaxSimultaneousCanvases: 1 + CanvasRenderLayer: 31 + CanvasLayer: -1 diff --git a/Assets/Resources/OVROverlayCanvasSettings.asset.meta b/Assets/Resources/OVROverlayCanvasSettings.asset.meta new file mode 100644 index 0000000..fade090 --- /dev/null +++ b/Assets/Resources/OVROverlayCanvasSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 048e0172bcf34c54e9fde777d2c2404e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/OVRPlatformToolSettings.asset b/Assets/Resources/OVRPlatformToolSettings.asset new file mode 100644 index 0000000..0ac2533 --- /dev/null +++ b/Assets/Resources/OVRPlatformToolSettings.asset @@ -0,0 +1,22 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cd7bb81df5b74b34dadbf531f381a26b, type: 3} + m_Name: OVRPlatformToolSettings + m_EditorClassIdentifier: + riftRedistPackages: [] + languagePackDirectory: + assetConfigs: + - configList: [] + - configList: [] + - configList: [] + targetPlatform: 3 + runOvrLint: 1 diff --git a/Assets/Resources/OVRPlatformToolSettings.asset.meta b/Assets/Resources/OVRPlatformToolSettings.asset.meta new file mode 100644 index 0000000..787da4c --- /dev/null +++ b/Assets/Resources/OVRPlatformToolSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a410c0354f1a5634d857a3693b748bc4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/OculusRuntimeSettings.asset b/Assets/Resources/OculusRuntimeSettings.asset new file mode 100644 index 0000000..ee4ad07 --- /dev/null +++ b/Assets/Resources/OculusRuntimeSettings.asset @@ -0,0 +1,24 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3863570e7e6387a40ae4f323d83291e5, type: 3} + m_Name: OculusRuntimeSettings + m_EditorClassIdentifier: + handSkeletonVersion: 1 + colorSpace: 7 + requestsVisualFaceTracking: 1 + requestsAudioFaceTracking: 1 + enableFaceTrackingVisemesOutput: 0 + telemetryProjectGuid: 644c280c-e8dd-4de4-946a-afae3d280077 + bodyTrackingFidelity: 1 + bodyTrackingJointSet: 0 + allowVisibilityMesh: 1 + QuestVisibilityMeshOverriden: 0 diff --git a/Assets/Resources/OculusRuntimeSettings.asset.meta b/Assets/Resources/OculusRuntimeSettings.asset.meta new file mode 100644 index 0000000..0283760 --- /dev/null +++ b/Assets/Resources/OculusRuntimeSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c048657e02144134cb64e7caa1563f50 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant.meta b/Assets/Resources/Stylized NPC - Peasant Nolant.meta new file mode 100644 index 0000000..2c759c3 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9f963a6e4b9fb134b9b6aa872ad41e85 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Animator.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Animator.meta new file mode 100644 index 0000000..66310a7 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Animator.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d4d165f7b06726443ab539ab907e3924 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Animator/Animator Controller.controller b/Assets/Resources/Stylized NPC - Peasant Nolant/Animator/Animator Controller.controller new file mode 100644 index 0000000..f63d9ad --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Animator/Animator Controller.controller @@ -0,0 +1,147 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-5656800004592474614 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: metarig|Idle + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 898632481420762275} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: -5324238279805231817, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-3284292782727719581 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -5656800004592474614} + m_Position: {x: 340, y: 150, z: 0} + - serializedVersion: 1 + m_State: {fileID: 395635427107546727} + m_Position: {x: 340, y: 90, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 395635427107546727} +--- !u!1101 &-1899780062771295826 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -5656800004592474614} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0 + m_TransitionOffset: 0 + m_ExitTime: 1 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Animator Controller + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -3284292782727719581} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &395635427107546727 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: metarig|Walk + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -1899780062771295826} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 2933577835342229695, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &898632481420762275 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 395635427107546727} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0 + m_TransitionOffset: 0 + m_ExitTime: 1 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Animator/Animator Controller.controller.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Animator/Animator Controller.controller.meta new file mode 100644 index 0000000..2bdda10 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Animator/Animator Controller.controller.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: fecf6d756e0aaae41ada7c746eed59b9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Animator/Animator Controller.controller + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Demo.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Demo.meta new file mode 100644 index 0000000..3dc5f18 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Demo.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15e7ccf69b7443e49848e9d0b1ee7989 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Demo/Demo.unity b/Assets/Resources/Stylized NPC - Peasant Nolant/Demo/Demo.unity new file mode 100644 index 0000000..474f93c --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Demo/Demo.unity @@ -0,0 +1,715 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 1, g: 1, b: 1, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &51933508 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 51933510} + - component: {fileID: 51933509} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &51933509 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 51933508} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 0.7972953, b: 0.63529414, a: 1} + m_Intensity: 0.75 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &51933510 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 51933508} + m_LocalRotation: {x: 0.8129973, y: -0.0009798794, z: 0.17181568, w: 0.5563396} + m_LocalPosition: {x: -2.33, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 64.815, y: -220.841, z: -206.456} +--- !u!1 &926975431 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 926975433} + - component: {fileID: 926975432} + m_Layer: 0 + m_Name: Point Light (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &926975432 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 926975431} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 2 + m_Shape: 0 + m_Color: {r: 0.63529414, g: 0.9647059, b: 1, a: 1} + m_Intensity: 3.14 + m_Range: 13.33 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 1 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &926975433 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 926975431} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.76, y: 4.08, z: -4.77} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &945831033 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 945831035} + - component: {fileID: 945831034} + m_Layer: 0 + m_Name: Point Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &945831034 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 945831033} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 2 + m_Shape: 0 + m_Color: {r: 0.9056604, g: 0.865931, b: 0.7467426, a: 1} + m_Intensity: 2 + m_Range: 13.33 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 1 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &945831035 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 945831033} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.7, y: 3.99, z: 0.87} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1210860783 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1210860786} + - component: {fileID: 1210860785} + - component: {fileID: 1210860784} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &1210860784 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1210860783} + m_Enabled: 1 +--- !u!20 &1210860785 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1210860783} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.3018868, g: 0.3018868, b: 0.3018868, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &1210860786 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1210860783} + m_LocalRotation: {x: 0, y: 0.99691737, z: -0.078459114, w: 0} + m_LocalPosition: {x: 0, y: 1.65, z: 3.4} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 9, y: 180, z: 0} +--- !u!1001 &2038538141350710752 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 4882481920500871233, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 4882481920500871233, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} + propertyPath: m_LocalPosition.x + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: 4882481920500871233, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4882481920500871233, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4882481920500871233, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4882481920500871233, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4882481920500871233, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4882481920500871233, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4882481920500871233, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4882481920500871233, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4882481920500871233, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5226954981596785403, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} + propertyPath: m_Name + value: Peasant Nolant Green(Free Version) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7d67ac5cfda0b944580afbed7561ec82, type: 3} +--- !u!1001 &5945411929214623433 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalPosition.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6792327054025522797, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_Name + value: Peasant Nolant Blue(Free Version) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} +--- !u!1001 &7890970350093632057 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 2669372775266760516, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} + propertyPath: m_Name + value: Peasant Nolant Yellow(Free Version) + objectReference: {fileID: 0} + - target: {fileID: 3332756950553193982, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 3332756950553193982, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} + propertyPath: m_LocalPosition.x + value: -1.5 + objectReference: {fileID: 0} + - target: {fileID: 3332756950553193982, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3332756950553193982, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3332756950553193982, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3332756950553193982, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3332756950553193982, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3332756950553193982, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3332756950553193982, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3332756950553193982, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3332756950553193982, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4f9803ed31b25c049b47eaf15bcb0c32, type: 3} +--- !u!1001 &8519192094828532379 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 2536267428180160170, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 2536267428180160170, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 2536267428180160170, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2536267428180160170, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2536267428180160170, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2536267428180160170, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2536267428180160170, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2536267428180160170, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2536267428180160170, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2536267428180160170, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2536267428180160170, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2916486913691104272, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} + propertyPath: m_Name + value: Peasant Nolant Brown(Free Version) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 3c0b66c1fb55cd34994e034186a852c1, type: 3} diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Demo/Demo.unity.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Demo/Demo.unity.meta new file mode 100644 index 0000000..d150783 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Demo/Demo.unity.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 5492b3f92fe2ca54fb93c4b87d2eca56 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Demo/Demo.unity + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Materials.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials.meta new file mode 100644 index 0000000..a333005 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 450b7235dd9f1184eb152153aa9342b2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Blue.mat b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Blue.mat new file mode 100644 index 0000000..821c771 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Blue.mat @@ -0,0 +1,138 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-210458435147181479 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Peasant Nolant Blue + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: d552efe2e718cb243a43a23a3160e1f6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: d552efe2e718cb243a43a23a3160e1f6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Blue.mat.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Blue.mat.meta new file mode 100644 index 0000000..e0cf5d3 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Blue.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c0eef74a623ce29459e6b936afe3c76a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Blue.mat + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Brown.mat b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Brown.mat new file mode 100644 index 0000000..be3a57a --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Brown.mat @@ -0,0 +1,78 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Peasant Nolant Brown + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 0c6db0d88664c7847a854ccc20f8dffd, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Brown.mat.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Brown.mat.meta new file mode 100644 index 0000000..db1721d --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Brown.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 9906f4dad73679a438ff342ed90aea44 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Brown.mat + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Green.mat b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Green.mat new file mode 100644 index 0000000..25f481a --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Green.mat @@ -0,0 +1,78 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Peasant Nolant Green + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 4cd6644c3000d5440a9d351d817300a0, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Green.mat.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Green.mat.meta new file mode 100644 index 0000000..98e959c --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Green.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 47ce78e26e0d0aa46a3873d869b96031 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Green.mat + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Yellow.mat b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Yellow.mat new file mode 100644 index 0000000..b09072a --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Yellow.mat @@ -0,0 +1,78 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Peasant Nolant Yellow + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: cd4d946f45eea7e409da2c45885aafad, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Yellow.mat.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Yellow.mat.meta new file mode 100644 index 0000000..79fa020 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Yellow.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b5588b6e42615a54586d7cf12825dcd8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Yellow.mat + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Models.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Models.meta new file mode 100644 index 0000000..f9cad5f --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15aedf4487246c841a296a4a9261b852 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Models/Peasant Nolant(Free Version).fbx b/Assets/Resources/Stylized NPC - Peasant Nolant/Models/Peasant Nolant(Free Version).fbx new file mode 100644 index 0000000..8f3b6fc Binary files /dev/null and b/Assets/Resources/Stylized NPC - Peasant Nolant/Models/Peasant Nolant(Free Version).fbx differ diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Models/Peasant Nolant(Free Version).fbx.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Models/Peasant Nolant(Free Version).fbx.meta new file mode 100644 index 0000000..e4319fe --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Models/Peasant Nolant(Free Version).fbx.meta @@ -0,0 +1,640 @@ +fileFormatVersion: 2 +guid: de76d67d0ab88dc439b10b32370775ea +ModelImporter: + serializedVersion: 20300 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: + - serializedVersion: 16 + name: metarig|Idle + takeName: metarig|Idle + internalID: -5324238279805231817 + firstFrame: 0 + lastFrame: 180 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 1 + loopBlendPositionY: 1 + loopBlendPositionXZ: 1 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: metarig|Walk + takeName: metarig|Walk + internalID: 2933577835342229695 + firstFrame: 0 + lastFrame: 80 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 1 + loopBlendPositionY: 1 + loopBlendPositionXZ: 1 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: + - boneName: spine + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: thigh.L + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: thigh.R + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: shin.L + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: shin.R + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: foot.L + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: foot.R + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: spine.001 + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: spine.002 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: spine.004 + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: spine.005 + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: shoulder.L + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: shoulder.R + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: upper_arm.L + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: upper_arm.R + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: forearm.L + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: forearm.R + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: hand.L + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: hand.R + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: toe.L + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: toe.R + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: spine.006 + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: thumb.L + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: finger.001.L + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: finger.002.L + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: thumb.R + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: finger.001.R + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: finger.002.R + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: spine.003 + humanName: UpperChest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Peasant Nolant(Free Version)(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Peasant Nolant + parentName: Peasant Nolant(Free Version)(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.7071067, y: -0.000000030908616, z: 0.000000030908623, w: 0.7071068} + scale: {x: 98.23217, y: 98.23217, z: 98.23217} + - name: metarig + parentName: Peasant Nolant(Free Version)(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.7071067, y: 5.302452e-33, z: 5.302451e-33, w: 0.7071068} + scale: {x: 98.232155, y: 98.232155, z: 98.232155} + - name: spine + parentName: metarig + position: {x: -0, y: -0.000006627681, z: 0.007481878} + rotation: {x: 0.79045546, y: -0.00000009979218, z: -0.00000005967783, w: 0.6125195} + scale: {x: 1, y: 1, z: 1} + - name: spine.001 + parentName: spine + position: {x: 1.7763568e-17, y: 0.0011857431, z: 2.2351741e-10} + rotation: {x: -0.13536048, y: 7.1054274e-14, z: 0.000000032272474, w: 0.99079645} + scale: {x: 1, y: 1.0000002, z: 1.0000002} + - name: spine.002 + parentName: spine.001 + position: {x: -7.521192e-18, y: 0.0014414854, z: -1.8626451e-11} + rotation: {x: -0.006285757, y: -7.3891183e-14, z: 0.0000000014986554, w: 0.9999803} + scale: {x: 1, y: 0.99999976, z: 0.99999976} + - name: spine.003 + parentName: spine.002 + position: {x: 1.6596287e-18, y: 0.0013467424, z: 0} + rotation: {x: -0.0893681, y: 0.000000118732515, z: 0.0000000106535145, w: 0.99599874} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: spine.004 + parentName: spine.003 + position: {x: -6.352747e-24, y: 0.0015334577, z: -1.2107193e-10} + rotation: {x: 0.025457304, y: -1.065814e-13, z: 7.993605e-15, w: 0.9996759} + scale: {x: 1, y: 1, z: 1} + - name: spine.005 + parentName: spine.004 + position: {x: -6.352747e-24, y: 0.00048525524, z: -5.5879353e-11} + rotation: {x: 0.17291254, y: -0.00000011741362, z: -0.000000020612795, w: 0.98493725} + scale: {x: 1, y: 1, z: 1.0000001} + - name: spine.006 + parentName: spine.005 + position: {x: 3.0798813e-17, y: 0.00048842304, z: 8.381903e-11} + rotation: {x: -0.093711875, y: 0.000000118684746, z: 0.000000011171323, w: 0.9955994} + scale: {x: 1, y: 1.0000001, z: 0.99999994} + - name: spine.006_end + parentName: spine.006 + position: {x: -0, y: 0.001940323, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: shoulder.L + parentName: spine.003 + position: {x: -0.00014255145, y: 0.0009989149, z: 0.00052131154} + rotation: {x: -0.5468348, y: 0.34676126, z: 0.45215288, w: 0.61342174} + scale: {x: 1.0000001, y: 1.0000005, z: 1.0000001} + - name: upper_arm.L + parentName: shoulder.L + position: {x: -0.00009254757, y: 0.0017519274, z: -0.00009666324} + rotation: {x: 0.1412108, y: -0.7197513, z: 0.10993257, w: 0.67076993} + scale: {x: 1.0000001, y: 1.0000008, z: 0.99999976} + - name: forearm.L + parentName: upper_arm.L + position: {x: 1.0099938e-10, y: 0.002055898, z: 1.3969838e-11} + rotation: {x: -0.002479165, y: 0.0011975167, z: -0.058112144, w: 0.9983063} + scale: {x: 1.0000012, y: 1.0000007, z: 1.0000001} + - name: hand.L + parentName: forearm.L + position: {x: 4.4801992e-11, y: 0.0022769012, z: 1.7462297e-11} + rotation: {x: 0.0026804155, y: -0.0056501497, z: -0.027539568, w: 0.9996012} + scale: {x: 1.0000002, y: 1, z: 0.9999998} + - name: finger.001.L + parentName: hand.L + position: {x: 1.0928488e-10, y: 0.0009657161, z: -2.0954757e-11} + rotation: {x: 0.011773748, y: -0.0024753865, z: 0.098341346, w: 0.99508005} + scale: {x: 1.0000006, y: 1.0000011, z: 0.9999996} + - name: finger.002.L + parentName: finger.001.L + position: {x: 3.3382092e-10, y: 0.00032609582, z: -1.7462297e-11} + rotation: {x: -0.00080015947, y: 0.0029950666, z: 0.03505559, w: 0.99938065} + scale: {x: 1.0000006, y: 1.0000011, z: 1.0000004} + - name: finger.002.L_end + parentName: finger.002.L + position: {x: -0, y: 0.00027408908, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: thumb.L + parentName: hand.L + position: {x: -0.0000761109, y: 0.00036991527, z: 0.00064733863} + rotation: {x: 0.30948925, y: 0.020857157, z: 0.05079194, w: 0.9493164} + scale: {x: 1.0000011, y: 1.0000006, z: 1.0000005} + - name: thumb.L_end + parentName: thumb.L + position: {x: -0, y: 0.00048067997, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: shoulder.R + parentName: spine.003 + position: {x: 0.00014255145, y: 0.0009989149, z: 0.00052131154} + rotation: {x: -0.546835, y: -0.34676093, z: -0.4521528, w: 0.61342174} + scale: {x: 1.0000004, y: 1.0000008, z: 1.0000002} + - name: upper_arm.R + parentName: shoulder.R + position: {x: 0.00009254757, y: 0.0017519274, z: -0.00009666324} + rotation: {x: -0.14121097, y: -0.7197513, z: 0.10993287, w: -0.67077} + scale: {x: 1, y: 1.0000005, z: 1.0000001} + - name: forearm.R + parentName: upper_arm.R + position: {x: -2.499837e-10, y: 0.0020558967, z: 8.1490726e-12} + rotation: {x: -0.0024790613, y: -0.0011974274, z: 0.058112107, w: 0.99830633} + scale: {x: 1.0000018, y: 1.0000019, z: 0.9999999} + - name: hand.R + parentName: forearm.R + position: {x: -1.1933736e-10, y: 0.0022769019, z: 2.1536835e-11} + rotation: {x: 0.0026803592, y: 0.005650126, z: 0.027539488, w: 0.9996011} + scale: {x: 1.0000002, y: 0.99999976, z: 0.99999946} + - name: finger.001.R + parentName: hand.R + position: {x: 3.3760442e-10, y: 0.000965716, z: 1.6298145e-11} + rotation: {x: 0.011773733, y: 0.0024753541, z: -0.09834122, w: 0.99508005} + scale: {x: 1.0000012, y: 1.0000013, z: 0.99999946} + - name: finger.002.R + parentName: finger.001.R + position: {x: -4.089088e-10, y: 0.00032609596, z: -1.7462297e-11} + rotation: {x: -0.0008001659, y: -0.0029952512, z: -0.035056025, w: 0.9993805} + scale: {x: 1.0000002, y: 1.0000007, z: 1.0000002} + - name: finger.002.R_end + parentName: finger.002.R + position: {x: -0, y: 0.00027408908, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: thumb.R + parentName: hand.R + position: {x: 0.00007611112, y: 0.00036991524, z: 0.00064733875} + rotation: {x: 0.3094894, y: -0.020857133, z: -0.050791867, w: 0.9493164} + scale: {x: 1.0000006, y: 1.0000006, z: 1.0000002} + - name: thumb.R_end + parentName: thumb.R + position: {x: -0, y: 0.00048067997, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: breast.L + parentName: spine.003 + position: {x: -0.0011147689, y: 0.00015642076, z: -0.00059018645} + rotation: {x: 0.000000058705044, y: 0.6287944, z: 0.7775716, w: 0.00000004747264} + scale: {x: 1.0000005, y: 1.0000001, z: 1.0000002} + - name: breast.L_end + parentName: breast.L + position: {x: -0, y: 0.0010843258, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: breast.R + parentName: spine.003 + position: {x: 0.0011147689, y: 0.00015642075, z: -0.00059018645} + rotation: {x: -0.000000058705023, y: 0.6287944, z: 0.7775716, w: -0.000000047472646} + scale: {x: 1.0000005, y: 1.0000001, z: 1.0000002} + - name: breast.R_end + parentName: breast.R + position: {x: -0, y: 0.0010843258, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: pelvis.L + parentName: spine + position: {x: 2.4424906e-17, y: -8.3091437e-11, z: 2.4447216e-10} + rotation: {x: -0.20745534, y: 0.755797, z: 0.37365565, w: 0.49609947} + scale: {x: 1.0000006, y: 1, z: 1.0000002} + - name: pelvis.L_end + parentName: pelvis.L + position: {x: -0, y: 0.0015439128, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: pelvis.R + parentName: spine + position: {x: 2.4424906e-17, y: -8.3091437e-11, z: 2.4447216e-10} + rotation: {x: -0.20745544, y: -0.7557969, z: -0.37365568, w: 0.49609953} + scale: {x: 1, y: 0.9999997, z: 1.0000002} + - name: pelvis.R_end + parentName: pelvis.R + position: {x: -0, y: 0.0015439128, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: thigh.L + parentName: spine + position: {x: -0.0009815216, y: 0.00007858221, z: 0.00026882984} + rotation: {x: 0.9941871, y: -0.02858101, z: 0.00720453, w: 0.10355267} + scale: {x: 1, y: 1.0000005, z: 0.9999999} + - name: shin.L + parentName: thigh.L + position: {x: 5.2314136e-11, y: 0.0032267736, z: 3.3760442e-11} + rotation: {x: -0.0031269717, y: -0.004067382, z: -0.030914137, w: 0.9995089} + scale: {x: 1.0000001, y: 1.000001, z: 1.0000006} + - name: foot.L + parentName: shin.L + position: {x: 6.042716e-11, y: 0.0037125398, z: -5.1841196e-12} + rotation: {x: -0.55521375, y: -0.0009995973, z: 0.0014067116, w: 0.8317059} + scale: {x: 0.9999999, y: 1.000001, z: 1.0000008} + - name: toe.L + parentName: foot.L + position: {x: -4.8447007e-11, y: 0.00089579215, z: -8.913616e-12} + rotation: {x: 0.0000013413955, y: 0.9842265, z: -0.17691293, w: -0.00000077759614} + scale: {x: 1.0000002, y: 1.000001, z: 0.9999998} + - name: toe.L_end + parentName: toe.L + position: {x: -0, y: 0.00062173844, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: thigh.R + parentName: spine + position: {x: 0.0009815217, y: 0.000078582205, z: 0.00026882935} + rotation: {x: 0.9941871, y: 0.028581033, z: -0.007204826, w: 0.10355267} + scale: {x: 0.9999998, y: 1, z: 0.9999998} + - name: shin.R + parentName: thigh.R + position: {x: 9.400537e-11, y: 0.003226773, z: 3.608875e-11} + rotation: {x: -0.0031269568, y: 0.00406736, z: 0.030914132, w: 0.9995089} + scale: {x: 1.0000002, y: 1.0000007, z: 1.0000007} + - name: foot.R + parentName: shin.R + position: {x: 5.837535e-12, y: 0.0037125393, z: -2.2828317e-12} + rotation: {x: -0.55521363, y: 0.0009995814, z: -0.001406732, w: 0.83170605} + scale: {x: 0.9999999, y: 1.0000012, z: 1.0000013} + - name: toe.R + parentName: foot.R + position: {x: -1.9075514e-11, y: 0.00089579186, z: 1.4524062e-11} + rotation: {x: -0.0000013123498, y: 0.9842265, z: -0.17691298, w: 0.0000006583286} + scale: {x: 1.0000011, y: 1.0000008, z: 1.0000004} + - name: toe.R_end + parentName: toe.R + position: {x: -0, y: 0.00062173844, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hat + parentName: Peasant Nolant(Free Version)(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.7071067, y: -0.000000030908616, z: 0.000000030908623, w: 0.7071068} + scale: {x: 98.23217, y: 98.23217, z: 98.23217} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Models/Peasant Nolant(Free Version).fbx + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs.meta new file mode 100644 index 0000000..6c53f1a --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c1e92b359d55e9e409a9930f4385bc21 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Blue(Free Version).prefab b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Blue(Free Version).prefab new file mode 100644 index 0000000..743fdc9 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Blue(Free Version).prefab @@ -0,0 +1,1683 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &20715341688418473 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 844256544248876135} + m_Layer: 0 + m_Name: upper_arm.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &844256544248876135 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 20715341688418473} + m_LocalRotation: {x: -0.3171662, y: 0.6459196, z: -0.5277035, w: 0.45135617} + m_LocalPosition: {x: 0.00009254757, y: 0.0017519274, z: -0.00009666324} + m_LocalScale: {x: 0.99999964, y: 0.99999976, z: 0.9999999} + m_Children: + - {fileID: 467737489455847602} + m_Father: {fileID: 920353175856695524} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &81606882168236832 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2575346895400900800} + m_Layer: 0 + m_Name: metarig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2575346895400900800 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 81606882168236832} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: + - {fileID: 1754089336644160313} + m_Father: {fileID: 6127395625895404759} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!1 &407997695005720656 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4090033219226665777} + m_Layer: 0 + m_Name: finger.001.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4090033219226665777 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 407997695005720656} + m_LocalRotation: {x: 0.015054991, y: -0.0006372028, z: -0.28685558, w: 0.95785534} + m_LocalPosition: {x: -2.1755113e-11, y: 0.00096571463, z: 2.3283063e-11} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.9999997} + m_Children: + - {fileID: 2747248048432608861} + m_Father: {fileID: 944539771424738239} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &505854037044110127 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6610418336056193991} + m_Layer: 0 + m_Name: shoulder.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6610418336056193991 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 505854037044110127} + m_LocalRotation: {x: -0.5588021, y: 0.32983753, z: 0.44262508, w: 0.6188946} + m_LocalPosition: {x: -0.00014255145, y: 0.0009989149, z: 0.00052131154} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999999} + m_Children: + - {fileID: 2038341847126506511} + m_Father: {fileID: 7051217914449440451} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &521057550585963740 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4394709661376018719} + m_Layer: 0 + m_Name: breast.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4394709661376018719 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 521057550585963740} + m_LocalRotation: {x: -0.000000096012194, y: 0.6287944, z: 0.7775716, w: -0.00000009360698} + m_LocalPosition: {x: 0.0011147689, y: 0.00015642075, z: -0.00059018645} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: + - {fileID: 1152237788064856417} + m_Father: {fileID: 7051217914449440451} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &598392891953690905 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8335989005009058483} + m_Layer: 0 + m_Name: forearm.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8335989005009058483 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 598392891953690905} + m_LocalRotation: {x: 0.0050242175, y: 0.0025352335, z: 0.021735689, w: 0.99974793} + m_LocalPosition: {x: 9.84528e-11, y: 0.0020558955, z: 1.8626451e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 7697119737911569889} + m_Father: {fileID: 2038341847126506511} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1971774516142520369 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3602527742889376796} + m_Layer: 0 + m_Name: finger.002.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3602527742889376796 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1971774516142520369} + m_LocalRotation: {x: -0.0038466123, y: 0.0029541235, z: 0.16873349, w: 0.9856498} + m_LocalPosition: {x: 3.4371622e-10, y: 0.0003260961, z: 2.4447217e-11} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3918476632736320660} + m_Father: {fileID: 8866521922984669276} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2146430550011853907 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5546781016202306826} + m_Layer: 0 + m_Name: pelvis.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5546781016202306826 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2146430550011853907} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0015439128, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2355510335214859217} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2412305473658735944 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4177057842263661190} + m_Layer: 0 + m_Name: spine.001 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4177057842263661190 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2412305473658735944} + m_LocalRotation: {x: -0.13536042, y: 6.208031e-14, z: 0.00000003227247, w: 0.99079645} + m_LocalPosition: {x: 2.6645352e-17, y: 0.0011857431, z: 2.2351741e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 516598643235226825} + m_Father: {fileID: 1754089336644160313} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2496682536171683552 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 516598643235226825} + m_Layer: 0 + m_Name: spine.002 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &516598643235226825 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2496682536171683552} + m_LocalRotation: {x: -0.006285749, y: -4.9914083e-14, z: 0.0000000014986405, w: 0.9999803} + m_LocalPosition: {x: -8.881784e-18, y: 0.0014414854, z: -1.8626451e-11} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 7051217914449440451} + m_Father: {fileID: 4177057842263661190} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2853022951432406168 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 728354472652604829} + m_Layer: 0 + m_Name: breast.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &728354472652604829 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2853022951432406168} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0010843258, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4339408843629127656} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3042470926991119426 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3632243556992837311} + - component: {fileID: 3416358460440594157} + m_Layer: 0 + m_Name: Hat + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3632243556992837311 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3042470926991119426} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: [] + m_Father: {fileID: 6127395625895404759} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!137 &3416358460440594157 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3042470926991119426} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: c0eef74a623ce29459e6b936afe3c76a, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 6657998009922166292, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Bones: + - {fileID: 1754089336644160313} + - {fileID: 4177057842263661190} + - {fileID: 516598643235226825} + - {fileID: 7051217914449440451} + - {fileID: 6541791391446981506} + - {fileID: 4670606559093464023} + - {fileID: 4210702444034932242} + - {fileID: 6610418336056193991} + - {fileID: 2038341847126506511} + - {fileID: 8335989005009058483} + - {fileID: 7697119737911569889} + - {fileID: 8866521922984669276} + - {fileID: 3602527742889376796} + - {fileID: 9049674729524690171} + - {fileID: 920353175856695524} + - {fileID: 844256544248876135} + - {fileID: 467737489455847602} + - {fileID: 944539771424738239} + - {fileID: 4090033219226665777} + - {fileID: 2747248048432608861} + - {fileID: 5996572380485835958} + - {fileID: 4339408843629127656} + - {fileID: 4394709661376018719} + - {fileID: 2355510335214859217} + - {fileID: 7369256377892360287} + - {fileID: 6924498691211089472} + - {fileID: 6604101896056050419} + - {fileID: 3855453139639530419} + - {fileID: 6972278315134581498} + - {fileID: 5754211378362722388} + - {fileID: 8888353470039789184} + - {fileID: 7646867060438440150} + - {fileID: 8588455980928593316} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1754089336644160313} + m_AABB: + m_Center: {x: 0.000003722962, y: 0.008676607, z: -0.0022646827} + m_Extent: {x: 0.0034599465, y: 0.0023455431, z: 0.0035855323} + m_DirtyAABB: 0 +--- !u!1 &3252154901048890364 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8866521922984669276} + m_Layer: 0 + m_Name: finger.001.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8866521922984669276 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3252154901048890364} + m_LocalRotation: {x: 0.015054992, y: 0.00063720264, z: 0.28685555, w: 0.95785534} + m_LocalPosition: {x: -1.272565e-10, y: 0.00096571585, z: -3.7252902e-11} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999997} + m_Children: + - {fileID: 3602527742889376796} + m_Father: {fileID: 7697119737911569889} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3670856311928901092 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8888353470039789184} + m_Layer: 0 + m_Name: shin.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8888353470039789184 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3670856311928901092} + m_LocalRotation: {x: -0.0031269114, y: 0.0040673893, z: 0.030914117, w: 0.9995089} + m_LocalPosition: {x: 9.589712e-11, y: 0.003226773, z: 1.9790605e-11} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 7646867060438440150} + m_Father: {fileID: 5754211378362722388} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3773093589284655839 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5858015301758344321} + m_Layer: 0 + m_Name: spine.006_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5858015301758344321 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3773093589284655839} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.001940323, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4210702444034932242} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3892817292160147418 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6604101896056050419} + m_Layer: 0 + m_Name: shin.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6604101896056050419 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3892817292160147418} + m_LocalRotation: {x: -0.0031269148, y: -0.004067427, z: -0.030914111, w: 0.9995089} + m_LocalPosition: {x: 1.1787051e-11, y: 0.0032267736, z: 2.0954757e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 3855453139639530419} + m_Father: {fileID: 6924498691211089472} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3964522547712598059 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2565732889234756395} + m_Layer: 0 + m_Name: finger.002.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2565732889234756395 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3964522547712598059} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00027408908, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2747248048432608861} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4164796250241693990 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7369256377892360287} + m_Layer: 0 + m_Name: pelvis.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7369256377892360287 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4164796250241693990} + m_LocalRotation: {x: 0.20745556, y: 0.75579697, z: 0.37365574, w: -0.49609944} + m_LocalPosition: {x: 6.009082e-17, y: -8.3091437e-11, z: 2.4447216e-10} + m_LocalScale: {x: 0.9999999, y: 0.99999964, z: 0.99999994} + m_Children: + - {fileID: 7963344588147113550} + m_Father: {fileID: 1754089336644160313} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4328679333743109083 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3317627835739014694} + m_Layer: 0 + m_Name: toe.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3317627835739014694 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4328679333743109083} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00062173844, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8588455980928593316} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4621049698435231874 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2038341847126506511} + m_Layer: 0 + m_Name: upper_arm.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2038341847126506511 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4621049698435231874} + m_LocalRotation: {x: 0.31716618, y: 0.6459197, z: -0.52770346, w: -0.45135623} + m_LocalPosition: {x: -0.00009254757, y: 0.0017519274, z: -0.00009666324} + m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.9999999} + m_Children: + - {fileID: 8335989005009058483} + m_Father: {fileID: 6610418336056193991} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4889346266593894859 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 944539771424738239} + m_Layer: 0 + m_Name: hand.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &944539771424738239 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4889346266593894859} + m_LocalRotation: {x: 0.003101413, y: 0.0055287913, z: -0.015587786, w: 0.99985844} + m_LocalPosition: {x: 2.4652422e-11, y: 0.0022769012, z: -2.4447217e-11} + m_LocalScale: {x: 1.0000001, y: 0.99999976, z: 0.99999976} + m_Children: + - {fileID: 4090033219226665777} + - {fileID: 5996572380485835958} + m_Father: {fileID: 467737489455847602} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5005613573076693951 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5754211378362722388} + m_Layer: 0 + m_Name: thigh.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5754211378362722388 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5005613573076693951} + m_LocalRotation: {x: 0.9941871, y: 0.02858102, z: -0.0072049154, w: 0.10355265} + m_LocalPosition: {x: 0.0009815217, y: 0.000078582205, z: 0.00026882935} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999998} + m_Children: + - {fileID: 8888353470039789184} + m_Father: {fileID: 1754089336644160313} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5041455415743565748 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7014824995291846742} + - component: {fileID: 3762071116466580673} + m_Layer: 0 + m_Name: Peasant Nolant + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7014824995291846742 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5041455415743565748} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: [] + m_Father: {fileID: 6127395625895404759} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!137 &3762071116466580673 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5041455415743565748} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: c0eef74a623ce29459e6b936afe3c76a, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -4903783072746440830, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Bones: + - {fileID: 1754089336644160313} + - {fileID: 4177057842263661190} + - {fileID: 516598643235226825} + - {fileID: 7051217914449440451} + - {fileID: 6541791391446981506} + - {fileID: 4670606559093464023} + - {fileID: 4210702444034932242} + - {fileID: 6610418336056193991} + - {fileID: 2038341847126506511} + - {fileID: 8335989005009058483} + - {fileID: 7697119737911569889} + - {fileID: 8866521922984669276} + - {fileID: 3602527742889376796} + - {fileID: 9049674729524690171} + - {fileID: 920353175856695524} + - {fileID: 844256544248876135} + - {fileID: 467737489455847602} + - {fileID: 944539771424738239} + - {fileID: 4090033219226665777} + - {fileID: 2747248048432608861} + - {fileID: 5996572380485835958} + - {fileID: 4339408843629127656} + - {fileID: 4394709661376018719} + - {fileID: 2355510335214859217} + - {fileID: 7369256377892360287} + - {fileID: 6924498691211089472} + - {fileID: 6604101896056050419} + - {fileID: 3855453139639530419} + - {fileID: 6972278315134581498} + - {fileID: 5754211378362722388} + - {fileID: 8888353470039789184} + - {fileID: 7646867060438440150} + - {fileID: 8588455980928593316} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1754089336644160313} + m_AABB: + m_Center: {x: -2.3283064e-10, y: 0.0011994755, z: -0.00040803547} + m_Extent: {x: 0.003455709, y: 0.008865731, z: 0.0038897444} + m_DirtyAABB: 0 +--- !u!1 &5115243576415378285 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6541791391446981506} + m_Layer: 0 + m_Name: spine.004 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6541791391446981506 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5115243576415378285} + m_LocalRotation: {x: 0.025457365, y: -9.811444e-14, z: 6.807474e-17, w: 0.9996759} + m_LocalPosition: {x: 7.9409334e-24, y: 0.0015334577, z: -1.2107193e-10} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 4670606559093464023} + m_Father: {fileID: 7051217914449440451} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5152687923292552880 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7411863241990335583} + m_Layer: 0 + m_Name: thumb.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7411863241990335583 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5152687923292552880} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00048067997, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5996572380485835958} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5473240343340286907 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3918476632736320660} + m_Layer: 0 + m_Name: finger.002.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3918476632736320660 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5473240343340286907} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00027408908, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3602527742889376796} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5593857695875182234 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 920353175856695524} + m_Layer: 0 + m_Name: shoulder.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &920353175856695524 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5593857695875182234} + m_LocalRotation: {x: -0.5588021, y: -0.32983753, z: -0.44262508, w: 0.6188946} + m_LocalPosition: {x: 0.00014255145, y: 0.0009989149, z: 0.00052131154} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999999} + m_Children: + - {fileID: 844256544248876135} + m_Father: {fileID: 7051217914449440451} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5683548829406612803 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4899761735064060939} + m_Layer: 0 + m_Name: thumb.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4899761735064060939 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5683548829406612803} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00048067997, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 9049674729524690171} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5869036768138119257 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2355510335214859217} + m_Layer: 0 + m_Name: pelvis.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2355510335214859217 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5869036768138119257} + m_LocalRotation: {x: -0.2074554, y: 0.7557971, z: 0.37365568, w: 0.49609938} + m_LocalPosition: {x: 6.009082e-17, y: -8.3091437e-11, z: 2.4447216e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 5546781016202306826} + m_Father: {fileID: 1754089336644160313} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6303444667665714469 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1754089336644160313} + m_Layer: 0 + m_Name: spine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1754089336644160313 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6303444667665714469} + m_LocalRotation: {x: 0.7904555, y: -0.00000007301811, z: -0.00000009422975, w: 0.61251944} + m_LocalPosition: {x: -0, y: -0.000006627681, z: 0.007481878} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2355510335214859217} + - {fileID: 7369256377892360287} + - {fileID: 4177057842263661190} + - {fileID: 6924498691211089472} + - {fileID: 5754211378362722388} + m_Father: {fileID: 2575346895400900800} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6651285514777209981 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2747248048432608861} + m_Layer: 0 + m_Name: finger.002.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2747248048432608861 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6651285514777209981} + m_LocalRotation: {x: -0.0038466123, y: -0.0029541238, z: -0.16873348, w: 0.9856498} + m_LocalPosition: {x: -6.4173944e-10, y: 0.00032609663, z: 3.1432135e-11} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 2565732889234756395} + m_Father: {fileID: 4090033219226665777} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6651490215514595658 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4339408843629127656} + m_Layer: 0 + m_Name: breast.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4339408843629127656 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6651490215514595658} + m_LocalRotation: {x: 0.000000096012194, y: 0.6287944, z: 0.7775716, w: 0.00000009360697} + m_LocalPosition: {x: -0.0011147689, y: 0.00015642076, z: -0.00059018645} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: + - {fileID: 728354472652604829} + m_Father: {fileID: 7051217914449440451} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6770669667683876424 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6924498691211089472} + m_Layer: 0 + m_Name: thigh.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6924498691211089472 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6770669667683876424} + m_LocalRotation: {x: 0.9941872, y: -0.02858099, z: 0.0072047445, w: 0.10355265} + m_LocalPosition: {x: -0.0009815216, y: 0.00007858221, z: 0.00026882984} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999993} + m_Children: + - {fileID: 6604101896056050419} + m_Father: {fileID: 1754089336644160313} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6780039028279486991 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7697119737911569889} + m_Layer: 0 + m_Name: hand.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7697119737911569889 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6780039028279486991} + m_LocalRotation: {x: 0.0031014127, y: -0.005528791, z: 0.015587783, w: 0.99985844} + m_LocalPosition: {x: -2.468255e-11, y: 0.0022769012, z: -3.2014214e-11} + m_LocalScale: {x: 1, y: 0.99999976, z: 0.99999976} + m_Children: + - {fileID: 8866521922984669276} + - {fileID: 9049674729524690171} + m_Father: {fileID: 8335989005009058483} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6792327054025522797 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6127395625895404759} + - component: {fileID: 281700445225418413} + m_Layer: 0 + m_Name: Peasant Nolant Blue(Free Version) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6127395625895404759 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6792327054025522797} + m_LocalRotation: {x: 0, 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: 3632243556992837311} + - {fileID: 2575346895400900800} + - {fileID: 7014824995291846742} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &281700445225418413 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6792327054025522797} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Controller: {fileID: 9100000, guid: fecf6d756e0aaae41ada7c746eed59b9, type: 2} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 1 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &7060605132943402213 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3855453139639530419} + m_Layer: 0 + m_Name: foot.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3855453139639530419 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7060605132943402213} + m_LocalRotation: {x: -0.55521375, y: -0.0009996446, z: 0.001406654, w: 0.831706} + m_LocalPosition: {x: -1.7299388e-11, y: 0.003712539, z: 7.566996e-12} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 6972278315134581498} + m_Father: {fileID: 6604101896056050419} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7550792688217593046 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8588455980928593316} + m_Layer: 0 + m_Name: toe.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8588455980928593316 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7550792688217593046} + m_LocalRotation: {x: -0.0000013178837, y: 0.9842265, z: -0.17691292, w: 0.00000064276344} + m_LocalPosition: {x: -2.584997e-11, y: 0.00089579186, z: -2.8308023e-13} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 3317627835739014694} + m_Father: {fileID: 7646867060438440150} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7648041501744646410 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1152237788064856417} + m_Layer: 0 + m_Name: breast.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1152237788064856417 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7648041501744646410} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0010843258, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4394709661376018719} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7706254385559572202 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1474787637541331471} + m_Layer: 0 + m_Name: toe.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1474787637541331471 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7706254385559572202} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00062173844, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 6972278315134581498} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7845198531136187498 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9049674729524690171} + m_Layer: 0 + m_Name: thumb.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9049674729524690171 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7845198531136187498} + m_LocalRotation: {x: 0.27131444, y: 0.045448996, z: 0.2534615, w: 0.92740506} + m_LocalPosition: {x: -0.00007611124, y: 0.00036991446, z: 0.00064733863} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_Children: + - {fileID: 4899761735064060939} + m_Father: {fileID: 7697119737911569889} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7889921527448179803 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5996572380485835958} + m_Layer: 0 + m_Name: thumb.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5996572380485835958 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7889921527448179803} + m_LocalRotation: {x: 0.27131456, y: -0.04544901, z: -0.25346154, w: 0.92740506} + m_LocalPosition: {x: 0.00007611116, y: 0.00036991443, z: 0.00064733863} + m_LocalScale: {x: 0.9999997, y: 1, z: 1} + m_Children: + - {fileID: 7411863241990335583} + m_Father: {fileID: 944539771424738239} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8128047896862243378 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6972278315134581498} + m_Layer: 0 + m_Name: toe.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6972278315134581498 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8128047896862243378} + m_LocalRotation: {x: 0.0000013256517, y: 0.9842265, z: -0.17691286, w: -0.0000006441596} + m_LocalPosition: {x: -2.5349962e-11, y: 0.00089579215, z: 9.2541655e-11} + m_LocalScale: {x: 1, y: 1.0000002, z: 1} + m_Children: + - {fileID: 1474787637541331471} + m_Father: {fileID: 3855453139639530419} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8420429312213180246 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7963344588147113550} + m_Layer: 0 + m_Name: pelvis.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7963344588147113550 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8420429312213180246} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0015439128, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7369256377892360287} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8504647853336929182 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7646867060438440150} + m_Layer: 0 + m_Name: foot.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7646867060438440150 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8504647853336929182} + m_LocalRotation: {x: -0.55521375, y: 0.0009996041, z: -0.0014067144, w: 0.831706} + m_LocalPosition: {x: 7.665548e-12, y: 0.0037125393, z: -1.8371793e-12} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 8588455980928593316} + m_Father: {fileID: 8888353470039789184} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8570824468179405452 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4670606559093464023} + m_Layer: 0 + m_Name: spine.005 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4670606559093464023 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8570824468179405452} + m_LocalRotation: {x: 0.1729125, y: -0.0000001174136, z: -0.000000020612768, w: 0.9849372} + m_LocalPosition: {x: -6.8821424e-24, y: 0.00048525524, z: -5.5879353e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_Children: + - {fileID: 4210702444034932242} + m_Father: {fileID: 6541791391446981506} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8683510396092677072 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7051217914449440451} + m_Layer: 0 + m_Name: spine.003 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7051217914449440451 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8683510396092677072} + m_LocalRotation: {x: -0.08936815, y: 0.000000118732494, z: 0.000000010653519, w: 0.9959987} + m_LocalPosition: {x: 2.9903693e-19, y: 0.0013467424, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4339408843629127656} + - {fileID: 4394709661376018719} + - {fileID: 6610418336056193991} + - {fileID: 920353175856695524} + - {fileID: 6541791391446981506} + m_Father: {fileID: 516598643235226825} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9024625607201632431 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4210702444034932242} + m_Layer: 0 + m_Name: spine.006 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4210702444034932242 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9024625607201632431} + m_LocalRotation: {x: -0.09371184, y: 0.00000011868471, z: 0.0000000111713145, w: 0.9955994} + m_LocalPosition: {x: -4.9248024e-17, y: 0.00048842304, z: 8.381903e-11} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5858015301758344321} + m_Father: {fileID: 4670606559093464023} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9178397117955441859 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 467737489455847602} + m_Layer: 0 + m_Name: forearm.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &467737489455847602 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9178397117955441859} + m_LocalRotation: {x: 0.0050242175, y: -0.0025352333, z: -0.021735681, w: 0.99974793} + m_LocalPosition: {x: -9.8443705e-11, y: 0.0020558967, z: 1.9790605e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 944539771424738239} + m_Father: {fileID: 844256544248876135} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Blue(Free Version).prefab.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Blue(Free Version).prefab.meta new file mode 100644 index 0000000..56c21cc --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Blue(Free Version).prefab.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 64db8d48fab1ceb43a8ee5d52643029a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Blue(Free + Version).prefab + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Brown(Free Version).prefab b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Brown(Free Version).prefab new file mode 100644 index 0000000..1c13367 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Brown(Free Version).prefab @@ -0,0 +1,1683 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &17121848642431459 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2028133864823902891} + m_Layer: 0 + m_Name: foot.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2028133864823902891 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 17121848642431459} + m_LocalRotation: {x: -0.55521375, y: 0.0009996041, z: -0.0014067144, w: 0.831706} + m_LocalPosition: {x: 7.665548e-12, y: 0.0037125393, z: -1.8371793e-12} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 74893392358057945} + m_Father: {fileID: 964762568365196541} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &57402629388108017 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3957278661496099242} + m_Layer: 0 + m_Name: spine.005 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3957278661496099242 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 57402629388108017} + m_LocalRotation: {x: 0.1729125, y: -0.0000001174136, z: -0.000000020612768, w: 0.9849372} + m_LocalPosition: {x: -6.8821424e-24, y: 0.00048525524, z: -5.5879353e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_Children: + - {fileID: 5500350361279886447} + m_Father: {fileID: 3239034325826703871} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &207482011035997483 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1781520706104521779} + m_Layer: 0 + m_Name: pelvis.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1781520706104521779 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 207482011035997483} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0015439128, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1188558544788199970} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &501835170710614095 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1655286432171044999} + m_Layer: 0 + m_Name: toe.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1655286432171044999 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 501835170710614095} + m_LocalRotation: {x: 0.0000013256517, y: 0.9842265, z: -0.17691286, w: -0.0000006441596} + m_LocalPosition: {x: -2.5349962e-11, y: 0.00089579215, z: 9.2541655e-11} + m_LocalScale: {x: 1, y: 1.0000002, z: 1} + m_Children: + - {fileID: 7083387712352069746} + m_Father: {fileID: 4880514578350717390} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &673982615151267518 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8090713251864859343} + m_Layer: 0 + m_Name: forearm.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8090713251864859343 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 673982615151267518} + m_LocalRotation: {x: 0.0050242175, y: -0.0025352333, z: -0.021735681, w: 0.99974793} + m_LocalPosition: {x: -9.8443705e-11, y: 0.0020558967, z: 1.9790605e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 8872634391509418434} + m_Father: {fileID: 9046929867640505882} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &794789944818203346 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5500350361279886447} + m_Layer: 0 + m_Name: spine.006 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5500350361279886447 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 794789944818203346} + m_LocalRotation: {x: -0.09371184, y: 0.00000011868471, z: 0.0000000111713145, w: 0.9955994} + m_LocalPosition: {x: -4.9248024e-17, y: 0.00048842304, z: 8.381903e-11} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2842222111115613948} + m_Father: {fileID: 3957278661496099242} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1060675365344031149 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1720574374864774334} + m_Layer: 0 + m_Name: spine.003 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1720574374864774334 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1060675365344031149} + m_LocalRotation: {x: -0.08936815, y: 0.000000118732494, z: 0.000000010653519, w: 0.9959987} + m_LocalPosition: {x: 2.9903693e-19, y: 0.0013467424, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5333085804743273877} + - {fileID: 5388386760006710114} + - {fileID: 3280498935735450042} + - {fileID: 8862943625076671129} + - {fileID: 3239034325826703871} + m_Father: {fileID: 8147314813881110196} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1713073093690355352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4880514578350717390} + m_Layer: 0 + m_Name: foot.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4880514578350717390 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1713073093690355352} + m_LocalRotation: {x: -0.55521375, y: -0.0009996446, z: 0.001406654, w: 0.831706} + m_LocalPosition: {x: -1.7299388e-11, y: 0.003712539, z: 7.566996e-12} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 1655286432171044999} + m_Father: {fileID: 3286567513176070286} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1938234959548163607 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 841231031757485702} + m_Layer: 0 + m_Name: thumb.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &841231031757485702 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1938234959548163607} + m_LocalRotation: {x: 0.27131444, y: 0.045448996, z: 0.2534615, w: 0.92740506} + m_LocalPosition: {x: -0.00007611124, y: 0.00036991446, z: 0.00064733863} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_Children: + - {fileID: 3874559422401269366} + m_Father: {fileID: 2084016041906186140} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1964943557199715878 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2666793837394106059} + m_Layer: 0 + m_Name: thumb.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2666793837394106059 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1964943557199715878} + m_LocalRotation: {x: 0.27131456, y: -0.04544901, z: -0.25346154, w: 0.92740506} + m_LocalPosition: {x: 0.00007611116, y: 0.00036991443, z: 0.00064733863} + m_LocalScale: {x: 0.9999997, y: 1, z: 1} + m_Children: + - {fileID: 1217795215974114850} + m_Father: {fileID: 8872634391509418434} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2024663986841715575 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8775213551438951196} + m_Layer: 0 + m_Name: breast.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8775213551438951196 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2024663986841715575} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0010843258, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5388386760006710114} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2074010546419942551 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7083387712352069746} + m_Layer: 0 + m_Name: toe.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7083387712352069746 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2074010546419942551} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00062173844, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1655286432171044999} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2230282246676733611 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 74893392358057945} + m_Layer: 0 + m_Name: toe.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &74893392358057945 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2230282246676733611} + m_LocalRotation: {x: -0.0000013178837, y: 0.9842265, z: -0.17691292, w: 0.00000064276344} + m_LocalPosition: {x: -2.584997e-11, y: 0.00089579186, z: -2.8308023e-13} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 6354813144870243419} + m_Father: {fileID: 2028133864823902891} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2395938733642663768 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7957164447375327556} + m_Layer: 0 + m_Name: spine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7957164447375327556 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2395938733642663768} + m_LocalRotation: {x: 0.7904555, y: -0.00000007301811, z: -0.00000009422975, w: 0.61251944} + m_LocalPosition: {x: -0, y: -0.000006627681, z: 0.007481878} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6235854056903637420} + - {fileID: 1188558544788199970} + - {fileID: 5750432530171416827} + - {fileID: 1594981039160040509} + - {fileID: 4170703585380098601} + m_Father: {fileID: 6162956505526293181} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2830866180598727204 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6235854056903637420} + m_Layer: 0 + m_Name: pelvis.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6235854056903637420 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2830866180598727204} + m_LocalRotation: {x: -0.2074554, y: 0.7557971, z: 0.37365568, w: 0.49609938} + m_LocalPosition: {x: 6.009082e-17, y: -8.3091437e-11, z: 2.4447216e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 4233489067591544695} + m_Father: {fileID: 7957164447375327556} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2895191688206573682 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2084016041906186140} + m_Layer: 0 + m_Name: hand.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2084016041906186140 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2895191688206573682} + m_LocalRotation: {x: 0.0031014127, y: -0.005528791, z: 0.015587783, w: 0.99985844} + m_LocalPosition: {x: -2.468255e-11, y: 0.0022769012, z: -3.2014214e-11} + m_LocalScale: {x: 1, y: 0.99999976, z: 0.99999976} + m_Children: + - {fileID: 952078822199769633} + - {fileID: 841231031757485702} + m_Father: {fileID: 402264881123111118} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2916486913691104272 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2536267428180160170} + - component: {fileID: 8490003404539540688} + m_Layer: 0 + m_Name: Peasant Nolant Brown(Free Version) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2536267428180160170 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2916486913691104272} + m_LocalRotation: {x: 0, 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: 4923017511828925634} + - {fileID: 6162956505526293181} + - {fileID: 1685448213721748011} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &8490003404539540688 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2916486913691104272} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Controller: {fileID: 9100000, guid: fecf6d756e0aaae41ada7c746eed59b9, type: 2} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 1 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &3059172289395975680 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5772048578895723552} + m_Layer: 0 + m_Name: finger.002.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5772048578895723552 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3059172289395975680} + m_LocalRotation: {x: -0.0038466123, y: -0.0029541238, z: -0.16873348, w: 0.9856498} + m_LocalPosition: {x: -6.4173944e-10, y: 0.00032609663, z: 3.1432135e-11} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 6170231015090067798} + m_Father: {fileID: 5690570362603489612} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3059236135783803703 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5333085804743273877} + m_Layer: 0 + m_Name: breast.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5333085804743273877 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3059236135783803703} + m_LocalRotation: {x: 0.000000096012194, y: 0.6287944, z: 0.7775716, w: 0.00000009360697} + m_LocalPosition: {x: -0.0011147689, y: 0.00015642076, z: -0.00059018645} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: + - {fileID: 8944679486437445600} + m_Father: {fileID: 1720574374864774334} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3155897585011160117 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1594981039160040509} + m_Layer: 0 + m_Name: thigh.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1594981039160040509 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3155897585011160117} + m_LocalRotation: {x: 0.9941872, y: -0.02858099, z: 0.0072047445, w: 0.10355265} + m_LocalPosition: {x: -0.0009815216, y: 0.00007858221, z: 0.00026882984} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999993} + m_Children: + - {fileID: 3286567513176070286} + m_Father: {fileID: 7957164447375327556} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3514706552508584208 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3239034325826703871} + m_Layer: 0 + m_Name: spine.004 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3239034325826703871 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3514706552508584208} + m_LocalRotation: {x: 0.025457365, y: -9.811444e-14, z: 6.807474e-17, w: 0.9996759} + m_LocalPosition: {x: 7.9409334e-24, y: 0.0015334577, z: -1.2107193e-10} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 3957278661496099242} + m_Father: {fileID: 1720574374864774334} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3582690808917750989 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1217795215974114850} + m_Layer: 0 + m_Name: thumb.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1217795215974114850 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3582690808917750989} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00048067997, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2666793837394106059} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3696825362723469762 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4170703585380098601} + m_Layer: 0 + m_Name: thigh.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4170703585380098601 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3696825362723469762} + m_LocalRotation: {x: 0.9941871, y: 0.02858102, z: -0.0072049154, w: 0.10355265} + m_LocalPosition: {x: 0.0009815217, y: 0.000078582205, z: 0.00026882935} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999998} + m_Children: + - {fileID: 964762568365196541} + m_Father: {fileID: 7957164447375327556} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3732526346963256777 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1685448213721748011} + - component: {fileID: 4760251673952790204} + m_Layer: 0 + m_Name: Peasant Nolant + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1685448213721748011 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3732526346963256777} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: [] + m_Father: {fileID: 2536267428180160170} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!137 &4760251673952790204 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3732526346963256777} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 9906f4dad73679a438ff342ed90aea44, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -4903783072746440830, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Bones: + - {fileID: 7957164447375327556} + - {fileID: 5750432530171416827} + - {fileID: 8147314813881110196} + - {fileID: 1720574374864774334} + - {fileID: 3239034325826703871} + - {fileID: 3957278661496099242} + - {fileID: 5500350361279886447} + - {fileID: 3280498935735450042} + - {fileID: 7670726442780243570} + - {fileID: 402264881123111118} + - {fileID: 2084016041906186140} + - {fileID: 952078822199769633} + - {fileID: 5171539711130105441} + - {fileID: 841231031757485702} + - {fileID: 8862943625076671129} + - {fileID: 9046929867640505882} + - {fileID: 8090713251864859343} + - {fileID: 8872634391509418434} + - {fileID: 5690570362603489612} + - {fileID: 5772048578895723552} + - {fileID: 2666793837394106059} + - {fileID: 5333085804743273877} + - {fileID: 5388386760006710114} + - {fileID: 6235854056903637420} + - {fileID: 1188558544788199970} + - {fileID: 1594981039160040509} + - {fileID: 3286567513176070286} + - {fileID: 4880514578350717390} + - {fileID: 1655286432171044999} + - {fileID: 4170703585380098601} + - {fileID: 964762568365196541} + - {fileID: 2028133864823902891} + - {fileID: 74893392358057945} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 7957164447375327556} + m_AABB: + m_Center: {x: -2.3283064e-10, y: 0.0011994755, z: -0.00040803547} + m_Extent: {x: 0.003455709, y: 0.008865731, z: 0.0038897444} + m_DirtyAABB: 0 +--- !u!1 &3882158494255901622 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8872634391509418434} + m_Layer: 0 + m_Name: hand.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8872634391509418434 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3882158494255901622} + m_LocalRotation: {x: 0.003101413, y: 0.0055287913, z: -0.015587786, w: 0.99985844} + m_LocalPosition: {x: 2.4652422e-11, y: 0.0022769012, z: -2.4447217e-11} + m_LocalScale: {x: 1.0000001, y: 0.99999976, z: 0.99999976} + m_Children: + - {fileID: 5690570362603489612} + - {fileID: 2666793837394106059} + m_Father: {fileID: 8090713251864859343} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3898714459706571519 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7670726442780243570} + m_Layer: 0 + m_Name: upper_arm.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7670726442780243570 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3898714459706571519} + m_LocalRotation: {x: 0.31716618, y: 0.6459197, z: -0.52770346, w: -0.45135623} + m_LocalPosition: {x: -0.00009254757, y: 0.0017519274, z: -0.00009666324} + m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.9999999} + m_Children: + - {fileID: 402264881123111118} + m_Father: {fileID: 3280498935735450042} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4096663358228072254 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3874559422401269366} + m_Layer: 0 + m_Name: thumb.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3874559422401269366 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4096663358228072254} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00048067997, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 841231031757485702} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4295061842749613287 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8862943625076671129} + m_Layer: 0 + m_Name: shoulder.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8862943625076671129 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4295061842749613287} + m_LocalRotation: {x: -0.5588021, y: -0.32983753, z: -0.44262508, w: 0.6188946} + m_LocalPosition: {x: 0.00014255145, y: 0.0009989149, z: 0.00052131154} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999999} + m_Children: + - {fileID: 9046929867640505882} + m_Father: {fileID: 1720574374864774334} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4453667551804115398 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4637434030566901481} + m_Layer: 0 + m_Name: finger.002.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4637434030566901481 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4453667551804115398} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00027408908, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5171539711130105441} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4628663171419297191 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3286567513176070286} + m_Layer: 0 + m_Name: shin.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3286567513176070286 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4628663171419297191} + m_LocalRotation: {x: -0.0031269148, y: -0.004067427, z: -0.030914111, w: 0.9995089} + m_LocalPosition: {x: 1.1787051e-11, y: 0.0032267736, z: 2.0954757e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 4880514578350717390} + m_Father: {fileID: 1594981039160040509} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4701353743549655638 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6170231015090067798} + m_Layer: 0 + m_Name: finger.002.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6170231015090067798 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4701353743549655638} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00027408908, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5772048578895723552} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4784785098627668130 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2842222111115613948} + m_Layer: 0 + m_Name: spine.006_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2842222111115613948 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4784785098627668130} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.001940323, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5500350361279886447} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4957267262161586073 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 964762568365196541} + m_Layer: 0 + m_Name: shin.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &964762568365196541 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4957267262161586073} + m_LocalRotation: {x: -0.0031269114, y: 0.0040673893, z: 0.030914117, w: 0.9995089} + m_LocalPosition: {x: 9.589712e-11, y: 0.003226773, z: 1.9790605e-11} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 2028133864823902891} + m_Father: {fileID: 4170703585380098601} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5343748530030799270 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6354813144870243419} + m_Layer: 0 + m_Name: toe.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6354813144870243419 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5343748530030799270} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00062173844, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 74893392358057945} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5761814819709498203 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1188558544788199970} + m_Layer: 0 + m_Name: pelvis.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1188558544788199970 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5761814819709498203} + m_LocalRotation: {x: 0.20745556, y: 0.75579697, z: 0.37365574, w: -0.49609944} + m_LocalPosition: {x: 6.009082e-17, y: -8.3091437e-11, z: 2.4447216e-10} + m_LocalScale: {x: 0.9999999, y: 0.99999964, z: 0.99999994} + m_Children: + - {fileID: 1781520706104521779} + m_Father: {fileID: 7957164447375327556} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5885564043774594789 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8944679486437445600} + m_Layer: 0 + m_Name: breast.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8944679486437445600 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5885564043774594789} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0010843258, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5333085804743273877} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6097803094311728285 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8147314813881110196} + m_Layer: 0 + m_Name: spine.002 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8147314813881110196 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6097803094311728285} + m_LocalRotation: {x: -0.006285749, y: -4.9914083e-14, z: 0.0000000014986405, w: 0.9999803} + m_LocalPosition: {x: -8.881784e-18, y: 0.0014414854, z: -1.8626451e-11} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 1720574374864774334} + m_Father: {fileID: 5750432530171416827} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6287160451423635253 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5750432530171416827} + m_Layer: 0 + m_Name: spine.001 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5750432530171416827 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6287160451423635253} + m_LocalRotation: {x: -0.13536042, y: 6.208031e-14, z: 0.00000003227247, w: 0.99079645} + m_LocalPosition: {x: 2.6645352e-17, y: 0.0011857431, z: 2.2351741e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 8147314813881110196} + m_Father: {fileID: 7957164447375327556} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6565045066317289857 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 952078822199769633} + m_Layer: 0 + m_Name: finger.001.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &952078822199769633 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6565045066317289857} + m_LocalRotation: {x: 0.015054992, y: 0.00063720264, z: 0.28685555, w: 0.95785534} + m_LocalPosition: {x: -1.272565e-10, y: 0.00096571585, z: -3.7252902e-11} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999997} + m_Children: + - {fileID: 5171539711130105441} + m_Father: {fileID: 2084016041906186140} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6630221290141064767 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4923017511828925634} + - component: {fileID: 6436514654887021712} + m_Layer: 0 + m_Name: Hat + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4923017511828925634 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6630221290141064767} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: [] + m_Father: {fileID: 2536267428180160170} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!137 &6436514654887021712 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6630221290141064767} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 9906f4dad73679a438ff342ed90aea44, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 6657998009922166292, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Bones: + - {fileID: 7957164447375327556} + - {fileID: 5750432530171416827} + - {fileID: 8147314813881110196} + - {fileID: 1720574374864774334} + - {fileID: 3239034325826703871} + - {fileID: 3957278661496099242} + - {fileID: 5500350361279886447} + - {fileID: 3280498935735450042} + - {fileID: 7670726442780243570} + - {fileID: 402264881123111118} + - {fileID: 2084016041906186140} + - {fileID: 952078822199769633} + - {fileID: 5171539711130105441} + - {fileID: 841231031757485702} + - {fileID: 8862943625076671129} + - {fileID: 9046929867640505882} + - {fileID: 8090713251864859343} + - {fileID: 8872634391509418434} + - {fileID: 5690570362603489612} + - {fileID: 5772048578895723552} + - {fileID: 2666793837394106059} + - {fileID: 5333085804743273877} + - {fileID: 5388386760006710114} + - {fileID: 6235854056903637420} + - {fileID: 1188558544788199970} + - {fileID: 1594981039160040509} + - {fileID: 3286567513176070286} + - {fileID: 4880514578350717390} + - {fileID: 1655286432171044999} + - {fileID: 4170703585380098601} + - {fileID: 964762568365196541} + - {fileID: 2028133864823902891} + - {fileID: 74893392358057945} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 7957164447375327556} + m_AABB: + m_Center: {x: 0.000003722962, y: 0.008676607, z: -0.0022646827} + m_Extent: {x: 0.0034599465, y: 0.0023455431, z: 0.0035855323} + m_DirtyAABB: 0 +--- !u!1 &7778815124065089070 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4233489067591544695} + m_Layer: 0 + m_Name: pelvis.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4233489067591544695 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7778815124065089070} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0015439128, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 6235854056903637420} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7883382282684396108 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5171539711130105441} + m_Layer: 0 + m_Name: finger.002.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5171539711130105441 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7883382282684396108} + m_LocalRotation: {x: -0.0038466123, y: 0.0029541235, z: 0.16873349, w: 0.9856498} + m_LocalPosition: {x: 3.4371622e-10, y: 0.0003260961, z: 2.4447217e-11} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4637434030566901481} + m_Father: {fileID: 952078822199769633} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8142907276217511585 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5388386760006710114} + m_Layer: 0 + m_Name: breast.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5388386760006710114 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8142907276217511585} + m_LocalRotation: {x: -0.000000096012194, y: 0.6287944, z: 0.7775716, w: -0.00000009360698} + m_LocalPosition: {x: 0.0011147689, y: 0.00015642075, z: -0.00059018645} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: + - {fileID: 8775213551438951196} + m_Father: {fileID: 1720574374864774334} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8160354865342802258 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3280498935735450042} + m_Layer: 0 + m_Name: shoulder.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3280498935735450042 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8160354865342802258} + m_LocalRotation: {x: -0.5588021, y: 0.32983753, z: 0.44262508, w: 0.6188946} + m_LocalPosition: {x: -0.00014255145, y: 0.0009989149, z: 0.00052131154} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999999} + m_Children: + - {fileID: 7670726442780243570} + m_Father: {fileID: 1720574374864774334} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8328070158269270573 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5690570362603489612} + m_Layer: 0 + m_Name: finger.001.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5690570362603489612 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8328070158269270573} + m_LocalRotation: {x: 0.015054991, y: -0.0006372028, z: -0.28685558, w: 0.95785534} + m_LocalPosition: {x: -2.1755113e-11, y: 0.00096571463, z: 2.3283063e-11} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.9999997} + m_Children: + - {fileID: 5772048578895723552} + m_Father: {fileID: 8872634391509418434} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8535403680947010260 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9046929867640505882} + m_Layer: 0 + m_Name: upper_arm.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9046929867640505882 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8535403680947010260} + m_LocalRotation: {x: -0.3171662, y: 0.6459196, z: -0.5277035, w: 0.45135617} + m_LocalPosition: {x: 0.00009254757, y: 0.0017519274, z: -0.00009666324} + m_LocalScale: {x: 0.99999964, y: 0.99999976, z: 0.9999999} + m_Children: + - {fileID: 8090713251864859343} + m_Father: {fileID: 8862943625076671129} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8582643817655050589 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6162956505526293181} + m_Layer: 0 + m_Name: metarig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6162956505526293181 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8582643817655050589} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: + - {fileID: 7957164447375327556} + m_Father: {fileID: 2536267428180160170} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!1 &9112940630275912548 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 402264881123111118} + m_Layer: 0 + m_Name: forearm.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &402264881123111118 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9112940630275912548} + m_LocalRotation: {x: 0.0050242175, y: 0.0025352335, z: 0.021735689, w: 0.99974793} + m_LocalPosition: {x: 9.84528e-11, y: 0.0020558955, z: 1.8626451e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 2084016041906186140} + m_Father: {fileID: 7670726442780243570} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Brown(Free Version).prefab.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Brown(Free Version).prefab.meta new file mode 100644 index 0000000..210af7c --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Brown(Free Version).prefab.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 3c0b66c1fb55cd34994e034186a852c1 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Brown(Free + Version).prefab + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Green(Free Version).prefab b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Green(Free Version).prefab new file mode 100644 index 0000000..ee5b74b --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Green(Free Version).prefab @@ -0,0 +1,1683 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &793558901613078725 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6498959628592869788} + m_Layer: 0 + m_Name: pelvis.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6498959628592869788 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 793558901613078725} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0015439128, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3925619900445468487} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &979472252165172391 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2824972263765747850} + m_Layer: 0 + m_Name: finger.002.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2824972263765747850 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 979472252165172391} + m_LocalRotation: {x: -0.0038466123, y: 0.0029541235, z: 0.16873349, w: 0.9856498} + m_LocalPosition: {x: 3.4371622e-10, y: 0.0003260961, z: 2.4447217e-11} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2354211727649101826} + m_Father: {fileID: 7910247415105021130} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1283465671250393017 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5581651946368149329} + m_Layer: 0 + m_Name: shoulder.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5581651946368149329 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1283465671250393017} + m_LocalRotation: {x: -0.5588021, y: 0.32983753, z: 0.44262508, w: 0.6188946} + m_LocalPosition: {x: -0.00014255145, y: 0.0009989149, z: 0.00052131154} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999999} + m_Children: + - {fileID: 757532411993417881} + m_Father: {fileID: 8579388071145814613} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1293031995119087690 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3042123877400767881} + m_Layer: 0 + m_Name: breast.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3042123877400767881 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1293031995119087690} + m_LocalRotation: {x: -0.000000096012194, y: 0.6287944, z: 0.7775716, w: -0.00000009360698} + m_LocalPosition: {x: 0.0011147689, y: 0.00015642075, z: -0.00059018645} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: + - {fileID: 1817057874671349239} + m_Father: {fileID: 8579388071145814613} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1397119836269647046 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3316999126745487271} + m_Layer: 0 + m_Name: finger.001.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3316999126745487271 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1397119836269647046} + m_LocalRotation: {x: 0.015054991, y: -0.0006372028, z: -0.28685558, w: 0.95785534} + m_LocalPosition: {x: -2.1755113e-11, y: 0.00096571463, z: 2.3283063e-11} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.9999997} + m_Children: + - {fileID: 3524842002473181899} + m_Father: {fileID: 2004457258334789417} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1622270948063487039 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2125004621477796081} + m_Layer: 0 + m_Name: upper_arm.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2125004621477796081 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1622270948063487039} + m_LocalRotation: {x: -0.3171662, y: 0.6459196, z: -0.5277035, w: 0.45135617} + m_LocalPosition: {x: 0.00009254757, y: 0.0017519274, z: -0.00009666324} + m_LocalScale: {x: 0.99999964, y: 0.99999976, z: 0.9999999} + m_Children: + - {fileID: 1204522065954704420} + m_Father: {fileID: 1877771233809456242} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1723475326994153398 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3852713964240178262} + m_Layer: 0 + m_Name: metarig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3852713964240178262 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1723475326994153398} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: + - {fileID: 1053042272410951599} + m_Father: {fileID: 4882481920500871233} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!1 &2199732996271713679 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7306403745386982949} + m_Layer: 0 + m_Name: forearm.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7306403745386982949 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2199732996271713679} + m_LocalRotation: {x: 0.0050242175, y: 0.0025352335, z: 0.021735689, w: 0.99974793} + m_LocalPosition: {x: 9.84528e-11, y: 0.0020558955, z: 1.8626451e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 8942819780342217079} + m_Father: {fileID: 757532411993417881} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2363543285924596556 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5578997884505294437} + m_Layer: 0 + m_Name: shin.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5578997884505294437 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2363543285924596556} + m_LocalRotation: {x: -0.0031269148, y: -0.004067427, z: -0.030914111, w: 0.9995089} + m_LocalPosition: {x: 1.1787051e-11, y: 0.0032267736, z: 2.0954757e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 2543333806843062053} + m_Father: {fileID: 8561954718634787542} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2435953630748095677 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3842061772066408381} + m_Layer: 0 + m_Name: finger.002.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3842061772066408381 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2435953630748095677} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00027408908, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3524842002473181899} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2492274051857385033 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5152460241474177047} + m_Layer: 0 + m_Name: spine.006_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5152460241474177047 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2492274051857385033} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.001940323, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3217123997643549316} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2610802414189173106 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7895699411734010390} + m_Layer: 0 + m_Name: shin.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7895699411734010390 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2610802414189173106} + m_LocalRotation: {x: -0.0031269114, y: 0.0040673893, z: 0.030914117, w: 0.9995089} + m_LocalPosition: {x: 9.589712e-11, y: 0.003226773, z: 1.9790605e-11} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 8995324223353130048} + m_Father: {fileID: 6418190673650760898} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3087323373096318797 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4089402993790915248} + m_Layer: 0 + m_Name: toe.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4089402993790915248 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3087323373096318797} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00062173844, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7060163849377052978} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3388601055992835504 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8110478299856225481} + m_Layer: 0 + m_Name: pelvis.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8110478299856225481 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3388601055992835504} + m_LocalRotation: {x: 0.20745556, y: 0.75579697, z: 0.37365574, w: -0.49609944} + m_LocalPosition: {x: 6.009082e-17, y: -8.3091437e-11, z: 2.4447216e-10} + m_LocalScale: {x: 0.9999999, y: 0.99999964, z: 0.99999994} + m_Children: + - {fileID: 8667622910895467224} + m_Father: {fileID: 1053042272410951599} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3557025572172713998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2076524620688199947} + m_Layer: 0 + m_Name: breast.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2076524620688199947 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3557025572172713998} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0010843258, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3094610598232355710} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3778257453185018486 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1288518852589883487} + m_Layer: 0 + m_Name: spine.002 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1288518852589883487 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3778257453185018486} + m_LocalRotation: {x: -0.006285749, y: -4.9914083e-14, z: 0.0000000014986405, w: 0.9999803} + m_LocalPosition: {x: -8.881784e-18, y: 0.0014414854, z: -1.8626451e-11} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 8579388071145814613} + m_Father: {fileID: 3403891542088027664} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4012942182520936926 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3403891542088027664} + m_Layer: 0 + m_Name: spine.001 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3403891542088027664 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4012942182520936926} + m_LocalRotation: {x: -0.13536042, y: 6.208031e-14, z: 0.00000003227247, w: 0.99079645} + m_LocalPosition: {x: 2.6645352e-17, y: 0.0011857431, z: 2.2351741e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 1288518852589883487} + m_Father: {fileID: 1053042272410951599} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4317570014748018538 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7910247415105021130} + m_Layer: 0 + m_Name: finger.001.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7910247415105021130 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4317570014748018538} + m_LocalRotation: {x: 0.015054992, y: 0.00063720264, z: 0.28685555, w: 0.95785534} + m_LocalPosition: {x: -1.272565e-10, y: 0.00096571585, z: -3.7252902e-11} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999997} + m_Children: + - {fileID: 2824972263765747850} + m_Father: {fileID: 8942819780342217079} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4392110915302834388 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2639880062421037609} + - component: {fileID: 4153366966323237499} + m_Layer: 0 + m_Name: Hat + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2639880062421037609 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4392110915302834388} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: [] + m_Father: {fileID: 4882481920500871233} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!137 &4153366966323237499 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4392110915302834388} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 47ce78e26e0d0aa46a3873d869b96031, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 6657998009922166292, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Bones: + - {fileID: 1053042272410951599} + - {fileID: 3403891542088027664} + - {fileID: 1288518852589883487} + - {fileID: 8579388071145814613} + - {fileID: 5477487889910091540} + - {fileID: 6204760995183693633} + - {fileID: 3217123997643549316} + - {fileID: 5581651946368149329} + - {fileID: 757532411993417881} + - {fileID: 7306403745386982949} + - {fileID: 8942819780342217079} + - {fileID: 7910247415105021130} + - {fileID: 2824972263765747850} + - {fileID: 7736068788765485165} + - {fileID: 1877771233809456242} + - {fileID: 2125004621477796081} + - {fileID: 1204522065954704420} + - {fileID: 2004457258334789417} + - {fileID: 3316999126745487271} + - {fileID: 3524842002473181899} + - {fileID: 5040359644434352160} + - {fileID: 3094610598232355710} + - {fileID: 3042123877400767881} + - {fileID: 3925619900445468487} + - {fileID: 8110478299856225481} + - {fileID: 8561954718634787542} + - {fileID: 5578997884505294437} + - {fileID: 2543333806843062053} + - {fileID: 8505167212808433260} + - {fileID: 6418190673650760898} + - {fileID: 7895699411734010390} + - {fileID: 8995324223353130048} + - {fileID: 7060163849377052978} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1053042272410951599} + m_AABB: + m_Center: {x: 0.000003722962, y: 0.008676607, z: -0.0022646827} + m_Extent: {x: 0.0034599465, y: 0.0023455431, z: 0.0035855323} + m_DirtyAABB: 0 +--- !u!1 &4733489007763397043 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1053042272410951599} + m_Layer: 0 + m_Name: spine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1053042272410951599 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4733489007763397043} + m_LocalRotation: {x: 0.7904555, y: -0.00000007301811, z: -0.00000009422975, w: 0.61251944} + m_LocalPosition: {x: -0, y: -0.000006627681, z: 0.007481878} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3925619900445468487} + - {fileID: 8110478299856225481} + - {fileID: 3403891542088027664} + - {fileID: 8561954718634787542} + - {fileID: 6418190673650760898} + m_Father: {fileID: 3852713964240178262} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5168425324734307535 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3925619900445468487} + m_Layer: 0 + m_Name: pelvis.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3925619900445468487 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5168425324734307535} + m_LocalRotation: {x: -0.2074554, y: 0.7557971, z: 0.37365568, w: 0.49609938} + m_LocalPosition: {x: 6.009082e-17, y: -8.3091437e-11, z: 2.4447216e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 6498959628592869788} + m_Father: {fileID: 1053042272410951599} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5226954981596785403 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4882481920500871233} + - component: {fileID: 1522818814117767739} + m_Layer: 0 + m_Name: Peasant Nolant Green(Free Version) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4882481920500871233 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5226954981596785403} + m_LocalRotation: {x: 0, 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: 2639880062421037609} + - {fileID: 3852713964240178262} + - {fileID: 8616305835474767040} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &1522818814117767739 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5226954981596785403} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Controller: {fileID: 9100000, guid: fecf6d756e0aaae41ada7c746eed59b9, type: 2} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 1 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &5250466237806132889 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8942819780342217079} + m_Layer: 0 + m_Name: hand.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8942819780342217079 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5250466237806132889} + m_LocalRotation: {x: 0.0031014127, y: -0.005528791, z: 0.015587783, w: 0.99985844} + m_LocalPosition: {x: -2.468255e-11, y: 0.0022769012, z: -3.2014214e-11} + m_LocalScale: {x: 1, y: 0.99999976, z: 0.99999976} + m_Children: + - {fileID: 7910247415105021130} + - {fileID: 7736068788765485165} + m_Father: {fileID: 7306403745386982949} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5369480115766195676 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3094610598232355710} + m_Layer: 0 + m_Name: breast.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3094610598232355710 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5369480115766195676} + m_LocalRotation: {x: 0.000000096012194, y: 0.6287944, z: 0.7775716, w: 0.00000009360697} + m_LocalPosition: {x: -0.0011147689, y: 0.00015642076, z: -0.00059018645} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: + - {fileID: 2076524620688199947} + m_Father: {fileID: 8579388071145814613} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5369683033186154731 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3524842002473181899} + m_Layer: 0 + m_Name: finger.002.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3524842002473181899 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5369683033186154731} + m_LocalRotation: {x: -0.0038466123, y: -0.0029541238, z: -0.16873348, w: 0.9856498} + m_LocalPosition: {x: -6.4173944e-10, y: 0.00032609663, z: 3.1432135e-11} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 3842061772066408381} + m_Father: {fileID: 3316999126745487271} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5421400036010404574 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8561954718634787542} + m_Layer: 0 + m_Name: thigh.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8561954718634787542 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5421400036010404574} + m_LocalRotation: {x: 0.9941872, y: -0.02858099, z: 0.0072047445, w: 0.10355265} + m_LocalPosition: {x: -0.0009815216, y: 0.00007858221, z: 0.00026882984} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999993} + m_Children: + - {fileID: 5578997884505294437} + m_Father: {fileID: 1053042272410951599} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5779825060410413051 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5477487889910091540} + m_Layer: 0 + m_Name: spine.004 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5477487889910091540 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5779825060410413051} + m_LocalRotation: {x: 0.025457365, y: -9.811444e-14, z: 6.807474e-17, w: 0.9996759} + m_LocalPosition: {x: 7.9409334e-24, y: 0.0015334577, z: -1.2107193e-10} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 6204760995183693633} + m_Father: {fileID: 8579388071145814613} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5857187462550628902 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8076877118067472585} + m_Layer: 0 + m_Name: thumb.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8076877118067472585 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5857187462550628902} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00048067997, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5040359644434352160} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5997728547620444962 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8616305835474767040} + - component: {fileID: 2521841058480978007} + m_Layer: 0 + m_Name: Peasant Nolant + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8616305835474767040 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5997728547620444962} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: [] + m_Father: {fileID: 4882481920500871233} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!137 &2521841058480978007 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5997728547620444962} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 47ce78e26e0d0aa46a3873d869b96031, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -4903783072746440830, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Bones: + - {fileID: 1053042272410951599} + - {fileID: 3403891542088027664} + - {fileID: 1288518852589883487} + - {fileID: 8579388071145814613} + - {fileID: 5477487889910091540} + - {fileID: 6204760995183693633} + - {fileID: 3217123997643549316} + - {fileID: 5581651946368149329} + - {fileID: 757532411993417881} + - {fileID: 7306403745386982949} + - {fileID: 8942819780342217079} + - {fileID: 7910247415105021130} + - {fileID: 2824972263765747850} + - {fileID: 7736068788765485165} + - {fileID: 1877771233809456242} + - {fileID: 2125004621477796081} + - {fileID: 1204522065954704420} + - {fileID: 2004457258334789417} + - {fileID: 3316999126745487271} + - {fileID: 3524842002473181899} + - {fileID: 5040359644434352160} + - {fileID: 3094610598232355710} + - {fileID: 3042123877400767881} + - {fileID: 3925619900445468487} + - {fileID: 8110478299856225481} + - {fileID: 8561954718634787542} + - {fileID: 5578997884505294437} + - {fileID: 2543333806843062053} + - {fileID: 8505167212808433260} + - {fileID: 6418190673650760898} + - {fileID: 7895699411734010390} + - {fileID: 8995324223353130048} + - {fileID: 7060163849377052978} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1053042272410951599} + m_AABB: + m_Center: {x: -2.3283064e-10, y: 0.0011994755, z: -0.00040803547} + m_Extent: {x: 0.003455709, y: 0.008865731, z: 0.0038897444} + m_DirtyAABB: 0 +--- !u!1 &6034099666757592873 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6418190673650760898} + m_Layer: 0 + m_Name: thigh.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6418190673650760898 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6034099666757592873} + m_LocalRotation: {x: 0.9941871, y: 0.02858102, z: -0.0072049154, w: 0.10355265} + m_LocalPosition: {x: 0.0009815217, y: 0.000078582205, z: 0.00026882935} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999998} + m_Children: + - {fileID: 7895699411734010390} + m_Father: {fileID: 1053042272410951599} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6129570810446853469 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2004457258334789417} + m_Layer: 0 + m_Name: hand.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2004457258334789417 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6129570810446853469} + m_LocalRotation: {x: 0.003101413, y: 0.0055287913, z: -0.015587786, w: 0.99985844} + m_LocalPosition: {x: 2.4652422e-11, y: 0.0022769012, z: -2.4447217e-11} + m_LocalScale: {x: 1.0000001, y: 0.99999976, z: 0.99999976} + m_Children: + - {fileID: 3316999126745487271} + - {fileID: 5040359644434352160} + m_Father: {fileID: 1204522065954704420} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6263287297921770516 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 757532411993417881} + m_Layer: 0 + m_Name: upper_arm.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &757532411993417881 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6263287297921770516} + m_LocalRotation: {x: 0.31716618, y: 0.6459197, z: -0.52770346, w: -0.45135623} + m_LocalPosition: {x: -0.00009254757, y: 0.0017519274, z: -0.00009666324} + m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.9999999} + m_Children: + - {fileID: 7306403745386982949} + m_Father: {fileID: 5581651946368149329} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6353148778742143445 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6139987380514590877} + m_Layer: 0 + m_Name: thumb.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6139987380514590877 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6353148778742143445} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00048067997, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7736068788765485165} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6587553787802958348 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1877771233809456242} + m_Layer: 0 + m_Name: shoulder.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1877771233809456242 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6587553787802958348} + m_LocalRotation: {x: -0.5588021, y: -0.32983753, z: -0.44262508, w: 0.6188946} + m_LocalPosition: {x: 0.00014255145, y: 0.0009989149, z: 0.00052131154} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999999} + m_Children: + - {fileID: 2125004621477796081} + m_Father: {fileID: 8579388071145814613} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6718866738363832109 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2354211727649101826} + m_Layer: 0 + m_Name: finger.002.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2354211727649101826 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6718866738363832109} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00027408908, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2824972263765747850} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6934208459054308890 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6204760995183693633} + m_Layer: 0 + m_Name: spine.005 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6204760995183693633 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6934208459054308890} + m_LocalRotation: {x: 0.1729125, y: -0.0000001174136, z: -0.000000020612768, w: 0.9849372} + m_LocalPosition: {x: -6.8821424e-24, y: 0.00048525524, z: -5.5879353e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_Children: + - {fileID: 3217123997643549316} + m_Father: {fileID: 5477487889910091540} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6975084625673598728 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8995324223353130048} + m_Layer: 0 + m_Name: foot.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8995324223353130048 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6975084625673598728} + m_LocalRotation: {x: -0.55521375, y: 0.0009996041, z: -0.0014067144, w: 0.831706} + m_LocalPosition: {x: 7.665548e-12, y: 0.0037125393, z: -1.8371793e-12} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 7060163849377052978} + m_Father: {fileID: 7895699411734010390} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7066624401168354240 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8667622910895467224} + m_Layer: 0 + m_Name: pelvis.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8667622910895467224 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7066624401168354240} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0015439128, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8110478299856225481} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7351650114901520036 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8505167212808433260} + m_Layer: 0 + m_Name: toe.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8505167212808433260 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7351650114901520036} + m_LocalRotation: {x: 0.0000013256517, y: 0.9842265, z: -0.17691286, w: -0.0000006441596} + m_LocalPosition: {x: -2.5349962e-11, y: 0.00089579215, z: 9.2541655e-11} + m_LocalScale: {x: 1, y: 1.0000002, z: 1} + m_Children: + - {fileID: 197473532625974937} + m_Father: {fileID: 2543333806843062053} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7614136885799784533 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1204522065954704420} + m_Layer: 0 + m_Name: forearm.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1204522065954704420 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7614136885799784533} + m_LocalRotation: {x: 0.0050242175, y: -0.0025352333, z: -0.021735681, w: 0.99974793} + m_LocalPosition: {x: -9.8443705e-11, y: 0.0020558967, z: 1.9790605e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 2004457258334789417} + m_Father: {fileID: 2125004621477796081} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7779695160096072761 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3217123997643549316} + m_Layer: 0 + m_Name: spine.006 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3217123997643549316 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7779695160096072761} + m_LocalRotation: {x: -0.09371184, y: 0.00000011868471, z: 0.0000000111713145, w: 0.9955994} + m_LocalPosition: {x: -4.9248024e-17, y: 0.00048842304, z: 8.381903e-11} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5152460241474177047} + m_Father: {fileID: 6204760995183693633} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7946856740341706566 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8579388071145814613} + m_Layer: 0 + m_Name: spine.003 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8579388071145814613 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7946856740341706566} + m_LocalRotation: {x: -0.08936815, y: 0.000000118732494, z: 0.000000010653519, w: 0.9959987} + m_LocalPosition: {x: 2.9903693e-19, y: 0.0013467424, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3094610598232355710} + - {fileID: 3042123877400767881} + - {fileID: 5581651946368149329} + - {fileID: 1877771233809456242} + - {fileID: 5477487889910091540} + m_Father: {fileID: 1288518852589883487} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8590229668636635251 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2543333806843062053} + m_Layer: 0 + m_Name: foot.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2543333806843062053 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8590229668636635251} + m_LocalRotation: {x: -0.55521375, y: -0.0009996446, z: 0.001406654, w: 0.831706} + m_LocalPosition: {x: -1.7299388e-11, y: 0.003712539, z: 7.566996e-12} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 8505167212808433260} + m_Father: {fileID: 5578997884505294437} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8797026322002376956 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7736068788765485165} + m_Layer: 0 + m_Name: thumb.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7736068788765485165 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8797026322002376956} + m_LocalRotation: {x: 0.27131444, y: 0.045448996, z: 0.2534615, w: 0.92740506} + m_LocalPosition: {x: -0.00007611124, y: 0.00036991446, z: 0.00064733863} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_Children: + - {fileID: 6139987380514590877} + m_Father: {fileID: 8942819780342217079} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8913836942764671181 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5040359644434352160} + m_Layer: 0 + m_Name: thumb.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5040359644434352160 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8913836942764671181} + m_LocalRotation: {x: 0.27131456, y: -0.04544901, z: -0.25346154, w: 0.92740506} + m_LocalPosition: {x: 0.00007611116, y: 0.00036991443, z: 0.00064733863} + m_LocalScale: {x: 0.9999997, y: 1, z: 1} + m_Children: + - {fileID: 8076877118067472585} + m_Father: {fileID: 2004457258334789417} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8951171593504856700 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 197473532625974937} + m_Layer: 0 + m_Name: toe.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &197473532625974937 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8951171593504856700} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00062173844, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8505167212808433260} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9000905181370572188 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1817057874671349239} + m_Layer: 0 + m_Name: breast.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1817057874671349239 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9000905181370572188} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0010843258, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3042123877400767881} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9080140146982780992 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7060163849377052978} + m_Layer: 0 + m_Name: toe.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7060163849377052978 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9080140146982780992} + m_LocalRotation: {x: -0.0000013178837, y: 0.9842265, z: -0.17691292, w: 0.00000064276344} + m_LocalPosition: {x: -2.584997e-11, y: 0.00089579186, z: -2.8308023e-13} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 4089402993790915248} + m_Father: {fileID: 8995324223353130048} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Green(Free Version).prefab.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Green(Free Version).prefab.meta new file mode 100644 index 0000000..7c623a7 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Green(Free Version).prefab.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 7d67ac5cfda0b944580afbed7561ec82 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Green(Free + Version).prefab + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Yellow(Free Version).prefab b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Yellow(Free Version).prefab new file mode 100644 index 0000000..f13740a --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Yellow(Free Version).prefab @@ -0,0 +1,1683 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &273228228211716857 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1914663465793480682} + m_Layer: 0 + m_Name: spine.003 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1914663465793480682 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 273228228211716857} + m_LocalRotation: {x: -0.08936815, y: 0.000000118732494, z: 0.000000010653519, w: 0.9959987} + m_LocalPosition: {x: 2.9903693e-19, y: 0.0013467424, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5147641074488651457} + - {fileID: 5167194707719335990} + - {fileID: 2374621200550951662} + - {fileID: 8614670600863973837} + - {fileID: 2414397306327470763} + m_Father: {fileID: 8963261292942249440} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &299632990883728874 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9022128244116083099} + m_Layer: 0 + m_Name: forearm.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9022128244116083099 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 299632990883728874} + m_LocalRotation: {x: 0.0050242175, y: -0.0025352333, z: -0.021735681, w: 0.99974793} + m_LocalPosition: {x: -9.8443705e-11, y: 0.0020558967, z: 1.9790605e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 8526185975115203222} + m_Father: {fileID: 8142459507606816078} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &465379559262222726 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4694965789843453755} + m_Layer: 0 + m_Name: spine.006 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4694965789843453755 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 465379559262222726} + m_LocalRotation: {x: -0.09371184, y: 0.00000011868471, z: 0.0000000111713145, w: 0.9955994} + m_LocalPosition: {x: -4.9248024e-17, y: 0.00048842304, z: 8.381903e-11} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3027383168437261736} + m_Father: {fileID: 4294717680684421886} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &829811793374049051 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1984459322409202643} + m_Layer: 0 + m_Name: toe.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1984459322409202643 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 829811793374049051} + m_LocalRotation: {x: 0.0000013256517, y: 0.9842265, z: -0.17691286, w: -0.0000006441596} + m_LocalPosition: {x: -2.5349962e-11, y: 0.00089579215, z: 9.2541655e-11} + m_LocalScale: {x: 1, y: 1.0000002, z: 1} + m_Children: + - {fileID: 8016348617694587686} + m_Father: {fileID: 5677322958285585050} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &958740308806822583 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1249630153931837951} + m_Layer: 0 + m_Name: foot.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1249630153931837951 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 958740308806822583} + m_LocalRotation: {x: -0.55521375, y: 0.0009996041, z: -0.0014067144, w: 0.831706} + m_LocalPosition: {x: 7.665548e-12, y: 0.0037125393, z: -1.8371793e-12} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 898721170235008141} + m_Father: {fileID: 4912008008681385} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &988850606186136485 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4294717680684421886} + m_Layer: 0 + m_Name: spine.005 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4294717680684421886 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 988850606186136485} + m_LocalRotation: {x: 0.1729125, y: -0.0000001174136, z: -0.000000020612768, w: 0.9849372} + m_LocalPosition: {x: -6.8821424e-24, y: 0.00048525524, z: -5.5879353e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_Children: + - {fileID: 4694965789843453755} + m_Father: {fileID: 2414397306327470763} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1122498885808821887 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1570576101374261095} + m_Layer: 0 + m_Name: pelvis.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1570576101374261095 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1122498885808821887} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0015439128, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2093169642849081718} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1255369784808669219 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8409671015047360584} + m_Layer: 0 + m_Name: breast.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8409671015047360584 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1255369784808669219} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0010843258, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5167194707719335990} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1277518825029093315 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8016348617694587686} + m_Layer: 0 + m_Name: toe.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8016348617694587686 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1277518825029093315} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00062173844, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1984459322409202643} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1405537476117487103 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 898721170235008141} + m_Layer: 0 + m_Name: toe.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &898721170235008141 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1405537476117487103} + m_LocalRotation: {x: -0.0000013178837, y: 0.9842265, z: -0.17691292, w: 0.00000064276344} + m_LocalPosition: {x: -2.584997e-11, y: 0.00089579186, z: -2.8308023e-13} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 6143510100150898447} + m_Father: {fileID: 1249630153931837951} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1600489537055317362 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2914022325306135967} + m_Layer: 0 + m_Name: thumb.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2914022325306135967 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1600489537055317362} + m_LocalRotation: {x: 0.27131456, y: -0.04544901, z: -0.25346154, w: 0.92740506} + m_LocalPosition: {x: 0.00007611116, y: 0.00036991443, z: 0.00064733863} + m_LocalScale: {x: 0.9999997, y: 1, z: 1} + m_Children: + - {fileID: 2131486079179761014} + m_Father: {fileID: 8526185975115203222} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1699839947527234883 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 494923352311150034} + m_Layer: 0 + m_Name: thumb.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &494923352311150034 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1699839947527234883} + m_LocalRotation: {x: 0.27131444, y: 0.045448996, z: 0.2534615, w: 0.92740506} + m_LocalPosition: {x: -0.00007611124, y: 0.00036991446, z: 0.00064733863} + m_LocalScale: {x: 0.9999999, y: 1, z: 1} + m_Children: + - {fileID: 4086953182375398690} + m_Father: {fileID: 1268076159119467720} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1924439911420456396 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5677322958285585050} + m_Layer: 0 + m_Name: foot.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5677322958285585050 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1924439911420456396} + m_LocalRotation: {x: -0.55521375, y: -0.0009996446, z: 0.001406654, w: 0.831706} + m_LocalPosition: {x: -1.7299388e-11, y: 0.003712539, z: 7.566996e-12} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 1984459322409202643} + m_Father: {fileID: 2373061367923956698} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2669372775266760516 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3332756950553193982} + - component: {fileID: 8692079348738570116} + m_Layer: 0 + m_Name: Peasant Nolant Yellow(Free Version) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3332756950553193982 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2669372775266760516} + m_LocalRotation: {x: 0, 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: 5269465928225697686} + - {fileID: 6410255361377194473} + - {fileID: 1878316846215467391} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &8692079348738570116 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2669372775266760516} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Controller: {fileID: 9100000, guid: fecf6d756e0aaae41ada7c746eed59b9, type: 2} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 1 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &2692937624729608998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1268076159119467720} + m_Layer: 0 + m_Name: hand.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1268076159119467720 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2692937624729608998} + m_LocalRotation: {x: 0.0031014127, y: -0.005528791, z: 0.015587783, w: 0.99985844} + m_LocalPosition: {x: -2.468255e-11, y: 0.0022769012, z: -3.2014214e-11} + m_LocalScale: {x: 1, y: 0.99999976, z: 0.99999976} + m_Children: + - {fileID: 19285042087737717} + - {fileID: 494923352311150034} + m_Father: {fileID: 641715423230342042} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2791938346440980321 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1968204762983931753} + m_Layer: 0 + m_Name: thigh.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1968204762983931753 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2791938346440980321} + m_LocalRotation: {x: 0.9941872, y: -0.02858099, z: 0.0072047445, w: 0.10355265} + m_LocalPosition: {x: -0.0009815216, y: 0.00007858221, z: 0.00026882984} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999993} + m_Children: + - {fileID: 2373061367923956698} + m_Father: {fileID: 7142554973385064976} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2812042832512231523 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5147641074488651457} + m_Layer: 0 + m_Name: breast.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5147641074488651457 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2812042832512231523} + m_LocalRotation: {x: 0.000000096012194, y: 0.6287944, z: 0.7775716, w: 0.00000009360697} + m_LocalPosition: {x: -0.0011147689, y: 0.00015642076, z: -0.00059018645} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: + - {fileID: 8165896500127091892} + m_Father: {fileID: 1914663465793480682} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2812121921571251540 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6730799628970442612} + m_Layer: 0 + m_Name: finger.002.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6730799628970442612 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2812121921571251540} + m_LocalRotation: {x: -0.0038466123, y: -0.0029541238, z: -0.16873348, w: 0.9856498} + m_LocalPosition: {x: -6.4173944e-10, y: 0.00032609663, z: 3.1432135e-11} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 6400711741083687426} + m_Father: {fileID: 4866705201067018776} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3043224756472807792 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6627259306336516856} + m_Layer: 0 + m_Name: pelvis.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6627259306336516856 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3043224756472807792} + m_LocalRotation: {x: -0.2074554, y: 0.7557971, z: 0.37365568, w: 0.49609938} + m_LocalPosition: {x: 6.009082e-17, y: -8.3091437e-11, z: 2.4447216e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 4013458100114074659} + m_Father: {fileID: 7142554973385064976} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3184854820181984268 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7142554973385064976} + m_Layer: 0 + m_Name: spine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7142554973385064976 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3184854820181984268} + m_LocalRotation: {x: 0.7904555, y: -0.00000007301811, z: -0.00000009422975, w: 0.61251944} + m_LocalPosition: {x: -0, y: -0.000006627681, z: 0.007481878} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6627259306336516856} + - {fileID: 2093169642849081718} + - {fileID: 4809658496281367471} + - {fileID: 1968204762983931753} + - {fileID: 3788554026442482045} + m_Father: {fileID: 6410255361377194473} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3511802801028745874 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5560129894005999037} + m_Layer: 0 + m_Name: finger.002.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5560129894005999037 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3511802801028745874} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00027408908, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5383502463355712821} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3866534475969496170 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4086953182375398690} + m_Layer: 0 + m_Name: thumb.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4086953182375398690 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3866534475969496170} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00048067997, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 494923352311150034} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3956952121463629747 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8614670600863973837} + m_Layer: 0 + m_Name: shoulder.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8614670600863973837 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3956952121463629747} + m_LocalRotation: {x: -0.5588021, y: -0.32983753, z: -0.44262508, w: 0.6188946} + m_LocalPosition: {x: 0.00014255145, y: 0.0009989149, z: 0.00052131154} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999999} + m_Children: + - {fileID: 8142459507606816078} + m_Father: {fileID: 1914663465793480682} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4076540054474778850 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8526185975115203222} + m_Layer: 0 + m_Name: hand.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8526185975115203222 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4076540054474778850} + m_LocalRotation: {x: 0.003101413, y: 0.0055287913, z: -0.015587786, w: 0.99985844} + m_LocalPosition: {x: 2.4652422e-11, y: 0.0022769012, z: -2.4447217e-11} + m_LocalScale: {x: 1.0000001, y: 0.99999976, z: 0.99999976} + m_Children: + - {fileID: 4866705201067018776} + - {fileID: 2914022325306135967} + m_Father: {fileID: 9022128244116083099} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4281218062729918891 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7422231316678128934} + m_Layer: 0 + m_Name: upper_arm.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7422231316678128934 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4281218062729918891} + m_LocalRotation: {x: 0.31716618, y: 0.6459197, z: -0.52770346, w: -0.45135623} + m_LocalPosition: {x: -0.00009254757, y: 0.0017519274, z: -0.00009666324} + m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.9999999} + m_Children: + - {fileID: 641715423230342042} + m_Father: {fileID: 2374621200550951662} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4380510740359215001 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2131486079179761014} + m_Layer: 0 + m_Name: thumb.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2131486079179761014 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4380510740359215001} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00048067997, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2914022325306135967} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4446262281457537604 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2414397306327470763} + m_Layer: 0 + m_Name: spine.004 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2414397306327470763 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4446262281457537604} + m_LocalRotation: {x: 0.025457365, y: -9.811444e-14, z: 6.807474e-17, w: 0.9996759} + m_LocalPosition: {x: 7.9409334e-24, y: 0.0015334577, z: -1.2107193e-10} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 4294717680684421886} + m_Father: {fileID: 1914663465793480682} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4485363215923214998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3788554026442482045} + m_Layer: 0 + m_Name: thigh.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3788554026442482045 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4485363215923214998} + m_LocalRotation: {x: 0.9941871, y: 0.02858102, z: -0.0072049154, w: 0.10355265} + m_LocalPosition: {x: 0.0009815217, y: 0.000078582205, z: 0.00026882935} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999998} + m_Children: + - {fileID: 4912008008681385} + m_Father: {fileID: 7142554973385064976} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4521171953116350109 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1878316846215467391} + - component: {fileID: 5727798815974991336} + m_Layer: 0 + m_Name: Peasant Nolant + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1878316846215467391 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4521171953116350109} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: [] + m_Father: {fileID: 3332756950553193982} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!137 &5727798815974991336 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4521171953116350109} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: b5588b6e42615a54586d7cf12825dcd8, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -4903783072746440830, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Bones: + - {fileID: 7142554973385064976} + - {fileID: 4809658496281367471} + - {fileID: 8963261292942249440} + - {fileID: 1914663465793480682} + - {fileID: 2414397306327470763} + - {fileID: 4294717680684421886} + - {fileID: 4694965789843453755} + - {fileID: 2374621200550951662} + - {fileID: 7422231316678128934} + - {fileID: 641715423230342042} + - {fileID: 1268076159119467720} + - {fileID: 19285042087737717} + - {fileID: 5383502463355712821} + - {fileID: 494923352311150034} + - {fileID: 8614670600863973837} + - {fileID: 8142459507606816078} + - {fileID: 9022128244116083099} + - {fileID: 8526185975115203222} + - {fileID: 4866705201067018776} + - {fileID: 6730799628970442612} + - {fileID: 2914022325306135967} + - {fileID: 5147641074488651457} + - {fileID: 5167194707719335990} + - {fileID: 6627259306336516856} + - {fileID: 2093169642849081718} + - {fileID: 1968204762983931753} + - {fileID: 2373061367923956698} + - {fileID: 5677322958285585050} + - {fileID: 1984459322409202643} + - {fileID: 3788554026442482045} + - {fileID: 4912008008681385} + - {fileID: 1249630153931837951} + - {fileID: 898721170235008141} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 7142554973385064976} + m_AABB: + m_Center: {x: -2.3283064e-10, y: 0.0011994755, z: -0.00040803547} + m_Extent: {x: 0.003455709, y: 0.008865731, z: 0.0038897444} + m_DirtyAABB: 0 +--- !u!1 &4793203350153736207 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2093169642849081718} + m_Layer: 0 + m_Name: pelvis.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2093169642849081718 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4793203350153736207} + m_LocalRotation: {x: 0.20745556, y: 0.75579697, z: 0.37365574, w: -0.49609944} + m_LocalPosition: {x: 6.009082e-17, y: -8.3091437e-11, z: 2.4447216e-10} + m_LocalScale: {x: 0.9999999, y: 0.99999964, z: 0.99999994} + m_Children: + - {fileID: 1570576101374261095} + m_Father: {fileID: 7142554973385064976} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5141487869491014386 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6143510100150898447} + m_Layer: 0 + m_Name: toe.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6143510100150898447 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5141487869491014386} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00062173844, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 898721170235008141} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5312335850249192653 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4912008008681385} + m_Layer: 0 + m_Name: shin.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4912008008681385 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5312335850249192653} + m_LocalRotation: {x: -0.0031269114, y: 0.0040673893, z: 0.030914117, w: 0.9995089} + m_LocalPosition: {x: 9.589712e-11, y: 0.003226773, z: 1.9790605e-11} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 1249630153931837951} + m_Father: {fileID: 3788554026442482045} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5497880648507418882 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6400711741083687426} + m_Layer: 0 + m_Name: finger.002.R_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6400711741083687426 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5497880648507418882} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.00027408908, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 6730799628970442612} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5570571901305935603 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2373061367923956698} + m_Layer: 0 + m_Name: shin.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2373061367923956698 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5570571901305935603} + m_LocalRotation: {x: -0.0031269148, y: -0.004067427, z: -0.030914111, w: 0.9995089} + m_LocalPosition: {x: 1.1787051e-11, y: 0.0032267736, z: 2.0954757e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 5677322958285585050} + m_Father: {fileID: 1968204762983931753} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5698194488736177142 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3027383168437261736} + m_Layer: 0 + m_Name: spine.006_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3027383168437261736 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5698194488736177142} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.001940323, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4694965789843453755} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5868667651582762347 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5269465928225697686} + - component: {fileID: 6062376135786663876} + m_Layer: 0 + m_Name: Hat + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5269465928225697686 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5868667651582762347} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: [] + m_Father: {fileID: 3332756950553193982} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!137 &6062376135786663876 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5868667651582762347} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: b5588b6e42615a54586d7cf12825dcd8, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 6657998009922166292, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + m_Bones: + - {fileID: 7142554973385064976} + - {fileID: 4809658496281367471} + - {fileID: 8963261292942249440} + - {fileID: 1914663465793480682} + - {fileID: 2414397306327470763} + - {fileID: 4294717680684421886} + - {fileID: 4694965789843453755} + - {fileID: 2374621200550951662} + - {fileID: 7422231316678128934} + - {fileID: 641715423230342042} + - {fileID: 1268076159119467720} + - {fileID: 19285042087737717} + - {fileID: 5383502463355712821} + - {fileID: 494923352311150034} + - {fileID: 8614670600863973837} + - {fileID: 8142459507606816078} + - {fileID: 9022128244116083099} + - {fileID: 8526185975115203222} + - {fileID: 4866705201067018776} + - {fileID: 6730799628970442612} + - {fileID: 2914022325306135967} + - {fileID: 5147641074488651457} + - {fileID: 5167194707719335990} + - {fileID: 6627259306336516856} + - {fileID: 2093169642849081718} + - {fileID: 1968204762983931753} + - {fileID: 2373061367923956698} + - {fileID: 5677322958285585050} + - {fileID: 1984459322409202643} + - {fileID: 3788554026442482045} + - {fileID: 4912008008681385} + - {fileID: 1249630153931837951} + - {fileID: 898721170235008141} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 7142554973385064976} + m_AABB: + m_Center: {x: 0.000003722962, y: 0.008676607, z: -0.0022646827} + m_Extent: {x: 0.0034599465, y: 0.0023455431, z: 0.0035855323} + m_DirtyAABB: 0 +--- !u!1 &6226592297140116181 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 19285042087737717} + m_Layer: 0 + m_Name: finger.001.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &19285042087737717 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6226592297140116181} + m_LocalRotation: {x: 0.015054992, y: 0.00063720264, z: 0.28685555, w: 0.95785534} + m_LocalPosition: {x: -1.272565e-10, y: 0.00096571585, z: -3.7252902e-11} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999997} + m_Children: + - {fileID: 5383502463355712821} + m_Father: {fileID: 1268076159119467720} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6479917470227888073 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8963261292942249440} + m_Layer: 0 + m_Name: spine.002 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8963261292942249440 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6479917470227888073} + m_LocalRotation: {x: -0.006285749, y: -4.9914083e-14, z: 0.0000000014986405, w: 0.9999803} + m_LocalPosition: {x: -8.881784e-18, y: 0.0014414854, z: -1.8626451e-11} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 1914663465793480682} + m_Father: {fileID: 4809658496281367471} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6499413474173518945 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4809658496281367471} + m_Layer: 0 + m_Name: spine.001 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4809658496281367471 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6499413474173518945} + m_LocalRotation: {x: -0.13536042, y: 6.208031e-14, z: 0.00000003227247, w: 0.99079645} + m_LocalPosition: {x: 2.6645352e-17, y: 0.0011857431, z: 2.2351741e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 8963261292942249440} + m_Father: {fileID: 7142554973385064976} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6692151480654400945 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8165896500127091892} + m_Layer: 0 + m_Name: breast.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8165896500127091892 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6692151480654400945} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0010843258, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5147641074488651457} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6923602090803556632 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5383502463355712821} + m_Layer: 0 + m_Name: finger.002.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5383502463355712821 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6923602090803556632} + m_LocalRotation: {x: -0.0038466123, y: 0.0029541235, z: 0.16873349, w: 0.9856498} + m_LocalPosition: {x: 3.4371622e-10, y: 0.0003260961, z: 2.4447217e-11} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5560129894005999037} + m_Father: {fileID: 19285042087737717} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7386204809879647610 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4013458100114074659} + m_Layer: 0 + m_Name: pelvis.L_end + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4013458100114074659 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7386204809879647610} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0015439128, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 6627259306336516856} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8288134287055417392 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 641715423230342042} + m_Layer: 0 + m_Name: forearm.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &641715423230342042 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8288134287055417392} + m_LocalRotation: {x: 0.0050242175, y: 0.0025352335, z: 0.021735689, w: 0.99974793} + m_LocalPosition: {x: 9.84528e-11, y: 0.0020558955, z: 1.8626451e-11} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_Children: + - {fileID: 1268076159119467720} + m_Father: {fileID: 7422231316678128934} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8820678189873734153 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6410255361377194473} + m_Layer: 0 + m_Name: metarig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6410255361377194473 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8820678189873734153} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: + - {fileID: 7142554973385064976} + m_Father: {fileID: 3332756950553193982} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!1 &8863415487163660672 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8142459507606816078} + m_Layer: 0 + m_Name: upper_arm.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8142459507606816078 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8863415487163660672} + m_LocalRotation: {x: -0.3171662, y: 0.6459196, z: -0.5277035, w: 0.45135617} + m_LocalPosition: {x: 0.00009254757, y: 0.0017519274, z: -0.00009666324} + m_LocalScale: {x: 0.99999964, y: 0.99999976, z: 0.9999999} + m_Children: + - {fileID: 9022128244116083099} + m_Father: {fileID: 8614670600863973837} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8956976327489939974 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2374621200550951662} + m_Layer: 0 + m_Name: shoulder.L + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2374621200550951662 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8956976327489939974} + m_LocalRotation: {x: -0.5588021, y: 0.32983753, z: 0.44262508, w: 0.6188946} + m_LocalPosition: {x: -0.00014255145, y: 0.0009989149, z: 0.00052131154} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999999} + m_Children: + - {fileID: 7422231316678128934} + m_Father: {fileID: 1914663465793480682} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8967685033470914037 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5167194707719335990} + m_Layer: 0 + m_Name: breast.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5167194707719335990 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8967685033470914037} + m_LocalRotation: {x: -0.000000096012194, y: 0.6287944, z: 0.7775716, w: -0.00000009360698} + m_LocalPosition: {x: 0.0011147689, y: 0.00015642075, z: -0.00059018645} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: + - {fileID: 8409671015047360584} + m_Father: {fileID: 1914663465793480682} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9142811573123172729 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4866705201067018776} + m_Layer: 0 + m_Name: finger.001.R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4866705201067018776 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9142811573123172729} + m_LocalRotation: {x: 0.015054991, y: -0.0006372028, z: -0.28685558, w: 0.95785534} + m_LocalPosition: {x: -2.1755113e-11, y: 0.00096571463, z: 2.3283063e-11} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.9999997} + m_Children: + - {fileID: 6730799628970442612} + m_Father: {fileID: 8526185975115203222} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Yellow(Free Version).prefab.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Yellow(Free Version).prefab.meta new file mode 100644 index 0000000..581c033 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Yellow(Free Version).prefab.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4f9803ed31b25c049b47eaf15bcb0c32 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Yellow(Free + Version).prefab + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Textures.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures.meta new file mode 100644 index 0000000..1168ba0 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c114580cf1691e94d96d20dc7fdb8d48 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Blue.png b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Blue.png new file mode 100644 index 0000000..53de8cf Binary files /dev/null and b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Blue.png differ diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Blue.png.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Blue.png.meta new file mode 100644 index 0000000..9c338f0 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Blue.png.meta @@ -0,0 +1,116 @@ +fileFormatVersion: 2 +guid: d552efe2e718cb243a43a23a3160e1f6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Blue.png + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Brown.png b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Brown.png new file mode 100644 index 0000000..5fc9b51 Binary files /dev/null and b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Brown.png differ diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Brown.png.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Brown.png.meta new file mode 100644 index 0000000..301ef5c --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Brown.png.meta @@ -0,0 +1,116 @@ +fileFormatVersion: 2 +guid: 0c6db0d88664c7847a854ccc20f8dffd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Brown.png + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Green.png b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Green.png new file mode 100644 index 0000000..082cb79 Binary files /dev/null and b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Green.png differ diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Green.png.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Green.png.meta new file mode 100644 index 0000000..d87d5d1 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Green.png.meta @@ -0,0 +1,116 @@ +fileFormatVersion: 2 +guid: 4cd6644c3000d5440a9d351d817300a0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Green.png + uploadId: 602208 diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Yellow.png b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Yellow.png new file mode 100644 index 0000000..ee90fe3 Binary files /dev/null and b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Yellow.png differ diff --git a/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Yellow.png.meta b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Yellow.png.meta new file mode 100644 index 0000000..8ec66a5 --- /dev/null +++ b/Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Yellow.png.meta @@ -0,0 +1,116 @@ +fileFormatVersion: 2 +guid: cd4d946f45eea7e409da2c45885aafad +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 252440 + packageName: Stylized NPC - Peasant Nolant + packageVersion: 1.02 + assetPath: Assets/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Yellow.png + uploadId: 602208 diff --git a/Assets/SceneTemplateAssets.meta b/Assets/SceneTemplateAssets.meta new file mode 100644 index 0000000..230ef1c --- /dev/null +++ b/Assets/SceneTemplateAssets.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e553c1232d2a53c449292a59f70c8f77 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SceneTemplateAssets/Common.meta b/Assets/SceneTemplateAssets/Common.meta new file mode 100644 index 0000000..b2df615 --- /dev/null +++ b/Assets/SceneTemplateAssets/Common.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 201afc4b8a63a04459ae676b2919ecc0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SceneTemplateAssets/Common/Models.meta b/Assets/SceneTemplateAssets/Common/Models.meta new file mode 100644 index 0000000..d6e0a52 --- /dev/null +++ b/Assets/SceneTemplateAssets/Common/Models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b1cbcc913ed5a7a45a9976f25d862398 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SceneTemplateAssets/Common/Models/UnityMaterialBall.fbx b/Assets/SceneTemplateAssets/Common/Models/UnityMaterialBall.fbx new file mode 100644 index 0000000..4ba3d97 Binary files /dev/null and b/Assets/SceneTemplateAssets/Common/Models/UnityMaterialBall.fbx differ diff --git a/Assets/SceneTemplateAssets/Common/Models/UnityMaterialBall.fbx.meta b/Assets/SceneTemplateAssets/Common/Models/UnityMaterialBall.fbx.meta new file mode 100644 index 0000000..b3f0d3d --- /dev/null +++ b/Assets/SceneTemplateAssets/Common/Models/UnityMaterialBall.fbx.meta @@ -0,0 +1,112 @@ +fileFormatVersion: 2 +guid: dbf213621aa684e458812b1232360659 +ModelImporter: + serializedVersion: 22102 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: 10 - Default + second: {fileID: 2100000, guid: e0f7961861aa5ae4a97805f16f8306b7, type: 2} + materials: + materialImportMode: 0 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 0 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes.meta b/Assets/Scenes.meta new file mode 100644 index 0000000..e59fb45 --- /dev/null +++ b/Assets/Scenes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9c53962885c2c4f449125a979d6ad240 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface Minimale.unity b/Assets/Scenes/Interface Minimale.unity new file mode 100644 index 0000000..cd57fc6 --- /dev/null +++ b/Assets/Scenes/Interface Minimale.unity @@ -0,0 +1,3150 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 10 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &149809641 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 149809642} + - component: {fileID: 149809645} + - component: {fileID: 149809644} + - component: {fileID: 149809643} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &149809642 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 149809641} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1658607517} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &149809643 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 149809641} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 1658607520} +--- !u!114 &149809644 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 149809641} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &149809645 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 149809641} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1658607521} + _surface: {fileID: 149809643} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 149809644} + _tiebreakerScore: 0 +--- !u!1 &410087039 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 410087041} + - component: {fileID: 410087040} + - component: {fileID: 410087042} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &410087040 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410087039} + m_Enabled: 1 + serializedVersion: 11 + m_Type: 1 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 2 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 5000 + m_UseColorTemperature: 1 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ForceVisible: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 + m_LightUnit: 1 + m_LuxAtDistance: 1 + m_EnableSpotReflector: 1 +--- !u!4 &410087041 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410087039} + serializedVersion: 2 + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!114 &410087042 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410087039} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Version: 3 + m_UsePipelineSettings: 1 + m_AdditionalLightsShadowResolutionTier: 2 + m_LightLayerMask: 1 + m_RenderingLayers: 1 + m_CustomShadowLayers: 0 + m_ShadowLayerMask: 1 + m_ShadowRenderingLayers: 1 + m_LightCookieSize: {x: 1, y: 1} + m_LightCookieOffset: {x: 0, y: 0} + m_SoftShadowQuality: 1 +--- !u!1 &456414019 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 456414020} + m_Layer: 0 + m_Name: RightHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &456414020 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 456414019} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1866756471} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &464422410 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 464422412} + - component: {fileID: 464422411} + m_Layer: 0 + m_Name: GestionnaireAffichageClientServeur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &464422411 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 464422410} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: daf83f5790a1ebc4b85208e164bc7016, type: 3} + m_Name: + m_EditorClassIdentifier: + init_token_client: {fileID: 1422848583} + envoyer_recevoir: {fileID: 1444308225} + MessagesTMP: {fileID: 1658607518} + DebugsTMP: {fileID: 983802523} + Entree: {fileID: 608799000} +--- !u!4 &464422412 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 464422410} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &560973372 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 560973373} + - component: {fileID: 560973376} + - component: {fileID: 560973375} + - component: {fileID: 560973374} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &560973373 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 560973372} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1898528808} + m_Father: {fileID: 608798999} + 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: 0.5, y: 0.5} +--- !u!114 &560973374 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 560973372} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &560973375 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 560973372} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 608799005} +--- !u!114 &560973376 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 560973372} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 560973375} + _surface: {fileID: 1898528811} + _selectSurface: {fileID: 1898528812} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &608798998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 608798999} + - component: {fileID: 608799002} + - component: {fileID: 608799001} + - component: {fileID: 608799000} + - component: {fileID: 608799003} + - component: {fileID: 608799005} + - component: {fileID: 608799004} + - component: {fileID: 608799006} + m_Layer: 5 + m_Name: EntreeUtilisateur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &608798999 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1995909375} + - {fileID: 560973373} + - {fileID: 657774189} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &608799000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 608799001} + m_TextViewport: {fileID: 1995909375} + m_TextComponent: {fileID: 1176307664} + m_Placeholder: {fileID: 1892639742} + m_VerticalScrollbar: {fileID: 0} + m_VerticalScrollbarEventHandler: {fileID: 0} + m_LayoutGroup: {fileID: 0} + m_ScrollSensitivity: 1 + m_ContentType: 0 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_HideSoftKeyboard: 0 + m_CharacterValidation: 0 + m_RegexValue: + m_GlobalPointSize: 14 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnSubmit: + m_PersistentCalls: + m_Calls: [] + m_OnSelect: + m_PersistentCalls: + m_Calls: [] + m_OnDeselect: + m_PersistentCalls: + m_Calls: [] + m_OnTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnEndTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_OnTouchScreenKeyboardStatusChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 + m_RichText: 1 + m_GlobalFontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_OnFocusSelectAll: 1 + m_ResetOnDeActivation: 1 + m_KeepTextSelectionVisible: 0 + m_RestoreOriginalTextOnEscape: 1 + m_isRichTextEditingAllowed: 0 + m_LineLimit: 0 + isAlert: 0 + m_InputValidator: {fileID: 0} + m_ShouldActivateOnSelect: 1 +--- !u!114 &608799001 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &608799002 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_CullTransparentMesh: 1 +--- !u!114 &608799003 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f9a237365031784e9a1c139ac1991cb, type: 3} + m_Name: + m_EditorClassIdentifier: + Debugs: {fileID: 983802523} +--- !u!114 &608799004 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!223 &608799005 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 1947069775} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &608799006 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e050578356dd7b94b8690fdfb1d58605, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &656547577 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 656547578} + - component: {fileID: 656547579} + - component: {fileID: 656547580} + m_Layer: 0 + m_Name: RightEyeAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &656547578 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 656547577} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &656547579 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 656547577} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 2 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!114 &656547580 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 656547577} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!1 &657774188 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 657774189} + - component: {fileID: 657774191} + - component: {fileID: 657774190} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &657774189 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 657774188} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 608798999} + 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: 0.5, y: 0.5} +--- !u!114 &657774190 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 657774188} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &657774191 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 657774188} + m_CullTransparentMesh: 1 +--- !u!1 &682329574 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 682329579} + - component: {fileID: 682329578} + - component: {fileID: 682329577} + - component: {fileID: 682329576} + - component: {fileID: 682329575} + m_Layer: 0 + m_Name: '[BuildingBlock] Camera Rig' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &682329575 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682329574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5178bc8574ce2bf4388e787a2e2af326, type: 3} + m_Name: + m_EditorClassIdentifier: + opMode: 1 + resetHmdPoseOnRelease: 1 + resetHmdPoseByMiddleMouseButton: 1 + activateKeys: 3201000031010000 + activateKeyBindings: + - /leftCtrl + - /rightCtrl + - /f1 + pitchKeys: 3401000033010000 + pitchKeyBindings: + - /leftAlt + - /rightAlt + - /f2 +--- !u!114 &682329576 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682329574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7e933e81d3c20c74ea6fdc708a67e3a5, type: 3} + m_Name: + m_EditorClassIdentifier: + _monoscopic: 0 + _sharpenType: 0 + _enableDynamicResolution: 1 + minDynamicResolutionScale: 1 + maxDynamicResolutionScale: 1 + quest2MinDynamicResolutionScale: 0.7 + quest2MaxDynamicResolutionScale: 1.3 + quest3MinDynamicResolutionScale: 0.7 + quest3MaxDynamicResolutionScale: 1.6 + minRenderScale: 0.7 + maxRenderScale: 1 + _headPoseRelativeOffsetRotation: {x: 0, y: 0, z: 0} + _headPoseRelativeOffsetTranslation: {x: 0, y: 0, z: 0} + profilerTcpPort: 32419 + expandMixedRealityCapturePropertySheet: 0 + enableMixedReality: 0 + compositionMethod: 0 + extraHiddenLayers: + serializedVersion: 2 + m_Bits: 0 + extraVisibleLayers: + serializedVersion: 2 + m_Bits: 0 + dynamicCullingMask: 1 + externalCompositionBackdropColorRift: {r: 0, g: 1, b: 0, a: 1} + externalCompositionBackdropColorQuest: {r: 0, g: 0, b: 0, a: 0} + capturingCameraDevice: 0 + flipCameraFrameHorizontally: 0 + flipCameraFrameVertically: 0 + handPoseStateLatency: 0 + sandwichCompositionRenderLatency: 0 + sandwichCompositionBufferedFrames: 8 + chromaKeyColor: {r: 0, g: 1, b: 0, a: 1} + chromaKeySimilarity: 0.6 + chromaKeySmoothRange: 0.03 + chromaKeySpillRange: 0.06 + useDynamicLighting: 0 + depthQuality: 1 + dynamicLightingSmoothFactor: 8 + dynamicLightingDepthVariationClampingValue: 0.001 + virtualGreenScreenType: 0 + virtualGreenScreenTopY: 10 + virtualGreenScreenBottomY: -10 + virtualGreenScreenApplyDepthCulling: 0 + virtualGreenScreenDepthTolerance: 0.2 + mrcActivationMode: 0 + launchSimultaneousHandsControllersOnStartup: 0 + isInsightPassthroughEnabled: 0 + shouldBoundaryVisibilityBeSuppressed: 0 + requestBodyTrackingPermissionOnStartup: 0 + requestFaceTrackingPermissionOnStartup: 0 + requestEyeTrackingPermissionOnStartup: 0 + requestScenePermissionOnStartup: 0 + requestRecordAudioPermissionOnStartup: 0 + _localDimming: 1 + _trackingOriginType: 1 + usePositionTracking: 1 + useRotationTracking: 1 + useIPDInPositionTracking: 1 + resetTrackerOnLoad: 0 + AllowRecenter: 1 + LateControllerUpdate: 1 + LateLatching: 0 + controllerDrivenHandPosesType: 0 + SimultaneousHandsAndControllersEnabled: 0 + _readOnlyWideMotionModeHandPosesEnabled: 0 + wideMotionModeHandPosesEnabled: 0 + dynamicResolutionVersion: 1 +--- !u!114 &682329577 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682329574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: df9f338034892c44ebb62d97894772f1, type: 3} + m_Name: + m_EditorClassIdentifier: + usePerEyeCameras: 0 + useFixedUpdateForTracking: 0 + disableEyeAnchorCameras: 0 +--- !u!114 &682329578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682329574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: e47682b9-c270-40b1-b16d-90b627a5ce1b + instanceId: e5a4bffc-91f6-4eeb-b4bb-7bc997c1cf26 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: + _installationVariants: [] +--- !u!4 &682329579 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682329574} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -150} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1434540719} + - {fileID: 1492442950} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &827990246 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 827990247} + m_Layer: 0 + m_Name: LeftControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &827990247 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 827990246} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2111381995} + m_Father: {fileID: 1946018329} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &832575517 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 832575519} + - component: {fileID: 832575518} + m_Layer: 0 + m_Name: Global Volume + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &832575518 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 832575517} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IsGlobal: 1 + priority: 0 + blendDistance: 0 + weight: 1 + sharedProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} +--- !u!4 &832575519 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 832575517} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &883286702 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 883286703} + m_Layer: 0 + m_Name: LeftHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &883286703 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 883286702} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &932241469 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 932241470} + m_Layer: 0 + m_Name: RightHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &932241470 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932241469} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &983802521 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 983802522} + - component: {fileID: 983802524} + - component: {fileID: 983802523} + - component: {fileID: 983802527} + - component: {fileID: 983802526} + - component: {fileID: 983802525} + - component: {fileID: 983802528} + m_Layer: 0 + m_Name: Debugs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &983802522 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + m_LocalRotation: {x: -0, y: 0.13052617, z: -0, w: 0.99144495} + m_LocalPosition: {x: 0, y: 0, z: 3} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1851306274} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 154.54816, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &983802523 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Aucun debug \xE0 afficher." + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30.65 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: -53.619247, y: -51.508995, z: 97.61298, w: -3.377018} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &983802524 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + m_CullTransparentMesh: 1 +--- !u!114 &983802525 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 983802522} + _maxGrabPoints: -1 + _rigidbody: {fileID: 983802526} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &983802526 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!65 &983802527 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 200, y: 50, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!223 &983802528 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 1947069775} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &1105351643 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1105351644} + m_Layer: 0 + m_Name: LeftControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1105351644 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1105351643} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1946018329} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1146014827 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1146014828} + m_Layer: 0 + m_Name: RightHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1146014828 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1146014827} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1608902060} + - {fileID: 1866756471} + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1176307662 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1176307663} + - component: {fileID: 1176307665} + - component: {fileID: 1176307664} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1176307663 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1176307662} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1995909375} + 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: 0.5, y: 0.5} +--- !u!114 &1176307664 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1176307662} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "\u200B" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 3 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1176307665 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1176307662} + m_CullTransparentMesh: 1 +--- !u!1 &1201622012 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1201622013} + m_Layer: 0 + m_Name: TrackerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1201622013 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1201622012} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1422848582 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1422848584} + - component: {fileID: 1422848583} + m_Layer: 0 + m_Name: TokenInit + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1422848583 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1422848582} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 883d2ea4411452145a4a4d88824cca26, type: 3} + m_Name: + m_EditorClassIdentifier: + Token: +--- !u!4 &1422848584 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1422848582} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1434540718 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1434540719} + m_Layer: 0 + m_Name: TrackingSpace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1434540719 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1434540718} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1752968439} + - {fileID: 1947069774} + - {fileID: 656547578} + - {fileID: 1201622013} + - {fileID: 1946018329} + - {fileID: 1146014828} + - {fileID: 883286703} + - {fileID: 932241470} + m_Father: {fileID: 682329579} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1444308224 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1444308226} + - component: {fileID: 1444308225} + m_Layer: 0 + m_Name: EnvoyerRecevoir + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1444308225 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1444308224} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b3a5933ccf77e5b4dac95a07f78b7914, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1444308226 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1444308224} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1492442949 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 682329579} + m_Modifications: + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 1752968439} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 656547578} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 1947069775} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 1752968439} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 656547578} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 1947069775} + - target: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_Name + value: '[BuildingBlock] OVRInteractionComprehensive' + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerEyes + value: + objectReference: {fileID: 1947069774} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerOrigin + value: + objectReference: {fileID: 682329579} + - target: {fileID: 6267690530596161800, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _ovrCameraRig + value: + objectReference: {fileID: 682329577} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + insertIndex: 1 + addedObject: {fileID: 1492442952} + m_SourcePrefab: {fileID: 100100000, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} +--- !u!4 &1492442950 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 1492442949} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1492442951 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 1492442949} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1492442952 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1492442951} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: 81f55626-5fad-45e9-a1df-184f330da7ba + instanceId: 332e0e8a-fb58-4fa7-addf-6b8d3946ab19 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: 2063f481-1b63-4eda-9ee8-a00df98536bc + _installationVariants: [] +--- !u!1 &1608902059 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1608902060} + m_Layer: 0 + m_Name: RightControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1608902060 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1608902059} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1146014828} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1658607516 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1658607517} + - component: {fileID: 1658607519} + - component: {fileID: 1658607518} + - component: {fileID: 1658607522} + - component: {fileID: 1658607521} + - component: {fileID: 1658607520} + - component: {fileID: 1658607523} + m_Layer: 0 + m_Name: Messages + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 2147483647 + m_IsActive: 1 +--- !u!224 &1658607517 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + m_LocalRotation: {x: -0, y: -0.13052624, z: -0, w: 0.9914449} + m_LocalPosition: {x: 0, y: 0, z: 3} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 149809642} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -154.54813, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1658607518 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Aucun message \xE0 afficher." + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30.65 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 71.10812, y: -51.508995, z: -41.375336, w: -3.377018} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1658607519 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + m_CullTransparentMesh: 1 +--- !u!65 &1658607520 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 200, y: 50, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1658607521 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 1658607517} + _maxGrabPoints: -1 + _rigidbody: {fileID: 1658607522} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &1658607522 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!223 &1658607523 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 1947069775} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &1662959066 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1662959069} + - component: {fileID: 1662959068} + - component: {fileID: 1662959067} + - component: {fileID: 1662959070} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1662959067 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662959066} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8f1a9a1d119a5944aacfb87d1ec283a2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + rayTransform: {fileID: 1492442950} + m_Cursor: {fileID: 0} + joyPadClickButton: 1 + gazeClickKey: 32 + performSphereCastForGazepointer: 0 + useRightStickScroll: 1 + rightStickDeadZone: 0.15 + useSwipeScroll: 1 + swipeDragThreshold: 2 + swipeDragScale: 1 + InvertSwipeXAxis: 0 + angleDragThreshold: 1 + m_SpherecastRadius: 1 + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_AllowActivationOnMobileDevice: 1 +--- !u!114 &1662959068 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662959066} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &1662959069 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662959066} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1662959070 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662959066} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2518c50cb3fc6a6458d4b743c2f69c7d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + _useInitialPressPositionForDrag: 1 + _exclusiveMode: 1 +--- !u!1 &1752968438 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1752968439} + - component: {fileID: 1752968440} + - component: {fileID: 1752968441} + m_Layer: 0 + m_Name: LeftEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1752968439 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752968438} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &1752968440 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752968438} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 1 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!114 &1752968441 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752968438} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!1 &1799026243 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1799026245} + - component: {fileID: 1799026244} + m_Layer: 0 + m_Name: DebugEffectsVisuels + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1799026244 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1799026243} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 359753addc189e24bbbc5355eb782ba3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1799026245 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1799026243} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1851306273 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1851306274} + - component: {fileID: 1851306277} + - component: {fileID: 1851306276} + - component: {fileID: 1851306275} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1851306274 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851306273} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 983802522} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1851306275 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851306273} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 983802527} +--- !u!114 &1851306276 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851306273} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1851306277 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851306273} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 983802525} + _surface: {fileID: 1851306275} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 1851306276} + _tiebreakerScore: 0 +--- !u!1 &1866756470 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1866756471} + m_Layer: 0 + m_Name: RightControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1866756471 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1866756470} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 456414020} + m_Father: {fileID: 1146014828} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1892639739 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1892639740} + - component: {fileID: 1892639743} + - component: {fileID: 1892639742} + - component: {fileID: 1892639741} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1892639740 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892639739} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1995909375} + 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: 0.5, y: 0.5} +--- !u!114 &1892639741 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892639739} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1892639742 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892639739} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Entrez un texte... + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 2150773298 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 2 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1892639743 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892639739} + m_CullTransparentMesh: 1 +--- !u!1 &1898528807 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1898528808} + - component: {fileID: 1898528812} + - component: {fileID: 1898528811} + - component: {fileID: 1898528810} + - component: {fileID: 1898528809} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1898528808 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898528807} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 560973373} + 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: 0.5, y: 0.5} +--- !u!114 &1898528809 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898528807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 1898528810} +--- !u!114 &1898528810 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898528807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 160, y: 30, z: 0.01} +--- !u!114 &1898528811 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898528807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 1898528812} + _clippers: + - {fileID: 1898528810} +--- !u!114 &1898528812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898528807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &1946018328 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1946018329} + m_Layer: 0 + m_Name: LeftHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1946018329 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1946018328} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1105351644} + - {fileID: 827990247} + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1947069773 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1947069774} + - component: {fileID: 1947069776} + - component: {fileID: 1947069775} + - component: {fileID: 1947069777} + m_Layer: 0 + m_Name: CenterEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1947069774 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1947069773} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &1947069775 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1947069773} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 1000 + field of view: 90 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &1947069776 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1947069773} + m_Enabled: 1 +--- !u!114 &1947069777 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1947069773} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!1 &1995909374 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1995909375} + - component: {fileID: 1995909376} + m_Layer: 5 + m_Name: Text Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1995909375 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1995909374} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1892639740} + - {fileID: 1176307663} + m_Father: {fileID: 608798999} + 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.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1995909376 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1995909374} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: {x: -8, y: -5, z: -8, w: -5} + m_Softness: {x: 0, y: 0} +--- !u!1 &2111381994 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2111381995} + m_Layer: 0 + m_Name: LeftHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2111381995 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2111381994} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 827990247} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 410087041} + - {fileID: 832575519} + - {fileID: 1422848584} + - {fileID: 1444308226} + - {fileID: 464422412} + - {fileID: 1799026245} + - {fileID: 682329579} + - {fileID: 1662959069} + - {fileID: 608798999} + - {fileID: 983802522} + - {fileID: 1658607517} diff --git a/Assets/Scenes/Interface Minimale.unity.meta b/Assets/Scenes/Interface Minimale.unity.meta new file mode 100644 index 0000000..ca6ff7a --- /dev/null +++ b/Assets/Scenes/Interface Minimale.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c851e49373ed2ca448e2f5a06327625d +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface test personnage.meta b/Assets/Scenes/Interface test personnage.meta new file mode 100644 index 0000000..0a26db0 --- /dev/null +++ b/Assets/Scenes/Interface test personnage.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 367cad72f1bf7ce4c9d07e80db45a890 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface test personnage.unity b/Assets/Scenes/Interface test personnage.unity new file mode 100644 index 0000000..b01da2a --- /dev/null +++ b/Assets/Scenes/Interface test personnage.unity @@ -0,0 +1,3193 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 10 + m_Fog: 0 + m_FogColor: {r: 0.84549654, g: 0.9433962, b: 0.9433962, a: 1} + m_FogMode: 3 + m_FogDensity: 0.02 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.043253757, g: 0.42013735, b: 0.8490566, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 2100000, guid: 6f60649bffa7f434bb677b326c6dafe3, type: 2} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 203844588} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 112000000, guid: a54bb5f4b1267ce46aaac60f36181517, type: 2} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &97765677 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 97765678} + m_Layer: 0 + m_Name: LeftHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &97765678 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 97765677} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1097346914} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &114988143 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 114988144} + m_Layer: 5 + m_Name: WindowTitle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &114988144 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 114988143} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2045418974} + m_Father: {fileID: 1057409091} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 15} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &203844586 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 203844589} + - component: {fileID: 203844588} + - component: {fileID: 203844587} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &203844587 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Version: 3 + m_UsePipelineSettings: 1 + m_AdditionalLightsShadowResolutionTier: 2 + m_LightLayerMask: 1 + m_RenderingLayers: 1 + m_CustomShadowLayers: 0 + m_ShadowLayerMask: 1 + m_ShadowRenderingLayers: 1 + m_LightCookieSize: {x: 1, y: 1} + m_LightCookieOffset: {x: 0, y: 0} + m_SoftShadowQuality: 1 +--- !u!108 &203844588 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + m_Enabled: 1 + serializedVersion: 11 + m_Type: 1 + m_Color: {r: 1, g: 0.9785366, b: 0.92, a: 1} + m_Intensity: 3.14159 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 0.8 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 200 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ForceVisible: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 + m_LightUnit: 1 + m_LuxAtDistance: 1 + m_EnableSpotReflector: 1 +--- !u!4 &203844589 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + serializedVersion: 2 + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 500, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 604712594} + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &356421901 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 356421902} + m_Layer: 0 + m_Name: RightHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &356421902 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 356421901} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1131475456} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &445223487 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 445223492} + - component: {fileID: 445223491} + - component: {fileID: 445223490} + - component: {fileID: 445223489} + - component: {fileID: 445223488} + - component: {fileID: 445223493} + m_Layer: 0 + m_Name: '[BuildingBlock] Camera Rig' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &445223488 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 445223487} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5178bc8574ce2bf4388e787a2e2af326, type: 3} + m_Name: + m_EditorClassIdentifier: + opMode: 1 + resetHmdPoseOnRelease: 1 + resetHmdPoseByMiddleMouseButton: 1 + activateKeys: 3201000031010000 + activateKeyBindings: + - /leftCtrl + - /rightCtrl + - /f1 + pitchKeys: 3401000033010000 + pitchKeyBindings: + - /leftAlt + - /rightAlt + - /f2 +--- !u!114 &445223489 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 445223487} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7e933e81d3c20c74ea6fdc708a67e3a5, type: 3} + m_Name: + m_EditorClassIdentifier: + _monoscopic: 0 + _sharpenType: 0 + _enableDynamicResolution: 0 + minDynamicResolutionScale: 1 + maxDynamicResolutionScale: 1 + quest2MinDynamicResolutionScale: 0.7 + quest2MaxDynamicResolutionScale: 1.3 + quest3MinDynamicResolutionScale: 0.7 + quest3MaxDynamicResolutionScale: 1.6 + minRenderScale: 0.7 + maxRenderScale: 1 + _headPoseRelativeOffsetRotation: {x: 0, y: 0, z: 0} + _headPoseRelativeOffsetTranslation: {x: 0, y: 0, z: 0} + profilerTcpPort: 32419 + expandMixedRealityCapturePropertySheet: 0 + enableMixedReality: 0 + compositionMethod: 0 + extraHiddenLayers: + serializedVersion: 2 + m_Bits: 0 + extraVisibleLayers: + serializedVersion: 2 + m_Bits: 0 + dynamicCullingMask: 1 + externalCompositionBackdropColorRift: {r: 0, g: 1, b: 0, a: 1} + externalCompositionBackdropColorQuest: {r: 0, g: 0, b: 0, a: 0} + capturingCameraDevice: 0 + flipCameraFrameHorizontally: 0 + flipCameraFrameVertically: 0 + handPoseStateLatency: 0 + sandwichCompositionRenderLatency: 0 + sandwichCompositionBufferedFrames: 8 + chromaKeyColor: {r: 0, g: 1, b: 0, a: 1} + chromaKeySimilarity: 0.6 + chromaKeySmoothRange: 0.03 + chromaKeySpillRange: 0.06 + useDynamicLighting: 0 + depthQuality: 1 + dynamicLightingSmoothFactor: 8 + dynamicLightingDepthVariationClampingValue: 0.001 + virtualGreenScreenType: 0 + virtualGreenScreenTopY: 10 + virtualGreenScreenBottomY: -10 + virtualGreenScreenApplyDepthCulling: 0 + virtualGreenScreenDepthTolerance: 0.2 + mrcActivationMode: 0 + launchSimultaneousHandsControllersOnStartup: 0 + isInsightPassthroughEnabled: 0 + shouldBoundaryVisibilityBeSuppressed: 0 + requestBodyTrackingPermissionOnStartup: 0 + requestFaceTrackingPermissionOnStartup: 0 + requestEyeTrackingPermissionOnStartup: 0 + requestScenePermissionOnStartup: 0 + requestRecordAudioPermissionOnStartup: 0 + requestPassthroughCameraAccessPermissionOnStartup: 0 + _localDimming: 1 + _trackingOriginType: 1 + usePositionTracking: 1 + useRotationTracking: 1 + useIPDInPositionTracking: 1 + resetTrackerOnLoad: 0 + AllowRecenter: 1 + LateControllerUpdate: 1 + LateLatching: 0 + controllerDrivenHandPosesType: 0 + SimultaneousHandsAndControllersEnabled: 0 + _readOnlyWideMotionModeHandPosesEnabled: 0 + wideMotionModeHandPosesEnabled: 0 + dynamicResolutionVersion: 1 +--- !u!114 &445223490 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 445223487} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: df9f338034892c44ebb62d97894772f1, type: 3} + m_Name: + m_EditorClassIdentifier: + usePerEyeCameras: 0 + useFixedUpdateForTracking: 0 + disableEyeAnchorCameras: 0 +--- !u!114 &445223491 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 445223487} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: e47682b9-c270-40b1-b16d-90b627a5ce1b + instanceId: 4828efb8-1c9f-40f1-87c9-c9c611c699e9 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: + _installationVariants: [] +--- !u!4 &445223492 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 445223487} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 3, y: 1.5, z: 1.8} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2072011778} + - {fileID: 1951701583} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &445223493 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 445223487} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cd95f96693bec0a409fa0a398bd370f0, type: 3} + m_Name: + m_EditorClassIdentifier: + hud: {fileID: 2095273147} +--- !u!1 &513169186 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 513169187} + m_Layer: 0 + m_Name: LeftControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &513169187 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 513169186} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1585496316} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &604712593 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 604712594} + m_Layer: 0 + m_Name: Lights + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &604712594 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 604712593} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 203844589} + - {fileID: 2116198339} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &827211335 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 827211336} + - component: {fileID: 827211337} + - component: {fileID: 827211338} + m_Layer: 0 + m_Name: LeftEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &827211336 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 827211335} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2072011778} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &827211337 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 827211335} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 1 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!114 &827211338 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 827211335} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!1 &915008907 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 915008908} + m_Layer: 0 + m_Name: RightHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &915008908 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 915008907} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2072011778} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &980203951 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 980203952} + m_Layer: 0 + m_Name: RightControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &980203952 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 980203951} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1678023258} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!224 &1057409091 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 2095273145} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1097346913 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1097346914} + m_Layer: 0 + m_Name: LeftControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1097346914 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1097346913} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 97765678} + m_Father: {fileID: 1585496316} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1131475455 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1131475456} + m_Layer: 0 + m_Name: RightControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1131475456 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1131475455} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 356421902} + m_Father: {fileID: 1678023258} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1157755047 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1157755048} + m_Layer: 0 + m_Name: TrackerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1157755048 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1157755047} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2072011778} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1160234425 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1160234427} + - component: {fileID: 1160234426} + m_Layer: 0 + m_Name: Global Volume + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1160234426 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1160234425} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IsGlobal: 1 + priority: 0 + blendDistance: 0 + weight: 1 + sharedProfile: {fileID: 11400000, guid: 99a6b9aea5fb7284b8d9a1b5aa3dba72, type: 2} +--- !u!4 &1160234427 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1160234425} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1167248449 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1167248450} + - component: {fileID: 1167248451} + - component: {fileID: 1167248452} + m_Layer: 0 + m_Name: RightEyeAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1167248450 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167248449} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2072011778} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &1167248451 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167248449} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 2 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!114 &1167248452 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167248449} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!1001 &1404161427 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.x + value: 0.006 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.y + value: 0.006 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.z + value: 0.006 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5074138163107441018, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -3922660605386920464, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 186216269727547346, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Name + value: AstroDomeTower + objectReference: {fileID: 0} + - target: {fileID: 2463113813996302265, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: + - {fileID: -1698393537433210792, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: -38332879115174756, guid: cae085d13537bd24284ac549e6c37828, type: 3} + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: cae085d13537bd24284ac549e6c37828, type: 3} +--- !u!1 &1475381335 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1475381336} + - component: {fileID: 1475381338} + - component: {fileID: 1475381337} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1475381336 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1475381335} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1838094477} + 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: 0.5, y: 0.5} +--- !u!114 &1475381337 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1475381335} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1475381338 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1475381335} + m_CullTransparentMesh: 1 +--- !u!1001 &1543142181 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1057409091} + m_Modifications: + - target: {fileID: 432194488499236491, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 432194488499236491, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 432194488499236491, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 432194488499236491, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1091280833212796904, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1091280833212796904, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1091280833212796904, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1091280833212796904, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1277606346344120145, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1277606346344120145, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1277606346344120145, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1277606346344120145, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1285203537061935627, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_text + value: Essai menu dropdown + objectReference: {fileID: 0} + - target: {fileID: 1285203537061935627, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1972731160208842290, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1972731160208842290, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1972731160208842290, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1972731160208842290, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2041855126046419109, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 2548252077271113539, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2548252077271113539, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2548252077271113539, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2548252077271113539, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2579850041761302001, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2579850041761302001, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2837034783756666044, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_Name + value: DropDown1LineTextOnly + objectReference: {fileID: 0} + - target: {fileID: 3377383502143884781, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3377383502143884781, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3377383502143884781, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3377383502143884781, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3477089488176053588, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3477089488176053588, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3477089488176053588, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3477089488176053588, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3996863947086187459, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4444421915889953440, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4450347884500627450, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4450347884500627450, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4450347884500627450, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4450347884500627450, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4687625296869879051, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4687625296869879051, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4687625296869879051, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4687625296869879051, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5352563368107479875, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5352563368107479875, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5352563368107479875, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5352563368107479875, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5516381756077916069, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5516381756077916069, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5516381756077916069, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5516381756077916069, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_SizeDelta.x + value: 200 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_SizeDelta.y + value: 444 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7471340960108371139, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7471340960108371139, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7471340960108371139, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7471340960108371139, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7887489317279530400, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7887489317279530400, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7887489317279530400, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7887489317279530400, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} +--- !u!224 &1543142182 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + m_PrefabInstance: {fileID: 1543142181} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1585496315 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1585496316} + m_Layer: 0 + m_Name: LeftHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1585496316 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1585496315} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 513169187} + - {fileID: 1097346914} + m_Father: {fileID: 2072011778} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1614590249 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalScale.x + value: 0.8 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalScale.y + value: 0.8 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalScale.z + value: 0.8 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalPosition.x + value: -2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalPosition.y + value: 0.1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalPosition.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalRotation.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_Name + value: Peasant Nolant(Free Version) + objectReference: {fileID: 0} + - target: {fileID: 5866666021909216657, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: fecf6d756e0aaae41ada7c746eed59b9, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: de76d67d0ab88dc439b10b32370775ea, type: 3} +--- !u!1 &1617418793 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1617418794} + m_Layer: 0 + m_Name: LeftHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1617418794 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1617418793} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2072011778} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1621136234 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1057409091} + m_Modifications: + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478820160061, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735817, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479857422798, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_text + value: Rechercher un sujet + objectReference: {fileID: 0} + - target: {fileID: 1121483479857422798, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 1121483479857422798, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025239, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_Name + value: SearchBar + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080138, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_text + value: Hello the world. + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080138, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1954593979210265646, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_Layer + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 6685184096729060916, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_Layer + value: 3 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} +--- !u!224 &1621136235 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + m_PrefabInstance: {fileID: 1621136234} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1678023257 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1678023258} + m_Layer: 0 + m_Name: RightHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1678023258 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1678023257} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 980203952} + - {fileID: 1131475456} + m_Father: {fileID: 2072011778} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1771158678 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1771158679} + - component: {fileID: 1771158681} + - component: {fileID: 1771158680} + - component: {fileID: 1771158682} + m_Layer: 0 + m_Name: CenterEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1771158679 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1771158678} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2072011778} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &1771158680 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1771158678} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 1000 + field of view: 90 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &1771158681 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1771158678} + m_Enabled: 1 +--- !u!114 &1771158682 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1771158678} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!1 &1838094470 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1838094477} + - component: {fileID: 1838094476} + - component: {fileID: 1838094475} + - component: {fileID: 1838094474} + - component: {fileID: 1838094473} + - component: {fileID: 1838094472} + - component: {fileID: 1838094471} + m_Layer: 0 + m_Name: Debugs + m_TagString: Debug + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!223 &1838094471 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1838094470} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1838094472 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1838094470} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 1838094477} + _maxGrabPoints: -1 + _rigidbody: {fileID: 1838094473} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &1838094473 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1838094470} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!65 &1838094474 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1838094470} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 200, y: 50, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1838094475 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1838094470} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Aucun debug \xE0 afficher." + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30.65 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: -53.619247, y: -51.508995, z: 97.61298, w: -3.377018} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1838094476 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1838094470} + m_CullTransparentMesh: 1 +--- !u!224 &1838094477 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1838094470} + m_LocalRotation: {x: -0, y: 0.13052617, z: -0, w: 0.99144495} + m_LocalPosition: {x: 0, y: 0, z: 150} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1923642747} + - {fileID: 1475381336} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 154.54816, y: 25} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1923642746 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1923642747} + - component: {fileID: 1923642750} + - component: {fileID: 1923642749} + - component: {fileID: 1923642748} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1923642747 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1923642746} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1838094477} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1923642748 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1923642746} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 1838094474} +--- !u!114 &1923642749 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1923642746} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1923642750 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1923642746} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1838094472} + _surface: {fileID: 1923642748} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 1923642749} + _tiebreakerScore: 0 +--- !u!1001 &1951701582 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 445223492} + m_Modifications: + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 827211336} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 1167248450} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 1771158680} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 827211336} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 1167248450} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 1771158680} + - target: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_Name + value: '[BuildingBlock] OVRInteractionComprehensive' + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerEyes + value: + objectReference: {fileID: 1771158679} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerOrigin + value: + objectReference: {fileID: 445223492} + - target: {fileID: 6267690530596161800, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _ovrCameraRig + value: + objectReference: {fileID: 445223490} + m_RemovedComponents: [] + m_RemovedGameObjects: + - {fileID: 4604000520904607249, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + insertIndex: 1 + addedObject: {fileID: 1951701585} + m_SourcePrefab: {fileID: 100100000, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} +--- !u!4 &1951701583 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 1951701582} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1951701584 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 1951701582} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1951701585 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1951701584} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: 81f55626-5fad-45e9-a1df-184f330da7ba + instanceId: 1cd5cd3e-7487-4b23-81b2-e51a32aff331 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: 2063f481-1b63-4eda-9ee8-a00df98536bc + _installationVariants: [] +--- !u!1001 &1968986169 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalScale.x + value: 0.8 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalScale.y + value: 0.8 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalScale.z + value: 0.8 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalPosition.x + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalPosition.y + value: 0.1 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalPosition.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalRotation.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6127395625895404759, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6792327054025522797, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + propertyPath: m_Name + value: Peasant Nolant Blue(Free Version) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 6792327054025522797, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + insertIndex: -1 + addedObject: {fileID: 2089183698} + - targetCorrespondingSourceObject: {fileID: 6792327054025522797, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + insertIndex: -1 + addedObject: {fileID: 2089183699} + - targetCorrespondingSourceObject: {fileID: 6792327054025522797, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + insertIndex: -1 + addedObject: {fileID: 2089183702} + m_SourcePrefab: {fileID: 100100000, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} +--- !u!1 &2045418973 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2045418974} + - component: {fileID: 2045418976} + - component: {fileID: 2045418975} + m_Layer: 5 + m_Name: Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2045418974 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2045418973} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 114988144} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 200, y: 0} + m_SizeDelta: {x: 500, y: 15} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2045418975 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2045418973} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Bienvenue dans Riz Au Lait + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30 + m_fontSizeBase: 30 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &2045418976 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2045418973} + m_CullTransparentMesh: 1 +--- !u!1 &2072011777 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2072011778} + m_Layer: 0 + m_Name: TrackingSpace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2072011778 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2072011777} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 827211336} + - {fileID: 1771158679} + - {fileID: 1167248450} + - {fileID: 1157755048} + - {fileID: 1585496316} + - {fileID: 1678023258} + - {fileID: 1617418794} + - {fileID: 915008908} + m_Father: {fileID: 445223492} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2089183695 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6792327054025522797, guid: 64db8d48fab1ceb43a8ee5d52643029a, type: 3} + m_PrefabInstance: {fileID: 1968986169} + m_PrefabAsset: {fileID: 0} +--- !u!136 &2089183698 +CapsuleCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2089183695} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Height: 2 + m_Direction: 1 + m_Center: {x: 0, y: 1, z: 0} +--- !u!114 &2089183699 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2089183695} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56c95b785ef8e2447a5a57e4cfaaedf4, type: 3} + m_Name: + m_EditorClassIdentifier: + audio: {fileID: 2089183702} +--- !u!82 &2089183702 +AudioSource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2089183695} + m_Enabled: 1 + serializedVersion: 4 + OutputAudioMixerGroup: {fileID: 0} + m_audioClip: {fileID: 0} + m_Resource: {fileID: 8300000, guid: 3cad417272bfe7a4689c562342c0978e, type: 3} + m_PlayOnAwake: 0 + m_Volume: 1 + m_Pitch: 1 + Loop: 0 + Mute: 0 + Spatialize: 0 + SpatializePostEffects: 0 + Priority: 128 + DopplerLevel: 1 + MinDistance: 1 + MaxDistance: 500 + Pan2D: 0 + rolloffMode: 0 + BypassEffects: 0 + BypassListenerEffects: 0 + BypassReverbZones: 0 + rolloffCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + panLevelCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + spreadCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + reverbZoneMixCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!1001 &2095273145 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.y + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Name + value: HUD + objectReference: {fileID: 0} + - target: {fileID: 3080749367930436606, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Layer + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5864928163828890914, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Layer + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Layer + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 8599484639390949400, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Layer + value: 3 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 114988144} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 1621136235} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 1543142182} + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 2095273148} + - targetCorrespondingSourceObject: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 2095273150} + m_SourcePrefab: {fileID: 100100000, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} +--- !u!224 &2095273146 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8871935754367020192, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 2095273145} + m_PrefabAsset: {fileID: 0} +--- !u!1 &2095273147 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 2095273145} + m_PrefabAsset: {fileID: 0} +--- !u!114 &2095273148 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2095273147} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8dbbc65f98bedc9459b94a96e3eaf813, type: 3} + m_Name: + m_EditorClassIdentifier: + m_window: {fileID: 2095273146} + controller: {fileID: 1585496316} +--- !u!1 &2095273149 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 2095273145} + m_PrefabAsset: {fileID: 0} +--- !u!114 &2095273150 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2095273149} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ee10491ef6d5d1d49a270cf6b09bdc19, type: 3} + m_Name: + m_EditorClassIdentifier: + _enableMipmapping: 0 + _dynamicResolution: 1 + _redrawResolutionThreshold: 2147483647 + rectTransform: {fileID: 2095273146} + maxTextureSize: 2048 + manualRedraw: 0 + renderInterval: 1 + renderIntervalFrameOffset: 0 + expensive: 0 + layer: 5 + opacity: 2 + shape: 0 + curveRadius: 1 + overlapMask: 0 + overlayType: 1 + _overlayEnabled: 1 +--- !u!1 &2110556741 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2110556743} + - component: {fileID: 2110556742} + m_Layer: 0 + m_Name: GestionDebug + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &2110556742 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2110556741} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 86d52aaa5462ee345b998fd84b9a253b, type: 3} + m_Name: + m_EditorClassIdentifier: + Debug_text: {fileID: 1838094475} +--- !u!4 &2110556743 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2110556741} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 87.32008, y: 24.434757, z: 180.70587} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2116198337 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2116198339} + - component: {fileID: 2116198338} + m_Layer: 0 + m_Name: Reflection Probe + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!215 &2116198338 +ReflectionProbe: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2116198337} + m_Enabled: 1 + serializedVersion: 2 + m_Type: 0 + m_Mode: 0 + m_RefreshMode: 0 + m_TimeSlicingMode: 1 + m_Resolution: 128 + m_UpdateFrequency: 0 + m_BoxSize: {x: 10, y: 10, z: 10} + m_BoxOffset: {x: 0, y: 3.8, z: 0} + m_NearClip: 0.3 + m_FarClip: 1000 + m_ShadowDistance: 100 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_CullingMask: + serializedVersion: 2 + m_Bits: 51 + m_IntensityMultiplier: 1 + m_BlendDistance: 0.5 + m_HDR: 1 + m_BoxProjection: 0 + m_RenderDynamicObjects: 0 + m_UseOcclusionCulling: 1 + m_Importance: 1 + m_CustomBakedTexture: {fileID: 0} +--- !u!4 &2116198339 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2116198337} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1.2, z: -0.25} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 604712594} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 445223492} + - {fileID: 1160234427} + - {fileID: 604712594} + - {fileID: 1614590249} + - {fileID: 1968986169} + - {fileID: 1838094477} + - {fileID: 2110556743} + - {fileID: 2095273145} + - {fileID: 1404161427} diff --git a/Assets/Scenes/Interface test personnage.unity.meta b/Assets/Scenes/Interface test personnage.unity.meta new file mode 100644 index 0000000..a08c1c1 --- /dev/null +++ b/Assets/Scenes/Interface test personnage.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 0d0d476d295809c48aa1efaf1c678e65 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface test personnage/Black.mat b/Assets/Scenes/Interface test personnage/Black.mat new file mode 100644 index 0000000..b9b9f0a --- /dev/null +++ b/Assets/Scenes/Interface test personnage/Black.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Black + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.103999995, g: 0.103999995, b: 0.10053333, a: 1} + - _Color: {r: 0.10399995, g: 0.10399995, b: 0.1005333, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4431363231931934953 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Scenes/Interface test personnage/Black.mat.meta b/Assets/Scenes/Interface test personnage/Black.mat.meta new file mode 100644 index 0000000..e698451 --- /dev/null +++ b/Assets/Scenes/Interface test personnage/Black.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ca19cd3a02fdff14e890a14e04c91ce3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface test personnage/GlobalVolumeProfile.asset b/Assets/Scenes/Interface test personnage/GlobalVolumeProfile.asset new file mode 100644 index 0000000..36aed7f --- /dev/null +++ b/Assets/Scenes/Interface test personnage/GlobalVolumeProfile.asset @@ -0,0 +1,104 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-32820517437979890 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3} + m_Name: Bloom + m_EditorClassIdentifier: + active: 1 + skipIterations: + m_OverrideState: 0 + m_Value: 1 + threshold: + m_OverrideState: 0 + m_Value: 0.9 + intensity: + m_OverrideState: 1 + m_Value: 0.5 + scatter: + m_OverrideState: 0 + m_Value: 0.7 + clamp: + m_OverrideState: 0 + m_Value: 65472 + tint: + m_OverrideState: 0 + m_Value: {r: 1, g: 1, b: 1, a: 1} + highQualityFiltering: + m_OverrideState: 0 + m_Value: 0 + downscale: + m_OverrideState: 0 + m_Value: 0 + maxIterations: + m_OverrideState: 0 + m_Value: 6 + dirtTexture: + m_OverrideState: 0 + m_Value: {fileID: 0} + dimension: 1 + dirtIntensity: + m_OverrideState: 0 + m_Value: 0 +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} + m_Name: GlobalVolumeProfile + m_EditorClassIdentifier: + components: + - {fileID: 1881579288749618558} + - {fileID: -32820517437979890} +--- !u!114 &1881579288749618558 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3} + m_Name: Tonemapping + m_EditorClassIdentifier: + active: 1 + mode: + m_OverrideState: 1 + m_Value: 2 + neutralHDRRangeReductionMode: + m_OverrideState: 0 + m_Value: 2 + acesPreset: + m_OverrideState: 0 + m_Value: 3 + hueShiftAmount: + m_OverrideState: 0 + m_Value: 0 + detectPaperWhite: + m_OverrideState: 0 + m_Value: 0 + paperWhite: + m_OverrideState: 0 + m_Value: 300 + detectBrightnessLimits: + m_OverrideState: 0 + m_Value: 1 + minNits: + m_OverrideState: 0 + m_Value: 0.005 + maxNits: + m_OverrideState: 0 + m_Value: 1000 diff --git a/Assets/Scenes/Interface test personnage/GlobalVolumeProfile.asset.meta b/Assets/Scenes/Interface test personnage/GlobalVolumeProfile.asset.meta new file mode 100644 index 0000000..588e796 --- /dev/null +++ b/Assets/Scenes/Interface test personnage/GlobalVolumeProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 99a6b9aea5fb7284b8d9a1b5aa3dba72 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface test personnage/Gold.mat b/Assets/Scenes/Interface test personnage/Gold.mat new file mode 100644 index 0000000..c018ea6 --- /dev/null +++ b/Assets/Scenes/Interface test personnage/Gold.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Gold + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.77 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 0.8235294, b: 0.5058824, a: 1} + - _Color: {r: 1, g: 0.8235294, b: 0.5058824, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4431363231931934953 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Scenes/Interface test personnage/Gold.mat.meta b/Assets/Scenes/Interface test personnage/Gold.mat.meta new file mode 100644 index 0000000..a357213 --- /dev/null +++ b/Assets/Scenes/Interface test personnage/Gold.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 086911f386f9d4441986434e0066375b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface test personnage/Ground.mat b/Assets/Scenes/Interface test personnage/Ground.mat new file mode 100644 index 0000000..3fc07fb --- /dev/null +++ b/Assets/Scenes/Interface test personnage/Ground.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Ground + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.65099996, g: 0.65099996, b: 0.65099996, a: 1} + - _Color: {r: 0.6509999, g: 0.6509999, b: 0.6509999, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4431363231931934953 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Scenes/Interface test personnage/Ground.mat.meta b/Assets/Scenes/Interface test personnage/Ground.mat.meta new file mode 100644 index 0000000..f3fd59f --- /dev/null +++ b/Assets/Scenes/Interface test personnage/Ground.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90038df2d36f960488c87a180851b133 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface test personnage/LightingData.asset b/Assets/Scenes/Interface test personnage/LightingData.asset new file mode 100644 index 0000000..adb4198 Binary files /dev/null and b/Assets/Scenes/Interface test personnage/LightingData.asset differ diff --git a/Assets/Scenes/Interface test personnage/LightingData.asset.meta b/Assets/Scenes/Interface test personnage/LightingData.asset.meta new file mode 100644 index 0000000..2511d4d --- /dev/null +++ b/Assets/Scenes/Interface test personnage/LightingData.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a54bb5f4b1267ce46aaac60f36181517 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 112000000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface test personnage/Lightmap-0_comp_dir.png b/Assets/Scenes/Interface test personnage/Lightmap-0_comp_dir.png new file mode 100644 index 0000000..90b613b Binary files /dev/null and b/Assets/Scenes/Interface test personnage/Lightmap-0_comp_dir.png differ diff --git a/Assets/Scenes/Interface test personnage/Lightmap-0_comp_dir.png.meta b/Assets/Scenes/Interface test personnage/Lightmap-0_comp_dir.png.meta new file mode 100644 index 0000000..1ee2b42 --- /dev/null +++ b/Assets/Scenes/Interface test personnage/Lightmap-0_comp_dir.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e753d2b8840a48440b007362e0eb76b3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 1 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 3 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 12 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface test personnage/Lightmap-0_comp_light.exr b/Assets/Scenes/Interface test personnage/Lightmap-0_comp_light.exr new file mode 100644 index 0000000..c25a3ca Binary files /dev/null and b/Assets/Scenes/Interface test personnage/Lightmap-0_comp_light.exr differ diff --git a/Assets/Scenes/Interface test personnage/Lightmap-0_comp_light.exr.meta b/Assets/Scenes/Interface test personnage/Lightmap-0_comp_light.exr.meta new file mode 100644 index 0000000..7177c12 --- /dev/null +++ b/Assets/Scenes/Interface test personnage/Lightmap-0_comp_light.exr.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f54729ecd4fab6d46ae5d42f352bdb04 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 1 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 3 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 6 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface test personnage/ReflectionProbe-0.exr b/Assets/Scenes/Interface test personnage/ReflectionProbe-0.exr new file mode 100644 index 0000000..cb9922f Binary files /dev/null and b/Assets/Scenes/Interface test personnage/ReflectionProbe-0.exr differ diff --git a/Assets/Scenes/Interface test personnage/ReflectionProbe-0.exr.meta b/Assets/Scenes/Interface test personnage/ReflectionProbe-0.exr.meta new file mode 100644 index 0000000..6e335c9 --- /dev/null +++ b/Assets/Scenes/Interface test personnage/ReflectionProbe-0.exr.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c31b646bebcb71949b0dab493e433a3a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 1 + seamlessCubemap: 1 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 0 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 2 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 100 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface test personnage/ReflectionProbe-1.exr b/Assets/Scenes/Interface test personnage/ReflectionProbe-1.exr new file mode 100644 index 0000000..cfc9d28 Binary files /dev/null and b/Assets/Scenes/Interface test personnage/ReflectionProbe-1.exr differ diff --git a/Assets/Scenes/Interface test personnage/ReflectionProbe-1.exr.meta b/Assets/Scenes/Interface test personnage/ReflectionProbe-1.exr.meta new file mode 100644 index 0000000..9cea156 --- /dev/null +++ b/Assets/Scenes/Interface test personnage/ReflectionProbe-1.exr.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f901654587fdbfc4995a59c235e4a60e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 1 + seamlessCubemap: 1 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 0 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 2 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 100 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface test personnage/White.mat b/Assets/Scenes/Interface test personnage/White.mat new file mode 100644 index 0000000..fb2ecde --- /dev/null +++ b/Assets/Scenes/Interface test personnage/White.mat @@ -0,0 +1,136 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: White + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4431363231931934953 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/Scenes/Interface test personnage/White.mat.meta b/Assets/Scenes/Interface test personnage/White.mat.meta new file mode 100644 index 0000000..62d86c1 --- /dev/null +++ b/Assets/Scenes/Interface test personnage/White.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 25bc9686e91a3e2448db44ef9c283426 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface v1.unity b/Assets/Scenes/Interface v1.unity new file mode 100644 index 0000000..cd57fc6 --- /dev/null +++ b/Assets/Scenes/Interface v1.unity @@ -0,0 +1,3150 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 10 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &149809641 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 149809642} + - component: {fileID: 149809645} + - component: {fileID: 149809644} + - component: {fileID: 149809643} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &149809642 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 149809641} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1658607517} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &149809643 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 149809641} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 1658607520} +--- !u!114 &149809644 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 149809641} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &149809645 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 149809641} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1658607521} + _surface: {fileID: 149809643} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 149809644} + _tiebreakerScore: 0 +--- !u!1 &410087039 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 410087041} + - component: {fileID: 410087040} + - component: {fileID: 410087042} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &410087040 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410087039} + m_Enabled: 1 + serializedVersion: 11 + m_Type: 1 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 2 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 5000 + m_UseColorTemperature: 1 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ForceVisible: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 + m_LightUnit: 1 + m_LuxAtDistance: 1 + m_EnableSpotReflector: 1 +--- !u!4 &410087041 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410087039} + serializedVersion: 2 + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!114 &410087042 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410087039} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Version: 3 + m_UsePipelineSettings: 1 + m_AdditionalLightsShadowResolutionTier: 2 + m_LightLayerMask: 1 + m_RenderingLayers: 1 + m_CustomShadowLayers: 0 + m_ShadowLayerMask: 1 + m_ShadowRenderingLayers: 1 + m_LightCookieSize: {x: 1, y: 1} + m_LightCookieOffset: {x: 0, y: 0} + m_SoftShadowQuality: 1 +--- !u!1 &456414019 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 456414020} + m_Layer: 0 + m_Name: RightHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &456414020 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 456414019} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1866756471} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &464422410 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 464422412} + - component: {fileID: 464422411} + m_Layer: 0 + m_Name: GestionnaireAffichageClientServeur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &464422411 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 464422410} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: daf83f5790a1ebc4b85208e164bc7016, type: 3} + m_Name: + m_EditorClassIdentifier: + init_token_client: {fileID: 1422848583} + envoyer_recevoir: {fileID: 1444308225} + MessagesTMP: {fileID: 1658607518} + DebugsTMP: {fileID: 983802523} + Entree: {fileID: 608799000} +--- !u!4 &464422412 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 464422410} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &560973372 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 560973373} + - component: {fileID: 560973376} + - component: {fileID: 560973375} + - component: {fileID: 560973374} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &560973373 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 560973372} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1898528808} + m_Father: {fileID: 608798999} + 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: 0.5, y: 0.5} +--- !u!114 &560973374 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 560973372} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &560973375 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 560973372} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 608799005} +--- !u!114 &560973376 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 560973372} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 560973375} + _surface: {fileID: 1898528811} + _selectSurface: {fileID: 1898528812} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &608798998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 608798999} + - component: {fileID: 608799002} + - component: {fileID: 608799001} + - component: {fileID: 608799000} + - component: {fileID: 608799003} + - component: {fileID: 608799005} + - component: {fileID: 608799004} + - component: {fileID: 608799006} + m_Layer: 5 + m_Name: EntreeUtilisateur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &608798999 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1995909375} + - {fileID: 560973373} + - {fileID: 657774189} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &608799000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 608799001} + m_TextViewport: {fileID: 1995909375} + m_TextComponent: {fileID: 1176307664} + m_Placeholder: {fileID: 1892639742} + m_VerticalScrollbar: {fileID: 0} + m_VerticalScrollbarEventHandler: {fileID: 0} + m_LayoutGroup: {fileID: 0} + m_ScrollSensitivity: 1 + m_ContentType: 0 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_HideSoftKeyboard: 0 + m_CharacterValidation: 0 + m_RegexValue: + m_GlobalPointSize: 14 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnSubmit: + m_PersistentCalls: + m_Calls: [] + m_OnSelect: + m_PersistentCalls: + m_Calls: [] + m_OnDeselect: + m_PersistentCalls: + m_Calls: [] + m_OnTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnEndTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_OnTouchScreenKeyboardStatusChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 + m_RichText: 1 + m_GlobalFontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_OnFocusSelectAll: 1 + m_ResetOnDeActivation: 1 + m_KeepTextSelectionVisible: 0 + m_RestoreOriginalTextOnEscape: 1 + m_isRichTextEditingAllowed: 0 + m_LineLimit: 0 + isAlert: 0 + m_InputValidator: {fileID: 0} + m_ShouldActivateOnSelect: 1 +--- !u!114 &608799001 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &608799002 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_CullTransparentMesh: 1 +--- !u!114 &608799003 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f9a237365031784e9a1c139ac1991cb, type: 3} + m_Name: + m_EditorClassIdentifier: + Debugs: {fileID: 983802523} +--- !u!114 &608799004 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!223 &608799005 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 1947069775} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &608799006 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608798998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e050578356dd7b94b8690fdfb1d58605, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &656547577 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 656547578} + - component: {fileID: 656547579} + - component: {fileID: 656547580} + m_Layer: 0 + m_Name: RightEyeAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &656547578 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 656547577} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &656547579 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 656547577} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 2 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!114 &656547580 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 656547577} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!1 &657774188 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 657774189} + - component: {fileID: 657774191} + - component: {fileID: 657774190} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &657774189 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 657774188} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 608798999} + 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: 0.5, y: 0.5} +--- !u!114 &657774190 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 657774188} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &657774191 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 657774188} + m_CullTransparentMesh: 1 +--- !u!1 &682329574 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 682329579} + - component: {fileID: 682329578} + - component: {fileID: 682329577} + - component: {fileID: 682329576} + - component: {fileID: 682329575} + m_Layer: 0 + m_Name: '[BuildingBlock] Camera Rig' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &682329575 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682329574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5178bc8574ce2bf4388e787a2e2af326, type: 3} + m_Name: + m_EditorClassIdentifier: + opMode: 1 + resetHmdPoseOnRelease: 1 + resetHmdPoseByMiddleMouseButton: 1 + activateKeys: 3201000031010000 + activateKeyBindings: + - /leftCtrl + - /rightCtrl + - /f1 + pitchKeys: 3401000033010000 + pitchKeyBindings: + - /leftAlt + - /rightAlt + - /f2 +--- !u!114 &682329576 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682329574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7e933e81d3c20c74ea6fdc708a67e3a5, type: 3} + m_Name: + m_EditorClassIdentifier: + _monoscopic: 0 + _sharpenType: 0 + _enableDynamicResolution: 1 + minDynamicResolutionScale: 1 + maxDynamicResolutionScale: 1 + quest2MinDynamicResolutionScale: 0.7 + quest2MaxDynamicResolutionScale: 1.3 + quest3MinDynamicResolutionScale: 0.7 + quest3MaxDynamicResolutionScale: 1.6 + minRenderScale: 0.7 + maxRenderScale: 1 + _headPoseRelativeOffsetRotation: {x: 0, y: 0, z: 0} + _headPoseRelativeOffsetTranslation: {x: 0, y: 0, z: 0} + profilerTcpPort: 32419 + expandMixedRealityCapturePropertySheet: 0 + enableMixedReality: 0 + compositionMethod: 0 + extraHiddenLayers: + serializedVersion: 2 + m_Bits: 0 + extraVisibleLayers: + serializedVersion: 2 + m_Bits: 0 + dynamicCullingMask: 1 + externalCompositionBackdropColorRift: {r: 0, g: 1, b: 0, a: 1} + externalCompositionBackdropColorQuest: {r: 0, g: 0, b: 0, a: 0} + capturingCameraDevice: 0 + flipCameraFrameHorizontally: 0 + flipCameraFrameVertically: 0 + handPoseStateLatency: 0 + sandwichCompositionRenderLatency: 0 + sandwichCompositionBufferedFrames: 8 + chromaKeyColor: {r: 0, g: 1, b: 0, a: 1} + chromaKeySimilarity: 0.6 + chromaKeySmoothRange: 0.03 + chromaKeySpillRange: 0.06 + useDynamicLighting: 0 + depthQuality: 1 + dynamicLightingSmoothFactor: 8 + dynamicLightingDepthVariationClampingValue: 0.001 + virtualGreenScreenType: 0 + virtualGreenScreenTopY: 10 + virtualGreenScreenBottomY: -10 + virtualGreenScreenApplyDepthCulling: 0 + virtualGreenScreenDepthTolerance: 0.2 + mrcActivationMode: 0 + launchSimultaneousHandsControllersOnStartup: 0 + isInsightPassthroughEnabled: 0 + shouldBoundaryVisibilityBeSuppressed: 0 + requestBodyTrackingPermissionOnStartup: 0 + requestFaceTrackingPermissionOnStartup: 0 + requestEyeTrackingPermissionOnStartup: 0 + requestScenePermissionOnStartup: 0 + requestRecordAudioPermissionOnStartup: 0 + _localDimming: 1 + _trackingOriginType: 1 + usePositionTracking: 1 + useRotationTracking: 1 + useIPDInPositionTracking: 1 + resetTrackerOnLoad: 0 + AllowRecenter: 1 + LateControllerUpdate: 1 + LateLatching: 0 + controllerDrivenHandPosesType: 0 + SimultaneousHandsAndControllersEnabled: 0 + _readOnlyWideMotionModeHandPosesEnabled: 0 + wideMotionModeHandPosesEnabled: 0 + dynamicResolutionVersion: 1 +--- !u!114 &682329577 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682329574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: df9f338034892c44ebb62d97894772f1, type: 3} + m_Name: + m_EditorClassIdentifier: + usePerEyeCameras: 0 + useFixedUpdateForTracking: 0 + disableEyeAnchorCameras: 0 +--- !u!114 &682329578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682329574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: e47682b9-c270-40b1-b16d-90b627a5ce1b + instanceId: e5a4bffc-91f6-4eeb-b4bb-7bc997c1cf26 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: + _installationVariants: [] +--- !u!4 &682329579 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682329574} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -150} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1434540719} + - {fileID: 1492442950} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &827990246 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 827990247} + m_Layer: 0 + m_Name: LeftControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &827990247 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 827990246} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2111381995} + m_Father: {fileID: 1946018329} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &832575517 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 832575519} + - component: {fileID: 832575518} + m_Layer: 0 + m_Name: Global Volume + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &832575518 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 832575517} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IsGlobal: 1 + priority: 0 + blendDistance: 0 + weight: 1 + sharedProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} +--- !u!4 &832575519 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 832575517} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &883286702 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 883286703} + m_Layer: 0 + m_Name: LeftHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &883286703 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 883286702} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &932241469 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 932241470} + m_Layer: 0 + m_Name: RightHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &932241470 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932241469} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &983802521 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 983802522} + - component: {fileID: 983802524} + - component: {fileID: 983802523} + - component: {fileID: 983802527} + - component: {fileID: 983802526} + - component: {fileID: 983802525} + - component: {fileID: 983802528} + m_Layer: 0 + m_Name: Debugs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &983802522 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + m_LocalRotation: {x: -0, y: 0.13052617, z: -0, w: 0.99144495} + m_LocalPosition: {x: 0, y: 0, z: 3} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1851306274} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 154.54816, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &983802523 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Aucun debug \xE0 afficher." + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30.65 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: -53.619247, y: -51.508995, z: 97.61298, w: -3.377018} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &983802524 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + m_CullTransparentMesh: 1 +--- !u!114 &983802525 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 983802522} + _maxGrabPoints: -1 + _rigidbody: {fileID: 983802526} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &983802526 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!65 &983802527 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 200, y: 50, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!223 &983802528 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 983802521} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 1947069775} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &1105351643 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1105351644} + m_Layer: 0 + m_Name: LeftControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1105351644 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1105351643} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1946018329} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1146014827 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1146014828} + m_Layer: 0 + m_Name: RightHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1146014828 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1146014827} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1608902060} + - {fileID: 1866756471} + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1176307662 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1176307663} + - component: {fileID: 1176307665} + - component: {fileID: 1176307664} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1176307663 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1176307662} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1995909375} + 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: 0.5, y: 0.5} +--- !u!114 &1176307664 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1176307662} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "\u200B" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 3 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1176307665 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1176307662} + m_CullTransparentMesh: 1 +--- !u!1 &1201622012 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1201622013} + m_Layer: 0 + m_Name: TrackerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1201622013 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1201622012} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1422848582 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1422848584} + - component: {fileID: 1422848583} + m_Layer: 0 + m_Name: TokenInit + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1422848583 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1422848582} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 883d2ea4411452145a4a4d88824cca26, type: 3} + m_Name: + m_EditorClassIdentifier: + Token: +--- !u!4 &1422848584 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1422848582} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1434540718 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1434540719} + m_Layer: 0 + m_Name: TrackingSpace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1434540719 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1434540718} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1752968439} + - {fileID: 1947069774} + - {fileID: 656547578} + - {fileID: 1201622013} + - {fileID: 1946018329} + - {fileID: 1146014828} + - {fileID: 883286703} + - {fileID: 932241470} + m_Father: {fileID: 682329579} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1444308224 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1444308226} + - component: {fileID: 1444308225} + m_Layer: 0 + m_Name: EnvoyerRecevoir + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1444308225 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1444308224} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b3a5933ccf77e5b4dac95a07f78b7914, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1444308226 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1444308224} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1492442949 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 682329579} + m_Modifications: + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 1752968439} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 656547578} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 1947069775} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 1752968439} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 656547578} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 1947069775} + - target: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_Name + value: '[BuildingBlock] OVRInteractionComprehensive' + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerEyes + value: + objectReference: {fileID: 1947069774} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerOrigin + value: + objectReference: {fileID: 682329579} + - target: {fileID: 6267690530596161800, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _ovrCameraRig + value: + objectReference: {fileID: 682329577} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + insertIndex: 1 + addedObject: {fileID: 1492442952} + m_SourcePrefab: {fileID: 100100000, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} +--- !u!4 &1492442950 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 1492442949} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1492442951 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 1492442949} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1492442952 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1492442951} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: 81f55626-5fad-45e9-a1df-184f330da7ba + instanceId: 332e0e8a-fb58-4fa7-addf-6b8d3946ab19 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: 2063f481-1b63-4eda-9ee8-a00df98536bc + _installationVariants: [] +--- !u!1 &1608902059 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1608902060} + m_Layer: 0 + m_Name: RightControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1608902060 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1608902059} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1146014828} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1658607516 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1658607517} + - component: {fileID: 1658607519} + - component: {fileID: 1658607518} + - component: {fileID: 1658607522} + - component: {fileID: 1658607521} + - component: {fileID: 1658607520} + - component: {fileID: 1658607523} + m_Layer: 0 + m_Name: Messages + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 2147483647 + m_IsActive: 1 +--- !u!224 &1658607517 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + m_LocalRotation: {x: -0, y: -0.13052624, z: -0, w: 0.9914449} + m_LocalPosition: {x: 0, y: 0, z: 3} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 149809642} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -154.54813, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1658607518 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Aucun message \xE0 afficher." + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30.65 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 71.10812, y: -51.508995, z: -41.375336, w: -3.377018} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1658607519 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + m_CullTransparentMesh: 1 +--- !u!65 &1658607520 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 200, y: 50, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1658607521 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 1658607517} + _maxGrabPoints: -1 + _rigidbody: {fileID: 1658607522} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &1658607522 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!223 &1658607523 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1658607516} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 1947069775} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &1662959066 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1662959069} + - component: {fileID: 1662959068} + - component: {fileID: 1662959067} + - component: {fileID: 1662959070} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1662959067 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662959066} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8f1a9a1d119a5944aacfb87d1ec283a2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + rayTransform: {fileID: 1492442950} + m_Cursor: {fileID: 0} + joyPadClickButton: 1 + gazeClickKey: 32 + performSphereCastForGazepointer: 0 + useRightStickScroll: 1 + rightStickDeadZone: 0.15 + useSwipeScroll: 1 + swipeDragThreshold: 2 + swipeDragScale: 1 + InvertSwipeXAxis: 0 + angleDragThreshold: 1 + m_SpherecastRadius: 1 + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_AllowActivationOnMobileDevice: 1 +--- !u!114 &1662959068 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662959066} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &1662959069 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662959066} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1662959070 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662959066} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2518c50cb3fc6a6458d4b743c2f69c7d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + _useInitialPressPositionForDrag: 1 + _exclusiveMode: 1 +--- !u!1 &1752968438 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1752968439} + - component: {fileID: 1752968440} + - component: {fileID: 1752968441} + m_Layer: 0 + m_Name: LeftEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1752968439 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752968438} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &1752968440 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752968438} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 1 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!114 &1752968441 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752968438} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!1 &1799026243 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1799026245} + - component: {fileID: 1799026244} + m_Layer: 0 + m_Name: DebugEffectsVisuels + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1799026244 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1799026243} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 359753addc189e24bbbc5355eb782ba3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1799026245 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1799026243} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1851306273 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1851306274} + - component: {fileID: 1851306277} + - component: {fileID: 1851306276} + - component: {fileID: 1851306275} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1851306274 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851306273} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 983802522} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1851306275 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851306273} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 983802527} +--- !u!114 &1851306276 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851306273} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1851306277 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851306273} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 983802525} + _surface: {fileID: 1851306275} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 1851306276} + _tiebreakerScore: 0 +--- !u!1 &1866756470 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1866756471} + m_Layer: 0 + m_Name: RightControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1866756471 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1866756470} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 456414020} + m_Father: {fileID: 1146014828} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1892639739 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1892639740} + - component: {fileID: 1892639743} + - component: {fileID: 1892639742} + - component: {fileID: 1892639741} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1892639740 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892639739} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1995909375} + 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: 0.5, y: 0.5} +--- !u!114 &1892639741 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892639739} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1892639742 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892639739} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Entrez un texte... + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 2150773298 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 2 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1892639743 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892639739} + m_CullTransparentMesh: 1 +--- !u!1 &1898528807 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1898528808} + - component: {fileID: 1898528812} + - component: {fileID: 1898528811} + - component: {fileID: 1898528810} + - component: {fileID: 1898528809} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1898528808 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898528807} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 560973373} + 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: 0.5, y: 0.5} +--- !u!114 &1898528809 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898528807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 1898528810} +--- !u!114 &1898528810 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898528807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 160, y: 30, z: 0.01} +--- !u!114 &1898528811 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898528807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 1898528812} + _clippers: + - {fileID: 1898528810} +--- !u!114 &1898528812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898528807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &1946018328 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1946018329} + m_Layer: 0 + m_Name: LeftHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1946018329 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1946018328} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1105351644} + - {fileID: 827990247} + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1947069773 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1947069774} + - component: {fileID: 1947069776} + - component: {fileID: 1947069775} + - component: {fileID: 1947069777} + m_Layer: 0 + m_Name: CenterEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1947069774 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1947069773} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434540719} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &1947069775 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1947069773} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 1000 + field of view: 90 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &1947069776 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1947069773} + m_Enabled: 1 +--- !u!114 &1947069777 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1947069773} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!1 &1995909374 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1995909375} + - component: {fileID: 1995909376} + m_Layer: 5 + m_Name: Text Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1995909375 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1995909374} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1892639740} + - {fileID: 1176307663} + m_Father: {fileID: 608798999} + 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.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1995909376 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1995909374} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: {x: -8, y: -5, z: -8, w: -5} + m_Softness: {x: 0, y: 0} +--- !u!1 &2111381994 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2111381995} + m_Layer: 0 + m_Name: LeftHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2111381995 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2111381994} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 827990247} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 410087041} + - {fileID: 832575519} + - {fileID: 1422848584} + - {fileID: 1444308226} + - {fileID: 464422412} + - {fileID: 1799026245} + - {fileID: 682329579} + - {fileID: 1662959069} + - {fileID: 608798999} + - {fileID: 983802522} + - {fileID: 1658607517} diff --git a/Assets/Scenes/Interface v1.unity.meta b/Assets/Scenes/Interface v1.unity.meta new file mode 100644 index 0000000..9531828 --- /dev/null +++ b/Assets/Scenes/Interface v1.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 99c9720ab356a0642a771bea13969a05 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface v2.meta b/Assets/Scenes/Interface v2.meta new file mode 100644 index 0000000..accf083 --- /dev/null +++ b/Assets/Scenes/Interface v2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7045548b61a40264685fa165b4519faf +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface v2.unity b/Assets/Scenes/Interface v2.unity new file mode 100644 index 0000000..0a2a842 --- /dev/null +++ b/Assets/Scenes/Interface v2.unity @@ -0,0 +1,8088 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 10 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &932232 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 932233} + - component: {fileID: 932234} + m_Layer: 5 + m_Name: ConteneurBouton&Texte (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &932233 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932232} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1986964835} + - {fileID: 59281703} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &932234 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932232} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &5398280 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!225 &5398288 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5398280} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!1 &59281702 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 59281703} + - component: {fileID: 59281705} + - component: {fileID: 59281704} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &59281703 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 59281702} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 932233} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &59281704 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 59281702} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Mon Option + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 34.45 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &59281705 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 59281702} + m_CullTransparentMesh: 1 +--- !u!1 &77833129 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 77833130} + - component: {fileID: 77833132} + - component: {fileID: 77833131} + m_Layer: 0 + m_Name: LeftEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &77833130 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 77833129} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &77833131 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 77833129} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!20 &77833132 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 77833129} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 1 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!1001 &90010865 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1875844688} + m_Modifications: + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 77833130} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 1260653749} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 620957629} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 77833130} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 1260653749} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 620957629} + - target: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_Name + value: '[BuildingBlock] OVRInteractionComprehensive' + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerEyes + value: + objectReference: {fileID: 620957632} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerOrigin + value: + objectReference: {fileID: 1875844688} + - target: {fileID: 6267690530596161800, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _ovrCameraRig + value: + objectReference: {fileID: 1875844689} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + insertIndex: 1 + addedObject: {fileID: 90010868} + m_SourcePrefab: {fileID: 100100000, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} +--- !u!4 &90010866 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 90010865} + m_PrefabAsset: {fileID: 0} +--- !u!1 &90010867 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 90010865} + m_PrefabAsset: {fileID: 0} +--- !u!114 &90010868 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 90010867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: 81f55626-5fad-45e9-a1df-184f330da7ba + instanceId: 332e0e8a-fb58-4fa7-addf-6b8d3946ab19 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: 2063f481-1b63-4eda-9ee8-a00df98536bc + _installationVariants: [] +--- !u!1 &108285111 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 108285112} + m_Layer: 0 + m_Name: LeftHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &108285112 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 108285111} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &145513987 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 145513991} + - component: {fileID: 145513990} + - component: {fileID: 145513989} + - component: {fileID: 145513988} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &145513988 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2518c50cb3fc6a6458d4b743c2f69c7d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + _useInitialPressPositionForDrag: 1 + _exclusiveMode: 1 +--- !u!114 &145513989 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8f1a9a1d119a5944aacfb87d1ec283a2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + rayTransform: {fileID: 90010866} + m_Cursor: {fileID: 0} + joyPadClickButton: 1 + gazeClickKey: 32 + performSphereCastForGazepointer: 0 + useRightStickScroll: 1 + rightStickDeadZone: 0.15 + useSwipeScroll: 1 + swipeDragThreshold: 2 + swipeDragScale: 1 + InvertSwipeXAxis: 0 + angleDragThreshold: 1 + m_SpherecastRadius: 1 + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_AllowActivationOnMobileDevice: 1 +--- !u!114 &145513990 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &145513991 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &203844586 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 203844589} + - component: {fileID: 203844588} + - component: {fileID: 203844587} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &203844587 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Version: 3 + m_UsePipelineSettings: 1 + m_AdditionalLightsShadowResolutionTier: 2 + m_LightLayerMask: 1 + m_RenderingLayers: 1 + m_CustomShadowLayers: 0 + m_ShadowLayerMask: 1 + m_ShadowRenderingLayers: 1 + m_LightCookieSize: {x: 1, y: 1} + m_LightCookieOffset: {x: 0, y: 0} + m_SoftShadowQuality: 0 +--- !u!108 &203844588 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + m_Enabled: 1 + serializedVersion: 11 + m_Type: 1 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ForceVisible: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 + m_LightUnit: 1 + m_LuxAtDistance: 1 + m_EnableSpotReflector: 1 +--- !u!4 &203844589 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + serializedVersion: 2 + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &256965889 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 256965890} + m_Layer: 0 + m_Name: RightHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &256965890 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 256965889} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 736431423} + - {fileID: 1981779245} + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &267046850 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 267046851} + - component: {fileID: 267046853} + - component: {fileID: 267046852} + m_Layer: 0 + m_Name: Titre + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &267046851 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 267046850} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &267046852 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 267046850} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Pr\xE9f\xE9rences" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 65.35 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &267046853 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 267046850} + m_CullTransparentMesh: 1 +--- !u!1 &270107574 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 270107575} + - component: {fileID: 270107578} + - component: {fileID: 270107577} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionRecherche + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &270107575 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270107574} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 431439149} + m_Father: {fileID: 1850278314} + 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: 0.5, y: 0.5} +--- !u!114 &270107577 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270107574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1850278318} +--- !u!114 &270107578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270107574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 270107577} + _surface: {fileID: 431439152} + _selectSurface: {fileID: 431439153} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1001 &273128013 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 898336105} + m_Modifications: + - target: {fileID: 3349346243019873864, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_IsOn + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Name + value: ToggleButton_Switch + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + insertIndex: -1 + addedObject: {fileID: 273128016} + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &273128014 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 273128013} + m_PrefabAsset: {fileID: 0} +--- !u!1 &273128015 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 273128013} + m_PrefabAsset: {fileID: 0} +--- !u!114 &273128016 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 273128015} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 426a9e0245cc0d041be77fb9f705fb86, type: 3} + m_Name: + m_EditorClassIdentifier: + fonction: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 478487499} + m_TargetAssemblyTypeName: EnumFonctionsPreferences, Assembly-CSharp + m_MethodName: ChangerMode + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!1 &294728352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 294728353} + - component: {fileID: 294728357} + - component: {fileID: 294728356} + - component: {fileID: 294728355} + - component: {fileID: 294728354} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &294728353 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1346614466} + 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: 0.5, y: 0.5} +--- !u!114 &294728354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 294728355} +--- !u!114 &294728355 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 160, y: 30, z: 0.01} +--- !u!114 &294728356 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 294728357} + _clippers: + - {fileID: 294728355} +--- !u!114 &294728357 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &322004674 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 322004675} + - component: {fileID: 322004677} + - component: {fileID: 322004676} + m_Layer: 5 + m_Name: TexteParametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &322004675 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322004674} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &322004676 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322004674} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Pr\xE9f\xE9rences" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &322004677 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322004674} + m_CullTransparentMesh: 1 +--- !u!1 &395946939 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 395946940} + - component: {fileID: 395946943} + - component: {fileID: 395946942} + - component: {fileID: 395946941} + m_Layer: 0 + m_Name: APParametres + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &395946940 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &395946941 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &395946942 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &395946943 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_CullTransparentMesh: 1 +--- !u!1 &406113352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 406113353} + - component: {fileID: 406113355} + - component: {fileID: 406113354} + m_Layer: 5 + m_Name: TexteRecherche + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &406113353 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406113352} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1850278314} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &406113354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406113352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Rechercher + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &406113355 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406113352} + m_CullTransparentMesh: 1 +--- !u!1 &413364813 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 413364814} + - component: {fileID: 413364817} + - component: {fileID: 413364816} + - component: {fileID: 413364815} + m_Layer: 0 + m_Name: APQuitter + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &413364814 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1063242543} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &413364815 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &413364816 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &413364817 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_CullTransparentMesh: 1 +--- !u!1001 &417838915 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 644900613} + m_Modifications: + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Name + value: ToggleButton_Switch + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &417838916 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 417838915} + m_PrefabAsset: {fileID: 0} +--- !u!1 &431439148 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 431439149} + - component: {fileID: 431439153} + - component: {fileID: 431439152} + - component: {fileID: 431439151} + - component: {fileID: 431439150} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &431439149 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 270107575} + 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: 0.5, y: 0.5} +--- !u!114 &431439150 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 431439151} +--- !u!114 &431439151 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 100, y: 100, z: 0.01} +--- !u!114 &431439152 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 431439153} + _clippers: + - {fileID: 431439151} +--- !u!114 &431439153 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &441092182 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 441092183} + - component: {fileID: 441092185} + - component: {fileID: 441092184} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &441092183 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441092182} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 29.570469, y: -50} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &441092184 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441092182} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &441092185 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441092182} + m_CullTransparentMesh: 1 +--- !u!1 &441898667 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 441898668} + - component: {fileID: 441898671} + - component: {fileID: 441898669} + - component: {fileID: 441898672} + - component: {fileID: 441898675} + - component: {fileID: 441898674} + - component: {fileID: 441898676} + m_Layer: 5 + m_Name: Parametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &441898668 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 395946940} + - {fileID: 774668364} + - {fileID: 441092183} + - {fileID: 1268310364} + - {fileID: 322004675} + m_Father: {fileID: 1020060957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -0.15} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &441898669 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 395946942} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &441898671 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_CullTransparentMesh: 1 +--- !u!223 &441898672 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &441898674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 100 + largeur_max: 500 + duree_ouverture: 0.3 +--- !u!114 &441898675 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 1268310367} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 441898674} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Agrandir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 441898674} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerPrefs + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 780759557} + m_TargetAssemblyTypeName: ComportementBoutonsMenu, Assembly-CSharp + m_MethodName: BoutonClique + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &441898676 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!1 &478487495 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 478487497} + - component: {fileID: 478487496} + - component: {fileID: 478487499} + m_Layer: 0 + m_Name: ComportementFenetrePreferences + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &478487496 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 478487495} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 40032d926c1a4a84aa451aaa2a114b53, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &478487497 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 478487495} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: -0.15, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &478487499 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 478487495} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ef2f097cac0359b478ae44e2512c8f4c, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &499297136 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 499297137} + - component: {fileID: 499297138} + m_Layer: 5 + m_Name: Text Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &499297137 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499297136} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 674047960} + - {fileID: 1104579700} + m_Father: {fileID: 1994937810} + 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.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &499297138 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499297136} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: {x: -8, y: -5, z: -8, w: -5} + m_Softness: {x: 0, y: 0} +--- !u!1 &499413739 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 499413740} + - component: {fileID: 499413742} + - component: {fileID: 499413741} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &499413740 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499413739} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 898336105} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &499413741 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499413739} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Mode jour + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 35.8 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &499413742 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499413739} + m_CullTransparentMesh: 1 +--- !u!1 &510163432 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 510163433} + m_Layer: 0 + m_Name: RightHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &510163433 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 510163432} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &517120271 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 517120272} + - component: {fileID: 517120276} + - component: {fileID: 517120275} + - component: {fileID: 517120274} + - component: {fileID: 517120273} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &517120272 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 635168671} + 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: 0.5, y: 0.5} +--- !u!114 &517120273 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 517120274} +--- !u!114 &517120274 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 100, y: 100, z: 0.01} +--- !u!114 &517120275 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 517120276} + _clippers: + - {fileID: 517120274} +--- !u!114 &517120276 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &533471964 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 533471965} + - component: {fileID: 533471968} + - component: {fileID: 533471967} + - component: {fileID: 533471966} + m_Layer: 5 + m_Name: IconQuitter + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &533471965 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1063242543} + 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: 55, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &533471966 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &533471967 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -8278380930669122163, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &533471968 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_CullTransparentMesh: 1 +--- !u!1 &546323936 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 546323937} + - component: {fileID: 546323939} + - component: {fileID: 546323938} + m_Layer: 5 + m_Name: FPSTExte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &546323937 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 546323936} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1894144129} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &546323938 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 546323936} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: New Text + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &546323939 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 546323936} + m_CullTransparentMesh: 1 +--- !u!1 &553160447 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 553160448} + - component: {fileID: 553160449} + m_Layer: 5 + m_Name: BoutonsGestionFenetrePrefs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &553160448 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 553160447} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2618178220305244257} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &553160449 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 553160447} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 5 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &613400026 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 613400027} + m_Layer: 0 + m_Name: LeftHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &613400027 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 613400026} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 787690123} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &620957628 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 620957632} + - component: {fileID: 620957631} + - component: {fileID: 620957629} + - component: {fileID: 620957630} + m_Layer: 0 + m_Name: CenterEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!20 &620957629 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 1000 + field of view: 90 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!114 &620957630 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!81 &620957631 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + m_Enabled: 1 +--- !u!4 &620957632 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &634134236 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 634134237} + m_Layer: 0 + m_Name: LeftHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &634134237 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 634134236} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 771511960} + - {fileID: 787690123} + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &635168670 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 635168671} + - component: {fileID: 635168674} + - component: {fileID: 635168673} + - component: {fileID: 635168672} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionQuitter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &635168671 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 517120272} + m_Father: {fileID: 1063242543} + 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: 0.5, y: 0.5} +--- !u!114 &635168672 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &635168673 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1063242547} +--- !u!114 &635168674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 635168673} + _surface: {fileID: 517120275} + _selectSurface: {fileID: 517120276} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &642571174 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 642571175} + - component: {fileID: 642571177} + - component: {fileID: 642571176} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &642571175 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 642571174} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1082197308} + 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: 0.5, y: 0.5} +--- !u!114 &642571176 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 642571174} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &642571177 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 642571174} + m_CullTransparentMesh: 1 +--- !u!1 &644900612 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 644900613} + - component: {fileID: 644900614} + m_Layer: 5 + m_Name: ConteneurBouton&Texte (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &644900613 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 644900612} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 417838916} + - {fileID: 1574461988} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &644900614 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 644900612} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &674047956 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 674047960} + - component: {fileID: 674047959} + - component: {fileID: 674047957} + - component: {fileID: 674047958} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &674047957 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Entrez un texte... + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 2150773298 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 2 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!114 &674047958 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!222 &674047959 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_CullTransparentMesh: 1 +--- !u!224 &674047960 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 499297137} + 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: 0.5, y: 0.5} +--- !u!1 &736431422 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 736431423} + m_Layer: 0 + m_Name: RightControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &736431423 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 736431422} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 256965890} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &741180260 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 741180262} + - component: {fileID: 741180261} + m_Layer: 0 + m_Name: FPS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &741180261 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 741180260} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7dd158344ea9428489f283268329574b, type: 3} + m_Name: + m_EditorClassIdentifier: + fpsText: {fileID: 546323938} +--- !u!4 &741180262 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 741180260} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1894144129} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &771511959 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 771511960} + m_Layer: 0 + m_Name: LeftControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &771511960 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 771511959} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 634134237} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &774668363 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 774668364} + - component: {fileID: 774668367} + - component: {fileID: 774668366} + - component: {fileID: 774668365} + m_Layer: 5 + m_Name: IconParametres + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &774668364 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + 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: 50, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &774668365 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &774668366 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -3014893831786530833, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &774668367 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_CullTransparentMesh: 1 +--- !u!1 &780759556 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 780759558} + - component: {fileID: 780759557} + - component: {fileID: 780759559} + m_Layer: 0 + m_Name: ComportementBoutons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &780759557 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780759556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a7d13754c638b8b438c04ad0cef34e84, type: 3} + m_Name: + m_EditorClassIdentifier: + boutons: + - {fileID: 441898668} + - {fileID: 1850278314} + - {fileID: 1063242543} + rayon: 0.35 + duree_deplacement: 0.5 +--- !u!4 &780759558 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780759556} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.24000001, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &780759559 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780759556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fdd9ec74efce24c4ebf3d3b203c97f0a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &787690122 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 787690123} + m_Layer: 0 + m_Name: LeftControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &787690123 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 787690122} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 613400027} + m_Father: {fileID: 634134237} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &801276486 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 801276487} + - component: {fileID: 801276489} + - component: {fileID: 801276488} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &801276487 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801276486} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1994937810} + 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: 0.5, y: 0.5} +--- !u!114 &801276488 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801276486} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &801276489 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801276486} + m_CullTransparentMesh: 1 +--- !u!1 &826712626 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 826712627} + - component: {fileID: 826712629} + - component: {fileID: 826712628} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &826712627 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 826712626} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1020060957} + 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: 0.5, y: 0.5} +--- !u!114 &826712628 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 826712626} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &826712629 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 826712626} + m_CullTransparentMesh: 1 +--- !u!1 &867626573 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 867626574} + - component: {fileID: 867626576} + - component: {fileID: 867626575} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &867626574 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 867626573} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 871160223} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &867626575 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 867626573} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &867626576 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 867626573} + m_CullTransparentMesh: 1 +--- !u!1 &871160222 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!224 &871160223 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8871935754367020192, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!114 &871160224 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 871160222} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bc560ecd6936ee440ac2a92f970db479, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &898336104 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 898336105} + - component: {fileID: 898336106} + m_Layer: 5 + m_Name: Mode(Jour/Nuit) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &898336105 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 898336104} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 273128014} + - {fileID: 499413740} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &898336106 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 898336104} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &912006758 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 912006759} + - component: {fileID: 912006762} + - component: {fileID: 912006761} + - component: {fileID: 912006760} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &912006759 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 912006758} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1082197308} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &912006760 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 912006758} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 1082197304} +--- !u!114 &912006761 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 912006758} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &912006762 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 912006758} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1082197305} + _surface: {fileID: 912006760} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 912006761} + _tiebreakerScore: 0 +--- !u!1 &1013904230 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1013904231} + - component: {fileID: 1013904234} + - component: {fileID: 1013904233} + - component: {fileID: 1013904232} + m_Layer: 0 + m_Name: APRecherche + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1013904231 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1850278314} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1013904232 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &1013904233 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1013904234 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_CullTransparentMesh: 1 +--- !u!1 &1020060953 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1020060957} + - component: {fileID: 1020060956} + - component: {fileID: 1020060955} + - component: {fileID: 1020060958} + m_Layer: 5 + m_Name: CanvasBoutons(Menu) + m_TagString: MenuBoutons + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1020060955 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1020060956 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 0 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1020060957 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 441898668} + - {fileID: 1063242543} + - {fileID: 1850278314} + - {fileID: 826712627} + m_Father: {fileID: 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: 0} + m_SizeDelta: {x: 0.48, y: 0.45} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1020060958 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b6d529719047c6546bdedb62226bed83, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1063242542 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1063242543} + - component: {fileID: 1063242546} + - component: {fileID: 1063242544} + - component: {fileID: 1063242547} + - component: {fileID: 1063242548} + - component: {fileID: 1063242550} + - component: {fileID: 1063242549} + m_Layer: 5 + m_Name: Quitter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1063242543 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 635168671} + - {fileID: 413364814} + - {fileID: 533471965} + - {fileID: 1837925294} + m_Father: {fileID: 1020060957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -0.15} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1063242544 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 413364816} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1063242546 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_CullTransparentMesh: 1 +--- !u!223 &1063242547 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1063242548 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1063242549 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 100 + largeur_max: 500 + duree_ouverture: 0.3 +--- !u!114 &1063242550 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 635168674} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1063242549} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Agrandir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1063242549} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerQuitter + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 780759557} + m_TargetAssemblyTypeName: ComportementAnimationBoutonsMenu, Assembly-CSharp + m_MethodName: BoutonClique + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &1078745742 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1078745744} + - component: {fileID: 1078745743} + m_Layer: 0 + m_Name: DebugEffectsVisuels + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1078745743 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1078745742} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 359753addc189e24bbbc5355eb782ba3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1078745744 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1078745742} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1082197301 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1082197308} + - component: {fileID: 1082197307} + - component: {fileID: 1082197302} + - component: {fileID: 1082197306} + - component: {fileID: 1082197305} + - component: {fileID: 1082197304} + - component: {fileID: 1082197303} + m_Layer: 0 + m_Name: Messages + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 2147483647 + m_IsActive: 1 +--- !u!114 &1082197302 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082197301} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Aucun message \xE0 afficher." + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30.65 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 71.10812, y: -51.508995, z: -41.375336, w: -3.377018} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!223 &1082197303 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082197301} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!65 &1082197304 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082197301} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 200, y: 50, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1082197305 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082197301} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 1082197308} + _maxGrabPoints: -1 + _rigidbody: {fileID: 1082197306} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &1082197306 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082197301} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!222 &1082197307 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082197301} + m_CullTransparentMesh: 1 +--- !u!224 &1082197308 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082197301} + m_LocalRotation: {x: -0, y: -0.13052624, z: -0, w: 0.9914449} + m_LocalPosition: {x: 0, y: 0, z: 150} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 912006759} + - {fileID: 642571175} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -154.54813, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1096578847 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1096578848} + m_Layer: 0 + m_Name: TrackingSpace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1096578848 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1096578847} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 77833130} + - {fileID: 620957632} + - {fileID: 1260653749} + - {fileID: 2087978707} + - {fileID: 634134237} + - {fileID: 256965890} + - {fileID: 108285112} + - {fileID: 510163433} + m_Father: {fileID: 1875844688} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1104579697 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1104579700} + - component: {fileID: 1104579699} + - component: {fileID: 1104579698} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1104579698 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104579697} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "\u200B" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 3 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1104579699 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104579697} + m_CullTransparentMesh: 1 +--- !u!224 &1104579700 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104579697} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 499297137} + 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: 0.5, y: 0.5} +--- !u!1 &1167643596 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1167643603} + - component: {fileID: 1167643602} + - component: {fileID: 1167643597} + - component: {fileID: 1167643601} + - component: {fileID: 1167643600} + - component: {fileID: 1167643599} + - component: {fileID: 1167643598} + m_Layer: 0 + m_Name: Debugs + m_TagString: Debug + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1167643597 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Aucun debug \xE0 afficher." + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30.65 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: -53.619247, y: -51.508995, z: 97.61298, w: -3.377018} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!223 &1167643598 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1167643599 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 1167643603} + _maxGrabPoints: -1 + _rigidbody: {fileID: 1167643600} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &1167643600 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!65 &1167643601 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 200, y: 50, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!222 &1167643602 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_CullTransparentMesh: 1 +--- !u!224 &1167643603 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_LocalRotation: {x: -0, y: 0.13052617, z: -0, w: 0.99144495} + m_LocalPosition: {x: 0, y: 0, z: 150} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1715473791} + - {fileID: 1902790779} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 154.54816, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1260653748 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1260653749} + - component: {fileID: 1260653751} + - component: {fileID: 1260653750} + m_Layer: 0 + m_Name: RightEyeAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1260653749 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1260653748} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1260653750 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1260653748} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!20 &1260653751 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1260653748} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 2 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!1 &1268310363 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1268310364} + - component: {fileID: 1268310367} + - component: {fileID: 1268310366} + - component: {fileID: 1268310365} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionParametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1268310364 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1342171620} + m_Father: {fileID: 441898668} + 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: 0.5, y: 0.5} +--- !u!114 &1268310365 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1268310366 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 441898672} +--- !u!114 &1268310367 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1268310366} + _surface: {fileID: 1342171623} + _selectSurface: {fileID: 1342171624} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &1272714500 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1272714501} + m_Layer: 0 + m_Name: RightHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1272714501 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1272714500} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1981779245} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1300854822 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1300854824} + - component: {fileID: 1300854823} + m_Layer: 0 + m_Name: Global Volume + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1300854823 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1300854822} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IsGlobal: 1 + priority: 0 + blendDistance: 0 + weight: 1 + sharedProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} +--- !u!4 &1300854824 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1300854822} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1331752627 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1852369632254168283, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Camera + value: + objectReference: {fileID: 620957629} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Name + value: FenetrePreferences + objectReference: {fileID: 0} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_TagString + value: FenetrePrefs + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Spacing + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Top + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildAlignment + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Left + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Right + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Bottom + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildControlWidth + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildControlHeight + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandWidth + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandHeight + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7881774007595699318, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandWidth + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7881774007595699318, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandHeight + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8688192856564850643, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Material + value: + objectReference: {fileID: 2100000, guid: 3f1a8ea57450bd749a74467129ec5145, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 8871935754367020192, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 867626574} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 553160448} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 267046851} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 898336105} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 932233} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 644900613} + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 5398288} + - targetCorrespondingSourceObject: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 871160224} + m_SourcePrefab: {fileID: 100100000, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} +--- !u!224 &1331752628 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1342171619 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1342171620} + - component: {fileID: 1342171624} + - component: {fileID: 1342171623} + - component: {fileID: 1342171622} + - component: {fileID: 1342171621} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1342171620 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1268310364} + 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: 0.5, y: 0.5} +--- !u!114 &1342171621 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 1342171622} +--- !u!114 &1342171622 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 100, y: 100, z: 0.01} +--- !u!114 &1342171623 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 1342171624} + _clippers: + - {fileID: 1342171622} +--- !u!114 &1342171624 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &1346614465 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1346614466} + - component: {fileID: 1346614469} + - component: {fileID: 1346614468} + - component: {fileID: 1346614467} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1346614466 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 294728353} + m_Father: {fileID: 1994937810} + 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: 0.5, y: 0.5} +--- !u!114 &1346614467 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1346614468 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1994937811} +--- !u!114 &1346614469 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1346614468} + _surface: {fileID: 294728356} + _selectSurface: {fileID: 294728357} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &1500648815 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1500648816} + - component: {fileID: 1500648819} + - component: {fileID: 1500648818} + - component: {fileID: 1500648817} + m_Layer: 5 + m_Name: IconRecherche + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1500648816 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1850278314} + 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: 50.005085, y: 0} + m_SizeDelta: {x: 100.000015, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1500648817 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &1500648818 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 6338432638553648094, guid: 64f884351318b694f942625580e64a8b, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1500648819 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_CullTransparentMesh: 1 +--- !u!1 &1574461987 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1574461988} + - component: {fileID: 1574461990} + - component: {fileID: 1574461989} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1574461988 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574461987} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 644900613} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1574461989 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574461987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Mon Option + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 34.45 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1574461990 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574461987} + m_CullTransparentMesh: 1 +--- !u!1 &1619923416 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1619923418} + - component: {fileID: 1619923417} + m_Layer: 0 + m_Name: TokenInit + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1619923417 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1619923416} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 883d2ea4411452145a4a4d88824cca26, type: 3} + m_Name: + m_EditorClassIdentifier: + Token: +--- !u!4 &1619923418 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1619923416} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1661708470 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1661708472} + - component: {fileID: 1661708471} + m_Layer: 0 + m_Name: EnvoyerRecevoir + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1661708471 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661708470} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b3a5933ccf77e5b4dac95a07f78b7914, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1661708472 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661708470} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1705736406 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1705736408} + - component: {fileID: 1705736407} + m_Layer: 0 + m_Name: GestionnaireAffichageClientServeur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1705736407 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705736406} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: daf83f5790a1ebc4b85208e164bc7016, type: 3} + m_Name: + m_EditorClassIdentifier: + init_token_client: {fileID: 1619923417} + envoyer_recevoir: {fileID: 1661708471} + MessagesTMP: {fileID: 1082197302} + DebugsTMP: {fileID: 1167643597} + Entree: {fileID: 1994937809} +--- !u!4 &1705736408 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705736406} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1715473790 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1715473791} + - component: {fileID: 1715473794} + - component: {fileID: 1715473793} + - component: {fileID: 1715473792} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1715473791 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1167643603} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1715473792 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 1167643601} +--- !u!114 &1715473793 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1715473794 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1167643599} + _surface: {fileID: 1715473792} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 1715473793} + _tiebreakerScore: 0 +--- !u!1 &1837925293 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1837925294} + - component: {fileID: 1837925296} + - component: {fileID: 1837925295} + m_Layer: 5 + m_Name: TexteQuitter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1837925294 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1837925293} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1063242543} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1837925295 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1837925293} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Quitter + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1837925296 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1837925293} + m_CullTransparentMesh: 1 +--- !u!1 &1850278313 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1850278314} + - component: {fileID: 1850278317} + - component: {fileID: 1850278318} + - component: {fileID: 1850278319} + - component: {fileID: 1850278320} + - component: {fileID: 1850278321} + m_Layer: 5 + m_Name: Recherche + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1850278314 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 270107575} + - {fileID: 1013904231} + - {fileID: 1500648816} + - {fileID: 406113353} + m_Father: {fileID: 1020060957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -0.15} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1850278317 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_CullTransparentMesh: 1 +--- !u!223 &1850278318 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1850278319 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1850278320 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 270107578} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1850278321} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Agrandir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1850278321} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerRecherche + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 780759557} + m_TargetAssemblyTypeName: ComportementAnimationBoutonsMenu, Assembly-CSharp + m_MethodName: BoutonClique + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1850278321 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 100 + largeur_max: 500 + duree_ouverture: 0.3 +--- !u!1 &1875844687 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1875844688} + - component: {fileID: 1875844692} + - component: {fileID: 1875844689} + - component: {fileID: 1875844691} + - component: {fileID: 1875844690} + m_Layer: 0 + m_Name: '[BuildingBlock] Camera Rig' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1875844688 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1096578848} + - {fileID: 90010866} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1875844689 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: df9f338034892c44ebb62d97894772f1, type: 3} + m_Name: + m_EditorClassIdentifier: + usePerEyeCameras: 0 + useFixedUpdateForTracking: 0 + disableEyeAnchorCameras: 0 +--- !u!114 &1875844690 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5178bc8574ce2bf4388e787a2e2af326, type: 3} + m_Name: + m_EditorClassIdentifier: + opMode: 1 + resetHmdPoseOnRelease: 1 + resetHmdPoseByMiddleMouseButton: 1 + activateKeys: 3201000031010000 + activateKeyBindings: + - /leftCtrl + - /rightCtrl + - /f1 + pitchKeys: 3401000033010000 + pitchKeyBindings: + - /leftAlt + - /rightAlt + - /f2 +--- !u!114 &1875844691 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7e933e81d3c20c74ea6fdc708a67e3a5, type: 3} + m_Name: + m_EditorClassIdentifier: + _monoscopic: 0 + _sharpenType: 0 + _enableDynamicResolution: 1 + minDynamicResolutionScale: 1 + maxDynamicResolutionScale: 1 + quest2MinDynamicResolutionScale: 0.7 + quest2MaxDynamicResolutionScale: 1.3 + quest3MinDynamicResolutionScale: 0.7 + quest3MaxDynamicResolutionScale: 1.6 + minRenderScale: 0.7 + maxRenderScale: 1 + _headPoseRelativeOffsetRotation: {x: 0, y: 0, z: 0} + _headPoseRelativeOffsetTranslation: {x: 0, y: 0, z: 0} + profilerTcpPort: 32419 + expandMixedRealityCapturePropertySheet: 0 + enableMixedReality: 0 + compositionMethod: 0 + extraHiddenLayers: + serializedVersion: 2 + m_Bits: 0 + extraVisibleLayers: + serializedVersion: 2 + m_Bits: 0 + dynamicCullingMask: 1 + externalCompositionBackdropColorRift: {r: 0, g: 1, b: 0, a: 1} + externalCompositionBackdropColorQuest: {r: 0, g: 0, b: 0, a: 0} + capturingCameraDevice: 0 + flipCameraFrameHorizontally: 0 + flipCameraFrameVertically: 0 + handPoseStateLatency: 0 + sandwichCompositionRenderLatency: 0 + sandwichCompositionBufferedFrames: 8 + chromaKeyColor: {r: 0, g: 1, b: 0, a: 1} + chromaKeySimilarity: 0.6 + chromaKeySmoothRange: 0.03 + chromaKeySpillRange: 0.06 + useDynamicLighting: 0 + depthQuality: 1 + dynamicLightingSmoothFactor: 8 + dynamicLightingDepthVariationClampingValue: 0.001 + virtualGreenScreenType: 0 + virtualGreenScreenTopY: 10 + virtualGreenScreenBottomY: -10 + virtualGreenScreenApplyDepthCulling: 0 + virtualGreenScreenDepthTolerance: 0.2 + mrcActivationMode: 0 + launchSimultaneousHandsControllersOnStartup: 0 + isInsightPassthroughEnabled: 0 + shouldBoundaryVisibilityBeSuppressed: 0 + requestBodyTrackingPermissionOnStartup: 0 + requestFaceTrackingPermissionOnStartup: 0 + requestEyeTrackingPermissionOnStartup: 0 + requestScenePermissionOnStartup: 0 + requestRecordAudioPermissionOnStartup: 0 + _localDimming: 1 + _trackingOriginType: 1 + usePositionTracking: 1 + useRotationTracking: 1 + useIPDInPositionTracking: 1 + resetTrackerOnLoad: 0 + AllowRecenter: 1 + LateControllerUpdate: 1 + LateLatching: 0 + controllerDrivenHandPosesType: 0 + SimultaneousHandsAndControllersEnabled: 0 + _readOnlyWideMotionModeHandPosesEnabled: 0 + wideMotionModeHandPosesEnabled: 0 + dynamicResolutionVersion: 1 +--- !u!114 &1875844692 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: e47682b9-c270-40b1-b16d-90b627a5ce1b + instanceId: e5a4bffc-91f6-4eeb-b4bb-7bc997c1cf26 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: + _installationVariants: [] +--- !u!1 &1894144125 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1894144129} + - component: {fileID: 1894144128} + - component: {fileID: 1894144127} + - component: {fileID: 1894144126} + m_Layer: 5 + m_Name: CanvasFPS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1894144126 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1894144127 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1894144128 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 0 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1894144129 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 150} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 741180262} + - {fileID: 546323937} + m_Father: {fileID: 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: -80} + m_SizeDelta: {x: 500, y: 500} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1902790778 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1902790779} + - component: {fileID: 1902790781} + - component: {fileID: 1902790780} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1902790779 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1902790778} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1167643603} + 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: 0.5, y: 0.5} +--- !u!114 &1902790780 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1902790778} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1902790781 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1902790778} + m_CullTransparentMesh: 1 +--- !u!1 &1981779244 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1981779245} + m_Layer: 0 + m_Name: RightControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1981779245 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1981779244} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1272714501} + m_Father: {fileID: 256965890} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1986964834 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 932233} + m_Modifications: + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Name + value: ToggleButton_Switch + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &1986964835 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 1986964834} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1994937808 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1994937810} + - component: {fileID: 1994937816} + - component: {fileID: 1994937812} + - component: {fileID: 1994937809} + - component: {fileID: 1994937815} + - component: {fileID: 1994937811} + - component: {fileID: 1994937814} + - component: {fileID: 1994937813} + m_Layer: 5 + m_Name: EntreeUtilisateur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1994937809 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1994937812} + m_TextViewport: {fileID: 499297137} + m_TextComponent: {fileID: 1104579698} + m_Placeholder: {fileID: 674047957} + m_VerticalScrollbar: {fileID: 0} + m_VerticalScrollbarEventHandler: {fileID: 0} + m_LayoutGroup: {fileID: 0} + m_ScrollSensitivity: 1 + m_ContentType: 0 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_HideSoftKeyboard: 0 + m_CharacterValidation: 0 + m_RegexValue: + m_GlobalPointSize: 14 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnSubmit: + m_PersistentCalls: + m_Calls: [] + m_OnSelect: + m_PersistentCalls: + m_Calls: [] + m_OnDeselect: + m_PersistentCalls: + m_Calls: [] + m_OnTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnEndTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_OnTouchScreenKeyboardStatusChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 + m_RichText: 1 + m_GlobalFontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_OnFocusSelectAll: 1 + m_ResetOnDeActivation: 1 + m_KeepTextSelectionVisible: 0 + m_RestoreOriginalTextOnEscape: 1 + m_isRichTextEditingAllowed: 0 + m_LineLimit: 0 + isAlert: 0 + m_InputValidator: {fileID: 0} + m_ShouldActivateOnSelect: 1 +--- !u!224 &1994937810 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 499297137} + - {fileID: 1346614466} + - {fileID: 801276487} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!223 &1994937811 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1994937812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1994937813 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e050578356dd7b94b8690fdfb1d58605, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1994937814 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1994937815 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f9a237365031784e9a1c139ac1991cb, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!222 &1994937816 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_CullTransparentMesh: 1 +--- !u!1 &2087978706 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2087978707} + m_Layer: 0 + m_Name: TrackerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2087978707 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2087978706} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2131611829 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 40 + largeur_max: 150 + duree_ouverture: 0.3 +--- !u!114 &2131611830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b7db4a332f7e98d4ca6f7558f3613db5, type: 3} + m_Name: + m_EditorClassIdentifier: + onPointerClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 478487496} + m_TargetAssemblyTypeName: ComportementFenetrePreferences, Assembly-CSharp + m_MethodName: ChangerEtat + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!1 &243424270023441158 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2618178220305244257} + - component: {fileID: 6869810458693193498} + - component: {fileID: 5140576998914580422} + - component: {fileID: 2131611829} + - component: {fileID: 2131611830} + m_Layer: 0 + m_Name: Fermer + m_TagString: QDSUIPrimaryButton + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &265421015273259246 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &595206483210253712 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842874036736877360} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Fermer + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4280756007 + m_fontColor: {r: 0.15294118, g: 0.15294118, b: 0.15294118, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0.0044269413, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &739955594076292417 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842874036736877360} + m_CullTransparentMesh: 1 +--- !u!222 &952902941686272513 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7815598869519633400} + m_CullTransparentMesh: 1 +--- !u!224 &2050538972765576138 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2618178220305244257} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2209662680683579746 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7815598869519633400} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.15294118, g: 0.15294118, b: 0.15294118, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -3108347808307121293, guid: 64f884351318b694f942625580e64a8b, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!224 &2618178220305244257 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2050538972765576138} + - {fileID: 7986129806770060219} + - {fileID: 6384598719168717456} + m_Father: {fileID: 553160448} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!95 &5140576998914580422 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!224 &6384598719168717456 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842874036736877360} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2618178220305244257} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 14} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &6826917670049334543 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2050538972765576138} + - component: {fileID: 7747662451683816589} + - component: {fileID: 6969549368977048900} + - component: {fileID: 265421015273259246} + m_Layer: 0 + m_Name: Background + m_TagString: QDSUIAccentColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &6842874036736877360 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6384598719168717456} + - component: {fileID: 739955594076292417} + - component: {fileID: 595206483210253712} + m_Layer: 5 + m_Name: Label + m_TagString: QDSUITextInvertedColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &6869810458693193498 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 3 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 0} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &6969549368977048900 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &7747662451683816589 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_CullTransparentMesh: 1 +--- !u!1 &7815598869519633400 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7986129806770060219} + - component: {fileID: 952902941686272513} + - component: {fileID: 2209662680683579746} + m_Layer: 5 + m_Name: Icon + m_TagString: QDSUITextInvertedColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7986129806770060219 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7815598869519633400} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2618178220305244257} + 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: 20, y: 0} + m_SizeDelta: {x: 24, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 203844589} + - {fileID: 1078745744} + - {fileID: 145513991} + - {fileID: 1082197308} + - {fileID: 1661708472} + - {fileID: 1619923418} + - {fileID: 1167643603} + - {fileID: 1300854824} + - {fileID: 1875844688} + - {fileID: 1994937810} + - {fileID: 1705736408} + - {fileID: 1020060957} + - {fileID: 780759558} + - {fileID: 1331752627} + - {fileID: 478487497} + - {fileID: 1894144129} diff --git a/Assets/Scenes/Interface v2.unity.meta b/Assets/Scenes/Interface v2.unity.meta new file mode 100644 index 0000000..c979745 --- /dev/null +++ b/Assets/Scenes/Interface v2.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 0e0df047a90c3ee4ba4b9b3cd38b5459 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface v2/LightingData.asset b/Assets/Scenes/Interface v2/LightingData.asset new file mode 100644 index 0000000..58fcc86 Binary files /dev/null and b/Assets/Scenes/Interface v2/LightingData.asset differ diff --git a/Assets/Scenes/Interface v2/LightingData.asset.meta b/Assets/Scenes/Interface v2/LightingData.asset.meta new file mode 100644 index 0000000..78bead5 --- /dev/null +++ b/Assets/Scenes/Interface v2/LightingData.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7f56509f9ec923345b99bca201b563cd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 112000000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface v2/ReflectionProbe-0.exr b/Assets/Scenes/Interface v2/ReflectionProbe-0.exr new file mode 100644 index 0000000..8ce9b1a Binary files /dev/null and b/Assets/Scenes/Interface v2/ReflectionProbe-0.exr differ diff --git a/Assets/Scenes/Interface v2/ReflectionProbe-0.exr.meta b/Assets/Scenes/Interface v2/ReflectionProbe-0.exr.meta new file mode 100644 index 0000000..e8b0728 --- /dev/null +++ b/Assets/Scenes/Interface v2/ReflectionProbe-0.exr.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: cef884adc3837a945bf3eb7bf8bf183d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 1 + seamlessCubemap: 1 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 0 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 2 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 100 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface v3.unity b/Assets/Scenes/Interface v3.unity new file mode 100644 index 0000000..8f3418f --- /dev/null +++ b/Assets/Scenes/Interface v3.unity @@ -0,0 +1,11109 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 10 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 2100000, guid: 96386f93354af834399e6f1bb1455bda, type: 2} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 2048 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 112000000, guid: 7f56509f9ec923345b99bca201b563cd, type: 2} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &932232 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 932233} + - component: {fileID: 932234} + m_Layer: 5 + m_Name: ConteneurBouton&Texte (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &932233 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932232} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1986964835} + - {fileID: 59281703} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &932234 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932232} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &5398280 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!225 &5398288 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5398280} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!1 &30312106 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 30312108} + - component: {fileID: 30312107} + m_Layer: 0 + m_Name: Historique + m_TagString: HistoriqueMsg + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &30312107 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 30312106} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 1 + m_Spacing: 30 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!224 &30312108 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 30312106} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 545897469} + - {fileID: 1094517601} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 400, y: 400} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &59281702 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 59281703} + - component: {fileID: 59281705} + - component: {fileID: 59281704} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &59281703 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 59281702} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 932233} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &59281704 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 59281702} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Mon Option + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 34.45 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &59281705 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 59281702} + m_CullTransparentMesh: 1 +--- !u!1 &61483681 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 61483682} + - component: {fileID: 61483685} + - component: {fileID: 61483684} + - component: {fileID: 61483683} + m_Layer: 0 + m_Name: Background + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &61483682 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61483681} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 166660090} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &61483683 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61483681} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 30, y: 30, z: 30, w: 30} +--- !u!114 &61483684 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61483681} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: a8b3963696820314da0fd98d357bebfe, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &61483685 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61483681} + m_CullTransparentMesh: 1 +--- !u!1 &77833129 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 77833130} + - component: {fileID: 77833132} + - component: {fileID: 77833131} + m_Layer: 0 + m_Name: LeftEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &77833130 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 77833129} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &77833131 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 77833129} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!20 &77833132 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 77833129} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 1 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!1001 &90010865 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1875844688} + m_Modifications: + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 77833130} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 1260653749} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 620957629} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 77833130} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 1260653749} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 620957629} + - target: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_Name + value: '[BuildingBlock] OVRInteractionComprehensive' + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerEyes + value: + objectReference: {fileID: 620957632} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerOrigin + value: + objectReference: {fileID: 1875844688} + - target: {fileID: 6267690530596161800, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _ovrCameraRig + value: + objectReference: {fileID: 1875844689} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + insertIndex: 1 + addedObject: {fileID: 90010868} + m_SourcePrefab: {fileID: 100100000, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} +--- !u!4 &90010866 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 90010865} + m_PrefabAsset: {fileID: 0} +--- !u!1 &90010867 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 90010865} + m_PrefabAsset: {fileID: 0} +--- !u!114 &90010868 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 90010867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: 81f55626-5fad-45e9-a1df-184f330da7ba + instanceId: 332e0e8a-fb58-4fa7-addf-6b8d3946ab19 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: 2063f481-1b63-4eda-9ee8-a00df98536bc + _installationVariants: [] +--- !u!1 &108285111 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 108285112} + m_Layer: 0 + m_Name: LeftHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &108285112 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 108285111} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &123849439 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 123849440} + - component: {fileID: 123849443} + - component: {fileID: 123849442} + - component: {fileID: 123849441} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &123849440 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 123849439} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1242248374} + m_Father: {fileID: 545897469} + 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: 0.5, y: 0.5} +--- !u!114 &123849441 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 123849439} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &123849442 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 123849439} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 545897468} +--- !u!114 &123849443 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 123849439} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 123849442} + _surface: {fileID: 1242248377} + _selectSurface: {fileID: 1242248378} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &145513987 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 145513991} + - component: {fileID: 145513990} + - component: {fileID: 145513989} + - component: {fileID: 145513988} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &145513988 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2518c50cb3fc6a6458d4b743c2f69c7d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + _useInitialPressPositionForDrag: 1 + _exclusiveMode: 1 +--- !u!114 &145513989 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8f1a9a1d119a5944aacfb87d1ec283a2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + rayTransform: {fileID: 90010866} + m_Cursor: {fileID: 0} + joyPadClickButton: 1 + gazeClickKey: 32 + performSphereCastForGazepointer: 0 + useRightStickScroll: 1 + rightStickDeadZone: 0.15 + useSwipeScroll: 1 + swipeDragThreshold: 2 + swipeDragScale: 1 + InvertSwipeXAxis: 0 + angleDragThreshold: 1 + m_SpherecastRadius: 1 + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_AllowActivationOnMobileDevice: 1 +--- !u!114 &145513990 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &145513991 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &166660089 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 166660090} + m_Layer: 0 + m_Name: Content + m_TagString: Bulle3D + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &166660090 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 166660089} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 61483682} + m_Father: {fileID: 1542799701} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &176946766 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 176946767} + - component: {fileID: 176946769} + - component: {fileID: 176946768} + m_Layer: 5 + m_Name: AccueilTexte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &176946767 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 176946766} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 410814769} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &176946768 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 176946766} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Accueil (txt). + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 44.75 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &176946769 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 176946766} + m_CullTransparentMesh: 1 +--- !u!1 &203844586 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 203844589} + - component: {fileID: 203844588} + - component: {fileID: 203844587} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &203844587 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Version: 3 + m_UsePipelineSettings: 1 + m_AdditionalLightsShadowResolutionTier: 2 + m_LightLayerMask: 1 + m_RenderingLayers: 1 + m_CustomShadowLayers: 0 + m_ShadowLayerMask: 1 + m_ShadowRenderingLayers: 1 + m_LightCookieSize: {x: 1, y: 1} + m_LightCookieOffset: {x: 0, y: 0} + m_SoftShadowQuality: 0 +--- !u!108 &203844588 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + m_Enabled: 1 + serializedVersion: 11 + m_Type: 1 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ForceVisible: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 + m_LightUnit: 1 + m_LuxAtDistance: 1 + m_EnableSpotReflector: 1 +--- !u!4 &203844589 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + serializedVersion: 2 + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &256965889 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 256965890} + m_Layer: 0 + m_Name: RightHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &256965890 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 256965889} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 736431423} + - {fileID: 1981779245} + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &267046850 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 267046851} + - component: {fileID: 267046853} + - component: {fileID: 267046852} + m_Layer: 0 + m_Name: Titre + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &267046851 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 267046850} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &267046852 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 267046850} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Pr\xE9f\xE9rences" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 65.35 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &267046853 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 267046850} + m_CullTransparentMesh: 1 +--- !u!1 &270107574 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 270107575} + - component: {fileID: 270107578} + - component: {fileID: 270107577} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionRecherche + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &270107575 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270107574} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 431439149} + m_Father: {fileID: 1850278314} + 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: 0.5, y: 0.5} +--- !u!114 &270107577 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270107574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1850278318} +--- !u!114 &270107578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270107574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 270107577} + _surface: {fileID: 431439152} + _selectSurface: {fileID: 431439153} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1001 &273128013 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 898336105} + m_Modifications: + - target: {fileID: 3349346243019873864, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_IsOn + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Name + value: ToggleButton_Switch + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + insertIndex: -1 + addedObject: {fileID: 273128016} + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &273128014 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 273128013} + m_PrefabAsset: {fileID: 0} +--- !u!1 &273128015 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 273128013} + m_PrefabAsset: {fileID: 0} +--- !u!114 &273128016 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 273128015} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 426a9e0245cc0d041be77fb9f705fb86, type: 3} + m_Name: + m_EditorClassIdentifier: + fonction: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 478487499} + m_TargetAssemblyTypeName: EnumFonctionsPreferences, Assembly-CSharp + m_MethodName: ChangerMode + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!1 &294728352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 294728353} + - component: {fileID: 294728357} + - component: {fileID: 294728356} + - component: {fileID: 294728355} + - component: {fileID: 294728354} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &294728353 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1346614466} + 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: 0.5, y: 0.5} +--- !u!114 &294728354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 294728355} +--- !u!114 &294728355 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 160, y: 30, z: 0.01} +--- !u!114 &294728356 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 294728357} + _clippers: + - {fileID: 294728355} +--- !u!114 &294728357 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &309614184 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 309614185} + m_Layer: 0 + m_Name: Content + m_TagString: Bulle3D + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &309614185 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 309614184} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1541343604} + m_Father: {fileID: 460675307} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &322004674 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 322004675} + - component: {fileID: 322004677} + - component: {fileID: 322004676} + m_Layer: 5 + m_Name: TexteParametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &322004675 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322004674} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &322004676 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322004674} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Pr\xE9f\xE9rences" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &322004677 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322004674} + m_CullTransparentMesh: 1 +--- !u!1 &364059296 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 364059297} + - component: {fileID: 364059299} + - component: {fileID: 364059298} + m_Layer: 7 + m_Name: TextePrefab + m_TagString: TextePrefab + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &364059297 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 364059296} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2045732716} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &364059298 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 364059296} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Historique + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 28 + m_fontSizeBase: 28 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &364059299 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 364059296} + m_CullTransparentMesh: 1 +--- !u!1 &395946939 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 395946940} + - component: {fileID: 395946943} + - component: {fileID: 395946942} + - component: {fileID: 395946941} + m_Layer: 0 + m_Name: APParametres + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &395946940 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &395946941 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &395946942 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &395946943 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_CullTransparentMesh: 1 +--- !u!1 &406113352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 406113353} + - component: {fileID: 406113355} + - component: {fileID: 406113354} + m_Layer: 5 + m_Name: TexteRecherche + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &406113353 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406113352} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1850278314} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &406113354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406113352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Rechercher + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &406113355 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406113352} + m_CullTransparentMesh: 1 +--- !u!1 &410814765 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 410814769} + - component: {fileID: 410814768} + - component: {fileID: 410814767} + - component: {fileID: 410814766} + - component: {fileID: 410814770} + m_Layer: 5 + m_Name: AccueilBulleTexte + m_TagString: Accueil + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &410814766 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410814765} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &410814767 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410814765} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &410814768 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410814765} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &410814769 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410814765} + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.01, y: 0.01, z: 0.01} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3820270227358681204} + - {fileID: 1172317176} + - {fileID: 1031494166} + - {fileID: 176946767} + m_Father: {fileID: 656799856} + 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: 3.5} + m_SizeDelta: {x: 500, y: 200} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &410814770 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 410814765} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81607e97867670043b0f88a7850a3b78, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &413364813 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 413364814} + - component: {fileID: 413364817} + - component: {fileID: 413364816} + - component: {fileID: 413364815} + m_Layer: 0 + m_Name: APQuitter + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &413364814 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1063242543} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &413364815 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &413364816 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &413364817 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_CullTransparentMesh: 1 +--- !u!1001 &417838915 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 644900613} + m_Modifications: + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Name + value: ToggleButton_Switch + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &417838916 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 417838915} + m_PrefabAsset: {fileID: 0} +--- !u!1 &431439148 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 431439149} + - component: {fileID: 431439153} + - component: {fileID: 431439152} + - component: {fileID: 431439151} + - component: {fileID: 431439150} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &431439149 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 270107575} + 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: 0.5, y: 0.5} +--- !u!114 &431439150 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 431439151} +--- !u!114 &431439151 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 100, y: 100, z: 0.01} +--- !u!114 &431439152 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 431439153} + _clippers: + - {fileID: 431439151} +--- !u!114 &431439153 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &441092182 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 441092183} + - component: {fileID: 441092185} + - component: {fileID: 441092184} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &441092183 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441092182} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 29.570469, y: -50} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &441092184 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441092182} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &441092185 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441092182} + m_CullTransparentMesh: 1 +--- !u!1 &441898667 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 441898668} + - component: {fileID: 441898671} + - component: {fileID: 441898669} + - component: {fileID: 441898672} + - component: {fileID: 441898675} + - component: {fileID: 441898674} + - component: {fileID: 441898676} + m_Layer: 5 + m_Name: Parametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &441898668 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 395946940} + - {fileID: 774668364} + - {fileID: 441092183} + - {fileID: 1268310364} + - {fileID: 322004675} + m_Father: {fileID: 1020060957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -0.15} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &441898669 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 395946942} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &441898671 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_CullTransparentMesh: 1 +--- !u!223 &441898672 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &441898674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 100 + largeur_max: 500 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!114 &441898675 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 1268310367} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 441898674} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Agrandir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 441898674} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerPrefs + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 780759557} + m_TargetAssemblyTypeName: ComportementBoutonsMenu, Assembly-CSharp + m_MethodName: BoutonClique + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &441898676 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!1 &460675302 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 460675307} + - component: {fileID: 460675306} + - component: {fileID: 460675305} + - component: {fileID: 460675304} + - component: {fileID: 460675303} + m_Layer: 5 + m_Name: PourBulleTexte + m_TagString: Pour + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &460675303 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81607e97867670043b0f88a7850a3b78, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &460675304 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &460675305 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &460675306 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &460675307 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.01, y: 0.01, z: 0.01} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 309614185} + - {fileID: 1792859815} + - {fileID: 461226752} + - {fileID: 1238373959} + m_Father: {fileID: 1181119902} + 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: 3.5} + m_SizeDelta: {x: 500, y: 200} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &461226751 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 461226752} + - component: {fileID: 461226754} + - component: {fileID: 461226753} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &461226752 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 461226751} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 460675307} + 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: 0.5, y: 0.5} +--- !u!114 &461226753 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 461226751} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &461226754 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 461226751} + m_CullTransparentMesh: 1 +--- !u!1 &478487495 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 478487497} + - component: {fileID: 478487496} + - component: {fileID: 478487499} + m_Layer: 0 + m_Name: ComportementFenetrePreferences + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &478487496 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 478487495} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 40032d926c1a4a84aa451aaa2a114b53, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &478487497 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 478487495} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: -0.15, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &478487499 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 478487495} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ef2f097cac0359b478ae44e2512c8f4c, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &499297136 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 499297137} + - component: {fileID: 499297138} + m_Layer: 5 + m_Name: Text Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &499297137 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499297136} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 674047960} + - {fileID: 1104579700} + m_Father: {fileID: 1994937810} + 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.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &499297138 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499297136} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: {x: -8, y: -5, z: -8, w: -5} + m_Softness: {x: 0, y: 0} +--- !u!1 &499413739 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 499413740} + - component: {fileID: 499413742} + - component: {fileID: 499413741} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &499413740 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499413739} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 898336105} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &499413741 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499413739} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Mode jour + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 35.8 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &499413742 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499413739} + m_CullTransparentMesh: 1 +--- !u!1 &510163432 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 510163433} + m_Layer: 0 + m_Name: RightHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &510163433 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 510163432} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &517120271 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 517120272} + - component: {fileID: 517120276} + - component: {fileID: 517120275} + - component: {fileID: 517120274} + - component: {fileID: 517120273} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &517120272 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 635168671} + 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: 0.5, y: 0.5} +--- !u!114 &517120273 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 517120274} +--- !u!114 &517120274 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 100, y: 100, z: 0.01} +--- !u!114 &517120275 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 517120276} + _clippers: + - {fileID: 517120274} +--- !u!114 &517120276 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &530733932 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 530733933} + - component: {fileID: 530733936} + - component: {fileID: 530733935} + - component: {fileID: 530733934} + m_Layer: 7 + m_Name: Viewport + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &530733933 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530733932} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2045732716} + m_Father: {fileID: 2048535657} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &530733934 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530733932} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 0 +--- !u!114 &530733935 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530733932} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &530733936 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530733932} + m_CullTransparentMesh: 1 +--- !u!1 &533471964 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 533471965} + - component: {fileID: 533471968} + - component: {fileID: 533471967} + - component: {fileID: 533471966} + m_Layer: 5 + m_Name: IconQuitter + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &533471965 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1063242543} + 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: 55, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &533471966 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &533471967 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -8278380930669122163, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &533471968 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_CullTransparentMesh: 1 +--- !u!1 &545897465 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 545897469} + - component: {fileID: 545897468} + - component: {fileID: 545897466} + m_Layer: 7 + m_Name: HistoriqueDesMessages + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &545897466 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545897465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!223 &545897468 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545897465} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &545897469 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545897465} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2048535657} + - {fileID: 2011393429} + - {fileID: 123849440} + m_Father: {fileID: 30312108} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 300} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &546323936 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 546323937} + - component: {fileID: 546323939} + - component: {fileID: 546323938} + m_Layer: 5 + m_Name: FPSTExte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &546323937 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 546323936} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1894144129} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &546323938 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 546323936} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: New Text + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &546323939 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 546323936} + m_CullTransparentMesh: 1 +--- !u!1 &553160447 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 553160448} + - component: {fileID: 553160449} + m_Layer: 5 + m_Name: BoutonsGestionFenetrePrefs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &553160448 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 553160447} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2618178220305244257} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &553160449 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 553160447} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 5 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &613400026 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 613400027} + m_Layer: 0 + m_Name: LeftHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &613400027 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 613400026} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 787690123} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &620957628 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 620957632} + - component: {fileID: 620957631} + - component: {fileID: 620957629} + - component: {fileID: 620957630} + m_Layer: 0 + m_Name: CenterEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!20 &620957629 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 1000 + field of view: 90 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!114 &620957630 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!81 &620957631 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + m_Enabled: 1 +--- !u!4 &620957632 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &634134236 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 634134237} + m_Layer: 0 + m_Name: LeftHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &634134237 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 634134236} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 771511960} + - {fileID: 787690123} + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &635168670 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 635168671} + - component: {fileID: 635168674} + - component: {fileID: 635168673} + - component: {fileID: 635168672} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionQuitter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &635168671 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 517120272} + m_Father: {fileID: 1063242543} + 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: 0.5, y: 0.5} +--- !u!114 &635168672 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &635168673 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1063242547} +--- !u!114 &635168674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 635168673} + _surface: {fileID: 517120275} + _selectSurface: {fileID: 517120276} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &644900612 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 644900613} + - component: {fileID: 644900614} + m_Layer: 5 + m_Name: ConteneurBouton&Texte (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &644900613 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 644900612} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 417838916} + - {fileID: 1574461988} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &644900614 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 644900612} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!4 &656799856 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + m_PrefabInstance: {fileID: 1158020325} + m_PrefabAsset: {fileID: 0} +--- !u!1 &674047956 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 674047960} + - component: {fileID: 674047959} + - component: {fileID: 674047957} + - component: {fileID: 674047958} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &674047957 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Entrez un texte... + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 2150773298 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 2 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!114 &674047958 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!222 &674047959 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_CullTransparentMesh: 1 +--- !u!224 &674047960 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 499297137} + 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: 0.5, y: 0.5} +--- !u!1 &736431422 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 736431423} + m_Layer: 0 + m_Name: RightControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &736431423 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 736431422} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 256965890} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &741180260 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 741180262} + - component: {fileID: 741180261} + m_Layer: 0 + m_Name: FPS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &741180261 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 741180260} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7dd158344ea9428489f283268329574b, type: 3} + m_Name: + m_EditorClassIdentifier: + fpsText: {fileID: 546323938} +--- !u!4 &741180262 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 741180260} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1894144129} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &771511959 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 771511960} + m_Layer: 0 + m_Name: LeftControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &771511960 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 771511959} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 634134237} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &774668363 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 774668364} + - component: {fileID: 774668367} + - component: {fileID: 774668366} + - component: {fileID: 774668365} + m_Layer: 5 + m_Name: IconParametres + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &774668364 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + 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: 50, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &774668365 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &774668366 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -3014893831786530833, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &774668367 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_CullTransparentMesh: 1 +--- !u!1 &780759556 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 780759558} + - component: {fileID: 780759557} + - component: {fileID: 780759559} + m_Layer: 0 + m_Name: ComportementBoutons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &780759557 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780759556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a7d13754c638b8b438c04ad0cef34e84, type: 3} + m_Name: + m_EditorClassIdentifier: + boutons: + - {fileID: 441898668} + - {fileID: 1850278314} + - {fileID: 1063242543} + rayon: 0.35 + duree_deplacement: 0.5 +--- !u!4 &780759558 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780759556} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.24000001, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &780759559 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780759556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fdd9ec74efce24c4ebf3d3b203c97f0a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &787690122 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 787690123} + m_Layer: 0 + m_Name: LeftControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &787690123 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 787690122} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 613400027} + m_Father: {fileID: 634134237} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &801276486 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 801276487} + - component: {fileID: 801276489} + - component: {fileID: 801276488} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &801276487 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801276486} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1994937810} + 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: 0.5, y: 0.5} +--- !u!114 &801276488 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801276486} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &801276489 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801276486} + m_CullTransparentMesh: 1 +--- !u!1 &826712626 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 826712627} + - component: {fileID: 826712629} + - component: {fileID: 826712628} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &826712627 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 826712626} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1020060957} + 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: 0.5, y: 0.5} +--- !u!114 &826712628 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 826712626} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &826712629 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 826712626} + m_CullTransparentMesh: 1 +--- !u!1 &867626573 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 867626574} + - component: {fileID: 867626576} + - component: {fileID: 867626575} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &867626574 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 867626573} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 871160223} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &867626575 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 867626573} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &867626576 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 867626573} + m_CullTransparentMesh: 1 +--- !u!1 &871160222 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!224 &871160223 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8871935754367020192, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!114 &871160224 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 871160222} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bc560ecd6936ee440ac2a92f970db479, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &898336104 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 898336105} + - component: {fileID: 898336106} + m_Layer: 5 + m_Name: Mode(Jour/Nuit) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &898336105 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 898336104} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 273128014} + - {fileID: 499413740} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &898336106 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 898336104} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1013904230 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1013904231} + - component: {fileID: 1013904234} + - component: {fileID: 1013904233} + - component: {fileID: 1013904232} + m_Layer: 0 + m_Name: APRecherche + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1013904231 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1850278314} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1013904232 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &1013904233 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1013904234 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_CullTransparentMesh: 1 +--- !u!1 &1020060953 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1020060957} + - component: {fileID: 1020060956} + - component: {fileID: 1020060955} + - component: {fileID: 1020060958} + m_Layer: 5 + m_Name: CanvasBoutons(Menu) + m_TagString: MenuBoutons + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1020060955 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1020060956 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 0 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1020060957 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 441898668} + - {fileID: 1063242543} + - {fileID: 1850278314} + - {fileID: 826712627} + m_Father: {fileID: 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: 0} + m_SizeDelta: {x: 0.48, y: 0.45} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1020060958 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b6d529719047c6546bdedb62226bed83, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1028478436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1028478437} + - component: {fileID: 1028478439} + - component: {fileID: 1028478438} + m_Layer: 0 + m_Name: Joueur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1028478437 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1028478436} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1875844688} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1028478438 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1028478436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0950df82e7936c84983497630bde5b54, type: 3} + m_Name: + m_EditorClassIdentifier: + Acceleration: 0.01 + Damping: 0.5 + BackAndSideDampen: 0.5 + JumpForce: 0.3 + RotationAmount: 1.5 + RotationRatchet: 45 + SnapRotation: 1 + RotateAroundGuardianCenter: 0 + FixedSpeedSteps: 0 + HmdResetsY: 1 + HmdRotatesY: 1 + GravityModifier: 0.379 + useProfileData: 1 + EnableLinearMovement: 1 + EnableRotation: 1 + RotationEitherThumbstick: 0 +--- !u!143 &1028478439 +CharacterController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1028478436} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Height: 2 + m_Radius: 0.5 + m_SlopeLimit: 45 + m_StepOffset: 0.3 + m_SkinWidth: 0.08 + m_MinMoveDistance: 0.001 + m_Center: {x: 0, y: 0, z: 0} +--- !u!1 &1031494165 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1031494166} + - component: {fileID: 1031494168} + - component: {fileID: 1031494167} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1031494166 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031494165} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 410814769} + 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: 0.5, y: 0.5} +--- !u!114 &1031494167 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031494165} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1031494168 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031494165} + m_CullTransparentMesh: 1 +--- !u!1 &1063242542 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1063242543} + - component: {fileID: 1063242546} + - component: {fileID: 1063242544} + - component: {fileID: 1063242547} + - component: {fileID: 1063242548} + - component: {fileID: 1063242550} + - component: {fileID: 1063242549} + m_Layer: 5 + m_Name: Quitter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1063242543 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 635168671} + - {fileID: 413364814} + - {fileID: 533471965} + - {fileID: 1837925294} + m_Father: {fileID: 1020060957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -0.15} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1063242544 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 413364816} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1063242546 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_CullTransparentMesh: 1 +--- !u!223 &1063242547 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1063242548 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1063242549 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 100 + largeur_max: 500 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!114 &1063242550 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 635168674} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1063242549} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Agrandir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1063242549} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerQuitter + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 780759557} + m_TargetAssemblyTypeName: ComportementAnimationBoutonsMenu, Assembly-CSharp + m_MethodName: BoutonClique + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &1078745742 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1078745744} + - component: {fileID: 1078745743} + m_Layer: 0 + m_Name: DebugEffectsVisuels + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1078745743 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1078745742} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 359753addc189e24bbbc5355eb782ba3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1078745744 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1078745742} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1094517600 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1094517601} + - component: {fileID: 1094517605} + - component: {fileID: 1094517604} + - component: {fileID: 1094517603} + - component: {fileID: 1094517608} + - component: {fileID: 1094517607} + - component: {fileID: 1094517606} + m_Layer: 0 + m_Name: BarreDeplacement + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1094517601 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1487879533} + - {fileID: 2056935731} + m_Father: {fileID: 30312108} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 5} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1094517603 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.78113204, g: 0.78113204, b: 0.78113204, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!223 &1094517604 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 0 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!222 &1094517605 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_CullTransparentMesh: 1 +--- !u!65 &1094517606 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 100, y: 25, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1094517607 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 30312108} + _maxGrabPoints: -1 + _rigidbody: {fileID: 1094517608} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &1094517608 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!1 &1096578847 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1096578848} + m_Layer: 0 + m_Name: TrackingSpace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1096578848 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1096578847} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 77833130} + - {fileID: 620957632} + - {fileID: 1260653749} + - {fileID: 2087978707} + - {fileID: 634134237} + - {fileID: 256965890} + - {fileID: 108285112} + - {fileID: 510163433} + m_Father: {fileID: 1875844688} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1104579697 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1104579700} + - component: {fileID: 1104579699} + - component: {fileID: 1104579698} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1104579698 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104579697} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "\u200B" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 3 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1104579699 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104579697} + m_CullTransparentMesh: 1 +--- !u!224 &1104579700 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104579697} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 499297137} + 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: 0.5, y: 0.5} +--- !u!1001 &1158020325 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 264558904099048137, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_Name + value: PapiAccueil + objectReference: {fileID: 0} + - target: {fileID: 7215966803302086518, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalPosition.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalRotation.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + insertIndex: -1 + addedObject: {fileID: 410814769} + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} +--- !u!1 &1167643596 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1167643603} + - component: {fileID: 1167643602} + - component: {fileID: 1167643597} + - component: {fileID: 1167643601} + - component: {fileID: 1167643600} + - component: {fileID: 1167643599} + - component: {fileID: 1167643598} + m_Layer: 0 + m_Name: Debugs + m_TagString: Debug + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1167643597 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Aucun debug \xE0 afficher." + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30.65 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: -53.619247, y: -51.508995, z: 97.61298, w: -3.377018} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!223 &1167643598 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1167643599 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 1167643603} + _maxGrabPoints: -1 + _rigidbody: {fileID: 1167643600} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &1167643600 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!65 &1167643601 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 200, y: 50, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!222 &1167643602 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_CullTransparentMesh: 1 +--- !u!224 &1167643603 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_LocalRotation: {x: -0, y: 0.13052617, z: -0, w: 0.99144495} + m_LocalPosition: {x: 0, y: 0, z: 150} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1715473791} + - {fileID: 1902790779} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 154.54816, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1172317175 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1172317176} + - component: {fileID: 1172317178} + - component: {fileID: 1172317177} + m_Layer: 5 + m_Name: Fleche + m_TagString: FlecheBulleTexte + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1172317176 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1172317175} + m_LocalRotation: {x: 0, y: 0, z: -0.38268343, w: 0.92387956} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 410814769} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -45} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1172317177 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1172317175} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: b7ce72d64cd2ebd4eae63bae6d91e671, type: 2} + m_Color: {r: 0.19215688, g: 0.19215688, b: 0.19215688, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1172317178 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1172317175} + m_CullTransparentMesh: 1 +--- !u!1001 &1181119901 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 1341491636947615167, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_Name + value: PapiPour + objectReference: {fileID: 0} + - target: {fileID: 5461402282910689633, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalPosition.x + value: -6 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalPosition.z + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalRotation.w + value: 0.17364825 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalRotation.y + value: 0.9848078 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 160 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + insertIndex: -1 + addedObject: {fileID: 460675307} + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} +--- !u!4 &1181119902 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + m_PrefabInstance: {fileID: 1181119901} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1183177244 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1183177245} + - component: {fileID: 1183177247} + - component: {fileID: 1183177246} + m_Layer: 7 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1183177245 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1183177244} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1624384851} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1183177246 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1183177244} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1183177247 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1183177244} + m_CullTransparentMesh: 1 +--- !u!1 &1238373958 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1238373959} + - component: {fileID: 1238373961} + - component: {fileID: 1238373960} + m_Layer: 5 + m_Name: PourTexte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1238373959 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238373958} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 460675307} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1238373960 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238373958} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Pour (txt). + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 44.75 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1238373961 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238373958} + m_CullTransparentMesh: 1 +--- !u!1 &1242248373 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1242248374} + - component: {fileID: 1242248378} + - component: {fileID: 1242248377} + - component: {fileID: 1242248376} + - component: {fileID: 1242248375} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1242248374 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 123849440} + 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: 0.5, y: 0.5} +--- !u!114 &1242248375 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 1242248376} +--- !u!114 &1242248376 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 200, y: 300, z: 0.01} +--- !u!114 &1242248377 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 1242248378} + _clippers: + - {fileID: 1242248376} +--- !u!114 &1242248378 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &1260653748 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1260653749} + - component: {fileID: 1260653751} + - component: {fileID: 1260653750} + m_Layer: 0 + m_Name: RightEyeAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1260653749 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1260653748} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1260653750 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1260653748} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!20 &1260653751 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1260653748} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 2 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!1 &1268310363 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1268310364} + - component: {fileID: 1268310367} + - component: {fileID: 1268310366} + - component: {fileID: 1268310365} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionParametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1268310364 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1342171620} + m_Father: {fileID: 441898668} + 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: 0.5, y: 0.5} +--- !u!114 &1268310365 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1268310366 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 441898672} +--- !u!114 &1268310367 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1268310366} + _surface: {fileID: 1342171623} + _selectSurface: {fileID: 1342171624} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &1272714500 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1272714501} + m_Layer: 0 + m_Name: RightHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1272714501 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1272714500} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1981779245} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1300854822 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1300854824} + - component: {fileID: 1300854823} + m_Layer: 0 + m_Name: Global Volume + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1300854823 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1300854822} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IsGlobal: 1 + priority: 0 + blendDistance: 0 + weight: 1 + sharedProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} +--- !u!4 &1300854824 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1300854822} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1331752627 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1852369632254168283, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Camera + value: + objectReference: {fileID: 620957629} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Name + value: FenetrePreferences + objectReference: {fileID: 0} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_TagString + value: FenetrePrefs + objectReference: {fileID: 0} + - target: {fileID: 3074094648544205015, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Enabled + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Spacing + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Top + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildAlignment + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Left + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Right + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Bottom + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildControlWidth + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildControlHeight + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandWidth + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandHeight + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7881774007595699318, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandWidth + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7881774007595699318, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandHeight + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8688192856564850643, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Material + value: + objectReference: {fileID: 2100000, guid: 3f1a8ea57450bd749a74467129ec5145, type: 2} + - target: {fileID: 8828657145035524727, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Enabled + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 8871935754367020192, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 867626574} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 553160448} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 267046851} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 898336105} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 932233} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 644900613} + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 5398288} + - targetCorrespondingSourceObject: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 871160224} + m_SourcePrefab: {fileID: 100100000, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} +--- !u!224 &1331752628 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1342171619 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1342171620} + - component: {fileID: 1342171624} + - component: {fileID: 1342171623} + - component: {fileID: 1342171622} + - component: {fileID: 1342171621} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1342171620 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1268310364} + 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: 0.5, y: 0.5} +--- !u!114 &1342171621 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 1342171622} +--- !u!114 &1342171622 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 100, y: 100, z: 0.01} +--- !u!114 &1342171623 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 1342171624} + _clippers: + - {fileID: 1342171622} +--- !u!114 &1342171624 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &1346614465 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1346614466} + - component: {fileID: 1346614469} + - component: {fileID: 1346614468} + - component: {fileID: 1346614467} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1346614466 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 294728353} + m_Father: {fileID: 1994937810} + 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: 0.5, y: 0.5} +--- !u!114 &1346614467 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1346614468 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1994937811} +--- !u!114 &1346614469 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1346614468} + _surface: {fileID: 294728356} + _selectSurface: {fileID: 294728357} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &1487879532 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1487879533} + - component: {fileID: 1487879536} + - component: {fileID: 1487879535} + - component: {fileID: 1487879534} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1487879533 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487879532} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1094517601} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1487879534 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487879532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 1094517606} +--- !u!114 &1487879535 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487879532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1487879536 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487879532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1094517607} + _surface: {fileID: 1487879534} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 1487879535} + _tiebreakerScore: 0 +--- !u!1 &1500648815 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1500648816} + - component: {fileID: 1500648819} + - component: {fileID: 1500648818} + - component: {fileID: 1500648817} + m_Layer: 5 + m_Name: IconRecherche + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1500648816 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1850278314} + 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: 50.005085, y: 0} + m_SizeDelta: {x: 100.000015, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1500648817 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &1500648818 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 6338432638553648094, guid: 64f884351318b694f942625580e64a8b, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1500648819 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_CullTransparentMesh: 1 +--- !u!1 &1541343603 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1541343604} + - component: {fileID: 1541343607} + - component: {fileID: 1541343606} + - component: {fileID: 1541343605} + m_Layer: 0 + m_Name: Background + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1541343604 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1541343603} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 309614185} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1541343605 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1541343603} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 30, y: 30, z: 30, w: 30} +--- !u!114 &1541343606 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1541343603} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: a8b3963696820314da0fd98d357bebfe, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1541343607 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1541343603} + m_CullTransparentMesh: 1 +--- !u!1 &1542799696 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1542799701} + - component: {fileID: 1542799700} + - component: {fileID: 1542799699} + - component: {fileID: 1542799698} + - component: {fileID: 1542799697} + m_Layer: 5 + m_Name: ContreBulleTexte + m_TagString: Contre + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1542799697 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81607e97867670043b0f88a7850a3b78, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1542799698 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1542799699 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1542799700 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1542799701 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.01, y: 0.01, z: 0.01} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 166660090} + - {fileID: 1914968693} + - {fileID: 1765766901} + - {fileID: 1654463056} + m_Father: {fileID: 1589081817} + 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: 3.5} + m_SizeDelta: {x: 500, y: 200} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1574461987 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1574461988} + - component: {fileID: 1574461990} + - component: {fileID: 1574461989} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1574461988 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574461987} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 644900613} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1574461989 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574461987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Mon Option + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 34.45 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1574461990 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574461987} + m_CullTransparentMesh: 1 +--- !u!1001 &1589081816 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 3142672125920960427, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_Name + value: PapiContre + objectReference: {fileID: 0} + - target: {fileID: 5290908748189498107, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalPosition.x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalPosition.z + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalRotation.w + value: 0.17364825 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalRotation.y + value: -0.9848078 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -160 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + insertIndex: -1 + addedObject: {fileID: 1542799701} + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e51f060e5ae20c04895fd4416f923509, type: 3} +--- !u!4 &1589081817 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + m_PrefabInstance: {fileID: 1589081816} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1607579202 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1607579203} + - component: {fileID: 1607579206} + - component: {fileID: 1607579205} + - component: {fileID: 1607579204} + m_Layer: 7 + m_Name: Scrollbar Vertical + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1607579203 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607579202} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1624384851} + m_Father: {fileID: 2048535657} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: -17} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1607579204 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607579202} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1183177246} + m_HandleRect: {fileID: 1183177245} + m_Direction: 2 + m_Value: 1 + m_Size: 1 + m_NumberOfSteps: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1607579205 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607579202} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1607579206 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607579202} + m_CullTransparentMesh: 1 +--- !u!1 &1619923416 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1619923418} + - component: {fileID: 1619923417} + m_Layer: 0 + m_Name: TokenInit + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1619923417 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1619923416} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 883d2ea4411452145a4a4d88824cca26, type: 3} + m_Name: + m_EditorClassIdentifier: + Token: +--- !u!4 &1619923418 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1619923416} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1624384850 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1624384851} + m_Layer: 7 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1624384851 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1624384850} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1183177245} + m_Father: {fileID: 1607579203} + 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: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1654463055 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1654463056} + - component: {fileID: 1654463058} + - component: {fileID: 1654463057} + m_Layer: 5 + m_Name: ContreTexte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1654463056 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1654463055} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1542799701} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1654463057 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1654463055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Contre (txt). + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 44.75 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1654463058 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1654463055} + m_CullTransparentMesh: 1 +--- !u!1 &1661708470 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1661708472} + - component: {fileID: 1661708471} + m_Layer: 0 + m_Name: EnvoyerRecevoir + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1661708471 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661708470} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b3a5933ccf77e5b4dac95a07f78b7914, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1661708472 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661708470} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1666108640 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1666108642} + - component: {fileID: 1666108641} + m_Layer: 0 + m_Name: GestionTexte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1666108641 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1666108640} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e7b03c53c16497046bb06b986f119ab5, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1666108642 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1666108640} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1705736406 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1705736408} + - component: {fileID: 1705736407} + m_Layer: 0 + m_Name: GestionnaireAffichageClientServeur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1705736407 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705736406} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: daf83f5790a1ebc4b85208e164bc7016, type: 3} + m_Name: + m_EditorClassIdentifier: + init_token_client: {fileID: 1619923417} + envoyer_recevoir: {fileID: 1661708471} + DebugsTMP: {fileID: 1167643597} + Entree: {fileID: 1994937809} + delai_entre_deux_msg: 2 + delai_entre_deux_frappes: 0.04 + content_historique: {fileID: 2045732716} +--- !u!4 &1705736408 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705736406} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1715473790 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1715473791} + - component: {fileID: 1715473794} + - component: {fileID: 1715473793} + - component: {fileID: 1715473792} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1715473791 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1167643603} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1715473792 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 1167643601} +--- !u!114 &1715473793 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1715473794 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1167643599} + _surface: {fileID: 1715473792} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 1715473793} + _tiebreakerScore: 0 +--- !u!1 &1765766900 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1765766901} + - component: {fileID: 1765766903} + - component: {fileID: 1765766902} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1765766901 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1765766900} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1542799701} + 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: 0.5, y: 0.5} +--- !u!114 &1765766902 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1765766900} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1765766903 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1765766900} + m_CullTransparentMesh: 1 +--- !u!1 &1792859814 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1792859815} + - component: {fileID: 1792859817} + - component: {fileID: 1792859816} + m_Layer: 5 + m_Name: Fleche + m_TagString: FlecheBulleTexte + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1792859815 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1792859814} + m_LocalRotation: {x: 0, y: 0, z: -0.38268343, w: 0.92387956} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 460675307} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -45} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1792859816 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1792859814} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: b7ce72d64cd2ebd4eae63bae6d91e671, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1792859817 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1792859814} + m_CullTransparentMesh: 1 +--- !u!1 &1837925293 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1837925294} + - component: {fileID: 1837925296} + - component: {fileID: 1837925295} + m_Layer: 5 + m_Name: TexteQuitter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1837925294 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1837925293} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1063242543} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1837925295 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1837925293} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Quitter + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1837925296 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1837925293} + m_CullTransparentMesh: 1 +--- !u!1 &1850278313 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1850278314} + - component: {fileID: 1850278317} + - component: {fileID: 1850278318} + - component: {fileID: 1850278319} + - component: {fileID: 1850278320} + - component: {fileID: 1850278321} + m_Layer: 5 + m_Name: Recherche + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1850278314 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 270107575} + - {fileID: 1013904231} + - {fileID: 1500648816} + - {fileID: 406113353} + m_Father: {fileID: 1020060957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -0.15} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1850278317 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_CullTransparentMesh: 1 +--- !u!223 &1850278318 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1850278319 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1850278320 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 270107578} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1850278321} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Agrandir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1850278321} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerRecherche + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 780759557} + m_TargetAssemblyTypeName: ComportementAnimationBoutonsMenu, Assembly-CSharp + m_MethodName: BoutonClique + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1850278321 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 100 + largeur_max: 500 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!1 &1875844687 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1875844688} + - component: {fileID: 1875844692} + - component: {fileID: 1875844689} + - component: {fileID: 1875844691} + - component: {fileID: 1875844690} + m_Layer: 0 + m_Name: '[BuildingBlock] Camera Rig' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1875844688 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1096578848} + - {fileID: 90010866} + m_Father: {fileID: 1028478437} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1875844689 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: df9f338034892c44ebb62d97894772f1, type: 3} + m_Name: + m_EditorClassIdentifier: + usePerEyeCameras: 0 + useFixedUpdateForTracking: 0 + disableEyeAnchorCameras: 0 +--- !u!114 &1875844690 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5178bc8574ce2bf4388e787a2e2af326, type: 3} + m_Name: + m_EditorClassIdentifier: + opMode: 1 + resetHmdPoseOnRelease: 1 + resetHmdPoseByMiddleMouseButton: 1 + activateKeys: 3201000031010000 + activateKeyBindings: + - /leftCtrl + - /rightCtrl + - /f1 + pitchKeys: 3401000033010000 + pitchKeyBindings: + - /leftAlt + - /rightAlt + - /f2 +--- !u!114 &1875844691 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7e933e81d3c20c74ea6fdc708a67e3a5, type: 3} + m_Name: + m_EditorClassIdentifier: + _monoscopic: 0 + _sharpenType: 0 + _enableDynamicResolution: 1 + minDynamicResolutionScale: 1 + maxDynamicResolutionScale: 1 + quest2MinDynamicResolutionScale: 0.7 + quest2MaxDynamicResolutionScale: 1.3 + quest3MinDynamicResolutionScale: 0.7 + quest3MaxDynamicResolutionScale: 1.6 + minRenderScale: 0.7 + maxRenderScale: 1 + _headPoseRelativeOffsetRotation: {x: 0, y: 0, z: 0} + _headPoseRelativeOffsetTranslation: {x: 0, y: 0, z: 0} + profilerTcpPort: 32419 + expandMixedRealityCapturePropertySheet: 0 + enableMixedReality: 0 + compositionMethod: 0 + extraHiddenLayers: + serializedVersion: 2 + m_Bits: 0 + extraVisibleLayers: + serializedVersion: 2 + m_Bits: 0 + dynamicCullingMask: 1 + externalCompositionBackdropColorRift: {r: 0, g: 1, b: 0, a: 1} + externalCompositionBackdropColorQuest: {r: 0, g: 0, b: 0, a: 0} + capturingCameraDevice: 0 + flipCameraFrameHorizontally: 0 + flipCameraFrameVertically: 0 + handPoseStateLatency: 0 + sandwichCompositionRenderLatency: 0 + sandwichCompositionBufferedFrames: 8 + chromaKeyColor: {r: 0, g: 1, b: 0, a: 1} + chromaKeySimilarity: 0.6 + chromaKeySmoothRange: 0.03 + chromaKeySpillRange: 0.06 + useDynamicLighting: 0 + depthQuality: 1 + dynamicLightingSmoothFactor: 8 + dynamicLightingDepthVariationClampingValue: 0.001 + virtualGreenScreenType: 0 + virtualGreenScreenTopY: 10 + virtualGreenScreenBottomY: -10 + virtualGreenScreenApplyDepthCulling: 0 + virtualGreenScreenDepthTolerance: 0.2 + mrcActivationMode: 0 + launchSimultaneousHandsControllersOnStartup: 0 + isInsightPassthroughEnabled: 0 + shouldBoundaryVisibilityBeSuppressed: 0 + requestBodyTrackingPermissionOnStartup: 0 + requestFaceTrackingPermissionOnStartup: 0 + requestEyeTrackingPermissionOnStartup: 0 + requestScenePermissionOnStartup: 0 + requestRecordAudioPermissionOnStartup: 0 + requestPassthroughCameraAccessPermissionOnStartup: 0 + _localDimming: 1 + _trackingOriginType: 1 + usePositionTracking: 1 + useRotationTracking: 1 + useIPDInPositionTracking: 1 + resetTrackerOnLoad: 0 + AllowRecenter: 0 + LateControllerUpdate: 1 + LateLatching: 0 + controllerDrivenHandPosesType: 0 + SimultaneousHandsAndControllersEnabled: 0 + _readOnlyWideMotionModeHandPosesEnabled: 0 + wideMotionModeHandPosesEnabled: 0 + dynamicResolutionVersion: 1 +--- !u!114 &1875844692 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: e47682b9-c270-40b1-b16d-90b627a5ce1b + instanceId: e5a4bffc-91f6-4eeb-b4bb-7bc997c1cf26 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: + _installationVariants: [] +--- !u!1 &1894144125 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1894144129} + - component: {fileID: 1894144128} + - component: {fileID: 1894144127} + - component: {fileID: 1894144126} + m_Layer: 5 + m_Name: CanvasFPS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1894144126 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1894144127 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1894144128 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 0 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1894144129 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 150} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 741180262} + - {fileID: 546323937} + m_Father: {fileID: 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: -80} + m_SizeDelta: {x: 500, y: 500} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1897715886 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1897715890} + - component: {fileID: 1897715889} + - component: {fileID: 1897715888} + - component: {fileID: 1897715887} + m_Layer: 0 + m_Name: Sol + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!64 &1897715887 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1897715886} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &1897715888 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1897715886} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &1897715889 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1897715886} + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1897715890 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1897715886} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 10, y: 10, z: 10} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1902790778 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1902790779} + - component: {fileID: 1902790781} + - component: {fileID: 1902790780} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1902790779 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1902790778} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1167643603} + 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: 0.5, y: 0.5} +--- !u!114 &1902790780 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1902790778} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1902790781 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1902790778} + m_CullTransparentMesh: 1 +--- !u!1 &1914968692 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1914968693} + - component: {fileID: 1914968695} + - component: {fileID: 1914968694} + m_Layer: 5 + m_Name: Fleche + m_TagString: FlecheBulleTexte + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1914968693 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914968692} + m_LocalRotation: {x: 0, y: 0, z: -0.38268343, w: 0.92387956} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1542799701} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -45} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1914968694 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914968692} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: b7ce72d64cd2ebd4eae63bae6d91e671, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1914968695 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914968692} + m_CullTransparentMesh: 1 +--- !u!1 &1981779244 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1981779245} + m_Layer: 0 + m_Name: RightControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1981779245 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1981779244} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1272714501} + m_Father: {fileID: 256965890} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1986964834 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 932233} + m_Modifications: + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Name + value: ToggleButton_Switch + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &1986964835 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 1986964834} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1994937808 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1994937810} + - component: {fileID: 1994937816} + - component: {fileID: 1994937812} + - component: {fileID: 1994937809} + - component: {fileID: 1994937815} + - component: {fileID: 1994937811} + - component: {fileID: 1994937814} + - component: {fileID: 1994937813} + m_Layer: 5 + m_Name: EntreeUtilisateur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1994937809 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1994937812} + m_TextViewport: {fileID: 499297137} + m_TextComponent: {fileID: 1104579698} + m_Placeholder: {fileID: 674047957} + m_VerticalScrollbar: {fileID: 0} + m_VerticalScrollbarEventHandler: {fileID: 0} + m_LayoutGroup: {fileID: 0} + m_ScrollSensitivity: 1 + m_ContentType: 0 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_HideSoftKeyboard: 0 + m_CharacterValidation: 0 + m_RegexValue: + m_GlobalPointSize: 14 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnSubmit: + m_PersistentCalls: + m_Calls: [] + m_OnSelect: + m_PersistentCalls: + m_Calls: [] + m_OnDeselect: + m_PersistentCalls: + m_Calls: [] + m_OnTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnEndTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_OnTouchScreenKeyboardStatusChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 + m_RichText: 1 + m_GlobalFontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_OnFocusSelectAll: 1 + m_ResetOnDeActivation: 1 + m_KeepTextSelectionVisible: 0 + m_RestoreOriginalTextOnEscape: 1 + m_isRichTextEditingAllowed: 0 + m_LineLimit: 0 + isAlert: 0 + m_InputValidator: {fileID: 0} + m_ShouldActivateOnSelect: 1 +--- !u!224 &1994937810 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 499297137} + - {fileID: 1346614466} + - {fileID: 801276487} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!223 &1994937811 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1994937812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1994937813 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e050578356dd7b94b8690fdfb1d58605, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1994937814 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1994937815 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f9a237365031784e9a1c139ac1991cb, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!222 &1994937816 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_CullTransparentMesh: 1 +--- !u!1 &2011393428 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2011393429} + - component: {fileID: 2011393430} + m_Layer: 7 + m_Name: PositionEtRotationHistorique + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2011393429 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2011393428} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 666.6667, y: 641.02563, z: 666.6667} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 545897469} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2011393430 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2011393428} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43ee61caa71f0774695520d49a722b33, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &2045732715 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2045732716} + - component: {fileID: 2045732717} + - component: {fileID: 2045732718} + m_Layer: 7 + m_Name: ContenuHistorique + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2045732716 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2045732715} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 364059297} + m_Father: {fileID: 530733933} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -0.0000043530017, y: -0.00010164856} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &2045732717 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2045732715} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 5 + m_Bottom: 5 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &2045732718 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2045732715} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 0 + m_VerticalFit: 2 +--- !u!1 &2048535656 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2048535657} + - component: {fileID: 2048535660} + - component: {fileID: 2048535659} + - component: {fileID: 2048535658} + m_Layer: 7 + m_Name: Messages(ScrollView) + m_TagString: Scrollview + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2048535657 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048535656} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 530733933} + - {fileID: 1607579203} + m_Father: {fileID: 545897469} + 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: 10, y: 10} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2048535658 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048535656} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 2045732716} + m_Horizontal: 1 + m_Vertical: 1 + m_MovementType: 1 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 530733933} + m_HorizontalScrollbar: {fileID: 0} + m_VerticalScrollbar: {fileID: 1607579204} + m_HorizontalScrollbarVisibility: 2 + m_VerticalScrollbarVisibility: 2 + m_HorizontalScrollbarSpacing: -3 + m_VerticalScrollbarSpacing: -3 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &2048535659 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048535656} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.39215687} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2048535660 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048535656} + m_CullTransparentMesh: 1 +--- !u!1 &2056935730 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2056935731} + - component: {fileID: 2056935733} + - component: {fileID: 2056935732} + m_Layer: 0 + m_Name: CanvasDebugBordure + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2056935731 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2056935730} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1094517601} + 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: 0.5, y: 0.5} +--- !u!114 &2056935732 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2056935730} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 0, b: 0, a: 0.1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2056935733 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2056935730} + m_CullTransparentMesh: 1 +--- !u!1 &2087978706 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2087978707} + m_Layer: 0 + m_Name: TrackerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2087978707 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2087978706} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2131611829 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 40 + largeur_max: 120 + duree_ouverture: 0.3 + AnimerA: 1 +--- !u!114 &2131611830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b7db4a332f7e98d4ca6f7558f3613db5, type: 3} + m_Name: + m_EditorClassIdentifier: + onPointerClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 478487496} + m_TargetAssemblyTypeName: ComportementFenetrePreferences, Assembly-CSharp + m_MethodName: ChangerEtat + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!1 &243424270023441158 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2618178220305244257} + - component: {fileID: 6869810458693193498} + - component: {fileID: 5140576998914580422} + - component: {fileID: 2131611829} + - component: {fileID: 2131611830} + m_Layer: 0 + m_Name: Fermer + m_TagString: QDSUIPrimaryButton + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &265421015273259246 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &595206483210253712 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842874036736877360} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Fermer + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4280756007 + m_fontColor: {r: 0.15294118, g: 0.15294118, b: 0.15294118, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0.0044269413, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &739955594076292417 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842874036736877360} + m_CullTransparentMesh: 1 +--- !u!222 &952902941686272513 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7815598869519633400} + m_CullTransparentMesh: 1 +--- !u!114 &991379888455735987 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2145288346152231366} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: a8b3963696820314da0fd98d357bebfe, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!224 &2050538972765576138 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2618178220305244257} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2145288346152231366 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7609522242405783500} + - component: {fileID: 5772213384259311601} + - component: {fileID: 991379888455735987} + - component: {fileID: 4997972876258875591} + m_Layer: 0 + m_Name: Background + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &2209662680683579746 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7815598869519633400} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.15294118, g: 0.15294118, b: 0.15294118, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -3108347808307121293, guid: 64f884351318b694f942625580e64a8b, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!224 &2618178220305244257 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2050538972765576138} + - {fileID: 7986129806770060219} + - {fileID: 6384598719168717456} + m_Father: {fileID: 553160448} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &3820270227358681204 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6495051821200032732} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7609522242405783500} + m_Father: {fileID: 410814769} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &4997972876258875591 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2145288346152231366} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 30, y: 30, z: 30, w: 30} +--- !u!95 &5140576998914580422 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!222 &5772213384259311601 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2145288346152231366} + m_CullTransparentMesh: 1 +--- !u!224 &6384598719168717456 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842874036736877360} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2618178220305244257} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 14} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &6495051821200032732 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3820270227358681204} + m_Layer: 0 + m_Name: Content + m_TagString: Bulle3D + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &6826917670049334543 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2050538972765576138} + - component: {fileID: 7747662451683816589} + - component: {fileID: 6969549368977048900} + - component: {fileID: 265421015273259246} + m_Layer: 0 + m_Name: Background + m_TagString: QDSUIAccentColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &6842874036736877360 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6384598719168717456} + - component: {fileID: 739955594076292417} + - component: {fileID: 595206483210253712} + m_Layer: 5 + m_Name: Label + m_TagString: QDSUITextInvertedColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &6869810458693193498 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 3 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 0} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &6969549368977048900 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!224 &7609522242405783500 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2145288346152231366} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3820270227358681204} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7747662451683816589 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_CullTransparentMesh: 1 +--- !u!1 &7815598869519633400 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7986129806770060219} + - component: {fileID: 952902941686272513} + - component: {fileID: 2209662680683579746} + m_Layer: 5 + m_Name: Icon + m_TagString: QDSUITextInvertedColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7986129806770060219 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7815598869519633400} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2618178220305244257} + 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: 20, y: 0} + m_SizeDelta: {x: 24, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 203844589} + - {fileID: 1078745744} + - {fileID: 145513991} + - {fileID: 1661708472} + - {fileID: 1619923418} + - {fileID: 1167643603} + - {fileID: 1300854824} + - {fileID: 1994937810} + - {fileID: 1705736408} + - {fileID: 1020060957} + - {fileID: 780759558} + - {fileID: 1331752627} + - {fileID: 478487497} + - {fileID: 1894144129} + - {fileID: 1028478437} + - {fileID: 1897715890} + - {fileID: 1666108642} + - {fileID: 30312108} + - {fileID: 1158020325} + - {fileID: 1589081816} + - {fileID: 1181119901} diff --git a/Assets/Scenes/Interface v3.unity.meta b/Assets/Scenes/Interface v3.unity.meta new file mode 100644 index 0000000..fe31c67 --- /dev/null +++ b/Assets/Scenes/Interface v3.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c6e70315f6619e94dbdbd404406e6c8c +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface v4.unity b/Assets/Scenes/Interface v4.unity new file mode 100644 index 0000000..c8b23d4 --- /dev/null +++ b/Assets/Scenes/Interface v4.unity @@ -0,0 +1,16029 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 10 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 2100000, guid: 6f60649bffa7f434bb677b326c6dafe3, type: 2} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 2048 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 112000000, guid: 7f56509f9ec923345b99bca201b563cd, type: 2} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &932232 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 932233} + - component: {fileID: 932234} + m_Layer: 5 + m_Name: EcrireAvecVoix + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &932233 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932232} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1986964835} + - {fileID: 59281703} + m_Father: {fileID: 1917629182} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 400, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &932234 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932232} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &5398280 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!225 &5398288 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5398280} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!1 &8300465 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8300466} + - component: {fileID: 8300467} + m_Layer: 5 + m_Name: Item + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8300466 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8300465} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 918401624} + - {fileID: 1062745315} + - {fileID: 610501580} + m_Father: {fileID: 943391151} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &8300467 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8300465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 918401625} + toggleTransition: 1 + graphic: {fileID: 1062745316} + m_Group: {fileID: 0} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 1 +--- !u!1 &30312106 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 30312108} + - component: {fileID: 30312107} + m_Layer: 0 + m_Name: Historique + m_TagString: HistoriqueMsg + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &30312107 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 30312106} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 1 + m_Spacing: 30 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!224 &30312108 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 30312106} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 545897469} + - {fileID: 1094517601} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 400, y: 400} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &38209876 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 38209877} + - component: {fileID: 38209878} + m_Layer: 0 + m_Name: ConteneurBoutonsHorizontal + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &38209877 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 38209876} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1663843239} + - {fileID: 1884291089} + m_Father: {fileID: 1814499594} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &38209878 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 38209876} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 10 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &59281702 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 59281703} + - component: {fileID: 59281705} + - component: {fileID: 59281704} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &59281703 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 59281702} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 932233} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 300, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &59281704 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 59281702} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "\xC9crire avec la voix" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 25 + m_fontSizeBase: 25 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &59281705 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 59281702} + m_CullTransparentMesh: 1 +--- !u!1 &61483681 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 61483682} + - component: {fileID: 61483685} + - component: {fileID: 61483684} + - component: {fileID: 61483683} + m_Layer: 0 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &61483682 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61483681} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 166660090} + 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: 0.5, y: 0.5} +--- !u!114 &61483683 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61483681} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 30, y: 30, z: 30, w: 30} +--- !u!114 &61483684 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61483681} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: a8b3963696820314da0fd98d357bebfe, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &61483685 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61483681} + m_CullTransparentMesh: 1 +--- !u!1 &77833129 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 77833130} + - component: {fileID: 77833132} + - component: {fileID: 77833131} + m_Layer: 0 + m_Name: LeftEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &77833130 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 77833129} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &77833131 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 77833129} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!20 &77833132 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 77833129} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 1 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!1001 &90010865 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1875844688} + m_Modifications: + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 77833130} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 1260653749} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 620957629} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 77833130} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 1260653749} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 620957629} + - target: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_Name + value: '[BuildingBlock] OVRInteractionComprehensive' + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerEyes + value: + objectReference: {fileID: 620957632} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerOrigin + value: + objectReference: {fileID: 1875844688} + - target: {fileID: 6267690530596161800, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _ovrCameraRig + value: + objectReference: {fileID: 1875844689} + m_RemovedComponents: [] + m_RemovedGameObjects: + - {fileID: 4604000520904607249, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + insertIndex: 1 + addedObject: {fileID: 90010868} + m_SourcePrefab: {fileID: 100100000, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} +--- !u!4 &90010866 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 90010865} + m_PrefabAsset: {fileID: 0} +--- !u!1 &90010867 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 90010865} + m_PrefabAsset: {fileID: 0} +--- !u!114 &90010868 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 90010867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: 81f55626-5fad-45e9-a1df-184f330da7ba + instanceId: 332e0e8a-fb58-4fa7-addf-6b8d3946ab19 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: 2063f481-1b63-4eda-9ee8-a00df98536bc + _installationVariants: [] +--- !u!4 &104161877 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + m_PrefabInstance: {fileID: 444503454} + m_PrefabAsset: {fileID: 0} +--- !u!1 &108285111 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 108285112} + m_Layer: 0 + m_Name: LeftHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &108285112 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 108285111} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &111316892 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 111316893} + - component: {fileID: 111316895} + - component: {fileID: 111316894} + m_Layer: 5 + m_Name: Fleche + m_TagString: FlecheBulleTexte + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &111316893 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 111316892} + m_LocalRotation: {x: 0, y: 0, z: -0.38268343, w: 0.92387956} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1377208421} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -45} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -25} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &111316894 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 111316892} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: b7ce72d64cd2ebd4eae63bae6d91e671, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &111316895 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 111316892} + m_CullTransparentMesh: 1 +--- !u!1 &123849439 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 123849440} + - component: {fileID: 123849443} + - component: {fileID: 123849442} + - component: {fileID: 123849441} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &123849440 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 123849439} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1242248374} + m_Father: {fileID: 545897469} + 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: 0.5, y: 0.5} +--- !u!114 &123849441 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 123849439} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &123849442 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 123849439} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 545897468} +--- !u!114 &123849443 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 123849439} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 123849442} + _surface: {fileID: 1242248377} + _selectSurface: {fileID: 1242248378} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &145513987 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 145513991} + - component: {fileID: 145513990} + - component: {fileID: 145513989} + - component: {fileID: 145513988} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &145513988 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2518c50cb3fc6a6458d4b743c2f69c7d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + _useInitialPressPositionForDrag: 1 + _exclusiveMode: 1 +--- !u!114 &145513989 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8f1a9a1d119a5944aacfb87d1ec283a2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + rayTransform: {fileID: 90010866} + m_Cursor: {fileID: 0} + joyPadClickButton: 1 + gazeClickKey: 32 + performSphereCastForGazepointer: 0 + useRightStickScroll: 1 + rightStickDeadZone: 0.15 + useSwipeScroll: 1 + swipeDragThreshold: 2 + swipeDragScale: 1 + InvertSwipeXAxis: 0 + angleDragThreshold: 1 + m_SpherecastRadius: 1 + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_AllowActivationOnMobileDevice: 1 +--- !u!114 &145513990 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &145513991 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &145671442 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 145671443} + - component: {fileID: 145671445} + - component: {fileID: 145671444} + m_Layer: 5 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &145671443 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145671442} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 409940174} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -7.5, y: -0.5} + m_SizeDelta: {x: -35, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &145671444 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145671442} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Fran\xE7ais" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &145671445 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145671442} + m_CullTransparentMesh: 1 +--- !u!1 &166660089 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 166660090} + m_Layer: 0 + m_Name: Content + m_TagString: Bulle3D + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &166660090 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 166660089} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 61483682} + m_Father: {fileID: 1542799701} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1001 &180938845 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1472196242} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.x + value: 0.005 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.y + value: 0.005 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.z + value: 0.005 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.x + value: 42.950542 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.y + value: 177.69196 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.z + value: 392.6208 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5074138163107441018, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -3922660605386920464, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 186216269727547346, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 445282606480971649, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 734925686953037275, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Name + value: AstroDomeTower + objectReference: {fileID: 0} + - target: {fileID: 2290938084834409403, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2463113813996302265, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: + - {fileID: -38332879115174756, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: -1698393537433210792, guid: cae085d13537bd24284ac549e6c37828, type: 3} + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + insertIndex: -1 + addedObject: {fileID: 1693996084} + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: cae085d13537bd24284ac549e6c37828, type: 3} +--- !u!1 &201805383 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 201805384} + - component: {fileID: 201805387} + - component: {fileID: 201805386} + - component: {fileID: 201805385} + m_Layer: 5 + m_Name: Scrollbar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &201805384 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 201805383} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 583361828} + m_Father: {fileID: 500101350} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &201805385 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 201805383} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1992139704} + m_HandleRect: {fileID: 1992139703} + m_Direction: 2 + m_Value: 0 + m_Size: 0.2 + m_NumberOfSteps: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &201805386 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 201805383} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &201805387 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 201805383} + m_CullTransparentMesh: 1 +--- !u!1 &203844586 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 203844589} + - component: {fileID: 203844588} + - component: {fileID: 203844587} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &203844587 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Version: 3 + m_UsePipelineSettings: 1 + m_AdditionalLightsShadowResolutionTier: 2 + m_LightLayerMask: 1 + m_RenderingLayers: 1 + m_CustomShadowLayers: 0 + m_ShadowLayerMask: 1 + m_ShadowRenderingLayers: 1 + m_LightCookieSize: {x: 1, y: 1} + m_LightCookieOffset: {x: 0, y: 0} + m_SoftShadowQuality: 0 +--- !u!108 &203844588 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + m_Enabled: 1 + serializedVersion: 11 + m_Type: 1 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ForceVisible: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 + m_LightUnit: 1 + m_LuxAtDistance: 1 + m_EnableSpotReflector: 1 +--- !u!4 &203844589 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + serializedVersion: 2 + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &231991132 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 231991133} + - component: {fileID: 231991137} + - component: {fileID: 231991136} + - component: {fileID: 231991135} + - component: {fileID: 231991134} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &231991133 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231991132} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1882321118} + 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: 0.5, y: 0.5} +--- !u!114 &231991134 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231991132} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 231991135} +--- !u!114 &231991135 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231991132} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 30, y: 30, z: 0.01} +--- !u!114 &231991136 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231991132} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 231991137} + _clippers: + - {fileID: 231991135} +--- !u!114 &231991137 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231991132} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &236672735 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 236672736} + - component: {fileID: 236672738} + - component: {fileID: 236672737} + m_Layer: 5 + m_Name: TexteEnvoyer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &236672736 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236672735} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1884291089} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &236672737 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236672735} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Envoyer + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &236672738 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236672735} + m_CullTransparentMesh: 1 +--- !u!1 &236943463 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 236943464} + - component: {fileID: 236943467} + - component: {fileID: 236943466} + - component: {fileID: 236943465} + m_Layer: 5 + m_Name: IconMicro + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &236943464 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236943463} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1663843239} + 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: 15, y: 0} + m_SizeDelta: {x: 30, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &236943465 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236943463} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &236943466 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236943463} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 51835710957564654, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &236943467 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236943463} + m_CullTransparentMesh: 1 +--- !u!1 &256965889 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 256965890} + m_Layer: 0 + m_Name: RightHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &256965890 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 256965889} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 736431423} + - {fileID: 1981779245} + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &267046850 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 267046851} + - component: {fileID: 267046853} + - component: {fileID: 267046852} + m_Layer: 0 + m_Name: Titre + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &267046851 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 267046850} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &267046852 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 267046850} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Pr\xE9f\xE9rences" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 35.8 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &267046853 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 267046850} + m_CullTransparentMesh: 1 +--- !u!1 &270107574 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 270107575} + - component: {fileID: 270107578} + - component: {fileID: 270107577} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionRecherche + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &270107575 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270107574} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 431439149} + m_Father: {fileID: 1850278314} + 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: 0.5, y: 0.5} +--- !u!114 &270107577 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270107574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1850278318} +--- !u!114 &270107578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270107574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 270107577} + _surface: {fileID: 431439152} + _selectSurface: {fileID: 431439153} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1001 &273128013 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 898336105} + m_Modifications: + - target: {fileID: 3349346243019873864, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_IsOn + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Name + value: ToggleButton_Switch + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + insertIndex: -1 + addedObject: {fileID: 273128016} + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &273128014 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 273128013} + m_PrefabAsset: {fileID: 0} +--- !u!1 &273128015 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 273128013} + m_PrefabAsset: {fileID: 0} +--- !u!114 &273128016 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 273128015} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 426a9e0245cc0d041be77fb9f705fb86, type: 3} + m_Name: + m_EditorClassIdentifier: + fonction: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 478487499} + m_TargetAssemblyTypeName: EnumFonctionsPreferences, Assembly-CSharp + m_MethodName: ChangerMode + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!1 &294728352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 294728353} + - component: {fileID: 294728357} + - component: {fileID: 294728356} + - component: {fileID: 294728355} + - component: {fileID: 294728354} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &294728353 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1346614466} + 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: 0.5, y: 0.5} +--- !u!114 &294728354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 294728355} +--- !u!114 &294728355 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 160, y: 30, z: 0.01} +--- !u!114 &294728356 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 294728357} + _clippers: + - {fileID: 294728355} +--- !u!114 &294728357 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &309614184 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 309614185} + m_Layer: 0 + m_Name: Content + m_TagString: Bulle3D + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &309614185 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 309614184} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1541343604} + m_Father: {fileID: 460675307} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &322004674 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 322004675} + - component: {fileID: 322004677} + - component: {fileID: 322004676} + m_Layer: 5 + m_Name: TexteParametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &322004675 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322004674} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &322004676 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322004674} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Pr\xE9f\xE9rences" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &322004677 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322004674} + m_CullTransparentMesh: 1 +--- !u!1001 &357553639 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1057650665} + m_Modifications: + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478820160061, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735817, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479857422798, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_text + value: Rechercher un sujet + objectReference: {fileID: 0} + - target: {fileID: 1121483479857422798, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 1121483479857422798, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025239, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_Name + value: SearchBar + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080138, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_text + value: Hello the world. + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080138, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1954593979210265646, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_Layer + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 6685184096729060916, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + propertyPath: m_Layer + value: 3 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} +--- !u!224 &357553640 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} + m_PrefabInstance: {fileID: 357553639} + m_PrefabAsset: {fileID: 0} +--- !u!1 &364059296 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 364059297} + - component: {fileID: 364059299} + - component: {fileID: 364059298} + m_Layer: 7 + m_Name: TextePrefab + m_TagString: TextePrefab + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &364059297 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 364059296} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2045732716} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &364059298 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 364059296} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Historique + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 28 + m_fontSizeBase: 28 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &364059299 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 364059296} + m_CullTransparentMesh: 1 +--- !u!1 &368017725 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 368017726} + - component: {fileID: 368017729} + - component: {fileID: 368017728} + - component: {fileID: 368017727} + m_Layer: 5 + m_Name: IconEnvoyer + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &368017726 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 368017725} + m_LocalRotation: {x: 0, y: 0, z: 0.7071068, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1884291089} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 90} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 15, y: 0} + m_SizeDelta: {x: 30, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &368017727 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 368017725} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &368017728 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 368017725} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 5755064874296045133, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &368017729 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 368017725} + m_CullTransparentMesh: 1 +--- !u!1 &395946939 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 395946940} + - component: {fileID: 395946943} + - component: {fileID: 395946942} + - component: {fileID: 395946941} + m_Layer: 0 + m_Name: APParametres + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &395946940 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &395946941 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &395946942 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &395946943 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_CullTransparentMesh: 1 +--- !u!1 &404304175 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 404304176} + - component: {fileID: 404304177} + m_Layer: 0 + m_Name: TTSSpeakerAudio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &404304176 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 404304175} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1134725728} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!82 &404304177 +AudioSource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 404304175} + m_Enabled: 1 + serializedVersion: 4 + OutputAudioMixerGroup: {fileID: 0} + m_audioClip: {fileID: 0} + m_Resource: {fileID: 0} + m_PlayOnAwake: 0 + m_Volume: 1 + m_Pitch: 1 + Loop: 0 + Mute: 0 + Spatialize: 0 + SpatializePostEffects: 0 + Priority: 128 + DopplerLevel: 1 + MinDistance: 1 + MaxDistance: 500 + Pan2D: 0 + rolloffMode: 0 + BypassEffects: 0 + BypassListenerEffects: 0 + BypassReverbZones: 0 + rolloffCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + panLevelCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + spreadCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + reverbZoneMixCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!1 &406113352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 406113353} + - component: {fileID: 406113355} + - component: {fileID: 406113354} + m_Layer: 5 + m_Name: TexteRecherche + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &406113353 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406113352} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1850278314} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &406113354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406113352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Rechercher + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &406113355 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406113352} + m_CullTransparentMesh: 1 +--- !u!1 &409940173 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 409940174} + - component: {fileID: 409940177} + - component: {fileID: 409940176} + - component: {fileID: 409940175} + m_Layer: 5 + m_Name: Choix + m_TagString: OptionDD + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &409940174 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 409940173} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 145671443} + - {fileID: 1752735683} + - {fileID: 500101350} + m_Father: {fileID: 644900613} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &409940175 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 409940173} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b743370ac3e4ec2a1668f5455a8ef8a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 409940176} + m_Template: {fileID: 500101350} + m_CaptionText: {fileID: 145671444} + m_CaptionImage: {fileID: 0} + m_Placeholder: {fileID: 0} + m_ItemText: {fileID: 610501581} + m_ItemImage: {fileID: 0} + m_Value: 0 + m_MultiSelect: 0 + m_Options: + m_Options: + - m_Text: "Fran\xE7ais" + m_Image: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + - m_Text: English + m_Image: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + - m_Text: Italiano + m_Image: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + - m_Text: "Espa\xF1ol" + m_Image: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + - m_Text: Deutsch + m_Image: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_AlphaFadeSpeed: 0.15 +--- !u!114 &409940176 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 409940173} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &409940177 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 409940173} + m_CullTransparentMesh: 1 +--- !u!1 &413364813 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 413364814} + - component: {fileID: 413364817} + - component: {fileID: 413364816} + - component: {fileID: 413364815} + m_Layer: 0 + m_Name: APQuitter + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &413364814 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1063242543} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &413364815 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &413364816 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &413364817 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_CullTransparentMesh: 1 +--- !u!1 &431439148 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 431439149} + - component: {fileID: 431439153} + - component: {fileID: 431439152} + - component: {fileID: 431439151} + - component: {fileID: 431439150} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &431439149 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 270107575} + 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: 0.5, y: 0.5} +--- !u!114 &431439150 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 431439151} +--- !u!114 &431439151 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 100, y: 100, z: 0.01} +--- !u!114 &431439152 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 431439153} + _clippers: + - {fileID: 431439151} +--- !u!114 &431439153 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &441898667 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 441898668} + - component: {fileID: 441898671} + - component: {fileID: 441898669} + - component: {fileID: 441898672} + - component: {fileID: 441898675} + - component: {fileID: 441898674} + - component: {fileID: 441898676} + m_Layer: 5 + m_Name: Parametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &441898668 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 395946940} + - {fileID: 774668364} + - {fileID: 1268310364} + - {fileID: 322004675} + m_Father: {fileID: 1020060957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -0.15} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &441898669 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 395946942} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &441898671 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_CullTransparentMesh: 1 +--- !u!223 &441898672 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &441898674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 100 + largeur_max: 500 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!114 &441898675 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 1268310367} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 441898674} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: AgrandirMenu + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 441898674} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerPrefs + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 780759557} + m_TargetAssemblyTypeName: ComportementBoutonsMenu, Assembly-CSharp + m_MethodName: BoutonClique + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &441898676 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!1001 &444503454 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1472196242} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.x + value: 0.0050000004 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.y + value: 0.005 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.z + value: 0.0050000004 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.x + value: 42.950542 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.y + value: 176.69196 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.z + value: 392.6208 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.w + value: 0.53729963 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.y + value: 0.8433915 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 115 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Name + value: AstroDomeTowerAjouts + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: + - {fileID: -8863915555519361675, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: 8915814645257020977, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: 6258596943439289011, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: 3865866970745896531, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: -8671160763535159996, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: -6452144440209470663, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: 8079614603090016183, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: 8503934962033130527, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: -38332879115174756, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: -1698393537433210792, guid: cae085d13537bd24284ac549e6c37828, type: 3} + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: cae085d13537bd24284ac549e6c37828, type: 3} +--- !u!1 &460675302 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 460675307} + - component: {fileID: 460675306} + - component: {fileID: 460675305} + - component: {fileID: 460675304} + - component: {fileID: 460675303} + m_Layer: 5 + m_Name: PourBulleTexte + m_TagString: Pour + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &460675303 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81607e97867670043b0f88a7850a3b78, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &460675304 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &460675305 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &460675306 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &460675307 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.01, y: 0.01, z: 0.01} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 309614185} + - {fileID: 1792859815} + - {fileID: 1238373959} + m_Father: {fileID: 1181119902} + 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: 3.5} + m_SizeDelta: {x: 500, y: 200} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &478487495 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 478487497} + - component: {fileID: 478487496} + - component: {fileID: 478487499} + m_Layer: 0 + m_Name: ComportementFenetrePreferences + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &478487496 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 478487495} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 40032d926c1a4a84aa451aaa2a114b53, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &478487497 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 478487495} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: -0.15, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &478487499 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 478487495} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ef2f097cac0359b478ae44e2512c8f4c, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &484739071 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 484739072} + - component: {fileID: 484739075} + - component: {fileID: 484739074} + - component: {fileID: 484739073} + m_Layer: 0 + m_Name: APMicro + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &484739072 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 484739071} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1663843239} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &484739073 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 484739071} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &484739074 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 484739071} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &484739075 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 484739071} + m_CullTransparentMesh: 1 +--- !u!1 &499297136 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 499297137} + - component: {fileID: 499297138} + m_Layer: 5 + m_Name: Text Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &499297137 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499297136} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 674047960} + - {fileID: 1104579700} + m_Father: {fileID: 1994937810} + 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.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &499297138 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499297136} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: {x: -8, y: -5, z: -8, w: -5} + m_Softness: {x: 0, y: 0} +--- !u!1 &499413739 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 499413740} + - component: {fileID: 499413742} + - component: {fileID: 499413741} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &499413740 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499413739} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 898336105} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &499413741 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499413739} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Mode jour + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 25 + m_fontSizeBase: 25 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &499413742 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499413739} + m_CullTransparentMesh: 1 +--- !u!1 &500101349 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 500101350} + - component: {fileID: 500101353} + - component: {fileID: 500101352} + - component: {fileID: 500101351} + m_Layer: 5 + m_Name: Template + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &500101350 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 500101349} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1186651504} + - {fileID: 201805384} + m_Father: {fileID: 409940174} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 2} + m_SizeDelta: {x: 0, y: 150} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &500101351 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 500101349} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 943391151} + m_Horizontal: 0 + m_Vertical: 1 + m_MovementType: 2 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 1186651504} + m_HorizontalScrollbar: {fileID: 0} + m_VerticalScrollbar: {fileID: 201805385} + m_HorizontalScrollbarVisibility: 0 + m_VerticalScrollbarVisibility: 2 + m_HorizontalScrollbarSpacing: 0 + m_VerticalScrollbarSpacing: -3 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &500101352 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 500101349} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &500101353 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 500101349} + m_CullTransparentMesh: 1 +--- !u!1 &510163432 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 510163433} + m_Layer: 0 + m_Name: RightHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &510163433 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 510163432} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &517120271 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 517120272} + - component: {fileID: 517120276} + - component: {fileID: 517120275} + - component: {fileID: 517120274} + - component: {fileID: 517120273} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &517120272 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 635168671} + 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: 0.5, y: 0.5} +--- !u!114 &517120273 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 517120274} +--- !u!114 &517120274 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 100, y: 100, z: 0.01} +--- !u!114 &517120275 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 517120276} + _clippers: + - {fileID: 517120274} +--- !u!114 &517120276 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &530733932 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 530733933} + - component: {fileID: 530733936} + - component: {fileID: 530733935} + - component: {fileID: 530733934} + m_Layer: 7 + m_Name: Viewport + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &530733933 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530733932} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2045732716} + m_Father: {fileID: 2048535657} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &530733934 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530733932} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 0 +--- !u!114 &530733935 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530733932} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &530733936 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530733932} + m_CullTransparentMesh: 1 +--- !u!1 &533471964 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 533471965} + - component: {fileID: 533471968} + - component: {fileID: 533471967} + - component: {fileID: 533471966} + m_Layer: 5 + m_Name: IconQuitter + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &533471965 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1063242543} + 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: 55, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &533471966 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &533471967 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -8278380930669122163, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &533471968 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_CullTransparentMesh: 1 +--- !u!1 &545897465 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 545897469} + - component: {fileID: 545897468} + - component: {fileID: 545897466} + m_Layer: 7 + m_Name: HistoriqueDesMessages + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &545897466 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545897465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!223 &545897468 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545897465} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &545897469 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545897465} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2048535657} + - {fileID: 2011393429} + - {fileID: 123849440} + m_Father: {fileID: 30312108} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 300} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &546323936 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 546323937} + - component: {fileID: 546323939} + - component: {fileID: 546323938} + m_Layer: 5 + m_Name: FPSTExte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &546323937 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 546323936} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1894144129} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &546323938 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 546323936} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: New Text + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &546323939 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 546323936} + m_CullTransparentMesh: 1 +--- !u!1 &553160447 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 553160448} + - component: {fileID: 553160449} + m_Layer: 5 + m_Name: BoutonsGestionFenetrePrefs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &553160448 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 553160447} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2618178220305244257} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &553160449 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 553160447} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 5 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &564061075 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 564061076} + - component: {fileID: 564061078} + - component: {fileID: 564061077} + m_Layer: 5 + m_Name: TexteMicro + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &564061076 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 564061075} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1663843239} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &564061077 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 564061075} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Micro + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &564061078 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 564061075} + m_CullTransparentMesh: 1 +--- !u!1 &583361827 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 583361828} + m_Layer: 5 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &583361828 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 583361827} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1992139703} + m_Father: {fileID: 201805384} + 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: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &610501579 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 610501580} + - component: {fileID: 610501582} + - component: {fileID: 610501581} + m_Layer: 5 + m_Name: Item Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &610501580 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 610501579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8300466} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 5, y: -0.5} + m_SizeDelta: {x: -30, y: -3} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &610501581 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 610501579} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Option A + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &610501582 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 610501579} + m_CullTransparentMesh: 1 +--- !u!1 &613400026 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 613400027} + m_Layer: 0 + m_Name: LeftHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &613400027 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 613400026} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 787690123} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &620957628 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 620957632} + - component: {fileID: 620957631} + - component: {fileID: 620957629} + - component: {fileID: 620957630} + m_Layer: 0 + m_Name: CenterEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!20 &620957629 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 1000 + field of view: 90 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!114 &620957630 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!81 &620957631 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + m_Enabled: 1 +--- !u!4 &620957632 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &634134236 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 634134237} + m_Layer: 0 + m_Name: LeftHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &634134237 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 634134236} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 771511960} + - {fileID: 787690123} + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &635168670 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 635168671} + - component: {fileID: 635168674} + - component: {fileID: 635168673} + - component: {fileID: 635168672} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionQuitter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &635168671 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 517120272} + m_Father: {fileID: 1063242543} + 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: 0.5, y: 0.5} +--- !u!114 &635168672 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &635168673 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1063242547} +--- !u!114 &635168674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 635168673} + _surface: {fileID: 517120275} + _selectSurface: {fileID: 517120276} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &644900612 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 644900613} + - component: {fileID: 644900614} + m_Layer: 5 + m_Name: ChoixLangue + m_TagString: ChoisirLangue + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &644900613 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 644900612} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1574461988} + - {fileID: 409940174} + m_Father: {fileID: 1917629182} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &644900614 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 644900612} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!4 &656799856 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + m_PrefabInstance: {fileID: 1158020325} + m_PrefabAsset: {fileID: 0} +--- !u!1 &674047956 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 674047960} + - component: {fileID: 674047959} + - component: {fileID: 674047957} + - component: {fileID: 674047958} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &674047957 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Entrez un texte... + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 2150773298 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 2 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!114 &674047958 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!222 &674047959 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_CullTransparentMesh: 1 +--- !u!224 &674047960 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 499297137} + 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: 0.5, y: 0.5} +--- !u!1 &705551162 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 705551164} + - component: {fileID: 705551163} + m_Layer: 0 + m_Name: ManagerTTS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &705551163 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 705551162} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a9515da81d9fdab4e83868e6cadec01a, type: 3} + m_Name: + m_EditorClassIdentifier: + bobSpeaker: {fileID: 1648083964} + caelSpeaker: {fileID: 2003140780} + carlSpeaker: {fileID: 1134725729} +--- !u!4 &705551164 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 705551162} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &730089559 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 730089560} + - component: {fileID: 730089561} + m_Layer: 0 + m_Name: TTSSpeakerAudio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &730089560 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 730089559} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1648083963} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!82 &730089561 +AudioSource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 730089559} + m_Enabled: 1 + serializedVersion: 4 + OutputAudioMixerGroup: {fileID: 0} + m_audioClip: {fileID: 0} + m_Resource: {fileID: 0} + m_PlayOnAwake: 0 + m_Volume: 1 + m_Pitch: 1 + Loop: 0 + Mute: 0 + Spatialize: 0 + SpatializePostEffects: 0 + Priority: 128 + DopplerLevel: 1 + MinDistance: 1 + MaxDistance: 500 + Pan2D: 0 + rolloffMode: 0 + BypassEffects: 0 + BypassListenerEffects: 0 + BypassReverbZones: 0 + rolloffCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + panLevelCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + spreadCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + reverbZoneMixCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!1 &736431422 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 736431423} + m_Layer: 0 + m_Name: RightControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &736431423 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 736431422} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 256965890} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &741102124 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1748189153} + m_Modifications: + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Name + value: ToggleButton_Switch + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &741102125 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 741102124} + m_PrefabAsset: {fileID: 0} +--- !u!1 &741180260 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 741180262} + - component: {fileID: 741180261} + m_Layer: 0 + m_Name: FPS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &741180261 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 741180260} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7dd158344ea9428489f283268329574b, type: 3} + m_Name: + m_EditorClassIdentifier: + fpsText: {fileID: 546323938} +--- !u!4 &741180262 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 741180260} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1894144129} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &771511959 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 771511960} + m_Layer: 0 + m_Name: LeftControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &771511960 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 771511959} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 634134237} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &774668363 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 774668364} + - component: {fileID: 774668367} + - component: {fileID: 774668366} + - component: {fileID: 774668365} + m_Layer: 5 + m_Name: IconParametres + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &774668364 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + 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: 50, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &774668365 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &774668366 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -3014893831786530833, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &774668367 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_CullTransparentMesh: 1 +--- !u!1 &780759556 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 780759558} + - component: {fileID: 780759557} + - component: {fileID: 780759559} + m_Layer: 0 + m_Name: ComportementBoutons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &780759557 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780759556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a7d13754c638b8b438c04ad0cef34e84, type: 3} + m_Name: + m_EditorClassIdentifier: + boutons: + - {fileID: 441898668} + - {fileID: 1850278314} + - {fileID: 1063242543} + rayon: 0.35 + duree_deplacement: 0.5 +--- !u!4 &780759558 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780759556} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.24000001, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &780759559 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780759556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fdd9ec74efce24c4ebf3d3b203c97f0a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &787690122 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 787690123} + m_Layer: 0 + m_Name: LeftControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &787690123 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 787690122} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 613400027} + m_Father: {fileID: 634134237} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &810782607 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 810782608} + m_Layer: 0 + m_Name: Content + m_TagString: Bulle3D + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &810782608 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 810782607} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1757504754} + m_Father: {fileID: 1377208421} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &848606436 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 1986964834} + m_PrefabAsset: {fileID: 0} +--- !u!1 &871160222 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!114 &871160224 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 871160222} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bc560ecd6936ee440ac2a92f970db479, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &898336104 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 898336105} + - component: {fileID: 898336106} + m_Layer: 5 + m_Name: Mode(Jour/Nuit) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &898336105 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 898336104} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 273128014} + - {fileID: 499413740} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &898336106 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 898336104} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &918401623 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 918401624} + - component: {fileID: 918401626} + - component: {fileID: 918401625} + m_Layer: 5 + m_Name: Item Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &918401624 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 918401623} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8300466} + 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: 0.5, y: 0.5} +--- !u!114 &918401625 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 918401623} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &918401626 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 918401623} + m_CullTransparentMesh: 1 +--- !u!1 &943391150 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 943391151} + m_Layer: 5 + m_Name: Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &943391151 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 943391150} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8300466} + m_Father: {fileID: 1186651504} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 28} + m_Pivot: {x: 0.5, y: 1} +--- !u!1 &992767194 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 992767195} + - component: {fileID: 992767197} + - component: {fileID: 992767196} + m_Layer: 5 + m_Name: AccueilTexte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &992767195 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 992767194} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1377208421} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &992767196 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 992767194} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Accueil (txt). + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 44.75 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &992767197 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 992767194} + m_CullTransparentMesh: 1 +--- !u!1 &1013904230 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1013904231} + - component: {fileID: 1013904234} + - component: {fileID: 1013904233} + - component: {fileID: 1013904232} + m_Layer: 0 + m_Name: APRecherche + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1013904231 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1850278314} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1013904232 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &1013904233 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1013904234 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_CullTransparentMesh: 1 +--- !u!1 &1020060953 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1020060957} + - component: {fileID: 1020060956} + - component: {fileID: 1020060955} + - component: {fileID: 1020060958} + m_Layer: 5 + m_Name: CanvasBoutons(Menu) + m_TagString: MenuBoutons + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1020060955 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1020060956 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 0 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1020060957 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 441898668} + - {fileID: 1063242543} + - {fileID: 1850278314} + m_Father: {fileID: 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: 0} + m_SizeDelta: {x: 0.48, y: 0.45} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1020060958 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b6d529719047c6546bdedb62226bed83, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1001 &1057650662 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.y + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Name + value: HUD + objectReference: {fileID: 0} + - target: {fileID: 3080749367930436606, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Layer + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5864928163828890914, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Layer + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Layer + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 8599484639390949400, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Layer + value: 3 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 1456884282} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 357553640} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 1443887727} + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 1057650667} + - targetCorrespondingSourceObject: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 1057650668} + m_SourcePrefab: {fileID: 100100000, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} +--- !u!1 &1057650663 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1057650662} + m_PrefabAsset: {fileID: 0} +--- !u!224 &1057650664 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8871935754367020192, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1057650662} + m_PrefabAsset: {fileID: 0} +--- !u!224 &1057650665 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1057650662} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1057650666 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1057650662} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1057650667 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1057650663} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8dbbc65f98bedc9459b94a96e3eaf813, type: 3} + m_Name: + m_EditorClassIdentifier: + m_window: {fileID: 1057650664} + controller: {fileID: 771511960} +--- !u!114 &1057650668 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1057650666} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ee10491ef6d5d1d49a270cf6b09bdc19, type: 3} + m_Name: + m_EditorClassIdentifier: + _enableMipmapping: 0 + _dynamicResolution: 1 + _redrawResolutionThreshold: 2147483647 + rectTransform: {fileID: 1057650664} + maxTextureSize: 2048 + manualRedraw: 0 + renderInterval: 1 + renderIntervalFrameOffset: 0 + expensive: 0 + layer: 5 + opacity: 2 + shape: 0 + curveRadius: 1 + overlapMask: 0 + overlayType: 1 + _overlayEnabled: 1 +--- !u!1 &1062745314 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1062745315} + - component: {fileID: 1062745317} + - component: {fileID: 1062745316} + m_Layer: 5 + m_Name: Item Checkmark + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1062745315 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1062745314} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8300466} + 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: 10, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1062745316 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1062745314} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1062745317 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1062745314} + m_CullTransparentMesh: 1 +--- !u!1 &1063242542 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1063242543} + - component: {fileID: 1063242546} + - component: {fileID: 1063242544} + - component: {fileID: 1063242547} + - component: {fileID: 1063242548} + - component: {fileID: 1063242550} + - component: {fileID: 1063242549} + m_Layer: 5 + m_Name: Quitter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1063242543 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 635168671} + - {fileID: 413364814} + - {fileID: 533471965} + - {fileID: 1837925294} + m_Father: {fileID: 1020060957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -0.15} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1063242544 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 413364816} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1063242546 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_CullTransparentMesh: 1 +--- !u!223 &1063242547 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1063242548 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1063242549 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 100 + largeur_max: 500 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!114 &1063242550 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 635168674} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1063242549} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: AgrandirMenu + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1063242549} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerQuitter + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 780759557} + m_TargetAssemblyTypeName: ComportementAnimationBoutonsMenu, Assembly-CSharp + m_MethodName: BoutonClique + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &1084123205 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1084123206} + m_Layer: 0 + m_Name: Personnages + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1084123206 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1084123205} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -42.950542, y: -177.69196, z: -392.6208} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 656799856} + - {fileID: 1589081817} + - {fileID: 1181119902} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1088058506 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1088058507} + - component: {fileID: 1088058509} + - component: {fileID: 1088058508} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1088058507 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1088058506} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1748189153} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1088058508 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1088058506} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Mon Option + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 34.45 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1088058509 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1088058506} + m_CullTransparentMesh: 1 +--- !u!1 &1094517600 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1094517601} + - component: {fileID: 1094517605} + - component: {fileID: 1094517604} + - component: {fileID: 1094517603} + - component: {fileID: 1094517608} + - component: {fileID: 1094517607} + - component: {fileID: 1094517606} + m_Layer: 0 + m_Name: BarreDeplacement + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1094517601 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1487879533} + m_Father: {fileID: 30312108} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 5} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1094517603 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.78113204, g: 0.78113204, b: 0.78113204, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!223 &1094517604 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 0 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!222 &1094517605 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_CullTransparentMesh: 1 +--- !u!65 &1094517606 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 100, y: 25, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1094517607 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 30312108} + _maxGrabPoints: -1 + _rigidbody: {fileID: 1094517608} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &1094517608 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!1 &1096578847 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1096578848} + m_Layer: 0 + m_Name: TrackingSpace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1096578848 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1096578847} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 77833130} + - {fileID: 620957632} + - {fileID: 1260653749} + - {fileID: 2087978707} + - {fileID: 634134237} + - {fileID: 256965890} + - {fileID: 108285112} + - {fileID: 510163433} + m_Father: {fileID: 1875844688} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1104579697 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1104579700} + - component: {fileID: 1104579699} + - component: {fileID: 1104579698} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1104579698 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104579697} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "\u200B" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 3 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1104579699 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104579697} + m_CullTransparentMesh: 1 +--- !u!224 &1104579700 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104579697} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 499297137} + 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: 0.5, y: 0.5} +--- !u!1 &1134725727 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1134725728} + - component: {fileID: 1134725729} + m_Layer: 0 + m_Name: ContreTTS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1134725728 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1134725727} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 404304176} + m_Father: {fileID: 1552541072} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1134725729 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1134725727} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b15403450229c3a4b8455a61d6143a6d, type: 3} + m_Name: + m_EditorClassIdentifier: + _events: + OnTextPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnTextPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnTextPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackReady: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + _onInit: + m_PersistentCalls: + m_Calls: [] + _onComplete: + m_PersistentCalls: + m_Calls: [] + _onLoadBegin: + m_PersistentCalls: + m_Calls: [] + _onLoadAbort: + m_PersistentCalls: + m_Calls: [] + _onLoadFailed: + m_PersistentCalls: + m_Calls: [] + _onLoadSuccess: + m_PersistentCalls: + m_Calls: [] + _onPlaybackReady: + m_PersistentCalls: + m_Calls: [] + _onPlaybackStart: + m_PersistentCalls: + m_Calls: [] + _onPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + _onPlaybackClipUpdated: + m_PersistentCalls: + m_Calls: [] + _onPlaybackComplete: + m_PersistentCalls: + m_Calls: [] + _onPlaybackQueueBegin: + m_PersistentCalls: + m_Calls: [] + _onPlaybackQueueComplete: + m_PersistentCalls: + m_Calls: [] + OnClipDataQueued: + m_PersistentCalls: + m_Calls: [] + OnClipLoadBegin: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadBegin: + m_PersistentCalls: + m_Calls: [] + OnClipLoadAbort: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadAbort: + m_PersistentCalls: + m_Calls: [] + OnClipLoadFailed: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadFailed: + m_PersistentCalls: + m_Calls: [] + OnClipLoadSuccess: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadSuccess: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackReady: + m_PersistentCalls: + m_Calls: [] + OnStartSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnCancelledSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnFinishedSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + PrependedText: + AppendedText: + _ttsService: {fileID: 1137605303} + presetVoiceID: WIT$CARL + customWitVoiceSettings: + SettingsId: + PrependedText: + AppendedText: + voice: Charlie + style: default + speed: 100 + pitch: 100 + verboseLogging: 0 +--- !u!1 &1137605302 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1137605306} + - component: {fileID: 1137605303} + - component: {fileID: 1137605305} + - component: {fileID: 1137605304} + m_Layer: 0 + m_Name: TTSWitService + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1137605303 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1137605302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a6b3124b830442d45b9f357ff99b152f, type: 3} + m_Name: + m_EditorClassIdentifier: + verboseLogging: 0 + _audioSystem: {fileID: 0} + _runtimeCacheHandler: {fileID: 0} + _diskCacheHandler: {fileID: 0} + _events: + OnClipCreated: + m_PersistentCalls: + m_Calls: [] + OnClipUnloaded: + m_PersistentCalls: + m_Calls: [] + WebRequest: + OnRequestBegin: + m_PersistentCalls: + m_Calls: [] + OnRequestCancel: + m_PersistentCalls: + m_Calls: [] + OnRequestError: + m_PersistentCalls: + m_Calls: [] + OnRequestFirstResponse: + m_PersistentCalls: + m_Calls: [] + OnRequestReady: + m_PersistentCalls: + m_Calls: [] + OnRequestComplete: + m_PersistentCalls: + m_Calls: [] + Stream: + OnStreamBegin: + m_PersistentCalls: + m_Calls: [] + OnStreamReady: + m_PersistentCalls: + m_Calls: [] + OnStreamClipUpdate: + m_PersistentCalls: + m_Calls: [] + OnStreamComplete: + m_PersistentCalls: + m_Calls: [] + OnStreamCancel: + m_PersistentCalls: + m_Calls: [] + OnStreamError: + m_PersistentCalls: + m_Calls: [] + Download: + OnDownloadBegin: + m_PersistentCalls: + m_Calls: [] + OnDownloadSuccess: + m_PersistentCalls: + m_Calls: [] + OnDownloadCancel: + m_PersistentCalls: + m_Calls: [] + OnDownloadError: + m_PersistentCalls: + m_Calls: [] + RequestSettings: + _configuration: {fileID: 11400000, guid: 7d01b1f05a37305448c144e3c27c54fd, type: 2} + audioType: 1 + audioStream: 1 + useEvents: 1 + maxConcurrentRequests: -1 + audioStreamPreloadCount: 5 + audioReadyDuration: 1.5 + audioMaxDuration: 15 + _presetVoiceSettings: + - SettingsId: WIT$BRITISH BUTLER + PrependedText: + AppendedText: + voice: wit$British Butler + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CAEL + PrependedText: + AppendedText: + voice: wit$Cael + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CAM + PrependedText: + AppendedText: + voice: wit$Cam + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CARL + PrependedText: + AppendedText: + voice: wit$Carl + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CARTOON BABY + PrependedText: + AppendedText: + voice: wit$Cartoon Baby + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CARTOON KID + PrependedText: + AppendedText: + voice: wit$Cartoon Kid + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CARTOON VILLAIN + PrependedText: + AppendedText: + voice: wit$Cartoon Villain + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CHARLIE + PrependedText: + AppendedText: + voice: wit$Charlie + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$COCKNEY ACCENT + PrependedText: + AppendedText: + voice: wit$Cockney Accent + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CODY + PrependedText: + AppendedText: + voice: wit$Cody + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$COLIN + PrependedText: + AppendedText: + voice: wit$Colin + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CONNOR + PrependedText: + AppendedText: + voice: wit$Connor + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$COOPER + PrependedText: + AppendedText: + voice: wit$Cooper + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$DISAFFECTED + PrependedText: + AppendedText: + voice: wit$Disaffected + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$HOLLYWOOD + PrependedText: + AppendedText: + voice: wit$Hollywood + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$KENYAN ACCENT + PrependedText: + AppendedText: + voice: wit$Kenyan Accent + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$OVERCONFIDENT + PrependedText: + AppendedText: + voice: wit$Overconfident + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$PIRATE + PrependedText: + AppendedText: + voice: wit$Pirate + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$PROSPECTOR + PrependedText: + AppendedText: + voice: wit$Prospector + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$RAILEY + PrependedText: + AppendedText: + voice: wit$Railey + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$REBECCA + PrependedText: + AppendedText: + voice: wit$Rebecca + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$REMI + PrependedText: + AppendedText: + voice: wit$Remi + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$ROSIE + PrependedText: + AppendedText: + voice: wit$Rosie + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$RUBIE + PrependedText: + AppendedText: + voice: wit$Rubie + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$SOUTHERN ACCENT + PrependedText: + AppendedText: + voice: wit$Southern Accent + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$SURFER + PrependedText: + AppendedText: + voice: wit$Surfer + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$TRENDY + PrependedText: + AppendedText: + voice: wit$Trendy + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$VAMPIRE + PrependedText: + AppendedText: + voice: wit$Vampire + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$WHIMSICAL + PrependedText: + AppendedText: + voice: wit$Whimsical + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$WIZARD + PrependedText: + AppendedText: + voice: wit$Wizard + style: default + speed: 100 + pitch: 100 +--- !u!114 &1137605304 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1137605302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b0ffdd015bcb8ea41bb96f19a723bf7d, type: 3} + m_Name: + m_EditorClassIdentifier: + _diskPath: TTS/ + _defaultSettings: + DiskCacheLocation: 0 + StreamFromDisk: 0 + StreamBufferLength: 5 +--- !u!114 &1137605305 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1137605302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1d60dcb6d02034b4b96284db469db5e3, type: 3} + m_Name: + m_EditorClassIdentifier: + ClipLimit: 0 + ClipCapacity: 5 + RamLimit: 1 + RamCapacity: 3600 +--- !u!4 &1137605306 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1137605302} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1681576835} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1158020325 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1084123206} + m_Modifications: + - target: {fileID: 264558904099048137, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_Name + value: PapiAccueil + objectReference: {fileID: 0} + - target: {fileID: 7215966803302086518, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalScale.x + value: 0.85 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalScale.y + value: 0.85 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalScale.z + value: 0.85 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalPosition.x + value: 42.950542 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalPosition.y + value: 177.79196 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalPosition.z + value: 390.6208 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalRotation.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + insertIndex: -1 + addedObject: {fileID: 1377208421} + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} +--- !u!1 &1167643596 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1167643603} + - component: {fileID: 1167643602} + - component: {fileID: 1167643597} + - component: {fileID: 1167643601} + - component: {fileID: 1167643600} + - component: {fileID: 1167643599} + - component: {fileID: 1167643598} + m_Layer: 0 + m_Name: Debugs + m_TagString: Debug + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1167643597 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Aucun debug \xE0 afficher." + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30.65 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: -53.619247, y: -51.508995, z: 97.61298, w: -3.377018} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!223 &1167643598 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1167643599 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 1167643603} + _maxGrabPoints: -1 + _rigidbody: {fileID: 1167643600} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &1167643600 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!65 &1167643601 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 200, y: 50, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!222 &1167643602 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_CullTransparentMesh: 1 +--- !u!224 &1167643603 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_LocalRotation: {x: -0, y: 0.13052617, z: -0, w: 0.99144495} + m_LocalPosition: {x: 0, y: 0, z: 150} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1715473791} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 154.54816, y: 100} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1001 &1181119901 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1084123206} + m_Modifications: + - target: {fileID: 1341491636947615167, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_Name + value: PapiPour + objectReference: {fileID: 0} + - target: {fileID: 5461402282910689633, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalScale.x + value: 0.85 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalScale.y + value: 0.85 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalScale.z + value: 0.85 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalPosition.x + value: 40.950542 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalPosition.y + value: 177.79196 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalPosition.z + value: 392.6208 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalRotation.w + value: 0.17364825 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalRotation.y + value: 0.9848078 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 160 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + insertIndex: -1 + addedObject: {fileID: 460675307} + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} +--- !u!4 &1181119902 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + m_PrefabInstance: {fileID: 1181119901} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1183177244 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1183177245} + - component: {fileID: 1183177247} + - component: {fileID: 1183177246} + m_Layer: 7 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1183177245 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1183177244} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1624384851} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1183177246 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1183177244} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1183177247 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1183177244} + m_CullTransparentMesh: 1 +--- !u!1 &1186651503 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1186651504} + - component: {fileID: 1186651507} + - component: {fileID: 1186651506} + - component: {fileID: 1186651505} + m_Layer: 5 + m_Name: Viewport + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1186651504 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1186651503} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 943391151} + m_Father: {fileID: 500101350} + 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: -18, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1186651505 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1186651503} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1186651506 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1186651503} + m_CullTransparentMesh: 1 +--- !u!114 &1186651507 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1186651503} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 0 +--- !u!1 &1238373958 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1238373959} + - component: {fileID: 1238373961} + - component: {fileID: 1238373960} + m_Layer: 5 + m_Name: PourTexte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1238373959 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238373958} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 460675307} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1238373960 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238373958} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Pour (txt). + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 44.75 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1238373961 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238373958} + m_CullTransparentMesh: 1 +--- !u!1 &1242248373 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1242248374} + - component: {fileID: 1242248378} + - component: {fileID: 1242248377} + - component: {fileID: 1242248376} + - component: {fileID: 1242248375} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1242248374 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 123849440} + 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: 0.5, y: 0.5} +--- !u!114 &1242248375 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 1242248376} +--- !u!114 &1242248376 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 200, y: 300, z: 0.01} +--- !u!114 &1242248377 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 1242248378} + _clippers: + - {fileID: 1242248376} +--- !u!114 &1242248378 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &1260653748 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1260653749} + - component: {fileID: 1260653751} + - component: {fileID: 1260653750} + m_Layer: 0 + m_Name: RightEyeAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1260653749 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1260653748} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1260653750 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1260653748} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!20 &1260653751 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1260653748} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 2 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!1 &1268310363 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1268310364} + - component: {fileID: 1268310367} + - component: {fileID: 1268310366} + - component: {fileID: 1268310365} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionParametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1268310364 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1342171620} + m_Father: {fileID: 441898668} + 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: 0.5, y: 0.5} +--- !u!114 &1268310365 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1268310366 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 441898672} +--- !u!114 &1268310367 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1268310366} + _surface: {fileID: 1342171623} + _selectSurface: {fileID: 1342171624} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &1272714500 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1272714501} + m_Layer: 0 + m_Name: RightHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1272714501 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1272714500} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1981779245} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1300854822 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1300854824} + - component: {fileID: 1300854823} + m_Layer: 0 + m_Name: Global Volume + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1300854823 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1300854822} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IsGlobal: 1 + priority: 0 + blendDistance: 0 + weight: 1 + sharedProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} +--- !u!4 &1300854824 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1300854822} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1331752627 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.x + value: -5 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1852369632254168283, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Camera + value: + objectReference: {fileID: 620957629} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Name + value: FenetrePreferences + objectReference: {fileID: 0} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_TagString + value: FenetrePrefs + objectReference: {fileID: 0} + - target: {fileID: 3074094648544205015, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Enabled + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Spacing + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Top + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildAlignment + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Left + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Right + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Bottom + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildControlWidth + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildControlHeight + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandWidth + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandHeight + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7881774007595699318, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandWidth + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7881774007595699318, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandHeight + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8688192856564850643, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Material + value: + objectReference: {fileID: 2100000, guid: 3f1a8ea57450bd749a74467129ec5145, type: 2} + - target: {fileID: 8828657145035524727, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Enabled + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 553160448} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 267046851} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 898336105} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 1917629182} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 1748189153} + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 5398288} + - targetCorrespondingSourceObject: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 871160224} + m_SourcePrefab: {fileID: 100100000, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} +--- !u!224 &1331752628 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1342171619 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1342171620} + - component: {fileID: 1342171624} + - component: {fileID: 1342171623} + - component: {fileID: 1342171622} + - component: {fileID: 1342171621} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1342171620 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1268310364} + 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: 0.5, y: 0.5} +--- !u!114 &1342171621 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 1342171622} +--- !u!114 &1342171622 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 100, y: 100, z: 0.01} +--- !u!114 &1342171623 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 1342171624} + _clippers: + - {fileID: 1342171622} +--- !u!114 &1342171624 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &1346614465 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1346614466} + - component: {fileID: 1346614469} + - component: {fileID: 1346614468} + - component: {fileID: 1346614467} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1346614466 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 294728353} + m_Father: {fileID: 1994937810} + 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: 0.5, y: 0.5} +--- !u!114 &1346614467 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1346614468 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1994937811} +--- !u!114 &1346614469 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1346614468} + _surface: {fileID: 294728356} + _selectSurface: {fileID: 294728357} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &1377208420 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1377208421} + - component: {fileID: 1377208425} + - component: {fileID: 1377208424} + - component: {fileID: 1377208423} + - component: {fileID: 1377208422} + m_Layer: 5 + m_Name: AccueilBulleTexte + m_TagString: Accueil + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1377208421 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377208420} + m_LocalRotation: {x: -0, y: 0.9848078, z: -0, w: -0.17364825} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.011764703, y: 0.011764705, z: 0.011764703} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 810782608} + - {fileID: 111316893} + - {fileID: 992767195} + m_Father: {fileID: 656799856} + 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: 3.5} + m_SizeDelta: {x: 500, y: 200} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1377208422 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377208420} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81607e97867670043b0f88a7850a3b78, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1377208423 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377208420} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1377208424 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377208420} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1377208425 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377208420} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &1382312902 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1382312904} + - component: {fileID: 1382312903} + - component: {fileID: 1382312905} + - component: {fileID: 1382312906} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionParametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1382312903 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1382312902} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1382312905} + _surface: {fileID: 1889754843} + _selectSurface: {fileID: 1889754839} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!224 &1382312904 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1382312902} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1889754842} + m_Father: {fileID: 1884291089} + 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: 0.5, y: 0.5} +--- !u!114 &1382312905 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1382312902} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1884291086} +--- !u!114 &1382312906 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1382312902} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1001 &1443887726 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1057650665} + m_Modifications: + - target: {fileID: 432194488499236491, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 432194488499236491, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 432194488499236491, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 432194488499236491, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1091280833212796904, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1091280833212796904, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1091280833212796904, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1091280833212796904, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1277606346344120145, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1277606346344120145, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1277606346344120145, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1277606346344120145, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1285203537061935627, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_text + value: Essai menu dropdown + objectReference: {fileID: 0} + - target: {fileID: 1285203537061935627, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1972731160208842290, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1972731160208842290, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1972731160208842290, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1972731160208842290, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2041855126046419109, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 2548252077271113539, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2548252077271113539, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2548252077271113539, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2548252077271113539, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2579850041761302001, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2579850041761302001, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2837034783756666044, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_Name + value: DropDown1LineTextOnly + objectReference: {fileID: 0} + - target: {fileID: 3377383502143884781, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3377383502143884781, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3377383502143884781, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3377383502143884781, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3477089488176053588, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3477089488176053588, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3477089488176053588, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3477089488176053588, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3996863947086187459, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4444421915889953440, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4450347884500627450, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4450347884500627450, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4450347884500627450, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4450347884500627450, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4687625296869879051, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4687625296869879051, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4687625296869879051, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4687625296869879051, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5352563368107479875, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5352563368107479875, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5352563368107479875, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5352563368107479875, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5516381756077916069, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5516381756077916069, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5516381756077916069, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5516381756077916069, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_SizeDelta.x + value: 200 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_SizeDelta.y + value: 444 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7471340960108371139, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7471340960108371139, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7471340960108371139, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7471340960108371139, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7887489317279530400, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7887489317279530400, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7887489317279530400, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7887489317279530400, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} +--- !u!224 &1443887727 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} + m_PrefabInstance: {fileID: 1443887726} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1456884281 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1456884282} + m_Layer: 5 + m_Name: WindowTitle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1456884282 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1456884281} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2133001018} + m_Father: {fileID: 1057650665} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 15} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1472196241 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1472196242} + m_Layer: 0 + m_Name: Sol + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1472196242 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1472196241} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -42.950542, y: -177.69196, z: -392.6208} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2030833704} + - {fileID: 104161877} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1487879532 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1487879533} + - component: {fileID: 1487879536} + - component: {fileID: 1487879535} + - component: {fileID: 1487879534} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1487879533 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487879532} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1094517601} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1487879534 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487879532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 1094517606} +--- !u!114 &1487879535 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487879532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1487879536 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487879532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1094517607} + _surface: {fileID: 1487879534} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 1487879535} + _tiebreakerScore: 0 +--- !u!1 &1500648815 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1500648816} + - component: {fileID: 1500648819} + - component: {fileID: 1500648818} + - component: {fileID: 1500648817} + m_Layer: 5 + m_Name: IconRecherche + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1500648816 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1850278314} + 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: 50.005085, y: 0} + m_SizeDelta: {x: 100.000015, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1500648817 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &1500648818 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 6338432638553648094, guid: 64f884351318b694f942625580e64a8b, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1500648819 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_CullTransparentMesh: 1 +--- !u!1 &1541343603 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1541343604} + - component: {fileID: 1541343607} + - component: {fileID: 1541343606} + - component: {fileID: 1541343605} + m_Layer: 0 + m_Name: PourBackground + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1541343604 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1541343603} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 309614185} + 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: 0.5, y: 0.5} +--- !u!114 &1541343605 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1541343603} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 30, y: 30, z: 30, w: 30} +--- !u!114 &1541343606 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1541343603} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: a8b3963696820314da0fd98d357bebfe, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1541343607 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1541343603} + m_CullTransparentMesh: 1 +--- !u!1 &1542799696 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1542799701} + - component: {fileID: 1542799700} + - component: {fileID: 1542799699} + - component: {fileID: 1542799698} + - component: {fileID: 1542799697} + m_Layer: 5 + m_Name: ContreBulleTexte + m_TagString: Contre + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1542799697 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81607e97867670043b0f88a7850a3b78, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1542799698 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1542799699 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1542799700 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1542799701 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.01, y: 0.01, z: 0.01} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 166660090} + - {fileID: 1914968693} + - {fileID: 1654463056} + m_Father: {fileID: 1589081817} + 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: 3.5} + m_SizeDelta: {x: 500, y: 200} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1552541071 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1552541072} + m_Layer: 0 + m_Name: ContreVoix + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1552541072 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1552541071} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1134725728} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1574461987 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1574461988} + - component: {fileID: 1574461990} + - component: {fileID: 1574461989} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1574461988 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574461987} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 644900613} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1574461989 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574461987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Langue + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 15 + m_fontSizeBase: 15 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 4 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1574461990 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574461987} + m_CullTransparentMesh: 1 +--- !u!1001 &1589081816 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1084123206} + m_Modifications: + - target: {fileID: 3142672125920960427, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_Name + value: PapiContre + objectReference: {fileID: 0} + - target: {fileID: 5290908748189498107, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalPosition.x + value: 44.950542 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalPosition.y + value: 177.79196 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalPosition.z + value: 392.6208 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalRotation.w + value: 0.17364825 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalRotation.y + value: -0.9848078 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -160 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + insertIndex: -1 + addedObject: {fileID: 1542799701} + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e51f060e5ae20c04895fd4416f923509, type: 3} +--- !u!4 &1589081817 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + m_PrefabInstance: {fileID: 1589081816} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1607579202 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1607579203} + - component: {fileID: 1607579206} + - component: {fileID: 1607579205} + - component: {fileID: 1607579204} + m_Layer: 7 + m_Name: Scrollbar Vertical + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1607579203 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607579202} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1624384851} + m_Father: {fileID: 2048535657} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: -17} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1607579204 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607579202} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1183177246} + m_HandleRect: {fileID: 1183177245} + m_Direction: 2 + m_Value: 1 + m_Size: 1 + m_NumberOfSteps: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1607579205 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607579202} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1607579206 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607579202} + m_CullTransparentMesh: 1 +--- !u!1 &1619923416 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1619923418} + - component: {fileID: 1619923417} + m_Layer: 0 + m_Name: TokenInit + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1619923417 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1619923416} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 883d2ea4411452145a4a4d88824cca26, type: 3} + m_Name: + m_EditorClassIdentifier: + Token: +--- !u!4 &1619923418 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1619923416} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1624384850 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1624384851} + m_Layer: 7 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1624384851 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1624384850} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1183177245} + m_Father: {fileID: 1607579203} + 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: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1648083962 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1648083963} + - component: {fileID: 1648083964} + m_Layer: 0 + m_Name: AccueilTTS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1648083963 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1648083962} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 730089560} + m_Father: {fileID: 2141597736} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1648083964 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1648083962} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b15403450229c3a4b8455a61d6143a6d, type: 3} + m_Name: + m_EditorClassIdentifier: + _events: + OnTextPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnTextPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnTextPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackReady: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + _onInit: + m_PersistentCalls: + m_Calls: [] + _onComplete: + m_PersistentCalls: + m_Calls: [] + _onLoadBegin: + m_PersistentCalls: + m_Calls: [] + _onLoadAbort: + m_PersistentCalls: + m_Calls: [] + _onLoadFailed: + m_PersistentCalls: + m_Calls: [] + _onLoadSuccess: + m_PersistentCalls: + m_Calls: [] + _onPlaybackReady: + m_PersistentCalls: + m_Calls: [] + _onPlaybackStart: + m_PersistentCalls: + m_Calls: [] + _onPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + _onPlaybackClipUpdated: + m_PersistentCalls: + m_Calls: [] + _onPlaybackComplete: + m_PersistentCalls: + m_Calls: [] + _onPlaybackQueueBegin: + m_PersistentCalls: + m_Calls: [] + _onPlaybackQueueComplete: + m_PersistentCalls: + m_Calls: [] + OnClipDataQueued: + m_PersistentCalls: + m_Calls: [] + OnClipLoadBegin: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadBegin: + m_PersistentCalls: + m_Calls: [] + OnClipLoadAbort: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadAbort: + m_PersistentCalls: + m_Calls: [] + OnClipLoadFailed: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadFailed: + m_PersistentCalls: + m_Calls: [] + OnClipLoadSuccess: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadSuccess: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackReady: + m_PersistentCalls: + m_Calls: [] + OnStartSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnCancelledSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnFinishedSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + PrependedText: + AppendedText: + _ttsService: {fileID: 1137605303} + presetVoiceID: WIT$BRITISH BUTLER + customWitVoiceSettings: + SettingsId: + PrependedText: + AppendedText: + voice: Charlie + style: default + speed: 100 + pitch: 100 + verboseLogging: 0 +--- !u!1 &1654463055 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1654463056} + - component: {fileID: 1654463058} + - component: {fileID: 1654463057} + m_Layer: 5 + m_Name: ContreTexte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1654463056 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1654463055} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1542799701} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1654463057 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1654463055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Contre (txt). + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 44.75 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1654463058 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1654463055} + m_CullTransparentMesh: 1 +--- !u!1 &1661708470 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1661708472} + - component: {fileID: 1661708471} + m_Layer: 0 + m_Name: EnvoyerRecevoir + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1661708471 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661708470} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b3a5933ccf77e5b4dac95a07f78b7914, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1661708472 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661708470} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1663843238 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1663843239} + - component: {fileID: 1663843245} + - component: {fileID: 1663843244} + - component: {fileID: 1663843240} + - component: {fileID: 1663843243} + - component: {fileID: 1663843242} + - component: {fileID: 1663843241} + m_Layer: 5 + m_Name: Micro + m_TagString: Micro + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1663843239 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 484739072} + - {fileID: 236943464} + - {fileID: 1882321118} + - {fileID: 564061076} + m_Father: {fileID: 38209877} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 30, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!223 &1663843240 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1663843241 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1663843242 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 30 + largeur_max: 90 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!114 &1663843243 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 1882321121} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1663843242} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Agrandir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1663843242} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: RetrecirMicro + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1663843242} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: OnToggleMicroButton + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 1875844693} + m_TargetAssemblyTypeName: RunWhisper, Assembly-CSharp + m_MethodName: DemarrerEnregistrement + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1663843244 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 484739074} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1663843245 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_CullTransparentMesh: 1 +--- !u!1 &1666108640 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1666108642} + - component: {fileID: 1666108641} + m_Layer: 0 + m_Name: GestionTexte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1666108641 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1666108640} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e7b03c53c16497046bb06b986f119ab5, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1666108642 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1666108640} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1681576834 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1681576835} + m_Layer: 0 + m_Name: TTS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1681576835 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1681576834} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1137605306} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1693996083 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1693996084} + - component: {fileID: 1693996085} + - component: {fileID: 1693996087} + m_Layer: 0 + m_Name: Collisions espace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1693996084 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1693996083} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 200, y: 200, z: 200} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2030833704} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!65 &1693996085 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1693996083} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 140, y: 2, z: 150} + m_Center: {x: 0, y: -15, z: 0} +--- !u!114 &1693996087 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1693996083} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b23de8671ae61064a8eea338dc895c83, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1705736406 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1705736408} + - component: {fileID: 1705736407} + m_Layer: 0 + m_Name: GestionnaireAffichageClientServeur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1705736407 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705736406} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: daf83f5790a1ebc4b85208e164bc7016, type: 3} + m_Name: + m_EditorClassIdentifier: + init_token_client: {fileID: 1619923417} + envoyer_recevoir: {fileID: 1661708471} + DebugsTMP: {fileID: 1167643597} + Entree: {fileID: 1994937809} + delai_entre_deux_msg: 2 + delai_entre_deux_frappes: 0.04 + managerTTS: {fileID: 705551163} + content_historique: {fileID: 2045732716} +--- !u!4 &1705736408 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705736406} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1715473790 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1715473791} + - component: {fileID: 1715473794} + - component: {fileID: 1715473793} + - component: {fileID: 1715473792} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1715473791 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1167643603} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1715473792 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 1167643601} +--- !u!114 &1715473793 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1715473794 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1167643599} + _surface: {fileID: 1715473792} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 1715473793} + _tiebreakerScore: 0 +--- !u!1 &1724459654 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1724459655} + - component: {fileID: 1724459656} + m_Layer: 0 + m_Name: TTSSpeakerAudio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1724459655 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1724459654} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2003140781} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!82 &1724459656 +AudioSource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1724459654} + m_Enabled: 1 + serializedVersion: 4 + OutputAudioMixerGroup: {fileID: 0} + m_audioClip: {fileID: 0} + m_Resource: {fileID: 0} + m_PlayOnAwake: 0 + m_Volume: 1 + m_Pitch: 1 + Loop: 0 + Mute: 0 + Spatialize: 0 + SpatializePostEffects: 0 + Priority: 128 + DopplerLevel: 1 + MinDistance: 1 + MaxDistance: 500 + Pan2D: 0 + rolloffMode: 0 + BypassEffects: 0 + BypassListenerEffects: 0 + BypassReverbZones: 0 + rolloffCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + panLevelCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + spreadCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + reverbZoneMixCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!1 &1748189152 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1748189153} + - component: {fileID: 1748189154} + m_Layer: 5 + m_Name: ConteneurBouton&Texte (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1748189153 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1748189152} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 741102125} + - {fileID: 1088058507} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1748189154 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1748189152} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1752735682 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1752735683} + - component: {fileID: 1752735685} + - component: {fileID: 1752735684} + m_Layer: 5 + m_Name: Arrow + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1752735683 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752735682} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 409940174} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: -15, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1752735684 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752735682} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10915, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1752735685 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752735682} + m_CullTransparentMesh: 1 +--- !u!1 &1757504753 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1757504754} + - component: {fileID: 1757504757} + - component: {fileID: 1757504756} + - component: {fileID: 1757504755} + m_Layer: 0 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1757504754 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757504753} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 810782608} + 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: 0.5, y: 0.5} +--- !u!114 &1757504755 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757504753} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 30, y: 30, z: 30, w: 30} +--- !u!114 &1757504756 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757504753} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: a8b3963696820314da0fd98d357bebfe, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1757504757 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757504753} + m_CullTransparentMesh: 1 +--- !u!1 &1792859814 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1792859815} + - component: {fileID: 1792859817} + - component: {fileID: 1792859816} + m_Layer: 5 + m_Name: Fleche + m_TagString: FlecheBulleTexte + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1792859815 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1792859814} + m_LocalRotation: {x: 0, y: 0, z: -0.38268343, w: 0.92387956} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 460675307} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -45} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -25} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1792859816 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1792859814} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: b7ce72d64cd2ebd4eae63bae6d91e671, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1792859817 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1792859814} + m_CullTransparentMesh: 1 +--- !u!1 &1812993463 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1812993464} + m_Layer: 0 + m_Name: PourVoix + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1812993464 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1812993463} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2003140781} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1814499592 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1814499594} + - component: {fileID: 1814499593} + - component: {fileID: 1814499596} + - component: {fileID: 1814499595} + m_Layer: 0 + m_Name: EntreeUtilisateurConteneur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1814499593 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814499592} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 1 + m_Spacing: 10 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!224 &1814499594 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814499592} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1994937810} + - {fileID: 38209877} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 5, y: 0} + m_SizeDelta: {x: 180, y: 80} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1814499595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814499592} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e050578356dd7b94b8690fdfb1d58605, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1814499596 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814499592} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f9a237365031784e9a1c139ac1991cb, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1837925293 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1837925294} + - component: {fileID: 1837925296} + - component: {fileID: 1837925295} + m_Layer: 5 + m_Name: TexteQuitter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1837925294 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1837925293} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1063242543} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1837925295 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1837925293} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Quitter + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1837925296 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1837925293} + m_CullTransparentMesh: 1 +--- !u!1 &1850278313 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1850278314} + - component: {fileID: 1850278317} + - component: {fileID: 1850278318} + - component: {fileID: 1850278319} + - component: {fileID: 1850278320} + - component: {fileID: 1850278321} + m_Layer: 5 + m_Name: Recherche + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1850278314 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 270107575} + - {fileID: 1013904231} + - {fileID: 1500648816} + - {fileID: 406113353} + m_Father: {fileID: 1020060957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -0.15} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1850278317 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_CullTransparentMesh: 1 +--- !u!223 &1850278318 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1850278319 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1850278320 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 270107578} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1850278321} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: AgrandirMenu + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1850278321} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerRecherche + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 780759557} + m_TargetAssemblyTypeName: ComportementAnimationBoutonsMenu, Assembly-CSharp + m_MethodName: BoutonClique + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1850278321 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 100 + largeur_max: 500 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!1 &1875844687 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1875844688} + - component: {fileID: 1875844692} + - component: {fileID: 1875844689} + - component: {fileID: 1875844691} + - component: {fileID: 1875844690} + - component: {fileID: 1875844693} + - component: {fileID: 1875844696} + - component: {fileID: 1875844697} + m_Layer: 0 + m_Name: '[BuildingBlock] Camera Rig' + m_TagString: Player + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1875844688 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.8, z: -4} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1096578848} + - {fileID: 90010866} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1875844689 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: df9f338034892c44ebb62d97894772f1, type: 3} + m_Name: + m_EditorClassIdentifier: + usePerEyeCameras: 0 + useFixedUpdateForTracking: 0 + disableEyeAnchorCameras: 0 +--- !u!114 &1875844690 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5178bc8574ce2bf4388e787a2e2af326, type: 3} + m_Name: + m_EditorClassIdentifier: + opMode: 1 + resetHmdPoseOnRelease: 1 + resetHmdPoseByMiddleMouseButton: 1 + activateKeys: 3201000031010000 + activateKeyBindings: + - /leftCtrl + - /rightCtrl + - /f1 + pitchKeys: 3401000033010000 + pitchKeyBindings: + - /leftAlt + - /rightAlt + - /f2 +--- !u!114 &1875844691 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7e933e81d3c20c74ea6fdc708a67e3a5, type: 3} + m_Name: + m_EditorClassIdentifier: + _monoscopic: 0 + _sharpenType: 0 + _enableDynamicResolution: 0 + minDynamicResolutionScale: 1 + maxDynamicResolutionScale: 1 + quest2MinDynamicResolutionScale: 0.7 + quest2MaxDynamicResolutionScale: 1.3 + quest3MinDynamicResolutionScale: 0.7 + quest3MaxDynamicResolutionScale: 1.6 + minRenderScale: 0.7 + maxRenderScale: 1 + _headPoseRelativeOffsetRotation: {x: 0, y: 0, z: 0} + _headPoseRelativeOffsetTranslation: {x: 0, y: 0, z: 0} + profilerTcpPort: 32419 + expandMixedRealityCapturePropertySheet: 0 + enableMixedReality: 0 + compositionMethod: 0 + extraHiddenLayers: + serializedVersion: 2 + m_Bits: 0 + extraVisibleLayers: + serializedVersion: 2 + m_Bits: 0 + dynamicCullingMask: 1 + externalCompositionBackdropColorRift: {r: 0, g: 1, b: 0, a: 1} + externalCompositionBackdropColorQuest: {r: 0, g: 0, b: 0, a: 0} + capturingCameraDevice: 0 + flipCameraFrameHorizontally: 0 + flipCameraFrameVertically: 0 + handPoseStateLatency: 0 + sandwichCompositionRenderLatency: 0 + sandwichCompositionBufferedFrames: 8 + chromaKeyColor: {r: 0, g: 1, b: 0, a: 1} + chromaKeySimilarity: 0.6 + chromaKeySmoothRange: 0.03 + chromaKeySpillRange: 0.06 + useDynamicLighting: 0 + depthQuality: 1 + dynamicLightingSmoothFactor: 8 + dynamicLightingDepthVariationClampingValue: 0.001 + virtualGreenScreenType: 0 + virtualGreenScreenTopY: 10 + virtualGreenScreenBottomY: -10 + virtualGreenScreenApplyDepthCulling: 0 + virtualGreenScreenDepthTolerance: 0.2 + mrcActivationMode: 0 + launchSimultaneousHandsControllersOnStartup: 0 + isInsightPassthroughEnabled: 0 + shouldBoundaryVisibilityBeSuppressed: 0 + requestBodyTrackingPermissionOnStartup: 0 + requestFaceTrackingPermissionOnStartup: 0 + requestEyeTrackingPermissionOnStartup: 0 + requestScenePermissionOnStartup: 1 + requestRecordAudioPermissionOnStartup: 0 + requestPassthroughCameraAccessPermissionOnStartup: 0 + _localDimming: 1 + _trackingOriginType: 1 + usePositionTracking: 1 + useRotationTracking: 1 + useIPDInPositionTracking: 1 + resetTrackerOnLoad: 0 + AllowRecenter: 0 + LateControllerUpdate: 1 + LateLatching: 0 + controllerDrivenHandPosesType: 0 + SimultaneousHandsAndControllersEnabled: 0 + _readOnlyWideMotionModeHandPosesEnabled: 0 + wideMotionModeHandPosesEnabled: 0 + dynamicResolutionVersion: 1 +--- !u!114 &1875844692 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: e47682b9-c270-40b1-b16d-90b627a5ce1b + instanceId: e5a4bffc-91f6-4eeb-b4bb-7bc997c1cf26 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: + _installationVariants: [] +--- !u!114 &1875844693 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 05e8a61ac02f22f4780fa659cb41a54b, type: 3} + m_Name: + m_EditorClassIdentifier: + audioDecoder1: {fileID: 5022602860645237092, guid: 2e23de7ecde691a419c6e78c273d7789, type: 3} + audioDecoder2: {fileID: 5022602860645237092, guid: f1a25d07f8e4ab6428aa0cdce558ce86, type: 3} + audioEncoder: {fileID: 5022602860645237092, guid: 0cad65409c04e4349b7f28008624037c, type: 3} + logMelSpectro: {fileID: 5022602860645237092, guid: 0d1f59069765c2d4697a9ab2a6269f63, type: 3} + choix_langues: {fileID: 409940175} + vocabAsset: {fileID: 4900000, guid: 8209a2f7b72bee543b73c1c78fa11b5d, type: 3} +--- !u!54 &1875844696 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!114 &1875844697 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cd95f96693bec0a409fa0a398bd370f0, type: 3} + m_Name: + m_EditorClassIdentifier: + hud: {fileID: 1057650663} +--- !u!1 &1882321117 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1882321118} + - component: {fileID: 1882321121} + - component: {fileID: 1882321120} + - component: {fileID: 1882321119} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionParametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1882321118 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1882321117} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 231991133} + m_Father: {fileID: 1663843239} + 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: 0.5, y: 0.5} +--- !u!114 &1882321119 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1882321117} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1882321120 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1882321117} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1663843240} +--- !u!114 &1882321121 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1882321117} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1882321120} + _surface: {fileID: 231991136} + _selectSurface: {fileID: 231991137} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &1884291082 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1884291089} + - component: {fileID: 1884291088} + - component: {fileID: 1884291087} + - component: {fileID: 1884291086} + - component: {fileID: 1884291085} + - component: {fileID: 1884291084} + - component: {fileID: 1884291083} + m_Layer: 5 + m_Name: Envoyer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1884291083 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1884291084 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 30 + largeur_max: 90 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!114 &1884291085 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 1382312903} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1884291084} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Agrandir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1884291084} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1814499596} + m_TargetAssemblyTypeName: ComportementEntreeUtilisateur, Assembly-CSharp + m_MethodName: TraitementEntree + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!223 &1884291086 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1884291087 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 2117814595} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1884291088 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_CullTransparentMesh: 1 +--- !u!224 &1884291089 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2117814598} + - {fileID: 368017726} + - {fileID: 1382312904} + - {fileID: 236672736} + m_Father: {fileID: 38209877} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 30, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1889754838 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1889754842} + - component: {fileID: 1889754839} + - component: {fileID: 1889754843} + - component: {fileID: 1889754841} + - component: {fileID: 1889754840} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1889754839 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889754838} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!114 &1889754840 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889754838} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 1889754841} +--- !u!114 &1889754841 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889754838} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 30, y: 30, z: 0.01} +--- !u!224 &1889754842 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889754838} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1382312904} + 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: 0.5, y: 0.5} +--- !u!114 &1889754843 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889754838} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 1889754839} + _clippers: + - {fileID: 1889754841} +--- !u!1 &1894144125 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1894144129} + - component: {fileID: 1894144128} + - component: {fileID: 1894144127} + - component: {fileID: 1894144126} + m_Layer: 5 + m_Name: CanvasFPS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1894144126 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1894144127 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1894144128 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 0 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1894144129 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 150} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 741180262} + - {fileID: 546323937} + m_Father: {fileID: 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: 0} + m_SizeDelta: {x: 500, y: 500} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1914968692 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1914968693} + - component: {fileID: 1914968695} + - component: {fileID: 1914968694} + m_Layer: 5 + m_Name: Fleche + m_TagString: FlecheBulleTexte + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1914968693 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914968692} + m_LocalRotation: {x: 0, y: 0, z: -0.38268343, w: 0.92387956} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1542799701} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -45} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -25} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1914968694 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914968692} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: b7ce72d64cd2ebd4eae63bae6d91e671, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1914968695 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914968692} + m_CullTransparentMesh: 1 +--- !u!1 &1917629181 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1917629182} + - component: {fileID: 1917629183} + m_Layer: 5 + m_Name: ConteneurOptionTexteVersAudio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1917629182 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1917629181} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 932233} + - {fileID: 644900613} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1917629183 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1917629181} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1981779244 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1981779245} + m_Layer: 0 + m_Name: RightControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1981779245 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1981779244} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1272714501} + m_Father: {fileID: 256965890} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1986964834 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 932233} + m_Modifications: + - target: {fileID: 3349346243019873864, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_IsOn + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Name + value: ToggleButton_Switch + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + insertIndex: -1 + addedObject: {fileID: 1986964839} + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &1986964835 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 1986964834} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1986964839 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 848606436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 426a9e0245cc0d041be77fb9f705fb86, type: 3} + m_Name: + m_EditorClassIdentifier: + fonction: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 478487499} + m_TargetAssemblyTypeName: EnumFonctionsPreferences, Assembly-CSharp + m_MethodName: ChangerSaisie + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!1 &1992139702 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1992139703} + - component: {fileID: 1992139705} + - component: {fileID: 1992139704} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1992139703 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1992139702} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 583361828} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0.2} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1992139704 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1992139702} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1992139705 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1992139702} + m_CullTransparentMesh: 1 +--- !u!1 &1994937808 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1994937810} + - component: {fileID: 1994937816} + - component: {fileID: 1994937812} + - component: {fileID: 1994937809} + - component: {fileID: 1994937811} + - component: {fileID: 1994937814} + m_Layer: 5 + m_Name: EntreeUtilisateur + m_TagString: Entree + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1994937809 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1994937812} + m_TextViewport: {fileID: 499297137} + m_TextComponent: {fileID: 1104579698} + m_Placeholder: {fileID: 674047957} + m_VerticalScrollbar: {fileID: 0} + m_VerticalScrollbarEventHandler: {fileID: 0} + m_LayoutGroup: {fileID: 0} + m_ScrollSensitivity: 1 + m_ContentType: 0 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 1 + m_HideSoftKeyboard: 0 + m_CharacterValidation: 0 + m_RegexValue: + m_GlobalPointSize: 14 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnSubmit: + m_PersistentCalls: + m_Calls: [] + m_OnSelect: + m_PersistentCalls: + m_Calls: [] + m_OnDeselect: + m_PersistentCalls: + m_Calls: [] + m_OnTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnEndTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_OnTouchScreenKeyboardStatusChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 + m_RichText: 1 + m_GlobalFontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_OnFocusSelectAll: 1 + m_ResetOnDeActivation: 1 + m_KeepTextSelectionVisible: 0 + m_RestoreOriginalTextOnEscape: 1 + m_isRichTextEditingAllowed: 0 + m_LineLimit: 0 + isAlert: 0 + m_InputValidator: {fileID: 0} + m_ShouldActivateOnSelect: 1 +--- !u!224 &1994937810 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 499297137} + - {fileID: 1346614466} + m_Father: {fileID: 1814499594} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!223 &1994937811 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1994937812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1994937814 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!222 &1994937816 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_CullTransparentMesh: 1 +--- !u!1 &2003140779 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2003140781} + - component: {fileID: 2003140780} + m_Layer: 0 + m_Name: PourTTS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &2003140780 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2003140779} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b15403450229c3a4b8455a61d6143a6d, type: 3} + m_Name: + m_EditorClassIdentifier: + _events: + OnTextPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnTextPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnTextPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackReady: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + _onInit: + m_PersistentCalls: + m_Calls: [] + _onComplete: + m_PersistentCalls: + m_Calls: [] + _onLoadBegin: + m_PersistentCalls: + m_Calls: [] + _onLoadAbort: + m_PersistentCalls: + m_Calls: [] + _onLoadFailed: + m_PersistentCalls: + m_Calls: [] + _onLoadSuccess: + m_PersistentCalls: + m_Calls: [] + _onPlaybackReady: + m_PersistentCalls: + m_Calls: [] + _onPlaybackStart: + m_PersistentCalls: + m_Calls: [] + _onPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + _onPlaybackClipUpdated: + m_PersistentCalls: + m_Calls: [] + _onPlaybackComplete: + m_PersistentCalls: + m_Calls: [] + _onPlaybackQueueBegin: + m_PersistentCalls: + m_Calls: [] + _onPlaybackQueueComplete: + m_PersistentCalls: + m_Calls: [] + OnClipDataQueued: + m_PersistentCalls: + m_Calls: [] + OnClipLoadBegin: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadBegin: + m_PersistentCalls: + m_Calls: [] + OnClipLoadAbort: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadAbort: + m_PersistentCalls: + m_Calls: [] + OnClipLoadFailed: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadFailed: + m_PersistentCalls: + m_Calls: [] + OnClipLoadSuccess: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadSuccess: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackReady: + m_PersistentCalls: + m_Calls: [] + OnStartSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnCancelledSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnFinishedSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + PrependedText: + AppendedText: + _ttsService: {fileID: 1137605303} + presetVoiceID: WIT$CAEL + customWitVoiceSettings: + SettingsId: + PrependedText: + AppendedText: + voice: Charlie + style: default + speed: 100 + pitch: 100 + verboseLogging: 0 +--- !u!4 &2003140781 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2003140779} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1724459655} + m_Father: {fileID: 1812993464} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2011393428 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2011393429} + - component: {fileID: 2011393430} + m_Layer: 7 + m_Name: PositionEtRotationHistorique + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2011393429 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2011393428} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 666.6667, y: 641.02563, z: 666.6667} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 545897469} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2011393430 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2011393428} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43ee61caa71f0774695520d49a722b33, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &2030833704 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + m_PrefabInstance: {fileID: 180938845} + m_PrefabAsset: {fileID: 0} +--- !u!1 &2045732715 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2045732716} + - component: {fileID: 2045732717} + - component: {fileID: 2045732718} + m_Layer: 7 + m_Name: ContenuHistorique + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2045732716 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2045732715} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 364059297} + m_Father: {fileID: 530733933} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -0.0000043530017, y: -0.00010164856} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &2045732717 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2045732715} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 5 + m_Bottom: 5 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &2045732718 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2045732715} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 0 + m_VerticalFit: 2 +--- !u!1 &2048535656 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2048535657} + - component: {fileID: 2048535660} + - component: {fileID: 2048535659} + - component: {fileID: 2048535658} + m_Layer: 7 + m_Name: Messages(ScrollView) + m_TagString: Scrollview + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2048535657 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048535656} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 530733933} + - {fileID: 1607579203} + m_Father: {fileID: 545897469} + 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: 10, y: 10} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2048535658 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048535656} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 2045732716} + m_Horizontal: 1 + m_Vertical: 1 + m_MovementType: 1 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 530733933} + m_HorizontalScrollbar: {fileID: 0} + m_VerticalScrollbar: {fileID: 1607579204} + m_HorizontalScrollbarVisibility: 2 + m_VerticalScrollbarVisibility: 2 + m_HorizontalScrollbarSpacing: -3 + m_VerticalScrollbarSpacing: -3 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &2048535659 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048535656} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.39215687} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2048535660 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048535656} + m_CullTransparentMesh: 1 +--- !u!1 &2087978706 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2087978707} + m_Layer: 0 + m_Name: TrackerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2087978707 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2087978706} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2117814594 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2117814598} + - component: {fileID: 2117814597} + - component: {fileID: 2117814595} + - component: {fileID: 2117814596} + m_Layer: 0 + m_Name: APEnvoyer + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &2117814595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2117814594} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &2117814596 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2117814594} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!222 &2117814597 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2117814594} + m_CullTransparentMesh: 1 +--- !u!224 &2117814598 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2117814594} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1884291089} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2131611829 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 40 + largeur_max: 120 + duree_ouverture: 0.3 + AnimerA: 1 +--- !u!114 &2131611830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b7db4a332f7e98d4ca6f7558f3613db5, type: 3} + m_Name: + m_EditorClassIdentifier: + onPointerClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 478487496} + m_TargetAssemblyTypeName: ComportementFenetrePreferences, Assembly-CSharp + m_MethodName: ChangerEtat + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!1 &2133001017 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2133001018} + - component: {fileID: 2133001020} + - component: {fileID: 2133001019} + m_Layer: 5 + m_Name: Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2133001018 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2133001017} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1456884282} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 200, y: 0} + m_SizeDelta: {x: 500, y: 15} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2133001019 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2133001017} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Bienvenue dans Riz Au Lait + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30 + m_fontSizeBase: 30 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &2133001020 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2133001017} + m_CullTransparentMesh: 1 +--- !u!1 &2141597735 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2141597736} + m_Layer: 0 + m_Name: AccueilVoix + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2141597736 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2141597735} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1648083963} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &243424270023441158 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2618178220305244257} + - component: {fileID: 6869810458693193498} + - component: {fileID: 5140576998914580422} + - component: {fileID: 2131611829} + - component: {fileID: 2131611830} + m_Layer: 0 + m_Name: Fermer + m_TagString: QDSUIPrimaryButton + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &265421015273259246 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &595206483210253712 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842874036736877360} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Fermer + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4280756007 + m_fontColor: {r: 0.15294118, g: 0.15294118, b: 0.15294118, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0.0044269413, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &739955594076292417 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842874036736877360} + m_CullTransparentMesh: 1 +--- !u!222 &952902941686272513 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7815598869519633400} + m_CullTransparentMesh: 1 +--- !u!224 &2050538972765576138 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2618178220305244257} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2209662680683579746 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7815598869519633400} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.15294118, g: 0.15294118, b: 0.15294118, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -3108347808307121293, guid: 64f884351318b694f942625580e64a8b, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!224 &2618178220305244257 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2050538972765576138} + - {fileID: 7986129806770060219} + - {fileID: 6384598719168717456} + m_Father: {fileID: 553160448} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!95 &5140576998914580422 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!224 &6384598719168717456 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842874036736877360} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2618178220305244257} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 14} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &6826917670049334543 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2050538972765576138} + - component: {fileID: 7747662451683816589} + - component: {fileID: 6969549368977048900} + - component: {fileID: 265421015273259246} + m_Layer: 0 + m_Name: Background + m_TagString: QDSUIAccentColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &6842874036736877360 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6384598719168717456} + - component: {fileID: 739955594076292417} + - component: {fileID: 595206483210253712} + m_Layer: 5 + m_Name: Label + m_TagString: QDSUITextInvertedColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &6869810458693193498 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 3 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 0} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &6969549368977048900 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &7747662451683816589 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_CullTransparentMesh: 1 +--- !u!1 &7815598869519633400 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7986129806770060219} + - component: {fileID: 952902941686272513} + - component: {fileID: 2209662680683579746} + m_Layer: 5 + m_Name: Icon + m_TagString: QDSUITextInvertedColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7986129806770060219 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7815598869519633400} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2618178220305244257} + 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: 20, y: 0} + m_SizeDelta: {x: 24, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 203844589} + - {fileID: 145513991} + - {fileID: 1661708472} + - {fileID: 1619923418} + - {fileID: 1167643603} + - {fileID: 1300854824} + - {fileID: 1705736408} + - {fileID: 1020060957} + - {fileID: 780759558} + - {fileID: 1331752627} + - {fileID: 478487497} + - {fileID: 1894144129} + - {fileID: 1875844688} + - {fileID: 1666108642} + - {fileID: 30312108} + - {fileID: 1814499594} + - {fileID: 1681576835} + - {fileID: 2141597736} + - {fileID: 1812993464} + - {fileID: 1552541072} + - {fileID: 705551164} + - {fileID: 1472196242} + - {fileID: 1084123206} + - {fileID: 1057650662} diff --git a/Assets/Scenes/Interface v4.unity.meta b/Assets/Scenes/Interface v4.unity.meta new file mode 100644 index 0000000..83b9494 --- /dev/null +++ b/Assets/Scenes/Interface v4.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1066b13443f9307449e037f18a6f4733 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Interface v4_test.unity b/Assets/Scenes/Interface v4_test.unity new file mode 100644 index 0000000..e820732 --- /dev/null +++ b/Assets/Scenes/Interface v4_test.unity @@ -0,0 +1,20636 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 10 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 2100000, guid: 6f60649bffa7f434bb677b326c6dafe3, type: 2} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 2048 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 112000000, guid: 7f56509f9ec923345b99bca201b563cd, type: 2} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &932232 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 932233} + - component: {fileID: 932234} + m_Layer: 5 + m_Name: EcrireAvecVoix + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &932233 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932232} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1986964835} + - {fileID: 59281703} + m_Father: {fileID: 1917629182} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 400, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &932234 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932232} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &5398280 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!225 &5398288 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5398280} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!1 &8300465 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8300466} + - component: {fileID: 8300467} + m_Layer: 5 + m_Name: Item + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8300466 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8300465} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 918401624} + - {fileID: 1062745315} + - {fileID: 610501580} + m_Father: {fileID: 943391151} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &8300467 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8300465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 918401625} + toggleTransition: 1 + graphic: {fileID: 1062745316} + m_Group: {fileID: 0} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 1 +--- !u!1 &30312106 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 30312108} + - component: {fileID: 30312107} + m_Layer: 0 + m_Name: Historique + m_TagString: HistoriqueMsg + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &30312107 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 30312106} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 1 + m_Spacing: 30 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!224 &30312108 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 30312106} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 545897469} + - {fileID: 1094517601} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 400, y: 400} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &38209876 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 38209877} + - component: {fileID: 38209878} + m_Layer: 0 + m_Name: ConteneurBoutonsHorizontal + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &38209877 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 38209876} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1663843239} + - {fileID: 1884291089} + m_Father: {fileID: 1814499594} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 90, y: -55} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &38209878 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 38209876} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 10 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &59281702 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 59281703} + - component: {fileID: 59281705} + - component: {fileID: 59281704} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &59281703 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 59281702} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 932233} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 300, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &59281704 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 59281702} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "\xC9crire avec la voix" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 25 + m_fontSizeBase: 25 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &59281705 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 59281702} + m_CullTransparentMesh: 1 +--- !u!1 &61483681 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 61483682} + - component: {fileID: 61483685} + - component: {fileID: 61483684} + - component: {fileID: 61483683} + m_Layer: 0 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &61483682 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61483681} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 166660090} + 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: 0.5, y: 0.5} +--- !u!114 &61483683 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61483681} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 30, y: 30, z: 30, w: 30} +--- !u!114 &61483684 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61483681} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: a8b3963696820314da0fd98d357bebfe, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &61483685 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61483681} + m_CullTransparentMesh: 1 +--- !u!1 &77833129 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 77833130} + - component: {fileID: 77833132} + - component: {fileID: 77833131} + m_Layer: 0 + m_Name: LeftEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &77833130 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 77833129} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &77833131 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 77833129} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!20 &77833132 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 77833129} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 1 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!1001 &90010865 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1875844688} + m_Modifications: + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 77833130} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 1260653749} + - target: {fileID: 435407831072319256, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 620957629} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _leftEyeAnchor + value: + objectReference: {fileID: 77833130} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _rightEyeAnchor + value: + objectReference: {fileID: 1260653749} + - target: {fileID: 2336446269904782542, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _centerEyeCamera + value: + objectReference: {fileID: 620957629} + - target: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_Name + value: '[BuildingBlock] OVRInteractionComprehensive' + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerEyes + value: + objectReference: {fileID: 620957632} + - target: {fileID: 5801245061754409418, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _playerOrigin + value: + objectReference: {fileID: 1875844688} + - target: {fileID: 6267690530596161800, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + propertyPath: _ovrCameraRig + value: + objectReference: {fileID: 1875844689} + m_RemovedComponents: [] + m_RemovedGameObjects: + - {fileID: 4604000520904607249, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + insertIndex: 1 + addedObject: {fileID: 90010868} + m_SourcePrefab: {fileID: 100100000, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} +--- !u!4 &90010866 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4397664628265918113, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 90010865} + m_PrefabAsset: {fileID: 0} +--- !u!1 &90010867 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 4148778239110795873, guid: 0a7d2469f24041c4284c66706f84c45e, type: 3} + m_PrefabInstance: {fileID: 90010865} + m_PrefabAsset: {fileID: 0} +--- !u!114 &90010868 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 90010867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: 81f55626-5fad-45e9-a1df-184f330da7ba + instanceId: 332e0e8a-fb58-4fa7-addf-6b8d3946ab19 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: 2063f481-1b63-4eda-9ee8-a00df98536bc + _installationVariants: [] +--- !u!4 &104161877 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + m_PrefabInstance: {fileID: 444503454} + m_PrefabAsset: {fileID: 0} +--- !u!1 &108285111 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 108285112} + m_Layer: 0 + m_Name: LeftHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &108285112 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 108285111} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &111316892 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 111316893} + - component: {fileID: 111316895} + - component: {fileID: 111316894} + m_Layer: 5 + m_Name: Fleche + m_TagString: FlecheBulleTexte + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &111316893 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 111316892} + m_LocalRotation: {x: 0, y: 0, z: -0.38268343, w: 0.92387956} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1377208421} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -45} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -25} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &111316894 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 111316892} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: b7ce72d64cd2ebd4eae63bae6d91e671, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &111316895 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 111316892} + m_CullTransparentMesh: 1 +--- !u!1 &123849439 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 123849440} + - component: {fileID: 123849443} + - component: {fileID: 123849442} + - component: {fileID: 123849441} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &123849440 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 123849439} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1242248374} + m_Father: {fileID: 545897469} + 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: 0.5, y: 0.5} +--- !u!114 &123849441 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 123849439} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &123849442 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 123849439} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 545897468} +--- !u!114 &123849443 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 123849439} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 123849442} + _surface: {fileID: 1242248377} + _selectSurface: {fileID: 1242248378} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &145513987 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 145513991} + - component: {fileID: 145513990} + - component: {fileID: 145513989} + - component: {fileID: 145513988} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &145513988 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2518c50cb3fc6a6458d4b743c2f69c7d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + _useInitialPressPositionForDrag: 1 + _exclusiveMode: 1 +--- !u!114 &145513989 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8f1a9a1d119a5944aacfb87d1ec283a2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + rayTransform: {fileID: 90010866} + m_Cursor: {fileID: 0} + joyPadClickButton: 1 + gazeClickKey: 32 + performSphereCastForGazepointer: 0 + useRightStickScroll: 1 + rightStickDeadZone: 0.15 + useSwipeScroll: 1 + swipeDragThreshold: 2 + swipeDragScale: 1 + InvertSwipeXAxis: 0 + angleDragThreshold: 1 + m_SpherecastRadius: 1 + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_AllowActivationOnMobileDevice: 1 +--- !u!114 &145513990 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &145513991 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145513987} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &145671442 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 145671443} + - component: {fileID: 145671445} + - component: {fileID: 145671444} + m_Layer: 5 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &145671443 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145671442} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 409940174} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -7.5, y: -0.5} + m_SizeDelta: {x: -35, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &145671444 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145671442} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Fran\xE7ais" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &145671445 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145671442} + m_CullTransparentMesh: 1 +--- !u!1 &166660089 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 166660090} + m_Layer: 0 + m_Name: Content + m_TagString: Bulle3D + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &166660090 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 166660089} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 61483682} + m_Father: {fileID: 1542799701} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1001 &180938845 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1472196242} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.x + value: 0.005 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.y + value: 0.005 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.z + value: 0.005 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.x + value: 42.950542 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.y + value: 177.69196 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.z + value: 392.6208 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -5074138163107441018, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -3922660605386920464, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 186216269727547346, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 445282606480971649, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 734925686953037275, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Name + value: AstroDomeTower + objectReference: {fileID: 0} + - target: {fileID: 2290938084834409403, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2463113813996302265, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: + - {fileID: -38332879115174756, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: -1698393537433210792, guid: cae085d13537bd24284ac549e6c37828, type: 3} + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + insertIndex: -1 + addedObject: {fileID: 1693996084} + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: cae085d13537bd24284ac549e6c37828, type: 3} +--- !u!1 &201805383 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 201805384} + - component: {fileID: 201805387} + - component: {fileID: 201805386} + - component: {fileID: 201805385} + m_Layer: 5 + m_Name: Scrollbar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &201805384 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 201805383} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 583361828} + m_Father: {fileID: 500101350} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &201805385 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 201805383} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1992139704} + m_HandleRect: {fileID: 1992139703} + m_Direction: 2 + m_Value: 0 + m_Size: 0.2 + m_NumberOfSteps: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &201805386 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 201805383} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &201805387 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 201805383} + m_CullTransparentMesh: 1 +--- !u!1 &203844586 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 203844589} + - component: {fileID: 203844588} + - component: {fileID: 203844587} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &203844587 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Version: 3 + m_UsePipelineSettings: 1 + m_AdditionalLightsShadowResolutionTier: 2 + m_LightLayerMask: 1 + m_RenderingLayers: 1 + m_CustomShadowLayers: 0 + m_ShadowLayerMask: 1 + m_ShadowRenderingLayers: 1 + m_LightCookieSize: {x: 1, y: 1} + m_LightCookieOffset: {x: 0, y: 0} + m_SoftShadowQuality: 0 +--- !u!108 &203844588 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + m_Enabled: 1 + serializedVersion: 11 + m_Type: 1 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ForceVisible: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 + m_LightUnit: 1 + m_LuxAtDistance: 1 + m_EnableSpotReflector: 1 +--- !u!4 &203844589 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203844586} + serializedVersion: 2 + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &231991132 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 231991133} + - component: {fileID: 231991137} + - component: {fileID: 231991136} + - component: {fileID: 231991135} + - component: {fileID: 231991134} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &231991133 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231991132} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1882321118} + 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: 0.5, y: 0.5} +--- !u!114 &231991134 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231991132} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 231991135} +--- !u!114 &231991135 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231991132} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 30, y: 30, z: 0.01} +--- !u!114 &231991136 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231991132} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 231991137} + _clippers: + - {fileID: 231991135} +--- !u!114 &231991137 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231991132} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &236672735 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 236672736} + - component: {fileID: 236672738} + - component: {fileID: 236672737} + m_Layer: 5 + m_Name: TexteEnvoyer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &236672736 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236672735} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1884291089} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &236672737 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236672735} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Envoyer + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &236672738 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236672735} + m_CullTransparentMesh: 1 +--- !u!1 &236943463 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 236943464} + - component: {fileID: 236943467} + - component: {fileID: 236943466} + - component: {fileID: 236943465} + m_Layer: 5 + m_Name: IconMicro + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &236943464 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236943463} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1663843239} + 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: 15, y: 0} + m_SizeDelta: {x: 30, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &236943465 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236943463} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &236943466 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236943463} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 51835710957564654, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &236943467 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 236943463} + m_CullTransparentMesh: 1 +--- !u!1 &256965889 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 256965890} + m_Layer: 0 + m_Name: RightHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &256965890 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 256965889} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 736431423} + - {fileID: 1981779245} + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &267046850 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 267046851} + - component: {fileID: 267046853} + - component: {fileID: 267046852} + m_Layer: 0 + m_Name: Titre + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &267046851 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 267046850} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &267046852 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 267046850} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Pr\xE9f\xE9rences" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 35.8 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &267046853 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 267046850} + m_CullTransparentMesh: 1 +--- !u!1 &270107574 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 270107575} + - component: {fileID: 270107578} + - component: {fileID: 270107577} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionRecherche + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &270107575 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270107574} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 431439149} + m_Father: {fileID: 1850278314} + 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: 0.5, y: 0.5} +--- !u!114 &270107577 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270107574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1850278318} +--- !u!114 &270107578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270107574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 270107577} + _surface: {fileID: 431439152} + _selectSurface: {fileID: 431439153} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1001 &273128013 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 898336105} + m_Modifications: + - target: {fileID: 3349346243019873864, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_IsOn + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Name + value: ToggleButton_Switch + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + insertIndex: -1 + addedObject: {fileID: 273128016} + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &273128014 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 273128013} + m_PrefabAsset: {fileID: 0} +--- !u!1 &273128015 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 273128013} + m_PrefabAsset: {fileID: 0} +--- !u!114 &273128016 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 273128015} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 426a9e0245cc0d041be77fb9f705fb86, type: 3} + m_Name: + m_EditorClassIdentifier: + fonction: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 478487499} + m_TargetAssemblyTypeName: EnumFonctionsPreferences, Assembly-CSharp + m_MethodName: ChangerMode + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!1 &294728352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 294728353} + - component: {fileID: 294728357} + - component: {fileID: 294728356} + - component: {fileID: 294728355} + - component: {fileID: 294728354} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &294728353 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1346614466} + 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: 0.5, y: 0.5} +--- !u!114 &294728354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 294728355} +--- !u!114 &294728355 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 160, y: 30, z: 0.01} +--- !u!114 &294728356 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 294728357} + _clippers: + - {fileID: 294728355} +--- !u!114 &294728357 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294728352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &309614184 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 309614185} + m_Layer: 0 + m_Name: Content + m_TagString: Bulle3D + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &309614185 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 309614184} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1541343604} + m_Father: {fileID: 460675307} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1001 &311294965 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 33026442395946637, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 33026442395946637, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 33026442395946637, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 33026442395946637, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 210311945617768002, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 210311945617768002, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 210311945617768002, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 210311945617768002, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 289254569159434366, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 289254569159434366, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 289254569159434366, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 22 + objectReference: {fileID: 0} + - target: {fileID: 289254569159434366, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 289254570023458844, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 289254570023458844, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 289254570023458844, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 289254570023458844, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 289254570716003512, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 289254570716003512, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 289254570716003512, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 22 + objectReference: {fileID: 0} + - target: {fileID: 289254570716003512, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 440948656542363876, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_LocalPosition.x + value: 2.8 + objectReference: {fileID: 0} + - target: {fileID: 440948656542363876, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_LocalPosition.y + value: 1.8 + objectReference: {fileID: 0} + - target: {fileID: 440948656542363876, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_LocalPosition.z + value: 1.9 + objectReference: {fileID: 0} + - target: {fileID: 440948656542363876, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 440948656542363876, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656542363876, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656542363876, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656542363876, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656542363876, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656542363876, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656542363877, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_Name + value: HUD + objectReference: {fileID: 0} + - target: {fileID: 440948656542363877, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 440948656605815750, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656605815750, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656605815750, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656605815750, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656607183945, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656607183945, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656723770331, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 440948656723770332, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656723770332, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656723770332, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656723770332, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656982667568, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656982667568, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656982667568, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656982667568, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656982667583, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_text + value: Riz au lait + objectReference: {fileID: 0} + - target: {fileID: 440948656982667583, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 440948656997433540, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656997433540, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656997433540, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948656997433540, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657102194055, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657102194055, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657102194055, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657102194055, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657145060109, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657145060109, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657145060109, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657145060109, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657175044458, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 440948657175044459, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657175044459, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657175044459, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657175044459, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657507497621, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_ChildAlignment + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657507497622, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657507497622, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657507497622, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657507497622, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657507497623, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_Name + value: TitleBar + objectReference: {fileID: 0} + - target: {fileID: 440948657677736307, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657677736307, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657677736307, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657677736307, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657680231979, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657680231979, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657803415190, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948657803415190, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658039273577, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658039273577, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658039273577, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658039273577, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658039273578, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_Name + value: SearchBarSection + objectReference: {fileID: 0} + - target: {fileID: 440948658113017997, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658113017997, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658113017997, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658113017997, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658113017997, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658170640369, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658170640369, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658170640369, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658170640369, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658170640369, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658250009907, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658250009907, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658250009907, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658250009907, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658279316944, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658279316944, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658279316944, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658279316944, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658383344477, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 440948658383344477, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466201683838070002, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466201683838070002, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466201683838070002, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466201683838070002, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466201683838070002, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 485994529653296643, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 579677548972405908, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 579677548972405908, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 579677548972405908, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 579677548972405908, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 579677548972405908, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 605225683821532656, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 605225683821532656, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 605225683821532656, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 605225683821532656, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733257617836056, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 688733257617836063, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733257617836063, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733257617836063, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733257617836063, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733257617836063, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733257736286470, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_TagString + value: Entree + objectReference: {fileID: 0} + - target: {fileID: 688733257736286471, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733257736286471, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733257736286471, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 800 + objectReference: {fileID: 0} + - target: {fileID: 688733257736286471, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733257736286471, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733257858063455, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_text + value: Rechercher un sujet + objectReference: {fileID: 0} + - target: {fileID: 688733257858063455, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 688733258224088211, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733258224088211, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733258224088211, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733258224088211, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733258224088211, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 688733258828349356, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 740958072660979593, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 740958072660979593, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 740958072660979593, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 740958072660979593, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 792436982268511022, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 792436982268511022, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 792436982268511022, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 792436982268511022, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 977281565526321242, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 977281565526321242, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 977281565526321242, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 977281565526321242, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1138262639577866453, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1138262639577866453, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1138262639577866453, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1138262639577866453, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1138262639577866453, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1138262639577866453, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1139336359737606552, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1150299270538544442, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270538544442, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270538544442, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270538544442, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270607311705, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270607311705, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270607311705, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270607311705, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270718522130, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270718522130, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270718522130, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270718522130, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270718522130, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270778354218, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270778354218, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270778354218, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270778354218, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270778354218, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270969198430, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270969198430, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270969198430, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270969198430, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299270969198430, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271078306599, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271078306599, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271078306599, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271078306599, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271119969543, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271119969543, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271119969543, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271119969543, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271226699050, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271226699050, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271226699050, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271226699050, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271226699050, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271290384361, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271290384361, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271290384361, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271290384361, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271290384361, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271396643573, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271396643573, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271396643573, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271396643573, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271396643573, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271864829735, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271864829735, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271864829735, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271864829735, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271864829735, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271900224944, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271900224944, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271900224944, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271900224944, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299271900224944, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272189337333, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272189337333, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272189337333, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272189337333, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272189337333, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272208198044, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272208198044, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272208198044, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272208198044, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272208198044, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272305160660, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272305160660, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272305160660, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1150299272305160660, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1263286092520017772, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1263286092520017772, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1263286092520017772, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1263286092520017772, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1263286092520017772, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1263286092520017772, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1264473234034863649, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1317233094431065634, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1428872219122945672, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_ReverseArrangement + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1471239199982891663, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1471239199982891663, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1471239199982891663, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1471239199982891663, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1483941588453694381, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1483941588453694381, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1483941588453694381, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1483941588453694381, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1489957045629357027, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1489957045629357027, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1489957045629357027, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1489957045629357027, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1571414540291081476, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1571414540291081476, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1571414540291081476, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1571414540291081476, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1730129190784867366, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129190799567695, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129190903870215, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129191057526822, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129191260423668, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129191308402531, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129191560225268, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129191719585165, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129191768108346, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129191854628820, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129191965552633, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129192083720169, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129192272118209, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129192329820409, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1730129192416760202, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 1731335966757695687, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966757695687, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966757695687, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966757695687, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966757695687, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966757695687, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966811085236, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966811085236, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966811085236, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966811085236, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966811085236, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966811085236, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966868775052, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966868775052, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966868775052, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966868775052, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966868775052, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335966868775052, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967091254948, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967091254948, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967091254948, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967091254948, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967091254948, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967091254948, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967242456756, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967242456756, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967242456756, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967242456756, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967242456756, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967242456756, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967286804121, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967286804121, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967286804121, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967286804121, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967286804121, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967286804121, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967440424055, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967440424055, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967440424055, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967440424055, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967440424055, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967440424055, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967521973440, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967521973440, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967521973440, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967521973440, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967521973440, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967521973440, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967647776953, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967647776953, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967647776953, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967647776953, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967647776953, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967647776953, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967880996025, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967880996025, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967880996025, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967880996025, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967880996025, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967880996025, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967933169198, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967933169198, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967933169198, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967933169198, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967933169198, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335967933169198, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968083898731, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968083898731, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968083898731, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968083898731, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968083898731, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968083898731, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968337695306, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968337695306, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968337695306, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968337695306, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968337695306, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968337695306, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968356564331, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968356564331, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968356564331, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968356564331, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968356564331, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968356564331, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968375409154, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968375409154, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968375409154, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968375409154, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968375409154, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1731335968375409154, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1746187343248786251, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1746187343248786251, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1746187343248786251, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1746187343248786251, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1746187343248786251, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1836712437751577978, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1836712437751577978, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1836712437751577978, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1836712437751577978, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2056845207200235728, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2056845207200235728, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2056845207200235728, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2056845207200235728, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2166826670399280654, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2166826670399280654, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2166826670399280654, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2166826670399280654, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2208234053476874921, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2208234053476874921, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2208234053476874921, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2208234053476874921, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2215604836307767077, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2215604836307767077, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2215604836307767077, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2215604836307767077, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2258851143473094730, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2258851143473094730, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2258851143473094730, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2258851143473094730, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2294946499120267869, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2294946499120267869, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Mode + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2294946499120267869, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_CallState + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 2304491008307975946, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2304491008307975946, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2304491008307975946, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2304491008307975946, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2304491008307975946, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2304491008307975946, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2305673590986290759, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 2459085065333069498, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2459085065333069498, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2459085065333069498, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2459085065333069498, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2459085065333069498, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2459085065333069498, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2460156581889619959, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 2550223033388306069, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2550223033388306069, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2550223033388306069, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2550223033388306069, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338504236859, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338504236859, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338504236859, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338504236859, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338703640920, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338703640920, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338703640920, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338703640920, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338799198251, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338799198251, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338799198251, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338799198251, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338860865811, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338860865811, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338860865811, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338860865811, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338943901023, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338943901023, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338943901023, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408338943901023, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339103226150, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339103226150, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339103226150, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339103226150, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339226416939, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339226416939, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339226416939, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339226416939, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339266037510, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339266037510, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339266037510, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339266037510, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339428021736, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339428021736, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339428021736, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339428021736, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339525970164, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339525970164, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339525970164, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339525970164, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339859946790, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339859946790, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339859946790, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339859946790, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339891660721, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339891660721, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339891660721, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408339891660721, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408340292291541, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408340292291541, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408340292291541, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408340292291541, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408340325028765, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408340325028765, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408340325028765, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408340325028765, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408340343891188, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408340343891188, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408340343891188, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2637408340343891188, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2687200990639408138, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2687200990639408138, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2687200990639408138, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2687200990639408138, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2737624919645284525, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2737624919645284525, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2737624919645284525, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2737624919645284525, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2869821699123876564, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2869821699123876564, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2869821699123876564, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2869821699123876564, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2961052087983118803, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052087983118803, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052087983118803, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 2961052087983118803, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 2961052088029852877, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088029852877, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088029852877, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 2961052088029852877, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 2961052088235202160, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088235202160, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088235202160, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 2961052088235202160, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 2961052088313090627, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088313090627, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088313090627, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 2961052088313090627, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 2961052088399928957, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088399928957, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088399928957, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 2961052088399928957, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 2961052088467733322, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088467733322, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088467733322, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 2961052088467733322, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 2961052088577456317, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088577456317, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088577456317, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 2961052088577456317, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 2961052088600262570, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088600262570, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052088600262570, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 2961052088600262570, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 2961052089907527208, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052089907527208, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2961052089907527208, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 2961052089907527208, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 3122435394516482156, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 3249096479460988659, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3249096479460988659, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3249096479460988659, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3249096479460988659, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3367488687524997618, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488687524997618, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488687524997618, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 3367488687524997618, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 3367488687871536827, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3367488687871536827, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3367488687871536827, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3367488687871536827, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3367488688174844327, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488688174844327, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488688174844327, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 3367488688174844327, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 3367488688241208464, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488688241208464, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488688241208464, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 3367488688241208464, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 3367488688318132071, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488688318132071, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488688318132071, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 3367488688318132071, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 3367488688366624880, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488688366624880, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488688366624880, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 3367488688366624880, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 3367488688797175305, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488688797175305, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488688797175305, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 3367488688797175305, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 3367488688869991191, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488688869991191, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488688869991191, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 3367488688869991191, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 3367488689083990442, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488689083990442, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488689083990442, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 3367488689083990442, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 3367488689119413657, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488689119413657, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3367488689119413657, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 3367488689119413657, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 3440965014853781929, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3440965014853781929, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3440965014853781929, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3440965014853781929, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3455846933653494247, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3455846933653494247, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3455846933653494247, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3455846933653494247, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3698844928932411722, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3698844928932411722, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3698844928932411722, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3698844928932411722, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3786416028116469114, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3786416028116469114, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3786416028116469114, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3786416028116469114, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3825506237751564245, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 3877655502890923300, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3877655502890923300, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3877655502890923300, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3877655502890923300, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3877655502890923300, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3882409937059475087, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3882409937059475087, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3882409937059475087, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3882409937059475087, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3882409937302738669, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3882409937302738669, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3882409937302738669, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3882409937302738669, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3882409938750222921, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3882409938750222921, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3882409938750222921, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3882409938750222921, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3947622879560333918, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3947622879560333918, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3947622879560333918, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3947622879560333918, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4258419688784563399, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4258419688784563399, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4258419688784563399, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4258419688784563399, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4280046894943997875, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4366245637063513294, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4366245637129885197, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4366245637384109177, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4366245637507776781, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4366245637569902645, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4366245638229086907, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4366245638247949778, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4366245638569376768, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4366245638600566423, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4366245639040707026, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 4670449708226009176, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4670449708226009176, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4670449708226009176, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4670449708226009176, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4766675238314002473, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4766675238314002473, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4766675238314002473, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4766675238314002473, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4770010413466638156, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4770010413466638156, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4770010413466638156, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4770010413466638156, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4913323362126256134, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4913323362126256134, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4913323362126256134, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4913323362126256134, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5026254964764019865, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5026254964764019865, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5026254964764019865, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5026254964764019865, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5026254964764019865, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5026254964764019865, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5027301363826453972, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 5197285804543628170, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5197285804543628170, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5197285804543628170, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5197285804543628170, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186412311540, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186412311540, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186412311540, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186412311540, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186538182541, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186538182541, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186538182541, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186538182541, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186658261376, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186658261376, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186658261376, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186658261376, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186765449645, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186765449645, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186765449645, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186765449645, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186863504195, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186863504195, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186863504195, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713186863504195, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187112022416, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187112022416, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187112022416, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187112022416, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187310807027, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187310807027, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187310807027, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187310807027, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187374878336, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187374878336, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187374878336, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187374878336, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187434608568, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187434608568, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187434608568, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187434608568, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187760833918, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187760833918, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187760833918, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187760833918, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187843205727, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187843205727, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187843205727, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187843205727, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187857866038, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187857866038, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187857866038, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713187857866038, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713188099090015, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713188099090015, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713188099090015, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713188099090015, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713188433848602, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713188433848602, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713188433848602, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713188433848602, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713188436210573, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713188436210573, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713188436210573, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5286713188436210573, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5367840824972944065, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5367840824972944065, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5367840824972944065, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5367840824972944065, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5420225991207542000, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5420225991207542000, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5420225991207542000, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5420225991207542000, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5420225991207542000, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5424368819880103008, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368819880103008, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368819880103008, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 60.5 + objectReference: {fileID: 0} + - target: {fileID: 5424368819880103008, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5424368820059679643, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820059679643, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820059679643, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 60.5 + objectReference: {fileID: 0} + - target: {fileID: 5424368820059679643, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5424368820146374277, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820146374277, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820146374277, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 60.5 + objectReference: {fileID: 0} + - target: {fileID: 5424368820146374277, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5424368820343350328, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820343350328, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820343350328, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 60.5 + objectReference: {fileID: 0} + - target: {fileID: 5424368820343350328, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5424368820399742987, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820399742987, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820399742987, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 60.5 + objectReference: {fileID: 0} + - target: {fileID: 5424368820399742987, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5424368820447128629, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820447128629, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820447128629, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 60.5 + objectReference: {fileID: 0} + - target: {fileID: 5424368820447128629, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5424368820514523394, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820514523394, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820514523394, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 60.5 + objectReference: {fileID: 0} + - target: {fileID: 5424368820514523394, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5424368820649674210, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820649674210, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820649674210, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 60.5 + objectReference: {fileID: 0} + - target: {fileID: 5424368820649674210, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5424368820672482037, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820672482037, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5424368820672482037, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 60.5 + objectReference: {fileID: 0} + - target: {fileID: 5424368820672482037, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5608033291146434532, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5608033291146434532, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5608033291146434532, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5608033291146434532, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5608033291146434532, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5608033291146434532, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5609210410220844713, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 5657206095663168420, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5657206095663168420, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5657206095663168420, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5657206095663168420, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5657206096493626310, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5657206096493626310, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5657206096493626310, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5657206096493626310, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5657206097328088930, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5657206097328088930, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5657206097328088930, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5657206097328088930, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5666635665878335550, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5666635665878335550, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5666635665878335550, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5666635665878335550, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713590329140461882, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713590329140461882, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713590329140461882, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713590329140461882, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713590329140461882, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713590329140461882, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5714671652319371383, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 5762834952666778832, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 5764014257860734365, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5764014257860734365, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5764014257860734365, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5764014257860734365, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5764014257860734365, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5764014257860734365, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5922382728057990919, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5922382728057990919, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5922382728057990919, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5922382728057990919, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5922382728057990919, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6030829799480152381, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6030829799480152381, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6030829799480152381, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6030829799480152381, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6070171834217778552, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6070171834217778552, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6070171834217778552, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6070171834217778552, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6185905892473437401, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905892473437401, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905892473437401, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 6185905892473437401, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 6185905893070584720, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6185905893070584720, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6185905893070584720, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6185905893070584720, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6185905893783123291, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905893783123291, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905893783123291, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 912.5 + objectReference: {fileID: 0} + - target: {fileID: 6185905893783123291, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 6185905893827426892, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905893827426892, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905893827426892, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 489.5 + objectReference: {fileID: 0} + - target: {fileID: 6185905893827426892, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 6185905893834742924, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905893834742924, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905893834742924, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 348.5 + objectReference: {fileID: 0} + - target: {fileID: 6185905893834742924, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 6185905893902547387, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905893902547387, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905893902547387, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 630.5 + objectReference: {fileID: 0} + - target: {fileID: 6185905893902547387, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 6185905894005560449, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905894005560449, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905894005560449, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 1194.5 + objectReference: {fileID: 0} + - target: {fileID: 6185905894005560449, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 6185905894100226226, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905894100226226, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905894100226226, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 1053.5 + objectReference: {fileID: 0} + - target: {fileID: 6185905894100226226, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 6185905894290348834, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905894290348834, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905894290348834, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 207.5 + objectReference: {fileID: 0} + - target: {fileID: 6185905894290348834, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 6185905894353598012, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905894353598012, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6185905894353598012, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 771.5 + objectReference: {fileID: 0} + - target: {fileID: 6185905894353598012, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 6344933718600240643, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344933718600240643, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344933718600240643, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344933718600240643, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344933718600240643, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6393598362410934948, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6393598362410934948, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6393598362410934948, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6393598362410934948, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6393598362410934948, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6466536694600352194, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 6495285109923165306, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6495285109923165306, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6495285109923165306, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6495285109923165306, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6495285109923165306, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6499691098260133482, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 6507348799776511262, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6507348799776511262, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6507348799776511262, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6507348799776511262, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6685836803666116462, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6685836803666116462, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6685836803666116462, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6685836803666116462, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6685836803666116462, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6685836803666116462, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6686871900506529315, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 6751878798414347322, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878798414347322, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878798414347322, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878798414347322, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878798416701101, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878798416701101, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878798416701101, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878798416701101, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878798884893567, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878798884893567, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878798884893567, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878798884893567, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799165947775, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799165947775, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799165947775, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799165947775, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799180597270, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799180597270, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799180597270, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799180597270, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799502662560, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799502662560, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799502662560, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799502662560, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799562580632, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799562580632, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799562580632, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878799562580632, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878800065023587, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878800065023587, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878800065023587, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878800065023587, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878800128150688, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878800128150688, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878800128150688, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878800128150688, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878800419071700, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878800419071700, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878800419071700, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6751878800419071700, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6814850682090731489, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6814850682090731489, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6814850682090731489, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6814850682090731489, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6942256137066915569, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6942256137066915569, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6942256137066915569, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6942256137066915569, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7016095740525827104, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 7335221291597080037, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7335221291597080037, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7335221291597080037, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7335221291597080037, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7464120222750626990, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7464120222750626990, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7464120222750626990, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7464120222750626990, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7587801440886247261, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 7592260608577383757, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7592260608577383757, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7592260608577383757, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7592260608577383757, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7592260608577383757, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7617589000054544545, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_Name + value: SettingsBtn + objectReference: {fileID: 0} + - target: {fileID: 7738048135870723364, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 7769894099278600579, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 7924534129409583897, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534129409583897, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534129409583897, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 7924534129409583897, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 7924534129409583897, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 7924534129445465898, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534129445465898, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534129445465898, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 7924534129445465898, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 7924534129445465898, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 7924534129659268503, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534129659268503, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534129659268503, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 7924534129659268503, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 7924534129659268503, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 7924534129731297417, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534129731297417, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534129731297417, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 7924534129731297417, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 7924534129731297417, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 7924534130210505191, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534130210505191, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534130210505191, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 7924534130210505191, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 7924534130210505191, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 7924534130229645040, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534130229645040, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534130229645040, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 7924534130229645040, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 7924534130229645040, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 7924534130353783312, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534130353783312, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534130353783312, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 7924534130353783312, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 7924534130353783312, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 7924534130421786407, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534130421786407, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534130421786407, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 7924534130421786407, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 7924534130421786407, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 7924534130657427515, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7924534130657427515, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7924534130657427515, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7924534130657427515, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7924534130657427515, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7924534131002951538, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534131002951538, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7924534131002951538, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 7924534131002951538, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 66.5 + objectReference: {fileID: 0} + - target: {fileID: 7924534131002951538, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 8009422253736841875, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: -4375416705679505549, guid: 64f884351318b694f942625580e64a8b, type: 3} + - target: {fileID: 8164103197661548155, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8164103197661548155, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8164103197661548155, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8164103197661548155, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857384958279, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857384958279, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857384958279, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857384958279, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857594428292, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857594428292, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857594428292, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857594428292, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857840259568, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857840259568, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857840259568, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857840259568, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857958946236, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857958946236, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857958946236, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513857958946236, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513858014305412, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513858014305412, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513858014305412, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513858014305412, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513858609221426, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513858609221426, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513858609221426, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513858609221426, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513858619734107, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513858619734107, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513858619734107, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513858619734107, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513859039984414, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513859039984414, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513859039984414, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513859039984414, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513859100533129, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513859100533129, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513859100533129, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513859100533129, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513859437655131, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513859437655131, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513859437655131, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8216513859437655131, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8281471620979515639, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_Name + value: SendBtn + objectReference: {fileID: 0} + - target: {fileID: 8314454595626939394, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8314454595626939394, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8314454595626939394, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8314454595626939394, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8320595574703178126, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8320595574703178126, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8320595574703178126, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8320595574703178126, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8346793175408449701, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8346793175408449701, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8346793175408449701, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8346793175408449701, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8394007395366152901, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: -3014893831786530833, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + - target: {fileID: 8501434271563698746, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8501434271563698746, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8501434271563698746, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8501434271563698746, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737626647436489, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737626647436489, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737626647436489, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737626647436489, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737626647436489, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737628027058285, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737628027058285, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737628027058285, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737628027058285, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737628027058285, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737628337422351, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737628337422351, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737628337422351, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737628337422351, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8548737628337422351, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8671162679775307735, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 8745951203376747782, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8745951203376747782, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8745951203376747782, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8745951203376747782, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8777509893439170856, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 8777509893992219971, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 8777509894028165488, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 8777509894241919949, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 8777509894314987219, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 8777509894602009674, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 8777509894668880253, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 8777509894745284778, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 8777509894793260989, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 8901368183860841052, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8901368183860841052, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8901368183860841052, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8901368183860841052, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9126870712878526366, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 9128091899804094163, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9128091899804094163, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9128091899804094163, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9128091899804094163, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9128091899804094163, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9128091899804094163, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 2294946499120267869, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + - {fileID: 325358635847645707, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + m_RemovedGameObjects: + - {fileID: 440948656997433541, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + - {fileID: 440948657145060110, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + - {fileID: 7617588998825573381, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + - {fileID: 7617588999274406083, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 440948657507497622, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + insertIndex: -1 + addedObject: {fileID: 1456218224} + - targetCorrespondingSourceObject: {fileID: 440948658039273577, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + insertIndex: 1 + addedObject: {fileID: 1074969465} + - targetCorrespondingSourceObject: {fileID: 440948658039273577, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + insertIndex: 2 + addedObject: {fileID: 547835713} + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 440948656542363877, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + insertIndex: -1 + addedObject: {fileID: 1097776499} + - targetCorrespondingSourceObject: {fileID: 440948656542363877, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + insertIndex: -1 + addedObject: {fileID: 1097776498} + - targetCorrespondingSourceObject: {fileID: 7617589000054544545, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + insertIndex: -1 + addedObject: {fileID: 311294975} + - targetCorrespondingSourceObject: {fileID: 8281471620979515639, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + insertIndex: -1 + addedObject: {fileID: 311294974} + m_SourcePrefab: {fileID: 100100000, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} +--- !u!1 &311294966 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 440948656542363877, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + m_PrefabInstance: {fileID: 311294965} + m_PrefabAsset: {fileID: 0} +--- !u!224 &311294967 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 440948658443708140, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + m_PrefabInstance: {fileID: 311294965} + m_PrefabAsset: {fileID: 0} +--- !u!224 &311294969 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 440948658039273577, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + m_PrefabInstance: {fileID: 311294965} + m_PrefabAsset: {fileID: 0} +--- !u!1 &311294970 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 8281471620979515639, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + m_PrefabInstance: {fileID: 311294965} + m_PrefabAsset: {fileID: 0} +--- !u!114 &311294971 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 688733258224088205, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + m_PrefabInstance: {fileID: 311294965} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!224 &311294972 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 440948657507497622, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + m_PrefabInstance: {fileID: 311294965} + m_PrefabAsset: {fileID: 0} +--- !u!1 &311294973 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 7617589000054544545, guid: b8573c816e5b6b54ebf34e1253271cb1, type: 3} + m_PrefabInstance: {fileID: 311294965} + m_PrefabAsset: {fileID: 0} +--- !u!114 &311294974 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 311294970} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 3 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 0} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1097776498} + m_TargetAssemblyTypeName: ComportementEntreeUtilisateur, Assembly-CSharp + m_MethodName: TraitementEntree + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!114 &311294975 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 311294973} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 3 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 0} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerPrefs + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!1 &322004674 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 322004675} + - component: {fileID: 322004677} + - component: {fileID: 322004676} + m_Layer: 5 + m_Name: TexteParametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &322004675 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322004674} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &322004676 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322004674} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Pr\xE9f\xE9rences" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &322004677 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322004674} + m_CullTransparentMesh: 1 +--- !u!1 &364059296 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 364059297} + - component: {fileID: 364059299} + - component: {fileID: 364059298} + m_Layer: 7 + m_Name: TextePrefab + m_TagString: TextePrefab + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &364059297 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 364059296} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2045732716} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &364059298 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 364059296} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Historique + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 28 + m_fontSizeBase: 28 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &364059299 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 364059296} + m_CullTransparentMesh: 1 +--- !u!1 &368017725 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 368017726} + - component: {fileID: 368017729} + - component: {fileID: 368017728} + - component: {fileID: 368017727} + m_Layer: 5 + m_Name: IconEnvoyer + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &368017726 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 368017725} + m_LocalRotation: {x: 0, y: 0, z: 0.7071068, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1884291089} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 90} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 15, y: 0} + m_SizeDelta: {x: 30, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &368017727 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 368017725} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &368017728 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 368017725} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 5755064874296045133, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &368017729 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 368017725} + m_CullTransparentMesh: 1 +--- !u!1 &395946939 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 395946940} + - component: {fileID: 395946943} + - component: {fileID: 395946942} + - component: {fileID: 395946941} + m_Layer: 0 + m_Name: APParametres + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &395946940 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &395946941 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &395946942 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &395946943 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 395946939} + m_CullTransparentMesh: 1 +--- !u!1 &404304175 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 404304176} + - component: {fileID: 404304177} + m_Layer: 0 + m_Name: TTSSpeakerAudio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &404304176 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 404304175} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1134725728} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!82 &404304177 +AudioSource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 404304175} + m_Enabled: 1 + serializedVersion: 4 + OutputAudioMixerGroup: {fileID: 0} + m_audioClip: {fileID: 0} + m_Resource: {fileID: 0} + m_PlayOnAwake: 0 + m_Volume: 1 + m_Pitch: 1 + Loop: 0 + Mute: 0 + Spatialize: 0 + SpatializePostEffects: 0 + Priority: 128 + DopplerLevel: 1 + MinDistance: 1 + MaxDistance: 500 + Pan2D: 0 + rolloffMode: 0 + BypassEffects: 0 + BypassListenerEffects: 0 + BypassReverbZones: 0 + rolloffCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + panLevelCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + spreadCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + reverbZoneMixCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!1 &406113352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 406113353} + - component: {fileID: 406113355} + - component: {fileID: 406113354} + m_Layer: 5 + m_Name: TexteRecherche + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &406113353 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406113352} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1850278314} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &406113354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406113352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Rechercher + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &406113355 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406113352} + m_CullTransparentMesh: 1 +--- !u!1 &409940173 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 409940174} + - component: {fileID: 409940177} + - component: {fileID: 409940176} + - component: {fileID: 409940175} + m_Layer: 5 + m_Name: Choix + m_TagString: OptionDD + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &409940174 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 409940173} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 145671443} + - {fileID: 1752735683} + - {fileID: 500101350} + m_Father: {fileID: 644900613} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &409940175 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 409940173} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b743370ac3e4ec2a1668f5455a8ef8a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 409940176} + m_Template: {fileID: 500101350} + m_CaptionText: {fileID: 145671444} + m_CaptionImage: {fileID: 0} + m_Placeholder: {fileID: 0} + m_ItemText: {fileID: 610501581} + m_ItemImage: {fileID: 0} + m_Value: 0 + m_MultiSelect: 0 + m_Options: + m_Options: + - m_Text: "Fran\xE7ais" + m_Image: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + - m_Text: English + m_Image: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + - m_Text: Italiano + m_Image: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + - m_Text: "Espa\xF1ol" + m_Image: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + - m_Text: Deutsch + m_Image: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_AlphaFadeSpeed: 0.15 +--- !u!114 &409940176 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 409940173} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &409940177 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 409940173} + m_CullTransparentMesh: 1 +--- !u!1 &413364813 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 413364814} + - component: {fileID: 413364817} + - component: {fileID: 413364816} + - component: {fileID: 413364815} + m_Layer: 0 + m_Name: APQuitter + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &413364814 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1063242543} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &413364815 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &413364816 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &413364817 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413364813} + m_CullTransparentMesh: 1 +--- !u!1 &431439148 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 431439149} + - component: {fileID: 431439153} + - component: {fileID: 431439152} + - component: {fileID: 431439151} + - component: {fileID: 431439150} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &431439149 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 270107575} + 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: 0.5, y: 0.5} +--- !u!114 &431439150 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 431439151} +--- !u!114 &431439151 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 100, y: 100, z: 0.01} +--- !u!114 &431439152 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 431439153} + _clippers: + - {fileID: 431439151} +--- !u!114 &431439153 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431439148} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &441898667 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 441898668} + - component: {fileID: 441898671} + - component: {fileID: 441898669} + - component: {fileID: 441898672} + - component: {fileID: 441898675} + - component: {fileID: 441898674} + - component: {fileID: 441898676} + m_Layer: 5 + m_Name: Parametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &441898668 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 395946940} + - {fileID: 774668364} + - {fileID: 1268310364} + - {fileID: 322004675} + m_Father: {fileID: 1020060957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -0.15} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &441898669 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 395946942} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &441898671 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_CullTransparentMesh: 1 +--- !u!223 &441898672 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &441898674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 100 + largeur_max: 500 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!114 &441898675 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 1268310367} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 441898674} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: AgrandirMenu + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 441898674} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerPrefs + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 780759557} + m_TargetAssemblyTypeName: ComportementBoutonsMenu, Assembly-CSharp + m_MethodName: BoutonClique + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &441898676 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441898667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!1001 &444503454 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1472196242} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.x + value: 0.0050000004 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.y + value: 0.005 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalScale.z + value: 0.0050000004 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.x + value: 42.950542 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.y + value: 176.69196 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalPosition.z + value: 392.6208 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.w + value: 0.53729963 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.y + value: 0.8433915 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 115 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: cae085d13537bd24284ac549e6c37828, type: 3} + propertyPath: m_Name + value: AstroDomeTowerAjouts + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: + - {fileID: -8863915555519361675, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: 8915814645257020977, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: 6258596943439289011, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: 3865866970745896531, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: -8671160763535159996, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: -6452144440209470663, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: 8079614603090016183, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: 8503934962033130527, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: -38332879115174756, guid: cae085d13537bd24284ac549e6c37828, type: 3} + - {fileID: -1698393537433210792, guid: cae085d13537bd24284ac549e6c37828, type: 3} + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: cae085d13537bd24284ac549e6c37828, type: 3} +--- !u!1 &460675302 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 460675307} + - component: {fileID: 460675306} + - component: {fileID: 460675305} + - component: {fileID: 460675304} + - component: {fileID: 460675303} + m_Layer: 5 + m_Name: PourBulleTexte + m_TagString: Pour + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &460675303 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81607e97867670043b0f88a7850a3b78, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &460675304 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &460675305 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &460675306 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &460675307 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460675302} + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.01, y: 0.01, z: 0.01} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 309614185} + - {fileID: 1792859815} + - {fileID: 1238373959} + m_Father: {fileID: 1181119902} + 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: 3.5} + m_SizeDelta: {x: 500, y: 200} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &478487495 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 478487497} + - component: {fileID: 478487496} + - component: {fileID: 478487499} + m_Layer: 0 + m_Name: ComportementFenetrePreferences + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &478487496 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 478487495} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 40032d926c1a4a84aa451aaa2a114b53, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &478487497 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 478487495} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: -0.15, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &478487499 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 478487495} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ef2f097cac0359b478ae44e2512c8f4c, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &484739071 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 484739072} + - component: {fileID: 484739075} + - component: {fileID: 484739074} + - component: {fileID: 484739073} + m_Layer: 0 + m_Name: APMicro + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &484739072 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 484739071} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1663843239} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &484739073 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 484739071} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &484739074 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 484739071} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &484739075 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 484739071} + m_CullTransparentMesh: 1 +--- !u!1 &499297136 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 499297137} + - component: {fileID: 499297138} + m_Layer: 5 + m_Name: Text Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &499297137 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499297136} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 674047960} + - {fileID: 1104579700} + m_Father: {fileID: 1994937810} + 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.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &499297138 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499297136} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: {x: -8, y: -5, z: -8, w: -5} + m_Softness: {x: 0, y: 0} +--- !u!1 &499413739 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 499413740} + - component: {fileID: 499413742} + - component: {fileID: 499413741} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &499413740 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499413739} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 898336105} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &499413741 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499413739} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Mode jour + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 25 + m_fontSizeBase: 25 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &499413742 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499413739} + m_CullTransparentMesh: 1 +--- !u!1 &500101349 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 500101350} + - component: {fileID: 500101353} + - component: {fileID: 500101352} + - component: {fileID: 500101351} + m_Layer: 5 + m_Name: Template + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &500101350 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 500101349} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1186651504} + - {fileID: 201805384} + m_Father: {fileID: 409940174} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 2} + m_SizeDelta: {x: 0, y: 150} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &500101351 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 500101349} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 943391151} + m_Horizontal: 0 + m_Vertical: 1 + m_MovementType: 2 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 1186651504} + m_HorizontalScrollbar: {fileID: 0} + m_VerticalScrollbar: {fileID: 201805385} + m_HorizontalScrollbarVisibility: 0 + m_VerticalScrollbarVisibility: 2 + m_HorizontalScrollbarSpacing: 0 + m_VerticalScrollbarSpacing: -3 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &500101352 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 500101349} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &500101353 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 500101349} + m_CullTransparentMesh: 1 +--- !u!1 &510163432 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 510163433} + m_Layer: 0 + m_Name: RightHandAnchorDetached + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &510163433 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 510163432} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &517120271 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 517120272} + - component: {fileID: 517120276} + - component: {fileID: 517120275} + - component: {fileID: 517120274} + - component: {fileID: 517120273} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &517120272 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 635168671} + 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: 0.5, y: 0.5} +--- !u!114 &517120273 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 517120274} +--- !u!114 &517120274 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 100, y: 100, z: 0.01} +--- !u!114 &517120275 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 517120276} + _clippers: + - {fileID: 517120274} +--- !u!114 &517120276 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517120271} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &530733932 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 530733933} + - component: {fileID: 530733936} + - component: {fileID: 530733935} + - component: {fileID: 530733934} + m_Layer: 7 + m_Name: Viewport + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &530733933 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530733932} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2045732716} + m_Father: {fileID: 2048535657} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &530733934 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530733932} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 0 +--- !u!114 &530733935 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530733932} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &530733936 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530733932} + m_CullTransparentMesh: 1 +--- !u!1 &533471964 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 533471965} + - component: {fileID: 533471968} + - component: {fileID: 533471967} + - component: {fileID: 533471966} + m_Layer: 5 + m_Name: IconQuitter + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &533471965 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1063242543} + 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: 55, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &533471966 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &533471967 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -8278380930669122163, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &533471968 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 533471964} + m_CullTransparentMesh: 1 +--- !u!1 &545897465 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 545897469} + - component: {fileID: 545897468} + - component: {fileID: 545897466} + m_Layer: 7 + m_Name: HistoriqueDesMessages + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &545897466 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545897465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!223 &545897468 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545897465} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &545897469 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545897465} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2048535657} + - {fileID: 2011393429} + - {fileID: 123849440} + m_Father: {fileID: 30312108} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 300} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &546323936 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 546323937} + - component: {fileID: 546323939} + - component: {fileID: 546323938} + m_Layer: 5 + m_Name: FPSTExte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &546323937 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 546323936} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1894144129} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &546323938 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 546323936} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: New Text + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &546323939 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 546323936} + m_CullTransparentMesh: 1 +--- !u!1001 &547835712 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 311294969} + m_Modifications: + - target: {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 3514228717131758684, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 0db508f5b99fa0843b166ffb22a8a9db, type: 2} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7582301924461947640, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 3033926376679629024, guid: 64f884351318b694f942625580e64a8b, type: 3} + - target: {fileID: 7582301924461947640, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7582301924461947640, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7582301924461947640, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7582301924461947640, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8427117777238694044, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Name + value: MicrophoneBtn + objectReference: {fileID: 0} + - target: {fileID: 8427117777238694044, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_TagString + value: Micro + objectReference: {fileID: 0} + - target: {fileID: 8943299744121885031, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 8427117777238694044, guid: 292035910f8781541aeb438db140bd72, type: 3} + insertIndex: -1 + addedObject: {fileID: 547835715} + m_SourcePrefab: {fileID: 100100000, guid: 292035910f8781541aeb438db140bd72, type: 3} +--- !u!224 &547835713 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + m_PrefabInstance: {fileID: 547835712} + m_PrefabAsset: {fileID: 0} +--- !u!1 &547835714 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 8427117777238694044, guid: 292035910f8781541aeb438db140bd72, type: 3} + m_PrefabInstance: {fileID: 547835712} + m_PrefabAsset: {fileID: 0} +--- !u!114 &547835715 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 547835714} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 3 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 0} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1875844693} + m_TargetAssemblyTypeName: RunWhisper, Assembly-CSharp + m_MethodName: StartMicrophoneInference + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!1 &553160447 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 553160448} + - component: {fileID: 553160449} + m_Layer: 5 + m_Name: BoutonsGestionFenetrePrefs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &553160448 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 553160447} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2618178220305244257} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &553160449 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 553160447} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 5 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &564061075 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 564061076} + - component: {fileID: 564061078} + - component: {fileID: 564061077} + m_Layer: 5 + m_Name: TexteMicro + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &564061076 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 564061075} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1663843239} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &564061077 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 564061075} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Micro + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &564061078 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 564061075} + m_CullTransparentMesh: 1 +--- !u!1 &583361827 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 583361828} + m_Layer: 5 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &583361828 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 583361827} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1992139703} + m_Father: {fileID: 201805384} + 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: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &610501579 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 610501580} + - component: {fileID: 610501582} + - component: {fileID: 610501581} + m_Layer: 5 + m_Name: Item Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &610501580 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 610501579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8300466} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 5, y: -0.5} + m_SizeDelta: {x: -30, y: -3} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &610501581 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 610501579} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Option A + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &610501582 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 610501579} + m_CullTransparentMesh: 1 +--- !u!1 &613400026 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 613400027} + m_Layer: 0 + m_Name: LeftHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &613400027 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 613400026} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 787690123} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &620957628 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 620957632} + - component: {fileID: 620957631} + - component: {fileID: 620957629} + - component: {fileID: 620957630} + m_Layer: 0 + m_Name: CenterEyeAnchor + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!20 &620957629 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 1000 + field of view: 90 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!114 &620957630 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!81 &620957631 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + m_Enabled: 1 +--- !u!4 &620957632 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 620957628} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &634134236 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 634134237} + m_Layer: 0 + m_Name: LeftHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &634134237 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 634134236} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 771511960} + - {fileID: 787690123} + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &635168670 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 635168671} + - component: {fileID: 635168674} + - component: {fileID: 635168673} + - component: {fileID: 635168672} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionQuitter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &635168671 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 517120272} + m_Father: {fileID: 1063242543} + 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: 0.5, y: 0.5} +--- !u!114 &635168672 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &635168673 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1063242547} +--- !u!114 &635168674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635168670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 635168673} + _surface: {fileID: 517120275} + _selectSurface: {fileID: 517120276} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &644900612 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 644900613} + - component: {fileID: 644900614} + m_Layer: 5 + m_Name: ChoixLangue + m_TagString: ChoisirLangue + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &644900613 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 644900612} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1574461988} + - {fileID: 409940174} + m_Father: {fileID: 1917629182} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &644900614 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 644900612} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!4 &656799856 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + m_PrefabInstance: {fileID: 1158020325} + m_PrefabAsset: {fileID: 0} +--- !u!1 &674047956 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 674047960} + - component: {fileID: 674047959} + - component: {fileID: 674047957} + - component: {fileID: 674047958} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &674047957 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Entrez un texte... + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 2150773298 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 2 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!114 &674047958 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!222 &674047959 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_CullTransparentMesh: 1 +--- !u!224 &674047960 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674047956} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 499297137} + 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: 0.5, y: 0.5} +--- !u!1 &705551162 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 705551164} + - component: {fileID: 705551163} + m_Layer: 0 + m_Name: ManagerTTS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &705551163 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 705551162} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a9515da81d9fdab4e83868e6cadec01a, type: 3} + m_Name: + m_EditorClassIdentifier: + bobSpeaker: {fileID: 1648083964} + caelSpeaker: {fileID: 2003140780} + carlSpeaker: {fileID: 1134725729} +--- !u!4 &705551164 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 705551162} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &730089559 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 730089560} + - component: {fileID: 730089561} + m_Layer: 0 + m_Name: TTSSpeakerAudio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &730089560 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 730089559} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1648083963} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!82 &730089561 +AudioSource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 730089559} + m_Enabled: 1 + serializedVersion: 4 + OutputAudioMixerGroup: {fileID: 0} + m_audioClip: {fileID: 0} + m_Resource: {fileID: 0} + m_PlayOnAwake: 0 + m_Volume: 1 + m_Pitch: 1 + Loop: 0 + Mute: 0 + Spatialize: 0 + SpatializePostEffects: 0 + Priority: 128 + DopplerLevel: 1 + MinDistance: 1 + MaxDistance: 500 + Pan2D: 0 + rolloffMode: 0 + BypassEffects: 0 + BypassListenerEffects: 0 + BypassReverbZones: 0 + rolloffCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + panLevelCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + spreadCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + reverbZoneMixCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!1 &736431422 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 736431423} + m_Layer: 0 + m_Name: RightControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &736431423 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 736431422} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 256965890} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &741102124 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1748189153} + m_Modifications: + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Name + value: ToggleButton_Switch + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &741102125 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 741102124} + m_PrefabAsset: {fileID: 0} +--- !u!1 &741180260 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 741180262} + - component: {fileID: 741180261} + m_Layer: 0 + m_Name: FPS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &741180261 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 741180260} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7dd158344ea9428489f283268329574b, type: 3} + m_Name: + m_EditorClassIdentifier: + fpsText: {fileID: 546323938} +--- !u!4 &741180262 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 741180260} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1894144129} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &771511959 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 771511960} + m_Layer: 0 + m_Name: LeftControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &771511960 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 771511959} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 634134237} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &774668363 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 774668364} + - component: {fileID: 774668367} + - component: {fileID: 774668366} + - component: {fileID: 774668365} + m_Layer: 5 + m_Name: IconParametres + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &774668364 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 441898668} + 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: 50, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &774668365 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &774668366 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -3014893831786530833, guid: 4f3b4a4ae58ad484e9fc92ab68a8ffef, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &774668367 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 774668363} + m_CullTransparentMesh: 1 +--- !u!1 &780759556 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 780759558} + - component: {fileID: 780759557} + - component: {fileID: 780759559} + m_Layer: 0 + m_Name: ComportementBoutons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &780759557 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780759556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a7d13754c638b8b438c04ad0cef34e84, type: 3} + m_Name: + m_EditorClassIdentifier: + boutons: + - {fileID: 441898668} + - {fileID: 1850278314} + - {fileID: 1063242543} + rayon: 0.35 + duree_deplacement: 0.5 +--- !u!4 &780759558 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780759556} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.24000001, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &780759559 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780759556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fdd9ec74efce24c4ebf3d3b203c97f0a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &787690122 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 787690123} + m_Layer: 0 + m_Name: LeftControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &787690123 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 787690122} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 613400027} + m_Father: {fileID: 634134237} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &810782607 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 810782608} + m_Layer: 0 + m_Name: Content + m_TagString: Bulle3D + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &810782608 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 810782607} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1757504754} + m_Father: {fileID: 1377208421} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &848606436 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 1986964834} + m_PrefabAsset: {fileID: 0} +--- !u!1 &871160222 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!114 &871160224 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 871160222} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bc560ecd6936ee440ac2a92f970db479, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &898336104 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 898336105} + - component: {fileID: 898336106} + m_Layer: 5 + m_Name: Mode(Jour/Nuit) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &898336105 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 898336104} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 273128014} + - {fileID: 499413740} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &898336106 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 898336104} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &918401623 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 918401624} + - component: {fileID: 918401626} + - component: {fileID: 918401625} + m_Layer: 5 + m_Name: Item Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &918401624 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 918401623} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8300466} + 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: 0.5, y: 0.5} +--- !u!114 &918401625 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 918401623} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &918401626 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 918401623} + m_CullTransparentMesh: 1 +--- !u!1 &943391150 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 943391151} + m_Layer: 5 + m_Name: Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &943391151 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 943391150} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8300466} + m_Father: {fileID: 1186651504} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 28} + m_Pivot: {x: 0.5, y: 1} +--- !u!1 &992767194 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 992767195} + - component: {fileID: 992767197} + - component: {fileID: 992767196} + m_Layer: 5 + m_Name: AccueilTexte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &992767195 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 992767194} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1377208421} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &992767196 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 992767194} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Accueil (txt). + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 44.75 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &992767197 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 992767194} + m_CullTransparentMesh: 1 +--- !u!1 &1013904230 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1013904231} + - component: {fileID: 1013904234} + - component: {fileID: 1013904233} + - component: {fileID: 1013904232} + m_Layer: 0 + m_Name: APRecherche + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1013904231 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1850278314} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1013904232 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!114 &1013904233 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1013904234 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013904230} + m_CullTransparentMesh: 1 +--- !u!1 &1020060953 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1020060957} + - component: {fileID: 1020060956} + - component: {fileID: 1020060955} + - component: {fileID: 1020060958} + m_Layer: 5 + m_Name: CanvasBoutons(Menu) + m_TagString: MenuBoutons + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1020060955 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1020060956 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 0 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1020060957 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 441898668} + - {fileID: 1063242543} + - {fileID: 1850278314} + m_Father: {fileID: 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: 0} + m_SizeDelta: {x: 0.48, y: 0.45} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1020060958 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020060953} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b6d529719047c6546bdedb62226bed83, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1062745314 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1062745315} + - component: {fileID: 1062745317} + - component: {fileID: 1062745316} + m_Layer: 5 + m_Name: Item Checkmark + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1062745315 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1062745314} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8300466} + 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: 10, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1062745316 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1062745314} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1062745317 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1062745314} + m_CullTransparentMesh: 1 +--- !u!1 &1063242542 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1063242543} + - component: {fileID: 1063242546} + - component: {fileID: 1063242544} + - component: {fileID: 1063242547} + - component: {fileID: 1063242548} + - component: {fileID: 1063242550} + - component: {fileID: 1063242549} + m_Layer: 5 + m_Name: Quitter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1063242543 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 635168671} + - {fileID: 413364814} + - {fileID: 533471965} + - {fileID: 1837925294} + m_Father: {fileID: 1020060957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -0.15} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1063242544 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 413364816} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1063242546 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_CullTransparentMesh: 1 +--- !u!223 &1063242547 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1063242548 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1063242549 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 100 + largeur_max: 500 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!114 &1063242550 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1063242542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 635168674} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1063242549} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: AgrandirMenu + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1063242549} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerQuitter + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 780759557} + m_TargetAssemblyTypeName: ComportementAnimationBoutonsMenu, Assembly-CSharp + m_MethodName: BoutonClique + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!1001 &1074969464 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 311294969} + m_Modifications: + - target: {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3514228717131758684, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 0db508f5b99fa0843b166ffb22a8a9db, type: 2} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_SizeDelta.x + value: 70 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7582301924461947640, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 6338432638553648094, guid: 64f884351318b694f942625580e64a8b, type: 3} + - target: {fileID: 7582301924461947640, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7582301924461947640, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7582301924461947640, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7582301924461947640, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8427117777238694044, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_Name + value: InitSearchBtn + objectReference: {fileID: 0} + - target: {fileID: 8943299744121885031, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9210260128077714954, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: m_text + value: Init + objectReference: {fileID: 0} + - target: {fileID: 9210260128077714954, guid: 292035910f8781541aeb438db140bd72, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 8427117777238694044, guid: 292035910f8781541aeb438db140bd72, type: 3} + insertIndex: -1 + addedObject: {fileID: 1074969467} + m_SourcePrefab: {fileID: 100100000, guid: 292035910f8781541aeb438db140bd72, type: 3} +--- !u!224 &1074969465 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, type: 3} + m_PrefabInstance: {fileID: 1074969464} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1074969466 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 8427117777238694044, guid: 292035910f8781541aeb438db140bd72, type: 3} + m_PrefabInstance: {fileID: 1074969464} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1074969467 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1074969466} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 3 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 0} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerRecherche + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!1 &1084123205 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1084123206} + m_Layer: 0 + m_Name: Personnages + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1084123206 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1084123205} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -42.950542, y: -177.69196, z: -392.6208} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 656799856} + - {fileID: 1589081817} + - {fileID: 1181119902} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1088058506 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1088058507} + - component: {fileID: 1088058509} + - component: {fileID: 1088058508} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1088058507 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1088058506} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1748189153} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1088058508 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1088058506} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Mon Option + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 34.45 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1088058509 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1088058506} + m_CullTransparentMesh: 1 +--- !u!1 &1094517600 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1094517601} + - component: {fileID: 1094517605} + - component: {fileID: 1094517604} + - component: {fileID: 1094517603} + - component: {fileID: 1094517608} + - component: {fileID: 1094517607} + - component: {fileID: 1094517606} + m_Layer: 0 + m_Name: BarreDeplacement + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1094517601 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1487879533} + m_Father: {fileID: 30312108} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 5} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1094517603 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.78113204, g: 0.78113204, b: 0.78113204, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!223 &1094517604 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 0 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!222 &1094517605 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_CullTransparentMesh: 1 +--- !u!65 &1094517606 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 100, y: 25, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1094517607 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 30312108} + _maxGrabPoints: -1 + _rigidbody: {fileID: 1094517608} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &1094517608 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094517600} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!1 &1096578847 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1096578848} + m_Layer: 0 + m_Name: TrackingSpace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1096578848 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1096578847} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 77833130} + - {fileID: 620957632} + - {fileID: 1260653749} + - {fileID: 2087978707} + - {fileID: 634134237} + - {fileID: 256965890} + - {fileID: 108285112} + - {fileID: 510163433} + m_Father: {fileID: 1875844688} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1097776498 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 311294966} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f9a237365031784e9a1c139ac1991cb, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1097776499 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 311294966} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8dbbc65f98bedc9459b94a96e3eaf813, type: 3} + m_Name: + m_EditorClassIdentifier: + m_window: {fileID: 311294967} + controller: {fileID: 771511960} +--- !u!1 &1104579697 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1104579700} + - component: {fileID: 1104579699} + - component: {fileID: 1104579698} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1104579698 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104579697} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "\u200B" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 3 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1104579699 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104579697} + m_CullTransparentMesh: 1 +--- !u!224 &1104579700 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104579697} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 499297137} + 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: 0.5, y: 0.5} +--- !u!1 &1134725727 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1134725728} + - component: {fileID: 1134725729} + m_Layer: 0 + m_Name: ContreTTS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1134725728 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1134725727} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 404304176} + m_Father: {fileID: 1552541072} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1134725729 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1134725727} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b15403450229c3a4b8455a61d6143a6d, type: 3} + m_Name: + m_EditorClassIdentifier: + _events: + OnTextPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnTextPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnTextPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackReady: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + _onInit: + m_PersistentCalls: + m_Calls: [] + _onComplete: + m_PersistentCalls: + m_Calls: [] + _onLoadBegin: + m_PersistentCalls: + m_Calls: [] + _onLoadAbort: + m_PersistentCalls: + m_Calls: [] + _onLoadFailed: + m_PersistentCalls: + m_Calls: [] + _onLoadSuccess: + m_PersistentCalls: + m_Calls: [] + _onPlaybackReady: + m_PersistentCalls: + m_Calls: [] + _onPlaybackStart: + m_PersistentCalls: + m_Calls: [] + _onPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + _onPlaybackClipUpdated: + m_PersistentCalls: + m_Calls: [] + _onPlaybackComplete: + m_PersistentCalls: + m_Calls: [] + _onPlaybackQueueBegin: + m_PersistentCalls: + m_Calls: [] + _onPlaybackQueueComplete: + m_PersistentCalls: + m_Calls: [] + OnClipDataQueued: + m_PersistentCalls: + m_Calls: [] + OnClipLoadBegin: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadBegin: + m_PersistentCalls: + m_Calls: [] + OnClipLoadAbort: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadAbort: + m_PersistentCalls: + m_Calls: [] + OnClipLoadFailed: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadFailed: + m_PersistentCalls: + m_Calls: [] + OnClipLoadSuccess: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadSuccess: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackReady: + m_PersistentCalls: + m_Calls: [] + OnStartSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnCancelledSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnFinishedSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + PrependedText: + AppendedText: + _ttsService: {fileID: 1137605303} + presetVoiceID: WIT$CARL + customWitVoiceSettings: + SettingsId: + PrependedText: + AppendedText: + voice: Charlie + style: default + speed: 100 + pitch: 100 + verboseLogging: 0 +--- !u!1 &1137605302 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1137605306} + - component: {fileID: 1137605303} + - component: {fileID: 1137605305} + - component: {fileID: 1137605304} + m_Layer: 0 + m_Name: TTSWitService + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1137605303 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1137605302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a6b3124b830442d45b9f357ff99b152f, type: 3} + m_Name: + m_EditorClassIdentifier: + verboseLogging: 0 + _audioSystem: {fileID: 0} + _runtimeCacheHandler: {fileID: 0} + _diskCacheHandler: {fileID: 0} + _events: + OnClipCreated: + m_PersistentCalls: + m_Calls: [] + OnClipUnloaded: + m_PersistentCalls: + m_Calls: [] + WebRequest: + OnRequestBegin: + m_PersistentCalls: + m_Calls: [] + OnRequestCancel: + m_PersistentCalls: + m_Calls: [] + OnRequestError: + m_PersistentCalls: + m_Calls: [] + OnRequestFirstResponse: + m_PersistentCalls: + m_Calls: [] + OnRequestReady: + m_PersistentCalls: + m_Calls: [] + OnRequestComplete: + m_PersistentCalls: + m_Calls: [] + Stream: + OnStreamBegin: + m_PersistentCalls: + m_Calls: [] + OnStreamReady: + m_PersistentCalls: + m_Calls: [] + OnStreamClipUpdate: + m_PersistentCalls: + m_Calls: [] + OnStreamComplete: + m_PersistentCalls: + m_Calls: [] + OnStreamCancel: + m_PersistentCalls: + m_Calls: [] + OnStreamError: + m_PersistentCalls: + m_Calls: [] + Download: + OnDownloadBegin: + m_PersistentCalls: + m_Calls: [] + OnDownloadSuccess: + m_PersistentCalls: + m_Calls: [] + OnDownloadCancel: + m_PersistentCalls: + m_Calls: [] + OnDownloadError: + m_PersistentCalls: + m_Calls: [] + RequestSettings: + _configuration: {fileID: 11400000, guid: 7d01b1f05a37305448c144e3c27c54fd, type: 2} + audioType: 1 + audioStream: 1 + useEvents: 1 + maxConcurrentRequests: -1 + audioStreamPreloadCount: 5 + audioReadyDuration: 1.5 + audioMaxDuration: 15 + _presetVoiceSettings: + - SettingsId: WIT$BRITISH BUTLER + PrependedText: + AppendedText: + voice: wit$British Butler + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CAEL + PrependedText: + AppendedText: + voice: wit$Cael + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CAM + PrependedText: + AppendedText: + voice: wit$Cam + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CARL + PrependedText: + AppendedText: + voice: wit$Carl + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CARTOON BABY + PrependedText: + AppendedText: + voice: wit$Cartoon Baby + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CARTOON KID + PrependedText: + AppendedText: + voice: wit$Cartoon Kid + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CARTOON VILLAIN + PrependedText: + AppendedText: + voice: wit$Cartoon Villain + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CHARLIE + PrependedText: + AppendedText: + voice: wit$Charlie + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$COCKNEY ACCENT + PrependedText: + AppendedText: + voice: wit$Cockney Accent + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CODY + PrependedText: + AppendedText: + voice: wit$Cody + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$COLIN + PrependedText: + AppendedText: + voice: wit$Colin + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$CONNOR + PrependedText: + AppendedText: + voice: wit$Connor + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$COOPER + PrependedText: + AppendedText: + voice: wit$Cooper + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$DISAFFECTED + PrependedText: + AppendedText: + voice: wit$Disaffected + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$HOLLYWOOD + PrependedText: + AppendedText: + voice: wit$Hollywood + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$KENYAN ACCENT + PrependedText: + AppendedText: + voice: wit$Kenyan Accent + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$OVERCONFIDENT + PrependedText: + AppendedText: + voice: wit$Overconfident + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$PIRATE + PrependedText: + AppendedText: + voice: wit$Pirate + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$PROSPECTOR + PrependedText: + AppendedText: + voice: wit$Prospector + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$RAILEY + PrependedText: + AppendedText: + voice: wit$Railey + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$REBECCA + PrependedText: + AppendedText: + voice: wit$Rebecca + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$REMI + PrependedText: + AppendedText: + voice: wit$Remi + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$ROSIE + PrependedText: + AppendedText: + voice: wit$Rosie + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$RUBIE + PrependedText: + AppendedText: + voice: wit$Rubie + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$SOUTHERN ACCENT + PrependedText: + AppendedText: + voice: wit$Southern Accent + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$SURFER + PrependedText: + AppendedText: + voice: wit$Surfer + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$TRENDY + PrependedText: + AppendedText: + voice: wit$Trendy + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$VAMPIRE + PrependedText: + AppendedText: + voice: wit$Vampire + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$WHIMSICAL + PrependedText: + AppendedText: + voice: wit$Whimsical + style: default + speed: 100 + pitch: 100 + - SettingsId: WIT$WIZARD + PrependedText: + AppendedText: + voice: wit$Wizard + style: default + speed: 100 + pitch: 100 +--- !u!114 &1137605304 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1137605302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b0ffdd015bcb8ea41bb96f19a723bf7d, type: 3} + m_Name: + m_EditorClassIdentifier: + _diskPath: TTS/ + _defaultSettings: + DiskCacheLocation: 0 + StreamFromDisk: 0 + StreamBufferLength: 5 +--- !u!114 &1137605305 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1137605302} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1d60dcb6d02034b4b96284db469db5e3, type: 3} + m_Name: + m_EditorClassIdentifier: + ClipLimit: 0 + ClipCapacity: 5 + RamLimit: 1 + RamCapacity: 3600 +--- !u!4 &1137605306 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1137605302} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1681576835} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1158020325 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1084123206} + m_Modifications: + - target: {fileID: 264558904099048137, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_Name + value: PapiAccueil + objectReference: {fileID: 0} + - target: {fileID: 4236956267425915894, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7215966803302086518, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalScale.x + value: 0.85 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalScale.y + value: 0.85 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalScale.z + value: 0.85 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalPosition.x + value: 42.950542 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalPosition.y + value: 177.79196 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalPosition.z + value: 390.6208 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalRotation.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 8392563628721651959, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} + insertIndex: -1 + addedObject: {fileID: 1377208421} + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f285bb23cfbb2004b9327c5520d8a719, type: 3} +--- !u!1 &1167643596 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1167643603} + - component: {fileID: 1167643602} + - component: {fileID: 1167643597} + - component: {fileID: 1167643601} + - component: {fileID: 1167643600} + - component: {fileID: 1167643599} + - component: {fileID: 1167643598} + m_Layer: 0 + m_Name: Debugs + m_TagString: Debug + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1167643597 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "Aucun debug \xE0 afficher." + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30.65 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: -53.619247, y: -51.508995, z: 97.61298, w: -3.377018} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!223 &1167643598 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1167643599 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _oneGrabTransformer: {fileID: 0} + _twoGrabTransformer: {fileID: 0} + _targetTransform: {fileID: 1167643603} + _maxGrabPoints: -1 + _rigidbody: {fileID: 1167643600} + _kinematicWhileSelected: 1 + _throwWhenUnselected: 1 +--- !u!54 &1167643600 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!65 &1167643601 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 200, y: 50, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!222 &1167643602 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_CullTransparentMesh: 1 +--- !u!224 &1167643603 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167643596} + m_LocalRotation: {x: -0, y: 0.13052617, z: -0, w: 0.99144495} + m_LocalPosition: {x: 0, y: 0, z: 150} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1715473791} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 154.54816, y: 100} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1001 &1181119901 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1084123206} + m_Modifications: + - target: {fileID: 632503749797604212, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1341491636947615167, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_Name + value: PapiPour + objectReference: {fileID: 0} + - target: {fileID: 5461402282910689633, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalScale.x + value: 0.85 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalScale.y + value: 0.85 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalScale.z + value: 0.85 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalPosition.x + value: 40.950542 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalPosition.y + value: 177.79196 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalPosition.z + value: 392.6208 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalRotation.w + value: 0.17364825 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalRotation.y + value: 0.9848078 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 160 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + insertIndex: -1 + addedObject: {fileID: 460675307} + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} +--- !u!4 &1181119902 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8014573732519446444, guid: 090006d94a8f11945a1c6a52e7c739cb, type: 3} + m_PrefabInstance: {fileID: 1181119901} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1183177244 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1183177245} + - component: {fileID: 1183177247} + - component: {fileID: 1183177246} + m_Layer: 7 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1183177245 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1183177244} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1624384851} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1183177246 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1183177244} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1183177247 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1183177244} + m_CullTransparentMesh: 1 +--- !u!1 &1186651503 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1186651504} + - component: {fileID: 1186651507} + - component: {fileID: 1186651506} + - component: {fileID: 1186651505} + m_Layer: 5 + m_Name: Viewport + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1186651504 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1186651503} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 943391151} + m_Father: {fileID: 500101350} + 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: -18, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1186651505 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1186651503} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1186651506 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1186651503} + m_CullTransparentMesh: 1 +--- !u!114 &1186651507 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1186651503} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 0 +--- !u!1 &1238373958 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1238373959} + - component: {fileID: 1238373961} + - component: {fileID: 1238373960} + m_Layer: 5 + m_Name: PourTexte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1238373959 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238373958} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 460675307} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1238373960 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238373958} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Pour (txt). + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 44.75 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1238373961 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238373958} + m_CullTransparentMesh: 1 +--- !u!1 &1242248373 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1242248374} + - component: {fileID: 1242248378} + - component: {fileID: 1242248377} + - component: {fileID: 1242248376} + - component: {fileID: 1242248375} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1242248374 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 123849440} + 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: 0.5, y: 0.5} +--- !u!114 &1242248375 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 1242248376} +--- !u!114 &1242248376 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 200, y: 300, z: 0.01} +--- !u!114 &1242248377 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 1242248378} + _clippers: + - {fileID: 1242248376} +--- !u!114 &1242248378 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1242248373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &1260653748 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1260653749} + - component: {fileID: 1260653751} + - component: {fileID: 1260653750} + m_Layer: 0 + m_Name: RightEyeAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1260653749 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1260653748} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1260653750 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1260653748} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!20 &1260653751 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1260653748} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 2 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!1 &1268310363 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1268310364} + - component: {fileID: 1268310367} + - component: {fileID: 1268310366} + - component: {fileID: 1268310365} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionParametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1268310364 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1342171620} + m_Father: {fileID: 441898668} + 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: 0.5, y: 0.5} +--- !u!114 &1268310365 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1268310366 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 441898672} +--- !u!114 &1268310367 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1268310363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1268310366} + _surface: {fileID: 1342171623} + _selectSurface: {fileID: 1342171624} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &1272714500 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1272714501} + m_Layer: 0 + m_Name: RightHandOnControllerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1272714501 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1272714500} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1981779245} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1300854822 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1300854824} + - component: {fileID: 1300854823} + m_Layer: 0 + m_Name: Global Volume + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1300854823 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1300854822} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IsGlobal: 1 + priority: 0 + blendDistance: 0 + weight: 1 + sharedProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} +--- !u!4 &1300854824 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1300854822} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1331752627 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.x + value: -5 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 897537686178030139, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1852369632254168283, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Camera + value: + objectReference: {fileID: 620957629} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Name + value: FenetrePreferences + objectReference: {fileID: 0} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_TagString + value: FenetrePrefs + objectReference: {fileID: 0} + - target: {fileID: 3074094648544205015, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Enabled + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Spacing + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Top + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildAlignment + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Left + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Right + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Padding.m_Bottom + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildControlWidth + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildControlHeight + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandWidth + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5494400569655304138, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandHeight + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7881774007595699318, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandWidth + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7881774007595699318, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_ChildForceExpandHeight + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8688192856564850643, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Material + value: + objectReference: {fileID: 2100000, guid: 3f1a8ea57450bd749a74467129ec5145, type: 2} + - target: {fileID: 8828657145035524727, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + propertyPath: m_Enabled + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 553160448} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 267046851} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 898336105} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 1917629182} + - targetCorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 1748189153} + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2121831639775495873, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 5398288} + - targetCorrespondingSourceObject: {fileID: 7348513585209113114, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + insertIndex: -1 + addedObject: {fileID: 871160224} + m_SourcePrefab: {fileID: 100100000, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} +--- !u!224 &1331752628 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3563149335964526229, guid: 6b196de96e7d16b4297c1980179ae439, type: 3} + m_PrefabInstance: {fileID: 1331752627} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1342171619 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1342171620} + - component: {fileID: 1342171624} + - component: {fileID: 1342171623} + - component: {fileID: 1342171622} + - component: {fileID: 1342171621} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1342171620 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1268310364} + 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: 0.5, y: 0.5} +--- !u!114 &1342171621 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 1342171622} +--- !u!114 &1342171622 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 100, y: 100, z: 0.01} +--- !u!114 &1342171623 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 1342171624} + _clippers: + - {fileID: 1342171622} +--- !u!114 &1342171624 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1342171619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &1346614465 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1346614466} + - component: {fileID: 1346614469} + - component: {fileID: 1346614468} + - component: {fileID: 1346614467} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1346614466 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 294728353} + m_Father: {fileID: 1994937810} + 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: 0.5, y: 0.5} +--- !u!114 &1346614467 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1346614468 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1994937811} +--- !u!114 &1346614469 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346614465} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1346614468} + _surface: {fileID: 294728356} + _selectSurface: {fileID: 294728357} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &1377208420 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1377208421} + - component: {fileID: 1377208425} + - component: {fileID: 1377208424} + - component: {fileID: 1377208423} + - component: {fileID: 1377208422} + m_Layer: 5 + m_Name: AccueilBulleTexte + m_TagString: Accueil + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1377208421 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377208420} + m_LocalRotation: {x: -0, y: 0.9848078, z: -0, w: -0.17364825} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.011764703, y: 0.011764705, z: 0.011764703} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 810782608} + - {fileID: 111316893} + - {fileID: 992767195} + m_Father: {fileID: 656799856} + 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: 3.5} + m_SizeDelta: {x: 500, y: 200} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1377208422 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377208420} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81607e97867670043b0f88a7850a3b78, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1377208423 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377208420} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1377208424 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377208420} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1377208425 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377208420} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &1382312902 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1382312904} + - component: {fileID: 1382312903} + - component: {fileID: 1382312905} + - component: {fileID: 1382312906} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionParametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1382312903 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1382312902} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1382312905} + _surface: {fileID: 1889754843} + _selectSurface: {fileID: 1889754839} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!224 &1382312904 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1382312902} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1889754842} + m_Father: {fileID: 1884291089} + 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: 0.5, y: 0.5} +--- !u!114 &1382312905 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1382312902} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1884291086} +--- !u!114 &1382312906 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1382312902} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1001 &1456218223 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 311294972} + m_Modifications: + - target: {fileID: 1153402752191318172, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3431257451533004179, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3431257451533004179, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Mode + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3431257451533004179, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 780759559} + - target: {fileID: 3431257451533004179, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_CallState + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3431257451533004179, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName + value: LancerQuitter + objectReference: {fileID: 0} + - target: {fileID: 3431257451533004179, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_TargetAssemblyTypeName + value: EnumFonctionsBouton, Assembly-CSharp + objectReference: {fileID: 0} + - target: {fileID: 3431257451533004179, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName + value: UnityEngine.Object, UnityEngine + objectReference: {fileID: 0} + - target: {fileID: 4672917962609713052, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_text + value: Quitter + objectReference: {fileID: 0} + - target: {fileID: 4672917962609713052, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_fontColor32.rgba + value: 3875536895 + objectReference: {fileID: 0} + - target: {fileID: 4672917962609713052, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: 'm_ActiveFontFeatures.Array.data[0]' + value: 1801810542 + objectReference: {fileID: 0} + - target: {fileID: 5475183150643663114, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_Name + value: QuitBtn + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6210850383232787310, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: -5749830677736848442, guid: 64f884351318b694f942625580e64a8b, type: 3} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_SizeDelta.x + value: 110 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} +--- !u!224 &1456218224 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 7840397774482836077, guid: 7b4b3ab309753d842ba0a79751aa1fb8, type: 3} + m_PrefabInstance: {fileID: 1456218223} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1472196241 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1472196242} + m_Layer: 0 + m_Name: Sol + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1472196242 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1472196241} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -42.950542, y: -177.69196, z: -392.6208} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2030833704} + - {fileID: 104161877} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1487879532 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1487879533} + - component: {fileID: 1487879536} + - component: {fileID: 1487879535} + - component: {fileID: 1487879534} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1487879533 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487879532} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1094517601} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1487879534 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487879532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 1094517606} +--- !u!114 &1487879535 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487879532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1487879536 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487879532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1094517607} + _surface: {fileID: 1487879534} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 1487879535} + _tiebreakerScore: 0 +--- !u!1 &1500648815 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1500648816} + - component: {fileID: 1500648819} + - component: {fileID: 1500648818} + - component: {fileID: 1500648817} + m_Layer: 5 + m_Name: IconRecherche + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1500648816 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1850278314} + 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: 50.005085, y: 0} + m_SizeDelta: {x: 100.000015, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1500648817 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &1500648818 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 6338432638553648094, guid: 64f884351318b694f942625580e64a8b, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1500648819 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1500648815} + m_CullTransparentMesh: 1 +--- !u!1 &1541343603 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1541343604} + - component: {fileID: 1541343607} + - component: {fileID: 1541343606} + - component: {fileID: 1541343605} + m_Layer: 0 + m_Name: PourBackground + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1541343604 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1541343603} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 309614185} + 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: 0.5, y: 0.5} +--- !u!114 &1541343605 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1541343603} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 30, y: 30, z: 30, w: 30} +--- !u!114 &1541343606 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1541343603} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: a8b3963696820314da0fd98d357bebfe, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1541343607 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1541343603} + m_CullTransparentMesh: 1 +--- !u!1 &1542799696 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1542799701} + - component: {fileID: 1542799700} + - component: {fileID: 1542799699} + - component: {fileID: 1542799698} + - component: {fileID: 1542799697} + m_Layer: 5 + m_Name: ContreBulleTexte + m_TagString: Contre + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1542799697 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81607e97867670043b0f88a7850a3b78, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1542799698 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1542799699 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1542799700 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1542799701 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542799696} + m_LocalRotation: {x: -0, y: -1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.01, y: 0.01, z: 0.01} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 166660090} + - {fileID: 1914968693} + - {fileID: 1654463056} + m_Father: {fileID: 1589081817} + 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: 3.5} + m_SizeDelta: {x: 500, y: 200} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1552541071 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1552541072} + m_Layer: 0 + m_Name: ContreVoix + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1552541072 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1552541071} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1134725728} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1574461987 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1574461988} + - component: {fileID: 1574461990} + - component: {fileID: 1574461989} + m_Layer: 5 + m_Name: NomOption + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1574461988 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574461987} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 644900613} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1574461989 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574461987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Langue + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 15 + m_fontSizeBase: 15 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 4 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1574461990 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574461987} + m_CullTransparentMesh: 1 +--- !u!1001 &1589081816 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1084123206} + m_Modifications: + - target: {fileID: 1664986690228565752, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3142672125920960427, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_Name + value: PapiContre + objectReference: {fileID: 0} + - target: {fileID: 5290908748189498107, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalPosition.x + value: 44.950542 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalPosition.y + value: 177.79196 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalPosition.z + value: 392.6208 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalRotation.w + value: 0.17364825 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalRotation.y + value: -0.9848078 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -160 + objectReference: {fileID: 0} + - target: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + insertIndex: -1 + addedObject: {fileID: 1542799701} + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e51f060e5ae20c04895fd4416f923509, type: 3} +--- !u!4 &1589081817 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6882336577345060054, guid: e51f060e5ae20c04895fd4416f923509, type: 3} + m_PrefabInstance: {fileID: 1589081816} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1607579202 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1607579203} + - component: {fileID: 1607579206} + - component: {fileID: 1607579205} + - component: {fileID: 1607579204} + m_Layer: 7 + m_Name: Scrollbar Vertical + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1607579203 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607579202} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1624384851} + m_Father: {fileID: 2048535657} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: -17} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1607579204 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607579202} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1183177246} + m_HandleRect: {fileID: 1183177245} + m_Direction: 2 + m_Value: 1 + m_Size: 1 + m_NumberOfSteps: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1607579205 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607579202} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1607579206 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607579202} + m_CullTransparentMesh: 1 +--- !u!1 &1619923416 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1619923418} + - component: {fileID: 1619923417} + m_Layer: 0 + m_Name: TokenInit + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1619923417 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1619923416} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 883d2ea4411452145a4a4d88824cca26, type: 3} + m_Name: + m_EditorClassIdentifier: + Token: +--- !u!4 &1619923418 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1619923416} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1624384850 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1624384851} + m_Layer: 7 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1624384851 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1624384850} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1183177245} + m_Father: {fileID: 1607579203} + 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: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1648083962 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1648083963} + - component: {fileID: 1648083964} + m_Layer: 0 + m_Name: AccueilTTS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1648083963 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1648083962} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 730089560} + m_Father: {fileID: 2141597736} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1648083964 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1648083962} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b15403450229c3a4b8455a61d6143a6d, type: 3} + m_Name: + m_EditorClassIdentifier: + _events: + OnTextPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnTextPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnTextPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackReady: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + _onInit: + m_PersistentCalls: + m_Calls: [] + _onComplete: + m_PersistentCalls: + m_Calls: [] + _onLoadBegin: + m_PersistentCalls: + m_Calls: [] + _onLoadAbort: + m_PersistentCalls: + m_Calls: [] + _onLoadFailed: + m_PersistentCalls: + m_Calls: [] + _onLoadSuccess: + m_PersistentCalls: + m_Calls: [] + _onPlaybackReady: + m_PersistentCalls: + m_Calls: [] + _onPlaybackStart: + m_PersistentCalls: + m_Calls: [] + _onPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + _onPlaybackClipUpdated: + m_PersistentCalls: + m_Calls: [] + _onPlaybackComplete: + m_PersistentCalls: + m_Calls: [] + _onPlaybackQueueBegin: + m_PersistentCalls: + m_Calls: [] + _onPlaybackQueueComplete: + m_PersistentCalls: + m_Calls: [] + OnClipDataQueued: + m_PersistentCalls: + m_Calls: [] + OnClipLoadBegin: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadBegin: + m_PersistentCalls: + m_Calls: [] + OnClipLoadAbort: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadAbort: + m_PersistentCalls: + m_Calls: [] + OnClipLoadFailed: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadFailed: + m_PersistentCalls: + m_Calls: [] + OnClipLoadSuccess: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadSuccess: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackReady: + m_PersistentCalls: + m_Calls: [] + OnStartSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnCancelledSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnFinishedSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + PrependedText: + AppendedText: + _ttsService: {fileID: 1137605303} + presetVoiceID: WIT$BRITISH BUTLER + customWitVoiceSettings: + SettingsId: + PrependedText: + AppendedText: + voice: Charlie + style: default + speed: 100 + pitch: 100 + verboseLogging: 0 +--- !u!1 &1654463055 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1654463056} + - component: {fileID: 1654463058} + - component: {fileID: 1654463057} + m_Layer: 5 + m_Name: ContreTexte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1654463056 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1654463055} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1542799701} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1654463057 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1654463055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Contre (txt). + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 44.75 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 5 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1654463058 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1654463055} + m_CullTransparentMesh: 1 +--- !u!1 &1661708470 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1661708472} + - component: {fileID: 1661708471} + m_Layer: 0 + m_Name: EnvoyerRecevoir + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1661708471 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661708470} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b3a5933ccf77e5b4dac95a07f78b7914, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1661708472 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661708470} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1663843238 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1663843239} + - component: {fileID: 1663843245} + - component: {fileID: 1663843244} + - component: {fileID: 1663843240} + - component: {fileID: 1663843243} + - component: {fileID: 1663843242} + - component: {fileID: 1663843241} + m_Layer: 5 + m_Name: Micro + m_TagString: Micro + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1663843239 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 484739072} + - {fileID: 236943464} + - {fileID: 1882321118} + - {fileID: 564061076} + m_Father: {fileID: 38209877} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 37.5, y: -15} + m_SizeDelta: {x: 30, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!223 &1663843240 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1663843241 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1663843242 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 30 + largeur_max: 90 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!114 &1663843243 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 1882321121} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1663843242} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Agrandir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1663843242} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: RetrecirMicro + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1663843242} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: OnToggleMicroButton + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 1875844693} + m_TargetAssemblyTypeName: RunWhisper, Assembly-CSharp + m_MethodName: DemarrerEnregistrement + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1663843244 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 484739074} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1663843245 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1663843238} + m_CullTransparentMesh: 1 +--- !u!1 &1666108640 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1666108642} + - component: {fileID: 1666108641} + m_Layer: 0 + m_Name: GestionTexte + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1666108641 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1666108640} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e7b03c53c16497046bb06b986f119ab5, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1666108642 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1666108640} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1681576834 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1681576835} + m_Layer: 0 + m_Name: TTS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1681576835 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1681576834} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1137605306} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1693996083 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1693996084} + - component: {fileID: 1693996085} + - component: {fileID: 1693996087} + m_Layer: 0 + m_Name: Collisions espace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1693996084 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1693996083} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 200, y: 200, z: 200} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2030833704} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!65 &1693996085 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1693996083} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 140, y: 2, z: 150} + m_Center: {x: 0, y: -15, z: 0} +--- !u!114 &1693996087 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1693996083} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b23de8671ae61064a8eea338dc895c83, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1705736406 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1705736408} + - component: {fileID: 1705736407} + m_Layer: 0 + m_Name: GestionnaireAffichageClientServeur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1705736407 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705736406} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: daf83f5790a1ebc4b85208e164bc7016, type: 3} + m_Name: + m_EditorClassIdentifier: + init_token_client: {fileID: 1619923417} + envoyer_recevoir: {fileID: 1661708471} + DebugsTMP: {fileID: 1167643597} + Entree: {fileID: 311294971} + delai_entre_deux_frappes: 0.04 + managerTTS: {fileID: 705551163} + content_historique: {fileID: 2045732716} +--- !u!4 &1705736408 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705736406} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1715473790 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1715473791} + - component: {fileID: 1715473794} + - component: {fileID: 1715473793} + - component: {fileID: 1715473792} + m_Layer: 0 + m_Name: ISDK_RayGrabInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1715473791 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1167643603} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1715473792 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} + m_Name: + m_EditorClassIdentifier: + _collider: {fileID: 1167643601} +--- !u!114 &1715473793 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1715473794 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715473790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1167643599} + _surface: {fileID: 1715473792} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 1715473793} + _tiebreakerScore: 0 +--- !u!1 &1724459654 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1724459655} + - component: {fileID: 1724459656} + m_Layer: 0 + m_Name: TTSSpeakerAudio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1724459655 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1724459654} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2003140781} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!82 &1724459656 +AudioSource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1724459654} + m_Enabled: 1 + serializedVersion: 4 + OutputAudioMixerGroup: {fileID: 0} + m_audioClip: {fileID: 0} + m_Resource: {fileID: 0} + m_PlayOnAwake: 0 + m_Volume: 1 + m_Pitch: 1 + Loop: 0 + Mute: 0 + Spatialize: 0 + SpatializePostEffects: 0 + Priority: 128 + DopplerLevel: 1 + MinDistance: 1 + MaxDistance: 500 + Pan2D: 0 + rolloffMode: 0 + BypassEffects: 0 + BypassListenerEffects: 0 + BypassReverbZones: 0 + rolloffCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + panLevelCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + spreadCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + reverbZoneMixCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!1 &1748189152 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1748189153} + - component: {fileID: 1748189154} + m_Layer: 5 + m_Name: ConteneurBouton&Texte (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1748189153 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1748189152} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 741102125} + - {fileID: 1088058507} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1748189154 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1748189152} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1752735682 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1752735683} + - component: {fileID: 1752735685} + - component: {fileID: 1752735684} + m_Layer: 5 + m_Name: Arrow + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1752735683 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752735682} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 409940174} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: -15, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1752735684 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752735682} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10915, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1752735685 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752735682} + m_CullTransparentMesh: 1 +--- !u!1 &1757504753 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1757504754} + - component: {fileID: 1757504757} + - component: {fileID: 1757504756} + - component: {fileID: 1757504755} + m_Layer: 0 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1757504754 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757504753} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 810782608} + 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: 0.5, y: 0.5} +--- !u!114 &1757504755 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757504753} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 30, y: 30, z: 30, w: 30} +--- !u!114 &1757504756 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757504753} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: a8b3963696820314da0fd98d357bebfe, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1757504757 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757504753} + m_CullTransparentMesh: 1 +--- !u!1 &1792859814 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1792859815} + - component: {fileID: 1792859817} + - component: {fileID: 1792859816} + m_Layer: 5 + m_Name: Fleche + m_TagString: FlecheBulleTexte + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1792859815 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1792859814} + m_LocalRotation: {x: 0, y: 0, z: -0.38268343, w: 0.92387956} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 460675307} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -45} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -25} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1792859816 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1792859814} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: b7ce72d64cd2ebd4eae63bae6d91e671, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1792859817 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1792859814} + m_CullTransparentMesh: 1 +--- !u!1 &1812993463 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1812993464} + m_Layer: 0 + m_Name: PourVoix + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1812993464 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1812993463} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2003140781} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1814499592 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1814499594} + - component: {fileID: 1814499593} + - component: {fileID: 1814499595} + m_Layer: 0 + m_Name: EntreeUtilisateurConteneur + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!114 &1814499593 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814499592} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 1 + m_Spacing: 10 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!224 &1814499594 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814499592} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1994937810} + - {fileID: 38209877} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 5, y: 0} + m_SizeDelta: {x: 180, y: 80} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1814499595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814499592} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e050578356dd7b94b8690fdfb1d58605, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1837925293 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1837925294} + - component: {fileID: 1837925296} + - component: {fileID: 1837925295} + m_Layer: 5 + m_Name: TexteQuitter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1837925294 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1837925293} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1063242543} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1837925295 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1837925293} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Quitter + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4286611584 + m_fontColor: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1837925296 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1837925293} + m_CullTransparentMesh: 1 +--- !u!1 &1850278313 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1850278314} + - component: {fileID: 1850278317} + - component: {fileID: 1850278318} + - component: {fileID: 1850278319} + - component: {fileID: 1850278320} + - component: {fileID: 1850278321} + m_Layer: 5 + m_Name: Recherche + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1850278314 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0015, y: 0.0015, z: 0.0015} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 270107575} + - {fileID: 1013904231} + - {fileID: 1500648816} + - {fileID: 406113353} + m_Father: {fileID: 1020060957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -0.15} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1850278317 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_CullTransparentMesh: 1 +--- !u!223 &1850278318 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1850278319 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1850278320 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 270107578} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1850278321} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: AgrandirMenu + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1850278321} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 780759559} + m_TargetAssemblyTypeName: EnumFonctionsBouton, Assembly-CSharp + m_MethodName: LancerRecherche + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + - m_Target: {fileID: 780759557} + m_TargetAssemblyTypeName: ComportementAnimationBoutonsMenu, Assembly-CSharp + m_MethodName: BoutonClique + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1850278321 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850278313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 100 + largeur_max: 500 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!1 &1875844687 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1875844688} + - component: {fileID: 1875844692} + - component: {fileID: 1875844689} + - component: {fileID: 1875844691} + - component: {fileID: 1875844690} + - component: {fileID: 1875844693} + - component: {fileID: 1875844696} + - component: {fileID: 1875844697} + m_Layer: 0 + m_Name: '[BuildingBlock] Camera Rig' + m_TagString: Player + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1875844688 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1.5, z: -3} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1096578848} + - {fileID: 90010866} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1875844689 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: df9f338034892c44ebb62d97894772f1, type: 3} + m_Name: + m_EditorClassIdentifier: + usePerEyeCameras: 0 + useFixedUpdateForTracking: 0 + disableEyeAnchorCameras: 0 +--- !u!114 &1875844690 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5178bc8574ce2bf4388e787a2e2af326, type: 3} + m_Name: + m_EditorClassIdentifier: + opMode: 1 + resetHmdPoseOnRelease: 1 + resetHmdPoseByMiddleMouseButton: 1 + activateKeys: 3201000031010000 + activateKeyBindings: + - /leftCtrl + - /rightCtrl + - /f1 + pitchKeys: 3401000033010000 + pitchKeyBindings: + - /leftAlt + - /rightAlt + - /f2 +--- !u!114 &1875844691 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7e933e81d3c20c74ea6fdc708a67e3a5, type: 3} + m_Name: + m_EditorClassIdentifier: + _monoscopic: 0 + _sharpenType: 0 + _enableDynamicResolution: 0 + minDynamicResolutionScale: 1 + maxDynamicResolutionScale: 1 + quest2MinDynamicResolutionScale: 0.7 + quest2MaxDynamicResolutionScale: 1.3 + quest3MinDynamicResolutionScale: 0.7 + quest3MaxDynamicResolutionScale: 1.6 + minRenderScale: 0.7 + maxRenderScale: 1 + _headPoseRelativeOffsetRotation: {x: 0, y: 0, z: 0} + _headPoseRelativeOffsetTranslation: {x: 0, y: 0, z: 0} + profilerTcpPort: 32419 + expandMixedRealityCapturePropertySheet: 0 + enableMixedReality: 0 + compositionMethod: 0 + extraHiddenLayers: + serializedVersion: 2 + m_Bits: 0 + extraVisibleLayers: + serializedVersion: 2 + m_Bits: 0 + dynamicCullingMask: 1 + externalCompositionBackdropColorRift: {r: 0, g: 1, b: 0, a: 1} + externalCompositionBackdropColorQuest: {r: 0, g: 0, b: 0, a: 0} + capturingCameraDevice: 0 + flipCameraFrameHorizontally: 0 + flipCameraFrameVertically: 0 + handPoseStateLatency: 0 + sandwichCompositionRenderLatency: 0 + sandwichCompositionBufferedFrames: 8 + chromaKeyColor: {r: 0, g: 1, b: 0, a: 1} + chromaKeySimilarity: 0.6 + chromaKeySmoothRange: 0.03 + chromaKeySpillRange: 0.06 + useDynamicLighting: 0 + depthQuality: 1 + dynamicLightingSmoothFactor: 8 + dynamicLightingDepthVariationClampingValue: 0.001 + virtualGreenScreenType: 0 + virtualGreenScreenTopY: 10 + virtualGreenScreenBottomY: -10 + virtualGreenScreenApplyDepthCulling: 0 + virtualGreenScreenDepthTolerance: 0.2 + mrcActivationMode: 0 + launchSimultaneousHandsControllersOnStartup: 0 + isInsightPassthroughEnabled: 0 + shouldBoundaryVisibilityBeSuppressed: 0 + requestBodyTrackingPermissionOnStartup: 0 + requestFaceTrackingPermissionOnStartup: 0 + requestEyeTrackingPermissionOnStartup: 0 + requestScenePermissionOnStartup: 1 + requestRecordAudioPermissionOnStartup: 0 + requestPassthroughCameraAccessPermissionOnStartup: 0 + _localDimming: 1 + _trackingOriginType: 1 + usePositionTracking: 1 + useRotationTracking: 1 + useIPDInPositionTracking: 1 + resetTrackerOnLoad: 0 + AllowRecenter: 0 + LateControllerUpdate: 1 + LateLatching: 0 + controllerDrivenHandPosesType: 0 + SimultaneousHandsAndControllersEnabled: 0 + _readOnlyWideMotionModeHandPosesEnabled: 0 + wideMotionModeHandPosesEnabled: 0 + dynamicResolutionVersion: 1 +--- !u!114 &1875844692 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} + m_Name: + m_EditorClassIdentifier: + blockId: e47682b9-c270-40b1-b16d-90b627a5ce1b + instanceId: e5a4bffc-91f6-4eeb-b4bb-7bc997c1cf26 + version: 1 + installationRoutineCheckpoint: + _installationRoutineId: + _installationVariants: [] +--- !u!114 &1875844693 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 05e8a61ac02f22f4780fa659cb41a54b, type: 3} + m_Name: + m_EditorClassIdentifier: + audioDecoder1: {fileID: 5022602860645237092, guid: 2e23de7ecde691a419c6e78c273d7789, type: 3} + audioDecoder2: {fileID: 5022602860645237092, guid: f1a25d07f8e4ab6428aa0cdce558ce86, type: 3} + audioEncoder: {fileID: 5022602860645237092, guid: 0cad65409c04e4349b7f28008624037c, type: 3} + logMelSpectro: {fileID: 5022602860645237092, guid: 0d1f59069765c2d4697a9ab2a6269f63, type: 3} + choix_langues: {fileID: 409940175} + vocabAsset: {fileID: 4900000, guid: 8209a2f7b72bee543b73c1c78fa11b5d, type: 3} +--- !u!54 &1875844696 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!114 &1875844697 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875844687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cd95f96693bec0a409fa0a398bd370f0, type: 3} + m_Name: + m_EditorClassIdentifier: + hud: {fileID: 311294966} +--- !u!1 &1882321117 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1882321118} + - component: {fileID: 1882321121} + - component: {fileID: 1882321120} + - component: {fileID: 1882321119} + m_Layer: 0 + m_Name: ISDK_RayCanvasInteractionParametres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1882321118 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1882321117} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 231991133} + m_Father: {fileID: 1663843239} + 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: 0.5, y: 0.5} +--- !u!114 &1882321119 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1882321117} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1882321120 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1882321117} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1663843240} +--- !u!114 &1882321121 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1882321117} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 1882321120} + _surface: {fileID: 231991136} + _selectSurface: {fileID: 231991137} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!1 &1884291082 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1884291089} + - component: {fileID: 1884291088} + - component: {fileID: 1884291087} + - component: {fileID: 1884291086} + - component: {fileID: 1884291085} + - component: {fileID: 1884291084} + - component: {fileID: 1884291083} + m_Layer: 5 + m_Name: Envoyer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1884291083 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1884291084 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 30 + largeur_max: 90 + duree_ouverture: 0.3 + AnimerA: 0 +--- !u!114 &1884291085 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactableView: {fileID: 1382312903} + _whenHover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1884291084} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Agrandir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnhover: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1884291084} + m_TargetAssemblyTypeName: AgrandissementBoutons, Assembly-CSharp + m_MethodName: Retrecir + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenSelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 0} + m_TargetAssemblyTypeName: ComportementEntreeUtilisateur, Assembly-CSharp + m_MethodName: TraitementEntree + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 + _whenUnselect: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewAdded: + m_PersistentCalls: + m_Calls: [] + _whenSelectingInteractorViewRemoved: + m_PersistentCalls: + m_Calls: [] +--- !u!223 &1884291086 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1884291087 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 2117814595} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1884291088 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_CullTransparentMesh: 1 +--- !u!224 &1884291089 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1884291082} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2117814598} + - {fileID: 368017726} + - {fileID: 1382312904} + - {fileID: 236672736} + m_Father: {fileID: 38209877} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 122.5, y: -15} + m_SizeDelta: {x: 30, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1889754838 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1889754842} + - component: {fileID: 1889754839} + - component: {fileID: 1889754843} + - component: {fileID: 1889754841} + - component: {fileID: 1889754840} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1889754839 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889754838} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!114 &1889754840 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889754838} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 1889754841} +--- !u!114 &1889754841 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889754838} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 30, y: 30, z: 0.01} +--- !u!224 &1889754842 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889754838} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1382312904} + 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: 0.5, y: 0.5} +--- !u!114 &1889754843 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889754838} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 1889754839} + _clippers: + - {fileID: 1889754841} +--- !u!1 &1894144125 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1894144129} + - component: {fileID: 1894144128} + - component: {fileID: 1894144127} + - component: {fileID: 1894144126} + m_Layer: 5 + m_Name: CanvasFPS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1894144126 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1894144127 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1894144128 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 0 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1894144129 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894144125} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 150} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 741180262} + - {fileID: 546323937} + m_Father: {fileID: 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: 0} + m_SizeDelta: {x: 500, y: 500} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1914968692 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1914968693} + - component: {fileID: 1914968695} + - component: {fileID: 1914968694} + m_Layer: 5 + m_Name: Fleche + m_TagString: FlecheBulleTexte + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1914968693 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914968692} + m_LocalRotation: {x: 0, y: 0, z: -0.38268343, w: 0.92387956} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1542799701} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -45} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -25} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1914968694 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914968692} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: b7ce72d64cd2ebd4eae63bae6d91e671, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1914968695 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914968692} + m_CullTransparentMesh: 1 +--- !u!1 &1917629181 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1917629182} + - component: {fileID: 1917629183} + m_Layer: 5 + m_Name: ConteneurOptionTexteVersAudio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1917629182 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1917629181} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 932233} + - {fileID: 644900613} + m_Father: {fileID: 1331752628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1917629183 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1917629181} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1981779244 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1981779245} + m_Layer: 0 + m_Name: RightControllerInHandAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1981779245 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1981779244} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1272714501} + m_Father: {fileID: 256965890} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1986964834 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 932233} + m_Modifications: + - target: {fileID: 3349346243019873864, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_IsOn + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Name + value: ToggleButton_Switch + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + insertIndex: -1 + addedObject: {fileID: 1986964839} + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &1986964835 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} + m_PrefabInstance: {fileID: 1986964834} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1986964839 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 848606436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 426a9e0245cc0d041be77fb9f705fb86, type: 3} + m_Name: + m_EditorClassIdentifier: + fonction: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 478487499} + m_TargetAssemblyTypeName: EnumFonctionsPreferences, Assembly-CSharp + m_MethodName: ChangerSaisie + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!1 &1992139702 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1992139703} + - component: {fileID: 1992139705} + - component: {fileID: 1992139704} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1992139703 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1992139702} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 583361828} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0.2} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1992139704 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1992139702} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1992139705 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1992139702} + m_CullTransparentMesh: 1 +--- !u!1 &1994937808 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1994937810} + - component: {fileID: 1994937816} + - component: {fileID: 1994937812} + - component: {fileID: 1994937809} + - component: {fileID: 1994937811} + - component: {fileID: 1994937814} + m_Layer: 5 + m_Name: EntreeUtilisateur + m_TagString: Entree + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1994937809 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1994937812} + m_TextViewport: {fileID: 499297137} + m_TextComponent: {fileID: 1104579698} + m_Placeholder: {fileID: 674047957} + m_VerticalScrollbar: {fileID: 0} + m_VerticalScrollbarEventHandler: {fileID: 0} + m_LayoutGroup: {fileID: 0} + m_ScrollSensitivity: 1 + m_ContentType: 0 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 1 + m_HideSoftKeyboard: 0 + m_CharacterValidation: 0 + m_RegexValue: + m_GlobalPointSize: 14 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnSubmit: + m_PersistentCalls: + m_Calls: [] + m_OnSelect: + m_PersistentCalls: + m_Calls: [] + m_OnDeselect: + m_PersistentCalls: + m_Calls: [] + m_OnTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnEndTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_OnTouchScreenKeyboardStatusChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 + m_RichText: 1 + m_GlobalFontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_OnFocusSelectAll: 1 + m_ResetOnDeActivation: 1 + m_KeepTextSelectionVisible: 0 + m_RestoreOriginalTextOnEscape: 1 + m_isRichTextEditingAllowed: 0 + m_LineLimit: 0 + isAlert: 0 + m_InputValidator: {fileID: 0} + m_ShouldActivateOnSelect: 1 +--- !u!224 &1994937810 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 499297137} + - {fileID: 1346614466} + m_Father: {fileID: 1814499594} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 90, y: -15} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!223 &1994937811 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 620957629} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1994937812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1994937814 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!222 &1994937816 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1994937808} + m_CullTransparentMesh: 1 +--- !u!1 &2003140779 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2003140781} + - component: {fileID: 2003140780} + m_Layer: 0 + m_Name: PourTTS + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &2003140780 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2003140779} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b15403450229c3a4b8455a61d6143a6d, type: 3} + m_Name: + m_EditorClassIdentifier: + _events: + OnTextPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnTextPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnTextPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackReady: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnAudioClipPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + _onInit: + m_PersistentCalls: + m_Calls: [] + _onComplete: + m_PersistentCalls: + m_Calls: [] + _onLoadBegin: + m_PersistentCalls: + m_Calls: [] + _onLoadAbort: + m_PersistentCalls: + m_Calls: [] + _onLoadFailed: + m_PersistentCalls: + m_Calls: [] + _onLoadSuccess: + m_PersistentCalls: + m_Calls: [] + _onPlaybackReady: + m_PersistentCalls: + m_Calls: [] + _onPlaybackStart: + m_PersistentCalls: + m_Calls: [] + _onPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + _onPlaybackClipUpdated: + m_PersistentCalls: + m_Calls: [] + _onPlaybackComplete: + m_PersistentCalls: + m_Calls: [] + _onPlaybackQueueBegin: + m_PersistentCalls: + m_Calls: [] + _onPlaybackQueueComplete: + m_PersistentCalls: + m_Calls: [] + OnClipDataQueued: + m_PersistentCalls: + m_Calls: [] + OnClipLoadBegin: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadBegin: + m_PersistentCalls: + m_Calls: [] + OnClipLoadAbort: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadAbort: + m_PersistentCalls: + m_Calls: [] + OnClipLoadFailed: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadFailed: + m_PersistentCalls: + m_Calls: [] + OnClipLoadSuccess: + m_PersistentCalls: + m_Calls: [] + OnClipDataLoadSuccess: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackReady: + m_PersistentCalls: + m_Calls: [] + OnStartSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackStart: + m_PersistentCalls: + m_Calls: [] + OnCancelledSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackCancelled: + m_PersistentCalls: + m_Calls: [] + OnFinishedSpeaking: + m_PersistentCalls: + m_Calls: [] + OnClipDataPlaybackFinished: + m_PersistentCalls: + m_Calls: [] + PrependedText: + AppendedText: + _ttsService: {fileID: 1137605303} + presetVoiceID: WIT$CAEL + customWitVoiceSettings: + SettingsId: + PrependedText: + AppendedText: + voice: Charlie + style: default + speed: 100 + pitch: 100 + verboseLogging: 0 +--- !u!4 &2003140781 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2003140779} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1724459655} + m_Father: {fileID: 1812993464} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2011393428 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2011393429} + - component: {fileID: 2011393430} + m_Layer: 7 + m_Name: PositionEtRotationHistorique + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2011393429 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2011393428} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 666.6667, y: 641.02563, z: 666.6667} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 545897469} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2011393430 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2011393428} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 43ee61caa71f0774695520d49a722b33, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &2030833704 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: cae085d13537bd24284ac549e6c37828, type: 3} + m_PrefabInstance: {fileID: 180938845} + m_PrefabAsset: {fileID: 0} +--- !u!1 &2045732715 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2045732716} + - component: {fileID: 2045732717} + - component: {fileID: 2045732718} + m_Layer: 7 + m_Name: ContenuHistorique + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2045732716 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2045732715} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 364059297} + m_Father: {fileID: 530733933} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -0.0000043530017, y: -0.00010164856} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &2045732717 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2045732715} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 5 + m_Bottom: 5 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &2045732718 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2045732715} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 0 + m_VerticalFit: 2 +--- !u!1 &2048535656 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2048535657} + - component: {fileID: 2048535660} + - component: {fileID: 2048535659} + - component: {fileID: 2048535658} + m_Layer: 7 + m_Name: Messages(ScrollView) + m_TagString: Scrollview + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2048535657 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048535656} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 530733933} + - {fileID: 1607579203} + m_Father: {fileID: 545897469} + 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: 10, y: 10} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2048535658 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048535656} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 2045732716} + m_Horizontal: 1 + m_Vertical: 1 + m_MovementType: 1 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 530733933} + m_HorizontalScrollbar: {fileID: 0} + m_VerticalScrollbar: {fileID: 1607579204} + m_HorizontalScrollbarVisibility: 2 + m_VerticalScrollbarVisibility: 2 + m_HorizontalScrollbarSpacing: -3 + m_VerticalScrollbarSpacing: -3 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &2048535659 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048535656} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.39215687} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2048535660 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048535656} + m_CullTransparentMesh: 1 +--- !u!1 &2087978706 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2087978707} + m_Layer: 0 + m_Name: TrackerAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2087978707 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2087978706} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1096578848} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2117814594 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2117814598} + - component: {fileID: 2117814597} + - component: {fileID: 2117814595} + - component: {fileID: 2117814596} + m_Layer: 0 + m_Name: APEnvoyer + m_TagString: QDSUITextInputField + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &2117814595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2117814594} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &2117814596 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2117814594} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 50, y: 50, z: 50, w: 50} +--- !u!222 &2117814597 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2117814594} + m_CullTransparentMesh: 1 +--- !u!224 &2117814598 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2117814594} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1884291089} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2131611829 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98531106a8a35ea45884856f2b70abde, type: 3} + m_Name: + m_EditorClassIdentifier: + largeur_init: 40 + largeur_max: 120 + duree_ouverture: 0.3 + AnimerA: 1 +--- !u!114 &2131611830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b7db4a332f7e98d4ca6f7558f3613db5, type: 3} + m_Name: + m_EditorClassIdentifier: + onPointerClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 478487496} + m_TargetAssemblyTypeName: ComportementFenetrePreferences, Assembly-CSharp + m_MethodName: ChangerEtat + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 1 +--- !u!1 &2141597735 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2141597736} + m_Layer: 0 + m_Name: AccueilVoix + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2141597736 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2141597735} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1648083963} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &243424270023441158 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2618178220305244257} + - component: {fileID: 6869810458693193498} + - component: {fileID: 5140576998914580422} + - component: {fileID: 2131611829} + - component: {fileID: 2131611830} + m_Layer: 0 + m_Name: Fermer + m_TagString: QDSUIPrimaryButton + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &265421015273259246 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &595206483210253712 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842874036736877360} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Fermer + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4280756007 + m_fontColor: {r: 0.15294118, g: 0.15294118, b: 0.15294118, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0.0044269413, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &739955594076292417 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842874036736877360} + m_CullTransparentMesh: 1 +--- !u!222 &952902941686272513 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7815598869519633400} + m_CullTransparentMesh: 1 +--- !u!224 &2050538972765576138 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2618178220305244257} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2209662680683579746 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7815598869519633400} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.15294118, g: 0.15294118, b: 0.15294118, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -3108347808307121293, guid: 64f884351318b694f942625580e64a8b, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!224 &2618178220305244257 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2050538972765576138} + - {fileID: 7986129806770060219} + - {fileID: 6384598719168717456} + m_Father: {fileID: 553160448} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!95 &5140576998914580422 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!224 &6384598719168717456 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6842874036736877360} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2618178220305244257} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 14} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &6826917670049334543 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2050538972765576138} + - component: {fileID: 7747662451683816589} + - component: {fileID: 6969549368977048900} + - component: {fileID: 265421015273259246} + m_Layer: 0 + m_Name: Background + m_TagString: QDSUIAccentColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &6842874036736877360 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6384598719168717456} + - component: {fileID: 739955594076292417} + - component: {fileID: 595206483210253712} + m_Layer: 5 + m_Name: Label + m_TagString: QDSUITextInvertedColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &6869810458693193498 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 243424270023441158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 3 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 0} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &6969549368977048900 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &7747662451683816589 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6826917670049334543} + m_CullTransparentMesh: 1 +--- !u!1 &7815598869519633400 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7986129806770060219} + - component: {fileID: 952902941686272513} + - component: {fileID: 2209662680683579746} + m_Layer: 5 + m_Name: Icon + m_TagString: QDSUITextInvertedColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7986129806770060219 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7815598869519633400} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2618178220305244257} + 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: 20, y: 0} + m_SizeDelta: {x: 24, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 203844589} + - {fileID: 145513991} + - {fileID: 1661708472} + - {fileID: 1619923418} + - {fileID: 1167643603} + - {fileID: 1300854824} + - {fileID: 1705736408} + - {fileID: 1020060957} + - {fileID: 780759558} + - {fileID: 1331752627} + - {fileID: 478487497} + - {fileID: 1894144129} + - {fileID: 1875844688} + - {fileID: 1666108642} + - {fileID: 30312108} + - {fileID: 1814499594} + - {fileID: 1681576835} + - {fileID: 2141597736} + - {fileID: 1812993464} + - {fileID: 1552541072} + - {fileID: 705551164} + - {fileID: 1472196242} + - {fileID: 1084123206} + - {fileID: 311294965} diff --git a/Assets/Scenes/Interface v4_test.unity.meta b/Assets/Scenes/Interface v4_test.unity.meta new file mode 100644 index 0000000..9026210 --- /dev/null +++ b/Assets/Scenes/Interface v4_test.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 12bab32da272a4e439a5c164efc629ed +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/UISet.unity b/Assets/Scenes/UISet.unity new file mode 100644 index 0000000..026d22d --- /dev/null +++ b/Assets/Scenes/UISet.unity @@ -0,0 +1,53051 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.40392157, g: 0.40392157, b: 0.40392157, a: 1} + m_AmbientEquatorColor: {r: 0.07618539, g: 0.13013652, b: 0.5583406, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &3142954 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3142955} + - component: {fileID: 3142957} + - component: {fileID: 3142956} + m_Layer: 0 + m_Name: ISDK_PokeInteraction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3142955 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3142954} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1464520828} + m_Father: {fileID: 1918435865} + 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: 0.5, y: 0.5} +--- !u!114 &3142956 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3142954} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &3142957 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3142954} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1918435874} +--- !u!1 &4639667 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4639668} + - component: {fileID: 4639670} + - component: {fileID: 4639669} + m_Layer: 5 + m_Name: Description (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4639668 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4639667} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1355451495} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 205.87, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &4639669 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4639667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Secondary Button + + Use a secondary button for medium-emphasis + action on a surface.' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &4639670 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4639667} + m_CullTransparentMesh: 1 +--- !u!1 &15114864 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 15114865} + - component: {fileID: 15114868} + - component: {fileID: 15114867} + - component: {fileID: 15114866} + m_Layer: 0 + m_Name: GradientEffect + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &15114865 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 15114864} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1481351821} + 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: 0.5, y: 0.5} +--- !u!114 &15114866 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 15114864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &15114867 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 15114864} + m_CullTransparentMesh: 1 +--- !u!114 &15114868 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 15114864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &24283722 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 24283723} + - component: {fileID: 24283725} + - component: {fileID: 24283724} + m_Layer: 5 + m_Name: SubTitle (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &24283723 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 24283722} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1378775208} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 570, y: 14} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &24283724 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 24283722} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean dolor nunc. + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 11 + m_fontSizeBase: 11 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &24283725 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 24283722} + m_CullTransparentMesh: 1 +--- !u!1 &40377441 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 40377442} + - component: {fileID: 40377444} + - component: {fileID: 40377443} + m_Layer: 5 + m_Name: Description2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &40377442 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 40377441} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1272384482} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 36} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &40377443 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 40377441} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 32/36 | -0.2% + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &40377444 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 40377441} + m_CullTransparentMesh: 1 +--- !u!1001 &40646112 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 597627715} + m_Modifications: + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735817, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025239, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Name + value: SearchBar (1) + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5530707485977931073, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5530707485977931073, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5530707485977931073, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5530707485977931073, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7452931228788773685, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ebffd02e23b79524e9142997edbf75a5, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} +--- !u!224 &40646113 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + m_PrefabInstance: {fileID: 40646112} + m_PrefabAsset: {fileID: 0} +--- !u!1 &41491507 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 41491508} + - component: {fileID: 41491509} + m_Layer: 5 + m_Name: HorizontalLayout (9) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &41491508 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 41491507} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1020742996} + - {fileID: 1385722651} + - {fileID: 910399193} + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &41491509 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 41491507} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &43621083 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 43621084} + - component: {fileID: 43621086} + - component: {fileID: 43621085} + m_Layer: 5 + m_Name: Label (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &43621084 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 43621083} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1351266289} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 56.2, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &43621085 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 43621083} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Icon Only + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &43621086 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 43621083} + m_CullTransparentMesh: 1 +--- !u!1 &43775978 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 43775979} + - component: {fileID: 43775981} + - component: {fileID: 43775980} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &43775979 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 43775978} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 334553633} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &43775980 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 43775978} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Headline 2 - Strong + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 24 + m_fontSizeBase: 24 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: -0.1 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &43775981 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 43775978} + m_CullTransparentMesh: 1 +--- !u!1 &46575750 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 46575751} + - component: {fileID: 46575753} + - component: {fileID: 46575752} + m_Layer: 5 + m_Name: SubTitle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &46575751 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 46575750} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1534701293} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &46575752 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 46575750} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Toggle + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &46575753 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 46575750} + m_CullTransparentMesh: 1 +--- !u!1 &47943889 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 47943890} + - component: {fileID: 47943892} + - component: {fileID: 47943891} + m_Layer: 5 + m_Name: Description1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &47943890 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 47943889} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1272384482} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 36} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &47943891 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 47943889} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Optimistic Display Light + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &47943892 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 47943889} + m_CullTransparentMesh: 1 +--- !u!1001 &57561228 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 938252198} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 6520228563950262366, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle (4) + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &57561229 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 57561228} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &62544396 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 854948235} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: -2025002095625416336, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle (3) + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &62544397 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 62544396} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &62733369 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1002546179} + m_Modifications: + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 144 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2427108063919276275, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_text + value: Secondary + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3108657066028555256, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3159214461815610380, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_text + value: Primary + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9018196962972663214, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Name + value: Tooltip (3) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 51ba61fa774ccd14fb1f3743d17109a4, type: 3} +--- !u!224 &62733370 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + m_PrefabInstance: {fileID: 62733369} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &75515148 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 280844483} + m_Modifications: + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159571, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Name + value: TextInputField (2) + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6137772635375916529, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ebffd02e23b79524e9142997edbf75a5, type: 2} + - target: {fileID: 9116019988612901765, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9116019988612901765, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 9116019988612901765, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 9116019988612901765, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ac2e09824bbe6da42bff68e86401d411, type: 3} +--- !u!224 &75515149 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + m_PrefabInstance: {fileID: 75515148} + m_PrefabAsset: {fileID: 0} +--- !u!1 &82004034 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 82004035} + - component: {fileID: 82004037} + - component: {fileID: 82004036} + m_Layer: 5 + m_Name: Label (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &82004035 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 82004034} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 960560723} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 176, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &82004036 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 82004034} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: With Icon + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &82004037 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 82004034} + m_CullTransparentMesh: 1 +--- !u!1 &102860185 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 102860186} + - component: {fileID: 102860188} + - component: {fileID: 102860187} + m_Layer: 5 + m_Name: SubTitle (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &102860186 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 102860185} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 827264654} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &102860187 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 102860185} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Item Text Label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &102860188 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 102860185} + m_CullTransparentMesh: 1 +--- !u!1 &104112071 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 104112072} + - component: {fileID: 104112074} + - component: {fileID: 104112073} + m_Layer: 5 + m_Name: Label (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &104112072 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 104112071} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1351266289} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 36.6, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &104112073 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 104112071} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Icon Stretched + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &104112074 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 104112071} + m_CullTransparentMesh: 1 +--- !u!1001 &104192324 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 166852726} + m_Modifications: + - target: {fileID: 1051637198399478436, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.a + value: 0.2 + objectReference: {fileID: 0} + - target: {fileID: 1051637198399478436, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1051637198399478436, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1051637198399478436, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3634712878193884071, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Name + value: LargeSliderWithLabelsAndIcons (2) + objectReference: {fileID: 0} + - target: {fileID: 3984558140893596537, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3984558140893596537, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3984558140893596537, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3984558140893596537, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3984558140893596537, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3984558140893596537, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4282007609068761398, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4282007609068761398, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4282007609068761398, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4282007609068761398, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4282007609068761398, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5049529886231908928, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5049529886231908928, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5049529886231908928, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5049529886231908928, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5049529886231908928, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5049529886231908928, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 362.8 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5611591692397373452, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5611591692397373452, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5670333383467078314, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5670333383467078314, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5670333383467078314, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5670333383467078314, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: -13.999939 + objectReference: {fileID: 0} + - target: {fileID: 5753436235170023237, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Value + value: 0.616 + objectReference: {fileID: 0} + - target: {fileID: 7443212562550600539, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7443212562550600539, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7443212562550600539, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7760743910084354386, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7760743910084354386, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7760743910084354386, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7760743910084354386, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7760743910084354386, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7760743910084354386, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8453275433923425924, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8453275433923425924, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8453275433923425924, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8453275433923425924, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8453275433923425924, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8453275433923425924, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 26f4ebef46557d443aa5faf2a32711c2, type: 3} +--- !u!224 &104192325 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + m_PrefabInstance: {fileID: 104192324} + m_PrefabAsset: {fileID: 0} +--- !u!224 &105280941 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + m_PrefabInstance: {fileID: 6418507247615071535} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &108537776 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1387134430} + m_Modifications: + - target: {fileID: 236114000944626438, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Name + value: ToggleRadioButton + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalScale.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.b + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.g + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.r + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 3939185599833057855, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5480313874531818496, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_IsOn + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5480313874531818496, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Group + value: + objectReference: {fileID: 191787727} + - target: {fileID: 6618407115820392869, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ecdab7d4efd5b134bb7862b57ab1188c, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9e34356aa4bacdc45805c0d16862fc4b, type: 3} +--- !u!224 &108537777 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + m_PrefabInstance: {fileID: 108537776} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &120195807 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1703324487} + m_Modifications: + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 23 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 896653445605316475, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 896653445605316475, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 896653445605316475, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 1693676676542734784, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3143409444471918073, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 9ad1b5a33a872764481c5a891d3db009, type: 2} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.x + value: 58 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 7441729862378463426, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8046116837390756153, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Name + value: Borderless_Base_IconAndLabel (3) + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c8e2992a313c49d449f074c59c12f6ad, type: 3} +--- !u!224 &120195808 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + m_PrefabInstance: {fileID: 120195807} + m_PrefabAsset: {fileID: 0} +--- !u!1 &126138276 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 126138277} + - component: {fileID: 126138279} + - component: {fileID: 126138278} + m_Layer: 5 + m_Name: MainTitle + m_TagString: QDSUISharedThemeColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &126138277 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 126138276} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1384413814} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 470, y: 459.4} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &126138278 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 126138276} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Meta Horizon OS UI Set + + Made with Interaction + SDK + +' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294440177 + m_fontColor: {r: 0.94509804, g: 0.95686275, b: 0.96862745, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 48 + m_fontSizeBase: 48 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: -3.3 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &126138279 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 126138276} + m_CullTransparentMesh: 1 +--- !u!1 &130977126 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 130977127} + - component: {fileID: 130977129} + - component: {fileID: 130977128} + m_Layer: 5 + m_Name: SubTitle (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &130977127 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 130977126} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 642023025} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 570, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &130977128 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 130977126} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Item Text Label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &130977129 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 130977126} + m_CullTransparentMesh: 1 +--- !u!1001 &145488232 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1002546179} + m_Modifications: + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 144 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3108657066028555256, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3159214461815610380, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_text + value: Primary + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 286.43484 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 143.21742 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -28 + objectReference: {fileID: 0} + - target: {fileID: 9018196962972663214, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Name + value: Tooltip (1) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 51ba61fa774ccd14fb1f3743d17109a4, type: 3} +--- !u!224 &145488233 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + m_PrefabInstance: {fileID: 145488232} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &147702596 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1041541473} + m_Modifications: + - target: {fileID: 236114000944626438, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Name + value: ToggleRadioButton + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalScale.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.b + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.g + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.r + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 3939185599833057855, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5480313874531818496, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Group + value: + objectReference: {fileID: 191787727} + - target: {fileID: 6618407115820392869, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ecdab7d4efd5b134bb7862b57ab1188c, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9e34356aa4bacdc45805c0d16862fc4b, type: 3} +--- !u!224 &147702597 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + m_PrefabInstance: {fileID: 147702596} + m_PrefabAsset: {fileID: 0} +--- !u!1 &148782357 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 148782358} + - component: {fileID: 148782361} + - component: {fileID: 148782360} + - component: {fileID: 148782359} + m_Layer: 0 + m_Name: GradientEffect + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &148782358 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 148782357} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1903050958} + 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: 0.5, y: 0.5} +--- !u!114 &148782359 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 148782357} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &148782360 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 148782357} + m_CullTransparentMesh: 1 +--- !u!114 &148782361 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 148782357} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &161390062 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 161390063} + - component: {fileID: 161390065} + - component: {fileID: 161390064} + m_Layer: 5 + m_Name: Description2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &161390063 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 161390062} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1804946661} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 36} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &161390064 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 161390062} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 32/36 | -0.2% + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &161390065 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 161390062} + m_CullTransparentMesh: 1 +--- !u!1 &166852725 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 166852726} + - component: {fileID: 166852727} + m_Layer: 5 + m_Name: LargeSlider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &166852726 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 166852725} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 339857439} + - {fileID: 104192325} + m_Father: {fileID: 1126012452} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 940, y: 60} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &166852727 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 166852725} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!224 &173057153 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + m_PrefabInstance: {fileID: 1287140315} + m_PrefabAsset: {fileID: 0} +--- !u!1 &174531533 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 174531534} + - component: {fileID: 174531538} + - component: {fileID: 174531537} + - component: {fileID: 174531536} + - component: {fileID: 174531535} + m_Layer: 5 + m_Name: Section + m_TagString: QDSUISection + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &174531534 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 174531533} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 930635152} + - {fileID: 1924952622} + - {fileID: 212177654} + m_Father: {fileID: 1279148322} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 684, y: 193.7} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &174531535 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 174531533} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 24, y: 24, z: 24, w: 24} +--- !u!114 &174531536 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 174531533} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 0.2} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &174531537 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 174531533} + m_CullTransparentMesh: 1 +--- !u!114 &174531538 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 174531533} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 24 + m_Right: 24 + m_Top: 24 + m_Bottom: 24 + m_ChildAlignment: 0 + m_Spacing: 12 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &191787724 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 191787725} + - component: {fileID: 191787726} + - component: {fileID: 191787727} + m_Layer: 5 + m_Name: Radio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &191787725 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 191787724} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1914610233} + - {fileID: 347058469} + m_Father: {fileID: 625521461} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &191787726 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 191787724} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &191787727 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 191787724} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2fafe2cfe61f6974895a912c3755e8f1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_AllowSwitchOff: 0 +--- !u!1001 &197391147 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 990498926} + m_Modifications: + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1483334547369016477, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 3095485336300360604, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.x + value: 176 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.y + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4102898763052618297, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Name + value: TextTileButton_IconAndLabel_Toggle (2) + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620880475664592991, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_ChildAlignment + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5292db714b0f87045a7dfd9be93b1be5, type: 3} +--- !u!224 &197391148 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + m_PrefabInstance: {fileID: 197391147} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &199760138 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1703324487} + m_Modifications: + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 36.5 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 896653445605316475, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 896653445605316475, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 896653445605316475, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 3143409444471918073, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 9ad1b5a33a872764481c5a891d3db009, type: 2} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 8046116837390756153, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Name + value: Borderless_Base_IconAndLabel (2) + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c8e2992a313c49d449f074c59c12f6ad, type: 3} +--- !u!224 &199760139 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + m_PrefabInstance: {fileID: 199760138} + m_PrefabAsset: {fileID: 0} +--- !u!1 &202128536 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 202128537} + - component: {fileID: 202128539} + - component: {fileID: 202128538} + m_Layer: 5 + m_Name: Label (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &202128537 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 202128536} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1351266289} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 133, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &202128538 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 202128536} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Icon & Label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &202128539 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 202128536} + m_CullTransparentMesh: 1 +--- !u!1 &203666778 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 203666779} + - component: {fileID: 203666781} + - component: {fileID: 203666780} + m_Layer: 5 + m_Name: Description2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &203666779 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203666778} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 334553633} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &203666780 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203666778} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 24/28 | -0.1% + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &203666781 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 203666778} + m_CullTransparentMesh: 1 +--- !u!1001 &209340590 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1355451495} + m_Modifications: + - target: {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 401475934} + - target: {fileID: 926487722107310181, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 28 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 14 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 3514228717131758684, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 0db508f5b99fa0843b166ffb22a8a9db, type: 2} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8427117777238694044, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Name + value: SecondaryButton_Base_IconAndLabel (2) + objectReference: {fileID: 0} + - target: {fileID: 8943299744121885031, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 292035910f8781541aeb438db140bd72, type: 3} +--- !u!224 &209340591 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + m_PrefabInstance: {fileID: 209340590} + m_PrefabAsset: {fileID: 0} +--- !u!1 &212177653 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 212177654} + - component: {fileID: 212177655} + m_Layer: 5 + m_Name: ToggleWithTextLabel (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &212177654 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 212177653} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 392259281} + - {fileID: 1634300096} + m_Father: {fileID: 174531534} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 640, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &212177655 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 212177653} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1001 &212246644 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1460576353} + m_Modifications: + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 150 + objectReference: {fileID: 0} + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -28 + objectReference: {fileID: 0} + - target: {fileID: 3049025920889113596, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Color.a + value: 0.1 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 21.49 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 10.745 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5898953282668774849, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Name + value: SmallSliderWithLabelsAndIcons (2) + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 21.49 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 289.25497 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 7577335474933283156, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7577335474933283156, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7577335474933283156, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: -5.9924927 + objectReference: {fileID: 0} + - target: {fileID: 7672278566819972082, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7672278566819972082, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7672278566819972082, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7714724829824701981, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Value + value: 0.302 + objectReference: {fileID: 0} + - target: {fileID: 8100813586659521730, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 257.02 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 150 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ab9e0a62c7bd05742b82217187604b90, type: 3} +--- !u!224 &212246645 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + m_PrefabInstance: {fileID: 212246644} + m_PrefabAsset: {fileID: 0} +--- !u!1 &221908973 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 221908974} + - component: {fileID: 221908976} + - component: {fileID: 221908975} + m_Layer: 5 + m_Name: Label (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &221908974 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 221908973} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 960560723} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 176, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &221908975 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 221908973} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Primary + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &221908976 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 221908973} + m_CullTransparentMesh: 1 +--- !u!1001 &221994762 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 317148316} + m_Modifications: + - target: {fileID: 1138826379836372426, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 82f7789f637969447a23aee527ff3bf4, type: 2} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 36.5 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.b + value: 0.20784314 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.g + value: 0.08235294 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.r + value: 0.8666667 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 4437619491075673078, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4437619491075673078, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 401475934} + - target: {fileID: 5475183150643663114, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Name + value: DestructiveButton_Base_IconAndLabel (2) + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1afe17518a14213478afccad59687b1c, type: 3} +--- !u!224 &221994763 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + m_PrefabInstance: {fileID: 221994762} + m_PrefabAsset: {fileID: 0} +--- !u!1 &231720577 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 231720578} + - component: {fileID: 231720585} + - component: {fileID: 231720584} + - component: {fileID: 231720583} + - component: {fileID: 231720582} + - component: {fileID: 231720581} + - component: {fileID: 231720580} + - component: {fileID: 231720579} + - component: {fileID: 231720586} + m_Layer: 5 + m_Name: Content + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &231720578 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231720577} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1082227056} + - {fileID: 695895896} + - {fileID: 1551989148} + - {fileID: 2020306023} + - {fileID: 1473876937} + - {fileID: 586887450} + - {fileID: 1806306308} + m_Father: {fileID: 1523923715} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 780, y: 768} + m_Pivot: {x: 1, y: 0} +--- !u!114 &231720579 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231720577} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 50 + m_Right: 50 + m_Top: 50 + m_Bottom: 50 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &231720580 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231720577} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1918f59d4c3ccf048b0809826fa24a05, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasGroup: {fileID: 231720582} + animationSpeed: 10 +--- !u!114 &231720581 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231720577} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!225 &231720582 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231720577} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!114 &231720583 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231720577} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &231720584 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231720577} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &231720585 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231720577} + m_CullTransparentMesh: 1 +--- !u!114 &231720586 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231720577} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2fafe2cfe61f6974895a912c3755e8f1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_AllowSwitchOff: 1 +--- !u!1 &233959276 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 233959277} + - component: {fileID: 233959278} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &233959277 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 233959276} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 666345390} + m_Father: {fileID: 1041541473} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 250, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &233959278 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 233959276} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &278213791 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 278213792} + - component: {fileID: 278213793} + m_Layer: 5 + m_Name: gap + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &278213792 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 278213791} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1387134430} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 8, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &278213793 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 278213791} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &280844482 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 280844483} + - component: {fileID: 280844484} + m_Layer: 5 + m_Name: TextInputField + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &280844483 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 280844482} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 869670614} + - {fileID: 1349972495} + - {fileID: 75515149} + m_Father: {fileID: 405745998} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 938, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &280844484 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 280844482} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1001 &282049785 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1173045074} + m_Modifications: + - target: {fileID: 214820897206473770, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 214820897206473770, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 214820897206473770, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 214820897206473770, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 264904353708029229, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 264904353708029229, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 264904353708029229, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 264904353708029229, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 264904353708029229, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1211750093959237569, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1211750093959237569, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1211750093959237569, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1211750093959237569, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1211750093959237569, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1213882978143038354, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1213882978143038354, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1213882978143038354, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1213882978143038354, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1213882978143038354, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1247207384255084049, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1247207384255084049, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1247207384255084049, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1247207384255084049, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1475061726686967161, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1475061726686967161, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1475061726686967161, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1475061726686967161, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1475061726686967161, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2581575417340617141, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2581575417340617141, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2581575417340617141, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2581575417340617141, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2671622382610021951, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2671622382610021951, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2671622382610021951, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2671622382610021951, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2949955778703832170, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2949955778703832170, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2949955778703832170, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2949955778703832170, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2952616774084317241, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2952616774084317241, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2952616774084317241, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2952616774084317241, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Pivot.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Pivot.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 368 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1144 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -416.6 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3195622517617151698, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3195622517617151698, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3195622517617151698, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3195622517617151698, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3658853290335551083, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3658853290335551083, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3658853290335551083, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 3658853290335551083, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 3919881405765558400, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3919881405765558400, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3919881405765558400, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3919881405765558400, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3922533259459151059, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3922533259459151059, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3922533259459151059, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 3922533259459151059, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 4175585435214492971, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175585435214492971, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175585435214492971, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175585435214492971, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4290937000829423238, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4290937000829423238, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4290937000829423238, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4290937000829423238, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4298166796836279053, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Name + value: Dialog2Button_ImageVideoAndText + objectReference: {fileID: 0} + - target: {fileID: 4425304403864267992, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4425304403864267992, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4425304403864267992, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4425304403864267992, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4678960512804428717, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4678960512804428717, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4678960512804428717, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4678960512804428717, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4741203784854919122, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4741203784854919122, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4741203784854919122, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4741203784854919122, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5010165021797404450, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5010165021797404450, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5010165021797404450, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5010165021797404450, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5077339543274052338, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5077339543274052338, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5077339543274052338, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5077339543274052338, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5085223240326603171, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5085223240326603171, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5085223240326603171, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5085223240326603171, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5135086515822972023, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5135086515822972023, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5135086515822972023, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5135086515822972023, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5472724113584622541, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + - target: {fileID: 5718020171518636405, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 0db508f5b99fa0843b166ffb22a8a9db, type: 2} + - target: {fileID: 5806868570403834915, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5806868570403834915, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5806868570403834915, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 5806868570403834915, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 6022192975458443585, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6022192975458443585, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6022192975458443585, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6022192975458443585, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6024326411138549010, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6024326411138549010, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6024326411138549010, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6024326411138549010, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6068258285686198984, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6068258285686198984, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6068258285686198984, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6068258285686198984, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6070672715688375963, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6070672715688375963, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6070672715688375963, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 6070672715688375963, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 6157239588574617190, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6157239588574617190, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6157239588574617190, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6157239588574617190, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6157239588574617190, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6157239588574617190, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6285433003028143097, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6285433003028143097, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6285433003028143097, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6285433003028143097, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6498054923312733215, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7544746252074150903, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7544746252074150903, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7544746252074150903, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7544746252074150903, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7790429277435531599, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7790429277435531599, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7790429277435531599, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7790429277435531599, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8850746716107031105, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8850746716107031105, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8850746716107031105, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8850746716107031105, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9cde343ca5e21f542982ff876a7bd479, type: 3} +--- !u!224 &282049786 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + m_PrefabInstance: {fileID: 282049785} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &286658545 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1460576353} + m_Modifications: + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 150 + objectReference: {fileID: 0} + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -28 + objectReference: {fileID: 0} + - target: {fileID: 1592301430774889423, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1592301430774889423, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1592301430774889423, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1592301430774889423, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1592301430774889423, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2506446565346682077, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2506446565346682077, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2506446565346682077, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2506446565346682077, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2506446565346682077, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2506446565346682077, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3049025920889113596, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Color.a + value: 0.1 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 21.49 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 10.745 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 5105456645887315128, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5105456645887315128, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5105456645887315128, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5105456645887315128, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5105456645887315128, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5105456645887315128, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5444394781601427757, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5898953282668774849, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Name + value: SmallSliderWithLabelsAndIcons (4) + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 21.49 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 289.25497 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 7577335474933283156, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7577335474933283156, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7577335474933283156, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: -5.9924927 + objectReference: {fileID: 0} + - target: {fileID: 7639856228190743036, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7639856228190743036, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7639856228190743036, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7639856228190743036, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7639856228190743036, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7639856228190743036, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7672278566819972082, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7672278566819972082, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7672278566819972082, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8100813586659521730, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 257.02 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 150 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ab9e0a62c7bd05742b82217187604b90, type: 3} +--- !u!224 &286658546 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + m_PrefabInstance: {fileID: 286658545} + m_PrefabAsset: {fileID: 0} +--- !u!1 &301277966 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 301277967} + - component: {fileID: 301277969} + - component: {fileID: 301277968} + m_Layer: 5 + m_Name: SubTitle (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &301277967 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 301277966} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 490296176} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &301277968 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 301277966} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Item Text Label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &301277969 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 301277966} + m_CullTransparentMesh: 1 +--- !u!1001 &305367848 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1949522232} + m_Modifications: + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 945246860265842597, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_text + value: Custom Theme 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 2241387638278579712, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Name + value: TextTileButton_IconAndLabel_Regular Variant (3) + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_text + value: Example + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: -656231238407608377, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Mode + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 569455505} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_CallState + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName + value: ApplyTheme + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_TargetAssemblyTypeName + value: Oculus.Interaction.QDSUIThemeManager, Assembly-CSharp + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_IntArgument + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName + value: UnityEngine.Object, UnityEngine + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 90ae27b2ef005bc479d956c3d244f591, type: 3} +--- !u!224 &305367849 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + m_PrefabInstance: {fileID: 305367848} + m_PrefabAsset: {fileID: 0} +--- !u!1 &312394110 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 312394111} + - component: {fileID: 312394118} + - component: {fileID: 312394117} + - component: {fileID: 312394116} + - component: {fileID: 312394115} + - component: {fileID: 312394114} + - component: {fileID: 312394113} + - component: {fileID: 312394112} + m_Layer: 5 + m_Name: Buttons + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &312394111 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 312394110} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 401475933} + - {fileID: 1938735054} + - {fileID: 512473209} + - {fileID: 1351266289} + - {fileID: 806994213} + - {fileID: 1355451495} + - {fileID: 1703324487} + - {fileID: 317148316} + m_Father: {fileID: 1201211081} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 920, y: 460} + m_Pivot: {x: 1, y: 0} +--- !u!114 &312394112 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 312394110} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 48 + m_Right: 48 + m_Top: 48 + m_Bottom: 48 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &312394113 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 312394110} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1918f59d4c3ccf048b0809826fa24a05, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasGroup: {fileID: 312394115} + animationSpeed: 10 +--- !u!114 &312394114 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 312394110} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!225 &312394115 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 312394110} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!114 &312394116 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 312394110} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &312394117 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 312394110} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &312394118 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 312394110} + m_CullTransparentMesh: 1 +--- !u!1 &317148315 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 317148316} + - component: {fileID: 317148317} + m_Layer: 5 + m_Name: DestructiveButtons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &317148316 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 317148315} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2039794939398471904} + - {fileID: 221994763} + - {fileID: 2023324098} + - {fileID: 1931678771} + - {fileID: 594377650} + m_Father: {fileID: 312394111} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 493, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &317148317 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 317148315} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &334553632 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 334553633} + - component: {fileID: 334553634} + m_Layer: 5 + m_Name: HorizontalLayout (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &334553633 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 334553632} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 43775979} + - {fileID: 1833811923} + - {fileID: 203666779} + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &334553634 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 334553632} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1001 &338296597 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 854857911} + m_Modifications: + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 314.72 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6769163254485925642, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 21300000, guid: 1ef0a8b2a1301b7428143dfe736f2cae, + type: 3} + - target: {fileID: 6769163254485925642, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6769163254485925642, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6769163254485925642, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9018196962972663214, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Name + value: Tooltip (1) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 51ba61fa774ccd14fb1f3743d17109a4, type: 3} +--- !u!224 &338296598 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + m_PrefabInstance: {fileID: 338296597} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &339857438 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 166852726} + m_Modifications: + - target: {fileID: 135371304404343846, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 641995378579763036, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 641995378579763036, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 641995378579763036, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 641995378579763036, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 641995378579763036, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 794783772204201746, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 794783772204201746, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 794783772204201746, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 794783772204201746, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 794783772204201746, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 794783772204201746, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1051637198399478436, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.a + value: 0.2 + objectReference: {fileID: 0} + - target: {fileID: 1051637198399478436, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1051637198399478436, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1051637198399478436, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1175134076852052883, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1175134076852052883, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1175134076852052883, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1175134076852052883, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1175134076852052883, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1175134076852052883, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3634712878193884071, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Name + value: LargeSliderWithLabelsAndIcons (1) + objectReference: {fileID: 0} + - target: {fileID: 3984558140893596537, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3984558140893596537, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3984558140893596537, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 514.22003 + objectReference: {fileID: 0} + - target: {fileID: 3984558140893596537, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 3984558140893596537, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 278.6 + objectReference: {fileID: 0} + - target: {fileID: 3984558140893596537, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 4282007609068761398, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4282007609068761398, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4282007609068761398, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 557.2 + objectReference: {fileID: 0} + - target: {fileID: 4282007609068761398, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 278.6 + objectReference: {fileID: 0} + - target: {fileID: 4282007609068761398, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -56 + objectReference: {fileID: 0} + - target: {fileID: 4750816941075735432, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4750816941075735432, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4750816941075735432, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4750816941075735432, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4750816941075735432, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4750816941075735432, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5049529886231908928, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5049529886231908928, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5049529886231908928, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5049529886231908928, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5049529886231908928, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5049529886231908928, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 557.2 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5611591692397373452, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5611591692397373452, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5670333383467078314, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5670333383467078314, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5670333383467078314, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5670333383467078314, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: -13.999939 + objectReference: {fileID: 0} + - target: {fileID: 5753436235170023237, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Value + value: 0.616 + objectReference: {fileID: 0} + - target: {fileID: 7443212562550600539, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7443212562550600539, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7443212562550600539, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7760743910084354386, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7760743910084354386, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7760743910084354386, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 21.49 + objectReference: {fileID: 0} + - target: {fileID: 7760743910084354386, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 7760743910084354386, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 546.455 + objectReference: {fileID: 0} + - target: {fileID: 7760743910084354386, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 8453275433923425924, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8453275433923425924, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8453275433923425924, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.x + value: 21.49 + objectReference: {fileID: 0} + - target: {fileID: 8453275433923425924, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 8453275433923425924, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 10.745 + objectReference: {fileID: 0} + - target: {fileID: 8453275433923425924, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 8531273668819191045, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 26f4ebef46557d443aa5faf2a32711c2, type: 3} +--- !u!224 &339857439 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 5419595675737147854, guid: 26f4ebef46557d443aa5faf2a32711c2, + type: 3} + m_PrefabInstance: {fileID: 339857438} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &347058468 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 191787725} + m_Modifications: + - target: {fileID: 236114000944626438, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Name + value: ToggleRadioButton + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalScale.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.b + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.g + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.r + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 3939185599833057855, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6618407115820392869, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ecdab7d4efd5b134bb7862b57ab1188c, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9e34356aa4bacdc45805c0d16862fc4b, type: 3} +--- !u!224 &347058469 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + m_PrefabInstance: {fileID: 347058468} + m_PrefabAsset: {fileID: 0} +--- !u!1 &359676085 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 359676086} + - component: {fileID: 359676089} + - component: {fileID: 359676088} + - component: {fileID: 359676087} + m_Layer: 0 + m_Name: GradientEffect + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &359676086 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 359676085} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 405745998} + 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: 0.5, y: 0.5} +--- !u!114 &359676087 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 359676085} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &359676088 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 359676085} + m_CullTransparentMesh: 1 +--- !u!114 &359676089 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 359676085} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1001 &374927209 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 915962236} + m_Modifications: + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 176 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 945246860265842597, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 2241387638278579712, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Name + value: TextTileButton_IconAndLabel_Regular (3) + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 90ae27b2ef005bc479d956c3d244f591, type: 3} +--- !u!1 &378755693 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 378755694} + - component: {fileID: 378755695} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &378755694 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 378755693} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 793697866} + m_Father: {fileID: 1217401028} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 250, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &378755695 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 378755693} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &379182485 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 379182486} + - component: {fileID: 379182488} + - component: {fileID: 379182487} + m_Layer: 5 + m_Name: SubTitle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &379182486 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 379182485} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 39.58} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &379182487 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 379182485} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: By using type size and weight defined in this list, you can secure the + hiearchy and readability. + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &379182488 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 379182485} + m_CullTransparentMesh: 1 +--- !u!1001 &385051249 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 938252198} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 3033926376679629024, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle (1) + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &385051250 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 385051249} + m_PrefabAsset: {fileID: 0} +--- !u!1 &392259280 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 392259281} + - component: {fileID: 392259282} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &392259281 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 392259280} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 659362484} + - {fileID: 625284089} + m_Father: {fileID: 212177654} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 600, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &392259282 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 392259280} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &401475932 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 401475933} + - component: {fileID: 401475936} + - component: {fileID: 401475935} + - component: {fileID: 401475934} + m_Layer: 0 + m_Name: GradientEffect + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &401475933 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 401475932} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 312394111} + 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: 0.5, y: 0.5} +--- !u!114 &401475934 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 401475932} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &401475935 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 401475932} + m_CullTransparentMesh: 1 +--- !u!114 &401475936 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 401475932} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &405745997 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 405745998} + - component: {fileID: 405746005} + - component: {fileID: 405746004} + - component: {fileID: 405746003} + - component: {fileID: 405746002} + - component: {fileID: 405746001} + - component: {fileID: 405746000} + - component: {fileID: 405745999} + m_Layer: 5 + m_Name: TextInputField + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &405745998 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 405745997} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 359676086} + - {fileID: 1724384819} + - {fileID: 1713487615} + - {fileID: 1170653608} + - {fileID: 280844483} + - {fileID: 597627715} + m_Father: {fileID: 1930607353} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1045, y: 430} + m_Pivot: {x: 1, y: 0} +--- !u!114 &405745999 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 405745997} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 48 + m_Right: 48 + m_Top: 48 + m_Bottom: 48 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &405746000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 405745997} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1918f59d4c3ccf048b0809826fa24a05, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasGroup: {fileID: 405746002} + animationSpeed: 10 +--- !u!114 &405746001 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 405745997} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!225 &405746002 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 405745997} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!114 &405746003 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 405745997} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &405746004 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 405745997} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &405746005 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 405745997} + m_CullTransparentMesh: 1 +--- !u!1 &414369085 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 414369086} + - component: {fileID: 414369088} + - component: {fileID: 414369087} + m_Layer: 5 + m_Name: Description + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &414369086 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 414369085} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 806994213} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 205.87, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &414369087 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 414369085} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Primary Button + + Use it to contain a high-emphasis action.' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &414369088 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 414369085} + m_CullTransparentMesh: 1 +--- !u!1 &418305051 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 418305052} + - component: {fileID: 418305054} + - component: {fileID: 418305053} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &418305052 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 418305051} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1804946661} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 36} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &418305053 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 418305051} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Headline 1 - Strong + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 32 + m_fontSizeBase: 32 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: -0.2 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &418305054 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 418305051} + m_CullTransparentMesh: 1 +--- !u!1 &421899374 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 421899375} + - component: {fileID: 421899376} + m_Layer: 5 + m_Name: Checkbox + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &421899375 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 421899374} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1780135287} + - {fileID: 8075725010243989334} + m_Father: {fileID: 625521461} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &421899376 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 421899374} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &448509642 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 448509646} + - component: {fileID: 448509645} + - component: {fileID: 448509644} + - component: {fileID: 448509643} + m_Layer: 0 + m_Name: Quad + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!64 &448509643 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 448509642} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &448509644 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 448509642} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &448509645 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 448509642} + m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &448509646 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 448509642} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.2625, y: 0.2268, z: 0.89} + m_LocalScale: {x: 5.247925, y: 2.7771852, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &449776202 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 449776203} + - component: {fileID: 449776206} + - component: {fileID: 449776205} + - component: {fileID: 449776204} + m_Layer: 0 + m_Name: GradientEffect + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &449776203 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449776202} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 489499794} + 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: 0.5, y: 0.5} +--- !u!114 &449776204 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449776202} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &449776205 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449776202} + m_CullTransparentMesh: 1 +--- !u!114 &449776206 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449776202} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!224 &449828181 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + m_PrefabInstance: {fileID: 3020047765714007704} + m_PrefabAsset: {fileID: 0} +--- !u!1 &453074806 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 453074807} + - component: {fileID: 453074808} + m_Layer: 5 + m_Name: HorizontalLayout (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &453074807 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 453074806} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 991597678} + - {fileID: 456082441} + - {fileID: 1037388801} + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &453074808 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 453074806} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &456082440 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 456082441} + - component: {fileID: 456082443} + - component: {fileID: 456082442} + m_Layer: 5 + m_Name: Description1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &456082441 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 456082440} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 453074807} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &456082442 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 456082440} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Optimistic Display Light + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &456082443 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 456082440} + m_CullTransparentMesh: 1 +--- !u!1 &461448770 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 461448771} + - component: {fileID: 461448773} + - component: {fileID: 461448772} + m_Layer: 5 + m_Name: Description (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &461448771 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 461448770} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1703324487} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 205.87, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &461448772 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 461448770} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Borderless Button + + Borderless button doesn''t have a background.' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &461448773 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 461448770} + m_CullTransparentMesh: 1 +--- !u!1 &465453117 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 465453118} + - component: {fileID: 465453120} + - component: {fileID: 465453119} + m_Layer: 5 + m_Name: SubTitle (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &465453118 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 465453117} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1461177451} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &465453119 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 465453117} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Item Text Label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &465453120 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 465453117} + m_CullTransparentMesh: 1 +--- !u!1 &489499793 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 489499794} + - component: {fileID: 489499801} + - component: {fileID: 489499800} + - component: {fileID: 489499799} + - component: {fileID: 489499798} + - component: {fileID: 489499797} + - component: {fileID: 489499796} + - component: {fileID: 489499795} + m_Layer: 5 + m_Name: ButtonShelf + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &489499794 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 489499793} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 449776203} + - {fileID: 735636477} + - {fileID: 1645682492} + - {fileID: 938252198} + - {fileID: 854948235} + m_Father: {fileID: 1201211081} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 920, y: 337.08} + m_Pivot: {x: 1, y: 0} +--- !u!114 &489499795 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 489499793} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 48 + m_Right: 48 + m_Top: 48 + m_Bottom: 48 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &489499796 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 489499793} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1918f59d4c3ccf048b0809826fa24a05, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasGroup: {fileID: 489499798} + animationSpeed: 10 +--- !u!114 &489499797 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 489499793} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!225 &489499798 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 489499793} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!114 &489499799 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 489499793} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &489499800 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 489499793} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &489499801 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 489499793} + m_CullTransparentMesh: 1 +--- !u!1 &490296175 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 490296176} + - component: {fileID: 490296177} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &490296176 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 490296175} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 301277967} + m_Father: {fileID: 1813372764} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 250, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &490296177 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 490296175} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &512473208 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 512473209} + - component: {fileID: 512473212} + - component: {fileID: 512473211} + - component: {fileID: 512473210} + m_Layer: 5 + m_Name: HorizontalLine + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &512473209 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 512473208} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 312394111} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 1} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &512473210 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 512473208} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &512473211 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 512473208} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &512473212 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 512473208} + m_CullTransparentMesh: 1 +--- !u!1 &513655999 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 513656000} + - component: {fileID: 513656002} + - component: {fileID: 513656001} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &513656000 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 513655999} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1126012452} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 940, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &513656001 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 513655999} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Slider + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &513656002 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 513655999} + m_CullTransparentMesh: 1 +--- !u!1 &515902215 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 515902216} + - component: {fileID: 515902218} + - component: {fileID: 515902217} + m_Layer: 5 + m_Name: SubTitle (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &515902216 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 515902215} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 851255842} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 330, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &515902217 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 515902215} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Radio buttons with text label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &515902218 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 515902215} + m_CullTransparentMesh: 1 +--- !u!1 &528443663 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 528443664} + - component: {fileID: 528443667} + - component: {fileID: 528443666} + - component: {fileID: 528443665} + m_Layer: 0 + m_Name: GradientEffect + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &528443664 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 528443663} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 690193805} + 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: 0.5, y: 0.5} +--- !u!114 &528443665 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 528443663} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &528443666 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 528443663} + m_CullTransparentMesh: 1 +--- !u!114 &528443667 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 528443663} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &544813115 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 544813116} + - component: {fileID: 544813119} + - component: {fileID: 544813118} + - component: {fileID: 544813117} + m_Layer: 5 + m_Name: HorizontalLine + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &544813116 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 544813115} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1543092935} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -109.83} + m_SizeDelta: {x: 704, y: 1} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &544813117 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 544813115} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &544813118 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 544813115} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &544813119 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 544813115} + m_CullTransparentMesh: 1 +--- !u!1001 &547381031 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1725505037} + m_Modifications: + - target: {fileID: 85922540874757237, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 85922540874757237, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 85922540874757237, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 85922540874757237, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 85922540874757237, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 85922540874757237, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309375099279364401, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309375099279364401, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309375099279364401, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309375099279364401, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309375099279364401, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309375099279364401, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.x + value: 516.2 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4245258490321066056, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_Name + value: MediumSliderWithLabelsAndIcons (1) + objectReference: {fileID: 0} + - target: {fileID: 4406723965808048788, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_Color.a + value: 0.1 + objectReference: {fileID: 0} + - target: {fileID: 5332214698608179540, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5332214698608179540, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5332214698608179540, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5332214698608179540, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5332214698608179540, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5332214698608179540, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8479282770161578608, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8479282770161578608, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8479282770161578608, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8479282770161578608, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8479282770161578608, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8964328924006573941, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_Value + value: 0.299 + objectReference: {fileID: 0} + - target: {fileID: 9011399698155074202, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9011399698155074202, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9011399698155074202, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9020577478518400582, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9020577478518400582, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9020577478518400582, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9020577478518400582, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9020577478518400582, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9106171266705950780, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9106171266705950780, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, type: 3} +--- !u!224 &547381032 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + m_PrefabInstance: {fileID: 547381031} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &558808471 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 597627715} + m_Modifications: + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025239, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Name + value: SearchBar (2) + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5530707485977931073, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5530707485977931073, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5530707485977931073, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5530707485977931073, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7452931228788773685, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ebffd02e23b79524e9142997edbf75a5, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} +--- !u!224 &558808472 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + m_PrefabInstance: {fileID: 558808471} + m_PrefabAsset: {fileID: 0} +--- !u!224 &567078861 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + m_PrefabInstance: {fileID: 1540153662} + m_PrefabAsset: {fileID: 0} +--- !u!1 &569455500 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 569455504} + - component: {fileID: 569455505} + - component: {fileID: 569455503} + - component: {fileID: 569455502} + - component: {fileID: 569455501} + - component: {fileID: 569455507} + - component: {fileID: 569455506} + m_Layer: 0 + m_Name: ContentRoot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &569455501 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 569455500} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 569455502} + _surface: {fileID: 1464520831} + _selectSurface: {fileID: 0} + _movementProvider: {fileID: 0} + _tiebreakerScore: 0 +--- !u!114 &569455502 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 569455500} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} + m_Name: + m_EditorClassIdentifier: + _transferOnSecondSelection: 0 + _addNewPointsToFront: 0 + _forwardElement: {fileID: 0} + _canvas: {fileID: 1918435874} +--- !u!114 &569455503 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 569455500} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 317e663e2bb60ea408fe22b908b59295, type: 3} + m_Name: + m_EditorClassIdentifier: + _interactorFilters: [] + _maxInteractors: -1 + _maxSelectingInteractors: -1 + _data: {fileID: 0} + _pointableElement: {fileID: 569455502} + _surfacePatch: {fileID: 1464520831} + _enterHoverNormal: 0.15 + _enterHoverTangent: 0 + _exitHoverNormal: 0.2 + _exitHoverTangent: 0 + _cancelSelectNormal: 0.3 + _cancelSelectTangent: 0.03 + _minThresholds: + Enabled: 0 + MinNormal: 0.01 + _dragThresholds: + Enabled: 1 + DragNormal: 0.01 + DragTangent: 0.01 + DragEaseCurve: + _animationCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + _animationLength: 0.05 + _positionPinning: + Enabled: 1 + MaxPinDistance: 0 + PinningEaseCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.2 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + ResyncCurve: + _animationCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + _animationLength: 0.2 + _recoilAssist: + Enabled: 0 + UseDynamicDecay: 0 + DynamicDecayCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 50 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 0.9 + value: 0.5 + inSlope: -47 + outSlope: -47 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + UseVelocityExpansion: 0 + VelocityExpansionMinSpeed: 0.4 + VelocityExpansionMaxSpeed: 1.4 + VelocityExpansionDistance: 0.055 + VelocityExpansionDecayRate: 0.125 + ExitDistance: 0.02 + ReEnterDistance: 0.02 + _closeDistanceThreshold: 0.001 + _tiebreakerScore: 0 +--- !u!4 &569455504 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 569455500} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.096, y: 0, z: 0.55} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1918435865} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &569455505 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 569455500} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 98c98c657feb956428aa12a4b798bde6, type: 3} + m_Name: + m_EditorClassIdentifier: + _themes: + - {fileID: 11400000, guid: 4b2fdc959511e154cb98df0433028c9b, type: 2} + - {fileID: 11400000, guid: 6d200bf68ab316d46be5cbf2afb3e24e, type: 2} + - {fileID: 11400000, guid: 337a53e84c4e4454bbe5cbc93d5c6320, type: 2} + - {fileID: 11400000, guid: 3ced7d0f34b29634ba18cbee188cf141, type: 2} + _currentThemeIndex: 0 +--- !u!114 &569455506 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 569455500} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f5626a0b1dc955a43be59ce7ea116678, type: 3} + m_Name: + m_EditorClassIdentifier: + _pointableCanvas: {fileID: 569455502} + _suppressWhileDragging: 1 + _whenBeginHighlight: + m_PersistentCalls: + m_Calls: [] + _whenEndHighlight: + m_PersistentCalls: + m_Calls: [] + _whenSelectedHovered: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 569455507} + m_TargetAssemblyTypeName: UnityEngine.AudioSource, UnityEngine + m_MethodName: PlayOneShot + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 8300000, guid: 56fe077fa3d84f24c951589f5d187be2, + type: 3} + m_ObjectArgumentAssemblyTypeName: UnityEngine.AudioClip, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + _whenSelectedEmpty: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 569455507} + m_TargetAssemblyTypeName: UnityEngine.AudioSource, UnityEngine + m_MethodName: PlayOneShot + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 8300000, guid: aebed88a33938c74f80e53b1386c2034, + type: 3} + m_ObjectArgumentAssemblyTypeName: UnityEngine.AudioClip, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + _whenUnselectedHovered: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 569455507} + m_TargetAssemblyTypeName: UnityEngine.AudioSource, UnityEngine + m_MethodName: PlayOneShot + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 8300000, guid: aebed88a33938c74f80e53b1386c2034, + type: 3} + m_ObjectArgumentAssemblyTypeName: UnityEngine.AudioClip, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + _whenUnselectedEmpty: + m_PersistentCalls: + m_Calls: [] +--- !u!82 &569455507 +AudioSource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 569455500} + m_Enabled: 1 + serializedVersion: 4 + OutputAudioMixerGroup: {fileID: 0} + m_audioClip: {fileID: 0} + m_PlayOnAwake: 1 + m_Volume: 1 + m_Pitch: 1 + Loop: 0 + Mute: 0 + Spatialize: 0 + SpatializePostEffects: 0 + Priority: 128 + DopplerLevel: 1 + MinDistance: 1 + MaxDistance: 500 + Pan2D: 0 + rolloffMode: 0 + BypassEffects: 0 + BypassListenerEffects: 0 + BypassReverbZones: 0 + rolloffCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + panLevelCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + spreadCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + reverbZoneMixCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!1 &576163656 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 576163657} + - component: {fileID: 576163659} + - component: {fileID: 576163658} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &576163657 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 576163656} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1899630434} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 397.3, y: 41.3} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &576163658 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 576163656} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Themes + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &576163659 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 576163656} + m_CullTransparentMesh: 1 +--- !u!1 &586887449 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 586887450} + - component: {fileID: 586887453} + - component: {fileID: 586887452} + - component: {fileID: 586887451} + m_Layer: 5 + m_Name: HorizontalLine (1) + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &586887450 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 586887449} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 231720578} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 684, y: 1} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &586887451 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 586887449} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &586887452 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 586887449} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &586887453 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 586887449} + m_CullTransparentMesh: 1 +--- !u!1 &588656379 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 588656380} + - component: {fileID: 588656383} + - component: {fileID: 588656382} + - component: {fileID: 588656381} + m_Layer: 0 + m_Name: GradientEffect + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &588656380 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 588656379} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1126012452} + 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: 0.5, y: 0.5} +--- !u!114 &588656381 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 588656379} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &588656382 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 588656379} + m_CullTransparentMesh: 1 +--- !u!114 &588656383 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 588656379} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &594377649 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 594377650} + - component: {fileID: 594377652} + - component: {fileID: 594377651} + m_Layer: 5 + m_Name: Description (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &594377650 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 594377649} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 317148316} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 205.87, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &594377651 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 594377649} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Destructive Button + + Use it to draw user''s attention in a + destructive action such as "Delete" or "End".' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &594377652 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 594377649} + m_CullTransparentMesh: 1 +--- !u!1 &597627714 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 597627715} + - component: {fileID: 597627716} + m_Layer: 5 + m_Name: SerchBar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &597627715 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 597627714} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1302269547} + - {fileID: 40646113} + - {fileID: 558808472} + m_Father: {fileID: 405745998} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 938, y: 60} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &597627716 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 597627714} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1001 &600515697 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 806994213} + m_Modifications: + - target: {fileID: 243424268127923124, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Name + value: PrimaryButton_Base_IconAndLabel (3) + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5140576997555375988, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 36.5 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 8434824762051719496, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8434824762051719496, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 401475934} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4ae769ba4a46d84c9e04c6914423ca2, type: 3} +--- !u!1001 &607628415 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 854948235} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: -6640858976124669667, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &607628416 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 607628415} + m_PrefabAsset: {fileID: 0} +--- !u!1 &608949529 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 608949530} + - component: {fileID: 608949531} + m_Layer: 5 + m_Name: gap (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &608949530 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608949529} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1813372764} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 8, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &608949531 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608949529} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &625284088 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 625284089} + - component: {fileID: 625284091} + - component: {fileID: 625284090} + m_Layer: 5 + m_Name: SubTitle (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &625284089 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625284088} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 392259281} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 570, y: 14} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &625284090 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625284088} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean dolor nunc. + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 11 + m_fontSizeBase: 11 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &625284091 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625284088} + m_CullTransparentMesh: 1 +--- !u!1 &625521460 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 625521461} + - component: {fileID: 625521462} + m_Layer: 5 + m_Name: HorizontalLayout + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &625521461 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625521460} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1813481664} + - {fileID: 421899375} + - {fileID: 191787725} + m_Father: {fileID: 690193805} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 684, y: 110} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &625521462 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625521460} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 + m_ReverseArrangement: 0 +--- !u!1 &625867197 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 625867198} + - component: {fileID: 625867200} + - component: {fileID: 625867199} + m_Layer: 5 + m_Name: SubTitle (2) + m_TagString: QDSUISharedThemeColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &625867198 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625867197} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2013848783} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 366.84, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &625867199 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625867197} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 1 Button + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294440177 + m_fontColor: {r: 0.94509804, g: 0.95686275, b: 0.96862745, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &625867200 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625867197} + m_CullTransparentMesh: 1 +--- !u!1 &642023024 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 642023025} + - component: {fileID: 642023026} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &642023025 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 642023024} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 130977127} + - {fileID: 1737070315} + m_Father: {fileID: 930635152} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 600, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &642023026 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 642023024} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &659362483 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 659362484} + - component: {fileID: 659362486} + - component: {fileID: 659362485} + m_Layer: 5 + m_Name: SubTitle (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &659362484 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 659362483} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 392259281} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 570, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &659362485 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 659362483} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Item Text Label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &659362486 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 659362483} + m_CullTransparentMesh: 1 +--- !u!1 &662638688 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 662638689} + - component: {fileID: 662638692} + - component: {fileID: 662638691} + - component: {fileID: 662638690} + m_Layer: 5 + m_Name: HorizontalLine + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &662638689 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 662638688} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1534701293} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 1} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &662638690 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 662638688} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &662638691 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 662638688} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &662638692 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 662638688} + m_CullTransparentMesh: 1 +--- !u!1 &665863067 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 665863068} + - component: {fileID: 665863070} + - component: {fileID: 665863069} + m_Layer: 5 + m_Name: SubTitle (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &665863068 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 665863067} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1279148322} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 684, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &665863069 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 665863067} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Toggle switch with text label + + Toggle buttons are placed on + the right side of the text labels' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &665863070 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 665863067} + m_CullTransparentMesh: 1 +--- !u!1 &666345389 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 666345390} + - component: {fileID: 666345392} + - component: {fileID: 666345391} + m_Layer: 5 + m_Name: SubTitle (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &666345390 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 666345389} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 233959277} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &666345391 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 666345389} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Item Text Label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &666345392 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 666345389} + m_CullTransparentMesh: 1 +--- !u!1 &669170093 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 669170094} + - component: {fileID: 669170096} + - component: {fileID: 669170095} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &669170094 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 669170093} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1065342610} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &669170095 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 669170093} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Headline 3 - Strong + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 20 + m_fontSizeBase: 20 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: -0.1 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &669170096 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 669170093} + m_CullTransparentMesh: 1 +--- !u!1 &673624050 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 673624051} + - component: {fileID: 673624053} + - component: {fileID: 673624052} + m_Layer: 5 + m_Name: Description2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &673624051 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 673624050} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1977511354} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &673624052 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 673624050} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 11/16 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &673624053 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 673624050} + m_CullTransparentMesh: 1 +--- !u!1 &690193804 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 690193805} + - component: {fileID: 690193812} + - component: {fileID: 690193811} + - component: {fileID: 690193810} + - component: {fileID: 690193809} + - component: {fileID: 690193808} + - component: {fileID: 690193807} + - component: {fileID: 690193806} + m_Layer: 5 + m_Name: Controls + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &690193805 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 690193804} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 528443664} + - {fileID: 1568316817} + - {fileID: 1566920135} + - {fileID: 625521461} + - {fileID: 1862897531} + - {fileID: 1831489140} + m_Father: {fileID: 1583347220} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 780, y: 835} + m_Pivot: {x: 1, y: 0} +--- !u!114 &690193806 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 690193804} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 50 + m_Right: 50 + m_Top: 50 + m_Bottom: 50 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &690193807 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 690193804} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1918f59d4c3ccf048b0809826fa24a05, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasGroup: {fileID: 690193809} + animationSpeed: 10 +--- !u!114 &690193808 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 690193804} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!225 &690193809 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 690193804} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!114 &690193810 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 690193804} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 24, y: 24, z: 24, w: 24} +--- !u!114 &690193811 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 690193804} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &690193812 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 690193804} + m_CullTransparentMesh: 1 +--- !u!1 &695895895 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 695895896} + - component: {fileID: 695895898} + - component: {fileID: 695895897} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &695895896 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 695895895} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 231720578} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 684, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &695895897 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 695895895} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Drop Down + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &695895898 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 695895895} + m_CullTransparentMesh: 1 +--- !u!1001 &733362084 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 854948235} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 8562248459948876173, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle (4) + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &733362085 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 733362084} + m_PrefabAsset: {fileID: 0} +--- !u!1 &735636476 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 735636477} + - component: {fileID: 735636479} + - component: {fileID: 735636478} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &735636477 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 735636476} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 489499794} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &735636478 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 735636476} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Button Shelf + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &735636479 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 735636476} + m_CullTransparentMesh: 1 +--- !u!224 &738652296 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + m_PrefabInstance: {fileID: 1788547994} + m_PrefabAsset: {fileID: 0} +--- !u!224 &789655056 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + m_PrefabInstance: {fileID: 1411649477722590960} + m_PrefabAsset: {fileID: 0} +--- !u!1 &793697865 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 793697866} + - component: {fileID: 793697868} + - component: {fileID: 793697867} + m_Layer: 5 + m_Name: SubTitle (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &793697866 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 793697865} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 378755694} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &793697867 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 793697865} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Item Text Label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &793697868 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 793697865} + m_CullTransparentMesh: 1 +--- !u!1 &796222267 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 796222268} + - component: {fileID: 796222271} + - component: {fileID: 796222270} + - component: {fileID: 796222269} + m_Layer: 5 + m_Name: HorizontalLine + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &796222268 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 796222267} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 704, y: 1} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &796222269 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 796222267} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &796222270 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 796222267} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &796222271 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 796222267} + m_CullTransparentMesh: 1 +--- !u!1 &806994212 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 806994213} + - component: {fileID: 806994214} + m_Layer: 5 + m_Name: PrimaryButtons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &806994213 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 806994212} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2061983118} + - {fileID: 1924892552} + - {fileID: 173057153} + - {fileID: 1511496453} + - {fileID: 414369086} + m_Father: {fileID: 312394111} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 493, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &806994214 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 806994212} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1001 &808385992 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 990498926} + m_Modifications: + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3095485336300360604, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.x + value: 176 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.y + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4102898763052618297, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Name + value: TextTileButton_IconAndLabel_Toggle (1) + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Enabled + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 88 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -80 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8182325033161516267, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_IsOn + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8620880475664592991, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_ChildAlignment + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 8904444389266097905, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5292db714b0f87045a7dfd9be93b1be5, type: 3} +--- !u!224 &808385993 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + m_PrefabInstance: {fileID: 808385992} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &808993876 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1813372764} + m_Modifications: + - target: {fileID: 746620542841046277, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Name + value: ToggleCheckboxButton (1) + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalScale.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6164804513502958587, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_IsOn + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.b + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.g + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.r + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 7418713124573716388, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ecdab7d4efd5b134bb7862b57ab1188c, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 6cd57a5c754c63047822347680b4bbd2, type: 3} +--- !u!224 &808993877 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + m_PrefabInstance: {fileID: 808993876} + m_PrefabAsset: {fileID: 0} +--- !u!1 &812424044 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 812424045} + - component: {fileID: 812424047} + - component: {fileID: 812424046} + m_Layer: 5 + m_Name: Description2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &812424045 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 812424044} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1065342610} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &812424046 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 812424044} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 20/24 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &812424047 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 812424044} + m_CullTransparentMesh: 1 +--- !u!1001 &814190432 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1355451495} + m_Modifications: + - target: {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 401475934} + - target: {fileID: 926487722107310181, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 23 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 3514228717131758684, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 0db508f5b99fa0843b166ffb22a8a9db, type: 2} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.x + value: 58 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8427117777238694044, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Name + value: SecondaryButton_Base_IconAndLabel (4) + objectReference: {fileID: 0} + - target: {fileID: 8943299744121885031, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 292035910f8781541aeb438db140bd72, type: 3} +--- !u!224 &814190433 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + m_PrefabInstance: {fileID: 814190432} + m_PrefabAsset: {fileID: 0} +--- !u!1 &827264653 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 827264654} + - component: {fileID: 827264655} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &827264654 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 827264653} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 102860186} + m_Father: {fileID: 1237781928} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 250, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &827264655 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 827264653} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &837128349 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 837128350} + - component: {fileID: 837128352} + - component: {fileID: 837128351} + m_Layer: 5 + m_Name: SubTitle (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &837128350 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 837128349} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1126012452} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 940, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &837128351 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 837128349} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Large Slider + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &837128352 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 837128349} + m_CullTransparentMesh: 1 +--- !u!1001 &846531333 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 2020306023} + m_Modifications: + - target: {fileID: 2802042816412700, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2802042816412700, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2802042816412700, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2802042816412700, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_SizeDelta.x + value: 200 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_SizeDelta.y + value: 444 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 496782766808207958, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 496782766808207958, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 496782766808207958, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 496782766808207958, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 496782766808207958, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 780108771232849279, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 780108771232849279, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 780108771232849279, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 780108771232849279, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 882311839106741045, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 882311839106741045, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 882311839106741045, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 882311839106741045, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 882311839106741045, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 1217519052884612351, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1217519052884612351, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1217519052884612351, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1217519052884612351, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1371931043812194478, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 1371931043812194478, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 1371931043812194478, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 1476474018925279631, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1476474018925279631, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1476474018925279631, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1476474018925279631, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1522174847414689833, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 1725281706572817183, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1725281706572817183, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1725281706572817183, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1725281706572817183, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1905791440544919985, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1905791440544919985, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1905791440544919985, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1905791440544919985, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2118568164040984145, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2118568164040984145, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2118568164040984145, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2118568164040984145, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2200502811767728640, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2200502811767728640, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 2200502811767728640, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 2200502811767728640, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 2208745094802430188, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2208745094802430188, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2208745094802430188, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2208745094802430188, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2289426541594558794, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 2786522188859182548, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2786522188859182548, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2786522188859182548, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2786522188859182548, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2818988449870762067, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 2818988449870762067, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2818988449870762067, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2818988449870762067, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2818988449870762067, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 3109843909922676602, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3109843909922676602, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3109843909922676602, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3109843909922676602, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309685528633471900, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309685528633471900, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309685528633471900, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309685528633471900, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3670985958714243755, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3670985958714243755, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 3670985958714243755, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 3670985958714243755, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 3811236816535003692, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 3856944988880911242, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3856944988880911242, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3856944988880911242, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3856944988880911242, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3894079680170090778, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3894079680170090778, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3894079680170090778, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3894079680170090778, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3911161300800021815, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3911161300800021815, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3911161300800021815, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3911161300800021815, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4036714750851180836, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4036714750851180836, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4036714750851180836, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4036714750851180836, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4047472715973286856, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 4047472715973286856, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 4047472715973286856, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 4136536556189905026, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 4367727207993771092, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4367727207993771092, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4367727207993771092, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4367727207993771092, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4382275581827170425, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4382275581827170425, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4382275581827170425, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4382275581827170425, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4681862825224447075, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Name + value: DropDownIconAnd2LineText + objectReference: {fileID: 0} + - target: {fileID: 4930045779631400238, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4930045779631400238, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4970646562574647196, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4970646562574647196, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4970646562574647196, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4970646562574647196, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5060108934209443822, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5060108934209443822, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5060108934209443822, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5060108934209443822, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5294154068886777138, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5294154068886777138, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5294154068886777138, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5294154068886777138, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5540389606310164109, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5540389606310164109, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5540389606310164109, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5540389606310164109, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5823659959186959132, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5823659959186959132, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5823659959186959132, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5823659959186959132, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5823659959186959132, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6334144660538662283, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6334144660538662283, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6334144660538662283, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6334144660538662283, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6488490083660237439, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6488490083660237439, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6488490083660237439, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6488490083660237439, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6488490083660237439, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6513527394420150053, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6513527394420150053, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6513527394420150053, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6513527394420150053, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6961260039899194918, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6961260039899194918, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6961260039899194918, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6961260039899194918, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7086708601938677332, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7086708601938677332, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7086708601938677332, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7086708601938677332, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7531003013808598839, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7531003013808598839, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7531003013808598839, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7531003013808598839, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7861183483215377544, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7861183483215377544, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7861183483215377544, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7861183483215377544, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8510823932205621134, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8510823932205621134, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8510823932205621134, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8510823932205621134, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8930740448321652858, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 8930740448321652858, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8930740448321652858, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8930740448321652858, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8930740448321652858, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 8991139771064909549, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8991139771064909549, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8991139771064909549, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8991139771064909549, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, type: 3} +--- !u!224 &846531334 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 482848407650045757, guid: 7119a9d21d80c3743bd47bf6d0aa2b8b, + type: 3} + m_PrefabInstance: {fileID: 846531333} + m_PrefabAsset: {fileID: 0} +--- !u!1 &849596838 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 849596840} + - component: {fileID: 849596839} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &849596839 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 849596838} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 2 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &849596840 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 849596838} + serializedVersion: 2 + m_LocalRotation: {x: 0.44572085, y: 0.0389639, z: 0.5579407, w: 0.6989399} + m_LocalPosition: {x: 0.14633907, y: 1.2145671, z: 0.42901576} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 35.421, y: 42.623, z: 91.401} +--- !u!1 &851255841 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 851255842} + - component: {fileID: 851255843} + m_Layer: 5 + m_Name: Toggle (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &851255842 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 851255841} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 515902216} + - {fileID: 1752604145} + m_Father: {fileID: 1831489140} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 326, y: 42} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &851255843 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 851255841} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &854857910 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 854857911} + - component: {fileID: 854857912} + m_Layer: 5 + m_Name: Group1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &854857911 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 854857910} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1782677177} + - {fileID: 1344591230} + - {fileID: 338296598} + m_Father: {fileID: 1903050958} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 940, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &854857912 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 854857910} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &854948234 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 854948235} + - component: {fileID: 854948236} + m_Layer: 5 + m_Name: Buttons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &854948235 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 854948234} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 62544397} + - {fileID: 1972171513} + - {fileID: 1898796000} + - {fileID: 1878992231} + - {fileID: 1872618425} + - {fileID: 733362085} + - {fileID: 607628416} + m_Father: {fileID: 489499794} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 72} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &854948236 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 854948234} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 18 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1001 &869670613 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 280844483} + m_Modifications: + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159571, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Name + value: TextInputField + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496782, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609997, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6137772635375916529, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ebffd02e23b79524e9142997edbf75a5, type: 2} + - target: {fileID: 9116019988612901765, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9116019988612901765, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 9116019988612901765, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 9116019988612901765, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ac2e09824bbe6da42bff68e86401d411, type: 3} +--- !u!224 &869670614 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + m_PrefabInstance: {fileID: 869670613} + m_PrefabAsset: {fileID: 0} +--- !u!1 &903298946 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 903298947} + - component: {fileID: 903298949} + - component: {fileID: 903298948} + m_Layer: 5 + m_Name: Description2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &903298947 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 903298946} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1389229199} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &903298948 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 903298946} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 14/20 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &903298949 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 903298946} + m_CullTransparentMesh: 1 +--- !u!1 &910399192 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 910399193} + - component: {fileID: 910399195} + - component: {fileID: 910399194} + m_Layer: 5 + m_Name: Description2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &910399193 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 910399192} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 41491508} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &910399194 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 910399192} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 11/16 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &910399195 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 910399192} + m_CullTransparentMesh: 1 +--- !u!1 &915962235 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 915962236} + - component: {fileID: 915962237} + m_Layer: 5 + m_Name: RegularButtons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &915962236 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 915962235} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1658354550} + - {fileID: 567078861} + - {fileID: 738652296} + - {fileID: 1364326032} + m_Father: {fileID: 1534701293} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &915962237 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 915962235} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &925492960 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 925492961} + - component: {fileID: 925492963} + - component: {fileID: 925492962} + m_Layer: 5 + m_Name: SubTitle (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &925492961 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 925492960} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1126012452} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 940, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &925492962 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 925492960} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Medium Slider + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &925492963 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 925492960} + m_CullTransparentMesh: 1 +--- !u!1 &930635151 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 930635152} + - component: {fileID: 930635153} + m_Layer: 5 + m_Name: ToggleWithTextLabel (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &930635152 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 930635151} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 642023025} + - {fileID: 1099342651} + m_Father: {fileID: 174531534} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 640, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &930635153 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 930635151} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &938252197 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 938252198} + - component: {fileID: 938252199} + m_Layer: 5 + m_Name: Buttons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &938252198 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 938252197} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 57561229} + - {fileID: 3315583780632021009} + - {fileID: 1908905057} + - {fileID: 1532658159} + - {fileID: 1514289920} + - {fileID: 1117708102} + - {fileID: 385051250} + m_Father: {fileID: 489499794} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 72} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &938252199 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 938252197} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 18 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &946691065 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 946691066} + - component: {fileID: 946691068} + - component: {fileID: 946691067} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &946691066 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 946691065} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1534701293} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &946691067 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 946691065} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Tile Buttons + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &946691068 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 946691065} + m_CullTransparentMesh: 1 +--- !u!1 &955518526 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 955518527} + - component: {fileID: 955518528} + m_Layer: 5 + m_Name: HorizontalLayout (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &955518527 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 955518526} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1716548288} + - {fileID: 1352945439} + - {fileID: 990274271} + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &955518528 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 955518526} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &959908175 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 959908176} + - component: {fileID: 959908178} + - component: {fileID: 959908177} + m_Layer: 5 + m_Name: Description1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &959908176 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959908175} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1977511354} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &959908177 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959908175} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Optimistic Text Bold + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &959908178 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959908175} + m_CullTransparentMesh: 1 +--- !u!1 &960560722 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 960560723} + - component: {fileID: 960560724} + m_Layer: 5 + m_Name: Labels + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &960560723 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 960560722} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 221908974} + - {fileID: 2015158837} + - {fileID: 82004035} + - {fileID: 1824202423} + m_Father: {fileID: 1534701293} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &960560724 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 960560722} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &973802596 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 973802597} + - component: {fileID: 973802598} + m_Layer: 5 + m_Name: gap (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &973802597 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 973802596} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1237781928} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 8, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &973802598 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 973802596} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &990274270 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 990274271} + - component: {fileID: 990274273} + - component: {fileID: 990274272} + m_Layer: 5 + m_Name: Description2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &990274271 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 990274270} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 955518527} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &990274272 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 990274270} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 20/24 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &990274273 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 990274270} + m_CullTransparentMesh: 1 +--- !u!1 &990498925 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 990498926} + - component: {fileID: 990498927} + m_Layer: 5 + m_Name: ToggleButtons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &990498926 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 990498925} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 808385993} + - {fileID: 197391148} + - {fileID: 1917694250} + - {fileID: 1535342752} + m_Father: {fileID: 1534701293} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &990498927 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 990498925} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &991597677 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 991597678} + - component: {fileID: 991597680} + - component: {fileID: 991597679} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &991597678 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 991597677} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 453074807} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &991597679 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 991597677} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Headline 2 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 24 + m_fontSizeBase: 24 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: -0.2 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &991597680 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 991597677} + m_CullTransparentMesh: 1 +--- !u!1 &1002546178 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1002546179} + - component: {fileID: 1002546180} + m_Layer: 5 + m_Name: Group1 (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1002546179 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1002546178} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1515530654} + - {fileID: 2090945903} + - {fileID: 145488233} + - {fileID: 62733370} + m_Father: {fileID: 1903050958} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 940, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1002546180 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1002546178} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1006366749 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1006366750} + - component: {fileID: 1006366752} + - component: {fileID: 1006366751} + m_Layer: 5 + m_Name: SubTitle (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1006366750 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1006366749} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1390813077} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1006366751 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1006366749} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Item Text Label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1006366752 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1006366749} + m_CullTransparentMesh: 1 +--- !u!1 &1020742995 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1020742996} + - component: {fileID: 1020742998} + - component: {fileID: 1020742997} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1020742996 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020742995} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 41491508} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1020742997 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020742995} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Body 1 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 11 + m_fontSizeBase: 11 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: -0.2 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1020742998 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1020742995} + m_CullTransparentMesh: 1 +--- !u!1001 &1029606359 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1460576353} + m_Modifications: + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 424006050248138118, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3049025920889113596, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Color.a + value: 0.1 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4131571201780207528, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5898953282668774849, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Name + value: SmallSliderWithLabelsAndIcons (3) + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7123553540386030360, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7362088438272524674, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7577335474933283156, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7577335474933283156, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7577335474933283156, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: -5.9924927 + objectReference: {fileID: 0} + - target: {fileID: 7672278566819972082, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7672278566819972082, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7672278566819972082, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7714724829824701981, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_Value + value: 0.841 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8806232324471645441, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ab9e0a62c7bd05742b82217187604b90, type: 3} +--- !u!224 &1029606360 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 5877997099728537916, guid: ab9e0a62c7bd05742b82217187604b90, + type: 3} + m_PrefabInstance: {fileID: 1029606359} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1031547950 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1031547951} + - component: {fileID: 1031547953} + - component: {fileID: 1031547952} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1031547951 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031547950} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1543092935} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -68.665} + m_SizeDelta: {x: 704, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1031547952 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031547950} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: UI Backplate + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1031547953 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031547950} + m_CullTransparentMesh: 1 +--- !u!1 &1037388800 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1037388801} + - component: {fileID: 1037388803} + - component: {fileID: 1037388802} + m_Layer: 5 + m_Name: Description2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1037388801 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1037388800} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 453074807} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1037388802 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1037388800} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 24/28 | -0.1% + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1037388803 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1037388800} + m_CullTransparentMesh: 1 +--- !u!1 &1041541472 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1041541473} + - component: {fileID: 1041541474} + m_Layer: 5 + m_Name: ToggleWithTextLabel (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1041541473 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1041541472} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1258245239} + - {fileID: 233959277} + - {fileID: 147702597} + m_Father: {fileID: 1752604145} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1041541474 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1041541472} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1057777391 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1057777392} + - component: {fileID: 1057777394} + - component: {fileID: 1057777393} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1057777392 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1057777391} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1977511354} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1057777393 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1057777391} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Body 2 - Strong + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 11 + m_fontSizeBase: 11 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: -0.1 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1057777394 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1057777391} + m_CullTransparentMesh: 1 +--- !u!1001 &1058959249 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1355451495} + m_Modifications: + - target: {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 401475934} + - target: {fileID: 926487722107310181, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 36.5 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 2010125156787955810, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 3514228717131758684, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 0db508f5b99fa0843b166ffb22a8a9db, type: 2} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 44.5 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8427117777238694044, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Name + value: SecondaryButton_Base_IconAndLabel (1) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 292035910f8781541aeb438db140bd72, type: 3} +--- !u!224 &1058959250 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + m_PrefabInstance: {fileID: 1058959249} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1061676485 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1061676486} + - component: {fileID: 1061676488} + - component: {fileID: 1061676487} + m_Layer: 5 + m_Name: Label (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1061676486 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1061676485} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1170653608} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 285, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1061676487 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1061676485} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Deafult + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1061676488 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1061676485} + m_CullTransparentMesh: 1 +--- !u!1 &1065342609 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1065342610} + - component: {fileID: 1065342611} + m_Layer: 5 + m_Name: HorizontalLayout (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1065342610 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1065342609} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 669170094} + - {fileID: 1120075457} + - {fileID: 812424045} + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1065342611 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1065342609} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1074918530 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1074918531} + - component: {fileID: 1074918533} + - component: {fileID: 1074918532} + m_Layer: 5 + m_Name: SubTitle (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1074918531 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1074918530} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1496156268} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 330, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1074918532 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1074918530} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Checkbox buttons with text label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1074918533 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1074918530} + m_CullTransparentMesh: 1 +--- !u!1 &1082227055 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1082227056} + - component: {fileID: 1082227059} + - component: {fileID: 1082227058} + - component: {fileID: 1082227060} + m_Layer: 0 + m_Name: GradientEffect + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1082227056 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082227055} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 231720578} + 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: 0.5, y: 0.5} +--- !u!222 &1082227058 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082227055} + m_CullTransparentMesh: 1 +--- !u!114 &1082227059 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082227055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1082227060 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082227055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1001 &1099342650 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 930635152} + m_Modifications: + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.b + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.g + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.r + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 1474146498998784439, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 26f1b9b1dfdb2af4cb21f810aec35b9c, type: 2} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5684433707470414278, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1.7 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Name + value: ToggleSwitchButton + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.b + value: 0.15294118 + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.g + value: 0.15294118 + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.r + value: 0.15294118 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalScale.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &1099342651 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + m_PrefabInstance: {fileID: 1099342650} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1104487618 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1104487619} + - component: {fileID: 1104487621} + - component: {fileID: 1104487620} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1104487619 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104487618} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 704, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1104487620 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104487618} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Type Ramp + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1104487621 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1104487618} + m_CullTransparentMesh: 1 +--- !u!1001 &1112832712 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1606818755} + m_Modifications: + - target: {fileID: 214820897206473770, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 214820897206473770, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 214820897206473770, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 214820897206473770, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 264904353708029229, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 264904353708029229, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 264904353708029229, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 264904353708029229, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 264904353708029229, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1211750093959237569, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1211750093959237569, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1211750093959237569, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 156 + objectReference: {fileID: 0} + - target: {fileID: 1211750093959237569, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 78 + objectReference: {fileID: 0} + - target: {fileID: 1211750093959237569, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 1213882978143038354, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1213882978143038354, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1213882978143038354, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1213882978143038354, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1213882978143038354, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1247207384255084049, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1247207384255084049, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1247207384255084049, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1247207384255084049, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1330492104680265048, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1475061726686967161, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1475061726686967161, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1475061726686967161, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 156 + objectReference: {fileID: 0} + - target: {fileID: 1475061726686967161, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 78 + objectReference: {fileID: 0} + - target: {fileID: 1475061726686967161, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 2581575417340617141, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2581575417340617141, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2581575417340617141, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2581575417340617141, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2671622382610021951, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2671622382610021951, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2671622382610021951, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 154 + objectReference: {fileID: 0} + - target: {fileID: 2671622382610021951, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 2949955778703832170, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2949955778703832170, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2949955778703832170, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 78 + objectReference: {fileID: 0} + - target: {fileID: 2949955778703832170, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 2952616774084317241, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2952616774084317241, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2952616774084317241, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2952616774084317241, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Pivot.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Pivot.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 368 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1144 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -416.6 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3195622517617151698, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3195622517617151698, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3195622517617151698, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 242 + objectReference: {fileID: 0} + - target: {fileID: 3195622517617151698, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 3658853290335551083, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3658853290335551083, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3658853290335551083, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 3658853290335551083, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 3919881405765558400, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3919881405765558400, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3919881405765558400, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3919881405765558400, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3922533259459151059, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3922533259459151059, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3922533259459151059, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 3922533259459151059, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 4175585435214492971, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175585435214492971, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175585435214492971, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175585435214492971, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4290937000829423238, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4290937000829423238, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4290937000829423238, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4290937000829423238, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4298166796836279053, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Name + value: Dialog1Button_ImageVideoAndText + objectReference: {fileID: 0} + - target: {fileID: 4425304403864267992, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4425304403864267992, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4425304403864267992, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4425304403864267992, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4678960512804428717, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4678960512804428717, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4678960512804428717, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4678960512804428717, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4741203784854919122, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4741203784854919122, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4741203784854919122, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 184 + objectReference: {fileID: 0} + - target: {fileID: 4741203784854919122, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -372.6 + objectReference: {fileID: 0} + - target: {fileID: 5010165021797404450, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5010165021797404450, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5010165021797404450, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5010165021797404450, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5077339543274052338, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5077339543274052338, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5077339543274052338, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5077339543274052338, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5085223240326603171, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5085223240326603171, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5085223240326603171, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5085223240326603171, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5135086515822972023, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5135086515822972023, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5135086515822972023, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 5135086515822972023, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 5806868570403834915, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5806868570403834915, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5806868570403834915, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 5806868570403834915, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 6022192975458443585, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6022192975458443585, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6022192975458443585, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 156 + objectReference: {fileID: 0} + - target: {fileID: 6022192975458443585, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 78 + objectReference: {fileID: 0} + - target: {fileID: 6024326411138549010, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6024326411138549010, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6024326411138549010, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6024326411138549010, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036410560862892503, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6068258285686198984, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6068258285686198984, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6068258285686198984, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6068258285686198984, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6070672715688375963, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6070672715688375963, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6070672715688375963, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 6070672715688375963, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 6157239588574617190, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6157239588574617190, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6157239588574617190, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6157239588574617190, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6157239588574617190, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6157239588574617190, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6285433003028143097, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6285433003028143097, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6285433003028143097, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_SizeDelta.x + value: 156 + objectReference: {fileID: 0} + - target: {fileID: 6285433003028143097, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 78 + objectReference: {fileID: 0} + - target: {fileID: 6381359623842640161, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + - target: {fileID: 6498054923312733215, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8850746716107031105, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8850746716107031105, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8850746716107031105, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8850746716107031105, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9178630119099280291, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 9178630119099280291, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9178630119099280291, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9178630119099280291, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9cde343ca5e21f542982ff876a7bd479, type: 3} +--- !u!224 &1112832713 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3075981171919236425, guid: 9cde343ca5e21f542982ff876a7bd479, + type: 3} + m_PrefabInstance: {fileID: 1112832712} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1117708101 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 938252198} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: -7062350188180275213, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle (3) + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &1117708102 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 1117708101} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1120075456 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1120075457} + - component: {fileID: 1120075459} + - component: {fileID: 1120075458} + m_Layer: 5 + m_Name: Description1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1120075457 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1120075456} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1065342610} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1120075458 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1120075456} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Optimistic Display Bold + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1120075459 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1120075456} + m_CullTransparentMesh: 1 +--- !u!1 &1123904570 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1123904571} + - component: {fileID: 1123904573} + - component: {fileID: 1123904572} + m_Layer: 5 + m_Name: Description1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1123904571 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1123904570} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1389229199} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1123904572 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1123904570} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Optimistic Text Regular + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1123904573 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1123904570} + m_CullTransparentMesh: 1 +--- !u!1 &1126012451 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1126012452} + - component: {fileID: 1126012459} + - component: {fileID: 1126012458} + - component: {fileID: 1126012457} + - component: {fileID: 1126012456} + - component: {fileID: 1126012455} + - component: {fileID: 1126012454} + - component: {fileID: 1126012453} + m_Layer: 5 + m_Name: Sliders + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1126012452 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126012451} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 588656380} + - {fileID: 513656000} + - {fileID: 1399688054} + - {fileID: 2049645702} + - {fileID: 1460576353} + - {fileID: 925492961} + - {fileID: 1725505037} + - {fileID: 837128350} + - {fileID: 166852726} + m_Father: {fileID: 1930607353} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1045, y: 607.29} + m_Pivot: {x: 1, y: 0} +--- !u!114 &1126012453 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126012451} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 48 + m_Right: 48 + m_Top: 48 + m_Bottom: 48 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &1126012454 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126012451} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1918f59d4c3ccf048b0809826fa24a05, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasGroup: {fileID: 1126012456} + animationSpeed: 10 +--- !u!114 &1126012455 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126012451} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!225 &1126012456 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126012451} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!114 &1126012457 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126012451} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &1126012458 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126012451} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1126012459 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126012451} + m_CullTransparentMesh: 1 +--- !u!1 &1170653607 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1170653608} + - component: {fileID: 1170653609} + m_Layer: 5 + m_Name: Labels + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1170653608 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1170653607} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1061676486} + - {fileID: 1395239196} + - {fileID: 1179656574} + m_Father: {fileID: 405745998} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 938, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1170653609 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1170653607} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1173045073 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1173045074} + - component: {fileID: 1173045075} + m_Layer: 5 + m_Name: Dialogs-2Buttons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1173045074 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1173045073} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1778134417} + - {fileID: 105280941} + - {fileID: 282049786} + m_Father: {fileID: 2013848783} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1231.5, y: 453.5} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1173045075 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1173045073} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1179656573 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1179656574} + - component: {fileID: 1179656576} + - component: {fileID: 1179656575} + m_Layer: 5 + m_Name: Label (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1179656574 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1179656573} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1170653608} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 285, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1179656575 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1179656573} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Default with Label & Helpter Text + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1179656576 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1179656573} + m_CullTransparentMesh: 1 +--- !u!1 &1201211080 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1201211081} + - component: {fileID: 1201211082} + m_Layer: 0 + m_Name: Buttons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1201211081 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1201211080} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 312394111} + - {fileID: 1534701293} + - {fileID: 489499794} + m_Father: {fileID: 1918435865} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 920, y: 1556} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1201211082 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1201211080} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 48 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1207582722 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1207582723} + - component: {fileID: 1207582725} + - component: {fileID: 1207582724} + m_Layer: 5 + m_Name: SubTitle (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1207582723 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1207582722} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1813481664} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1207582724 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1207582722} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Toggle + + A Toggle is a switch that can be activated between + two modes, ON versus OFF.' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1207582725 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1207582722} + m_CullTransparentMesh: 1 +--- !u!1 &1217401027 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1217401028} + - component: {fileID: 1217401029} + m_Layer: 5 + m_Name: ToggleWithTextLabel (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1217401028 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1217401027} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1685825040} + - {fileID: 378755694} + - {fileID: 1355625785} + m_Father: {fileID: 1827805676} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1217401029 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1217401027} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1237781927 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1237781928} + - component: {fileID: 1237781929} + m_Layer: 5 + m_Name: ToggleWithTextLabel (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1237781928 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1237781927} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 973802597} + - {fileID: 827264654} + - {fileID: 1681056188} + m_Father: {fileID: 1827805676} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1237781929 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1237781927} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1258245238 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1258245239} + - component: {fileID: 1258245240} + m_Layer: 5 + m_Name: gap + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1258245239 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1258245238} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1041541473} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 8, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1258245240 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1258245238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1001 &1261517153 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1452319551} + m_Modifications: + - target: {fileID: 236114000944626438, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Name + value: ToggleRadioButton + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalScale.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 514801230309091118, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.b + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.g + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 2696342041578622235, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.r + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 3939185599833057855, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3939185599833057855, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3939185599833057855, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3939185599833057855, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5480313874531818496, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_IsOn + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5480313874531818496, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Group + value: + objectReference: {fileID: 191787727} + - target: {fileID: 6618407115820392869, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ecdab7d4efd5b134bb7862b57ab1188c, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9e34356aa4bacdc45805c0d16862fc4b, type: 3} +--- !u!224 &1261517154 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 495813528508125199, guid: 9e34356aa4bacdc45805c0d16862fc4b, + type: 3} + m_PrefabInstance: {fileID: 1261517153} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1266730308 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 806994213} + m_Modifications: + - target: {fileID: 243424268127923124, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Name + value: PrimaryButton_Base_IconAndLabel (4) + objectReference: {fileID: 0} + - target: {fileID: 832893625572680271, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.x + value: 58 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5140576997555375988, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 23 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 8434824762051719496, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8434824762051719496, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 401475934} + - target: {fileID: 8883482488026948429, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4ae769ba4a46d84c9e04c6914423ca2, type: 3} +--- !u!1 &1272384481 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1272384482} + - component: {fileID: 1272384483} + m_Layer: 5 + m_Name: HorizontalLayout (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1272384482 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1272384481} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1596064712} + - {fileID: 47943890} + - {fileID: 40377442} + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 36} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1272384483 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1272384481} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1279148321 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1279148322} + - component: {fileID: 1279148323} + m_Layer: 5 + m_Name: Toggle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1279148322 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1279148321} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 665863068} + - {fileID: 174531534} + m_Father: {fileID: 1862897531} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 684, y: 42} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1279148323 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1279148321} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1279496404 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1279496405} + - component: {fileID: 1279496408} + - component: {fileID: 1279496407} + - component: {fileID: 1279496406} + m_Layer: 0 + m_Name: GradientEffect + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1279496405 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1279496404} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1899630434} + 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: 0.5, y: 0.5} +--- !u!114 &1279496406 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1279496404} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 474374ac034110f43a206174b2565717, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1279496407 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1279496404} + m_CullTransparentMesh: 1 +--- !u!114 &1279496408 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1279496404} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1001 &1287140315 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 806994213} + m_Modifications: + - target: {fileID: 243424268127923124, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Name + value: PrimaryButton_Base_IconAndLabel (2) + objectReference: {fileID: 0} + - target: {fileID: 832893625572680271, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5140576997555375988, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 14 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 8434824762051719496, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8434824762051719496, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 401475934} + - target: {fileID: 8883482488026948429, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4ae769ba4a46d84c9e04c6914423ca2, type: 3} +--- !u!1001 &1302269546 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 597627715} + m_Modifications: + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483478350678274, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735817, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479493735822, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483479912025239, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Name + value: SearchBar + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080138, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1121483480015080139, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5530707485977931073, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5530707485977931073, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5530707485977931073, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5530707485977931073, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7452931228788773685, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ebffd02e23b79524e9142997edbf75a5, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5ddd833ecd00ce04f8de4e62992cab33, type: 3} +--- !u!224 &1302269547 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1121483479912025238, guid: 5ddd833ecd00ce04f8de4e62992cab33, + type: 3} + m_PrefabInstance: {fileID: 1302269546} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1315293277 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1315293278} + - component: {fileID: 1315293280} + - component: {fileID: 1315293279} + m_Layer: 5 + m_Name: SubTitle (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1315293278 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1315293277} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1378775208} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 570, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1315293279 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1315293277} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Item Text Label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1315293280 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1315293277} + m_CullTransparentMesh: 1 +--- !u!1001 &1344591229 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 854857911} + m_Modifications: + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 144 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2427108063919276275, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_text + value: Secondary + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3108657066028555256, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3159214461815610380, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_text + value: Primary + objectReference: {fileID: 0} + - target: {fileID: 3630663349553292723, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3630663349553292723, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_TagString + value: QDSUISharedThemeColor + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6769163254485925642, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 21300000, guid: 1ef0a8b2a1301b7428143dfe736f2cae, + type: 3} + - target: {fileID: 6769163254485925642, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6769163254485925642, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6769163254485925642, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9018196962972663214, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Name + value: Tooltip + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 51ba61fa774ccd14fb1f3743d17109a4, type: 3} +--- !u!224 &1344591230 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + m_PrefabInstance: {fileID: 1344591229} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1349972494 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 280844483} + m_Modifications: + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.x + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134864908159571, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Name + value: TextInputField (1) + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865006496783, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609994, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865026609997, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4455134865496526790, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6137772635375916529, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ebffd02e23b79524e9142997edbf75a5, type: 2} + - target: {fileID: 9116019988612901765, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9116019988612901765, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 9116019988612901765, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 9116019988612901765, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ac2e09824bbe6da42bff68e86401d411, type: 3} +--- !u!224 &1349972495 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4455134864908159570, guid: ac2e09824bbe6da42bff68e86401d411, + type: 3} + m_PrefabInstance: {fileID: 1349972494} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1351266288 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1351266289} + - component: {fileID: 1351266290} + m_Layer: 5 + m_Name: TypeLabels + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1351266289 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1351266288} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1919081693} + - {fileID: 202128537} + - {fileID: 43621084} + - {fileID: 104112072} + m_Father: {fileID: 312394111} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 485.9, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1351266290 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1351266288} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1352945438 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1352945439} + - component: {fileID: 1352945441} + - component: {fileID: 1352945440} + m_Layer: 5 + m_Name: Description1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1352945439 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1352945438} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 955518527} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1352945440 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1352945438} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Optimistic Display Light + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1352945441 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1352945438} + m_CullTransparentMesh: 1 +--- !u!1 &1355451494 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1355451495} + - component: {fileID: 1355451496} + m_Layer: 5 + m_Name: SecondaryButtons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1355451495 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1355451494} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1058959250} + - {fileID: 1533976519} + - {fileID: 209340591} + - {fileID: 814190433} + - {fileID: 4639668} + m_Father: {fileID: 312394111} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 493, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1355451496 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1355451494} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1001 &1355625784 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1217401028} + m_Modifications: + - target: {fileID: 746620542841046277, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Name + value: ToggleCheckboxButton (1) + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalScale.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6164804513502958587, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_IsOn + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.b + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.g + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.r + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 7418713124573716388, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ecdab7d4efd5b134bb7862b57ab1188c, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 6cd57a5c754c63047822347680b4bbd2, type: 3} +--- !u!224 &1355625785 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + m_PrefabInstance: {fileID: 1355625784} + m_PrefabAsset: {fileID: 0} +--- !u!224 &1364326032 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + m_PrefabInstance: {fileID: 374927209} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1378775207 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1378775208} + - component: {fileID: 1378775209} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1378775208 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1378775207} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1315293278} + - {fileID: 24283723} + m_Father: {fileID: 1924952622} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 600, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1378775209 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1378775207} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1384413813 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1384413814} + - component: {fileID: 1384413815} + m_Layer: 0 + m_Name: ThemeButtons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1384413814 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1384413813} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 126138277} + - {fileID: 1899630434} + m_Father: {fileID: 1918435865} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 500, y: 933.2} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1384413815 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1384413813} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 48 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1385722650 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1385722651} + - component: {fileID: 1385722653} + - component: {fileID: 1385722652} + m_Layer: 5 + m_Name: Description1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1385722651 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1385722650} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 41491508} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1385722652 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1385722650} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Optimistic Text Regular + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1385722653 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1385722650} + m_CullTransparentMesh: 1 +--- !u!1 &1387134429 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1387134430} + - component: {fileID: 1387134431} + m_Layer: 5 + m_Name: ToggleWithTextLabel (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1387134430 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1387134429} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 278213792} + - {fileID: 1461177451} + - {fileID: 108537777} + m_Father: {fileID: 1752604145} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1387134431 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1387134429} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1389229198 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1389229199} + - component: {fileID: 1389229200} + m_Layer: 5 + m_Name: HorizontalLayout (7) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1389229199 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1389229198} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1528336049} + - {fileID: 1123904571} + - {fileID: 903298947} + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1389229200 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1389229198} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1390813076 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1390813077} + - component: {fileID: 1390813078} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1390813077 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1390813076} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1006366750} + m_Father: {fileID: 1452319551} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 250, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1390813078 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1390813076} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1395239195 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1395239196} + - component: {fileID: 1395239198} + - component: {fileID: 1395239197} + m_Layer: 5 + m_Name: Label (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1395239196 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1395239195} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1170653608} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 285, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1395239197 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1395239195} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Default with Label + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1395239198 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1395239195} + m_CullTransparentMesh: 1 +--- !u!1 &1399688053 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1399688054} + - component: {fileID: 1399688057} + - component: {fileID: 1399688056} + - component: {fileID: 1399688055} + m_Layer: 5 + m_Name: HorizontalLine + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1399688054 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1399688053} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1126012452} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 940, y: 1} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1399688055 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1399688053} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1399688056 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1399688053} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1399688057 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1399688053} + m_CullTransparentMesh: 1 +--- !u!1 &1434012779 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1434012780} + - component: {fileID: 1434012781} + m_Layer: 5 + m_Name: HorizontalLayout (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1434012780 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1434012779} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1747823717} + - {fileID: 2011156770} + - {fileID: 1592457851} + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1434012781 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1434012779} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1001 &1441919488 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 806994213} + m_Modifications: + - target: {fileID: 243424268127923124, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Name + value: PrimaryButton_Base_IconAndLabel (1) + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2050538971775404920, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 44.5 + objectReference: {fileID: 0} + - target: {fileID: 4236296434230476906, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 5140576997555375988, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 6384598719118635554, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6860911344413419000, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6969549370637227510, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 7224805866608791111, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 7815598868831427402, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 36.5 + objectReference: {fileID: 0} + - target: {fileID: 7986129807089724169, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 8434824762051719496, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8434824762051719496, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 401475934} + - target: {fileID: 8883482488026948429, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4ae769ba4a46d84c9e04c6914423ca2, type: 3} +--- !u!1001 &1445517820 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1949522232} + m_Modifications: + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 945246860265842597, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_text + value: Dark Theme + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 2241387638278579712, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Name + value: TextTileButton_IconAndLabel_Regular Variant (1) + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_text + value: Quest Design System + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 6361478891070591140, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Mode + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 569455505} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_CallState + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName + value: ApplyTheme + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_TargetAssemblyTypeName + value: Oculus.Interaction.QDSUIThemeManager, Assembly-CSharp + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName + value: UnityEngine.Object, UnityEngine + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 90ae27b2ef005bc479d956c3d244f591, type: 3} +--- !u!224 &1445517821 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + m_PrefabInstance: {fileID: 1445517820} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1452319550 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1452319551} + - component: {fileID: 1452319552} + m_Layer: 5 + m_Name: ToggleWithTextLabel (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1452319551 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1452319550} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1802430620} + - {fileID: 1390813077} + - {fileID: 1261517154} + m_Father: {fileID: 1752604145} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1452319552 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1452319550} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1460576352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1460576353} + - component: {fileID: 1460576354} + m_Layer: 5 + m_Name: SmallSlider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1460576353 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1460576352} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 212246645} + - {fileID: 1029606360} + - {fileID: 286658546} + m_Father: {fileID: 1126012452} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 940, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1460576354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1460576352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1461177450 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1461177451} + - component: {fileID: 1461177452} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1461177451 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1461177450} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 465453118} + m_Father: {fileID: 1387134430} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 250, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1461177452 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1461177450} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1464520827 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1464520828} + - component: {fileID: 1464520832} + - component: {fileID: 1464520831} + - component: {fileID: 1464520830} + - component: {fileID: 1464520829} + m_Layer: 0 + m_Name: Surface + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1464520828 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1464520827} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3142955} + 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: 0.5, y: 0.5} +--- !u!114 &1464520829 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1464520827} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} + m_Name: + m_EditorClassIdentifier: + _boundsClipper: {fileID: 1464520830} +--- !u!114 &1464520830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1464520827} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} + m_Name: + m_EditorClassIdentifier: + _position: {x: 0, y: 0, z: 0} + _size: {x: 5560, y: 1797.92, z: 0.01} +--- !u!114 &1464520831 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1464520827} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} + m_Name: + m_EditorClassIdentifier: + _planeSurface: {fileID: 1464520832} + _clippers: + - {fileID: 1464520830} +--- !u!114 &1464520832 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1464520827} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} + m_Name: + m_EditorClassIdentifier: + _facing: 0 + _doubleSided: 0 +--- !u!1 &1469958420 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1469958421} + - component: {fileID: 1469958423} + - component: {fileID: 1469958422} + m_Layer: 5 + m_Name: Description1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1469958421 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1469958420} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1804946661} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 36} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1469958422 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1469958420} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Optimistic Display Bold + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1469958423 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1469958420} + m_CullTransparentMesh: 1 +--- !u!1 &1473876936 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1473876937} + - component: {fileID: 1473876939} + - component: {fileID: 1473876938} + m_Layer: 5 + m_Name: Title (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1473876937 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1473876936} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 231720578} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 684, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1473876938 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1473876936} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Context Menu + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1473876939 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1473876936} + m_CullTransparentMesh: 1 +--- !u!1 &1479084970 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1479084971} + - component: {fileID: 1479084974} + - component: {fileID: 1479084973} + - component: {fileID: 1479084972} + m_Layer: 5 + m_Name: HorizontalLine + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1479084971 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1479084970} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2013848783} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 938, y: 21} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1479084972 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1479084970} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1479084973 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1479084970} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1479084974 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1479084970} + m_CullTransparentMesh: 1 +--- !u!1 &1481351820 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1481351821} + - component: {fileID: 1481351828} + - component: {fileID: 1481351827} + - component: {fileID: 1481351826} + - component: {fileID: 1481351825} + - component: {fileID: 1481351824} + - component: {fileID: 1481351823} + - component: {fileID: 1481351822} + m_Layer: 5 + m_Name: TypeRamp + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1481351821 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1481351820} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 15114865} + - {fileID: 1104487619} + - {fileID: 796222268} + - {fileID: 379182486} + - {fileID: 1804946661} + - {fileID: 1272384482} + - {fileID: 334553633} + - {fileID: 453074807} + - {fileID: 1065342610} + - {fileID: 955518527} + - {fileID: 1434012780} + - {fileID: 1389229199} + - {fileID: 1977511354} + - {fileID: 41491508} + m_Father: {fileID: 1554214406} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 800, y: 675.8} + m_Pivot: {x: 1, y: 0} +--- !u!114 &1481351822 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1481351820} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 50 + m_Right: 50 + m_Top: 50 + m_Bottom: 50 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &1481351823 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1481351820} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1918f59d4c3ccf048b0809826fa24a05, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasGroup: {fileID: 1481351825} + animationSpeed: 10 +--- !u!114 &1481351824 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1481351820} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!225 &1481351825 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1481351820} + m_Enabled: 0 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!114 &1481351826 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1481351820} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &1481351827 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1481351820} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1481351828 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1481351820} + m_CullTransparentMesh: 1 +--- !u!1 &1496156267 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1496156268} + - component: {fileID: 1496156269} + m_Layer: 5 + m_Name: Toggle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1496156268 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1496156267} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1074918531} + - {fileID: 1827805676} + m_Father: {fileID: 1831489140} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 326, y: 42} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1496156269 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1496156267} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!224 &1511496453 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + m_PrefabInstance: {fileID: 1266730308} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1514289919 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 938252198} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 4280716520158885396, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle (6) + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &1514289920 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 1514289919} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1515530653 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1002546179} + m_Modifications: + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 93.96 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 8.134162 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 12.067081 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -29 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 40.03648 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20.01824 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3108657066028555256, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3159214461815610380, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_text + value: Primary + objectReference: {fileID: 0} + - target: {fileID: 3159214461815610380, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 3159214461815610380, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_fontColor32.rgba + value: 3875536895 + objectReference: {fileID: 0} + - target: {fileID: 3159214461815610380, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_HorizontalAlignment + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3630663349553292723, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3630663349553292723, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6252429042984861464, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 286.43484 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 143.21742 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -28 + objectReference: {fileID: 0} + - target: {fileID: 9018196962972663214, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Name + value: Tooltip (2) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 51ba61fa774ccd14fb1f3743d17109a4, type: 3} +--- !u!224 &1515530654 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + m_PrefabInstance: {fileID: 1515530653} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1523923714 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1523923715} + - component: {fileID: 1523923716} + m_Layer: 0 + m_Name: Dropdown & ContextMenu + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1523923715 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1523923714} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 231720578} + m_Father: {fileID: 1583347220} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 780, y: 920} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1523923716 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1523923714} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 48 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1528336048 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1528336049} + - component: {fileID: 1528336051} + - component: {fileID: 1528336050} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1528336049 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1528336048} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1389229199} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1528336050 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1528336048} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Body 1 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: -0.2 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1528336051 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1528336048} + m_CullTransparentMesh: 1 +--- !u!1001 &1532658158 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 938252198} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 5058579143991222378, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle (2) + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &1532658159 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 1532658158} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1533976518 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1355451495} + m_Modifications: + - target: {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 188438165202829920, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 401475934} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 1427739234993208687, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1669467483778148062, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 36.5 + objectReference: {fileID: 0} + - target: {fileID: 1821597551794952225, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2928792665249928912, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 3389334031046967562, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 3514228717131758684, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 0db508f5b99fa0843b166ffb22a8a9db, type: 2} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 5573673773750006594, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.x + value: 133 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7775193974486923344, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8427117777238694044, guid: 292035910f8781541aeb438db140bd72, + type: 3} + propertyPath: m_Name + value: SecondaryButton_Base_IconAndLabel (3) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 292035910f8781541aeb438db140bd72, type: 3} +--- !u!224 &1533976519 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 6036601228361778171, guid: 292035910f8781541aeb438db140bd72, + type: 3} + m_PrefabInstance: {fileID: 1533976518} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1534701292 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1534701293} + - component: {fileID: 1534701300} + - component: {fileID: 1534701299} + - component: {fileID: 1534701298} + - component: {fileID: 1534701297} + - component: {fileID: 1534701296} + - component: {fileID: 1534701295} + - component: {fileID: 1534701294} + m_Layer: 5 + m_Name: TileButtons + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1534701293 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1534701292} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1702198911} + - {fileID: 946691066} + - {fileID: 662638689} + - {fileID: 1809912594} + - {fileID: 960560723} + - {fileID: 915962236} + - {fileID: 46575751} + - {fileID: 990498926} + m_Father: {fileID: 1201211081} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 920, y: 606.1} + m_Pivot: {x: 1, y: 0} +--- !u!114 &1534701294 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1534701292} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 48 + m_Right: 48 + m_Top: 48 + m_Bottom: 48 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &1534701295 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1534701292} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1918f59d4c3ccf048b0809826fa24a05, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasGroup: {fileID: 1534701297} + animationSpeed: 10 +--- !u!114 &1534701296 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1534701292} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!225 &1534701297 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1534701292} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!114 &1534701298 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1534701292} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &1534701299 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1534701292} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1534701300 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1534701292} + m_CullTransparentMesh: 1 +--- !u!1001 &1535342751 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 990498926} + m_Modifications: + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 3095485336300360604, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.x + value: 176 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.y + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4102898763052618297, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Name + value: TextTileButton_IconAndLabel_Toggle (4) + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5292db714b0f87045a7dfd9be93b1be5, type: 3} +--- !u!224 &1535342752 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + m_PrefabInstance: {fileID: 1535342751} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1540153662 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 915962236} + m_Modifications: + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 176 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 945246860265842597, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 2241387638278579712, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Name + value: TextTileButton_IconAndLabel_Regular (1) + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 90ae27b2ef005bc479d956c3d244f591, type: 3} +--- !u!1 &1540173318 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1540173319} + - component: {fileID: 1540173321} + - component: {fileID: 1540173320} + m_Layer: 5 + m_Name: SubTitle (3) + m_TagString: QDSUISharedThemeColor + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1540173319 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1540173318} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2013848783} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 366.84, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1540173320 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1540173318} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 2 Buttons + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294440177 + m_fontColor: {r: 0.94509804, g: 0.95686275, b: 0.96862745, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1540173321 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1540173318} + m_CullTransparentMesh: 1 +--- !u!1001 &1540592463 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1924952622} + m_Modifications: + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.b + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.g + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.r + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 1474146498998784439, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 26f1b9b1dfdb2af4cb21f810aec35b9c, type: 2} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5684433707470414278, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1.7 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Name + value: ToggleSwitchButton + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.b + value: 0.15294118 + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.g + value: 0.15294118 + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.r + value: 0.15294118 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalScale.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &1540592464 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + m_PrefabInstance: {fileID: 1540592463} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1543092934 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1543092935} + - component: {fileID: 1543092942} + - component: {fileID: 1543092941} + - component: {fileID: 1543092940} + m_Layer: 5 + m_Name: UIBackplate + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1543092935 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1543092934} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1755519302} + - {fileID: 1786354856} + - {fileID: 1031547951} + - {fileID: 544813116} + - {fileID: 1824472235} + m_Father: {fileID: 1554214406} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 800, y: 460} + m_Pivot: {x: 1, y: 0} +--- !u!114 &1543092940 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1543092934} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &1543092941 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1543092934} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1543092942 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1543092934} + m_CullTransparentMesh: 1 +--- !u!1 &1551989147 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1551989148} + - component: {fileID: 1551989151} + - component: {fileID: 1551989150} + - component: {fileID: 1551989149} + m_Layer: 5 + m_Name: HorizontalLine + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1551989148 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1551989147} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 231720578} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 684, y: 1} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1551989149 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1551989147} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1551989150 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1551989147} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1551989151 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1551989147} + m_CullTransparentMesh: 1 +--- !u!1 &1554214405 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1554214406} + - component: {fileID: 1554214407} + m_Layer: 0 + m_Name: UIBackplate & TypeRamp + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1554214406 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1554214405} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1543092935} + - {fileID: 1481351821} + m_Father: {fileID: 1918435865} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 800, y: 1189.6} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1554214407 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1554214405} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 48 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1566920134 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1566920135} + - component: {fileID: 1566920138} + - component: {fileID: 1566920137} + - component: {fileID: 1566920136} + m_Layer: 5 + m_Name: HorizontalLine + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1566920135 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1566920134} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 690193805} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 684, y: 1} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1566920136 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1566920134} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1566920137 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1566920134} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1566920138 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1566920134} + m_CullTransparentMesh: 1 +--- !u!1 &1568316816 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1568316817} + - component: {fileID: 1568316819} + - component: {fileID: 1568316818} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1568316817 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1568316816} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 690193805} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 684, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1568316818 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1568316816} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Controls + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1568316819 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1568316816} + m_CullTransparentMesh: 1 +--- !u!1 &1576451962 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1576451963} + - component: {fileID: 1576451965} + - component: {fileID: 1576451964} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1576451963 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1576451962} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2013848783} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 366.84, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1576451964 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1576451962} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Dialog + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1576451965 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1576451962} + m_CullTransparentMesh: 1 +--- !u!1 &1583347219 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1583347220} + - component: {fileID: 1583347221} + m_Layer: 0 + m_Name: Controls & DropDown + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1583347220 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1583347219} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 690193805} + - {fileID: 1523923715} + m_Father: {fileID: 1918435865} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 780, y: 1556} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1583347221 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1583347219} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 48 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1592457850 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1592457851} + - component: {fileID: 1592457853} + - component: {fileID: 1592457852} + m_Layer: 5 + m_Name: Description2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1592457851 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1592457850} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434012780} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1592457852 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1592457850} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 14/20 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1592457853 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1592457850} + m_CullTransparentMesh: 1 +--- !u!1 &1596064711 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1596064712} + - component: {fileID: 1596064714} + - component: {fileID: 1596064713} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1596064712 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1596064711} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1272384482} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 36} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1596064713 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1596064711} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Headline 1 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 32 + m_fontSizeBase: 32 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: -0.2 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1596064714 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1596064711} + m_CullTransparentMesh: 1 +--- !u!1 &1606818754 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1606818755} + - component: {fileID: 1606818756} + m_Layer: 5 + m_Name: Dialogs-1Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1606818755 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1606818754} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 449828181} + - {fileID: 789655056} + - {fileID: 1112832713} + m_Father: {fileID: 2013848783} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1231.5, y: 425.7} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1606818756 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1606818754} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1631753606 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1631753609} + - component: {fileID: 1631753608} + - component: {fileID: 1631753607} + m_Layer: 0 + m_Name: PointableCanvasModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1631753607 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1631753606} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2518c50cb3fc6a6458d4b743c2f69c7d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + _useInitialPressPositionForDrag: 1 + _exclusiveMode: 0 +--- !u!114 &1631753608 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1631753606} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &1631753609 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1631753606} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.087, y: 0.92696327, z: 0.30910337} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1634300095 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 212177654} + m_Modifications: + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.b + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.g + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.r + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 1474146498998784439, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 26f1b9b1dfdb2af4cb21f810aec35b9c, type: 2} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5684433707470414278, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1.7 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Name + value: ToggleSwitchButton + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.b + value: 0.15294118 + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.g + value: 0.15294118 + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.r + value: 0.15294118 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalScale.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!224 &1634300096 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + m_PrefabInstance: {fileID: 1634300095} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1645682491 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1645682492} + - component: {fileID: 1645682495} + - component: {fileID: 1645682494} + - component: {fileID: 1645682493} + m_Layer: 5 + m_Name: HorizontalLine + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1645682492 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1645682491} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 489499794} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 1} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1645682493 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1645682491} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1645682494 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1645682491} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1645682495 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1645682491} + m_CullTransparentMesh: 1 +--- !u!224 &1658354550 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + m_PrefabInstance: {fileID: 2869496380756063151} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1681056187 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1237781928} + m_Modifications: + - target: {fileID: 746620542841046277, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Name + value: ToggleCheckboxButton (1) + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalScale.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6164804513502958587, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_IsOn + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.b + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.g + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.r + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 7418713124573716388, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ecdab7d4efd5b134bb7862b57ab1188c, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 6cd57a5c754c63047822347680b4bbd2, type: 3} +--- !u!224 &1681056188 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + m_PrefabInstance: {fileID: 1681056187} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1685825039 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1685825040} + - component: {fileID: 1685825041} + m_Layer: 5 + m_Name: gap (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1685825040 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1685825039} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1217401028} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 8, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1685825041 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1685825039} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &1702198910 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1702198911} + - component: {fileID: 1702198914} + - component: {fileID: 1702198913} + - component: {fileID: 1702198912} + m_Layer: 0 + m_Name: GradientEffect + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1702198911 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1702198910} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1534701293} + 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: 0.5, y: 0.5} +--- !u!114 &1702198912 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1702198910} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1702198913 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1702198910} + m_CullTransparentMesh: 1 +--- !u!114 &1702198914 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1702198910} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &1703324486 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1703324487} + - component: {fileID: 1703324488} + m_Layer: 5 + m_Name: BorderlessButtons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1703324487 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1703324486} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8930982547544701692} + - {fileID: 199760139} + - {fileID: 2004600987} + - {fileID: 120195808} + - {fileID: 461448771} + m_Father: {fileID: 312394111} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 493, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1703324488 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1703324486} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1713487614 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1713487615} + - component: {fileID: 1713487618} + - component: {fileID: 1713487617} + - component: {fileID: 1713487616} + m_Layer: 5 + m_Name: HorizontalLine + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1713487615 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1713487614} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 405745998} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 938, y: 1} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1713487616 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1713487614} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1713487617 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1713487614} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1713487618 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1713487614} + m_CullTransparentMesh: 1 +--- !u!1 &1716548287 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1716548288} + - component: {fileID: 1716548290} + - component: {fileID: 1716548289} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1716548288 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1716548287} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 955518527} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1716548289 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1716548287} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Headline 3 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 20 + m_fontSizeBase: 20 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: -0.2 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1716548290 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1716548287} + m_CullTransparentMesh: 1 +--- !u!1 &1719068300 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1719068301} + - component: {fileID: 1719068304} + - component: {fileID: 1719068303} + - component: {fileID: 1719068302} + m_Layer: 5 + m_Name: HorizontalLine + m_TagString: QDSUIIcon + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1719068301 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1719068300} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1903050958} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 940, y: 1} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1719068302 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1719068300} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 24 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1719068303 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1719068300} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9019608} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1719068304 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1719068300} + m_CullTransparentMesh: 1 +--- !u!1 &1724384818 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1724384819} + - component: {fileID: 1724384821} + - component: {fileID: 1724384820} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1724384819 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1724384818} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 405745998} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 366.84, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1724384820 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1724384818} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Text Input Field & Search Bar + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1724384821 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1724384818} + m_CullTransparentMesh: 1 +--- !u!1 &1725505036 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1725505037} + - component: {fileID: 1725505038} + m_Layer: 5 + m_Name: MediumSlider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1725505037 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1725505036} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1116793430115764116} + - {fileID: 547381032} + m_Father: {fileID: 1126012452} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 940, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1725505038 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1725505036} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1737070314 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1737070315} + - component: {fileID: 1737070317} + - component: {fileID: 1737070316} + m_Layer: 5 + m_Name: SubTitle (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1737070315 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1737070314} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 642023025} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 570, y: 14} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1737070316 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1737070314} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean dolor nunc. + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 11 + m_fontSizeBase: 11 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1737070317 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1737070314} + m_CullTransparentMesh: 1 +--- !u!1 &1747823716 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1747823717} + - component: {fileID: 1747823719} + - component: {fileID: 1747823718} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1747823717 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1747823716} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434012780} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1747823718 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1747823716} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Body 1 - Strong + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: -0.1 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1747823719 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1747823716} + m_CullTransparentMesh: 1 +--- !u!1 &1752604144 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1752604145} + - component: {fileID: 1752604149} + - component: {fileID: 1752604148} + - component: {fileID: 1752604147} + - component: {fileID: 1752604146} + m_Layer: 5 + m_Name: Section + m_TagString: QDSUISection + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1752604145 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752604144} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1452319551} + - {fileID: 1387134430} + - {fileID: 1041541473} + m_Father: {fileID: 851255842} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 330, y: 193.7} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1752604146 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752604144} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 24, y: 24, z: 24, w: 24} +--- !u!114 &1752604147 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752604144} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 0.2} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1752604148 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752604144} + m_CullTransparentMesh: 1 +--- !u!114 &1752604149 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752604144} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 24 + m_Right: 24 + m_Top: 24 + m_Bottom: 24 + m_ChildAlignment: 0 + m_Spacing: 12 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1755519301 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1755519302} + - component: {fileID: 1755519306} + - component: {fileID: 1755519305} + - component: {fileID: 1755519304} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1755519302 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1755519301} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1543092935} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0.000061035156, y: 0} + m_SizeDelta: {x: 0, y: -0.000030518} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1755519304 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1755519301} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &1755519305 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1755519301} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1755519306 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1755519301} + m_CullTransparentMesh: 1 +--- !u!1001 &1760164364 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1949522232} + m_Modifications: + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 945246860265842597, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_text + value: Custeom Theme 2 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 2241387638278579712, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Name + value: TextTileButton_IconAndLabel_Regular Variant (4) + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_text + value: Example + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: -656231238407608377, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Mode + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 569455505} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_CallState + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName + value: ApplyTheme + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_TargetAssemblyTypeName + value: Oculus.Interaction.QDSUIThemeManager, Assembly-CSharp + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_IntArgument + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName + value: UnityEngine.Object, UnityEngine + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 90ae27b2ef005bc479d956c3d244f591, type: 3} +--- !u!224 &1760164365 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + m_PrefabInstance: {fileID: 1760164364} + m_PrefabAsset: {fileID: 0} +--- !u!224 &1778134417 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + m_PrefabInstance: {fileID: 4944970038237653006} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1780135286 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1780135287} + - component: {fileID: 1780135289} + - component: {fileID: 1780135288} + m_Layer: 5 + m_Name: SubTitle (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1780135287 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1780135286} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 421899375} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1780135288 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1780135286} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Checkbox + + A checkbox is a UI input that allows users to select + one or multiple choices presented.' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1780135289 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1780135286} + m_CullTransparentMesh: 1 +--- !u!1001 &1782677176 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 854857911} + m_Modifications: + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 144 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3108657066028555256, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3159214461815610380, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_text + value: Primary + objectReference: {fileID: 0} + - target: {fileID: 3630663349553292723, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3630663349553292723, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_TagString + value: QDSUISharedThemeColor + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6769163254485925642, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 21300000, guid: 1ef0a8b2a1301b7428143dfe736f2cae, + type: 3} + - target: {fileID: 6769163254485925642, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6769163254485925642, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6769163254485925642, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 286.43484 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 143.21742 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -28 + objectReference: {fileID: 0} + - target: {fileID: 9018196962972663214, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Name + value: Tooltip (1) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 51ba61fa774ccd14fb1f3743d17109a4, type: 3} +--- !u!224 &1782677177 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + m_PrefabInstance: {fileID: 1782677176} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1786354855 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1786354856} + - component: {fileID: 1786354859} + - component: {fileID: 1786354858} + - component: {fileID: 1786354857} + m_Layer: 0 + m_Name: GradientEffect + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1786354856 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1786354855} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1543092935} + 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: 0.5, y: 0.5} +--- !u!114 &1786354857 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1786354855} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 28ed54c87b1e69c4f9268fd670606ddb, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1786354858 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1786354855} + m_CullTransparentMesh: 1 +--- !u!114 &1786354859 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1786354855} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1001 &1788547994 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 915962236} + m_Modifications: + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 176 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 945246860265842597, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 2241387638278579712, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Name + value: TextTileButton_IconAndLabel_Regular (2) + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 90ae27b2ef005bc479d956c3d244f591, type: 3} +--- !u!1 &1802430619 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1802430620} + - component: {fileID: 1802430621} + m_Layer: 5 + m_Name: gap + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1802430620 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1802430619} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1452319551} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 8, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1802430621 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1802430619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &1804946660 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1804946661} + - component: {fileID: 1804946662} + m_Layer: 5 + m_Name: HorizontalLayout + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1804946661 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1804946660} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 418305052} + - {fileID: 1469958421} + - {fileID: 161390063} + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 36} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1804946662 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1804946660} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1806306307 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1806306308} + - component: {fileID: 1806306309} + m_Layer: 5 + m_Name: ContextMenu + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1806306308 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1806306307} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4701881106497641454} + - {fileID: 7427766632388393257} + - {fileID: 2570622915694231705} + m_Father: {fileID: 231720578} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1806306309 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1806306307} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 + m_ReverseArrangement: 0 +--- !u!1 &1809912593 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1809912594} + - component: {fileID: 1809912596} + - component: {fileID: 1809912595} + m_Layer: 5 + m_Name: SubTitle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1809912594 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1809912593} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1534701293} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1809912595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1809912593} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Regular + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1809912596 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1809912593} + m_CullTransparentMesh: 1 +--- !u!1 &1813372763 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1813372764} + - component: {fileID: 1813372765} + m_Layer: 5 + m_Name: ToggleWithTextLabel (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1813372764 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1813372763} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 608949530} + - {fileID: 490296176} + - {fileID: 808993877} + m_Father: {fileID: 1827805676} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1813372765 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1813372763} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1813481663 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1813481664} + - component: {fileID: 1813481665} + m_Layer: 5 + m_Name: Toggle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1813481664 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1813481663} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1207582723} + - {fileID: 2946701086817403697} + m_Father: {fileID: 625521461} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1813481665 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1813481663} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1824202422 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1824202423} + - component: {fileID: 1824202425} + - component: {fileID: 1824202424} + m_Layer: 5 + m_Name: Label (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1824202423 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1824202422} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 960560723} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 176, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1824202424 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1824202422} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Secondary with Icon + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1824202425 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1824202422} + m_CullTransparentMesh: 1 +--- !u!1 &1824472234 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1824472235} + - component: {fileID: 1824472237} + - component: {fileID: 1824472236} + m_Layer: 5 + m_Name: SubTitle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1824472235 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1824472234} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1543092935} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 273, y: -156.53} + m_SizeDelta: {x: 450, y: 52.4} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1824472236 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1824472234} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Always use backplate for the UI to secure legibility and usability. Without + backplate, floating UI in the space could cause the depth confusion and degraded + experience for direct hand interactions. + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1824472237 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1824472234} + m_CullTransparentMesh: 1 +--- !u!1 &1827805675 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1827805676} + - component: {fileID: 1827805680} + - component: {fileID: 1827805679} + - component: {fileID: 1827805678} + - component: {fileID: 1827805677} + m_Layer: 5 + m_Name: Section + m_TagString: QDSUISection + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1827805676 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1827805675} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1813372764} + - {fileID: 1217401028} + - {fileID: 1237781928} + m_Father: {fileID: 1496156268} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 330, y: 193.7} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1827805677 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1827805675} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 24, y: 24, z: 24, w: 24} +--- !u!114 &1827805678 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1827805675} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 0.2} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1827805679 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1827805675} + m_CullTransparentMesh: 1 +--- !u!114 &1827805680 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1827805675} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 24 + m_Right: 24 + m_Top: 24 + m_Bottom: 24 + m_ChildAlignment: 0 + m_Spacing: 12 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1831489139 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1831489140} + - component: {fileID: 1831489141} + m_Layer: 5 + m_Name: HorizontalLayout (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1831489140 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1831489139} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1496156268} + - {fileID: 851255842} + m_Father: {fileID: 690193805} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 684, y: 260} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1831489141 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1831489139} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 30 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 + m_ReverseArrangement: 0 +--- !u!1 &1833811922 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1833811923} + - component: {fileID: 1833811925} + - component: {fileID: 1833811924} + m_Layer: 5 + m_Name: Description1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1833811923 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1833811922} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 334553633} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1833811924 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1833811922} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Optimistic Display Bold + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1833811925 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1833811922} + m_CullTransparentMesh: 1 +--- !u!1001 &1842045355 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1949522232} + m_Modifications: + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 945246860265842597, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_text + value: Light Theme + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 2241387638278579712, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Name + value: TextTileButton_IconAndLabel_Regular Variant (2) + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_text + value: Quest Design System + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: -2036684889620811239, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Mode + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 569455505} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_CallState + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName + value: ApplyTheme + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_TargetAssemblyTypeName + value: Oculus.Interaction.QDSUIThemeManager, Assembly-CSharp + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_IntArgument + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6225694070640939218, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName + value: UnityEngine.Object, UnityEngine + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 90ae27b2ef005bc479d956c3d244f591, type: 3} +--- !u!224 &1842045356 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + m_PrefabInstance: {fileID: 1842045355} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1862897530 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1862897531} + - component: {fileID: 1862897532} + m_Layer: 5 + m_Name: ToggleWithTextLabel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1862897531 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1862897530} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1279148322} + m_Father: {fileID: 690193805} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 684, y: 260} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1862897532 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1862897530} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 + m_ReverseArrangement: 0 +--- !u!1001 &1872618424 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 854948235} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: -7550713685352905977, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle (1) + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &1872618425 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 1872618424} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1878992230 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 854948235} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: -9118115323076545045, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle (2) + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &1878992231 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 1878992230} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1898795999 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 854948235} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 1441512811044900165, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle (6) + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &1898796000 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 1898795999} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1899630433 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1899630434} + - component: {fileID: 1899630441} + - component: {fileID: 1899630440} + - component: {fileID: 1899630439} + - component: {fileID: 1899630438} + - component: {fileID: 1899630437} + - component: {fileID: 1899630436} + - component: {fileID: 1899630435} + m_Layer: 5 + m_Name: Themes + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1899630434 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1899630433} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1279496405} + - {fileID: 576163657} + - {fileID: 1949522232} + m_Father: {fileID: 1384413814} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 490, y: 370.3} + m_Pivot: {x: 1, y: 0} +--- !u!114 &1899630435 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1899630433} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 50 + m_Right: 50 + m_Top: 50 + m_Bottom: 50 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &1899630436 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1899630433} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1918f59d4c3ccf048b0809826fa24a05, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasGroup: {fileID: 1899630438} + animationSpeed: 10 +--- !u!114 &1899630437 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1899630433} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!225 &1899630438 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1899630433} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!114 &1899630439 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1899630433} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &1899630440 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1899630433} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1899630441 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1899630433} + m_CullTransparentMesh: 1 +--- !u!1 &1903050957 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1903050958} + - component: {fileID: 1903050965} + - component: {fileID: 1903050964} + - component: {fileID: 1903050963} + - component: {fileID: 1903050962} + - component: {fileID: 1903050961} + - component: {fileID: 1903050960} + - component: {fileID: 1903050959} + m_Layer: 5 + m_Name: Tooltip + m_TagString: QDSUIBackplateGradient + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1903050958 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903050957} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 148782358} + - {fileID: 2138110073} + - {fileID: 1719068301} + - {fileID: 1002546179} + - {fileID: 854857911} + m_Father: {fileID: 1930607353} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1045, y: 380.4} + m_Pivot: {x: 1, y: 0} +--- !u!114 &1903050959 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903050957} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 48 + m_Right: 48 + m_Top: 48 + m_Bottom: 48 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &1903050960 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903050957} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1918f59d4c3ccf048b0809826fa24a05, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasGroup: {fileID: 1903050962} + animationSpeed: 10 +--- !u!114 &1903050961 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903050957} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!225 &1903050962 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903050957} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!114 &1903050963 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903050957} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &1903050964 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903050957} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: d6e192b5359c267428b5fe9a29ea1010, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1903050965 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903050957} + m_CullTransparentMesh: 1 +--- !u!1001 &1908905056 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 938252198} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 2752130559719437709, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle (5) + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &1908905057 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 1908905056} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1914610232 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1914610233} + - component: {fileID: 1914610235} + - component: {fileID: 1914610234} + m_Layer: 5 + m_Name: SubTitle (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1914610233 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914610232} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 191787725} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1914610234 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914610232} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Radio + + Radios are used when there are multiple choices present, + but users are only to select one option.' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1914610235 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1914610232} + m_CullTransparentMesh: 1 +--- !u!1001 &1917694249 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 990498926} + m_Modifications: + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390698397941270696, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2120627734229879182, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 3095485336300360604, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.x + value: 176 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.y + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4102898763052618297, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Name + value: TextTileButton_IconAndLabel_Toggle (3) + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4175696766735012151, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4176905736460644474, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5282856578032898388, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6049201970082305031, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7337424845847758855, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7542354360110892547, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8954988982350238499, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5292db714b0f87045a7dfd9be93b1be5, type: 3} +--- !u!224 &1917694250 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3315583781552747177, guid: 5292db714b0f87045a7dfd9be93b1be5, + type: 3} + m_PrefabInstance: {fileID: 1917694249} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1918435864 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1918435865} + - component: {fileID: 1918435874} + - component: {fileID: 1918435873} + - component: {fileID: 1918435872} + - component: {fileID: 1918435871} + - component: {fileID: 1918435875} + m_Layer: 0 + m_Name: CanvasRoot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1918435865 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1918435864} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.0005, y: 0.0005, z: 0.0005} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1384413814} + - {fileID: 1554214406} + - {fileID: 1201211081} + - {fileID: 1583347220} + - {fileID: 1930607353} + - {fileID: 2013848783} + - {fileID: 3142955} + m_Father: {fileID: 569455504} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5560, y: 1797.92} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1918435871 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1918435864} + m_CullTransparentMesh: 1 +--- !u!114 &1918435872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1918435864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1918435873 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1918435864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1918435874 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1918435864} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &1918435875 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1918435864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 50 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1919081692 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1919081693} + - component: {fileID: 1919081695} + - component: {fileID: 1919081694} + m_Layer: 5 + m_Name: Label (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1919081693 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919081692} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1351266289} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 101, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1919081694 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919081692} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Label Only + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1919081695 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919081692} + m_CullTransparentMesh: 1 +--- !u!224 &1924892552 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + m_PrefabInstance: {fileID: 600515697} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1924952621 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1924952622} + - component: {fileID: 1924952623} + m_Layer: 5 + m_Name: ToggleWithTextLabel (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1924952622 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1924952621} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1378775208} + - {fileID: 1540592464} + m_Father: {fileID: 174531534} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 640, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1924952623 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1924952621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1930607352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1930607353} + - component: {fileID: 1930607354} + m_Layer: 0 + m_Name: Sliders & TextField & Tooltip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1930607353 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1930607352} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1126012452} + - {fileID: 405745998} + - {fileID: 1903050958} + m_Father: {fileID: 1918435865} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1045, y: 1556} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1930607354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1930607352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 48 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1001 &1931678770 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 317148316} + m_Modifications: + - target: {fileID: 1138826379836372426, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 82f7789f637969447a23aee527ff3bf4, type: 2} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 23 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.b + value: 0.20784314 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.g + value: 0.08235294 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.r + value: 0.8666667 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 3734446462299757043, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4437619491075673078, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4437619491075673078, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 401475934} + - target: {fileID: 4833518343352408305, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5475183150643663114, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Name + value: DestructiveButton_Base_IconAndLabel (3) + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.x + value: 58 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1afe17518a14213478afccad59687b1c, type: 3} +--- !u!224 &1931678771 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + m_PrefabInstance: {fileID: 1931678770} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1938735053 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1938735054} + - component: {fileID: 1938735056} + - component: {fileID: 1938735055} + m_Layer: 5 + m_Name: SectionTitleLabel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1938735054 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1938735053} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 312394111} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 824, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1938735055 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1938735053} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Buttons + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1938735056 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1938735053} + m_CullTransparentMesh: 1 +--- !u!1 &1949522231 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1949522232} + - component: {fileID: 1949522233} + m_Layer: 5 + m_Name: ThemeSwitchButtons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1949522232 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1949522231} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1445517821} + - {fileID: 1842045356} + - {fileID: 305367849} + - {fileID: 1760164365} + m_Father: {fileID: 1899630434} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 390, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1949522233 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1949522231} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8a8695521f0d02e499659fee002a26c2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_StartCorner: 0 + m_StartAxis: 0 + m_CellSize: {x: 188, y: 100} + m_Spacing: {x: 12, y: 12} + m_Constraint: 0 + m_ConstraintCount: 2 +--- !u!1001 &1972171512 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 854948235} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 4468268698081377793, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle (5) + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!224 &1972171513 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 1972171512} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1977511353 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1977511354} + - component: {fileID: 1977511355} + m_Layer: 5 + m_Name: HorizontalLayout (8) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1977511354 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1977511353} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1057777392} + - {fileID: 959908176} + - {fileID: 673624051} + m_Father: {fileID: 1481351821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 450, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1977511355 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1977511353} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1001 &2004600986 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1703324487} + m_Modifications: + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 14 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 896653445605316475, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 896653445605316475, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 896653445605316475, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 1693676676542734784, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3143409444471918073, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 9ad1b5a33a872764481c5a891d3db009, type: 2} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 7441729862378463426, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8046116837390756153, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Name + value: Borderless_Base_IconAndLabel (1) + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c8e2992a313c49d449f074c59c12f6ad, type: 3} +--- !u!224 &2004600987 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + m_PrefabInstance: {fileID: 2004600986} + m_PrefabAsset: {fileID: 0} +--- !u!1 &2011156769 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2011156770} + - component: {fileID: 2011156772} + - component: {fileID: 2011156771} + m_Layer: 5 + m_Name: Description1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2011156770 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2011156769} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1434012780} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2011156771 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2011156769} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Optimistic Text Bold + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: -1.1837502} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &2011156772 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2011156769} + m_CullTransparentMesh: 1 +--- !u!1 &2013848782 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2013848783} + - component: {fileID: 2013848790} + - component: {fileID: 2013848789} + - component: {fileID: 2013848788} + - component: {fileID: 2013848787} + - component: {fileID: 2013848786} + - component: {fileID: 2013848785} + - component: {fileID: 2013848784} + m_Layer: 5 + m_Name: Dialogs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2013848783 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2013848782} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1576451963} + - {fileID: 1479084971} + - {fileID: 625867198} + - {fileID: 1606818755} + - {fileID: 1540173319} + - {fileID: 1173045074} + m_Father: {fileID: 1918435865} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1255.4, y: 1556} + m_Pivot: {x: 1, y: 0} +--- !u!114 &2013848784 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2013848782} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 50 + m_Right: 50 + m_Top: 50 + m_Bottom: 50 + m_ChildAlignment: 0 + m_Spacing: 20 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &2013848785 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2013848782} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1918f59d4c3ccf048b0809826fa24a05, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasGroup: {fileID: 2013848787} + animationSpeed: 10 +--- !u!114 &2013848786 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2013848782} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!225 &2013848787 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2013848782} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!114 &2013848788 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2013848782} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} + m_Name: + m_EditorClassIdentifier: + borderRadius: {x: 20, y: 20, z: 20, w: 20} +--- !u!114 &2013848789 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2013848782} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 2c59325cff8447d47899d7e518a87833, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2013848790 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2013848782} + m_CullTransparentMesh: 1 +--- !u!1 &2015158836 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2015158837} + - component: {fileID: 2015158839} + - component: {fileID: 2015158838} + m_Layer: 5 + m_Name: Label (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2015158837 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2015158836} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 960560723} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 176, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2015158838 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2015158836} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Primary + Secondary + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 12 + m_fontSizeBase: 12 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &2015158839 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2015158836} + m_CullTransparentMesh: 1 +--- !u!1 &2020306022 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2020306023} + - component: {fileID: 2020306024} + m_Layer: 5 + m_Name: DropDowns + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2020306023 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2020306022} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 846531334} + - {fileID: 3108213353758807528} + - {fileID: 1584670121352972803} + m_Father: {fileID: 231720578} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 270} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2020306024 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2020306022} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 40 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 + m_ReverseArrangement: 0 +--- !u!1001 &2023324097 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 317148316} + m_Modifications: + - target: {fileID: 1138826379836372426, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 82f7789f637969447a23aee527ff3bf4, type: 2} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 14 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.b + value: 0.20784314 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.g + value: 0.08235294 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.r + value: 0.8666667 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 28 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 3734446462299757043, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4437619491075673078, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4437619491075673078, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 401475934} + - target: {fileID: 4833518343352408305, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5475183150643663114, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Name + value: DestructiveButton_Base_IconAndLabel (1) + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 76.5 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1afe17518a14213478afccad59687b1c, type: 3} +--- !u!224 &2023324098 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + m_PrefabInstance: {fileID: 2023324097} + m_PrefabAsset: {fileID: 0} +--- !u!1 &2049645701 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2049645702} + - component: {fileID: 2049645704} + - component: {fileID: 2049645703} + m_Layer: 5 + m_Name: SubTitle (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2049645702 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2049645701} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1126012452} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 940, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2049645703 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2049645701} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Small Slider + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 18 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &2049645704 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2049645701} + m_CullTransparentMesh: 1 +--- !u!224 &2061983118 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 2618178220456456403, guid: f4ae769ba4a46d84c9e04c6914423ca2, + type: 3} + m_PrefabInstance: {fileID: 1441919488} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2090945902 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1002546179} + m_Modifications: + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955068917548452741, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 108.48 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.y + value: 60 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1874212172928230422, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 2272291663957092419, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -20 + objectReference: {fileID: 0} + - target: {fileID: 2427108063919276275, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_text + value: Secondary + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2510877884184853962, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2784678134172365884, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Spacing + value: -4 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2860294908353334170, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3108657066028555256, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3159214461815610380, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_text + value: Primary + objectReference: {fileID: 0} + - target: {fileID: 3630663349553292723, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3630663349553292723, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3838439838317796092, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4601743545924883508, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.a + value: 0.5019608 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Color.r + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5004883617423079284, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5894126094677489251, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6252429042984861464, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8179337242119085403, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8268011465211281420, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9018196962972663214, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + propertyPath: m_Name + value: Tooltip + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 51ba61fa774ccd14fb1f3743d17109a4, type: 3} +--- !u!224 &2090945903 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1858395827515682820, guid: 51ba61fa774ccd14fb1f3743d17109a4, + type: 3} + m_PrefabInstance: {fileID: 2090945902} + m_PrefabAsset: {fileID: 0} +--- !u!1 &2138110072 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2138110073} + - component: {fileID: 2138110075} + - component: {fileID: 2138110074} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2138110073 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2138110072} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1903050958} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 366.84, y: 41.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2138110074 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2138110072} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Tooltip + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 3875536895 + m_fontColor: {r: 1, g: 1, b: 1, a: 0.9019608} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 42 + m_fontSizeBase: 42 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &2138110075 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2138110072} + m_CullTransparentMesh: 1 +--- !u!1001 &831600529147948846 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 421899375} + m_Modifications: + - target: {fileID: 746620542841046277, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Name + value: ToggleCheckboxButton + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalScale.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2142041059732342866, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6164804513502958587, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_IsOn + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.b + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.g + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 6694221663941984073, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Color.r + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 7418713124573716388, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: ecdab7d4efd5b134bb7862b57ab1188c, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 6cd57a5c754c63047822347680b4bbd2, type: 3} +--- !u!224 &1116793430115764116 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + m_PrefabInstance: {fileID: 3880423196520239905} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1411649477722590960 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1606818755} + m_Modifications: + - target: {fileID: 1169263148682499538, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1169263148682499538, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1169263148682499538, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1169263148682499538, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1169263148682499538, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1255411172774442197, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1255411172774442197, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1255411172774442197, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1255411172774442197, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2890000134136983161, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2890000134136983161, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2890000134136983161, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2890000134136983161, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2896105198602318834, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_Name + value: Dialog1Button_IconAndText + objectReference: {fileID: 0} + - target: {fileID: 3054996820961088980, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3054996820961088980, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3054996820961088980, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3054996820961088980, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3386418092280728615, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3386418092280728615, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3386418092280728615, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3386418092280728615, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3478105553159553354, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3478105553159553354, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3478105553159553354, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3478105553159553354, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3928455945535332032, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3928455945535332032, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3928455945535332032, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 154 + objectReference: {fileID: 0} + - target: {fileID: 3928455945535332032, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_Pivot.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_Pivot.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_SizeDelta.x + value: 368 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 756 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -251.6 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4118325446768938422, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5411087580416266718, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + - target: {fileID: 6014608375954668370, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6014608375954668370, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6014608375954668370, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6014608375954668370, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6112601038182853768, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6112601038182853768, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6112601038182853768, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 6112601038182853768, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 6126434949209653596, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6126434949209653596, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6126434949209653596, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6126434949209653596, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6188362402207152653, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6188362402207152653, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6188362402207152653, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6188362402207152653, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6201598740688941021, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6201598740688941021, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6201598740688941021, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6201598740688941021, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7851503471064337244, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7851503471064337244, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7851503471064337244, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7851503471064337244, guid: d1fbb9de4e73aff46a9f589420c2ad34, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d1fbb9de4e73aff46a9f589420c2ad34, type: 3} +--- !u!1001 &1584670121352972802 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 2020306023} + m_Modifications: + - target: {fileID: 432194488499236491, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 432194488499236491, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 432194488499236491, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 432194488499236491, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 521608773210621689, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 521608773210621689, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 521608773210621689, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 521608773210621689, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 774326457955128407, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 774326457955128407, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 774326457955128407, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1091280833212796904, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1091280833212796904, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1091280833212796904, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1091280833212796904, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1277606346344120145, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1277606346344120145, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1277606346344120145, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1277606346344120145, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1972731160208842290, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1972731160208842290, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1972731160208842290, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1972731160208842290, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2041855126046419109, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2041855126046419109, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2041855126046419109, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2041855126046419109, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2041855126046419109, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 2422764189907416881, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2422764189907416881, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2422764189907416881, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2548252077271113539, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2548252077271113539, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2548252077271113539, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2548252077271113539, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2579850041761302001, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2579850041761302001, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2837034783756666044, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Name + value: DropDown1LineTextOnly + objectReference: {fileID: 0} + - target: {fileID: 3117924207032292946, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3117924207032292946, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3117924207032292946, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3377383502143884781, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3377383502143884781, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3377383502143884781, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3377383502143884781, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3477089488176053588, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3477089488176053588, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3477089488176053588, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3477089488176053588, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3996863947086187459, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 3996863947086187459, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3996863947086187459, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3996863947086187459, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3996863947086187459, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 4444421915889953440, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4444421915889953440, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4444421915889953440, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4444421915889953440, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4444421915889953440, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 4450347884500627450, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4450347884500627450, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4450347884500627450, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4450347884500627450, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4663884761219707020, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4663884761219707020, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4663884761219707020, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4687625296869879051, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4687625296869879051, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4687625296869879051, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4687625296869879051, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5352563368107479875, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5352563368107479875, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5352563368107479875, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5352563368107479875, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5516381756077916069, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5516381756077916069, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5516381756077916069, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5516381756077916069, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5999435464490599155, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 6149536864156621428, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6149536864156621428, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 6149536864156621428, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 6149536864156621428, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 6827900555927457885, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 6885440366981298967, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 6885440366981298967, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 6885440366981298967, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_SizeDelta.x + value: 200 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_SizeDelta.y + value: 444 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7008322568377725577, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7008322568377725577, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7008322568377725577, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7471340960108371139, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7471340960108371139, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7471340960108371139, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7471340960108371139, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7753198017237636074, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7753198017237636074, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7753198017237636074, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7887489317279530400, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7887489317279530400, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7887489317279530400, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7887489317279530400, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8266819463489093878, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 8407210560581785713, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 8407210560581785713, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 8407210560581785713, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 8675006257368277397, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 8732405820593769183, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8732405820593769183, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 8732405820593769183, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 8732405820593769183, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 489d4be4aa493224a81def86c2f706b4, type: 3} +--- !u!224 &1584670121352972803 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 6995516718860365794, guid: 489d4be4aa493224a81def86c2f706b4, + type: 3} + m_PrefabInstance: {fileID: 1584670121352972802} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2039794939398471903 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 317148316} + m_Modifications: + - target: {fileID: 1138826379836372426, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 82f7789f637969447a23aee527ff3bf4, type: 2} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 1153402752191318172, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1706241386746814278, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2660931145084756468, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 36.5 + objectReference: {fileID: 0} + - target: {fileID: 2760563340199940535, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.b + value: 0.20784314 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.g + value: 0.08235294 + objectReference: {fileID: 0} + - target: {fileID: 2892370056225337160, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Color.r + value: 0.8666667 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 3231536881615811833, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 3734446462299757043, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4437619491075673078, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4437619491075673078, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 401475934} + - target: {fileID: 5475183150643663114, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Name + value: DestructiveButton_Base_IconAndLabel + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6120366951445049798, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 44.5 + objectReference: {fileID: 0} + - target: {fileID: 8237446752394246868, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1afe17518a14213478afccad59687b1c, type: 3} +--- !u!224 &2039794939398471904 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 7840397774482836077, guid: 1afe17518a14213478afccad59687b1c, + type: 3} + m_PrefabInstance: {fileID: 2039794939398471903} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2570622915694231704 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1806306308} + m_Modifications: + - target: {fileID: 251915540917604817, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 251915540917604817, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 251915540917604817, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 251915540917604817, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 308592487513089862, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 308592487513089862, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 308592487513089862, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 308592487513089862, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 308592487513089862, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 1049940701223437861, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1049940701223437861, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1049940701223437861, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1049940701223437861, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1049940701223437861, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 1080070597723227007, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1080070597723227007, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1080070597723227007, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1080070597723227007, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1221203787423983988, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1221203787423983988, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1342216312038284212, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1342216312038284212, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1342216312038284212, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1468399655226140729, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Name + value: ContextMenu1LineTextOnly + objectReference: {fileID: 0} + - target: {fileID: 1763992846734555863, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1763992846734555863, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1763992846734555863, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2153004058330014056, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2153004058330014056, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2153004058330014056, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2153004058330014056, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2487422535311889364, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2487422535311889364, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2487422535311889364, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2487422535311889364, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2909163902109921975, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2909163902109921975, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2909163902109921975, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2909163902109921975, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3416474844827452448, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 3416474844827452448, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3416474844827452448, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3416474844827452448, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3416474844827452448, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 3747770889593383548, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 3747770889593383548, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3747770889593383548, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3747770889593383548, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3945319535716975118, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3945319535716975118, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3945319535716975118, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3945319535716975118, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4143615541177432274, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4143615541177432274, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4143615541177432274, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4331024185710502765, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4331024185710502765, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4331024185710502765, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4331024185710502765, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4721537326381837427, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 4935069960895879333, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4935069960895879333, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4935069960895879333, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4935069960895879333, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5157616460575732980, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 5157616460575732980, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 5157616460575732980, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 5336868353111402074, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5336868353111402074, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5336868353111402074, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5336868353111402074, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5430269764600270096, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_SizeDelta.x + value: 200 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_SizeDelta.y + value: 444 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5944031949116988940, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5944031949116988940, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5944031949116988940, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6093485378007003206, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6093485378007003206, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6093485378007003206, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6093485378007003206, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6388080277105114991, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6388080277105114991, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6388080277105114991, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6794273845387940133, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6794273845387940133, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6794273845387940133, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6794273845387940133, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6892206356898071268, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Group + value: + objectReference: {fileID: 231720586} + - target: {fileID: 6952897477110853238, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 7379265209204520689, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7379265209204520689, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 7379265209204520689, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 7379265209204520689, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 7832355852240492434, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 7832355852240492434, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 7832355852240492434, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 7925898628249337048, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 8324503504192969737, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8324503504192969737, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8324503504192969737, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9201415154506994464, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9201415154506994464, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9201415154506994464, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9201415154506994464, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7c4ef00a644a9ed41a7a0248b8444b82, type: 3} +--- !u!224 &2570622915694231705 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 5920809411794387815, guid: 7c4ef00a644a9ed41a7a0248b8444b82, + type: 3} + m_PrefabInstance: {fileID: 2570622915694231704} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2869496380756063151 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 915962236} + m_Modifications: + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 176 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 713890223910586000, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 945246860265842597, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2168589410429510926, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 2169669742819329091, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 2241387638278579712, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Name + value: TextTileButton_IconAndLabel_Regular + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2488067952423042193, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 4217222142677417399, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4771752389567740990, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5710773054094225978, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6606197401259222810, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 7978993776785057133, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8365572260466434110, guid: 90ae27b2ef005bc479d956c3d244f591, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 90ae27b2ef005bc479d956c3d244f591, type: 3} +--- !u!224 &2946701086817403697 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + m_PrefabInstance: {fileID: 9001143955600884404} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3020047765714007704 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1606818755} + m_Modifications: + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_Pivot.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_Pivot.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_SizeDelta.x + value: 368 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 368 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -203.6 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 241305303253945989, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 737117385183478393, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 737117385183478393, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 737117385183478393, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 737117385183478393, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 935305165792370163, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 935305165792370163, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 935305165792370163, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 154 + objectReference: {fileID: 0} + - target: {fileID: 935305165792370163, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 1160791420975879911, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1160791420975879911, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1160791420975879911, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1160791420975879911, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1319408030103220417, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_Name + value: Dialog1Button_TextOnly + objectReference: {fileID: 0} + - target: {fileID: 1325506377238654282, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1325506377238654282, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1325506377238654282, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1325506377238654282, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3045696043203106529, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3045696043203106529, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3045696043203106529, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3045696043203106529, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3045696043203106529, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4082414051287832029, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4082414051287832029, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4082414051287832029, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4082414051287832029, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6235328273489496175, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6235328273489496175, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6235328273489496175, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6235328273489496175, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7567838181553223777, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7567838181553223777, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7567838181553223777, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7567838181553223777, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7813450666730712302, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7813450666730712302, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7813450666730712302, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7813450666730712302, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7974221873738248123, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7974221873738248123, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7974221873738248123, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 7974221873738248123, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 8043156362340038974, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8043156362340038974, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8043156362340038974, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8043156362340038974, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8171352395058418413, guid: ee824579eadf66544a0c3913fec1debf, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ee824579eadf66544a0c3913fec1debf, type: 3} +--- !u!1001 &3040925348671477293 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 938252198} + m_Modifications: + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 365009612483054543, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 466049075092810254, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 955142278428667687, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Sprite + value: + objectReference: {fileID: 1444864754923434933, guid: 64f884351318b694f942625580e64a8b, + type: 3} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1861521771991926428, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2619623826102846371, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_TagString + value: QDSUIIcon + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontAsset + value: + objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_sharedMaterial + value: + objectReference: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + - target: {fileID: 5614022670084783633, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6299816011748658447, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6454634035808976204, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6955941791144292522, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7730992381216224886, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7922623383524267024, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Name + value: ButtonShelf_IconAndLabel_Toggle + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_SizeDelta.y + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 040567cd4431b484e9999e28a102d366, type: 3} +--- !u!1001 &3108213353758807527 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 2020306023} + m_Modifications: + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_SizeDelta.x + value: 200 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_SizeDelta.y + value: 444 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 234341902902564267, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 234341902902564267, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 234341902902564267, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 409147527324711905, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 409147527324711905, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 409147527324711905, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 409147527324711905, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 692138180954600648, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 692138180954600648, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 692138180954600648, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1114607063966456450, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1114607063966456450, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1114607063966456450, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1114607063966456450, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1205759662074587092, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 1320978976962520290, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1320978976962520290, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1320978976962520290, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1320978976962520290, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1531539243932422914, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1531539243932422914, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1531539243932422914, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1531539243932422914, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1634373391498428243, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 1634373391498428243, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 1634373391498428243, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 1784212110297907628, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1784212110297907628, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1784212110297907628, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1784212110297907628, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1901025625742034615, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 1958397701166296573, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1958397701166296573, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1958397701166296573, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1958397701166296573, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 2294261597854791244, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2294261597854791244, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2294261597854791244, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2294261597854791244, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2502716048426751918, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2502716048426751918, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2502716048426751918, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2526474145721387561, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2526474145721387561, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2526474145721387561, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2526474145721387561, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2903199432934585441, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2903199432934585441, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2903199432934585441, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2903199432934585441, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3354059655633885319, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3354059655633885319, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3354059655633885319, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3354059655633885319, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3548935747227166161, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 3724174685383321319, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3724174685383321319, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3724174685383321319, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3724174685383321319, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3738934955773534922, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3738934955773534922, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3738934955773534922, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3738934955773534922, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3987259847959084374, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3987259847959084374, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 3987259847959084374, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 3987259847959084374, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 4123372230306137001, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4123372230306137001, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4123372230306137001, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4123372230306137001, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4140102866426775428, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4140102866426775428, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4140102866426775428, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4140102866426775428, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4378501487924443007, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 4436013811244260405, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 4436013811244260405, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 4436013811244260405, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 4710529114906015841, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4710529114906015841, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4710529114906015841, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4710529114906015841, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4742127092849402579, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4742127092849402579, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4872190797183258643, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4872190797183258643, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4872190797183258643, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4872190797183258643, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4998204609446060958, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Name + value: DropDownIconAnd1LineText + objectReference: {fileID: 0} + - target: {fileID: 5280201240410501488, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5280201240410501488, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5280201240410501488, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5280201240410501488, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5538579681742416591, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5538579681742416591, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5538579681742416591, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5538579681742416591, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5927589166757223030, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5927589166757223030, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5927589166757223030, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5927589166757223030, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6158015068179901665, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6158015068179901665, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6158015068179901665, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6158015068179901665, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6158015068179901665, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6894974375337528706, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6894974375337528706, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6894974375337528706, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6894974375337528706, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6894974375337528706, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6899746991147632856, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6899746991147632856, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6899746991147632856, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6899746991147632856, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7295616909818241499, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7295616909818241499, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7295616909818241499, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7295616909818241499, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7493262033725295017, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7493262033725295017, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7493262033725295017, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7493262033725295017, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7547163575499158389, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7547163575499158389, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7547163575499158389, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7547163575499158389, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7865288965495564490, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7865288965495564490, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7865288965495564490, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7865288965495564490, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8338666177817401459, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8338666177817401459, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8338666177817401459, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8338666177817401459, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8746711821889141008, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8746711821889141008, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8746711821889141008, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8746711821889141008, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9102967738366709639, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 9102967738366709639, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9102967738366709639, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9102967738366709639, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9102967738366709639, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: baff30a35e969d445a7525cace3be1e4, type: 3} +--- !u!224 &3108213353758807528 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 222661974214084800, guid: baff30a35e969d445a7525cace3be1e4, + type: 3} + m_PrefabInstance: {fileID: 3108213353758807527} + m_PrefabAsset: {fileID: 0} +--- !u!224 &3315583780632021009 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8743731163281776065, guid: 040567cd4431b484e9999e28a102d366, + type: 3} + m_PrefabInstance: {fileID: 3040925348671477293} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3880423196520239905 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1725505037} + m_Modifications: + - target: {fileID: 85922540874757237, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 85922540874757237, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 85922540874757237, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 85922540874757237, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 85922540874757237, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 85922540874757237, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309375099279364401, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309375099279364401, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309375099279364401, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309375099279364401, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309375099279364401, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3309375099279364401, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.x + value: 403.8 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4225975017290863797, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4245258490321066056, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_Name + value: MediumSliderWithLabelsAndIcons + objectReference: {fileID: 0} + - target: {fileID: 4406723965808048788, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_Color.a + value: 0.1 + objectReference: {fileID: 0} + - target: {fileID: 5332214698608179540, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5332214698608179540, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5332214698608179540, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5332214698608179540, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5332214698608179540, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5332214698608179540, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8479282770161578608, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8479282770161578608, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8479282770161578608, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8479282770161578608, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8479282770161578608, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8964328924006573941, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_Value + value: 0.594 + objectReference: {fileID: 0} + - target: {fileID: 9011399698155074202, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9011399698155074202, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9011399698155074202, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9020577478518400582, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9020577478518400582, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9020577478518400582, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9020577478518400582, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9020577478518400582, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9106171266705950780, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9106171266705950780, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9106171266705950780, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, + type: 3} + propertyPath: m_AnchoredPosition.x + value: -12.820015 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 21c4ef6c5c33bfd4f90f7b2201d9c029, type: 3} +--- !u!1001 &4701881106497641453 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1806306308} + m_Modifications: + - target: {fileID: 68400269154230958, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 68400269154230958, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 68400269154230958, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 68400269154230958, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 389832139253217553, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 389832139253217553, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 389832139253217553, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 389832139253217553, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 611189739970588941, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 611189739970588941, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 732245145538069453, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 732245145538069453, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 732245145538069453, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 732245145538069453, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 930338842576465984, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Name + value: ContextMenuIconAnd2LineText + objectReference: {fileID: 0} + - target: {fileID: 1593100032975707740, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 1593100032975707740, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1593100032975707740, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1593100032975707740, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1593100032975707740, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 1618157821602880262, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1618157821602880262, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1618157821602880262, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1618157821602880262, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2015092908343986600, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2015092908343986600, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2015092908343986600, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2015092908343986600, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2072113982014603071, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2072113982014603071, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2072113982014603071, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2072113982014603071, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2072113982014603071, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 2380403000836415659, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2380403000836415659, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2380403000836415659, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2380403000836415659, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2635472229393873684, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2635472229393873684, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2635472229393873684, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2635472229393873684, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3209718873088111109, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 3209718873088111109, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3209718873088111109, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3209718873088111109, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3335303367086447223, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3335303367086447223, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3335303367086447223, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3335303367086447223, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3519170224579242702, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3519170224579242702, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3519170224579242702, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3519170224579242702, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4026277777441578073, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4026277777441578073, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4026277777441578073, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4026277777441578073, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4026277777441578073, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 4182979935282580397, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4182979935282580397, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4182979935282580397, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4182979935282580397, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4624900644804536086, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 4624900644804536086, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4624900644804536086, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4624900644804536086, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4624900644804536086, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 5099178257347545436, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5099178257347545436, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5099178257347545436, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5099178257347545436, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5129598468361460381, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Group + value: + objectReference: {fileID: 231720586} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_SizeDelta.x + value: 200 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_SizeDelta.y + value: 444 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5401089307039172213, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 5401089307039172213, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5401089307039172213, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5401089307039172213, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5401089307039172213, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 5483588989655918655, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5483588989655918655, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5483588989655918655, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5483588989655918655, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870092288419811954, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870092288419811954, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870092288419811954, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870092288419811954, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5951976358613712419, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5951976358613712419, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5951976358613712419, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5951976358613712419, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5960341099218029775, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5960341099218029775, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5960341099218029775, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5960341099218029775, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6040952315240830313, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 6371773360438439340, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6371773360438439340, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6371773360438439340, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6371773360438439340, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6417544419695096842, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 6620579260842653500, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6620579260842653500, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6620579260842653500, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6620579260842653500, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6698282492831301852, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6698282492831301852, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6698282492831301852, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6698282492831301852, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6852929779249261709, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 6852929779249261709, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 6852929779249261709, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 7437705640765737817, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7437705640765737817, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7437705640765737817, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7437705640765737817, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7714495048785675376, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.a + value: 0.69803923 + objectReference: {fileID: 0} + - target: {fileID: 7714495048785675376, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7714495048785675376, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7714495048785675376, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7714495048785675376, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_fontColor32.rgba + value: 2988910375 + objectReference: {fileID: 0} + - target: {fileID: 8110177612667523191, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8110177612667523191, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8110177612667523191, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8110177612667523191, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8124655617755698266, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8124655617755698266, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8124655617755698266, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8124655617755698266, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8375544862098116587, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 8375544862098116587, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 8375544862098116587, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 8464380553649808545, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 8715680108522583567, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 8761458787587501993, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8761458787587501993, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8761458787587501993, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8761458787587501993, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8798599388214752569, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8798599388214752569, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8798599388214752569, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8798599388214752569, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8815610640101552404, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8815610640101552404, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8815610640101552404, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8815610640101552404, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9142761440858566280, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9142761440858566280, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 9142761440858566280, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 9142761440858566280, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0634c2c686f2e05429f5b680e69380be, type: 3} +--- !u!224 &4701881106497641454 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 5378150356205214494, guid: 0634c2c686f2e05429f5b680e69380be, + type: 3} + m_PrefabInstance: {fileID: 4701881106497641453} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4944970038237653006 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1173045074} + m_Modifications: + - target: {fileID: 83244602570869436, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 83244602570869436, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 83244602570869436, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 83244602570869436, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 204427134712815468, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 204427134712815468, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 204427134712815468, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 204427134712815468, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390744117470368332, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390744117470368332, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390744117470368332, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390744117470368332, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 863122126536979691, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 0db508f5b99fa0843b166ffb22a8a9db, type: 2} + - target: {fileID: 1104250081920142931, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + - target: {fileID: 1197760308155003653, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1197760308155003653, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1197760308155003653, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 1197760308155003653, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 1412520662645644903, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1412520662645644903, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1412520662645644903, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1412520662645644903, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1456408972267080125, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1456408972267080125, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1456408972267080125, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 1456408972267080125, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 1671733307973002463, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1671733307973002463, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1671733307973002463, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1671733307973002463, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2935566491472352465, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 2935566491472352465, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2935566491472352465, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2935566491472352465, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3176236972170554985, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3176236972170554985, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 3176236972170554985, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 3176236972170554985, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 5825521429069017319, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5825521429069017319, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5825521429069017319, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5825521429069017319, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5825521429069017319, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084662468164602463, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084662468164602463, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084662468164602463, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084662468164602463, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6084662468164602463, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6192142237353276303, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6192142237353276303, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6192142237353276303, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6192142237353276303, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7454452607693693995, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7454452607693693995, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7454452607693693995, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7454452607693693995, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7564131694369409868, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7564131694369409868, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7564131694369409868, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7564131694369409868, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7804818599090483700, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7804818599090483700, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7804818599090483700, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7804818599090483700, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Pivot.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Pivot.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_SizeDelta.x + value: 368 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 368 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -203.6 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7930843997162957015, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8273028107532829005, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8273028107532829005, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8273028107532829005, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8273028107532829005, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 8531730441489546229, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8531730441489546229, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8531730441489546229, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8531730441489546229, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 9153064733881456275, guid: 5a98624edf56c594d8d93c3402245e80, + type: 3} + propertyPath: m_Name + value: Dialog2Button_TextOnly + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5a98624edf56c594d8d93c3402245e80, type: 3} +--- !u!1001 &6418507247615071535 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1173045074} + m_Modifications: + - target: {fileID: 686018732708244640, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 686018732708244640, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 686018732708244640, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 686018732708244640, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 756673797974000066, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 756673797974000066, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 756673797974000066, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 756673797974000066, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 949207280331085336, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 949207280331085336, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 949207280331085336, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 949207280331085336, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 1020424127789005690, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1020424127789005690, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1020424127789005690, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1020424127789005690, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1360117599516928846, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: b92a148dcc32e0c49a76ca319938c23c, type: 2} + - target: {fileID: 1605923976875954678, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 0db508f5b99fa0843b166ffb22a8a9db, type: 2} + - target: {fileID: 1792219265505982289, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1792219265505982289, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1792219265505982289, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1792219265505982289, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2059465401746190241, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2059465401746190241, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2059465401746190241, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2059465401746190241, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2262297109648603761, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2262297109648603761, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2262297109648603761, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2262297109648603761, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2270176836000530720, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2270176836000530720, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2270176836000530720, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2270176836000530720, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3577913004782340980, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3577913004782340980, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 3577913004782340980, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 3577913004782340980, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 3823050801224528332, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 3823050801224528332, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3823050801224528332, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3823050801224528332, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5314843631275159362, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5314843631275159362, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5314843631275159362, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5314843631275159362, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5314843631275159362, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5578665291369993722, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5578665291369993722, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5578665291369993722, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5578665291369993722, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5578665291369993722, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6622591776593622185, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6622591776593622185, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6622591776593622185, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6622591776593622185, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7112654649254327182, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Name + value: Dialog2Button_IconAndText + objectReference: {fileID: 0} + - target: {fileID: 7240320066960919643, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7240320066960919643, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7240320066960919643, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7240320066960919643, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7770334415462571752, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7770334415462571752, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7770334415462571752, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 7770334415462571752, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 8033504065162601552, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8033504065162601552, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8033504065162601552, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 8033504065162601552, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 8206481507139392745, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8206481507139392745, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8206481507139392745, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8206481507139392745, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Pivot.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_Pivot.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_SizeDelta.x + value: 368 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 756 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -251.6 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8332515563436936650, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8451637926627176017, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8451637926627176017, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8451637926627176017, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8451637926627176017, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8845218651099119926, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8845218651099119926, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8845218651099119926, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8845218651099119926, guid: f727782be5090c644bbd8d9c1aee79c8, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f727782be5090c644bbd8d9c1aee79c8, type: 3} +--- !u!1001 &7427766632388393256 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1806306308} + m_Modifications: + - target: {fileID: 174465496859955143, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 174465496859955143, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 174465496859955143, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 174465496859955143, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 254389930425080838, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Group + value: + objectReference: {fileID: 231720586} + - target: {fileID: 326170450150449549, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 326170450150449549, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 326170450150449549, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 626466317004828324, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 626466317004828324, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 626466317004828324, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 626466317004828324, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_SizeDelta.x + value: 200 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_SizeDelta.y + value: 444 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1034911960514543854, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1034911960514543854, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1034911960514543854, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1575970972840432873, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1575970972840432873, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1575970972840432873, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1575970972840432873, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1599219994750597304, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1599219994750597304, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.b + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1599219994750597304, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.g + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1599219994750597304, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.r + value: 0.29411766 + objectReference: {fileID: 0} + - target: {fileID: 1692789367367406578, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 1755608469682210375, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1755608469682210375, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1755608469682210375, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1755608469682210375, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1995736445924928022, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 1995736445924928022, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 1995736445924928022, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 2136828623410803345, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 2254400332759495079, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2254400332759495079, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2254400332759495079, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2254400332759495079, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562602294021197250, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562602294021197250, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562602294021197250, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562602294021197250, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3433815175535231723, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3433815175535231723, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3433815175535231723, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3500371438803224944, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 3500371438803224944, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 3500371438803224944, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 3593799584272065082, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 781b75b5de7c1dd4b92e4a2c35298bae, type: 2} + - target: {fileID: 3757439681791350508, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3757439681791350508, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3757439681791350508, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3757439681791350508, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3776457226865808065, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3776457226865808065, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3776457226865808065, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3776457226865808065, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4200070634132056083, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4200070634132056083, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 4200070634132056083, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 4200070634132056083, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 4349465739306201236, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 034ce753cc2f2ad4893b229f2e6a54ba, type: 2} + - target: {fileID: 4517919034946925474, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4517919034946925474, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4517919034946925474, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4517919034946925474, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4539469826935420815, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4539469826935420815, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4539469826935420815, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4539469826935420815, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4738014036598800266, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4738014036598800266, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4738014036598800266, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4738014036598800266, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4925593584348193845, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 4925593584348193845, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4925593584348193845, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4925593584348193845, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5206445760869725915, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Name + value: ContextMenuIconAnd1LineText + objectReference: {fileID: 0} + - target: {fileID: 5535866492529260438, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5535866492529260438, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5656888362992387414, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5656888362992387414, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5656888362992387414, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5656888362992387414, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5959367179753281735, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 5959367179753281735, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5959367179753281735, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5959367179753281735, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5959367179753281735, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 5970894720880483741, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5970894720880483741, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5970894720880483741, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5970894720880483741, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6370790660314200484, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 6370790660314200484, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6370790660314200484, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6370790660314200484, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6370790660314200484, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 6872269525316685619, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6872269525316685619, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6872269525316685619, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6872269525316685619, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6934185450606394767, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6934185450606394767, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6934185450606394767, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6934185450606394767, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7323093791334606384, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7323093791334606384, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7323093791334606384, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7323093791334606384, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7503857506049225886, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 7503857506049225886, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7503857506049225886, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7503857506049225886, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7701533970934324460, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7701533970934324460, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7701533970934324460, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7701533970934324460, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8306905611783281346, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.a + value: 0.9019608 + objectReference: {fileID: 0} + - target: {fileID: 8306905611783281346, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8306905611783281346, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8306905611783281346, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8306905611783281346, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_fontColor32.rgba + value: 4280756007 + objectReference: {fileID: 0} + - target: {fileID: 8394325179854203989, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8394325179854203989, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8394325179854203989, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8394325179854203989, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9125655125319486774, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9125655125319486774, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9125655125319486774, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9125655125319486774, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f5afee37ea736084481e54ff6620d9e5, type: 3} +--- !u!224 &7427766632388393257 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1011972545823268229, guid: f5afee37ea736084481e54ff6620d9e5, + type: 3} + m_PrefabInstance: {fileID: 7427766632388393256} + m_PrefabAsset: {fileID: 0} +--- !u!224 &8075725010243989334 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1629747394912141205, guid: 6cd57a5c754c63047822347680b4bbd2, + type: 3} + m_PrefabInstance: {fileID: 831600529147948846} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8930982547544701691 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1703324487} + m_Modifications: + - target: {fileID: 53982121180142023, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 36.5 + objectReference: {fileID: 0} + - target: {fileID: 152334073584658820, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 52.5 + objectReference: {fileID: 0} + - target: {fileID: 615576012090920138, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 896653445605316475, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Color.b + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 896653445605316475, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Color.g + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 896653445605316475, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Color.r + value: 0.21960786 + objectReference: {fileID: 0} + - target: {fileID: 1693676676542734784, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3143409444471918073, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 9ad1b5a33a872764481c5a891d3db009, type: 2} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3746862070016763765, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 3770633299332214959, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -15 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.x + value: 101 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.y + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 44.5 + objectReference: {fileID: 0} + - target: {fileID: 6197802590235886311, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -12 + objectReference: {fileID: 0} + - target: {fileID: 8046116837390756153, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_Name + value: Borderless_Base_IconAndLabel + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8123833898599369205, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c8e2992a313c49d449f074c59c12f6ad, type: 3} +--- !u!224 &8930982547544701692 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 5232336759017632350, guid: c8e2992a313c49d449f074c59c12f6ad, + type: 3} + m_PrefabInstance: {fileID: 8930982547544701691} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9001143955600884404 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1813481664} + m_Modifications: + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.b + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.g + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 1401064322457278876, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.r + value: 0.10062885 + objectReference: {fileID: 0} + - target: {fileID: 1474146498998784439, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 26f1b9b1dfdb2af4cb21f810aec35b9c, type: 2} + - target: {fileID: 3349346243019873864, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_IsOn + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3438102879067568234, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5684433707470414278, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1.7 + objectReference: {fileID: 0} + - target: {fileID: 6244658300373328758, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Name + value: ToggleSwitchButton + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.a + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.b + value: 0.15294118 + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.g + value: 0.15294118 + objectReference: {fileID: 0} + - target: {fileID: 6631082557052889561, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Color.r + value: 0.15294118 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.x + value: 40 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_SizeDelta.y + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalScale.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8075725011072244730, guid: c1fa15e93b3d0324ebb8093dc8db35b9, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c1fa15e93b3d0324ebb8093dc8db35b9, type: 3} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 1631753609} + - {fileID: 849596840} + - {fileID: 569455504} + - {fileID: 448509646} diff --git a/Assets/Scenes/UISet.unity.meta b/Assets/Scenes/UISet.unity.meta new file mode 100644 index 0000000..fbd9adb --- /dev/null +++ b/Assets/Scenes/UISet.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 18edff3ec51483f4c9be28a8a027b4bc +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts.meta b/Assets/Scripts.meta new file mode 100644 index 0000000..d049efa --- /dev/null +++ b/Assets/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ec394f83820d0b94fb50ee52ebf7246e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/AgrandissementBoutons.cs b/Assets/Scripts/AgrandissementBoutons.cs new file mode 100644 index 0000000..cf93765 --- /dev/null +++ b/Assets/Scripts/AgrandissementBoutons.cs @@ -0,0 +1,149 @@ +using System.Collections; +using TMPro; +using UnityEngine; +using UnityEngine.EventSystems; +using UnityEngine.UI; + +/* + Collez ce script un bouton pour qu'il s'agrandisse progressivement. +NOTE: Ceci fonctionne mieux avec les backgrounds de Meta (Materials). C'est plus joli UwU. + */ + +public class AgrandissementBoutons : MonoBehaviour +{ + public enum AnimationDir + { + DeuxCts = 0, + Gauche = 1, + Droite = 2 + }; + + [Header("Animation : Ouverture des boutons")] + private RectTransform bouton; + public float largeur_init = 100f; + public float largeur_max = 500f; + public float duree_ouverture = 0.3f; + public AnimationDir AnimerA = AnimationDir.DeuxCts; + private Coroutine coroutine; + private ComportementBoutonsMenu cbm; + + // Afficher le texte + private TextMeshProUGUI texte; + private bool est_visible = false; + + private bool micro_actif = false; + + private void Start() + { + cbm = FindAnyObjectByType(); + bouton = GetComponent(); + texte = GetComponentInChildren(); + texte.gameObject.SetActive(est_visible); + } + + /* @brief, Agrandir() permet de grossir la largeur du bouton (il s'tend l'horizontale).*/ + public void AgrandirMenu() + { + if(!cbm.GetAnimEnCours() && !cbm.GetBoutonClique()) + { + Debug.Log("AgrandirMenu() excute."); + if (Mathf.Abs(bouton.sizeDelta.x - largeur_max) < 0.01f) + return; + if (coroutine != null) StopCoroutine(coroutine); + coroutine = StartCoroutine(ChangerLargeur(largeur_max)); + } + } + + /* @brief, Agrandir() permet de grossir la largeur du bouton (il s'tend l'horizontale).*/ + public void Agrandir() + { + Debug.Log("Agrandir() excute."); + if (Mathf.Abs(bouton.sizeDelta.x - largeur_max) < 0.01f) + return; + if (coroutine != null) StopCoroutine(coroutine); + coroutine = StartCoroutine(ChangerLargeur(largeur_max)); + } + + /* @brief, Retrecir() permet de rtrcir un bouton vers sa valeur d'origine aprs un certain dlai. Le dlai permet d'viter les clignotements des pointeurs, qui dclenchent des vnements. + */ + public void Retrecir() + { + Debug.Log("Retrcir() appele."); + if (coroutine != null) + StopCoroutine(coroutine); + + coroutine = StartCoroutine(ChangerLargeur(largeur_init)); + } + + public void RetrecirMicro() + { + Debug.Log($"Entre dans RetrecirMicro() avec un boolen qui vaut : {micro_actif}"); + if(!micro_actif) + { + Debug.Log("RetrcirMicro() appele."); + EventSystem.current.SetSelectedGameObject(null); + GetComponent().OnDeselect(null); + if (coroutine != null) + StopCoroutine(coroutine); + + coroutine = StartCoroutine(ChangerLargeur(largeur_init)); + } + } + + public void OnToggleMicroButton() + { + Debug.Log($"OnToggleMicroButton() appele avec un boolen {micro_actif}."); + micro_actif = !micro_actif; + } + + /*@brief, ChangerLargeur() permet de passer la largeur d'un bouton de sa valeur de base une valeur cible. + @param1 cible, un flottant qui indique la taille vers laquelle le bouton doit voluer. + @return IEnumerator, c'est aussi une coroutine, on la lance avec StartCoroutine()*/ + private IEnumerator ChangerLargeur(float cible) + { + float depart = bouton.sizeDelta.x; + Vector2 pos_depart = bouton.anchoredPosition; + float t = 0; + while (t < duree_ouverture) + { + t += Time.deltaTime; + float w = Mathf.Lerp(depart, cible, t / duree_ouverture); + bouton.sizeDelta = new Vector2(w, bouton.sizeDelta.y); + if(bouton.sizeDelta.x/largeur_max > 0.8) est_visible = true; + else est_visible = false; + switch (AnimerA) + { + case AnimationDir.Gauche: + { + bouton.anchoredPosition = pos_depart - new Vector2((w - depart) / 2, 0);; + break; + } + case AnimationDir.Droite: + { + Vector2 pos = bouton.anchoredPosition + new Vector2(w / 2, 0); + bouton.anchoredPosition = pos; + break; + } + default: + break; + } + yield return null; + } + } + + private void Update() + { + texte.gameObject.SetActive(est_visible); + } + + public float GetXDuBouton() => bouton.sizeDelta.x; + + public bool GetEtatMicro() => micro_actif; + + public void SetMicroActif(bool b) + { + micro_actif = b; + } +} + + diff --git a/Assets/Scripts/AgrandissementBoutons.cs.meta b/Assets/Scripts/AgrandissementBoutons.cs.meta new file mode 100644 index 0000000..e38e586 --- /dev/null +++ b/Assets/Scripts/AgrandissementBoutons.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 98531106a8a35ea45884856f2b70abde \ No newline at end of file diff --git a/Assets/Scripts/BuildConstants.cs b/Assets/Scripts/BuildConstants.cs new file mode 100644 index 0000000..a5178b4 --- /dev/null +++ b/Assets/Scripts/BuildConstants.cs @@ -0,0 +1,5 @@ + +public static class BuildConstants +{ + public const string LocalIP = "10.42.133.242"; +} \ No newline at end of file diff --git a/Assets/Scripts/BuildConstants.cs.meta b/Assets/Scripts/BuildConstants.cs.meta new file mode 100644 index 0000000..f36edbf --- /dev/null +++ b/Assets/Scripts/BuildConstants.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b9f739c9cbd5f3e41a507f5981861508 \ No newline at end of file diff --git a/Assets/Scripts/ComportementBoutonsEntree.cs b/Assets/Scripts/ComportementBoutonsEntree.cs new file mode 100644 index 0000000..f066573 --- /dev/null +++ b/Assets/Scripts/ComportementBoutonsEntree.cs @@ -0,0 +1,31 @@ +using UnityEngine; +using UnityEngine.EventSystems; + +public class ComportementBoutonsEntree : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler +{ + // Start is called once before the first execution of Update after the MonoBehaviour is created + private AgrandissementBoutons ab; + + void Start() + { + ab = GetComponent(); + } + + // Update is called once per frame + void Update() + { + + } + + public void OnPointerEnter(PointerEventData EventData) + { + Debug.Log("Pointeur Entr (Bouton Entre utilisateur)"); + ab.Agrandir(); + } + + public void OnPointerExit (PointerEventData EventData) + { + Debug.Log("Pointeur Sorti (Bouton Entre Utilisateur)"); + ab.Retrecir(); + } +} diff --git a/Assets/Scripts/ComportementBoutonsEntree.cs.meta b/Assets/Scripts/ComportementBoutonsEntree.cs.meta new file mode 100644 index 0000000..071cca0 --- /dev/null +++ b/Assets/Scripts/ComportementBoutonsEntree.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 7a734844cc61b904b8eed0764796572e \ No newline at end of file diff --git a/Assets/Scripts/ComportementBoutonsFenetreUI.cs b/Assets/Scripts/ComportementBoutonsFenetreUI.cs new file mode 100644 index 0000000..c1b8621 --- /dev/null +++ b/Assets/Scripts/ComportementBoutonsFenetreUI.cs @@ -0,0 +1,31 @@ +using UnityEngine; +using UnityEngine.Events; +using UnityEngine.EventSystems; + +/*Collez ce script sur un bouton dans une fentre type UI pour qu'il ragisse aux bons vnements. Si votre bouton se trouve dans une fentre, ce script est votre meilleure option.*/ +public class ComportementBoutonsFenetreUI : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler, IPointerClickHandler +{ + private AgrandissementBoutons ab; + public UnityEvent onPointerClick; + // Start is called once before the first execution of Update after the MonoBehaviour is created + void Start() + { + ab = GetComponent(); + } + public void OnPointerEnter(PointerEventData eventData) + { + ab.Agrandir(); + } + + public void OnPointerExit(PointerEventData eventData) + { + ab.Retrecir(); + } + + public void OnPointerClick(PointerEventData eventData) + { + if(onPointerClick== null) + Debug.LogError("Aucune fonction n'a t dfinie pour le bouton."); + onPointerClick?.Invoke(); + } +} diff --git a/Assets/Scripts/ComportementBoutonsFenetreUI.cs.meta b/Assets/Scripts/ComportementBoutonsFenetreUI.cs.meta new file mode 100644 index 0000000..bd11f44 --- /dev/null +++ b/Assets/Scripts/ComportementBoutonsFenetreUI.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b7db4a332f7e98d4ca6f7558f3613db5 \ No newline at end of file diff --git a/Assets/Scripts/ComportementBoutonsMenu.cs b/Assets/Scripts/ComportementBoutonsMenu.cs new file mode 100644 index 0000000..3912d9b --- /dev/null +++ b/Assets/Scripts/ComportementBoutonsMenu.cs @@ -0,0 +1,156 @@ +using TMPro; +using UnityEngine; +using System.Collections; + +/*Collez ce script dans sur un canvas pour le faire apparatre/disparatre quand le bouton des trois barres horizontales est cliqu (fonctionne aussi avec la main gauche). + * Les boutons sont affichs du plus gauche au plus droite + Recherche un composant avec un Tag Debug et un autre avec un Tag MenuBoutons*/ + +public class ComportementBoutonsMenu : MonoBehaviour +{ + private Canvas canvas; + private bool est_visible = false, animation_en_cours = false; + private TextMeshProUGUI debugs; + private AgrandissementBoutons[] ab; + private bool bouton_clique = false; + + [Header("Animation : Boutons")] + public RectTransform[] boutons; + public float rayon = 0.35f; + + [Header("Animation : Dure de l'apparition & dplacement des boutons (en secondes)")] + public float duree_deplacement = 0.5f; + + private Vector2[] pos_init; + private Vector2[] pos_cercle; + + void Start() + { + canvas = GameObject.FindWithTag("MenuBoutons")?.GetComponent(); + debugs = GameObject.FindWithTag("Debug")?.GetComponent(); + pos_init = new Vector2[boutons.Length]; + pos_cercle = new Vector2[boutons.Length]; + ab = new AgrandissementBoutons[boutons.Length]; + for(int i = 0; i < boutons.Length; i++) + { + pos_init[i] = new(0f, 0f); + ab[i] = boutons[i].GetComponent(); + } + pos_cercle = CalculerPositionCercle(boutons.Length, rayon); + + + + if (canvas != null ) + canvas.gameObject.SetActive(est_visible); + } + + void Update() + { + if (OVRInput.GetDown(OVRInput.Button.Start)) + { + est_visible = !est_visible; + animation_en_cours = true; + bouton_clique = false; + debugs.text += $"Update() boutons, valeur de bool : {est_visible} \n"; + if (est_visible) + { + canvas.gameObject.SetActive(est_visible); + StartCoroutine(DeplacerBoutons(pos_cercle)); + } + else + { + StartCoroutine(DeplacerBoutons(pos_init, () => canvas.gameObject.SetActive(est_visible) + )); + } + } + } + + /*@brief BoutonClique() permet de dfinir un comportement pour les boutons quand l'un d'entre eux est press. Ici, on demande fermer le menu des boutons.*/ + public void BoutonClique() + { + bouton_clique = true; + for(int i = 0; i < boutons.Length;i++) + { + if (ab[i].GetXDuBouton() > ab[i].largeur_init) + { + if (ab[i].duree_ouverture > duree_deplacement) + { + float duree_tmp = ab[i].duree_ouverture; + ab[i].duree_ouverture = duree_deplacement / 2; + ab[i].Retrecir(); + ab[i].duree_ouverture = duree_tmp; + } + else + ab[i].Retrecir(); + } + } + est_visible = false; + StartCoroutine(DeplacerBoutons(pos_init, + () => canvas.gameObject.SetActive(est_visible) + )); + } + + /*@brief, DeplacerBoutons() permet de bouger les boutons d'une position 1 vers une position 2. On les fait glisser vers la position (animation, pas une tlportation). + @param1 pos_cibles, position finale des boutons la fin de la fonction. + @param2 onFinish, fonction de "callback" qui permet d'appeler une fonction incompatible avec les coroutines dans une coroutine (ici gameObject.SetVisible() ). + @return IEnumerator, c'est une coroutine, on l'appelle avec StartCoroutine().*/ + private IEnumerator DeplacerBoutons(Vector2[] pos_cibles, System.Action onFinish = null) + { + float t = 0f; + + Vector2[] pos_depart = new Vector2[boutons.Length]; + for(int i = 0; i < boutons.Length; i++) + { + pos_depart[i] = boutons[i].anchoredPosition; + } + + while (t < duree_deplacement) + { + t += Time.deltaTime; + float p = Mathf.SmoothStep(0f, 1f, t / duree_deplacement); + + for(int i = 0; i < boutons.Length; i++) + { + boutons[i].anchoredPosition = Vector2.Lerp(pos_depart[i], pos_cibles[i], p); + } + + yield return null; + } + + onFinish?.Invoke(); + animation_en_cours = false; + } + + /*@brief GetAnimEnCours() est un accesseur. Permet de savoir si l'animation d'apparition du menu est en cours ou non. + @return, un boolen.*/ + public bool GetAnimEnCours() + { + return animation_en_cours; + } + + /*@brief GetBoutonClique() est un accesseur. Permet de savoir si l'utilisateur a cliqu sur un bouton ou non. + @return, un boolen.*/ + public bool GetBoutonClique() + { + return bouton_clique; + } + + /* @brief, CalculerPositionCercle retourne nb positons selon les paramtres angle_min/angle_max autour d'un cercle de rayon r. + @param1 nb, un entier qui permet de connaitre le nombre de positions calculer. + @param2 r, le rayon du cercle. + @return un tableau de Vector2 contenant les positions.*/ + private Vector2[] CalculerPositionCercle(int nb, float r) + { + Vector2[] resultats = new Vector2[nb]; + float angle_min = 0f; + float angle_max = 180f; + float pas_entre_boutons = (angle_min - angle_max) / (nb - 1); + for(int i = 0; i < nb; i++) + { + float angle_degre = angle_max + i*pas_entre_boutons; + float normaliser_en_rad = angle_degre * Mathf.Deg2Rad; + resultats[i] = new Vector2(Mathf.Cos(normaliser_en_rad)*r, Mathf.Sin(normaliser_en_rad)*r); + } + return resultats; + } +} diff --git a/Assets/Scripts/ComportementBoutonsMenu.cs.meta b/Assets/Scripts/ComportementBoutonsMenu.cs.meta new file mode 100644 index 0000000..6567fab --- /dev/null +++ b/Assets/Scripts/ComportementBoutonsMenu.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: a7d13754c638b8b438c04ad0cef34e84 \ No newline at end of file diff --git a/Assets/Scripts/ComportementBoutonsPreferences.cs b/Assets/Scripts/ComportementBoutonsPreferences.cs new file mode 100644 index 0000000..b0e7165 --- /dev/null +++ b/Assets/Scripts/ComportementBoutonsPreferences.cs @@ -0,0 +1,25 @@ +using UnityEngine; +using UnityEngine.Events; +using UnityEngine.EventSystems; +using UnityEngine.UI; + +/*Script coller sur un bouton de la fentre des prfrences pour activer la focntion ( coller dans l'inspecteur).*/ +public class ComportementBoutonsPreferences : MonoBehaviour, IPointerClickHandler +{ + private GameObject bouton; + [Header("Fonction excuter quand le bouton est press.")] + public UnityEvent fonction; + + private void Start() + { + bouton = GameObject.FindWithTag("QDSUIToggleSwitch"); + if (fonction == null) + Debug.LogError($"La fonction n'a pas t dfinie dans l'inspecteur ! Le bouton {bouton.name} est inutilisable."); + } + + public void OnPointerClick(PointerEventData eventData) + { + Debug.Log($"Bouton {bouton.name} cliqu"); + fonction?.Invoke(); + } +} diff --git a/Assets/Scripts/ComportementBoutonsPreferences.cs.meta b/Assets/Scripts/ComportementBoutonsPreferences.cs.meta new file mode 100644 index 0000000..fe24446 --- /dev/null +++ b/Assets/Scripts/ComportementBoutonsPreferences.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 426a9e0245cc0d041be77fb9f705fb86 \ No newline at end of file diff --git a/Assets/Scripts/ComportementBulleTexte3D.cs b/Assets/Scripts/ComportementBulleTexte3D.cs new file mode 100644 index 0000000..a4fa91a --- /dev/null +++ b/Assets/Scripts/ComportementBulleTexte3D.cs @@ -0,0 +1,21 @@ +using UnityEngine; +using UnityEngine.UI; +using System.Linq; +using TMPro; + +/* Ce script est coller sur une bulle texte.*/ +public class ComportementBulleTexte3D : MonoBehaviour +{ + private GameObject bulle; + private const string tag1 = "Bulle3D"; + // Start is called once before the first execution of Update after the MonoBehaviour is created + void Start() + { + foreach (Transform t in transform) + { + if(t.gameObject.CompareTag(tag1)) + bulle = t.gameObject; + } + } + +} diff --git a/Assets/Scripts/ComportementBulleTexte3D.cs.meta b/Assets/Scripts/ComportementBulleTexte3D.cs.meta new file mode 100644 index 0000000..3286bb7 --- /dev/null +++ b/Assets/Scripts/ComportementBulleTexte3D.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 81607e97867670043b0f88a7850a3b78 \ No newline at end of file diff --git a/Assets/Scripts/ComportementEntreeUtilisateur.cs b/Assets/Scripts/ComportementEntreeUtilisateur.cs new file mode 100644 index 0000000..d212125 --- /dev/null +++ b/Assets/Scripts/ComportementEntreeUtilisateur.cs @@ -0,0 +1,72 @@ +using TMPro; +using Unity.VisualScripting; +using UnityEngine; + +/* + Ce script permet de grer l'envoi au serveur au niveau du TMP_InputField. + */ + +public class ComportementEntreeUtilisateur : MonoBehaviour +{ + private TMP_InputField Entree; + private TouchScreenKeyboard clavier; + private EnvoyerRecevoirDonnees envoyer_recevoir; + private RunWhisper ia; + private EnumFonctionsPreferences efp; + + private void Start() + { + Entree = GetComponentInChildren(); + + if (clavier == null) + Debug.LogError("Aucun clavier trouv ! ALERTE AU GOGOLE LES ENFANTS !!!"); + + envoyer_recevoir = FindAnyObjectByType(); + + ia = FindAnyObjectByType(); + ia.OnTranscriptionComplete += HandleTranscriptionResult; + efp = FindAnyObjectByType(); + } + + public void TraitementEntree() + { + Debug.Log("Entre dans TraitementEntre()"); + if (!string.IsNullOrWhiteSpace(Entree.text)) + StartCoroutine(envoyer_recevoir.EnvoyerAction(Entree.text)); + Entree.text = string.Empty; + Entree.DeactivateInputField(); + } + + public void TraitementEntreeAudio(string s) + { + Debug.Log("On est cens pouvoir parler l."); + + if(ia != null) + { + ia.StartMicrophoneInference(); + } + } + + private void HandleTranscriptionResult(string texteTranscrit) + { + Debug.Log("HandleTranscriptionResult() Transcription termine reue : " + texteTranscrit); + + if (!string.IsNullOrWhiteSpace(texteTranscrit)) + { + Entree.text = texteTranscrit; + Entree.caretPosition = Entree.text.Length; + Entree.ForceLabelUpdate(); + Entree.MoveTextEnd(false); + } + } + + public TMP_InputField GetEntree() => Entree; + + void OnDestroy() + { + if (ia != null) + { + ia.OnTranscriptionComplete -= HandleTranscriptionResult; + } + } +} diff --git a/Assets/Scripts/ComportementEntreeUtilisateur.cs.meta b/Assets/Scripts/ComportementEntreeUtilisateur.cs.meta new file mode 100644 index 0000000..60ae6cf --- /dev/null +++ b/Assets/Scripts/ComportementEntreeUtilisateur.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 4f9a237365031784e9a1c139ac1991cb \ No newline at end of file diff --git a/Assets/Scripts/ComportementFenetrePreferences.cs b/Assets/Scripts/ComportementFenetrePreferences.cs new file mode 100644 index 0000000..2ec3abb --- /dev/null +++ b/Assets/Scripts/ComportementFenetrePreferences.cs @@ -0,0 +1,40 @@ +using Oculus.Interaction; +using UnityEngine; + +/*Ce script est coller sur un objet vide (pour viter de dsactiver ses vnements quand la fentre des prfrences est dsactive). */ +public class ComportementFenetrePreferences : MonoBehaviour +{ + private GameObject prefab; + private bool est_visible = false; + private CanvasGroup canvas; + + private void Start() + { + prefab = GameObject.FindWithTag("FenetrePrefs"); + canvas = prefab.GetComponent(); + canvas.alpha = 0f; + canvas.interactable = false; + canvas.blocksRaycasts = false; + prefab.GetComponent().enabled = false; + } + + public void ChangerEtat() + { + est_visible = !est_visible; + if (est_visible) + { + prefab.GetComponent().enabled = true; + canvas.alpha = 1.0f; + canvas.interactable = true; + canvas.blocksRaycasts = true; + } + else + { + canvas.alpha = 0f; + canvas.interactable = false; + canvas.blocksRaycasts = false; + prefab.GetComponent().enabled = false; + } + Debug.Log($"tat de la fentre des prfrences : {prefab.activeSelf}."); + } +} diff --git a/Assets/Scripts/ComportementFenetrePreferences.cs.meta b/Assets/Scripts/ComportementFenetrePreferences.cs.meta new file mode 100644 index 0000000..c0bcd1c --- /dev/null +++ b/Assets/Scripts/ComportementFenetrePreferences.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 40032d926c1a4a84aa451aaa2a114b53 \ No newline at end of file diff --git a/Assets/Scripts/ComportementHistoriqueMessages.cs b/Assets/Scripts/ComportementHistoriqueMessages.cs new file mode 100644 index 0000000..47f4fbc --- /dev/null +++ b/Assets/Scripts/ComportementHistoriqueMessages.cs @@ -0,0 +1,17 @@ +using UnityEngine; + +/*Ce script permet de placer l'historique des messages devant l'utilisateur.*/ +public class ComportementHistoriqueMessages : MonoBehaviour +{ + private RectTransform historique; + void Start() + { + historique = GameObject.FindWithTag("HistoriqueMsg").GetComponent(); + } + + // Update is called once per frame + void Update() + { + + } +} diff --git a/Assets/Scripts/ComportementHistoriqueMessages.cs.meta b/Assets/Scripts/ComportementHistoriqueMessages.cs.meta new file mode 100644 index 0000000..6820f8e --- /dev/null +++ b/Assets/Scripts/ComportementHistoriqueMessages.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 9665f1a818d81784aacb24ea78042758 \ No newline at end of file diff --git a/Assets/Scripts/DebugVisualEffects.cs b/Assets/Scripts/DebugVisualEffects.cs new file mode 100644 index 0000000..68920fa --- /dev/null +++ b/Assets/Scripts/DebugVisualEffects.cs @@ -0,0 +1,37 @@ +using UnityEngine; +using UnityEngine.UI; + +/*Donn par ChatGPT pour dbuguer les problmes lis aux canvas en les affichant en rouge ple. mettre dans un objet vide avec Add component. S'active tout seul.*/ + +[ExecuteAlways] +public class DebugVisualEffects : MonoBehaviour +{ + void Start() + { + foreach (Canvas canvas in FindObjectsByType(FindObjectsSortMode.None)) + { + var existingOutline = canvas.transform.Find("CanvasDebugBordure"); + + GameObject outline; + if (existingOutline != null) + { + // Il existe dj, on le rutilise + outline = existingOutline.gameObject; + } + else + { + // Sinon, on le cre + outline = new GameObject("CanvasDebugBordure"); + outline.transform.SetParent(canvas.transform, false); + } + + var img = outline.AddComponent(); + img.color = new Color(1f, 0f, 0f, 0.1f); // rouge transparent + + var rect = img.GetComponent(); + rect.anchorMin = Vector2.zero; + rect.anchorMax = Vector2.one; + rect.offsetMin = rect.offsetMax = Vector2.zero; + } + } +} diff --git a/Assets/Scripts/DebugVisualEffects.cs.meta b/Assets/Scripts/DebugVisualEffects.cs.meta new file mode 100644 index 0000000..4b76b5d --- /dev/null +++ b/Assets/Scripts/DebugVisualEffects.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 359753addc189e24bbbc5355eb782ba3 \ No newline at end of file diff --git a/Assets/Scripts/EnumFonctionsBouton.cs b/Assets/Scripts/EnumFonctionsBouton.cs new file mode 100644 index 0000000..c08c8ca --- /dev/null +++ b/Assets/Scripts/EnumFonctionsBouton.cs @@ -0,0 +1,50 @@ +using System.Collections; +using UnityEngine; + +/* + Permet d'numrer les diffrents cas/fonctions pour les boutons du menu. + */ +public class EnumFonctionsBouton : MonoBehaviour +{ + private EnvoyerRecevoirDonnees e_r_d; + private ComportementFenetrePreferences c_f_p; + + public void Start() + { + e_r_d = FindAnyObjectByType(); + c_f_p = FindAnyObjectByType(); + } + + /*@brief, LancerRecherche() permet de dmarrer la coroutine EnvoyerRecherche() sans tre elle-mme une coroutine.*/ + public void LancerRecherche() + { + StartCoroutine(EnvoyerRecherche()); + } + + /*@brief, EnvoyerRecherche() permet d'interrompre l'action en cours pour lancer une recherche ct serveur. + @return IEnumerator, c'est une coroutine donc on la dmarre avec StartCoroutine().*/ + public IEnumerator EnvoyerRecherche() + { + yield return StartCoroutine(e_r_d.EnvoyerRaccourci("2")); + } + + /*@brief, LancerQuitter() permet de dmarrer la coroutine EnvoyerQuitter() sans tre elle-mme une coroutine.*/ + public void LancerQuitter() + { + StartCoroutine(EnvoyerQuitter()); + } + + /*@brief, EnvoyerQuitter() permet d'interrompre l'action en cours pour quitter ct serveur. + @return IEnumerator, c'est une coroutine donc on la dmarre avec StartCoroutine().*/ + public IEnumerator EnvoyerQuitter() + { + yield return StartCoroutine(e_r_d.EnvoyerRaccourci("3")); + Application.Quit(); + } + + /*@brief, LancerPrefs() permet d'ouvrir la fentre des prfrences.*/ + public void LancerPrefs() + { + c_f_p.ChangerEtat(); + } +} diff --git a/Assets/Scripts/EnumFonctionsBouton.cs.meta b/Assets/Scripts/EnumFonctionsBouton.cs.meta new file mode 100644 index 0000000..d9fa1a6 --- /dev/null +++ b/Assets/Scripts/EnumFonctionsBouton.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: fdd9ec74efce24c4ebf3d3b203c97f0a \ No newline at end of file diff --git a/Assets/Scripts/EnumFonctionsPreferences.cs b/Assets/Scripts/EnumFonctionsPreferences.cs new file mode 100644 index 0000000..5963b84 --- /dev/null +++ b/Assets/Scripts/EnumFonctionsPreferences.cs @@ -0,0 +1,242 @@ +using TMPro; +using UnityEngine; +using UnityEngine.UI; +using System.Collections.Generic; + +/*Ce script permet aux boutons de la fentre de prfrences de fonctionner. */ +public class EnumFonctionsPreferences : MonoBehaviour +{ + bool utiliser_microphone = false; + + private TextMeshProUGUI[] tab_texte; + private AgrandissementBoutons[] tab_boutons; + private GameObject[] fenetres; + private Color[] tab_couleurs = new Color[3]; + private GameObject entree; + private Image entree_img; + private TextMeshProUGUI[] tab_entree_tmp; + + // Dfinition des couleurs + private readonly Color c_bleu_j = new(65 / 255f, 105 / 255f, 225 / 255f); + private readonly Color c_rouge_j = new(178 / 255f, 34 / 255f, 34 / 255f); + private readonly Color c_vert_j = new(108 / 255f, 186 / 255f, 104 / 255f); + + private readonly Color c_bleu_n = new(100 / 255f, 149 / 255f, 237 / 255f); + private readonly Color c_rouge_n = new(220 / 255f, 20 / 255f, 60 / 255f); + private readonly Color c_vert_n = new(46 / 255f, 111 / 255f, 64 / 255f); + + private readonly Color c_jour = new(0.95f, 0.95f, 0.95f); + private readonly Color c_nuit = new(0.35f, 0.35f, 0.35f); + private bool jour = false; + private TextMeshProUGUI debugs; + private GameObject scrollview; + private Image[] historique_image; + private Scrollbar[] scrollbars; + private Material rounded_box_bulles; + private const string rounded_box_bulle_chemin = "Materials/RoundedBoxUIBulles"; + private Material triangle_bulles; + private const string triangle_bulle_chemin = "Materials/TriangleMask"; + private readonly float alpha_bulles = 1; + private List tab_historique = new(); + + private GameObject choix_langue; + + + private void Awake() + { + tab_texte = FindObjectsByType(FindObjectsInactive.Include, FindObjectsSortMode.None); + tab_boutons = FindObjectsByType(FindObjectsInactive.Include, FindObjectsSortMode.None); + fenetres = FonctionsUtilitaires.FindAllWithTag("QDSUIBackplateGradient"); + Debug.Log($"Valeur de fenetre : {fenetres}"); + + entree = GameObject.FindWithTag("Entree"); + entree_img = entree.GetComponent(); + tab_entree_tmp = entree.GetComponentsInChildren(); + + debugs = GameObject.FindWithTag("Debug").GetComponent(); + scrollview = GameObject.FindWithTag("Scrollview"); + + historique_image = scrollview.GetComponentsInChildren(); + scrollbars = scrollview.GetComponentsInChildren(true); + + rounded_box_bulles = Resources.Load(rounded_box_bulle_chemin); + triangle_bulles = Resources.Load(triangle_bulle_chemin); + if (rounded_box_bulles == null) + { + Debug.LogError($"[Mode Nuit] Le Material l'emplacement '{rounded_box_bulle_chemin}' est introuvable. Les couleurs des bulles ne changeront pas."); + } + choix_langue = GameObject.FindWithTag("ChoisirLangue"); + choix_langue.SetActive(false); + } + + private void Start() + { + ChangerMode(); + } + + public void ChangerMode() + { + jour = !jour; + debugs.text += $"Entre dans ChangerMode() avec un boolen {jour}.\n"; + if(jour) + { + Material m = Resources.Load("Materials/LinearGradientUILight"); + foreach (AgrandissementBoutons b in tab_boutons) + { + Debug.Log($"Bouton : {b}"); + b.GetComponentInChildren(true).color = c_jour; + } + foreach (TextMeshProUGUI t in tab_texte) + { + Debug.Log($"TMP : {t}"); + t.color = new Color(0.5f, 0.5f, 0.5f); + } + foreach (GameObject go in fenetres) + { + Debug.Log($"Fenetre : {fenetres}"); + go.GetComponentInChildren(true).material = m; + Debug.Log($"Valeur de material : {go.GetComponentInChildren(true).material}"); + } + tab_couleurs[0] = c_bleu_j; + tab_couleurs[1] = c_rouge_j; + tab_couleurs[2] = c_vert_j; + scrollview.GetComponent().color = c_jour; + foreach (Image im in historique_image) + { + im.color = new Color(1, 1, 1); + } + foreach (Scrollbar sc in scrollbars) + { + ColorBlock cb = sc.colors; + cb.normalColor = c_jour; + cb.highlightedColor = c_jour * 1.1f; + cb.pressedColor = c_jour * 0.9f; + sc.colors = cb; + } + Color nouvelle = c_jour; + nouvelle.a = alpha_bulles; + rounded_box_bulles.color = nouvelle; + triangle_bulles.color = nouvelle; + + foreach (TextMeshProUGUI t in tab_historique) + { + if (t == null) continue; + + float alpha = t.color.a; + Color couleur_tmp = c_jour; + + if (t.color.Equals(c_bleu_n)) + { + couleur_tmp = c_bleu_j; + } + else if (t.color.Equals(c_rouge_n)) + { + couleur_tmp = c_rouge_j; + } + else if (t.color.Equals(c_vert_n)) + { + couleur_tmp = c_vert_j; + } + + couleur_tmp.a = alpha; + t.color = couleur_tmp; + } + + entree_img.color = c_jour; + foreach (TextMeshProUGUI tmp in tab_entree_tmp) + { + if (tmp == null) continue; + + Color c = new(0.3f, 0.3f, 0.3f); + float alpha = tmp.color.a; + c.a = alpha; + tmp.color = c; + + } + } + + else + { + Material m = Resources.Load("Materials/LinearGradientUIDark"); + foreach (AgrandissementBoutons b in tab_boutons) + b.GetComponentInChildren(true).color = c_nuit; + foreach (TextMeshProUGUI t in tab_texte) + t.color = new Color(0.8f, 0.8f, 0.8f); + foreach (GameObject go in fenetres) + go.GetComponentInChildren(true).material = m; + tab_couleurs[0] = c_bleu_n; + tab_couleurs[1] = c_rouge_n; + tab_couleurs[2] = c_vert_n; + scrollview.GetComponent().color = c_nuit; + foreach (Image im in historique_image) + { + im.color = c_nuit; + } + foreach (Scrollbar sc in scrollbars) + { + ColorBlock cb = sc.colors; + cb.normalColor = c_nuit; + cb.highlightedColor = c_nuit * 1.1f; + cb.pressedColor = c_nuit * 0.9f; + sc.colors = cb; + } + + Color nouvelle = c_nuit; + nouvelle.a = alpha_bulles; + rounded_box_bulles.color = nouvelle; + triangle_bulles.color = nouvelle; + + foreach (TextMeshProUGUI t in tab_historique) + { + if (t == null) continue; + + float alpha = t.color.a; + Color couleur_tmp = c_nuit; + + if (t.color.Equals(c_bleu_j)) + { + couleur_tmp = c_bleu_n; + } + else if (t.color.Equals(c_rouge_j)) + { + couleur_tmp = c_rouge_n; + } + else if (t.color.Equals(c_vert_j)) + { + couleur_tmp = c_vert_n; + } + couleur_tmp.a = alpha; + t.color = couleur_tmp; + } + + entree_img.color = c_nuit; + foreach (TextMeshProUGUI tmp in tab_entree_tmp) + { + if (tmp == null) continue; + + Color c = new(0.8f, 0.8f, 0.8f); + float alpha = tmp.color.a; + c.a = alpha; + tmp.color = c; + + } + } + } + + /*Permet d'activer le mode Text2Speech*/ + public void ChangerSaisie() + { + utiliser_microphone = !utiliser_microphone; + choix_langue.SetActive(utiliser_microphone); + } + + public bool GetSaisieAudio() => utiliser_microphone; + + public Color[] GetTabCouleurs() => tab_couleurs; + + public void SetMessageDansListeHistorique(TextMeshProUGUI tmp) + { + tab_historique.Add(tmp); + } +} + diff --git a/Assets/Scripts/EnumFonctionsPreferences.cs.meta b/Assets/Scripts/EnumFonctionsPreferences.cs.meta new file mode 100644 index 0000000..e632649 --- /dev/null +++ b/Assets/Scripts/EnumFonctionsPreferences.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: ef2f097cac0359b478ae44e2512c8f4c \ No newline at end of file diff --git a/Assets/Scripts/EnvoyerRecevoirDonnees.cs b/Assets/Scripts/EnvoyerRecevoirDonnees.cs new file mode 100644 index 0000000..414ef1d --- /dev/null +++ b/Assets/Scripts/EnvoyerRecevoirDonnees.cs @@ -0,0 +1,138 @@ +using System; +using System.Collections; +using System.Text; +using UnityEngine; +using UnityEngine.Networking; + +/* Appel par GestionnaireApplication. + * Permet de faire des requtes vers le serveur aussi bien pour envoyer que pour recevoir des chose. + On dcrypte la requte connue du serveur et on l'adapte. +*/ + + +public class EnvoyerRecevoirDonnees: MonoBehaviour +{ + private string base_url; + public string Token { get; private set; } = ""; + + private bool est_pret = false; + + private Action OnServeurUpdate; + private GestionnaireApplication gestapp; + + [Serializable] + public class ReponseServeur + { + public string[] messages; + public string[] debugs; + public bool attente_saisie; + public bool continuer; + } + + /*@brief, Init() sert de constructeur ++ pour la classe EnvoyerRecevoirDonnees. Elle instancie les paramtres et lance la boucle principale. + @param1 token, une chaine de caractre qui contient le token du client. + @param2 URL, l'URL du serveur. + @param3 callback, une fonction. Ici, il s'agit de OnServeurUpdate du GestionnaireApplication, qui lui permet de dcrypter les donnes brutes reues par le serveur. */ + public void Init(string token, string URL, Action callback) + { + Token = token; + est_pret = true; + OnServeurUpdate = callback; + base_url = URL; + gestapp = FindAnyObjectByType(); + + Debug.Log("Client initialis avec le token : " + Token); + + // On lance la boucle principale + StartCoroutine(MainLoop()); + } + + /*@brief, MainLoop() est la boucle centrale de ce script. Elle permet de vrifier les nouvelles donnes du serveur. + @return, c'est une coroutine, on l'appelle avec StartCoroutine(). + NOTE: on pourra modifier ces fonctions pour qu'elles ne fassent des requtes que lorsque c'est ncessaire (ici on en fait toutes les deux secondes, mme si rien n'a chang).*/ + IEnumerator MainLoop() + { + while (est_pret) + { + if(gestapp.GetEnvoyerRequete()) + { + yield return GetServerUpdate(); + yield return new WaitForSeconds(2); + } + yield return null; + } + } + + /*@brief, GetServerUpdate() fait la requte au serveur et les transmet au GestionnaireApplication grce la fonction callback. + @return IEnumerator, c'est une coroutine on l'appelle avec StartCoroutine()*/ + IEnumerator GetServerUpdate() + { + using (UnityWebRequest requete = UnityWebRequest.Get(base_url + "envoyer/" + Token)) + { + yield return requete.SendWebRequest(); + + if (requete.result != UnityWebRequest.Result.Success) + Debug.LogWarning("Erreur update : " + requete.error); + else + { + string json = requete.downloadHandler.text; + ReponseServeur donnees_brutes = JsonUtility.FromJson(json); + Debug.Log("Donnes du serveur : " + json); + // On va essayer de transmettre les donnes vers le gestionnaire du jeu + OnServeurUpdate?.Invoke(donnees_brutes); + } + } + } + + /*@brief, EnvoyerAction() permet d'envoyer des lments au serveur de du type : "{"entree": ""}". + * @param action, la chaine de caractres envoyer au serveur. + @return IEnumerator, c'est une coroutine, on l'appelle avec StartCoroutine().*/ + public IEnumerator EnvoyerAction(string action) + { + if (!est_pret) yield break; + + string jsonBody = "{\"entree\":\"" + action + "\"}"; + byte[] bodyRaw = Encoding.UTF8.GetBytes(jsonBody); + + using (UnityWebRequest request = new UnityWebRequest(base_url + "recevoir/" + Token, "POST")) + { + request.uploadHandler = new UploadHandlerRaw(bodyRaw); + request.downloadHandler = new DownloadHandlerBuffer(); + request.SetRequestHeader("Content-Type", "application/json"); + + yield return request.SendWebRequest(); + + if (request.result != UnityWebRequest.Result.Success) + Debug.LogError("Erreur envoi : " + request.error); + else + Debug.Log("Action envoye : " + action); + } + gestapp.SetEnvoyerRequete(true); + } + + /*@brief, EnvoyerRaccourci() permet de transmettre une interruption au serveur de type : "{"raccourci": ""}". + @param interruption, une chaine de caractre contenant l'interruption. Les interruptions contiennent des valeur entires qui seront transformes par le serveur au besoin (par exemple "1", "2", ...). + @return IEnumerator, c'est une coroutine donc on la dmarre avec StartCoroutine().*/ + public IEnumerator EnvoyerRaccourci(string interruption) + { + if (!est_pret) yield break; + gestapp.SetEnvoyerRequete(true); + + string jsonBody = "{\"raccourci\":\"" + interruption + "\"}"; + byte[] bodyRaw = Encoding.UTF8.GetBytes(jsonBody); + + using (UnityWebRequest request = new UnityWebRequest(base_url + "recevoir/" + Token, "POST")) + { + request.uploadHandler = new UploadHandlerRaw(bodyRaw); + request.downloadHandler = new DownloadHandlerBuffer(); + request.SetRequestHeader("Content-Type", "application/json"); + + yield return request.SendWebRequest(); + + if (request.result != UnityWebRequest.Result.Success) + Debug.LogError("Erreur envoi : " + request.error); + else + Debug.Log("Action envoye : " + interruption); + } + } +} diff --git a/Assets/Scripts/EnvoyerRecevoirDonnees.cs.meta b/Assets/Scripts/EnvoyerRecevoirDonnees.cs.meta new file mode 100644 index 0000000..2c9aa9e --- /dev/null +++ b/Assets/Scripts/EnvoyerRecevoirDonnees.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b3a5933ccf77e5b4dac95a07f78b7914 \ No newline at end of file diff --git a/Assets/Scripts/FPS.cs b/Assets/Scripts/FPS.cs new file mode 100644 index 0000000..2ec7f59 --- /dev/null +++ b/Assets/Scripts/FPS.cs @@ -0,0 +1,16 @@ +using UnityEngine; +using TMPro; + +public class FPS : MonoBehaviour +{ + public TextMeshProUGUI fpsText; + private float deltaTime = 0.0f; + + void Update() + { + deltaTime += (Time.unscaledDeltaTime - deltaTime) * 0.1f; + float fps = 1.0f / deltaTime; + if (fpsText != null) + fpsText.text = Mathf.Ceil(fps).ToString() + " FPS"; + } +} diff --git a/Assets/Scripts/FPS.cs.meta b/Assets/Scripts/FPS.cs.meta new file mode 100644 index 0000000..57f5e8d --- /dev/null +++ b/Assets/Scripts/FPS.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 7dd158344ea9428489f283268329574b \ No newline at end of file diff --git a/Assets/Scripts/FonctionsUtilitaires.cs b/Assets/Scripts/FonctionsUtilitaires.cs new file mode 100644 index 0000000..cb35606 --- /dev/null +++ b/Assets/Scripts/FonctionsUtilitaires.cs @@ -0,0 +1,28 @@ +using System.Collections.Generic; +using UnityEngine; + +/*Rfrence les fonctions gnriques du jeu. On le colle sur un objet vide pour qu'il puisse tre dtect par les autres scripts qui ont besoin de lui . + NOTE : Les fonctions de ce script doivent tre en statique pour que a soit plus facile intgrer.*/ + +public class FonctionsUtilitaires : MonoBehaviour +{ + /*@brief, FindAllWIthTag Retourne un tableau contenant tous les GameObject avec un tag pass en paramtre. + @param1 tag, la chaine de caractre qui contient le tag. + @return, une liste contenant chaque GameObject qui correspond au tag.*/ + public static GameObject[] FindAllWithTag(string tag) + { + List results = new(); + + Transform[] tousLesTransforms = GameObject.FindObjectsByType(FindObjectsInactive.Include, FindObjectsSortMode.None); + + foreach (Transform t in tousLesTransforms) + { + if (t.CompareTag(tag)) + { + results.Add(t.gameObject); + } + } + + return results.ToArray(); + } +} diff --git a/Assets/Scripts/FonctionsUtilitaires.cs.meta b/Assets/Scripts/FonctionsUtilitaires.cs.meta new file mode 100644 index 0000000..5487760 --- /dev/null +++ b/Assets/Scripts/FonctionsUtilitaires.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b9083175e4e8315468d61e23c23acb0e \ No newline at end of file diff --git a/Assets/Scripts/GestionClavier.cs b/Assets/Scripts/GestionClavier.cs new file mode 100644 index 0000000..2ac97e0 --- /dev/null +++ b/Assets/Scripts/GestionClavier.cs @@ -0,0 +1,45 @@ +using UnityEngine; +using UnityEngine.UI; +using UnityEngine.EventSystems; + + +/*Je ne sais pas si ce script sert mais il permet d'ouvrir le clavier systme du Quest. ATTENTION: CES ENC*LS de leurs grands morts de F*P de Meta ne prcisent pas que a ne FONCTIONNERA JAMAIS DANS LINK, IL FAUT ABSOLUMENT LE BUILD SI ON VEUT FAIRE APPARATRE CE CLAVIER DU DMON.*/ +public class GestionClavier : MonoBehaviour, ISelectHandler, IDeselectHandler +{ + public InputField entree; + public OVRVirtualKeyboard clavier; + private TouchScreenKeyboard overlayKeyboard; + + private void Start() + { + if (entree == null) + entree = GetComponent(); + if (clavier == null) + { + clavier = FindAnyObjectByType(FindObjectsInactive.Include); + if (clavier == null) + { + Debug.LogError("Pas de clavier virtuel dans la scne !"); + } + } + + if (clavier != null) + clavier.gameObject.SetActive(false); + } + + public void OnSelect(BaseEventData eventData) + { + Debug.Log("Entre slectionne, clavier affich."); + overlayKeyboard = TouchScreenKeyboard.Open("", TouchScreenKeyboardType.Default); + Debug.Log($"clavier = {clavier}, entree = {entree}, clavier systme = {overlayKeyboard}"); + } + + public void OnDeselect(BaseEventData eventData) + { + Debug.Log("Entre dslectionne, clavier masqu."); + if (clavier != null) + { + clavier.gameObject.SetActive(false); + } + } +} diff --git a/Assets/Scripts/GestionClavier.cs.meta b/Assets/Scripts/GestionClavier.cs.meta new file mode 100644 index 0000000..4d500c2 --- /dev/null +++ b/Assets/Scripts/GestionClavier.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 8dbbddf722056334bbd9addba995c89d \ No newline at end of file diff --git a/Assets/Scripts/GestionTexte.cs b/Assets/Scripts/GestionTexte.cs new file mode 100644 index 0000000..8cc4e72 --- /dev/null +++ b/Assets/Scripts/GestionTexte.cs @@ -0,0 +1,69 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using TMPro; +using UnityEngine; + +public class GestionTexte : MonoBehaviour +{ + public static class CouleursMessage + { + public const int accueil = 0; + public const int contre = 1; + public const int pour = 2; + } + /* @brief MessageAccueil() prend le texte reu par le serveur pour en extraire les messages lis l'accueil du joueur. + @param texte_brut, une liste de chaine de caractres (qui contient donc les messages filtrer. + @return , une structure FIFO pour assurer la suppression des lments aprs leur lecture.*/ + public static Queue<(string message, int index_couleur)> CreerQueueDepuisTexte(List texte_brut, TextMeshProUGUI debug) + { + (string pref, int ind)? AnalyserLigne(string l) + { + int sep = l.IndexOf(';'); + + if (sep < 0) + return null; + + string prefixe_complet = l.Substring(0, sep).Trim(); + string prefixe = prefixe_complet.Trim('[', ']', ' ').ToLowerInvariant(); + debug.text += $"Prefixe trouv : {prefixe}. Il y a {prefixe.Length} caractres dans le prfixe.\n"; + int index; + switch (prefixe) + { + case "accueil": + { + index = CouleursMessage.accueil; + break; + } + case "pour": + { + index = CouleursMessage.pour; + break; + } + case "contre": + { + index = CouleursMessage.contre; + break; + } + default: + return null; + } + return (prefixe, index); + } + IEnumerable<(string message, int index_couleur)> messages_filtres = texte_brut + .Select(l => (l, l_analysee: AnalyserLigne(l.Trim()))) + .Where(m => m.l_analysee.HasValue) + .Select(mbox => + { + var ligne = mbox.l.Trim(); + var index_sep = ligne.IndexOf(';'); + + string finalMsg = ligne.Substring(index_sep + 1).Trim(); + int finalIndex = mbox.l_analysee.Value.ind; + + return (message: finalMsg, index_couleur: finalIndex); + }); + Queue<(string message, int index_couleur)> resultats = new(messages_filtres); + return resultats; + } +} diff --git a/Assets/Scripts/GestionTexte.cs.meta b/Assets/Scripts/GestionTexte.cs.meta new file mode 100644 index 0000000..c937973 --- /dev/null +++ b/Assets/Scripts/GestionTexte.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e7b03c53c16497046bb06b986f119ab5 \ No newline at end of file diff --git a/Assets/Scripts/GestionnaireApplication.cs b/Assets/Scripts/GestionnaireApplication.cs new file mode 100644 index 0000000..edc7092 --- /dev/null +++ b/Assets/Scripts/GestionnaireApplication.cs @@ -0,0 +1,254 @@ +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using Meta.WitAi.TTS.Utilities; +using TMPro; +using UnityEngine; +using UnityEngine.UI; + +/* + * Le script au coeur de l'interface. Il cre un token, permet les changes serveur et redirige les messages du serveur au bon endroit. + */ + +public class GestionnaireApplication : MonoBehaviour +{ + [SerializeField] private FastAPIClient init_token_client; + [SerializeField] private EnvoyerRecevoirDonnees envoyer_recevoir; + [SerializeField] private TextMeshProUGUI DebugsTMP; + [SerializeField] private TMP_InputField Entree; + [SerializeField] private float delai_entre_deux_frappes = 0.04f; + [SerializeField] private ManagerTTS managerTTS; + private bool afficher_entree = false, envoyer_requete = true, continuer = true; + private const string base_url = "http://" + BuildConstants.LocalIP + ":8000/"; + private TextMeshProUGUI accueil; + private TextMeshProUGUI[] pour; + private TextMeshProUGUI[] contre; + private string[] messages; + private Queue<(string message, int index_couleur)> queue_msg; + private EnumFonctionsPreferences efp; + private GameObject texte_prefab, historique_prefab; + private ScrollRect scrollview_historique; + private const float seuil_descente_auto = 0.05f; + public Transform content_historique; + private GameObject bouton_micro; + + private void Awake() + { + efp = FindAnyObjectByType(); + accueil = GameObject.FindWithTag("Accueil").GetComponentInChildren(); + historique_prefab = GameObject.FindWithTag("TextePrefab"); + GameObject clone = Instantiate(historique_prefab); + clone.SetActive(false); + TextMeshProUGUI clone_tmp = clone.GetComponent(); + ConfigurerPrefabModele(clone_tmp); + texte_prefab = clone; + texte_prefab.transform.SetParent(null); + pour = new TextMeshProUGUI[5]; + contre = new TextMeshProUGUI[5]; + pour[0] = GameObject.FindWithTag("Pour").GetComponentInChildren(); + contre[0] = GameObject.FindWithTag("Contre").GetComponentInChildren(); + scrollview_historique = GameObject.FindWithTag("Scrollview").GetComponent(); + bouton_micro = GameObject.FindWithTag("Micro"); + } + + private IEnumerator Start() + { + // Unity appelle Start() tout seul + + Debug.Log($"URL : {base_url}"); + DebugsTMP.text = "URL" + base_url + "\n"; + yield return StartCoroutine(init_token_client.GetTokenDuServeur(base_url)); + envoyer_recevoir.Init(init_token_client.Token,base_url, OnServeurUpdate); + } + + private void ConfigurerPrefabModele(TextMeshProUGUI t) + { + t.text = ""; + t.fontStyle = FontStyles.Normal; + t.fontSize = 12; + t.alignment = TextAlignmentOptions.TopLeft; + RectTransform rect = t.GetComponent(); + rect.anchorMin = new(0,1); + rect.anchorMax = new(1,1); + rect.pivot = rect.anchorMin; + rect.sizeDelta = new(0,25f); + } + + /*@brief OnServeurUpdate() est appele pour dcrypter les messages du serveur. + @param1 donnees, les donnes brutes de la rponse du serveur. On les dfait en plusieurs morceaux(un par entre dans le dictionnaire).*/ + private void OnServeurUpdate (EnvoyerRecevoirDonnees.ReponseServeur donnees) + { + messages = donnees.messages; + DebugsTMP.text = string.Join("\n", donnees.messages); + afficher_entree = donnees.attente_saisie; + continuer = donnees.continuer; + + DemarrerLectureMessages(); + } + + private void Update() + { + if (Entree.IsActive() != afficher_entree) + { + Entree.transform.parent.gameObject.SetActive(afficher_entree); + } + if (!efp.GetSaisieAudio() && Entree.IsActive()) + { + bouton_micro.SetActive(false); + } + else + { + bouton_micro.SetActive(true); + } + + if (scrollview_historique.verticalNormalizedPosition < seuil_descente_auto) + Descendre(); + // Si la barre vient d'apparatre, on la force aller en bas. + else if (scrollview_historique.verticalNormalizedPosition > 1) + Descendre(); + } + + public bool GetEnvoyerRequete() => envoyer_requete; + + public bool SetEnvoyerRequete(bool value) => envoyer_requete = value; + + private void DemarrerLectureMessages() + { + queue_msg = GestionTexte.CreerQueueDepuisTexte(messages.ToList(), DebugsTMP); + StartCoroutine(LireMessagesQueue()); + } + + private IEnumerator LireMessagesQueue() + { + envoyer_requete = false; + Color[] couleurs = efp.GetTabCouleurs(); + while (queue_msg.Count > 0) + { + var message_en_cours = queue_msg.Dequeue(); + string msg = message_en_cours.message; + int index_couleur = message_en_cours.index_couleur; + DebugsTMP.text += ($"J'ai lu le message {msg} avec la couleur {index_couleur}. Sa couleur sera (en RGB) : {couleurs[index_couleur]}. La scrollbar est {scrollview_historique.verticalNormalizedPosition}\n"); + TTSSpeaker speakerActuel = new(); + + switch (index_couleur) + { + case 0: + { + AfficherMessageAccueil(msg); + speakerActuel = managerTTS.bobSpeaker; + break; + } + case 1: + { + DebugsTMP.text += "cas contre"; + AfficherMessageContre(msg); + + speakerActuel = managerTTS.carlSpeaker; + break; + } + case 2: + { + DebugsTMP.text += "cas pour"; + AfficherMessagePour(msg); + speakerActuel = managerTTS.caelSpeaker; + break; + } + + } + + yield return StartCoroutine(EcrireEtLireMessage(msg, couleurs[index_couleur], speakerActuel)); + } + } + + private void AfficherMessageAccueil(string msg) + { + accueil.text = ""; + accueil.text = msg; + } + private void AfficherMessagePour(string msg) + { + pour[0].text = ""; + pour[0].text = msg; + } + private void AfficherMessageContre(string msg) + { + contre[0].text = ""; + contre[0].text = msg; + } + + private IEnumerator EcrireEtLireMessage(string msg, Color couleur, TTSSpeaker ttss) + { + GameObject nouveau_texte = Instantiate(texte_prefab, content_historique); + + nouveau_texte.transform.SetParent(content_historique); + nouveau_texte.SetActive(true); + + TextMeshProUGUI tmp = nouveau_texte.GetComponent(); + efp.SetMessageDansListeHistorique(tmp); + tmp.color = couleur; + tmp.text = ""; + DebugsTMP.text += ($"EcrireMessage(): Ecriture d'un texte avec la couleur {tmp.color}"); + + // Paroles + if(ttss != null) + { + ttss.Speak(msg); + + yield return null; + } + + for (int i = 0; i < msg.Length; i++) + { + tmp.text += msg[i]; + yield return new WaitForSeconds(delai_entre_deux_frappes); + } + tmp.text += "\n"; + + // Attente de la fin de la parole + if (ttss != null) + { + bool isSpeaking = true; + + // Listener temporaire pour synchroniser le texte et l'audio. coroutine + UnityEngine.Events.UnityAction listener = null; + listener = (t) => + { + isSpeaking = false; + // IMPORTANT : Se dsabonner immdiatement pour ne pas interfrer avec d'autres lignes + ttss.Events.OnAudioClipPlaybackFinished.RemoveListener(listener); + }; + + // S'abonner l'vnement du speaker actuel + ttss.Events.OnAudioClipPlaybackFinished.AddListener(listener); + + Debug.Log($"[TTS] Attente de la fin de parole de {ttss.name}..."); + + // Boucle de blocage de la coroutine : on attend que l'vnement soit dclench + while (ttss.IsSpeaking) + { + yield return null; + } + + if (!isSpeaking) + { + ttss.Events.OnAudioClipPlaybackFinished.RemoveListener(listener); + Debug.LogWarning($"[TTS] Avertissement: L'vnement de fin a t manqu pour {ttss.name}. Nettoyage forc du listener."); + } + + Debug.Log($"[TTS] Fin de parole de {ttss.name} atteinte."); + } + } + + public void Descendre() + { + // On force le rafrachissement immdiat du Layout Group + // pour que le Content Size Fitter recalcule la taille totale avant de scroller. + LayoutRebuilder.ForceRebuildLayoutImmediate(scrollview_historique.content); + + // Ajuste la position verticale au maximum (le bas) + // La position verticale est 0.0 en haut et 1.0 en bas de la Scroll View. + scrollview_historique.verticalNormalizedPosition = 0f; + } + + public bool GetAffcherEntree() => afficher_entree; +} diff --git a/Assets/Scripts/GestionnaireApplication.cs.meta b/Assets/Scripts/GestionnaireApplication.cs.meta new file mode 100644 index 0000000..debcbb5 --- /dev/null +++ b/Assets/Scripts/GestionnaireApplication.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: daf83f5790a1ebc4b85208e164bc7016 \ No newline at end of file diff --git a/Assets/Scripts/HUDMain.cs b/Assets/Scripts/HUDMain.cs new file mode 100644 index 0000000..674381e --- /dev/null +++ b/Assets/Scripts/HUDMain.cs @@ -0,0 +1,19 @@ +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR; + +public class HUDMain : MonoBehaviour +{ + [SerializeField] private RectTransform m_window; + [SerializeField] private Transform controller; + + void Update() + { + Quaternion rotation_offset = Quaternion.Euler(45, 0, 0); + m_window.position = controller.TransformPoint(new Vector3(0f, 0.1f, 0f)); + m_window.rotation = controller.rotation * rotation_offset; + + InputDevice mainGauche = InputDevices.GetDeviceAtXRNode(XRNode.LeftHand); + + } +} diff --git a/Assets/Scripts/HUDMain.cs.meta b/Assets/Scripts/HUDMain.cs.meta new file mode 100644 index 0000000..d629d06 --- /dev/null +++ b/Assets/Scripts/HUDMain.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 8dbbc65f98bedc9459b94a96e3eaf813 \ No newline at end of file diff --git a/Assets/Scripts/InitConnexionServeur.cs b/Assets/Scripts/InitConnexionServeur.cs new file mode 100644 index 0000000..27ce54b --- /dev/null +++ b/Assets/Scripts/InitConnexionServeur.cs @@ -0,0 +1,49 @@ +using System.Collections; +using System.Net; +using System.Net.Sockets; +using TMPro; +using UnityEditor; +using UnityEngine; +using UnityEngine.Networking; + +// Utilis une seule fois par EnvoyerRecevoirDonnees pour crer un token + +public class FastAPIClient : MonoBehaviour +{ + [System.Serializable] + public class TokenInit + { + public string token; + } + public string Token = ""; + + + /*@brief, GetTokenDuServeur() rcupre un token et le stocke dans une chaine de caractres Token. + @param1 API_URL, une chaine de caractre qui contient l'adresse du serveur web. + @return IEnumerator, c'est une coroutine, on la lance avec StartCoroutine().*/ + public IEnumerator GetTokenDuServeur(string API_URL) + { + using (UnityWebRequest request = UnityWebRequest.Get(API_URL)) + { + // Envoie la requte et attend la rponse + yield return request.SendWebRequest(); + + // Vrifie les erreurs rseau ou HTTP + if (request.result != UnityWebRequest.Result.Success) + { + Debug.LogError("Erreur : " + request.error); + } + else + { + // Rcupre la rponse JSON brute + string json = request.downloadHandler.text; + Debug.Log("Rponse brute : " + json); + + // Dsrialise le JSON + TokenInit token = JsonUtility.FromJson(json); + Token = token.token; + } + } + } +} + diff --git a/Assets/Scripts/InitConnexionServeur.cs.meta b/Assets/Scripts/InitConnexionServeur.cs.meta new file mode 100644 index 0000000..9970d29 --- /dev/null +++ b/Assets/Scripts/InitConnexionServeur.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 883d2ea4411452145a4a4d88824cca26 \ No newline at end of file diff --git a/Assets/Scripts/InteractionJoueur.cs b/Assets/Scripts/InteractionJoueur.cs new file mode 100644 index 0000000..e0f4220 --- /dev/null +++ b/Assets/Scripts/InteractionJoueur.cs @@ -0,0 +1,42 @@ +using UnityEngine; +using UnityEngine.XR; + +public class InteractionJoueur : MonoBehaviour +{ + [SerializeField] public GameObject hud; + private bool hud_displayed = true; + bool deja_presse = false; + + // Update is called once per frame + private void Update() + { + InputDevice mainDroite = InputDevices.GetDeviceAtXRNode(XRNode.RightHand); + InputDevice mainGauche = InputDevices.GetDeviceAtXRNode(XRNode.LeftHand); + + if (mainDroite.TryGetFeatureValue(CommonUsages.triggerButton, out bool gachettePressee) + && gachettePressee) + { + Debug.Log("Gachette presse."); + float rayonInteraction = 2f; + Collider[] collisions = Physics.OverlapSphere(transform.position, rayonInteraction); + foreach (Collider col in collisions) + { + if (col.TryGetComponent(out PNJInteraction pnj_i)) + { + pnj_i.Interaction(); + } + } + } + + if (mainGauche.TryGetFeatureValue(CommonUsages.menuButton, out bool menuPresse)) + { + if (menuPresse && !deja_presse) + { + hud.SetActive(!hud_displayed); + hud_displayed = !hud_displayed; + } + + deja_presse = menuPresse; + } + } +} diff --git a/Assets/Scripts/InteractionJoueur.cs.meta b/Assets/Scripts/InteractionJoueur.cs.meta new file mode 100644 index 0000000..e591d7b --- /dev/null +++ b/Assets/Scripts/InteractionJoueur.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: cd95f96693bec0a409fa0a398bd370f0 \ No newline at end of file diff --git a/Assets/Scripts/LigneTexteTTS.cs b/Assets/Scripts/LigneTexteTTS.cs new file mode 100644 index 0000000..8f4e60a --- /dev/null +++ b/Assets/Scripts/LigneTexteTTS.cs @@ -0,0 +1,14 @@ +using Meta.WitAi.TTS.Utilities; +using UnityEngine; + +public class LigneTexteTTS +{ + public TTSSpeaker speaker; + public string text; + + public LigneTexteTTS(TTSSpeaker speaker, string text) + { + this.speaker = speaker; + this.text = text; + } +} diff --git a/Assets/Scripts/LigneTexteTTS.cs.meta b/Assets/Scripts/LigneTexteTTS.cs.meta new file mode 100644 index 0000000..0de1d91 --- /dev/null +++ b/Assets/Scripts/LigneTexteTTS.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 01692cd72f1657242b5fd1d18df516b4 \ No newline at end of file diff --git a/Assets/Scripts/ManagerTTS.cs b/Assets/Scripts/ManagerTTS.cs new file mode 100644 index 0000000..e174aa4 --- /dev/null +++ b/Assets/Scripts/ManagerTTS.cs @@ -0,0 +1,11 @@ +using UnityEngine; +using Meta.WitAi.TTS.Utilities; + +public class ManagerTTS : MonoBehaviour +{ + // Rfrences aux speakers ( glisser dans l'Inspector) + public TTSSpeaker bobSpeaker; + public TTSSpeaker caelSpeaker; + public TTSSpeaker carlSpeaker; + +} \ No newline at end of file diff --git a/Assets/Scripts/ManagerTTS.cs.meta b/Assets/Scripts/ManagerTTS.cs.meta new file mode 100644 index 0000000..1b868e5 --- /dev/null +++ b/Assets/Scripts/ManagerTTS.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: a9515da81d9fdab4e83868e6cadec01a \ No newline at end of file diff --git a/Assets/Scripts/MiseAJourDebug.cs b/Assets/Scripts/MiseAJourDebug.cs new file mode 100644 index 0000000..2ba5828 --- /dev/null +++ b/Assets/Scripts/MiseAJourDebug.cs @@ -0,0 +1,17 @@ +using UnityEngine; +using TMPro; + +public class MiseAJourDebug : MonoBehaviour +{ + [SerializeField] private TextMeshProUGUI Debug_text; + + void OnEnable() + { + Application.logMessageReceived += GererLog; + } + + void GererLog(string logString, string stackTrace, LogType type) + { + Debug_text.text = $"{type}: {logString} at {stackTrace}"; + } +} diff --git a/Assets/Scripts/MiseAJourDebug.cs.meta b/Assets/Scripts/MiseAJourDebug.cs.meta new file mode 100644 index 0000000..a983e60 --- /dev/null +++ b/Assets/Scripts/MiseAJourDebug.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 86d52aaa5462ee345b998fd84b9a253b \ No newline at end of file diff --git a/Assets/Scripts/MonTest.cs b/Assets/Scripts/MonTest.cs new file mode 100644 index 0000000..0ab0d2c --- /dev/null +++ b/Assets/Scripts/MonTest.cs @@ -0,0 +1,19 @@ +using UnityEngine; +using TMPro; +using UnityEngine.EventSystems; + +/*Faites vos tests avec ce fichier. RETIRER DE LA VERSION FINALE.*/ + +public class TestInputsOVR : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler +{ + public TextMeshProUGUI debugText; + + public void OnPointerEnter(PointerEventData eventData) + { + Debug.Log("Pointeur entr sur bouton Fermer."); + } + public void OnPointerExit(PointerEventData eventData) + { + Debug.Log("Pointeur sorti du bouton Fermer."); + } +} diff --git a/Assets/Scripts/MonTest.cs.meta b/Assets/Scripts/MonTest.cs.meta new file mode 100644 index 0000000..f4cee28 --- /dev/null +++ b/Assets/Scripts/MonTest.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 3eec3a2367d536a488ee8560da75edbc \ No newline at end of file diff --git a/Assets/Scripts/PNJInteraction.cs b/Assets/Scripts/PNJInteraction.cs new file mode 100644 index 0000000..0625871 --- /dev/null +++ b/Assets/Scripts/PNJInteraction.cs @@ -0,0 +1,32 @@ +using UnityEngine; +using UnityEngine.Networking; +using System.Collections; + +public class PNJInteraction : MonoBehaviour +{ + [SerializeField] private AudioSource audio; + public void Interaction() + { + Debug.Log("Bonjour, je suis un \"Nolant Peasant Blue\"."); + audio.Play(); + StartCoroutine(MajSource()); + } + + IEnumerator MajSource() + { + string url = "/audio/2160"; + using (UnityWebRequest req = UnityWebRequestMultimedia.GetAudioClip(BuildConstants.LocalIP + ":8000" + url, AudioType.WAV)) + { + yield return req.SendWebRequest(); + + if (req.result == UnityWebRequest.Result.Success) + { + audio.clip = DownloadHandlerAudioClip.GetContent(req); + } + else + { + Debug.LogError(req.error); + } + } + } +} diff --git a/Assets/Scripts/PNJInteraction.cs.meta b/Assets/Scripts/PNJInteraction.cs.meta new file mode 100644 index 0000000..ae220fe --- /dev/null +++ b/Assets/Scripts/PNJInteraction.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 56c95b785ef8e2447a5a57e4cfaaedf4 \ No newline at end of file diff --git a/Assets/Scripts/PositionEtRotationFenetrePreferences.cs b/Assets/Scripts/PositionEtRotationFenetrePreferences.cs new file mode 100644 index 0000000..6fd907d --- /dev/null +++ b/Assets/Scripts/PositionEtRotationFenetrePreferences.cs @@ -0,0 +1,60 @@ +using UnityEngine; + +/* Collez ce script au canvas de la fentre des prfrences pour la placer correctement dans l'espace.*/ +public class PositionEtRotationFenetrePreferences : MonoBehaviour +{ + private Canvas canvas; + private Transform camera_transform; + private CanvasGroup prefab; + + private void Start() + { + prefab = GameObject.FindWithTag("FenetrePrefs").GetComponent(); + canvas = GetComponent(); + OVRCameraRig rig = FindAnyObjectByType(); + camera_transform = rig.transform; + + PositionnerEtRotaterFenetre(); + } + + private void Update() + { + // Si c pas visible on repositionne + if (prefab.alpha == 0f) + { + PositionnerEtRotaterFenetre(); + } + + } + + public void PositionnerEtRotaterFenetre() + { + Debug.Log("PositionnerEtRotaterFenetre() : Entre."); + if (canvas == null || camera_transform == null) + { + Debug.LogError("CanvasParent ou CameraTransform non assign !"); + return; + } + + // Positionner le canvas devant le joueur + Vector3 offset = camera_transform.forward * 0.40f + Vector3.up * 0.7f; // 40 cm devant, 70 cm plus haut + Vector3 targetPosition = camera_transform.position + offset; + + Vector3 direction_joueur = camera_transform.forward; + direction_joueur.y = 0; + + // viter des erreurs + if (direction_joueur == Vector3.zero) + direction_joueur = Vector3.forward; + else + direction_joueur.Normalize(); + + // Faire face la camra + Quaternion targetRotation = Quaternion.LookRotation(direction_joueur, Vector3.up); + + targetRotation *= Quaternion.Euler(30, 0, 0); + + // Appliquer la position et la rotation au canvas + canvas.transform.SetPositionAndRotation(targetPosition, targetRotation); + } +} diff --git a/Assets/Scripts/PositionEtRotationFenetrePreferences.cs.meta b/Assets/Scripts/PositionEtRotationFenetrePreferences.cs.meta new file mode 100644 index 0000000..41bee53 --- /dev/null +++ b/Assets/Scripts/PositionEtRotationFenetrePreferences.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: bc560ecd6936ee440ac2a92f970db479 \ No newline at end of file diff --git a/Assets/Scripts/PositionEtRotationHistorique.cs b/Assets/Scripts/PositionEtRotationHistorique.cs new file mode 100644 index 0000000..77a0680 --- /dev/null +++ b/Assets/Scripts/PositionEtRotationHistorique.cs @@ -0,0 +1,36 @@ +using System.Collections; +using UnityEngine; + +public class PositionEtRotationHistorique : MonoBehaviour +{ + private RectTransform historique; + private Transform camera_transform; + // Start is called once before the first execution of Update after the MonoBehaviour is created + void Start() + { + historique = GameObject.FindWithTag("HistoriqueMsg").GetComponent(); + camera_transform = FindAnyObjectByType().centerEyeAnchor; + StartCoroutine(InitialiserHistorique()); + } + + private IEnumerator InitialiserHistorique() + { + // On attend la prochaine image (cd la premire image du programme) pour tre sr d'avoir la bonne hauteur. + yield return null; + float taille_y_historique = historique.sizeDelta.y; + float taille_y_a_l_echelle = historique.lossyScale.y; + float decalage_vertical_centre = (taille_y_historique / 2.0f) * taille_y_a_l_echelle; + float distance = 0.50f; + float decalage_droit = 0.30f; + + Vector3 offset = camera_transform.forward * distance + + camera_transform.up * (0.15f - decalage_vertical_centre) + + camera_transform.right * decalage_droit; + Vector3 targetPosition = camera_transform.position + offset; + + Vector3 directionCamera = camera_transform.position - targetPosition; + directionCamera.y = 0; + Quaternion regarderCamera = Quaternion.LookRotation(-directionCamera); + historique.transform.SetPositionAndRotation(targetPosition, regarderCamera); + } +} diff --git a/Assets/Scripts/PositionEtRotationHistorique.cs.meta b/Assets/Scripts/PositionEtRotationHistorique.cs.meta new file mode 100644 index 0000000..96f1ced --- /dev/null +++ b/Assets/Scripts/PositionEtRotationHistorique.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 43ee61caa71f0774695520d49a722b33 \ No newline at end of file diff --git a/Assets/Scripts/PositionEtRotationMenu.cs b/Assets/Scripts/PositionEtRotationMenu.cs new file mode 100644 index 0000000..df5fff9 --- /dev/null +++ b/Assets/Scripts/PositionEtRotationMenu.cs @@ -0,0 +1,65 @@ +using UnityEngine; + +/* + Collez ceci sur un canvas pour le dplacer en face de la camra du joueur, sur une certaine position et non inclin. + */ + +public class PositionEtRotationMenu : MonoBehaviour +{ + private Canvas canvas; + private Transform camera_transform; + private bool mettre_a_jour_affichage = true; + + private void OnDisable() + { + mettre_a_jour_affichage = true; + } + + private void Start() + { + canvas = GetComponent(); + OVRCameraRig rig = FindAnyObjectByType(); + camera_transform = rig.transform; + PositionnerEtRotaterMenu(); + } + + private void Update() + { + if(this.gameObject.activeInHierarchy && mettre_a_jour_affichage) + { + PositionnerEtRotaterMenu(); + mettre_a_jour_affichage = false; + } + } + + void PositionnerEtRotaterMenu() + { + if (canvas == null || camera_transform == null) + { + Debug.LogError("CanvasParent ou CameraTransform non assign !"); + return; + } + + // Positionner le canvas devant le joueur + Vector3 offset = camera_transform.forward * 0.40f + Vector3.up * 0.7f; // 40 cm devant, 70 cm plus haut + Vector3 targetPosition = camera_transform.position + offset; + + Vector3 direction_joueur = camera_transform.forward; + direction_joueur.y = 0; + + // viter des erreurs + if (direction_joueur == Vector3.zero) + direction_joueur = Vector3.forward; + else + direction_joueur.Normalize(); + + // Faire face la camra + Quaternion targetRotation = Quaternion.LookRotation(direction_joueur, Vector3.up); + + targetRotation *= Quaternion.Euler(30, 0, 0); + + // Appliquer la position et la rotation au canvas + canvas.transform.SetPositionAndRotation(targetPosition, targetRotation); + } +} + diff --git a/Assets/Scripts/PositionEtRotationMenu.cs.meta b/Assets/Scripts/PositionEtRotationMenu.cs.meta new file mode 100644 index 0000000..985415e --- /dev/null +++ b/Assets/Scripts/PositionEtRotationMenu.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b6d529719047c6546bdedb62226bed83 \ No newline at end of file diff --git a/Assets/Scripts/PositionRotationEntreeUtilisateur.cs b/Assets/Scripts/PositionRotationEntreeUtilisateur.cs new file mode 100644 index 0000000..3d6c80b --- /dev/null +++ b/Assets/Scripts/PositionRotationEntreeUtilisateur.cs @@ -0,0 +1,75 @@ + +/* + Collez ce script sur un TMP_InputField si vous voulez le placer devant la camra du joueur. +NOTE: Il faut le placer en tant que composant du TMP_InputField. +REQUIS: un Canvas, un TMP_InputFIeld et un OVRCameraRig dans la scne. + */ + +using TMPro; +using Unity.AppUI.UI; +using Unity.VisualScripting; +using UnityEngine; + +public class PositionRotationEntreeUtilisateur : MonoBehaviour +{ + private Transform conteneur_transform; + private Transform camera_transform; + private GestionnaireApplication ga; + private bool mettre_a_jour_affichage = true; + + private void OnDisable() + { + mettre_a_jour_affichage = true; + } + + void Start() + { + conteneur_transform = GetComponent(); + OVRCameraRig rig = FindAnyObjectByType(); + camera_transform = rig.transform; + ga = FindAnyObjectByType(); + + PositionnerEtRotaterEntree(); + } + + // Si l'entre est cache on met jour sa position pour que quand l'utilisateur la rappelle elle se replace vers lui. + void Update() + { + if(ga.GetAffcherEntree() && mettre_a_jour_affichage) + { + PositionnerEtRotaterEntree(); + mettre_a_jour_affichage = false; + } + } + + public void PositionnerEtRotaterEntree() + { + Debug.Log("PositionnerEtRotaterEntree() : Entre."); + if (transform == null || camera_transform == null) + { + Debug.LogError("CanvasParent ou CameraTransform non assign !"); + return; + } + + // Positionner le canvas devant le joueur + Vector3 offset = camera_transform.forward * 0.40f + Vector3.up * 0.7f; // 40 cm devant, 70 cm plus haut + Vector3 targetPosition = camera_transform.position + offset; + + Vector3 direction_joueur = camera_transform.forward; + direction_joueur.y = 0; + + // viter des erreurs + if (direction_joueur == Vector3.zero) + direction_joueur = Vector3.forward; + else + direction_joueur.Normalize(); + + // Faire face la camra + Quaternion targetRotation = Quaternion.LookRotation(direction_joueur, Vector3.up); + + targetRotation *= Quaternion.Euler(50, 0, 0); + + // Appliquer la position et la rotation au canvas + conteneur_transform.transform.SetPositionAndRotation(targetPosition, targetRotation); + } +} diff --git a/Assets/Scripts/PositionRotationEntreeUtilisateur.cs.meta b/Assets/Scripts/PositionRotationEntreeUtilisateur.cs.meta new file mode 100644 index 0000000..98e0a36 --- /dev/null +++ b/Assets/Scripts/PositionRotationEntreeUtilisateur.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e050578356dd7b94b8690fdfb1d58605 \ No newline at end of file diff --git a/Assets/Scripts/ReplacerJoueur.cs b/Assets/Scripts/ReplacerJoueur.cs new file mode 100644 index 0000000..0a092be --- /dev/null +++ b/Assets/Scripts/ReplacerJoueur.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class ReplacerJoueur : MonoBehaviour +{ + private void OnTriggerEnter(Collider other) + { + Debug.LogWarning("Entre dans la collision " + other.name); + if (other.CompareTag("Player")) + other.transform.position = new Vector3(0f, 1f, 4f); + } + +} diff --git a/Assets/Scripts/ReplacerJoueur.cs.meta b/Assets/Scripts/ReplacerJoueur.cs.meta new file mode 100644 index 0000000..7e6c40f --- /dev/null +++ b/Assets/Scripts/ReplacerJoueur.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b23de8671ae61064a8eea338dc895c83 \ No newline at end of file diff --git a/Assets/Scripts/RunWhisper.cs b/Assets/Scripts/RunWhisper.cs new file mode 100644 index 0000000..250095f --- /dev/null +++ b/Assets/Scripts/RunWhisper.cs @@ -0,0 +1,392 @@ +using System.Collections.Generic; +using UnityEngine; +using Unity.InferenceEngine; +using System.Text; +using Unity.Collections; +using Newtonsoft.Json; +using Unity.AppUI.UI; +using TMPro; +using System.Threading.Tasks; + + +/* + NOTE : Utiliser ce modèle reste le meilleur choix pour le Quest mais expose à une perte de FPS d'environ 50 (72 FPS -> 20 FPS) pendant l'inférence (entre 1 et 5 secondes). + */ +public class RunWhisper : MonoBehaviour +{ + Worker decoder1, decoder2, encoder, spectrogram; + Worker argmax; + + private AudioClip audioClip; + private string microphone_name; + private float duree_defaut = 30f; + public event System.Action OnTranscriptionComplete; + + // This is how many tokens you want. It can be adjusted. + const int maxTokens = 100; + + // Special tokens see added tokens file for details + const int END_OF_TEXT = 50257; + const int START_OF_TRANSCRIPT = 50258; + const int ENGLISH = 50259; + const int GERMAN = 50261; + const int FRENCH = 50265; + const int TRANSCRIBE = 50359; //for speech-to-text in specified language + const int TRANSLATE = 50358; //for speech-to-text then translate to English + const int NO_TIME_STAMPS = 50363; + const int START_TIME = 50364; + + int numSamples; + string[] tokens; + + int tokenCount = 0; + NativeArray outputTokens; + + // Used for special character decoding + int[] whiteSpaceCharacters = new int[256]; + + Tensor encodedAudio; + + bool transcribe = false; + string outputString = ""; + + // Maximum size of audioClip (30s at 16kHz) + const int maxSamples = 30 * 16000; + + public ModelAsset audioDecoder1, audioDecoder2; + public ModelAsset audioEncoder; + public ModelAsset logMelSpectro; + + // Mes variables à moi + public TMP_Dropdown choix_langues; + private static readonly int[] CODE_LANGUES_WHISPER = new int[] + { // FR,EN,IT,ES,DE -> je les ai trouvés sur Hugging Face -> OpenAI -> Whisper -> added_tokens.json, *tout en bas*. + 50265,50259,50274,50262,50261 + }; + private int preferred_language = 50265; + private bool enregistrement_en_cours = false; + private GameObject bouton_menu; + + /*On démarre le moteur d'inférence, on ne le fait qu'une fois parce que la complexité temporelle est grande (Worker). En plus, ces structures sont réutilisables. */ + private void Awake() + { + SetupWhiteSpaceShifts(); + GetTokens(); + + decoder1 = new Worker(ModelLoader.Load(audioDecoder1), BackendType.GPUCompute); + decoder2 = new Worker(ModelLoader.Load(audioDecoder2), BackendType.GPUCompute); + + // Ce graphe permet de calculer la probabilité de tous les jetons et avec ArgMax on récupère le jeton avec la plus haute valeur. + FunctionalGraph graph = new(); + var input = graph.AddInput(DataType.Float, new DynamicTensorShape(1, 1, 51865)); + var amax = Functional.ArgMax(input, -1, false); + var selectTokenModel = graph.Compile(amax); + argmax = new Worker(selectTokenModel, BackendType.GPUCompute); + + encoder = new Worker(ModelLoader.Load(audioEncoder), BackendType.GPUCompute); + spectrogram = new Worker(ModelLoader.Load(logMelSpectro), BackendType.GPUCompute); + if (choix_langues != null) + { + choix_langues.onValueChanged.AddListener(SetLangueUtilisee); + } + + if (Microphone.devices.Length > 0) + { + microphone_name = Microphone.devices[0]; + } + else + { + Debug.LogError("Aucun microphone trouvé. Veuillez vérifier votre matériel."); + return; + } + bouton_menu = GameObject.FindWithTag("Micro"); + } + + public void Start() + { + outputTokens = new NativeArray(maxTokens, Allocator.Persistent); + tokensTensor = new Tensor(new TensorShape(1, maxTokens)); + ComputeTensorData.Pin(tokensTensor); + tokensTensor.Reshape(new TensorShape(1, tokenCount)); + tokensTensor.dataOnBackend.Upload(outputTokens, tokenCount); + + lastToken = new NativeArray(1, Allocator.Persistent); lastToken[0] = NO_TIME_STAMPS; + lastTokenTensor = new Tensor(new TensorShape(1, 1), new[] { NO_TIME_STAMPS }); + } + Awaitable m_Awaitable; + + NativeArray lastToken; + Tensor lastTokenTensor; + Tensor tokensTensor; + Tensor audioInput; + + void LoadAudio(int echantillons_reels) + { + var data = new float[maxSamples]; + audioClip.GetData(data, 0); + audioInput = new Tensor(new TensorShape(1, maxSamples), data); + } + + async Task EncodeAudio() + { + Debug.Log("EncodeAudio() Entrée."); + if(encodedAudio != null) + { + encodedAudio.Dispose(); + encodedAudio = null; + } + + spectrogram.Schedule(audioInput); + + await Task.Yield(); + var logmel = spectrogram.PeekOutput() as Tensor; + Debug.Log("EncodeAudio() : Création du spectrogramme."); + + encoder.Schedule(logmel); + Debug.Log("EncodeAudio() : Encodage."); + encodedAudio = encoder.PeekOutput() as Tensor; + } + async Awaitable InferenceStep() + { + decoder1.SetInput("input_ids", tokensTensor); + decoder1.SetInput("encoder_hidden_states", encodedAudio); + decoder1.Schedule(); + + var past_key_values_0_decoder_key = decoder1.PeekOutput("present.0.decoder.key") as Tensor; + var past_key_values_0_decoder_value = decoder1.PeekOutput("present.0.decoder.value") as Tensor; + var past_key_values_1_decoder_key = decoder1.PeekOutput("present.1.decoder.key") as Tensor; + var past_key_values_1_decoder_value = decoder1.PeekOutput("present.1.decoder.value") as Tensor; + var past_key_values_2_decoder_key = decoder1.PeekOutput("present.2.decoder.key") as Tensor; + var past_key_values_2_decoder_value = decoder1.PeekOutput("present.2.decoder.value") as Tensor; + var past_key_values_3_decoder_key = decoder1.PeekOutput("present.3.decoder.key") as Tensor; + var past_key_values_3_decoder_value = decoder1.PeekOutput("present.3.decoder.value") as Tensor; + + var past_key_values_0_encoder_key = decoder1.PeekOutput("present.0.encoder.key") as Tensor; + var past_key_values_0_encoder_value = decoder1.PeekOutput("present.0.encoder.value") as Tensor; + var past_key_values_1_encoder_key = decoder1.PeekOutput("present.1.encoder.key") as Tensor; + var past_key_values_1_encoder_value = decoder1.PeekOutput("present.1.encoder.value") as Tensor; + var past_key_values_2_encoder_key = decoder1.PeekOutput("present.2.encoder.key") as Tensor; + var past_key_values_2_encoder_value = decoder1.PeekOutput("present.2.encoder.value") as Tensor; + var past_key_values_3_encoder_key = decoder1.PeekOutput("present.3.encoder.key") as Tensor; + var past_key_values_3_encoder_value = decoder1.PeekOutput("present.3.encoder.value") as Tensor; + + decoder2.SetInput("input_ids", lastTokenTensor); + decoder2.SetInput("past_key_values.0.decoder.key", past_key_values_0_decoder_key); + decoder2.SetInput("past_key_values.0.decoder.value", past_key_values_0_decoder_value); + decoder2.SetInput("past_key_values.1.decoder.key", past_key_values_1_decoder_key); + decoder2.SetInput("past_key_values.1.decoder.value", past_key_values_1_decoder_value); + decoder2.SetInput("past_key_values.2.decoder.key", past_key_values_2_decoder_key); + decoder2.SetInput("past_key_values.2.decoder.value", past_key_values_2_decoder_value); + decoder2.SetInput("past_key_values.3.decoder.key", past_key_values_3_decoder_key); + decoder2.SetInput("past_key_values.3.decoder.value", past_key_values_3_decoder_value); + + decoder2.SetInput("past_key_values.0.encoder.key", past_key_values_0_encoder_key); + decoder2.SetInput("past_key_values.0.encoder.value", past_key_values_0_encoder_value); + decoder2.SetInput("past_key_values.1.encoder.key", past_key_values_1_encoder_key); + decoder2.SetInput("past_key_values.1.encoder.value", past_key_values_1_encoder_value); + decoder2.SetInput("past_key_values.2.encoder.key", past_key_values_2_encoder_key); + decoder2.SetInput("past_key_values.2.encoder.value", past_key_values_2_encoder_value); + decoder2.SetInput("past_key_values.3.encoder.key", past_key_values_3_encoder_key); + decoder2.SetInput("past_key_values.3.encoder.value", past_key_values_3_encoder_value); + + decoder2.Schedule(); + + var logits = decoder2.PeekOutput("logits") as Tensor; + argmax.Schedule(logits); + using var t_Token = await argmax.PeekOutput().ReadbackAndCloneAsync() as Tensor; + int index = t_Token[0]; + + outputTokens[tokenCount] = lastToken[0]; + lastToken[0] = index; + tokenCount++; + tokensTensor.Reshape(new TensorShape(1, tokenCount)); + tokensTensor.dataOnBackend.Upload(outputTokens, tokenCount); + lastTokenTensor.dataOnBackend.Upload(lastToken, 1); + + if (index == END_OF_TEXT) + { + transcribe = false; + } + else if (index < tokens.Length) + { + outputString += GetUnicodeText(tokens[index]); + } + + Debug.Log($"RunWhisper() : {outputString}"); + } + + // Tokenizer + public TextAsset vocabAsset; + + /* Cette fonction récupère les tokens présents dans le fichier vocab.json*/ + void GetTokens() + { + var vocab = JsonConvert.DeserializeObject>(vocabAsset.text); + tokens = new string[vocab.Count]; + foreach (var item in vocab) + { + tokens[item.Value] = item.Key; + } + } + + string GetUnicodeText(string text) + { + var bytes = Encoding.GetEncoding("ISO-8859-1").GetBytes(ShiftCharacterDown(text)); + return Encoding.UTF8.GetString(bytes); + } + + string ShiftCharacterDown(string text) + { + string outText = ""; + foreach (char letter in text) + { + outText += ((int)letter <= 256) ? letter : (char)whiteSpaceCharacters[(int)(letter - 256)]; + } + return outText; + } + + void SetupWhiteSpaceShifts() + { + for (int i = 0, n = 0; i < 256; i++) + { + if (IsWhiteSpace((char)i)) whiteSpaceCharacters[n++] = i; + } + } + + bool IsWhiteSpace(char c) + { + return !(('!' <= c && c <= '~') || ('�' <= c && c <= '�') || ('�' <= c && c <= '�')); + } + + public void StartMicrophoneInference() + { + if(audioInput != null) + { + audioInput.Dispose(); + audioInput = null; + } + + if (Microphone.IsRecording(microphone_name)) + { + Microphone.End(microphone_name); + } + + audioClip = Microphone.Start(microphone_name, false, (int)duree_defaut, 16000); + outputString = string.Empty; + + for (int i = 0; i < maxTokens; i++) + { + outputTokens[i] = 0; // Vider l'historique des tokens + } + + tokenCount = 0; + + Debug.Log("Enregistrement démarré. Durée max: " + duree_defaut + "s."); + + Invoke(nameof(StopMicrophoneAndStartInference), duree_defaut); + } + + private async void StopMicrophoneAndStartInference() + { + if (!enregistrement_en_cours) + return; + + CancelInvoke(nameof(StopMicrophoneAndStartInference)); + int position_arret = Microphone.GetPosition(microphone_name); + Microphone.End(microphone_name); + + if(bouton_menu != null) + { + bouton_menu.GetComponent().SetMicroActif(false); + bouton_menu.GetComponent().RetrecirMicro(); + } + + await Task.Delay(100); + + Debug.Log($"Enregistrement terminé. Lancement de l'inférence... avec une position égale à : {position_arret}"); + + if (audioClip != null) + { + LoadAudio(position_arret); + + await Task.Yield(); + await EncodeAudio(); + transcribe = true; + + StartTranscriptionLoop(); + } + else + { + Debug.LogError("Échec de l'enregistrement de l'AudioClip."); + } + } + + public async void StartTranscriptionLoop() + { + outputTokens[0] = START_OF_TRANSCRIPT; + outputTokens[1] = preferred_language; //FRENCH; //ENGLISH; //... + outputTokens[2] = TRANSCRIBE; //TRANSLATE;// + //outputTokens[3] = NO_TIME_STAMPS;// START_TIME;// + tokenCount = 3; + tokensTensor.Reshape(new TensorShape(1, tokenCount)); + tokensTensor.dataOnBackend.Upload(outputTokens, tokenCount); + lastToken[0] = NO_TIME_STAMPS; + lastTokenTensor.dataOnBackend.Upload(lastToken, 1); + while (true) + { + if (!transcribe || tokenCount >= (outputTokens.Length - 1)) + { + OnTranscriptionComplete?.Invoke(outputString); + return; + } + m_Awaitable = InferenceStep(); + await m_Awaitable; + } + } + + public int GetPreferredLanguage(int indice) + { + return CODE_LANGUES_WHISPER[indice]; + } + + /*@brief La procédure SetLangueUtilisee() permet de mettre à jour le langage reconnu par le modèle Whisper. Lors d'un enregistrement audio, le modèle cherchera à déterminer des mots de la langue passée en paramètre. + @param index, un entier index qui est relié au tableau constant CODE_LANGUE_WHISPER. + La fonction met à jour preferred_language vers une nouvelle valeur (par défaut sur français.*/ + public void SetLangueUtilisee(int index) + { + Debug.Log($"SetLangueUtilisee() Valeur du paramètre : {index}"); + preferred_language = GetPreferredLanguage(index); + } + + public void DemarrerEnregistrement() + { + // Si on est déjà en train de calculer, on ignore le clic pour éviter les bugs + //if (enregistrement_en_cours) return; + + Debug.Log($"Clic Micro. Enregistrement en cours : {enregistrement_en_cours}"); + + if (enregistrement_en_cours) + { + // On lance la version asynchrone (sans 'await' ici car DemarrerEnregistrement est void) + StopMicrophoneAndStartInference(); + enregistrement_en_cours = false; + } + else + { + StartMicrophoneInference(); + enregistrement_en_cours = true; + } + } + + private void OnDestroy() + { + decoder1.Dispose(); + decoder2.Dispose(); + encoder.Dispose(); + spectrogram.Dispose(); + argmax.Dispose(); + audioInput.Dispose(); + lastTokenTensor.Dispose(); + tokensTensor.Dispose(); + } +} diff --git a/Assets/Scripts/RunWhisper.cs.meta b/Assets/Scripts/RunWhisper.cs.meta new file mode 100644 index 0000000..134d9a2 --- /dev/null +++ b/Assets/Scripts/RunWhisper.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 05e8a61ac02f22f4780fa659cb41a54b \ No newline at end of file diff --git a/Assets/Settings.meta b/Assets/Settings.meta new file mode 100644 index 0000000..39b94dd --- /dev/null +++ b/Assets/Settings.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 709f11a7f3c4041caa4ef136ea32d874 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/DefaultVolumeProfile.asset b/Assets/Settings/DefaultVolumeProfile.asset new file mode 100644 index 0000000..9e4bbfd --- /dev/null +++ b/Assets/Settings/DefaultVolumeProfile.asset @@ -0,0 +1,983 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-9167874883656233139 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5485954d14dfb9a4c8ead8edb0ded5b1, type: 3} + m_Name: LiftGammaGain + m_EditorClassIdentifier: + active: 1 + lift: + m_OverrideState: 1 + m_Value: {x: 1, y: 1, z: 1, w: 0} + gamma: + m_OverrideState: 1 + m_Value: {x: 1, y: 1, z: 1, w: 0} + gain: + m_OverrideState: 1 + m_Value: {x: 1, y: 1, z: 1, w: 0} +--- !u!114 &-8270506406425502121 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70afe9e12c7a7ed47911bb608a23a8ff, type: 3} + m_Name: SplitToning + m_EditorClassIdentifier: + active: 1 + shadows: + m_OverrideState: 1 + m_Value: {r: 0.5, g: 0.5, b: 0.5, a: 1} + highlights: + m_OverrideState: 1 + m_Value: {r: 0.5, g: 0.5, b: 0.5, a: 1} + balance: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &-8104416584915340131 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 0} + m_Name: CopyPasteTestComponent2 + m_EditorClassIdentifier: Unity.RenderPipelines.Core.Editor.Tests:UnityEditor.Rendering.Tests:VolumeComponentCopyPasteTests/CopyPasteTestComponent2 + active: 1 + p1: + m_OverrideState: 1 + m_Value: 0 + p2: + m_OverrideState: 1 + m_Value: 0 + p21: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &-7750755424749557576 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 60f3b30c03e6ba64d9a27dc9dba8f28d, type: 3} + m_Name: OutlineVolumeComponent + m_EditorClassIdentifier: + active: 1 + Enabled: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &-7743500325797982168 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ccf1aba9553839d41ae37dd52e9ebcce, type: 3} + m_Name: MotionBlur + m_EditorClassIdentifier: + active: 1 + mode: + m_OverrideState: 1 + m_Value: 0 + quality: + m_OverrideState: 1 + m_Value: 0 + intensity: + m_OverrideState: 1 + m_Value: 0 + clamp: + m_OverrideState: 1 + m_Value: 0.05 +--- !u!114 &-7274224791359825572 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0fd9ee276a1023e439cf7a9c393195fa, type: 3} + m_Name: TestAnimationCurveVolumeComponent + m_EditorClassIdentifier: + active: 1 + testParameter: + m_OverrideState: 1 + m_Value: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0.5 + value: 10 + inSlope: 0 + outSlope: 10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 15 + inSlope: 10 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!114 &-6335409530604852063 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 66f335fb1ffd8684294ad653bf1c7564, type: 3} + m_Name: ColorAdjustments + m_EditorClassIdentifier: + active: 1 + postExposure: + m_OverrideState: 1 + m_Value: 0 + contrast: + m_OverrideState: 1 + m_Value: 0 + colorFilter: + m_OverrideState: 1 + m_Value: {r: 1, g: 1, b: 1, a: 1} + hueShift: + m_OverrideState: 1 + m_Value: 0 + saturation: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &-6288072647309666549 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 29fa0085f50d5e54f8144f766051a691, type: 3} + m_Name: FilmGrain + m_EditorClassIdentifier: + active: 1 + type: + m_OverrideState: 1 + m_Value: 0 + intensity: + m_OverrideState: 1 + m_Value: 0 + response: + m_OverrideState: 1 + m_Value: 0.8 + texture: + m_OverrideState: 1 + m_Value: {fileID: 0} +--- !u!114 &-5520245016509672950 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3} + m_Name: Tonemapping + m_EditorClassIdentifier: + active: 1 + mode: + m_OverrideState: 1 + m_Value: 0 + neutralHDRRangeReductionMode: + m_OverrideState: 1 + m_Value: 2 + acesPreset: + m_OverrideState: 1 + m_Value: 3 + hueShiftAmount: + m_OverrideState: 1 + m_Value: 0 + detectPaperWhite: + m_OverrideState: 1 + m_Value: 0 + paperWhite: + m_OverrideState: 1 + m_Value: 300 + detectBrightnessLimits: + m_OverrideState: 1 + m_Value: 1 + minNits: + m_OverrideState: 1 + m_Value: 0.005 + maxNits: + m_OverrideState: 1 + m_Value: 1000 +--- !u!114 &-5360449096862653589 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 0} + m_Name: VolumeComponentSupportedEverywhere + m_EditorClassIdentifier: Unity.RenderPipelines.Core.Editor.Tests:UnityEngine.Rendering.Tests:VolumeComponentEditorSupportedOnTests/VolumeComponentSupportedEverywhere + active: 1 +--- !u!114 &-5139089513906902183 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5a00a63fdd6bd2a45ab1f2d869305ffd, type: 3} + m_Name: OasisFogVolumeComponent + m_EditorClassIdentifier: + active: 1 + Density: + m_OverrideState: 1 + m_Value: 0 + StartDistance: + m_OverrideState: 1 + m_Value: 0 + HeightRange: + m_OverrideState: 1 + m_Value: {x: 0, y: 50} + Tint: + m_OverrideState: 1 + m_Value: {r: 1, g: 1, b: 1, a: 1} + SunScatteringIntensity: + m_OverrideState: 1 + m_Value: 2 +--- !u!114 &-4463884970436517307 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fb60a22f311433c4c962b888d1393f88, type: 3} + m_Name: PaniniProjection + m_EditorClassIdentifier: + active: 1 + distance: + m_OverrideState: 1 + m_Value: 0 + cropToFit: + m_OverrideState: 1 + m_Value: 1 +--- !u!114 &-1410297666881709256 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6bd486065ce11414fa40e631affc4900, type: 3} + m_Name: ProbeVolumesOptions + m_EditorClassIdentifier: + active: 1 + normalBias: + m_OverrideState: 1 + m_Value: 0.33 + viewBias: + m_OverrideState: 1 + m_Value: 0 + scaleBiasWithMinProbeDistance: + m_OverrideState: 1 + m_Value: 0 + samplingNoise: + m_OverrideState: 1 + m_Value: 0.1 + animateSamplingNoise: + m_OverrideState: 1 + m_Value: 1 + leakReductionMode: + m_OverrideState: 1 + m_Value: 1 + minValidDotProductValue: + m_OverrideState: 1 + m_Value: 0.1 + occlusionOnlyReflectionNormalization: + m_OverrideState: 1 + m_Value: 1 + intensityMultiplier: + m_OverrideState: 1 + m_Value: 1 + skyOcclusionIntensityMultiplier: + m_OverrideState: 1 + m_Value: 1 + worldOffset: + m_OverrideState: 1 + m_Value: {x: 0, y: 0, z: 0} +--- !u!114 &-1216621516061285780 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3} + m_Name: Bloom + m_EditorClassIdentifier: + active: 1 + skipIterations: + m_OverrideState: 1 + m_Value: 1 + threshold: + m_OverrideState: 1 + m_Value: 0.9 + intensity: + m_OverrideState: 1 + m_Value: 0 + scatter: + m_OverrideState: 1 + m_Value: 0.7 + clamp: + m_OverrideState: 1 + m_Value: 65472 + tint: + m_OverrideState: 1 + m_Value: {r: 1, g: 1, b: 1, a: 1} + highQualityFiltering: + m_OverrideState: 1 + m_Value: 0 + downscale: + m_OverrideState: 1 + m_Value: 0 + maxIterations: + m_OverrideState: 1 + m_Value: 6 + dirtTexture: + m_OverrideState: 1 + m_Value: {fileID: 0} + dimension: 1 + dirtIntensity: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &-1170528603972255243 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 221518ef91623a7438a71fef23660601, type: 3} + m_Name: WhiteBalance + m_EditorClassIdentifier: + active: 1 + temperature: + m_OverrideState: 1 + m_Value: 0 + tint: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &-581120513425526550 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 0} + m_Name: CopyPasteTestComponent3 + m_EditorClassIdentifier: Unity.RenderPipelines.Core.Editor.Tests:UnityEditor.Rendering.Tests:VolumeComponentCopyPasteTests/CopyPasteTestComponent3 + active: 1 + p1: + m_OverrideState: 1 + m_Value: 0 + p2: + m_OverrideState: 1 + m_Value: 0 + p31: + m_OverrideState: 1 + m_Value: {r: 0, g: 0, b: 0, a: 1} +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} + m_Name: DefaultVolumeProfile + m_EditorClassIdentifier: + components: + - {fileID: -9167874883656233139} + - {fileID: 1918650496244738858} + - {fileID: 853819529557874667} + - {fileID: 1052315754049611418} + - {fileID: -1170528603972255243} + - {fileID: -8270506406425502121} + - {fileID: -5520245016509672950} + - {fileID: 7173750748008157695} + - {fileID: 1666464333004379222} + - {fileID: 9001657382290151224} + - {fileID: -6335409530604852063} + - {fileID: -1216621516061285780} + - {fileID: 3959858460715838825} + - {fileID: -7743500325797982168} + - {fileID: 4644742534064026673} + - {fileID: -4463884970436517307} + - {fileID: -6288072647309666549} + - {fileID: 7518938298396184218} + - {fileID: -1410297666881709256} +--- !u!114 &853819529557874667 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 06437c1ff663d574d9447842ba0a72e4, type: 3} + m_Name: ScreenSpaceLensFlare + m_EditorClassIdentifier: + active: 1 + intensity: + m_OverrideState: 1 + m_Value: 0 + tintColor: + m_OverrideState: 1 + m_Value: {r: 1, g: 1, b: 1, a: 1} + bloomMip: + m_OverrideState: 1 + m_Value: 1 + firstFlareIntensity: + m_OverrideState: 1 + m_Value: 1 + secondaryFlareIntensity: + m_OverrideState: 1 + m_Value: 1 + warpedFlareIntensity: + m_OverrideState: 1 + m_Value: 1 + warpedFlareScale: + m_OverrideState: 1 + m_Value: {x: 1, y: 1} + samples: + m_OverrideState: 1 + m_Value: 1 + sampleDimmer: + m_OverrideState: 1 + m_Value: 0.5 + vignetteEffect: + m_OverrideState: 1 + m_Value: 1 + startingPosition: + m_OverrideState: 1 + m_Value: 1.25 + scale: + m_OverrideState: 1 + m_Value: 1.5 + streaksIntensity: + m_OverrideState: 1 + m_Value: 0 + streaksLength: + m_OverrideState: 1 + m_Value: 0.5 + streaksOrientation: + m_OverrideState: 1 + m_Value: 0 + streaksThreshold: + m_OverrideState: 1 + m_Value: 0.25 + resolution: + m_OverrideState: 1 + m_Value: 4 + chromaticAbberationIntensity: + m_OverrideState: 1 + m_Value: 0.5 +--- !u!114 &1052315754049611418 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 558a8e2b6826cf840aae193990ba9f2e, type: 3} + m_Name: ShadowsMidtonesHighlights + m_EditorClassIdentifier: + active: 1 + shadows: + m_OverrideState: 1 + m_Value: {x: 1, y: 1, z: 1, w: 0} + midtones: + m_OverrideState: 1 + m_Value: {x: 1, y: 1, z: 1, w: 0} + highlights: + m_OverrideState: 1 + m_Value: {x: 1, y: 1, z: 1, w: 0} + shadowsStart: + m_OverrideState: 1 + m_Value: 0 + shadowsEnd: + m_OverrideState: 1 + m_Value: 0.3 + highlightsStart: + m_OverrideState: 1 + m_Value: 0.55 + highlightsEnd: + m_OverrideState: 1 + m_Value: 1 +--- !u!114 &1666464333004379222 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3eb4b772797da9440885e8bd939e9560, type: 3} + m_Name: ColorCurves + m_EditorClassIdentifier: + active: 1 + master: + m_OverrideState: 1 + m_Value: + k__BackingField: 2 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + red: + m_OverrideState: 1 + m_Value: + k__BackingField: 2 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + green: + m_OverrideState: 1 + m_Value: + k__BackingField: 2 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + blue: + m_OverrideState: 1 + m_Value: + k__BackingField: 2 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + hueVsHue: + m_OverrideState: 1 + m_Value: + k__BackingField: 0 + m_Loop: 1 + m_ZeroValue: 0.5 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + hueVsSat: + m_OverrideState: 1 + m_Value: + k__BackingField: 0 + m_Loop: 1 + m_ZeroValue: 0.5 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + satVsSat: + m_OverrideState: 1 + m_Value: + k__BackingField: 0 + m_Loop: 0 + m_ZeroValue: 0.5 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + lumVsSat: + m_OverrideState: 1 + m_Value: + k__BackingField: 0 + m_Loop: 0 + m_ZeroValue: 0.5 + m_Range: 1 + m_Curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!114 &1918650496244738858 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e021b4c809a781e468c2988c016ebbea, type: 3} + m_Name: ColorLookup + m_EditorClassIdentifier: + active: 1 + texture: + m_OverrideState: 1 + m_Value: {fileID: 0} + dimension: 1 + contribution: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &3959858460715838825 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c01700fd266d6914ababb731e09af2eb, type: 3} + m_Name: DepthOfField + m_EditorClassIdentifier: + active: 1 + mode: + m_OverrideState: 1 + m_Value: 0 + gaussianStart: + m_OverrideState: 1 + m_Value: 10 + gaussianEnd: + m_OverrideState: 1 + m_Value: 30 + gaussianMaxRadius: + m_OverrideState: 1 + m_Value: 1 + highQualitySampling: + m_OverrideState: 1 + m_Value: 0 + focusDistance: + m_OverrideState: 1 + m_Value: 10 + aperture: + m_OverrideState: 1 + m_Value: 5.6 + focalLength: + m_OverrideState: 1 + m_Value: 50 + bladeCount: + m_OverrideState: 1 + m_Value: 5 + bladeCurvature: + m_OverrideState: 1 + m_Value: 1 + bladeRotation: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &4251301726029935498 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 74955a4b0b4243bc87231e8b59ed9140, type: 3} + m_Name: TestVolume + m_EditorClassIdentifier: + active: 1 + param: + m_OverrideState: 1 + m_Value: 123 +--- !u!114 &4644742534064026673 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81180773991d8724ab7f2d216912b564, type: 3} + m_Name: ChromaticAberration + m_EditorClassIdentifier: + active: 1 + intensity: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &6940869943325143175 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 0} + m_Name: VolumeComponentSupportedOnAnySRP + m_EditorClassIdentifier: Unity.RenderPipelines.Core.Editor.Tests:UnityEngine.Rendering.Tests:VolumeComponentEditorSupportedOnTests/VolumeComponentSupportedOnAnySRP + active: 1 +--- !u!114 &7173750748008157695 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 899c54efeace73346a0a16faa3afe726, type: 3} + m_Name: Vignette + m_EditorClassIdentifier: + active: 1 + color: + m_OverrideState: 1 + m_Value: {r: 0, g: 0, b: 0, a: 1} + center: + m_OverrideState: 1 + m_Value: {x: 0.5, y: 0.5} + intensity: + m_OverrideState: 1 + m_Value: 0 + smoothness: + m_OverrideState: 1 + m_Value: 0.2 + rounded: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &7518938298396184218 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c5e1dc532bcb41949b58bc4f2abfbb7e, type: 3} + m_Name: LensDistortion + m_EditorClassIdentifier: + active: 1 + intensity: + m_OverrideState: 1 + m_Value: 0 + xMultiplier: + m_OverrideState: 1 + m_Value: 1 + yMultiplier: + m_OverrideState: 1 + m_Value: 1 + center: + m_OverrideState: 1 + m_Value: {x: 0.5, y: 0.5} + scale: + m_OverrideState: 1 + m_Value: 1 +--- !u!114 &9001657382290151224 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cdfbdbb87d3286943a057f7791b43141, type: 3} + m_Name: ChannelMixer + m_EditorClassIdentifier: + active: 1 + redOutRedIn: + m_OverrideState: 1 + m_Value: 100 + redOutGreenIn: + m_OverrideState: 1 + m_Value: 0 + redOutBlueIn: + m_OverrideState: 1 + m_Value: 0 + greenOutRedIn: + m_OverrideState: 1 + m_Value: 0 + greenOutGreenIn: + m_OverrideState: 1 + m_Value: 100 + greenOutBlueIn: + m_OverrideState: 1 + m_Value: 0 + blueOutRedIn: + m_OverrideState: 1 + m_Value: 0 + blueOutGreenIn: + m_OverrideState: 1 + m_Value: 0 + blueOutBlueIn: + m_OverrideState: 1 + m_Value: 100 +--- !u!114 &9122958982931076880 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 0} + m_Name: CopyPasteTestComponent1 + m_EditorClassIdentifier: Unity.RenderPipelines.Core.Editor.Tests:UnityEditor.Rendering.Tests:VolumeComponentCopyPasteTests/CopyPasteTestComponent1 + active: 1 + p1: + m_OverrideState: 1 + m_Value: 0 + p2: + m_OverrideState: 1 + m_Value: 0 diff --git a/Assets/Settings/DefaultVolumeProfile.asset.meta b/Assets/Settings/DefaultVolumeProfile.asset.meta new file mode 100644 index 0000000..53b314a --- /dev/null +++ b/Assets/Settings/DefaultVolumeProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ab09877e2e707104187f6f83e2f62510 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/Mobile_RPAsset.asset b/Assets/Settings/Mobile_RPAsset.asset new file mode 100644 index 0000000..ffda869 --- /dev/null +++ b/Assets/Settings/Mobile_RPAsset.asset @@ -0,0 +1,138 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf2edee5c58d82540a51f03df9d42094, type: 3} + m_Name: Mobile_RPAsset + m_EditorClassIdentifier: + k_AssetVersion: 12 + k_AssetPreviousVersion: 12 + m_RendererType: 1 + m_RendererData: {fileID: 0} + m_RendererDataList: + - {fileID: 11400000, guid: 65bc7dbf4170f435aa868c779acfb082, type: 2} + m_DefaultRendererIndex: 0 + m_RequireDepthTexture: 0 + m_RequireOpaqueTexture: 0 + m_OpaqueDownsampling: 0 + m_SupportsTerrainHoles: 1 + m_SupportsHDR: 0 + m_HDRColorBufferPrecision: 0 + m_MSAA: 4 + m_RenderScale: 1.6 + m_UpscalingFilter: 0 + m_FsrOverrideSharpness: 0 + m_FsrSharpness: 0.92 + m_EnableLODCrossFade: 1 + m_LODCrossFadeDitheringType: 1 + m_ShEvalMode: 0 + m_LightProbeSystem: 0 + m_ProbeVolumeMemoryBudget: 1024 + m_ProbeVolumeBlendingMemoryBudget: 256 + m_SupportProbeVolumeGPUStreaming: 0 + m_SupportProbeVolumeDiskStreaming: 0 + m_SupportProbeVolumeScenarios: 0 + m_SupportProbeVolumeScenarioBlending: 0 + m_ProbeVolumeSHBands: 1 + m_MainLightRenderingMode: 1 + m_MainLightShadowsSupported: 1 + m_MainLightShadowmapResolution: 1024 + m_AdditionalLightsRenderingMode: 1 + m_AdditionalLightsPerObjectLimit: 4 + m_AdditionalLightShadowsSupported: 0 + m_AdditionalLightsShadowmapResolution: 2048 + m_AdditionalLightsShadowResolutionTierLow: 256 + m_AdditionalLightsShadowResolutionTierMedium: 512 + m_AdditionalLightsShadowResolutionTierHigh: 1024 + m_ReflectionProbeBlending: 1 + m_ReflectionProbeBoxProjection: 1 + m_ShadowDistance: 50 + m_ShadowCascadeCount: 1 + m_Cascade2Split: 0.25 + m_Cascade3Split: {x: 0.1, y: 0.3} + m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} + m_CascadeBorder: 0.2 + m_ShadowDepthBias: 1 + m_ShadowNormalBias: 1 + m_AnyShadowsSupported: 1 + m_SoftShadowsSupported: 0 + m_ConservativeEnclosingSphere: 1 + m_NumIterationsEnclosingSphere: 64 + m_SoftShadowQuality: 2 + m_AdditionalLightsCookieResolution: 1024 + m_AdditionalLightsCookieFormat: 1 + m_UseSRPBatcher: 1 + m_SupportsDynamicBatching: 0 + m_MixedLightingSupported: 1 + m_SupportsLightCookies: 1 + m_SupportsLightLayers: 1 + m_DebugLevel: 0 + m_StoreActionsOptimization: 0 + m_UseAdaptivePerformance: 1 + m_ColorGradingMode: 0 + m_ColorGradingLutSize: 32 + m_AllowPostProcessAlphaOutput: 0 + m_UseFastSRGBLinearConversion: 1 + m_SupportDataDrivenLensFlare: 1 + m_SupportScreenSpaceLensFlare: 1 + m_GPUResidentDrawerMode: 0 + m_SmallMeshScreenPercentage: 0 + m_GPUResidentDrawerEnableOcclusionCullingInCameras: 0 + m_ShadowType: 1 + m_LocalShadowsSupported: 0 + m_LocalShadowsAtlasResolution: 256 + m_MaxPixelLights: 0 + m_ShadowAtlasResolution: 256 + m_VolumeFrameworkUpdateMode: 0 + m_VolumeProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} + apvScenesData: + obsoleteSceneBounds: + m_Keys: [] + m_Values: [] + obsoleteHasProbeVolumes: + m_Keys: [] + m_Values: + m_PrefilteringModeMainLightShadows: 3 + m_PrefilteringModeAdditionalLight: 0 + m_PrefilteringModeAdditionalLightShadows: 0 + m_PrefilterXRKeywords: 0 + m_PrefilteringModeForwardPlus: 2 + m_PrefilteringModeDeferredRendering: 0 + m_PrefilteringModeScreenSpaceOcclusion: 0 + m_PrefilterDebugKeywords: 1 + m_PrefilterWriteRenderingLayers: 1 + m_PrefilterHDROutput: 1 + m_PrefilterAlphaOutput: 1 + m_PrefilterSSAODepthNormals: 1 + m_PrefilterSSAOSourceDepthLow: 1 + m_PrefilterSSAOSourceDepthMedium: 1 + m_PrefilterSSAOSourceDepthHigh: 1 + m_PrefilterSSAOInterleaved: 1 + m_PrefilterSSAOBlueNoise: 1 + m_PrefilterSSAOSampleCountLow: 1 + m_PrefilterSSAOSampleCountMedium: 1 + m_PrefilterSSAOSampleCountHigh: 1 + m_PrefilterDBufferMRT1: 1 + m_PrefilterDBufferMRT2: 1 + m_PrefilterDBufferMRT3: 1 + m_PrefilterSoftShadowsQualityLow: 1 + m_PrefilterSoftShadowsQualityMedium: 1 + m_PrefilterSoftShadowsQualityHigh: 1 + m_PrefilterSoftShadows: 0 + m_PrefilterScreenCoord: 1 + m_PrefilterNativeRenderPass: 1 + m_PrefilterUseLegacyLightmaps: 0 + m_PrefilterReflectionProbeBlending: 0 + m_PrefilterReflectionProbeBoxProjection: 0 + m_ShaderVariantLogLevel: 0 + m_ShadowCascades: 0 + m_Textures: + blueNoise64LTex: {fileID: 2800000, guid: e3d24661c1e055f45a7560c033dbb837, type: 3} + bayerMatrixTex: {fileID: 2800000, guid: f9ee4ed84c1d10c49aabb9b210b0fc44, type: 3} diff --git a/Assets/Settings/Mobile_RPAsset.asset.meta b/Assets/Settings/Mobile_RPAsset.asset.meta new file mode 100644 index 0000000..3660d15 --- /dev/null +++ b/Assets/Settings/Mobile_RPAsset.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5e6cbd92db86f4b18aec3ed561671858 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/Mobile_Renderer.asset b/Assets/Settings/Mobile_Renderer.asset new file mode 100644 index 0000000..99d4fa5 --- /dev/null +++ b/Assets/Settings/Mobile_Renderer.asset @@ -0,0 +1,52 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: de640fe3d0db1804a85f9fc8f5cadab6, type: 3} + m_Name: Mobile_Renderer + m_EditorClassIdentifier: + debugShaders: + debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, + type: 3} + hdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3} + probeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, + type: 3} + probeVolumeResources: + probeVolumeDebugShader: {fileID: 0} + probeVolumeFragmentationDebugShader: {fileID: 0} + probeVolumeOffsetDebugShader: {fileID: 0} + probeVolumeSamplingDebugShader: {fileID: 0} + probeSamplingDebugMesh: {fileID: 0} + probeSamplingDebugTexture: {fileID: 0} + probeVolumeBlendStatesCS: {fileID: 0} + m_RendererFeatures: [] + m_RendererFeatureMap: + m_UseNativeRenderPass: 1 + postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2} + m_AssetVersion: 2 + m_OpaqueLayerMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_TransparentLayerMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_DefaultStencilState: + overrideStencilState: 0 + stencilReference: 0 + stencilCompareFunction: 8 + passOperation: 2 + failOperation: 0 + zFailOperation: 0 + m_ShadowTransparentReceive: 0 + m_RenderingMode: 2 + m_DepthPrimingMode: 0 + m_CopyDepthMode: 0 + m_AccurateGbufferNormals: 0 + m_IntermediateTextureMode: 0 diff --git a/Assets/Settings/Mobile_Renderer.asset.meta b/Assets/Settings/Mobile_Renderer.asset.meta new file mode 100644 index 0000000..a3588b1 --- /dev/null +++ b/Assets/Settings/Mobile_Renderer.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 65bc7dbf4170f435aa868c779acfb082 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/PC_RPAsset.asset b/Assets/Settings/PC_RPAsset.asset new file mode 100644 index 0000000..67be6d0 --- /dev/null +++ b/Assets/Settings/PC_RPAsset.asset @@ -0,0 +1,138 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bf2edee5c58d82540a51f03df9d42094, type: 3} + m_Name: PC_RPAsset + m_EditorClassIdentifier: + k_AssetVersion: 12 + k_AssetPreviousVersion: 12 + m_RendererType: 1 + m_RendererData: {fileID: 0} + m_RendererDataList: + - {fileID: 11400000, guid: f288ae1f4751b564a96ac7587541f7a2, type: 2} + m_DefaultRendererIndex: 0 + m_RequireDepthTexture: 1 + m_RequireOpaqueTexture: 1 + m_OpaqueDownsampling: 1 + m_SupportsTerrainHoles: 1 + m_SupportsHDR: 1 + m_HDRColorBufferPrecision: 0 + m_MSAA: 1 + m_RenderScale: 1 + m_UpscalingFilter: 0 + m_FsrOverrideSharpness: 0 + m_FsrSharpness: 0.92 + m_EnableLODCrossFade: 1 + m_LODCrossFadeDitheringType: 1 + m_ShEvalMode: 0 + m_LightProbeSystem: 0 + m_ProbeVolumeMemoryBudget: 1024 + m_ProbeVolumeBlendingMemoryBudget: 256 + m_SupportProbeVolumeGPUStreaming: 0 + m_SupportProbeVolumeDiskStreaming: 0 + m_SupportProbeVolumeScenarios: 0 + m_SupportProbeVolumeScenarioBlending: 0 + m_ProbeVolumeSHBands: 1 + m_MainLightRenderingMode: 1 + m_MainLightShadowsSupported: 1 + m_MainLightShadowmapResolution: 2048 + m_AdditionalLightsRenderingMode: 1 + m_AdditionalLightsPerObjectLimit: 4 + m_AdditionalLightShadowsSupported: 1 + m_AdditionalLightsShadowmapResolution: 2048 + m_AdditionalLightsShadowResolutionTierLow: 256 + m_AdditionalLightsShadowResolutionTierMedium: 512 + m_AdditionalLightsShadowResolutionTierHigh: 1024 + m_ReflectionProbeBlending: 1 + m_ReflectionProbeBoxProjection: 1 + m_ShadowDistance: 50 + m_ShadowCascadeCount: 4 + m_Cascade2Split: 0.25 + m_Cascade3Split: {x: 0.1, y: 0.3} + m_Cascade4Split: {x: 0.12299999, y: 0.2926, z: 0.53599995} + m_CascadeBorder: 0.107758604 + m_ShadowDepthBias: 0.1 + m_ShadowNormalBias: 0.5 + m_AnyShadowsSupported: 1 + m_SoftShadowsSupported: 1 + m_ConservativeEnclosingSphere: 1 + m_NumIterationsEnclosingSphere: 64 + m_SoftShadowQuality: 3 + m_AdditionalLightsCookieResolution: 2048 + m_AdditionalLightsCookieFormat: 3 + m_UseSRPBatcher: 1 + m_SupportsDynamicBatching: 0 + m_MixedLightingSupported: 1 + m_SupportsLightCookies: 1 + m_SupportsLightLayers: 1 + m_DebugLevel: 0 + m_StoreActionsOptimization: 0 + m_UseAdaptivePerformance: 1 + m_ColorGradingMode: 0 + m_ColorGradingLutSize: 32 + m_AllowPostProcessAlphaOutput: 0 + m_UseFastSRGBLinearConversion: 0 + m_SupportDataDrivenLensFlare: 1 + m_SupportScreenSpaceLensFlare: 1 + m_GPUResidentDrawerMode: 0 + m_SmallMeshScreenPercentage: 0 + m_GPUResidentDrawerEnableOcclusionCullingInCameras: 0 + m_ShadowType: 1 + m_LocalShadowsSupported: 0 + m_LocalShadowsAtlasResolution: 256 + m_MaxPixelLights: 0 + m_ShadowAtlasResolution: 256 + m_VolumeFrameworkUpdateMode: 0 + m_VolumeProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} + apvScenesData: + obsoleteSceneBounds: + m_Keys: [] + m_Values: [] + obsoleteHasProbeVolumes: + m_Keys: [] + m_Values: + m_PrefilteringModeMainLightShadows: 3 + m_PrefilteringModeAdditionalLight: 4 + m_PrefilteringModeAdditionalLightShadows: 0 + m_PrefilterXRKeywords: 1 + m_PrefilteringModeForwardPlus: 1 + m_PrefilteringModeDeferredRendering: 0 + m_PrefilteringModeScreenSpaceOcclusion: 1 + m_PrefilterDebugKeywords: 1 + m_PrefilterWriteRenderingLayers: 0 + m_PrefilterHDROutput: 1 + m_PrefilterAlphaOutput: 0 + m_PrefilterSSAODepthNormals: 0 + m_PrefilterSSAOSourceDepthLow: 1 + m_PrefilterSSAOSourceDepthMedium: 1 + m_PrefilterSSAOSourceDepthHigh: 1 + m_PrefilterSSAOInterleaved: 1 + m_PrefilterSSAOBlueNoise: 0 + m_PrefilterSSAOSampleCountLow: 1 + m_PrefilterSSAOSampleCountMedium: 0 + m_PrefilterSSAOSampleCountHigh: 1 + m_PrefilterDBufferMRT1: 1 + m_PrefilterDBufferMRT2: 1 + m_PrefilterDBufferMRT3: 0 + m_PrefilterSoftShadowsQualityLow: 0 + m_PrefilterSoftShadowsQualityMedium: 0 + m_PrefilterSoftShadowsQualityHigh: 0 + m_PrefilterSoftShadows: 0 + m_PrefilterScreenCoord: 1 + m_PrefilterNativeRenderPass: 1 + m_PrefilterUseLegacyLightmaps: 0 + m_PrefilterReflectionProbeBlending: 0 + m_PrefilterReflectionProbeBoxProjection: 0 + m_ShaderVariantLogLevel: 0 + m_ShadowCascades: 0 + m_Textures: + blueNoise64LTex: {fileID: 2800000, guid: e3d24661c1e055f45a7560c033dbb837, type: 3} + bayerMatrixTex: {fileID: 2800000, guid: f9ee4ed84c1d10c49aabb9b210b0fc44, type: 3} diff --git a/Assets/Settings/PC_RPAsset.asset.meta b/Assets/Settings/PC_RPAsset.asset.meta new file mode 100644 index 0000000..e286b2f --- /dev/null +++ b/Assets/Settings/PC_RPAsset.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4b83569d67af61e458304325a23e5dfd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/PC_Renderer.asset b/Assets/Settings/PC_Renderer.asset new file mode 100644 index 0000000..475b02e --- /dev/null +++ b/Assets/Settings/PC_Renderer.asset @@ -0,0 +1,95 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: de640fe3d0db1804a85f9fc8f5cadab6, type: 3} + m_Name: PC_Renderer + m_EditorClassIdentifier: + debugShaders: + debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, + type: 3} + hdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3} + probeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, + type: 3} + probeVolumeResources: + probeVolumeDebugShader: {fileID: 4800000, guid: e5c6678ed2aaa91408dd3df699057aae, + type: 3} + probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 03cfc4915c15d504a9ed85ecc404e607, + type: 3} + probeVolumeOffsetDebugShader: {fileID: 4800000, guid: 53a11f4ebaebf4049b3638ef78dc9664, + type: 3} + probeVolumeSamplingDebugShader: {fileID: 4800000, guid: 8f96cd657dc40064aa21efcc7e50a2e7, + type: 3} + probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 57d7c4c16e2765b47a4d2069b311bffe, + type: 3} + probeSamplingDebugTexture: {fileID: 2800000, guid: 24ec0e140fb444a44ab96ee80844e18e, + type: 3} + probeVolumeBlendStatesCS: {fileID: 7200000, guid: b9a23f869c4fd45f19c5ada54dd82176, + type: 3} + m_RendererFeatures: + - {fileID: 7833122117494664109} + m_RendererFeatureMap: ad6b866f10d7b46c + m_UseNativeRenderPass: 1 + postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2} + m_AssetVersion: 2 + m_OpaqueLayerMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_TransparentLayerMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_DefaultStencilState: + overrideStencilState: 0 + stencilReference: 1 + stencilCompareFunction: 3 + passOperation: 2 + failOperation: 0 + zFailOperation: 0 + m_ShadowTransparentReceive: 1 + m_RenderingMode: 2 + m_DepthPrimingMode: 0 + m_CopyDepthMode: 0 + m_AccurateGbufferNormals: 0 + m_IntermediateTextureMode: 0 +--- !u!114 &7833122117494664109 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f62c9c65cf3354c93be831c8bc075510, type: 3} + m_Name: ScreenSpaceAmbientOcclusion + m_EditorClassIdentifier: + m_Active: 1 + m_Settings: + AOMethod: 0 + Downsample: 0 + AfterOpaque: 0 + Source: 1 + NormalSamples: 1 + Intensity: 0.4 + DirectLightingStrength: 0.25 + Radius: 0.3 + Samples: 1 + BlurQuality: 0 + Falloff: 100 + SampleCount: -1 + m_BlueNoise256Textures: + - {fileID: 2800000, guid: 36f118343fc974119bee3d09e2111500, type: 3} + - {fileID: 2800000, guid: 4b7b083e6b6734e8bb2838b0b50a0bc8, type: 3} + - {fileID: 2800000, guid: c06cc21c692f94f5fb5206247191eeee, type: 3} + - {fileID: 2800000, guid: cb76dd40fa7654f9587f6a344f125c9a, type: 3} + - {fileID: 2800000, guid: e32226222ff144b24bf3a5a451de54bc, type: 3} + - {fileID: 2800000, guid: 3302065f671a8450b82c9ddf07426f3a, type: 3} + - {fileID: 2800000, guid: 56a77a3e8d64f47b6afe9e3c95cb57d5, type: 3} + m_Shader: {fileID: 4800000, guid: 0849e84e3d62649e8882e9d6f056a017, type: 3} diff --git a/Assets/Settings/PC_Renderer.asset.meta b/Assets/Settings/PC_Renderer.asset.meta new file mode 100644 index 0000000..ddae6a5 --- /dev/null +++ b/Assets/Settings/PC_Renderer.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f288ae1f4751b564a96ac7587541f7a2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/SampleSceneProfile.asset b/Assets/Settings/SampleSceneProfile.asset new file mode 100644 index 0000000..c1b0f63 --- /dev/null +++ b/Assets/Settings/SampleSceneProfile.asset @@ -0,0 +1,159 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7893295128165547882 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3} + m_Name: Bloom + m_EditorClassIdentifier: + active: 1 + skipIterations: + m_OverrideState: 1 + m_Value: 0 + threshold: + m_OverrideState: 1 + m_Value: 1 + intensity: + m_OverrideState: 1 + m_Value: 0.25 + scatter: + m_OverrideState: 1 + m_Value: 0.5 + clamp: + m_OverrideState: 0 + m_Value: 65472 + tint: + m_OverrideState: 0 + m_Value: {r: 1, g: 1, b: 1, a: 1} + highQualityFiltering: + m_OverrideState: 1 + m_Value: 1 + downscale: + m_OverrideState: 0 + m_Value: 0 + maxIterations: + m_OverrideState: 0 + m_Value: 6 + dirtTexture: + m_OverrideState: 0 + m_Value: {fileID: 0} + dimension: 1 + dirtIntensity: + m_OverrideState: 0 + m_Value: 0 +--- !u!114 &-3357603926938260329 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 899c54efeace73346a0a16faa3afe726, type: 3} + m_Name: Vignette + m_EditorClassIdentifier: + active: 1 + color: + m_OverrideState: 0 + m_Value: {r: 0, g: 0, b: 0, a: 1} + center: + m_OverrideState: 0 + m_Value: {x: 0.5, y: 0.5} + intensity: + m_OverrideState: 1 + m_Value: 0.2 + smoothness: + m_OverrideState: 0 + m_Value: 0.2 + rounded: + m_OverrideState: 0 + m_Value: 0 +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} + m_Name: SampleSceneProfile + m_EditorClassIdentifier: + components: + - {fileID: 849379129802519247} + - {fileID: -7893295128165547882} + - {fileID: 7391319092446245454} + - {fileID: -3357603926938260329} +--- !u!114 &849379129802519247 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3} + m_Name: Tonemapping + m_EditorClassIdentifier: + active: 1 + mode: + m_OverrideState: 1 + m_Value: 1 + neutralHDRRangeReductionMode: + m_OverrideState: 0 + m_Value: 2 + acesPreset: + m_OverrideState: 0 + m_Value: 3 + hueShiftAmount: + m_OverrideState: 0 + m_Value: 0 + detectPaperWhite: + m_OverrideState: 1 + m_Value: 0 + paperWhite: + m_OverrideState: 1 + m_Value: 234 + detectBrightnessLimits: + m_OverrideState: 1 + m_Value: 1 + minNits: + m_OverrideState: 1 + m_Value: 0.005 + maxNits: + m_OverrideState: 1 + m_Value: 647 +--- !u!114 &7391319092446245454 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ccf1aba9553839d41ae37dd52e9ebcce, type: 3} + m_Name: MotionBlur + m_EditorClassIdentifier: + active: 0 + mode: + m_OverrideState: 0 + m_Value: 0 + quality: + m_OverrideState: 1 + m_Value: 2 + intensity: + m_OverrideState: 1 + m_Value: 0.6 + clamp: + m_OverrideState: 0 + m_Value: 0.05 diff --git a/Assets/Settings/SampleSceneProfile.asset.meta b/Assets/Settings/SampleSceneProfile.asset.meta new file mode 100644 index 0000000..b82270c --- /dev/null +++ b/Assets/Settings/SampleSceneProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10fc4df2da32a41aaa32d77bc913491c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/UniversalRenderPipelineGlobalSettings.asset b/Assets/Settings/UniversalRenderPipelineGlobalSettings.asset new file mode 100644 index 0000000..3e88d98 --- /dev/null +++ b/Assets/Settings/UniversalRenderPipelineGlobalSettings.asset @@ -0,0 +1,365 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2ec995e51a6e251468d2a3fd8a686257, type: 3} + m_Name: UniversalRenderPipelineGlobalSettings + m_EditorClassIdentifier: + m_ShaderStrippingSetting: + m_Version: 0 + m_ExportShaderVariants: 1 + m_ShaderVariantLogLevel: 0 + m_StripRuntimeDebugShaders: 1 + m_URPShaderStrippingSetting: + m_Version: 0 + m_StripUnusedPostProcessingVariants: 1 + m_StripUnusedVariants: 1 + m_StripScreenCoordOverrideVariants: 1 + m_ShaderVariantLogLevel: 0 + m_ExportShaderVariants: 1 + m_StripDebugVariants: 1 + m_StripUnusedPostProcessingVariants: 1 + m_StripUnusedVariants: 1 + m_StripScreenCoordOverrideVariants: 1 + supportRuntimeDebugDisplay: 0 + m_EnableRenderGraph: 0 + m_Settings: + m_SettingsList: + m_List: + - rid: 6852985685364965376 + - rid: 6852985685364965377 + - rid: 6852985685364965378 + - rid: 6852985685364965379 + - rid: 6852985685364965380 + - rid: 6852985685364965381 + - rid: 6852985685364965382 + - rid: 6852985685364965383 + - rid: 6852985685364965384 + - rid: 6852985685364965385 + - rid: 6852985685364965386 + - rid: 6852985685364965387 + - rid: 6852985685364965388 + - rid: 6852985685364965389 + - rid: 6852985685364965390 + - rid: 6852985685364965391 + - rid: 6852985685364965392 + - rid: 6852985685364965393 + - rid: 6852985685364965394 + - rid: 8712630790384254976 + - rid: 5121183701168816128 + - rid: 5121183701168816129 + - rid: 5121183701168816130 + - rid: 5121183701168816131 + - rid: 5121183701168816132 + - rid: 5121183701168816133 + m_RuntimeSettings: + m_List: + - rid: 6852985685364965378 + - rid: 6852985685364965379 + - rid: 6852985685364965380 + - rid: 6852985685364965381 + - rid: 6852985685364965384 + - rid: 6852985685364965385 + - rid: 6852985685364965392 + - rid: 6852985685364965394 + - rid: 8712630790384254976 + - rid: 5121183701168816133 + m_AssetVersion: 8 + m_ObsoleteDefaultVolumeProfile: {fileID: 0} + m_RenderingLayerNames: + - Light Layer default + - Light Layer 1 + - Light Layer 2 + - Light Layer 3 + - Light Layer 4 + - Light Layer 5 + - Light Layer 6 + - Light Layer 7 + m_ValidRenderingLayers: 0 + lightLayerName0: Light Layer default + lightLayerName1: Light Layer 1 + lightLayerName2: Light Layer 2 + lightLayerName3: Light Layer 3 + lightLayerName4: Light Layer 4 + lightLayerName5: Light Layer 5 + lightLayerName6: Light Layer 6 + lightLayerName7: Light Layer 7 + apvScenesData: + obsoleteSceneBounds: + m_Keys: [] + m_Values: [] + obsoleteHasProbeVolumes: + m_Keys: [] + m_Values: + references: + version: 2 + RefIds: + - rid: 5121183701168816128 + type: {class: ScreenSpaceAmbientOcclusionPersistentResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Shader: {fileID: 4800000, guid: 0849e84e3d62649e8882e9d6f056a017, type: 3} + m_Version: 0 + - rid: 5121183701168816129 + type: {class: PostProcessData/TextureResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + blueNoise16LTex: + - {fileID: 2800000, guid: 81200413a40918d4d8702e94db29911c, type: 3} + - {fileID: 2800000, guid: d50c5e07c9911a74982bddf7f3075e7b, type: 3} + - {fileID: 2800000, guid: 1134690bf9216164dbc75050e35b7900, type: 3} + - {fileID: 2800000, guid: 7ce2118f74614a94aa8a0cdf2e6062c3, type: 3} + - {fileID: 2800000, guid: 2ca97df9d1801e84a8a8f2c53cb744f0, type: 3} + - {fileID: 2800000, guid: e63eef8f54aa9dc4da9a5ac094b503b5, type: 3} + - {fileID: 2800000, guid: 39451254daebd6d40b52899c1f1c0c1b, type: 3} + - {fileID: 2800000, guid: c94ad916058dff743b0f1c969ddbe660, type: 3} + - {fileID: 2800000, guid: ed5ea7ce59ca8ec4f9f14bf470a30f35, type: 3} + - {fileID: 2800000, guid: 071e954febf155243a6c81e48f452644, type: 3} + - {fileID: 2800000, guid: 96aaab9cc247d0b4c98132159688c1af, type: 3} + - {fileID: 2800000, guid: fc3fa8f108657e14486697c9a84ccfc5, type: 3} + - {fileID: 2800000, guid: bfed3e498947fcb4890b7f40f54d85b9, type: 3} + - {fileID: 2800000, guid: d512512f4af60a442ab3458489412954, type: 3} + - {fileID: 2800000, guid: 47a45908f6db0cb44a0d5e961143afec, type: 3} + - {fileID: 2800000, guid: 4dcc0502f8586f941b5c4a66717205e8, type: 3} + - {fileID: 2800000, guid: 9d92991794bb5864c8085468b97aa067, type: 3} + - {fileID: 2800000, guid: 14381521ff11cb74abe3fe65401c23be, type: 3} + - {fileID: 2800000, guid: d36f0fe53425e08499a2333cf423634c, type: 3} + - {fileID: 2800000, guid: d4044ea2490d63b43aa1765f8efbf8a9, type: 3} + - {fileID: 2800000, guid: c9bd74624d8070f429e3f46d161f9204, type: 3} + - {fileID: 2800000, guid: d5c9b274310e5524ebe32a4e4da3df1f, type: 3} + - {fileID: 2800000, guid: f69770e54f2823f43badf77916acad83, type: 3} + - {fileID: 2800000, guid: 10b6c6d22e73dea46a8ab36b6eebd629, type: 3} + - {fileID: 2800000, guid: a2ec5cbf5a9b64345ad3fab0912ddf7b, type: 3} + - {fileID: 2800000, guid: 1c3c6d69a645b804fa232004b96b7ad3, type: 3} + - {fileID: 2800000, guid: d18a24d7b4ed50f4387993566d9d3ae2, type: 3} + - {fileID: 2800000, guid: c989e1ed85cf7154caa922fec53e6af6, type: 3} + - {fileID: 2800000, guid: ff47e5a0f105eb34883b973e51f4db62, type: 3} + - {fileID: 2800000, guid: fa042edbfc40fbd4bad0ab9d505b1223, type: 3} + - {fileID: 2800000, guid: 896d9004736809c4fb5973b7c12eb8b9, type: 3} + - {fileID: 2800000, guid: 179f794063d2a66478e6e726f84a65bc, type: 3} + filmGrainTex: + - {fileID: 2800000, guid: 654c582f7f8a5a14dbd7d119cbde215d, type: 3} + - {fileID: 2800000, guid: dd77ffd079630404e879388999033049, type: 3} + - {fileID: 2800000, guid: 1097e90e1306e26439701489f391a6c0, type: 3} + - {fileID: 2800000, guid: f0b67500f7fad3b4c9f2b13e8f41ba6e, type: 3} + - {fileID: 2800000, guid: 9930fb4528622b34687b00bbe6883de7, type: 3} + - {fileID: 2800000, guid: bd9e8c758250ef449a4b4bfaad7a2133, type: 3} + - {fileID: 2800000, guid: 510a2f57334933e4a8dbabe4c30204e4, type: 3} + - {fileID: 2800000, guid: b4db8180660810945bf8d55ab44352ad, type: 3} + - {fileID: 2800000, guid: fd2fd78b392986e42a12df2177d3b89c, type: 3} + - {fileID: 2800000, guid: 5cdee82a77d13994f83b8fdabed7c301, type: 3} + smaaAreaTex: {fileID: 2800000, guid: d1f1048909d55cd4fa1126ab998f617e, type: 3} + smaaSearchTex: {fileID: 2800000, guid: 51eee22c2a633ef4aada830eed57c3fd, type: 3} + m_TexturesResourcesVersion: 0 + - rid: 5121183701168816130 + type: {class: ScreenSpaceAmbientOcclusionDynamicResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_BlueNoise256Textures: + - {fileID: 2800000, guid: 36f118343fc974119bee3d09e2111500, type: 3} + - {fileID: 2800000, guid: 4b7b083e6b6734e8bb2838b0b50a0bc8, type: 3} + - {fileID: 2800000, guid: c06cc21c692f94f5fb5206247191eeee, type: 3} + - {fileID: 2800000, guid: cb76dd40fa7654f9587f6a344f125c9a, type: 3} + - {fileID: 2800000, guid: e32226222ff144b24bf3a5a451de54bc, type: 3} + - {fileID: 2800000, guid: 3302065f671a8450b82c9ddf07426f3a, type: 3} + - {fileID: 2800000, guid: 56a77a3e8d64f47b6afe9e3c95cb57d5, type: 3} + m_Version: 0 + - rid: 5121183701168816131 + type: {class: PostProcessData/ShaderResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + stopNanPS: {fileID: 4800000, guid: 1121bb4e615ca3c48b214e79e841e823, type: 3} + subpixelMorphologicalAntialiasingPS: {fileID: 4800000, guid: 63eaba0ebfb82cc43bde059b4a8c65f6, type: 3} + gaussianDepthOfFieldPS: {fileID: 4800000, guid: 5e7134d6e63e0bc47a1dd2669cedb379, type: 3} + bokehDepthOfFieldPS: {fileID: 4800000, guid: 2aed67ad60045d54ba3a00c91e2d2631, type: 3} + cameraMotionBlurPS: {fileID: 4800000, guid: 1edcd131364091c46a17cbff0b1de97a, type: 3} + paniniProjectionPS: {fileID: 4800000, guid: a15b78cf8ca26ca4fb2090293153c62c, type: 3} + lutBuilderLdrPS: {fileID: 4800000, guid: 65df88701913c224d95fc554db28381a, type: 3} + lutBuilderHdrPS: {fileID: 4800000, guid: ec9fec698a3456d4fb18cf8bacb7a2bc, type: 3} + bloomPS: {fileID: 4800000, guid: 5f1864addb451f54bae8c86d230f736e, type: 3} + temporalAntialiasingPS: {fileID: 4800000, guid: 9c70c1a35ff15f340b38ea84842358bf, type: 3} + LensFlareDataDrivenPS: {fileID: 4800000, guid: 6cda457ac28612740adb23da5d39ea92, type: 3} + LensFlareScreenSpacePS: {fileID: 4800000, guid: 701880fecb344ea4c9cd0db3407ab287, type: 3} + scalingSetupPS: {fileID: 4800000, guid: e8ee25143a34b8c4388709ea947055d1, type: 3} + easuPS: {fileID: 4800000, guid: 562b7ae4f629f144aa97780546fce7c6, type: 3} + uberPostPS: {fileID: 4800000, guid: e7857e9d0c934dc4f83f270f8447b006, type: 3} + finalPostPassPS: {fileID: 4800000, guid: c49e63ed1bbcb334780a3bd19dfed403, type: 3} + m_ShaderResourcesVersion: 0 + - rid: 5121183701168816132 + type: {class: UniversalRenderPipelineEditorAssets, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_DefaultSettingsVolumeProfile: {fileID: 11400000, guid: eda47df5b85f4f249abf7abd73db2cb2, type: 2} + - rid: 5121183701168816133 + type: {class: UniversalRenderPipelineRuntimeXRResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_xrOcclusionMeshPS: {fileID: 4800000, guid: 4431b1f1f743fbf4eb310a967890cbea, type: 3} + m_xrMirrorViewPS: {fileID: 4800000, guid: d5a307c014552314b9f560906d708772, type: 3} + m_xrMotionVector: {fileID: 4800000, guid: f89aac1e4f84468418fe30e611dff395, type: 3} + - rid: 6852985685364965376 + type: {class: URPShaderStrippingSetting, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_StripUnusedPostProcessingVariants: 1 + m_StripUnusedVariants: 1 + m_StripScreenCoordOverrideVariants: 1 + - rid: 6852985685364965377 + type: {class: UniversalRenderPipelineEditorShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_AutodeskInteractive: {fileID: 4800000, guid: 0e9d5a909a1f7e84882a534d0d11e49f, type: 3} + m_AutodeskInteractiveTransparent: {fileID: 4800000, guid: 5c81372d981403744adbdda4433c9c11, type: 3} + m_AutodeskInteractiveMasked: {fileID: 4800000, guid: 80aa867ac363ac043847b06ad71604cd, type: 3} + m_TerrainDetailLit: {fileID: 4800000, guid: f6783ab646d374f94b199774402a5144, type: 3} + m_TerrainDetailGrassBillboard: {fileID: 4800000, guid: 29868e73b638e48ca99a19ea58c48d90, type: 3} + m_TerrainDetailGrass: {fileID: 4800000, guid: e507fdfead5ca47e8b9a768b51c291a1, type: 3} + m_DefaultSpeedTree7Shader: {fileID: 4800000, guid: 0f4122b9a743b744abe2fb6a0a88868b, type: 3} + m_DefaultSpeedTree8Shader: {fileID: -6465566751694194690, guid: 9920c1f1781549a46ba081a2a15a16ec, type: 3} + m_DefaultSpeedTree9Shader: {fileID: -6465566751694194690, guid: cbd3e1cc4ae141c42a30e33b4d666a61, type: 3} + - rid: 6852985685364965378 + type: {class: UniversalRendererResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_CopyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3} + m_CameraMotionVector: {fileID: 4800000, guid: c56b7e0d4c7cb484e959caeeedae9bbf, type: 3} + m_StencilDeferredPS: {fileID: 4800000, guid: e9155b26e1bc55942a41e518703fe304, type: 3} + m_DBufferClear: {fileID: 4800000, guid: f056d8bd2a1c7e44e9729144b4c70395, type: 3} + - rid: 6852985685364965379 + type: {class: UniversalRenderPipelineDebugShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_DebugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, type: 3} + m_HdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3} + m_ProbeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, type: 3} + - rid: 6852985685364965380 + type: {class: UniversalRenderPipelineRuntimeShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_FallbackErrorShader: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3} + m_BlitHDROverlay: {fileID: 4800000, guid: a89bee29cffa951418fc1e2da94d1959, type: 3} + m_CoreBlitPS: {fileID: 4800000, guid: 93446b5c5339d4f00b85c159e1159b7c, type: 3} + m_CoreBlitColorAndDepthPS: {fileID: 4800000, guid: d104b2fc1ca6445babb8e90b0758136b, type: 3} + m_SamplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3} + m_TerrainDetailLit: {fileID: 4800000, guid: f6783ab646d374f94b199774402a5144, type: 3} + m_TerrainDetailGrassBillboard: {fileID: 4800000, guid: 29868e73b638e48ca99a19ea58c48d90, type: 3} + m_TerrainDetailGrass: {fileID: 4800000, guid: e507fdfead5ca47e8b9a768b51c291a1, type: 3} + - rid: 6852985685364965381 + type: {class: UniversalRenderPipelineRuntimeTextures, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 1 + m_BlueNoise64LTex: {fileID: 2800000, guid: e3d24661c1e055f45a7560c033dbb837, type: 3} + m_BayerMatrixTex: {fileID: 2800000, guid: f9ee4ed84c1d10c49aabb9b210b0fc44, type: 3} + m_DebugFontTex: {fileID: 2800000, guid: 26a413214480ef144b2915d6ff4d0beb, type: 3} + - rid: 6852985685364965382 + type: {class: Renderer2DResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_LightShader: {fileID: 4800000, guid: 3f6c848ca3d7bca4bbe846546ac701a1, type: 3} + m_ProjectedShadowShader: {fileID: 4800000, guid: ce09d4a80b88c5a4eb9768fab4f1ee00, type: 3} + m_SpriteShadowShader: {fileID: 4800000, guid: 44fc62292b65ab04eabcf310e799ccf6, type: 3} + m_SpriteUnshadowShader: {fileID: 4800000, guid: de02b375720b5c445afe83cd483bedf3, type: 3} + m_GeometryShadowShader: {fileID: 4800000, guid: 19349a0f9a7ed4c48a27445bcf92e5e1, type: 3} + m_GeometryUnshadowShader: {fileID: 4800000, guid: 77774d9009bb81447b048c907d4c6273, type: 3} + m_FallOffLookup: {fileID: 2800000, guid: 5688ab254e4c0634f8d6c8e0792331ca, type: 3} + m_CopyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3} + m_DefaultLitMaterial: {fileID: 2100000, guid: a97c105638bdf8b4a8650670310a4cd3, type: 2} + m_DefaultUnlitMaterial: {fileID: 2100000, guid: 9dfc825aed78fcd4ba02077103263b40, type: 2} + m_DefaultMaskMaterial: {fileID: 2100000, guid: 15d0c3709176029428a0da2f8cecf0b5, type: 2} + - rid: 6852985685364965383 + type: {class: UniversalRenderPipelineEditorMaterials, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_DefaultMaterial: {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2} + m_DefaultParticleMaterial: {fileID: 2100000, guid: e823cd5b5d27c0f4b8256e7c12ee3e6d, type: 2} + m_DefaultLineMaterial: {fileID: 2100000, guid: e823cd5b5d27c0f4b8256e7c12ee3e6d, type: 2} + m_DefaultTerrainMaterial: {fileID: 2100000, guid: 594ea882c5a793440b60ff72d896021e, type: 2} + m_DefaultDecalMaterial: {fileID: 2100000, guid: 31d0dcc6f2dd4e4408d18036a2c93862, type: 2} + m_DefaultSpriteMaterial: {fileID: 2100000, guid: 9dfc825aed78fcd4ba02077103263b40, type: 2} + - rid: 6852985685364965384 + type: {class: URPDefaultVolumeProfileSettings, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_VolumeProfile: {fileID: 11400000, guid: ab09877e2e707104187f6f83e2f62510, type: 2} + - rid: 6852985685364965385 + type: {class: RenderGraphSettings, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_EnableRenderCompatibilityMode: 0 + - rid: 6852985685364965386 + type: {class: GPUResidentDrawerResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.GPUDriven.Runtime} + data: + m_Version: 0 + m_InstanceDataBufferCopyKernels: {fileID: 7200000, guid: f984aeb540ded8b4fbb8a2047ab5b2e2, type: 3} + m_InstanceDataBufferUploadKernels: {fileID: 7200000, guid: 53864816eb00f2343b60e1a2c5a262ef, type: 3} + m_TransformUpdaterKernels: {fileID: 7200000, guid: 2a567b9b2733f8d47a700c3c85bed75b, type: 3} + m_WindDataUpdaterKernels: {fileID: 7200000, guid: fde76746e4fd0ed418c224f6b4084114, type: 3} + m_OccluderDepthPyramidKernels: {fileID: 7200000, guid: 08b2b5fb307b0d249860612774a987da, type: 3} + m_InstanceOcclusionCullingKernels: {fileID: 7200000, guid: f6d223acabc2f974795a5a7864b50e6c, type: 3} + m_OcclusionCullingDebugKernels: {fileID: 7200000, guid: b23e766bcf50ca4438ef186b174557df, type: 3} + m_DebugOcclusionTestPS: {fileID: 4800000, guid: d3f0849180c2d0944bc71060693df100, type: 3} + m_DebugOccluderPS: {fileID: 4800000, guid: b3c92426a88625841ab15ca6a7917248, type: 3} + - rid: 6852985685364965387 + type: {class: STP/RuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_setupCS: {fileID: 7200000, guid: 33be2e9a5506b2843bdb2bdff9cad5e1, type: 3} + m_preTaaCS: {fileID: 7200000, guid: a679dba8ec4d9ce45884a270b0e22dda, type: 3} + m_taaCS: {fileID: 7200000, guid: 3923900e2b41b5e47bc25bfdcbcdc9e6, type: 3} + - rid: 6852985685364965388 + type: {class: ProbeVolumeBakingResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 1 + dilationShader: {fileID: 7200000, guid: 6bb382f7de370af41b775f54182e491d, type: 3} + subdivideSceneCS: {fileID: 7200000, guid: bb86f1f0af829fd45b2ebddda1245c22, type: 3} + voxelizeSceneShader: {fileID: 4800000, guid: c8b6a681c7b4e2e4785ffab093907f9e, type: 3} + traceVirtualOffsetCS: {fileID: -6772857160820960102, guid: ff2cbab5da58bf04d82c5f34037ed123, type: 3} + traceVirtualOffsetRT: {fileID: -5126288278712620388, guid: ff2cbab5da58bf04d82c5f34037ed123, type: 3} + skyOcclusionCS: {fileID: -6772857160820960102, guid: 5a2a534753fbdb44e96c3c78b5a6999d, type: 3} + skyOcclusionRT: {fileID: -5126288278712620388, guid: 5a2a534753fbdb44e96c3c78b5a6999d, type: 3} + renderingLayerCS: {fileID: -6772857160820960102, guid: 94a070d33e408384bafc1dea4a565df9, type: 3} + renderingLayerRT: {fileID: -5126288278712620388, guid: 94a070d33e408384bafc1dea4a565df9, type: 3} + - rid: 6852985685364965389 + type: {class: ProbeVolumeGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 1 + m_ProbeVolumeDisableStreamingAssets: 0 + - rid: 6852985685364965390 + type: {class: ProbeVolumeDebugResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 1 + probeVolumeDebugShader: {fileID: 4800000, guid: 3b21275fd12d65f49babb5286f040f2d, type: 3} + probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 3a80877c579b9144ebdcc6d923bca303, type: 3} + probeVolumeSamplingDebugShader: {fileID: 4800000, guid: bf54e6528c79a224e96346799064c393, type: 3} + probeVolumeOffsetDebugShader: {fileID: 4800000, guid: db8bd7436dc2c5f4c92655307d198381, type: 3} + probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 20be25aac4e22ee49a7db76fb3df6de2, type: 3} + numbersDisplayTex: {fileID: 2800000, guid: 73fe53b428c5b3440b7e87ee830b608a, type: 3} + - rid: 6852985685364965391 + type: {class: IncludeAdditionalRPAssets, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_version: 0 + m_IncludeReferencedInScenes: 0 + m_IncludeAssetsByLabel: 0 + m_LabelToInclude: + - rid: 6852985685364965392 + type: {class: ShaderStrippingSetting, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 0 + m_ExportShaderVariants: 1 + m_ShaderVariantLogLevel: 0 + m_StripRuntimeDebugShaders: 1 + - rid: 6852985685364965393 + type: {class: ProbeVolumeRuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 1 + probeVolumeBlendStatesCS: {fileID: 7200000, guid: a3f7b8c99de28a94684cb1daebeccf5d, type: 3} + probeVolumeUploadDataCS: {fileID: 7200000, guid: 0951de5992461754fa73650732c4954c, type: 3} + probeVolumeUploadDataL2CS: {fileID: 7200000, guid: 6196f34ed825db14b81fb3eb0ea8d931, type: 3} + - rid: 6852985685364965394 + type: {class: RenderGraphGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_version: 0 + m_EnableCompilationCaching: 1 + m_EnableValidityChecks: 1 + - rid: 8712630790384254976 + type: {class: RenderGraphUtilsResources, ns: UnityEngine.Rendering.RenderGraphModule.Util, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 0 + m_CoreCopyPS: {fileID: 4800000, guid: 12dc59547ea167a4ab435097dd0f9add, type: 3} diff --git a/Assets/Settings/UniversalRenderPipelineGlobalSettings.asset.meta b/Assets/Settings/UniversalRenderPipelineGlobalSettings.asset.meta new file mode 100644 index 0000000..81b84f2 --- /dev/null +++ b/Assets/Settings/UniversalRenderPipelineGlobalSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 18dc0cd2c080841dea60987a38ce93fa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets.meta b/Assets/StreamingAssets.meta new file mode 100644 index 0000000..e9295b9 --- /dev/null +++ b/Assets/StreamingAssets.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d71842c33f02c4c40ab996d0e248ad02 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro.meta b/Assets/TextMesh Pro.meta new file mode 100644 index 0000000..f9da8b5 --- /dev/null +++ b/Assets/TextMesh Pro.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f54d1bd14bd3ca042bd867b519fee8cc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Fonts.meta b/Assets/TextMesh Pro/Fonts.meta new file mode 100644 index 0000000..f0c2972 --- /dev/null +++ b/Assets/TextMesh Pro/Fonts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ab70aee4d56447429c680537fbf93ed +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt b/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt new file mode 100644 index 0000000..f2473f9 --- /dev/null +++ b/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt @@ -0,0 +1,46 @@ +Digitized data copyright (c) 2010 Google Corporation + with Reserved Font Arimo, Tinos and Cousine. +Copyright (c) 2012 Red Hat, Inc. + with Reserved Font Name Liberation. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. + +The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the copyright statement(s). + +"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. + +"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. + +5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. \ No newline at end of file diff --git a/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta b/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta new file mode 100644 index 0000000..fa60cea --- /dev/null +++ b/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e59c59b81ab47f9b6ec5781fa725d2c +timeCreated: 1484171296 +licenseType: Pro +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Fonts/LiberationSans.ttf b/Assets/TextMesh Pro/Fonts/LiberationSans.ttf new file mode 100644 index 0000000..626dd93 Binary files /dev/null and b/Assets/TextMesh Pro/Fonts/LiberationSans.ttf differ diff --git a/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta b/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta new file mode 100644 index 0000000..f2fc814 --- /dev/null +++ b/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta @@ -0,0 +1,19 @@ +fileFormatVersion: 2 +guid: e3265ab4bf004d28a9537516768c1c75 +timeCreated: 1484171297 +licenseType: Pro +TrueTypeFontImporter: + serializedVersion: 2 + fontSize: 16 + forceTextureCase: -2 + characterSpacing: 1 + characterPadding: 0 + includeFontData: 1 + use2xBehaviour: 0 + fontNames: [] + fallbackFontReferences: [] + customCharacters: + fontRenderingMode: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources.meta b/Assets/TextMesh Pro/Resources.meta new file mode 100644 index 0000000..cfc142f --- /dev/null +++ b/Assets/TextMesh Pro/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 243e06394e614e5d99fab26083b707fa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials.meta b/Assets/TextMesh Pro/Resources/Fonts & Materials.meta new file mode 100644 index 0000000..8a01112 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 731f1baa9d144a9897cb1d341c2092b8 +folderAsset: yes +timeCreated: 1442040525 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat new file mode 100644 index 0000000..5bc142c --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat @@ -0,0 +1,106 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LiberationSans SDF - Drop Shadow + m_Shader: {fileID: 4800000, guid: fe393ace9b354375a9cb14cdbbc28be4, type: 3} + m_ShaderKeywords: OUTLINE_ON UNDERLAY_ON + m_LightmapFlags: 5 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Cube: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _FaceTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 28684132378477856, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OutlineTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _Ambient: 0.5 + - _Bevel: 0.5 + - _BevelClamp: 0 + - _BevelOffset: 0 + - _BevelRoundness: 0 + - _BevelWidth: 0 + - _BumpFace: 0 + - _BumpOutline: 0 + - _ColorMask: 15 + - _Diffuse: 0.5 + - _DiffusePower: 1 + - _FaceDilate: 0.1 + - _FaceUVSpeedX: 0 + - _FaceUVSpeedY: 0 + - _GlowInner: 0.05 + - _GlowOffset: 0 + - _GlowOuter: 0.05 + - _GlowPower: 0.75 + - _GradientScale: 10 + - _LightAngle: 3.1416 + - _MaskSoftnessX: 0 + - _MaskSoftnessY: 0 + - _OutlineSoftness: 0 + - _OutlineUVSpeedX: 0 + - _OutlineUVSpeedY: 0 + - _OutlineWidth: 0.1 + - _PerspectiveFilter: 0.875 + - _Reflectivity: 10 + - _ScaleRatioA: 0.9 + - _ScaleRatioB: 0.73125 + - _ScaleRatioC: 0.64125 + - _ScaleX: 1 + - _ScaleY: 1 + - _ShaderFlags: 0 + - _Sharpness: 0 + - _SpecularPower: 2 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _TextureHeight: 1024 + - _TextureWidth: 1024 + - _UnderlayDilate: 0 + - _UnderlayOffsetX: 0.5 + - _UnderlayOffsetY: -0.5 + - _UnderlaySoftness: 0.05 + - _VertexOffsetX: 0 + - _VertexOffsetY: 0 + - _WeightBold: 0.75 + - _WeightNormal: 0 + m_Colors: + - _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0} + - _FaceColor: {r: 1, g: 1, b: 1, a: 1} + - _GlowColor: {r: 0, g: 1, b: 0, a: 0.5} + - _MaskCoord: {r: 0, g: 0, b: 32767, a: 32767} + - _OutlineColor: {r: 0, g: 0, b: 0, a: 1} + - _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1} + - _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecularColor: {r: 1, g: 1, b: 1, a: 1} + - _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.5} diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta new file mode 100644 index 0000000..fbd2cdb --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e73a58f6e2794ae7b1b7e50b7fb811b0 +timeCreated: 1484172806 +licenseType: Pro +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset new file mode 100644 index 0000000..dc7e8e5 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset @@ -0,0 +1,348 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2180264 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LiberationSans SDF Material + m_Shader: {fileID: 4800000, guid: fe393ace9b354375a9cb14cdbbc28be4, type: 3} + m_ShaderKeywords: + m_LightmapFlags: 1 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Cube: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _FaceTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 28268798066460806} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OutlineTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _Ambient: 0.5 + - _Bevel: 0.5 + - _BevelClamp: 0 + - _BevelOffset: 0 + - _BevelRoundness: 0 + - _BevelWidth: 0 + - _BumpFace: 0 + - _BumpOutline: 0 + - _BumpScale: 1 + - _ColorMask: 15 + - _CullMode: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _Diffuse: 0.5 + - _DstBlend: 0 + - _FaceDilate: 0 + - _FaceUVSpeedX: 0 + - _FaceUVSpeedY: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _GlowInner: 0.05 + - _GlowOffset: 0 + - _GlowOuter: 0.05 + - _GlowPower: 0.75 + - _GradientScale: 10 + - _LightAngle: 3.1416 + - _MaskSoftnessX: 0 + - _MaskSoftnessY: 0 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _OutlineSoftness: 0 + - _OutlineUVSpeedX: 0 + - _OutlineUVSpeedY: 0 + - _OutlineWidth: 0 + - _Parallax: 0.02 + - _PerspectiveFilter: 0.875 + - _Reflectivity: 10 + - _ScaleRatioA: 0.90909094 + - _ScaleRatioB: 0.73125 + - _ScaleRatioC: 0.7386364 + - _ScaleX: 1 + - _ScaleY: 1 + - _ShaderFlags: 0 + - _Sharpness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SpecularPower: 2 + - _SrcBlend: 1 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _TextureHeight: 512 + - _TextureWidth: 512 + - _UVSec: 0 + - _UnderlayDilate: 0 + - _UnderlayOffsetX: 0 + - _UnderlayOffsetY: 0 + - _UnderlaySoftness: 0 + - _VertexOffsetX: 0 + - _VertexOffsetY: 0 + - _WeightBold: 0.75 + - _WeightNormal: 0 + - _ZWrite: 1 + m_Colors: + - _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0} + - _FaceColor: {r: 1, g: 1, b: 1, a: 1} + - _GlowColor: {r: 0, g: 1, b: 0, a: 0.5} + - _MaskCoord: {r: 0, g: 0, b: 32767, a: 32767} + - _OutlineColor: {r: 0, g: 0, b: 0, a: 1} + - _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1} + - _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecularColor: {r: 1, g: 1, b: 1, a: 1} + - _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.5} +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 71c1514a6bd24e1e882cebbe1904ce04, type: 3} + m_Name: LiberationSans SDF - Fallback + m_EditorClassIdentifier: + m_Version: 1.1.0 + m_Material: {fileID: 2180264} + m_SourceFontFileGUID: e3265ab4bf004d28a9537516768c1c75 + m_SourceFontFile: {fileID: 12800000, guid: e3265ab4bf004d28a9537516768c1c75, type: 3} + m_AtlasPopulationMode: 1 + InternalDynamicOS: 0 + m_FaceInfo: + m_FaceIndex: 0 + m_FamilyName: Liberation Sans + m_StyleName: Regular + m_PointSize: 86 + m_Scale: 1 + m_UnitsPerEM: 2048 + m_LineHeight: 98.8916 + m_AscentLine: 77.853516 + m_CapLine: 59 + m_MeanLine: 45 + m_Baseline: 0 + m_DescentLine: -18.22461 + m_SuperscriptOffset: 77.853516 + m_SuperscriptSize: 0.5 + m_SubscriptOffset: -18.22461 + m_SubscriptSize: 0.5 + m_UnderlineOffset: -12.261719 + m_UnderlineThickness: 6.298828 + m_StrikethroughOffset: 18 + m_StrikethroughThickness: 6.298828 + m_TabWidth: 24 + m_GlyphTable: [] + m_CharacterTable: [] + m_AtlasTextures: + - {fileID: 28268798066460806} + m_AtlasTextureIndex: 0 + m_IsMultiAtlasTexturesEnabled: 1 + m_ClearDynamicDataOnBuild: 1 + m_UsedGlyphRects: [] + m_FreeGlyphRects: + - m_X: 0 + m_Y: 0 + m_Width: 511 + m_Height: 511 + m_fontInfo: + Name: Liberation Sans + PointSize: 86 + Scale: 1 + CharacterCount: 250 + LineHeight: 98.90625 + Baseline: 0 + Ascender: 77.84375 + CapHeight: 59.1875 + Descender: -18.21875 + CenterLine: 0 + SuperscriptOffset: 77.84375 + SubscriptOffset: -12.261719 + SubSize: 0.5 + Underline: -12.261719 + UnderlineThickness: 6.298828 + strikethrough: 23.675 + strikethroughThickness: 0 + TabWidth: 239.0625 + Padding: 9 + AtlasWidth: 1024 + AtlasHeight: 1024 + atlas: {fileID: 0} + m_AtlasWidth: 512 + m_AtlasHeight: 512 + m_AtlasPadding: 9 + m_AtlasRenderMode: 4169 + m_glyphInfoList: [] + m_KerningTable: + kerningPairs: [] + m_FontFeatureTable: + m_MultipleSubstitutionRecords: [] + m_LigatureSubstitutionRecords: [] + m_GlyphPairAdjustmentRecords: [] + m_MarkToBaseAdjustmentRecords: [] + m_MarkToMarkAdjustmentRecords: [] + fallbackFontAssets: [] + m_FallbackFontAssetTable: [] + m_CreationSettings: + sourceFontFileName: + sourceFontFileGUID: e3265ab4bf004d28a9537516768c1c75 + faceIndex: 0 + pointSizeSamplingMode: 0 + pointSize: 86 + padding: 9 + paddingMode: 0 + packingMode: 4 + atlasWidth: 512 + atlasHeight: 512 + characterSetSelectionMode: 1 + characterSequence: 32 - 126, 160 - 255, 8192 - 8303, 8364, 8482, 9633 + referencedFontAssetGUID: 8f586378b4e144a9851e7b34d9b748ee + referencedTextAssetGUID: + fontStyle: 0 + fontStyleModifier: 0 + renderMode: 4169 + includeFontFeatures: 1 + m_FontWeightTable: + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + fontWeights: + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + normalStyle: 0 + normalSpacingOffset: 0 + boldStyle: 0.75 + boldSpacing: 7 + italicStyle: 35 + tabSize: 10 +--- !u!28 &28268798066460806 +Texture2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LiberationSans SDF Atlas + m_ImageContentsHash: + serializedVersion: 2 + Hash: 00000000000000000000000000000000 + m_ForcedFallbackFormat: 4 + m_DownscaleFallback: 0 + serializedVersion: 2 + m_Width: 0 + m_Height: 0 + m_CompleteImageSize: 0 + m_TextureFormat: 1 + m_MipCount: 1 + m_IsReadable: 1 + m_StreamingMipmaps: 0 + m_StreamingMipmapsPriority: 0 + m_AlphaIsTransparency: 0 + m_ImageCount: 1 + m_TextureDimension: 2 + m_TextureSettings: + serializedVersion: 2 + m_FilterMode: 1 + m_Aniso: 1 + m_MipBias: 0 + m_WrapU: 0 + m_WrapV: 0 + m_WrapW: 0 + m_LightmapFormat: 0 + m_ColorSpace: 0 + image data: 0 + _typelessdata: + m_StreamData: + offset: 0 + size: 0 + path: diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta new file mode 100644 index 0000000..42dd6ac --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2e498d1c8094910479dc3e1b768306a4 +timeCreated: 1484171803 +licenseType: Pro +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat new file mode 100644 index 0000000..cca8ce8 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat @@ -0,0 +1,104 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LiberationSans SDF - Outline + m_Shader: {fileID: 4800000, guid: fe393ace9b354375a9cb14cdbbc28be4, type: 3} + m_ShaderKeywords: OUTLINE_ON + m_LightmapFlags: 5 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Cube: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _FaceTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 28684132378477856, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OutlineTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _Ambient: 0.5 + - _Bevel: 0.5 + - _BevelClamp: 0 + - _BevelOffset: 0 + - _BevelRoundness: 0 + - _BevelWidth: 0 + - _BumpFace: 0 + - _BumpOutline: 0 + - _ColorMask: 15 + - _Diffuse: 0.5 + - _FaceDilate: 0.1 + - _FaceUVSpeedX: 0 + - _FaceUVSpeedY: 0 + - _GlowInner: 0.05 + - _GlowOffset: 0 + - _GlowOuter: 0.05 + - _GlowPower: 0.75 + - _GradientScale: 10 + - _LightAngle: 3.1416 + - _MaskSoftnessX: 0 + - _MaskSoftnessY: 0 + - _OutlineSoftness: 0 + - _OutlineUVSpeedX: 0 + - _OutlineUVSpeedY: 0 + - _OutlineWidth: 0.1 + - _PerspectiveFilter: 0.875 + - _Reflectivity: 10 + - _ScaleRatioA: 0.9 + - _ScaleRatioB: 0.73125 + - _ScaleRatioC: 0.64125 + - _ScaleX: 1 + - _ScaleY: 1 + - _ShaderFlags: 0 + - _Sharpness: 0 + - _SpecularPower: 2 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _TextureHeight: 1024 + - _TextureWidth: 1024 + - _UnderlayDilate: 0 + - _UnderlayOffsetX: 0 + - _UnderlayOffsetY: 0 + - _UnderlaySoftness: 0 + - _VertexOffsetX: 0 + - _VertexOffsetY: 0 + - _WeightBold: 0.75 + - _WeightNormal: 0 + m_Colors: + - _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767} + - _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0} + - _FaceColor: {r: 1, g: 1, b: 1, a: 1} + - _GlowColor: {r: 0, g: 1, b: 0, a: 0.5} + - _MaskCoord: {r: 0, g: 0, b: 32767, a: 32767} + - _OutlineColor: {r: 0, g: 0, b: 0, a: 1} + - _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1} + - _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecularColor: {r: 1, g: 1, b: 1, a: 1} + - _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.5} diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta new file mode 100644 index 0000000..88d6334 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79459efec17a4d00a321bdcc27bbc385 +timeCreated: 1484172856 +licenseType: Pro +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset new file mode 100644 index 0000000..270e5eb --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset @@ -0,0 +1,8095 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2180264 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LiberationSans SDF Material + m_Shader: {fileID: 4800000, guid: fe393ace9b354375a9cb14cdbbc28be4, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 1 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 28684132378477856} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _ColorMask: 15 + - _CullMode: 0 + - _FaceDilate: 0 + - _GradientScale: 10 + - _MaskSoftnessX: 0 + - _MaskSoftnessY: 0 + - _OutlineSoftness: 0 + - _OutlineWidth: 0 + - _PerspectiveFilter: 0.875 + - _ScaleRatioA: 0.9 + - _ScaleRatioB: 1 + - _ScaleRatioC: 0.73125 + - _ScaleX: 1 + - _ScaleY: 1 + - _ShaderFlags: 0 + - _Sharpness: 0 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _TextureHeight: 1024 + - _TextureWidth: 1024 + - _UnderlayDilate: 0 + - _UnderlayOffsetX: 0 + - _UnderlayOffsetY: 0 + - _UnderlaySoftness: 0 + - _VertexOffsetX: 0 + - _VertexOffsetY: 0 + - _WeightBold: 0.75 + - _WeightNormal: 0 + m_Colors: + - _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767} + - _FaceColor: {r: 1, g: 1, b: 1, a: 1} + - _OutlineColor: {r: 0, g: 0, b: 0, a: 1} + - _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.5} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 71c1514a6bd24e1e882cebbe1904ce04, type: 3} + m_Name: LiberationSans SDF + m_EditorClassIdentifier: + m_Version: 1.1.0 + m_FaceInfo: + m_FaceIndex: 0 + m_FamilyName: Liberation Sans + m_StyleName: Regular + m_PointSize: 86 + m_Scale: 1 + m_UnitsPerEM: 0 + m_LineHeight: 98.8916 + m_AscentLine: 77.853516 + m_CapLine: 59 + m_MeanLine: 45 + m_Baseline: 0 + m_DescentLine: -18.22461 + m_SuperscriptOffset: 77.853516 + m_SuperscriptSize: 0.5 + m_SubscriptOffset: -18.22461 + m_SubscriptSize: 0.5 + m_UnderlineOffset: -12.261719 + m_UnderlineThickness: 6.298828 + m_StrikethroughOffset: 18 + m_StrikethroughThickness: 6.298828 + m_TabWidth: 24 + m_Material: {fileID: 2180264} + m_SourceFontFileGUID: e3265ab4bf004d28a9537516768c1c75 + m_CreationSettings: + sourceFontFileName: + sourceFontFileGUID: e3265ab4bf004d28a9537516768c1c75 + faceIndex: 0 + pointSizeSamplingMode: 0 + pointSize: 86 + padding: 9 + paddingMode: 0 + packingMode: 4 + atlasWidth: 1024 + atlasHeight: 1024 + characterSetSelectionMode: 1 + characterSequence: 32 - 126, 160 - 255, 8192 - 8303, 8364, 8482, 9633 + referencedFontAssetGUID: 8f586378b4e144a9851e7b34d9b748ee + referencedTextAssetGUID: + fontStyle: 0 + fontStyleModifier: 0 + renderMode: 4169 + includeFontFeatures: 1 + m_SourceFontFile: {fileID: 0} + m_SourceFontFilePath: + m_AtlasPopulationMode: 0 + InternalDynamicOS: 0 + m_GlyphTable: + - m_Index: 3 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 4 + m_Metrics: + m_Width: 9 + m_Height: 59 + m_HorizontalBearingX: 9 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 28 + m_GlyphRect: + m_X: 555 + m_Y: 816 + m_Width: 9 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 5 + m_Metrics: + m_Width: 25 + m_Height: 19 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 31 + m_GlyphRect: + m_X: 775 + m_Y: 922 + m_Width: 25 + m_Height: 19 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 6 + m_Metrics: + m_Width: 48 + m_Height: 59 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 471 + m_Y: 170 + m_Width: 48 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 7 + m_Metrics: + m_Width: 47 + m_Height: 70 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 64 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 161 + m_Y: 212 + m_Width: 47 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 8 + m_Metrics: + m_Width: 70 + m_Height: 61 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 76 + m_GlyphRect: + m_X: 409 + m_Y: 10 + m_Width: 70 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 9 + m_Metrics: + m_Width: 53 + m_Height: 61 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 437 + m_Y: 90 + m_Width: 53 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 10 + m_Metrics: + m_Width: 8 + m_Height: 19 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 16 + m_GlyphRect: + m_X: 975 + m_Y: 961 + m_Width: 8 + m_Height: 19 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 11 + m_Metrics: + m_Width: 24 + m_Height: 80 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 146 + m_Y: 673 + m_Width: 24 + m_Height: 80 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 12 + m_Metrics: + m_Width: 24 + m_Height: 80 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 189 + m_Y: 671 + m_Width: 24 + m_Height: 80 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 13 + m_Metrics: + m_Width: 31 + m_Height: 30 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 33 + m_GlyphRect: + m_X: 495 + m_Y: 984 + m_Width: 31 + m_Height: 30 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 14 + m_Metrics: + m_Width: 42 + m_Height: 43 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 50 + m_HorizontalAdvance: 50 + m_GlyphRect: + m_X: 972 + m_Y: 330 + m_Width: 42 + m_Height: 43 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 15 + m_Metrics: + m_Width: 10 + m_Height: 20 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 9 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 583 + m_Y: 992 + m_Width: 10 + m_Height: 20 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 16 + m_Metrics: + m_Width: 23 + m_Height: 7 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 26 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 399 + m_Y: 925 + m_Width: 23 + m_Height: 7 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 17 + m_Metrics: + m_Width: 10 + m_Height: 9 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 9 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 657 + m_Y: 958 + m_Width: 10 + m_Height: 9 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 18 + m_Metrics: + m_Width: 24 + m_Height: 63 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 695 + m_Y: 409 + m_Width: 24 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 19 + m_Metrics: + m_Width: 42 + m_Height: 61 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 532 + m_Y: 249 + m_Width: 42 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 20 + m_Metrics: + m_Width: 38 + m_Height: 59 + m_HorizontalBearingX: 6 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 915 + m_Y: 501 + m_Width: 38 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 21 + m_Metrics: + m_Width: 40 + m_Height: 60 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 596 + m_Y: 329 + m_Width: 40 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 22 + m_Metrics: + m_Width: 42 + m_Height: 61 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 417 + m_Y: 503 + m_Width: 42 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 23 + m_Metrics: + m_Width: 45 + m_Height: 59 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 725 + m_Y: 252 + m_Width: 45 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 24 + m_Metrics: + m_Width: 42 + m_Height: 60 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 724 + m_Y: 330 + m_Width: 42 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 25 + m_Metrics: + m_Width: 41 + m_Height: 61 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 912 + m_Y: 262 + m_Width: 41 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 26 + m_Metrics: + m_Width: 40 + m_Height: 59 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 438 + m_Y: 830 + m_Width: 40 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 27 + m_Metrics: + m_Width: 42 + m_Height: 61 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 733 + m_Y: 648 + m_Width: 42 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 28 + m_Metrics: + m_Width: 40 + m_Height: 61 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 856 + m_Y: 484 + m_Width: 40 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 29 + m_Metrics: + m_Width: 10 + m_Height: 45 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 45 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 897 + m_Y: 819 + m_Width: 10 + m_Height: 45 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 30 + m_Metrics: + m_Width: 10 + m_Height: 57 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 45 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 429 + m_Y: 287 + m_Width: 10 + m_Height: 57 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 31 + m_Metrics: + m_Width: 42 + m_Height: 43 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 50 + m_HorizontalAdvance: 50 + m_GlyphRect: + m_X: 846 + m_Y: 341 + m_Width: 42 + m_Height: 43 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 32 + m_Metrics: + m_Width: 42 + m_Height: 29 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 42 + m_HorizontalAdvance: 50 + m_GlyphRect: + m_X: 227 + m_Y: 281 + m_Width: 42 + m_Height: 29 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 33 + m_Metrics: + m_Width: 42 + m_Height: 43 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 50 + m_HorizontalAdvance: 50 + m_GlyphRect: + m_X: 972 + m_Y: 392 + m_Width: 42 + m_Height: 43 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 34 + m_Metrics: + m_Width: 42 + m_Height: 60 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 733 + m_Y: 728 + m_Width: 42 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 35 + m_Metrics: + m_Width: 74 + m_Height: 74 + m_HorizontalBearingX: 6 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 87 + m_GlyphRect: + m_X: 10 + m_Y: 10 + m_Width: 74 + m_Height: 74 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 36 + m_Metrics: + m_Width: 57 + m_Height: 59 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 828 + m_Y: 103 + m_Width: 57 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 37 + m_Metrics: + m_Width: 46 + m_Height: 59 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 542 + m_Y: 486 + m_Width: 46 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 38 + m_Metrics: + m_Width: 55 + m_Height: 61 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 509 + m_Y: 88 + m_Width: 55 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 39 + m_Metrics: + m_Width: 51 + m_Height: 59 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 655 + m_Y: 252 + m_Width: 51 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 40 + m_Metrics: + m_Width: 47 + m_Height: 59 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 629 + m_Y: 409 + m_Width: 47 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 41 + m_Metrics: + m_Width: 43 + m_Height: 59 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 53 + m_GlyphRect: + m_X: 789 + m_Y: 259 + m_Width: 43 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 42 + m_Metrics: + m_Width: 57 + m_Height: 61 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 67 + m_GlyphRect: + m_X: 904 + m_Y: 103 + m_Width: 57 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 43 + m_Metrics: + m_Width: 48 + m_Height: 59 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 495 + m_Y: 407 + m_Width: 48 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 44 + m_Metrics: + m_Width: 9 + m_Height: 59 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 552 + m_Y: 919 + m_Width: 9 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 45 + m_Metrics: + m_Width: 36 + m_Height: 60 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 43 + m_GlyphRect: + m_X: 797 + m_Y: 569 + m_Width: 36 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 46 + m_Metrics: + m_Width: 50 + m_Height: 59 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 458 + m_Y: 326 + m_Width: 50 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 47 + m_Metrics: + m_Width: 39 + m_Height: 59 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 497 + m_Y: 816 + m_Width: 39 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 48 + m_Metrics: + m_Width: 59 + m_Height: 59 + m_HorizontalBearingX: 6 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 71 + m_GlyphRect: + m_X: 97 + m_Y: 955 + m_Width: 59 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 49 + m_Metrics: + m_Width: 48 + m_Height: 59 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 562 + m_Y: 408 + m_Width: 48 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 50 + m_Metrics: + m_Width: 59 + m_Height: 61 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 67 + m_GlyphRect: + m_X: 583 + m_Y: 89 + m_Width: 59 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 51 + m_Metrics: + m_Width: 46 + m_Height: 59 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 669 + m_Y: 491 + m_Width: 46 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 52 + m_Metrics: + m_Width: 59 + m_Height: 76 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 67 + m_GlyphRect: + m_X: 10 + m_Y: 103 + m_Width: 59 + m_Height: 76 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 53 + m_Metrics: + m_Width: 52 + m_Height: 59 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 461 + m_Y: 248 + m_Width: 52 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 54 + m_Metrics: + m_Width: 51 + m_Height: 61 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 288 + m_Y: 273 + m_Width: 51 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 55 + m_Metrics: + m_Width: 50 + m_Height: 59 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 52 + m_GlyphRect: + m_X: 527 + m_Y: 329 + m_Width: 50 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 56 + m_Metrics: + m_Width: 50 + m_Height: 60 + m_HorizontalBearingX: 6 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 655 + m_Y: 330 + m_Width: 50 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 57 + m_Metrics: + m_Width: 57 + m_Height: 59 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 273 + m_Y: 195 + m_Width: 57 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 58 + m_Metrics: + m_Width: 85 + m_Height: 59 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 85 + m_GlyphRect: + m_X: 103 + m_Y: 10 + m_Width: 85 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 59 + m_Metrics: + m_Width: 56 + m_Height: 59 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 58 + m_GlyphRect: + m_X: 175 + m_Y: 955 + m_Width: 56 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 60 + m_Metrics: + m_Width: 54 + m_Height: 59 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 56 + m_GlyphRect: + m_X: 582 + m_Y: 169 + m_Width: 54 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 61 + m_Metrics: + m_Width: 49 + m_Height: 59 + m_HorizontalBearingX: 2 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 53 + m_GlyphRect: + m_X: 427 + m_Y: 404 + m_Width: 49 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 62 + m_Metrics: + m_Width: 18 + m_Height: 80 + m_HorizontalBearingX: 6 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 232 + m_Y: 671 + m_Width: 18 + m_Height: 80 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 63 + m_Metrics: + m_Width: 24 + m_Height: 63 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 375 + m_Y: 951 + m_Width: 24 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 64 + m_Metrics: + m_Width: 18 + m_Height: 80 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 223 + m_Y: 393 + m_Width: 18 + m_Height: 80 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 65 + m_Metrics: + m_Width: 38 + m_Height: 31 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 38 + m_GlyphRect: + m_X: 630 + m_Y: 870 + m_Width: 38 + m_Height: 31 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 66 + m_Metrics: + m_Width: 51 + m_Height: 6 + m_HorizontalBearingX: -2 + m_HorizontalBearingY: -12 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 497 + m_Y: 894 + m_Width: 51 + m_Height: 6 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 67 + m_Metrics: + m_Width: 19 + m_Height: 13 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 456 + m_Y: 997 + m_Width: 19 + m_Height: 13 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 68 + m_Metrics: + m_Width: 45 + m_Height: 47 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 669 + m_Y: 648 + m_Width: 45 + m_Height: 47 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 69 + m_Metrics: + m_Width: 40 + m_Height: 63 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 738 + m_Y: 409 + m_Width: 40 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 70 + m_Metrics: + m_Width: 38 + m_Height: 47 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 43 + m_GlyphRect: + m_X: 908 + m_Y: 579 + m_Width: 38 + m_Height: 47 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 71 + m_Metrics: + m_Width: 40 + m_Height: 63 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 797 + m_Y: 403 + m_Width: 40 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 72 + m_Metrics: + m_Width: 42 + m_Height: 47 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 785 + m_Y: 337 + m_Width: 42 + m_Height: 47 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 73 + m_Metrics: + m_Width: 25 + m_Height: 62 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 25 + m_GlyphRect: + m_X: 538 + m_Y: 168 + m_Width: 25 + m_Height: 62 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 74 + m_Metrics: + m_Width: 40 + m_Height: 64 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 86 + m_Y: 872 + m_Width: 40 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 75 + m_Metrics: + m_Width: 38 + m_Height: 62 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 430 + m_Y: 666 + m_Width: 38 + m_Height: 62 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 76 + m_Metrics: + m_Width: 9 + m_Height: 62 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 19 + m_GlyphRect: + m_X: 852 + m_Y: 567 + m_Width: 9 + m_Height: 62 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 77 + m_Metrics: + m_Width: 17 + m_Height: 80 + m_HorizontalBearingX: -3 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 20 + m_GlyphRect: + m_X: 145 + m_Y: 773 + m_Width: 17 + m_Height: 80 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 78 + m_Metrics: + m_Width: 40 + m_Height: 62 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 44 + m_GlyphRect: + m_X: 856 + m_Y: 403 + m_Width: 40 + m_Height: 62 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 79 + m_Metrics: + m_Width: 9 + m_Height: 62 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 19 + m_GlyphRect: + m_X: 880 + m_Y: 564 + m_Width: 9 + m_Height: 62 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 80 + m_Metrics: + m_Width: 64 + m_Height: 46 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 74 + m_GlyphRect: + m_X: 378 + m_Y: 222 + m_Width: 64 + m_Height: 46 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 81 + m_Metrics: + m_Width: 38 + m_Height: 46 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 630 + m_Y: 805 + m_Width: 38 + m_Height: 46 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 82 + m_Metrics: + m_Width: 42 + m_Height: 47 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 972 + m_Y: 264 + m_Width: 42 + m_Height: 47 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 83 + m_Metrics: + m_Width: 40 + m_Height: 64 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 145 + m_Y: 872 + m_Width: 40 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 84 + m_Metrics: + m_Width: 40 + m_Height: 64 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 329 + m_Y: 666 + m_Width: 40 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 85 + m_Metrics: + m_Width: 23 + m_Height: 46 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 926 + m_Y: 816 + m_Width: 23 + m_Height: 46 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 86 + m_Metrics: + m_Width: 38 + m_Height: 47 + m_HorizontalBearingX: 2 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 43 + m_GlyphRect: + m_X: 956 + m_Y: 740 + m_Width: 38 + m_Height: 47 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 87 + m_Metrics: + m_Width: 23 + m_Height: 56 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 55 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 388 + m_Y: 672 + m_Width: 23 + m_Height: 56 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 88 + m_Metrics: + m_Width: 38 + m_Height: 46 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 45 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 495 + m_Y: 919 + m_Width: 38 + m_Height: 46 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 89 + m_Metrics: + m_Width: 43 + m_Height: 45 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 45 + m_HorizontalAdvance: 43 + m_GlyphRect: + m_X: 226 + m_Y: 329 + m_Width: 43 + m_Height: 45 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 90 + m_Metrics: + m_Width: 63 + m_Height: 45 + m_HorizontalBearingX: -1 + m_HorizontalBearingY: 45 + m_HorizontalAdvance: 61 + m_GlyphRect: + m_X: 655 + m_Y: 188 + m_Width: 63 + m_Height: 45 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 91 + m_Metrics: + m_Width: 43 + m_Height: 45 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 45 + m_HorizontalAdvance: 43 + m_GlyphRect: + m_X: 737 + m_Y: 188 + m_Width: 43 + m_Height: 45 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 92 + m_Metrics: + m_Width: 41 + m_Height: 63 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 45 + m_HorizontalAdvance: 41 + m_GlyphRect: + m_X: 609 + m_Y: 640 + m_Width: 41 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 93 + m_Metrics: + m_Width: 35 + m_Height: 45 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 45 + m_HorizontalAdvance: 42 + m_GlyphRect: + m_X: 968 + m_Y: 806 + m_Width: 35 + m_Height: 45 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 94 + m_Metrics: + m_Width: 27 + m_Height: 80 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 164 + m_Y: 113 + m_Width: 27 + m_Height: 80 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 95 + m_Metrics: + m_Width: 8 + m_Height: 80 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 22 + m_GlyphRect: + m_X: 181 + m_Y: 772 + m_Width: 8 + m_Height: 80 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 96 + m_Metrics: + m_Width: 27 + m_Height: 80 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 227 + m_Y: 182 + m_Width: 27 + m_Height: 80 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 97 + m_Metrics: + m_Width: 44 + m_Height: 11 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 34 + m_HorizontalAdvance: 50 + m_GlyphRect: + m_X: 333 + m_Y: 832 + m_Width: 44 + m_Height: 11 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 98 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 99 + m_Metrics: + m_Width: 10 + m_Height: 59 + m_HorizontalBearingX: 9 + m_HorizontalBearingY: 45 + m_HorizontalAdvance: 28 + m_GlyphRect: + m_X: 349 + m_Y: 195 + m_Width: 10 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 100 + m_Metrics: + m_Width: 38 + m_Height: 60 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 915 + m_Y: 422 + m_Width: 38 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 101 + m_Metrics: + m_Width: 45 + m_Height: 60 + m_HorizontalBearingX: 2 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 669 + m_Y: 569 + m_Width: 45 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 102 + m_Metrics: + m_Width: 40 + m_Height: 40 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 48 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 733 + m_Y: 807 + m_Width: 40 + m_Height: 40 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 103 + m_Metrics: + m_Width: 50 + m_Height: 59 + m_HorizontalBearingX: -1 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 358 + m_Y: 357 + m_Width: 50 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 104 + m_Metrics: + m_Width: 8 + m_Height: 80 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 22 + m_GlyphRect: + m_X: 306 + m_Y: 766 + m_Width: 8 + m_Height: 80 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 105 + m_Metrics: + m_Width: 40 + m_Height: 69 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 223 + m_Y: 492 + m_Width: 40 + m_Height: 69 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 106 + m_Metrics: + m_Width: 25 + m_Height: 8 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 931 + m_Y: 961 + m_Width: 25 + m_Height: 8 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 107 + m_Metrics: + m_Width: 61 + m_Height: 61 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 63 + m_GlyphRect: + m_X: 277 + m_Y: 90 + m_Width: 61 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 108 + m_Metrics: + m_Width: 32 + m_Height: 33 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 32 + m_GlyphRect: + m_X: 784 + m_Y: 870 + m_Width: 32 + m_Height: 33 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 109 + m_Metrics: + m_Width: 42 + m_Height: 34 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 39 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 972 + m_Y: 454 + m_Width: 42 + m_Height: 34 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 110 + m_Metrics: + m_Width: 42 + m_Height: 24 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 32 + m_HorizontalAdvance: 50 + m_GlyphRect: + m_X: 972 + m_Y: 560 + m_Width: 42 + m_Height: 24 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 111 + m_Metrics: + m_Width: 23 + m_Height: 7 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 26 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 583 + m_Y: 890 + m_Width: 23 + m_Height: 7 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 112 + m_Metrics: + m_Width: 61 + m_Height: 61 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 63 + m_GlyphRect: + m_X: 357 + m_Y: 90 + m_Width: 61 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 113 + m_Metrics: + m_Width: 50 + m_Height: 4 + m_HorizontalBearingX: -1 + m_HorizontalBearingY: 65 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 862 + m_Y: 961 + m_Width: 50 + m_Height: 4 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 114 + m_Metrics: + m_Width: 24 + m_Height: 24 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 34 + m_GlyphRect: + m_X: 687 + m_Y: 906 + m_Width: 24 + m_Height: 24 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 115 + m_Metrics: + m_Width: 43 + m_Height: 52 + m_HorizontalBearingX: 2 + m_HorizontalBearingY: 52 + m_HorizontalAdvance: 47 + m_GlyphRect: + m_X: 607 + m_Y: 487 + m_Width: 43 + m_Height: 52 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 116 + m_Metrics: + m_Width: 27 + m_Height: 36 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 792 + m_Y: 815 + m_Width: 27 + m_Height: 36 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 117 + m_Metrics: + m_Width: 27 + m_Height: 37 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 687 + m_Y: 796 + m_Width: 27 + m_Height: 37 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 118 + m_Metrics: + m_Width: 19 + m_Height: 13 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 545 + m_Y: 997 + m_Width: 19 + m_Height: 13 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 119 + m_Metrics: + m_Width: 43 + m_Height: 63 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 45 + m_HorizontalAdvance: 50 + m_GlyphRect: + m_X: 593 + m_Y: 247 + m_Width: 43 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 120 + m_Metrics: + m_Width: 40 + m_Height: 70 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 46 + m_GlyphRect: + m_X: 208 + m_Y: 770 + m_Width: 40 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 121 + m_Metrics: + m_Width: 10 + m_Height: 10 + m_HorizontalBearingX: 9 + m_HorizontalBearingY: 28 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 996 + m_Y: 932 + m_Width: 10 + m_Height: 10 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 122 + m_Metrics: + m_Width: 16 + m_Height: 18 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 622 + m_Y: 958 + m_Width: 16 + m_Height: 18 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 123 + m_Metrics: + m_Width: 24 + m_Height: 35 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 687 + m_Y: 852 + m_Width: 24 + m_Height: 35 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 124 + m_Metrics: + m_Width: 29 + m_Height: 33 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 31 + m_GlyphRect: + m_X: 835 + m_Y: 877 + m_Width: 29 + m_Height: 33 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 125 + m_Metrics: + m_Width: 42 + m_Height: 34 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 39 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 972 + m_Y: 507 + m_Width: 42 + m_Height: 34 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 126 + m_Metrics: + m_Width: 67 + m_Height: 59 + m_HorizontalBearingX: 2 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 72 + m_GlyphRect: + m_X: 498 + m_Y: 10 + m_Width: 67 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 127 + m_Metrics: + m_Width: 68 + m_Height: 59 + m_HorizontalBearingX: 2 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 72 + m_GlyphRect: + m_X: 10 + m_Y: 955 + m_Width: 68 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 128 + m_Metrics: + m_Width: 66 + m_Height: 60 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 72 + m_GlyphRect: + m_X: 584 + m_Y: 10 + m_Width: 66 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 129 + m_Metrics: + m_Width: 43 + m_Height: 60 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 45 + m_HorizontalAdvance: 53 + m_GlyphRect: + m_X: 903 + m_Y: 183 + m_Width: 43 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 130 + m_Metrics: + m_Width: 57 + m_Height: 74 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 74 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 829 + m_Y: 10 + m_Width: 57 + m_Height: 74 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 131 + m_Metrics: + m_Width: 57 + m_Height: 74 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 74 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 905 + m_Y: 10 + m_Width: 57 + m_Height: 74 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 132 + m_Metrics: + m_Width: 57 + m_Height: 75 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 75 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 10 + m_Y: 673 + m_Width: 57 + m_Height: 75 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 133 + m_Metrics: + m_Width: 57 + m_Height: 75 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 75 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 10 + m_Y: 767 + m_Width: 57 + m_Height: 75 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 134 + m_Metrics: + m_Width: 57 + m_Height: 72 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 72 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 88 + m_Y: 113 + m_Width: 57 + m_Height: 72 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 135 + m_Metrics: + m_Width: 57 + m_Height: 75 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 75 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 10 + m_Y: 861 + m_Width: 57 + m_Height: 75 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 136 + m_Metrics: + m_Width: 82 + m_Height: 59 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 86 + m_GlyphRect: + m_X: 207 + m_Y: 10 + m_Width: 82 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 137 + m_Metrics: + m_Width: 55 + m_Height: 78 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 10 + m_Y: 576 + m_Width: 55 + m_Height: 78 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 138 + m_Metrics: + m_Width: 47 + m_Height: 74 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 74 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 84 + m_Y: 580 + m_Width: 47 + m_Height: 74 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 139 + m_Metrics: + m_Width: 47 + m_Height: 74 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 74 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 157 + m_Y: 487 + m_Width: 47 + m_Height: 74 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 140 + m_Metrics: + m_Width: 47 + m_Height: 75 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 75 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 157 + m_Y: 393 + m_Width: 47 + m_Height: 75 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 141 + m_Metrics: + m_Width: 47 + m_Height: 72 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 72 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 150 + m_Y: 580 + m_Width: 47 + m_Height: 72 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 142 + m_Metrics: + m_Width: 19 + m_Height: 74 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 74 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 227 + m_Y: 859 + m_Width: 19 + m_Height: 74 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 143 + m_Metrics: + m_Width: 19 + m_Height: 74 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 74 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 265 + m_Y: 859 + m_Width: 19 + m_Height: 74 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 144 + m_Metrics: + m_Width: 28 + m_Height: 75 + m_HorizontalBearingX: -2 + m_HorizontalBearingY: 75 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 981 + m_Y: 10 + m_Width: 28 + m_Height: 75 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 145 + m_Metrics: + m_Width: 25 + m_Height: 72 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 72 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 216 + m_Y: 580 + m_Width: 25 + m_Height: 72 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 146 + m_Metrics: + m_Width: 58 + m_Height: 59 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 751 + m_Y: 102 + m_Width: 58 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 147 + m_Metrics: + m_Width: 48 + m_Height: 75 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 75 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 210 + m_Y: 88 + m_Width: 48 + m_Height: 75 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 148 + m_Metrics: + m_Width: 59 + m_Height: 75 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 74 + m_HorizontalAdvance: 67 + m_GlyphRect: + m_X: 10 + m_Y: 388 + m_Width: 59 + m_Height: 75 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 149 + m_Metrics: + m_Width: 59 + m_Height: 75 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 74 + m_HorizontalAdvance: 67 + m_GlyphRect: + m_X: 10 + m_Y: 482 + m_Width: 59 + m_Height: 75 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 150 + m_Metrics: + m_Width: 59 + m_Height: 76 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 75 + m_HorizontalAdvance: 67 + m_GlyphRect: + m_X: 10 + m_Y: 198 + m_Width: 59 + m_Height: 76 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 151 + m_Metrics: + m_Width: 59 + m_Height: 76 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 75 + m_HorizontalAdvance: 67 + m_GlyphRect: + m_X: 10 + m_Y: 293 + m_Width: 59 + m_Height: 76 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 152 + m_Metrics: + m_Width: 59 + m_Height: 73 + m_HorizontalBearingX: 4 + m_HorizontalBearingY: 72 + m_HorizontalAdvance: 67 + m_GlyphRect: + m_X: 751 + m_Y: 10 + m_Width: 59 + m_Height: 73 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 153 + m_Metrics: + m_Width: 40 + m_Height: 39 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 48 + m_HorizontalAdvance: 50 + m_GlyphRect: + m_X: 838 + m_Y: 819 + m_Width: 40 + m_Height: 39 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 154 + m_Metrics: + m_Width: 63 + m_Height: 65 + m_HorizontalBearingX: 2 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 67 + m_GlyphRect: + m_X: 669 + m_Y: 10 + m_Width: 63 + m_Height: 65 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 155 + m_Metrics: + m_Width: 50 + m_Height: 75 + m_HorizontalBearingX: 6 + m_HorizontalBearingY: 74 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 88 + m_Y: 392 + m_Width: 50 + m_Height: 75 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 156 + m_Metrics: + m_Width: 50 + m_Height: 75 + m_HorizontalBearingX: 6 + m_HorizontalBearingY: 74 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 88 + m_Y: 486 + m_Width: 50 + m_Height: 75 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 157 + m_Metrics: + m_Width: 50 + m_Height: 76 + m_HorizontalBearingX: 6 + m_HorizontalBearingY: 75 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 88 + m_Y: 297 + m_Width: 50 + m_Height: 76 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 158 + m_Metrics: + m_Width: 50 + m_Height: 73 + m_HorizontalBearingX: 6 + m_HorizontalBearingY: 72 + m_HorizontalAdvance: 62 + m_GlyphRect: + m_X: 157 + m_Y: 301 + m_Width: 50 + m_Height: 73 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 159 + m_Metrics: + m_Width: 54 + m_Height: 74 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 74 + m_HorizontalAdvance: 56 + m_GlyphRect: + m_X: 88 + m_Y: 204 + m_Width: 54 + m_Height: 74 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 160 + m_Metrics: + m_Width: 46 + m_Height: 59 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 57 + m_GlyphRect: + m_X: 734 + m_Y: 491 + m_Width: 46 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 161 + m_Metrics: + m_Width: 44 + m_Height: 63 + m_HorizontalBearingX: 6 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 53 + m_GlyphRect: + m_X: 545 + m_Y: 564 + m_Width: 44 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 162 + m_Metrics: + m_Width: 45 + m_Height: 64 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 324 + m_Y: 583 + m_Width: 45 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 163 + m_Metrics: + m_Width: 45 + m_Height: 64 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 333 + m_Y: 749 + m_Width: 45 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 164 + m_Metrics: + m_Width: 45 + m_Height: 63 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 478 + m_Y: 485 + m_Width: 45 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 165 + m_Metrics: + m_Width: 45 + m_Height: 62 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 61 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 250 + m_Y: 952 + m_Width: 45 + m_Height: 62 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 166 + m_Metrics: + m_Width: 45 + m_Height: 60 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 733 + m_Y: 569 + m_Width: 45 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 167 + m_Metrics: + m_Width: 45 + m_Height: 71 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 70 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 260 + m_Y: 580 + m_Width: 45 + m_Height: 71 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 168 + m_Metrics: + m_Width: 71 + m_Height: 47 + m_HorizontalBearingX: 2 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 76 + m_GlyphRect: + m_X: 661 + m_Y: 94 + m_Width: 71 + m_Height: 47 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 169 + m_Metrics: + m_Width: 38 + m_Height: 64 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 46 + m_HorizontalAdvance: 43 + m_GlyphRect: + m_X: 427 + m_Y: 583 + m_Width: 38 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 170 + m_Metrics: + m_Width: 42 + m_Height: 64 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 436 + m_Y: 747 + m_Width: 42 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 171 + m_Metrics: + m_Width: 42 + m_Height: 64 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 484 + m_Y: 567 + m_Width: 42 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 172 + m_Metrics: + m_Width: 42 + m_Height: 63 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 608 + m_Y: 558 + m_Width: 42 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 173 + m_Metrics: + m_Width: 42 + m_Height: 60 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 851 + m_Y: 262 + m_Width: 42 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 174 + m_Metrics: + m_Width: 19 + m_Height: 63 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 838 + m_Y: 737 + m_Width: 19 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 175 + m_Metrics: + m_Width: 19 + m_Height: 63 + m_HorizontalBearingX: 6 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 418 + m_Y: 951 + m_Width: 19 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 176 + m_Metrics: + m_Width: 29 + m_Height: 62 + m_HorizontalBearingX: -2 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 980 + m_Y: 104 + m_Width: 29 + m_Height: 62 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 177 + m_Metrics: + m_Width: 25 + m_Height: 59 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 794 + m_Y: 737 + m_Width: 25 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 178 + m_Metrics: + m_Width: 42 + m_Height: 64 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 487 + m_Y: 650 + m_Width: 42 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 179 + m_Metrics: + m_Width: 38 + m_Height: 61 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 61 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 915 + m_Y: 342 + m_Width: 38 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 180 + m_Metrics: + m_Width: 42 + m_Height: 64 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 548 + m_Y: 646 + m_Width: 42 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 181 + m_Metrics: + m_Width: 42 + m_Height: 64 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 497 + m_Y: 733 + m_Width: 42 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 182 + m_Metrics: + m_Width: 42 + m_Height: 63 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 672 + m_Y: 714 + m_Width: 42 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 183 + m_Metrics: + m_Width: 42 + m_Height: 62 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 61 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 314 + m_Y: 952 + m_Width: 42 + m_Height: 62 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 184 + m_Metrics: + m_Width: 42 + m_Height: 60 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 972 + m_Y: 185 + m_Width: 42 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 185 + m_Metrics: + m_Width: 43 + m_Height: 39 + m_HorizontalBearingX: 2 + m_HorizontalBearingY: 48 + m_HorizontalAdvance: 47 + m_GlyphRect: + m_X: 965 + m_Y: 603 + m_Width: 43 + m_Height: 39 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 186 + m_Metrics: + m_Width: 50 + m_Height: 49 + m_HorizontalBearingX: 1 + m_HorizontalBearingY: 47 + m_HorizontalAdvance: 53 + m_GlyphRect: + m_X: 357 + m_Y: 435 + m_Width: 50 + m_Height: 49 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 187 + m_Metrics: + m_Width: 38 + m_Height: 64 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 558 + m_Y: 729 + m_Width: 38 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 188 + m_Metrics: + m_Width: 38 + m_Height: 64 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 615 + m_Y: 722 + m_Width: 38 + m_Height: 64 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 189 + m_Metrics: + m_Width: 38 + m_Height: 63 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 799 + m_Y: 485 + m_Width: 38 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 190 + m_Metrics: + m_Width: 38 + m_Height: 60 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 956 + m_Y: 661 + m_Width: 38 + m_Height: 60 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 191 + m_Metrics: + m_Width: 41 + m_Height: 81 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 63 + m_HorizontalAdvance: 41 + m_GlyphRect: + m_X: 86 + m_Y: 673 + m_Width: 41 + m_Height: 81 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 192 + m_Metrics: + m_Width: 40 + m_Height: 80 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 86 + m_Y: 773 + m_Width: 40 + m_Height: 80 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 193 + m_Metrics: + m_Width: 41 + m_Height: 77 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 41 + m_GlyphRect: + m_X: 269 + m_Y: 670 + m_Width: 41 + m_Height: 77 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 1997 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 43 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 1998 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 86 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 1999 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 43 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2000 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 86 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2001 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2002 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 22 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2003 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 14 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2004 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2005 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2006 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 17 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2007 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 7 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2008 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2009 + m_Metrics: + m_Width: 4 + m_Height: 65 + m_HorizontalBearingX: -2 + m_HorizontalBearingY: 54 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 204 + m_Y: 871 + m_Width: 4 + m_Height: 65 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2010 + m_Metrics: + m_Width: 20 + m_Height: 70 + m_HorizontalBearingX: -10 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 267 + m_Y: 770 + m_Width: 20 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2011 + m_Metrics: + m_Width: 21 + m_Height: 70 + m_HorizontalBearingX: -2 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 260 + m_Y: 393 + m_Width: 21 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2012 + m_Metrics: + m_Width: 21 + m_Height: 70 + m_HorizontalBearingX: -19 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 282 + m_Y: 482 + m_Width: 21 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2013 + m_Metrics: + m_Width: 48 + m_Height: 6 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 25 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 862 + m_Y: 936 + m_Width: 48 + m_Height: 6 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2014 + m_Metrics: + m_Width: 48 + m_Height: 6 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 25 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 929 + m_Y: 936 + m_Width: 48 + m_Height: 6 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2015 + m_Metrics: + m_Width: 86 + m_Height: 6 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 25 + m_HorizontalAdvance: 86 + m_GlyphRect: + m_X: 103 + m_Y: 88 + m_Width: 86 + m_Height: 6 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2016 + m_Metrics: + m_Width: 86 + m_Height: 6 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 25 + m_HorizontalAdvance: 86 + m_GlyphRect: + m_X: 277 + m_Y: 170 + m_Width: 86 + m_Height: 6 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2017 + m_Metrics: + m_Width: 22 + m_Height: 62 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 36 + m_GlyphRect: + m_X: 862 + m_Y: 181 + m_Width: 22 + m_Height: 62 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2018 + m_Metrics: + m_Width: 51 + m_Height: 15 + m_HorizontalBearingX: -2 + m_HorizontalBearingY: -4 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 288 + m_Y: 353 + m_Width: 51 + m_Height: 15 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2019 + m_Metrics: + m_Width: 9 + m_Height: 19 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 19 + m_GlyphRect: + m_X: 612 + m_Y: 995 + m_Width: 9 + m_Height: 19 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2020 + m_Metrics: + m_Width: 9 + m_Height: 19 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 19 + m_GlyphRect: + m_X: 640 + m_Y: 995 + m_Width: 9 + m_Height: 19 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2021 + m_Metrics: + m_Width: 9 + m_Height: 19 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 8 + m_HorizontalAdvance: 19 + m_GlyphRect: + m_X: 1002 + m_Y: 961 + m_Width: 9 + m_Height: 19 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2022 + m_Metrics: + m_Width: 9 + m_Height: 19 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 19 + m_GlyphRect: + m_X: 686 + m_Y: 949 + m_Width: 9 + m_Height: 19 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2023 + m_Metrics: + m_Width: 23 + m_Height: 19 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 967 + m_Y: 894 + m_Width: 23 + m_Height: 19 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2024 + m_Metrics: + m_Width: 23 + m_Height: 19 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 580 + m_Y: 916 + m_Width: 23 + m_Height: 19 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2025 + m_Metrics: + m_Width: 23 + m_Height: 19 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 8 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 580 + m_Y: 954 + m_Width: 23 + m_Height: 19 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2026 + m_Metrics: + m_Width: 22 + m_Height: 19 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 622 + m_Y: 920 + m_Width: 22 + m_Height: 19 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2027 + m_Metrics: + m_Width: 38 + m_Height: 68 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 303 + m_Y: 865 + m_Width: 38 + m_Height: 68 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2028 + m_Metrics: + m_Width: 38 + m_Height: 68 + m_HorizontalBearingX: 5 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 300 + m_Y: 387 + m_Width: 38 + m_Height: 68 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2029 + m_Metrics: + m_Width: 24 + m_Height: 23 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 40 + m_HorizontalAdvance: 30 + m_GlyphRect: + m_X: 819 + m_Y: 929 + m_Width: 24 + m_Height: 23 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2030 + m_Metrics: + m_Width: 64 + m_Height: 9 + m_HorizontalBearingX: 11 + m_HorizontalBearingY: 9 + m_HorizontalAdvance: 86 + m_GlyphRect: + m_X: 661 + m_Y: 160 + m_Width: 64 + m_Height: 9 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2031 + m_Metrics: + m_Width: 21 + m_Height: 63 + m_HorizontalBearingX: -2 + m_HorizontalBearingY: 52 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 876 + m_Y: 737 + m_Width: 21 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2032 + m_Metrics: + m_Width: 21 + m_Height: 63 + m_HorizontalBearingX: -19 + m_HorizontalBearingY: 52 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 916 + m_Y: 734 + m_Width: 21 + m_Height: 63 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2033 + m_Metrics: + m_Width: 20 + m_Height: 70 + m_HorizontalBearingX: -10 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 388 + m_Y: 583 + m_Width: 20 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2034 + m_Metrics: + m_Width: 20 + m_Height: 70 + m_HorizontalBearingX: -10 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 397 + m_Y: 747 + m_Width: 20 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2035 + m_Metrics: + m_Width: 20 + m_Height: 70 + m_HorizontalBearingX: -10 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 360 + m_Y: 862 + m_Width: 20 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2036 + m_Metrics: + m_Width: 0 + m_Height: 0 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 0 + m_HorizontalAdvance: 17 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 0 + m_Height: 0 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2037 + m_Metrics: + m_Width: 82 + m_Height: 61 + m_HorizontalBearingX: 2 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 86 + m_GlyphRect: + m_X: 308 + m_Y: 10 + m_Width: 82 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2038 + m_Metrics: + m_Width: 12 + m_Height: 22 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 16 + m_GlyphRect: + m_X: 427 + m_Y: 363 + m_Width: 12 + m_Height: 22 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2039 + m_Metrics: + m_Width: 26 + m_Height: 22 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 30 + m_GlyphRect: + m_X: 730 + m_Y: 907 + m_Width: 26 + m_Height: 22 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2040 + m_Metrics: + m_Width: 35 + m_Height: 22 + m_HorizontalBearingX: -4 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 30 + m_GlyphRect: + m_X: 730 + m_Y: 866 + m_Width: 35 + m_Height: 22 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2041 + m_Metrics: + m_Width: 23 + m_Height: 34 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 39 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 883 + m_Y: 883 + m_Width: 23 + m_Height: 34 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2042 + m_Metrics: + m_Width: 23 + m_Height: 34 + m_HorizontalBearingX: 3 + m_HorizontalBearingY: 39 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 925 + m_Y: 883 + m_Width: 23 + m_Height: 34 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2043 + m_Metrics: + m_Width: 28 + m_Height: 59 + m_HorizontalBearingX: 9 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 43 + m_GlyphRect: + m_X: 583 + m_Y: 812 + m_Width: 28 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2044 + m_Metrics: + m_Width: 35 + m_Height: 5 + m_HorizontalBearingX: -3 + m_HorizontalBearingY: 68 + m_HorizontalAdvance: 29 + m_GlyphRect: + m_X: 968 + m_Y: 870 + m_Width: 35 + m_Height: 5 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2045 + m_Metrics: + m_Width: 44 + m_Height: 59 + m_HorizontalBearingX: -18 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 14 + m_GlyphRect: + m_X: 799 + m_Y: 181 + m_Width: 44 + m_Height: 59 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2046 + m_Metrics: + m_Width: 10 + m_Height: 62 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 62 + m_HorizontalAdvance: 24 + m_GlyphRect: + m_X: 322 + m_Y: 474 + m_Width: 10 + m_Height: 62 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2047 + m_Metrics: + m_Width: 20 + m_Height: 70 + m_HorizontalBearingX: -10 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 399 + m_Y: 836 + m_Width: 20 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2048 + m_Metrics: + m_Width: 20 + m_Height: 70 + m_HorizontalBearingX: -10 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 794 + m_Y: 648 + m_Width: 20 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2049 + m_Metrics: + m_Width: 22 + m_Height: 70 + m_HorizontalBearingX: -11 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 833 + m_Y: 648 + m_Width: 22 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2050 + m_Metrics: + m_Width: 22 + m_Height: 70 + m_HorizontalBearingX: -11 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 874 + m_Y: 648 + m_Width: 22 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2051 + m_Metrics: + m_Width: 22 + m_Height: 70 + m_HorizontalBearingX: -11 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 915 + m_Y: 645 + m_Width: 22 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2052 + m_Metrics: + m_Width: 20 + m_Height: 70 + m_HorizontalBearingX: -10 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 0 + m_GlyphRect: + m_X: 456 + m_Y: 908 + m_Width: 20 + m_Height: 70 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2075 + m_Metrics: + m_Width: 47 + m_Height: 61 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 60 + m_HorizontalAdvance: 48 + m_GlyphRect: + m_X: 351 + m_Y: 503 + m_Width: 47 + m_Height: 61 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2090 + m_Metrics: + m_Width: 70 + m_Height: 33 + m_HorizontalBearingX: 7 + m_HorizontalBearingY: 59 + m_HorizontalAdvance: 86 + m_GlyphRect: + m_X: 382 + m_Y: 170 + m_Width: 70 + m_Height: 33 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + - m_Index: 2179 + m_Metrics: + m_Width: 52 + m_Height: 51 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 51 + m_HorizontalAdvance: 52 + m_GlyphRect: + m_X: 358 + m_Y: 287 + m_Width: 52 + m_Height: 51 + m_Scale: 1 + m_AtlasIndex: 0 + m_ClassDefinitionType: 0 + m_CharacterTable: + - m_ElementType: 1 + m_Unicode: 32 + m_GlyphIndex: 3 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 33 + m_GlyphIndex: 4 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 34 + m_GlyphIndex: 5 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 35 + m_GlyphIndex: 6 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 36 + m_GlyphIndex: 7 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 37 + m_GlyphIndex: 8 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 38 + m_GlyphIndex: 9 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 39 + m_GlyphIndex: 10 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 40 + m_GlyphIndex: 11 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 41 + m_GlyphIndex: 12 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 42 + m_GlyphIndex: 13 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 43 + m_GlyphIndex: 14 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 44 + m_GlyphIndex: 15 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 45 + m_GlyphIndex: 16 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 46 + m_GlyphIndex: 17 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 47 + m_GlyphIndex: 18 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 48 + m_GlyphIndex: 19 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 49 + m_GlyphIndex: 20 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 50 + m_GlyphIndex: 21 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 51 + m_GlyphIndex: 22 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 52 + m_GlyphIndex: 23 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 53 + m_GlyphIndex: 24 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 54 + m_GlyphIndex: 25 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 55 + m_GlyphIndex: 26 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 56 + m_GlyphIndex: 27 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 57 + m_GlyphIndex: 28 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 58 + m_GlyphIndex: 29 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 59 + m_GlyphIndex: 30 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 60 + m_GlyphIndex: 31 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 61 + m_GlyphIndex: 32 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 62 + m_GlyphIndex: 33 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 63 + m_GlyphIndex: 34 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 64 + m_GlyphIndex: 35 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 65 + m_GlyphIndex: 36 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 66 + m_GlyphIndex: 37 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 67 + m_GlyphIndex: 38 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 68 + m_GlyphIndex: 39 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 69 + m_GlyphIndex: 40 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 70 + m_GlyphIndex: 41 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 71 + m_GlyphIndex: 42 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 72 + m_GlyphIndex: 43 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 73 + m_GlyphIndex: 44 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 74 + m_GlyphIndex: 45 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 75 + m_GlyphIndex: 46 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 76 + m_GlyphIndex: 47 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 77 + m_GlyphIndex: 48 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 78 + m_GlyphIndex: 49 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 79 + m_GlyphIndex: 50 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 80 + m_GlyphIndex: 51 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 81 + m_GlyphIndex: 52 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 82 + m_GlyphIndex: 53 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 83 + m_GlyphIndex: 54 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 84 + m_GlyphIndex: 55 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 85 + m_GlyphIndex: 56 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 86 + m_GlyphIndex: 57 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 87 + m_GlyphIndex: 58 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 88 + m_GlyphIndex: 59 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 89 + m_GlyphIndex: 60 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 90 + m_GlyphIndex: 61 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 91 + m_GlyphIndex: 62 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 92 + m_GlyphIndex: 63 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 93 + m_GlyphIndex: 64 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 94 + m_GlyphIndex: 65 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 95 + m_GlyphIndex: 66 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 96 + m_GlyphIndex: 67 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 97 + m_GlyphIndex: 68 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 98 + m_GlyphIndex: 69 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 99 + m_GlyphIndex: 70 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 100 + m_GlyphIndex: 71 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 101 + m_GlyphIndex: 72 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 102 + m_GlyphIndex: 73 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 103 + m_GlyphIndex: 74 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 104 + m_GlyphIndex: 75 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 105 + m_GlyphIndex: 76 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 106 + m_GlyphIndex: 77 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 107 + m_GlyphIndex: 78 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 108 + m_GlyphIndex: 79 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 109 + m_GlyphIndex: 80 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 110 + m_GlyphIndex: 81 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 111 + m_GlyphIndex: 82 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 112 + m_GlyphIndex: 83 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 113 + m_GlyphIndex: 84 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 114 + m_GlyphIndex: 85 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 115 + m_GlyphIndex: 86 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 116 + m_GlyphIndex: 87 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 117 + m_GlyphIndex: 88 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 118 + m_GlyphIndex: 89 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 119 + m_GlyphIndex: 90 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 120 + m_GlyphIndex: 91 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 121 + m_GlyphIndex: 92 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 122 + m_GlyphIndex: 93 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 123 + m_GlyphIndex: 94 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 124 + m_GlyphIndex: 95 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 125 + m_GlyphIndex: 96 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 126 + m_GlyphIndex: 97 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 160 + m_GlyphIndex: 98 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 161 + m_GlyphIndex: 99 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 162 + m_GlyphIndex: 100 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 163 + m_GlyphIndex: 101 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 164 + m_GlyphIndex: 102 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 165 + m_GlyphIndex: 103 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 166 + m_GlyphIndex: 104 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 167 + m_GlyphIndex: 105 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 168 + m_GlyphIndex: 106 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 169 + m_GlyphIndex: 107 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 170 + m_GlyphIndex: 108 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 171 + m_GlyphIndex: 109 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 172 + m_GlyphIndex: 110 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 173 + m_GlyphIndex: 111 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 174 + m_GlyphIndex: 112 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 175 + m_GlyphIndex: 113 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 176 + m_GlyphIndex: 114 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 177 + m_GlyphIndex: 115 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 178 + m_GlyphIndex: 116 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 179 + m_GlyphIndex: 117 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 180 + m_GlyphIndex: 118 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 181 + m_GlyphIndex: 119 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 182 + m_GlyphIndex: 120 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 183 + m_GlyphIndex: 121 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 184 + m_GlyphIndex: 122 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 185 + m_GlyphIndex: 123 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 186 + m_GlyphIndex: 124 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 187 + m_GlyphIndex: 125 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 188 + m_GlyphIndex: 126 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 189 + m_GlyphIndex: 127 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 190 + m_GlyphIndex: 128 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 191 + m_GlyphIndex: 129 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 192 + m_GlyphIndex: 130 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 193 + m_GlyphIndex: 131 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 194 + m_GlyphIndex: 132 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 195 + m_GlyphIndex: 133 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 196 + m_GlyphIndex: 134 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 197 + m_GlyphIndex: 135 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 198 + m_GlyphIndex: 136 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 199 + m_GlyphIndex: 137 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 200 + m_GlyphIndex: 138 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 201 + m_GlyphIndex: 139 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 202 + m_GlyphIndex: 140 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 203 + m_GlyphIndex: 141 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 204 + m_GlyphIndex: 142 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 205 + m_GlyphIndex: 143 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 206 + m_GlyphIndex: 144 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 207 + m_GlyphIndex: 145 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 208 + m_GlyphIndex: 146 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 209 + m_GlyphIndex: 147 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 210 + m_GlyphIndex: 148 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 211 + m_GlyphIndex: 149 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 212 + m_GlyphIndex: 150 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 213 + m_GlyphIndex: 151 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 214 + m_GlyphIndex: 152 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 215 + m_GlyphIndex: 153 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 216 + m_GlyphIndex: 154 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 217 + m_GlyphIndex: 155 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 218 + m_GlyphIndex: 156 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 219 + m_GlyphIndex: 157 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 220 + m_GlyphIndex: 158 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 221 + m_GlyphIndex: 159 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 222 + m_GlyphIndex: 160 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 223 + m_GlyphIndex: 161 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 224 + m_GlyphIndex: 162 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 225 + m_GlyphIndex: 163 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 226 + m_GlyphIndex: 164 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 227 + m_GlyphIndex: 165 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 228 + m_GlyphIndex: 166 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 229 + m_GlyphIndex: 167 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 230 + m_GlyphIndex: 168 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 231 + m_GlyphIndex: 169 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 232 + m_GlyphIndex: 170 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 233 + m_GlyphIndex: 171 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 234 + m_GlyphIndex: 172 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 235 + m_GlyphIndex: 173 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 236 + m_GlyphIndex: 174 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 237 + m_GlyphIndex: 175 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 238 + m_GlyphIndex: 176 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 239 + m_GlyphIndex: 177 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 240 + m_GlyphIndex: 178 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 241 + m_GlyphIndex: 179 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 242 + m_GlyphIndex: 180 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 243 + m_GlyphIndex: 181 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 244 + m_GlyphIndex: 182 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 245 + m_GlyphIndex: 183 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 246 + m_GlyphIndex: 184 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 247 + m_GlyphIndex: 185 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 248 + m_GlyphIndex: 186 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 249 + m_GlyphIndex: 187 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 250 + m_GlyphIndex: 188 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 251 + m_GlyphIndex: 189 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 252 + m_GlyphIndex: 190 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 253 + m_GlyphIndex: 191 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 254 + m_GlyphIndex: 192 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 255 + m_GlyphIndex: 193 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8192 + m_GlyphIndex: 1997 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8193 + m_GlyphIndex: 1998 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8194 + m_GlyphIndex: 1999 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8195 + m_GlyphIndex: 2000 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8196 + m_GlyphIndex: 2001 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8197 + m_GlyphIndex: 2002 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8198 + m_GlyphIndex: 2003 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8199 + m_GlyphIndex: 2004 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8200 + m_GlyphIndex: 2005 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8201 + m_GlyphIndex: 2006 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8202 + m_GlyphIndex: 2007 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8203 + m_GlyphIndex: 2008 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8204 + m_GlyphIndex: 2009 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8205 + m_GlyphIndex: 2010 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8206 + m_GlyphIndex: 2011 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8207 + m_GlyphIndex: 2012 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8210 + m_GlyphIndex: 2013 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8211 + m_GlyphIndex: 2014 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8212 + m_GlyphIndex: 2015 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8213 + m_GlyphIndex: 2016 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8214 + m_GlyphIndex: 2017 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8215 + m_GlyphIndex: 2018 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8216 + m_GlyphIndex: 2019 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8217 + m_GlyphIndex: 2020 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8218 + m_GlyphIndex: 2021 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8219 + m_GlyphIndex: 2022 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8220 + m_GlyphIndex: 2023 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8221 + m_GlyphIndex: 2024 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8222 + m_GlyphIndex: 2025 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8223 + m_GlyphIndex: 2026 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8224 + m_GlyphIndex: 2027 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8225 + m_GlyphIndex: 2028 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8226 + m_GlyphIndex: 2029 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8230 + m_GlyphIndex: 2030 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8234 + m_GlyphIndex: 2031 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8235 + m_GlyphIndex: 2032 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8236 + m_GlyphIndex: 2033 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8237 + m_GlyphIndex: 2034 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8238 + m_GlyphIndex: 2035 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8239 + m_GlyphIndex: 2036 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8240 + m_GlyphIndex: 2037 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8242 + m_GlyphIndex: 2038 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8243 + m_GlyphIndex: 2039 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8244 + m_GlyphIndex: 2040 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8249 + m_GlyphIndex: 2041 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8250 + m_GlyphIndex: 2042 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8252 + m_GlyphIndex: 2043 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8254 + m_GlyphIndex: 2044 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8260 + m_GlyphIndex: 2045 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8286 + m_GlyphIndex: 2046 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8298 + m_GlyphIndex: 2047 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8299 + m_GlyphIndex: 2048 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8300 + m_GlyphIndex: 2049 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8301 + m_GlyphIndex: 2050 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8302 + m_GlyphIndex: 2051 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8303 + m_GlyphIndex: 2052 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8364 + m_GlyphIndex: 2075 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 8482 + m_GlyphIndex: 2090 + m_Scale: 1 + - m_ElementType: 1 + m_Unicode: 9633 + m_GlyphIndex: 2179 + m_Scale: 1 + m_AtlasTextures: + - {fileID: 28684132378477856} + m_AtlasTextureIndex: 0 + m_IsMultiAtlasTexturesEnabled: 0 + m_GetFontFeatures: 1 + m_ClearDynamicDataOnBuild: 0 + m_AtlasWidth: 1024 + m_AtlasHeight: 1024 + m_AtlasPadding: 9 + m_AtlasRenderMode: 4169 + m_UsedGlyphRects: + - m_X: 0 + m_Y: 0 + m_Width: 93 + m_Height: 93 + - m_X: 93 + m_Y: 0 + m_Width: 104 + m_Height: 78 + - m_X: 197 + m_Y: 0 + m_Width: 101 + m_Height: 78 + - m_X: 298 + m_Y: 0 + m_Width: 101 + m_Height: 80 + - m_X: 0 + m_Y: 93 + m_Width: 78 + m_Height: 95 + - m_X: 0 + m_Y: 188 + m_Width: 78 + m_Height: 95 + - m_X: 0 + m_Y: 283 + m_Width: 78 + m_Height: 95 + - m_X: 0 + m_Y: 378 + m_Width: 78 + m_Height: 94 + - m_X: 0 + m_Y: 472 + m_Width: 78 + m_Height: 94 + - m_X: 0 + m_Y: 566 + m_Width: 74 + m_Height: 97 + - m_X: 399 + m_Y: 0 + m_Width: 89 + m_Height: 80 + - m_X: 0 + m_Y: 663 + m_Width: 76 + m_Height: 94 + - m_X: 0 + m_Y: 757 + m_Width: 76 + m_Height: 94 + - m_X: 0 + m_Y: 851 + m_Width: 76 + m_Height: 94 + - m_X: 0 + m_Y: 945 + m_Width: 87 + m_Height: 78 + - m_X: 488 + m_Y: 0 + m_Width: 86 + m_Height: 78 + - m_X: 574 + m_Y: 0 + m_Width: 85 + m_Height: 79 + - m_X: 659 + m_Y: 0 + m_Width: 82 + m_Height: 84 + - m_X: 741 + m_Y: 0 + m_Width: 78 + m_Height: 92 + - m_X: 819 + m_Y: 0 + m_Width: 76 + m_Height: 93 + - m_X: 895 + m_Y: 0 + m_Width: 76 + m_Height: 93 + - m_X: 971 + m_Y: 0 + m_Width: 47 + m_Height: 94 + - m_X: 93 + m_Y: 78 + m_Width: 105 + m_Height: 25 + - m_X: 78 + m_Y: 103 + m_Width: 76 + m_Height: 91 + - m_X: 78 + m_Y: 194 + m_Width: 73 + m_Height: 93 + - m_X: 78 + m_Y: 287 + m_Width: 69 + m_Height: 95 + - m_X: 78 + m_Y: 382 + m_Width: 69 + m_Height: 94 + - m_X: 78 + m_Y: 476 + m_Width: 69 + m_Height: 94 + - m_X: 74 + m_Y: 570 + m_Width: 66 + m_Height: 93 + - m_X: 76 + m_Y: 663 + m_Width: 60 + m_Height: 100 + - m_X: 76 + m_Y: 763 + m_Width: 59 + m_Height: 99 + - m_X: 76 + m_Y: 862 + m_Width: 59 + m_Height: 83 + - m_X: 87 + m_Y: 945 + m_Width: 78 + m_Height: 78 + - m_X: 154 + m_Y: 103 + m_Width: 46 + m_Height: 99 + - m_X: 200 + m_Y: 78 + m_Width: 67 + m_Height: 94 + - m_X: 151 + m_Y: 202 + m_Width: 66 + m_Height: 89 + - m_X: 147 + m_Y: 291 + m_Width: 69 + m_Height: 92 + - m_X: 147 + m_Y: 383 + m_Width: 66 + m_Height: 94 + - m_X: 147 + m_Y: 477 + m_Width: 66 + m_Height: 93 + - m_X: 140 + m_Y: 570 + m_Width: 66 + m_Height: 91 + - m_X: 267 + m_Y: 80 + m_Width: 80 + m_Height: 80 + - m_X: 347 + m_Y: 80 + m_Width: 80 + m_Height: 80 + - m_X: 427 + m_Y: 80 + m_Width: 72 + m_Height: 80 + - m_X: 499 + m_Y: 78 + m_Width: 74 + m_Height: 80 + - m_X: 573 + m_Y: 79 + m_Width: 78 + m_Height: 80 + - m_X: 651 + m_Y: 84 + m_Width: 90 + m_Height: 66 + - m_X: 741 + m_Y: 92 + m_Width: 77 + m_Height: 78 + - m_X: 818 + m_Y: 93 + m_Width: 76 + m_Height: 78 + - m_X: 894 + m_Y: 93 + m_Width: 76 + m_Height: 80 + - m_X: 970 + m_Y: 94 + m_Width: 48 + m_Height: 81 + - m_X: 267 + m_Y: 160 + m_Width: 105 + m_Height: 25 + - m_X: 217 + m_Y: 172 + m_Width: 46 + m_Height: 99 + - m_X: 263 + m_Y: 185 + m_Width: 76 + m_Height: 78 + - m_X: 372 + m_Y: 160 + m_Width: 89 + m_Height: 52 + - m_X: 339 + m_Y: 185 + m_Width: 29 + m_Height: 78 + - m_X: 368 + m_Y: 212 + m_Width: 83 + m_Height: 65 + - m_X: 136 + m_Y: 663 + m_Width: 43 + m_Height: 99 + - m_X: 179 + m_Y: 661 + m_Width: 43 + m_Height: 99 + - m_X: 206 + m_Y: 570 + m_Width: 44 + m_Height: 91 + - m_X: 222 + m_Y: 661 + m_Width: 37 + m_Height: 99 + - m_X: 213 + m_Y: 383 + m_Width: 37 + m_Height: 99 + - m_X: 213 + m_Y: 482 + m_Width: 59 + m_Height: 88 + - m_X: 250 + m_Y: 570 + m_Width: 64 + m_Height: 90 + - m_X: 259 + m_Y: 660 + m_Width: 60 + m_Height: 96 + - m_X: 135 + m_Y: 763 + m_Width: 36 + m_Height: 99 + - m_X: 135 + m_Y: 862 + m_Width: 59 + m_Height: 83 + - m_X: 165 + m_Y: 945 + m_Width: 75 + m_Height: 78 + - m_X: 171 + m_Y: 762 + m_Width: 27 + m_Height: 99 + - m_X: 198 + m_Y: 760 + m_Width: 59 + m_Height: 89 + - m_X: 194 + m_Y: 861 + m_Width: 23 + m_Height: 84 + - m_X: 217 + m_Y: 849 + m_Width: 38 + m_Height: 93 + - m_X: 240 + m_Y: 942 + m_Width: 64 + m_Height: 81 + - m_X: 255 + m_Y: 849 + m_Width: 38 + m_Height: 93 + - m_X: 257 + m_Y: 760 + m_Width: 39 + m_Height: 89 + - m_X: 296 + m_Y: 756 + m_Width: 27 + m_Height: 99 + - m_X: 293 + m_Y: 855 + m_Width: 57 + m_Height: 87 + - m_X: 304 + m_Y: 942 + m_Width: 61 + m_Height: 81 + - m_X: 651 + m_Y: 150 + m_Width: 83 + m_Height: 28 + - m_X: 461 + m_Y: 160 + m_Width: 67 + m_Height: 78 + - m_X: 528 + m_Y: 158 + m_Width: 44 + m_Height: 81 + - m_X: 572 + m_Y: 159 + m_Width: 73 + m_Height: 78 + - m_X: 645 + m_Y: 178 + m_Width: 82 + m_Height: 64 + - m_X: 451 + m_Y: 238 + m_Width: 71 + m_Height: 78 + - m_X: 522 + m_Y: 239 + m_Width: 61 + m_Height: 80 + - m_X: 583 + m_Y: 237 + m_Width: 62 + m_Height: 82 + - m_X: 645 + m_Y: 242 + m_Width: 70 + m_Height: 78 + - m_X: 216 + m_Y: 319 + m_Width: 62 + m_Height: 64 + - m_X: 217 + m_Y: 271 + m_Width: 61 + m_Height: 48 + - m_X: 278 + m_Y: 263 + m_Width: 70 + m_Height: 80 + - m_X: 250 + m_Y: 383 + m_Width: 40 + m_Height: 89 + - m_X: 348 + m_Y: 277 + m_Width: 71 + m_Height: 70 + - m_X: 278 + m_Y: 343 + m_Width: 70 + m_Height: 34 + - m_X: 290 + m_Y: 377 + m_Width: 57 + m_Height: 87 + - m_X: 419 + m_Y: 277 + m_Width: 29 + m_Height: 76 + - m_X: 448 + m_Y: 316 + m_Width: 69 + m_Height: 78 + - m_X: 517 + m_Y: 319 + m_Width: 69 + m_Height: 78 + - m_X: 586 + m_Y: 319 + m_Width: 59 + m_Height: 79 + - m_X: 645 + m_Y: 320 + m_Width: 69 + m_Height: 79 + - m_X: 348 + m_Y: 347 + m_Width: 69 + m_Height: 78 + - m_X: 417 + m_Y: 353 + m_Width: 31 + m_Height: 41 + - m_X: 347 + m_Y: 425 + m_Width: 69 + m_Height: 68 + - m_X: 417 + m_Y: 394 + m_Width: 68 + m_Height: 78 + - m_X: 485 + m_Y: 397 + m_Width: 67 + m_Height: 78 + - m_X: 552 + m_Y: 398 + m_Width: 67 + m_Height: 78 + - m_X: 619 + m_Y: 399 + m_Width: 66 + m_Height: 78 + - m_X: 685 + m_Y: 399 + m_Width: 43 + m_Height: 82 + - m_X: 272 + m_Y: 472 + m_Width: 40 + m_Height: 89 + - m_X: 312 + m_Y: 464 + m_Width: 29 + m_Height: 81 + - m_X: 341 + m_Y: 493 + m_Width: 66 + m_Height: 80 + - m_X: 314 + m_Y: 573 + m_Width: 64 + m_Height: 83 + - m_X: 319 + m_Y: 656 + m_Width: 59 + m_Height: 83 + - m_X: 323 + m_Y: 739 + m_Width: 64 + m_Height: 83 + - m_X: 378 + m_Y: 573 + m_Width: 39 + m_Height: 89 + - m_X: 378 + m_Y: 662 + m_Width: 42 + m_Height: 75 + - m_X: 387 + m_Y: 737 + m_Width: 39 + m_Height: 89 + - m_X: 407 + m_Y: 493 + m_Width: 61 + m_Height: 80 + - m_X: 417 + m_Y: 573 + m_Width: 57 + m_Height: 83 + - m_X: 420 + m_Y: 656 + m_Width: 57 + m_Height: 81 + - m_X: 426 + m_Y: 737 + m_Width: 61 + m_Height: 83 + - m_X: 468 + m_Y: 475 + m_Width: 64 + m_Height: 82 + - m_X: 474 + m_Y: 557 + m_Width: 61 + m_Height: 83 + - m_X: 477 + m_Y: 640 + m_Width: 61 + m_Height: 83 + - m_X: 532 + m_Y: 476 + m_Width: 65 + m_Height: 78 + - m_X: 535 + m_Y: 554 + m_Width: 63 + m_Height: 82 + - m_X: 538 + m_Y: 636 + m_Width: 61 + m_Height: 83 + - m_X: 487 + m_Y: 723 + m_Width: 61 + m_Height: 83 + - m_X: 548 + m_Y: 719 + m_Width: 57 + m_Height: 83 + - m_X: 597 + m_Y: 477 + m_Width: 62 + m_Height: 71 + - m_X: 598 + m_Y: 548 + m_Width: 61 + m_Height: 82 + - m_X: 599 + m_Y: 630 + m_Width: 60 + m_Height: 82 + - m_X: 605 + m_Y: 712 + m_Width: 57 + m_Height: 83 + - m_X: 659 + m_Y: 481 + m_Width: 65 + m_Height: 78 + - m_X: 659 + m_Y: 559 + m_Width: 64 + m_Height: 79 + - m_X: 659 + m_Y: 638 + m_Width: 64 + m_Height: 66 + - m_X: 662 + m_Y: 704 + m_Width: 61 + m_Height: 82 + - m_X: 714 + m_Y: 320 + m_Width: 61 + m_Height: 79 + - m_X: 715 + m_Y: 242 + m_Width: 64 + m_Height: 78 + - m_X: 728 + m_Y: 399 + m_Width: 59 + m_Height: 82 + - m_X: 724 + m_Y: 481 + m_Width: 65 + m_Height: 78 + - m_X: 723 + m_Y: 559 + m_Width: 64 + m_Height: 79 + - m_X: 723 + m_Y: 638 + m_Width: 61 + m_Height: 80 + - m_X: 723 + m_Y: 718 + m_Width: 61 + m_Height: 79 + - m_X: 727 + m_Y: 178 + m_Width: 62 + m_Height: 64 + - m_X: 789 + m_Y: 171 + m_Width: 63 + m_Height: 78 + - m_X: 779 + m_Y: 249 + m_Width: 62 + m_Height: 78 + - m_X: 775 + m_Y: 327 + m_Width: 61 + m_Height: 66 + - m_X: 787 + m_Y: 393 + m_Width: 59 + m_Height: 82 + - m_X: 789 + m_Y: 475 + m_Width: 57 + m_Height: 82 + - m_X: 852 + m_Y: 171 + m_Width: 41 + m_Height: 81 + - m_X: 893 + m_Y: 173 + m_Width: 62 + m_Height: 79 + - m_X: 841 + m_Y: 252 + m_Width: 61 + m_Height: 79 + - m_X: 902 + m_Y: 252 + m_Width: 60 + m_Height: 80 + - m_X: 962 + m_Y: 175 + m_Width: 61 + m_Height: 79 + - m_X: 962 + m_Y: 254 + m_Width: 61 + m_Height: 66 + - m_X: 962 + m_Y: 320 + m_Width: 61 + m_Height: 62 + - m_X: 836 + m_Y: 331 + m_Width: 61 + m_Height: 62 + - m_X: 846 + m_Y: 393 + m_Width: 59 + m_Height: 81 + - m_X: 846 + m_Y: 474 + m_Width: 59 + m_Height: 80 + - m_X: 905 + m_Y: 332 + m_Width: 57 + m_Height: 80 + - m_X: 962 + m_Y: 382 + m_Width: 61 + m_Height: 62 + - m_X: 905 + m_Y: 412 + m_Width: 57 + m_Height: 79 + - m_X: 962 + m_Y: 444 + m_Width: 61 + m_Height: 53 + - m_X: 905 + m_Y: 491 + m_Width: 57 + m_Height: 78 + - m_X: 962 + m_Y: 497 + m_Width: 61 + m_Height: 53 + - m_X: 962 + m_Y: 550 + m_Width: 61 + m_Height: 43 + - m_X: 323 + m_Y: 822 + m_Width: 63 + m_Height: 30 + - m_X: 350 + m_Y: 852 + m_Width: 39 + m_Height: 89 + - m_X: 365 + m_Y: 941 + m_Width: 43 + m_Height: 82 + - m_X: 389 + m_Y: 826 + m_Width: 39 + m_Height: 89 + - m_X: 428 + m_Y: 820 + m_Width: 59 + m_Height: 78 + - m_X: 487 + m_Y: 806 + m_Width: 58 + m_Height: 78 + - m_X: 784 + m_Y: 638 + m_Width: 39 + m_Height: 89 + - m_X: 787 + m_Y: 559 + m_Width: 55 + m_Height: 79 + - m_X: 784 + m_Y: 727 + m_Width: 44 + m_Height: 78 + - m_X: 823 + m_Y: 638 + m_Width: 41 + m_Height: 89 + - m_X: 828 + m_Y: 727 + m_Width: 38 + m_Height: 82 + - m_X: 842 + m_Y: 557 + m_Width: 28 + m_Height: 81 + - m_X: 870 + m_Y: 554 + m_Width: 28 + m_Height: 81 + - m_X: 898 + m_Y: 569 + m_Width: 57 + m_Height: 66 + - m_X: 955 + m_Y: 593 + m_Width: 62 + m_Height: 58 + - m_X: 864 + m_Y: 638 + m_Width: 41 + m_Height: 89 + - m_X: 905 + m_Y: 635 + m_Width: 41 + m_Height: 89 + - m_X: 946 + m_Y: 651 + m_Width: 57 + m_Height: 79 + - m_X: 866 + m_Y: 727 + m_Width: 40 + m_Height: 82 + - m_X: 906 + m_Y: 724 + m_Width: 40 + m_Height: 82 + - m_X: 946 + m_Y: 730 + m_Width: 57 + m_Height: 66 + - m_X: 389 + m_Y: 915 + m_Width: 42 + m_Height: 26 + - m_X: 408 + m_Y: 941 + m_Width: 38 + m_Height: 82 + - m_X: 446 + m_Y: 898 + m_Width: 39 + m_Height: 89 + - m_X: 545 + m_Y: 806 + m_Width: 28 + m_Height: 78 + - m_X: 573 + m_Y: 802 + m_Width: 47 + m_Height: 78 + - m_X: 620 + m_Y: 795 + m_Width: 57 + m_Height: 65 + - m_X: 677 + m_Y: 786 + m_Width: 46 + m_Height: 56 + - m_X: 723 + m_Y: 797 + m_Width: 59 + m_Height: 59 + - m_X: 782 + m_Y: 805 + m_Width: 46 + m_Height: 55 + - m_X: 828 + m_Y: 809 + m_Width: 59 + m_Height: 58 + - m_X: 487 + m_Y: 884 + m_Width: 70 + m_Height: 25 + - m_X: 485 + m_Y: 909 + m_Width: 57 + m_Height: 65 + - m_X: 485 + m_Y: 974 + m_Width: 50 + m_Height: 49 + - m_X: 542 + m_Y: 909 + m_Width: 28 + m_Height: 78 + - m_X: 887 + m_Y: 809 + m_Width: 29 + m_Height: 64 + - m_X: 916 + m_Y: 806 + m_Width: 42 + m_Height: 65 + - m_X: 958 + m_Y: 796 + m_Width: 54 + m_Height: 64 + - m_X: 620 + m_Y: 860 + m_Width: 57 + m_Height: 50 + - m_X: 677 + m_Y: 842 + m_Width: 43 + m_Height: 54 + - m_X: 720 + m_Y: 856 + m_Width: 54 + m_Height: 41 + - m_X: 774 + m_Y: 860 + m_Width: 51 + m_Height: 52 + - m_X: 825 + m_Y: 867 + m_Width: 48 + m_Height: 52 + - m_X: 873 + m_Y: 873 + m_Width: 42 + m_Height: 53 + - m_X: 446 + m_Y: 987 + m_Width: 38 + m_Height: 32 + - m_X: 958 + m_Y: 860 + m_Width: 54 + m_Height: 24 + - m_X: 535 + m_Y: 987 + m_Width: 38 + m_Height: 32 + - m_X: 677 + m_Y: 896 + m_Width: 43 + m_Height: 43 + - m_X: 720 + m_Y: 897 + m_Width: 45 + m_Height: 41 + - m_X: 765 + m_Y: 912 + m_Width: 44 + m_Height: 38 + - m_X: 809 + m_Y: 919 + m_Width: 43 + m_Height: 42 + - m_X: 852 + m_Y: 926 + m_Width: 67 + m_Height: 25 + - m_X: 852 + m_Y: 951 + m_Width: 69 + m_Height: 23 + - m_X: 915 + m_Y: 873 + m_Width: 42 + m_Height: 53 + - m_X: 957 + m_Y: 884 + m_Width: 42 + m_Height: 38 + - m_X: 919 + m_Y: 926 + m_Width: 67 + m_Height: 25 + - m_X: 921 + m_Y: 951 + m_Width: 44 + m_Height: 27 + - m_X: 965 + m_Y: 951 + m_Width: 27 + m_Height: 38 + - m_X: 573 + m_Y: 880 + m_Width: 42 + m_Height: 26 + - m_X: 570 + m_Y: 906 + m_Width: 42 + m_Height: 38 + - m_X: 570 + m_Y: 944 + m_Width: 42 + m_Height: 38 + - m_X: 612 + m_Y: 910 + m_Width: 41 + m_Height: 38 + - m_X: 612 + m_Y: 948 + m_Width: 35 + m_Height: 37 + - m_X: 573 + m_Y: 982 + m_Width: 29 + m_Height: 39 + - m_X: 602 + m_Y: 985 + m_Width: 28 + m_Height: 38 + - m_X: 630 + m_Y: 985 + m_Width: 28 + m_Height: 38 + - m_X: 986 + m_Y: 922 + m_Width: 29 + m_Height: 29 + - m_X: 992 + m_Y: 951 + m_Width: 28 + m_Height: 38 + - m_X: 647 + m_Y: 948 + m_Width: 29 + m_Height: 28 + - m_X: 676 + m_Y: 939 + m_Width: 28 + m_Height: 38 + m_FreeGlyphRects: + - m_X: 78 + m_Y: 93 + m_Width: 15 + m_Height: 10 + - m_X: 74 + m_Y: 566 + m_Width: 4 + m_Height: 4 + - m_X: 198 + m_Y: 78 + m_Width: 2 + m_Height: 25 + - m_X: 151 + m_Y: 194 + m_Width: 3 + m_Height: 8 + - m_X: 147 + m_Y: 287 + m_Width: 4 + m_Height: 4 + - m_X: 267 + m_Y: 78 + m_Width: 31 + m_Height: 2 + - m_X: 488 + m_Y: 78 + m_Width: 11 + m_Height: 2 + - m_X: 573 + m_Y: 78 + m_Width: 1 + m_Height: 1 + - m_X: 651 + m_Y: 79 + m_Width: 8 + m_Height: 5 + - m_X: 818 + m_Y: 92 + m_Width: 1 + m_Height: 1 + - m_X: 970 + m_Y: 93 + m_Width: 1 + m_Height: 1 + - m_X: 200 + m_Y: 172 + m_Width: 17 + m_Height: 30 + - m_X: 263 + m_Y: 172 + m_Width: 4 + m_Height: 13 + - m_X: 368 + m_Y: 185 + m_Width: 4 + m_Height: 27 + - m_X: 140 + m_Y: 661 + m_Width: 39 + m_Height: 2 + - m_X: 250 + m_Y: 660 + m_Width: 9 + m_Height: 1 + - m_X: 136 + m_Y: 762 + m_Width: 35 + m_Height: 1 + - m_X: 179 + m_Y: 760 + m_Width: 19 + m_Height: 2 + - m_X: 171 + m_Y: 861 + m_Width: 23 + m_Height: 1 + - m_X: 198 + m_Y: 849 + m_Width: 19 + m_Height: 12 + - m_X: 217 + m_Y: 942 + m_Width: 23 + m_Height: 3 + - m_X: 259 + m_Y: 756 + m_Width: 37 + m_Height: 4 + - m_X: 293 + m_Y: 849 + m_Width: 3 + m_Height: 6 + - m_X: 499 + m_Y: 158 + m_Width: 29 + m_Height: 2 + - m_X: 572 + m_Y: 158 + m_Width: 1 + m_Height: 1 + - m_X: 645 + m_Y: 159 + m_Width: 6 + m_Height: 19 + - m_X: 451 + m_Y: 212 + m_Width: 10 + m_Height: 26 + - m_X: 522 + m_Y: 238 + m_Width: 6 + m_Height: 1 + - m_X: 572 + m_Y: 237 + m_Width: 11 + m_Height: 2 + - m_X: 216 + m_Y: 291 + m_Width: 1 + m_Height: 28 + - m_X: 263 + m_Y: 263 + m_Width: 15 + m_Height: 8 + - m_X: 348 + m_Y: 263 + m_Width: 20 + m_Height: 14 + - m_X: 278 + m_Y: 377 + m_Width: 12 + m_Height: 6 + - m_X: 448 + m_Y: 277 + m_Width: 3 + m_Height: 39 + - m_X: 517 + m_Y: 316 + m_Width: 5 + m_Height: 3 + - m_X: 417 + m_Y: 347 + m_Width: 2 + m_Height: 6 + - m_X: 347 + m_Y: 377 + m_Width: 1 + m_Height: 48 + - m_X: 485 + m_Y: 394 + m_Width: 32 + m_Height: 3 + - m_X: 552 + m_Y: 397 + m_Width: 34 + m_Height: 1 + - m_X: 619 + m_Y: 398 + m_Width: 26 + m_Height: 1 + - m_X: 250 + m_Y: 472 + m_Width: 22 + m_Height: 10 + - m_X: 290 + m_Y: 464 + m_Width: 22 + m_Height: 8 + - m_X: 272 + m_Y: 561 + m_Width: 69 + m_Height: 9 + - m_X: 341 + m_Y: 464 + m_Width: 6 + m_Height: 29 + - m_X: 312 + m_Y: 545 + m_Width: 29 + m_Height: 25 + - m_X: 314 + m_Y: 545 + m_Width: 27 + m_Height: 28 + - m_X: 314 + m_Y: 656 + m_Width: 5 + m_Height: 4 + - m_X: 319 + m_Y: 739 + m_Width: 4 + m_Height: 17 + - m_X: 378 + m_Y: 737 + m_Width: 9 + m_Height: 2 + - m_X: 416 + m_Y: 425 + m_Width: 1 + m_Height: 68 + - m_X: 417 + m_Y: 656 + m_Width: 3 + m_Height: 6 + - m_X: 416 + m_Y: 472 + m_Width: 69 + m_Height: 3 + - m_X: 416 + m_Y: 472 + m_Width: 52 + m_Height: 21 + - m_X: 468 + m_Y: 557 + m_Width: 6 + m_Height: 16 + - m_X: 474 + m_Y: 640 + m_Width: 3 + m_Height: 16 + - m_X: 532 + m_Y: 475 + m_Width: 20 + m_Height: 1 + - m_X: 532 + m_Y: 554 + m_Width: 3 + m_Height: 3 + - m_X: 535 + m_Y: 636 + m_Width: 3 + m_Height: 4 + - m_X: 477 + m_Y: 723 + m_Width: 10 + m_Height: 14 + - m_X: 538 + m_Y: 719 + m_Width: 10 + m_Height: 4 + - m_X: 597 + m_Y: 476 + m_Width: 22 + m_Height: 1 + - m_X: 597 + m_Y: 548 + m_Width: 1 + m_Height: 6 + - m_X: 598 + m_Y: 630 + m_Width: 1 + m_Height: 6 + - m_X: 599 + m_Y: 712 + m_Width: 6 + m_Height: 7 + - m_X: 659 + m_Y: 477 + m_Width: 26 + m_Height: 4 + - m_X: 659 + m_Y: 704 + m_Width: 3 + m_Height: 8 + - m_X: 734 + m_Y: 150 + m_Width: 7 + m_Height: 28 + - m_X: 734 + m_Y: 170 + m_Width: 84 + m_Height: 1 + - m_X: 734 + m_Y: 170 + m_Width: 55 + m_Height: 8 + - m_X: 779 + m_Y: 242 + m_Width: 10 + m_Height: 7 + - m_X: 775 + m_Y: 320 + m_Width: 4 + m_Height: 7 + - m_X: 775 + m_Y: 393 + m_Width: 12 + m_Height: 6 + - m_X: 787 + m_Y: 475 + m_Width: 2 + m_Height: 6 + - m_X: 893 + m_Y: 171 + m_Width: 1 + m_Height: 2 + - m_X: 841 + m_Y: 249 + m_Width: 11 + m_Height: 3 + - m_X: 1018 + m_Y: 0 + m_Width: 5 + m_Height: 175 + - m_X: 955 + m_Y: 173 + m_Width: 15 + m_Height: 2 + - m_X: 955 + m_Y: 173 + m_Width: 7 + m_Height: 79 + - m_X: 836 + m_Y: 327 + m_Width: 5 + m_Height: 4 + - m_X: 897 + m_Y: 331 + m_Width: 5 + m_Height: 62 + - m_X: 897 + m_Y: 332 + m_Width: 8 + m_Height: 61 + - m_X: 386 + m_Y: 822 + m_Width: 1 + m_Height: 30 + - m_X: 323 + m_Y: 852 + m_Width: 27 + m_Height: 3 + - m_X: 350 + m_Y: 941 + m_Width: 15 + m_Height: 1 + - m_X: 386 + m_Y: 826 + m_Width: 3 + m_Height: 26 + - m_X: 426 + m_Y: 820 + m_Width: 2 + m_Height: 6 + - m_X: 789 + m_Y: 557 + m_Width: 53 + m_Height: 2 + - m_X: 846 + m_Y: 554 + m_Width: 24 + m_Height: 3 + - m_X: 898 + m_Y: 554 + m_Width: 7 + m_Height: 15 + - m_X: 955 + m_Y: 569 + m_Width: 7 + m_Height: 24 + - m_X: 870 + m_Y: 635 + m_Width: 35 + m_Height: 3 + - m_X: 946 + m_Y: 635 + m_Width: 9 + m_Height: 16 + - m_X: 905 + m_Y: 724 + m_Width: 1 + m_Height: 3 + - m_X: 428 + m_Y: 898 + m_Width: 18 + m_Height: 17 + - m_X: 431 + m_Y: 898 + m_Width: 15 + m_Height: 43 + - m_X: 548 + m_Y: 802 + m_Width: 25 + m_Height: 4 + - m_X: 605 + m_Y: 795 + m_Width: 15 + m_Height: 7 + - m_X: 662 + m_Y: 786 + m_Width: 15 + m_Height: 9 + - m_X: 782 + m_Y: 797 + m_Width: 2 + m_Height: 8 + - m_X: 485 + m_Y: 898 + m_Width: 2 + m_Height: 11 + - m_X: 906 + m_Y: 806 + m_Width: 10 + m_Height: 3 + - m_X: 1003 + m_Y: 651 + m_Width: 20 + m_Height: 145 + - m_X: 946 + m_Y: 796 + m_Width: 12 + m_Height: 10 + - m_X: 720 + m_Y: 842 + m_Width: 3 + m_Height: 14 + - m_X: 774 + m_Y: 856 + m_Width: 8 + m_Height: 4 + - m_X: 825 + m_Y: 860 + m_Width: 3 + m_Height: 7 + - m_X: 873 + m_Y: 867 + m_Width: 14 + m_Height: 6 + - m_X: 446 + m_Y: 1019 + m_Width: 39 + m_Height: 4 + - m_X: 484 + m_Y: 987 + m_Width: 1 + m_Height: 36 + - m_X: 535 + m_Y: 974 + m_Width: 7 + m_Height: 13 + - m_X: 765 + m_Y: 897 + m_Width: 9 + m_Height: 15 + - m_X: 720 + m_Y: 938 + m_Width: 45 + m_Height: 85 + - m_X: 809 + m_Y: 912 + m_Width: 16 + m_Height: 7 + - m_X: 852 + m_Y: 919 + m_Width: 21 + m_Height: 7 + - m_X: 916 + m_Y: 871 + m_Width: 42 + m_Height: 2 + - m_X: 957 + m_Y: 871 + m_Width: 1 + m_Height: 13 + - m_X: 557 + m_Y: 884 + m_Width: 16 + m_Height: 22 + - m_X: 557 + m_Y: 884 + m_Width: 13 + m_Height: 25 + - m_X: 615 + m_Y: 880 + m_Width: 5 + m_Height: 30 + - m_X: 612 + m_Y: 906 + m_Width: 8 + m_Height: 4 + - m_X: 535 + m_Y: 1019 + m_Width: 38 + m_Height: 4 + - m_X: 570 + m_Y: 982 + m_Width: 3 + m_Height: 5 + - m_X: 535 + m_Y: 1021 + m_Width: 67 + m_Height: 2 + - m_X: 602 + m_Y: 982 + m_Width: 10 + m_Height: 3 + - m_X: 647 + m_Y: 978 + m_Width: 318 + m_Height: 7 + - m_X: 658 + m_Y: 978 + m_Width: 307 + m_Height: 45 + - m_X: 658 + m_Y: 989 + m_Width: 365 + m_Height: 34 + - m_X: 1012 + m_Y: 651 + m_Width: 11 + m_Height: 271 + - m_X: 999 + m_Y: 884 + m_Width: 24 + m_Height: 38 + - m_X: 957 + m_Y: 922 + m_Width: 29 + m_Height: 4 + - m_X: 1017 + m_Y: 593 + m_Width: 6 + m_Height: 358 + - m_X: 1020 + m_Y: 593 + m_Width: 3 + m_Height: 430 + - m_X: 1015 + m_Y: 651 + m_Width: 8 + m_Height: 300 + - m_X: 653 + m_Y: 910 + m_Width: 24 + m_Height: 29 + - m_X: 653 + m_Y: 910 + m_Width: 23 + m_Height: 38 + - m_X: 704 + m_Y: 939 + m_Width: 61 + m_Height: 84 + - m_X: 704 + m_Y: 950 + m_Width: 105 + m_Height: 73 + - m_X: 704 + m_Y: 961 + m_Width: 148 + m_Height: 62 + - m_X: 647 + m_Y: 977 + m_Width: 274 + m_Height: 8 + - m_X: 647 + m_Y: 976 + m_Width: 29 + m_Height: 9 + - m_X: 658 + m_Y: 977 + m_Width: 263 + m_Height: 46 + - m_X: 658 + m_Y: 976 + m_Width: 18 + m_Height: 47 + - m_X: 704 + m_Y: 974 + m_Width: 217 + m_Height: 49 + m_FontFeatureTable: + m_MultipleSubstitutionRecords: [] + m_LigatureSubstitutionRecords: [] + m_GlyphPairAdjustmentRecords: + - m_FirstAdjustmentRecord: + m_GlyphIndex: 3 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 3 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 3 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 20 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 20 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 3 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 89 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 90 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 92 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 2020 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 41 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9.53125 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 15 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 41 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9.53125 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 17 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 41 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 47 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 3 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 47 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 47 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 47 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 47 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 47 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 92 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 47 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 2020 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 51 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 3 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 51 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -11.09375 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 15 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 51 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -11.09375 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 17 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 51 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 53 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 53 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 53 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 53 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 3 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9.53125 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 15 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 16 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9.53125 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 17 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9.53125 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 29 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9.53125 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 30 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 50 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9.53125 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 68 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9.53125 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 70 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9.53125 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 72 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 76 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9.53125 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 82 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 85 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -9.53125 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 86 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 88 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 90 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 55 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 92 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.890625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 15 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 16 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.890625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 17 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 29 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 30 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 68 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 72 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 76 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 82 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 85 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 88 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 57 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 92 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 15 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 16 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 17 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 29 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 30 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 68 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 72 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 82 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 85 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 88 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 58 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -0.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 92 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 3 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -11.09375 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 15 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.890625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 16 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -11.09375 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 17 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 29 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -5.578125 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 30 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 36 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 68 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.890625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 72 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 76 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.890625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 82 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 83 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -7.890625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 84 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 88 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 60 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 89 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 73 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 73 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 73 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 2020 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 85 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 15 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 85 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 17 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 85 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 2020 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 89 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 15 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 89 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 17 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 90 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 15 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 90 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -4.75 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 17 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 92 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 15 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 92 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -6.390625 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 17 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 2019 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 2019 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 2020 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -3.1875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 3 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 2020 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 86 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + - m_FirstAdjustmentRecord: + m_GlyphIndex: 2020 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: -1.546875 + m_YAdvance: 0 + m_SecondAdjustmentRecord: + m_GlyphIndex: 2020 + m_GlyphValueRecord: + m_XPlacement: 0 + m_YPlacement: 0 + m_XAdvance: 0 + m_YAdvance: 0 + m_FeatureLookupFlags: 0 + m_MarkToBaseAdjustmentRecords: [] + m_MarkToMarkAdjustmentRecords: [] + m_ShouldReimportFontFeatures: 0 + m_FallbackFontAssetTable: + - {fileID: 11400000, guid: 2e498d1c8094910479dc3e1b768306a4, type: 2} + m_FontWeightTable: + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + fontWeights: + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + - regularTypeface: {fileID: 0} + italicTypeface: {fileID: 0} + normalStyle: 0 + normalSpacingOffset: 0 + boldStyle: 0.75 + boldSpacing: 7 + italicStyle: 35 + tabSize: 10 + m_fontInfo: + Name: Liberation Sans + PointSize: 86 + Scale: 1 + CharacterCount: 250 + LineHeight: 98.90625 + Baseline: 0 + Ascender: 77.84375 + CapHeight: 59.1875 + Descender: -18.21875 + CenterLine: 0 + SuperscriptOffset: 77.84375 + SubscriptOffset: -12.261719 + SubSize: 0.5 + Underline: -12.261719 + UnderlineThickness: 6.298828 + strikethrough: 23.675 + strikethroughThickness: 0 + TabWidth: 239.0625 + Padding: 9 + AtlasWidth: 1024 + AtlasHeight: 1024 + m_glyphInfoList: [] + m_KerningTable: + kerningPairs: [] + fallbackFontAssets: [] + atlas: {fileID: 0} +--- !u!28 &28684132378477856 +Texture2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LiberationSans SDF Atlas + m_ImageContentsHash: + serializedVersion: 2 + Hash: 00000000000000000000000000000000 + m_IsAlphaChannelOptional: 0 + serializedVersion: 3 + m_Width: 1024 + m_Height: 1024 + m_CompleteImageSize: 1048576 + m_MipsStripped: 0 + m_TextureFormat: 1 + m_MipCount: 1 + m_IsReadable: 0 + m_IsPreProcessed: 0 + m_IgnoreMipmapLimit: 0 + m_MipmapLimitGroupName: + m_StreamingMipmaps: 0 + m_StreamingMipmapsPriority: -92 + m_VTOnly: 0 + m_AlphaIsTransparency: 0 + m_ImageCount: 1 + m_TextureDimension: 2 + m_TextureSettings: + serializedVersion: 2 + m_FilterMode: 1 + m_Aniso: 1 + m_MipBias: 0 + m_WrapU: 0 + m_WrapV: 0 + m_WrapW: 0 + m_LightmapFormat: 0 + m_ColorSpace: 0 + m_PlatformBlob: + image data: 1048576 + _typelessdata: 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090b0d0f101112121313131212100f0e0c0a08060603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a1313131313131313130e0d0b08030000000000000000000000000000000000000002070a0c0d1313131313131313130b0a0805000000000000000000000000000000000000000000000000000000000000050a0d0f10131313131313130e0d0b0803000000000000000000000000000000000000000000000004080a0a13131313131313131313131313131313131313131313131313131313131313131313131313131313130a09070400000000000000000000000000000000000000000006060606060600000000000000000000000000000000000000000000020507080c0f1112131211100c080806020000000000000000000000030607090d1011121312110e0a070604010000000000000000000000000000000000000000000000000000000000000000000000000606060606060000000000000000000000000000000000000000000000000000000000010507070c0f1112131312100c08080602000000000000000000000000000000000000000000000000000000000000000000030608091313131313120707050100000000000000000000000000000000000000000000000000000000000105070713131313130c0b09060100000000000000000000000000000000000000000000000000000000000306080913131313131207070501000000000000000000000000000000000000000000000000000000000105070713131313130c0b09060100000000000000000000000000000000000004080a0a0b0b0b0b0b0b0b07060401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607090b0d0f1111121313121211100f0d0a0807050200000000000000000000000000000000000000000000000000000000000000000003080c0e0e131313131313130f0e0c09040000000000000000000000000000000000000000000000000000000000000003070b0d0e131313131313130e0e0c0803000000000000000000000003080c0e0e131313131313130f0e0c09040000000000000000000000000000000000000000000000000000000000000003070b0d0e131313131313130e0e0c080300000000000000000000000000000000000000000000040613131313131313131312110e09040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205070c10131315171a1c1d1e1e1f20201f1f1e1d1c1b19171513120f0b06060401000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b101316172020202020202020201b1a18140f080100000000000000000000000000000000070e1317191a202020202020202020181715110c060000000000000000000000000000000000000000000000000000030a10161a1c1d202020202020201b1a18140f080100000000000000000000000000000000000000050b101416172020202020202020202020202020202020202020202020202020202020202020202020202020202020171614100b0500000000000000000000000000000106090b0c131313131313080705020000000000000000000000000000000002090e111414181c1e1f201f1e1c191514120e090300000000000000060b101213161a1d1e1f201e1d1b171413110d0701000000000000000000000000000000000000000000000000000000000000030608091313131313130b0a0805000000000000000000000000000000000000000000000002080d111314191c1e1f201f1e1c191514120e09030000000000000000000000000000000000000000000000000000000000040a0f12151520202020201f1413110d08020000000000000000000000000000000000000000000000000002080d1113142020202020191815120d060000000000000000000000000000000000000000000000000000040a0f12151520202020201f1413110d080200000000000000000000000000000000000000000000000002080d1113142020202020191815120d06000000000000000000000000000000050b10141617181818181818181413110d07010000000000000000000001030405060606060504040200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060b10121315171a1c1d1e1f1f201f1f1e1d1b19171514120e0906030000000000000000000000000000000000000000000000000000000001090f14181a1b202020202020201c1b191510090200000000000000000000000000000000000000000000000000000001080e1317191a202020202020201b1a18140f09010000000000000001090f14181a1b202020202020201c1b191510090200000000000000000000000000000000000000000000000000000001080e1317191a202020202020201b1a18140f0901000000000000000000000000000000000001070c10132020202020202020201f1d1a150f0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104090e1214181c1f20222426282a2a2b2c2c2c2c2c2b2a2927262422201f1c171413110d0705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f161c2022232d2d2d2d2d2d2d2d2d282724201a130b0200000000000000000000000000010a12191f2326272d2d2d2d2d2d2d2d2d2424211d171009000000000000000000000000000000000000000000000000040d151c2126292a2d2d2d2d2d2d2d2727241f1a130b0200000000000000000000000000000000000810171c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423201c161008000000000000000000000000060d1215181920202020201f1514120e090300000000000000000000000002080e141a1e202125292a2b2c2c2b292622211e1a150e0903000000020a11171c1f2023272a2b2c2c2b2a282420201d18130c07000000000000000000000000000000000000000000000000000000030a0f121515202020202020181715110c060000000000000000000000000000000000000002080d13191e202125292b2c2d2c2b292622211e1a150e09030000000000000000000000000000000000000000000000000000060e151b1f21222c2d2d2d2d2c21201d19130c040000000000000000000000000000000000000000000000050c13191d20212d2d2d2d2d2524221e181109010000000000000000000000000000000000000000000000060e151b1f21222c2d2d2d2d2c21201d19130c0400000000000000000000000000000000000000000000050c13191d20212d2d2d2d2d2524221e181109010000000000000000000000000810171c2023242525252525252520201d18130c0400000000030607090b0e0f1112121313121211100f0d0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d1113171c1f20222426292a2b2b2c2c2c2b2b2a28262422211e1a1312100c0600000000000000000000000000000000000000000000000000030b131a202427282d2d2d2d2d2d2d292825211b140c0300000000000000000000000000000000000000000000000000020b12191f2326272d2d2d2d2d2d2d282724201a130b030000000000030b131a202427282d2d2d2d2d2d2d292825211b140c0300000000000000000000000000000000000000000000000000020b12191f2326272d2d2d2d2d2d2d282724201a130b03000000000000000000000000000000030b12181c1f2d2d2d2d2d2d2d2d2c2c2a2620191209000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d11141a1e2123282c2d2f31333537373838393939383837353433302e2d2b282221201d1814120e0904000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111921272c2f303939393939393939393433302b251d140b010000000000000000000000000a141c242a2f323339393939393939393931302d28221b120900000000000000000000000000000000000000000000030d161f262d323536393939393939393433302b251d140b0000000000000000000000000000000008111a22282d30313939393939393939393939393939393939393939393939393939393939393939393939393939393939302f2c28211a1108000000000000000000010911181e2224252d2d2d2d2d2c22211e1a140d0600000000000000000000050d14191f252a2d2e3235373839383736322f2e2b26201a150e0600070c141c23282b2d303336383939383734312d2c29241d18120b03000000000000000000000000000000000000000000000000060e151a1f21222c2d2d2d2d2d2424211d1710090000000000000000000000000000000000050c13191e252a2d2e3235373939393836332e2d2b261f1a150e0600000000000000000000000000000000000000000000000006101820262b2e2f3939393939382e2d29251e160e04000000000000000000000000000000000000000000050e161e252a2d2e393939393932312e29231b13090000000000000000000000000000000000000000000006101820262b2e2f3939393939382e2d29251e160e040000000000000000000000000000000000000000050e161e252a2d2e393939393932312e29231b1309000000000000000000000008121a22282d3031313131313131312d2c29241d160d0405060b10121316181a1c1d1f1f20201f1f1e1d1b19171514120e0906030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e13181d2023282b2d2f3133353737383939393837373533312e2d2a26201f1c17110d0802000000000000000000000000000000000000000000010b151d252b303435393939393939393534312c261e150c000000000000000000000000000000000000000000000000000b141d242b303334393939393939393534302b251d150b01000000010b151d252b303435393939393939393534312c261e150c000000000000000000000000000000000000000000000000000b141d242b303334393939393939393534302b251d150b0100000000000000000000000000030d151d23292c3939393939393939393836312b241b1208000000000000000000000000000000000000000000000000000000000000000000000000000003090e13181d20262a2d2e34383a3c3e40424344454546464645454342413f3d3b3938332d2d2c2924201e1a14100c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f19232b33383c3d46464646464646464641403c362f261d1308000000000000000000000007121c262e353b3f404646464646464646463e3d39342c241b10060000000000000000000000000000000000000000000a151f2831383e42434646464646464641403c362f261d0f05000000000000000000000000000005101a232c33393c3d46464646464646464646464646464646464646464646464646464646464646464646464646464646463d3c38332c231a1005000000000000000009131b23292e31323939393939392e2d2a261f180f060000000000000000080e171e252a30363a3b3f424445464544433f3b3a37312b2620180f0b12181e262e34383a3c40434445464544413d3a39352f28231c150c050000000000000000000000000000000000000000000006101820262b2e2f39393939393931302d28221a1209000000000000000000000000000000070e161e252a3036393a3f424445464645433f3b3a37312b2620180f0900000000000000000000000000000000000000000000040e18222a31373a3c4646464646453a3935302820160c0200000000000000000000000000000000000000020c1620283036394646464646463f3e3a342d251b11060000000000000000000000000000000000000000040e18222a31373a3c4646464646453a3935302820160c02000000000000000000000000000000000000020c1620283036394646464646463f3e3a342d251b110600000000000000000005101a242c33393c3d3e3e3e3e3e3e3e3a39352f281f160b1113171c1f20222527292a2b2c2c2d2c2b2b2a28262422211e1a1312100c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f151a1d24292c2e34383a3c3e404244444546464545444342403d3b3a36312d2c28231c19130d08020000000000000000000000000000000000000009131d272f373c40414646464646464642413d3730271e0e050000000000000000000000000000000000000000000000030d1d262e363c3f414646464646464641403c372f271d130900000009131d272f373c40414646464646464642413d3730271e0e050000000000000000000000000000000000000000000000030d1d262e363c3f414646464646464641403c372f271d1309000000000000000000000000010b151f272f343846464646464646464645423d352d24190f04000000000000000000000000000000000000000000000000000000000000000000000001070c141a1d24292c31363a3b404546484a4d4f505151525353525251504f4e4c4a4846443f3d3a39352f2d2a251f1d18120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000b16212b353d44484a5353535353535353534e4c4841382f251a0f03000000000000000000020e19242e3840474b4d5353535353535353534b49453e362c22170c000000000000000000000000000000000000000005101c26313a43494e50535353535353534e4c4841382f21170d03000000000000000000000000000b17222c363e44494a53535353535353535353535353535353535353535353535353535353535353535353535353535353534a48443e352c21160b0000000000000006111b252d343a3e3f4646464646463b3a36312921180b0200000000000008111a202930363b4246474b4f51525352514f4c4847423c37312a211b151c232830383f4446494d5051525351504e4a4745403a342e271e170e050000000000000000000000000000000000000000030e18222a31373a3c4646464646463e3d39342c241a0e0500000000000000000000000000071019202830363a4146474c4f51525352514f4c4847423c37312a211b12090100000000000000000000000000000000000000000a15202a343c4347485353535353524746413a32281e13080000000000000000000000000000000000000008131e28323a41465353535353534c4a463f372d23180d01000000000000000000000000000000000000000a15202a343c4347485353535353524746413a32281e130800000000000000000000000000000000000008131e28323a41465353535353534c4a463f372d23180d0100000000000000000b17222c363e44494a4b4b4b4b4b4b4b4745403a31281d191d2023282b2d2f3234363738393939393837373533312e2d2a26201f1c17110d08020000000000000000000000000000000000000000000000000000000000000000000000000000070c151b20262b2f35393a3f4446484a4d4f5051525253525251504e4c4a4846423d3a38342e29251e19140d050000000000000000000000000000000000030f1a252f3941484d4e535353535353534f4d4942393020170d02000000000000000000000000000000000000000000010b151f2e3840474c4d535353535353534e4d4841392f251a0f0300030f1a252f3941484d4e535353535353534f4d4942393020170d02000000000000000000000000000000000000000000010b151f2e3840474c4d535353535353534e4d4841392f251a0f03000000000000000000000007121d2731394045535353535353535353524e473f352b20150900000000000000000000000000000000000000000000000000000000000000000000030b12181f252a2f35393b4246484b51535557595b5d5d5e5f5f5f5f5f5e5d5c5a59575553504a4a4745413b3a36302c29241d1a140f0a03000000000000000000000000000000000000000000000000000000000000000000000000000004101c27333d474f54566060606060606060605b58534a41362b20140400000000000000000007131f2a35404a52575a606060606060606060575550483e34281d1101000000000000000000000000000000000000000a16212d38434c545a5d606060606060605a58534a4133291f140900000000000000000000000004101c28333e48505557606060606060606060606060606060606060606060606060606060606060606060606060606060606057554f473e33281c10040000000000010d18232d373f464a4c5353535353524846423b33291d140a000000000008111a232c323b41464d5254585c5d5e5f5f5e5c5955534d47423c332d241e272e343e424a5053565a5d5e5f5f5e5d5b5753514b444039302920170f05000000000000000000000000000000000000000a15202a343c4347485353535353534b49453e362c20170d020000000000000000000000071119222b323a41464c5254585c5e5f605f5e5c5955534d47423c332d241b130900000000000000000000000000000000000000030f1b26313c464e53555f606060605f54524c443a3025190c030000000000000000000003030303030303010d1925303a444c525f6060606060585651493f34291e1206000000000000000000000000000000000000030f1b26313c464e53555f606060605f54524c443a3025190c0300000000000000000003030303030303010d1925303a444c525f6060606060585651493f34291e12060000000000000004101c28333e485055575858585858585853514b433a2f2625292d2e34383a3c3e414244454546464545444342403d3b3a36312d2c28231c19130d080200000000000000000000000000000000000000000000000000000000000000000000030b121820262b31373a4145474a50535557595c5d5e5e5f5f5f5e5e5d5b595755534d4946443f3835302a251e170e08020000000000000000000000000000000814202b37414b53595b606060606060605c59544b4232291f140900000000000000000000000000000000000000000007121d2731404a52585a606060606060605b59534b41372b201408000814202b37414b53595b606060606060605c59544b4232291f140900000000000000000000000000000000000000000007121d2731404a52585a606060606060605b59534b41372b20140800000000000000000000000c18232f39434b515f606060606060605f5e5951473d31261a0e010000000000000000000000000000000000000000000000000000000000000000060d151d232930363a4045474d5355545c60626466686a6a6b6b6c6c6c6b6b6a6867666361605b545654514b4846423b39352f2a251f1a150e08020000000000000000000000000000000000000000000000000000000000000000000000000713202c38444f5960636c6c6c6c6c6c6c6c6c67645c53483c3020150a0000000000000000000a17232f3b47525c63666c6c6c6c6c6c6c6c6c64615a5045392d1d1207000000000000000000000000000000000000000d1a26323e49545e66696c6c6c6c6c6c6c67645c53453b30251a0e0200000000000000000000000814202d3944505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6361594f44382c201407000000000006121e29343f4951565860606060605f55534d453b2f261b1106000000050f1a232c353e444c52575e6165686a6b6c6b6a6965625f57534d453f372d27303940444f545c606366696b6c6c6b6a6764605d55514a423b322921170b020000000000000000000000000000000000030f1a26313c464e53555f6060606060575550483e32291e130800000000000000000000050e19232b343d444c52565e6165686a6c6c6c6b6966615f57534d453e362d251b110800000000000000000000000000000000000006121f2b37434e585f626c6c6c6c6c6b615e564c4135291e150b00000000000004080a0a1010101010101010111d2a36414c565e6c6c6c6c6c6c65625b51463a2e22150900000000000000000000000000000000000006121f2b37434e585f626c6c6c6c6c6b615e564c4135291e150b000000000004080a0a1010101010101010111d2a36414c565e6c6c6c6c6c6c65625b51463a2e221509000000000000000814202d3944505a616464646464646464605d554b41382d3035393a3f4446494b4d4f5052525353525251504e4c4a4846423d3a38342e29251e19140d050000000000000000000000000000000000000000000000000000000000000000070c151d232831373c42474b5154545c60626466686a6a6b6c6c6c6b6a6a686664615f575653504a46413a3630292019130d0500000000000000000000000000000c1824303c48535d64686c6c6c6c6c6c6c68655d54443b3025190e0000000000000000000000000000000000000000000c18232f3943525c64676c6c6c6c6c6c6c68645d53483c3024180c000c1824303c48535d64686c6c6c6c6c6c6c68655d54443b3025190e0000000000000000000000000000000000000000000c18232f3943525c64676c6c6c6c6c6c6c68645d53483c3024180c0000000000000000000004101c2934404b555c6c6c6c6c6c6c6c6c6c6a63594e42362a1d1104000000000000000000000000000000000000000000000000000000000000030a11171f272f343b42464b5153575f6165666d6f71737576777878797979787876757472706e6c666663605d5554524d4745403936312b262019140d0500000000000000000000000000000000000000000000000000000000000000000000000916222f3c4854606b70797979797979797979746e64584c3c32261b0f0300000000000000000c1926323f4b57636e73797979797979797979716c615549392f23180c000000000000000000000000000000000000000f1c2935424e5a66707679797979797979746e64574d42362a1f140900000000000000000000000a1623303c4955616c707979797979797979797979797979797979797979797979797979797979797979797979797979797979706b6155483c2f23160900000000000915222e3a46515b62656c6c6c6c6c6c615f574d41382d22170b0300030d17212c353e474f565e61696e7275777879787776726e69625f5751493f373039424a515961666d6f7376777879787774706d67605c544d443b33291d140a000000000000000000000000000000000006121f2b37434e585f626c6c6c6c6c6c64615a50443a3025190e040000000000000000020d17202b353d464f565e61686d7275777879797876726e69625f5750483f372d23190d0400000000000000000000000000000000000815212e3a47535f6a6f7979797979786d685e52463d30271c1207000000050b101416171d1d1d1d1d1d1d1d1d202d3946525e68767979797979726d62564a3e312418080100000000000000000000000000000000000815212e3a47535f6a6f7979797979786d685e52463d30271c12070000050b101416171d1d1d1d1d1d1d1d1d202d3946525e68767979797979726d62564a3e31241808010000000000000a1623303c4955616c70717171717171716d675d53493f383a4146474a505355585a5c5d5e5f5f605f5e5e5d5b595755534d4946443f3835302a251e170e080200000000000000000000000000000000000000000000000000000000000810191e272e343c43474d53555d6064666d6f7173757777787979787877767573706e696763605c54524c46413b322a251e170e06000000000000000000000000000e1a2734404d59646f7479797979797979756f65564d42362a1c11060000000000000000000000000000000000000004101c2934404b55646e7479797979797979746f64594d4034271a0e000e1a2734404d59646f7479797979797979756f65564d42362a1c11060000000000000000000000000000000000000004101c2934404b55646e7479797979797979746f64594d4034271a0e0000000000000000000006131f2c3845515c67767979797979797979756a5e5245382c1f12060000000000000000000000000000000000000000000000000000000000040c151c2328313940454d52555d6065696e7276797b7d80828384848586868585848382817f7d7b797673706d6765615e5753514b46423b37312a251e170e07000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495363707d868686868686868686807467584e43372b1f12060000000000000005111e2a36424d576673808686868686868686867e7164554b4034291c1004000000000000000000000000000000000000101d2a3643505d697682868686868686868074695e52463b30251a0e02000000000000000000000a1724313d4a5764707d86868686868686868686868686868686868686868686868686868686868686868686868686868686867d7063574a3d3024170a00000000000b1824313e4a56626d727979797979796e695f53493f33271f14090009141f29333e474f5961686e747b7e828485868584827f7b756e69625b51493f39424b545c606c70787c80838485868483817d7a726d665e564d453b2f261c1106000000000000000000000000000000000815212e3a47535f6a6f797979797979716c61564c41362a20160c020000000000000009141f29333d474f5960686d747a7f828485868584827f7b756e69625a51493f352b1f160c01000000000000000000000000000000000915222f3c4855626f7c8786868686857a6d61594f42392e23180c03000810171c202324292929292929292929292e3a4754616d7a86868686867f7265584c3f322519130c04000000000000000000000000000000000915222f3c4855626f7c8786868686857a6d61594f42392e23180c030810171c202324292929292929292929292e3a4754616d7a86868686867f7265584c3f322519130c0400000000000a1724313d4a5764707e7e7e7e7e7e7e7e796d655b504443484c5254545c60626567696a6b6c6c6c6c6b6a6a686664615f575653504a46413a3630292019130d0500000000000000000000000000000000000000000000000000000009111a222a303940454e53575f62676d7175797b7d8082838485858685858483817f7d7b7874706d66615e56524c443e36302920180f070000000000000000000000000e1b2835414e5b687481868686868686868175695e5246382d22170b0000000000000000000000000000000000000006131f2c3845515c677480868686868686868174685b4e4135281b0e000e1b2835414e5b687481868686868686868175695e5246382d22170b0000000000000000000000000000000000000006131f2c3845515c677480868686868686868174685b4e4135281b0e000000000000000000000714202d3a4753606d798686868686868687796c5f5346392c20130600000000000000000000000000000000000000000000000000000000060d161e262e343d434b51575e61676d72777b7f8286888a8c8e909091929292929291908f8d8c8a888583807d7a76726e6964605d55534d47433c36302920191007000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6574818d939393939393939184786a5f53473b2e211508000000000000000714202d3a46525e69778390939393939393938e8275675c5145382c1f13060000000000000000000000000000000000000a1723303d4a5663707d89959393939392867b6e61574d42362a1f1409000000000000000000000a1724313d4a5764707d8a9393939393939393939393939393939393939393939393939393939393939393939393939393938a7d7063574a3d3024170a00000000000c1925323f4c5865727f8686868686867b6e655b50443b31251a0e050e1a25313b454f59616b707a81878b8f90919292918f8c88827b726d625b5147404b545c666d757d84898d9091929291908e8a857f786e695e574d42382d22170b010000000000000000000000000000000915222f3c4855626f7b8786868686867e71685e52463e32281e1308000000000000020e1a25303b454f59606b6f7a81868b8f91929392918f8c87827b716c625b51473d31281d1307000000000000000000000000000000000815212e3a47535f6a73808d9693978e81746b60544a4034281f140908111a21282d303136363636363636363636363a4754616d7a879393938b7f7265584c3f3229241e160d040000000000000000000000000000000815212e3a47535f6a73808d9693978e81746b60544a4034281f1409111a21282d303136363636363636363636363a4754616d7a879393938b7f7265584c3f3229241e160d04000000000a1724303d4a5763707d868b8b8b8b8b8b81776c605a504e54565e6165666d6f7174757778787979787877767573706e696763605c54524c46413b322a251e170e060000000000000000000000000000000000000000000000000009121b232c343c424b51585f62696e747a7d8185888a8c8f9091919292929191908e8c8a8884807d79736d68615e565046413a322a2119100700000000000000000000000916232f3c4956626f7c89959393939392867b6e61544a3f33281c0f030000000000000000000000000000000000000714202d3a4753606d7985929393939395897c6f6356493c30231609000916232f3c4956626f7c89959393939392867b6e61544a3f33281c0f030000000000000000000000000000000000000714202d3a4753606d7985929393939395897c6f6356493c30231609000000000000000000000714202d3a4753606d7a8693939393939286796c5f5346392c201306000000000000000000000000000000000000000000000000000000060f171f2830383f444f555c60696e737a7f84888b8f929897999b9d9d9e9e9f9f9f9e9e9d9b9a99969892908c8986827f7b76716d67615e57534e46413b322b22190f04000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919e9f9f9f9f9fa196887c6f6255483c3025190d010000000000000814212e3b4754616e7b8795a09f9f9f9f9f9f9285796d6053473a2d22170b0000000000000000000000000000000000000916222f3c4854606b7683909da79fa3998d8074695e52463b3025190e020000000000000000000a1724313d4a5764707d8a979f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f968a7d7063574a3d3024170a00000000000613202d394653606c7782909893988f82776c60574d42362a20170d121e2a36424d57616b707d868e939a9b9d9e9d9d9d9c98948f877f726d62594f45515c666d78818a9196999c9e9d9d9e9d9a98928c837b6e695e544a3f33281d12070000000000000000000000000000000815212e3a47535f6a737f8c95939392857a6d615a50443a3024190d04000000000005111e2a36424d57606b6f7d858d92999b9d9c9b9c9e9c9a938f867e726d62594f433a2f24180d0100000000000000000000000000000006121f2b37434e58606d7984919e9f93887d6f665c51443b31261a0d101a232c33393c3d4343434343434343434343434754616d7a87949f988b7f7265584c3f39352f281f160c01000000000000000000000000000006121f2b37434e58606d7984919e9f93887d6f665c51443b31261a0d1a232c33393c3d4343434343434343434343434754616d7a87949f988b7f7265584c3f39352f281f160c010000000a16232f3c4855616b727f8c93979797938d80736c6158586062686d7175797c7e8082838585868685858483817f7d7b7874706d66615e56524c443e36302920180f07000000000000000000000000000000000000000000000009121b242d353e464e545c606a6f757b81868a8e929797999b9d9d9e9f9f9f9e9d9d9b999796918d8985807a746e68615a524c443c332b22191007000000000000000000000915222e3b4854606a7783909daa9fa3998c7f73665b5044382b1f1409000000000000000000000000000000000006121f2b37434e5864717e8a97a29f9f9d9083776b6054483b2f221509000915222e3b4854606a7783909daa9fa3998c7f73665b5044382b1f1409000000000000000000000000000000000006121f2b37434e5864717e8a97a29f9f9d9083776b6054483b2f221509000000000000000000000714202d3a4753606d7a86939f9f9f9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000000000050e172129313a424a505960676d737b80858b9195989c9fa3a39f9d9b9a999898989898999b9c9d9fa3a29f9c9999928f8b87837e79746e69625f58524c443d342b21160a000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8996a1adacacacb2a8998c7f7266564c41362a1d1105000000000004101c2834404b5465717e8b98a7b1acacacaea2988a7d7063544a3f33281c0f0300000000000000000000000000000000000714202c38444f5963707d8a959fabab9f92867b6e61564d42362a1f14080000000000000000000a1724313d4a5764707d8a97a3acacb2acaba6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a3968a7d7063574a3d3024170a000000000005121f2b3744505b656e7b86929f9f948b7e72695e53463f32291f1414212d3a46535e69707d8692989f9d9b9691909192999f9e99928b7f726b60554e58606d78818e939ea09e9892909091979d9f9f9590847b6e665b5044392f23180c00000000000000000000000000000006121f2b37434e58606d78839099a1978e81756c61564c4135291f160c01000000000714202d3a46525e696f7d8691979f9f9892908e8f91979f9f98928b7f726b60554b4035291d1307000000000000000000000000000000030f1b26313c45515d67707d8a939e9a9183786d60574d42362a1f1617212c353e44494a5050505050505050505050505054616d7a8794a0988b7f726558504745413a31281e13080000000000000000000000000000030f1b26313c45515d67707d8a939e9a9183786d60574d42362a1f16212c353e44494a5050505050505050505050505054616d7a8794a0988b7f726558504745413a31281e13080000000714202c38444f59636d74818e959fa59c928a7e716a60626a6f757a7e8285888b8d8f9091929293929191908e8c8a8884807d79736d68615e565046413a322a2119100700000000000000000000000000000000000000000007101b242d363e474f585f666d737c82878e92989b9ea2a9a6a8aaa8a7a6a6a6a7a8a9a8a6a8a19e9a97928c86807a716c615e564d453c342b22190e0500000000000000000007131f2c38434e5865727e8b98a2aeab9e9184786c6053463b30251a0e00000000000000000000000000000000000814212e3a47535f6a7683909ca9aea2988b7f7265594f43382c1f13070007131f2c38434e5865727e8b98a2aeab9e9184786c6053463b30251a0e00000000000000000000000000000000000814212e3a47535f6a7683909ca9aea2988b7f7265594f43382c1f1307000000000000000000000714202d3a4753606d7a8693a0acac9f9286796c5f5346392c20130600000000000000000000000000000000000000000000000000030d172029333b434c545c606b707980868d92979da0a29f9b989892908e8d8c8c8b8b8b8c8d8e8f919299979a9d9fa39f9c9a938f8b85807b756e6a615e564e463d32271b0f03000000000000000000000000000000000000000000000000000000000006121e2b37424d576673808d99a8b1acaaacaea99d908376685e5246392d201306000000000006131f2c3845515c6675828f9ba8b0aba9abb0aa9a8e8174665b5044382b1f1206000000000000000000000000000000000004101c27333d4855616b7783909da7aea3988d8074695e52463b3025190e0200000000000000000a1724313d4a5764707d8a97a3b0b2a8a19e9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a968a7d7063574a3d3024170a0000000000030f1b27333f49535f69727f8c959f9f92867b6e615a50443b3025191f2c38434e58616e7b869298a29c938e88848384868c9299a39f93887d6f675c535f6a73808d939ea197928b858483858990959fa0969083786c60554b4034291c10040000000000000000000000000000030f1a26313c44515c666f7c87929f9e938a7d70685d52453d31281d130700000007131f2c38434f59616e7b859298a19a938c86838282858a9297a29f93877d70675d51453a2f24180d010000000000000000000000000000000a15202935404b55616b75818e98a0958c7f72695f53463e31281e1c28333e474f55575c5c5c5c5c5c5c5c5c5c5c5c5c5c616d7a8794a0988b7f72655c5c54524c433a2f24190d0100000000000000000000000000000a15202935404b55616b75818e98a0958c7f72695f53463e31281e28333e474f55575c5c5c5c5c5c5c5c5c5c5c5c5c5c616d7a8794a0988b7f72655c5c54524c433a2f24190d01000004101c28333e47515b606d79839096a1a49f92867c6f6a6f767c81868b8f9298989a9c9d9e9f9f9f9f9e9d9d9b999796918d8985807a746e68615a524c443c332b2219100700000000000000000000000000000000000000050e19222d363e485059616a6f7980878f93999fa3aaabaaaaa29f9d9b9a9a999a9a9b9d9fa2aaa9aba9a19e98928d857e756d685f574e463c342a20170c030000000000000000030f1b27323d4754606d7a85929facaca1968a7d7063574d42362a1c110600000000000000000000000000000004101c2934404b55626e7b88949fabac9f92867a6d6054473d32271b0f0300030f1b27323d4754606d7a85929facaca1968a7d7063574d42362a1c110600000000000000000000000000000004101c2934404b55626e7b88949fabac9f92867a6d6054473d32271b0f03000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000000020b151f29323b454d565d666d747d848c92999fa29f9c98928f8b88858381807f7f7e7e7f7f8081828486888a8d9092999b9ea19f9c98928d86817c746e6860584e43382c1f130700000000000000000000000000000000000000000000000000000000000814212e3a47535f697784919daaa7a09d9fa2aa9f93867a6d6154473a2e23170c00000000000713202d3a4653606d7985929faca69f9c9fa6ab9e9285796c605346392d20130a0000000000000000000000000000000000000b16212c38444f5964707d8a95a0acaa9f92867b6e61564d41362a1e140800000000000000000a1724313d4a5764707d8a97a3b0aca196918d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8a7d7063574a3d3024170a0000000000000b17222d38414d57606d78839099a2988f82766c62564d41362a20222e3b4854606a75828f98a29c918c817b7876777a7f87929aa49a9184796d6056626e7c87929fa19791857e797776787c838f949f9f958b7f72675c5145382c1f13060000000000000000000000000000000a15202834404a54606a73808d96a09e91857a6d60594f433a2f24180d0300000915222f3b4854606b75828f97a19f9388807a767576797e859297a2999184796d60554b4035291d1104000000000000000000000000000000040c18242f39434f59616e7b85929f9f92867b6e615a50433a2f24202d39444f5961646969696969696969696969696969696d7a8794a0988b7f72696969605d564c4135291d11040000000000000000000000000000040c18242f39434f59616e7b85929f9f92867b6e615a50433a2f242d39444f5961646969696969696969696969696969696d7a8794a0988b7f72696969605d564c4135291d11040000000b17212c353f45515c676e7a849198a2a39891857b747c82898e92999c9fa2aaa7a8aaa8a8a7a6a6a7a8a9a8a6a8a19e9a97928c86807a716c615e564d453c342b22190e050000000000000000000000000000000000020d17202b343e48505a616b707c838c92999fa4abaca7a09d999892908f8d8d8d8d8d8f909298989c9fa4abaaa29f97928a827a6e6960584e463c32291e150b0000000000000000000a16202c3945515d6774818e9aa7b1a89b8f8275695e5246382e23170b00000000000000000000000000000006131f2c3845515c6774808d9aa6b0a79b8e8174685d5245392b21160a0000000a16202c3945515d6774818e9aa7b1a89b8f8275695e5246382e23170b00000000000000000000000000000006131f2c3845515c6774808d9aa6b0a79b8e8174685d5245392b21160a00000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000000a141d27313a444d575f686d78808991969fa39e9b948f8a85827e7b7977757373727171727273747677797b7e8083868a8e92979b9fa29f99928e87817a6f6a6054483b2e22150900000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a0aca095909298a2a4998a7e7164544a3f34281c1003000000000a1723303d4a5663707d8998a2a99f9490949faba197897c6f6356493c31261b0f03000000000000000000000000000000000005101c28333e4653606c7883909da7aea3988d8074685e52463b3025190e02000000000000000a1724313d4a5764707d8a97a3b0ab9e91848080808080808080808080808080808080808080808080808080808080808080807c6e6255483b2f22150800000000000006111b262f3c44505c666f7c86929f9f948b7e71685e52463e32292834404b54626f7c89939e9f948c7f746e696a686d737e88939fa0968b7f72655e6875828f99a39e91857b716d676a6a6f78828f98a29f9285796d6053473a2e23170b000000000000000000000000000000030c18232e39424e58606d7984919aa1978e81746b60554b4035291f150b0105111e2a36414c56636f7c89939e9e938b7e736d6868666d717c85929fa1968c8073675d5145392c2013070000000000000000000000000000000007121d27313e46525e69727f8b959f988f82756c61554c41352923303c4955616c70767676767676767676767676767676767a8794a0988b7f767676766d685d5245392c20130600000000000000000000000000000007121d27313e46525e69727f8b959f988f82756c61554c413529303c4955616c70767676767676767676767676767676767a8794a0988b7f767676766d685d5245392c20130600000005101a232834404b555e686f7c86929aa4a197908381878f949b9fa3abacaaaba39f9d9c9b9a999a9a9b9d9fa2aaa9aba9a19e98928d857e756d685f574e463c342a20170c030000000000000000000000000000000009141f29323d46505a626c717d8690959fa3ababa49f9b95908c898584828180808081828385888b8f93999fa2aaa9a19e938f847b6f6a60584e443b30271d1207000000000000000004111d2935414b55626f7c88959fabac9f92877b6e61544a3f34281c100300000000000000000000000000000714202d3a4753606d7985929eabaca095897c6f63564c413529190f0400000004111d2935414b55626f7c88959fabac9f92877b6e61544a3f34281c100300000000000000000000000000000714202d3a4753606d7985929eabaca095897c6f63564c413529190f0400000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000006111c262f39434c565f696e7a828d929ea0a09d938e88827d7975716e6c666867666565656565666869666d6e7174767a7d81858a8e92989ea19f99928e867c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000005111e2a36414c5666727f8c99a7aa9d908386929fab9b8e8175665c5044382c1f120600000005121e2a36424d576774808d9aaaa1979083909ca9a99a8d807367584e43372b1f12060000000000000000000000000000000000000b161f2b3744505b65717e8a95a0acaa9f92867b6e61564c41362a1e14080a0a0a0a0a0a0a0a1724313d4a5764707d8a97a3b0a99c8f827673737373737373737373737373737373737373737373737373737373737373736e6a5f53473a2e211408000000000000000a141d28343f4a545f6a737f8c95a09f92857b6e615a50443a302c3845515c6674818e9aa59c9082786c615f575d616c74818d99a49d9083776a616d7a86929fa0958a7d7069605c5860666e7b86929fa2978a7e7164544a3f34281c100300000000000000000000000000000007121c27303c45515c676f7d88939f9d93897d70675d51453d31271d12070714202d3946525e6875828f9ca59b8e81756c615d565c606a717e8b96a09f92857a6d6053473a2f24180c00000000000000000000000000000000010b151f2a36424d56606c788390999e948a7e71675d51453c3026313d4a5764707d8283838383838383838383838383838383909ca99e9184838383827a6d6054473a2d211407000000000000000000000000000000010b151f2a36424d56606c788390999e948a7e71675d51453c30313d4a5764707d8283838383838383838383838383838383909ca99e9184838383827a6d6054473a2d21140700000000081118232e39434c565f6a717e88939fa5a095908d93999fa6acaaa8a09d999992908f8e8d8d8d8d8f909298989c9fa4abaaa29f97928a827a6e6960584e463c32291e150b000000000000000000000000000000030d1925303b444e58626c717e879298a0a7afa79f99938e88837f7c79777574737373747577797c7f83878d92989ea5ada59e9691857c6f6a5f564c42392e23180c0300000000000000010d18242f3a47535f6a7683909da9afa3998c7f73665c5044382b1f14090a0a0a0a0a0a0a0a0a0a0a0a0a0a121f2b37434e5864717e8b97a2adaa9d9083776b6054443a2f24190700000000010d18242f3a47535f6a7683909da9afa3998c7f73665c5044382b1f14090a0a0a0a0a0a0a0a0a0a0a0a0a0a121f2b37434e5864717e8b97a2adaa9d9083776b6054443a2f2419070000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000000000b17222d38424b555e686e7b838f949da49c969189817c76706d666561605b545a5959585858595a5b545c60626467676d7174797d81868c91969da09e9285796d6053473a2d201407000000000000000000000000000000000000000000000000000000000714202d3946525e687683909da9a79a8d80828f9ca99f9285796d6053463a2d2013090000000714212d3a46535f697784919daa9e91857e8a97a8aa9e9184776a5f53473a2e211509000000000000000000000000000000000000030f1b27333f4953606c7884919da8aea3988d8074685e52463b3025191616161616161616161724313d4a5764707d8a97a3b0a99c8f82766967676767676767676767676767676767676767676767676767676767676767625f584e43372b1f120600000000000000020b17232e38424e58606d78839099a2978f82756c61564c41362d3a4653606d7985929fa2988a7d70655b534d5259616e7b87939f9f95887b6f65727e8b99a39d9184786c6057514e545e6874818d9aa99c8f8276665c5044382b1f1206000000000000000000000000000000000b151e2934404b55606b74808d96a19e9184796d60594f43392f24180c0814212e3b4754616e7a86929f9f94887b6e615a524c5058606c7884919da2978b7e7164554b4035291d100400000000000000000000000000000000030d1925303b44505b666f7c87929f9e91847a6d60584e42382e323f4b5865727e8b8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f90949faba096918f8f8f877a6d6154473a2e21140700000000000000000000000000000000030d1925303b44505b666f7c87929f9e91847a6d60584e42382e3f4b5865727e8b8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f90949faba096918f8f8f877a6d6154473a2e211407000000000007121d27303b444e58616c73808c939ea7a09d9a9fa4abaca59e9b96918c898684828180808081828385888b8f93999fa2aaa9a19e938f847b6f6a60584e443b30271d120700000000000000000000000000010b151f2a36424d56606a717e889299a2aaafa49c959087817c77726f6d6668676766676768666c6f72767b80868e939fa3aaa8a09792867c6f685e544b403428201509000000000000000007131d2b37434e5864717e8b97a2adab9e9184786d6053463b31251a16161616161616161616161616161616212e3a47535f6a7683909ca9aea2988b7f7265594f4332281e1308000000000007131d2b37434e5864717e8b97a2adab9e9184786d6053463b31251a16161616161616161616161616161616212e3a47535f6a7683909ca9aea2988b7f7265594f4332281e13080000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000000030f1c28333f4a545d676d7a8491959fa39f928d847d756f6a64605c545553504a4d4c4c4b4b4c4c4d4e4a51535557555d6064666d70757a7f848a9095978c7f72675d5145392c1f1306000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a87939faca7978a7e7f8c99aba297897c6f6356493c31251a0e0200000815222e3b4855616e7b8896a0a89b8e827a8796a0aca096887b6f6255483c31251a0e020000000000000000000000000000000000000b17222d3844505b66717e8a96a0acaa9f92867a6e61564c41362a232323232323232323232324313d4a5764707d8a97a3b0a99c8f8276695c5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a55534e463c31261a0f02000000000000000006111c26303c44515c666f7c87929f9e938a7e71685e52463e323c4956626f7c8997a29f9285796d6053494246535f697683909da7988b7f726875828f9bab998c8073655b5045424d5663707c8998a39f9285796d6053463a2d20130700000000000000000000000000000000030c18232f39434f59606d7984919ea1968d80746b60554b4035291e150b1825323e4b5865717e8b99a39c908376695f53464144505b65727f8c99a99c8f8276675d5145392c1f1306000000000000000000000000000000000009141f28333f4a545f6a74808d96a1978d80746a60544a3f34323f4b5865727e8b989c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9fa6b0a8a09e9c9c94877a6d6154473a2e211407000000000000000000000000000000000009141f28333f4a545f6a74808d96a1978d80746a60544a3f343f4b5865727e8b989c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9fa6b0a8a09e9c9c94877a6d6154473a2e2114070000000000000b151e29323c46505a606c77818e96a0acaaa7acafa7a09d938e89847f7c7a777575747373747577797c7f83878d92989ea5ada59e9691857c6f6a5f564c42392e23180c0300000000000000000000000007121d27313946525e696f7c86929aa3ababa39f928d837c756f6a6662605c545a5a5a5a5a545b606265696e747b818a9298a2a9a9a19891847a6e665c51453c31261a0e0500000000000000010f1b26323c4753606d7985929fabada1968a7d7063574d42362a23232323232323232323232323232323232934404b55626e7b88949fabac9f92867a6d6054473d3221160c010000000000010f1b26323c4753606d7985929fabada1968a7d7063574d42362a23232323232323232323232323232323232934404b55626e7b88949fabac9f92867a6d6054473d3221160c010000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000005101a232b3844505b666d79839096a0a299928b8079706b625f5853514b4846443f40403f3e3e3f3f4041404446484b4c5154545c6063686d72797e838a91857a6d60554b4035291d100400000000000000000000000000000000000000000000000000000004111d2935414c5565727e8b9aa4aca095877a7d8999a3a9998d807366574d42362a1e12050004101d2935404b5565727f8b98a8a9988b7f7784919daaa8998c7f7366574d42362a1e120500000000000000000000000000000000000006111b28333f4a54606d7884919ea8aea2988d8073685e52463a30303030303030303030303030313d4a5764707d8a97a3b0a99c8f8276695c4f4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4847433c332a201509000000000000000000000a141e2834404a545f6a73808d95a09e92857a6d615a50443a3f4b5865727e8b98a99c8f8276665c504138424d576673808d99a69b8e8174677784919eab96897d706353493f3b4653606d7986929fa298887b6e6255483b2f221508000000000000000000000000000000000007121d27313d45515d67707d89939e9f93887d6f675d51453d30271c121d2935414c566875828e9bab998c7f7266574d42353f4953626e7b8897a29f92867a6d6053473a2d2014070000000000000000000000000000000000020b17222d38424e58606d7984919e9f93877c6f665c50443b303f4b5865727e8b98a9a49f969393939393939393939394979ea8a39b98939393877a6d6154473a2e2114070000000000000000000000000000000000020b17222d38424e58606d7984919e9f93877c6f665c50443b3f4b5865727e8b98a9a49f969393939393939393939394979ea8a39b98939393877a6d6154473a2e211407000000000000030c17202a343e44505b656d7a84919daab6b4b3a9a0959189817c7773706d6769686766676768666c6f72767b80868e939fa3aaa8a09792867c6f685e544b4034282015090000000000000000000000000c18232f3943505a616e7b859198a3acaca399928b80786f6a625f585653504a4e4d4d4d4e4a505355575e61696e757e869297a2aaaaa1969082786d60574e42372b21170b00000000000000000a151f2c3845515d6774808d9aa6b0a89c8f8275695e5346382e3030303030303030303030303030303030303845515c6774808d9aa6b0a79b8e8174685d5245392c201304000000000000000a151f2c3845515d6774808d9aa6b0a89c8f8275695e5346382e3030303030303030303030303030303030303845515c6774808d9aa6b0a79b8e8174685d5245392c201304000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000b17212a36424d57606c78818f959fa29892877e736d676059534e46454040434546464544423f3b3a373134383a3b3e4145474a5053565d60666d71787e847f73675d5143392f24180c000000000000000000000000000000000000000000000000000000000613202c3945515d6776828f9cacaa9d9184777a86929faa9d908477695e53463a2d2114070006131f2c3945515d6776828f9ca9a197887c74818d9aa7aa9d908377695e53463a2d211408000000000000000000000000000000000000000b17222d3844505c66717e8b96a1acaa9f92867a6e61564c413d3d3d3d3d3d3d3d3d3d3d3d3d3d3d4a5764707d8a97a3b0a99c8f8276695c4f43404040404040404040404040404040404040404040404040404040403b3a37312a21180e0300000000000000000000020c18232e39424e58606d79839199a1978e81756c61564c41414e5b6774818e9aa79a8d807467544a3f2f3e4b5764717e8a97a49d9083776d7a86939fa399877b6e6154473b3845515c677784909daa978a7e7164574b3e3124180b0000000000000000000000000000000000010b151f2935404b55616b74818e97a19a9184796d60584e42392e2318202d3946525d687884919ea996897c706356493d31394653606c7985929fa398897c6f6356493c3023160900000000000000000000000000000000000006111c262f3c45515d67707d8a949e999083786d60574d42363f4b5865727e8b97a19a938a86868686868686868686878c97a39b918b868686867a6d6154473a2e21140700000000000000000000000000000000000006111c262f3c45515d67707d8a949e999083786d60574d423f4b5865727e8b97a19a938a86868686868686868686878c97a39b918b868686867a6d6154473a2e2114070000000000000008131e28313a46535e696f7d86929facb9b9ada29791837d75706b6663605d555b5a5a5a5a545b606265696e747b818a9298a2a9a9a19891847a6e665c51453c31261a0e050000000000000000000004101c2934404b55616c76828f97a1aaafa49a92877e736d665f58534e4946443f41404040413f4446484d53565e616c717c859298a2aca89f948d80736a5f53473e33281c10040000000000000004101d2935404b55626e7b88949fabac9f93877b6e61544a3f3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d4753606d7985929eabaca095897c6f63564c4135291d11040000000000000004101d2935404b55626e7b88949fabac9f93877b6e61544a3f3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d4753606d7985929eabaca095897c6f63564c4135291d1104000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000004101c28333a46525e69727f8b939ea39992867d716c605c554f47434446494d5051525352514f4c4847433c37332d2f2f35393a3f44464c52545c60656c7179796d60554b4131271f1911060000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929faca79a8d81747683909da9a095877b6e6154483b2f24180c000714202d3a4753606d7a86929fab9e928579717e8a97a7aca095877b6e6154483b3025190d0100000000000000000000000000000000000006111c28343f4a54606d7984919ea8aea2988d8073685e52494949494949494949494949494949494a5764707d8a97a3b0a99c8f8276695c4f43363434343434343434343434343434343434343434343434343434342f2e2b2620180f0600000000000000000000000007121c27303c45515c676f7c87939f9e938a7e70685d5246434f5c6976828f9ca5988b7f7265584c3f2e3c4956636f7c8996a29f9285786f7b889aa49f9286796c6053463934404b556975828f9ca5998c7f7266594c3f3326190c000000000000000000000000000000000000030d18242f3a434f59606d7a85919ea0968d80736a60544a4034281e212e3a4754616d7a8796a1a297877a6d6054473a2d3744505b6576828f9caa988b7f7265584c3f3225190c000000000000000000000000000000000000000a141d2935414b55616c75828f98a0958b7f72695e52463e3a4754616d7a85919a93867d797979797979797979797a8794a0988b7f7979797976685e5246392d201307000000000000000000000000000000000000000a141d2935414b55616c75828f98a0958b7f72695e52463e4754616d7a85919a93867d797979797979797979797a8794a0988b7f7979797976685e5246392d201307000000000000010d19242f3a43505a616e7b859299a3aebbb8ab9e92857a706b6360595653514b4e4d4d4d4e4a505355575e61696e757e869297a2aaaaa1969082786d60574e42372b21170b0000000000000000000006131f2c3845515c67707d8a949fa9b0a69f93887e716c605c544e47433c3a38342e3433342d3338393c42464d525a616a6f7c86929aa4afa69f92877b6e62594f44392d20150a00000000000000000c18242f3947535f6a7683909ca9afa4998c8073665c504949494949494949494949494949494949494949494e5864717e8b97a2adaa9d9083776b6054443a2f24190d0100000000000000000c18242f3947535f6a7683909ca9afa4998c8073665c504949494949494949494949494949494949494949494e5864717e8b97a2adaa9d9083776b6054443a2f24190d01000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000714202c38444f59616e7b86929fa59f92877d706b615a514b4344495053565a5c5e5f5f5f5e5c5955534e46443f382f27343c424a5053565b5d5f5f5b60666c6d675c51454039312b2317110a0200000000000000000000000000000000000000000000000004101c2834404b5464717e8a99a3aea7978a7e7173808d99aba7988b7f7265554b4035291d10040a1724303d4a5763707d8a98a3a89b8f82756e7a8795a0aca7988b7f7265564c4135291d1105000000000000000000000000000000000000000b17232e3844515c66727e8b96a1adaa9f92867a6d615656565656565656565656565656565656565764707d8a97a3b0a99c8f8276695c4f433629272727272727272727272727272727272727272727272727272722211f1a150e0600000000000000000000000000000b151e2834404b55606a73808d96a09e91857a6d61594f43505d6a7683909da4978a7e7164574b3e313b4855616e7b8894a19f9286796f7c8996ac9e918578655b5044372e414e5b6774818e9aa6998d8073665a4d4033271a0d0000000000000000000000000000000000000007131d28313d45525d68717e8a939e9f92877c6f665c51443c3026232f3c4956626f7c8995a89f928578685d5245392c333f49536774818e9aa79a8d8174675a4e4134271b0e00000000000000000000000000000000000000020b18242f3a43505a616e7b86929f9f92867b6e61594f433946525e68707d88939a92857a6e656c6c6c6c6c6c6d7a8794a0988b7f726c6c6c6c5e564c41362a1d110500000000000000000000000000000000000000020b18242f3a43505a616e7b86929f9f92867b6e61594f4346525e68707d88939a92857a6e656c6c6c6c6c6c6d7a8794a0988b7f726c6c6c6c5e564c41362a1d110500000000000004111d2935414c55626c76828f97a1abb5afacada2978e81776c605a504947454042414040413f4446484d53565e616c717c859298a2aca89f948d80736a5f53473e33281c1004000000000000000003101c28343f4a54606d7984919ea6b0aa9e948c7f736c625a504a423c37322d2c282327272722282b2d31363b42465058606a707e88939fa8aea3998f82766c6155493c31261b0f000000000000000007121d2b37434e5864717e8a97a1adab9e9184796d6056565656565656565656565656565656565656565656565f6a7683909ca9aea2988b7f7265594f4332281e130800000000000000000007121d2b37434e5864717e8a97a1adab9e9184796d6056565656565656565656565656565656565656565656565f6a7683909ca9aea2988b7f7265594f4332281e130800000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000a16232f3c4855616b75828f98a29d938b7e716b60595045414950535b606366696b6c6c6c6b6866625f58535049413d333d464e545b6063676a6b6c6c6b696663605c54514b433d3528221c140b02000000000000000000000000000000000000000000000006131f2c3845515c6675818e9babaca095877a6e707d8999a3a89c8f8275675d5145392c1f1306121f2b37434e586774818d9aaaa8988b7f72687784919daaa99c8f8376685e5246392d2013070000000000000000000000000000000000000006111c2834404a54606d7984919ea9aea2988d8073686363636363636363636363636363636363636364707d8a97a3b0a99c8f8276695c4f4336291c1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1514120f0903000000000000000000000000000000030c18232e39434e58606d7984919aa1978e81746b61564c515e6a7784919da3978a7d7064574a3d313b4754616e7a8794a1a399867a707d8a96a39e9184776b5e493f3334414d5a6774808d9aa79a8d8174675a4e4134271b0e000000000000000000000000000000030608090d0c161f2935414c56616c75818f97a2999083786d60584e42382e23313e4a5764717d8a97a49d9084776a564c4135292d404c5966737f8c99a69c8f8276695c4f4336291c10000000000000000000000006060606060606060007131d28313e46535e69727f8c95a0988e81756b61554b40414c56616b74808d95978f82776c6058606060616d7a8794a0988b7f726560605f524c443a3025190d010000000000000000000000000000020608080c0e07131d28313e46535e69727f8c95a0988e81756b61554b414c56616b74808d95978f82776c6058606060616d7a8794a0988b7f726560605f524c443a3025190d010000000000000613202c3945515d67717e8b949fa9b3aba39fa3a99e938c80736c61584e453b352f3433342d3338393c42464d525a616a6f7c86929aa4afa69f92877b6e62594f44392d20150a000000000000000006121f2b3844505c66727f8c96a0acaea2988f82776c605a50443f38302b26201f1c171a1a1a171c1f20252a30363e464e58616c73808d96a1acab9f948a7d7064584e43372b1d120700000000000000010f1a26313c4653606d7985929eacada1968a7d70646363636363636363636363636363636363636363636363636e7b88949fabac9f92867a6d6054473d3221160c01000000000000000000010f1a26313c4653606d7985929eacada1968a7d70646363636363636363636363636363636363636363636363636e7b88949fabac9f92867a6d6054473d3221160c0100000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000007131f2c38434f5963707d8a949ea1978e81746c62594f47444c535b60656c6f7376787979787775726e6a64605b534e443f464e585f666c707477787979777673706d66605d554f4740332d261d140a00000000000000000000000000000000000000000000000713202d3a4653606d7985929fabaa9d908477686d7a86929fac9f92867a6d6053473a2d20140a15212e3a47535f6a7884919eaba196887b6e6774818d9aabac9f92867a6d6154473a2f24180c00000000000000000000000000000000000000000c18232e3945515c66727f8b97a1adaa9f92867a707070707070707070707070707070707070707070707d8a97a3b0a99c8f8276695c4f4336291c100d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0808060200000000000000000000000000000000000007121d27303d45515d67707d88939f9e938a7d70685d52515e6b7884919ea3968a7d7063574a3d303a4754616d7a8794a0a194877a717d8a97a49d9184776a5e51442d34404d5a6773808d9aa69b8e8175685b4e4235281b0f00000000000000000000000000040a0f1315161a1d1f1924303a44505a616e7a85929ea0958c7f736a5f544a3f3428323f4b5865727e8b98a59c8f8376695c50432f24323e4b5865717e8b98a49d9083776a5d5044372a1d1100000000000002060a0c0d131313131313131313130c161f2a36424d57606d788390999e938a7d70675d51453c444f59606d79839098948c7f726a60554b54616d7a8794a0988b7f726558535346413a32281e13080000000000000000000000000003090e121415191b1d1e161f2a36424d57606d788390999e938a7d70675d5145444f59606d79839098948c7f726a60554b54616d7a8794a0988b7f726558535346413a32281e130800000000000004111d2935414c55606d7a85929ea6b0aaa2999299a1a59c928a7e716a60574d43392f26272722282b2d31363b42465058606a707e88939fa8aea3998f82766c6155493c31261b0f00000000000000000713202d3a4653606d7884919ea8b2a99f92867b6e655b50483e342e261e1b1312100c060d060b0f12131a1f252a343d46505a606d7984919ea8b0a69c8f83766a5f5347392e23180c000000000000000009151f2c3845515c6673808d9aa4afa99c8f82757070707070707070707070707070707070707070707070707074808d9aa6b0a79b8e8174685d5245392c201304000000000000000000000009151f2c3845515c6673808d9aa4afa99c8f82757070707070707070707070707070707070707070707070707074808d9aa6b0a79b8e8174685d5245392c2013040000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000915222f3b4854606b7683909da69e91857a6d605a5047454d565e656c71787c80838485868584827f7b77716c65605850494e58606a6f787d81838586858483807c78726d67605952443f382f261c1106000000000000000000000000000000000000000000030f1b27333f495363707d8a98a2aeaa9a8d807367677683909ca9a3988a7d7063574a3d31261b0f15222f3c4855626f7b8896a1ab9e9184786a64717d8a99a3afa3998b7e7164554b4035291d10040000000000000000000000000000000000000007121c2834404b54606d7985919ea9aea2988e817c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7f8c99a6b2a99c8f8276695c4f4336291c1003010101010101010101010101010101010101010101010100000000000000000000000000000000000000000000000b151e2935404b55606b74818d96a19e91847a6d60594f5e6a7784919da3978a7d7064574a3d313b4754616e7a8794a1aa93877a707d8a96a39e9184776b5e51442f34414d5a6774808d9aa79a8e8174675b4e4134281b0e0000000000000000000000040a0f151b1f212226292b2c2c28323e46525e68717e8b949e9f92877c6f665c50443c2f33404c5966737f8c99a69c8f8275695c4f423629313e4b5764717e8a97a49e9184786b5e5145382b1e120000000000070d121619192020202020202020202020201a25313b44505c666f7c87939f9e9184796d60584e413d45515c676f7c86929f92867c6f675d5154616d7a8794a0988b7f7265584c3f3936302820160c020000000000000000000000060c11151a1e212226282a2b2c2c25313b44505c666f7c87939f9e9184796d60584e4145515c676f7c86929f92867c6f675d5154616d7a8794a0988b7f7265584c3f3936302820160c020000000000000613202c3945515d67737f8c97a2adaea29892869196a1a49f92867c6f695e554b41382d2217171c1f20252a30363e464e58616c73808d96a1acab9f948a7d7064584e43372b1d120700000000000005111e2a36414c5664707d8a96a1adada1978c7f72695e53493f3628231c140c0a060300000000000306090e1419222b343e45515d67717e8a96a0acab9f94887c6f62544b4034281c10040000000000000004101c2834404b54616e7b87939facac9f93877d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d85929fabaca095897c6f63564c4135291d1104000000000000000000000004101c2834404b54616e7b87939facac9f93877d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d85929fabaca095897c6f63564c4135291d11040000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000005111e2a36424d56636f7c89959f9f958a7e71685d5248434d575e686d777e84898d8f91929292918f8c88837e786f6a605b5354606a6f7c83898e9092929291908c89847f796f6b635c504a42382d22171007000000000000000000000000000000000000000005121f2b3744505b6574818e9aaaaea398897d70636673808c99a9aa9a8d817467584e43372b1f121d2935414c5666727f8c99a8ac9b8e817468606d7a86929facab9b8f8275675d5145382c1f130600000000000000000000000000000000000000000c18232e3945515d67727f8c97a1adaa9d938e898989898989898989898989898989898989898989898c919ca8b5a99c8f8276695c4f4336291c100300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c18242f39434f59606d7984919ea1968e81746b60555d6a7783909da4978a7d7164574a3e313b4855616e7b8894a1a2988679707c8996a39e9184786b564c413534414e5b6774818e9aa69a8d8073675a4d4034271a0d00000000000000000000070e151b20262b2e2f3336383939393736414c56626c76828f98a2999083786d60574d41382d404d596673808c99a69b8e8275685b4f423528313d4a5764707d8a97a39e9285786b5f5245382c1f12000000010a12191e2325262d2d2d2d2d2d2d2d2d2d2d2d2d2d28343f4a54606a74808d97a1968d80736a5f53493f404b555f6a727f8b94999184796d605a54616d7a8794a0988b7f7265584c3f322a251e160e050000000000000000000002090e171d1f262b2e2f3235373839393938343f4a54606a74808d97a1968d80736a5f5349404b555f6a727f8b94999184796d605a54616d7a8794a0988b7f7265584c3f322a251e160e05000000000000000714212d3a4754606d7a85929fa9b3a99f92867c849198a2a29891847b6e675d53493f332722190f12131a1f252a343d46505a606d7984919ea8b0a69c8f83766a5f5347392e23180c0000000000000714202d3946525e6876828f9ca8b2ab9e9185796d60574d41382d2417110a02000000000000000000000002091019222935404b55606c7884919dabb0a69a8e8174665c5145382c1f130600000000000000000c18232e3946535f6976828f9ca9afa499938a89898989898989898989898989898989898989898989898989899297a2adaa9d9084776b6054443a2f24190d010000000000000000000000000c18232e3946535f6976828f9ca9afa499938a89898989898989898989898989898989898989898989898989899297a2adaa9d9084776b6054443a2f24190d010000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000714202d3a46525e6975828f9ba79d9083766c61564c414b555e696e7a828b9196999c9e9f9f9f9e9b9995908a837c726c655c5c666f7c8690959a9d9e9f9f9e9c9996918b847d736e605b544a3f332822190c02000000000000000000000000000000000000000613202d394653606c7885919eabac9f9286796d60636f7c8997a2ab9e9184786a5f53473a2e2115202c3945525d687683909ca9a49a8a7e71645d687683909ca9ac9f9285796d6053473a2e23170b000000000000000000000000000000000000000007121d2935404b55606d7985929ea9afa59d9a96969696969696969696969696969696969696969696999ca3adb5a99c8f8276695c4f4336291c100c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0706040000000000000000000000000000000000000000000000000007121d27313d45515d67707d89939d9d93897d70675d5c6976838f9ca4988b7e7165584b3e323c4855626f7b8895a29f9285796f7c8895a99f928578685d52453935424e5b6875818e9ba6998c807366594d4033261a0d00000000000000000109101920272b32373b3c40434546464544423e44505a616e7b86929f9f958c7f72695f53493f33404d5a6673808d99a69b8e8174685b4e413528303d4a5663707d8996a39f9285786c5f5245392c1f120000000a131c232a2f32333939393939393939393939393939392e38424e58606d7a85919e9f92877c6f655b50443a434e58626d75828f97968e81746c6157616d7a8794a0988b7f7265584c3f322519130c0500000000000000000000050d141a22282d31373a3b3f414445454646454441424e58606d7a85919e9f92877c6f655b5044434e58626d75828f97968e81746c6157616d7a8794a0988b7f7265584c3f322519130c050000000000000006121e2b37424d5765727e8b97a2adada1978c7f727c86929aa4a1969083796d655b50443e342b20170d090e1419222b343e45515d67717e8a96a0acab9f94887c6f62544b4034281c100400000000000814212e3b4754616e7a87939facafa3998c7f72675d51453b2f261b1206000000000000000000000000000000071018242f3944505b66727e8b99a3aeac9f9285796d6053463a2d201308000000000000000007121d2a36424d5764707d8a96a1adaba49f9796969696969696969696969696969696969696969696969696969fa2a9aea2988b7f7265594f4332281e13080000000000000000000000000007121d2a36424d5764707d8a96a1adaba49f9796969696969696969696969696969696969696969696969696969fa2a9aea2988b7f7265594f4332281e1308000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000814212e3b4754616e7b87939fa1968a7e71645a504445515d676e7b848f949ea0a8a39f9c9a999a9b9e9f9d9590877f776d66606d79849198a0a79f9d979595989c9f9e96918780746c665b50443f342b1e140a00000000000000000000000000000000000000091623303c4956636f7c8997a1ada99c8f8276675d606d7985929faba196887b6f6255483c302419212d3a4754606d7a86929fac9f93877a6e615666737f8c99a8aea2988a7d7064544a3f34281c100300000000000000000000000000000000000000000c18242f3945515d67727f8c97a2adafa9a7a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a6a8adb5b5a99c8f8276695c4f4336291c1919191919191919191919191919191919191919191313100c070000000000000000000000000000000000000000000000010b151f2935414b55606b74818e97a19e9184796d60596875818e9ba6998c807366594d40313d4a5763707d8a96a39e9184776e7a8797a1a298877a6d6054473a36424d57697683909cac988b7e7265584b3f3225180c00000000000000010a131b222b32373c4347494d5052525352514e4b4746535e69727f8b949f9f92867b6e655b50443b404d5a6673808d99a69b8e8174685b4e413528303d4a5663707d8996a39f9285786c5f5245392c1f12000007121c252e353b3e4046464646464646464646464646464646464645525d68717e8a949f999083776c60564c413c46515b616d7a85919a938a7e71695e616d7a8794a0988b7f7265584c3f322519080200000000000000000000060f171f252a34393c4247484c4e505152535252514e4c48525d68717e8a949f999083776c60564c4146515b616d7a85919a938a7e71695e616d7a8794a0988b7f7265584c3f322519080200000000000000000814212e3a47535f697683909da9b3ab9e9185796d717e88939fa59f958e81776c605a50463c32291f150b02091019222935404b55606c7884919dabb0a69a8e8174665c5145382c1f130600000000030f1b27333f495364717e8b9aa4afac9f92867a6e61554b4033291d140a000000000000000000000000000000000007121d28333f4a54616d7a86929facaea298897d706356493d2f24190d0100000000000000000e1a26313b4653606d7984919eabb5afaca3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3abadb3ac9f92867a6d6054473d3221160c0100000000000000000000000000000e1a26313b4653606d7984919eabb5afaca3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3abadb3ac9f92867a6d6054473d3221160c01000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000004101d2935404b5565727e8b99a49e9184786d605346434e58606d798391969fa6a49f9992908e8d8d8e91969a9f99928c81786d66717e8a96a0a89f95908a88898b8f949da099938c81786c605b51463d30261c1106000000000000000000000000000000000006121f2b37434e586773808d9aa9b2a8988c7f7265555c6675828f9ba8a8998c7f7266564c4135291d27333f495364717d8a99a3aa9d908377685e55626f7c8896a1adaa9b8e8174665c5044382b1f1206000000000000000000000000000000000000000007121d2935404b55606d7a85929faab3b5b4b1acaa9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa3a6abb4b5a99c8f8276695c4f43362926262626262626262626262626262626262626262626201f1c18120b0300000000000000000000000000000000000000000000030d18242f3a434f59606d7a84919ea1968d80746b6066727f8c99ab9b8e817568574d42373f4a5465727f8b98a59b8f8275697885929eaa95887c6f6255493c3a46535e697885919ea49a897c6f6256493c2f231609000000000000000a131c252d343c43474e5355595c5e5f5f5f5d5b5853514d57606c77829098a3989082776c60574d42404d596673808c99a69b8e8175685b4e423528303d4a5763707d8a96a39e9285786b5f5245382c1f1200020d19232e3740464b4c535353535353535353535353535353535353534c56616c76828f989f948b7e71685e52463d3f46525e68707d88939f92857b6e66616d7a8794a0988b7f7265584c3f3225190c00000000000000000000060f18212930363e45494d5355595b5d5e5f5f5f5e5d5b58555356616c76828f989f948b7e71685e52463f46525e68707d88939f92857b6e66616d7a8794a0988b7f7265584c3f3225190c0000000000000000000815222f3b4855626e7b88959fabafa3998c7f73676c73808c939ea79e938c7f736c61584e443b31271d120700071018242f3944505b66727e8b99a3aeac9f9285796d6053463a2d2013080000000005121f2b3744505b6575818e9bacb6a99c8f8276685e5243392f21170b020000000000000000000000000000000000010b17222d3846525d6875828f9ca8b4aa9a8d807367564c4135291d1104000000000000000009141f2c3844505c6673808c99a3afbbb9b1acaa9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa7a9afb8bab1a79b8e8174685d5245392c20130400000000000000000000000000000009141f2c3844505c6673808c99a3afbbb9b1acaa9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa7a9afb8bab1a79b8e8174685d5245392c20130400000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000613202c3945515d6775828f9ca8998c7f72665c50444854606a74808d95a0a8a499938d87838180808184888d92989f938e81786c74818e9ba8a09690837d7b7c7e828991969f9f938e81746d62584e42382e23170b01000000000000000000000000000000000815212e3a47535f6a7784919eaaaca196887c6f62555465717e8b98a7a99c908376685d5246392d202b3744505b6574818e9babaa9a8d80736756535f6a7884919eabab9e9285796d6053463a2d20130a0000000000000000000000000000000000000000010d18242f3945515d6773808c98a2aebab1a7a09d93939393939393939393939393939393939393979aa2abb5a99c8f8276695c4f433633333333333333333333333333333333333333333333332d2c28231d150c030000000000000000000000000000000000000000010407131d28313d45525d68707d8a939e9f93887d6f6763707d8a99a39e918478695f53473f44505c6675818e9ba9998c7f736976838f9ca5988b7f7265574d423f4854616e7b8796a19f93867a6d6053473a2d20140700000000000008121c252e373f464e54585f6266696b6c6c6c6a6864605d55515b656e7b86929f9f948b7f72695e5346404c5966737f8c99a69b8f8275685c4f423529313e4a5764717d8a97a49e9184786b5e5145382b1e120006121e2a3540495157596060606060606060606060606060606060606060605a616e7b86929f9e92857a6d61594f4239414c56616b74808d95979083786d616d7a8794a0988b7f7265584c3f3225190c000000000000000000030d18212a333b42465055575f6265686a6b6c6c6c6b6a6865615f575a616e7b86929f9e92857a6d61594f42414c56616b74808d95979083786d616d7a8794a0988b7f7265584c3f3225190c0000000000000000030f1c28333f4a5465727f8b98a7b1ac9f92867b6e61606c77818e95a0a59f93887e716a60564d43392f231812080007121d28333f4a54616d7a86929facaea298897d706356493d2f24190d010000000613202d394653606c7885929eabb3a9988b7f7265564c4131271d0f050000000000000000000000000000000000000006111c2935414c5665727f8b98aab4aa9d918477685d5245392c201306000000000000000003101c28343f4a54616e7b87929facb9b1a7a0939393939393939393939393939393939393939393939b9ea5afb8aca095897c6f63564c4135291d110400000000000000000000000000000003101c28343f4a54616e7b87929facb9b1a7a0939393939393939393939393939393939393939393939b9ea5afb8aca095897c6f63564c4135291d110400000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000714202d3a4753606d7a86929fa096887b6e62544a414d56626f7c87939fa7a4999387807a7674737375777b80868e939f938c807376838f9ca99e918478706e6f71767d848f949f9d938b7f726a60544a3f34281d1207000000000000000000000000000000000915222f3c4855626f7b8896a0acab9e9184786a5f5354616e7b8795a0ac9f92867a6d6154473a2d222d394653606c7885929eaba298897d7063564e586774818e9aaaada197897c706356493d32261b0f03000000000000000000000000000000000000000007121d2935414c55606d7a85929faab4aca09591868686868686868686868686868686868686868a909aa6b5a99c8f8276695c4f433f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3a38342e271e150b00000000000000000000000000000000000001080d111314161f2935414c56616c75818e97a19a9184796d616d7a86929fa196887b6e6259504a4e56606d7985919ea197897d706673808d99a79c8f8275695f544d4a505b65717e8b98a99d908377675d5145392c2013060000000000040e1a242e374049515860626a6f7376787979787775716d67605c555f69727f8c959f9f92867b6e615a50444b5865727e8b98a59c8f8276695c4f432f24313e4b5864717e8b97a49d9083776a5d5044372a1d11000a16232f3b46515b63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b69727f8c95a0978e81746b60544b403a444f59606d79839098958c80736b6d7a8794a0988b7f7265584c3f3225190c0000000000000000010b151f2a333c454d525a6164696e72747778787979787774726e6963605f69727f8c95a0978e81746b60544b40444f59606d79839098958c80736b6d7a8794a0988b7f7265584c3f3225190c000000000000000006121f2b3844505b6676828f9ca9b5a99c8f8276685e5b656d79839097a1a49a92867c6f685e554b403429241a1006010b17222d3846525d6875828f9ca8b4aa9a8d807367564c4135291d11040000000815222e3b4855616e7b8897a1adada197887b6e6255483b3022150b0000000000000000000000000000000000000000000d1924303c4855626f7b8898a2aeaca095877a6d6054473a2d2114070000000000000000000c17232e3846525e6975828f9ca8b2aca095898686868686868686868686868686868686868686868e939ea9b4aa9d9084776b6054443a2f24190d01000000000000000000000000000000000c17232e3846525e6975828f9ca8b2aca095898686868686868686868686868686868686868686868e939ea9b4aa9d9084776b6054443a2f24190d0100000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000a1724303d4a5763707d8a98a39e9184776a5f534246525e6875828f99a4a89f93877e746d6867666768696e737a818b929893887d7783909da5988c7f72666262656b707a828f959f9f92877c6f665c5044392f24180d00000000000000000000000000000005121e2a36424d5766737f8c99a8b2aa9a8d807467584e525e697783909daaa3998a7e7164544a3f33282f3c4956626f7c8997a1ab9f9285796d60534a5764707d8a98a3aea99a8d807467584e43372b1f13060000000000000000000000000000000000000000010d19242f3a45525d6873808d98a2aeaa9d9184777979797979797979797979797979797979797e8a97a3b0a99c8f8276695c4f4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4645403930271d120700000000000000000000000000000001070c13191d20212428242f3a444f59616d7a85929ea0968d80736a6876828f9ca89a8d80746b605b54585f68707d8a97a19e9185796d626f7b8895a09f93877b6e665e57545c606d7683909da4998c7f7266554b4035291d110400000000020c16202c364049525b626a6f767c80838585868584817e7a736d675e57606d78839099a2988f82766c62564d4a5764717d8a97a49d9083776a554b403529323f4c5965727f8c98a59c8f8276695c4f4336291c10000c1925323e4b57636d737979797979797979797979797979797979797979797978736d7883919a9e93897d70665c51453c3d45515c676f7c86929f93877d706d7a8794a0988b7f7265584c3f3225190c000000000000000007121d27313c464e575e616c71777b7f8183848586858584817f7b76706b60606d7883919a9e93897d70665c51453d45515c676f7c86929f93877d706d7a8794a0988b7f7265584c3f3225190c00000000000000000613202d394653606c7985929facb3a9988b7f726556535d676e7b859198a3a29891847a6e675c514540362c22180e0506111c2935414c5665727f8b98aab4aa9d918477685d5245392c2013060000000a1724303d4a5763707d8a96a9b3ab9e928578695f53473a2e2114030000000000000000000000000000000000000000000813202d394653606c7985929facb1a795897c6f6256493c2f23160900000000000000000006111c2a36424d5763707d8a96a1acaa9d9083797979797979797979797979797979797979797979818e9ba7aea2988b7f7265594f4332281e1308000000000000000000000000000000000006111c2a36424d5763707d8a96a1acaa9d9083797979797979797979797979797979797979797979818e9ba7aea2988b7f7265594f4332281e13080000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000c1926333f4c5966727f8c99aa9a8d807467584e434754616e7b86929faba1968c7f736c615e565a5a575f61686d757e86929891857a83909ca3968a7d706354565960686d79839096a1999083786d60554b4035291c110600000000000000000000000000000714202d3a46525e697783909daaaea298897d7063564a4d566673808d99a9ab9b8e8175665b5044382b36414c566673808c99a9ab9b8e8275665c514753606d7a86929facab9e9184786a5f53473b2e21150900000000000000000000000000000000000000000008131e2935414c56616d7a86929faaaca0958a7d706c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c707d8a97a3b0a99c8f8276695c595959595959595959595959595959595959595959595959595953514b43392e23180c0000000000000000000000000000030b12181e24292c2d31353738323e46525e68717e8a939e9f93877c6f67717e8a95a09f92877d716c6667676a6e7a84919ea2988d8073665f6a7783909da4998f82786e696767666d727f8b959f9f93877b6e6154483b2f24180d010000000008131e28323e48525b636d727c82888c8f91929292908e8b857f796e695e5c666f7c87929f9f948b7e71685e524956626f7c8995a99e918578675d5145392c34404d5a6773808d9aa69a8e8174675b4e4134281b0e000d192633404c5966737f868686868686868686868686868686868686868686868578666f7d88939f9d9184796d60574d4237404b555f6a727f8b94999184796d7a8794a0988b7f7265584c3f3225190c00000000000000000c18242f39434e585f696e767e83888c8e909192929291908e8b87827d746d67666f7d88939f9d9184796d60574d42404b555f6a727f8b94999184796d7a8794a0988b7f7265584c3f3225190c00000000000000000815222f3b4855626e7b8898a2aeada197887b6e62554b555e696f7c86929fa4a1969083796d605b51483e342a20170c030d1924303c4855626f7b8898a2aeaca095877a6d6054473a2d2114070000000c1926323f4c5965727f8c98a5b2a99c8f837669574d42372b1e120600000000000000000000000000000000000000000006121f2b3844505b667783909daab1a4978b7e7164584b3e3125180b000000000000000000000e1a25303b4653606c7884919eabaca095897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d7a86929facac9f92867a6d6054473d3221160c010000000000000000000000000000000000000e1a25303b4653606c7884919eabaca095897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d7a86929facac9f92867a6d6054473d3221160c010000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000030f1b27333f49536874818e9bab978a7e7164574b3f4c5965727f8c99a3ab9e9184796d605a524c4d4d4d53565e616c717d8692978d80828f9ca396897c706356494f565d676e7a84919ea0958b7f72675d5145382d22170b00000000000000000000000000000815212e3b4854616e7b87939facab9f9285796d6053464956636f7c8997a1ab9e9285796c605346392d3946525e687783909daaa4998b7e7164544b45515d6776828f9ca9aca196887c6f6255493c31261a0e020000000000000000000000000000000000000000010d1924303a46525e6873808d98a3aea79c9083766b606060606060606060606060606064707d8a97a3b0a99c8f827669666666666666666666666666666666666666666666666666666666605c554b4034281c1004000000000000000000000000060d151d24292f35393a3e4144454645414c56616c75828f97a2999183796d6d7984919da39992857e78757474767b839096a19f92867b6e615864717d8a949e9f948f827b76747475797f87929fa1978e8174695e52463a2d1d130700000000010d1924303a44505a636e737f878f94999c9e9e9d9e9d9b98928c837b6e695e5f6a73808c95a09f92857b6e615a5054616d7a8797a1a197867a6d6053473a2d35414c566875828f9bac998c7f7266594c3f3326190c000d192633404c5966737f8c93939393939393939393939393939393939393939185786b6b74818e97a0968c7f73695f53463e39434e58626d75828f97968d80747a8794a0988b7f7265584c3f3225190c0000000000000004101d2935404b555f6a6e7b838a9095989b9c9a989898999c9b9a938f8981796d676b74818e97a0968c7f73695f53463e434e58626d75828f97968d80747a8794a0988b7f7265584c3f3225190c00000000000000000b1824313e4b5764717e8a97aab4ab9e928578695f53474d57606a717e8a929ca59f958e81756d635a50463c32291e150b0813202d394653606c7985929facb1a795897c6f6256493c2f2316090000000e1b2834414e5b6774818e9aa7b3a79a8d8074675a4d4131261a0e02000000000000000000000000000000000000000000030f1c28333f4a546875818e9ba8b3a6998d8073665a4d4033271a0d0000000000000000000009141f2b3844505b66727f8c99a3aea79a8d8174675c606060606060606060606060605765717e8b98a2aea79b8e8174685d5245392c2013040000000000000000000000000000000000000009141f2b3844505b66727f8c99a3aea79a8d8174675c606060606060606060606060605765717e8b98a2aea79b8e8174685d5245392c201304000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000005121f2b3744505b657783909da499887c6f625549424d566875828f9baba9998c7f73675c514641404042474c525a626b707d8792928785919ea3968a7d7063574a434c555e68707d8a939e9f9285796d60544a3f33281c0f0300000000000000000000000004111d2935414c5665727f8b9aa4afab9b8e8275665c51444653606d7985929eaba197897c6f6356493c303a4754616d7a87939fac9f93867a6d615447404b5565727e8b98a7b1a8998c807366574d42362a1e120500000000000000000000000000000000000000000008131e2a36414c56616e7a86929fabab9f94897c6f63574e535353535353535353535764707d8a97a3b0a99c8f8276727272727272727272727272727272727272727272727272727272726d675c5145382c1f13060000000000000000000000060f181f272f353a4145474a4e505253525150505a616e7a85929fa0958d80736a707d89919fa297928a8482808183879095a09e938c7f72695e55616c75828f95a09f948f8783818082858b9299a29892857a6d61574d42362a1e0c010000000005111d2935414c56616c73808c92999f9f9992919091979c9e9f9590847b6e675c606d79839099a2978f82756c6156525e687885919ea995897c6f6256493c303946525d687784919ea49a897d7063564a3d3023170a000d192633404c5966737f8c999999999999999da0a7a9a29f999999999999999185786b616d7a85929e9f92867b6e615a50443a3c46515b616d7a85919a93887d7a8794a0988b7f7265584c3f3225190c0000000000000006131f2c3945515d676e7c8490959d9d9993908d8b8b8b8d8f92999f9c938e82796d616d7a85929e9f92867b6e615a50443c46515b616d7a85919a93887d7a8794a0988b7f7265584c3f3225190c00000000000000000d1a2633404d596673808c99a6b3a99c8f827669574d42454e58616c73808d939ea79e938c7f736c61584e443b30271d1207121f2b3844505b667783909daab1a4978b7e7164584b3e3125180b000000101c2936434f5c6976828f9ca9b2a5998c7f7266594c3f3326190900000000000000000000000000000000000000000000000b17222d404d5a6773808d9aa6b3a89b8e8175685b4f4235281c0f00000000000000000000030f1c28333f4a54616e7a86929facab9f9285796d60535353535353535353535353535f697683909caaaca095897c6f63564c4135291d110400000000000000000000000000000000000000030f1c28333f4a54616e7a86929facab9f9285796d60535353535353535353535353535f697683909caaaca095897c6f63564c4135291d1104000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000613202d394653606c7985929f9f93867a6d60534746525e697885919eaba297887b6e62554b40363031373a41465059616b727f8b93929197a1a4978b7e7164584b3e434c56616c75828f9ba2978b7f72665b5044382b1f12060000000000000000000000000713202c3945525d6876828f9cacafa3998a7e7164544a4044505c6675818e9baba9998c807366574d42363f4a5464717e8b9aa4a99d908376685e52463b4854616e7b8795a0acaa9d908377695f53463a2d211408000000000000000000000000000000000000000000020d1925303a46525e6874808d99a3aea69b8f82756a5f534746464646464646464a5764707d8a97a3b0aa9d91847f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f796d6053463a2d20130700000000000000000000060f18212a313940454c5254575b5d5e5f5f5e5d59565e68717e8b949e9f92877c6f6b737f8c93999e9f97918e8d8e90939aa09e938e81786d6056505a616e7a8390959e9f9993908e8d8e92979f9f9892867d70685e52453b30251a0e00000000000713202d3946525d68717e8a929fa198928b86848385888f949da0969083796d605c666f7c87939f9e938a7e71685e52566975828f9ca5988b7f7265574d42363b4754616d7a86939f9f93867a6d6154473a2e211407000d192633404c5966737f8c8c8c8c8c8c8c8c9095a0a297928c8c8c8c8c8c8c8c85786b5d68717e8b949f988f82766c61564c41353f46525e68707d88939a91847a8794a0988b7f7265584c3f3225190c00000000000004111d2935414c55606d798391969f9b938e8783807f7e7f8082878f949e9d948e81746a68717e8b949f988f82766c61564c413f46525e68707d88939a91847a8794a0988b7f7265584c3f3225190c00000000000000010e1b2834414e5b6774818e9aa7b4a79a8d8174675a4e413d46505a606c77818f95a0a59f93887e706a5f564c43392e2318110f1c28333f4a546875818e9ba8b3a6998d8073665a4d4033271a0d000000101d2a3643505d697683909ca9b1a4978a7e7164574b3e3124180b0000000000000000000000000000000000000000000000061926323f4c5965727f8c98a5b2a89c8f8275695c4f4236291c0f00000000000000000000000b17222d3846525e6875828e9ba8ada2978a7e7164574d42464646464646463f4a54626e7b88949fabaa9d9084776b6054443a2f24190d0100000000000000000000000000000000000000000b17222d3846525e6875828e9ba8ada2978a7e7164574d42464646464646463f4a54626e7b88949fabaa9d9084776b6054443a2f24190d01000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000714212d3a4754606d7a8798a29e918478675c51454754616e7a8797a1ab9e928578695f5343392f25262b30363e474f59626d74818e979ea1a9a6998c7f7366594c403b444f59626f7c88949e9e9184786c605346392d22170b0000000000000000000000000714212d3a4754606d7a86929facac9f92867a6d6054473a3f4a5464717e8a99a3aa9d908377695e52463a44505c6675828e9baca8998c7f7366564c413a46535e697783909daaaca095887b6e6155483b3025190d0100000000000000000000000000000000000000000008131e2a36414c56616e7b86929fabac9f93877b6e62564d423639393939393d4a5764707d8a97a3b0aca096918c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c877a6d6054473a2d211407000000000000000000030c18212a333c434b51565d6064686a6b6c6c6b69666260626c76828f98a2999083786d6d737f878f94989b9d9b9a9a9d9c9996918a81786d665c5046525e686e7a838b92979a9c9c9a9a9b9d9b9a938e867d706b60564c4133291f14090000000004111d2935414c56616d7a85929ea19792867f7a7776787c828d929d9f958c7f73685e606a73808d96a09e92857a6d61595965727f8c98a79c8f8275695e524641444f5964717e8a9aa49d908377685e5246392d20130700091623303c4956636f7d808080808080808083909d9f928580808080808080807f726556626c76828f989f948a7e71685d52453d36414c56616b74808d95958c808c99a5988b7f7265584c3f3225190c0000000000000613202c3945515d6773808d95a09b918c817b767372717273767b828f939e9f93877c6f626c76828f989f948a7e71685d52453d414c56616b74808d95958c808c99a5988b7f7265584c3f3225190c0000000000000003101c2936434f5c6976828f9ca9b2a5988c7f7265594c3f343e44505b656d79839097a1a49a92867c6f685e554b403428231a1017222d404d5a6773808d9aa6b3a89b8e8275685b4f4235281c0f020000111e2a3744515d6a7783909daab0a3968a7d7063574a3d3024170a00000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1a99c908376695d5043362a1d10000000000000000000000006111c2a36414c5663707d8996a0aca99c8f8276695e5246382d393939393844505c6673808d99a6aea2988b7f7265594f4332281e130800000000000000000000000000000000000000000006111c2a36414c5663707d8996a0aca99c8f8276695e5246382d393939393844505c6673808d99a6aea2988b7f7265594f4332281e130800000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000815212e3b4854616e7b8794aa9d9083776a554b404955626f7c8895a9a99c8f837669574d4231271d1a1e252a353e47515b616d7a85929ea7b1a79a8e8174675b4e41323e47535f6a75828f9ca096897d7063544a3f33281c0f030000000000000000000004101c2934404b5564717e8b99a3afa99c8f8376685d5245393a4754606d7a86929faca095877b6e6154473b4653606d7985929faba196887c6f6255493c36424d576673808d99a9b1a7988c7f7265564c41362a1d1105000000000000000000000000000000000000000000020e1925303b46525e6974818d99a3afa49a8e8174695e52463a2f242d2d313d4a5764707d8a97a3b0b2a8a09d99999999999999999999999999999999999999999999999999999993877a6d6054473a2d2114070000000000000000000b151e2a333c454d555d60686d7174777879787776736f6c65616e7b86929fa0958c7f736a6d727c82888b8f9091929291908d89847d756d665c544a414c565e686d787e85898d9091929291908f8b87817b706b60594f443a3021170d02000000000713202c3945525d6873808d97a19e92857c726d676a6a6f77808d95a09f92867a6e6158606d7984919aa1978e81756b6155616e7b88959f9f92867b6e615a524d5056606b75828f9ca4998c7f7366564c4135291d1105000915222f3b4854606b6f7373737373737374818e9b9e91847873737373737373726d62575a626e7b86929f9e91857a6d60584e42383a444f59606d798390989285929fa5988b7f7265584c3f3225190c0000000000000714212d3a4754606d7a85929f9e948c7f746e696765656566696e78818f98a39a8e817566626e7b86929f9e91857a6d60584e423a444f59606d798390989285929fa5988b7f7265584c3f3225190c0000000000000004111d2a3744505d6a7783909daab1a4978a7e7164574b3e31333f49535d676e7b859299a3a29891847a6e675c51453f352c22181926323f4c5965727f8c98a5b2a89c8f8275695c4f4236291c0f030000111e2b3844515e6b7784919eaaafa396897c706356493d3023160a00000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1aa9d9083776a5d5044372a1d110000000000000000000000000d1925303b4854606b7784919daaac9f93877b6e6153493f33272d2d2d3a4653606d7984919eabac9f92867a6d6054473d3221160c01000000000000000000000000000000000000000000000d1925303b4854606b7784919daaac9f93877b6e6153493f33272d2d2d3a4653606d7984919eabac9f92867a6d6054473d3221160c0100000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000815222f3b4855626e7b8895a19c8f8376695c5043495663707c8996a3a89b8e8175685b4e423128150e1319232c353f46525d68717e8a95a0aca99c90837669574d423637434e5864707d8a97a29a8e8174665b5044382b1f12060000000000000000000006131f2c3845515c6775828f9babb1a7988b7f7265564c41353945525d687683909ca9a7988b7e7165544b40495663707c8997a2ab9e9184786a5f53473b313c4956636f7c8997a1ada99c908376685e5246392d2013070000000000000000000000000000000000000000000008141e2a36424d57616e7b87929fabac9f92867b6e61564c4135291d24313d4a5764707d8a97a3b0bab2acaaa5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a093877a6d6054473a2d211407000000000000000007121d27303c454e575f676d737a7e81838586858483807c78706b69727e8b949f9f92867c6f666a6f757b7f82848586858483807c79706c605c544a423b444c565e666d72797d80838485868584827e7b746e6860594f473d32281e0f0500000000000714212d3a4754606d7a86929f9f958a7e716a605d585f656d7883919da3988d8073665c5d67707d88939f9e938a7d70675d5f697683909da3998e81756c615e565b60686f7d87939f9f93877b6e6155483b3025190d01000713202c38444f5960636666666666666874818e9b9e9184786b66666666666665625b51535f6973808c96a0978d80746a60544a3f343d45515c676f7c8692989298a2a5988b7f7265584c3f3225190c0000000000000b1825323e4b5865717e8b989e9c8f82756d615e57585858575e666e7b86929f9e9285796d606973808c96a0978d80746a60544a3f3d45515c676f7c8692989298a2a5988b7f7265584c3f3225190c0000000000000004111e2b3744515e6a7784919daab0a3968a7d7063574a3d302d38414b555e696f7d87929fa4a1969083796d605b51473e342a201725323e4b5865717e8b98a4b1a99c908376695d5043362a1d10030000121f2b3845525e6b7885919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0aa9e9184776b5e5144382b1e1100000000000000000000000008141e2c38444f5965727f8c98a3aea4998c7f73655b5044372b1f2a36414c5663707d8a97a1ada79b8e8174685d5245392c201304000000000000000000000000000000000000000000000008141e2c38444f5965727f8c98a3aea4998c7f73655b5044372b1f2a36414c5663707d8a97a1ada79b8e8174685d5245392c2013040000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000916232f3c4956626f7c8995a29c8f8275695c4f424a5764707d8a97a3a79a8e8174675b4e4134281b0e08111a232935414c56616c7783909da8ab9f928578695e52463a323c4653606d7985929e9e9285796c605346392d201306000000000000000000000714202d3a4753606d7985929facaca095887b6e6155483b3035414c5666727f8c99a8a89b8f8275665c51454d576673808d99a9aa9a8d817467584e43372d394653606c7985929eabac9f93867a6d6154473a2f24180d01000000000000000000000000000000000000000000020e1a25303b46535e6974818e99a3aea3998d8073685d5245392e2324313d4a5764707d8a97a3b0b8b0aaa99f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f93877a6d6054473a2d21140700000000000000000c18232e39424e575f696e7980868a8e9091929291908c89837d746c6c77828f98a2999083786d6062696e7275777879787776736f6d66615a504a4238323b444c545c60676d707376777879787775716e69615e564f473d352b20160c000000000004101d2935404b5565727e8b98a29d9083766c6158514e535c66707d8a97a19e9185796d6055606b74818e96a19e91847a6d605964717e8a95a09e938b7e736e6869666c707a84919aa3998f8275695f53463a2d1e13080000030f1b27323d474f545659595959595b6874818e9b9e9184786b5e5959595959595751494d57606d7984919e9f93877c6f665c50443b34404b555f6a727f8b949fa2aaa5988b7f7265584c3f3225190c0000000000000e1b2835414e5b6874818e909192897c6f635b524d4c4b4c4d545e6976828f9ca297887b6e61606d7984919e9f93877c6f665c50443b404b555f6a727f8b949fa2aaa5988b7f7265584c3f3225190c0000000000000005121e2b3845515e6b7884919eabafa396897c706356493d30262f3a434d57606b717e8b929da69f958e81756d635a50463c32291e24313e4b5764717e8a97a4b1aa9d9083776a5d5044372a1d11040000121f2b3845525e6b7884919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0aa9d9184776a5e5144372b1e1100000000000000000000000002101c27333d4754616d7a86929facab9e9184786c6053463a2f242d3946525e6875828f9ba9aca095897c6f63564c4135291d1104000000000000000000000000000000000000000000000002101c27333d4754616d7a86929facab9e9184786c6053463a2f242d3946525e6875828f9ba9aca095897c6f63564c4135291d11040000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000a1623303d495663707c8996a39b8e8275685b4f424b5764717e8a97a4a79a8d8074675a4d4134271a0e0008111924303a44505a64717e8a96a1aca297877b6e6154473b2e3845515c6674818e9ba197897c6f6356493c30231608000000000000000000030f1c28333f4a5463707d8a98a2aeaa9d908477695f53463a2d303c4855626f7b8896a1ac9f9285796d605346535e697784909daaa2988a7d7063574a3d322b3844505b6674818e9babafa4998b7e7165554b4035291d10040000000000000000000000000000000000000000000009141f2a36424d57616e7b87929fabab9f92857a6d60554b40342824313d4a5764707d8a97a3b0b0a69f9c93939393939393939393939393939393939393939393939393939393877a6d6054473a2d2114070000000000000004101c2834404b545f6a6e7b848c92989b9d9e9d9d9e9c9995908980776c6e7b86929f9f958c7f72695f5f6165686a6b6c6c6b696663605c5450443f383029323a424a50555c606367696b6c6c6b6a6865615e57524d443d352b23190e04000000000006131f2c3945515d6776828f9ca8988b7f72655a5045414a54606d7985919ea197897c70635659606d7a84919ea1968e81746b60606c78839098a39b908b807b777576797d849196a09f92877c6e62574d42362a1e0c020000000b16212b353d4448494d4d4d4d4e5b6874818e9b9e9184786b5e514d4d4d4d4c4a463f45515c67707d89939e999083786d60574d423639434e58626d75828f97a19f9f988b7f7265584c3f3225190c0000000000000c1926323f4c5965727f8283848586786d605346423f3e3f424d576773808d9aa995897c6f625c67707d89939e999083786d60574d4239434e58626d75828f97a19f9f988b7f7265584c3f3225190c0000000000000005121f2c3845525f6b7885929eabafa296897c6f6356493c302328313b454f59626c73808d949ea79e938c7f726c61584e443a302724313d4a5764707d8a97a3b0aa9e9184776b5e5144382b1e11050000111e2b3844515e6b7784919eaab0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a99d9083766a5d5043372a1d10000000000000000000000000000b16202d3946525d6875818e9ba7aca096897c7063554b4135292e3a4754616d7a86929facaa9d9084776b6054443a2f24190d010000000000000000000000000000000000000000000000000b16202d3946525d6875818e9ba7aca096897c7063554b4135292e3a4754616d7a86929facaa9d9084776b6054443a2f24190d010000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000091623303c4956636f7c8996a29b8f8275685c4f424a5763707d8a96a3a79a8e8174675b4e4134281b07000008131e28323e4653606d7984919eaba9978a7d7064574a3d2d34404b5464717e8a97a8998c7f7266594c3f2f24190d01000000000000000006121f2b3844505b6674818e9baab3a9998d807366574d42362a2e3a47535f6a7884919eaba298897d7063564954616e7b8795a0ac9f9286796d6053473a2d28333f4a5464717d8a99a3aeab9c8f8275675d5145392c20130600000000000000000000000000000000000000000000020e1a25313b46535f6975818e99a4aea2988c7f72675c5145382d22313d4a5764707d8a97a3b0aa9f948f86868686868686868686868686868686868686868686868686868686867a6d6054473a2d2114070000000000000006131f2c3845515c666e7c8591969f9f9c9791909092989fa09d928d81786c727f8c959f9f92867b6e665b55585c5d5e5f5f5e5d5a5653504a423e342e26202930383f444b5153565a5d5e5f5f5e5d5c5854524d46413b322b231911080000000000000714202d3a4753606d7a86929fa196877a6e6154473e3944505c6674818d9aa9998d80736654515d67707d8a939e9f93887d70675d666f7c869299a29b928d86838283858a9196a09d938c80736a5f53453b31261a0e00000000040f19232b32383b3c404040414e5b6874818e9b9e9184786b5e51454040403f3e3a34404b55606b75818e97a0958c7f72695e52463e313c46515b616d7a85919a9393938b7f7265584c3f3225190c0000000000000c1825313e4a57636d7275767778796d665c5044383030363f4c5966727f8c99ab96897d706355606b75818e97a0958c7f72695e52463e3c46515b616d7a85919a9393938b7f7265584c3f3225190c0000000000000005121f2b3845525e6b7885919eabafa296897c6f6356493c30231f29333d47505a606c78828f95a0a59f93887e706a5f564c42392e23313e4a5764717d8a97a4b0aa9d9184776a5e5144372b1e11040000111e2a3744515d6a7784909daab0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1a99c8f8276695c504336291d100000000000000000000000000005111d2935414c56636f7c8995a0aca89b8e8174675d5145392c37434e5865727f8b99a3aea2988b7f7265594f4332281e13080000000000000000000000000000000000000000000000000005111d2935414c56636f7c8995a0aca89b8e8174675d5145392c37434e5865727f8b99a3aea2988b7f7265594f4332281e1308000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000916232f3c4956626f7c8995a29c8f8275695c4f42495663707c8996a3a89b8e8175685b4e422e23180c0000020c16202c3844505c6673808d99a9a6998c807366544a3f332e3a4754616d7a8796a19b8f827568564c4135291d110400000000000000000613202d394653606c7985929eabada197897c6f6256493c31262b37434e586774808d9aaaaa9a8d807367574d5565727e8b98a7a89c8f8275675d5145382c222d3a4754606d7a86929facac9f92867a6d6053473a2e23170c000000000000000000000000000000000000000000000009141f2b37424d57626e7b87939facaa9e9184796d6053493f3327313d4a5764707d8a97a3b0a99c8f82797979797979797979797979797979797979797979797979797979797976685d5245392c20130700000000000004111d2935414c56606d79849197a19e949089858384858b9297a29d938c7f726c78839098a3989083786c60574d4f5152535251504d4946443f383028231c171e262e34394045474a4d5051525352514f4b4846423b3630292019110800000000000000091623303c4956636f7c8998a39e918478685e524639343f4a5464717e8b97ac9c908376665b5055616b75818e97a19a9184796d60606a717e8792989f9d9992908f8f91979ea09d938e81786d60584e4333291f1409000000000007111921272c2f30333335414e5b6874818e9b9e9184786b5e514538333332312e2e39434f59616d7a85929f9f92867b6e61594f4339343f46525e68707d8786868686867f7265584c3f3225190c0000000000000916222e3a46515b636568696b676d675c544a3f41414142464e586673808d99a399887c6f625559616d7a85929f9f92867b6e61594f43393f46525e68707d8786868686867f7265584c3f3225190c0000000000000005111e2b3844515e6b7784919eaab0a396897d7063564a3d302317212b353f44505b666d79839197a2a49a92867c6f685e544b403428313e4b5864717e8b97a4b1aa9d9084776a5d5144372a1e11040000101d2a3643505d697683909ca9b1a5988b7e7265584b3f3225180700000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3a89b8f8275685c4f4235291c0f00000000000000000000000000010d1924303a4854606b7783909daaac9f92857a6d6054473c313b4754606a7783909dabac9f92867a6d6054473d3221160c0100000000000000000000000000000000000000000000000000010d1924303a4854606b7783909daaac9f92857a6d6054473c313b4754606a7783909dabac9f92867a6d6054473d3221160c01000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000915222f3c4855626f7b8895ab9c908376695d50434955626f7c8895a9a99c8f837669554b4034281c1004000004101c28343f4a54626f7c8996a1a99c8f8276665b5044382d3946525e687884919e9e918578685d5245392c2013070000000000000000091623303c4956636f7c8997a1adab9e9185786c605346392d2026313d4a5663707d8998a2aa9d918477695e535c6775828f9ca8a7988b7e7265554b403529202c3945515d6776828f9ca9aea3988a7d7164544a3f34281c100300000000000000000000000000000000000000000000030e1a26313c47535f6a75818e9aa4ada1978b7e71655b5044372b313d4a5764707d8a97a3b0a99c8f82766c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5d564c4135291d11040000000000000613202c3945525d68737f8c96a09e938e827c787677797e859298a29f92867b6e6e7b86929f9f948b7f72695f53493f4546454443403c3a38342e261e17110c151c23282f34383a3d40434445464544423e3b3a36302a251f170e0800000000000000000c1925323f4c5865727f8b98aa9b8f827568564d41362e3b4855626e7b889aa49f9285796c60534f59616d7a85929ea0968d80746a60616c717e868e92999b9d9d9c9c9e9c9a96918a81786d665c50463c3121180d03000000000000070f161b202223262835414e5b6874818e9b9e9184786b5e5145382b2626251d27303d46525e68717e8b949f988f82756c61554b403536414c56616b70797979797979726d62564a3e3124180b00000000000006121e2a353f495157595b5d555c605c554b474e4e4e4e4d52575f6a76838f9c9f92867a6d6054525e68717e8b949f988f82756c61554b4036414c56616b70797979797979726d62564a3e3124180b0000000000000004111e2a3744515d6a7784909daab0a3978a7d7064574a3d312417192328333f4a545d676e7b859299a3a29891847a6d665c51453f35323f4b5865727e8b98a5b1a99d9083766a5d5043372a1d100400000f1c2835424f5b6875818e9ba8b3a6998c807366594d402f23180c00000000000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4a79a8e8174675b4e4134281b0e000000000000000000000000000008131e2c38434f5965727f8b98a2aea2988b7e7165574d4237404b55626f7c8895a0aca79b8e8174685d5245392c20130400000000000000000000000000000000000000000000000000000008131e2c38434f5965727f8b98a2aea2988b7e7165574d4237404b55626f7c8895a0aca79b8e8174685d5245392c20130400000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000714212e3a4754616d7a8799a49d9184776a564c414754606d7a8797a1ab9e918478675c5145382c1f13060000000c17232e394653606c7884919eab9f9285796c605346392d36414c566975828f9ca197877a6d6054473a2d2114070000000000000006121f2b37434e586773808d9aa9b3aa9a8e8174655b5044372b1f202d3a4653606d7985929faca095877b6e6154606d7985929faca095877b6e6154483b2f241d2935414c5565727f8b98a7b1aa9b8e8175665c5044382c1f1206000000000000000000000000000000000000000000000009141f2b37434e58626f7c87939faca99d9184786c6053463d32313d4a5764707d8a97a3b0a99c8f8276696060606060606060606060606060606060606060606060606060605f524c443a2f24190d010000000000000714212d3a4754606d7a86929fa1978e81786f6a6a676d717c86929fa2988e81746a727f8c95a09f92867b6e655b50443b3039383633302d2c28231c150c06030a11171d23292c2d303436383939383735322e2d2a251f19140d050000000000000000000e1b2734414e5a6774818d9aa69a8d8073675a4d40302d3a4653606d7986939fa298877b6e615448525e68717e8a939e9f93877c6f675c616c717b81868b8f9192929291908d89847d746d665c544a3f342a200f060000000000000000040b0f1315161b2835414e5b6874818e9b9e9184786b5e5145382b1e1918151e2a36414c56606c778390999e938a7d70675d51453c2f3a444f5961636c6c6c6c6c6c65625b51463a2e221509000000000000010d18232d373f464a4c4f504b5153514c52545a5a5a5b575e61696f7c87929f9c8f8376675d514c56606c778390999e938a7d70675d51453c3a444f5961636c6c6c6c6c6c65625b51463a2e2215090000000000000003101d2a3643505d697683909ca9b1a5988b7e7265584b3f3225181017222d38424c555f69707d87929fa4a1969082786d605b51473e34404d596673808c99a6b3a89c8f8275695c4f4236291c0f0300000d1a2734404d5a6773808d9aa6b3a89b8e817568554b4034291c100400000000000000000000000000000000000000000005121e2a36424d576976838f9ca9b2a5988c7f7265594c3f3226190c0000000000000000000000000000020f1b27323d4754606d7a86929facaa9c908376695f53473845515c6774808d9aa7aca095897c6f63564c4135291d1104000000000000000000000000000000000000000000000000000000020f1b27323d4754606d7a86929facaa9c908376695f53473845515c6774808d9aa7aca095897c6f63564c4135291d110400000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000613202d394653606c7986939f9f928578685d524545515d677885919eab9f9386796d6053463a2d20130800000006121f2b3744505b6575818e9ba8a298887b6f6255483c2f30404d5a6673808d99a995887c6f6255493c2f221609000000000000000815212e3b47535f6a7784919eaaaea2988a7d706453493f33271b1f2c3845515c6775828f9baca7988b7e72655463707d8998a2aa9d908377695e52463a2d1d19242f3b4855616e7b8895a0acab9f9285796d6053463a2d20130a0000000000000000000000000000000000000000000000030f1a26313c47535f6a75828f9ba6aca0968a7d7064594f4438313d4a5764707d8a97a3b0a99c8f8276695c53535353535353535353535353535353535353535353535353535345413a32281e130800000000000004101c2934404b5565717e8b98a29e92857a6d6660585c606a717e8b96a19f92857a6d6d78839099a2988f82776c60574d42362a2b2a2723201f1c17110a03000000060c12181c1f2023272a2b2c2c2b2a292521201e1a140e0802000000000000000000000f1c2936424f5c6975828f9ca5988c7f7265594c3f322c3845515c667885929eaa96897c706356494c56616c75828f97a2999183796d605a61696e757b7f82848586858583807c78706c605c544b42382e22180e00000000000000000000000307090e1b2835414e5b6874818e9b9e9184786b5e5145382b1e120b0c1925303a44505b656f7c87929f9e9184796d60584e4138323d474f5556606060606060585651493f34291e12060000000000000007111c252d353a3e3f42434045474c565d616767676869696e727b8491999e938a7d7063554b44505b656f7c87929f9e9184796d60584e41383d474f5556606060606060585651493f34291e120600000000000000020f1c2835424f5b6875828e9ba8b3a6998c807366594d402f23180c111c262f3a434d57606b727f8b929da69f948e81746d63594f463c414e5b6774818e9aa7b4a79a8e8174675b4e4134281b0e0100000c1925323f4c5865727f8b98abb5aa9d908477675c5145382c1f13060000000000000000000000000000000000000000000714212d3a46535f697885929fabb4aa968a7d7063574a3d3024170a0000000000000000000000000000000a16202c3945515d6774818e9aa7ab9f94887b6e62544a3f4653606d7985929fabaa9d9084776b6054443a3024190d01000000000000000000000000000000000000000000000000000000000a16202c3945515d6774818e9aa7ab9f94887b6e62544a3f4653606d7985929fabaa9d9084776b6054443a3024190d0100000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000006121f2b3844505b667884919ea297877a6d605447414c556976838f9ca9a499897c6f6356493c3025190d000000030f1b27333f495365727e8b98acaa988b7e7265584b3f30323f4b5865727e8b98a3978a7d7064574a3d3124170a000000000000000915222f3c4855626f7c8896a0acac9f9286796d6053473a2d22171c2834404b5565717e8b9aa4a89c8f8275665c6774808d9aaaa9998d807366574d42362a1e14212d3a46535f697784919daaada297897d706356493d32271b0f0300000000000000000000000000000000000000000000000915202b37434e58626f7c88949eaaa89d9083766b6054483c313d4a5764707d8a97a3b0a99c8f8276695c4f464646464646464646464646464646464646464646464646464639352f2820160c0100000000000006131f2c3845515c677683909ca9998c7f73675d544e5157606d7984919ea2988b7e71666f7c87929f9f948b7e72695e52463e32291f1a161312100c0600000000000001070c101314171a1d1e1f201f1e1c181514120e0902000000000000000000000000111d2a3744505d6a7783909da4978a7d7164574a3e312834404b546a7783909da4978a7d7164574a44505a616e7b85929fa0958c80736a5f575f61696e727577787979787673706c65615a514b423930261c0f0600000000000000000000000000020e1b2835414e5b6874818e9b9e9184786b5e5145382b1e120008131e27333f49535f6a73808d96a0968d80736a5f53493f33353d44484a5353535353534c4a463f372d23180d0100000000000000000a131c232a2e3132352f343946525d686d7474747475777b7f8591969e938e81746b6155433f49535f6a73808d96a0968d80736a5f53493f333d44484a5353535353534c4a463f372d23180d0100000000000000010d1a2734404d5a6773808d9aa6b3a89b8e817568554b4034291c100a141d28313b454f59626d74808d949fa69d938c7f726b61584e44424d57697683909ca9b2a6998c7f7366594c403326190d000000091623303c4956636f7c8999a4afac9f9286796d6053473a2d22170b0000000000000000000000000000000000000000000815222e3b4855616e7b8897a2adaea298887b6e6155483b2e22150800000000000000000000000000000004111d2935414c55626f7c88959faba6998d8073665c50444d5764717e8a97a2ada2988b7f7265594f4332281e1308000000000000000000000000000000000000000000000000000000000004111d2935414c55626f7c88959faba6998d8073665c50444d5764717e8a97a2ada2988b7f7265594f4332281e13080000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000030f1c28333f4a546976838f9ca995897c6f625649404d5a6673808d99aaab998c7f7266564c41362a1c11060000000b17222d3c4956626f7c899aa4a89b8e817568564c4136313d4a5764707d8a97a3988b7f7265584c3f3225190c00000000000005121e2a36424d5766737f8c99a8b2ac9c8f8275675d5145382c1b1118232e3b4754616e7a87939fac9f9285796d60697784919daaa197897c6f6256493c30251a121e2a36424d576673808d99a9b3a99a8d807467584e43372b1f13060000000000000000000000000000000000000000000000030f1b26313c4754606a75828f9ca6ab9f95897c6f63584e43373d4a5764707d8a97a3b0a99c8f8276695c4f43393939393939393939393939393939393939393939393939392c29241e160d04000000000000000714202d3a4753606d7986929fa197887b6f62554b4245515c6674818d9aaa9b8e8174686a73808c95a09f92867b6e615a50443b3025190e07060300000000000000000000000406070a0d1011121312110f0b080705020000000000000000000000000000121e2b3845515e6b7884919ea3968a7d7063574a3d30232e43505d697683909ca5988b7e7265584b3f46525e69717e8b949f9f92877c6f665c53575e6165686a6c6c6c6b696763605b535045403930271e140a0000000000000000000000000205070e1b2835414e5b6874818e9b9e9184786b5e5145382b1e1205020b17222d38414e58606d7984919e9f92877c6f655b50443b3033383c3d4646464646463f3e3a342d251b1106000000000000000000010a11181e22252628232e3a4754616d7a808181818284878c929796918b81796d60594f4438414e58606d7984919e9f92877c6f655b50443b33383c3d4646464646463f3e3a342d251b11060000000000000000000c1925323f4c5865727f8b98abb5aa9d908477675c5145382c1f13060b161f2a333d47515b606d78828f96a0a59f93877d706a5f564c47535f697885929eabb4aa978a7e7164574b3e3124180b0000000714202d3a4753606d7a86939facaea399897d706353493f33271b0f030000000000000000000000000000000000000004111d2935414c5565717e8b98a9b3ac9f9285786d6053463a2d201307000000000000000000000000000000010d19242f3a47545f6a7783909da9ab9e9184796d605346525e6976828f9ca9ac9f92867a6d6054473d3221160c020000000000000000000000000000000000000000000000000000000000010d19242f3a47545f6a7783909da9ab9e9184796d605346525e6976828f9ca9ac9f92867a6d6054473d3221160c020000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000b17222d414e5b6774818e9aa4978b7e7164584b3e495663707c8998a2a99c8f8276685e5246382d22170b0000000614202d3a4753606d7a86939faa9e918477685e5246392f3c4956626f7c8995a2998c7f7266594c3f3326190c0000000000000714212d3a46535e697783909daaafa49a8b7e7165554b4035291d0a14202d3946525e687783909daaa298897c70636e7b8796a0ab9e9285796c605346392d20130e1a26313c4956636f7c8997a1adab9e9184786a6054473b2e2215090000000000000000000000000000000000000000000000000a15202b37434e58626f7c89949faba79c8f82756a5f53473b3d4a5764707d8a97a3b0a99c8f8276695c4f43362d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d201d19130c0400000000000000000916232f3c4956626f7c8999a39e9285796c6053463a404a5464717d8a97ac9d90847767606d79839099a2988f82766c62564d41362a20170c0200000000000000000000000000000000010305060605040200000000000000000000000000000000000000121f2c3845525f6b7885929ea396897c706356493d302936434f5c6976828f9ca5988c7f7265594c3f424d56626c76828f98a2999083786d60584e5254585c5e5f5f5f5e5d5a56535049413e342e271e150c020000000000000000000002090e1114141b2835414e5b6874818e9b9e9184786b5e5145382b1e12050006111b262f3c45515d67707d8a939e999083776c60564c41362a2c2f3039393939393932312e29231b1309000000000000000000000000070d121618191c212e3b4854616e7b878d8d8e8f9193938f8d89847e756d675c51473e2f3c45515d67707d8a939e999083776c60564c41362c2f3039393939393932312e29231b130900000000000000000000091623303c4956636f7c8999a4afac9f9286796d6053473a2d22170b040d18212b353f44505c666d7a849197a2a49992867c6f685e544b55626e7b8897a2adaea298887b6f6255483c2f2215090000000613202c3945515d677784909daab4ab9a8d8073655b5044372b1f140a000000000000000000000000000000000000010c13202c3945515d6775828e9ba8b5a89c8f8275665c5044382b1f12060000000000000000000000000000000008131e2b37434e5865717e8b97a2ada1968a7d7063564c54616e7b87939faca79b8e8174685d5245392c2013040000000000000000000000000000000000000000000000000000000000000008131e2b37434e5865717e8b97a2ada1968a7d7063564c54616e7b87939faca79b8e8174685d5245392c201304000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000061825323f4b5865727e8b98aa9a8d817467564c414653606d7986929fac9f92867a6e61544a3f33281d1207000006131f2c3945515d677885919eaba096877a6e6154473b2f3c4955626f7c8895a2998c807366594d4033261a0d0000000000000815212e3b4854616e7b8795a0acac9f93877a6e6154473b2f24180c111e2a36414c5666737f8c99a9aa998d807366717e8b97a8ab9b8e8174665b5044382b1f120913202d3a4653606d7985929eabada196887c6f6255493c31261a0e020000000000000000000000000000000000000000000000040f1b27323c4854606a76828f9ca6ac9f93877c6f62574d423d4a5764707d8a97a3b0a99c8f8276695c4f433629202020202020202020202020202020202020202020201413110d08010000000000000000000b1825323e4b5865717e8b98ab9c908376655b5044373b4855626e7b889aa49f9286796d60666f7c87929f9e948b7e71685e52463e32291e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000121f2c3945525f6c7885929fa296897c6f6356493c302935424f5c6875828f9ba6998c7f7366594c403b44505a616e7b86929fa0958c7f726a5f544a484c4f5152535252504d4946443f382f28231d150c0300000000000000000000050d14191e2021272835414e5b6874818e9b9e9184786b5e5145382b1e120500000a141d2935404b55616b75818e989f958b7e72685e52463d302723232d2d2d2d2d2d2524221e18110901000000000000000000000000000106090c0c15212e3b4854616e7b87949a9b9c9e938682807d78716c605c554b40352935404b55616b75818e989f958b7e72685e52463d3027232d2d2d2d2d2d2524221e18110901000000000000000000000714202d3a4753606d7a86939facaea399897d706353493f33271b0f03060f192328343f4a545d686e7b859299a3a29891847a6d665c515665717e8b98a9b3ac9f9285796d6053463a2d20130700000004101d2935404b556773808d9aa9b3ab9e9184786c6053463c2f261b1106000000000000000000000000000000000007131d28333f4a54606d7a86929facb1a7988b7f7265544a3f34281c100300000000000000000000000000000000010f1b26323c4753606d7985929faba99b8e8275685d525966737f8c99a4aca095897c6f63564c4135291d110400000000000000000000000000000000000000000000000000000000000000010f1b26323c4753606d7985929faba99b8e8275685d525966737f8c99a4aca095897c6f63564c4135291d1104000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000916222f3c4955626f7c8898a29d908377685d524545515c6775828e9ba8a3998b7f72665b5044392e23180f060004101d2935404b556a7784909daaa8978a7d7064574a3d2f3b4855626e7b8895a19a8d8074675a4d4134271a0e000000000005111d2a36414c5665727f8b98a7b1a99d908376685e5246392d1d12070e1925303c4955626f7c8896a1a99d9083766774818e9ba7a3998a7d7164544a3f33281c0f06121f2b3844505c6674818e9babb2a8998c807366574d42372b1e12060000000000000000000000000000000000000000000000000a15202c38434e5863707d89949faba49a8e8174695e52463d4a5764707d8a97a3b0a99c8f8276695c4f4336291c1313131313131313131313131313131313131313130707040100000000000000000000000d1a2633404d596673808c99a69b8e81746853493f333a4653606d7986939fa399887b6e61606a73808d96a09f92857b6e615a50443a3025190e04000000000000000000000000000000000000000000000000000000000000000000000000000000000000121f2c3945525f6c7885929fa295897c6f6256493c2f2935424f5c6875828f9ba6998c7f7366594c40323f46535e69727f8b949f9f92867c6e665b50443f42444546464543403d3937332d261d18120b0300000000000000000000050e171f252a2d2e342d35414e5b6874818e9b9e9184786b5e5145382b1e12050000020b18242f39434f59616e7b85929f9f92857a6e61594f43392e2318202020202020191815120d06000000000000000000000000000000060b0f12131c212e3b4854616e7b8793939495989a9285817d756e685e574d43392e242f39434f59616e7b85929f9f92857a6e61594f43392e23182020202020191815120d060000000000000000000000000613202c3945515d677784909daab5ab9a8d8073655b5044372b1f140a00071117232e38424c565f69707d87929fa5a0969082786d605b5d6875828f9ca8b5a99c908376665c5044382b1f1206000000010d18242f3d495663707c8997a1adaca196897d7063584e41382d22170f06000000000000000000000000000000071118242f3844505b66717e8b98a2aeaca095887b6e6155483b2e23170b0000000000000000000000000000000000000a151f2c3945515d6774808d9aa6ac9f92867a6d6154606b7784919eabaa9d9084776b6054443a3024190d0100000000000000000000000000000000000000000000000000000000000000000a151f2c3945515d6774808d9aa6ac9f92867a6d6154606b7784919eabaa9d9084776b6054443a3024190d01000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000713202d3a4653606d7985929f9f93867a6d605447404b5563707d8996a1ab9e9184786c60554b4034282118100b09111d2a36414c566a7784919daaa69a8d807367554b40343b4855616e7b8894a19a8d8174675a4e4134271b0e00000000000713202d3946525e6876838f9ca9b2a8998c7f7266564c41362a1e0b010815222e3b47545f6a7884919eab9f92867a6d7784919eaa9f92867a6d6054473a2d22170b03101c28343f4a5464717d8a99a3aeaa9d908477695f53473a2d211408000000000000000000000000000000000000000000000000040f1b27323d4854606b7683909ca7ac9f92867b6e61564c414a5764707d8a97a3b0a99c8f8276695c4f4336291c100d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0a0a08040000000000000000000e1a2734414d5a6774808d9aa69a8d8073675a4d402d3845515c677885929fab95887c6f6258606d79849199a2978f82756c61564c41362a20160c020000000000000000000000000000000000000000000000000000000000000000000000000000000000121f2c3845525f6b7885929ea296897c6f6356493c302936434f5c6976828f9ca5998c7f7266594c3f3336424d57606c78839098a3989083786c60574d41382d393939383634302d2b27221b140b070000000000000000000000020d17202930363a3b413a38414e5b6874818e9b9e9184786b5e5145382b1e120500000007121d27313e46525e68727f8b959f978e81756b60554b4034281f1509131313130c0b0906010000000000000000000000000000020a11171c1f2028232e3b4854616e7b86868687898c9195928e89827a6e695e544a40342827313e46525e68727f8b959f978e81756b60554b4034281f15091313130c0b0906010000000000000000000000000004111d2935404b556773808d9aa9b3ab9e9184786c6053463c2f261b11060006111c26303a444d57606b727f8b939da69f948e81746d62606d7a86929facb2a8998c7f7266544a3f34281c1003000000000713202d3a4653606d7985929eacb2a89c8f82756a5f53493f332721180f0802000000000000000000000003091119232935404b55606c7884919daab3a99d908477695f53463a2d1c110600000000000000000000000000000000000004101d2935404b55626f7b88949faba3998b7e726557636f7c8996a0aca2988b7f7265594f4332281e130800000000000000000000000000000000000000000000000000000000000000000004101d2935404b55626f7b88949faba3998b7e726557636f7c8996a0aca2988b7f7265594f4332281e130800000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000006121f2c3844515c6676828f9ca4998a7d7164554b404653606c7884919ea8a0968a7d71675c51453d332a221c18181a222d3946525e687885929eaba99d908376675c5145383c4955626f7c8895a2998d8073665a4d4033271a0d00000000000714212e3a4754616d7a86929facaca096887b6f6255483c3025190d0006131f2b37434e586774818e9aaaa399897d707b8796a0a99c8f8276675d5145392c1c1106000b17232e3a4754606d7a86929facaca095887b6e6155483b3025190d010000000000000000000000000000000000000000000000000a16212c38444f5963707d89959faba3998d8073685d52454a5764707d8a97a3b0a99c8f8276695c4f4336291c1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a171614100b05000000000000000e1b2835414e5b6874818e9ba6998d8073665a4d403334404b556b7885919ea396897c7063565c676f7c87939f9e938a7e71685e52463e32281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000121f2b3845525e6b7885919ea396897d7063564a3d30293643505c6976838f9ca5988b7f7265584c3f32313b44505b666e7b86929f9f958b7f72695f53493f33272c2c2b2a2723201f1b17110a0200000000000000000000000009141f29323b4246474d4745404e5b6874818e9b9e9184786b5e5145382b1e1205000000010b151f2a36414d56606c788390999e93897d70675c51453c31261a0e04060606000000000000000000000000000000000000020b141c22282b2d352e343a46535e69767979797a7c7f848c9399948f847b6e665c5144382c1f2a36414d56606c788390999e93897d70675c51453c31261a0e040606000000000000000000000000000000000000010d18242f3d495663707c8997a1adaca196897d7063584e41382d22170f06000a151e28323c454f59626d74818e949fa69d938c7f726b66727f8b98a3aeaca096887c6f6255493c2e23170b000000000006121f2c3844505c6673808d9aa4afaa9e94887c6f655b50443d332a2219140e09060400000100000406090e141a232b353d45515d67717e8a95a0acada2978b7e7265574d42362a1e0a00000000000000000000000000000000000000000c18242f3947535f6a7683909ca9ab9d908376695f6774818e9aa8ac9f92867a6d6054473d3221160c02000000000000000000000000000000000000000000000000000000000000000000000c18242f3947535f6a7683909ca9ab9d908376695f6774818e9aa8ac9f92867a6d6054473d3221160c0200000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000004101c2834404a5465727f8c98a79b8e8175675c514544505b66727f8c96a1a89e9184796d60594f453c342c272524262a343c4754616d7a86939facac9f9286796d6053473a3d495663707c8996a3998c7f7266594c3f3326190c0000000004101d2935404b5564717e8b99a3afaa9e9184776a5f53473a2e1e140800030f1b26323d4a5763707d8a98a2ab998c80737e8a97a8a8988c7f7265554c4135291d0a00000613202c3945515d6776828f9ca9b1a7988c7f7265564c41362a1e110500000000000000000000000000000000000000000000000004101b27323d4854606b7683909da7ab9f92857a6d60554b4a5764707d8a97a3b0a99c8f8276695c4f4336292727272727272727272727272727272727272727272727272423201c1710080000000000000f1c2835424f5b6875828e9ba6998c7f7366594c40332e44515e6b7784919ea3968a7d70635755606b74808d96a09e92857a6d615a50443a3024190d0400000000000000000000000000000000000000000000000000000000000000000000000000000000111e2a3744515d6a7784909da3978a7d7064574a3d312a3743505d6a7683909da4978b7e7164584b3e3128333f4a545f6a737f8c95a09f92867b6e655b50443b30251a1f1d1a1613120f0b0600000000000000000000000000020e1925303b444d52545a53514b4e5b6874818e9b9e9184786b5e5145382b1e120500000000030d1925303b44505b666f7c87929f9e9184796d60574d42372b20160c0200000000000000000000000000000000000000000a141d262d33383942434045464d575e6c6c666d6d6f72787f87939f969083786d6053463c312625303b44505b666f7c87929f9e9184796d60574d42372b20160c0200000000000000000000000000000000000000000713202d3a4653606d7985929eacb2a89c8f82756a5f53493f332721180f08030c16202a333d47515b606d78828f96a0a59f93877d706d7984919eaab4aa9d9184776a5f53473b2e1c1106000000000003101c28343f4a54616e7b87939fabb0a69c9083776c60584e453c342a251e1a1312100c070e070c1013131a1f262a353d47505a606d7984919ea7b1a99f9285796d6053473b31261a0e000000000000000000000000000000000000000007121d2b37434e5864717e8a97a1ab9f95887b6e616d7985929faba79b8e8174685d5245392c201304000000000000000000000000000000000000000000000000000000000000000000000007121d2b37434e5864717e8a97a1ab9f95887b6e616d7985929faba79b8e8174685d5245392c2013040000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000c18232e3b4855616e7b88959f9f9285796d6053473f4a54606d7984919ea6a0968c7f736b60574e463f3833313131363d46505a64717e8a9aa4afaea399897c6f6356493c3d4a5764707d8a97a3988b7f7265584c3f3225190c0000000006131f2c3945515d6775828f9babb3a99a8d807467584e43372b1f0d0200000a14202d3a4753606d7986929fa99c908376818d9aa7a096887b6e6155483b2f24190d000004111d2935414c5565727f8b98a7b1a99c908376685e5246392d201407000000000000000000000000000000000000000000000000000b16212c38444f5963707d8a95a0aba2988c7f72675c514a5764707d8a97a3b0a99c8f8276695c4f43363434343434343434343434343434343434343434343434343431302d28221a110800000000000f1b2835424e5b6875818e9ba6998c807366594d40333845525e6b7885919ea396897c7063564f59606d7984919ea1978e81756c61564c4135291f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000101d293643505c6976838f9ca4988b7e7165584b3e322935414c566b7784919eac968a7d7063574a3d30222d38424e57606d78839099a2988f82776c60574d42362a20170d0d0a06050300000000000000000000000000000005111e2a36424d565e6167605c554e5b6874818e9b9e9184786b5e5145382b1e1205000000000008141f28333f4a545f6a73808d96a0968c8073695f53473e32281e13080000000000000000000000000000000000000006111c262f383f44464f504b51535452535f605c606162666c727f8b95a0958c7f7265574e42372b1f28333f4a545f6a73808d96a0968c8073695f53473e32281e1308000000000000000000000000000000000000000006121f2c3844505c6673808d9aa4afaa9e94887c6f655b50443d332a2219140e090e18212c353f44515c666d7a849198a2a49992867c717e8b96a0acaea3988c7f7265584e43372b1f0a000000000000000c17232e3846535f6975828e99a3afab9f948b7f726a60574e463e36302a25201f1c181b1a1b181c1f20262b31363f474f59616c74808d96a1adada2978d8073675d5145392a1f14090000000000000000000000000000000000000000010f1a26313c4653606d7985929eaca7998c7f7366717d8a98a2aca095897c6f63564c4135291d11040000000000000000000000000000000000000000000000000000000000000000000000010f1a26313c4653606d7985929eaca7998c7f7366717d8a98a2aca095897c6f63564c4135291d11040000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000714212d3a46535f697783909da2988a7e7164584e4345515c67717e8b949fa89f92877d70695f585048443f3e3e3f42464f58616c7683909cacaab0ab998c7f7266594c3f3f4c5865727f8b98a4978b7e7164584b3e3125180b000000000714202d3a4753606d7a86929facada297897c706356493d31261a0f00000006131f2c3845515d6775828f9ca89f92867983909daa9d918477695f53473a2d1e13080000010d19242f3b4855616e7b8895a0acac9f93867a6e6154473b2f24180d0100000000000000000000000000000000000000000000000004101c27333d4855616b7783909da7aa9e9285796d60544a5764707d8a97a3b0a99c8f8276695c4f4340404040404040404040404040404040404040404040404040403d3c39332c231a1005000000000e1b2734414e5a6774818d9aa69a8d8073675a4d40343744505b657885929ea295897c6f625649515d67707d89939d9e938a7d70685d52453e31281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba6998c7f7366594c402e2c3945525d687985929fa49a887b6f6255483c2f22262f3c44505c666f7c87929f9f948b7e71695e52463e32291e1308000000000000000000000000000000000000000714202d3a46525e696e746d675f585b6874818e9b9e9184786b5e5145382b1e12050000000000020b17222d38424e58606d7984919e9f92867b6e625a50443a3024190c030000000000000000000000000000000000000b17222d38424a50535b5d555c60605d564c4a505354545b606c7883909d9e9184786a5f53473a2e21222d38424e58606d7984919e9f92867b6e625a50443a3024190c030000000000000000000000000000000000000003101c28343f4a54616e7b87939fabb0a69c9083776c60584e453c342a251e1a1312101a232834404a545e686f7c869299a4a29891847b85929ea8b2aa9f92867a6d6154473c32261b0f0000000000000006111c2a36424d57626e7b87929fa8b0a69f92877c6f695f585046413b36312d2c282327272723282c2d31373b42465159606b717e8a929da8b1a79f92857a6d61554b4035291d10040000000000000000000000000000000000000000000a151f2c3845515c6773808d9aa4aa9d9184776a75828e9baaaa9d9084776b6054443a3024190d010000000000000000000000000000000000000000000000000000000000000000000000000a151f2c3845515c6773808d9aa4aa9d9184776a75828e9baaaa9d9084776b6054443a3024190d010000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000005121e2b37424d5765727f8c98a39c9083766a605447404b55606c77828f97a2a39992857b6f6a625a554f4c4b4b4c4d5359606a707d8a949f9b9ea6a89b8f827568574d42404b546774818e9aa896897c6f6356493c3023160900000003101c28343f4a5464707d8a98a2aeab9f9285796d6053463a2d20130a00000004101d2935404b5565727e8b98a7a3988a7d87939fa99a8d807367574d42372b1e0c010000000814212d3a46535f697784919daaafa4998b7e7165554b4135291d1104000000000000000000000000000000000000000000000000000b16212c38444f5964707d8a95a0aca1978b7e72665b505764707d8a97a3b0a99c8f8276695c4f4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4a49443e362c22170b000000000d1a2734404d5a6773808d9aa69a8e8174675b4e4130394653606c7986929fa895887b6e6255484b55606b74818e96a19e91857a6d60594f433a2f24190d0400000000000000000000000000000000000000000000000000000000000000000000000000000d1a2633404d596673808c99a69a8e817467544b40342d3a4754606d7a8798a29f93867a6d6053473a2d201d28343f4a545f6a73808d95a09f92857b6e615a50443a3025190e040000000000000000000000000000000000000814212e3b4754616e7b80796f6a605b6874818e9b9e9184786b5e5145382b1e120500000000000006111c262f3c45515d67707d8a939e988f82766c61564c4135291e150a0000000000000000000000000000000000030f1c28333f4a545b6068696b676d6d685d52454446474a505b6573808c99a196887b6e6255483b2f221c262f3c45515d67707d8a939e988f82766c61564c4135291e150a00000000000000000000000000000000000000000c17232e3846535f6975828e99a3afab9f948b7f726a60574e463e36302a25201f1c1818232e39424c565f6a707d87939fa5a09691859297a1adaea2988d8074685e5246392a20150a00000000000000000e1a26313b47535f6974808d96a0abaea39991857b6e6a615a524c46423c3a38342e3434342e34383a3c42474d535b626b707d86929fa4aeaaa0958b7f72685e5243392f24180d0100000000000000000000000000000000000000000004101c2834404b55616e7b87939faca095887b6f7985929faca3988b7f7265594f4332281e13080000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b55616e7b87939faca095887b6f7985929faca3988b7f7265594f4332281e1308000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000020e1a26313c4754616d7a86929f9f94887c6f62584e4244505b656e7b859299a4a19791857c716c63615959585758575f616b707c869299938f939eab9e928578695f534745515c667683909da196877a6d6054473a2d21140700000006121f2c3844505c6674818e9baab4ab9b8e8175665c5044382c1f1206000000000c18242f3b4754616e7b8795a0aa9c8f838f99a4a297897c706356493d31261a0e0000000005121e2a36424d576673808d99a9b3ab9c8f8275675d5145392c2013070000000000000000000000000000000000000000000000000005101c28333e4653606c7883909da8a99e9184786c60555764707d8a97a3b0a99c8f8276695c5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a575550483e33281c10040000000c1926323f4c5965727f8c98a59c8f827669564c41363b4754616e7a8799a3a196877a6d605447434f59606d7a84919ea1978e81746b61554c4135291f160c01000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a89d908376665c514538303d495663707c8996aa9e918477675d5145392c1f17232e38424e58606d79849199a2988f82756c61564c41362a20160c0200000000000000000000000000000000000815212e3b4854616e7b87837c726c656874818e9b9e9184786b5e5145382b1e1205000000000000000a141d2935404b55616c75828f989f948a7e71685d52453d30261c11060000000000000000000000000000000006121f2b3844505b666c75767778797a6d60544b403a3a3f495364717e8b97a8978a7d7164574a3e3124141d2935404b55616c75828f989f948a7e71685d52453d30261c11060000000000000000000000000000000000000006111c2a36424d57626e7b87929fa8b0a69f92877c6f695f585046413b36312d2c2823272727303a444e58616b727f8c939ea7a0989298a1a9b1a79f92867a6e61564c41362a1e1105000000000000000009141f2b37424d57606d79849199a4afaba19791847c706c615e56534d494644404141414141404546494d53575f616d727d869298a2aeaca2989083786c60564c4131281d120700000000000000000000000000000000000000000000000c18232e3946535f6976828f9ca9a7998c7f737d8a98a2ac9f92867a6d6054473d3221160c0200000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3946535f6976828f9ca9a7998c7f737d8a98a2ac9f92867a6d6054473d3221160c02000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000914202d3946525e6874818e9aa49b8f82756a60544a3f49535e69717e87939fa3a19791867e76706b686564646567696e747d8592989387828f9baaa197887b6e6255484653606d7985929f9e918478675d5145392c2013060000000713202d3a4653606d7985929eabaea3998a7e7164544a3f34281c1003000000000714202d3a46525e697783909daa9f948f949fab9f9285796d6053463a2d20130900000000020e1a26313c4956636f7c8997a1adac9f92867a6d6054473a2e23180c00000000000000000000000000000000000000000000000000000b161f2b3744505b65717e8a95a0aca0968a7d7064626264707d8a97a3b0a99c8f827669676767676767676767676767676767676767676767676767676767676764615a5044392d2014080000000a1723303d4a5663707d8996a89e918477685e5246393c4956626f7c8995ab9e918478685d52453d45515d67707d8a939e9e938a7d70675d51453d31281d1207000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8796a09f9286796d6053463c36414c5665727f8c98ab9b8e817568554b4035291d111c26303c45515c676f7c87939f9e948a7e71685e52463e32281e130800000000000000000000000000000000000815212e3b4854616e7b8790867f776e6974818e9b9e9184786b5e5145382b1e120500000000000000020b18242f3a43505a616e7b86929f9e92857a6d60594f42382e23170c030000000000000000000000000000000613202d394653606c7881838485868275665c5145403f414a5464717e8b97a4988b7e7165584b3e32251818242f3a43505a616e7b86929f9e92857a6d60594f42382e23170c03000000000000000000000000000000000000000e1a26313b47535f6974808d96a0abaea39991857b6e6a615a524c46423c3a38342e34343430353c464f59636d74818e959faaa29fa2aab3aaa0958c7f72685e52443a3025190d010000000000000000030e1a26313c45515d676f7d87939fa4aea9a19691867e756e68615e575653514a4e4e4d4e4e4b515356575f62696e767f879298a2aaafa49a92867c6f665b50443a301f160c01000000000000000000000000000000000000000000000007121d2b37424d5764717d8a97a1aa9d908377818e9baaa79b8e8174685d5245392c20130400000000000000000000000000000000000000000000000000000000000000000000000000000007121d2b37424d5764717d8a97a1aa9d908377818e9baaa79b8e8174685d5245392c20130400000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000005111d2935414c56626f7c87939f9f93877c6f665b5044414d57616c727f8b919fa3a198928b827d78757271717274777b81879297978e817d8998a3a9978b7e7164584b4a5463707d8a98a29c8f827569554c4135291d11040000000a1623303d495663707d8997a2adac9f92867a6d6054473a2e23170c000000000005111e2a36424d576673808c99a9a69f9c9fa6ab9b8e8275665c5044382c1f120600000000000913202d394653606c7985929eabaea3988a7d7164544a4034281c100400000000000000000000000000000000000000000000000000030f1b27333f4953606c7884919da8a89c9083766e6e6e6e707d8a97a3b0a99c8f8276737373737373737373737373737373737373737373737373737373737373706c6155493c3023160a0000000714212e3a4754616d7a8796a0a096877a6d61544740414d5765727f8c98ac9c8f827569564c4135414c55616b75818e97a19e91847a6d60594f43392f24180d030000000000000000000000000000000000000000000000000000000000000000000000000714202d3a46525e697784919ea398897d7063584e433f46525e6876828f9ca3998b7e7164584b3e2f24180c151e2834404b55606b74808d96a19e92857a6d615a50443a3024190d04000000000000000000000000000000000815212e3b4854616e7b8798928c827b7174818e9b9e9184786b5e5145382b1e1205000000000000000007131d28313e46525e69727f8c95a0978e81746b60544a3f34281f140900000000000000000000000000000006121f2b3844505b6677849091929285796d6058514a4c4b515b6673808d99a9978a7d7164574a3e312417131d28313e46525e69727f8c95a0978e81746b60544a3f34281f14090000000000000000000000000000000000000009141f2b37424d57606d79849199a4afaba19791847c706c615e56534d49464440414141414241464749505b606d79839098a2aeacaeb4aea2989083786d60564c4132291e13080000000000000000000009151f2935404b55606b727f8b929da4ada9a198928a817a746e696562605c545b5a5a5a5b545c606266696e747b828b9299a2aaaea39f93887e706a5f544a3f32291e0d04000000000000000000000000000000000000000000000000000e1a26313c4653606d7984919eaba095887b85929faba095897c6f63564c4135291d1104000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a26313c4653606d7984919eaba095887b85929faba095897c6f63564c4135291d110400000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000010d1925303a47535f6a75828f9aa49a9083786c60564c4145505a626d737f8a9298a0a29f948f8984817f7e7e7f8083878e92999992857b7986929fa79a8e817467564c505c6674818e9aa7988c7f7265594c3f2f24190d01000006131f2b37434e586774808d9aa9b3a99c8f8276675d5145392c1c11060000000000020e1a25303c4955626f7c8897a1adaba9abafa4998b7e7164544a3f34281c1003000000000006121f2b3844505b6674818e9babb4aa9b8e8175665c5144382c1f120600000000000000000000000000000000000000000000000000000b17222d3844505b66717e8b96a0ab9f948a7d7b7b7b7b7b7f8b98a5b1ab9e9184808080808080808080808080808080808080808080808080808080808080807e7064574a3d3124170a0000000713202d3946525e687784919ea8978a7e71645b514b4c535f6976828f9ca49a8c7f7266594c3f2f3a434f59616d7a85919ea1968e81746b60554b4035291f150b01000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576773808d9aa69b8e81746a5f554e4a5059616d7a86929f9f92867a6d6154473a2e2114070c18232e39434f59606d7984919ea1978e81756c61564c4135291f160c010000000000000000000000000000000815212e3b4854616e7b879298948f857e74818e9b9e9184786b5e5145382b1e12050000000000000000010c161f2a36424d57606d788390999f93887c6f665c50443b31251a0d040000000000000000000000000000030f1c28333f4a546774818e9a9f978b7e716a605c5459555d606c7884919da297897c6f6356493c3023160c161f2a36424d57606d788390999f93887c6f665c50443b31251a0d04000000000000000000000000000000000000030e1a26313c45515d676f7d87939fa4aea9a19691867e756e68615e575653514a4e4e4d4e4f4c5254535b60636b6f7a85929facb8bab2a89f92867c6f665c50443b3020170d0200000000000000000000030d18242f3a434f59626d74808d929ca3adaaa29f938e86807b76726f6d6669686767676869666d6f72777b81868f949fa3ababa39f918c7f726c61584e42382d20170d000000000000000000000000000000000000000000000000000009141f2c3844505c6673808c99a4a79c8f828f97a2aa9d9084776b6054443a3024190d010000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2c3844505c6673808c99a4a79c8f828f97a2aa9d9084776b6054443a3024190d0100000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000008131e2b37434e58626f7c87939f9f958b7f72685e53493f48515b636d737e8691969fa39f9c96918e8c8b8a8b8d9093999f9993877d707683909ca99d918477685d5253606d7985919ea095887b6e6155483b2e2215080000000815222e3b4754606a7884919eabb1a7988b7f7265554c4135291d0a000000000000000913202d394653606c7884919eabb8b6b9ac9f93867a6d6154473a2e23170c000000000000030f1c28333f4a5464717d8a99a3aeab9f9285796d6053463a2d22170b000000000000000000000000000000000000000000000000000006111b28333f4a54606d7884919ea8a69a8f8a88888888888b919ba7b3aca196918d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8074675a4e4134271b0e01000005111d2a36414c566673808c99a59d9083766d605c55565e656e7b87939f9f93877b6e6154483b2e313e46525d68717e8a939e9d93897d70675d51453d31271d12070000000000000000000000000000000000000000000000000000000000000000000000020e1a25303c4855626f7c88949f9f92867c6f676058545c606b73808d99a39c8f8275685e5246392d20130707121d27303d45515d67707d89939d9e938a7d70685d52453d31281d13070000000000000000000000000000000613202d394653606c787f86909597928a81818e9b9e9184786b5e5145382b1e1205000000000000000000040d1a25303b44505c666f7c87939f9a9083786d60574d42362a1f160c0100000000000000000000000000000b17222d3c4956626f7c89949f9f92857c716d66666666676d737f8c96a09f9285796d6053463a2d2013070d1a25303b44505c666f7c87939f9a9083786d60574d42362a1f160c0100000000000000000000000000000000000009151f2935404b55606b727f8b929da4ada9a198928a817a746e696562605c545b5a5a5b5c565d6163656c70757d839098a2aebab9aca0968a7e716a5f544a3f32291e0e0500000000000000000000000007131d28313d47515b606c77808c919ea1a9aea59e98928d87837f7c79777674747474747677797c7f83888e92999fa6aea8a199928b7f736d635a50463c2f261c0e05000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939fac9e948f949ea9a3988b7f7265594f4332281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939fac9e948f949ea9a3988b7f7265594f4332281e13080000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000020f1b26323c47535f6a74818e97a29f92857a6d655b50443f49515b636c717c848c92989ea1a19e9b989797989a9d9f9f9791877e716b73808c99a09f93867a6d61545b65717e8a97a19d918477695f53473a2d2114080000000916222f3c4955626f7c8896a1adaca095877b6e6154483b2f24190d0000000000000005121f2b3744505b6574818e9aaab4bfb6a99c908376685e5246392d1c1106000000000000000b17222d3a4754606d7a86929facada297897d706353493f33271b0f0300000000000000000000000000000000000000000000000000000b17222d3844505c66717e8b96a1aca19a969595959595989ba3adb8b2a8a19e9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a8d8174675a4e4134271b0e010000010d1925303b4855626e7b88939e9f958b7f736d676767686d77828f99a49c908376695e53463a2d2935414c56616c75818e97a19e9184796d60594f43392f24180c0400000000000000000000000000000000000000000000000000000000000000000000000915212e3b47535f6a76828f9aa3999083796f6a6867666d717d87929f9f94897d7063564c41362a1e1105000b151e2935404b55606b74818e97a19e91857a6d60594f433a2f24180d04000000000000000000000000000006121f2b3844505b666c727c838c9299938e8e939e9e9184786b5e5145382b1e12050000000000000000000009141f28343f4a54606a74808d97a0958c7f72695e53463e31281d130700000000000000000000000000000615222e3b4754606a76828f98a29792857e7975737273757a8088939fa1978d8074665c5144382c1f120609141f28343f4a54606a74808d97a0958c7f72695e53463e31281d1307000000000000000000000000000000000000030d18242f3a434f59626d74808d929ca3adaaa29f938e86807b76726f6d6669686767676869686d7073787d82899095a0aab4b4b7aa9e9184796d605b51473e342a20160c030000000000000000000000010c161f2b353f44505b656c747f8a92979ea6acaaa29f9a93908c898684828181808181828486898c90959a9fa3ababa49f9691877e736d635b51473e342a1d140a000000000000000000000000000000000000000000000000000000000c17232e3846535e6975828f9ca8a69e9c9ea6ac9f92867a6d6054473d3221160c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e3846535e6975828f9ca8a69e9c9ea6ac9f92867a6d6054473d3221160c020000000000000000000000000000000000000000000000000000000104000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060503000000000000000000000000000000000000000a15202b37434e58616d7a85929fa2978f81776c605a50464049515a616a6f797f868c9196999c9d9e9f9f9e9c9a98928d857d716c63707d899994949a8a7d706355606c7883909da3998c807366574d42372b1e1206000005121e2a36424d576673808c99a8b2aa9d908377695e53463a2d1e130800000000000000030f1b27333f495364707d8a98a2aeacb2a8998c7f7266564c41362a1d0a00000000000000000613202c3945515d6776828f9ca9b3a99a8d8174655b5044372b1f1205000000000000000000000000000000000000000000000000000006111c28343f4a54606d7984919ea8aba5a3a1a1a1a1a1a5a7adacacacb2acaba6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a69a8d8174675a4e4134271b0e010000000814212e3a47535f6975818e98a29f92877f79757474767a818f949f9e93897d7063574d42362a24303a44505a616d7a85929ea0968d80746b60554b40352920150a000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e58626f7c87939f9f9590837c77757475797e869299a2988f82766b6054443a3025190d0100030c18242f39434f59606d7a84919ea1978e81746b60554b40352921160a0000000000000000000000000000030f1c28333f4a545b606a6e787f8690959b9b9ea59e9184786b5e5145382b1e120500000000000000000000030b17232e38424e58606d7a84919e9f92867b6e615a50433a2f24180d010000000000000000000000000006131f2b37434e58616e7b869298a097928b8582807f8082858d939aa19892857a6d61544a4034281c1004030b17232e38424e58606d7a84919e9f92867b6e615a50433a2f24180d0100000000000000000000000000000000000007131d28313d47515b606c77808c919ea1a9aea59e98928d87837f7c797776747474747576777a7d8084898e939da0a7afaaa8abaca0968e81746d62594f463c32281e150b000000000000000000000000040d192327333f49535b606d737d858f949da0a7acaca49f9c989892918f8e8d8d8d8e8f919298999d9fa7acaca69f99938d847d716c635b51493f352c22180b020000000000000000000000000000000000000000000000000000000006111c2a36424d5763707d8a96a1acaaa8aab0a79b8e8174685d5245392c2013040000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2a36424d5763707d8a96a1acaaa8aab0a79b8e8174685d5245392c201304000000000000000000000000000000000000000000000000000004090e11131314202d3a4753606d7a8693a0acac9f9286796c5f5346392c201312110f0c070100000000000000000000000000000000040f1b26323c46525e68717e8b949e9e938c80736c61584f474048505860676d737b8084898c8f9192929291908d8a85807a706b61606d798787878787878073665d67707d8a95a09f92867b6e6154483c31261a0e0200000714212d3a46535f697784909d9f9fa9998c807366574d42362a1e120500000000000000000b17222d3a4753606d7a86929f9f9f9fa196887b6f6255483c3025190d000000000000000004111d2935414b5565727f8b98a79f9f9e9184786c605346392d2013060000000000000000000000000000000000000000000000000000000b17232e3844515c66727e8b96a19f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8d8174675a4e4134271b0e0100000006121e2b37424d57616e7b859298a299928c8582818182868f939e9f958e81756b6054453b31251e28323e46525e68717e8a949e9f93887d6f675d51453d32271b0f0300000000000000000000000000000000000000000000000000000000000000000000030f1b26323c4754606a74808d949e9f95908983818082848b9298a29992857b6e61594f4432291e130800000007121d28313d45525d68707d8a939e9d93897d70675d51453d32271b0f0300000000000000000000000000000b17222d38424a50585f666d727c838c9299a0a79e9184786b5e5145382b1e1205000000000000000000000006111c26303d45515d67717e8a949e988f82756c61554b4035291d110400000000000000000000000000030f1b27323d46535f69707d8691969e9f97928e8c8c8d8f92989f9f9691867d6f685e5242392e23180c000006111c26303d45515d67717e8a949e988f82756c61554b4035291d1104000000000000000000000000000000000000010c161f2b353f44505b656c747f8a92979ea6acaaa29f9a93908c898684828181808182838487898c91969b9ea5acaba59e9b9ea1a89d938c7f726b61584e443a30271c1207000000000000000000000000071017222d384149505b636b707b828990959c9fa4acaca9aaa39f9d9c9b9a9a9a9b9c9d9fa3aaaaababa39f9b948f878079706b625a514940372e231a10060000000000000000000000000000000000000000000000000000000000000e1a25313b4653606c7884919e9f9f9f9f9fa095897c6f63564c4135291d110400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a25313b4653606c7884919e9f9f9f9f9fa095897c6f63564c4135291d110400000000000000000000000000000000000000000000000000080f151a1d1f2020202d3a4753606d7a86939f9f9f9f9286796c5f5346392c20201f1e1c18130c05000000000000000000000000000000000a15202a36414c56626d76828f97a19f93887e716a60594f473f464e555c60696e73797c7f82848586858583817d79736d6860595d67757a7a7a7a7a7a796d60606d7984919ea49a8e8174695e53463a2a1f15090000000815222e3b4855616e7b88959393939396897c6f6256493c31251a0e02000000000000000006131f2c3945515d6775828f93939393939184786a5f53473a2e1e13080000000000000000010d18242f3b4854616e7b87959393939396897c6f6256493c2f23160900000000000000000000000000000000000000000000000000000006111c2834404a54606d7984919393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393938d8174675a4e4134271b0e01000000020e1a26313c46525e69707d8692989f9f98928f8d8d8f92999e9f9590837a6d61594f4433291f16202a36414c56616c75828f97a29a9184796d60584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000a15202b37434e58606d78828e939da09d95908e8d8e91969f9f9792877d70695f53473d3320170d02000000010c161f2935414c56616c75818e97a19e9184796d60594f44382c1f1307000000000000000000000000000006111c262f383f444e545c606a6f788087909593939184786b5e5145382b1e12050000000000000000000000000a141e2935414c55616c75828f9893948a7d70675d5145392c20130600000000000000000000000000000a15202a36424d57606b707c848c9196999c9b9999999b9d9a97928d847d6f6b60564c4130271c12070000000a141e2935414c55616c75828f9893948a7d70675d5145392c20130600000000000000000000000000000000000000040d192327333f49535b606d737d858f949da0a7acaca49f9c989892918f8e8d8d8e8f8f919696999ea1a8aaaca69f9c938e9196a1a59f93877d706a5f564c42392e2318110800000000000000000000000006111b262f383f44515961696e757d83898f939a9c9fa2aaa7a8aaa9a7a7a7a7a7a9a9a8a6a9a29e9b99928e88827c746d676059504840372e251c11080000000000000000000000000000000000000000000000000000000000000009141f2b3844505b66737f8c999393939393939084776b6054443a3024190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2b3844505b66737f8c999393939393939084776b6054443a3024190d0100000000000000000000000000000000000000000000000009121a20262a2c2d2d2d2d3a4753606d7a8693939393939286796c5f5346392d2d2d2c2b28241e170f07000000000000000000000000000000040d1925303a44505a616e7b859299a39a92867c6f6b6159504641434b51565e61666d6f737677787979787674706d67615d564f555d686d6d6d6d6d6d6d67616b74808d96a19f93877c6f62574d42362a180e030000000c1926323f4c5965727f8686868686868684786c605346392d20130900000000000000000004101d2935404b5565727f86868686868686807467584e43372b1f12060000000000000000000714212d3a46535e697783868686868686868073665a4d4033271a0d000000000000000000000000000000000000000000000000000000000c18232e3945515c67727f86868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868074675a4e4134271b0e01000000000915202a36424d56616b707d868e92999b9d9b9a9a9c9d9a97928b837a6d685d52473d3321170e1925303a44505a616e7b85929393968d80736a6054473b2e2215080000000000000000000000000000000000000000000000000000000000000000000000040f1b27323d44515c666d79818a9195999c9d9b9a9b9e9c99928e857d706b61574d42352b210e050000000000040d19242f3a44505a616d7a85929393968d80746b6054483b2f2215090000000000000000000000000000000a141d262d333c424a50585f666d737c838686868684786b5e5145382b1e1205000000000000000000000000020c19242f3a43505a616e7b8686868686847a6d6053473a2d2014070000000000000000000000000000040e1a26313b454f59606a6f797f848a8d8f9192929291908d8a8580796f6b60594f443a301e150b00000000020c19242f3a43505a616e7b8686868686847a6d6053473a2d2014070000000000000000000000000000000000000000071017222d384149505b636b707b828990959c9fa4acaca9aaa39f9d9c9b9a9a9a9b9c9ea0a8a6abacaba39f9b94908981849198a2a49992867c6e685e544a40342823190b020000000000000000000000000a141d262d3340474f575e616b70777d82878b8f9298989a9b9d9e9e9f9f9f9e9d9d9b999797928e8a86817c766f6a605d554f473e362e251c130a0000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54616e7a8786868686868686867f7265594f4332281e1308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54616e7a8786868686868686867f7265594f4332281e130800000000000000000000000000000000000000000000000008121b242b323639393939393a4753606d798686868686868687796c5f5346393939393837342f2921190f0500000000000000000000000000000008131e29323f46525e69707d87929fa29892857d706b625a524c4440454d52545c606366696a6b6c6c6b696764605c55524c444c565d61616161616160606a707d88939fa2978e81756a5f53453b31251a06000000000b1825313e4a57626d7279797979797979786c655b5044372b1f1205000000000000000000000c18242f394a56626d7279797979797979746e6458463c31261b0f0300000000000000000005121e2a36424d5767717779797979797979736e63584b3f3226190c0000000000000000000000000000000000000000000000000000000007121c2834404b55626d727979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746e64584c3f33261a0d0000000000030e1925303b444f59616b707a81868b8e9091929291908d8a857f786d685e564c41352b210f08131e29323e46525e69717e8686868686877c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000a16202834404a545c676d747d84898d8f91929292918f8c87817b706b61594f453b3123190f0000000000000008131e28323e46525e68717e8686868686887c6f6356493c30231609000000000000000000000000000000020b141c222830383f444e545c606a6f77797979797872685c5043372a1d11040000000000000000000000000008131e28313e46535f696e7979797979786d675d5145392c20130600000000000000000000000000000009141f29333d474f5860676d72787d8082848586858483807e79736d6760594f473d32281e0c03000000000008131e28313e46535f696e7979797979786d675d5145392c20130600000000000000000000000000000000000000000006111b262f383f44515961696e757d83898f939a9c9fa2aaa7a8aaa9a7a7a7a7a8a9aaa8a6aaa29f9c99928f89837d757c86929aa4a29891847a6d665c51443f352b1d140a000000000000000000000000020b141b2227353e454d525960636b70757b7e8285888b8d8f9091929292929191908e8c8a8885817e7a746f6a626058514b433d352d241c130a010000000000000000000000000000000000000000000000000000000000000000000b17222d3846525e686e797979797979797979726d6256473d32261e140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3846525e686e797979797979797979726d6256473d3220160c020000000000000000000000000000000000000000000000040f1a242d363d4245464646464545515c67767979797979797979756a5e523e454646464544403a332b21170c010000000000000000000000000000020d17202a36424d56606b727f8b929ca29792867d716c615e5650474242464a505356595c5e5f5f5f5e5d5a5753514b46413a444c5254545454545960696f7c86929aa49f92857b6e61584e4333291f1409000000000916222e3a46515b62656c6c6c6c6c6c6c6b605b53493f33271b0f030000000000000000000007121d2e3a45515b62656c6c6c6c6c6c6c67645c5247342a20150a00000000000000000000020e1a25313b45555f676a6c6c6c6c6c6c6c66635c52473b2f23170a00000000000000000000000000000000000000000000000000000000000c18232e3943515b62656c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c52473c3024170b00000000000009141f29323e474f5960686e747a7e81838485858483817d79726d665e564c443a3023190f020d17202a36424d57626c717979797979796f6a6054473b2e221508000000000000000000000000000000000000000000000000000000000000000000000000040c18232e39424b555c606c70777c80838485868584827f7b756e6961594f473e332a1f110700000000000000010c16202a36414c56616c717979797979796f6b6054483b2f22150900000000000000000000000000000000020a11171e262e343c424a51585f626a6c6c6c6c6b6860564b3f33271b0f0200000000000000000000000000010c161f2a36424d575f616c6c6c6c6c6b605d554b4035291d1104000000000000000000000000000000030d17212b353d464e555c60666d70737677787978787674716d67605d554f473d352b20160c000000000000010c161f2a36424d575f616c6c6c6c6c6b605d554b4035291d1104000000000000000000000000000000000000000000000a141d262d3340474f575e616b70777d82878b8f9298989a9b9d9e9e9f9f9f9f9e9d9c9a9898928f8b86827d76706b707e88939fa5a0968f82786d605b51473d2f261b1106000000000000000000000000020a1117232c333b42464f54596063696e7276797c7e808283848585868585848382807d7b7975716d68625f58544e45403a312b231b120a010000000000000000000000000000000000000000000000000000000000000000000006111c2a36414d565e616c6c6c6c6c6c6c6c6c65625b51443f3830261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2a36414d565e616c6c6c6c6c6c6c6c6c65625b5146342b210e040000000000000000000000000000000000000000000000000915202b363f484e5253535353514a4b555c6c6c6c6c6c6c6c6c6c6a6359464b5253535352504c453d33291e1307000000000000000000000000000000050e1925303b444f59626d73808d929da29892877e756d68615a534e47433f4446494c4f5152535252504e4a4745403935323a414647474d535b626b707b859198a29e948b7e71685e52463c3121170d030000000006121e29353f49515759606060606060605e53504941382d22170b000000000000000000000001111d29343f48515658606060606060605a58524a413622180e04000000000000000000000009141f2933434d555b5d606060606060605a58524a40352a1f1307000000000000000000000000000000000000000000000000000000000007121d27303f4951565860606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605a58524a41362b1f1408000000000000020d17202c353e474f565e61686e717577787979787674706d67605c544c443a32281e110700050e1a25303b45505a62656c6c6c6c6c6c6260584e43372b1f13060000000000000000000000000000000000000000000000000000000000000000000000000007121c273039434b515a61646b6f7376787979797775726e69615e574f473e352c21180e000000000000000000040d1925303a44505a61646c6c6c6c6c6c6360594f44382c1f1307000000000000000000000000000000000000060c141c2328303940444e54555d606060605e5c564e443a2f23170b000000000000000000000000000000040d1a26313b454d53555f606060605e53514b433a2f24180d0100000000000000000000000000000000060f19232b343d434b51545c606366696b6c6c6c6b6a6764605d55514b433d342b23190e0400000000000000040d1a26313b454d53555f606060605e53514b433a2f24180d0100000000000000000000000000000000000000000000020b141b2227353e454d525960636b70757b7e8285888b8d8f9091929293929291908f8d8b8885827e7a75706b63616c737f8c939ea79f948d80746d62594f41382d22170b000000000000000000000000000006111a202930363d44484f54565e6165666d6f7174757778787979787877767573716f6d6664605d56534e47433d352f281f191109000000000000000000000000000000000000000000000000000000000000000000000000000e1925303b444d52545f606060606060606060605f5e504a42382e23170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e38424a505e5f606060606060606060585651493f3422190f000000000000000000000000000000000000000000000000000e1a26323d4851595e606060605e575550515f606060606060605f5e595053585f6060605f5c574f453a2f24180c0000000000000000000000000000000009141f29323d47515b636e74808d929fa299928b817a706c625f57534e4745413c4043444546464543413d3a383435393a3d43474c52575f626d727d859197a1a0958f82756c62564d41342a200f050000000000010d18232d373f464a4c535353535353535246443f382f261b11060000000000000000000000010c18232d363f454a4b535353535353534e4c4741382f241006000000000000000000000000030d1721323b434a4f51535353535353534d4b4740382e24190e020000000000000000000000000000000000000000000000000000000000000b151e2d373f464a4c53535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534e4c4741382f241a0e0300000000000000050e1a232c353d444c52565e6164686a6b6c6c6b6a6763605d55504a423a322820160c00000009141f29333f4850565860606060605f56544e463d32271b0f0300000000000000000000000000000000000000000000000000000000000000000000000000000b151e2730394045505559606366696b6c6c6c6b6965615e57524d453e352c231a0f060000000000000000000008131e29323e4850555760606060606056544f473d32271b0f0300000000000000000000000000000000000000020a11171e272e343c434749515353535351504b443c32281d12070000000000000000000000000000000009141f29333b4246485253535353514745403a31281d1307000000000000000000000000000000000000081119222b303940454a5053575a5c5e5f5f5f5e5d5a5753514b45413a312b2219110700000000000000000009141f29333b4246485253535353514745403a31281d1307000000000000000000000000000000000000000000000000020a1117232c333b42464f54596063696e7276797c7e808283848585868685848382807e7c7975726e686360595a636d75818e95999999928b7f726b6053493f33271b0f030000000000000000000000000000080e171f252a33383d44484d535f605c60626567686a6b6b6c6c6c6b6a6a68666462605c605f534d47433c383229241d160d07000000000000000000000000000000000000000000000000000000000000000000000000000008141f29323b41464753534d545b60666c6c6c6c6c6a5c544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545c6a6c6c6c6c6c66605b544d4c4a463f372d23130c04000000000000000000000000000000000000000000000000111d2a36424e59636b6c6c6c6c6b64615a534d53535353535353534d535b60656c6c6c6c6b6861574c4034281c0f00000000000000000000000000000000020d17202b353f49525c646e74808c9399a29f938e857d756e6a625f5854524c49474540413f3e3e3d3d3e3f3f404045474a4e53565e61696e767e879297a1a1969083796d605a50443b3022180e0000000000000007111b252d353a3e3f46464646464646453937332d261d140a0000000000000000000000000006111b242d343a3d3f4646464646464641403c362f261d130000000000000000000000000000050f202932393f434446464646464646403f3b352e261c120800000000000000000000000000000000000000000000000000000000000000030c1b252d343a3e3f4646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646413f3c362f261d130800000000000000000008111a232c323b41464c5254585b5d5e5f5f5e5d5a5753514b443f38302820160e04000000020d17202d363f454a4b5353535353534947433d342b20150a000000000000000000000000000000000000000000000000000000000000000000000000000000030c151e272e343e44494f54565a5c5e5f5f5f5e5c5954524d46423b332c231a11080000000000000000000000020d17202c363e45494b5353535353534948443d352b21160a00000000000000000000000000000000000000000000060c151c232832373b3c444646464645433f3a322a20160c0100000000000000000000000000000000030d17212931363a3b4646464646453a39352f281f160c01000000000000000000000000000000000000000810191e272e34383f44464a4d505152535251504d4a47454039352f281f19100700000000000000000000030d17212931363a3b4646464646453a39352f281f160c01000000000000000000000000000000000000000000000000000006111a202930363d44484f54565e6165666d6f7174757778787979797878777573716f6d6665615e56544f515b606d79838c8c8c8c8c8c867d70655b5044372b1f1205000000000000000000000000000000050d141a21272c36424d575e6c6c6c6c6c6c6c6a665f5f5f5f5f5e5e66696c6c6c6c6c6c6c5e574d42362b272018130c04000000000000000000000000000000000000000000000000000000000000000000000000000001070e17202930363b424651575f666c72797979797975665c5044382b1f12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c66757979797979726c665f575146423b3229251e160e070100000000000000000000000000000000000000000000131f2c3945525e6b757979797978706c615f57514b434646424b51575f656c71787979797873685c5044372b1e110000000000000000000000000000000000050e19232d37404a525c646e737f8792979f9e97928a827b756f6a65605d565653514b4d4c4b4b4a4a4b4b4c4d4b515357585f62686d737b828b9299a19f9791847a6e675d51483e32291f100600000000000000000a131b23292e313239393939393939382d2b27221b140b02000000000000000000000000000009121b23292e3132393939393939393433302b241d140b0100000000000000000000000000000e1720272e3336373939393939393933322f2a241c140a00000000000000000000000000000000000000000000000000000000000000000009131b23292e313239393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393433302b241d140b010000000000000000000008111a202930363b4146474b4e5051525251504e4a47454039342e261e160e040000000000050e1b242d343a3d3e4646464646463c3b37322b22190f0400000000000000000000000000000000000000000000000000000000000000000000000000000000030c151d232833393d4348494d5051525352514f4c4846423b363029211a110800000000000000000000000000050e1b242c34393d3e4646464646463c3b38322b23190f040000000000000000000000000000000000000000000000030b121820262b2e2f37393939393837332f2820180f05000000000000000000000000000000000000060f171f262a2d2e3939393939382d2c29241d160d04000000000000000000000000000000000000000000070c151d23282e34383a3d4043444546454543413e3a38352f29241d160d07000000000000000000000000060f171f262a2d2e3939393939382d2c29241d160d0400000000000000000000000000000000000000000000000000000000080e171f252a33383d44484d5254545c60626567686a6b6b6c6c6c6c6b6a69676562605c5454524c484445515c676e7b808080808080807f786c605346392d2013060000000000000000000000000000000002090e16212d3a46535e69767979797979797771665b5253525a66707679797979797976695e53463a2d21160d07010000000000000000000000000000000000000000000000000000000000000000000000000000040c1318202830353e444d525b62696e787f8686868687796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7987868686867f786e69625b524d443e3530282018130c0400000000000000000000000000000000000000000013202d394653606c7987868686847d756e69605c554f46454f545c60696e777e8586868685786b5f5245382c1f1200000000000000000000000000000000000007111b252e38414a525c646d727d8590949fa19e938f87817c76716d686663605d555a59585757575858595a555d6063676a6f747a80868f949fa39e9590857c6e685e554c41362d20170d000000000000000000010a11181e2225262d2d2d2d2d2d2d2b201f1b17110a02000000000000000000000000000000000911181d2224252d2d2d2d2d2d2d2726241f1a130b02000000000000000000000000000000050e161c2227292a2d2d2d2d2d2d2d2726231f19120a02000000000000000000000000000000000000000000000000000000000000000000010911181e2225252d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2726241f1a130b02000000000000000000000000080e171e252a3036393b3e42444546464543413d3a39352f28231c150c040000000000000009121b22292e31323939393939392f2e2b2720191007000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121822282d32383b3c40434546464644423f3b3a36302a251f170f0800000000000000000000000000000009121b22282d3031393939393939302f2c27211911070000000000000000000000000000000000000000000000000000070c151b1f22222a2d2d2d2d2b2a27231d160f060000000000000000000000000000000000000000060d141a1e21222c2d2d2d2d2b20201d18130c040000000000000000000000000000000000000000000000030b12181c23282b2d30333638393939383734312d2c29241d18130c040000000000000000000000000000060d141a1e21222c2d2d2d2d2b20201d18130c04000000000000000000000000000000000000000000000000000000000000050d141a21272c33383b4246474a505355585a5c5d5e5f5f605f5f5e5d5c5a585553504a4746413b38404b555e696e73737373737373726c655b5044372b1f12050000000000000000000000000000000000000815212e3b4854616e7b86868686868683776a5d50464f5c6976828686868686867b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000070d161d2429323a414650565e616d727b828c929992877e71665c5044382b1f12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c66717e879399928c827b726d615e565046413a3229241d160d0700000000000000000000000000000000000000000b1825313e4b5864717e889396918a827b736d67615953525960666d737b828b929792877e7064574a3d3124170a0000000000000000000000000000000000000009131c262f38414a525b626b707b828c92989e9e99928e88837e7a76726f6d67696766656464646465666769676d7074777c81868d92999fa19e938e837b6e6a5f564d433a2f241b0e050000000000000000000000070d12161819202020202020201f13120f0b0600000000000000000000000000000000000000060c11151718202020202020201b1a17140e08010000000000000000000000000000000000040b11161a1d1e202020202020201a1917130e0800000000000000000000000000000000000000000000000000000000000000000000000000070d1216181920202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201b1a17140e08010000000000000000000000000000050d14191e252a2d2e313537383939383734302d2c29241d17110a030000000000000000000911181d2124252d2d2d2d2d2c23221f1b150f07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c171c21272c2f303336383939393836322e2d2a251f1a140d0500000000000000000000000000000000000910171d2124242d2d2d2d2d2d23221f1b160f0700000000000000000000000000000000000000000000000000000000040a0f1315161e202020201e1d1b17120c050000000000000000000000000000000000000000000003090e1214151f202020201e1413110d07010000000000000000000000000000000000000000000000000000070c11171c1f202427292b2c2c2c2b2a2724201f1d18120d07010000000000000000000000000000000003090e1214151f202020201e1413110d0701000000000000000000000000000000000000000000000000000000000000000002090e161c21272c30363a3b3f4446494b4d4f5051525253535251504f4d4b4946443f3b3936302f39434d565e616666666666666665605b53493f33271b0f030000000000000000000000000000000000000815212e3b4854616e7b87939393939083776a5d50444f5c6976828f93939393877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000710191f282f353e444c525a61696e767f8690949a93877e716c61544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616c717e87939a9490867f766e69615a524c443e352f281f191007000000000000000000000000000000000000000a1724303d4956626c717f8b919e948f868079706b615f5d606b6f797f868f949f93887e716c6155493c3023160a00000000000000000000000000000000000000010a141d262f384049515961696e787f868f949c9f9f9b94908b86837f7c7a77757472717170707172727376787a7d8084888e92989fa39f97928b81796e695f574e443b31281e1209000000000000000000000000000106090b0c1313131313131312060503000000000000000000000000000000000000000000000105090b0c131313131313130e0d0b0803000000000000000000000000000000000000000000060b0e1011131313131313130d0c0a07020000000000000000000000000000000000000000000000000000000000000000000000000000000106090b0c13131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130e0d0b0803000000000000000000000000000000000002080e14191e202125282a2b2c2c2b2a2724201f1d18120c06000000000000000000000000060c111517182020202020201615130f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10161b1f222327292b2c2c2c2b292621201e1a140e090300000000000000000000000000000000000000060c111517182020202020201615130f0a040000000000000000000000000000000000000000000000000000000000000003060809111313131312110f0b0701000000000000000000000000000000000000000000000000000205070813131313131207060401000000000000000000000000000000000000000000000000000000000000060b101213171a1d1e1f201f1e1d1a171413100c070100000000000000000000000000000000000000000205070813131313131207060401000000000000000000000000000000000000000000000000000000000000000000000000050b10161c1f252a2d2e34383a3c3e414244454546464645454442403e3c3a38342e2d2a2527313b444d5254595959595959595953504941382d22170b000000000000000000000000000000000000000815212e3b4854616e7b87949f9f9d9083776a5d50444f5c6976828f9c9f9f94877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000040f19222b313a41454f565e616c717b828b92989a93887e716c615a5042382e23170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3842505a616c717e88939a98928b827b716c615e564f45413a312b22190f040000000000000000000000000000000000000815212d3945505a626d727f8b919c98928c847d756e69686d747c838c92989c918b7f726c625a5044392d2014080000000000000000000000000000000000000000020b141d262e373f474f575e666d727b828990949b9f9f9c9992908c89868482807f7e7e7d7d7e7e7f808284868a8d91969b9fa39f99938d857e756d675e574e453c32291f160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080e111414181b1d1e1f1f1e1d1b171413100c070100000000000000000000000000000105090b0b13131313131309080603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f1315161a1d1e1f201f1e1c191514120e0903000000000000000000000000000000000000000000000005080a0b1313131313130909070300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306070a0d101112131212100e0b070604000000000000000000000000000000000000000000000000000000060606060605000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1014191e2023282c2d2f3234353738383939393938373634322f2d2c2823201e191f29323b4246474d4d4d4d4d4d4d4c46443f382f261b1106000000000000000000000000000000000000000815212e3b4854616e7b8794a1aa9d9083776a5d50444f5c6976828f9ca9a194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000a16212b343d434b515961686d757e858f949f9f93887f716c625a50483e30261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303e48505a626c717f88939f9f948f857e756d686159514b433d342b21160a00000000000000000000000000000000000005111d29343e48505a626d727f8c929c9f96918a827b73717a818891959f9d928c7f736d625a50483e33281c1004000000000000000000000000000000000000000000020b141c252d353e454d545c60696e757c83898f93999da09f9c999992918f8d8c8b8a8a8a8b8b8c8d8f91939a9a9ea0a19e99928e87817a716c605d554d453c332a20170d040000000000000000000000000000050a0d0f10101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010100f0d0a0500000000000000000000000002080d101213131313131313090806030000000000000000000000000000000000000000000000010407071213131313131313131313120f0a0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080b0f1112131312100e0a07060400000000000000000000000000000000000000000000060606060606000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030709090d1012131313110f0c08070502000000000000000000000000000000000000000000000000000000000006060606060600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090b0d0f1111121313121111100d0b08060603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e1114171c1f20222527292a2b2c2c2d2c2c2b2a29272522201f1c1714110d17202930363a3b404040404040403f3937332d261d140a00000000000000000000000000000000000000000815212e3b4854616e7b8794a1a99d9083776a5d50444f5c6976828f9ca9a194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d464e555d606b707a818a92979f9b918b7f726d625a50483e362c1e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e2c363e48505a626d727f8b919b9e97928a817a706b605d554e463d32271b0f030000000000000000000000000000000000000c17222d363f48515b636d737f8c929ca09e948f867f7d848d939aa09d938d80736d635b51483e362c22170b0000000000000000000000000000000000000000000000020a131b232c333b424a50575f616b6f767c82878c9196989c9fa29f9d9c9a99989797979798999a9c9e9fa39f9c9997918c86817c746d68625a514b433b332a21180e0500000000000000000000000000030a1016191c1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1c1916100a03000000000000000000060d14191c1f1f2020202020201515120f0a030000000000000000000000000000000000000001080d1113141f202020202020202020201e1b161009010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104070c10121316181a1c1d1e1f1f201f1e1d1c1a181513120f0b060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607090b0d0f1111121313121211100f0d0a08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205060c10121316181a1c1d1e1f1f20201f1e1d1c1a18161312100c0605050e171f252a2d2e33333333333333322d2b27221b140b0200000000000000000000000000000000000000000815212e3b4854616e7b87949c9c9c9083776a5d50444f5c6976828f9c9c9c94877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000007131f2c38434e5860676d747d858e939fa29b918b7f726d625a50483f362d241a0c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c1a242d363f48505a626d727f8b919ba29f938e857d746d6760584e43382c1f130700000000000000000000000000000000000006101b242d363f49515b636d73808d929da49e98928c8a91969fa49e938e81746e645b51493f362d241a10050000000000000000000000000000000000000000000000000109111a212930383f444d535960636b6f757b7f84888c8f929797999b9c9d9e9f9f9f9f9e9d9d9b99979992908c8884807a746f6a615d5650454039312920180f0600000000000000000000000000040d151c21262929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292926211c150d04000000000000000810181f25292b2c2d2d2d2d2d2d22211f1b150e060000000000000000000000000000000000040c13191d20212b2d2d2d2d2d2d2d2d2d2d2b27211b130a0100000000000000000000000000000000000000000000000000000000000000030506090c0e1011121313131211100e0b090605030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030506090c0e1011121313131211100e0b090605030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507070b0d0f111213131312110f0d0b07070501000000000000000000020608080c0f1112131312110f0c080705020000000000000000000000000000000000000000000000000000000001080d1113181c1f20222527292a2b2c2c2c2c2b2a29272422201f1c1712100c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060b10121315171a1c1d1e1f1f201f1f1e1d1b19171514120e0906030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607090b0e0f1112121313131212110f0d0b0907060300000000050d14191e20212626262626262626201f1b17110a020000000000000000000000000000000000000000000815212e3b4854616e7b878f8f8f8f8f83776a5d50444f5c6976828f8f8f8f8f877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000915222e3b4854606a6f79818a91979ea39c918c7f726d625b51483f362d241b12080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b242d363f48515b626d727f8c919ca39e97918a81796f6a6054483b2e2215090000000000000000000000000000000000000009121b242d373f49525b636e74808d929da5a39f99979ea1a69e948e81786c605c524940372d241b1108000000000000000000000000000000000000000000000000000000080f171e262e343b42464f54596063696e73777b7f8285888a8c8e8f9192929292929191908f8d8b8886837f7c78736e68625f58524c443f352f271f170e0600000000000000000000000000030d161f262d3235363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363635322d261f160d03000000000006101a222a303538393939393939392f2e2b2620181006000000000000000000000000000000040d161e24292c2d383939393939393939393937332c251c13090000000000000000000000000000000000000000000000000000000003060b0f121315181b1d1e1f2020201f1e1c1a181513120f0b0603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060b0f121315181b1d1e1f2020201f1e1c1a181513120f0b060300000000000000000000000000000000000000000000000000000000000000000000000000000000000004080d111314171a1c1e1f1f20201f1e1c1a171413110d08040100000000030a0f121415191c1e1f20201f1e1c191514120e090300000000000000000000000000000000000000000000000003090e13191d2023282c2d2f31333637383839393838373634312f2d2b28221f1c17110d0802000000000000000000000000000000000000000000000000000000000000000000000000000001070d1113171c1f20222426292a2b2b2c2c2c2b2b2a28262422211e1a1312100c060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010204050506060606050403010000000000000000000002090e1114141a1a1a1a1a1a1a1913120f0b0600000000000000000000000000000000000000000000000814212e3b4754616e7a8283838383828074675a4e414d5a6673808283838383827a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c848e9393939393918c7f726d625b51493f362d241b120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b242d363f49515b626d727f8c9193939393938e847c6f6256493c2f231609000000000000000000000000000000000000000009121b252d374049525c646e74808d939da59f9f9f9fa79f948f82786d665b504a40372e251b12090000000000000000000000000000000000000000000000000000000000050c141c232831363d44484f54575e61666a6e7276797b7e80818384858586868584848382807e7c7a76726f6c65615e56534e46413a3229241d150d0500000000000000000000000000000a151f2831383e424343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343423e3831281f150a00000000020d18222c343b4144464646464646463c3a37312a22180e0300000000000000000000000000010c1620282f35393a4546464646464646464646433e372e251b100500000000000000000000000000000000000000000000000000060b1012171b1f20222527292b2c2c2d2c2c2b29272522201f1b17120f0b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b1012171b1f20222527292b2c2c2d2c2c2b29272522201f1b17120f0b060000000000000000000000000000000000000000000000000000000000000000000000000001070c1013191d20212427292a2c2c2d2c2c2b29272421201d1913100d0701060b0f151a1f212226292b2c2c2c2c2a282621211e1a140d05000000000000000000000000000000000000000000030a0f151a1e24292c2e34383a3c3e4042444445464645444443403e3b3938332d2c28231c19130d08010000000000000000000000000000000000000000000000000000000000000000000003090e13181d2023282b2d2f3133353737383939393837373533312e2d2a26201f1c17110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080d0d0d0d0d0d0d0c060503000000000000000000000000000000000000000000000000000714202d3946525e686e767676767676746e64584c404b58636e737676767676766e685e5246392d2014070000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a67748186868686868686867f736d635b51493f372d241b1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b242d373f49515b636d737f86868686868686868174675a4e4134271b0e01000000000000000000000000000000000000000009131c252e37404a525c606c77818e93939393939393959082796d665c544a3f382e251c130900000000000000000000000000000000000000000000000000000000000000020a11171f262a32383d44484d5354575f6265666c6f717375767778797979787877767573716f6d676662605b53524c47433c3530282018120b03000000000000000000000000000005101c26313a42494e50505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504e49423a31261c100500000008141f2a343e464d51525353535353534847433c342a20150a0000000000000000000000000008131e28323a41454752535353535353535353534f4940372c21160a0000000000000000000000000000000000000000000002080d11171c1f22272b2d2f323436373939393938373634322f2d2b27221f1c17110d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d11171c1f22272b2d2f323436373939393938373634322f2d2b27221f1c17110d0802000000000000000000000000000000000000000000000000000000000000000000060b12181d1f252a2d2e313336373839393939373634312e2d2a25201d18120d11171b1f262b2e2f323537393939393735322e2d2a251f170f0500000000000000000000000000000000000000060b151a1f262b2f35393a404446494b4d4f50515252535251504f4d4b4846443f3a38342e29241e19130c0400000000000000000000000000000000000000000000000000000000000000040a0f151a1d24292c2e34383a3c3e404244444546464545444342403d3b3a36312d2c28231c19130d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c565e6169696969696967645c52473c47525c6366696969696969615e564c41362a1e11050000000000000000000000000000000000000000000000000000000000000000000000010d1a2733404c58646e747979797979797979736d635b51493f372d251b12090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b252d373f49515b636d737979797979797979746e64584c4033271a0d010000000000000000000000000000000000000000010a131c252e384044505b656c7881868686868686868683796d675d544a42382d261c130a01000000000000000000000000000000000000000000000000000000000000000000060b141a21272c32383b4246484e5355545b6062646668696a6b6c6c6c6c6b6a6a68666462605d555553504946413b373229241e160e07010000000000000000000000000000000a16212d38424c545a5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5a544c42382d21160a0000000d1925303b4650585d5f60606060606055534e463c31261b0f030000000000000000000000030c19242f3a444c52545e6060606060606060605f5a52493e33271b0f000000000000000000000000000000000000000001070d13191c23282b2d3337393c3f41434445464646454443413e3c3937332d2b28221c19130d070100000000000000000000000000000000000000000000000000000000000000000000000000000001070d13191c23282b2d3337393c3f41434445464646454443413e3c3937332d2b28221c19130d07010000000000000000000000000000000000000000000000000000000000020a11171d24292c3036393a3e40424445464646454442403e3a3936302c29241d191b22272b31373a3b3f42444546464544423f3b3a36312921170d0300000000000000000000000000000000020a111720262b31373a4145474a515355585a5c5d5e5f5f5f5f5e5d5c5a575553504a46443f38353029241e160d070000000000000000000000000000000000000000000000000000000000070c151b20262b2f35393a3f4446484a4d4f5051525253525251504e4c4a4846423d3a38342e29251e19140d0500000000000000000000000000000000000000000000000000000000000000010407070a0d10111213131211100d0b07070501000000000000000000000000000000010406070a0d0f11121213131211100e0c0908060300000000000000000000000000000000000000000000000000000000000000000000000000010d1925303b444c52545c5c5c5c5c5c5a58524a4136404a52585a5c5c5c5c5c5c54524c443b3025190d010000000000000000000000000000000000000000000000000000000000000000000000000b1824303c48535c64676c6c6c6c6c6c6c6c66635b51493f372d251b130900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b252d373f49515b63666c6c6c6c6c6c6c6c67645c53483c3024180b00000000000000000000000000000000000000000000010a131c2627333f49535b666c757979797979797979776d675d554b42392f261c140a01000000000000000000000000000000000000000000000000000000000000000000000003090e161b21272c31363a3c4247484a50535557595b5c5e5f5f5f5f5f5e5e5d5c5a585553514b4946443f3836302b262019130c0400000000000000000000000000000000000d1926323e49545e666969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969665e54493e3226190d000000101c2935414d5862696c6c6c6c6c6c6c625f584e43372b1f120600000000000000000000000b151e2935414c565d606b6c6c6c6c6c6c6c6c6c6c645a4f43372b1e1200000000000000000000000000000000000000040c13181e24292e34383a3f4446484b4e50515253535352514f4d4b4846443f3938332d29241e18130c0400000000000000000000000000000000000000000000000000000000000000000000000000040c13181e24292e34383a3f4446484b4e50515253535352514f4d4b4846443f3938332d29241e18130c04000000000000000000000000000000000000000000000000000000060c141c23282f35393a4146474a4d4f515252535352514f4d4a4746413a39352f2924262d33373c4347484c4f5152535352514f4c4846423b33291f1409000000000000000000000000000000060c141c232831373c42474c5154545c60626466696a6b6b6c6c6b6b6a69676462605b5453504a45413a352f281f18120b0300000000000000000000000000000000000000000000000000030b121820262b31373a4145474a50535557595c5d5e5e5f5f5f5e5e5d5b595755534d4946443f3835302a251e170e080200000000000000000000000000000000000000000000000000000002080d111314171a1d1e1f201f1f1e1c1a181413110d0803000000000000000000000003080d111314171a1c1e1f1f201f1f1e1d1b181615130f0a0602000000000000000000000000000000000000000000000000000000000000000000000008141e29323b4146475050505050504e4c4741382f3840474b4d5050505050504746413b32291e1408000000000000000000000000000000000000000000000000000000000000000000000000000814202b36414a53585a60606060606060605957514940372e251b1309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000109131b252e37404951575960606060606060605a58534a41362b2014080000000000000000000000000000000000000000000000010a1417222d38414a545b60686c6c6c6c6c6c6c6c6a605d554c433930271d140a020000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161b1f252a2d31373a3b3f4446484b4d4e505152525353525151504f4d4b494745403c3937332d2a251e1b150d08020000000000000000000000000000000000000f1c2935424e5a6670767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767670665a4e4235291c0f000000121f2b3844515d697479797979797979766a5f53473a2e2115080000000000000000000007121d27303945525d686d78797979797979797979766c5f5346392d2013000000000000000000000000000000000001070d161d24293035383f444649505355585a5c5e5f5f605f5f5e5c5a585553504946443f38353029241d160d080200000000000000000000000000000000000000000000000000000000000000000001070d161d24293035383f444649505355585a5c5e5f5f605f5f5e5c5a585553504946443f38353029241d160d0802000000000000000000000000000000000000000000000000070f181e262e34394045474c5254575a5c5d5f5f605f5f5e5c5a5754524c47454039352f2f383f44464e5355595c5e5f5f5f5f5d5b5954534d453b31251a0e0200000000000000000000000000070f181e262e343c43474d53555d6064666d6f71737577777879797877777673716e6c6663605c54524c45413a3128231d150c040000000000000000000000000000000000000000000000070c151d232831373c42474b5154545c60626466686a6a6b6c6c6c6b6a6a686664615f575653504a46413a3630292019130d0500000000000000000000000000000000000000000000000003090e13191d202124272a2b2c2c2c2c2b29272421201d1913100c0600000000000000060b0f13191d20212426292a2b2c2c2c2b2b29272522211f1b15120e0903000000000000000000000000000000000000000000000000000000000000000000020d1720293036393b43434343434341403c362f262e353b3f404343434343433b3936302920170d0200000000000000000000000000000000000000000000000000000000000000000000000000030f1a252f3841484c4e53535353535353534c4b4640372e251c1309010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c252e3740464b4c53535353535353534e4c4841382f251a0f030000000000000000000000000000000000000000000000000006111b262f38424a50535b60606060606060605d54514c433a31271e150b020000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1e21262b2e2d3338393c3e40424344454646464545444342403e3c3a39352f2d2b27221b19140f0a040000000000000000000000000000000000000000101d293643505c6976828383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838276695c504336291d10000000131f2c3946525f6c79868686868686867c6f6255483c2f221509000000000000000000000c18232e39424f59606d7a85868686868686868686796c605346392d201300000000000000000000000000000000040c13181f282f353a41454a5053535b60626567696a6c6c6c6c6b6a69676562605b5353504a45413a352f281f19130c0400000000000000000000000000000000000000000000000000000000000000040c13181f282f353a41454a5053535b60626567696a6c6c6c6c6b6a69676562605b5353504a45413a352f281f19130c0400000000000000000000000000000000000000000000071019212a30383f444b5153565e616466696a6b6c6c6c6c6a696764615e5653514b45413a3c41495053585f6265686a6c6c6c6c6a6865615e574d42362a1e1205000000000000000000000000081019212a30383f444e53575f62676d7175797c7e8082838485858685848382807e7b7974706d66605d56524c433d342e271e160e050000000000000000000000000000000000000000000810191e272e343c43474d53555d6064666d6f7173757777787979787877767573706e696763605c54524c46413b322a251e170e0600000000000000000000000000000000000000000000060e141a1e24292c2d3134363738393938383634312e2d29251f1c17110a03000000020a11171b1f24292c2d313335373839393938383634322f2e2b26211e1a150e09030000000000000000000000000000000000000000000000000000000000000000050e171e252a2d2e3636363636363433302b241d242a2f32333636363636362e2d2a251e170e0500000000000000000000000000000000000000000000000000000000000000000000000000000008131d262f363c40414646464646464646403e3b352e251c130a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c252e353b3e40464646464646464641403c362f261d13080000000000000000000000000000000000000000000000000000000a141d262f383f44464e5353535353535353504745413a31281f150c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12151a1e2122282b2d2f313335363738393939393837373533312f2d2c2924201f1b17110e08020000000000000000000000000000000000000000000013202d394653606c79868f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f86796c605346392d2013000000131f2c3946525f6c79859293939393887b6f6255483c2f22150900000000000000000005101c2834404b54606b74818e979393939393939386796c605346392d2013000000000000000000000000000000070d161d2429313a40454c52545c6063656c6f727476777879797978777674716f6c6563605b54524c45413a3129241e160e070000000000000000000000000000000000000000000000000000000000070d161d2429313a40454c52545c6063656c6f727476777879797978777674716f6c6563605b54524c45413a3129241e160e070000000000000000000000000000000000000000071019232b333b424a50555d6065686d717375777879797978777573716d6865605d55524c44464e535b60646a6e727577787979787775726e695e53463a2d211407000000000000000000000008111a222b333c424a50585f62696e747a7e8185888b8d8f90919292929291908f8d8a8885817d79736d68605d564f454039302820160e050000000000000000000000000000000000000009111a222a303940454e53575f62676d7175797b7d8082838485858685858483817f7d7b7874706d66615e56524c443e36302920180f070000000000000000000000000000000000000000060f181f262b3035393a3d404344454646454443403e3a3935302c28231c150c0802070b141b22272b2f35393a3d40424445454646454443413f3c3b37322e2b26201a150e060000000000000000000000000000000000000000000000000000000000000000050d14191e20212929292929292726241f1a13191f23262729292929292921201e19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000010b141d252b303334393939393939393933322f2a231c130a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c232a2f323339393939393939393433302b251d140b01000000000000000000000000000000000000000000000000000000020b141d262d333839424646464646464646443a39352f281f160d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205090e1214171c1f2022242628292b2c2c2c2c2c2b2b2a2927252220201d1813120f0b060000000000000000000000000000000000000000000000000013202d394653606c7986939c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9386796c605346392d2013000000131f2c3946525f6c7985929f9f9f95887b6f6255483c2f2215090000000000000000050e1b242c3845515c666f7c88939fa99f9f9f9f9f9386796c605346392d201300000000000000000000000000000810191f282f353e434b51565d60666d7074787b7e81838485868686858482807e7b7874706c66605d56514b433e353028201910080000000000000000000000000000000000000000000000000000000810191f282f353e434b51565d60666d7074787b7e81838485868686858482807e7b7874706c66605d56514b433e35302820191008000000000000000000000000000000000000050e19222b353d454d545c60676d72767a7e80828485858686858482807d7a76726d67605d565050585f656c71767b7f82848586868584827f7b6e6154483b2e2115080000000000000000000007111a232b343d454d545c606a6e757b81868a8e929897999c9d9e9e9f9f9e9e9d9c9a9797928e8985807a736d686059514b423a322820170e05000000000000000000000000000000000009121b232c343c424b51585f62696e747a7d8185888a8c8f9091919292929191908e8c8a8884807d79736d68615e565046413a322a211910070000000000000000000000000000000000020a1117212a31373a4145474a4d505152535252514f4d4b4746413a38342e261e19130d12181d262d33373a4145474a4d4f51525253525251504e4b4947433c3a37312b2620180f06000000000000000000000000000000000000000000000000000000000000000002080d1114141d1d1d1d1d1d1b1a17140e080e1317191a1d1d1d1d1d1d1414110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b131a202427272d2d2d2d2d2d2d2d2625231e19120a010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a12191e2325262d2d2d2d2d2d2d2d272724201a130b020000000000000000000000000000000000000000000000000000000000020b141c22282b2d353939393939393939372d2c29241e160d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000206060b0f121315181a1b1d1e1f1f20201f1e1e1d1c1a18161413110d07050300000000000000000000000000000000000000000000000000000013202d394653606c7986939f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9386796c605346392d2013000000131f2c3946525f6c7985929faca295887b6f6255483c2f22150900000000000000020c16202b37424d57606d7983919aa4afacacacac9f9386796c605346392d20130000000000000000000000000009111a222b313a41454f555d60686d73797d8185888b8d8f919292939292918f8d8b8885817d78726d68605d555046413a322b221a11090000000000000000000000000000000000000000000000000009111a222b313a41454f555d60686d73797d8185888b8d8f919292939292918f8d8b8885817d78726d68605d555046413a322b221a110900000000000000000000000000000000020d17202b343d474f575f666d72797e83878a8d8f909292939292918f8d8a86837e79736d68605b5a626a6e787d83888c8f9192929292908e8c8275685b4f4235281c0f000000000000000000050f19232b353d464e575f666d727c81878e92999b9fa2aaa6a8aaa9a8a7a7a8a9aaa9a6a9a29e9a97928d85807a706b605c544c443a322920170c0300000000000000000000000000000009121b242d353e464e545c606a6f757b81868a8e929797999b9d9d9e9f9f9f9e9d9d9b999796918d8985807a746e68615a524c443c332b22191007000000000000000000000000000000020b141b2227333c42464c5254575a5d5e5f5f5f5f5e5c5a5754524c46443f38302a251e171d24292f383f44464c515457595c5d5e5f5f5f5e5e5c5a5855534e4847423c37312a2117110a020000000000000000000000000000000000000000000000000000000000000000010507081010101010100e0d0b08030002070a0c0d1010101010100807050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080f14181a1b2020202020202020191916120d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070d1216191920202020202020201b1a18140f080100000000000000000000000000000000000000000000000000000000000000020a11171c1f20282d2d2d2d2d2d2d2d2a21201d19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030606090b0d0f101112131313121211100f0d0b090706040100000000000000000000000000000000000000000000000000000000000013202d394653606c798693939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939386796c605346392d2013000000131f2c3946525f6c7985929faca295887b6f6255483c2f2215090000000000000008131e28323a47535f69737f8c95a0acb6b8b9beac9f9386796c605346392d201300000000000000000000000009121b232c343d434b515961676d737a7f848a8e92979899969494989298949496999897918e89847f7a736d67615a524c443d342c231b1209000000000000000000000000000000000000000000000009121b232c343d434b515961676d737a7f848a8e92979899969494989298949496999897918e89847f7a736d67615a524c443d342c231b120900000000000000000000000000000008141e29323d464f5960696e787f858b90939a999c9d9e9f9f9f9f9d9c9a9992908b85807a726c65636c717c838a9095989b9d9f9f9f9f9d9b8e8275685b4f4235281c0f0000000000000000030d17212b353d474f5860696e787f868e93999fa3ababaca8a9a29e9d9b9b9a9b9c9d9fa3aaa9aba9a19e98928c857d736d665d564c443a32291e150a000000000000000000000000000007101b242d363e474f585f666d737c82878e92989b9ea2a9a6a8aaa8a7a6a6a6a7a8a9a8a6a8a19e9a97928c86807a716c615e564d453c342b22190e0500000000000000000000000000000a141d262d333f454d53565d606467696a6b6c6c6b6b696764615e5653504a423e36302920272f353e41495053555d606466686a6b6c6c6c6b6b696765625f5855534e47423c3328221c140b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080b0d0e13131313131313130d0c0a0602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002060a0c0d13131313131313130e0d0b08030000000000000000000000000000000000000000000000000000000000000000000000060b0f12131b20202020202020201d1413110d08010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013202d394653606c798686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686796c605346392d2013000000131f2c3946525f6c7985929faca295887b6f6255483c2f221509000000000000030d1925303a44505a616e7b86929fa7afacabadb3ac9f9386796c605346392d2013000000000000000000000009121b242d353e464e555d606c707980868c91969a97918e8c8988878685868788898c8f91979a96918c868079706c615d564e463e352d241b120900000000000000000000000000000000000000000009121b242d353e464e555d606c707980868c91969a97918e8c8988878685868788898c8f91979a96918c868079706c615d564e463e352d241b120900000000000000000000000000020e1925303b444e58606b6f7b838b92979c9fa4a9a19e9c9a9a999a9c9ea1a39f9c97928d857e776e6d737e8690959d9fa7a8aba49f9f9f9f9b8e8275685b4f4235281c0f00000000000000010b151f29333d474f59606a6f7b838c92999fa4abadaaa29f9b979792908f8e8e8e8f909298989d9fa7acaaa29f97918880786d685e564c443a30261c1106000000000000000000000000050e19222d363e485059616a6f7980878f93999fa3aaabaaaaa29f9d9b9a9a999a9a9b9d9fa2aaa9aba9a19e98928d857e756d685f574e463c342a20170c0300000000000000000000000006111b262f383f4451575f61686d7073767778797978777673716d6864605c545046413a322a313940454f535b6064676d707375777878797978777674726f6a67625f57534d453f332d261d140b0200000000000000000000000000000000000002080d10121313131313131313131313131313131313131313131313121211100e0b09070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060f131313131313131311070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090c0f111213131211100e0c0a07060401000000000000000000000000000000000000000000000000000000000013202d3946535f6c767979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979766c5f5346392d2013000000131f2c3946525f6c7985929faca295887b6f6255483c2f2215090000000000010b151f2a36414c56626c76828f98a3aca49f9ea1a9b39f9386796c605346392d20130000000000000000000007111b242d363e474f5860676d747d848c929897928d8985827f7d7b7a7979797a7b7d7f8285898d929798928c857d756d6860584f473f362d241b11070000000000000000000000000000000000000007111b242d363e474f5860676d747d848c929897928d8985827f7d7b7a7979797a7b7d7f8285898d929798928c857d756d6860584f473f362d241b110700000000000000000000000005111e2a36414c56606a6f7d8590959ea1a9a29e9997928f8e8d8d8d8f9197999ea1a29f97928b827a747f8b92989fa7a9a19e999993929292998e8275685b4f4235281c0f0000000000000007121d27313b454f59606b707c8590959fa3abaea9a19e98928e8a87858382818181828386888b90959b9fa4aca9a19a938d837a6d685e564c42382e23170d0400000000000000000000020d17202b343e48505a616b707c838c92999fa4abaca7a09d999892908f8d8d8d8d8d8f909298989c9fa4abaaa29f97928a827a6e6960584e463c32291e150b0000000000000000000000000b17222d384149505b62696e747a7d808384858685858482807e7a76716d66615a524c443b333a434b515961656c71757a7d80828485858685858483817e7c78746e6a625f5751443f382f261d140a0000000000000000000000000000000000060d14191c1f1f202020202020202020202020202020202020202020201f1e1e1c1a18161413100c070501000000000000000000000000000000000000000000000000000000000003080c0e0e131313131313130f0e0c09040000000000000000000000000000000000000000000000000000000000000003070b0d0e131313131313130e0e0c080300000000000000000000000000000000000000000000000000000000000000000001040707090c0e101111121313121211100f0d0b0907060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f131516191c1e1f1f201f1e1d1b19161413110d0801000000000000000000000000000000000000000000000000000000121e2b37434f5a646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e12000000131f2c3946525f6c7985929faca295887b6f6255483c2f221509000000000007121d27313946525e68717e8b949faaa49a939297a1ad9f9386796c605346392d2013000000000000000000060f19232d363e485059616a6f79818a919797918b85817c797572706e6d6d666d6d6e707275797c81858b919697918a817a6f6a615951483f362d23190f060000000000000000000000000000000000060f19232d363e485059616a6f79818a919797918b85817c797572706e6d6d666d6d6e707275797c81858b919697918a817a6f6a615951483f362d23190f0600000000000000000000000714202d3946525e686f7c869297a0a7a49d97928c888582818080808285888c91969ea1a29f948f84818c919fa3aaa39f97928d898685858687898275685b4f4235281c0f000000000000000c18242f39434d57606b707d8692979fa7aeaba39f96918b86817e7b7876757474757677797c7f83888e939a9fa7aca49f9590837a6d685e544a3f34281f160c0100000000000000000009141f29323d46505a626c717d8690959fa3ababa49f9b95908c898584828180808081828385888b8f93999fa2aaa9a19e938f847b6f6a60584e443b30271d120700000000000000000000030f1b27333f49535b606d727b81868a8d909192929292918f8d8a86837e78716c615e564d453c444c555d606c70787d82868a8c8f909192929291918f8d8b8884807b756e69625b504a42382f261b11060000000000000000000000000000000810181f25292b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2a29272523201f1c1813110d08020000000000000000000000000000000000000000000000000001090f14181a1b202020202020201c1b191510090200000000000000000000000000000000000000000000000000000001080e1317191a202020202020201b1a18140f0901000000000000000000000000000000000000000000000000000000000206080d11131416181a1c1e1e1f1f201f1f1e1d1b1a18161312100b060603000000000000000000000000000000000000000000000000000000000000000000000000060a0e1011131313131313100f0d0a05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c10151b1f222226292a2b2c2c2b2b2a28252321201d19130c0400000000000000000000000000000000000000000000000000000f1b27333e49525a5f60606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605f5a52493e33271b0f000000131f2c3946525f6c7985929faca295887b6f6255483c2f22150900000000020b18232f39434f59616d7a85929ea6a99f938785929eab9f9386796c605346392d20130000000000000000030c18212b353e48505a626b707c848e9398928c857f7974706c6666636161605c6061616366666c7074797f848b9298938e857c706b625b51483e352b21180c03000000000000000000000000000000030c18212b353e48505a626b707c848e9398928c857f7974706c6666636161605c6061616366666c7074797f848b9298938e857c706b625b51483e352b21180c0300000000000000000007131f2c38444f59616e7a859198a2a9a39f928d85807b78757473737475787b7f848b91969ea59f96918d929ca4a9a199928c85807c797878797a7d7e7164574a3e3124170b00000000000004101d2935404b555e69707d879298a2a9b1a8a099928c847f7a75716e696a6868676869666d6f72767b818790959da4afa79f9590837a6d665c50443e31281d13070000000000000000030d1925303b444e58626c717e879298a0a7afa79f99938e88837f7c79777574737373747577797c7f83878d92989ea5ada59e9691857c6f6a5f564c42392e23180c030000000000000000040f19232b3744505b656c747f868d92989a9c9d9e9f9f9e9e9c9a9992908a847e756d685f574e464c565d676d747d838a8f9299999b9d9e9f9f9f9e9e9c9a9896918d87817b726d605b544a41382d22170b040000000000000000000000000006101a222a30353839393939393939393939393939393939393939393939393838373634322f2d2c2923201d19130f0a0300000000000000000000000000000000000000000000030b131a202427282d2d2d2d2d2d2d292825211b140c0300000000000000000000000000000000000000000000000000020b12191f2326272d2d2d2d2d2d2d282724201a130b0300000000000000000000000000000000000000000000000000040a0f1214191d2021232527292a2b2c2c2c2c2b2b2a28272522201f1c1715120f0a050200000000000000000000000000000000000000000000000000000000000000040b11161a1d1e2020202020201d1c1916100a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181d1f272b2e2f3235373839393837363532302d2c29241e160d04000000000000000000000000000000000000000000000000000a16212c3740494f535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534f4940372c21160a000000131f2c3946525f6c7985929faca295887b6f6255483c2f221509000000000a141d2934404b55606b74818e97a1ada1978e8183909da99f9386796c605346392d201300000000000000000b151e2a333d47505a626c717d8691969490867f79726d6763605b54565554535053545556545b6063676d72797f858f949791867d726d625a50473d332a1e150a0000000000000000000000000000000b151e2a333d47505a626c717d8691969490867f79726d6763605b54565554535053545556545b6063676d72797f858f949791867d726d625a50473d332a1e150a0000000000000000000915222f3b4854606b75818e97a1aaa399928a8079736e69696767666769696e73797f848e939fa3a19e9a9da4a8a09691877f79736f6d67666c6e70716c6155493c3023170a000000000005101a232c3945515d676e7b859299a2aab1a79f9691878079726d6764615e575c5b5b5b545c6062656a6e747c838d929fa3aba7a0959082786d60594f433a2f24180d02000000000000010b151f2a36424d56606a717e889299a2aaafa49c959087817c77726f6d6668676766676768666c6f72767b80868e939fa3aaa8a09792867c6f685e544b40342820150900000000000000000b16212c38444f59606c77818b92999fa2aaa9a8a09e9c9b9c9d9fa29f9c96918a827a6e695f584e555d686d79818a90959c9fa3aba39f9e9c9b9c9d9ea1a9a8a19e99938e867f746c665b53493f332720150a000000000000000000000000020d18222c343b4144464646464646464646464646464646464646464646464645454443413e3c3a38342f2d29241e1a150f0a0400000000000000000000000000000000000000010b151d252b303435393939393939393534312c261e150c000000000000000000000000000000000000000000000000000b141d242b303334393939393939393534302b251d150b0100000000000000000000000000000000000000000000070c10151a1f2124292c2d303234363738383939393838373533322f2d2b2823211f1b15120e090300000000000000000000000000000000000000000000000000000000050d151c2227292a2d2d2d2d2d2d292926211c150d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070d151d24292c32373b3c3f4244454646454443413f3d3a39352f281f160c0100000000000000000000000000000000000000000000000005101b252e373e4346464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646433e372e251b1005000000131f2c3946525f6c7985929faca295887b6f6255483c2f22150900000006111b262f3845515c67707d89939ea9a69e91857a84919daa9f9386796c605346392d20130000000000000007121d27303c454f59626c717e879298938c827b726d67605c5553504a4d505152535352514e4a5053555c60676d727b828b929892877f726c61594f453c30261c11060000000000000000000000000007121d27303c454f59626c717e879298938c827b726d67605c5553504a4a484746444647484a4a5053555c60676d727b828b929892877f726c61594f453c30261c11060000000000000005111d2a36414c56636f7c89939ea9a59f92877e746d67625f575b5a5a5a575f62666d7279818c9299a3aba7a9aca09691847c736d6762605c5b60616364615a5045392d21140800000000000b16212b37434e58606d79839097a1abb1a79f9590847c736d67605d5554524d4f4e4e4e4a505355585f626a6f78808a9299a3aba79f948d80736b61554b4035291f140900000000000007121d27313946525e696f7c86929aa3ababa39f928d837c756f6a6662605c545a5a5a5a5a545b606265696e747b818a9298a2a9a9a19891847a6e665c51453c31261a0e0500000000000003101b27323b4854606b73808c939fa3aba9a19e9896918f8f8f909297989d9f9e938f847b6e6a5f565d676d7a838e939da0a7a59e9b999291908f8f909297979c9fa6a49f98928b81786c655b50443c32261b0f05000000000000000000000008141f2a343e464d5152535353535353535353535353535353535353535353535251514f4d4b494745403a3935302b26201b150c0700000000000000000000000000000000000009131d272f373c40414646464646464642413d3730271e0e050000000000000000000000000000000000000000000000030d1d262e363c3f414646464646464641403c372f271d13090000000000000000000000000000000000000000070c12181c1f262b2e2f35393a3c3f414344444546464545444342403e3c3a38342e2e2b26211e1a140f0a0400000000000000000000000000000000000000000000000000040d171f272e3336373939393939393635322d261f160d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a10191f272f35383c4347494c4f515252535251504e4c494745413a31281e13080000000000000000000000000000000000000000000000000009131c252c33373939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393937332c251c130900000000131f2c3946525f6c7985929faca295887b6f6255483c2f2215090000000b17222d38414e58606d7984919ea5aa9e948a7e7885919eab9f9386796c605346392d2013000000000000000c18232e39434d57606b717e8b929992887f786e69605d55514b5153575a5c5e5f5f5f5f5d5b5854524d51555c60696e767f879298928b7e716b60574e42382e23170c030000000000000000000000000c18232e39434d57606b717e8b929992887f786e69605d55514b514f4b443b3a3a383a3a3b3d3f44464b51555c60696e767f879298928b7e716b60574e42382e23170c030000000000000713202d3946525e6875828f9ca5ab9e938b7e716c605d55534d4e4d4d4d4d53545c60676d757f87929facb4b7aa9e91847b6f6a605d55535150535456575550483e33281c11050000000004101c27333a47535f6a74808d95a0a9b2a89f9590837a6f6a605c55514b484642424141423f4446494e53585f666d737e879299a4afa69f93887d70675d51453b30251a0e0200000000000c18232f3943505a616e7b859198a3acaca399928b80786f6a625f585653504a4e4d4d4d4e4a505355575e61696e757e869297a2aaaaa1969082786d60574e42372b21170b0000000000000713202c38444f5963707d88939fa5aea69f97918c87848382828385888b90959d9e9691857c6e685e606d798390959da5a8a09d938f8a86848382828385878b8f949da0a7a29f938e81776c60584e43372b21160b00000000000000000000000d1925303b4650585d5f6060606060606060606060606060606060606060605f5f5e5d5c5a585653514b4746413a37312b262018120b03000000000000000000000000000000030f1a252f3941484d4e535353535353534f4d4942393020170d02000000000000000000000000000000000000000000010b151f2e3840474c4d535353535353534e4d4841392f251a0f030000000000000000000000000000000000030b12181c23282c31373a3b414547494b4d4f5151525253525251504e4d4b4946443f3c3a37312d2a251f1b160f0a0400000000000000000000000000000000000000000000000b151f2931393f424446464646464643423e3831281f150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b131c222b31394045474e5455595c5d5e5f5f5e5e5d5b585654514c433a2f24190d01000000000000000000000000000000000000000000000000010a131b21272b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a0100000000131f2c3946525f6c7985929faca295887b6f6255483c2f2215090000040f1b27333f49535f6a73808c96a0aca2988f82757985929fac9f9386796c605346392d201300000000000004101c2834404b555f69707d87929892877e726c665f57514d53555c606467696b6c6c6c6b6a6865615e57544f51575e616d727d86929792877d706a5f544a3f3428201509000000000000000000000004101c2834404b555f69707d87929892877e726c665f57606060605e5c564e44392d2c2d2e323f49515759606060575e616d727d86929792877d706a5f544a3f34282015090000000000000714212e3a4754616d7a86929faca3998e81756d625a514b47424140404142474b51555e69707c86929facb8b0a3968a7d70696058514b46454446474a4a49453e362c22170c00000000000714202c38444f59626e7c87929fa7b1aaa1969083796d685f58514b45413b3a363035342e34383a3c43474e545c606c717e87939fa5afa49a9185796d60574d42362a1e11050000000004101c2934404b55616c76828f97a1aaafa49a92877e736d665f58534e4946443f41404040413f4446484d53565e616c717c859298a2aca89f948d80736a5f53473e33281c100400000000000916222f3b4854606b7683909aa4afa89f948f847f7a7776757676787b7f838990959c9791847a6d666c75818f959fa7a79f959189827e7a7776757676787b7e828990959ea5a59d938c7f736a5f53473d33271c100400000000000000000003101c2935414d5862696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6b6a69676562605c5554524c47433c373228231d150c0700000000000000000000000000000814202b37414b53595b606060606060605c59544b4232291f140900000000000000000000000000000000000000000007121d2731404a52585a606060606060605b59534b41372b20140800000000000000000000000000000001070c151d23282e34383c4347484c525456585a5c5d5e5f5f5f5f5e5e5d5b5a585553504a4847433c3a36312b27201b150d0802000000000000000000000000000000000000000006111c27313b434a4f51535353535353504e49423a31261c1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b141c252e343d434b515358606265686a6b6c6c6b6a69686563605d554c4135291d110400000000000000000000000000000000000000000000000000010910161b1e202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201e1b161009010000000000131f2c3946525f6c7985929faca295887b6f6255483c2f22150900040d1a232b3744505b656f7c87929fa8a79f92867b6e7986939fac9f9386796c605346392d20130000000000050f1a232c3845515c676e7b85929992867d716c605b544d51575f61676d70737677787979787775726e69636059524d525b626b707c85929892857c6e665c50443c31261a0f04000000000000000000050f1a232c3845515c676e7b85929992867d716c605b63666c6c6c6c6b6760564b3f331f25303b44515b62656c6c6c6c6c67646b707c85929892857c6e665c50443c31261a0f0400000000000b1825313e4b5864717e8b99a3ac9f92867b6e625a504540393731343331373c45515c676e7b859299a3aeabaea99c9083786c60564c413a3838393b3d3e3c39332c241a100500000000000916232f3c4855616b76828f99a3afaea39891847a6d675e564e454039352f2d2a25282823282c2d31373c424a505a616c727f8b939ea8aca1978c8073695e52463a2d2014070000000006131f2c3845515c67707d8a949fa9b0a69f93887e716c605c544e47433c3a38342e3433342d3338393c42464d525a616a6f7c86929aa4afa69f92877b6e62594f44392d20150a00000000000a1623303d495663707c89949facaca0958f827a726d686968696a696e72767d838c929f968f82786d717e8b939ea7a79f9590837d75716d676968696a696e71767d838e939ea5a59f92877c6f62594f44382c20140700000000000000000005121f2b3844515d697479797979797979797979797979797979797979797979797878777674716f6d6764615d56534e47433c342e271e191008000000000000000000000000000c1824303c48535d64686c6c6c6c6c6c6c68655d54443b3025190e0000000000000000000000000000000000000000000c18232f3943525c64676c6c6c6c6c6c6c68645d53483c3024180c0000000000000000000000000000030b12181e272e34394044464e5355565d60636567696a6b6b6c6c6c6b6b6a68666562605c5455534e4846423b37322b262019130c04000000000000000000000000000000000000000a16222e39434d555b5d6060606060605c5a544c42382d21160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131c262e3740464f555d60656a6f7275777879797877767472706d675d5145392c201306000000000000000000000000000000000000000000000000000000050a0f1213131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313120f0a0500000000000000131f2c3946525f6c7985929faca295887b6f6255483c2f221509010c161f2a36414c56606c77839099a3aba0958c7f726d7a879aa4af9f9386796c605346392d201300000000000b16212b37434e58606d7983919792877d706b615a504d555c60696e74797d8082848586868584817f7b76706b605d564e5159606a6f7c8692979083786d60584e43372b21160a0000000000000000000b16212b37434e58606d7983919792877d706b615a636d72797979797772675c4f43372a2a36414d56626d727979797979746e646a6f7c8692979083786d60584e43372b21160a00000000000e1b2834414e5b6774818e9aaba99c8f8276695f53483f352f2b262727313c46515b606d79839097a1aaa29fa2aa9f948b7e71685e52463c322b2d2e3031302d28221a1208000000000005121e2a36424d5763707d89949fabb2a89f92867c6f685e554c443c342e2924201e1a1b1b171c1f20262b30383f44505a626d75818e96a0aca79f92867b6e6154473b2e21140800000003101c28343f4a54606d7984919ea6b0aa9e948c7f736c625a504a423c37322d2c282327272722282b2d31363b42465058606a707e88939fa8aea3998f82766c6155493c31261b0f0000000004101d2935404b556774808d9aa6b0a99d91837a6d68615e565c5c575f61656b7078808b9399948c7f737a85929fa5aba095908279706b64605d555c5c565e61646b7079818e939ea8a3999083776b6054483c2f22160900000000000000000006131f2c3946525f6c79868686868686868686868686868686868686868686868685848482807e7c7975716d68625f58534e454039302a221a11090000000000000000000000000e1a2734404d59646f7479797979797979756f65564d42362a1c11060000000000000000000000000000000000000004101c2934404b55646e7479797979797979746f64594d4034271a0e00000000000000000000000000040d151d2329303940454a5153585f6266686d6f7274767777787979787877767573716f6d6666625f5854534d47433d373129241e160e060000000000000000000000000000000000010e1a27333f4a555f676a6c6c6c6c6c6c69665e54493e3226190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101b252e384049515960676d71777c7f8284858586858483817f7d796d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929faca295887b6f6255483c2f22150907121d28313946525e68727e8b949faba3999083786d6e7a8794a1b69f9386796c605346392d20130000000004101c27333a47535f6a73808c95928b7f726b6159504d575e676d737b81858a8d8f9192929292908e8b87827d756d685f584e4f58606a707e8793958c7f726a5f53473d32271b0f040000000000000004101c27333a47535f6a73808c95928b7f726b61595966727f8686868684776b5e51443826303846525e68727f8686868686817467606a707e8793958c7f726a5f53473d32271b0f0400000000101d2a3743505d6a7683909da9a5988c7f7265574d423629241d1a242f39434e58626d74818e959fa9a29892989fa69e92857a6d61584e43372b2021232423211c1710080000000000000714212d3a46535e6975828f9ca6b0aca0968c7f736a60564c433a3228231d1814120e09060c1012131a1e262e343e48515b606d7984919ea09d95908a807366594d4033261a0d00000006121f2b3844505c66727f8c96a0acaea2988f82776c605a50443f38302b26201f1c171a1a1a171c1f20252a30363e464e58616c73808d96a1acab9f948a7d7064584e43372b1d120700000006131f2c3945515d677784909daaada1978a7d70675e56524c4f4f4d53555960666d737e87939f92867b7f8c97a2ada39990837a6d67605954514c4f4f4d52545960676d78818f96a0a49f95897d7063564a3d3023170a00000000000000000006131f2c3946525f6c7985929393939393939393939393939393939393939399929291908f8d8b8985827e7a756f6a625f58514b433c342c231b120900000000000000000000000e1b2835414e5b687481868686868686868175695e5246382d22170b0000000000000000000000000000000000000006131f2c3845515c677480868686868686868174685b4e4135281b0e000000000000000000000000050e161f272f343d434b51545c60646a6e72767a7c7e808284848585868585848381807e7c7976736f6a66615e57544e47433c3530282017110a0200000000000000000000000000000003101d2936424f5b6771777979797979797670665a4e4235291c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c19222d37404a525b636b6f797e84888c8f909192929191908e8b897f7266594c3f3326190c0000000000000000000000000003080c0e0e131313131313130f0e0c09040000000000000000000000000000000000000000000000000000000000000003070b0d0e131313131313130e0e0c0803000000000000000000000000000000000000000000000000000000000406070b0e11121313131313130c0c0a0602000000000000131f2c3946525f6c7985929faca295887b6f6255483c2f2215090b18242f39434f59616e7a85929fa6a89f92877c6f666e7b8894a1ac9f9386796c605346392d2013000000000714202c38444f59626f7c8792968e81746d62594f4d575e696e7980868d92989a9c9b999898999b9b9a938f89827a6f6a5f574d4e58616c737f8c9592867c6e62594f43382c20150a000000000000000714202c38444f59626f7c8792968e81746d62594f5966727f8c93939184776b5e5144382e38424f59616e7b8692939391857a6d6058616c737f8c9592867c6e62594f43382c20150a00000000121f2b3845525e6b7885919eaba295897c6f6256493c31231817202935404b555f6a727f8b939da7a298928590949fa1978e81746a5f53473c32261b17171714110c05000000000000000815212e3b4854616e7b87939facb2a89d9184796d60584e443a31292018120d0705020000000306090c151c2328363f45515d676f7d899395908a837e776c605346392d2013060000000713202d3a4653606d7884919ea8b2a99f92867b6e655b50483e342e261e1b1312100c060d060b0f12131a1f252a343d46505a606d7984919ea8b0a69c8f83766a5f5347392e23180c0000000714202d3a4753606d7a86939facab9e9285786c60554c464142434246484f545c606c727f8b9398908385929ea9ab9f92877c6f685d554f47454142434246474f555d666d7984919b9a93908c8276695c4f4336291c1003000000000000000006131f2c3946525f6c7985929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa39f9e9e9d9c9a9898928f8b86817c756f6a605c554e463e352d241b1209000000000000000000000916232f3c4956626f7c89959393939392867b6e61544a3f33281c0f030000000000000000000000000000000000000714202d3a4753606d7985929393939395897c6f6356493c302316090000000000000000000000050f172028313940454f555c60666d71777b7f8386898b8d8f9091929292929191908e8d8b8885827f7c77736e69626058534e46413a3228221c140b03000000000000000000000000000004111e2a3744515d6a77838686868686868276695c504336291d10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e2b343f49525c646d737c848b9095989b9d9e9f9f9e9d9c9b988c7f7266594c3f3326190c000000000000000000000001090f14181a1b202020202020201c1b191510090200000000000000000000000000000000000000000000000000000001080e1317191a202020202020201b1a18140f0901000000000000000000000000000000000000000000000001070c101314171b1e1f202020202020191816120d070000000000131f2c3946525f6c7985929faca295887b6f6255483c2f22150a141d2935404b55616b75818e97a2aca1968d80746a626f7b8895a2ac9f9386796c605346392d2013000000000916232f3c4855606b768390999184796d605b514b555e696e7b838d92999f9c96918e8c8b8b8c8e92979e9c938f847c6f695f564c505a606d788390988f82766b6054483d32271b0f000000000000000916232f3c4855606b768390999184796d605b514c5966727f8c999e9184776b5e514438343f4a54606b75818e989e948a7e71685d525a606d788390988f82766b6054483d32271b0f00000000131f2c3946525f6c7985929faca194887b6e6155483b2e22151f29333b45515d676f7c86929fa5a49a92867b829099a39f93877c6f62584e43372b20150a0a0805000000000000000005121e2a36424d576673808d99a4afaca0968a7e71665c51463c32281f170e0700000000000000000000030a1117242935414b55606b75818e8a837d78706c655b5044372b1f1205000005111e2a36414c5664707d8a96a1adada1978c7f72695e53493f3628231c140c0a060300000000000306090e1419222b343e45515d67717e8a96a0acab9f94887c6f62544b4034281c100400000815212e3b4854616e7b879aa4afa89b8f8275655b50433a363031363a3d424a515a626d75818e9794909297a1ada3998d80736a5f564c433d39352f30363a3d434b545d67707d8a8e8b87837f7c6f6255493c2f22160900000000000000000006131f2c3946525f6c7985929facacacada7a5a5a5a5a5a5a5a5a5a5a5a5a5a5a6a6a7aaa9a7aaa29f9b99928e87827c736d675f584f473f362d241b10070000000000000000000915222e3b4854606a7783909daa9fa3998c7f73665b5044382b1f1409000000000000000000000000000000000006121f2b37434e5864717e8a97a29f9f9d9083776b6054483b2f22150900000000000000000000050e172129323a434b515960676d72797e83888c909399989a9c9d9e9e9f9f9f9e9e9d9b999898928f8c8884807b756f6a625f58524c443d332d261d150c040000000000000000000000000004111e2a3744515d6a778490939393938f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303d46515b646e737f8791969da0a7a8aaa8a4a2a0a0a0a1998c7f7266594c3f3326190c00000000000000000000030b131a202427282d2d2d2d2d2d2d292825211b140c0300000000000000000000000000000000000000000000000000020b12191f2326272d2d2d2d2d2d2d282724201a130b03000000000000000000000000000000000000000000060b12181c1f2024282a2b2c2d2d2d2d2d2625221e18120a01000000131f2c3946525f6c7985929faca295887b6f6255483c2f2215111c262f3845515d67707d8a939ea9a59e9184796d60626f7c8895a2ac9f9386796c605346392d201300000007131f2c38434f5963707d899593897d70675d5145515d676e7b8490959f9f948f898481807e7e7f82858a91969e9691857b6e685d5245505c666f7c879294897c6f63584e43372b1c1106000000000007131f2c38434f5963707d899593897d70675d51494c5966727f8c999e9184776b5e5144383844505c666f7d89939e988f82756c61564c505c666f7c879294897c6f63584e43372b1c110600000013202c3946535f6c7986929faca093877a6d6054473a2d211a25303b45505a606d79839199a3a59f93887e707c87929fa49a8f82756a5f53473c32261b0f01000000000000000000000714212d3a46535f697784919eabb5ab9d9184786c60544b40342b20160d0500000000000000000000000000061218242f3a434f59616e7b837e78716c65605b53493f33271b0f0300000714202d3946525e6876828f9ca8b2ab9e9185796d60574d41382d2417110a02000000000000000000000002091019222935404b55606c7884919dabb0a69a8e8174665c5145382c1f130600000916222f3c4955626f7c8895acb6a79a8d81746753493f312a25262a2d30394044515b616d7a85929f9c9ea1a9ac9f92867a6d61584e433a312c2924252a2d3139424b55606c7783827e7a76736f6a6054473b2e22150800000000000000000006131f2c3946525f6c7985929facb8ada39c9898989898989898989898989898999a9b9d9fa3aaaaacaba39f9a938f8780796f6a615950483f362d22190f05000000000000000007131f2c38434e5865727e8b98a2aeab9e9184786c6053463b30251a0e00000000000000000000000000000000000814212e3a47535f6a7683909ca9aea2988b7f7265594f43382c1f1307000000000000000000030d172029333b444c555c606b6f797f848b9095999c9fa4aba7a9a9a8a7a6a6a7a7a8a9a8a6aaa29f9c9995918c87817c766f6a615d564f443f382f271e160d0400000000000000000000000004111e2a3744515d6a7784909d9f9f9c8f8376695c504336291d100300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e38424e58626d73808c9299a0a8acaaa39f9b979594939394958c7f7266594c3f3326190c000000000000000000010b151d252b303435393939393939393534312c261e150c000000000000000000000000000000000000000000000000000b141d242b303334393939393939393534302b251d150b01000000000000000000000000000000000000020a11171d23292c2d3134373839393939393933322f2a231c130a000000131f2c3946525f6c7985929faca295887b6f6255483c2f221517222d38424e58606d7984919ea5a99e938a7d70675d626f7c8995a2ac9f9386796c605346392d20130000000915222f3b4854606b7683909a8e81756b60554b4e58606d798390969f99928b827c78747372727375797e848e939d9791847a6d605a504a545f6a74808d988f82766a605447382e23170c00000000000915222f3b4854606b7683909a8e81756b60554b414c5966727f8c999e9184776b5e514436414c56606d7883909d9f92867b6e615a50444a545f6a74808d988f82766a605447382e23170c000000121f2c3945525f6c7885929faba194877a6e6154473b2e21202a36424d57616c74818e95a0a89e938c7f736c74808d97a29f93877c6f62584e43372b1e1308000000000000000000000815222e3b4855616e7b8896a0acafa3998c7f72665b5042392e22190e0500000000000000000000000000000007131d28313d46535f696e77716c65605b53504941382d22170b0000000814212e3b4754616e7a87939facafa3998c7f72675d51453b2f261b1206000000000000000000000000000000071018242f3944505b66727e8b99a3aeac9f9285796d6053463a2d2013080000091623303c4956636f7c8996a2afa69a8d8073675a4d403025191a1e21272e343f46525e6873808c99a3abadb3a89c8f8275685e52463c3128201d19191e2027303944505b656c7675716d68666260584e43372b1f130600000000000000000006131f2c3946525f6c7985929facb8a79c918c8b8b8b8b8b8b8b8b8b8b8b8b8b8c8d8e909298999da0a7aaaca49f99928d837c706b625a50483e342b21170d0300000000000000030f1b27323d4754606d7a85929facaca1968a7d7063574d42362a1c110600000000000000000000000000000004101c2934404b55626e7b88949fabac9f92867a6d6054473d32271b0f030000000000000000010b151f29333b454d565d676d747c848c91969da0a7a9aca8a9a19e9c9b9a9a999a9a9b9d9fa2a9a6aaa9a7a09d99928e89827c746d686059504a423930281f160c01000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54606a727f8b929fa3abaca49f98928e8b8887868687898b7f7266594c3f3326190c00000000000000000009131d272f373c40414646464646464642413d3730271e0e050000000000000000000000000000000000000000000000030d1d262e363c3f414646464646464641403c372f271d13090000000000000000000000000000000000030b141b22272f34383a3e4144454646464646463f3e3a352e251c12070000131f2c3946525f6c7985929faca295887b6f6255483c2f22151c28333f4a545f6a73808d96a1aca2978e81756b6155626f7c8995a2ac9f9386796c605346392d2013000004101c2934404b55636f7c899493877c6f62594f4754606a74808d95a09892877e766f6c6566656566666d7179818e939d968e81756c61554b4e58616e7b869294897c6f62544a3f34281c100300000004101c2934404b55636f7c899493877c6f62594f433f4c5966727f8c999e9184776b5e51443846525e68727f8b959f958b7f72695e53483e424e58616e7b869294897c6f62544a3f34281c10030000111e2b3844515e6b7784919eaaa295887c6f6255493c2f2428323a46525e69707e8a939da8a0958e81776c606d7a85929fa49a8f82756a5f53473a2f24190d010000000000000000000c1825323f4b5865727e8b98a8b2ac9f92867a6e61544a3f30271d100700000000000000000000000000000000010c161f2a36424d575f616a64605b535049443f382f261b11060000030f1b27333f495364717e8b9aa4afac9f92867a6e61554b4033291d140a000000000000000000000000000000000007121d28333f4a54616d7a86929facaea298897d706356493d2f24190d01000916222f3c4955626f7c8895aab4a79b8e817468564c41362a24201d191c232a36414c56616e7a86929facb9b3a9978a7e7164564c41342a1f161d1d1d1d151e27333f49535b606a6864615e5655544e463c32271b0f0300000000000000000006131f2c3946525f6c7985929facb2a5988c7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f80818386888c91959c9ea6acaba39f9591867d716c625a50463d33291f140900000000000000000a16202c3945515d6774818e9aa7b1a89b8f8275695e5246382e23170b00000000000000000000000000000006131f2c3845515c6774808d9aa6b0a79b8e8174685d5245392b21160a00000000000000000007121d27313b454d575e686d79808791959ea1a8acaaa29f9b979791908e8d8d8d8d8e8f909297979a9ea0a8ababa39f9b948f87817a706b605b544b433a31281d1307000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000001040707121f2c3844505c666f7c87929fa4afaaa39a938d86817e7b7a797a7a7c7e7d6f6356493c302316090000000000000000030f1a252f3941484d4e535353535353534f4d4942393020170d02000000000000000000000000000000000000000000010b151f2e3840474c4d535353535353534e4d4841392f251a0f03000000000000000000000000000000030c151d262d33394045474a4e51525353535353534c4b463f372e23180d0200131f2c3946525f6c7985929faca295887b6f6255483c2f221a242b3844505b666f7c87929fa8a69f92857a6e615956626f7c8995a2ac9f9386796c605346392d2013000006131f2c3845515c6775818e9b8f82756a5f53474d57626f7c87939f9f92867d716c62605b535858545c60676d77818e959e938a7e71675d5146525e6974818d9a8e8174665c5044382c1f120600000006131f2c3845515c6775818e9b8f82756a5f53473d3f4c5966727f8c999e9184776b5e5144424e58616d7a85929f999083786c60574d42363c46525e6974818d9a8e8174665c5044382c1f12060000101d293643505c6976838f9ca9a4978b7e7164564c413529303a44505a616e7b85929ea5a3989183796d655d6873808d98a39f93877c6f62564c4135291d1104000000000000000004101d2935404b556875828f9ba8b5a99c908376685e5242382d1e150b000000000000000000000000000000000000040d1a26313b454d53555d57535049443f38332d261d140a00000005121f2b3744505b6575818e9bacb6a99c8f8276685e5243392f21170b020000000000000000000000000000000000010b17222d3846525d6875828f9ca8b4aa9a8d807367564c4135291d1104000814212e3b4754616e7a8798a2aeaa9d908377685e52463c352f2c2924272625303a46525e6876828f9ca9b6ada197877b6e6154483b302a2a2a2a2a2a2a2a2a222d38414950535d5b5854524c4947433c342b20150a0000000000000000000006131f2c3946525f6c7985929facada093877a7272727272727272727272727273737477797c8084898f949da0a7afa7a09892877e716c61584e453b30251a0d040000000000000004111d2935414b55626f7c88959fabac9f92877b6e61544a3f34281c100300000000000000000000000000000714202d3a4753606d7985929eabaca095897c6f63564c413529190f040000000000000000040e18242f39434d575e696e7a828d9399a0a8ada8a19e98928e8a878583818180808081828385878a8d9196999ea1a9aca69f99928d847d736c665c554b433a2f24180d010000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000000000000000000000000000206080d1113141d2935404b55606d78839099a3aeaba3989288817a75716f6d6d6d6e6f716f6b6054483b2f22150900000000000000000814202b37414b53595b606060606060605c59544b4232291f140900000000000000000000000000000000000000000007121d2731404a52585a606060606060605b59534b41372b2014080000000000000000000000000000000b151e272f383f444b5153575b5d5e5f6060606060595751493f352a1e120600131f2c3946525f6c7985929faca295887b6f6255483c2f221f2a36424d57606c78839099a3ab9f948b7e71685e5256626f7c8995a2ac9f9386796c605346392d201300000714202d3a4753606d79859296897c6f63584e46535f6975828f9a9f948b7f726b615a5350494b4b4b51555d656d78839099999184796d6053474d56616e7b88959285796d6053463a2d2013070000000714202d3a4753606d79859296897c6f63584e43353f4c5966727f8c999e9184776b5e513f4a54606a74818e979f92877c6f665b50453b3136424d56616e7b88959285796d6053463a2d20130700000d1a2633404d596673808c99a9a79b8e8174685d52453b3136414c56616c75828f97a2a59f92867c6f675d56616e7a86929fa49a8e8174685d5245392c20150a000000000000000006131f2c3845515d677884919eabb6ac998c7f7266564c412f261c0c030000000000000000000000000000000000000009141f29333b424648504a46443f38332d27221b140b020000000613202d394653606c7885929eabb3a9988b7f7265564c4131271d0f050000000000000000000000000000000000000006111c2935414c5665727f8b98aab4aa9d918477685d5245392c201306000714202d3a46525e697885929fabac9f92867a6e61584e45403a39352f3433333236414c566673808c99a6b3ab9e928578695e53463a3737373737373737373737372f383f4446504f4b4746413c3b37322b2620180f0600000000000000000006131f2c3946525f6c7985929facada093877a6d656565656565656565656565666768666d6f73777c828990959fa4acaaa299928b7e716a60574d42362a1f160c01000000000000010d18242f3a47535f6a7683909da9afa3998c7f73665c5044382b1f14090a0a0a0a0a0a0a0a0a0a0a0a0a0a121f2b37434e5864717e8b97a2adaa9d9083776b6054443a2f2419070000000000000000020c16202935404b555e696e7b8390949fa4abaaa29f96918b86817e7b78767574737374747577787b7d8084888d92979ea1a8aba39f96918780786d675d554b4035291d11040000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214191d2021242c3945515d67727f8b95a0abafa39992867d746d6864626160606162656360594f43382c1f130700000000000000000c1824303c48535d64686c6c6c6c6c6c6c68655d54443b3025190e0000000000000000000000000000000000000000000c18232f3943525c64676c6c6c6c6c6c6c68645d53483c3024180c000000000000000000000000000007121d273039414950555c6064676a6b6c6c6c6c6c6c66635b51463a2f22160a00131f2c3946525f6c7985929faca295887b6f6255483c2f2228313a46525e69727f8b959faba3999082776c60564c56626f7c8995a2ac9f9386796c605346392d201300000a1724313d4a5764707d8a989184786c6053464855616e7b88949e9c9083786c60595046443f3f3f40454b535c666e7b878e8a86827c6f62554846535f6976839097897d7063564a3d2f23180c0000000a1724313d4a5764707d8a989184786c6053463c313f4c5966727f8c999e9184776b5e5144505b666f7c87939f968d80736a5f544a3f3329303b46535f6976839097897d7063564a3d2f23180c00000a1723303d4a5663707d8997a1ac9f92867a6d60574d43393946525e68717e8a949ea89e938b7f726a5f55525e6874818d9aa49f92867a6d6054473d32271b0f03000000000000000714202d3a4753606d7a86939facafa49a897c6f6356493c3023140a0000000000000000000000000000000000000000030d17212931363a3b443e3937332d27221b17110a02000000000815222e3b4855616e7b8897a1adada197887b6e6255483b3022150b0000000000000000000000000000000000000000000d1924303c4855626f7b8898a2aeaca095877a6d6054473a2d2114070005111e2a36424d566976828f9caaafa3998c80736a5f58514b4745414240403f3f3f3e4a5764717d8a97a4b0a99c8f827669574d4244444444444444444444444444444444444444444444444444443b3a37312a21180e03000000000000000006131f2c3946525f6c7985929facada093877a6d605858585858585858585858595a545c6062666b6f767c838d939aa3ababa39f92867c6f695e52463e31281d13070000000000000007131d2b37434e5864717e8b97a2adab9e9184786d6053463b31251a16161616161616161616161616161616212e3a47535f6a7683909ca9aea2988b7f7265594f4332281e1308000000000000000008131e28323a45515d676e7b8491959fa6afa7a098928c847f7a75716e6969686767666767686a696e7173777b80858b91969fa2aaa9a199938c81796d675d5145392c2013060000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000000000000000000060c10151a1e2124292c2d30333f4a54606d7985929ea7b1a79f92877d706b615e565554535354565856544f473d32271b0f0300000000000000000e1a2734404d59646f7479797979797979756f65564d42362a1c11060000000000000000000000000000000000000004101c2934404b55646e7479797979797979746f64594d4034271a0e00000000000000000000000000040d18232e39434b535b60676d71747778797979797979726d63574b3e3225180c00131f2c3946525f6c7985929faca295887b6f6255483c2f242f3a43505a616e7b86929fa7a89f92867c6e655b504956626f7c8995a2ac9f9386796c605346392d20130004111d2935414c566874818e9a8d8073655b50444b5566737f8c99a096897d70665b50473e37332d2e3439414a545f697380827e7a766f6a5f5347424d5765727f8c988d817467554b4034291c10040004111d2935414c566874818e9a8d8073655b504437333f4c5966727f8c999e9184776b5e514c56606c7883909a9e9184796d60584e42382d212a36424d5765727f8c988d817467554b4034291c1004000713202d3a4653606d7985929eaaa2988c7f72695f554b43424f59616d7a85929ea6a1968f81756d62584e4c56616e7b87939fa2988b7f7265584e43372b1f1306000000000000000915222f3c4855626f7b889aa4afac9f93867a6d6054473a2d211407000000000000000000000000000000000000000000060f171f262a2d2e37312d2b27221b17110b060000000000000a1724303d4a5763707d8a96a9b3ab9e928578695f53473a2e2114030000000000000000000000000000000000000000000813202d394653606c7985929facb1a795897c6f6256493c2f23160900020e1925303f4b5865727e8b98a2aeab9f92867c6f6a605d5554524c4e4d4d4c4c4b4b4b5663707c8996a3afa79b8e8174685b505050505050505050505050505050505050505050505050505050504847433c332a201509000000000000000006131f2c3946525f6c7985929facada093877a6d60544c4c4c4c4c4c4c4c4c4c4c4d4a5053555960636a6f7980889299a3abaea39891857b6e615a50433a2f24180d00000000000000010f1b26323c4753606d7985929fabada1968a7d7063574d42362a23232323232323232323232323232323232934404b55626e7b88949fabac9f92867a6d6054473d3221160c0100000000000000010d1925303a44505a606d79839096a0a8b0a69e9591867f79726d6764615e575b5a5a5a5a5b5c575e6164676a6e73797e848c92989fa7aba49f938e82796d6053473a2d2014070000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000000000000000000000000000000000000030a11171c1f262b2e2f35393a3d4044505b66727f8b97a1adaca0958c7f736b6159524c4847464747494b4948433d352b21160a0000000000000000000e1b2835414e5b687481868686868686868175695e5246382d22170b0000000000000000000000000000000000000006131f2c3845515c677480868686868686868174685b4e4135281b0e000000000000000000000000010c161f2834404b555c656c71797d8184858686868686867f7266594c3f3326190c00131f2c3946525f6c7985929faca295887b6f6255483c2f2935414c55616c75828f98a2aca0968c80736a5f53494956626f7c8995a2ac9f9386796c605346392d2013000713202c3945525d6877849199897c6f62534945515d677683909d9e9184786c60544a3f352b272223282f38424d57636e7375716d68625f584e433b4854616e7b8797908477675c5145382c1f1306000713202c3945525d6877849199897c6f6253493f33333f4c5966727f8c999e9184776b5e53535d68717e8b959e93897d70675d51463c2f261c26313b4854616e7b8797908477675c5145382c1f13060006131f2c3845515c6773808c98a2aa9f92867b6e675d554c4a54616b75818e97a1a59e91847a6d605b514646535f697683909caa9d9083776a6054473b2e221509000000000000000b1724313e4a5764717d8a97acb6aa9e918477675d5145392c20130600000000000000000000000000000000000000000000060d141a1e21222a24201f1b17110b0600000000000000000c1926323f4c5965727f8c98a5b2a99c8f837669574d42372b1e120600000000000000000000000000000000000000000006121f2b3844505b667783909daab1a4978b7e7164584b3e3125180b00000914212d3a4754606d7a85929fa7aea29891847c726d6763605d565b5a59595858585857626f7c8995a2afa79a8d8074675d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d55534e463c31261a0f020000000000000006131f2c3946525f6c7985929facada093877a6d6054473f3f3f3f3f3f3f3f3f40403f4446494f545860676d737e879299a3aeaaa1978f82766c61554b4135291d1207000000000000000a151f2c3845515d6774808d9aa6b0a89c8f8275695e5346382e3030303030303030303030303030303030303845515c6774808d9aa6b0a79b8e8174685d5245392c201304000000000000000005111d2935414c56626d75818e959fa8b0a69e948f837b726d66605d5554534d4e4e4d4d4d4e4f4d525457585f62666d71797f8690959ea5afa59e948d8073665a4d4033271a0d0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000000000003090c151c23282c31373a3b4145474a4d4e53606c7884919ea9b1a79d9083786c60594f46413c3a3a3a3b3c3e3c3b38322b23190f040000000000000000000916232f3c4956626f7c89959393939392867b6e61544a3f33281c0f030000000000000000000000000000000000000714202d3a4753606d7985929393939395897c6f6356493c3023160900000000000000000000000007131d28313a45515c676d777e848a8e909192999393938c7f7266594c3f3326190c00131f2c3946525f6c7985929faca295887b6f6255483c2f303845515d67707d8a939eaaa49a9184796d60584e414956626f7c8995a2ac9f9386796c605346392d2013000714212d3a4754606d7a87969286796d6053464753606d7a86939f998d8073655b5042382d231b17181d26303b45525c63666864615d56534e463c3a46535e697885919286796d6053473a2d201407000714212d3a4754606d7a87969286796d6053463a2d333f4c5966727f8c999e9184776b606060606d7a85929e978e81746b60554b40342a1d14212d3a46535e697885919286796d6053473a2d2014070004101c2834404b55616e7a86929fa6a2989083796d675e56515c66707d8a939ea99e938a7d70685d52493f424d5765717e8b98a3a095897c6f6256493c31261a0e020000000000000c1926323f4c5965727f8c98a5b2a99c8f837669554b4135291d1104000000000000000000000000000000000000000000000003090e1214151d1713120f0b06000000000000000000000e1b2834414e5b6774818e9aa7b3a79a8d8074675a4d4131261a0e02000000000000000000000000000000000000000000030f1c28333f4a546875818e9ba8b3a6998d8073665a4d4033271a0d00000713202c3945525d68737f8c95a0a8aaa19691867f7974706d6869686766666565656464646f7c8995a2afa6998c7f736a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a625f584e43372b1f12060000000000000006131f2c3946525f6c7985929facada093877a6d6054473a3232323232323232332e34383a3d43484e555c606c717e87929fa5afa99f948a7e71675d5145392e23180c0000000000000004101d2935404b55626e7b88949fabac9f93877b6e61544a3f3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d4753606d7985929eabaca095897c6f63564c4135291d110400000000000000000713202d3946525e68717e8b939ea7b1a79e948f82796e69605c54514b484642424140404141424246484a4e53545c60666d727b838f939ea8afa69a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000000000000000000000000000000050d141a1e262e34383c4247484c525457595b5563707d8996a0acab9f95897d70665b504745403a37322d2e2f32302f2c2721191007000000000000000000000915222e3b4854606a7783909daa9fa3998c7f73665b5044382b1f1409000000000000000000000000000000000006121f2b37434e5864717e8a97a29f9f9d9083776b6054483b2f2215090000000000000000000000010d18242f3a43515b606d79818b91969a9d9e9fa39f9f998c7f7266594c3f3326190c00131f2c3946525f6c7985929faca295887b6f6255483c2e38424e58606d7a84919ea6a99f93887d70675c51463c4956626f7c8995a2ac9f9386796c605346392d2013000a1623303d495663707d8996908377665c51454956626f7c8999a4978a7d706453493f2f261c0f0b0b151e2a33404a5257595b5754524c47433c3436424d576976828f99897c6f6256493c2f231609000a1623303d495663707d8996908377665c5145382c333f4c5966727f8c999e9184776d6d6d6d6d74808d979e92857a6d61594f433b322920171e2a36424d576976828f99897c6f6256493c2f23160900000c18232e3946525e68727f8b949fa89f958f82796e68615a606d7884919ea5a1978e81756b61564c41373b4754606d7a86929fa79a8d807467574d42372b1e12060000000000000d192633404c5966737f8c99a6b2a89b8e8175685b4e422f24180d010000000000000000000000000000000000000000000000000002050708110b060503000000000000000000000000101c2936434f5c6976828f9ca9b2a5998c7f7266594c3f3326190900000000000000000000000000000000000000000000000b17222d404d5a6773808d9aa6b3a89b8e8175685b4f4235281c0f000004111d2935414c56606d79839096a0a7a8a198928c85807d7a787675737372727271717171707c8995a2afa5988c7f777777777777777777777777777777777777777777777777777777777777776e6a5f53473a2e2114080000000000000006131f2c3946525f6c7985929facada093877a6d6054473a2d252525252525252623282c2d32383d434b515a616c727f8b939ea9b0a69e91847a6d60544b4034281c1004000000000000000c18242f3947535f6a7683909ca9afa4998c8073665c504949494949494949494949494949494949494949494e5864717e8b97a2adaa9d9083776b6054443a2f24190d010000000000000006121f2b37434e58616d7a85929ea5afa9a0958f82796d675f57514a45403b3a3631343433343430363a3b3e43474b51545c60696e79818f96a0aca79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000000080f171f252a30383f44464d5355565d60636668696775818e9ba8b2aa9d9083776b605b5353514b47433c3731292423221f1b160f07000000000000000000000007131f2c38434e5865727e8b98a2aeab9e9184786c6053463b30251a0e00000000000000000000000000000000000814212e3a47535f6a7683909ca9aea2988b7f7265594f43382c1f1307000000000000000000000004111d2935414b55626d75818e939ea1a8aaa29f9c9998988c7f7266594c3f3326190c00131f2c3946525f6c7985929faca295887b6f6255483c343f4a54606a74808d96a1ada1978e81746b60554b403c4956626f7c8995a2ac9f9386796c605346392d2013000c1925323f4c5865727f8b988e817467544b404b5864717e8b97a398877b6e6154473b2d21140a00030c18212e3840474b4d4f4b4746413a37322a31404d596673808c988b7e7165584b3e3225180b000c1925323f4c5865727f8b988e817467544b403428333f4c5966727f8c999e9184797a7a7a7a7a7c87929f978b7e7168605b544d443b32291d1a2531404d596673808c988b7e7165584b3e3225180b000007121d2a36414c56606c78829096a1a79e948f837a716c6268727f8c96a0a69e91857a6d61594f443a303945525d6875828f9bac9e918477695f53473a2e2114080000000000000d1a2734404d5a6773808d9aa6b3a79a8d8074675a4d4134271a070000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000101d2a3643505d697683909ca9b1a4978a7e7164574b3e3124180b0000000000000000000000000000000000000000000000061926323f4c5965727f8c98a5b2a89c8f8275695c4f4236291c0f0000010d19242f3a45515c666e7b8490959fa3aaa29f97928d898784838180807f7f7e7e7e7e7d7d7f8c98a5b2ab9e9184838383838383838383838383838383838383838383838383838383838383837c6e6255483b2f2215080000000000000006131f2c3946525f6c7985929facada093877a6d6054473a2d2119191919191919171c1f20272c30394045505a626d74818e97a1adada1968c7f73665c5145382c1f14090000000000000007121d2b37434e5864717e8a97a1adab9e9184796d6056565656565656565656565656565656565656565656565f6a7683909ca9aea2988b7f7265594f4332281e130800000000000000000815212e3a47535f6a74818e97a2adada2979083796d675d554d444039352f2d2a252727272728252a2d2e31373940454b51575f676d7884919eaaa79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000000000000000000000000020a121a212931363e424a5053575f6266686d70737576777986929facb1a4988b7e716e6c6564605d55534e47433c352f281f180f0a04000000000000000000000000030f1b27323d4754606d7a85929facaca1968a7d7063574d42362a1c110600000000000000000000000000000004101c2934404b55626e7b88949fabac9f92867a6d6054473d32271b0f0300000000000000000000000613202c3945515d67727f8b939ea5ada49d98928f8d8c8b8b7f7266594c3f3326190c00131f2c3946525f6c7985929faca295887b6f6255483c3844505c666f7c87939fa9a69e92857a6d60594f43393c4956626f7c8995a2ac9f9386796c605346392d2013000d1a2733404d5a6673808d998c7f7366594c404c5966727f8c999f928579695e52463a2d2014020000060f1c262e353b3f40423e3a3935302b2625323e4b5865717e8b988c7f7266594c3f3326190c000d1a2733404d5a6673808d998c7f7366594c402e23333f4c5966727f8c99a096918686868686868892999e92857c78716c665e564d443b2f261b25323e4b5865717e8b988c7f7266594c3f3326190c0000000d1925303b44505b666e7b849197a1a69e9590857e756f6d7a85929fa89f948a7e71685d52473e322935414c5664717e8a9aa4a096887b6e6255483b2f2215080000000000000e1b2734414e5a6774818d9aa7b3a69a8d8073675a4d4034271a0d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111e2a3744515d6a7783909daab0a3968a7d7063574a3d3024170a00000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1a99c908376695d5043362a1d1000000008131e2834404b545e696e7b838d92999fa2a9a29e9a9696918f8e8d8c8c8b8b8b8b8a8a8a8c919ba7b4ada19691909090909090909090909090909090909090909090909090909090909090887c6f6255493c2f2216090000000000000006131f2c3946525f6c7985929facada093877a6d6054473a2d21140c0c0c0c0c060c1012131b1e272e343e47515b606d7985919ea7b1a99e9185796d6053463b31251a0e02000000000000010f1a26313c4653606d7985929eacada1968a7d70646363636363636363636363636363636363636363636363636e7b88949fabac9f92867a6d6054473d3221160c010000000000000005111d2935414c56626f7c87939fa9b0a69f92857b6e675d554b433c342e2924211e1a1b1a1a1a1b1a1e2021262b2e343940454d555c667784909daaa79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000000020b141c242c333b424650545c6065696e73777a7d80818384869298a2aeb3a69a8d807d7b7975716d67625f58534e454039312a211a1108000000000000000000000000000a16202c3945515d6774818e9aa7b1a89b8f8275695e5246382e23170b00000000000000000000000000000006131f2c3845515c6774808d9aa6b0a79b8e8174685d5245392b21160a0000000000000000000000000714212d3a4754606d7a85929fa6ada39c928d8682807f7f7f7c6f6255493c2f22160900131f2c3946525f6c7985929faca295887b6f6255483c424d57606d78839099a4aa9e948a7e71685d52473d303c4956626f7c8995a2ac9f9386796c605346392d2013000e1b2734414e5a6774818d988b7e7265584b404d5a6773808d9a9e9185786b574d42362a1e11050000000a131c242a2f323335312e2d29241e1b24313e4a5764717d8a978d8073665a4d4033271a0d000e1b2734414e5a6774818d988b7e7265584b3f3226333f4c5966727f8c99a8a09e939393939393959fa3a1979289847e786e685e564d41382d2224313e4a5764717d8a978d8073665a4d4033271a0d00000008141e28333f4a545e696e7b8591969fa69f97918a827c76808d97a2a3998f82766c61564c41352c242f3a4754616d7a87939fa1988c7f7265594c3f3226190c0000000000000e1b2835414e5b6874818e9ba7b3a6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111e2b3844515e6b7784919eaaafa396897c706356493d3023160a00000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1aa9d9083776a5d5044372a1d11000000010c18232e39424d575e696e7980878e92989b9ea1a9a8a19e9c9b9a999998989897979797989ba3adb8b2a8a19e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d95887b6e6255483b2f2215080000000000000006131f2c3946525f6c7985929facada093877a6d6054473a2d21140700000000000003060a0c151d2328353f45515d67717e8b95a0acada1978b7e7164574d42362a1e12050000000000000009151f2c3845515c6673808d9aa4afa99c8f82757070707070707070707070707070707070707070707070707074808d9aa6b0a79b8e8174685d5245392c20130400000000000000000713202d3946525e6874818e9aa4afab9f948b7e71695e554b433a3128231c1814120e090d0d0e090e1214151a1d23282e343c434b546a7784909daaa79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000000000000000000000020b141c262e363e454d535a61666d71767b8084868a8c8e90919298a2aab4b5a89d928d8a8885817e7a756f6a625f58514b433c332c231a120800000000000000000000000004111d2935414b55626f7c88959fabac9f92877b6e61544a3f34281c100300000000000000000000000000000714202d3a4753606d7985929eabaca095897c6f63564c413529190f04000000000000000000000004101c2934404b5565727f8b98a2aea79c918c807a75737272726f6a5f54473b2e22150800131f2c3946525f6c7985929faca295887b6f6255483c46535f69727f8c95a0aba2988f82766c61564c41352f3c4956626f7c8995a2ac9f9386796c605346392d2013000f1b2835424e5b6875818e978a7e7164574b414d5a6774808d9a9d9184776a5e514430251a0e02000000010a12191f232626282421201d19131723303d4a5663707d89968d8174675a4e4134271b0e000f1b2835424e5b6875818e978a7e7164574b3e3126333f4c5966727f8c99a8a09393939393939393939496999e96918b827a6e685e53493f332723303d4a5663707d89968d8174675a4e4134271b0e000000020b17222d38424d575f696f7c8490949fa3a19e948f888287929fa99f92877c6e625a50443a3028232d3946525e687783909997928e8376695c504336291d100300000000000e1b2835414e5b6874818e9ba7b3a6998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000121f2b3845525e6b7885919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0aa9e9184776b5e5144382b1e110000000007121d27303b454d575e676d747b81868b8e929796989a9b9c9d9d9d9e9e9e9e9e9f9f9f9fa4acb6c0b6aea9a79f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa8aaaaaaaaab94887b6e6155483b2e2215080000000000000006131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000000000030b1218232935414b55606c7883909da9b3a99d908377695e53463a2d2114060000000000000004101c2834404b54616e7b87939facac9f93877d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d85929fabaca095897c6f63564c4135291d110400000000000000000714212e3a4754616d7a86929facb0a69c9082766c62574d433930281f18120d07050c111517181c1c1c1c1c1c1c181d23283144515d6a7784909daaa79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000000000000000000000a141c262e38404850575e616c71787e83888d90939a999b9c9e9fa2aab4b1b2aea49d9a9797928e8b86817c756f6a605d554e463e352c241a11080000000000000000000000010d18242f3a47535f6a7683909da9afa3998c7f73665c5044382b1f14090a0a0a0a0a0a0a0a0a0a0a0a0a0a121f2b37434e5864717e8b97a2adaa9d9083776b6054443a2f24190700000000000000000000000006131f2c3845515c677683909daaaca0958c7f746d6866656565625f584e43372b1f130600131f2c3946525f6c7985929faca295887b6f62554844505a616e7b86929fa7a79f92867b6e615a50443a302f3c4956626f7c8995a2ac9f9386796c605346392d2013000f1c2935424f5c6875828f978a7d7064574a414e5a6774818d9a9d9184776a5e51442f24180d0100000000040c13181d2020201d1814120f0916232f3c4956626f7c89958e8175685b4e4235281b0f000f1c2935424f5c6875828f978a7d7064574a3d3126333f4c5966727f8c99a09689868686868686868687898d92989e948f847a6e655b5044372b232f3c4956626f7c89958e8175685b4e4235281b0f0000000006111c262f3b454d575f6a6f7a828d92999fa69e9c948f9299a3a2978d80746a5f534b454039342e2a36414c566673808d8c8985817e7064574a3d3124170a0000000000000e1b2734414e5a6774818d9aa7b3a69a8d8073675a4d4034271a0d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000121f2b3845525e6b7884919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0aa9d9184776a5e5144372b1e1100000000000b151e29333b454d555d60696e747a7e8285888a8c8d8e8f9090919191919192929292939aa4afbbaea49d9a93939393939393939393939393939393939393939393939b9ea5afafa499877a6d6154473a2e2114070000000000000003131f2c3946525f6c7985929facada093877a6d6054473a2d21140c0c0c0c0c0c0c0c07060400071118242f3a44505b65717e8b97a2adab9f95877b6e6154483b2e23170c00000000000000000c18232e3946535f6976828f9ca9afa499938a89898989898989898989898989898989898989898989898989899297a2adaa9d9084776b6054443a2f24190d010000000000000005111e2a36424d5666727f8c98a3aeab9f94897c6f635a50453b31271e160d07000911181d212425292929292929292929292a3744515d6a7784909daaa79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000000000000000000009121c262e38404a525a61696e767e848b9095999d9fa4aca8a9a8a6a5a4a4a4a5a6a8aaa6a9a19e9b98928e88827c736d675f584f473e362c231a1007000000000000000000000007131d2b37434e5864717e8b97a2adab9e9184786d6053463b31251a16161616161616161616161616161616212e3a47535f6a7683909ca9aea2988b7f7265594f4332281e13080000000000000000000000000714202d3a4753606d7986929facac9d9083786c605d5659585855544e463c32261b0f0300131f2c3946525f6c7985929faca295887b6f6255484c56616c76828f98a2aba0958c7f72695e53483e32282f3c4956626f7c8995a2ac9f9386796c605346392d2013000f1b2835424e5b6875818e978a7e7164574b404d5a6773808d9a9e9184786b554b4035291d1004000000080d161d24292c2d2c2924211f1a151723303d4a5663707d89968d8174675a4e4134271b0e000f1b2835424e5b6875818e978a7e7164574b3e3126333f4c5966727f8c999e918479797979797979797a7c808590959f969082776c6053463c3126303d4a5663707d89968d8174675a4e4134271b0e00000000000a141d29333c454e585f686d78808790959ea0a69e9c9fa3ab9f92857a6d65605c54514b443f3830303d495663707d83807c7874706c6155493c3023160a0000000000000d1a2734404d5a6773808d9aa6b3a79a8d8174675a4e4134271b090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111e2b3844515e6b7784919eaab0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a99d9083766a5d5043372a1d100000000000030c172129333b434b51575f62686d7175787b7d7f808283838484848485858585858687939facb9a99d928d86868686868686868686868686868686868686868686868e939eaaac9f9386796c605346392d2013060000000000040a0f131f2c3946525f6c7985929facada093877a6d6054473a2d211919191919191919191313100c0707131d27333f4953606d7985929fabb1a7988b7e7265544a3f34281c10030000000000000007121d2a36424d5764707d8a96a1adaba49f9796969696969696969696969696969696969696969696969696969fa2a9aea2988b7f7265594f4332281e130800000000000000000714202d3a46525e697784909daab4aa9c9083766b6054483f33291f150c040009121b22292e313236363636363636363636363744515d6a7784909daaa79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000000000000000006101b242e38404a525c636c717b838a91969d9fa7aaacaba39f9d9b999897979898999b9d9fa3ababaaa29f9b948f8780796e6a615950483e352c22180d0400000000000000000000010f1b26323c4753606d7985929fabada1968a7d7063574d42362a23232323232323232323232323232323232934404b55626e7b88949fabac9f92867a6d6054473d3221160c010000000000000000000000000916232f3c4956626f7c8999a3aea49a8b7e71665b524c4c4c4c4947433c342a20150a0000131f2c3946525f6c7985929faca295887b6f625548525d68717e8a949faaa4999083786d60574d42362c232f3c4956626f7c8995a2ac9f9386796c605346392d2013000e1b2734414e5a6774818d988b7f7265584c404d596673808c999f928578675d5145392c20130600000811191f282f35393a39352f2e2b26201824313e4a5764717d8a978d8073665a4d4033271a0d000e1b2734414e5a6774818d988b7f7265584c3f3226333f4c5966727f8c999e9184776c6c6c6c6c666c6d6f737b8390969f948b7e7165574d42372b313e4a5764717d8a978d8073665a4d4033271a0d0000000000020b17202a333c464e565e666d737c838b91969ea1a9acafaa9d90837d77716d66605d55504a423d353b4854606b7077736f6c656461594f44392d2014080000000000000d192633404c5966737f8c99a6b2a89b8f8275685c4f4230251a0e0200000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000111e2a3744515d6a7784909daab0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1a99c8f8276695c504336291d100000000000040d161e2429313940454d53565d606468696e707274757676777777787878787879797c8995a2afa79a8d807979797979797979797979797979797979797979797979818e9ba8ab9e928578665b5044382b1f120600000000070e151b1f222c3946525f6c7985929facada093877a6d6054473a2d26262626262626262626201f1c18120b0b17222d3845515d6774818e9aabb5a89c8f8275665c5044382c1f120600000000000000000e1a26313b4653606d7984919eabb5afaca3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3abadb3ac9f92867a6d6054473d3221160c0100000000000000000814212e3b4754616e7b8795a0acaea2988a7e7164594f44362d21170d030006111b242d343a3d3e43434343434343434343434344515d6a7784909daaa79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000000000000000030c18222d36404a525c646e737e8590949da0a8abaaa29f9b9992908e8c8b8b8a8b8b8c8e9092999a9ea1a9aca69e99928d837c706b615a50473e342a1f160c01000000000000000000000a151f2c3845515d6774808d9aa6b0a89c8f8275695e5346382e3030303030303030303030303030303030303845515c6774808d9aa6b0a79b8e8174685d5245392c201304000000000000000000000000000a1724313d4a5764707d8a97abac9f93867a6d61544a413f3f3f3c3b37322a22190e040000131f2c3946525f6c7985929faca295887b6f62554f59606d7a85929ea6a89f93877c6f665c50453b3124232f3c4956626f7c8995a2ac9f9386796c605346392d2013000d1a2733404d5a6673808d998c7f7366594c404b5865727e8b989f93867a6d6053473a2d20140900030d19232b313a40454745403b3a37312a2125323e4b5865717e8b988c7f7266594c3f3326190c000d1a2733404d5a6673808d998c7f7366594c402e23333f4c5966727f8c999e9184776b606060605b606163696e7a84919e9d908377695f53463a2d323e4b5865717e8b988c7f7266594c3f3326190c000000000000050e18212a343c444c545c606a6f787e848b9297a1adb8aca0959089837e79726d67605c544f45403a444f5960636a6662605b53554f473e33281c10040000000000000b1825313e4b5864717e8b97a4b1a99d9083766a574d42362a1e1105000000000000000000000000000000000000000000000003080c0e0e0f0b07070401000000000000000000000000101d2a3643505d697683909ca9b1a5988b7e7265584b3f3225180700000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3a89b8f8275685c4f4235291c0f00000000010c161f282f35393a3e3f42474c525458575f6163656768696a6a6a6b6b6b6b6b6c6c6f7c8995a2afa89b8e82756c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c7783909daaa99d9083766a544a3f33281c0f0300000007101920262b2e2f3946525f6c7985929facada093877a6d6054473a33333333333333333333332d2c28231d150c111b2935404b5564717d8a99a3afac9f9285796d6053463a2d201307000000000000000009141f2c3844505c6673808c99a3afbbb9b1acaa9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa7a9afb8bab1a79b8e8174685d5245392c2013040000000000000000000b1825323e4b5865717e8b98a7b1ac9f9285796d6053473d32201b0f0500010c18222d363f454a4b4f4f4f4f4f4f4f4f4f4f4f4f4f515d6a7784909daaa79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000000000000000b151e2a343f48525c646e73808a92979fa6aca9a29f98928e8a868381807f7e7e7e7f80818386898d92979ea0a8aba39f9591867d716c61594f463c31281e13080000000000000000000004101d2935404b55626e7b88949fabac9f93877b6e61544a3f3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d4753606d7985929eabaca095897c6f63564c4135291d1104000000000000000000000000000b1825313e4b5864717e8b97a4ab9e918478685e5242382f32322f2e2b2620191007000000131f2c3946525f6c7985929faca295887b6f625554606b74818e97a1ada1968d80746a60544a3f33291f232f3c4956626f7c8995a2ac9f9386796c605346392d2013000c1925323f4c5865727f8b988e817468554b404a5663707d8996a49a897c6f6356493c30251a0e090c151f2b353d434b5153514b4847433c332f2633404d596673808c988b7e7165584b3e3225180b000c1925323f4c5865727f8b988e817468554b403428333f4c5966727f8c999e9184776b5e53534a505354565e68727e8b9aa095887b6e6155483b2e33404d596673808c988b7e7165584b3e3225180b00000000000000060f18222a323a424b51585f666c71787e85929eabadaba7a09d95908b847f79726d666059514b433d474f54565d595653504949443e352c21170b000000000000000a1723303d4a5663707d8996aab4ab9f928578695e52463a2d20140700000000000000000000000000000000000000000001090f14181a1b1c181413110d0805010000000000000000000f1c2835424f5b6875818e9ba8b3a6998c807366594d402f23180c00000000000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4a79a8e8174675b4e4134281b0e0000000008131e28313a4145474b4c4d4e4f5052504d535557595a5b5c5d5d5e5e5e5e5e5f5f626f7c8995a2afa99c908376655b60606060606060606060606060606060605e697885929faba79b8e8174685b4e412d22170b000000040e19222a32373b3c3f46525f6c7985929facada093877a6d6054473f3f3f3f3f3f3f3f3f3f3f3f3a38342e271e150c18242f3a4754606d7a86929facaea298887b6e6255483b2f221508000000000000000003101c28343f4a54616e7b87929facb9b1a7a0939393939393939393939393939393939393939393939b9ea5afb8aca095897c6f63564c4135291d1104000000000000000004101d2935404b556875828e9ba8b5a89b8f8275675d5145392c1f1309000005111d29343f485056585c5c5c5c5c5c5c5c5c5c5c5c5c5c5d6a7784909daaa79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000000000000007121d27303c46505a646e73808d929fa2a9aea59e97928c86817d7a77757372717171727375777a7d81858b91969fa3aba7a09892877e716b61584e433a2f24190c03000000000000000000000c18242f3947535f6a7683909ca9afa4998c8073665c504949494949494949494949494949494949494949494e5864717e8b97a2adaa9d9083776b6054443a2f24190d01000000000000000000000000000c1925323f4c5865727f8b98a5a99c8f827669564c412f26252522221f1b150e0700000000131f2c3946525f6c7985929faca295887b6f62555c666f7d88939fa9a59e9184796d60584e42382e2117232f3c4956626f7c8995a2ac9f9386796c605346392d2013000a1623303d495663707d8996908377675c51454754616e7a8796a1988b7f7265574d42362a201a19191e27313d474f555d605d5555534e4641382a36424d576976828f99897c6f6256493c2f231609000a1623303d495663707d8996908377675c5145382c333f4c5966727f8c999e9184776b5e51463f4446474d56616d7a87939f978a7e7164574b3e3136424d576976828f99897c6f6256493c2f23160900000000000000000610182029303940454e545b60666d7a85929fa9a19e989ea0a09d97918c857f78706b605d554e463d444849514d4946443f3839332c231a1005000000000000000815222e3b4855616e7b8898a2aeada297877b6e6154473b2e21140a0000000000000000000000000000000000000000030b131a20242728292521201d1913110d0802000000000000000d1a2734404d5a6773808d9aa6b3a89b8e817568554b4034291c100400000000000000000000000000000000000000000005121e2a36424d576976838f9ca9b2a5988c7f7265594c3f3226190c000000010d19242f3a434c525457595a5b5c5d5e5d5a54484a4c4d4f5050515151515252525663707d8996a3b0ab9e9285796c605353535353535353535353535353535354616e7b8798a2aeaa988c7f7265594c3f322619060000000a15202a343c4347494c4c525f6c7985929facada093877a6d60544c4c4c4c4c4c4c4c4c4c4c4c4c4645403930271d1213202c3945525d687783909daab4aa978a7d7064574a3d3124170a0000000000000000000c17232e3846525e6975828f9ca8b2aca095898686868686868686868686868686868686868686868e939ea9b4aa9d9084776b6054443a2f24190d01000000000000000006131f2c3845515d677884919eabb5ab988b7e7265554b4035291d100400000915212e3a45505a62656969696969696969696969696969696a7784909daaa79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000000000000000c18232e39434e58626c73808d929ca4adaaa39f938e857f7a75706d67686665646465656668676d7074797e848c9299a1a9aaa29992877d706a5f554c4135291e150a0000000000000000000007121d2b37434e5864717e8a97a1adab9e9184796d6056565656565656565656565656565656565656565656565f6a7683909ca9aea2988b7f7265594f4332281e130800000000000000000000000000000c1925323f4c5865727f8b98a5a89b8e8275685b4f42302814191615130f0a040000000000131f2c3946525f6c7985929faca295887b6f6257606d7984919aa4a99e938a7d70675d51463c30261c16232f3c4956626f7c8995a2ac9f9386796c605346392d2013000714212d3a4754606d7a87969286796d60534646525e687884919e9c8f8275695e52463c332a262524293039434f5960676d6765625f58534a41363a46535f697885919286796d6053473a2d201407000714212d3a4754606d7a87969286796d6053463a2d333f4c5966727f8c999e9184776b5e51443338393b46525d687784919e998c7f7366594c40333a46535f697885919286796d6053473a2d201407000000000000000000060e171e272e343c424a505b66727f8c98a2a197918c91969d9fa19e97918b837d746d675f584f473d3b3d44403c3937332d2d28211a110800000000000000000613202d394653606c7985929facb3a9968a7d7063574a3d31261b0f01000000000000000000000000000000000000000b151d252b30343536312d2c2924201d19130c070100000000000c1925323f4c5865727f8b98abb5aa9d908477675c5145382c1f13060000000000000000000000000000000000000000000714212d3a46535f697885929fabb4aa968a7d7063574a3d3024170a00000004111d2935414c565d6064656668696a6b69665e54423f414243434444444545454a5764717d8a97a4b0ada297887b6f625548464646464646464646464646414c5665717e8b98aaaea298897c6f6256493c2f2316090000030f1b26323c464e54555959595f6c7985929facada093877a6d60595959595959595959595959595953514b43392e2318111d2935414c566875818e9ba8b2a5998c7f7266594c3f3326190c00000000000000000006111c2a36424d5763707d8a96a1acaa9d9083797979797979797979797979797979797979797979818e9ba7aea2988b7f7265594f4332281e13080000000000000000000714202d3a4753606d7986939facaea399887b6f6255483c2f24180c0000000b1724313d4a56626c71767676767676767676767676767676767784909daaa79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000000000004101c2834404b555f6a717e8b929da4aeaaa298928b817a736d6863605d5559585857585859555d6063676d717980879197a0a8aba39992867c6f675d51453d30261c1106000000000000000000010f1a26313c4653606d7985929eacada1968a7d70646363636363636363636363636363636363636363636363636e7b88949fabac9f92867a6d6054473d3221160c0100000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0908060300000000000000131f2c3946525f6c7985929faca195887b6e625f69737f8c95a0aca2978e81756b61554b40342b1e1516232f3c4956626f7c8995a2ac9f9386796c605346392d2013000713202c3945525d6877849199897c6f635349414d566774818e9a9f92877b6e61584e453c3631322f353a424b55606b707a76726e6a645c53483c3b4855616e7b8897908477675c5145382c1f1306000713202c3945525d6877849199897c6f6353493f33333f4c5966727f8c999e9184776b5e5144382e2e35414c566a7683909d9a8d8073675a4d40343b4855616e7b8897908477675c5145382c1f130600000000000000000000050c151d23282f394653606c7884919eaa9e91857f848a90959c9fa19e95918981796e6a60594f463c3237332f2d2b27221b1c17100800000000000000000006121f2b3844505b667683909ca9b3a79a8d807467584e43372b1e1308000000000000000000000000000000000000060f1d272f373c4041423e3a39352f2d29251e18120b0300000000091623303c4956636f7c8999a4afac9f9286796d6053473a2d22170b0000000000000000000000000000000000000000000815222e3b4855616e7b8897a2adaea298887b6e6155483b2e2215080000000613202c3945525d686d71727374757778767066544b403435363737373838383f4b5865727e8b98a5b1b3a9988b7f7265594f42392e393939393939392d3945525d6875828e9ba8ac9f9285796d6053463a2d201307000006131f2b37434e585f62666666666c7985929facada093877a6d666666666666666666666666666666605c554b4034281c1019242f404d596673808c99a6b3a79b8e8174685b4e4135281b0e000000000000000000000e1a25303b4653606c7884919eabaca095897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d7a86929facac9f92867a6d6054473d3221160c010000000000000000000916222f3c4955626f7c889aa4afac9f9286796d6053463a2d2013070000000b1825323e4b5865717e828282828282828282828282828282828286929faca79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000000000006131f2c3845515c676f7c86929fa4aeaaa29892867e756d68605d5654514b4d4c4b4b4b4c4d4b5153555c60676d737d859196a0a8aba29891847a6d60594f42382e23170c0000000000000000000009151f2c3845515c6673808d9aa4afa99c8f82757070707070707070707070707070707070707070707070707074808d9aa6b0a79b8e8174685d5245392c2013040000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929faca194887b6e61626e7b86929fa8a69f92857b6e61594f433a2f22190c16232f3c4956626f7c8995a2ac9f9386796c605346392d20130004111d2935414c566875818e9a8d8074655b5044495663707d8996a0998d80736a5f574e4642403f3f41454c545d67707d86837f7b746e64584c40424d5765727f8c988e817467554b4034291c10040004111d2935414c566875818e9a8d8074655b504437333f4c5966727f8c999e9184776b5e51443b3b3b3c44505c667783909d998d8073665a4d4037424d5765727f8c988e817467554b4034291c10040000000000000000000000030b121b27333f4953636f7c8996a1a3998c7f73787d83898f949da0a09d938e847c706b60584e443b302523201f1b1711100b0500000000000000000000030f1c28333f4a546774808d9aaab4aa9d9184776a5f53473a2f24190b0200000000000000000000000000000000030e18212f3941484d4e4f4b4745413a39353029241d150d030000000714202d3a4753606d7a86939facaea399897d706353493f33271b0f030000000000000000000000000000000000000004111d2935414c5565717e8b98a9b3ac9f9285786d6053463a2d2013070000000714212d3a4754606d7a7e7f80818283858276665c5145382f2c2924262a2d37434e586774818e9aa7b4b7aa9d9083776b60544b40352f2b2623282b2f38414c56606d7a85929faca99b8e8275665c5144382c1f120600000815222e3b47545f6a6f72727272727985929facada093877a727272727272727272727272727272726d675c5145382c1f131824313e4b5764717e8a97a4b1a89c8f8275695c4f4236291c0f0000000000000000000009141f2b3844505b66727f8c99a3aea79a8d8174675c606060606060606060606060605765717e8b98a2aea79b8e8174685d5245392c201304000000000000000000000b1824313e4b5764717e8a97acb6aa9d908477665c5144382c1f12060000010d1a2734404d5a6773808d8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f9298a2aea79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000000000004111d2935414c56606d79839198a2aeaea39892867d716c615e56524c474541403f3e3e3e3f404045474b51555c606b6f7b849196a1abaaa0968e81746b60544a3f34281c110600000000000000000004101c2834404b54616e7b87939facac9f93877d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d85929fabaca095897c6f63564c4135291d11040000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929faca194877a6e616c76828f98a3ab9f948b7e72685e52473e31281d100916232f3c4956626f7c8995a2ac9f9386796c605346392d201300010d19242f3d4a5764707d8a989184786c6053464653606c7884919e9f92877c6f695f58534d4d4c4c4c51565d666d7983918f8c888174675a4e4147535f6977839097897d7063564a3d2f23180c0000010d19242f3d4a5764707d8a989184786c6053463c323f4c5966727f8c999e9184776b5e5148484848494e56606d7985929f988b7f7265584c3f3a47535f6977839097897d7063564a3d2f23180c0000000000000000000000000005121f2b3744505b6574808d9aa89f92867a6e6c70767c828991959fa39d9691867d706a5f564c41362a2113120f0b0600000000000000000000000000000b17222d3d4a5763707d8a98a2aeaca095887c6f62564c4135291d140a000000000000000000000000000000000915202a33414b53595b5c5854524c4746413a352f271f150b0100000613202c3945515d677784909daab4ab9a8d8073655b5044372b1f140a000000000000000000000000000000000000010c13202c3945515d6775828e9ba8b5a89c8f8275665c5044382b1f12060000000714212d3a4754606d7a878c8d8e8f909186796d60544a403a39352f31363a3f47535f6a7783909daab6b8aca095897d70665c5145413a37312e34383b424a525e68727f8c98a2ada1978a7d7164544a4034281c100400000916222f3c4955626f7c7f7f7f7f7f7f86929facb3a6998c807f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f796d6053463a2d20131724303d4a5763707d8a96a3b0a99c908376695d5043362a1d1000000000000000000000030f1c28333f4a54616e7a86929facab9f9285796d60535353535353535353535353535f697683909caaaca095897c6f63564c4135291d1104000000000000000000000c1926333f4c5966727f8c99a5b2a99c8f827669544a4034281c10040000010d1a2734404d5a6773808d9a9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9fa2aab4a79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000000000713202c3945525d68727f8c95a0aaafa59f92867d706b625a524c45413a39352f32313132322f35383a40454b515960696e7b849199a3aea89e93897d70665c5044382d22170b000000000000000000000c18232e3946535f6976828f9ca9afa499938a89898989898989898989898989898989898989898989898989899297a2adaa9d9084776b6054443a2f24190d010000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929faca094877a6d68717e8b949faaa3999083776c60564d41352c1f160c0916232f3c4956626f7c8995a2ac9f9386796c605346392d201300000813202d3a4653606d79859296897c7063584e44505b66717e8b959f9991847b6f6a615f57595859555d60686d78818e959c93877c6f625548424d57616e7b88959285796d6053463a2d2013070000000813202d3a4653606d79859296897c7063584e43373f4c5966727f8c999e9184776b5e545454545556585f68707d8a98a298897d7063564a3d424d57616e7b88959285796d6053463a2d201307000000000000000000000000000613202d394653606c7884919eac9b8f82756860646b6f767d838c9299a2a09892867c6f685e52463d32271b1003000000000000000000000000000000000614202d3a4753606d7985929facb1a79a8d8073685d52453b2f261b1106000000000000000000000000000006101a26313c45535d64686964605d5654524c45403931271d1207000004101d2935404b556773808d9aa9b3ab9e9184786c6053463c2f261b1106000000000000000000000000000000000007131d28333f4a54606d7a86929facb1a7988b7f7265544a3f34281c10030000000613202c3945515d67778390999b9c9d988a7d71665b514b4745404343424648505a626f7b8895a0acb8bcb1a79d9083796d605b524c464242413f44464d545b616d7a85919eaaa99e9184796d6053463a2e23180c0000000c1925323f4c5865727f8b8c8c8c8c8c9299a3aeb4a89c928c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c877a6d6054473a2d21141623303d495663707c8996a3afaa9d9083776a5d5044372a1d1100000000000000000000000b17222d3846525e6875828e9ba8ada2978a7e7164574d42464646464646463f4a54626e7b88949fabaa9d9084776b6054443a2f24190d01000000000000000000000d1a2633404d596673808c99a6b3a79a8e8174675b4e412e23180c000000010d1a2734404d5a6773808d9aa6a9a9a9a9a9a9a9a9a9a9a9a9a9a9acaeb4aca79a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000000004111d2935404b55606d7a85929fa7b1a99d938b7e716b60595046413a352f2c2924252524252524292c2e343940454f575e696f7c87929fa7afa59d9183786d60544a3f33281c0f0300000000000000000007121d2a36424d5764707d8a96a1adaba49f9796969696969696969696969696969696969696969696969696969fa2a9aea2988b7f7265594f4332281e1308000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929faca093867a6d6d7a85929ea6a89f92867c6e655b50443b30231a0d040916232f3c4956626f7c8995a2ac9f9386796c605346392d2013000006131f2c3845515c6775818e9b8f82756a6054474a54606c78839098a09691847c746e696766656567676d727a828e939e958d80746a5f534746535e6974818e9a8e8174665c5044382c1f120600000006131f2c3845515c6775818e9b8f82756a6054473e3f4c5966727f8c999e9184776b61616161616162656a6f7a84919e9f9285796d6053463a46535e6974818e9a8e8174665c5044382c1f1206000000000000000000000000000815222f3b4855626e7b8896a1a49a8b7e7164565960636b70787f879297a2a29891847a6e61594f44382c1e13080000000000000000000000000000000006131f2c3845515c6775828f9ba8b2ab9f92857a6d60574d41382d2217110a020000000000000000000001081018222b37424e57646f7475716d6865615e56514b43392f24180c0000010d18242f3d495663707c8997a1adaca196897d7063584e41382d22170f06000000000000000000000000000000071118242f3844505b66717e8b98a2aeaca095887b6e6155483b2e23170b0000000004111d2935414c556673808d99a3a8aa9d9083786c605d5553514b50504d53555a626c74818e9aa7b1b6b4b6aca0958d80736d605d56534d4e4e4a5053575e666c75828f97a1ada1978c7f73665c5145382c1c12070000000c1925323f4c5865727f8b98999999999fa3abb4b9ada49c99999999999999999999999999999993877a6d6054473a2d211416222f3c4955626f7c8895a2afaa9e9184776b5e5144382b1e11000000000000000000000006111c2a36414c5663707d8996a0aca99c8f8276695e5246382d393939393844505c6673808d99a6aea2988b7f7265594f4332281e130800000000000000000000000e1a2734414d5a6774808d9aa7b3a69a8d8073675a4d4034271a07000000010d1a2734404d5a6773808d9a9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000000000613202c3945515d6773808d97a2adada1978e81746c61594f473e36302924201d181918181819181d1f23282f343d454d57606a727f8c95a0acaca0958b7e71665b5044382b1f1308000000000000000000000e1a26313b4653606d7984919eabb5afaca3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3abadb3ac9f92867a6d6054473d3221160c01000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929faca39986796d75818e97a2aca0968c80736a5f53493f32291f1108000916232f3c4956626f7c8995a2ac9f9386796c605346392d2013000004101c2834404b55636f7c899494887c6f62594f44505b666e7b869298a0969187807b777473727273767a7f858f939e969083796d60584e434e58616e7b869294897c6f62544a3f34281c100300000004101c2834404b55636f7c899494887c6f62594f443f4c5966727f8c999e9184776e6e6e6e6e6e6e6f72757c839096a0978d8074665c5145434e58616e7b869294897c6f62544a3f34281c1003000000000000000000000000000b1825323e4b5865717e8b98a89f93877a6d61544f545960666d737d859297a2a1968f82756b6054483a2f24190d0100000000000000000000000000000004101c2934404b5563707d8a96a1acaea2988c7f73695e53493f3327221b140b090603000001000205080d1319222a343c47535f6a7481827e7a76716d68605d554b4035291d100400000713202d3a4653606d7985929eacb2a89c8f82756a5f53493f332721180f0802000000000000000000000003091119232935404b55606c7884919daab3a99d908477695f53463a2d1c110600000000010d19242f3b4854616e7b86929fa9ab9f958c7f736d6762605d555d5d575f61656d717e8a939da9afa9a7a9aba79c928c7f746d68615f575b5b545c6062696e78808d949ea9a59e9184796d60544b4034281c0b000000000c1925323f4c5865727f8b98a5a5a5a5acaeb4bdbfb6ada8a6a5a5a5a5a5a5a5a5a5a5a5a5a5a093877a6d6054473a2d211416222f3c4955626f7c8895a2afab9e9184786b5e5145382b1e120000000000000000000000000d1925303b4854606b7784919daaac9f93877b6e6153493f33272d2d2d3a4653606d7984919eabac9f92867a6d6054473d3221160c0100000000000000000000000e1b2834414e5b6774818e9aa7b3a6998c807366594d4033261a0d000000010d1a2734404d5a6773808d939393939393939393939393939393939393939393938d8074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000000000714202d3a4753606d7a85929fa9b2a89e91857a6d605a50473d352a251e1913110d070b0b0b070c1013181d2329333b454e58606d7883909da7b1a79e9184786c6053463a3024190d0100000000000000000009141f2c3844505c6673808c99a3afbbb9b1acaa9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa7a9afb8bab1a79b8e8174685d5245392c20130400000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929fac9f928679707d89939ea9a59d9184796d60584e41382d20170d00000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130000000c18232e394854606b76828f9c8f82756c61564c4a545f69707d8692979f99928d888481807f7f8082868b91979e9691847b6e675c51464b55606a74818d998f82766a605442382e23170c00000000000c18232e394854606b76828f9c8f82756c61564c414c5966727f8c999e91847b7b7b7b7b7b7b7b7c7e82879095a09892857a6d61544b404b55606a74818d998f82766a605442382e23170c00000000000000000000000000010e1b2834414e5b6774818e9aa79e918477685e5246484f545c606b707c85929fa59e93897d7063564c4135291d1104000000000000000000000000000000000c18232f394653606c7884919ea8b2aa9f92867b6e655b50443e332d261d1a1312100b060e090e1214191e2429343c46505a626e7b878f8b86827e7a766d675d5145392c1f1306000006121f2c3844505c6673808d9aa4afaa9e94887c6f655b50443d332a2219140e09060400000100000406090e141a232b353d45515d67717e8a95a0acada2978b7e7265574d42362a1e0a0000000000000814212d3a46535e6974818e97a1aba79c918c8079736f6d676a6a6a6a696e71777e87929fa5afa59d9b9c9fa6a49c918c807a726e6969686768666d6f747b828d929da6a69e938a7e71675d5142392e23180c000000000c1925323f4c5865727f8b989f9f9f9fa0aeb4bcb9b0a8a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f93877a6d6054473a2d211416232f3c4956626f7c8995a2afaa9d9184776a5e5144372b1e1100000000000000000000000008141e2c38444f5965727f8c98a3aea4998c7f73655b5044372b1f2a36414c5663707d8a97a1ada79b8e8174685d5245392c2013040000000000000000000000000f1c2835424f5b6875818e9ba8b2a5998c7f7266594c3f3326190c000000010d1a2734404d5a6773808686868686868686868686868686868686868686868686868074675a4d4134271a0e0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000006121e2b37424d5765717e8b98a2aeaca0968b7e71685d52483e352b2319130d08040100000000000004070c12182129333d44505c66707d89959fabaca0968a7d7064564c4135291d110400000000000000000003101c28343f4a54616e7b87929facb9b1a7a0939393939393939393939393939393939393939393939b9ea5afb8aca095897c6f63564c4135291d110400000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929fac9f9285797984919ea5a99d93897d70675c51463c2f261b0e0500000916232f3c4956626f7c8995a2ac9f9386796c605346392d201300000007121d2c38434f5963707d8994948a7d70685d52454d57606b707d858f949c9f9a95918e8c8b8c8d8f92989e9c938e847b6e695f554b45515c676f7c879394897c6f63584e4330261c1106000000000007121d2c38434f5963707d8994948a7d70685d52454c5966727f8c99a196918787878787878788898b8f93999e9691867d6f685d524245515c676f7c879394897c6f63584e4330261c11060000000000000000000000000004111d2a3744505d6a7783909da89b8e827568564c413d424a5159606a707d8a939ea69c8f8276685d5245392c2013070000000000000000000000000000000007121f2b3844505b66727f8b96a1acaea2988f82776c605a50443f382f2b26201f1c171b1a1b1a1e2124292f353e464e58626c75828f9999928f8b8682796d6053473a2d201407000003101c28343f4a54616e7b87939fabb0a69c9083776c60584e453c342a251e1a1312100c070e070c1013131a1f262a353d47505a606d7984919ea7b1a99f9285796d6053473b31261a0e00000000000005121e2a36424d57616e7b859299a3aba39c928d84807c7a7877767677787b7e838b9299a3aea69d938e90949fa6a39c928d857f7b777675747576797c80868f949da4a69f948e81746c61554b4030271d1207000000000c1925323f4c5865727f8b939393939393a2aab4b3a89e9693939393939393939393939393939393877a6d6054473a2d21141623303d495663707c8996a3afaa9d9083776a5d5044372a1d1100000000000000000000000002101c27333d4754616d7a86929facab9e9184786c6053463a2f242d3946525e6875828f9ba9aca095897c6f63564c4135291d11040000000000000000000000000f1b2835424e5b6875818e9ba8b2a6998c7f7366594c403326190d000000000d1926333f4c58646e73797979797979797979797979797979797979797979797979746e64584c3f33261a0d0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000000814212e3a47535f697683909daab4aa9e9184786d60564c41362d2319110802000000000000000000000001070f172128343f4a54606b7783909daab2a89b8f8275685d5245392c201307000000000000000000000c17232e3846525e6975828f9ca8b2aca095898686868686868686868686868686868686868686868e939ea9b4aa9d9084776b6054443a2f24190d0100000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929fab9e918578808d96a0aca1978e81746b60554b40342a1d140a0000000916232f3c4956626f7c8995a2ac9f9386796c605346392d2013000000000f1b27323d4854606b7682909991847a6d605b51484f59606b707b828a8f939a9a9d9a9998989a9c9a99928f8981796e695f574d47505a606d798491988f82766b6054463d321e150a000000000000000f1b27323d4854606b7682909991847a6d605b514c5966727f8c99a8a19e949494949494949495989c9a97928d847d6f6b60564c47505a606d798491988f82766b6054463d321e150a000000000000000000000000000004101d2935404b556b7885919ea6998c807366594d40303940444f58616b75818e9ba99f92867a6d6054473a2d21140700000000000000000000000000000000030f1c28333f4a54606d7984919ea6b0aa9e948c7f726c615a5049413c37312d2b2823272728252a2d2f353a41454f585f6a717e8b939ea39f9c998f8275675d5145392c1f13060000000c17232e3846535f6975828e99a3afab9f948b7f726a60574e463e36302a25201f1c181b1a1b181c1f20262b31363f474f59616c74808d96a1adada2978d8073675d5145392a1f1409000000000000020e1a25313b46525e69707d879299a1a9a49c96918d8986858483838485888b90959fa3aba59d948e818390949da5a49d97928c8884828181828385898d92989ea6a49f948f82796d605a5043392f1e150b00000000000c1925323f4c5865727f8686868686868998a2aeafa2968c87868686868686868686868686868686867a6d6054473a2d21141824313e4b5764717e8a97a4b1a99c8f8376695c504336291d10000000000000000000000000000b16202d3946525d6875818e9ba7aca096897c7063554b4135292e3a4754616d7a86929facaa9d9084776b6054443a2f24190d010000000000000000000000000e1b2834414e5b6774818e9aa7b3a6998d8073665a4d4033271a0d000000000b17232f3b47525c64676c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645c52473c3023170b0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000000815222f3b4855626e7b88959fabaea3988b7e72665c50443a2f241b1107000000000000000000000000000000050f17232e38424f5964717e8a98a2aeac9f92867a6d6054473a2d2114080000000000000000000006111c2a36424d5763707d8a96a1acaa9d9083797979797979797979797979797979797979797979818e9ba7aea2988b7f7265594f4332281e13080000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929faa9d91847b87929fa8a69e92857a6d61594f43392e22180b020000000916232f3c4956626f7c8995a2ac9f9386796c605346392d2013000000000a16212c38444f59626f7c8692978e81746d625a50474f5960696e767d83878b8e909192929291908e8b86827c756d675f574d474f59626c73808d9592867c6e62594f44342b200c03000000000000000a16212c38444f59626f7c8692978e81746d625a505966727f8c9393939393939393939399929291908d8a8580796f6b60594f474f59626c73808d9592867c6e62594f44342b200c03000000000000000000000000000006131f2c3945515d677986929fa5988b7f7265584c3f322e343d464f59626f7c8997a2a3998a7d7164574a3e3124170b00000000000000000000000000000000000b17222d3845515c67717e8b949ea9b0a69f92877e716c605b534d47423c3a38342e34343531363a3b41454c5159616a6f7c86929fa5aea99f93877c6f62554b4035291d100400000006111c2a36424d57626e7b87929fa8b0a69f92877c6f695f585046413b36312d2c282327272723282c2d31373b42465159606b717e8a929da8b1a79f92857a6d61554b4035291d10040000000000000009141f2a36424d57606b717e8792979fa2a8a19e999a9391909090919297989da0a7a8a19e938e82797a828e939da0a8a19e9996918f8e8e8f9092989a9fa3a7a09a938d82796d675d51483e31281d0c0300000000000b1824313e4a56626d7279797979797986929facada093877a7979797979797979797979797979797976685d5245392c20131926333f4c5966727f8c99a5b2a79b8e8174685b4e4135281b0e0000000000000000000000000005111d2935414c56636f7c8995a0aca89b8e8174675d5145392c37434e5865727f8b99a3aea2988b7f7265594f4332281e1308000000000000000000000000000e1b2734414e5a6774818d9aa7b3a79a8d8074675a4d4134271a080000000007131f2b36404a52585a6060606060606060606060606060606060606060606060605a58524a40362b1f13070000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000030f1c28333f4a5465727f8b98a7b1ac9f92867a6d60544a3f32281e1209000000000000000000000000000000000006111c26303d4753606d7a85929facaea3998b7e7164584b3e3025190e02000000000000000000000e1a25303b4653606c7884919eabaca095897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d7a86929facac9f92867a6d6054473d3221160c010000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929faa9d9083839099a3aa9f948a7e71685d52473d30271d0f06000000000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130000000004101c27333d47535f6a737f8c95938c7f726c615950444f575f616b70767b7e8183858586858583817e7a756f6a605d554d445059606b717e8b92958c7f736a5f53473d3222190f000000000000000004101c27333d47535f6a737f8c95938c7f726c61595966727f86868686868686868686868686858483807d79736d6760594f445059606b717e8b92958c7f736a5f53473d3222190f0000000000000000000000000000000714202d3a4753606d7a8699a3a4978b7e7164584b3e312328343e4653606c7985929fab998c7f7266594c3f3326190c000000000000000000000000000000000006111c2834404b55616c75828f97a2abafa39992877e726c655f57534d4946443f41414141424246484c52555d606b707c859298a2aeada2978f82756a5f5343392f24180c00000000000e1a26313b47535f6974808d96a0abaea39991857b6e6a615a524c46423c3a38342e3434342e34383a3c42474d535b626b707d86929fa4aeaaa0958b7f72685e5243392f24180d0100000000000000030e1a25303b454f59626c717d858d92989d9fa4aca49f9e9d9d9d9d9ea1a9aba49f9c96918a81786d6d78818991959c9fa3a8a09e9c9b9a9b9c9fa2aaa39f9b95908880786d675d554b40362c1f160c0000000000000915222e3a46515b62656c6c6c6c6c7985929facada093877a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5d564c4135291d111c2934404b556774818e9aa7b3a6998c807366594d4033261a0d00000000000000000000000000010d1924303a4854606b7783909daaac9f92857a6d6054473c313b4754606a7783909dabac9f92867a6d6054473d3221160c01000000000000000000000000000d1a2733404d5a6673808d99a6b3a89b8e8175685b4e422f24190d01000000020e19242e3840474c4d5353535353535353535353535353535353535353535353534d4c4740382f24190e030000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000006121f2b3844505b6675828f9ba8b5a89b8f8275685d5242382e20160c000000000000000000000000000000000000000a15202c3945515d6775828e9ba8b4ab9b8e817468564c41362a1e11050000000000000000000009141f2b3844505b66727f8c99a3aea79a8d8174675c606060606060606060606060605765717e8b98a2aea79b8e8174685d5245392c201304000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929fac9f928790959faba2988f82766c61564c41352b1e150b00000000000916232f3c4956626f7c8995a2ac9f9386796c605346392d201300000000000b16212b37434e58606d7883909793887e716b625a514a4d53596163696e71747678797979787674716d68626058514b4a505a616b707d8792979083786d60584e43352b2110070000000000000000000b16212b37434e58606d7883909793887e716b625a636d727979797979797979797979797978777673716d67605d554f4a505a616b707d8792979083786d60584e43352b2110070000000000000000000000000000000613202d394653606c7986929fa5988b7e7265584b3f3025212b3744505b657784909da79a8d8074675a4d4134271a0e0100000000000000000000000000000000000c18232e3943505a616e7b859299a3afaba39992877f776e69615f575553504a4e4e4d4e4f4d5354565d60676d747d859297a1aaaea49e92857b6e61584e4331271d1207000000000009141f2b37424d57606d79849199a4afaba19791847c706c615e56534d494644404141414141404546494d53575f616d727d869298a2aeaca2989083786c60564c4131281d120700000000000000000009141f29333d47505a626b6f7a80868c90939a999b9d9e9e9f9f9f9e9d9c9a9993908b847d746d66666d747d848a8f92999a9c9d9e9f9f9f9e9d9b9998928f89837d746d665d554c43392f241a0d0400000000000006121e29343f49515658606060606c7985929facada093877a6d6060606060606060606060606060605f524c443a2f2419131f2c3845515c677783909daab4aa988b7e7165584b3e3225180b000000000000000000000000000008131e2c38434f5965727f8b98a2aea2988b7e7165574d4237404b55626f7c8895a0aca79b8e8174685d5245392c20130400000000000000000000000000000c1825323f4b5865727e8b98a5b1a99c8f837669554c4135291d11040000000008121c262e363b3f40464646464646464646464646464646464646464646464646413f3c362f261d1208000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000613202d394653606c7885929fabb2a9988b7e7165564c4130261c0d040000000000000000000000000000000000000004101d2935404b5565717e8b98aab3ab9e918478685e5246392d20140700000000000000000000030f1c28333f4a54616e7a86929facab9f9285796d60535353535353535353535353535f697683909caaaca095897c6f63564c4135291d1104000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929faca39992999fa7a79f92867b6e615a50443a3023190c0300000000000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130000000000050f1a26313c44505c666e7b85929992867d716c605c544e464f55575e6165676a6b6c6c6c6b6a6765615e56544e454e545c606c717d86929992857b6e665c50463c3123190f00000000000000000000050f1a26313c44505c666e7b85929992867d716c605c63666c6c6c6c6c6c6c6c6c6c6c6c6c6b6b696764605c55514b4e545c606c717d86929992857b6e665c50463c3123190f0000000000000000000000000000000005121f2b3744505b657885929ea6998c807366564c41362e2e2e3844505b667784909da79a8d8074675a4d4134271a0e01000000000000000000000000000000000007121d27303e46525e69707d87929fa4acaba399938c827b746e696562605c545b5a5a5b5c575e6164686d737a808a9297a1a9afa59d928a7e70695e52463c321f150b010000000000030e1a26313c45515d676f7d87939fa4aea9a19691867e756e68615e575653514a4e4e4d4e4e4b515356575f62696e767f879298a2aaafa49a92867c6f665b50443a301f160c01000000000000000000030d17212c353f48505960686d737a7f83878a8c8e90919192929292908f8d8a86837e79706c605c5c606b70787d82868a8d8f919292929292908f8c8986827d776f6b605c544c433a31271d120800000000000000010d18232d373f464a4c5353535f6c7985929facada093877a6d6054535353535353535353535353535345413a32281e1314202d3a4753606d7986929facaea298887c6f6255493c2f2216090000000000000000000000000000020f1b27323d4754606d7a86929facaa9c908376695f53473845515c6774808d9aa7aca095897c6f63564c4135291d110400000000000000000000000000000a1724313d4a5764707d8a97abb5ab9e918478675d5145392c20130600000000010a141c242b2f33343939393939393939393939393939393939393939393939393433302b241d140b01000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000815222f3b4855626e7b8897a2adada197877b6e6154483b2f21140a0000000000000000000000000000000000000000010d18242f3b4855616e7b8898a2aeada196877a6e6154473b2e21140800000000000000000000000b17222d3846525e6875828e9ba8ada2978a7e7164574d42464646464646463f4a54626e7b88949fabaa9d9084776b6054443a2f24190d01000000000000000000000000000000000000000c1926323f4c5965727f8c98a5a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929facaba39fa3ababa0958c7f72695f53483e32281e11070000000000000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130000000000000a152028343f4a545f696f7d87929892877e736d665f58524c484d5254585b5d5e5f5f5f5e5d5b5854524c474b51575f666d737e87929892877d6f695f544a3f342a20110700000000000000000000000a152028343f4a545f696f7d87929892877e736d665f586060606060606060606060605f5f5e5d5a5753514b4b51575f666d737e87929892877d6f695f544a3f342a20110700000000000000000000000000000000030f1b27333f49536a7784909da99c8f8276685e52463f3b3b3b404653606c7985929fac998c7f7266594c3f3326190c000000000000000000000000000000000000000b151e2a36424d56606b717f8b939aa3ababa49f948f86817b76726f6d6668686767686869696e71757a7f858d929ea2a9afa59e938d80746c61574d42342a200d030000000000000009151f2935404b55606b727f8b929da4ada9a198928a817a746e696562605c545b5a5a5a5b545c606266696e747b828b9299a2aaaea39f93887e706a5f544a3f32291e0d040000000000000000000000050f1a232d363f474f565d60686e72767b7d7f82838485858685858482807d7a76716d66615a51515960666c71767a7d80828485858685858382807d7a75706b636059514a423a31281f150b00000000000000000006111b252d343a3e3f4646525f6c7985929facada093877a6d6054474646464646464646464646464639352f282016101d2935404b5563707d8a99a3aeac9f9285796d6053463a2d2013070000000000000000000000000000000a16202c3945515d6774818e9aa7ab9f94887b6e62544a3f4653606d7985929fabaa9d9084776b6054443a3024190d0100000000000000000000000000000916222f3c4955626f7c8899a3aeaca196877a6d6054473a2d2114080000000000020a12191f2326272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2726231f19120b0200000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000a1724313d4a5764707d8a97a9b3ab9e918578695e53463a2d2114020000000000000000000000000000000000000000000714212d3a46535f697885929fabb2a896897d7063564a3d3023170a000000000000000000000006111c2a36414c5663707d8996a0aca99c8f8276695e5246382d393939393844505c6673808d99a6aea2988b7f7265594f4332281e1308000000000000000000000000000000000003060809192633404c5966737f8c99a6a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929facb5afacafafa4999083786d60574d42362c20160c000000000000000916232f3c4956626f7c8995a2ac9f9386796c605346392d2013000000000000030c17232e38424d57606b717e8a9299928b80786f6a605d56524c46474b4e505252535252504e4b47464b51555d606a6e787f889299928a7e716b60574d42382e22180e000000000000000000000000030c17232e38424d57606b717e8a9299928b80786f6a605d56524c5353535353535353535251504d4a474b51555d606a6e787f889299928a7e716b60574d42382e22180e0000000000000000000000000000000000000b17222d414e5a6774818d9aa99f92867a6d6159504a4847484b515b636f7c8998a2a49a8a7e7164574b3e3124180b00000000000000000000000000000000000000030c1925303b444f59626d727f889299a1a8afa69f99928e88837f7c797775747474747576787b7e82868c92979da4adaba39f938e81786d605a50453b3022180e0000000000000000030d18242f3a434f59626d74808d929ca3adaaa29f938e86807b76726f6d6669686767676869666d6f72777b81868f949fa3ababa39f918c7f726c61584e42382d20170d0000000000000000000000000008111b242d353d444c52565e6165696e71737577777879797978777573716e6864605c545044454f545b6064686d717376777879797978777573706d67636059544f44403930281f160d030000000000000000000009131b23292e31323946525f6c7985929facada093877a6d6054473a3939393939393939393939392c29241e160e19222c3945515d6774818e9aabb4a99c908376665c5044382c1f120600000000000000000000000000000004111d2935414c55626f7c88959faba6998d8073665c50444d5764717e8a97a2ada2988b7f7265594f4332281e13080000000000000000000000000000000713202d3a4653606d7986929facb2a896897c6f6356493c3025190e00000000000001080e1317191a20202020202020202020202020252728292622211f1a20201a1a17130e08010000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000c1926333f4c5966727f8c99a5b2a99c8f827669574d42362a1e120500000000000000000000000000000000000000000005121e2b37424d576a7683909da9b2a5988c7f7265594c3f3226190c0000000000000000000000000d1925303b4854606b7784919daaac9f93877b6e6153493f33272d2d2d3a4653606d7984919eabac9f92867a6d6054473d3221160c01000000000000000000000000000000040a0f1315161a2734404d5a6773808d9aa6a79b8e8174685b4e4135281b0e0200000000000000000000131f2c3946525f6c7985929facb8bbb9b2a89f93877c6f665c50453b31241a0e04000000000003050916232f3c4956626f7c8995a2ac9f9386796c605346392d20130000000000000006111c26303c454f59616c717e879298928d837c736d68605d5653514a4a484847464748484a4a5053555d60676d737b838c939892877e716c61594f453c30261c0f060000000000000000000000000006111c26303c454f59616c717e879298928d837c736d68605d5653514a4a484847464748484a4a5053555d60676d737b838c939892877e716c61594f453c30261c0f06000000000000000000000000000000000000061724313d4a5764707d8a97a2a3988d80736b605c54555455555c606d75828f9caa9f93877a6e6154473b2e211408000000000000000000000000000000000000000009141f29323d47505a626d727e8791969ea5acaba39f9a95908c8885848281818081828385878b8f92989fa2a9ada8a099928d81786d665c50483e33291f100600000000000000000007131d28313d47515b606c77808c919ea1a9aea59e98928d87837f7c79777674747474747677797c7f83888e92999fa6aea8a199928b7f736d635a50463c2f261c0e05000000000000000000000000000009121b232b323a41454c5254565e616466686a6b6b6c6c6c6b6a696764615e5653514a423e3d424a5053565e616467696a6b6c6c6c6b6a686663605d55554f48433d342e271e160d040000000000000000000000010911181e22242c3946525f6c7985929facada093877a6d6054473a2d2d2d2d2d2d2d2d2d2d2d2d201d19130e17202935404b55606d7985929fabb1a7988c7f7265544a3f34281c1003000000000000000000000000000000010d19242f3a47545f6a7783909da9ab9e9184796d605346525e6976828f9ca9ac9f92867a6d6054473d3221160c0200000000000000000000000000000006131f2c3845515c677783909daab2a6998c7f7366564d41362a1c11060000000000000002070b0d0d131313131313131313151e252c31343536322f2e2b26201f1c18120b0300000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000e1b2834414e5b6774818e9aa7b3a69a8d8073675a4d4031251a0e02000000000000000000000000000000000000000000020e1a2631414e5b6874818e9ba7b3a79a8d8074675a4d4134271a0e00000000000000000000000008141e2c38444f5965727f8c98a3aea4998c7f73655b5044372b1f2a36414c5663707d8a97a1ada79b8e8174685d5245392c201304000000000000000000000000000000070f151b1f2222262b38434e586875828f9ba8a79a8d8074675a4d4134271a0e0100000000000000000000131f2c3946525f6c7985929facacacacada1968d80746a60544a3f33291f120900010407070c10121316232f3c4956626f7c8995a2ac9f9386796c605346392d201300000000000000000a151e2a333d47505a626c717d869196959087807a736d6863605c54575554545354545557545c6063676d727a7f8690959691867d716c625a50473d332a1e150a0000000000000000000000000000000a151e2a333d47505a626c717d869196959087807a736d6863605c54575554545354545557545c6063676d727a7f8690959691867d716c625a50473d332a1e150a000000000000000000000000000000000000000714202d3a4753606d7a85929ea89f93887d726d666362616263676d737f8b949ea69d908376685e5246392d2014070000000000000000000000000000000000000000020d17202b353f48515b626c717d848e939da0a7abaca79f9d989892908f8e8d8d8e8f909298979c9fa3aaada9a29f96918780786c665c544a3f362c21170d00000000000000000000010c161f2b353f44505b656c747f8a92979ea6acaaa29f9a93908c898684828181808181828486898c90959a9fa3ababa49f9691877e736d635b51473e342a1d140a00000000000000000000000000000000091119202830353b4146474d525457595b5d5e5e5f5f5f5f5d5c5a5754524c46444039302f383f44464c5254575a5c5e5f5f5f5f5f5d5c595653514b48443d383228231c150c040000000000000000000000000000060d12151f2c3946525f6c7985929facada093877a6d6054473a2d212020202020202020201413110d0f182029323b45515d67727e8b97a2adab9f95887b6e6155483b2e23170c000000000000000000000000000000000008131e2b37434e5865717e8b97a2ada1968a7d7063564c54616e7b87939faca79b8e8174685d5245392c2013040000000000000000000000000000000004101c2834404b556774818e9aabb5a99c908376685e5246382e23170c0100000000000000000000010606060606060008111e272f373d4042433f3b3a37312d2c29231d150d04000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000101c2936434f5c6976828f9ca9b2a5988c7f7265594c3f322619090000000000000000000000000000000000000000000000091a2733404d5a6673808d99a6b3a89b8e8175685b4f4235281c0f00000000000000000000000002101c27333d4754616d7a86929facab9e9184786c6053463a2f242d3946525e6875828f9ba9aca095897c6f63564c4135291d1104000000000000000000000000000007101920272b2e2f31363e4754606a7885919eabaa998c7f7266594c3f3326190c0000000000000000000000131f2c3946525f6c7985929f9f9f9f9fa59e9184796d60584e42382e21170d02080d111314181c1f201f232f3c4956626f7c89959f9f9f9386796c605346392d20130000000000000000030c18212b353e48505a626b707c848e9399928d85807a75706d666664626160606061626466666d70757a7f858c9298938e847c706b625a50483e352b21180c03000000000000000000000000000000030c18212b353e48505a626b707c848e9399928d85807a75706d666664626160606061626466666d70757a7f858c9298938e847c706b625a50483e352b21180c03000000000000000000000000000000000000000613202c3945515d67727f8c96a1a49a92877f7873706e6e6e7073798088939fa69f948a7e7164564d41362a1e1105000000000000000000000000000000000000000000050e19232d363f49515a626b6f7a818990959c9fa6a9aca9aaa29f9d9b9b9a9a9b9b9c9fa2aaa8acaaa9a19e97928c847c736c665b544a42382e241a0f050000000000000000000000040d192327333f49535b606d737d858f949da0a7acaca49f9c989892918f8e8d8d8d8e8f919298999d9fa7acaca69f99938d847d716c635b51493f352c22180b020000000000000000000000000000000000070e161e24293036393b4246474a4c4f50515252535252514f4d4a4746413b38342e27262d33383a4146474a4d4f515252535252504f4d4a4745403a38332c272118120b03000000000000000000000000000000000106131f2c3946525f6c7985929facada093877a6d6054473a2d21141313131313131313060b0f151a212a323b444e58606d7984919ea9b2a89d908376695f53463a2d1c11060000000000000000000000000000000000010f1b26323c4753606d7985929faba99b8e8275685d525966737f8c99a4aca095897c6f63564c4135291d110400000000000000000000000000000000000c18232e3e4a5764717e8a99a3afac9f93877b6e61544a3f34281d13070000000000000000000000000000000000040e1a232f3941484d4f504c4847433d3a38342f271f160e040000000000000000000001040606111e2a3744515d6a7784909daaa99c8f8376695c504336291d10060000000000000000000000000000000000101d2a3743505d6a7683909da9b1a4978a7e7164574b3e3124180b00000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2a99c908376695d5043362a1d10000000000000000000000000000b16202d3946525d6875818e9ba7aca096897c7063554b4135292e3a4754616d7a86929facaa9d9084776b6054443a2f24190d0100000000000000000000000000040f19222b32373b3c3f4246505a626f7c8997a1ada298897d7063564a3d3023170a0000000000000000000000131f2c3946525f6c798692939393939393938a7d70675d51463d30261c0f080d13191d202125292b2c2c292f3c4956626f7c89939393939386796c605346392d2013000000000000000000060f19232c363f485059616a6f7a818a919697928c86817d797673706f6e6d6c6d6e6f707376797d81858c929796918a817a6f6a615950483f362c23190f060000000000000000000000000000000000060f19232c363f485059616a6f7a818a919697928c86817d797673706f6e6d6c6d6e6f707376797d81858c929796918a817a6f6a615950483f362c23190f06000000000000000000000000000000000000000004111d2935404b55606d79849197a1a399928b84807d7b7a7b7d80858d939aa4a0968f82766c6155443b3025190e020000000000000000000000000000000000000000000008111b242d373f48505960686d757d83898f94989c9fa3aba7a8aaa8a7a7a7a7a8a9a9a7a5a8a09e9a97918c8580796f6b605b544a423830261c110800000000000000000000000000071017222d384149505b636b707b828990959c9fa4acaca9aaa39f9d9c9b9a9a9a9b9c9d9fa3aaaaababa39f9b948f878079706b625a514940372e231a100600000000000000000000000000000000000000040c13191e252a2d30363a3b3e4042444445464646454442403e3b3936302c28231c1c22282b3036393a3e40434445464646454442403d3a39352f2c27211b160c070000000000000000000000000000000000000006131f2c3946525f6c7985929facada093877a6d6054473a2d21140c0c0c0c0d090e1114171b1f262b333b444c56606a73808c96a1adada1968a7e7164574d42362a1e0a000000000000000000000000000000000000000a151f2c3945515d6774808d9aa6ac9f92867a6d6154606b7784919eabaa9d9084776b6054443a3024190d0100000000000000000000000000000000000714212d3a4754606d7a86929facafa4998c7f72665c50443a2f24181007000000000000000000000000000000030c16202c35414b53595b5c5955534e4a47454039312820160c020000000000000004090e111213131e2a3744515d6a7784909daaa99c8f8376695c504336291d13130807050200000000000000000000000000111e2a3744515d6a7783909daab0a3968a7d7063574a3d3024170a00000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1aa9d9083776a5d5044372a1d110000000000000000000000000005111d2935414c56636f7c8995a0aca89b8e8174675d5145392c37434e5865727f8b99a3aea2988b7f7265594f4332281e130800000000000000000000000000000a15202b343c4347494c4d5359616c75818e9ba9aa9f92867a6d6054473a2d2114070000000000000000000000131f2c3946525f6c7986868686868686868681756c61554b40342b1e150c13191e24292c2d323638393836323c4956626f7c86868686868686796c605346392d20130000000000000000000007111a242d363f474f5860686d747d848c929898928e8a8582807d7b7b7a797a7b7b7d8082858a8e929898928c847d746d675f584f473f362d241a11070000000000000000000000000000000000000007111a242d363f474f5860686d747d848c929898928e8a8582807d7b7b7a797a7b7b7d8082858a8e929898928c847d746d675f584f473f362d241a1107000000000000000000000000000000000000000000010d18242f3a45515d676e7c8592979fa39f96918c89888788898d91979fa49d9691847b6e615a504532291f140800000000000000000000000000000000000000000000000009121b252d363f474f565e616b70787d82878b909299989a9c9d9e9f9f9f9e9e9d9c9b999696918d89857f7a736d676059504a42382f261e140a00000000000000000000000000000006111b262f383f44515961696e757d83898f939a9c9fa2aaa7a8aaa9a7a7a7a7a7a9a9a8a6a9a29e9b99928e88827c746d676059504840372e251c110800000000000000000000000000000000000000000002080d14191e20252a2d2e31333537383839393938373634312e2d2a251f1c181211171c1f252a2d2e313436373839393938373533302d2c29241d1c160f0a04000000000000000000000000000000000000000006131f2c3946525f6c7985929facada093877a6d6054473a2d211919191919191a191e2022272b31373e454d565e686f7c87929fa8b1a79e9184786d6053463b31261a0e0000000000000000000000000000000000000004101d2935404b55626f7b88949faba3998b7e726557636f7c8996a0aca2988b7f7265594f4332281e13080000000000000000000000000000000000000713202c3945525d6876838f9ca9b3ab9e9184796d60554b4035292219100903000000000000000000000000040c151e28323d47535d65686965625f585653514b433a32281e1308000000000000080f151a1d1f2020202a3744515d6a7784909d9f9f9c8f8376695c504336292020201514120e09030000000000000000000000121e2b3845515e6b7884919eabafa396897c706356493d3023160a00000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1aa9d9184776a5e5144372b1e1100000000000000000000000000010d1924303a4854606b7783909daaac9f92857a6d6054473c313b4754606a7783909dabac9f92867a6d6054473d3221160c0100000000000000000000000000030f1b27323c464e545559575f616b707e8a939eaaa3988e8174675d5145392c2013060000000000000000000000121f2b3844515d6974797979797979797979756f65594f433a342e261e191e252a3035393a3f43454645433f3a4754606a6f79797979797979766c5f5346392d2013000000000000000000000009121b242d353e464e565d606b70797f858c91969a97928f8d8a888787868787888a8c8f92979a96918c857f79706b605d554e463d352d241b120900000000000000000000000000000000000000000009121b242d353e464e565d606b70797f858c91969a97928f8d8a888787868787888a8c8f92979a96918c857f79706b605d554e463d352d241b1209000000000000000000000000000000000000000000000007131d2935404b555f6a6f7d858f949c9fa09e999695949596999ea19f9b938e847b6e695e52483e3320170d020000000000000000000000000000000000000000000000000009131b242d353d444c525960656c70767b7f8386898b8d8f9091929292929190908e8c8a8784807c79726d67605d554f443f382f261d140c02000000000000000000000000000000000a141d262d3340474f575e616b70777d82878b8f9298989a9b9d9e9e9f9f9f9e9d9d9b999797928e8a86817c766f6a605d554f473e362e251c130a00000000000000000000000000000000000000000000000002080e1114191e20212426282a2b2b2c2c2c2c2a29272421201e1914100c07060b0f13191d20212427292b2c2c2c2c2c2a29262320201d1813100b050000000000000000000000000000000000000000000006131f2c3946525f6c7985929facada093877a6d6054473a2d2525252525262627252a2d2d33373c434750575f686e7a849199a3afaa9f958b7e71665c504438291f140900000000000000000000000000000000000000000c18242f3947535f6a7683909ca9ab9d908376695f6774818e9aa8ac9f92867a6d6054473d3221160c0200000000000000000000000000000000000004111d2935414c5664717e8a97a1adaca0968b7e71675d51453e342b221a140e09060400000101000205060c10161e27303a444f59656f7576726e6a6763605c554c443a3025190d010000000009121920262a2c2c2d2d2d3744515d6a778490939393938f8376695c5043362d2d2d2d22211e1a140e0600000000000000000000121f2c3845525f6b7885929eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0aa9e9184776b5e5144382b1e11000000000000000000000000000008131e2c38434f5965727f8b98a2aea2988b7e7165574d4237404b55626f7c8895a0aca79b8e8174685d5245392c201304000000000000000000000000000006131f2b37434e5860626567696e747d86929fa5a49f92867b6e61554c4135291d11040000000000000000000000101c2935414d5862696c6c6c6c6c6c6c6c6c68655d535246443f383026252a30363a4145474b4f525352504c47454e5860626c6c6c6c6c6c6c6c645a4f43372b1e1200000000000000000000000009121b232c343c434c525961676d737a7f84898e91979899979594939393949597999897918e89847f7a736d676159514c433c342c231b1209000000000000000000000000000000000000000000000009121b232c343c434c525961676d737a7f84898e91979899979594939393949597999897918e89847f7a736d676159514c433c342c231b1209000000000000000000000000000000000000000000000000010c18242f39434e58606b6f7b828a8f94979a9d9e9e9f9f9e9d9a99928f89817a6e695e574d42362c220e0500000000000000000000000000000000000000000000000000000109121b232b323a41464f535b6063696e7276797c7f8182848585868685848483817f7d7b7773706d66605d55514b433d332d261d140b020000000000000000000000000000000000020b141b2227353e454d525960636b70757b7e8285888b8d8f9091929292929191908e8c8a8885817e7a746f6a626058514b433d352d241c130a0100000000000000000000000000000000000000000000000000000205090e11141417191c1d1e1f1f201f1f1e1c1a171414110d08040000000003080d111314171a1c1e1f1f201f1f1d1c1a171413110d070100000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facada093877a6d6054473a32323232323232333430363a3b3f44464e535a61696e7a839096a1abaea3989083786c60544a3f34281c1003000000000000000000000000000000000000000007121d2b37434e5864717e8a97a1ab9f95887b6e616d7985929faba79b8e8174685d5245392c20130400000000000000000000000000000000000000010d19242f3a4653606d7985929ea9b2a89e9184796d605a50463d342a251f1a1313100c070e0e080e1114171c1f283039424c56606b7581837f7b7774706d675e564c4135291d110500000008121b242b313638393939393844515d6a77838686868686868276695c504337393939392e2d2b261f180f06000000000000000000121f2b3845525e6b7884919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0aa9d9184776a5e5144372b1e110000000000000000000000000000020f1b27323d4754606d7a86929facaa9c908376695f53473845515c6774808d9aa7aca095897c6f63564c4135291d110400000000000000000000000000000815222e3b4754606a6f7274777b81879298a2a39f928c7f72695f53433a2f24190d0100000000000000000000000d1925303b4650585d5f60606060606060605b5e60605f53504a42382e30363a41464c5254585c5e5f5f5c5853514b4e5456606060606060605f5a52493e33271b0f0000000000000000000000000009111a222b313a41454f555d60686d72787d8185888b8d8f919292939292918f8d8b8885817d78726d68605d554f45413a312a221a11090000000000000000000000000000000000000000000000000009111a222b313a41454f555d60686d72787d8185888b8d8f919292939292918f8d8b8885817d78726d68605d554f45413a312a221a1109000000000000000000000000000000000000000000000000000007121d27313c464f5960696e777d82888b8e909192929291908d8b86827d746d685e574d453b30241a100000000000000000000000000000000000000000000000000000000000091019202830363d41495053575e6165676d6f7274757778787979787877767472706e696763605c54514c45403a3128221c140b0200000000000000000000000000000000000000020a1117232c333b42464f54596063696e7276797c7e808283848585868585848382807d7b7975716d68625f58544e45403a312b231b120a01000000000000000000000000000000000000000000000000000000000000020507080b0d0f11111213131312110f0d0b080705010000000000000000010507070b0d10111213131312110f0d0a07060401000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facada093877a6d6054473f3f3f3f3f3f3f3f404042424647495053585f626c717b839095a0a8afa59f92867c6f655b5042382e23170c000000000000000000000000000000000000000000010f1a26313c4653606d7985929eaca7998c7f7366717d8a98a2aca095897c6f63564c4135291d1104000000000000000000000000000000000000000008131f2c3845515c6773808c97a1adada1968d80746c61584e463e36302a26201f1c181b1a1b1b191e2023282c313a424a545d68707d898f8c8884807d796d685e5246392d2013070000040f19242d353d424546464646453d4f5b6771777979797979797670665a4e3b44464646463b3a37312a21180e030000000000000000111e2b3844515e6b7784919eaab0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a99d9083766a5d5043372a1d100000000000000000000000000000000a16202c3945515d6774818e9aa7ab9f94887b6e62544a3f4653606d7985929fabaa9d9084776b6054443a3024190d0100000000000000000000000000000916222f3c4955626f7c7f8084888e9299a29f99928c80746d63574d4231281e130800000000000000000000000008141f2a343e464d51525353535353535761686b6c6c6c605c544a3f353a41464c52565d6065696b6c6b6965605c554e474953535353535353534f4940372c21160a00000000000000000000000000000810191f282f353e434b51565d60666c7074787b7e80828485858685858482807e7b7874706c66605d56514b433e352f281f1910080000000000000000000000000000000000000000000000000000000810191f282f353e434b51565d60666c7074787b7e80828485858685858482807e7b7874706c66605d56514b433e352f281f191008000000000000000000000000000000000000000000000000000000010b151f2a343d474f575e656c70767b7e8183848586858483817e7b756f6b605d564d453b33291f1208000000000000000000000000000000000000000000000000000000000000070e161e252a2f383f44464d5354555c60636567696a6b6c6c6c6b6b6a69686663615e575653504a45413a352f281f17110a020000000000000000000000000000000000000000000006111a202930363d44484f54565e6165666d6f7174757778787979787877767573716f6d6664605d56534e47433d352f281f1911090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929facada093877a6d60544c4c4c4c4c4c4c4c4c4c4d4e4d5254535b60636a6e757e859195a0a7afa59d938b7f726a5f53493f30261c1106000000000000000000000000000000000000000000000a151f2c3845515c6773808d9aa4aa9d9184776a75828e9baaaa9d9084776b6054443a3024190d01000000000000000000000000000000000000000004101c2834404b55606d7a85929ea7b1a89d928a7e706a60585046423b36312d2c282327272728252a2d2e34383e434c545c666d7a84919c9896918d89857a6d6154473a2e21140700000915202b353f474e5253535353514948555f676a6c6c6c6c6c6c69665e54474851535353534846423c332a1f14090000000000000000111e2a3744515d6a7784909daab0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1a99c8f8276695c504336291d1000000000000000000000000000000004111d2935414c55626f7c88959faba6998d8073665c50444d5764717e8a97a2ada2988b7f7265594f4332281e13080000000000000000000000000000000e1a2734414d5a6774808c8d90959b9fa098928e877f746e645b51453c311f160c01000000000000000000000000020d18222c343b4144464646464646505c6873787979796d665c504441454c52565e61686d727678797876726d675f584e464646464646464646433e372e251b1005000000000000000000000000000000070d161e2429313a40454c52545b6063656c6e717476777879797978777674716e6c6563605b54524c4540393129241e160d070000000000000000000000000000000000000000000000000000000000070d161e2429313a40454c52545b6063656c6e717476777879797978777674716e6c6563605b54524c4540393129241e160d070000000000000000000000000000000000000000000000000000000000030d18222b353d454d535b6063696e71747677787978777674716e69636059524c433b332921170d0000000000000000000000000000000000000000000000000000000000000000050c13191d262d33373b4246484b515356585a5c5d5e5f5f5f5f5e5d5d5b595754534d4946443f38352f29241d160d0600000000000000000000000000000000000000000000000000080e171f252a33383d44484d5254545c60626567686a6b6b6c6c6c6b6a6a68666462605c5454524c47433c383229241d160d07000000000000000000000000000000000000000004080a0b1313131313131311110e0b060100000000000000000004090e11121313131313131313070705010000000000000000000000060b0e1011131313131313130a0a0804000000000000000000000000000000000000000006131f2c3946525f6c7985929facada093877a6d6058585858585858585859595a5b565e6164656c70757c828a9297a0a8afa59e938e81746d62584e41382d1e150a000000000000000000000000000000000000000000000004101c2834404b55616e7b87939faca095887b6f7985929faca3988b7f7265594f4332281e1308000000000000000000000000000000000000000000000c18232e3945525d68727f8c959faaaea49f92867c6f6a625a524d46423c3a38342e343434353036393b3f444650565d666d78828f96a0a8a09e988d8074685e5246392d20130700000e1a26313d4751595e5f6060605e56544f555b5d6060606060605c5a544d53555d6060606055534d453c31261a0e0200000000000000101d2a3643505d697683909ca9b1a5988b7e7265584b3f3225180700000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6b3a89b8f8275685c4f4235291c0f000000000000000000000000000000010d19242f3a47545f6a7783909da9ab9e9184796d605346525e6976828f9ca9ac9f92867a6d6054473d3221160c020000000000000000000000000000000e1a2734414d5a6774808d9a9da0a7a0969186817b726d645c53493f332a1f0d04000000000000000000000000000006101a222a303538393939393945525e6b7885868686786d60534a4c51565e61686d737a7f82858685837f796f6a5f584e42382e393939393937332c251c13090000000000000000000000000000000000040c13191f282f353a41454a5053535b60626567696a6b6c6c6c6b6a69676562605b5353504a45413a352f281f19130c0400000000000000000000000000000000000000000000000000000000000000040c13191f282f353a41454a5053535b60626567696a6b6c6c6c6b6a69676562605b5353504a45413a352f281f19130c0400000000000000000000000000000000000000000000000000000000000000060f19232b333b41495053575f6164676a6b6b6c6c6b6a6764615e57544f45413a312921170f0500000000000000000000000000000000000000000000000000000000000000000002080b141b22272b31363a3b404547494c4e4f5152525353525151504e4c4a4846423d3a38342e29241e18130c04000000000000000000000000000000000000000000000000000000050d141a21272c33383b4246474a505355585a5c5d5e5f5f5f5f5e5e5d5b59575553504a4745413a37312b272018130c0400000000000000000000000000000000000000050c11141717202020202020201e1d1b17120c0400000000000000080f151a1d1f20202020202020201413110d080200000000000000040b11171a1d1e20202020202020171614100b0500000000000000000000000000000000000006131f2c3946525f6c7985929facada093877a6d656565656565656565656566676869696e7074787d81878f939ea1a9aca49f938e81786d605b51463c2f261b0c030000000000000000000000000000000000000000000000000c18232e3946535f6976828f9ca9a7998c7f737d8a98a2ac9f92867a6d6054473d3221160c020000000000000000000000000000000000000000000007121d2935414c56606d78839098a2acaea29892857c716c615e57534d494645404141414141424146474a50535a61686d78818e949fa8b0a69f92857a6d61564c4135291d11050000111d2a36424e59636a6c6c6c6c6b636059514a51535353535353504e50575f626a6c6c6c6c6c5f574d42372b1e1205000000000000000f1b2835424e5b6875818e9ba8b3a6998c807366594d402f24180c00000000000000000000000000000000000000000000020e1b2835414e5b6874818e9ba7b4a79a8e8174675b4e4134281b0e0000000000000000000000000000000008131e2b37434e5865717e8b97a2ada1968a7d7063564c54616e7b87939faca79b8e8174685d5245392c201304000000000000000000000000000000000e1a2734414d5a6774808d9aa5a9aa9e91847d78716c605d554b43392f24180c050000000000000000000000000000000810181f25292b2c2d2d2d3643505d6976839098897c6f635a56555d60686d737a80858b8f9192928f8b847c6f6a5f544a3f34282d2d2d2d2b27211b130a0100000000000000000000000000000000000001080d161d24292f35383f444649505355585a5c5e5f5f605f5f5e5c5a585553504946443f38352f29241d160d080100000000000000000000000000000000000000000000000000000000000000000001080d161d24292f35383f444649505355585a5c5e5f5f605f5f5e5c5a585553504946443f38352f29241d160d080100000000000000000000000000000000000000000000000000000000000000000007111920292f383f44464d5355585b5d5e5f5f5f5e5d5a5854524d48443d352f281f170f05000000000000000000000000000000000000000000000000000000000000000000000000020a11171b1f252a2d2f34383a3c3f4142444545464645454443413f3d3b3a36312d2c28231c19130d0701000000000000000000000000000000000000000000000000000000000002090e161c21272c30363a3b3f4446494b4d4f5051525253525251504f4d4a4846443f3a39352f2b26201b160d0701000000000000000000000000000000000000000810171c2123242d2d2d2d2d2d2d2b2a27231d160e06000000000009121920262a2c2c2d2d2d2d2d2d2d21201d19130c050000000000050e161d22272a2a2d2d2d2d2d2d2d2423201c171008000000000000000000000000000000000006131f2c3946525f6c7985929facada093877a72727272727272727272727273737576787a7d8184898e93999ea6ada8a19a938c81786d665c50493f342a1d140a0000000000000000000000000000000000000000000000000007121d2b37424d5764717d8a97a1aa9d908377818e9baaa79b8e8174685d5245392c2013040000000000000000000000000000000000000000000000000d19242f3a44505c666e7b86929aa4afaaa29792867e756e69615f575653514b4e4e4d4e4e4f4c5254545c60646c717a828e939ea6b0a89f948c7f72685e52443a3025190d010000121f2c3845525e6a757979797978706b605c544d4546464646434b515a61696e777979797976695f53463a2d211407000000000000000d1a2734404d5a6773808d9aa6b3a89b8e817568554b4035291d100400000000000000000000000000000000000000000005121e2b37424d57697683909ca9b2a5988c7f7265594c3f3226190c00000000000000000000000000000000010f1b26323c4753606d7985929faba99b8e8275685d525966737f8c99a4aca095897c6f63564c4135291d1104000000000000000000000000000000000e1a2734414d5a6774808d95999c9fa096918a847e756d675d554b40352921160b00000000000000000000000000000000060d14191c1f1f20202834414e5b6774818e9a8e81756c656364676d737a80868d92989c9e9f9e9c9691857c6f665c5044382b1f2020201e1b16100901000000000000000000000000000000000000000000040c13181e24292d3338393f4446484b4d4f515252535252514f4d4b4846443f3938332d29241e18120c0400000000000000000000000000000000000000000000000000000000000000000000000000040c13181e24292d3338393f4446484b4d4f515252535252514f4d4b4846443f3938332d29241e18120c04000000000000000000000000000000000000000000000000000000000000000000000000070e171d262d33373b4246484b4e505152535251504e4b4746423b383229241e160d05000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f141a1e2123292c2d303234363738393939383837363533302e2d2a25201f1c17110d0801000000000000000000000000000000000000000000000000000000000000000000050b10161c1f252a2d2e34383a3c3e414244454546464545444342403e3c3a38342e2c29241e1b150f0a04000000000000000000000000000000000000000008121a22282d3031393939393939393837332e2820180e0400000008121b242b31363839393939393939392e2d2a251e160e05000000040e1720272e3336373939393939393931302d28221a11080000000000000000000000000000000006131f2c3946525f6c7985929facb2a5988c7f7f7f7f7f7f7f7f7f7f7f7f7f7f80818385878a8d91969b9fa4ababa39f9691887f776d665c544a3f372d22180b0200000000000000000000000000000000000000000000000000000e1a26313c4653606d7984919eaba095887b85929faba095897c6f63564c4135291d110400000000000000000000000000000000000000000000000008131e28343f4a545f69717e88939fa3afa9a298928b827b746e696662605c545b5a5a5a5b5c565e6164666d71767e848f949ea5afaaa1968f82786c60564c4132281e130800000013202c3946535f6c7987868686847d736d665f575146413e454d555c606c717b83868686867b6e6155483b2e221508000000000000000c1825323f4b5865727e8b98abb5aa9d908477675d5145392c1f13060000000000000000000000000000000000000000000714212d3a46535f697885929fabb4aa968a7d7063574a3d3024170a00000000000000000000000000000000000a151f2c3945515d6774808d9aa6ac9f92867a6d6154606b7784919eabaa9d9084776b6054443a3024190d01000000000000000000000000000000000e1a2734414d5a67748087898c90949da09e96918a81796d675d51453d33271c10030000000000000000000000000000000002080d101213131825323f4b5865727e8b98938b7f75717071747a80858d92989fa2aaa4a3a5a8a1979083786d6053463a2f24190d13120f0a0500000000000000000000000000000000000000000000000001070d13191c22282b2d3337393b3e41434445464646454443413e3b3937332d2b28221c19130d070100000000000000000000000000000000000000000000000000000000000000000000000000000001070d13191c22282b2d3337393b3e41434445464646454443413e3b3937332d2b28221c19130d07010000000000000000000000000000000000000000000000000000000000000000000000000000050b141b22272b31363a3b3e4143444546454443413e3b3a36302c272119130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214181c1f20232527292a2b2c2c2c2c2b2a2a28262421211e1a1312100c060000000000000000000000000000000000000000000000000000000000000000000000000000050b1014191e2023282c2d2f3234353738383939393837373533312f2d2b2823201d19130f0a0400000000000000000000000000000000000000000005101a242c33393c3e4646464646464644433f39322a20160c0100040f19242d353d42454646464646464646463936302820160c0200000b16202932393f4344464646464646463d3c39332c231a100500000000000000000000000000000006131f2c3946525f6c7985929facb8a79c918c8b8b8b8b8b8b8b8b8b8b8b8c8c8d8e909297979a9ea1a8acaba39f99928d847d736c655c544a42382e241b100600000000000000000000000000000000000000000000000000000009141f2c3844505c6673808c99a4a79c8f828f97a2aa9d9084776b6054443a3024190d01000000000000000000000000000000000000000000000000010b17232e38424d57616c727f8c919fa3abaaa39f938f86817b76726f6d66696867676768686a686e7174797d838a91969fa6afa9a19891847a6d665b50443a3020160c020000000b1825323e4b5865717e8b9296918780786e69625b524c4550575f676d747e869095948d8074695f53463a2d211407000000000000000916232f3c4956626f7c8999a3afac9f92867a6d6053473a2d22170b0000000000000000000000000000000000000000000815222e3b4855616e7b8898a2aeaea298887b6e6155483b2e221508000000000000000000000000000000000004101d2935404b55626f7b88949faba3998b7e726557636f7c8996a0aca2988b7f7265594f4332281e130800000000000000000000000000000000000713202d3a4653606d787b7c7f838990959fa09d938e82796d60594f44382c1f1409000000000000000000000000000000000000000305060815222f3b4855626e7b88959b918b827e7d7e81858c92989fa2a29f9a9796989c9f9f958a7d7164554c4135291d110405020000000000000000000000000000000000000000000000000000000001080d11171c1f22272b2d2f323436373839393938373634322f2d2b27221f1c17110d08010000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d11171c1f22272b2d2f323436373839393938373634322f2d2b27221f1c17110d08010000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171b1f262a2d2e31343738383939383734312e2d2a251f1b160d08010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205070c10131416191b1c1e1f1f20201f1e1e1d1b19171514120e09060300000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e1114171c1f20222527292a2b2c2c2c2c2b2b2a28262422201f1c1713110d080100000000000000000000000000000000000000000000000c17222c363e45494a53535353535353514f4b443c32281d1206000915202b353f474e5253535353535353535346413a32281e13080006111d27323b444a4f51535353535353534a49443e362c22170b00000000000000000000000000000006131f2c3946525f6c7985929facb8ada39c98989898989898989898989898999a9b9c9ea1a9a7aba9a8a19e99928e87817a706b605b534a423930261c12090000000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939fac9e948f949ea9a3988b7f7265594f4332281e1308000000000000000000000000000000000000000000000000000006111c26303c45505a636d737f8b9299a1a8aea59e98928d87837f7c79777674747474747577787a7d81848a90949ea1a9afa8a19792867c6f685e544a3f32281e0e04000000000b1724313d4a56626d73808c9399938d837b726d615e56515a61696e79818a9298958f82786d60574d42372b1e1205000000000000000714202d3a4753606d7a86929facafa399897d7063544a3f33281c0f030000000000000000000000000000000000000004111d2935414c5665727e8b98aab3ab9f9285786c605346392d2013060000000000000000000000000000000000000c18242f3947535f6a7683909ca9ab9d908376695f6774818e9aa8ac9f92867a6d6054473d3221160c02000000000000000000000000000000000006121f2b3844505c666d6e6f72767c838f949fa59e948e81746b6054483b31251a0e020000000000000000000000000000000000000000000814212e3a47535f6a7784919d9b948f8b898a8d92989fa2a29f98928d8a898b90949c9c8f8276675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000060b0f12171b1f20222527292b2c2c2d2c2c2b29272522201f1b17120f0b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12171b1f20222527292b2c2c2d2c2c2b29272522201f1b17120f0b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f141a1e212225282a2b2c2c2c2b2a272521201e1a140f0b04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090c0e0f1112121313121211100e0c0a0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205060c10121316181a1c1d1e1f1f201f1f1e1d1c1a17151312100b06040100000000000000000000000000000000000000000000000004111c28333e48505557606060606060605e5c564e44392e23170b010e1a26313d4751595e5f606060606060605f524c443a3025190d010b17222e39444d555b5d60606060606060575550483e33281c1004000000000000000000000000000006131f2c3946525f6c7985929facacacada7a5a5a5a5a5a5a5a5a5a5a5a5a5a6a6a8a9a8a6aba39f9c9996918c87817b746d6761595049413930271e140a0000000000000000000000000000000000000000000000000000000000000c17232e3846535e6975828f9ca8a69e9c9ea6ac9f92867a6d6054473d3221160c020000000000000000000000000000000000000000000000000000000a141e2a333e48515b636d737f8791969fa4acaaa29f9a93908c898684828181808181828385878a8e91979c9fa6adaca59d9691857c6f6a60564c42382d20160c00000000000915212e3a45505a636e74818e939f9590867e756d68605c606c717b838e939f969083796d665c50453c31261a0e020000000000000006131f2c3945515d677783909daab5ab9a8d8073665b5044382b1f140a000000000000000000000000000000000000010c13202c3945525d6875828f9ba8b5a89b8f8275665b5044382b1f120600000000000000000000000000000000000007121d2b37434e5864717e8a97a1ab9f95887b6e616d7985929faba79b8e8174685d5245392c20130400000000000000000000000000000000000003101c28343f4a545c606162666b6f79828f97a1a69d93897d7063574d42362a1e120500000000000000000000000000000000000000000006121e2b37424e5765727e8b95a09e9c9896979a9fa2a39f98928c85817e7d7e838c929f92867a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000003060b0f121315181a1c1e1f1f201f1f1e1c1a181513120f0b0603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060b0f121315181a1c1e1f1f201f1f1e1c1a181513120f0b0603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415181b1d1e1f201f1e1d1b181414110e090200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607090b0e0f1112121313121211100f0d0b09070603000000000000000000000000000000000000000000000000000000000814212d3945505a61646c6c6c6c6c6c6c6b6760564b3f33271b0e04111d2a36424e59636a6c6c6c6c6c6c6c6c6c5e564c41362a1d11050e1a27333f4a555f676a6c6c6c6c6c6c6c64615a5044392d201408000000000000000000000000000006131f2c3946525f6c7985929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa39f9f9e9d9c9b99979992908c89847f7b746e69605d554f443f382f271e150c0200000000000000000000000000000000000000000000000000000000000006111c2a36424d5763707d8a96a1acaaa8aab0a79b8e8174685d5245392c20130400000000000000000000000000000000000000000000000000000000020c18212c363f49515b636d727d848e939a9fa6acaca49f9d999992918f8e8d8d8d8e8f909298979a9ea1a9abaca7a09d938e847c6f6a60584e443a2f261c0e05000000000005111d29343f48525b606d78818f959f98928b827a706b676d747e8690959d9891847b6e675d544a3f332a1f1409000000000000000004101d2935404b556673808d99a9b3ab9e9184786c6053463d2f261c1106000000000000000000000000000000000008131e28343f4a54606d7a86929facb1a7988b7e7265544a3f33281c0f03000000000000000000000000000000000000010f1a26313c4653606d7985929eaca7998c7f7366717d8a98a2aca095897c6f63564c4135291d1104000000000000000000000000000000000000000b17232e38424a505354565960676d7a85919eaba59c8f8276695e53463a2d211407000000000000000000000000000000000000000000020e1a26313c4653606c78839097a1a8a4a3a4aaa29f98928d86807a74717072767f8c94998a7d7063574a3d3024170a0000000000000000000000000000000000000000000000000000000000000000000000000000030506080b0e1011121313131211100e0b080605030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030506080b0e1011121313131211100e0b0806050300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080b0e101112131211100e0b0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001040613131313131313130d0c0a070200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303c4955616c71797979797979797772675c4f43372a1d1106121f2c3845525e6a75797979797979797976685e5246392d201307101d2a36434f5b67717779797979797979706c6155493c3023160a000000000000000000000000000006131f2c3946525f6c798592939393939393939393939393939393939398929291918f8e8d8b8886837f7c78736e69615f57514c433e332d261d150c0300000000000000000000000000000000000000000000000000000000000000000e1a25313b4653606c7884919e9f9f9f9f9fa095897c6f63564c4135291d11040000000000000000000000000000000000000000000000000000000000060f1a242d374049515b626b6f7a818790949b9fa3ababa9aba39f9d9c9b9a9a9a9b9b9d9fa2aaa7ababaca49f9c959189817a6e6a60584e463d32281d140a000000000000010c18222d364044505c666d79829095a09f938f857d746f79818a9298a09992867c6f695e554b42382e21180e030000000000000000000c18242f3c4956636f7c8997a1adada196897d7063584e42382d22170f06000000000000000000000000000000081119242f3844505c66727e8b98a3aeaca095877b6e6154483b2d22170b00000000000000000000000000000000000000000a151f2c3845515c6773808d9aa4aa9d9184776a75828e9baaaa9d9084776b6054443a3024190d010000000000000000000000000000000000000006111c2630383f444647494f555e68727f8c99a3ab9f94877b6e6154483b2e2115080000000000000000000000000000000000000000000009151f2b3844505b666f7c8591969c9f9f9e9c98928d86807a736d686463656d76828f998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d111320202020202020201a1917130e0700000000000000000000000000000000000000000000000000000000000000000000000000000000000002080c101212131313131313131306040000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717e8686868686868684776b5e5144382b1e110613202c3946535f6c7987868686868686867a6d6154473a2e211407111e2a3744515d6a7783868686868686867e7064574a3d3124170a000000000000000000000000000006131f2c3946525f6c798686868686868686868686868686868686868686858585848381807e7c7976736f6c65615e57534d45413a3127221b140b0300000000000000000000000000000000000000000000000000000000000000000009141f2b3844505b66737f8c999393939393939084776b6054443a3024190d0100000000000000000000000000000000000000000000000000000000000008121c252e374048515960686d757c83898e92999b9fa2a9a6a8a9a9a7a7a7a7a7a8aaa9a8a6aaa29f9c9a938f89847d746d685f584e463d342b20160b020000000000000006111b2428343f4a545d676d7a839196a19e979188807b838e929fa29f93877d706a5f574d433a30261c0f06000000000000000000000713202d3a4653606d7985919eabb2a89c8f82766a60544a3f3328211810080200000000000000000000000309111a232935414c56606d7884919eaab3a99d908377695e53463a2d1c1106000000000000000000000000000000000000000004101c2834404b55616e7b87939faca095887b6f7985929faca3988b7f7265594f4332281e13080000000000000000000000000000000000000000000a141e262e34383a3b3d434c56606d7a86929faca6978a7e7164574b3e3124180b00000000000000000000000000000000000000000000030f1c28333f4a545f6a6f7c848c909292918f8b86807b746e68605d56565b64707d8a998f8275685c4f4235291c0f0200000000000000000000000000050a0d0f10101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010100f0d0a05000000000000000000000000000000000000000000000105090b0b131313131309090703000000000000000003070b0d0e1313131311100e0a0600000306080913131313100f0d09040004090e111213131313130a090704000000000000000000000000000000000003080b0d0e13131313070604000000000000000005090d0f1013131312110f0c07010000000000000000000000000000000000000000000000000000000000000000040c13181d202d2d2d2d2d2d2d2d2626231f19120a01000000000000000000000000000000000000000000000000000000000000000000000000000000060d13181c1e1f202020202020202013100c07010000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a93939393939184776b5e5144382b1e110613202c3946535f6c7986929393939393877a6d6154473a2e211407111e2a3744515d6a77849093939393938a7d7064574a3d3124170a000000000000000000000000000005121f2b3844515d6974797979797979797979797979797979797979797979787877767573716f6d666662605b53534d47423c352f281f17110a0200000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54616e7a8786868686868686867f7265594f4332281e130800000000000000000000000000000000000000000000000000000000000000000a131c252e363f474f565d606a6f767c81868b8e929797999b9c9e9e9f9f9f9e9e9d9d9b999798928f8b87827d78706b605d564e463c342b22190e05000000000000000000091217232e38424b555d686e7b849197a2a19a938d8890959da59d928b7f726b61584e453b31281e140a000000000000000000000006121f2b3844505c6673808d99a4afaa9f94897c6f665b50443d332a2219140e09060400000100000406090e151a232b353d45525d68717e8b96a0acada1978b7e7165574d42362a1e0a000000000000000000000000000000000000000000000c18232e3946535f6976828f9ca9a7998c7f737d8a98a2ac9f92867a6d6054473d3221160c02000000000000000000000000000000000000000000020c141c23282b2d2e313a45525d687783909daaa6998d8073665a4d4033271a0d00000000000000000000000000000000000000000000000b17222d38424e585f6a6f797f83858684827f7a736e69615e56524c4a54606d7987868683776a5e5144372b1e11040000000000000000000000030a1016191c1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1c1916100a0300000000000000000000000000000000000000060c1115171820202020201615130f0a040000000001080e13171a1a202020201e1d1a16110b0a0f131516202020201c1b1915100a0f151a1d1f2020202020171614100b050000000000000000000000000001080e14171a1b202020201413100c0701000000020a1015191c1c2020201f1e1b18130c05000000000000000000000000000000000000000000000000000000000000040d161d24292c393939393939393933322f2a241c130a00000000000000000000000000000000000000000000000000000000000000000000000000000710181f24282b2c2d2d2d2d2d2d2d2d1f1c18120b0300000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a979f9f9f9e9184776b5e5144382b1e110613202c3946535f6c7986929f9f9f9f94877a6d6154473a2e211407111e2a3744515d6a7784909d9f9f9f978a7d7064574a3d3124170a000000000000000000000000000003101c2935414d5862696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6a6968666462605c545653504946423b373129241e160d06000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3846525e686e797979797979797979726d6256473d3220160c020000000000000000000000000000000000000000000000000000000000000000010a131c242d353d444c525860626a6f757a7e8285888a8d8e909192929292929191908e8c8a8985827f7b75706c656059524c433c332b22191007000000000000000000000006111c263039434c565e696f7c859299a3a49f9a959da0a79e948d80746d62594f463c33291f160c02000000000000000000000003101c28343f4a54616e7b87939fabb0a69d9083786c60594f453c342a251f1a1312100c070e070c1013131a1f262b353d47505a606d7a84919ea8b2a99e9285796d6053473b31251a0e0000000000000000000000000000000000000000000007121d2b37424d5764717d8a97a1aa9d908377818e9baaa79b8e8174685d5245392c2013040000000000000000000000000000000000000000000000020a11171c1f20212935414c566774818e9aa7a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000006111c262f3c464e585f676d727678797876726d68615e56524c454145515d67757979797771675b4f43362a1d100400000000000000000000040d151c21262929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292926211c150d0400000000000000000000000000000000000911181d2124252d2d2d2d2d23221f1b160f070000020b12191f2326272d2d2d2d2a2927221c15151b1f22232d2d2d2d292825211b141920262a2c2c2d2d2d2d2423201c1610080000000000000000000000020b131a1f2426272d2d2d2c201f1d18120b0300040c141b212528292d2d2d2b2a28231e170f0600000000000000000000000000000000000000000000000000000000010c161f282f35394646464646464646403f3b352e261c120700000000000000000000000000000000000000000000000000000000000000000000000006101922293035383939393939393939392c29231d150d03000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4acaa9e9184776b5e5144382b1e110613202c3946535f6c7986929facaca094877a6d6154473a2e211407111e2a3744515d6a7784909daaaca3978a7d7064574a3d3124170a0000000000000000000000000000000d1925303b4650585d5f606060606060606060606060606060606060605f5f5e5e5c5b5a585553514b4946443f3836312b261f19130c04000000000000000000000000000000000000000000000000000000000000000000000000000006111c2a36414d565e616c6c6c6c6c6c6c6c6c65625b5146342b210e0400000000000000000000000000000000000000000000000000000000000000000000010a121b232b323a41454e54586062686d7175797b7e80818384858586858584848381807e7c7975726e6963605b534f45413a312a21191007000000000000000000000000000a141e27313a444d575f6a707d879299a49f9f9f9fa9a0958f82786d605b51473e342a21170d04000000000000000000000000000b17232e3846535e6975818e99a3aeab9f958b7f726b60574e463e36302a25201f1c181b1a1b181c1f20262b31373f474f59626c74818e97a1adada1978d8073675c514538291f140900000000000000000000000000000000000000000000000e1a26313c4653606d7984919eaba095887b85929faba095897c6f63564c4135291d110400000000000000000000000000000000000000000000000000060b10121319242f404d5a6673808d99a6a79b8e8174685b4e4135281b0e0200000000000000000000000000000000000000000000000a141d2a343c464e555d6065696c6c6b6965615e56524d46413b35414b555d6b6c6c6c6a675f564b3f33271b0e02000000000000000000030d161f262d3235363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363635322d261f160d0300000000000000000000000000000009121b22292e31323939393939302f2c2721191007010b141d242b303334393939393736332e271f20272b2e2f393939393635312c261e242b3136383939393939302f2c28211a1108000000000000000000010b141d242b303334393939392d2c29241d150d030c161e262d3235363939393837342f2921180f0000000000000000000000000000000000000000000000000000000007131d28313a404553535353535353534d4b4740382e24190e0200000000000000000000000000000000000000000000000000000000000000000000020d18222b343b414445464646464646464638342f271f150b010000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0aa9e9184776b5e5144382b1e110613202c3946535f6c7986929facada094877a6d6154473a2e211407111e2a3744515d6a7784909daab0a3978a7d7064574a3d3124170a00000000000000000000000000000008141f2a343e464d51525353535353535353535353535353535353535352525251504e4d4b494645403c3937332d2a251f1a150d0801000000000000000000000000000000000000000000000000000000000000000000000000000000000e1925303b444d52545f6060606060606060585651493f3422190f00000000000000000000000000000000000000000000000000000000000000000000000000091119202830353d43474e54565e6164656c6e717375767778797979787877767573716f6d6665615f57535049413d352f281f180f070000000000000000000000000000020c151f28323b454e58606b717e8793939393939393969083796d665c50493f352c22190f05000000000000000000000000000006111c2a36424d57616e7b86929fa8b1a79f92877d6f6a5f585046413b36312d2c282327272723282c2d31373c42475159606b717e8b939da9b1a79e92857a6d61554b4034291c1004000000000000000000000000000000000000000000000009141f2c3844505c6673808c99a4a79c8f828f97a2aa9d9084776b6054443a3024190d010000000000000000000000000000000000000000000000000000000306081926323f4c5965727f8c98a5a79b8e8174685b4e4135281b0e020000000000000000000000000000000000000000000000020b18222a343c434b5154595d5f5f5e5c5854524c46423b36302f3a434b515e6060605e5b564d44392e22170b000000000000000000000a151f2831383e424343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343423e3831281f150a000000000000000000000000000006111b242d343a3d3e46464646463c3b38322b23190f08121d262f363c3f414646464644423f3931292b32373b3c4646464643413d3830282d353d424546464646463d3c38332c231a1005000000000000000008131d262f363c4041464646463a39352f271f150b141e2830383e41434646464544403a332a210f050000000000000000000000000000000000000000000000000000010d18242f3a434b515f606060606060605957524a40352a1f13070000000000000000000000000000000000000000000000000000000000000000000008131f29343d464c5152535353535353535345403931271d12070000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4acaa9e9184776b5e5144382b1e110613202c3946535f6c7986929facaca094877a6d6154473a2e211407111e2a3744515d6a7784909daaaca3978a7d7064574a3d3124170a000000000000000000000000000000020d18222c343b41444646464646464646464646464646464646464646464545444342403e3c3a38342e2d2b27221b1a140e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f29323b4146475353535353535353534c4a463f372d2310070000000000000000000000000000000000000000000000000000000000000000000000000000070e161e242932373d43484c5254535b6062646668696b6b6c6c6c6b6b6a6a68666462605c5455534d46443f382f29241e160d0600000000000000000000000000000000030d162029333c464f59616c727f8686868686868686847b6e675d544a3f372d231a1007000000000000000000000000000000000e1a25313b46535f6973808d96a0abaea39991857c6f6a615a524d46423c3a38342e3434342e34383a3c42474d535b626b707d86929fa5afaa9f958b7e71685e5243392f23180c00000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939fac9e948f949ea9a3988b7f7265594f4332281e13080000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e02000000000000000000000000000000000000000000000000061018222a313a4145474c50525352504c4746413a36302a2528313a414547535353514f4b443b32281d110600000000000000000005101c26313a42494e50505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504e49423a31261c1005000000000000000000000000010c18222d363f454a4b53535353534948433d352b21160e19242f3840474c4d53535353514f4a433b31343d434749535353534f4e49423a30353f474e5253535353534a48443e352c21160b00000000000000030e1a242f3841474c4e535353534745403931271d121b26303a42494e4f53535352504c453c3321170d030000000000000000000000000000000000000000000000000004111d2935404b555d6c6c6c6c6c6c6c6c66635c52473b2f23170a000000000000000000000000000000000000000000000000000000000000000000000c1824303b464f575d5f606060606060605f514b43392f23180c0000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a979f9f9f9e9184776b5e5144382b1e110613202c3946535f6c7986929f9f9f9f94877a6d6154473a2e211407111e2a3744515d6a7784909d9f9f9f978a7d7064574a3d3124170a0000000000000000000000000000000006101a222a303538393939393939393939393939393939393939393939393837363533312f2d2c2823201f1b17110e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d1720293036393b4646464646464646463f3e3a342d251b1100000000000000000000000000000000000000000000000000000000000000000000000000000000040c131920272b32383a41464749505355575a5b5d5e5f5f5f5f5f5e5e5d5b59575653514a4846423b37332d261d19130c04000000000000000000000000000000000000040e17212a343d47505a626d727979797979797979786e695e554b42382e251b1108000000000000000000000000000000000009141f2a36424d57606d79849199a3afaba19791857c716c615e56534d494644404141414141404546494e53575f616d727d869298a3aeaba2989083776c60564c4131271d1207000000000000000000000000000000000000000000000000000c17232e3846535e6975828f9ca8a69e9c9ea6ac9f92867a6d6054473d3221160c020000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e02000000000000000000000000000000000000000000000000000610181f282f35393a3f43454645433f3a3936302a251f191f282f35393a46464644433f39322920160b000000000000000000000a16212d38424c545a5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5a544c42382d21160a00000000000000000000000005111d29343f48505658606060606056544f473d32271b131f2b36404a52585a606060605d5b554d43393d464e5456606060605c5a544c42333d4751595e5f6060606057554f473e33281c100400000000000008141f2b36414a52585a6060605f5e514b43392f2418212d38424c545a5c6060605e5c574f4533291f1409000000000000000000000000000000000000000000000000000613202c3945515d677679797979797979736e63574b3f3226190c00000000000000000000000000000000000000000000000000000000000000000003101c2835414c5761696c6c6c6c6c6c6c6c6c5c554b4034291c100400000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a93939393939184776b5e5144382b1e110613202c3946535f6c7986929393939393877a6d6154473a2e211407111e2a3744515d6a77849093939393938a7d7064574a3d3124170a00000000000000000000000000000000000810181f25292b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2b2928272522201f1c1813120f0b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171f252a2d2e39393939393939393932312e29231b1309000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d151b21272c3035393a3f4446484b4d4e505152525352525151504e4d4b494644403b3a36312b27221b140b08010000000000000000000000000000000000000000050f18222b353e48515b62656c6c6c6c6c6c6c6c6b615e574d433a30261c1309000000000000000000000000000000000000030e1a26313b45515d676f7c87929fa4aea9a19791867e756e68615e575653514a4e4e4d4e4e4b515356575f62696e767f879298a2aaafa39992857c6e655b50443a301f150b010000000000000000000000000000000000000000000000000006111c2a36424d5763707d8a96a1acaaa8aab0a79b8e8174685d5245392c201304000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e020000000000000000000000000000000000000000000000000000060d161d24292c2d323639393836322e2d2a251e19140d161d24292c2d3939393736332e2820170e04000000000000000000000d1926323e49545e666969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969665e54493e3226190d0000000000000000000000000915212e3a45505a62656c6c6c6c6c6360594f43382c1f1723303c47525c64676c6c6c6c6a675f554a3f434e5860626c6c6c6c69655e54453b424e59636a6c6c6c6c6c6361594f44382c2014070000000000000b1724303c47525c64676c6c6c6c6a5d554b4035291d25323e49545e66696c6c6c6b686157453b31251a0e020000000000000000000000000000000000000000000000000714202d3a4753606d7986868686868686807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000005121e2b3844515d6973787979797979797976675c5145382c1f130600000000000000000000000000000000000000000000000000000000000b1724313e4a5764717e8686868686868684776b5e5144382b1e110613202c3946535f6c7987868686868686867a6d6154473a2e211407111e2a3744515d6a7783868686868686867e7064574a3d3124170a000000000000000000000000000000000000060d14191c1f1f202020202020202020202020202020202020201f1f1f1e1d1b1a18161313100c070503000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d14191e20212c2d2d2d2d2d2d2d2d2524221e1811090100000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161b1e25292d2d3337393b3e40424344454646464545444342403e3c3a38342e2d2a261f1b17110a020000000000000000000000000000000000000000000000061019232c363f4951565860606060606060605e54524d453b31281e140a010000000000000000000000000000000000000009141f2935404b55606a717e8b929ca4afa9a198928a817b746e696562605c545b5a5a5a5b545c6063666a6e747b828b9299a2aaaca49f92877d706a5f53493f32281e0d030000000000000000000000000000000000000000000000000003090e1a25313b4653606c7884919e9f9f9f9f9fa095897c6f63564c4135291d1109030000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e02000000000000000000000000000000000000000000000000000000040c13181d2021262a2c2c2b292521201d19130e09040c13181d20212d2d2d2b2a27221d160e0500000000000000000000000f1c2935424e5a6670767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767670665a4e4235291c0f0000000000000000000000000b1724313d4a56626c7179797979796f6b6054483b2f221a26333f4c58646e74797979797771675b4f424754606a6f79797979767065574d4245525e6a757979797979706b6155483c2f2316090000000000000d1a2633404c58646e747979797975675d5145392c1f2835414e5a667076797979787368574d42362a1e12050000000000000000000000000000000000000000000000000714202d3a4753606d7a8693939393938c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c788586868686868686796d6053473a2d20140700000000000000000000000000000000000000000000000000000000000a1723303c4955616c71797979797979797772675c4f43372a1d1106121f2c3845525e6a75797979797979797976685e5246392d201307101d2a36434f5b67717779797979797979706c6155493c3023160a0000000000000000000000000000000000000002080d1012131313131313131313131313131313131313131313121211100f0d0b09070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080e111414202020202020202020191816120d060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13191d2022272b2d2f313335363838393939383837373533312f2d2c2823211e1a140f0b06000000000000000000000000000000000000000000000000000007111a242d373f464a4c5353535353535353524846423b33291f160c020000000000000000000000000000000000000000030c18242f39434e58626d73808d929fa4acaaa29f938e86807b76726f6d6669686767676869666d6f72777b81868f949fa3ababa39a938c7f726b61584e41382d20160c00000000000000000000000000000000000000000000000000050d141a1e212b3844505b66737f8c999393939393939084776b6054443a30241e1a140d0500000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e020000000000000000000000000000000000000000000000000000000001070d111314191d1f201f1d191413110d0802000001070d1113142020201e1d1b17110b04000000000000000000000000101d293643505c6976828383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838276695c504336291d100000000000000000000000000b1825323e4b5865717e86868686867d6f6356493c30231a2734414d5a6774808686868683776a5d51404b55626f7c868686868276695e534646535f6c7987868686867d7063574a3d3024170a0000000000010e1b2734414e5a67748086868687796d6053473a2d202936434f5c6976828686868578695e53463a2d2114070000000000000000000000000000000000000000000000000714202d3a4753606d7a86939f9f9f998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929393939393867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000814212d3945505a61646c6c6c6c6c6c6c6b6760564b3f33271b0e04111d2a36424e59636a6c6c6c6c6c6c6c6c6c5e564c41362a1d11050e1a27333f4a555f676a6c6c6c6c6c6c6c64615a5044392d201408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507081313131313131313130c0b090601000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1113171b1f20222427282a2b2c2c2c2c2c2b2b2a28262423201f1c1814120e0903000000000000000000000000000000000000000000000000000000000008121b252d343a3e3f4646464646464646453b3a36302921170d040000000000000000000000000000000000000000000007121d27313d46505a636e73808c939aa1a9aea59e98928d87837f7c79777674747474747677797c7f83888e92999fa6afa8a09992887f726d62594f463c2f261b0e04000000000000000000000000000000000000000000000000050f171f252a2d2e333f4a54616e7a8786868686868686867f7265594f43322e2d2a251f170f05000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e02000000000000000000000000000000000000000000000000000000000000010406070c10121312100c070705010000000000000104060713131311100e0b06000000000000000000000000000013202d394653606c79868f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f86796c605346392d20130000000000000000000000000b1825323e4b5865717e8b939393897c6f6356493c30231a2734414d5a6774808d93939084776a5d5145515d6774818e939393877b6e61544a3f535f6c79869293938a7d7063574a3d3024170a0000000000000b1825313e4b5864717e8b9399897c6f6356493c30232633404d596673808c9397877b6e6154483b2e2115070000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0aca6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929f9f9f9f93867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000004111c28333e48505557606060606060605e5c564e44392e23170b010e1a26313d4751595e5f606060606060605f524c443a3025190d010b17222e39444d555b5d60606060606060575550483e33281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105060b0f121315181a1b1d1e1f1f201f1f1e1e1d1b1a18161312100c070502000000000000000000000000000000000000000000000000000000000000000009131b23292e31323939393939393939382e2d2a251f170f050000000000000000000000000000000000000000000000010b151f2b343f48525c646e737f8892979ea5acaaa29f9a93908c898684828181808181828486898c90959b9fa3ababa39f9691877e726d635b51473e332a1d140a000000000000000000000000000000000000000000000000030d17212931363a3b464646525e686e797979797979797979726d62564746463b3a36312921170d030000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013202d394653606c7986939c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9386796c605346392d20130000000000000000000000000b1825323e4b5865717e8b989f96897c6f6356493c30231a2734414d5a6774808d9a9d9084776a5d514753606d7a85929fa4998c8073665c5044535f6c7986929f968a7d7063574a3d3024170a0000000000000915222f3c4855626f7b8898988c7f7265594c3f302424303d4a5763707d8a96978a7e7164574a3e2e23180c0000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabaca093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000c17222c363e45494a53535353535353514f4b443c32281d1206000915202b353f474e5253535353535353535346413a32281e13080006111d27323b444a4f51535353535353534a49443e362c22170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060809131313131312070705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105090b0b1313131313130d0d0b07070b0d0d1313131313130b0b09050100000000000000000000000000000000000000000000000000000000000000000000030506080b0d0f101112131313121211100f0d0b09070604000000000000000000000000000000000000000000000000000000000000000000000000010911181e2224252d2d2d2d2d2d2d2d2b21201e1a140d0500000000000000000000000000000000000000000000000000030d19222d36404a525c646d727d858f939da0a7acaca49f9c989892918f8e8d8d8d8e8f919299999da0a7acaca49f99928d847d716c635b51493f352c21180b0200000000000000000000000000000000000000000000000009141f29333b4246485353534d565e616c6c6c6c6c6c6c6c6c65625b515353534846423b33291f14090000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e02000000000000000000000000000000000000000000000000000000000000000003070b0d0e13131313131312100d0a06050300000000000000000000000000000000000000000000000000000013202d394653606c7986939f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9386796c605346392d20130000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a5d514e5764717e8b98a2ab9e9184796d605346535f6c7986929f968a7d7063574a3d3024170a0000000000000613202d394653606c7985929b8e817568564c413529212e3a4754616d7a87969a8d807467544b4034281c100400000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000005101a242c33393c3e4646464646464644433f39322a20160c0100040f19242d353d42454646464646464646463936302820160c0200000b16202932393f4344464646464646463d3c39332c231a100500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f12151520202020201f1413110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c111517182020202020201a1917131317191a202020202020181715110c060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d1216181920202020202020201f1514120e090200000000000000000000000000000000000000000000000000000007101b242e38404a525b636b707a828990959c9fa4abaca9aaa39f9d9c9b9a9a9a9b9c9d9fa3abaaababa39f9a938f8780796f6b615a51493f372d231a0f06000000000000000000000000000000000000000000000000020e1a25313b454d535f6060606060605d5f60606060606060605c6060606060605f534d453b31251a0e0200000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000000000000000000000000000000000000000000001080e13171a1a20202020201f1e1d1a1613120f0b060000000000000000000000000000000000000000000000000013202d394653606c798693939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939386796c605346392d20130000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a5d51535f6a7683909caaa9a1978a7d7064574d535f6c7986929f968a7d7063574a3d3024170a00000000000006121f2b3844505b6676838f9c918477685d5246392d202d3946525e687884919d908376665c5145382c1f130600000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000008121a22282d3031393939393939393837332e2820180e0400000008121b242b31363839393939393939392e2d2a251e160e05000000040e1720272e3336373939393939393931302d28221a110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151b1f21222c2d2d2d2d2c21201d19130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000911181d2124252d2d2d2d2d2d2726231f1f2326272d2d2d2d2d2d2524211d1811090000000000000000000000000000000000000000000000020608080b0e1011121313131312100f0d0a0706040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000106090b0c1313131313131313120807050200000000000000000000000000000000000000000000000000000000000009121c262e384049515961686e757d83898f93999c9fa2aaa7a8aaa9a7a7a7a7a7a9a9a8a6a9a19e9b99928e87827c736d67605950483f372d251b11080000000000000000000000000000000000000000000000000005121e2a36424d575e6c6c6c6c6c6c6c6a665f55535353545e66696c6c6c6c6c6c6c5e574d42362a1e120500000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e020000000000000000000000000000000000000000000000000000000000020b12191f2326272d2d2d2d2d2c2b2a2723201f1b17110a02000000000000000000000000000000000000000000000013202d394653606c798686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686796c605346392d20130000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a5d4a54626e7b88949f9f9c9f9c8f8276695e53535f6c7986929f968a7d7063574a3d3024170a000000000000030f1c28333f4a546773808d9a96877a6d6154473a2e212a36414c566875818e9b9286796d6053463a2d20130700000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000810171c2123242d2d2d2d2d2d2d2b2a27231d160e06000000000009121920262a2c2c2d2d2d2d2d2d2d21201d19130c050000000000050e161d22272a2a2d2d2d2d2d2d2d2423201c1710080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101820262b2e2f3939393939382e2d29251e160e04000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b22292e313239393939393934332f2b2b2f333439393939393932312e29221b1209000000000000000000000000000000000000000306090f121415181a1c1e1f1f20201f1e1d1c19171413100d0704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141c262e373f474f565e616b70777d82878b8f9298989a9b9d9e9e9f9f9f9e9d9d9b999797928e8a86817b756f6a605d554f473e362d251c130900000000000000000000000000000000000000000000000000000714212d3a46535e69767979797979797771665b4f464e5a66707679797979797976695e53463a2d21140700000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e0200000000000000000000000000000000000000000000000000000000010b141d242b303334393939393939383734302d2b27221b140b080000000000000000000000000000000000000000000013202d3946535f6c767979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979766c5f5346392d20130000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a5d515c6673808d9a9f948f949f93877b6e61544a5f6c7986929f968a7d7063574a3d3024170a000000000000000b17222d3e4a5764717d8a9796897d7063564a3d302325303f4c5965727f8c9898897c6f6256493c2f23160800000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000050c11141717202020202020201e1d1b17120c0400000000000000080f151a1d1f20202020202020201413110d080200000000000000040b11171a1d1e20202020202020171614100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18222a31373a3c4646464646453a3935302820160c0200000000000000000000000000000000000000000000000000000000000000000000000000000006111b242d343a3d3e464646464646403f3b36363b3f404646464646463e3d3a342d241b110600000000000000000000000000000000040a0f13151a1f21222527292a2c2c2d2c2c2b2a28262320201d1813100c0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070a0d0f11121313131212100e0c0906060300000000000000000000000000000000000000000000000000000000000000020a141c252e353d444c525960636b70757b7e8285888b8d8f9091929292929191908e8c8a8885817d7a746e6a626058514b433d352c241c130a0100000000000000000000000000000000000000000000000000000815212e3b4854616e7b86868686868683776a5d50444f5c6976828686868686867b6e6154483b2e21150800000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0e020000000000000000000000000000000000000000000000000000000008121d262f363c3f414646464646464543403d3937332d261d1a110a010000000000000000000000000000000000000000121e2b37434f5a646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e120000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a5d53606d7985929e978f828f99998c8073665c505f6c7986929f968a7d7063574a3d3024170a000000000000000615212e3b4854616e7b8797998c7f7366594c40302523303c4956636f7c8999988b7f7265584c3f3025190d01060606000000000000000000000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000004080a0b1313131313131311110e0b060100000000000000000004090e11121313131313131313070705010000000000000000000000060b0e1011131313131313130a0a08040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c4347485353535353524746413a32281e13080000000000000000000000000000000000000000000000000000000000000000000000000000010c18222d363f454a4b5353535353534d4c474040474c4d5353535353534b4a453f362d22180c0100000000000000000000000000040a0f151b1f21262b2e2f32343637383939393938373533302d2c29241f1c18120c0700000000000000000000000000000000000000000000000000000000000000000000000000000001070c10131416191c1d1f1f20201f1e1d1b191613120f0b06000000000000000000000000000000000000000000000000000000000000020a131c232c323b41464f54596063686e7276797c7e808283848585868585848382807d7b7974716d68625f58544e454039312b231a120a010000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87939393939083776a5d50444f5c6976828f93939393877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a79b8e8174685b4e4135281b0709080603000000000000000000000000000000000000000000000000030e19242f3840474c4d53535353535251504d4946443f382f2b231c130a01000000000000000000000000000000000000000f1b27333e49525a5f60606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605f5a52493e33271b0f0000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a5d5764707d8a979e92857a86929e9184796d60535f6c7986929f968a7d7063574a3d3024170a000000000000030714212d3a46535e697885929b8f827568574d42362a202d3a4753606d7a86929b8e817568564c41362a1d11131313130b0b09050100000000000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26313c464e53555f606060605f54524c443a3025190c030000000000000000000000000000000000000000000000000000000000000000000000000005111d29343f485056586060606060605a58524a4a52585a606060606060585650483f34291d1105000000000000000000000001070d161b20262b2e31373a3b3e4143444546464646454342403d3a39352f2c28231d18120b030000000000000000000000000000000000000000000000000000000000000000000000040a0f12181c1f202326282a2b2c2c2c2c2b2a282523201f1c17110f0a0300000000000000000000000000000000000000000000000000000000010a111a202930363d44484f54565e6165666d6f7174757778787979787877767573716f6d6664605d56534e47433c352f271f19110800000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87949f9f9d9083776a5d50444f5c6976828f9c9f9f94877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a89b8e8275685b4f422f2418191615130f0a040000000000000000000000000000000000000000000007131f2b36404a52585a60606060605f5e5d5a56535049413d352e251c130a000000000000000000000000000000000000000a16212c3740494f535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534f4940372c21160a0000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a5d5e6975828f9c9a8d8075828f9b978a7d7064575f6c7986929f968a7d7063574a3d3024170a0000000001090f14181e2a36424d576975828f9c918578695e52463a2d202c3845515d677783909d918477685e5246392d202020202020181715110c06000000000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0e1111131313131313131308070502000000000000000000000105090b0c13131313131313130f0e0c08040000000000000000000000000000000000000000000000000004090c0e0f131313131313130c0b09060100000000000000000000000000000004090c0e0f1313131313131310060503000000000000000006121f2b37434e585f626c6c6c6c6c6b615e564c4135291e150b000000000000000000000000000000000000000000000000000000000000000000000000000915212e3a45505a62656c6c6c6c6c6c67645c52525c64676c6c6c6c6c6c65625a50453a2e21150900000000000000000000040c131820272b32373b3c4347484b4d4f51525253535251504f4c4a4745403a38342e28231c150c070000000000000000000000000000000000000000000000000000000000000000040a0f161b1d23292c2d303335373839393939383635322f2d2b28221c1b150e090300000000000000000000000000000000000000000000000000000000080e171e252a32383d44484d5254545c60626567686a6b6b6c6c6c6b6a6a68666462605c5454524c47433c373229241d150d070000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aa9d9083776a5d50444f5c6976828f9ca9a194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5a99c8f827669554b403529252522221f1b150e070000000000000000000000000000000000000000000b1723303c47525c64676c6c6c6c6c6c6b6a6763605b534f473f372e251c100700000000000000000000000000000000000005101b252e373e4346464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646433e372e251b10050000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a53616e7b87939f95887c707d8a979c8f8276695e5f6c7986929f968a7d7063574a3d3024170a000000030b131a2024272531404c5966737f8c9997877b6e6154483b2e2d2935404b556774818d9a96877a6d6154473a2e2d2d2d2d2d2d2524211d1811090000000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000040b12171b1d1e20202020202020201514120e090300000000000000060c1115171820202020202020201b1b18140f090100000000000000000000000000000000000000000002091015191b1c20202020202020191816120d0700000000000000000000000002091015191b1c202020202020201c13120f0b060000000000000815212e3a47535f6a6f7979797979786d685e52463d30271c12070000000000000000000000000000000000000000000000000000000000000000000000000b1724313d4a56626c71797979797979736e645858646e73797979797979716c62564a3d3124170b000000000000000000060d161d242932383c4347494e5355585a5c5d5f5f605f5f5e5d5b595653514b46454039342e271e191009010000000000000000000000000000000000000000000000000000000000060b151b21272c2f34383a3d40424445464646454543413f3c3938332d2b26201a150b0600000000000000000000000000000000000000000000000000000000050d141921272c33383b4146474a505355585a5c5d5e5f5f5f5f5e5e5d5b59575553504a4745413a37312b272018120b03000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1a99d9083776a5d50444f5c6976828f9ca9a194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4aa9e918477675d5145392f32322f2e2b262019100700000000000000000000000000000000000000000d1a26333f4c58646e74797979797979787673706c656059514940372e22190f0400000000000000000000000000000000000009131c252c33373939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393937332c251c1309000000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a5b65737f8c999d9083766d7985919e93877b6e615f6c7986929f968a7d7063574a3d3024170a0000010b151d252b303435393d4a5763707d8a96978a7d7064574a3d2d39392f3e4b5864717e8b97968a7d7063574a3d2d39393939393932312e29221b120900000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000060e161d23272a2b2d2d2d2d2d2d2d2d22211e1a140e0600000000000911181d2224252d2d2d2d2d2d2d2d282724201a130b0300000000000000000000000000000000000000030c141b212528292d2d2d2d2d2d2d2625221e18110901000000000000000000030c141b212528292d2d2d2d2d2d2d29201f1b17110a02000000000915222f3c4855626f7c8786868686857a6d61594f42392e23180c0300000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8686868686868073675a5a6773808686868686867e7165584b3e3225180b0000000000000000060f181f282f353d43474e5355585f626567696a6b6c6c6c6c6b6a686663605d5553514b444039302b221b130b020000000000000000000000000000000000000000000000000000020a111720262b323839404547494c4f50525253535251504e4c4946443f3837312b262017110a0200000000000000000000000000000000000000000000000000000002080e161c21272c3036393b3f4446494b4d4f5051525253525251504f4d4a4846443f3a39352f2b26201b150c070100000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87949c9c9c9083776a5d50444f5c6976828f9c9c9c94877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97acac9f93867a6d605347403f3f3f3c3b37322a22190e04000000000000000000000000000000000000000e1a2734414d5a6774808686868686858483807d78706b635b514940342b20160a000000000000000000000000000000000000010a131b21272b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a01000000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a606c7884919e988b7e716673808d9a998c8073665c6c7986929f968a7d7063574a3d3024170a000009131d272f373c404146464754616d7a8796998d80736653493f46464646464855626e7b8898998c807366544a3f464646464646463e3d3a342d241b1106000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000e1820282e33363839393939393939392e2d2b261f180f0600000009121b23292e313239393939393939393534312c251d150b000000000000000000000000000000000000020c151e252c3134353939393939393932312e29231b13090000000000000000000c151e262c31343539393939393939362d2b27221b140b020000000815212e3a47535f6a73808d9693978e81746b60544a4034281f140900000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b939393938d8073675a5a6773808d939393938b7e7165584b3e3225180b00000000000000061018212a313a40454e54585f62676a6e71747677787979797978767573706d6764605c54514a423d342d251d140b01000000000000000000000000000000000000000000000000040b141c222832373d43484b515356595b5d5e5f5f5f5f5e5d5b585653504a47433c373127221b140b0300000000000000000000000000000000000000000000000000000000050b10161c1f252a2d2e34383a3c3e414244454546464545444342403e3c3a38342e2c29241e1a150f0a04000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b878f8f8f8f8f83776a5d50444f5c6976828f8f8f8f8f877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000a1623303d495663707c899aa4afa4998a7e71645b514b4c4c4c4947433c342a20150a000000000000000000000000000000000000000e1a2734414d5a6774808d939393989291908d89837d726d635b51463d32271b0f04000000000000000000000000000000000000010910161b1e202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201e1b1610090100000000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a63707d89969f92857a6d626f7b88959e9184796d606c7986929f968a7d7063574a3d3024170a00030f1a252f3941484d4e535353525e687884919c8f8276655b505353535353535353606c7985929c8f8276665b5053535353535353534b4a453f362d22180c010000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000060f202a32393f434446464646464646463b3a37312a21180e030006111b242d343a3d3f464646464646464642403d372f271d0b02000000000000000000000000000000000009141e2730373d4142464646464646463f3e3a352d251b0f060000000000000008121e2730373d414246464646464646433937332d261d140a00000006121f2b37434e58606d7984919e9f93887d6f665c51443b31261a0d04000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b989f9f9a8d8073675a5a6773808d9a9f9f988b7e7165584b3e3225180b000000000000050e18222a333c434b515860626a6f74787b7e80828485858686858483827f7d7a76716d66605c544e463f372e261d130a0000000000000000000000000000000000000000000000040d161d262d333c43474f54555c606366686a6b6c6c6c6c6b69686562605b54534e47423c332d261d150d030000000000000000000000000000000000000000000000000000000000050b1014191e2023282c2d2f3234353738383939393837373533312f2d2b2823201d19130f0a030000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8283838383828074675a4e414d5a6673808283838383827a6e6154473b2e21140800000000000000000000000000000000000000000000000000000714212d3a4754606d7a86939facab9c9083766d605d5559585855544e463c32261b0f030000000000000000000000000000000000000e1a2734414d5a6774808d9a9f9fa29f9e9d9a9590887f726d63584e43372b20150a0000000000000000000000000000000000000000050a0f1213131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313120f0a05000000000000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a6875818e9b9a8e8174675f6a7683909d978a7d70646c7986929f968a7d7063574a3d3024170a000814202b37414b53595b60606060566875828e9b9285796c606060606060606060605b6576838f9c9285796c60606060606060606060585650483f34291d11050000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000030d1821323c444b4f5153535353535353534846423c332a1f1409010c18232d363f454a4b53535353535353534e4d4841392f1d140a0000000000000000000000000000000004101b25303942494d4f535353535353534c4a463f372d21180b020000000000050e1a24303942494d4f535353535353534f46443f382f261b11060000030f1b26313c45515d67707d8a939e9a9183786d60574d42362a1f160c010000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0000000000020b17202a343c454d555d606a6f767c8084888b8d8f90929293929291908e8c8986827e79726d666058514940382e251c1108000000000000000000000000000000000000000000030c161f282f383f444e54596063676d707375777879797978787674726f6c66625f58534d443f382f271f150d0300000000000000000000000000000000000000000000000000000000000002080e1114171c1f20222527292a2b2c2c2c2c2b2b2a28262422201f1c1713110d080100000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e686e767676767676746e64584c404b58636e737676767676766e685e5246392d20140700000000000000000000000000000000000000000000000000000713202c3945525d687784919dabab9f948b7f736d6766656565625f584e43372b1f13060000000000000000000000000000000000000e1a2734414d5a6774808d98989a9c9fa3aba7a09a938c7f726a6054473d32271b0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a6d7a86929f95897c6f635865727e8b989c8f8276696c7986929f968a7d7063574a3d3024170a000c1824303c48535d64686c6c6c6c6c6c727f8c9897887b6e6c6c6c6c6c6c6c6c6c6c6c6c73808d9998887b6f6c6c6c6c6c6c6c6c6c6c65625a50453a2e2115090000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000009141f2933444e565c5e606060606060606055534d453c31261a0e05111d29343f4851565860606060606060605b59534b412f261b11060000000000000000000000000000000915212c37424b53595c60606060606060595651493f332a1d140a00000000020d17202c36424b54595c606060606060605c53504941382d22170b0000000a15202935404b55616b75818e98a0958c7f72695f53463e31281e13080000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00000000000a141d29333c464e575f676d747c82888d9196989a9c9d9e9f9f9f9f9e9d9b9999928f8a847f786f6a625b524a40372e231a0e0500000000000000000000000000000000000000000b151e283139424a50585f626b6f75797d7f828385858686858483817f7c79746f6a625f575049413931271f150b01000000000000000000000000000000000000000000000000000000000000000205060c10121316181a1c1d1e1f1f201f1f1e1d1c1a17151312100b0604010000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c565e6169696969696967645c52473c47525c6366696969696969615e564c41362a1e1105000000000000000000000000000000000000000000000000000004111d2935414c566673808d99a3afa69f9388807a75737272726f6a5f54473b2e2215080000000000000000000000000000000000000e1a2734414d5a6774808b8b8c8d9092999ea5aca49f92877c6f62584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000060b0e101113131313131313110605030000000000000000000000000000000000000000000000000000000000000000000000000001040707131313131313131308070502000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a727f8b989d9184776b6054606d7a86929f93877b6e6c7986929f968a7d7063574a3d3024170a000e1a2734404d59646f74797979797979797d8996978a7e79797979797979797979797979797e8a97988b7e7979797979797979797979716c62564a3d3124170b0000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000020e1a26313b455660676b6c6c6c6c6c6c6c6c6c5f574d42372b1e120915222e3a45515b62656c6c6c6c6c6c6c6c68655d5341382d22170b0000000000000000000000000000000c1925313d49535d65686c6c6c6c6c6c6c65625b51453c2f261c110600000008141e29323e48545d65686c6c6c6c6c6c6c69605b53493f33271b0f030000040c18242f39434f59616e7b85929f9f92867b6e615a50433a2f24190c0200000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0000000006111b262f3b454e585f696e7981878f949a9ea1a8a7a9aaaaaaa9a9aaaba9a8aba39f9c97918c847c726d645c524940362c20170c0200000000000000000000000000000000000007121d273039434b545b606a6f767c8185898c8e90919292929291908e8b8985817c756e69605b534b433931271d12070000000000000000000000000000000000000000000000000000000000000000000000030607090b0e0f1112121313121211100f0d0b090706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303b444c52545c5c5c5c5c5c5a58524a4136404a52585a5c5c5c5c5c5c54524c443b3025190d010000000000000000000000000000000000000000000000000000010d1924303b4854616e7b87929fa7afa49a938d8582807f7f7f7c6f6255493c2f221609000000000000000000000000000000000000091623303c4956636f7d7f7f7f8083868f939ea5afa3999083766a6054473b2e2215070000000000000000000000000000000000000000000000000000000000000000000000000000040b11171b1d1e202020202020201e13120f0b0600000000000000000000000000000000000000000000000000000000000000000002080d11131420202020202020201514120e090300000000000000000000000000000000000000000b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776a7783909d998c7f726559515d6774818e9a998c8073667986929f968a7d7063574a3d3024170a000e1b2835414e5b68748186868686868686898f999a908a86868686868686868686868686868a909a9b908b86868686868686868686867e7165584b3e3225180b0000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d57677277797979797979797976695f53463a2d21140b1724313d4a56626d727979797979797979756f6553493f33271b0f0300000000000000000000000000020e1b2834414d59656f7579797979797979726d62574d42382d22170b0200050e1925303b44505a656f7579797979797979766c655b5044372b1f120500000007121d27313e46525e69727f8b959f988f82756c61554c4135291e140a00000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000b17222d38414d575f6a6f7b848e939a9fa6abacaaaaa39f9e9d9c9c9d9ea1a9a7acaca9a19e9691877f746e645b52483e32291e13080000000000000000000000000000000000040d18232e39434b555d666c737c83898e9298999b9d9e9f9f9f9f9e9c9b9897918d88827b736c655d554b43392f24180e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141e29323b4146475050505050504e4c4741382f3840474b4d5050505050504746413b32291e1408000000000000000000000000000000000000000000000000000000000814212d3a46535e6974808d959fa7aca49f98928f8d8c8b8b7f7266594c3f3326190c0000000000000000000000000000000000000915222f3b4854606b6f72727273767b818e939ea9ab9f95897c6f6256493c2e23180c00000000000000000000000000000000000000000000000000000000000000000000000000050e161d22272a2b2d2d2d2d2d2d2d2b201f1b17110a02000000000000000000000000000000000000000000000000000000000000040c13191d20212d2d2d2d2d2d2d2d22211e1a140e06000000000000000000000000000000000000020b1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d9084776f7c88959f92867a6d61544b55626f7c89959e9184796d7986929f968a7d7063574a3d3024170a000e1b2835414e5b6874818e9393939393939699a1a29a979393939393939393939393939393979aa2a29b98939393939393939393938b7e7165584b3e3225180b0000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f69778486868686868686867b6e6155483b2e2215091825323f4b5865727f86868686868686868175655b5044372b1f120500000000000000000000000000020f1c2935424f5c687582868686868686867f72695f544a3f33281d140a020c17202a36414c56616c75818686868686868682796c605346392d201306000000010b151f2a36424d56606c788390999e948a7e71675d51453c30261c1106000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000030f1b27333f49535e696f7c8591969fa4acaca7a09d98989291908f90909197979b9fa2aaada8a099928c80746e635a50443a3025190d03000000000000000000000000000000010c161f2834404b555d676d78808790949b9fa2a9a29e9c9b9a9a9b9d9fa3a9a19e9a948f877f776d675d554b40352920170d02000000000000000000000000000000000000000000000000000000000000000000030607090b0d0f1111121313121211100f0d0a08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d1720293036393b43434343434341403c362f262e353b3f404343434343433b3936302920170d020000000000000000000000000000000000000000000000000000000005121e2a36424d57606d798390959fa2aaaaa29f9b9998988c7f7266594c3f3326190c00000000000000000000000000000000000007131f2c38434f59606365656567696e78818e97a1ada79a8d807467554b4034281c10040000000000000000000000000000000000000000000000000000000000000000000000000e1720282e33363739393939393939382d2b27221b140b0200000000000000000000000000000000000000000000000000000000040e161e24292c3939393939393939392e2d2b261f180f0600000000000000000000000000010507070f0f1825323e4b5865717e8b98a296897c6f6356493c30231a2734414d5a6774808d9a9d90847774808d9a9b8e8275685e524754606a7783909d978a7d707986929f968a7d7063574a3d3024170a000e1b2835414e5b6874818e9b9f9f9f9f9f9fa0acafa6a49f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa0a3a8a6a49f9f9f9f9f9f9f9f9f988b7e7165584b3e3225180b0000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000000121f2c3945525f6c7885929fabada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b88969393939393938b7e7165584b3e31261a121e2a36424d576875818e9393939393939285786c605346392d20130800000000000000000000000000000714212e3a4754616d7a85919393939392867b6e665b50443c2f261c1108131e29323a46525e68717e8a939393939392857a6e655b5044372b1f120500000000030d1925303b44505b666f7c87929f9e91847a6d60584e42382e23170b020000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00000005121f2b3744505b656e7b849197a0a8afa7a09d95908b8885848383838485878a8e92989fa3ababa39f928c80736c61564c41362a1f140900000000000000000000000000000008131e28313a45515c676d79828d92999fa6a39f9a97928f8e8d8e8e9092989b9fa3a69e99928c82796d675d51453f32291e140800000000000000000000000000000000000000000000000000000000000104060b10121315171a1c1d1e1f1f201f1f1e1d1b19171514120e09060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171e252a2d2e3636363636363433302b241d242a2f32333636363636362e2d2a251e170e050000000000000000000000000000000000000000000000000000000000020e1a25313b45515c676d7a838c92989b9d9e9fa39f9f998c7f7266594c3f3326190c000000000000000000000000000000000000030f1b27323d474f5456585859575e666d7a85929eabaa9d908377675c5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000711202932393f434446464646464646443937332d261d140a000000000000000000000000000000000000000000000000000000020c1620283035394646464646464646463b3a37312a21180e030000000000000000000002080d1113141c1c1c25323e4b5865717e8b98a296897c6f6356493c30231c2734414d5a6774808d9a9d9084777985929e96897d7063564c434e5865727e8b989c8f82767986929f968a7d7063574a3d3024170a000e1b2835414e5b6874818e93939393939393939fa3a59d9b939393939393939393939393939394979ea49d9a9393939393939393938b7e7165584b3e3225180b0000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d000000000000000000000000000000000000000000000000000000000000000000030d152c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a5465727e8b98a89f9f9f9f9b8e817568574d42372b1e14212d3a46535f697884919e9f9f9f9fa197887c6f6255493c2f24190d01000000000000000000000000000713202d3946525e68707d8a929da8a2989083786c60574d42382d22170e1925303a44505a616e7a85929ea5a89d938a7d70685e53493f33271b0f03000000000009141f28333f4a545f6a74808d96a1978d80746a60544a3f34281f14090000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000004101c2834404a54606c77828f96a1a9aea49d959189837f7c797777767677787a7d81868c9299a0a8afa49c928a7e70685e52463b31251a0e0000000000000000000000000000010d19242f3a43505a606d79828f949fa3a7a099928e898583818181828386898e92999fa7a39f948f82796d605b51443b3025190e02000000000000000000000000000000000000000000000000000001070d1113171c1f20222426292a2b2b2c2c2c2b2b2a28262422211e1a1312100c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d14191e20212929292929292726241f1a13191f23262729292929292921201e19140d050000000000000000000000000000000000000000000000000000000000000009141f2934404b555e686d7980858b8e909192999393938c7f7266594c3f3326190c000000000000000000000000000000000000000a16212b353d4348494c4c4c4d545d6873808c99abac9f9286796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000050f1923323b444b4f51535353535353535146443f382f261b1106000000000000000000000000000000000000000000000000000008131e28323a41455353535353535353534846423c332a1f1409000000000000000000040c13191d202128282828323e4b5865717e8b98a296897c6f6356493c3028282834414d5a6774808d9a9d9084777d8a979e9184786c6053463d4754606d7a86929f93877b7986929f968a7d7063574a3d3024170a000e1b2835414e5b68748186868686868686868692999d938e8686868686868686868686868686878c979d928d868686868686868686867e7165584b3e3225180b0000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000000010b151f2935414c566c7885929fabada093867a6d6053473a2d20160c0200000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c6675828f9ba8acabacab9e918578695f53473a2e2115222e3b4855616e7b8896a1adacaaaca9998c7f7366564c4135291d11040000000000000000000000000005111d2a36414c56616b74808d96a0aa9f948b7f72695f544a3f33281d16202a36414c56616c75818f97a1aba0968e81746c61564d41382d22170b000000000000020b17222d38424e58606d7984919e9f93877c6f665c50443b30251a0d0300000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000006121f2c3844515c66717e8b949fa9afa59d928d837d77726f6d666a69696a696e70747a80879196a0a8aea49e92857a6d61574d42362a1c11060000000000000000000000000004111d2935414c56616c74818e949ea6a69f959087817c79767474747577797d818790959ea5a69e948e81756d62564c41362a1e140800000000000000000000000000000000000000000000000003090e13181d2023282b2d2f3133353737383939393837373533312e2d2a26201f1c17110d08020000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1114141d1d1d1d1d1d1b1a17140e080e1317191a1d1d1d1d1d1d1414110d08020000000000000000000000000000000000000000000000000000000000000000030c18232f39434c565e676d737a7e8184858686868686867f7266594c3f3326190c00000000000000000000000000000000000000040f19232b32383b3c3f3f3f424c56626f7c8899a3aea399877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000000b16212b35444d565b5e606060606060605e53504941382d22170b00000000000000000000000000000000000000000000000000010d1924303a444c525f606060606060606055534d453c31261a0e0200000000000000040e161e24292d2e35353535353e4b5865717e8b98a296897c6f6356493c3535353535414d5a6774808d9a9d908477828e9b9a8c8073665b50443945515d6774818e9a998d807986929f968a7d7063574a3d3024170a000e1a2734404d59646f7479797979797979797987929b8e8179797979797979797979797979797a87969a8d8079797979797979797979716c62564a3d3124170b0000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d000000000000000000000000000000000000000000000000000000000000000007121d27313945525d687885929fabada093867a6d6053473e32281e13080000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7985929fa8a19ea1a8a197887b6e6255483b2f221825313e4b5864717e8b97a8a8a09ea0a89c908376685d5245392c20130700000000000000000000000000010d1925303a444f59606d79849199a3a69f92867b6e665b50443c2f261e28323a46525e68717e8a939ea9a3999184796d605a50443b2f261b11060000000000000006111c262f3c45515d67707d8a949e999083786d60574d42362a1f150b01000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00000713202d3a4653606d7984919ea6b0a79d938d8079706b6562605c545c5d565e6164686d737c849196a0aaada2978e8174695e5346382e23170b000000000000000000000000000613202c3945525d68717e8a939da6a89f948f837c746f6c6668676768666d70757c838f939ea7a69e938b7f72685e52463b3025190d01000000000000000000000000000000000000000000040a0f151a1d24292c2e34383a3c3e404244444546464545444342403d3b3a36312d2c28231c19130d080200000000000000000000000000000000000000000000000000000000000000000000000000000000010507081010101010100e0d0b08030002070a0c0d10101010101008070501000000000000000000000000000000000000000000000000000000000000000000000007121d27313a444c555d60686d71747778797979797979726d63574b3e3225180c000000000000000000000000000000000000000007101921272c2f3032322f3a4653606d7986929facab95887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000004101c27323d47565f676a6c6c6c6c6c6c6c6b605b53493f33271b0f0300000000000000000000000000000000000000000000000004111d2935414c565d6c6c6c6c6c6c6c6c6c6c5f574d42372b1e1205000000000000020c1620283035393a4242424242424b5865717e8b98a296897c6f635649424242424242414d5a6774808d9a9d90837a86929f93877b6e61544a3f35414c55626f7c89959e91847886929f968a7d7063574a3d3024170a000c1824303c48535d64686c6c6c6c6c6c6c677783909d918477686c6c6c6c6c6c6c6c6c6c6c687784919d908377676c6c6c6c6c6c6c6c65625a50453a2e2115090000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000030c18242f39434f59606d7a86929facaea194877b6e615a50443a3024190d030000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8998a2a1969196a1a9988b7e7265584b3f31261e2a36424d576874818e9ba9a0969196a09f92867a6d6054473a2d21140a000000000000000000000000000008131e28323e45515d676f7c87929fa6a2989083786c60574d42382d25303a44505a616d7a85929ea5a69f92877c6f675d51483e32291d140a0000000000000000000a141d2935414b55616c75828f98a0958b7f72695e52463e31271d1207000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00030f1c28333f4a5464717d8a96a1acaca0958e81746d6760595553514a50504d5254565d606a6f7b849198a2aea99f92867b6e61544a3f34281c1003000000000000000000000004111d2935414c55606d7a85929ea5aca0968f82796e6a62605b545a5b545c60636a6e78818f959faba59f92857a6e61564c41362a1e11050000000000000000000000000000000000000000070c151b20262b2f35393a3f4446484a4d4f5051525253525251504e4c4a4846423d3a38342e29251e19140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f29323a434b51565d6064686a6b6c6c6c6c6c6c66635b51463a2f22160a000000000000000000000000000000000000000000070f161b1f222325252c3844515c667784919daaa296897c6f6356493c302316090000000000000000000000000000000000000000000000000000000000000000000713202c38444f5967717779797979797979776c655b5044372b1f14090000000000000000000000000000000000000000000000000713202c3945525d6876797979797979797976695f53463a2d21140700000000000008131e28323a4146474f4f4f4f4f4f4f5865717e8b98a296897c6f63564f4f4f4f4f4f4f484d5a6774808d9a9d90837e8b989c8f8276695e5342382f3a4754606a7783909d978a7d86929f968a7d7063574a3d3024170a000814202b37414b53595b606060606060556774818d9a96877a6d61606060606060606060566875818e9b9286796d6060606060606060585650483f34291d11050000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d000000000000000000000000000000000000000000000000000000000000000a151e2935404b55606b74818e98a3aeb5a89c8f82756c61564c4135291f150b0100000000000000000000000000000000000000000000000000000000000005111d2935414c566673808c99aa9e9184919eaa9b8e817568584e43372b202d3a46525e697784919ea1979184919ea3998a7d7164574a3e31261b0f0300000000000000000000000000020c16202935404b55606a737f8c949faa9f948b7f72695f544a3f332935414c56616c75818e97a1aa9f948c7f736a60554b40362c20170b02000000000000000000020b18242f3a43505a616e7b86929f9f92867b6e61594f43392f24180b020000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0006121f2b3844505b6675828f9ba8b1a89d9083786d605c554f4946444043434246474c52585f696e7b86929fa8afa3998d8073665c5044382b1f120600000000000000000000000613202c3945515d6773808d97a1ada69e91847a6d675f5853504a4e4e4b5153585f666d79839099a3ada2978d8174685e5246392d201409000000000000000000000000000000000000030b121820262b31373a4145474a50535557595c5d5e5e5f5f5f5e5e5d5b595755534d4946443f3835302a251e170e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000002080c1012121313131313131313060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d172029313940454c5254585b5d5e5f6060606060595751493f352a1e120600000000000000000000000000000000000000000000040a0f131516191c2834404a546a7683909da9a296897c6f6356493c302316090000000000000000000000000000000000000000000000000000000000000000000916222f3b4854606b77838686868686868684776c6053463b30251a0e0000000000000000000000000000000000000000000000000714212d3a4754606d7a86868686868686867b6e6155483b2e2215080000000000010d1924303a444c52545b5b5b5b5b5b5b5b65717e8b98a296897c6f635b5b5b5b5b5b5b5b54535a6774808d9a9d918483909c978a7e7164574d422f2b37434e5865727f8b989b8e8187929f968a7d7063574a3d3024170a00030f1a252f3941484d4e5353535353535864717e8b97968a7d70635753535353535353535865727f8b9899897c6f63565353535353534b4a453f362d22180c010000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000006111c26303845515d67707d89939daab4b9aa9e948a7e71685d52463d31271d12070000000000000000000000000000000000000000000000000000000000000713202d3946525d687683909da8988c7f8c98a29e9185786a5f53473a2e212e3b4754616e7b8796a09e9285808c99ab9a8e817467584e43372b1f12060000000000000000000000000000050e18242f39434e58606d78839098a2a69f92867b6e665b50443c323a46525e68707e8a939ea9a2989083786d60584e43392f231a0e05000000000000000000000007131d28313e46535e69727f8c95a0988e81756b61554b4035291d140a0000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000613202d394653606c7985929fabaca095897d70665c514b433d3a38342e30363a3b41454e565e69727f8b96a0acab9e9185796d6053463a2d20130700000000000000000000000714212d3a4754606d7a85929fa9aa9e94897d70685d554e46443f41414045464e545c676f7c87929faca99f92867a6e6154473c31261a0e0200000000000000000000000000000000070c151d232831373c42474b5154545c60626466686a6a6b6c6c6c6b6a6a686664615f575653504a46413a3630292019130d0500000000000000000000000000000000000000000000000000000000000000000000000000000000060d13181c1e1f202020202020202013100c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171f272f353a4145474b4e51525353535353534c4b463f372e23180d02000000000000000000000000000000000000000000000000030709090c18232e43505c6976838f9ca9a296897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000000000005111e2a36414c5663707d8995939393939396897d7063574d42362a1c110600000000000000000000000000000000000000000000000714202d3a4753606d7a86939393939393877b6e6154483b2e211508000000000005111d2935414c565d61686868686868686868717e8b98a296897c6f686868686868686868615e576774808d9a9f928690949e9285796d6053463b3127323d4754606d7a86929f928588939f968a7d7063574a3d3024170a000009131d272f373c404146464646464855626e7b8897998d807366544a3f46464646464956626f7c8998988c7f7265594c46464646463e3d3a342d241b1106000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000020b17232e38424e58606d7984919ea5afafacafa69e92857a6d61594f43392f24180c0300000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86939fa096877a85929fa197887b6e6255483b2d22313e4b5764717e8a97a89b8f827d8a96a89e9184786a5f53473a2e21150700000000000000000000000000000007121d27313c44505c666e7b86929fa5a2989083786c60574d423a44505a616d7a85919ea5a59f92867b6e665c50463d31281d1108000000000000000000000000010c161f2a36424d57606d788390999e938a7d70675d51453c2f261b110600000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000815222f3b4855626e7b8897a2adaa9d9184776b60544a4039312d2c2823252a2d30353c444d57606c7884919eaaada197897c6f6356493c302316090000000000000000000005111e2a36424d5765727f8b98a2aea99c8f82756b60564c433c38332d2e34383c424b555f6a74818e9ba8aea3988c7f7266574d42372b1e12050000000000000000000000000000000810191e272e343c43474d53555d6064666d6f7173757777787979787877767573706e696763605c54524c46413b322a251e170e0600000000000000000000000000000000000000000000000000000000000000000000000000000710181f24282b2c2d2d2d2d2d2d2d2d1f1c18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d151d24293035393a3e4144454646464646463f3e3a352e251c12070000000000000000000000000000000000000000000000000000000000071d293643505c6976838f9ca9a296897c6f6356493c3023160900000000000000000000000000000000000000000000000000000000000000000713202d3946525e6875818e9ba89f9f9fa89b8f8275695e5246382e23170b00000000000000000000000000000000000000000000000713202d3a4653606d79869aa49f9f9f94877a6e6154473b2e21140800000000000713202d3946525d686d757575757575757575757e8b98a296897c757575757575757575756e695e6774808d9aa29892989f9a8d8074665c51453829202c3945525d6874818e9b9892939aa4968a7d7063574a3d3024170a0000010b151d252b30343539393939394653606c7985929c8f8376665c5044383939393a4653606d7986929b8e827568574d423639393932312e29221b120900000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000a141d28343f4a54606a73808d96a0acaca49fa4aca1978e81746b60554b4035291e150a00000000000000000000000000000000000000000000000000000000000b1724313e4a5764717e8a99a49e918477828f9ca9988b7e726553493f332a36414c566774818d9aaa988b7f7a8796a0a196887c6f6255483c2f24180d010000000000000000000000000000010b151f28343f4a545f69717e8b939ea99f948b7f72695f544a414c56616c75818e97a1a89e938b7e71695f544a3f342b1f160c0000000000000000000000000000040d1a25313b44505c666f7c87939f9e9184796d60584e41382d22170b02000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000a1724303d4a5763707d8a96a9b3a69a8d807367594f42382f27201f1c18191e202429323b44505b65737f8c99a9a6a9998c807366594d4033261a0d000000000000000000000714202d3a46525e697683909daaada196897d7063594f433a312b282223282c3039434e58626f7c8895a0acaa9d908477695f53463a2d211407000000000000000000000000000009111a222a303940454e53575f62676d7175797b7d8082838485858685858483817f7d7b7874706d66615e56524c443e36302920180f0700000000000000000000000000000000000000000000000000000000000000000000000006101922293035383939393939393939392c29231d150d030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181e24292c2d3135373839393939393933322f2a231c130a000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c3023160900000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54616d7a86929facacacacac9f92877b6e61544a3f34281c10030000000000000000000000000000000000000000000006121f2c3844515c667986939facaca094877a6d6154473a2e21140700000000000714212e3a4754616d7a8182828282828282828183909da99c8f82828282828282828282817b6e616774808d9aaaa29fa29f95887b6f62544b4034281d2935414c56626f7c8995a09f9fa4ac968a7d7063574a3d3024170a000000030b131a202427282d2d2d2b3744505b6576828f9c9285796d6053463a2d2d2c3844515c667683909c918478695e52463a2d2d2d2524211d1811090000000000000000000000000714202d3a4753606d7a8693a0ada6998c807366594d4033261a0d0707040100000000000000000000000000000000000000000000000006111b262f3844505c666f7c87929fa8a69f9a939aa4a99d93897d70675d51453c30261c110600000000000000000000000000000000000000000000000000000006121f2b37434e586774818e9aab9b8e81757f8c99a99b8e8275655b5044372d3946525e687784919da298887c7784919ea9998c7f7266554b4035291d1104000000000000000000000000000000030d17232e38424d57626c75828f97a1a69f92867b6e665b5045525d68707d8a939ea9a1968e81756c62574d42382e22190d0400000000000000000000000000000009141f28343f4a54606a74808d97a1968d80736a5f53493f33271e1308000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000b1825323e4b5865717e8b98a4b1a4978a7e7164574b3e30261d1512100c0e1114192027333f4953616e7b88979a9998978f8276695c4f4336291c10030000000000000000000814212e3b4754616e7b87959fabab9e9184786c6053463d31281f1c17181c1f27313c47535f6a7784919daaaca095887b6e6155483b2e2215060000000000000000000000000009121b232c343c424b51585f62696e747a7d8185888a8c8f9091919292929191908e8c8a8884807d79736d68615e565046413a322a2119100700000000000000000000000000000000000000000000000000000000000000000000020d18222b343b414445464646464646464638342f271f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c13191d202125282a2b2c2d2d2d2d2d2625221e18120a01000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c302316090000000000000000000000000000000000000000000000000000000000000006121f2b3844505b66727f8c99a3aeaaa8aaafa3998c7f73665c5044382b1f14090000000000000000000000000000000000000000000004101c2834404a5f6c7986929facada093867a6d6053473a2d20140700000000000815212e3b4854616e7b878e8e8e8e8e8e8e8e8e90959fab9f948f8e8e8e8e8e8e8e8e8e887c6f626774808d9aa7aeacaa9d9083766a5f5342392e2319242f3a4754606a7783909daaacafa3968a7d7063574a3d3024170a0000000001090f14181a1b20201b27333f495366737f8c9998887c6f6255493c2f222834404a546773808d9a96877b6e6154473b2e212020201b1a17140e08010000000000000000060c1114202d3a4753606d7a8693a0ada6998c807366594d4033261a1a1413110d0801000000000000000000000000000000000000000000000b17222d38414d57606d78839099a3ab9f948f87939fa8a59e9184796d60584e42382e23170c0300000000000000000000000000000000000000000000000000000814212e3a47535f6a7884919eab988c7f727c8897a29e9285796c605346392e3a4754616d7a8795a09f92857974818e9ba79c8f8376675d5145392c2013060000000000000000000000000000000006111c26303b45505a616d7a85919ea4a2989083786c60574f59606d7a84919ea5a49a91847a6d615a50453b30261c100700000000000000000000000000000000030c17232e38424e58606d7a85919e9f92877c6f655b50443a3025190c030000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000c1925323f4c5865727f8b98a5afa396897c706356493d3023140b0604000205080e17222d3846535f6978858e8d8c8c8b8a85786b5e5245382b1f12050000000000000000000b1824313e4b5764717e8a97a7b1a79a8e8174665b5044382b1f160f0b0c10151f2b37434e586773808d9aa6b1a7988b7e7165584b3e2d22170b00000000000000000000000009121b242d353e464e545c606a6f757b81868a8e929797999b9d9d9e9f9f9f9e9d9d9b999796918d8985807a746e68615a524c443c332b2219100700000000000000000000000000000000000000000000000000000000000000000008131f29343d464c5152535353535353535345403931271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d111314181b1e1f202020202020191816120d070000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000000000613202d394653606c7884919eaba69e9c9ea6ab9e9184786d6053463b31261a0e00000000000000000000000000000000000000000000000c18232e46525f6c7985929facaca09386796d6053463a2d20130700000000000815212e3b4854616e7b87949b9b9b9b9b9b9b9b9d9fa79fa69f9c9b9b9b9b9b9b9b9b95887c6f626774808d9a9f9f9fa2988b7e7165584e4330271d131e2b38434e5865727f8b98a29f9f9f968a7d7063574a3d3024170a0000000000010911181e2225252d222d3d4a5663707d899a988b7f7265584c3f3025232e3e4a5764717d8a97978a7d7164574a3e2e232d2d2d2726241f1a130b020000000000000910171d21202d3a4753606d7a8693a0ada6998c807366594d403326262621201d19130c040000000000000000000000000000000000000000040f1b27333f49535f69727f8c95a0aba3998f82808c96a0aca0968d80736a5f544a3f34281f140900000000000000000000000000000000000000000000000000000815222f3b4855626e7b8896a1a399897c6f7985929fa197887b6f6255483c2d3e4a5764717d8a97a89c8f8276717e8b98a89f92867a6d6053473a2d20140900000000000000000000000000000000000a141e29333f46525e68707d8a929da89f948b7f72695f56616b74818e97a1a79f93887d70685d52483e33291e140a00000000000000000000000000000000000006111c26303d45525d68717e8a949f999083776c60564c41362a1e150b0000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000c1825323f4b5865727e8b98a5afa295897c6f6256493c2f23160600000000000006111b2a36424d576673808180807f7e7d7d706356493d3023160a000000000000000000010e1b2834414e5b6774818e9aa7b4aa978a7e7164544a3f3328190d040000040d1b26323d4a5764707d8a97aab4a79b8e81746853493f33271b0f030000000000000000000007101b242d363e474f585f666d737c82878e92989b9ea2a9a6a8aaa8a7a6a6a6a7a8a9a8a6a8a19e9a97928c86807a716c615e564d453c342b22190e0500000000000000000000000000000000000000000000000000000000000000000c1824303b464f575d5f606060606060605f514b43392f23180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010407070b0e11121313131313130c0c0a0602000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c3023160900000000000000000000000000000000000000000000000000000000000005121e2a36424d5763707d8a96a0ab9e948f949eaaa1968a7d7064574d42362a1c120700000000000000000000000000000000000000000000071f2c3845525f6b7885929eabaea3998679665c5145382c1f130600000000000815212e3b4854616e7b8793939393939393939393939393939393939393939393939393887c6f626774808d939393939392857a6d6054473c3121150f1b27323d4754606d7a869293939393938a7d7063574a3d3024170a000000000009131b23292e31323939393a4754606d7a86939b8e817568564d42363939393b4854616e7b87969a8d807367544a3f34393939393433302b241d140b010000000009121b22282d30313a4753606d7a8693a0ada6998c807366594d40333333332d2c29241e160d04000000000000000000000000000000000000040e1a242b3744505b656e7b86929fa7a89f92867c7984919ea5a89f92877c6f665c50443c31261a0e0500000000000000000000000000000000000000000000000004101c2934404b5565727f8c98a89f9286796d75828f9ba9988b7f726553493f35414c566774808d9aaa998c7f726e7b8896a1a3998a7d7064574a3d31261a0e0200000000000000000000000000000000020c18212a36414c56616b74818d96a0a69f92867b6e665d68707d8a939ea9a0958d80736b60564c41362d21180c02000000000000000000000000000000000000000a151e2935414c56616c76828f989f948b7e71685e52463d30271d120700000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000b1724313e4a5764717d8a97a4b0a396897d7063564a3d2d22170b010000000000000e1a26313b4b58636e73757473727170706b6054483b2f22160900000000000000000005111e2a36414c566a7683909da9aea298887b6e6155483b2d221708000000000a15212e3b4854616e7b8798a2aeaa9d908377655b5044372b1f1205000000000000000000050e19222d363e485059616a6f7980878f93999fa3aaabaaaaa29f9d9b9a9a999a9a9b9d9fa2aaa9aba9a19e98928d857e756d685f574e463c342a20170c0300000000000000000000000000000000000000000000000000000000000003101c2835414c5761696c6c6c6c6c6c6c6c6c5c554b4034291c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c302316090000000000000000000000000000000000000000000000000000000000000714202d3a46525e6975828f9ba8a3998f828f98a2a89c8f8276695f5346392e23180c00000000000000000000000000000000000000000005121f2b3845525e6b7885919eabac9f9286796c5f4b4034281c100400000000000815212e3b4854616e7b8686868686868686868686868686868686868686868686868686867c6f62677480868686868686868174675d5145392c20130a16202c3945525d687481868686868686867d7063574a3d3024170a0000000007111b252d343a3e3f4646464645525d687784919d918478695e5246464646464646525e697884919c908376665c50444646464646413f3c362f261d130800000006101b242c34393d3e404753606d7a8693a0ada6998c807366594d40404040403a39352f2820160c0100000000000000000000000000000000020c16202a36424d56606c77828f98a3aca0968c8073707d8a939eaaa3999083786d60574d42372b20170d02000000000000000000000000000000000000000000000006131f2c3845515c6776828f9ca99c90837667727f8b98a99b8f8275655b50443945525d687783909da298897c6f697884919eab9a8d817467574e42372b1e12060000000000000000000000000000000000060f1925303a444f59606d79849199a3a2989083786c606d7a84919ea5a3989083796d60594f443a30241b0f060000000000000000000000000000000000000000030c19242f3a43505a616e7b86929f9e92857a6d61594f42392e23180c03000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000a1623303d495663707c8996a8b1a4978b7e7164544a3f33281d120700000000000009141f2f3b47525c63666867666564646360594f44382c2013070000000000000000000713202d3946525e687885929fabac9f9285796c605346392d201306000000000714212d3a46535e697985929facac9f9285796c605346392d2013060000000000000000020d17202b343e48505a616b707c838c92999fa4abaca7a09d999892908f8d8d8d8d8d8f909298989c9fa4abaaa29f97928a827a6e6960584e463c32291e150b00000000000000000000000000000000000000000000000000000000000005121e2b3844515d6973787979797979797976675c5145382c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060809131313131313060400000000000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87929fac9f92877a85929fab9f93877b6e61544a4034281c1004000000000000000000000000000000000000000005121e2b3845515e6b7884919eabac9f9285796c5f52462e23180c0000000000000714202d3a46525e6976797979797979797979797979797979797979797979797979797979766a5f646e7479797979797979746f64554b4135291d1104111d2935414c56646f7479797979797979706b6155483c2f231609000000010d18232d373f464a4c53535353534c566774818e9a96877b6e6154535353535353534d576875828f9b9285796d60535353535353534e4c4741382f241a0e0300000c17222c363e45494b4d4d53606d7a8693a0ada6998c807366594d4d4d4d4d4d4745413a32281e13080000000000000000000000000000000008131e28323a46525e69717e8b949faaa59e9184796d6b75818e98a2aba0958c7f72695f53463f32291e140800000000000000000000000000000000000000000000000714202d3a4753606d7986929fab998d8073666f7b8897a19e9285796c6053463a4754606d7a86939f9f9286796d6875818e9ba89e9184786a5f53473a2e21140700000000000000000000000000000000000008131e28323e45515d676f7c87929fa79f948b7f726b74818e96a1a69f92867c6f675c51473d32281e12090000000000000000000000000000000000000000000008131e28313e46535f69727f8c95a0978e81746b60544b4034281f1409000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000814212e3b4754616e7a8795a0aca79a8e8174665b5044392f2318110a020000000003131f2a35404a52585a5b5a5959585756544f473d32271b10040000000000000000000714212e3a4754616d7a8798a2aeaa9d918477665b5044382b1f12060000000005121e2a36424d576a7784919daaaea298877a6e6154473b2e211408000000000000000009141f29323d46505a626c717d8690959fa3ababa49f9b95908c898584828180808081828385888b8f93999fa2aaa9a19e938f847b6f6a60584e443b30271d1207000000000000000000000000000000000000000000000000000000000006121f2c3945525f6c788586868686868686796d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f12151520202020202013100c070100000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000006121f2c3844505c6673808c99a3ab9c8f8276818e9ba9a4998d8073665c5144382c1f1509000000000000000000000000000000000000000005111e2b3844515e6b7784919eaaab9f9285786c5f5245392c1f0700000000000005121e2a36424d575e6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c625f585c64676c6c6c6c6c6c6c67645d53433a2f24180d010d19242f3a43535d64686c6c6c6c6c6c6c6361594f44382c20140700000006121e29343f495156586060606060606065717e8b98978a7d71646060606060606060606065727f8c9898887c6f62606060606060605a58524a41362b1f14080005111d28343e48505557595959606d7a8693a0ada6998c8073665959595959595954524c443a2f24190d010000000000000000000000000000030d1924303a44505a616e7b85929fa6a99e93897d7067616e7b86929fa7a79f92867b6e615a50443b3025190d04000000000000000000000000000000000000000000000a1723303d4a5663707d8998a2a3998a7d70636a7885919ea297887c6f6255483d4a5763707d8a99a49c8f82766665717e8b98a8a196887b6e6255483b2f24180c000000000000000000000000000000000000020c16202935404b55606a737f8c959fa69f92867b707d89939da89f948b7f726a5f554b40352b20160c0000000000000000000000000000000000000000000000010c161f2a36424d57606d7883919a9e93897d70665c51453c31261a0d040000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000714202d3a46525e697784919dacab9e9184786c60554b403429221c140b05000000020e19242e3840474b4d4e4d4d4c4b4a4948443d352b21160b000000000000000000000915222f3c4855626f7b8895aab4a99c8f837669544a3f33281c0f0300000000020e1a2531434f5c6976828f9ca9b4aa95887b6f6255483c2f22150900000000000000030d1925303b444e58626c717e879298a0a7afa79f99938e88837f7c79777574737373747577797c7f83878d92989ea5ada59e9691857c6f6a5f564c42392e23180c030000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929393939393867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151b1f21222d2d2d2d2d2d1f1c18120b03000000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c3023160900000000000000000000000000000000000000000000000000000000000713202d3a4653606d7984919eaba3998b7e717d8a97a2ab9e9285796d6053463c31261a0e010000000000000000000000000000000000000004111e2b3744515e6a7784919daaab9e9185786b5e5245382b1f12050000000000020e1a25303b454d525f60606060606060606060606060606060606060606060606060606055534e52585a606060606060605b59534b4131281d13070008131e2831414b53595b6060606060606057554f473e33281c10040000000916222e3a46515b62656c6c6c6c6c6c6c6c6f7b88989a8d80736c6c6c6c6c6c6c6c6c6c6c6c6f7c8999988b7e726c6c6c6c6c6c6c6c67645c52473c3024170b000815212d3945505a6164666666666d7a8693a0ada6998c80736666666666666666605d564c4135291d110400000000000000000000000000010b151f2935414c56616c75828f97a2ada2978e81756b605e69727f8c95a0aca2988f82766c62564c41362a1f160c01000000000000000000000000000000000000000005111e2a36414d566773808d9aaa9f92867a6d606875818e9ba9988b7f7265544a404b556773808d9aaa998c7f7366616e7b8896a1a8988b7f7265554b4035291d1004000000000000000000000000000000000000050e18242f39434e58606d78839098a2a29890827a84919ea5a2978f82776c60584e43392e23190e04000000000000000000000000000000000000000000000000040d1a26313b44515c666f7d88939f9d9184796d60574d42372b20160c0100000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0005111e2a36424d566774808d9aa4ada1968a7e71675c51453f332d261d170e0600000008121c262e353b3f404241403f3e3d3d3b38322b23190f04000000000000000000000a1723303d4a5663707d8996a3b0a89b8e8275685b4f422d22170b000000000000091c2835424f5b6875828e9ba8b0a396897d7063564a3d3023170a000000000000010b151f2a36424d56606a717e889299a2aaafa49c959087817c77726f6d6668676766676768666c6f72767b80868e939fa3aaa8a09792867c6f685e544b4034282015090000000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929f9f9f9f93867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101820262b2e2f3939393939392c29231d150d030000000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c302316090000000000000000000000000000000000000000000000000000000005121e2a36424d5764707d8a96a1ac9f92867a6d7985929faba1978a7e7164574d42372b1d12070000000000000000000000000000000000000004111d2a3744505d6a7783909daaab9e9184786b5e5145382b1e120500000000000009141f29333b424648535353535353535353535353535353535353535353535353535353494743474c4d535353535353534e4c4841382f1f160c0100010c161f2f3941484d4e535353535353534a48443e352c21160b000000000b1825313e4a56626d727979797979797979797885929d908379797979797979797979797979797986929b8e81797979797979797979746e64584c3f33261a0d000a1724303d4955616c7173737373737a8693a0ada6998c807373737373737373736d685d5245392c2013070000000000000000000000000007121d27313945525d68717e8a939ea9a69f92857a6d615957606d7883909aa4aa9f948b7e71685e52463e31281e130800000000000000000000000000000000000000000714202d3946525e687784909daa9d908377675d65717e8b98a89b8f8275665b5045515d677683909da298897c6f635f697884919ea99c8f8276675d5145382c1f13060000000000000000000000000000000000000007121d27313d44505c666e7b86929fa69f9490849196a1a59e92857b6e655b50463c30271d1108000000000000000000000000000000000000000000000000000009141f2834404a54606b74818e97a0968c7f73695f53463e32281e130800000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00020e1925303b4855626e7b87939faaa99e9184796d605a50443f382f292017110a0300000a141c242a2f3233353433323131302f2c272119110700000000000000000000000a1724313d4a5764707d8a97a3b0a79a8e8174675b4e4134281b060000000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a00000000000007121d27313946525e696f7c86929aa3ababa39f928d837c756f6a6662605c545a5a5a5a5a545b606265696e747b818a9298a2a9a9a19891847a6e665c51453c31261a0e0500000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabaca093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e18222a31373a3c46464646464638342f271f150b0100000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000714212d3a46535f6976828f9ca8ab9c8f82766874818e9ba9a99c8f8276695f5347392f23180c0000000000000000000000000000000000000004101d2a3743505d6a7683909da9aa9e9184776b5e5144382b1e1105000000000000020d17212930363a3b4646464646464646464646464646464646464646464646464646463c3b373c3f414646464646464641403c362f261d0d04000000040d1d272f373c4041464646464646463d3c38332c231a1005000000000c1925323f4c5865727f868686868686868686868a989f95908686868686868686868686868686868b999e938e8686868686868686868074675a4e4134271b0e000b1824313e4b5764717e8080808080808d99a6b3a99c90828080808080808080807a6d6054473a2d211407000000000000000000000000030c18242f39434f59606d7a85919ea5ab9f948b7e71685e52505c666f7c87939fa9a69f92857a6e61594f433a2f24190c03000000000000000000000000000000000000000814212e3b4754616e7a8795a0ac9a8d80736755616e7b8796a19f9285796c60534753606d7a86929f9f9285796d60576874818e9ba79f9286796d6053473a2d20140900000000000000000000000000000000000000010b151f28343f4a545f69717e8b939ea69f969196a0a89d938a7e71695e53493f342a1e150b000000000000000000000000000000000000000000000000000000030c18232e39424f59616d7a85929e9f92867b6e615a50443a2f24190c02000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00000914212e3a47535f6a75828f98a3aca0968d80746c625a504a423b3228231c150c0500020a12191f2326272827262625242322201b160f070000000000000000000000000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e0100000000010e1b2734414e5a6774818d9aa7b0a4978a7d7164574a3e3124170b0000000000000c18232f3943505a616e7b859198a3acaca399928b80786f6a625f585653504a4e4d4d4d4e4a505355575e61696e757e869297a2aaaaa1969082786d60574e42372b21170b00000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c43474853535353535345403931271d120700000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c3023160900000000000000000000000000000000000000000000000000000004101c2834404b54616e7b87939faca3998b7e7165707d8a97a2ab9f94887b6e62554b4034291c100400000000000000000000000000000000000003101d2a3643505d697683909ca9aa9d9184776a5e5144372b1e110400000000000000050f171f252a2d2e3939393939393939393939393939393939393939393939393939392f2e2b303334393939393939393433302b251d140b00000000000b151d252b30343539393939393939302f2c28211a110800000000000c1925323f4c5865727f8b93939393939393939394a2a79f9d9393939393939393939393939393939fa3a59e9b93939393939393938d8174675a4e4134271b0e00101c2936434f5c6976828c8c8c8c8c8d929ca8b4ab9f94908c8c8c8c8c8c8c8c877b6e6154483b2e2115080000000000000000000000000a151e2935404b55606b74818e97a1ada3999083776c60564c4a54606b74818e97a1ada2978e81756c61554c4135291e150b000000000000000000000000000000000000030f1b27333f495364717e8b97a7a49a8a7d7064575e697884919ea297887c6f62554a5663707d8999a39c8f8276665c5864717e8b97a8a3988a7d7063574a3d31261a0e0200000000000000000000000000000000000000030d17232e38424d57626c75828f97a1a8a09ea0a8a0968e81746c61564d41382d22180c030000000000000000000000000000000000000000000000000000000007121c27303d46525d68717e8b949f988f82766c61564c4135291e140a000000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000006121f2b37434e58626f7c86929fa6a89d928b7e716c605b544d443d342e261e170e070000080e1317191a1b1a1a191817161613100b04000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e0100000000010e1a2734414d5a6774808d9aa7b1a4978b7e7164584b3e3125180b000000000004101c2934404b55616c76828f97a1aaafa49a92877e736d665f58534e4946443f41404040413f4446484d53565e616c717c859298a2aca89f948d80736a5f53473e33281c1004000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26313c464e535560606060605f514b43392f23180c00000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c3023160900000000000000000000000000000000000000000000000000000006131f2c3845515c6673808d9aa4ac9f92867a6d606d7985929faba69a8d8073675c5145382c1f150a00000000000000000000000000000000000003101d293643505c6976838f9ca9aa9d9084776a5d5144372a1e11040000000000000000050d141a1e20212d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d22211f2326272d2d2d2d2d2d2d282724201a130b020000000000030b131a202427282d2d2d2d2d2d2d2423201c1610080000000000000c1925323f4c5865727f8b989f9f9f9f9f9f9f9f9faaacaba99f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9faaacaaa89f9f9f9f9f9f9f9a8d8174675a4e4134271b0e00101c2936434f5c6976828f99999999999ca4aeb9b0a69f9c9999999999999994877b6e6154483b2e211508000000000000000000000006111c26303845515d67707d89939da9a89f92877c6f655b5044424f59616d7a85929ea6a99e938a7d70675d51453d30271d1207000000000000000000000000000000000005121f2b3744505b6575818e9ba89f93867a6d6154576774818e9aa9988b7f7265544b556673808c99aa998c7f72665454616e7b8796a1aa9a8d807467574d42362a1e1205000000000000000000000000000000000000000006111c26303c45505a616d7a85929eabacaaaca3999184796d605a50443b2f261b10060000000000000000000000000000000000000000000000000000000000000b151e2935414c56626c76828f989f948a7e71685d52453d30261c11060000000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0000020f1a26313c47535f6a727f8c949fa7a49f93877e736c665e564f443f38302920191109000002070a0c0d0f0e0d0c0b0a0a0907040000000000000000000000000000000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e0100000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3124180b000000000006131f2c3845515c67707d8a949fa9b0a69f93887e716c605c544e47433c3a38342e3433342d3338393c42464d525a616a6f7c86929aa4afa69f92877b6e62594f44392d20150a000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e585f626c6c6c6c6c6c5c554b4034291c1004000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca9a396897d7063564a3d302317080806020000000000000000000000000000000000000000000000000713202d3a4653606d7985929eacaa9c8f8275685d6674818e9ba9ab9e9285796d6053473c31261b0f01000000000000000000000000000000000003101c2936434f5c6976828f9ca9a99d9083766a5d5043372a1d100400000000000000000002090e121415202020202020202020202020202020202020202020202020202020161513171a1a202020202020201b1a18140f08010000000000000001090f14181a1b20202020202020171614100b05000000000000000c1925323f4c5865727f8b939393939393939393939da0a7a09393939393939393939393939393939393a0a79f9d939393939393938d8174675a4e4134271b0e00101c2936434f5c6976828f9c9f9f9fa0a2a7afb9b6aea8a69f9f9f9f9f9f9f94877b6e6154483b2e21150800000000000000000000020b17232e38424e58606d7984919ea5aca1968d80736a5f53493f3d46525e68717e8b949faba59e91847a6d60594f43392e23180b02000000000000000000000000000000000613202d394653606c7885929eaa9d908477685d525764717e8a97a79b8f8275665b515c677683909ca298897c6f6356535e697884919eaa9d918477695f53463a2d2114070000000000000000000000000000000000000000000a141e2a333f46525e68707d8a99a3aeb7ac9f92877c6f675d51483e32291d140a00000000000000000000000000000000000000000000000000000000000000030c1924303a44505a626e7b86929f9e91857a6d60584e42382e23170b0300000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0000000a15202b37434e58606c78828f959fa6a499938b80786e686159504a423b322b231b1209000000000000020100000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0a79a8e8174675b4e4134281b0e0100000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a0000000003101c28343f4a54606d7984919ea6b0aa9e948c7f736c625a504a423c37322d2c282327272722282b2d31363b42465058606a707e88939fa8aea3998f82766c6155493c31261b0f000000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000003060b0f15212e3a47535f6a76797979797976675c5145382c1f130e090603000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9a4978a7d7164574a3e2f24191514120e090300000000000000000000000000000000000000000006121f2b37434e5864717e8a97a1ada3988b7e71645663707d8a97a1ada2978b7e7164584e43372b1d13070000000000000000000000000000000000020f1c2935424f5c6875828f9ba8a99c908376695d5043362a1d10030000000000000000000000020507081313131313131313131313131313131313131313131313131313130908060b0d0e131313131313130e0e0b0803000000000000000000000003080c0e0e131313131313130a0907040000000000000000000c1925323f4c5865727f86868686868686868686868995a0958986868686868686868686868686868689959f958986868686868686868074675a4e4134271b0e00101c2936434f5c6976828f9393939393969da7b2aea49c999393939393939393877b6e6154483b2e211508000000000000000000000a141d28343f4a54606a73808d96a0aca59e9184796d60584e413835414c56606c77829099a3ada1968d80746b60554b4034281d140a000000000000000000000000000000000916222f3c4955626f7c8897a1a79a8d817467564c54616e7a8795a09f9285796c6053606d7986929f9f9285796d60534d576874818e9ba7a096887b6e6155483b2e23180c00000000000000000000000000000000000000000008131e28323a45515c666e7b86929facb7ab9e91847a6d605a50443b2f261b1106000000000000000000000000000000000000000000000000000000000000000008131e28323e47535f6973808c96a0978d80746a60544a3f34281f140900000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000030f1a26313c44505b666d79838f949da5a49f928d827a706b605c544d443d352d241b12090000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a89b8e8175685b4e4235281b090000000000020f1b2835424e5b6875818e9ba8b0a3968a7d7063574a3d3024170a0000000006121f2b3844505c66727f8c96a0acaea2988f82776c605a50443f38302b26201f1c171a1a1a171c1f20252a30363e464e58616c73808d96a1acab9f948a7d7064584e43372b1d12070000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000060b1012171b1f222f3c4855626f7c8686868686796d6053473a2d201e1a15130f0a04000000000000000000000000000000000000000000000000020f1c2935424f5c6875828f9ba8a6998c7f7366554b4135292422211e1a150e0600000000000000000000000000000000000000000814212e3a47535f6a7683909ca9ac9f92867a6d6054606d7985929eaba99d9083766a5f53473a2f24180d0100000000000000000000000000000000020f1c2835424f5b6875828e9ba8a99c8f8376695c504336291d10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4a56626d72797979797979797979797983909d918479797979797979797979797979797983909d90837979797979797979746e64584c3f33261a0d00101c2936434f5c6976828686868686868b96a2aea89c928c8686868686868686867b6e6154483b2e21150800000000000000000006111b262f3844505c666f7c87929fa8aa9e938a7d70675d51463c2f303a44505b656f7c87929fa8a89f93887d6f675c51453c2f261c1106000000000000000000000000000004111d2935404b5566727f8c99a9a8978a7d7164574a525e687784919da297887c6f625663707c8998a39c8f8276665c514b5864717e8b97a8a8988b7e7265544b4034281c100400000000000000000000000000000000000000050f19242f3a444f59606d79839099a3acaaaca1968e81746c61564d41382d22170c0300000000000000000000000000000000000000000000000000000000000000020c16202b37424d57606d7984919e9f93877c6f665c50443b30251a0d04000000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000a152028333f4a545d676d79828e939fa3a49c948f857d736d665e564f473e362d241b110800000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895aab4a99c8f8276695c4f4330251a0e0200000000030f1c2936424f5c6975828f9ca8b5ab95897c6f6256493c2f231609000000000713202d3a4653606d7884919ea8b2a99f92867b6e655b50483e342e261e1b1312100c060d060b0f12131a1f252a343d46505a606d7984919ea8b0a69c8f83766a5f5347392e23180c0000000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000001080d11171c1f22272b2d2f3c4855626f7b88939393867a6d6053473a2e2d2a25211f1b15100b0500000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7a89b8f8275675d51453c352f2f2e2b2620180f0600000000000000000000000000000000000004101d2935404b55626e7b88949faba89b8e8175685d525c6674808d9aa7ab9f95887c6f62554b4035291d110400000000000000000000000000000000020f1b2835424e5b6875818e9ba8a99c8f8276695c4f4336291c100300000000000000060b0e10111313131313130f0e0c0904000000000000000000000003070b0d0e13131313131312110f0c0701000000000000000000000004080a0b1313131313131308070502000000000000000000000000000000000000000916222e3a46515b62656c6c6c6c6c6c6c6c6c6c74818d9a93867a6d6c6c6c6c6c6c6c6c6c6c6c6c74818e9a9286796d6c6c6c6c6c6c67645c52473c3024170b000f1c2835414e5a6670767979797979798693a0ada6998c8079797979797979797976695e53463a2d2114070000000000000000000b17222d38414d57606d78839099a3aea2988e81756b61554b40342a27333f49535f6a73808d96a1ada49a9184796d60584e42382d22170b03000000000000000000000000000613202c3945515d6776838f9ca9a096877a6e6154474c566774808d9aa9988b7f72655466737f8c99aa998c7f7266544a4854616e7b8796a0a89c8f8275665c5145382c1f1306000000000000000000000000000000000000020b17212935414c56606b73808d95a0a7a09da0a79d938a7e70685e53493f33271e150b0000000000000000000000000000000000000000000000000000000000000000040e1a26313c45515c67707d89939e999083786d60574d42362a1f160c010000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00000000030b17222d38424b555d676d78818b9298a0a69f97928880786e69605950483f362d231a0e04000000000000000000000000000000000000000000000000000000000814212e3b4754616e7b8798a3aeaa9d9084776a574d42362a1e12050000000005111d2935414c566a7783909daaafa399877b6e6154483b2e21150800000005111e2a36414c5664707d8a96a1adada1978c7f72695e53493f3628231c140c0a060300000000000306090e1419222b343e45515d67717e8a96a0acab9f94887c6f62544b4034281c100400000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000060b13191c23282b2d3337393b3e4855626f7b88959f93867a6d6053473e3b3a36312e2b26201c170e09030000000000000000000000000000000000000000000c1825323f4b5865727e8b98a6ac9f92857a6d60574d45413f3b3a37312a21180e03000000000000000000000000000000000006131f2c3945515d6774808d9aa6aca096897d7063564c54626f7b88959faba79a8d8174675d5145392c20150a00000000000000000000000000000000020e1b2835414e5b6874818e9ba7a89c8f8275695c4f4236291c0f030000000000040b12171b1d1e2020202020201c1b19150f09020000000000000001080e13171a1a2020202020201f1e1b18130c050000000000000000050c11141717202020202020201514120e0903000000000000000000000000000000000006121e29343f4951565860606060606060606064717e8b979a897d70636060606060606060606065717e8b9899897c6f6360606060605a58524a41362b1f1408000d1925323d49545e66696c6c6c6c6d7a8693a0ada6998c80736c6c6c6c6c6c6c6c6c5e574d42362a1e12050000000000000000040f1b27333f49535f69727f8c95a0aba79f92857b6e61594f43392f22222d38414e58606d7984919ea6aca0958c80736a5f544a3f33281f1409000000000000000000000000000714202d3a4753606d7a86929faa9d918477685e52464a5764707d8a99a49b8f8275655c6676828f9ca298897c6f62564946525e697784919eaa9f9285796d6053463a2d2013090000000000000000000000000000000000000a141d29333b45525d68707d87939fa69f959095a0a59e92857a6e655b50443c30271d120700000000000000000000000000000000000000000000000000000000000000000915202834404b55606b75818e97a0958c7f72695e52463e31281d12070000000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000006111c262f3a434b555d666d747f8691969ea5a19a938d827b706b615a50483f352b20160c020000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facab9f928578695e52463a2d201407000000000713202d3946525d687885929eabac9f9286796d6053463a2d2013070000000714202d3946525e6876828f9ca8b2ab9e9185796d60574d41382d2417110a02000000000000000000000002091019222935404b55606c7884919dabb0a69a8e8174665c5145382c1f130600000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000020a11171e24292e34383a3f4446484b4d55626f7b8895a093867a6d60534d4a4846423c3b37322d28221a150e0600000000000000000000000000000000000000000815222f3b4855626e7b88949faba2988b7f72695f57514c4c4847423c332a20150900000000000000000000000000000000000714202d3a4753606d7985929fabab9e9184786c605346535f6a7683909daaab9f92857a6d6053473d32271b0f01000000000000000000000000000000010e1b2834414e5b6774818e9aa7a89b8e8275685b4f4235281c0f0200000000050e161d23272a2b2d2d2d2d2d2d282825201b140c030000000000020b12191f2326272d2d2d2d2d2d2b2b28241e170f060000000000000810171c2123242d2d2d2d2d2d2d22211e1a140e0600000000000000000000000000000000010d18232d373f464a4c535353535353535355626e7b8897998c7f736659535353535353535355626f7b8898988c7f726559535353534e4c4741382f241a0e03000915212c38424c545a5c606060606d7a8693a0ada6998c807366606060606060605f534d453b31251a0e0200000000000000040e1a242b3744505b656e7b86929fa7ab9f958b7f72695e52473e31271d1b262f3c45515d67707d8a949eaaa89f92877c6f665b50443b31251a0e040000000000000000000000000a1724303d4a5763707d8a99a3a79a8e817467564c414754606d7a86939f9e9285796c606d7985929f9f9285796d605346424d576774818e9aa7a298897d706356493d30251a0e020000000000000000000000000000000006111c262f3b45505a606d7a849199a49f9490849096a1a1978f82776c60584e43392e23180e0400000000000000000000000000000000000000000000000000000000000000030c18232e39434f59616d7a85929f9f92867b6e61594f43392f24180b0200000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0000000000000a141d28313a434b545c606d727c848e939fa2a49f9490857d716c625a50473d32281e130800000000000000000000000000000000000000000000000000000006121f2b3844505c667784909daaaea298877b6e6154483b2e21150a000000000714212e3a4754616d7a8797a1adaa9e918477665c5145382c1f13060000000814212e3b4754616e7a87939facafa3998c7f72675d51453b2f261b1206000000000000000000000000000000071018242f3944505b66727e8b99a3aeac9f9285796d6053463a2d20130800000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000040b141b22272f35383f444649505355585a5c626f7b8895a093867a6d605b5a5754534d4947433c39332b261f180f09000000000000000000000000000000000000000814212e3a47535f697683909ca5aa9f92857b6e69605d555855534d453c31261a0e0200000000000000000000000000000006131f2b37434e5865717e8b97a2ada3998c7f72655b50444e5865717e8b98a2aea2988b7e7165584e43372b1e1308000000000000000000000000000000010e1a2734414d5a6774808d9aa7a89b8e8175685b4e4235281b0f02000000040e1720282e3336373939393939393534312c251e150c02000000010b141d242b3033343939393939393837342f2921180f050000000008121a22282d3031393939393939392e2d2b261f180f060000000000000000000000000000000007111b252d343a3e3f4646464646464647535f697885929c8f827569574d4246464646464653606c7985929b8e827568564d424646413f3c362f261d1308000005101b26303a42494e4f535353606d7a8693a0ada6998c807366595353535353534846423b33291f140900000000000000020c16202a36424d57606c77829098a3aea3999083786c60564d42352c1f15141d2935404b55616c75828f98a2aea3999083786c60574d42362a20160c020000000000000000000005121e2a36424d576774808d9aaba8978a7e7164574b3e45525d687783909da297887c6f626f7c8998a29c8f8276665c50443e4b5764717e8a97a8aa9a8d807367574d42362a1e1205000000000000000000000000000000030d17222d38424d57616c75818e96a1a39890827a84919ea59f948b7f726a5f554b40342820160c020000000000000000000000000000000000000000000000000000000000000007121d27303d46525e68717e8b949f988f82756c61554b4035291d140a00000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000000020b161f28313a424a515b626a6f7a818b9298a0a69f9792877e716c62594f443a3025190d03000000000000000000000000000000000000000000000000000003101c28343f4a546875818e9ba8b3aa978a7d7064574a3d32271b0d04000001081623303d495663707c8996a9b3a89c8f827569544b4034281c10040000030f1b27333f495364717e8b9aa4afac9f92867a6e61554b4033291d140a000000000000000000000000000000000007121d28333f4a54616d7a86929facaea298897d706356493d2f24190d01000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000050d161d262d333a41454a5053535b60626467686a6f7b8895a093867a6d6a686664615e5755534e49443e37312a211a120a01000000000000000000000000000000000006121e2b37424d5763707d89939ea6a29891847b736d676665625f574d42372b1e12060000000000000000000000000000000815212e3b47535f6a7683909da9ac9f92867b6e6153493f4753606d7a85929facaa9d9083776a6054473a2f24190d010000000000000000000000000000010d1a2734404d5a6773808d9aa6a79b8e8174685b4e4135281b0e020000000b16202932393f434446464646464642413d3730271e140900000008121d262f363c3f414646464646464544403a332b21170c01000005101a242c33393c3e464646464646463b3a37312a21180e030000000000000000000000000000000009131b23292e313239393939393937424d576975828f9c928578695f53473a3939393844505b6676838f9c918478695e52463a393433302b241d140b010000000a141e2830383d4143464753606d7a8693aab4a6998d8073665a4d46464646463b3a36312921170d030000000000000008131e28323a46525e69727e8b949faaa89f92877c6f665b50443b30231a0d0b18242f3943505a616e7b86929fa8ab9f958b7f72695e53463e32281e1308000000000000000000000714212d3a46535e697784919eaaa196877b6e6154483b414c566673808d99a9988b7f7266727f8c99aa998c7f7266544a3f3b4754616e7b8796a0aa9d908477695e52463a2d2014060000000000000000000000000000010b151f28333f4a545e69717e8a939ea79f92867b707d89939ea69f92867c6f675c51453d32281e130800000000000000000000000000000000000000000000000000000000000000000b151e2a36414c56606c778390999e938a7d70675d51453c2f261b1106000000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00000000000000040d161f2830394044515860676d757e8691969fa7a19992887e716b60564c4135291f15090000000000000000000000000000000000000000000000000000000b17232e3f4b5865727e8b98a8b2a69a8d807367584e43372b1f15100c090e131e2a36414c5666727f8c99a5b3aa998c7f7366594c402e23180c00000005121f2b3744505b6575818e9bacb6a99c8f8276685e5243392f21170b020000000000000000000000000000000000010b17222d3846525d6875828f9ca8b4aa9a8d807367564c4135291d1104000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000050e171f282f383f444c51545c6063656c6e71747576787c8895a093867978777573716e6967625f58555047423c332c241c130a0000000000000000000000000000000000020e1a26313c4854606b74818e949da5a09691857f7a7673726e695f53473a2e211408000000000000000000000000000004111d2935414c55626f7c88959faba99b8f8275685e52413845515d6774818e9ba7aca095897c6f62564c4135291d11040000000000000000000000000000000d1a2733404d5a6673808d99a6a79a8e8174675b4e4134281b0e01000006121d28323b444b4f515353535353534f4d48423930251b0f0400030e19242f3840474c4d53535353535352504c453d33291e130700000c17222c363e45494a535353535353534846423c332a1f140900000000000000000000000000000000010911181e2225252d2d2d2d2d2631404c5966737f8c9997887b6e6255483b2f2d28333f4a546673808d9996877a6e6154473b2e2726241f1a130b0200000000020c161e262c3235363a4653606d798698a3aea79a8d81746753493f36393a3c3a38342f271f150b01000000000000030d1924303a44505a616e7b85929fa6ada1968d80746a5f544a3f32291f110807121d28313e46535f69737f8c95a0aca79f92867b6e615a50443a3025190d040000000000000000000815212e3b4854616e7b8796a0ab9e918478695e53463a3d4a5663707d8999a39b8e82756675828f9ca298897c6f6256493c3a46525e697784919daaa095877b6e6154483b2e23170c000000000000000000000000000007121d27313944505b666e7b85929fa5a0958c7f726b75818e97a1a3989083796d60594f443a3025190f0600000000000000000000000000000000000000000000000000000000000000030c1925303a44505b656f7c87929f9e9184796d60584e41382d22170b020000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0000000000000000040d161e272e343f464e555d606c717c8490959fa7a39a92877d70685e52463c31261a0e0000000000000000000000000000000000000000000000000000000615222f3c4855626f7b8896a0acaa9d9184776a6054473c31271f1c181b1a1e242d3946525e6876838f9ca9aea298897c706356493d302316070000000613202d394653606c7885929eabb3a9988b7f7265564c4131271d0f050000000000000000000000000000000000000006111c2935414c5665727f8b98aab4aa9d918477685d5245392c201306000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000040e172029313a414950555d60666d7075797b7e8082838486929fac9f9286858382807d7b77736f6a64615a534d453e362d251c120900000000000000000000000000000000000915202c38444f59606d79828e939c9fa097928c8683807f7b6e6255483b2f22150800000000000000000000000000000613202c3945515d6774818e9aa7ada1968a7d7063564d4135404b55636f7c8995a0aca79b8e8174685d5245392c20160a0000000000000000000000000000000d1a2633404d596673808c99a6a79a8d8074675a4d4134271a0e0100000b17232e39444d565b5e6060606060605b59534b42372c2015090007131f2b36404a52585a6060606060605e5c574f453a2f24180c0004111c28333e485055576060606060606055534d453c31261a0e020000000000000000000000000000000000070d12161819202020202023303d4a5663707d8999978b7e7164584b3e2f24222d3d4a5764707d8a97978a7d7064574a3d2e231717140e0801000000000000040c141b2125282c3845515c667986929faca89b8f8275655b5046424547484745403931271d12070000000000010b151f2935414c56616c75828f98a2aea69e9184796d60584e42382d20170d00010c161f2a36424d57606d7984919da5aea2988f82756c61564c4135291f160c010000000000000003101c28343f4a5465727e8b98a8a79b8e817468574d42363a4753606d7a86929f9e9285786c7985929f9f9285796d6053463a36424d566774818e9aa7a7988b7e7165544a3f34281c1003000000000000000000000000050e18242f39434e58606c78829097a2a3999083786d616d7a85929ea6a0958d80736b60564c41352921180c030000000000000000000000000000000000000000000000000000000000000008131e27333f49535f6a73808d96a0968d80736a5f53493f33271e14080000000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000000000000040c151c2328343c434c515a626a6f7a839095a0a9a39992857a6d61574d42372b1b110600000000000000000000000000000000000000000000000000000815212e3a47535f6a7784919eabaca095887c6f62584e4339312c282327262b2f35414c56616d7a86929facab9f9285796d6053463a2d2013070000000815222e3b4855616e7b8897a1adada197887b6e6255483b3022150b0000000000000000000000000000000000000000000d1924303c4855626f7b8898a2aeaca095877a6d6054473a2d211407000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000020b162029323b434b535b60676d73797d8285888b8d8f90919298a3aea3989291908e8d8a8784807c76706c625f5750483f372d241b10060000000000000000000000000000000003101c27333d45515c676d7981898f939aa29f9992908d8b7f7265584c3f3225190c00000000000000000000000000000714212d3a4754606d7a85929facac9e9184796d6053463b303a4854606b7784919dabac9f92867a6d6054473d32271b0f0200000000000000000000000000000c1926333f4c5966727f8c99a5a69a8d8073675a4d4034271a0d0100020e1b27333f4b565f676a6c6c6c6c6c6c68655d53483d3125190c000b1723303c47525c64676c6c6c6c6c6c6b6861574c4034281b0f030814212d3945505a61646c6c6c6c6c6c6c6c5f574d42372b1e12050000000000000000000000000000000000000106090b0c1313131314212d3a4754606d7a86939a8d817467554b403529212e3a4754616d7a8796998d807366544a3f34281c100303000000000000000000020a1015191c2834404b546b7885929eabab9e9184786c6056534d51545553514b43392f23180c000000000007121d27313945525d68717e8a939eaaaa9e948a7d70675d51463c2f261c0e050000040d1a26313b45515c66707d89939ea9aa9e948a7e71685e52463d31281d12070000000000000006121f2c3844505c6675828f9ba8a9988b7e7165584b3e313945515d677683909ca197887b6f7b8897a29c8f8276665c504438303e4b5764717e8a97a8a89b8e8275665c5044382c1f12060000000000000000000000020c17202935404b555f6a727f8c949fa89f92877c6f665e68717e8a949ea79f93887d70685e52463f332a1e150a00000000000000000000000000000000000000000000000000000000000000020b17222d38414e58606d7984919e9f92877c6f655b50443b3025190c0300000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00000000000000000000030b1218222b313a414550585f686d79839097a1aba1978e8174695f5347382d22170b000000000000000000000000000000000000000000000000000006121f2b37434e586673808d99a3afa89b8e81756a5f554b433c38342e3431373a4145525d68737f8c99a3afa79b8e8175675c5145382c1f13060000000a1724303d4a5763707d8a96a9b3ab9e928578695f53473a2e2114030000000000000000000000000000000000000000000813202d394653606c7985929facb1a795897c6f6256493c2f231609000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000a141d28323b444d555d656c717a80858a8e9297979a9b9d9e9fa3aab4aaa39f9e9d9b999796918d88837d766e69615a51493f362d22180b02000000000000000000000000000000000b16212834404b555d676d747d82889297a2a39f9c988b7f7265584c3f3225190c0000000000000000000000000007131f2c38434f5965727e8b98a2aea49a8d8073665c5044382c38434f5965727f8c99a3aea2988b7f7265594f44382c1e130800000000000000000000000000000c1926323f4c5965727f8c98a5a6998d8073665a4d4033271a0d000004101d2a36434f5b677177797979797979756f65594d4134281b0e020d1a26333f4c58646e747979797979797873685c5044372b1e11050a1723303c4955616c717979797979797976695f53463a2d21140700000000000000000000000000000000000000000000000606060613202c3945515d677784909d908377675d5145382c202d3946525e687884919c908376665c5044382c1f120600000000000000000000000005090c18232e43505d6a7683909da9ada196897d7068615f575d6062605c554b4034291c1004000000030c18242f39434f59606d7a85919ea6aea2988f82756c61554b40342a1d140a0000000009141f2834404b54606b75818e97a2ada69e92857a6d61594f43392f24180c030000000000000713202d3a4653606d7985929faba197887b6e6155483b2e35404b556673808c99a9978b7e717e8b97a9998c7f7266544a3f342e3b4754616e7a8795a0ab9f9285796d6053463a2d201308000000000000000000000008131e29323a45515d676f7c87929fa6a0968d80736a5f56616c75828f98a2a49a91857a6d615a50453c30261c11060000000000000000000000000000000000000000000000000000000000000006111b262f3c45515d67707d8a939e999083776c60564c41362a1e150b00000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0000000000000000000000000710191f282f353f464e565d676e7a85929ea6a99f93877b6e6253493f33271b0f0300000000000000000000000000000000000000000000000000030f1a26313c4854616e7b87929faaac9f92877c6f675d554e46454041414142474c515b606d7a85929eabaca095897d7063554b4034281c10040000000c1926323f4c5965727f8c98a5b2a99c8f837669574d42372b1e120600000000000000000000000000000000000000000006121f2b3844505b667783909daab1a4978b7e7164584b3e3125180b000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000006111b262f3a444d565e676d777e858d91979b9ea2a9a7a8a5a4a4a6acb3aba5a3a4a5a7a6a8a09d9a95908a827b716c635b51483f342a1d140a0000000000000000000000000000000006111c262f3b444d575e666d72797e85929faba8a5988b7f7265584c3f3225190c000000000000000000000000000a15222f3b4854606b7783909daaac9f93877b6e61544a3f3428323d4754616d7a86929facaa9d9184776b6054483a3025190d00000000000000000000000000000c1925323f4c5865727f8b98a5a6998c807366594d4033261a0d000004111e2b3744515e6a77848686868686868175685b4f4235281c0f020e1a2734414d5a67748086868686868685786b5e5245382b1f12050b1724313e4a5764717e868686868686867b6e6155483b2e221508000000000000000000000000000000000000000000000000000004111d2935414c556774818e9a92867a6d6053473a2d202a36414c566875818e9b9285796d6053463a2d2013070000000000000000000000000000071a2734414d5a6774808d9aa9b2a89d91837a726e696c676d6f6d675c5145382c1f13060000000b151e2935404b55606b74818e97a1ada79f92867b6e615a50433a2f22190b0200000000030c18232e39424f59616e7a85929fa7ada1978e81746b60554b4035291e150a000000000000091623303c4956636f7c8997a2ab9e918578695f53463a2d2f3c4956636f7c8998a29a8e8174818d9aa298897c6f6256493c2e2d3946525e687784919daaa297897c6f6356493c3025190d01000000000000000000060f1925303a444f59606d79839199a3a49a9184796d6058505a616e7b86929fa7a1978f81756c62574d42382e23170d04000000000000000000000000000000000000000000000000000000000000000a141d2935404b55616b75818e989f958b7e72685e52463d30271d1207000000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00000000000000000000000000070d161e2429343c444c555e68707d8a949faba49a8d8174655b5044372b1f120500000000000000000000000000000000000000000000000000000a15212d3a46535e6975818e98a3aea3999083796d675f5853514b4e4e4e4d53555d606d74818e97a1ada69d9083776b605443392e23180c000000000e1b2834414e5b6774818e9aa7b3a79a8d8074675a4d4131261a0e02000000000000000000000000000000000000000000030f1c28333f4a546875818e9ba8b3a6998d8073665a4d4033271a0d000000000000000000000000000000000000000000000006121f2c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000b17222d38414c565e696e79828b91979ea1a9aba8a19e9b9997989ba2aba1999697989b9ea0a8aaa79f9d948f867e726d635a50463c2f261b11060000000000000000000000000000000b17222d38424d565e696e787f858b9297a29f9c98958b7f7265584c3f3225190c00000000000000000000000006111b2935414c56636f7c8995a0aca99c8f8276695f5342382e232d3946525e6875828e9ba8aca095897c6f63564c41362a1b1106000000000000000000000000000c1825323f4b5865727e8b98a5a6998c7f7366594c403326190d000004111e2b3744515e6a778491939393938e8275685b4f4235281c0f020e1a2734414d5a6774808d939393939185786b5e5245382b1f12050b1724313e4a5764717d8a9393939393887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000010d19242f3e4b5865717e8b9899897c6f6356493c302325303f4c5865727f8b9898887c6f6255493c2f22160800000000000000000000000000000b1724313e4a5764717d8a97a1adaca09591847f7b7978797a7c796d6053473a2d201407000007121c27303945515d67707d89939da9aba0958c7f72695e53483e31281d100700000000000007121d27303d46525e68727f8b959faba99e93897d70675d51453d30261c11060000000005111d2935414c566673808c99a9a89b8e817568574d42372b2d3a4653606d7985929f9d90847783909d9f9285796d6053463a2d2a36414c566774818d9aa7a9998d807366564c41362a1e11050000000000000000030c18212a36414c56616b74808d95a0a89f93887d6f675c5146535e69727f8b959fa99e938b7e71695f544a3f34281f160c01000000000000000000000000000000000000000000000000000000000000020b18242f39434f59616e7b85929f9f92857a6e61594f43392e23180c030000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0000000000000000000000000000040c1319222a323a434d56616c7683909cabac9e9285786c605346392d201306000000000000000000000000000000000000000000000000000005121e2a36424d57616e7b86929fa6aba0958f82796f6a63605c555b5a5b575f62676d747f8c939ea9a99f948a7d7064594f4430271d120700000000101c2936434f5c6976828f9ca9b2a5998c7f7266594c3f3326190900000000000000000000000000000000000000000000000b17222d404d5a6773808d9aa6b3a89b8e8175685b4f4235281c0f000000000000000000000000000000000000000000000000121f2c3945525f6c7885929fabada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000030f1b27333f49535d686e7b838f949ea1a9a9a19e9996918e8c8b8b909ba5998f898a8c8e9196999ea1a9a69f98928a7f726c62584e41382d22170b0000000000000000000000000000030f1c28333f4a545e696e7b838c92979f9f99938f8b88877f7265584c3f3225190c0000000000000000000000000b17222d3946525d6875818e9ba7ada1978a7e7164574d4230261c2a36414c5663707d8996a1ada79b8e8175685e5246382d22170b000000000000000000000000000b1825323e4b5865717e8b98a4a5988c7f7265594c3f3226190c000004111e2b3744515e6a7784919d9f9f9b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9a9f9f9e9185786b5e5245382b1f12050b1724313e4a5764717d8a979f9f9f94887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8897988c7f7265594c3f3025232f3c4956626f7c8998988b7e7265584b3f3024190d01000000000000000000000000000713202d3a4653606d7985929ea6b0a7a096918b8886858687877b6e6154483b2e21150800000c18232e39424e58606d7984919ea5afa4999083786d60574d42362c1f160c00000000000000000b151e2a36414c56606c78839099a4afa59e9184796d60584e42382e23170c000000000713202d3946525d687683909da9a9988b7e7265584b3f31262c3844515c6676828f9c9f93867a86929f9c8f8275665c5044382b25303e4a5764717d8a97a7aa9d908377685e5246392d20140600000000000000000b151e2a333c46525e68707d8a929da8a1968d80746b60554b424d57606c78839099a3a59f92867b6e665c50443d31281e13080000000000000000000000000000000000000000000000000000000000000007121d27313e46525e68727f8b959f978e81756b60554b4034281f15090000000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000000000000000000000000010810182028313b44505a64717e8a99a3ada197887c6f6255493c2f2216090000000000000000000000000000000000000000000000000000020e1a25313b46535f69737f8c949fa7a79f948f837c75706d676867676869696e737a818c919ca5aaa1978f82766c6155473d331e150b0000000000101d2a3643505d697683909ca9b1a4978a7e7164574b3e3124180b0000000000000000000000000000000000000000000000061926323f4c5965727f8c98a5b2a89c8f8275695c4f4236291c0f0000000000000000000000000000000000000000000000030d152c3945525f6c7885929fabada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000010c161f2b3744505b656d7a8490959fa6aaa29f96918c8884817f7e7e8b98a396897d7d7f8184888c91979fa3aaa29f918b7e716a5f53493f33271b0f030000000000000000000000000006121f2b3844505b666e7b8490959ea19d948f87827e7c7a786c605346392d2013060000000000000000000000030f1b27333f4953616d7a86929facab9e9285796d6053463b31201925303a4653606c7884919eabac9f92867a6d6153493f33271b0f030000000000000000000000000b1824313e4b5764717e8a97a4a5988b7f7265584c3f3225190c000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aca194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000613202d394653606c7985929b8e827568574d42362a202d3a4653606d7986929b8e817468564c4135291d11040000000000000000000000000006131f2c3845515c67737f8c949fa6ada8a19e989992929299877b6e6154483b2e2115080004101c2834404a54606a73808d96a09fa99f93877c6f665c50453b31241a0d040000000000000000030c1925303b44505b666f7c87939fa99fa1968d80736a60544a3f34281c10030000000714212e3a4754616d7a86939faca197887b6f6255483c2f222834404a5466727f8c99a4998c7f8c99a3998c7f7266544a3f3428212e3a4754616d7a8795a0ac9f93877a6e6154473b2d22170b0000000000000007121c27303c45515b616d7a85919ea4a59e9184796d60594f433b44505b666f7c86929fa7a2989083786d60594f433a2f24190f05000000000000000000000000000000000000000000000000000000000000010b151f2a36414d56606c788390999e93897d70675c51453c31261a0e0400000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0000000000000000000000000000000000060e161f29323e4753606d7a86929f9fa9988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000009141f2a36424d57606d78828f959fa7a69f959087817d79777574747476787b80858e939ca3aaa29892857b6e615a5044352b210c030000000000111e2a3744515d6a7783909daab0a3968a7d7063574a3d3024170a00000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1a99c908376695d5043362a1d1000000000000000000000000000000000000000000000010b151f2935414c566c7885929fabada093867a6d6053473a2d20160c0200000000000000000000000000000000000000000000000008131e2935414c56606c77828f96a0a7a8a198928c84807b787572717b8895a0938679717274777b80848d9299a2aaa39f92867c6f655b5044372b1f130800000000000000000000000003101c28343f4a54606c788390969fa79d938e827b75726f6e6c665b5044382b1f1206000000000000000000000005121f2b3744505b65727f8c98a3aea79a8d8074675c5145382c1f131f2b3844505b6673808c99a4aea3988c7f72655b5044372b1f14080000000000000000000000000b1724313e4a5764717d8a97a4a5988b7e7265584b3f3225180c000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000005121f2b3744505b6576828f9c918478695e52463a2d202c3845515c667683909d918477685d5245392c2013070000000000000000000000000004101c2834404b55606d78828f949ea1a8a9aaaba39f9f9f94877b6e6154483b2e2115080006121f2c3844515c666f7c879293939393978d80746a60544a3f33291f11080000000000000000000008141e28333f4a54606a74808d979393939392877c6f665c5044382c1f12060000000b1724313e4a5764717d8a99a4ab9e9285796c605346392d20232e3c4955626f7c8897a29e9184919ea298897c6f6256493c2e23202d3946525e687784909daaa49a8b7e7164544a3f33281c0f030000000000040d18232e39424d57626d75828f97a1a99e938a7d70675d51473d333f4a545f6a73808c95a0aa9f958c80736b60554c41352921170b02000000000000000000000000000000000000000000000000000000000000030d1925303b44505b666f7c87929f9e9184796d60574d42372b20160c02000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000000000000000000000000000000040d17202c3945515d67778490939393938c807366594d4033261a0d000000000000000000000000000000000000000000000000000000030e1a26313b44505c666d7a8390959da5a7a099938e898683828181818385888c92979da5a7a09892867d70695e52483e3323190f000000000000111e2b3844515e6b7784919eaaafa396897c706356493d3023160a00000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000007121d27313945525d687885929fabada093867a6d6053473e32281e13080000000000000000000000000000000000000000000000010d19242f3946525e68727f8c949ea8a8a19691867f79736e6968666f7b8895a093867a6d6568696e737980879298a2aea3999083786c6053463a2f24190d01000000000000000000000006121f2b3844505c66727f8b959fa89f958e81786e69656261605b544a3f33281c0f0300000000000000000000000613202d394653606c7884919daaab9f95887c6f62554b4034281c101c28333f4a54616e7b87939facaa9e9184786c6053463b3025190e0000000000000000000000000a1724313d4a5764707d8a97a3a4988b7e7165584b3e3225180b000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000030f1b27333f49536673808c9396877b6e6154483b2e212834404b546774808d9393867a6d6054473a2d21140700000000000000000000000000000c18232e3944505c666d7a828c91969a9c9e9f9f9f9f9e94877b6e6154483b2e211508000713202d3a4653606d798386868686868686857a6d60584e42382e21170d0000000000000000000000020b17222d38424e58606d7a858686868686868683796d6053463a2d201307000006121f2b37434e586774818e9aaba89b8f8275655b5044372b1f202d394653606c7985929fa1969196a19f9285796d6053463a2d201e2a36414c566774818d9aacac9b8e8175665b5044382b1f120600000000010c161f2834404a545f69727e8b949ea9a1978e81756b61554b41352d38424e58606d79839199a4a79f92877d6f675d51453e33291d140a0000000000000000000000000000000000000000000000000000000000000008141f28333f4a545f6a73808d96a0968c8073695f53473e32281e1308000000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0000000000000000000000000000000000000005111d2935404b556976828686868686868174675b4e4134281b0e0100000000000000000000000000000000000000000000000000000009141f28343f4a545e686d7a838e929d9fa7a49f9b9892908e8e8d8e8f9197999ea1a9a29e9590867d706b60574d42362c221108000000000000121f2b3845525e6b7885919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000030c18242f39434f59606d7a86929facaea194877b6e615a50443a3024190d030000000000000000000000000000000000000000000004111d2935414c55616d7a86929fa6aba19691847c726d66615f57626f7b8895a093867a6d60575f61676d737d86929fa5ab9f958a7d7064554c4135291d110400000000000000000000000713202d3a4653606d7884919ea7a89d9083786d665f57555453504a42382d22170b000000000000000000000005111e2a36414c5663707d8996a0acaa9d9083766a5f5343392e23180c17222d3846535e6976828f9ca9aca096897d7063564d41362a1c110600000000000000000000000a1724303d4a5763707d8a96a3a4978b7e7164584b3e3125180b000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000b17222d3d4a5763707d868686867d7164574a3e3124232e3e4b5764717e868686867d7063564a3d3023170a000000000000000000000000000007121d28343f4a545e686d787f848a8d9091929292929190877b6e6154483b2e2115080006121f2c3844515c666d7779797979797979786d685d52463d30261c0f0500000000000000000000000006111c262f3c45525d686d7879797979797979776d665c5044382c1f120600000814212e3a47535f6a7884919eaba9988b7f726553493f33271b1f2b3844505b6675828f9ba8a19ea1a89c8f8275665c5044382b1f1925303e4a5764717d8a9aa4ab9e9285796c605346392d2013080000000008131e28313a44515c666e7b86929fa6a69e92857a6d61594f433a2f262f3c45515c666f7c87939fa8a39991847a6d605a50453b2f261c1106000000000000000000000000000000000000000000000000000000000000020b17222d38424e58606d7984919e9f92867b6e625a50443a3024190c030000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00000000000000000000000000000000000000010d18242f3a4e5a667076797979797979746f64584c4033271a0d01000000000000000000000000000000000000000000000000000000030b17232e38424c565e686d79818990959b9fa2aaa39f9d9b9a9a9b9c9ea1a9a49f9c97928c837b706b60594f453b30241a1000000000000000121f2b3845525e6b7884919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0aa9d9184776a5e5144372b1e110000000000000000000000000000000000000000000a151e2935404b55606b74818e98a3aeb5a89c8f82756c61564c4135291f150b010000000000000000000000000000000000000000000613202c3945515d6773808d98a2aea49991847b6e6a605c545355626f7b8895a093867a6d605353555d606b707d8a939ea9a79c8f8276675d5145392c20130600000000000000000000000a1623303d495663707c8996a1aca096897d70665c544d494746443f382f261c110600000000000000000000000714202d3946525e6875828e9ba8aea2988b7e7165584e4330271d1207111c2a36424d5764717e8a97a1ada89b8f8275685e5246382e23170b00000000000000000000000a1723303d4a5663707d8996a3a4978a7d7164574a3e3124170b000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000616232f3c4855616b7079797979716c6155493c302323303d4955616c7179797979706b6055483c2f2316090000000000000000000000000000000c17232e38424c565e666c72797d808384858686858483817a6d6054473a2d2114070004101c2834404a545c606a6c6c6c6c6c6c6c6b605d564c41342b1e150a00000000000000000000000000000a141d2935414c565d606b6c6c6c6c6c6c6c6a605c544a3f34281c100300000815222f3b4855626e7b8896a1ada297887c6f6255493c2d22171c28333f4a5465727f8b98a9acabaca9988c7f7265544a3f34281c14212e3a4754616d7a86939faca197897c6f6256493c3024190d010000010d19242f3a434f59606d78839098a2a99e948a7e71685e52473e31281d2834404b54606b74808d96a1aba0968e81746c61574d42382d22170b0000000000000000000000000000000000000000000000000000000000000006111c262f3c45515d67707d8a939e988f82766c61564c4135291e150a0000000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000000000000000000000000000000000007131d323e49545e66696c6c6c6c6c6c67645c53483c3024180b000000000000000000000000000000000000000000000000000000000006111c26303a444c565e676d747c83898e9298999b9d9e9f9f9f9f9e9d9b999993908b857f786e6960594f473d33291f120800000000000000111e2b3844515e6b7784919eaab0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a99d9083766a5d5043372a1d10000000000000000000000000000000000000000006111c26303845515d67707d89939daab4b9aa9e948a7e71685d52463d31271d12070000000000000000000000000000000000000000000714212d3a4754606d7a85929faaab9f93877d6f695f58514b4855626f7b8895a093867a6d6053474b5159616b74818e9ba8ac9f92867a6d6054473a2d21140700000000000000000000000d192633404c5966737f8c99a8aa9d9184776b60544a423c3b3938332d261d140a0000000000000000000000030f1c28333f4a54616e7a86929facac9f92857a6d6053473c3120150b000e1a25313b4653606d7985929eabac9f92867b6e61544a3f34281c100300000000000000000000091623303c4956636f7c8996a2a3978a7d7064574a3d3124170a000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000714202c38444f5961636c6c6c6c64615a5044392d21212d3945505a61646c6c6c6c6360594f44382c20140700000000000000000000000000000006111c26303a444c545b60666d70737677787979787876746d685d5245392c20130700000c18232e39424a51535d606060606060605e54524c433a2f22190c030000000000000000000000000000020b19242f3a434c52545e606060606060605d53504a42382e23170c000004101c2834404b5565727f8b98a89f9f9285796c605346392d201317222d3b4855626e7b8897a19f9f9fa297887c6f6255493c2e231713202d3946525e687784909d9fa9998c7f7366564c4135291d1105000004111d2935414c55606b73808d959f9fa2978f82756c61564c41352c1f18232e39424f59606d7984919ea5a89e938a7e71695e544a3f33281c0f03000000000000000000000000000000000000000000000000000000000000000a141d2935404b55616c75828f989f948a7e71685d52453d30261c110600000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00000000000000000000000000000000000000000115212d38424c545a5c6060606060605b58534a41362b2014080000000000000000000000000000000000000000000000000000000000000a141e28323a444c555c606b6f777d8185898c8e90919292929291908f8d8a86837e79726d665f574f473d352b20170d0000000000000000111e2a3744515d6a7784909daab0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1a99c8f8276695c504336291d1000000000000000000000000000000000000000020b17232e38424e58606d7984919ea5afafacafa69e92857a6d61594f43392f24180c0300000000000000000000000000000000000000030f1b27333f495364717e8a98a2aca3998d80746b60574e45404855626f7b8895a093867a6d60534740454f59626f7c8896a0aca3998a7d7063574a3d3024170a00000000000000000000020f1b2835424e5b6875818e9ba8a79a8e817467594f4239302e2d2b28221c140b02000000000000000000000006121f2b3844505b66737f8c99a3aea79a8e8174675d5145392c2013030009141f2c3845515c6674808d9aa7afa3998c7f73665c5044382b1f1409000000000000000000000916232f3c4956626f7c8995a2a3968a7d7063574a3d3024170a000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000004101c28333e474f555760606060575550483e33281c1d28333e485055576060606056554f473d33271c1004000000000000000000000000000000000a151e29323a424a50545c606467696b6c6c6c6c6b6967605d564c4135291d1104000007121c2730394044465153535353535353524745413a31281e10070000000000000000000000000000000008131e28313a41454752535353535353535146443f3830261c1106000006131f2c3845515c6775828f939393938f8275665b5044382b1f1214212e3a47535f6a78859193939393939285796d6053463a2d2013111d2935414c566774808d93939393908376685d5246392d20130700000613202c3945515d676f7d87939393939392857b6e615a50443a30231a121d27303d45515d67707d8a939393939392857b6e665b5044382b1f120600000000000000000000000000000000000000000000000000000000000000020b18242f3a43505a616e7b86929f9e92857a6d60594f42382e23170c03000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00000000000000000000000000000000000000000a15202a343c4347495353535353535353534f4940372c21160a000000000000000000000000000000000000000000000000000000000000020c162029323a434b515960636b7075797c7f82838485868685858382807d7a76726d67605c544d453d352b23190e050000000000000000101d2a3643505d697683909ca9b1a5988b7e7265584b3f3225180700000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3a89b8f8275685c4f4235291c0f000000000000000000000000000000000000000a141d28343f4a54606a73808d96a0acaca49fa4aca1978e81746b60554b4035291e150a0000000000000000000000000000000000000005121f2b3744505b6574818e9b9ea09f92867b6e61594f453c3c4855626f7b8895a093867a6d6053473a3e47535f6a7784919eaaab988c7f7265594c3f3226190c00000000000000000000030f1c2936424f5c6975828f9ca8a4988b7e7165584b3e302721201f1c17110a020000000000000000000000000613202d394653606c7884919eabaca095897c6f62554b4035291d11040004101c2834404b54626f7c88959fabab9e9184786d6053463b31251a0e000000000000000000000916222f3c4955626f7c8895a2a396897d7063564a3d3023170a000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000b16212c353e44484a535353534a49443e362c221717222c363e45494b535353534a48443d352c21160b0000000000000000000000000000000000030c1720292f383f444a5053575a5d5e5f5f5f5f5e5d5b54524c443a2f24190d010000000b151e272e34383a4446464646464646453a39352f281f160c0000000000000000000000000000000000010c161f282f35393a4546464646464646443a38342e261e150a0000000713202d3a4653606d79868686868686867f7266544a3f33281c0f121f2b37434e58687581868686868686868275665c5044382b1f120d1925303d4a5764707e868686868686877a6d6154473a2e21140700000714212d3a4754606d7a84868686868686867f71695e52483e32281e110b151e2935414b55616b75818686868686868682796c605346392d201306000000000000000000000000000000000000000000000000000000000000000007131d28313e46525e69727f8c95a0978e81746b60544a3f34281f1409000000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b00000000000000000000000000000000000000030f1b26323c464e535560606060606060605f5a52493e33271b0f02000000000000000000000000000000000000000000000000000000000000050e172029313940454f54596063676d70727576787879797878777573706d6865605d55504a423c332b231911070000000000000000000f1c2835424f5b6875818e9ba8b3a6998c807366594d402f23180c00000000000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4a79a8e8174675b4e4134281b0e00000000000000000000000000000000000006111b262f3844505c666f7c87929fa8a69f9a939aa4a99d93897d70675d51453c30261c11060000000000000000000000000000000000000613202d394653606c78858b8e9196968f8275695e53473d333c4855626f7b8895a093867a6d6053473a37434e586976828f9ca9a69a8d8073675a4d4034271a0d0000000000000000000003101d293643505c6976838f9ca9a3978a7d7064574a3d31241513120f0b060000000000000000000000000005121e2a36424d5763707d8a96a1acaa9d9083776a6054433a2f24180d0100000c18232e3947535f6a7683909daaada1968a7d7063574d42362a1c12070000000000000000000915222f3c4855626f7b8895a2a396897c706356493d3023160a000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000005101a232c33383c3d464646463e3c39332c241a10101a242c33393d3e464646463d3c38332c231a0f05000000000000000000000000000000000000050e171d262d33383f44464a4d50515253535251504e4745413a32281e130800000000030c151c23282c2d3739393939393939382d2c29241e160d04000000000000000000000000000000000000040d161e24292c2d3839393939393939372d2c28231c150c0300000006131f2c3845515c676d79797979797979726d635742382d22170b0f1a26313c4d59656f7579797979797979757065544a3f34281c10081623303c4955616c707979797979797975685d5246392d20130700000613202c3945515d676d7879797979797979716d62574d42362c20160c030c18242f3a434f59656f7579797979797979766c665b5044382b1f12060000000000000000000000000000000000000000000000000000000000000000010c161f2a36424d57606d788390999f93887c6f665c50443b31251a0d040000000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b0000000000000000000000000000000000000006131f2b37434e585f626c6c6c6c6c6c6c6c6c645a4f43372b1e120500000000000000000000000000000000000000000000000000000000000000050e171f272f343d43484f54555c606366686a6b6c6c6c6c6b6a686664615e5653514b4c4841382f21191108000000000000000000000d1a2734404d5a6773808d9aa6b3a89b8e817568554b4034291c100400000000000000000000000000000000000000000005121e2a36424d576976838f9ca9b2a5988c7f7265594c3f3226190c0000000000000000000000000000000000000b17222d38414d57606d78839099a3ab9f948f87939fa8a59e9184796d60584e42382e23170c0300000000000000000000000000000000000613202d394653606c777c7e8184878a8b7e7165574d42352f3c4855626f7b8895a093867a6d6053473a32414e5b6874818e9ba7a79a8d8174675a4e4134271b0e0000000000000000000003101d293643505c6976838f9ca9a396897c706356493d3023160a06030000000000000000000000000000000714202d3a46525e6975828f9ca8aea3988b7f7265584e4331281d130700000007121d2b37434e5865717e8b98a2aea89c8f8275695e5346392e23180c0000000000000000000815222f3b4855626e7b8895a1a295897c6f6256493c2f231609000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000008111a21282c2f303939393931302d28221a120808121a22282d303139393939302f2c27211a11080000000000000000000000000000000000000000050b141c22282e34383a3d404344454646454543413a39352f2820160c010000000000030b12181c1f202a2d2d2d2d2d2d2d2b21201d19130c040000000000000000000000000000000000000000040c13191d20212b2d2d2d2d2d2d2d2a201f1c17110a030000000004101c2834404b555c606c6c6c6c6c6c6c66635b51462f261c11060a1520313d48535d65686c6c6c6c6c6c6c69655d5442382e23170b0814202d3944505a61646c6c6c6c6c6c6c6b5d564c4135291d1105000004111d2935414c555d606b6c6c6c6c6c6c6c65625a50453b30241a0e040007131d28313e47535d65686c6c6c6c6c6c6c69605b544a3f33281c0f03000000000000000000000000000000000000000000000000000000000000000000040d1a25303b44505c666f7c87939f9a9083786d60574d42362a1f160c0100000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000000000000000000000000000000000815212e3b47535f6a767979797979797979766c5f5346392d2013060000000000000000000000000000000000000000000000000000000000000000050d1925303b444c525f6060606060605d5d5e5f5f5f5f5e5d5c5a6060606060605a58534a41362b201408000000000000000000000c1925323f4c5865727f8b98abb5aa9d908477675c5145382c1f13060000000000000000000000000000000000000000000714212d3a46535f697885929fabb4aa968a7d7063574a3d3024170a0000000000000000000000000000000000040f1b27333f49535f69727f8c95a0aba3998f82808c96a0aca0968d80736a5f544a3f34281f1409000000000000000000000000000000000005121f2b3744505b656c6f7274777a7d807a6e6154473b312f3c4855626f7b8895a093867a6d6053473a35414b556875828e9ba8a69a8d8073675a4d4034271a0d0000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c302316090000000000000000000000000000000003101c28343f4a54616e7b87929facac9f92867a6d6154473d3221160c01000000000f1b26313c4754606d7a85929facac9f93877b6e61544a4034281c100400000000000000000815212e3b4854616e7b87949f9f95887c6f6255493c2f221609000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000810161c2023242d2d2d2d2423211c17100800000810171d2123242d2d2d2d2323201c160f0800000000000000000000000000000000000000000000020a11171c23282c2d31343638393939393836342d2c29241e160d040000000000000000070c1012131e202020202020201f1413110d08010000000000000000000000000000000000000000000001080d1113141f202020202020201e1312100c06000000000000000c18232e39434b51535f606060606060595751493f351d140a000314202c37414b53595b606060606060605c5a544b4230261c110604101c28333e485055576060606060606054524c443a3024190d010000010d19242f3a434c51545e60606060606060585650483f33291f12080000010c161f2c35414b53595b606060606060605c53504a42382d22170b000000000000000000000000000000000000000000000000000000000000000000000009141f28343f4a54606a74808d97a0958c7f72695e53463e31281d130700000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000000000000000000000000000000000916222f3c4955626f7c8686868686868686796c605346392d201306000000000000000000000000000000000000000000000000000000000000000005111e2a36414c565e6c6c6c6c6c6c6c6a675f555353524f5960636c6c6c6c6c6c67645c53483c3024180b00000000000000000000091623303c4956636f7c8999a4afac9f9286796d6053473a2d22170b0000000000000000000000000000000000000000000815222e3b4855616e7b8897a2adaea298887b6e6155483b2e22150800000000000000000000000000000000040e1a242b3744505b656e7b86929fa7a89f92867c7984919ea5a89f92877c6f665c50443c31261a0e0500000000000000000000000000000000030f1b27333f49535b60626568686d70736e685e524639292f3c4855626f7b8895a093867a6d6053473a3a45515d677683909da9a5998c7f7266594c3f3326190c0000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c302316090000000000000000000000000000000006121f2c3844505c6673808c99a3afa89b8e8175685e5246392d20130400000000000a15202c3945515d6774818e9ba7afa4998d8073665c5144382c1f150900000000000000000814212e3b4754616e7a8793939393887b6f6255483c2f221509000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000050b1014161720202020171614100b0500000000060c1114171820202020171614100b0500000000000000000000000000000000000000000000000000060b11171c1f2024272a2b2c2c2c2c2b2a2821201d19130c0400000000000000000000000406071113131313131313120706040100000000000000000000000000000000000000000000000000000104060712131313131313131107060300000000000000000007121d273039404546525353535353534c4a463f372d230b0200040f1a252f3941484d4e535353535353534f4d494239301e140a00000b17222c363e44494a535353535353534746413a32281e13080000000008131e28313a41454751535353535353534b4a453f362d20170d00000000040d1a232f3941484d4e535353535353535046443f382f261c11060000000000000000000000000000000000000000000000000000000000000000000000030b17232e38424e58606d7a84919e9f92867b6e615a50433a2f24180d01000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000000000000000000000000000000000916222f3c4955626f7c8893939393939386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000714202d3946525e68767979797979797771675b4f464854606b70797979797979746e64584c4033271a0d010000000000000000000714202d3a4753606d7a86939facaea399897d706353493f33271b0f030000000000000000000000000000000000000004111d2935414c5565717e8b98a9b3ac9f9285786d6053463a2d201307000000000000000000000000000000020c16202a36424d56606c77828f98a3aca0968c8073707d8a939eaaa3999083786d60574d42372b20170d02000000000000000000000000000000000b17222d38414950535558565d616366615e564c41362a2f3c4855626f7b8895a093867a6d6053473e444d57606d7a86929faca9988b7e7165584b3e3225180b0000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c30231609000000000000000000000000000000000713202d3a4653606d7984919eabaca096897d7063564c4135291d1105000000000004111d2935414b55636f7c8995a0acab9e9185796d6053463c31261a0e00000000000000000714212e3a4754616d7a8686868686867b6e6255483b2f221508000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000407090a131313130b0a0804000000000000000005080a0b131313130a0907040000000000000000000000000000000000000000000000000000000000060c101213171a1d1e1f20201f1e1d1b1413110d080100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e272e34383a464646464646463f3e3a352d251c1100000009131d272f373d40424646464646464642413d3730271e0c02000005101a242c33393c3d464646464646463a3935302820160c0200000000010c161f282f35393a45464646464646463e3d3a342d241b0e05000000000008111d272f373d404246464646464646433938332d261d140a0000000000000000000000000000000000000000000000000000000000000000000000000006111c26303d45515d67717e8a949e988f82756c61554b4035291d1104000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000000000000000000000000000000000916222f3c4955626f7c88959f9f9f9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a86868686868683776a5d5144495663707d8686868686868074675a4e4134271b0e010000000000000000000613202c3945515d677784909daab4ab9a8d8073655b5044372b1f140a000000000000000000000000000000000000010c13202c3945515d6775828e9ba8b5a89c8f8275665c5044382b1f120600000000000000000000000000000008131e28323a46525e69717e8b949faaa59e9184796d6b75818e98a2aba0958c7f72695f53463f32291e14080000000000000000000000000000000006111b262f383f4446494b4c5254575954524c443b30252f3c4855626f7b8895a093867a6d605347464f565f69727f8b98a3ada197887c6f6255493c2f2216090000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c3023160900000000000000000000000000000005121e2b37424d5764717d8a97a1adab9e9184786c6053463a3025190d010000000000010d18242f3a4854606b7784919dabada1978a7d7164574d42372b1d1207000000000000000713202d3946525e687679797979797976695f53473a2e211408000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306070a0d10111213131212100e0707040100000000000000000000000000000000000000000000000001040707131313131313130d0c0a0702000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151d23282c2d3939393939393933312e2a231c130a000000020b151d252c313435393939393939393634312c261e150c0000000008111a22282d3031393939393939392e2d29241e160e04000000000000040d161e24292c2d383939393939393932312e29221b1209000000000000000b151d252c31343539393939393939362d2b28221c140b0200000000000000000000000000000000000000000000000000000000000000000000000000000a141e2935414c55616c75828f9893948a7d70675d5145392c201306000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000000000000000000000000000000000916222f3c4955626f7c8895a2acac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a87939393939084776a5d5144495663707c89939393938d8174675a4e4134271b0e0100000000000000000004101d2935404b556773808d9aa9b3ab9e9184786c6053463c2f261b1106000000000000000000000000000000000007131d28333f4a54606d7a86929facb1a7988b7f7265544a3f34281c10030000000000000000000000000000030d1924303a44505a616e7b85929fa6a99e93897d7067616e7b86929fa7a79f92867b6e615a50443b3025190d04000000000000000000000000000000000a141d262d3337393c3f4146474a4d4746413b3229222f3c4855626f7b8895a093867a6d605350535961686e7b85929eaaac9e9285786c605346392d2013060000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c302316090000000000000000000000000000000714212d3a46535f6976828f9ca9afa3998c7f73655b504437281e13080000000000000007131d2c38434f5965727f8c99a3aea99c8f8276695f5347392e23180c0000000000000005111d2a36414c565e6c6c6c6c6c6c6c6c5f574d42372b1e1206000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e221508000000000002080d10121313131313131313070704010000000000000000000000000000000000000000000000000002070b0d0d13131313131313130f0e0c090400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d111314202020202020201a1916130d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f202c2d2d2d2d2d2d2625221e18110a0100000000030b131a202527282d2d2d2d2d2d2d292825211b140c0300000000000810171c2023242d2d2d2d2d2d2d21201d19130c040000000000000000040c13191d20212b2d2d2d2d2d2d2d2524211d1811090000000000000000030b131a202527282d2d2d2d2d2d2d29201f1c17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000020c19242f3a43505a616e7b8686868686847a6d6053473a2d201407000b1825323e4b5865717e8b98a4a69a8d8073675a5a6773808d9aa6a4988b7e7165584b3e3225180b000000000000000000000000000000000000000916222f3c4955626f7c8895a2acac9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a87949f9f9d9084776a5d5144495663707c89969f9f9a8d8174675a4e4134271b0e01000000000000000000010d18242f3d495663707c8997a1adaca196897d7063584e41382d22170f06000000000000000000000000000000071118242f3844505b66717e8b98a2aeaca095887b6e6155483b2e23170b0000000000000000000000000000010b151f2935414c56616c75828f97a2ada2978e81756b605e69727f8c95a0aca2988f82766c62564c41362a1f160c01000000000000000000000000000000020b141b22272b2d2f3035393a3d403b3936302920232f3c4855626f7b8895a093867a6d60545c60636b707a839197a1ada49a8e8175655b5044372b1f12050000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c30231609000000000000000000000000000004101c2834404b55616e7b87939facac9f92867b6e6153493f3327160c0200000000000000010f1b27323d4754616d7a86929facac9f93877b6e61554b4034281c1004000000000000010d1925303a444c525f60606060606055534d453c31261a0e02000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e22150800000000060d14191c1f1f202020202020201413110d080100000000000000000000000000000000000000000001080e1317191a20202020202020201c1b191510090200000000000000000000000000000000000000000000000000010507070b0e101212131312110f0d0a07060400000000000000000000000000000000000000000000000000040c13191d202d2d2d2d2d2d2d2d2625231e19120a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c1013131f202020202020191816120d070000000000000002090f14181b1b202020202020201c1b191510090200000000000000050b10141617202020202020201413110d08020000000000000000000001080d1113141e20202020202020181715110c060000000000000000000002090f14181b1b202020202020201d13120f0b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313e46535f696e7979797979786d675d5145392c201306000b1825323e4b5865717e8b989f9f9a8d8073675a5a6773808d9a9f9f988b7e7165584b3e3225180b000000000000000000000000000000000000000916222f3c4955626f7c88959f9f9f9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1aa9d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e01000000000000000000000713202d3a4653606d7985929eacb2a89c8f82756a5f53493f332721180f0802000000000000000000000003091119232935404b55606c7884919daab3a99d908477695f53463a2d1c1106000000000000000000000000000007121d27313945525d68717e8a939ea9a69f92857a6d615957606d7883909aa4aa9f948b7e71685e52463e31281e130800000000000000000000000000000000020a11171b1f202224292d2e30332e2d2a25292c2e343c4855626f7b8895a093867a6d6063666d70767d859195a0a9a89f93877c6f6253493f33271b0f030000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c30231609000000000000000000000000000006131f2c3845515c6773808d9aa4afa99c8f8275695e5241382d2217040000000000000000000a16202d3946525e6875828e9ba8afa49a8d8073675c5145382c1f150a0000000000000008131e28323a4146535353535353534847423c332b23190f04000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e2215080000000810181f25292b2c2d2d2d2d2d2d2d2d201d19130c0400000000000000000000000000000000000000020a12191f2326272d2d2d2d2d2d2d2d292825211b140c030000000000000000000000000000000000000000000003080d111314181b1d1e1f20201f1e1c1a171413100c0701000000000000000000000000000000000000000000040d161e24292c393939393939393933322f2a241c130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607131313131313130c0c0906010000000000000000000004080c0e0f131313131313130f0f0c0904000000000000000000000004080a0a131313131313130707050100000000000000000000000000000104060712131313131313130b0b0905010000000000000000000000000004080c0e0f13131313131313100606030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a36424d575f616c6c6c6c6c6b605d554b4035291d1104000b1825323e4b5865717e8b939393938d8073675a5a6773808d939393938b7e7165584b3e3225180b000000000000000000000000000000000000000916222f3c4955626f7c8893939393939386796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1a99d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e010000000000000000000006121f2c3844505c6673808d9aa4afaa9e94887c6f655b50443d332a2219140e09060400000100000406090e141a232b353d45515d67717e8a95a0acada2978b7e7265574d42362a1e0a0000000000000000000000000000030c18242f39434f59606d7a85919ea5ab9f948b7e71685e52505c666f7c87939fa9a69f92857a6e61594f433a2f24190c030000000000000000000000000000000000060b0f121316191d2021242621272c2f35393a3f444855626f7b8895a093867a6d6d7074797d828a9297a0a7aaa1968e81756a5f5341382d22170b000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c3023160900000000000000000000000000000713202d3a4653606d7985929eacada1978a7d7064564d422f261b110600000000000000000005111d2a36414c5663707d8a96a1adac9e9285796d6053463c31261b0f01000000000007131e29333d454c5052535353535353534948443d352b21160b000004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e221508000006101a222a3035383939393939393939392c29241e160d040000000000000000000000000000000000000a141c242b2f333439393939393939393534312c261e150c0200000000000000000000000000000000000000060b0f13191d20212427292b2c2c2c2c2b292724201f1d18120f0a04000000000000000000000000000000000000010c1620282f35394646464646464646403f3b352e251c1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d1a26313b454d53555f606060605e53514b433a2f24180d01000b1825323e4b5865717e8686868686868073675a5a6773808686868686867e7165584b3e3225180b000000000000000000000000000000000000000916222f3c4955626f7c8686868686868686796c605346392d20130600000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a87949c9c9c9084776a5d5144495663707c89969c9c9a8d8174675a4e4134271b0e010000000000000000000003101c28343f4a54616e7b87939fabb0a69c9083776c60584e453c342a251e1a1312100c070e070c1013131a1f262a353d47505a606d7984919ea7b1a99f9285796d6053473b31261a0e00000000000000000000000000000a151e2935404b55606b74818e97a1ada3999083776c60564c4a54606b74818e97a1ada2978e81756c61554c4135291e150b00000000000000000000000000000000000000030506080d11131821272c33383a4145474a505356626f7b8895a093867976797d81858a8f949ea1a9a9a29891847a6e61584e432f261b1106000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c302316090000000000000000000000000006121f2b37434e5864717e8a97a1adac9e9184796d6053463b3020140a00000000000000000000010d1925303a4653606c7884919eacada1978a7e7164584e43372b1d120700000000000c18242f3a454f575c5e6060606060606056544f473d32271b10040004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e22150800020d18222c343b414446464646464646464639352f2820160c010000000000000000000000000000000006101c262e363b3f40464646464646464642413d3730271e14090000000000000000000000000000000000020a11171b1f252a2d2e3134363839393938383633302d2c29241d1b150e09030000000000000000000000000000000008131e28323a414553535353535353534d4b4740372e24190d0200000000000000000000000000000000000000000000000000000000000000000000000000000002080d10121313131313131313131313131313131313131313131313121211100e0b090706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306131313131313131308070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333b4246485253535353514745403a31281d130700000b1724313d4a56626c71797979797979736e645858646e73797979797979716c62564a3d3124170b000000000000000000000000000000000000000815212e3b47535f6a767979797979797979766c5f5346392d20130600000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a878f8f8f8f8f84776a5d5144495663707c898f8f8f8f8d8174675a4e4134271b0e0100000000000000000000000c17232e3846535f6975828e99a3afab9f948b7f726a60574e463e36302a25201f1c181b1a1b181c1f20262b31363f474f59616c74808d96a1adada2978d8073675d5145392a1f14090000000000000000000000000006111c26303845515d67707d89939da9a89f92877c6f655b5044424f59616d7a85929ea6a99e938a7d70675d51453d30271d1207000000000000000000000000000000000000000000050d161d242932383d44484c5154545c6063666f7b8895a2998c7f8285898d91979c9fa6aca69f9792867c6f685e52463c311d140a00000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c30231609000000000000000000000000000815212e3a47535f6a7683909ca9afa49a8d8073665c5044382c1f1202000000000000000000000008131f2b3844505b6673808c9aa4afa99c9083766a5f5347392f24180d01000000030f1b2834404c5761686b6c6c6c6c6c6c6c6360594f44382c2013070004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e2215080008141f2a343e464d5152535353535353535345413a32281e1308000000000000000000000000000000020b18222e3840474c4d53535353535353534f4d49423930261b1004000000000000000000000000000000060b141b22272b3036393a3e414345454646454442403d3a38352f2b27201a140d050000000000000000000000000000010d19242f3a444c525f606060606060605957524940352a1e13070000000000000000000000000000000000000000000000000000000000000000000000000000060d14191c1f1f202020202020202020202020202020202020202020201f1e1e1c1a18161413100c070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c101220202020202020201514120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d17212931363a3b4646464646453a39352f281f160c0100000915212e3a45505a62656c6c6c6c6c6c67645c52525c64676c6c6c6c6c6c65625a50453a2e2115090000000000000000000000000000000000000006131f2b37434e585f626c6c6c6c6c6c6c6c6c645a4f43372b1e120500000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8283838383838174675b4e414855626f7c8283838383827f7265584c3f3225190c00000000000000000000000006111c2a36424d57626e7b87929fa8b0a69f92877c6f695f585046413b36312d2c282327272723282c2d31373b42465159606b717e8a929da8b1a79f92857a6d61554b4035291d1004000000000000000000000000020b17232e38424e58606d7984919ea5aca1968d80736a5f53493f3d46525e68717e8b949faba59e91847a6d60594f43392e23180b0200000000000000000000000000000000000000050f171f282f353d43484f54555d6064666d6f73767c8895a29c918c8f92989a9ea1a9aca8a09d948f857d6f6a60564c41342a200b0200000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c3023160900000000000000000000000004101d2935404b55626f7c88949fabac9f93877b6e61544a3f34281c10030000000000000000000000030f1c28333f4a54616e7b87939facab9f94887c6f62554b4035291d100400000005111e2b3744505c68737879797979797979706b6054483b2f2216090004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f12050b1724313e4a5764717d8a97a4aea194887b6e6155483b2e221508000d1925303b4650585d5f606060606060605f524c443a2f24190d0100000000000000000000000000000a141d2a34404a52585a60606060606060605c59544b42372c21150900000000000000000000000000020a11171d262d33373a4146474b4e505152535352514f4d4a4745403937322a251f170f080000000000000000000000000004111d2935414c565d6c6c6c6c6c6c6c6c66635b52473b2f23160a000000000000000000000000000000000000000000000000000000000000000000000000000810181f25292b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2a29272523201f1c1813110d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11171c1f2d2d2d2d2d2d2d2d21211e1a140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f171f262a2d2e3939393939382d2c29241d160d0400000005111d29343f485056586060606060605a58524a4a52585a606060606060585650483f34291d110500000000000000000000000000000000000000030f1b26323c464e535560606060606060605f5a52493e33271b0f0200000000000000000000000000000000000000000000000000000000000000000713202c3945525d686d767676767676746f64584c4047535f6a6f767676767676726d62564a3e3125180b000000000000000000000000000e1a26313b47535f6974808d96a0abaea39991857b6e6a615a524c46423c3a38342e3434342e34383a3c42474d535b626b707d86929fa4aeaaa0958b7f72685e5243392f24180d010000000000000000000000000a141d28343f4a54606a73808d96a0aca59e9184796d60584e413835414c56606c77829099a3ada1968d80746b60554b4034281d140a000000000000000000000000000000000000050e172129313940454f54596063676d7175797c808387929faca39c999c9fa2aaabaca49f9c96918a827b6f6b60584e443b3022180e0000000000000000000000000003101d293643505c6976838f9ca9a296897c6f6356493c302316090000000000000000000000000613202c3945515d6774808d9aa6b0a99c8f8276695f5342382e23170c000000000000000000000000000b17222d3846535e6976828f9ca9b0a69a8d8074675d5145392c20150a00000005121f2b3845525e6b7885868686868686867d706356493d3023160a0004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e5245382b1f07000b1724313e4a5764717d8a97a4aea194887b6e6155483b2e22150800101c2935414d5862696c6c6c6c6c6c6c6c6c5d564c4135291d11040000000000000000000000000006111c262f3c46525c64676c6c6c6c6c6c6c6c68655d54493d3125190c000000000000000000000000030b141b22272f383f44464c5254575a5c5e5f5f5f5f5e5c5a5753514b47433d363129211a120a0100000000000000000000000713202c3945525d687679797979797979736d63574b3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000006101a222a30353839393939393939393939393939393939393939393939393838373634322f2d2c2923201d19130f0a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151c23282c39393939393939392e2d2a251f170f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d141a1e21222c2d2d2d2d2b20201d18130c0400000000010c18222d363f454a4b5353535353534d4c474040474c4d5353535353534b4a453f362d22180c0100000000000000000000000000000000000000000a15202a343c4347495353535353535353534f4940372c21160a00000000000000000000000000000000000000000000000000000000000000000004111d2935414c565d6069696969696967645c53483c434e585f6269696969696965625b51463a2e2216090000000000000000000000000009141f2b37424d57606d79849199a4afaba19791847c706c615e56534d494644404141414141404546494d53575f616d727d869298a2aeaca2989083786c60564c4131281d120700000000000000000000000006111b262f3844505c666f7c87929fa8aa9e938a7d70675d51463c2f303a44505b656f7c87929fa8a89f93887d6f675c51453c2f261c110600000000000000000000000000000000030c172029333b434b515960636b70757a7e8285898c909299a3afada7a5a9aaaba39f9c9a93908a847e766e6960594f463c32291e10060000000000000000000003070909101d293643505c6976838f9ca9a296897c6f6356493c302316090000000000000000000000000714202d3a4753606d7985929fabada2978a7e7164574d4230261c11060000000000000000000000000006111c2a36424d5764717e8a97a1adab9f9285796d6053473c32271b0f01000005121f2b3845525e6b7885919393939393897c706356493d3023160a0004111e2b3744515e6a7784919daaa89b8e8275685b4f4235281c0f020e1a2734414d5a6774808d9aa7ab9e9185786b5e52452f24180c000b1724313e4a5764717d8a97a4aea194887b6e6155483b2e22150800121f2b3844515d6974797979797979797976685d5245392c201307000000000000000000000000000b17222d38424e58646e737979797979797979756f65594d4134281b0e0200000000000000000000030c151d262d333d41495053565e616467696b6c6c6c6b6b696663605d55544e46423b332c241c130a01000000000000000000000714212d3a4754606d7a86868686868686807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000000000000020d18222c343b4144464646464646464646464646464646464646464646464645454443413e3c3a38342f2d29241e1a150f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e262e343846464646464646463b3a36312921170d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214151f202020201e1413110d070100000000000006111b242d343a3d3e464646464646403f3b36363b3f404646464646463e3d3a342d241b1106000000000000000000000000000000000000000000040e18222a32373b3c464646464646464646433e372e251b1005000000000000000000000000000000000000000000000000000000000000000000010d1924303a444c52545c5c5c5c5c5c5b58534a41363c464e53555c5c5c5c5c5c585651493f34291e120600000000000000000000000000030e1a26313c45515d676f7d87939fa4aea9a19691867e756e68615e575653514a4e4e4d4e4e4b515356575f62696e767f879298a2aaafa49a92867c6f665b50443a301f160c010000000000000000000000000b17222d38414d57606d78839099a3aea2988e81756b61554b40342a27333f49535f6a73808d96a1ada49a9184796d60584e42382d22170b030000000000000000000000000000000b151e29333b454d555d606b6f767d81868a8e9298999d9fa3abb5aca6a8a09e9a9992908c87837e78716c615e574f473d342b20170d000000000000000000040a0f131516191c28333f4a546a7683909da9a296897c6f6356493c30231609000000000000000000000006131f2b37434e5865717e8b97a2adab9f9285796d6053473b3120150a0000000000000000000000000000000e1a25313b4653606d7985929eabaea2988b7e7165584e43372b1e1308000005121f2b3845525e6b7885919e9f9f9f96897c706356493d3023160a0004111e2b3744515e6a7784919daaa89b8f8275685c4f4235291c08000e1a2734414d5a6774808d9aa7ab9e9285786b554b4035291d10040b1724313e4a5764717d8a97a4aea194887b6e6155483b2e22150800131f2c3946525f6c7986868686868686867a6d6054473a2d211407000000000000000000000000030f1c28333f4a545f6a738086868686868686868275685c4f4235291c0f02000000000000000000020c151e272f383f444e535b6063686d7174767878797978777573706d67626058534d453e362e251c130a000000000000000000000714212d3a4754606d7a8793939393938c807366594d4033261a0d000000000000000000000000000000000000000000000000000000000000000000000008141f2a343e464d5152535353535353535353535353535353535353535353535251514f4d4b494745403a3935302b26201b150c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2630383f4453535353535353534846423b33291f14090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507081313131313120706040100000000000000000009121b22292e313239393939393934332f2b2b2f333439393939393932312e29221b1209000000000000000000000000000000000000000000000006101820262b2e2f39393939393939393937332c251c1309000000000000000000000000000000000000000000000000000000000000000000000008131e28323a4145475050505050504e4c4841382f343c4347485050505050504c4a463f372d23180d01000000000000000000000000000009151f2935404b55606b727f8b929da4ada9a198928a817a746e696562605c545b5a5a5a5b545c606266696e747b828b9299a2aaaea39f93887e706a5f544a3f32291e0d04000000000000000000000000040f1b27333f49535f69727f8c95a0aba79f92857b6e61594f43392f22222d38414e58606d7984919ea6aca0958c80736a5f544a3f33281f1409000000000000000000000000000007121c27303b454d575e676d747c83898e92989b9fa2aaa9a8aab0aca29a9796918e8a86837f7b76716d66615a524d453d352b22190e050000000000000000070f161b1f222325252b3844505b667784909daaa296897c6f6356493c3023160900000000000000000000000815222e3b4754606a7783909da9b1a79a8d8074675c5145382c1f130300000000000000000000000000000009141f2c3845515c6774808d9aa7b1aa9d9083776a6054473a2f24190d010005121f2b3845525e6b7885919eabaca396897c706356493d3023160a0004111e2b3744515e6a7784919daaa99c8f8376695c50433025190e020e1a2734414d5a6774808d9aa7ac9f928679675d5145392c1f13060b1724313e4a5764717d8a97a4aea194887b6e6155483b2e22150800131f2c3946525f6c7985929393939393877a6d6054473a2d2114070000000000000000000000030d1a232b3844505b666f7c8792939393939392857b6e6154473b2e211408000000000000000000000a141e2730394149505860656c70767a7e818384858686858482807d79746f6a615e57504840372e251c12090000000000000000000714212d3a4754606d7a87939f9f9f998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000000000d1925303b4650585d5f6060606060606060606060606060606060606060605f5f5e5d5c5a585653514b4746413a37312b262018120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e38424a505f606060606060605f534d453b31251a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000911181d2124252d2d2d2d2d2d2726231f1f2326272d2d2d2d2d2d2524211d18110900000000000000000000000000000000000000000000000000060e151b1f21222d2d2d2d2d2d2d2d2d2b27211b130a010000000000000000000000000000000000000000000000000000000000000000000000020c1620283035393a43434343434341403c362f262a32373b3c4343434343433f3e3a342d251b1107000000000000000000000000000000030d18242f3a434f59626d74808d929ca3adaaa29f938e86807b76726f6d6669686767676869666d6f72777b81868f949fa3ababa39f918c7f726c61584e42382d20170d000000000000000000000000040e1a242b3744505b656e7b86929fa7ab9f958b7f72695e52473e31271d1b262f3c45515d67707d8a949eaaa89f92877c6f665b50443b31251a0e04000000000000000000000000000c18232e39424d575e696e79818990959b9fa3aaaaa8a19e9c9ea6a69a908a8784817d7a76726e6964605c545046423b332b23191007000000000000000007101921272c2f30323230394653606c7985929faca295887c6f6255493c2f2216090000000000000000000004111d2935414c56626f7c88959fabab9f95887c6f62554b4034291c100400000000000000000000000000000004101c2834404b55626f7c88959fabab9f95887c6f62564c4135291d11040005121f2b3845525e6b7885919eabaca396897c706356493d3023160a0004111e2b3744515e6a7784919daaaa9d9083776a564c41362a1e11050e1a2734414d5a6774808d9aa7afa399867a6d6053473a2d2014070b1724313e4a5764717d8a97a4aea194887b6e6155483b2e22150800131f2c3946525f6c7985929f9f9f9f93877a6d6054473a2d21140700000000000000000000010b151f2a36414c56606c78839099a39faa9e948b7e71685e5246392d20140700000000000000000006111c263039424a535b606a6f787d82868a8d8f9192929292918f8d8a86817c756e69615a524a40372e241b0f0600000000000000000714212d3a4754606d7a8793a0aca6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000000000000101c2935414d5862696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6b6a69676562605c5554524c47433c373228231d150c0700000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c5e574d42362a1e12050000000000000000000000000001070b0f111213131313131313080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c111517182020202020201a1917131317191a202020202020181715110c06000000000000000000000000000000000000000000000000000000040a0f1315162020202020202020201e1b1610090100000000000000000000000000000000000000000000000000000000000000000000000000040e161e24292c2d3636363636363433302b251d20262b2e2f36363636363632312e29231b1309000000000000000000000000000000000007131d28313d47515b606c77808c919ea1a9aea59e98928d87837f7c79777674747474747677797c7f83888e92999fa6aea8a199928b7f736d635a50463c2f261c0e050000000000000000000000020c16202a36424d57606c77829098a3aea3999083786c60564d42352c1f15141d2935404b55616c75828f98a2aea3999083786c60574d42362a20160c02000000000000000000000004101c2834404a545e696e7b838e939d9fa7aca7a09d9996918f949ea4978a7e7b7774716d6865615e5753504a423e363029211911070000000000000000040f19232b32383b3c3f3f3f424b55626e7b8898a2aea894877b6e6154483b2e211508000000000000000000000613202c3945525d6874818e9aa79faa9d9083766a5f5343392f23180c00000000000000000000000000000000000c18232e3947535f6a7683909daa9fa79a8e8174685d5245392c2013060005121f2b3845525e6b7885919e9f9f9f96897c706356493d3023160a0004111e2b3744515e6a7784919daaab9e918578685e5246392d2014070e1b2834414e5b6774818e9aa7b5ab94887b6e6155483b2e2215090b1825313e4b5864717e8b97a4aea194887b6e6155483b2e22150800131f2c3946525f6c7985929facaca093877a6d6054473a2d2114070000000000000000000007121d27313946525e68727f8b959fabaea2988f82766c62564d41362a1e11050000000000000000030d17232e38424a545c656c737c838a8f93999a9c9e9f9f9f9e9e9c9998928e89827b716c635c524940362d22180b02000000000000000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000000000000121f2b3844515d697479797979797979797979797979797979797979797979797878777674716f6d6764615d56534e47433c342e271e191008000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c66767979797979797976695e53463a2d211407000000000000000000000000050c12171b1d1e202020202020201514120e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105090b0b1313131313130d0d0b07070b0d0d1313131313130b0b09050100000000000000000000000000000000000000000000000000000000000003060809131313131313131313120f0a0500000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191d2021292929292929282724201a13151b1f21222929292929292525221e181109010000000000000000000000000000000000010c161f2b353f44505b656c747f8a92979ea6acaaa29f9a93908c898684828181808181828486898c90959a9fa3ababa49f9691877e736d635b51473e342a1d140a00000000000000000000000008131e28323a46525e69727e8b949faaa89f92877c6f665b50443b30231a0d0b18242f3943505a616e7b86929fa8ab9f958b7f72695e53463e32281e1308000000000000000000000006121f2c3844515c666e7b8490959da5aba49f9b95908c8884828f9ca09386796e696764605d5654534d46443f38302a251f170f070000000000000000000a16212b353d4348494c4c4c4d525d67727f8c99aaaca096867a6d6053473a2d201407000000000000000000000714212d3a4754606d7a869293939393988b7e7165584e4331271d1207000000000000000000000000000000000007121d2b37434e5865717e8b989393939392867a6d6054473a2d2114070005121f2b3845525e6b7885919393939393897c706356493d3023160a0004111e2b3744515e6a7784919daaada197877a6e6154473b2e23180b0f1b2835424e5b6875818e9ba8b0a3978a7d7064574a3d31261a0d0c1825323f4b5865727e8b98a5aea194887b6e6155483b2e22150800131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000000000020b18242f39434f59616e7a85929fa7b0a69f92867b6e615a50443b3025190e0200000000000000010b151f28343f4a545c666d77808890959c9fa4aba8a5a3a2a2a3a5a8aaa39f9b938f867e736e635b52483e342a1d140a000000000000000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c79868686868686868686868686868686868686868686868685848482807e7c7975716d68625f58534e454039302a221a1109000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d78868686868686867b6e6154483b2e2115080000000000000000000000060f161d23272a2b2d2d2d2d2d2d2d22211e1a140e060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1113141d1d1d1d1d1d1b1a18140f080a0f1215151d1d1d1d1d1d191816120d070000000000000000000000000000000000000000040d192327333f49535b606d737d858f949da0a7acaca49f9c989892918f8e8d8d8d8e8f919298999d9fa7acaca69f99938d847d716c635b51493f352c22180b020000000000000000000000030d1924303a44505a616e7b85929fa6ada1968d80746a5f544a3f32291f110807121d28313e46535f69737f8c95a0aca79f92867b6e615a50443a3025190d0400000000000000000005111e2a36414c56606d78829096a0a7a8a099938e88837f7b787c8895a093867a6d60565754524c4846423b38342e261e1a140d05020000000000000000030f1b27323d474f5456585859575e616d7984919eabaa9e918477675d5145392c201306000000000000000000000c1925323f4c5865727f8686868686868686796d6054473c3121150b010000000000000000000000000000000000000f1b26313c4754606d7986868686868686867f7265584b3f3225180c0005121f2b3845525e6b7885868686868686867d706356493d3023160a0004111e2b3744515e6a7784919daab3a9968a7d7063554b4034281d14111c2935424f5c6875828f9ba8b3a6998c807366584e43372b1f16111926323f4c5965727f8c98a5b5ab94877a6e6154473b2e21140800131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000a141d2935404b55606b75818e97a2adaa9f948b7e72695e52483e32291f1408000000000000000007121d27313944505c666d78818c939a9fa7a9a29f9b9896959596989b9fa2aaa59e98928a80736e635a50463c2f261b11060000000000000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929393939393939393939393939393939393939399929291908f8d8b8985827e7a756f6a625f58514b433c342c231b12090000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79869393939393877b6e6154483b2e21150800000000000000000000050f1820282f333738393939393939392e2d2b261f180f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020608080b0e1011121313121211100d0b0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000010406070a0e10111213131212100e0b080806020000000000000000000000000000000000000000000000000000000000000000000000010407071010101010100e0d0b08030000030608091010101010100c0b09060100000000000000000000000000000000000000000000071017222d384149505b636b707b828990959c9fa4acaca9aaa39f9d9c9b9a9a9a9b9c9d9fa3aaaaababa39f9b948f878079706b625a514940372e231a10060000000000000000000000010b151f2935414c56616c75828f98a2aea69e9184796d60584e42382d20170d00010c161f2a36424d57606d7984919da5aea2988f82756c61564c4135291f160c0100000000000000000713202d3946525e6873808d949fa8a7a0969187817c77726e6f7b8895a093867a6d60534a4745413b3a36312b2823201f1b1714110e090200000000000007131f2c38434f59606365656667696e75808d96a1aca89b8e817568554b4035291d1104000000000000000000000b1824313e4a56626d7279797979797979796d675d5145392c201303000000000000000000000000000000000000000a15202c3945515d676d7979797979797979726d62564a3d3124180b0005111e2b3744505c68737879797979797979706b6054483b2f2216090004111e2b3744515e6a7784919daab4a79a8d8074675c51453a2f26201d1e2b37424d576a7783909daab6a99d9083766a5f53473c3128201e1d27333f49536774808d9aa7aea399877a6d6054473a2d21140700131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000000006111b262f3845515d67707d89939ea9aea2988f82776c60574d42362d20170d0200000000000000000c18232f39434f59606d78818e939fa4aaa29f97928e8b898888898b8e92989fa3aaa29f928c80736c61584e41382d22170b0000000000000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d0604020000000000000000000000000000020506060503000000000000000000000000131f2c3946525f6c7985929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa39f9e9e9d9c9a9898928f8b86817c756f6a605c554e463e352d241b120900000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939f9f9f94877b6e6154483b2e211508000000000000000000010c16202a323a3f4345464646464646463b3a37312a21180e0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205090e121415181b1d1e1f20201f1f1e1c1a181514120e090502000000000000000000000000000000000000000000000000000000000000000000000001080d111314171a1c1e1f20201f1e1d1b181514120e09040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f383f44515961696e757d83898f939a9c9fa2aaa7a8aaa9a7a7a7a7a7a9a9a8a6a9a29e9b99928e88827c746d676059504840372e251c110800000000000000000000000007121d27313945525d68717e8a939eaaaa9e948a7d70675d51463c2f261c0e050000040d1a26313b45515c66707d89939ea9aa9e948a7e71685e52463d31281d120700000000000000000714212e3a4754616d7a86929fa6aaa09590847c756f6a66626f7b8895a093867a6d6053473a3935302d2e3633312e2d2b2722201e19140d0500000000000915222f3b4854606b6f72727273767b818d929da8aca1968a7d7064574a3d2f24180d01000000000000000000000915222e3a46515b62656c6c6c6c6c6c6c6c605d554b4135291d11040000000000000000000000000000000000000004111d2935414b555d606c6c6c6c6c6c6c6c65625b51463a2e22150900030f1b2834404c5761686b6c6c6c6c6c6c6c6360594f44382c2013070004111e2b3744515e6a7784919daab7ab9f9285796d60564c42382f2c292a2d3a47535f697885929fabb8ab9f95887b6e62584e4339312d2a2a2d3744505b6576828f9ca9ac9f928679685d5245392c20130600131f2c3946525f6c7985929facada093877a6d6054473a2d21140700000000000000000b17222d38414e58606d7984919ea5afa79f92867b6e655b50453b30241b0e05000000000000000004101c2934404b55606b73808d939ea5a7a098928c85817e7c7c7c7d7f82868d9299a1a8a49c928b7e716a5f53493f33271c110600000000000714212d3a4754606d7a8793a0ada6998c807366594d4033261a1312110f0b0706040100000000000306070b0f11131312100d0a09070400000000000000131f2c3946525f6c7985929facacacada7a5a5a5a5a5a5a5a5a5a5a5a5a5a5a6a6a7aaa9a7aaa29f9b99928e87827c736d675f584f473f362d241b1007000000000000000000000000000000000000000606060606060606060606060606060606060713202d3a4653606d798693a0aca194877b6e6154483b2e21150800000000000000000007121d28323c444b5051535353535353534846423c332a1f140900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080e11151a1e21222528292b2c2c2c2c2b2b29272522211e1a14120e090200000000000000000000000000000000000000000000000000000000000000050b1013191d20212427292b2c2c2c2c2b2a282522211e1a15110d070100000000000000000000000000000000000000000000000000000000000000000000000406070a0d0f11121313131212100e0c09060603000000000000000000000000000000000000000000000000000000000000000a141d262d3340474f575e616b70777d82878b8f9298989a9b9d9e9e9f9f9f9e9d9d9b999797928e8a86817c766f6a605d554f473e362e251c130a000000000000000000000000030c18242f39434f59606d7a85919ea6aea2988f82756c61554b40342a1d140a0000000009141f2834404b54606b75818e97a2ada69e92857a6d61594f43392f24180c0300000000000004111d2935414c566673808c98a2aea29890837a6f6a625f58626f7b8895a093867a6d6053473a2d30363a3b43403e3b3937332d2d2a251f170e0500000000091623303c4956636f7d7f7f7f8083868e939da4aea59e9184786d6053463a2d201307000000000000000000000006121e29343f49515658606060606060605f54514b433a2f24180d0100000000000000000000000000000000000000010d18242f3a434b51545f60606060606060585651493f34291d120600000c18242f3a454f575c5e6060606060606056544f473d32271b10040004111e2b3744515e6a7784919daab7ada2978b7e71685e544a423c3935363a3f4a54616e7b8898a2aeb5afa79a8d80746a5f554b433d393636393d4653606c7985919eabaa9e9184776b564c4135291d110400131f2c3946525f6c7985929facada093877a6d6054473a2d21140700000000000000030f1b27333f49535f6a73808d96a0acaa9f958c7f72695f53493f33291f120900000000000000000006131f2c3845515c67707d88939fa5a7a09590857f797572706f6f7072757a80869196a1a9a49f92867c6e655b5044382e23170c00000000000714212d3a4754606d7a8793a0ada6998c807366594d4033261f201f1e1b181413110d080100060b101213171c1e1f201e1d1a171613100b050000000000131f2c3946525f6c7985929facb8ada39c9898989898989898989898989898999a9b9d9fa3aaaaacaba39f9a938f8780796f6a615950483f362d22190f050000000000000000000000000000000306071313131313131313131313131313131313131313202d3a4653606d798693a0aca194877b6e6154483b2e2115080906010000000000000b17232f3a444e565c5e6060606060606055534d453c31261a0e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d14191e20262b2e2f323436383939393938373634322e2d2b26201e1a140e0902000000000000000000000000000000000000000000000000000000040a0f161c1e24292c2d3134363839393939383634322e2d2b26201d18130c060000000000000000000000000000000000000000000000000000000000000001070c10131416191c1d1f1f20201f1e1d1b191613120f0b060000000000000000000000000000000000000000000000000000000000020b141b2227353e454d525960636b70757b7e8285888b8d8f9091929292929191908e8c8a8885817e7a746f6a626058514b433d352d241c130a010000000000000000000000000b151e2935404b55606b74818e97a1ada79f92867b6e615a50433a2f22190b0200000000030c18232e39424f59616e7a85929fa7ada1978e81746b60554b4035291e150a0000000000000713202c3945525d687783909daaab9f92857b6e6860585355626f7b8895a093867a6d6053473a333b4246474f4d4a4846443f3b3a36302920170d020000000e1a2734414d5a6774808b8b8c8d8f92999ea5aca59e938a7e71665c5044382b1f12060000000000000000000000010d18232d373f464a4c53535353535353524745413a31281d130700000000000000000000000000000000000000000007131d28313a41454752535353535353534b4a463f372d23180d01000007131e29333d454c5052535353535353534948443d352b21160b000004111e2b3744515e6a7784919daab1a7a09d92857a6d665b544e474541424648505b66727f8c98aab4aba49f9d92877c6f675d554f4746414146474e58626f7c8997a1ada99c8f8276695c4f432f24190d0100131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000030c19232b3744505b656e7c87929fa8aea3989083786c60574d41382d21170d00000000000000000004111d2935414c55606d7984919aa4a9a09590837b726d67656362626365686d737c849197a1aba2989083786c60544a3f34281c1003000000000714212d3a4754606d7a8793a0ada6998c807366594d40332b2c2c2c2b282521201d19130d0a11171c1f2024282b2c2c2b2a272322201c160f0800000000131f2c3946525f6c7985929facb8a79c918c8b8b8b8b8b8b8b8b8b8b8b8b8b8c8d8e909298999da0a7aaaca49f99928d837c706b625a50483e342b21170d03000000000000000000000000060b1012132020202020202020202020202020202020202020202d3a4653606d798693a0aca194877b6e6154483b2e21191815120d0600000000000f1b27333f4b5660686b6c6c6c6c6c6c6c6c5f574d42372b1e12050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191f252a2d31373a3b3e41434445464645454443403e3b3a37312d2a251f1a140d0500000000000000000000000000000000000000000000000000060b151b21272c2f35393a3d414344454646454543413e3b3a37312c29241d17110a03000000000000000000000000000000000000000000000000000000040a0f12181c1f202326282a2b2c2c2c2c2b2a282523201f1c17110f0a03000000000000000000000000000000000000000000000000000000020a1117232c333b42464f54596063696e7276797c7e808283848585868585848382807d7b7975716d68625f58544e45403a312b231b120a0100000000000000000000000007121c27303945515d67707d89939da9aba0958c7f72695e53483e31281d100700060000000007121d27303d46525e68727f8b959faba99e93897d70675d51453d30261c110600000000000714212d3a4754606d7a86939facaa998c8073695e564e4855626f7b8895a093867a6d6053473a3b454d52545c5a57555350494746423b32291f14090000000e1a2734414d5a6774808d98999a9c9fa3aba8a19e938e81756c61544a3f34281c100300000000000000000000000006111b252d343a3e3f46464646464646463a39352f281f160c01000000000000000000000000000000000000000000010c161f282f35393a46464646464646463f3d3a342d251b1106000000010c17212b333a404445464646464646463d3b38322b23190f04000004111e2b3744515e6a7784919daaaca09590958e81786c665f5854524c4d53555a606c7883909daaafa4999390959083796d67605954524c4c525458606a74818e9aa9b3aa998d8073665a4d4033271a080000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000b151e2a36414c56606c77829099a3aea79f92867b6e665b50453b2f261b0f050000000000000000000613202c3945515d67737f8c96a1aca29790837a6e69605d5556555556565d606a6f7b859199a3aa9f948b7e71665c5044382c1f1509000000000714212d3a4754606d7a8793a0ada6998c807366594d4036383939393735322d2c29241e19141c23282b2d3135383939383633302f2c2721191108000000131f2c3946525f6c7985929facb2a5988c7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f80818386888c91959c9ea6acaba39f9591867d716c625a50463d33291f140900000000000000000000020a11171c1f202c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2d3a4653606d798693a0aca194877b6e6154483b2e2c2524221e18110901000000111d2a3743505c6872787979797979797976695f53463a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080e161e25293036393c4247484b4e50515253535252514f4d4b4846423c3a36302a251f170f0800000000000000000000000000000000000000000000020a111720262b33383a4145474a4d4f515253535251504e4b4847423c39352f28231c150c05000000000000000000000000000000000000000000000000040a0f161b1d23292c2d303335373839393939383635322f2d2b28221c1b150e090300000000000000000000000000000000000000000000000000000006111a202930363d44484f54565e6165666d6f7174757778787979787877767573716f6d6664605d56534e47433d352f281f19110900000000000000000000000000000c18232e39424e58606d7984919ea5afa4999083786d60574d42362c1f160c1313130c060603000b151e2a36414c56606c78839099a4afa59e9184796d60584e42382e23170c00000000000916232f3c4956626f7c8999a4aea298887b6e62574d444855626f7b8895a093867a6d6053473a424d575e6169666461605b5354524d443b3025190e0200000e1a2734414d5a6774808d9a9f9fa29f9e9d9a96918b81786d605a5042382e23170b000000000000000000000000000009131b23292e313239393939393939392d2c29241d160d040000000000000000000000000000000000000000000000040d161d24292c2d393939393939393932312e29231b13090000000000050f1821292f34373839393939393939302f2c272119110700000004111e2b3744515e6a7784919daaaa9d908490938e81786e6a64605d56575f61646c727f8b95a0acac9f93878390958f82796f6b64615e56565e61646a6f7c87929facaea298897d7063564a3d3023170a0000131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000007121d27303946525e68717e8b949fababa0958c7f726a5f544a3f332a1d140a000000000000000000000714212d3a4754606d7a85929fa8a89f92857b6e685e57514b4949494a4c52585f696f7d87929faaa69e9184786d6053463c31261a0e020000000714212d3a4754606d7a8793a0ada6998c807366594d40434445464544423e3a39352f2a251e262e34383a3e424446464543403d3c38332b23190f050000131f2c3946525f6c7985929facada093877a7272727272727272727272727273737477797c8084898f949da0a7afa7a09892877e716c61584e453b30251a0d040000000000000000020c141c23282b2d393939393939393939393939393939393939393939393a4653606d798693a0aca194877b6e6154483b393932312e29231b1309000000121e2b3845515e6b7884868686868686867b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a121a202830353b4146474e5355585b5c5e5f5f5f5f5e5e5c5a5855534d4846423b363029211a120a0200000000000000000000000000000000000000030b141b222732373d44484c5254575a5c5e5f5f5f5f5e5d5b5855534d4745413a342e261e170f0700000000000000000000000000000000000000000000060b151b21272c2f34383a3d40424445464646454543413f3c3938332d2b26201a150b06000000000000000000000000000000000000000000000000000000080e171f252a33384851595e6060605c60626567686a6b6b6c6c6c6b6a6a68666462605c6060605f5c574f453a29241d160d07000000000000000000000000000004101c2834404a54606a73808d96a09fa99f93877c6f665c50453b31241a20202020201913120f0b060c1925303b44505b666f7c87939fa99fa1968d80736a60544a3f34281c1003000000000a1724303d4a5763707d8a96abab9f9285796c6053463c4855626f7b8895a093867a6d6053473a46525e696e7673716e6c6567615e564d42362a1e110500000e1a2734414d5a6774808d939393989291908d8a847e746d665c51483e30261c11060000000000000000000000000000010911181e2224252d2d2d2d2d2d2d2c21201d18130c0400000000000000000000000000000000000000000000000000040c13181d20212c2d2d2d2d2d2d2d2524221d18110901000000000000060f171e24282b2b2d2d2d2d2d2d2d2322201b160f070000000005111e2b3844515e6b7784919eaaa4978b7e8491938e827c75716d686b6b696e71767e87929fa7b1a79c8f827b8692948f837c75716e686b6b686d70757c859299a3afaa9f9285796d6053463a2d2013070000131f2c3946525f6c7985929facada093877a6d6054473a2d21140700000000000c18232e39424f59616d7a85929ea6aea3999083786d60574e42382d21180b0200000000000000000007131f2c38434f5965727f8c98a2aca0968b7f72695f564d45403d3c3c3d41454e57606b74808d98a2aca1968a7e7164574d42372b1e12060000000714212d3a4754606d7a8793a0ada6998c807366594d4c5051525352514e4b4745413a36302a30383f44464a4f51525351504d4a48443d352b21160b0000131f2c3946525f6c7985929facada093877a6d656565656565656565656565666768666d6f73777c828990959fa4acaaa299928b7e716a60574d42362a1f160c01000000000000000a141e262e34383a46464646464646464646464646464646464646464646464653606d798693a0aca194877b6e6154484646463f3e3a342d251b11060000121e2b3845515e6b7884919393939393887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141c242c323a41464d5254575f626567696b6c6c6c6c6b6a696765615f5754524d46423b332c241c140a020000000000000000000000000000000000030c151d262d333c43474f54565d606467696b6c6c6c6c6b696765615f5754514b443f3830292119100700000000000000000000000000000000000000020a111720262b323839404547494c4f50525253535251504e4c4946443f3837312b262017110a020000000000000000000000000000000000000000000000000000050d141a2136424e59636b6c6c6c6c6b64615a5c5d5e5f5f5f5f5e5e5d5b535b60656c6c6c6c6b6861574c403428130c0400000000000000000000000000000006121f2c3844515c666f7c879293939393978d80746a60544a3f33291f202c2d2d2d2c26201f1c17110a141e28333f4a54606a74808d979393939392877c6f665c5044382c1f1206000000000b1824313e4b5764717e8a97a4aa9e918477655b50443c4855626f7b8895a093867a6d6053473b4754616e7b82807d7b7976746e695e52463a2d20140700000e1a2734414d5a6774808686868686858483807d79716c605c544a40362c1e140a0000000000000000000000000000000000060d12151819202020202020201f1413110d070100000000000000000000000000000000000000000000000000000001070d1113141f20202020202020181815120d06000000000000000000050c13181b1e1f20202020202020161613100b04000000000005111e2b3844515e6b7784919eaaa3978a7d7d8992948f86817d7a797778797b7e838b9299a3afaba0958a7e737f8c94959087827e7a797878797a7d82889297a1abaea3988d8074665c5145382c1f13060000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000004101c2834404b54606b74818e97a1ada79f92877c6f665c50453c2f261c0f06000000000000000000000915222f3b4854606b7784919eaaab9e9184786d60574d443b352f2f2f30353c454f59616d7a86929faca89d908376695f53473a2d2114080000000714212d3a4754606d7a8793a0ada6998c8073665956595c5e5f5f5f5e5b5854524c46413a333c424a5053575b5e5f5f5e5d5a56544f473d33271c100400131f2c3946525f6c7985929facada093877a6d605858585858585858585858595a545c6062666b6f767c838d939aa3ababa39f92867c6f695e52463e31281d130700000000000006111c2630383f444653535353535353535353535353535353535353535353535353606d798693a0aca194877b6e6154535353534c4a463f372d23180d0100121e2b3845515e6b7884919e9f9f9f94887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b141d262e363e444c52565e61666a6e717476777879797878777673716e6966615e57524d453e362e261c140a00000000000000000000000000000000030c151e272f383f444e54596063686d7074767778797978787674716e6965605d55504a423b332b221910070000000000000000000000000000000000040b141c222832373d43484b515356595b5d5e5f5f5f5f5e5d5b585653504a47433c373127221b140b03000000000000000000000000000000000000000000000000000002091f2c3945525e6b757979797978706c615f57514b525352524b51575f656c71787979797873685c5044372b1e11000000000000000000000000000000000713202d3a4653606d798386868686868686857a6d60584e42382e282b383939393939332d2b28221c140b17222d38424e58606d7a858686868686868683796d6053463a2d201307000000000b1824313e4b5764717e8a97a4ab9e918578665c50443c4855626f7b8895a093867a6d605347424e5865717e8b8d8a888583807b6e6154473b2e21140800000d1a26333f4c58646e74797979797979787774706d66625a514a42392e241a0c020000000000000000000000000000000000000106090b0c131313131313131307060401000000000000000000000000000000000000000000000000000000000000000104060713131313131313130c0b090601000000000000000000000001070c0f1112131313131313130a0907040000000000000005121e2b3845515e6b7884919eaba3968a7d73808d9499928e8a8785848585888b90959fa3abaea3999183786d78828f959a938f8b8786848485878a8e939aa1a9afa59f92867b6e61544b4034281c10040000131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000040e1a242c3845515c66707d89939ea9aba0958c80736a5f544a3f332a1d140a0000000000000000000000091623303c4956636f7c8996a0aca3998b7f72665c50453b32292422222429333d46525d6874808d9aa8ab9f95887b6e6155483b3025190d0100000714212d3a4754606d7a8793a0ada6998c807366606366696b6c6c6c6a6865605d56524c443e454d545c6064686b6c6c6b69666360594f44382c20130700131f2c3946525f6c7985929facada093877a6d60544c4c4c4c4c4c4c4c4c4c4c4d4a5053555960636a6f7980889299a3abaea39891857b6e615a50433a2f24180d0000000000000b17232e38424a50535f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f606d798693a0aca194877b6e615f5f5f5f5f585651493f34291e120600121e2b3845515e6b7884919eabaca194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000009131d262f38404850565e61686e73777b7e81838485868685858482807e7b77736e69615e57504840382e261c13090000000000000000000000000000000a151e273039414950585f626b70757a7d808284858686858483817e7b77726d67605c544d453d342b22190f05000000000000000000000000000000040d161d262d333c43474f54555c606366686a6b6c6c6c6c6b69686562605b54534e47423c332d261d150d03000000000000000000000000000000000000000000000000000613202d394653606c7987868686847d756e69605c554f46454f545c60696e777e8586868685786b5f5245382c1f120500000000000000000000000000000006121f2c3844515c666d7779797979797979786d685d52463d302e34384546464646463f3938332d261d18111c262f3c45525d686d7879797979797979776d665c5044382c1f1206000000000a1723303d4a5663707d8996a9ac9f9286796d6053463e4855626f7b8895a093867a6d6053474b54606a76838f9997989290857a6d6053473a2d20140700000b1723303c47525c64676c6c6c6c6c6c6b6a6764605c545044403930271c1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919eaba396897c7078828f949f9b97989291919298979d9fa7aeaaa29f92877d70666d7a8390959f9c97999291919298979b9fa4acaca49f938c7f72695e5342392e23180c000000131f2c3946525f6c7985929facada093877a6d6054473a2d21140b0b0b0b0c16202b37424d57606d7984919da5afa3999083796d60584e42382e21180b020000000000000000000005121e2a36424d576774808d9aa8ac9f92867a6d61544a3f33292018161619212935414c56626f7c8895a0aca7998c807366564c4135291d110500000714212d3a4754606d7a8793a0ada6998c8073656c6f7376777879787775716d68615e5650484d575f666d7175777979787673706b6054483c2f22160900131f2c3946525f6c7985929facada093877a6d6054473f3f3f3f3f3f3f3f3f40403f4446494f545860676d737e879299a3aeaaa1978f82766c61554b4135291d12070000000003101c28343f4a545c6a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d798693a0aca194877b6e6c6c6c6c6c6c65625b51463a2e22150900121e2b3845515e6b7884919eabaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000007101b252f38404a525a61686d747b8084888b8e8f919292929291918f8d8b8884807b746e69615a524a40382e251b0f060000000000000000000000000006111c263039424a535b606a6f767d82868a8d8f919292929291908e8b88847f7a726d665e574e463d342b21170b0200000000000000000000000000030c161f282f383f444e54596063676d707375777879797978787674726f6c66625f58534d443f382f271f150d03000000000000000000000000000000000000000000000000000b1825313e4b5864717e889396918a827b736d67615953525960666d737b828b929792877e7064574a3d3124170a0000000000000000000000000000000004101c2834404a545c606a6c6c6c6c6c6c6c6b605d564c413430383f445253535353534c46443f382f2a2119141d2935414c565d606b6c6c6c6c6c6c6c6a605c544a3f34281c1003000000000815222e3b4855616e7b8897a1ada399897d70635a50474855626f7b8895a093867a6d60534c535c666f7c89949faaa29b8e8175675d5145382c1f1306000007131f2b36404a52585a60606060605f5e5d5a5753514b423f342e271e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080a0d0e10111212131313131211100f0d0b090706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556c7885929f9f9f95887c6f6d79828d939a9fa29f9e9e9fa3aaa9a9aba39f98928a7f726b60686d7a838d939a9fa39f9e9e9fa2aaa8a9aba49f9a938c81776c60574d4230271d1207000000131f2c3946525f6c7985929facada093877a6d6054473a2d211818181818181e28323a47535f69737f8c96a0aca89f92877c6f665c51463c30261c0f0600000000000000000000000714212d3a46535e697784919eaaa99c8f8276685e5242382e21170d07080f1924303a47535f6a7784919daaaa9d908377685e5246392d20130700000714212d3a4754606d7a8793a0ada6998c807370787c7f838485868584817e7a746d68615a51575f696e787e828485868483807d7063564a3d3023170a00131f2c3946525f6c7985929facada093877a6d6054473a3232323232323232332e34383a3d43484e555c606c717e87929fa5afa99f948a7e71675d5145392e23180c0000000006121f2b3844505c6674797979797979797979797979797979797979797979797979797979788693a0aca194877b79797979797979726d62564a3e3124180b00121e2b3845515e6b7884919eabaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000030c19222d37404a525c636c717a81868c9196989a9c9e9f9f9f9f9e9d9c9a9895918d86817b716c645c524a40372d21180e030000000000000000000000040e17232e38424a545c656c727c82898f92999a9c9e9f9f9f9f9e9c9a9895908b857f786e6960584e463d33291d140a000000000000000000000000000b151e283139424a50585f626b6f75797d7f828385858686858483817f7c79746f6a625f575049413931271f150b010000000000000000000000000000000000000000000000000a1724303d4956626c717f8b919e948f868079706b615f5d606b6f797f868f949f93887e716c6155493c3023160a00000000000000000000000000000000000c18232e39424a51535d606060606060605e54524c433a2f38424a505e5f6060605f5953504a423b332a251f19242f3a434c52545e606060606060605d53504a42382e23170c00000000000613202d394653606c7985929eabab9b8f82756c615a544e55626f7b8895a093867a6d6053565d656d7983909da6aca0958a7d7064554b4035291d10040000030e19242f3840474c4d53535353535251504d4a464540393028231c150c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406090e12141517191b1d1e1f1f2020201f1f1e1d1c1a18161312100c0705020000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6779869293939393887b6e676d7880878f93999b9d9e9f9f9f9e9c9a99928e867e726d62595e686d7980878e92999a9c9e9f9f9f9e9d9a99938e877f746c655b50453b311e150b00000000131f2c3946525f6c7985929facada093877a6d6054473a2d2424242424242424303a44505a616e7b86929fa8aca0968d80736a60544b40342a1e150a0000000000000000000000000815212e3b4854616e7b8796a0acab988c7f7265564c4130261c0f06000008131e2b37434e586774808d9aa7ac9f93867a6d6154473a2e21140700000714212d3a4754606d7a8793a0ada6998c80747d83898c8f91929292918e8b86807a706c635b5e696e7b838a8e91929291908d86796c5f5346392c201300131f2c3946525f6c7985929facada093877a6d6054473a2d252525252525252623282c2d32383d434b515a616c727f8b939ea9b0a69e91847a6d60544b4034281c10040000000713202d3a4653606d78868686868686868686868686868686868686868686868686868686868a95a1b9ac9f9286868686868686867f7265584c3f3225190c00121e2b3845515e6b7884919eabaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e2b343f49525c646e737e858d92999da0a8a9a29f9d9c9b9c9d9fa2aaa7a09d99928e857e736e645c52493f332a1f140900000000000000000000020c162028343f4a545c666d777f8790949b9fa3aba7a3a2a1a1a2a4a8a7a7a09d97928b837b6f6a60584e453b2f261b1106000000000000000000000007121d273039434b545b606a6f767c8185898c8e90919292929291908e8b8985817c756e69605b534b433931271d12070000000000000000000000000000000000000000000000000815212d3945505a626d727f8b919c98928c847d756e69686d747c838c92989c918b7f726c625a5044392d201408000000000000000000000000000000000007121c2730394044465153535353535353524745413a31343f4a545c6a6c6c6c6c6c66605b544d453f363029201e28313a41454752535353535353535146443f3830261c1106000000000005121f2b3744505b6574818e9ba6aa9e938a7e716c62605857626f7b8895a093867a6d605c60686d77818e95a0aca79d9184786c605346392f24180c0000000008121d262f363c3f414646464646464544413d3a38342e271e18120b03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c1013141a1e2121242628292a2b2c2c2d2c2c2c2b2a29272522201f1c1814120e0903000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d79868686868686867a6d61666d737c82878b8e909192929291908d8a86817b716c625b51565e676d737c81868a8d909192929291908e8a87817c736d605b53493f33291f0c0300000000131f2c3946525f6c7985929facada093877a6d6054473a31313131313131313135414c56616c76828f98a3aea49a9184796d60584e42392e22180c030000000000000000000000000b1825313e4b5864717e8b97a8aea399887c6f6255493c3022140a000000020f1b26323d4a5763707d8a96a8afa4998a7d7064574a3d3124170700000714212d3a4754606d7a8793a0ada6998c80808a9095999c9e9f9f9f9d9b98928d857e736d63616e7b8590959b9e9f9f9e9c9286796c5f5346392c201300131f2c3946525f6c7985929facada093877a6d6054473a2d2119191919191919171c1f20272c30394045505a626d74818e97a1adada1968c7f73665c5145382c1f14090000000713202d3a4653606d798692929292929292929292929292929292929292929292929292929298a3aebaaea399929292929292928b7f7265584c3f3225190c00121e2b3845515e6b7884919eabaea194887b6e6155483b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303d46515b646e74808a92979fa3a9a19e999792908f8f8f909298989d9fa7a39f97928a80736e635b51453b31261a0e0400000000000000000008131e28323a44505c666d78818c92999fa6a9a19e9a9795949596979b9fa2a9a9a29f9590857c6f6a60574d41382d22170b01000000000000000000040d18232e39434b555d666c737c83898e9298999b9d9e9f9f9f9f9e9c9b9897918d88827b736c655d554b43392f24180e05000000000000000000000000000000000000000000000005111d29343e48505a626d727f8c929c9f96918a827b73717a818891959f9d928c7f736d625a50483e33281c10040000000000000000000000000000000000000b151e272e34383a4446464646464646453a39352f2b3844505c66757979797979726c665f575146423b3229251f282f35393a4546464646464646443a38342e261e150a000000000000030f1b27333f4953626f7c89949ea9a59f92877e756f6a6764626f7b8895a093867a6d65676d717a818e939da7a99f958a7e71665b5044382b1d120700000000010b141d242b303334393939393939383734312d2c28231d150c07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12181d1f20252a2d2e31333536373839393939393838373534322f2d2c2823211e1a140f0b0600000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d67767979797979797976685e5c606a6f757a7e8183858586858483817e7a746e69615a51494c555c606a6f757a7e8183848586858483817e7b756f6a635b504941382d21170d0000000000131f2c3946525f6c7985929facada093877a6d6054473e3e3e3e3e3e3e3e3e3e3e45525d68717e8a949faaa89f93887d6f675d51463d30271d1006000000000000000000000000010e1a2734414d5a6774808d9aa7ac9f9286796d6053463a2d201307000000000a14212e3b4754616e7a8796a1adab998d8073665a4d402f24180c00000714212d3a4754606d7a8793a0adab9f92858d929da0a7aaa39f9e9e9fa2a39f97928a7f736d6975828e97a0a7aaacaaa29f9286796c5f5346392c201300131f2c3946525f6c7985929facada093877a6d6054473a2d21140c0c0c0c0c060c1012131b1e272e343e47515b606d7985919ea7b1a99e9185796d6053463b31251a0e0200000713202d3a4653606d7986939f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa3aab4bfb4aba39f9f9f9f9f9f988b7f7265584c3f3225190c00121e2b3845515e6b7884919eabaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e38424f59626d74808d929ea1a9a39f97918c8885838282838385888b90959ea1a8a29f928d80736d62574d42362a20160a0000000000000000010d1924303a44505a606d78818e939fa3a9a29f97918d8a888788898b8e92979fa2aaa79f9792867c6f695e53493f33271d12070000000000000000010c161f2834404b555d676d78808790949b9fa2a9a29e9c9b9a9a9b9d9fa3a9a19e9a948f877f776d675d554b40352920170d0200000000000000000000000000000000000000000000000c17222d363f48515b636d737f8c929ca09e948f867f7d848d939aa09d938d80736d635b51483e362c22170b00000000000000000000000000000000000000030c151c23282c2d3739393939393939382d2c29242d3a4653606d7987868686867f786e69625b524d443e3530282024292c2d3839393939393939372d2c28231c150c03000000000000000b17222d384854606a75828f97a2aaa399928b827c7773716e6f7b8895a093867a6f7175797e848e939da5aba2979083786c60544a3f33281c0b010000000000020b12191f2326272d2d2d2d2d2c2b2a2724201f1c18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080e151a1d24292c2d31363a3b3d4041434445454646464645444342403e3c3a38342e2d2a261f1b17110a0200000000000000000000000000000000000000000000000000000000000000000004101d2935404b555d6c6c6c6c6c6c6c6c6c5e5651586062686d71747678797978787674716d67615e5750483f434b51585f62686d71747678787978777674716e69625f5851443f382f261b0f050000000000131f2c3946525f6c7985929facada093877a6d60544b4b4b4b4b4b4b4b4b4b4b4b4f59606d7a85929ea6aca1968d80746b60554b40342b1e150b0000000000000000000000000004111d2935414c55697683909ca9aa9d908377665c5144382c1f1206000000000714202d3946525e687884919eaba99c8f827669554b4035291d1004000714212d3a4754606d7a8793a0adada29792979da49f9c97989291919298969a9f9f918c7f726e7b87939fa9b1a7a09d98929286796c5f5346392c201300131f2c3946525f6c7985929facada093877a6d6054473a2d21140700000000000003060a0c151d2328353f45515d67717e8b95a0acada1978b7e7164574d42362a1e120500000713202d3a4653606d798693a0acacacaca49f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa0a1a6aeb8b1a9a3a19f9f9f9f9f988b7f7265584c3f3225190c00121e2b3845515e6b7884919eabaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54606b727f8c929ca4aaa299928c84807b787675757677797b7f838a91969fa6a49c928b7f72695f53463d32271b0f030000000000000005111d2935414c56616c74808d939ea5a7a097928b85807d7b7b7b7c7e81858c9298a0a7a9a29891857b6e655b5044392f24180c000000000000000008131e28313a45515c676d79828d92999fa6a39f9a97928f8e8d8e8e9092989b9fa3a69e99928c82796d675d51453f32291e1408000000000000000000000000000000000000000000000006101b242d363f49515b636d73808d929da49e98928c8a91969fa49e938e81746e645b51493f362d241a10050000000000000000000000000000000000000000030b12181c1f202a2d2d2d2d2d2d2d2b21201d1f2b3844505c66717e879399928c827b726d615e565046413a3229241d20212b2d2d2d2d2d2d2d2a201f1c17110a03000000000000000006111b2c38434e58616e7b859298a2a9a39f948f8984807e7b7a7c8895a194877a7c7e82858b91969ea5aaa29992857b6e665b5042382d22170b0000000000000001080e13171a1a20202020201f1e1d1a171313100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d14191f262b2f35383a3e4246484a4c4e50515252535353525251504f4d4b494644403b3a36312b27221b140b070100000000000000000000000000000000000000000000000000000000000000010d18242f39434b515f606060606060605f524c454e54565e6165686a6b6c6c6c6b696764605d55534d453e363940454e53565d606467696b6c6c6c6b6a6764615e57534e4640332d261d140a000000000000131f2c3946525f6c7985929facada093877a6d605757575757575757575757575754606b74818e97a1ada59e9184796d60594f43392f22190c04000000000000000000000000000613202c3945515d677885929eaba89b8e827568544a4034281c10040000000005111e2a36414c566976838f9ca9ab9e918578675d5145382c1f1306000714212d3a4754606d7a8793a0adb3a9a29fa2a19e948f8b8786858485878a8d92979f93887e727e8b99a4afaba0959088858686796c5f5346392c201300131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000000000030b1218232935414b55606c7883909da9b3a99d908377695e53463a2d21140600000713202d3a4653606d798693a5afaca29a979393939393939393939393939393939393939393959ca6b1a99f97949393939393938b7f7265584c3f3225190c00121e2b3845515e6b7884919eabaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c666f7c87929fa4aba29892878079736f6a6a696869656c6e72777d848f949fa6a49f92867b6e61584e43382b1f1306000000000000000713202d3946525d68717e8a929da5a79f9590857f7974706f6e6e6f7175797f869195a0a7aaa1978f82776c60554b4035291d1004000000000000010d19242f3a43505a606d79828f949fa3a7a099928e898583818181828386898e92999fa7a39f948f82796d605b51443b3025190e02000000000000000000000000000000000000000000000009121b242d373f49525b636e74808d929da5a39f99979ea1a69e948e81786c605c524940372d241b11080000000000000000000000000000000000000000000000070c1012131e202020202020201f1413111c28343f4a54616c717e87939a9490867f766e69615a524c443e352f281f191f202020202020201e1312100c0600000000000000000000000f1b27323d46525e69707d8692979ea5a69e9c95918d8a888786929fac978d87898b8e92979ea1a8a8a09892877e70695f544a3f2f261c110600000000000000000003070b0d0e13131313131312110e0a070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e171e252a3137394045474a4d535457595b5c5d5e5f5f605f5f5f5e5d5c5a585553514a4846423b37332d261d18120c040000000000000000000000000000000000000000000000000000000000000007121d283139404553535353535353535346413c43474c5254585b5d5e5f5f5f5e5d5a5754514c46423b332c2e343c43474c5254575a5d5e5f5f5f5e5d5b5754524d47433c3427221b140b02000000000000131f2c3946525f6c7985929facada093877a6d646464646464646464646464646464666f7c88939fa9a89d93897d70675d51473d3129241e160e060000000000000000000000000714212d3a4754606d7a8797a2ada6998c807366594d402e23180c0000000000010d192530414e5a6774818d9aa7ada197867a6d6053473a2d201407000714212d3a4754606d7a8793a0adbcb3ada9a1979289827e7b797878797a7d81858d929992857b818e9babafa49990837c79797b6e6255483b2f22150800131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000071118242f3a44505b65717e8b97a2adab9f95877b6e6154483b2e23170c00000713202d3a4653606d7986939ea8a69a908a86868686868686868686868686868686868686868a95a1ada3978d87868686868686867f7265584c3f3225190c00121e2b3845515e6b7884919eabaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54606d78839099a3afa39992867d736d67625f585c5c535b6061656c707a828f949fa9a2988f82766a6054473b2e22150800000000000005121e2a36424d57616d7a85929ea4a99f9590837b726d66646261626364676d727b839095a0aaa99f948b7e71675d5145382c1f140900000000000004111d2935414c56616c74818e949ea6a69f959087817c79767474747577797d818790959ea5a69e948e81756d62564c41362a1e140800000000000000000000000000000000000000000000000009121b252d374049525c646e74808d939da59f9f9f9fa79f948f82786d665b504a40372e251b1209000000000000000000000000000000000000000000000000000004060711131313131313131207060b17232e3842505a616c717e88939a98928b827b716c615e564f45413a312b22190f13131313131311070603000000000000000000000000000a16212a36424d57606b707d858e939d9fa7a7a09d9a9795989298a3ae9f979495989b9fa2a9aaa29f9691867d706c61574d42382d1d140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117202930363c42474b515357575e61646668696a6b6c6c6c6c6c6b6b6a68676562605c5455534d46443f382f29241d160d05000000000000000000000000000000000000000000000000000000000000010c161f282f3539464646464646464646393632373a4146474b4e505252535251504e4b4745413a36312921232831373a4145474b4e505152535251504e4b4746423b37312a2217110a0200000000000000131f2c3946525f6c7985929facada093877a71717171717171717171717171717171717883909aa4ada1968e81746b60554e48443d35302820180f0600000000000000000000000915222f3c4855626f7c8895a9b3a4988b7e7165584b3e32251807000000000000081926333f4c5966727f8c99a5b2a995887b6e6255483b2f221508000714212d3a4754606d7a8793a0adbab9ada19792857d76716e696b6b676d70747a808792978e81828f9ca9ac9f93877b6f6a6c6e695f53473a2e21140800131f2c3946525f6c7985929facada093877a6d6054473a2d21140700000000000000000000000007131d27333f4953606d7985929fabb1a7988b7e7265544a3f34281c10030006121f2b3844505c6675818e96a1a4978a7e79797979797979797979797979797979797979788693a0aca194877b79797979797979726d62564a3e3125180b00121e2b3845515e6b7884919eabaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c66727f8b95a0aba89f92877d706b605d55534e4f4f495053555a61686d79829097a1a49f94897c6f6256493c2f2316090000000000000714212d3a46535e6974818d97a1ada19790837a6e69605c5455545556555c60696e7a839098a2aea69e9184796d6053473b31261a0e0200000000000613202c3945525d68717e8a939da6a89f948f837c746f6c6668676768666d70757c838f939ea7a69e938b7f72685e52463b3025190d0100000000000000000000000000000000000000000000000009131c252e37404a525c606c77818e93939393939393959082796d665c544a3f382e251c1309000000000000000000000000000000000000000000000000000000000000040606060606060605000006111c26303e48505a626c717f88939f9f948f857e756d686159514b433d342b21160a00060606060400000000000000000000000000000000040e1a25303b454f59606b707b818a90959a9ea1a8a6a4aaa39fa3aab4a8a3a1a2a4a8aba49f9c98928c847c706b615a50453b2f261c0b0200000000000000000000000306080909090909090909090909090909090909090909090909090909090909090909090909090909090909090806030000000000000000000000000000020b141c2228323b41464d53555d606468696e70737476777878797979797877767573716f6d6665615f57535049413d352f281f170f06000000000000000000000000000000000000000000000000000000000000040d161d24292c39393939393939392e2d2a272b3036393a3e4143454646454543413e3a39352f2a251f171820262b2f35393a3e4143454546454443413e3b3a36302b2620181006000000000000000000131f2c3946525f6c7985929facb1a4988b7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e808d95a0acab9e91847a6d67625f58544f45413a322a21181006000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000b1825313e4b5864717e8b97a4b0a3968a7d7063574a3d3024170a000714212d3a4754606d7a8793a0adbcb1a79e92857c706b64615e57555d6063686d747e8692938e86929faca99d908376695f60625f574d42372b1e120600131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000000000000000010b17222d3845515d6774818e9aabb5a89c8f8275665c5044382c1f12060003101c28343f4a54606d7a84919ea59f92867b6e666c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d798693a0aca194877b6e6c6c6c6c6c6c65625b51463a2e22160900121e2b3845515e6b7884919eabaea194887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7984919ea7ada1968d80736b6059514b474342423f44464850565d676d7a85929b9993908c8275685c4f4235291c0f020000000004101d2935404b55616e7b86929fa9a69e92857a6e685e57514b484848494b51575e686e7b86929fa9ada1968b7e7165574d42362a1e12050000000004111d2935414c55606d7a85929ea5aca0968f82796e6a62605b545a5b545c60636a6e78818f959faba59f92857a6e61564c41362a1e1105000000000000000000000000000000000000000000000000010a131c252e384044505b656c7881868686868686868683796d675d544a42382d261c130a010000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e2c363e48505a626d727f8b919b9e97928a817a706b605d554e463d32271b0f030000000000000000000000000000000000000000000009141f29333d474f5960696e757d83888d9196979a9b9d9e9fa3aab4aaa29f9e9c9b9999938f8b857f796f6a615950483e33291d140a00000000000000000000040a0f121515161616161616161616161616161616161616161616161616161616161616161616161616161616161515120f0a030000000000000000000000020b141d262d333e444c52575f62676d7174787b7d7f81838485858686868585848382807e7c7976726e6964605b534f454039312921170f06000000000000000000000000000000000000000000000000000000000000040c12181d202d2d2d2d2d2d2d2d21201d1b1e252a2d2e32353738393939383634312d2c29241e1a140d0c151a1e24292c2d31343638393939383734312e2d2a251f1b150e0600000000000000000000131f2c3946525f6c7985929facb8a69b908b8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8d929da7b1a79a8e817b77746f6a636059524c443c332a22180f050000000000000000000b1825313e4b5864717e8b97a4afa295897c6f6256493c2f2316090000000000000a1723303d4a5663707d8996a3b0a4978b7e7164584b3e3125180b000714212d3a4754606d7a8793a0adb8ab9f958a7e716a605954524d4b5154565d616c707d8793989298a3aea79a8d817467575355534d453c31261a0e0200131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000006111b2935404b5564717d8a99a3afac9f9285796d6053463a2d20130700000b17232e3845525d68707d89939da2989083796d6059606060606060606060606060606d798693a0aca194877b6e616060606060585651493f34291e120600121e2b3845515e6b7884919eabaea194887b6e6155483b2e22150802020202020202020202020202020202020202020202020000000000000000000000000004101d2935404b5564717d8a96a1acaa9e9184796d60594f45403937312d3337393e444c555e68717e8b8e8a86837f7c6f6255483c2f221509000000000006131f2c3945515d6774818d99a3ab9f948a7e71685e564d45403c3b3b3c40454d565f69727f8b97a1ada99d908377695f53463a2d211407000000000613202c3945515d6773808d97a1ada69e91847a6d675f5853504a4e4e4b5153585f666d79839099a3ada2978d8174685e5246392d20140900000000000000000000000000000000000000000000000000010a131c2627333f49535b666c757979797979797979776d675d554b42392f261c140a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c1a242d363f48505a626d727f8b919ba29f938e857d746d6760584e43382c1f130700000000000000000000000000000000000000000000030d17212b353d474f575e616b70767c8084878a8d8f90919298a3aea2989291908e8c8986837e79726d6660584f473e362c21170b02000000000000000000060e151b1f21222323232323232323232323232323232323232323232323232323232323232323232323232323232322211f1a150e06000000000000000000000a141d262f383f4450565e61696e74797d8184878a8c8e8f909192929392929291908f8d8b8886837f7b76706c656059514b433b332921170d0400000000000000000000000000000000000000000000000000000000000001070d101320202020202020201413110f13191e202125282a2b2c2c2c2b2a272421201d19130e0903030a0f13191d202124272a2b2c2c2c2b2a282421201e1a140f0a030000000000000000000000131f2c3946525f6c7985929facb8aca29b9897979797979797979797979797979797979a9da4aeb5a99d938e8784817c76706b605d564e463c342a21170b0200000000000000000c1926323f4c5965727f8c98a5aea195887b6e6255483b2f2215080000000000000916232f3c4956626f7c8995a2afa5988b7f7265584c3f3225190c000714212d3a4754606d7a8793a0adb6aa9d9083776c61584f4846424145474c525a616b73808d969fa3aab4a5998c7f7266594c4847423c332a2015090000131f2c3946525f6c7985929facada093877a6d6054473a2d21140700000000000000000000000000000c18242f3a4754606d7a86929facaea298887b6e6255483b2f221508000006111c2935414c56606b74818e96a1a0958d80746b60564c53535353535353535353606d798693a0aca194877b6e6154535353534c4a463f372d23180d0100121e2b3845515e6b7884919eabaea194887b6e6155483b2e22150f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0b0a08040000000000000000000613202c3945515d6775828f9ba8aea3988b7e71675d51473d352f2b2622272b2d323a434c56606d7883817e7a76736f6a5f53473b2e21150800000000000714202d3a4753606d7985929faba89c8f82766c61564c433b342e2e2f2f343b444d57606d7985919eababa095887b6e6155483b2e221508000000000714212d3a4754606d7a85929fa9aa9e94897d70685d554e46443f41414045464e545c676f7c87929faca99f92867a6e6154473c31261a0e0200000000000000000000000000000000000000000000000000010a1417222d38414a545b60686c6c6c6c6c6c6c6c6a605d554c433930271d140a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b242d363f48515b626d727f8c919ca39e97918a81796f6a6054483b2e2215090000000000000000000000000000000000000000000000050f19232b353d454d525961636a6f74787b7d8082838486929fac9f92868483827f7c7a76716d67605c544e463e352c231a0f0600000000000000000006101820262b2e2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2e2b2620181006000000000000000006111b262f38424a505a61686e747b81858a8e919697999b9c9d9e9f9f9f9f9f9e9e9d9b9a9898928f8c87827d78706b605d554d453b33291f160c0100000000000000000000000000000000000000000000000000000000000000010406131313131313131307070502080d111314181b1d1f1f201f1e1d1b181413110d08010000000001080d111314181b1d1e1f201f1e1d1b181414110e090200000000000000000000000000131f2c3946525f6c7985929facb8b4aca6a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a7a9aeaeafafa59d9a96918d88837d746d685f584e463c33291d140a00000000000000000d1a2733404d5a6673808d99a6ada194877a6e6154473b2e2114080000000000000815222f3b4855626e7b8895a1aea6998c807366594d4033261a0d000714212d3a4754606d7a8793a0adb3a9988b7f72655a50463d3a3635393a41465059606d7984919eabb4b2a5988b7f7265584c3f3a37312a21180e030000131f2c3946525f6c7985929facada093877a6d6054473a2d21140700000000000000000000000000000713202c3945525d687783909daab4aa978a7d7064574a3d3124170a0000000d19242f3a444f59606d7984919aa49f93887d70685d5245464646464646464653606d798693a0aca194877b6e6154484646463f3e3a342d251b11070000121e2b3845515e6b7884919eabaea194887b6e6155483b2e221b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b171714110c05000000000000000714202d3a4753606d7a86929facac9f92867a6d60554b403529241d1a171b1f2028313a44515c666d7775716d6866625f584e43372b1f12060000000004101c2834404b5564717e8b98a2aca096897d70635a50443b31282321222329323c44515c6673808c99aab1a7988b7e7265584b3f3225180800000005111e2a36424d5765727f8b98a2aea99c8f82756b60564c433c38332d2e34383c424b555f6a74818e9ba8aea3988c7f7266574d42372b1e120500000000000000000000000000000000000000000000000000000006111b262f38424a50535b60606060606060605d54514c433a31271e150b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b242d363f49515b626d727f8c9193939393938e847c6f6256493c2f231609000000000000000000000000000000000000000000000000071119232b333b42464f55585f6267696e71737576787c8895a093867977767572706d6764605d55514b423d342c231a1108000000000000000000040e18222a31373a3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3a37312a22180e03000000000000040d17222d38414a545b606c717a81878d92989b9ea1a8a6a7a8a7a5a4a3a3a3a3a4a5a6a8a6aaa39f9c9a938f8a837d746d675e574d453b31281d13070000000000000000000000000000000000000000000000000000000000000000000006060606060606060000000000010507070b0e101213131212100e0b070604010000000000000000010406070b0e101212131211100e0b08070502000000000000000000000000000000131f2c3946525f6c7985929facb8b0a8a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa0a1a2a5a7aba8a09e9a949089817a6e6a5f584e453b2f261c1106000000000000000e1a2734414d5a6774808d9aa7ada093877a6d6054473a2d2114070000000000000815212e3b4854616e7b8794a1aea69a8d8073675a4d4034271a0d000714212d3a4754606d7a8793a0adada197877a6e6154473e342d2a292c30353e45515c67727f8c99a3aeb2a5988b7f7265584c3f322b2620180f06000000131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000000000000000000004111d2935414c566875818e9ba8b2a5998c7f7266594c3f3326190c00000008131e28323d45515d67707d88939fa49a91847a6d60594f443a303939393a4653606d798693a0aca194877b6e6154483b393932312e29231b1309000000121e2b3845515e6b7884919eabaea194887b6e6155483b2e28282828282828282828282828282828282828282828282828282423211c1710080000000000000a1723303d4a5663707d8998a3aea89b8e8275675d51433a2f23181d1d1d1d1d161f2834404a545c606a6864615e5655534e463c32261b0f030000000006131f2c3845515c6775828f9caaaa9d9184776b6054483e32291f18151518202834404a54626f7b8898a2aea89b8e8175685b4e423025190d0100000714202d3a46525e697683909daaada196897d7063594f433a312b282223282c3039434e58626f7c8895a0acaa9d908477695f53463a2d211407000000000000000000000000000000000000000000000000000000000a141d262f383f44464e5353535353535353504745413a31281f150c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b242d373f49515b636d737f86868686868686868174675a4e4134271b0e01000000000000000000000000000000000000000000000000071119202930363e44484e5355575e616467686a6f7b8895a093867a6d69686663605d5553514b454039302b221a1108000000000000000000000a15202a343c434748494949494949494949494949494949494949494949494949494949494949494949494949494949494847433c342a20150a0000000000010c161f27333f49535b666c747e858e92999fa2aaaba9a8a19e9c9a9897979696979798999c9e9fa4acaca49f9c95908981796e695f574d433a2f24180d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facb8a89e969393939393939393939393939393939393939393939495989b9ea1a9aaa69f9c938e847c6f6a5f574d42382d22170b000000000000000e1b2734414e5a6774818d9aa7ada093867a6d6053473a2d2014070000000000000814212e3b4754616e7a8794a1ada79a8d8174675a4e4134271b0e000714212d3a4754606d7a8793a0adab9e918578685e5246392c221e1d20242934404b55616e7a86929facb2a5988b7f7265584c3f32251a150e0600000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000000010d19242f404d596673808c99a6b3a79b8e8174685b4e4135281b0e000000010c16202935404b55606b74808d96a0a1968e81746b61564c4135292d2d3a4653606d798693a0aca194877b6e6154483b2e2d2525221e18110901000000121e2b3845515e6b7884919eabaea194887b6e6155483b35353535353535353535353535353535353535353535353535353531302d28221a120800000000000d1a2733404d5a6673808d99aab4aa978b7e7164554c4131282a2a2a2a2a2a2a2a2a232e39424a51535d5b5754524c4847433c342a20150a00000000000713202d3a4653606d7985929facab998c7f7366594f44362c20170d07070e18232e394653606c7985929fabaa9d9184776a564c41362a1d110500000814212e3b4754616e7b87959fabab9e9184786c6053463d31281f1c17181c1f27313c47535f6a7784919daaaca095887b6e6155483b2e22150600000000000000000000000000000000000000000000000000000000020b141d262d333839424646464646464646443a39352f281f160d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b252d373f49515b636d737979797979797979746e64584c4033271a0d0100000000000000000000000000000000000000000000000000070e171f252a33383c4347484d5254575a5c626f7b8895a093867a6d605b595653514b47454039342e271e19100800000000000000000000030f1b26313c464e53555656565656565656565656565656565656565656565656565656565656565656565656565656565655534e463c31261a0f030000000007131d28313a44505b656c78808a92979fa3abaaa69f9c9896918f8d8b8a8a89898a8a8b8d8f91939a9c9fa4aca7a09d938e837b6e695f554b41352921160a000000000000000000050a0d0f101313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313100f0d0a050000000000000000000000000104060712131313130908060300000000000000000000000000131f2c3946525f6c7985929facb8a2968c87868686868686868686868686868686868686868787898b8e92979da0a7aba59d9691857c6f695e544a3f33281d12070000000000000e1b2834414e5b6774818e9aa7aca09386796d6053463a2d2013070000000000000714212e3a4754616d7a8794a0ada79a8e8174675b4e4134281b0e000714212d3a4754606d7a8793a0ada99c8f827669564d41362a1a12111319232f3946525e687683909da9b2a5988b7f7265584c3f32251909030000000000131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000000000000000000000081824313e4b5764717e8a97a4b1a89c8f8275695c4f4236291c0f00000000040d18242f3a434f59606d79849199a39d938a7d70685e52463e32292d3a4653606d798693a0aca194877b6e6154483b2e21191816120d070000000000121e2b3845515e6b7884919eabaea194887b6e615548424242424242424242424242424242424242424242424242424242423e3c39332c241a100500000004101c2834404b546976828f9ca9aea398887b6f6255483c2f3737373737373737373737373039404446514e4b4746413c3b37322a261f180f06000000000a1723303d4a5663707d8998a2aea399897c706356493d32231a0e05000007121f2b3844505b6676838f9ca9ac9f928579685e5246392d20130700000b1824313e4b5764717e8a97a7b1a79a8e8174665b5044382b1f160f0b0c10151f2b37434e586773808d9aa6b1a7988b7e7165584b3e2d22170b0000000000000000000000000000000000000000000000000000000000020b141c22282b2d353939393939393939372d2c29241e160d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b252d373f49515b63666c6c6c6c6c6c6c6c67645c53483c3024180b000000000000000000000000000000000000000000000000000000050d141a21282c31373a3c4246484a4d55626f7b88959f93867a6d60534c494745403a39352f28231d150c07000000000000000000000006121f2b37434e585f6262626262626262626262626262626262626262626262626262626262626262626262626262626262625f584e43372b1f1206000000010d18242f3a434f59606c77818d929fa2a9ada59e9b948f8b888482807f7e7d7d7d7d7e7e808284878b8f939a9ea6aca59d9590847b6e675d51453d32271b0f03000000000000030a1016191c1d20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201d1c1916100a03000000000000000001070d1113141f202020201515120f0a040000000000000000000000131f2c3946525f6c7985929facada093877a797979797979797979797979797979797979797a7b7c7e81858a90959fa3aba8a19792857b6e665b5044392e23180c0000000000000e1b2835414e5b6874818e9ba7aca09386796d6053463a2d2013070000000000000714212d3a4754606d7a8793a0ada79b8e8174685b4e4135281b0e000714212d3a4754606d7a8793a0ada89b8e8175685b4e423025190f0408121d2a36414c566774818d9aa7b2a5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000000000a1724303d4a5763707d8a96a3b0a99c908276695d5043362a1d10000000000007131d28313d45515d676f7c87929fa59e91857a6d615a50443b302d3a4653606d798693a0aca194877b6e6154483b2e211508090601000000000000121e2b3845515e6b7884919eabaea194887b6e61554e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4e4a49453e362c22170c00000006131f2c3845515c667884919eabac9f9286796d6053464444444444444444444444444444444444444444444444444444443b3a36312a21180e030000000d192633404c5966737f8c99aaac9f92867a6d6053473a2d201407000000030f1c28333f4a546874818e9ba7aea298877a6d6154473a2e21140700010e1b2834414e5b6774818e9aa7b4aa978a7e7164544a3f3328190d040000040d1b26323d4a5764707d8a97aab4a79b8e81746853493f33271b0f030000000000000000000000000000000000000000000000000000000000020a11171c1f20282d2d2d2d2d2d2d2d2a21201d19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000109131b252e37404951575960606060606060605a58534a41362b2014080000000000000000000000000000000000000000000000000000000002090e161c20262b2e30363a3b3e4855626f7b88939393867a6d6053473d3a39352f2c29241d18120b030000000000000000000000000815212e3a47535f6a6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6a5f53473a2e21150800000004111d2935414b55616b73808d939da4ada9a29f938e88827e7b78757472717070707071727375777b7e82878f939fa2aaa7a0969183796d60594f43382c1f14090000000000040d151c212629292d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292926211c150d04000000000000040c13181d20202b2d2d2d2d22211f1b150e0600000000000000000000131f2c3946525f6c7985929facada093877a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c666c6d6e6f7274797e838c9299a3aba9a1978f82786c60554b4034281c100400000000000e1b2834414e5b6774818e9aa7aca09386796d6053463a2d2013070000000000000714212e3a4754616d7a8794a0ada79a8e8174675b4e4134281b0e000714212d3a4754606d7a8793a0ada79a8d8174675a4e4134271b0801010d1925303e4b5864717e8b97a4b1a5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000000000a1623303d495663707c8996a3afaa9d9083776a5d5044372a1d110000000000010c161f2935404b55606a73808d95a0a1978e81756c61564c41362d3a4653606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e615b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b575550483e33281c110400000713202d3a4653606d7986939facaa9d908477665c50505050505050505050505050505050505050505050505050505050504846423b332a1f1409000004101d2935404b556975828f9ca8aa9d918477675d5145392c201306000000000b17222d414d5a6774808d9aa7b4aa94887b6e6155483b2e2215080005111e2a36414c566a7683909da9aea298887b6e6155483b2d221708000000000a15212e3b4854616e7b8798a2aeaa9d908377655b5044372b1f120500000000000000000000000000000000000000000000000000000000000000060b0f12131b20202020202020201d1413110d08010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c252e3740464b4c53535353535353534e4c4841382f251a0f03000000000000000000000000000000000000000000000000000000000000050b10151b1f21252a2d2f3c4855626f7c8686868686796d6053473a2d2c2924201d18120c0700000000000000000000000000000915222f3c4855626f7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c6f6255483c2f2215090000000613202c3945515d67707d8a929ca5aea9a197928a817c76726e69696765646463636464656669696e72767c828a9298a2aaa8a0958e81746b6054483c31261a0e02000000030d161f262d32353639393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393635322d261f160d0300000000040d161d24292c2d38393939392f2e2b2620181006000000000000000000131f2c3946525f6c7985929facada093877a6d606060606060606060606060606060605b6060616265666d71787f879299a3afa99f948b7f72675c5145382c1f130700000000000e1b2734414e5a6774818d9aa7ada093867a6d6053473a2d2014070000000000000814212e3b4754616e7a8794a1ada79a8d8174675a4e4134271b0e000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d0100081724303d4a5763707d8a96a3b0a5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000000000916222f3c4955626f7c8895a2afaa9e9184776b5e5144382b1e11000000000000040d18242f39434e58606d79839099a39e938a7e71685e52463e333a4653606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6868686868686868686868686868686868686868686868686868686868686864615a5045392d21140800000815212e3b4854616e7b879aa4afa99c90837669545d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d55534d453b31261a0e020006131f2c3845515d677884919eaba99d9083766a554b4035291d110400000000061a2633404d596673808c99a6aea295887b6f6255483c2f221509000713202d3946525e687885929fabac9f9285796c605346392d201306000000000714212d3a46535e697985929facac9f9285796c605346392d2013060000000000000000000000000000000000000000000000000000000000000000000306060f131313131313131311070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c252e353b3e40464646464646464641403c362f261d1308000000000000000000000000000000000000000000000000000000000000000000040a0f12151a1e212e3a47535f6a76797979797976675c5145382c201d1813100d0701000000000000000000000000000000111e2a3744515d6a77848989898989898989898989898989898989898989898989898989898989898989898989898989898983766a5d5043372a1d10000004101d2935404b55606d7984919ea4aeaaa19791857e756f6a65615f575a58575756565757585a565e61656a6f757e869298a2aea89e93897c6f63574d42372b1e12050000000a151f2831383e4243464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464643423e3831281f150a000000010c161f282f35393a45464646463c3b37322a22180e040000000000000000131f2c3946525f6c7985929facada093877a6d6054535353535353535353535353534a5053545456545c60666d737e87929fa7b0a69e9185796d6053463a2f24180d01000000000e1a2734414d5a6774808d9aa7ada093877a6d6054473a2d2114070000000000000815212e3b4854616e7b8794a1aea79a8d8074675a4d4134271a0e000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d0100091623303c4956636f7c8996a2afa5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000000000916222f3c4955626f7c8895a2afab9e9184786b5e5145382b1e120000000000000007121d27313d45515c666f7c87929fa59e92857a6e615a50453b3a4653606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b7575757575757575757575757575757575757575757575757575757575757575716c6155493c3023170a00000916232f3c4956626f7c8995acb6a89c8f82756a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a615f574d42362a1e1205000714202d3a4753606d7a86939faca89c8f8275695c4f422f24180d01000000000d1a2733404d5a6673808d99a6afa295887c6f6255493c2f221609000714212e3a4754616d7a8798a2aeaa9d918477665b5044382b1f12060000000005121e2a36424d576a7784919daaaea298877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c232a2f323339393939393939393433302b251d140b0100000000000000000000000000000000000000000000000000000000000000000000000306090e121f2b37434e585f626c6c6c6c6c6c5c554b4034291c110d0704010000000000000000000000000000000000111e2a3744515d6a77849095959595959595959595959595959595959595959595959595959595959595959595959595959083766a5d5043372a1d10000006131f2c3945515d67737f8c96a1adaea29891857b716c625f5855534d4d4c4b4a4a4a4a4b4b4d4d5254585f626c707c86929fa7afa59c8f8276695f53463a2d211407000005101c26313a42494e505353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353504e49423a31261c1005000007131d28313a40454752535353534847433c342a20150a0000000000000000131f2c3946525f6c7985929facada093877a6d6054474646464646464646464646463f44464748494b51545c606c727e8b959fabada1978b7e7165554b4135291d1104000000000d1a2733404d5a6673808d99a6ada194877a6e6154473b2e2114080000000000000815222f3b4855626e7b8895a1aea6998d8073665a4d4033271a0d000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222f3b4855626e7b8895a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000000000916232f3c4956626f7c8995a2afaa9d9183776a5e5144372b1e1100000000000000010b151f2834404b545f6a737f8c959fa1978f82756c62574d423a4653606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabb5a89b8f8281818181818181818181818181818181818181818181818181818181818181817e7164574a3e3124170b00000a1623303d495663707c8996a3afa89b8e8177777777777777777777777777777777777777777777777777777777777777776e695f53463a2d211407000915222f3c4855626f7b889aa4afa89b8e8275685b4f422d22170b00000000000e1b2834414e5b6774818e9aa7b4ab95887b6e6255483b2f221508000915222f3c4855626f7b8895aab4a99c8f837669544a3f33281c0f0300000000020e1a2531434f5c6976828f9ca9b4aa95887b6f6255483c2f2215090000000000000000000000000000000000000000000000000000000000030607090b0d0f1111121313121211100f0d0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a12191e2325262d2d2d2d2d2d2d2d272724201a130b02000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26313c464e535560606060605f514b43392f23180c010000000000000000000000000000000000000000111e2a3744515d6a7784909da2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a29d9083766a5d5043372a1d1000000714202d3a4753606d7985929ea8b1a79f92867c6f69615a534e484642413f3e3d3d3d3d3e3f404246474e535a616a717e8b959fabac9f93877b6e6155483b2e22150800000a16212d38424c545a5c60606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605c5a544c42382d21160a00010d18242f3a434b51535e6060606055534e463c32261b0f0400000000000000131f2c3946525f6c7985929facada093877a6d6054473a393939393939393939392d3338393a3b3c40454a505a606c7883909da9b3a99d908376675d5145392c201306000000000c1926333f4c5966727f8c99a5aea195887b6e6255483b2f2215080000000000000916222f3c4955626f7c8895a2afa5988c7f7265594c3f3226190c000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000000000a1623303d495663707c8996a3afaa9d9083776a5d5044372a1d110000000000000000030d18232e39424e58606d78839098a39e948b7e71695e52463f4653606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabb7aa9e938f8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8c807366594d4033261a0d00000a1724303d4a5763707d8a96a3b0ab9e928583838383838383838383838383838383838383838383838383838383838383837b6e6155483b2e221508000a1724303d4a5763707d8a96acb6a89c8f827569544a3f33281c0f0300000004111d2935414c566875828e9ba8aea399877a6e6154473b2e211408000a1723303d4a5663707d8996a3b0a89b8e8275685b4f422d22170b000000000000091c2835424f5b6875828e9ba8b0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000104060b10121315171a1c1d1e1f1f201f1f1e1d1b19171514120e09060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070d1216191920202020202020201b1a18140f080100000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c43474853535353535345403931271d1207000000000000000000000000000000000000000000111e2a3744515d6a7784909d9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9d9083766a5d5043372a1d100004101c2834404b5464717e8a97a2acaca0958b7e726a5f575047433c3a3631323131303031313230363a3c43475058616c7683909da9afa49a8c7f7265594c3f3226190700000d1926323e49545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69665e54493e3226190d0004111d2935404b555d606b6c6c6c6c625f584e43372b20150a00000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2d2d2d2d2d2d2d2d2d22282b2d2d2e2e34383f44505b65707d8997a2adac9f92867a6d6054473a2d211407000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f2316090000000000000a1623303d495663707c8996a3afa4988b7e7165584b3e3225180b000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000000000b1824313e4b5764717e8a97a4b1a99c8f8276695c504336291d1000000000000000000007121d27303c44505c666f7c86929fa69f92857b6e615b51454653606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabb7afa59e9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b998c807366594d4033261a0d00000a1724313d4a5764707d8a97a3b0ada1979290909090909090909090909090909090909090909090909090909090909090887b6e6255483b2f221508000b1825313e4b5864717e8b97a4b1a99d908376665b5044382b1f130a0603060a13202c3945525d687784919daaac9f9286796c605346392d201306000a1724313d4a5764707d8a97a3b0a79a8e8174675b4e4134281b060000000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a000000000000000000000000000000000000000000000001070d1113171c1f20222426292a2b2b2c2c2c2b2b2a28262422211e1a1312100c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002060a0c0d13131313131313130e0d0b080300000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e18222a31373a3c46464646464638342f271f150b01000000000000000000000000000000000000000000111e2a3744515d6a77839093939393939393939393939393939393939393939393939393939393939393939393939393939083766a5d5043372a1d100006131f2c3845515c6675828f9a9c9fa29d9083786d60584e453e37322d2a262524242323242425252a2d32373e46505a64717e8b97aab3ac9c8f8275695c4f422f24180c00000f1c2935424e5a66707679797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797670665a4e4235291c0f000613202c3945515d676d78797979796f6a5f53473d32271b0f00000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d212020202020202020171c1f20212123282e343f4953606d7985929eabafa3998a7d7063574a3d3024170a000000000b1724313e4a5764717d8a97a4b0a3968a7d7063574a3d3024170a0000000000000b1724313e4a5764717d8a97a4b0a3978a7d7064574a3d3124170a000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000000000c1926333f4c5966727f8c99a5b2a79b8e8174685b4e4135281b0e000000000000000000000b151e28343f4a545f6a727f8c949fa2978f82766d62574d4653606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabb7b8afaaa8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a6998c807366594d4033261a0d00000a1724313d4a5764707d8a97a3b0b3a9a19e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d94887b6e6155483b2e221508000c1926323f4c5965727f8c98a5b2ab9e9285796c6053463a30241b14121012141c26303a4754606d7a86939facaa9d918477655b5044372b1f1205000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e0100000000010e1b2734414e5a6774818d9aa7b0a4978a7d7164574a3e3124170b00000000000000000000000000000000000000000003090e13181d2023282b2d2f3133353737383939393837373533312e2d2a26201f1c17110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101820262b2e2f3939393939392c29231d150d0300000000000000000000000000000000000000000000111e2a3744515d6a77838686868686868686868686868686868686868686868686868686868686868686868686868686868683766a5d5043372a1d10000713202d3a4653606d79868b8d909298988a7e71665c50463c332b26211e1a1918171717171818191e20262b343e4754616e7b8798a2aeaa9e9184776b554b4035291d100400101d293643505c69768386868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868276695c504336291d10000714202d3a4753606d7a85868686877c6f62584e43372b1d1207000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114131313131313130b0f12131415181c232d3844505c6675828e9ba8b5ab998c7f7266594c3f3326190c000000000916232f3c4956626f7c8995aab4a4978b7e7164584b3e3125180b0000000000000c1925323f4c5865727f8b98a5b4aa95887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000000000000000000004101c2934404b556774818e9aa7b3a6998c807366594d4033261a0d00000000000000000000030c17232e38424e58606c78839098a29f948b7f72695f544a53606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabb7b1a9a3a19f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f998c807366594d4033261a0d00000a1723303d4a5663707d8996a3b0b8b0aba99f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa9aaaaaaaaaa94877a6e6154473b2e211408000d1a2733404d5a6673808d99a6b3ada297887c6f62564c41352d26201f1c1f20262e38424e5864707d8a9aa4afa89b8e81756853493f33271b0f03000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e0100000000010e1a2734414d5a6774808d9aa7b1a4978b7e7164584b3e3125180b00000000000000000000000000000000000000040a0f151a1d24292c2e34383a3c3e404244444546464545444342403d3b3a36312d2c28231c19130d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090c0e1011121313131211100f0d0b0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151b1f21222d2d2d2d2d2d1f1c18120b030000000000000000000000000000000000000000000000101d2936424f5b677177797979797979797979797979797979797979797979797979797979797979797979797979797979797671665b4e4236291c10000613202d394653606c777c7e808385888b867a6d60544a3f342a211b15120e090b0a0a0a0a0b090e11151b222d3a46525e697885929fabac9f928679675d5145392c1f130600101d293643505c6976838f9393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393938f8276695c504336291d10000613202c3945515d67717e8b959a8f82756a605447392e23180c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070606060606000003060607070c111b28343f4a546673808d99a6b3a69a8d8073675a4d4034271a0d010000000814212e3b4754616e7a8798a3aea6998c7f7366594c40332619090000000000000d1a2733404d5a6673808d99a6aea298877a6d6154473a2e211407000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000000000000000000006131f2c3845515c677783909daab4aa988b7e7165584b3e3225180b000000000000000000000006111c26303c44505b666e7b86929fa69f92867b6e665b5053606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabb7a99f9894939393939393939393939393939393939393939393939393939393939393938c807366594d4033261a0d0000091623303c4956636f7c8996a2afb0a69f9c9393939393939393939393939393939393939393939393939c9ea6b0aea398877a6d6054473a2d211407000e1a2734414d5a6774808d9aa7b3b3a9998c8073685d52463f382f2d2b282b2d30383f4a545f6a76828f9cacb0a6988b7e7265584b3f2d22170b00000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e0100000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3124180b000000000000000000000000000000000000070c151b20262b2f35393a3f4446484a4d4f5051525253525251504e4c4a4846423d3a38342e29251e19140d050000000000000000000000000000000000000000000000000000000000000000000000000004070c10121316191b1d1e1f1f201f1f1e1d1b19171414110e0806030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f12151520202020202013100c07010000000000000000000000000000000000000000000000000e1a27333f4a555f676a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a665f554a3e32261a0d0005121f2b3744505b656c6f717476797b7e7e71675d5142382e22180f0a0502000000000000000002050b111e2a36424d566b7884919eabafa399867a6d6053473a2d20140700101d293643505c6976838f918b86868686868686868686868686868686868686868686868686868686868686868686868686868686868686868b918f8376695c504336291d100004111d2935404b55606d7883909d94897c6f62544b4034281c10040000000000131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000000000000000000b17232e3f4c5965727f8c98a5b2a79a8e8174675b4e4134281b0e010000000613202d394653606c7985929faca79b8e8174685b4e4131261a0e020000000003101c28343f4a546875828e9ba8ac9f928579685e5246392d201307000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d21140700000000000000000000000000000714202d3a4753606d7986929facaea298887c6f6255493c2f2216090000000000000000000000000a151e28333f4a545f69727f8b949fa2989082786c605753606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabb7a3988d888686868686868686868686868686868686868686868686868686868686868686807366594d4033261a0d00000815222f3b4855626e7b8895a9b3ab9f948f8686868686868686868686868686868686868686868686868f949eaaac9f928579675d5145392c201306000e1b2734414e5a6774818d9aa7b4b8ab9f92857a6d615b5049413c393834383a3d424a505c666e7c87939facab9f94877b6e6154483b2e21150600000a1724313d4a5764707d8a97a3b0a79a8e8174675b4e4134281b0e0100000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a00000000000000000000000000000000030b121820262b31373a4145474a50535557595c5d5e5e5f5f5f5e5e5d5b595755534d4946443f3835302a251e170e0802000000000000000000000000000000000000000000000000000000000000000001070c1013181c1f20232527292b2b2c2d2c2c2b2a28262421201e1915120f0a0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306080913131313131306040000000000000000000000000000000000000000000000000000000a16222e39434d555b5d606060606060606060606060606060606060606060606060606060606060606060606060606060605d5b554d43382d22160a00030f1b27333f49535b60626467666c6e71716c62554b4030261c100600000000000000010507090e12161c222c3845515c677885919eabaea399877a6d6054473a2d21140700101d293643505c6976838f8b7f79797979797979797979797979797979797979797979797979797979797979797979797979797979797979797f8b8f8376695c504336291d1000010d18242f3a44505c66717e8a979a8e8174665c5145382c1f13060000000000131f2c3946525f6c7985929facada093877a6d6054473a2d21140700000000000000000000000104091925323f4c5865727f8b98a5b2a89b8e8175685b4e4235281b0f0200000005121f2b3744505b657783909daaa99c90837669574d42362a1e12050000000006121f2c3844505c667783909daaa99d9083766a564c4135291d1105000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000007101d2935404b5563707d8a99a3aeac9f9285796d6053463a2d201307000000000000000000000000030c17222d38424d57606c77828f98a29f948c7f726a5f54606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b7979797979797979797979797979797979797979797979797979797979797979736e63574b3f3226190c00000714212d3a4754606d7a8797a2ada99c8f82797979797979797979797979797979797979797979797979828f9ca9ab9e9184786b554b4135291d1104000e1b2834414e5b6774818e9aa7b4b3ada2988d81746d605b534e4846443f4446484e545c606d7883909aa4afa79c8f8376695e52463a2d20140700000a1723303d4a5663707d8996a3b0a89b8e8175685b4e4235281b090000000000020f1b2835424e5b6875818e9ba8b0a3968a7d7063574a3d3024170a000000000000000000000000000000070c151d232831373c42474b5154545c60626466686a6a6b6c6c6c6b6a6a686664615f575653504a46413a3630292019130d05000000000000000000000000000000000000000000000000000000000003090e12181d1f23282c2d3032343638383939393838373533312e2d2a25211f1b150f0b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c27313b434a4f5153535353535353535353535353535353535353535353535353535353535353535353535353535353504e4a433a31271c110500000b17222d38414950535558545b60626465625a50433a2f1e140a00000000020507080d1113141a1e21272c343c4653606d7986929facac9f928679675d5145392c20130600101d293643505c6976838f8b7f726c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c727f8b8f8376695c504336291d10000007131d28343f4a54606d7985929e9285796d6053463a2d2013070000000000131f2c3946525f6c7985929facada093877a6d6054473a2d21140c0c0c0c0c0c0c0c0c0c0c070d10151c28333f4a546673808c99a6b3a79a8e8174675b4e4134281b0e01000000030f1b27333f49536874818e9ba7ab9f928578695f53463a2d211407000000000713202d3a4653606d7986929faca79a8e8174675b4e413025190d01000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000000000000000050e19222c3945515d6774818e9aabb4a99c908376665c5044382c1f12060000000000000000000000000006111c262f3c44505b656e7b86929fa69f92867b6e665c606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c66635c52473b2f23170a00000613202c3945515d677885929eabaa9d9184776c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c667784919eaaa99c8f8376695c50432f24180d01000e1b2834414e5b6774818e9aa7b3a9a19e9e928b7f726c655f585553504a5053555860666d74808d959facaba0958a7d7164574d42362a1e120500000916222f3c4955626f7c8895aab4a99c8f8276695c4f4330251a0e0200000000030f1c2936424f5c6975828f9ca8b5ab95897c6f6256493c2f23160900000000000000000000000000000810191e272e343c43474d53555d6064666d6f7173757777787979787877767573706e696763605c54524c46413b322a251e170e06000000000000000000000000000000000000000000000000000001070c141a1d24292c2e34383a3c3f4143444546464645444342403e3b3936302e2b261f1c17110a020000000000000000000000000000000000000000000000000000000000000000000000000000040607090c0e1011121313131211100f0d0b0807050200000000000000000000000000000000000000000000000000000b151f2931393f42444646464646464646464646464646464646464646464646464646464646464646464646464646464643423e3831281f150a00000006111b262f383f4446484b4a50535558585650483f31281d0c02030506090e121415191d2021262b2d33383e464e58636f7c8999a3afab9e9185786b554b4135291d110400101d293643505c6976838f8b7f72656060606060606060606060606060606060606060606060606060606060606060606060606060606065727f8b8f8376695c504336291d100000010b17232e3845515c6673808d99978a7d7063574a3d302417070000000000131f2c3946525f6c7985929facada093877a6d6054473a2d211919191919191919191919191a181d20262b3844505b6674818e9ba7b3a6998d8073665a4d4033271a0d00000000000b17222d3f4c5965727f8c98aaada297887b6e6155483b2e23180c000000000915222f3c4855626f7b8898a3aea9988b7e7265584b3f3225180800000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000060e17202935404b55606d7985929fabb1a7988c7f7265544a3f34281c100300000000000000000000000000000a141d27333f49535e69717e8b949ea3989083786d60606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e616060606060606060606060606060606060606060606060606060606060605957524a40352a1f1307000004111d2935414c55697683909ca9ab9f928578695f606060606060606060606060606060606060606d7986929faca79a8d8174675a4e4134271b0700000e1b2734414e5a6774818d9aa7ada19792919692877f776f6a6562605b545c6062656a6f78808d929ca7afa4999083786c6053463b30251a0e0200000814212e3b4754616e7b8798a3aeaa9d9084776a574d42362a1e12050000000005111d2935414c566a7783909daaafa399877b6e6154483b2e2115080000000000000000000000000009111a222a303940454e53575f62676d7175797b7d8082838485858685858483817f7d7b7874706d66615e56524c443e36302920180f07000000000000000000000000000000000000000000000000030b12181f252a2f35393a404446494c4e5051525253525251504e4c4a4746413c3a37312b28221c140b070000000000000000000000000000000000000000000000000000000000000000000004070c10121316191b1d1e1f1f201f1f1e1d1b19171414110e0806030000000000000000000000000000000000000000000000040d171f272e333637393939393939393939393939393939393939393939393939393939393939393939393939393939393736322d271f160d03000000000a141d262d3337393c3e3f4446484b4b4a453f362d1f160c0b0f1213151a1e2121252a2d2e31373a3d44485058606a74818e9babb5a99d9083766a5d50432f24180d0100101d293643505c6976838f8b7f72655853535353535353535353535353535353535353535353535353535353535353535353535353535865727f8b8f8376695c504336291d1000000006111c2834404b54626f7c88979a8d8073675a4d402e23180c0000000000131f2c3946525f6c7985929facada093877a6d6054473a2d252525252525252525252525262624292c31373f4a54606c7985919eabb3a9988b7e7165584b3e3225180b00000000000616232f3c4956626f7c8998a2aea9978b7e7164544b4034281c1004000004101d2935404b5565727e8b98aaada197887c6f6255483c2f22150900000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d211407000000000000000000030a0f182029323b45515d67727e8b97a2adab9f95887b6e6155483b2e23170c000000000000000000000000000000020b17222d38414d57626c75828f97a29f958c7f736a606d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e615553535353535353535353535353535353535353535353535353535353534d4b4740382e24190e020000010d19242f414d5a6774808d9aabaea298887b6e61555353535353535353535353535353535355626f7c8899a3afa9988b7e7265584b3f3225180c00000e1a2734414d5a6774808d9aa7ab9e9285849199928c827c76726e6c666b666d6e72767c828d929ca4aea69f93877c6f655b504437291f14090000000713202d3a4653606d7986929facab9f928578695e52463a2d201407000000000713202d3946525d687885929eabac9f9286796d6053463a2d20130700000000000000000000000009121b232c343c424b51585f62696e747a7d8185888a8c8f9091919292929191908e8c8a8884807d79736d68615e565046413a322a2119100700000000000000000000000000000000000000000000060d151d24293136394045474a515356585a5c5e5e5f605f5f5e5d5b595754524c4847433c38332d261d18120b03000000000000000000000000000000000000000000000000000000000001070c1013181c1f20232527292b2b2c2d2c2c2b2a28262421201e1915120f0a0300000000000000000000000000000000000000000000050d151c2227292a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2a2926221c150d040000000000020b141b22272b2d2f2d3338393b3e3e3d3a342d241b1114171b1f2022252a2d2e3036393a3d4246484f545a616a6f7c87939facb2a8998d8073665a4d4033271a070000101d293643505c6976838f8b7f7265584c4646464646464646464646464646464646464646464646464646464646464646464646464c5865727f8b8f8376695c504336291d10000000000c18232e394653606c7985929c90837669544b4034281c100400000000131f2c3946525f6c7985929facada093877a6d6054473a3232323232323232323232323232332f35393c4347505b66707d8997a1adada297887c6f6255493c2f22160900000000000713202d3a4653606d7985929faba79b8e8174665c5145382c1f160c06060c141f2c3845515d6775828e9ba8ab9e9285786c605346392d20130600000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d21140700000000000205060b0f151a212a323b444e58606d7984919ea9b2a89d908376695f53463a2d1c11060000000000000000000000000000000006111b262f3b45505a616e7b85929fa59f92877c6f666d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e61554846464646464646464646464646464646464646464646464646464646403f3b352e261c120700000000081724313e4a5764717d8a99a3afaa988b7e7165574d42464646464646464646464646424d5765727f8c98abada297887b6f6255483c2f22150900000d1a2734404d5a6773808d9aa6ab9e92857d89929f948f88827e7b79787778797b7f828990949da4aea69e938d80736b6053493f3327170d0300000006121f2b3844505c667784909daaaea298877b6e6154483b2e21150a000000000714212e3a4754616d7a8797a1adaa9e918477665c5145382c1f1306000000000000000000000009121b242d353e464e545c606a6f757b81868a8e929797999b9d9d9e9f9f9f9e9d9d9b999796918d8985807a746e68615a524c443c332b2219100700000000000000000000000000000000000000000910181f272f353b42464b5153545c60636567696b6b6c6c6c6b6b6a686664615e5655534e46443f382f28231d150c05000000000000000000000000000000000000000000000000000003090e12181d1f23282c2d3032343638383939393838373533312e2d2a25211f1b150f0b06000000000000000000000000000000000000000000040b11161a1d1e202020202020202020202020202020202020202020202020202020202020202020202020202020201d1c1a16110a0300000000000000020a11171b1f202222282b2d2f3132312e29221b191e2022272b2d2f31363a3b3e4146474a4d53555960636c717c859199a4afaca096897d706356493d3023160a0000101d293643505c6976838f8b7f7265584c3f393939393939393939393939393939393939393939393939393939393939393939393f4c5865727f8b8f8376695c504336291d1000000915202b353f4744505b6575828f9b918578665c5145382c1f130600000000131f2c3946525f6c7985929facada093877a6d6054473f3f3f3f3f3f3f3f3f3f3f3f3f3f3f40414045474e535b606c7883909da9b3ac9e9285796c605346392d201306000000000006121f2b3844505c6675828f9caaab9e9285796d6053463d31281e171515171e28313a4753606d7985929facaa9b8e8175655b5044372b1f120500000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d21140c0c0c0c0d090e1114171b1f262b333b444c56606a73808c96a1adada1968a7e7164574d42362a1e0a0000000000000000000000000000000000000a141d29333f46525e69717e8a939ea3999083796d6d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6155483b39393939393939393939393939393939393939393939393939393933322f2a241c130a00000000000714212e3a4754616d7a86929faca89b8e8275695e53463d313939393939393939303946525e6976828f9ca9ab9e9285786c605346392d20130600000d192633404c5966737f8c99a6ab9f928578808d939f9c948f8b888685848586888b8f949c9fa6aca49d948f81786c60594f41382d2217050000000003101c28343f4a546875818e9ba8b3aa978a7d7064574a3d32271b0d04000001081623303d495663707c8996a9b3a89c8f827569544b4034281c10040000000000000000000007101b242d363e474f585f666d737c82878e92989b9ea2a9a6a8aaa8a7a6a6a6a7a8a9a8a6a8a19e9a97928c86807a716c615e564d453c342b22190e0500000000000000000000000000000000000009121b222a313940454d53555d6065666d6f72747677787979797877767573716e6867625f5853504a423d342e271e170e05000000000000000000000000000000000000000000000001070c141a1d24292c2e34383a3c3f4143444546464645444342403e3b3936302e2b261f1c17110a0200000000000000000000000000000000000000060e151b1f21222323232323232323232323232323232323232323232323232323232323232323232323232323232322211f1a150e06000000000000000000060b0f121315171c1f2022252524211d1d20252a2d2d3337393c3f4246484b4c525457575f61656b70767e859197a1abb1a79d9184786c605346392d2013060000101d293643505c6976838f8b7f7265584c3f322d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d323f4c5865727f8b8f8376695c504336291d1000010e1a26313d4751595e5f6673808c999786796d6053463a2d20130700000000131f2c3946525f6c7985929facada093877a6d60544c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4d4d4b5153585f626d737f8c959fabafa49a8d8174665b5044382b1f1206000000000003101c28343f4a5464717e8b98a3ada2978a7d7064594f433a30282322222227303a434f5964717e8a98a2aea2988a7d706453493f33271b0f0300000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d211919191919191a191e2022272b31373e454d565e686f7c87929fa8b1a79e9184786d6053463b31261a0e000000000000000000000000000000000000020b17212a36424d56616c75818f97a1a0958c80736d798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6155483b2e2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2626231f19120a0100000000000713202d3946525d6876828f9ca9ac9f92867b6e61584e433b322c292424292c3139424d57616e7b86929faca89b8e8174655b5044372b1f120500000c1825323f4b5865727e8b98a5ac9f92867977818c939a9f9c989993929192939a989c9fa6aba8a09d928d82796d665b50463d2f261b110600000000000b17232e3f4b5865727e8b98a8b2a69a8d807367584e43372b1f15100c090e131e2a36414c5666727f8c99a5b3aa998c7f7366594c402e23180c00000000000000000000050e19222d363e485059616a6f7980878f93999fa3aaabaaaaa29f9d9b9a9a999a9a9b9d9fa2aaa9aba9a19e98928d857e756d685f574e463c342a20170c030000000000000000000000000000000009121b242c343c434b51575e61676d7175797c7f81838485858685858483817f7d7a77736f6a64605b544f454039302920170f05000000000000000000000000000000000000000000030b12181f252a2f35393a404446494c4e5051525253525251504e4c4a4746413c3a37312b28221c140b07000000000000000000000000000000000006101820262b2e2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2f2e2b262018100600000000000000000000030506060b0f12131518181b1e25292d3036393b3f4446484b4d535457565e616467696e72777d828a9297a1a9b3aa9f958b7e71665b5044382b1f12060000101d293643505c6976838f8b7f7265584c3f322520202020202020202020202020202020202020202020202020202020202025323f4c5865727f8b8f8376695c504336291d100004111d2a36424e59636a6c6c727f8b9894877a6e6154473b2e21140800000000131f2c3946525f6c7985929facada093877a6d605858585858585858585858585858585859595a555d60646a6e767f8c919ca7b1a99f93877c6f62544a3f33281c0f030000000000000b17232e3a4754606d7a86929faca99c9083766b60554b423a342e2f2e2d333a424b55616b7683909daaab9f9285796d6053473a2d22170b0000000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2525252525262627252a2d2d33373c434750575f686e7a849199a3afaa9f958b7e71665c504438291f140900000000000000000000000000000000000000050f1925303b44505a616d7a85929ea59f92877c6f798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6155483b2e22202020202020202020202020202020202020202020202020201a1917130e070000000000000005111d2935414c5664717e8b96a1ada3998d80746a60564d443e39352f2f35383c434b545e6973808d99a3aca096897d706353493f33271b0f0300000b1824313e4b5764717e8a97a4aea399867a6d74808891969d9fa49f9e9e9e9fa4aca9a7a79f9d95918980786d675c544a3f342b1d140a0000000000000615222f3c4855626f7b8896a0acaa9d9184776a6054473c31271f1c181b1a1e242d3946525e6876838f9ca9aea298897c706356493d30231607000000000000000000020d17202b343e48505a616b707c838c92999fa4abaca7a09d999892908f8d8d8d8d8d8f909298989c9fa4abaaa29f97928a827a6e6960584e463c32291e150b00000000000000000000000000000008121b242d363e464e555d60696e74797e8285898b8d8f91919293929291908e8c8a8784807c76716c666059514b433b332921170e0500000000000000000000000000000000000000060d151d24293136394045474a515356585a5c5e5e5f605f5f5e5d5b595754524c4847433c38332d261d18120b030000000000000000000000000000040e18222a31373a3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3c3a37312a22180e03000000000000000000000000000003060b141a20262b3035393b4146474950535558575e616467686d7074777b7f84898f949fa2a9b2aaa2989083786d60544a3f33281c0f030000101d293643505c6976838f8b7f7265584c3f322519131313131313131313131313131313131313131313131313131313131925323f4c5865727f8b8f8376695c504336291d100006121f2c3845525e6a757979797e8a9795887b6e6255483b2f22150800000000131f2c3946525f6c7985929facada093877a6d656565656565656565656565656565656565666768676d71757b828c919ca4adaba2978e81756a5f5342382d22170b000000000000000613202c3945515d6775818e9ba6ab9f94897d70675d544c443f3c3b3b3c3f444b545d67707d89959faba4998d8174675c5145382c1b11060000000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473a32323232323232333430363a3b3f44464e535a61696e7a839096a1abaea3989083786c60544a3f34281c1003000000000000000000000000000000000000000009141f29323e46525e68707e8a939ea399908378798693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6155483b2e22151313131313131313131313131313131313131313131313130d0c0a07020000000000000000010d1924303a4653606d7984919ea7ab9f92877c6f685e564f47454141414045474e555c666e7b86929faba89e9184786c605346392d22170b0000000a1623303d495663707c8996abb5ab94877b6e6e737d848a9095989b9d9e9f9f9f9e9c9a9895908a847d736d665c554b42382d22190b020000000000000815212e3a47535f6a7784919eabaca095887c6f62584e4339312c282327262b2f35414c56616d7a86929facab9f9285796d6053463a2d20130700000000000000000009141f29323d46505a626c717d8690959fa3ababa49f9b95908c898584828180808081828385888b8f93999fa2aaa9a19e938f847b6f6a60584e443b30271d12070000000000000000000000000006101a242d363f4850585f676d737b80858b8f9298989a9c9e9e9f9f9f9e9e9d9b999795908d88837e786f6b605c554d453b332920170c0300000000000000000000000000000000000910181f272f353b42464b5153545c60636567696b6b6c6c6c6b6b6a686664615e5655534e46443f382f28231d150c05000000000000000000000000000a15202a343c434748494949494949494949494949494949494949494949494949494949494949494949494949494949494847433c342a20150a00000000000000000000000000020a11171f262a32373a4146474c5254535b60626568696e7174777a7d8084888c91959c9fa6adafa9a19892867b6e665c5142382d22170b000000101d293643505c6976838f8b7f7265584c3f3225190c06060606060606060606060606060606060606060606060606060c1925323f4c5865727f8b8f8376695c504336291d10000613202c3946535f6c798786868a909a95887b6f6255483c2f22150900000000131f2c3946525f6c7985929facada093877a72727272727272727272727272727272727272737475777a7d82878f949ca3adaba39992857b6e61584e432f261c11060000000000000004111d2935414c55626f7c88949faba69e9184796d665d56504a494848494950555d666d7984919ea7aa9f93877b6e61554b4034291c0a000000000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6054473f3f3f3f3f3f3f3f404042424647495053585f626c717b839095a0a8afa59f92867c6f655b5042382e23170c000000000000000000000000000000000000000000020d17202a36414c56616c75818e96a1a0958b7e788693a0aca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6155483b2e2215080606060606060606060606060606060606060606060606000000000000000000000000000008131f2c3845515c67727f8b95a0aba39991847a6e68615954514c4e4e4b5153575f676d78839098a2aca0968b7f72665b5044382b1b11060000000815222e3b4855616e7b8899a3afa295897c6f626b6f797e83888b8e909192929291908e8b87837e78706b605c544b43392f261c10070000000000000006121f2b37434e586673808d99a3afa89b8e81756a5f554b433c38342e3431373a4145525d68737f8c99a3afa79b8e8175675c5145382c1f13060000000000000000030d1925303b444e58626c717e879298a0a7afa79f99938e88837f7c79777574737373747577797c7f83878d92989ea5ada59e9691857c6f6a5f564c42392e23180c030000000000000000000000030c18222c363f48505a616a6f7980868d92979c9fa2aaa7a9a8a7a6a6a6a7a8a9a8a6a7a09d9a94908a837c746d675e574d453b32291e150a0000000000000000000000000000000009121b222a313940454d53555d6065666d6f72747677787979797877767573716e6867625f5853504a423d342e271e170e050000000000000000000000030f1b26313c464e53555656565656565656565656565656565656565656565656565656565656565656565656565656565655534e463c31261a0f030000000000000000000000040b141c222831363c43474c5254565e6164656c6f7275787b7e8184868a8d9196989da0a8abb0aba59e9791867d6f695f544a402f261c1106000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d10000613202c3946535f6c79869293979aa295887c6f6255493c2f22160900000000131f2c3946525f6c7985929facb2a5988c7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f80808284868a8f92999fa6adaaa29992877d70695e52463c321d140a0000000000000000010d19242f3a47535f6a76828f99a3aca0968f82786d68605c5456555555535b60676d78818f96a0aca2988e8175695f5343392f23180c000000000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d60544c4c4c4c4c4c4c4c4c4c4d4e4d5254535b60636a6e757e859195a0a7afa59d938b7f726a5f53493f30261c110600000000000000000000000000000000000000000000050e1925303a44505a606d7a84919ea59e91847a8793a0ada194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6155483b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b55606d78839099a3aba09690837a706b64605d555b5b555d60636a6e79818e959faaa49a9184796d60544a3f33281c0a000000000713202d3a4653606d7986929faca4978a7d716460666d71777b7f8183858586858483817e7b76716d666059504a423930271d140a0000000000000000030f1a26313c4854616e7b87929faaac9f92877c6f675d554e46454041414142474c515b606d7a85929eabaca095897d7063554b4034281c100400000000000000010b151f2a36424d56606a717e889299a2aaafa49c959087817c77726f6d6668676766676768666c6f72767b80868e939fa3aaa8a09792867c6f685e544b40342820150900000000000000000000000b151e2a343e48505a626c717c848c92989fa2a9aca8a8a09e9c9a9a999a9a9b9d9fa3ababaaa69f9c95908781796e695e574d443b30261c1106000000000000000000000000000009121b242c343c434b51575e61676d7175797c7f81838485858685858483817f7d7a77736f6a64605b544f454039302920170f050000000000000000000006121f2b37434e585f6262626262626262626262626262626262626262626262626262626262626262626262626262626262625f584e43372b1f120600000000000000000000040d161d262d333b42464e53565e6165686e7175787c7e8184878a8e91939a9a9da0a8aaacaeaca69f9c938e857c6f6b60574d42392e1d140a00000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d10000613202c3946535f6c7986929fa4a6a295887c6f6255493c2f22160900000000131f2c3946525f6c7985929facb8a79c918c8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8c8c8d8e9193999c9fa3abaca69f9892877e716b61564d42342a200b0200000000000000000008131e2b37434e58626e7c87929fa7a89e948f827a716d66646262616264656c7079818f939ea8a69f92867b6e61574d4231271d1207000000000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d6058585858585858585859595a5b565e6164656c70757c828a9297a0a8afa59e938e81746d62584e41382d1e150a00000000000000000000000000000000000000000000000008131e29323e45525d68707d8a939da1978c808c99a6aea194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6155483b2e22150801010101010101010101010101010101010101010101010100000000000000000000000000000c18232e3944515c666f7c87929fa4a8a09590847d76716d6769676869676d70757b838e939ea7a59f93887d70665c5142382d22170b0000000006121f2c3844505c667784919eaaa5998c7f7266545c6064696e72747778797979787674716e6964605c544f443f3830271e150b020000000000000000000a15212d3a46535e6975818e98a3aea3999083796d675f5853514b4e4e4e4d53555d606d74818e97a1ada69d9083776b605443392e23180c000000000000000007121d27313946525e696f7c86929aa3ababa39f928d837c756f6a6662605c545a5a5a5a5a545b606265696e747b818a9298a2a9a9a19891847a6e665c51453c31261a0e0500000000000000000007121d27303c46505a626c717e8691969fa2aaaba39f9b9796918f8e8d8d8d8d8f9092999a9ea1a9aba79f9a938d837b6e695e564c42382e23170c0400000000000000000000000008121b242d363e464e555d60696e74797e8285898b8d8f91919293929291908e8c8a8784807c76716c666059514b433b332921170e050000000000000000000815212e3a47535f6a6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6f6a5f53473a2e211508000000000000000000030c161f282f383f444d53585f62686d72767a7e8185888b8e9196979a9d9fa4acaaacafacaba39f9b948f89817a6f6a60594f453b30271c0b0200000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d10000613202c3946535f6c7986929facafa295887c6f6255493c2f22160900000000131f2c3946525f6c7985929facb8ada39c9898989898989898989898989898989898989898999a9b9d9fa4abacaba7a09d9490867e716c62594f443b3022180e00000000000000000000010f1b26323c47535f6a73808d959fa8a69e948f847e7974716f6e6e6f7173787d848f939ea5a79f948c7f72695e53453c311f150b01000000000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a6d656565656565656565656566676869696e7074787d81878f939ea1a9aca49f938e81786d605b51463c2f261b0c03000000000000000000000000000000000000000000000000020c17202935414c56616b74818e96a19f9285929fabaea194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6155483b2e22150d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0a0907040000000000000000000007121d2834404a54606a727f8c929ca4a7a096918a827d7a7775747475767a7d818790959ea5a59e938d80736b60544b402f261c11060000000003101c28343f4a546875828f9ba8a89b8e817568565153575f6165686a6b6c6c6c6b696765615e5753504a423d342e261e150c070100000000000000000005121e2a36424d57616e7b86929fa6aba0958f82796f6a63605c555b5a5b575f62676d747f8c939ea9a99f948a7d7064594f4430271d120700000000000000000c18232f3943505a616e7b859198a3acaca399928b80786f6a625f585653504a4e4d4d4d4e4a505355575e61696e757e869297a2aaaaa1969082786d60574e42372b21170b0000000000000000000c18232e39424e58616c717f8a9298a0a8aba49f99928e8a8784828180808081828486898d92979ea1a8aca49f9590847b6e685e544a3f342820150a000000000000000000000006101a242d363f4850585f676d737b80858b8f9298989a9c9e9e9f9f9f9e9e9d9b999795908d88837e786f6b605c554d453b332920170c0300000000000000000915222f3c4855626f7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c6f6255483c2f2215090000000000000000000a151e283139424a50575f616a6f757a7f83868b8e9297989b9ea1a8a7aaacafacaaaba39f9c99928e89827c756d6860584f473d33291e150b0000000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d10000613202c3946535f6c7986929facaca295887c6f6255493c2f22160900000000131f2c3946525f6c7985929facacacada7a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a6a7a8aaa9a7a9a19e9a95908a837b706c625a50473e32291f100600000000000000000000000a15202b37434e58606d78839096a0a8a69e96918b85817e7c7b7b7c7e80848a91969ea5a7a0958f82776c60574d42332a1f0d0300000000000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facada093877a72727272727272727272727273737576787a7d8184898e93999ea6ada8a19a938c81786d665c50493f342a1d140a0000000000000000000000000000000000000000000000000000050e1924303a444f59606d7984919aa2989298a2aeaea194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6155483b2e221a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a171614100b050000000000000000000c18232e39424e58626d73808c929ea1a8a19e948f8a8683828181828386898e93999fa7a39f938f81786d60594f42392e1d140a0000000000000c17232e404c5966737f8c99abaa9d908477685d52464d5355585b5d5e5f5f5f5e5d5b5854534d46443f3830282321201d18130c040000000000000000020e1a25313b46535f69737f8c949fa7a79f948f837c75706d676867676869696e737a818c919ca5aaa1978f82766c6155473d331e150b000000000000000004101c2934404b55616c76828f97a1aaafa49a92877e736d665f58534e4946443f41404040413f4446484d53565e616c717c859298a2aca89f948d80736a5f53473e33281c10040000000000000004101c2834404b545f6a717e87939fa2aaa9a199938e86827e7a777574737373747577797c80858b91969da5afa79f9691847a6e665c50443c32261b0f04000000000000000000030c18222c363f48505a616a6f7980868d92979c9fa2aaa7a9a8a7a6a6a6a7a8a9a8a6a7a09d9a94908a837c746d675e574d453b32291e150a0000000000000000111e2a3744515d6a77848989898989898989898989898989898989898989898989898989898989898989898989898989898983766a5d5043372a1d10000000000000000006111c263039434b545b60696e757c81868b9093999b9ea1a9a8abadafaca9a6a8a09d9a99928f8b86817c766f6b605d564e463d352b21180c030000000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d10000613202c3946535f6c7986929f9f9f9f95887c6f6255493c2f22160900000000131f2c3946525f6c7985929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa39f9f9e9d9c9a9897928e89837e766e69615a50483f352c20170d000000000000000000000000040f1a26313c44505c666e7b8491969ea6a9a19e97918e8b898888888a8d91969ea0a8a59e9590837a6d655b50453b3121180e0000000000000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facb2a5988c7f7f7f7f7f7f7f7f7f7f7f7f7f7f80818385878a8d91969b9fa4ababa39f9691887f776d665c544a3f372d22180b0200000000000000000000000000000000000000000000000000000008131e28323e45515d67707d88939fa29fa2aab4aea194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6155483b2e2727272727272727272727272727272727272727272727272727272423201c161008000000000000000007121c27303d46515b646e73808a92979fa3a69f9c9992908f8e8e8f9092989b9fa4a69f99928c81786d665c50473d30271d0b02000000000000061724303d4a5763707d8a99a3ac9f93867a6d6054474246484c4e505252535251504e4b4846423c3b3937332d302d2c29241d160d04000000000000000009141f2a36424d57606d78828f959fa7a69f959087817d79777574747476787b80858e939ca3aaa29892857b6e615a5044352b210c03000000000000000006131f2c3845515c67707d8a949fa9b0a69f93887e716c605c544e47433c3a38342e3433342d3338393c42464d525a616a6f7c86929aa4afa69f92877b6e62594f44392d20150a0000000000000006131f2c3845515c666f7c869299a4aea8a0979187817b75716d6869676766676768676d7073797e848e939fa4aca8a0969083786d60584e43372b20150a0000000000000000000b151e2a343e48505a626c717c848c92989fa2a9aca8a8a09e9c9a9a999a9a9b9d9fa3ababaaa69f9c95908781796e695e574d443b30261c110600000000000000111e2a3744515d6a77849095959595959595959595959595959595959595959595959595959595959595959595959595959083766a5d5043372a1d1000000000000000020c17232e38424b555d666c727b82888e92999c9fa4ababadaeaca9aba39f9d9a9795918d8a86837e7a756f6b636059524c443c342b23190f06000000000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d10000613202c3946535f6c7986929393939393887c6f6255493c2f22160900000000131f2c3946525f6c7985929393939393939393939393939393939393939393939393939399929291908f8d8b8885817d77716c615f5750483f362d231a0e05000000000000000000000000000a152028343f4a545e696e7b848f939ea1a8a9a19e9a9795959495979a9ea0a8a8a19e938e837a6e685e53493f33291f0f060000000000000714212d3a4754606d7a8793a0ada69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aea5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facb8a79c918c8b8b8b8b8b8b8b8b8b8b8b8c8c8d8e909297979a9ea1a8acaba39f99928d847d736c655c544a42382e241b100600000000000000000000000000000000000000000000000000000000020c16202935414b55606b74808d96a0abaeb4bcaea194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e6155483b34343434343434343434343434343434343434343434343434343434302f2c28211a110800000000000000000b151e2b343f49525c646e737e858e92999ea1a8a39f9d9c9a9b9c9d9fa3a9a29f9b948f877f776d665c544a3f352c1e150b000000000000000714212d3a4754606d7a86929faca4998a7d7063544b403a3b3f4144454646464543413e3d4347494846443f3f3c3a39352f281f160c0100000000000000030e1a26313b44505c666d7a8390959da5a7a099938e898683828181818385888c92979da5a7a09892867d70695e52483e3323190f000000000000000003101c28343f4a54606d7984919ea6b0aa9e948c7f736c625a504a423c37322d2c282327272722282b2d31363b42465058606a707e88939fa8aea3998f82766c6155493c31261b0f00000000000004111d2935414b55606d79839098a3aba9a09691857d746e6964615d565b5a5a5a5a555c6063666d7179818b939aa4afa89f958c80736a5f54473d32271b0f010000000000000007121d27303c46505a626c717e8691969fa2aaaba39f9b9796918f8e8d8d8d8d8f9092999a9ea1a9aba79f9a938d837b6e695e564c42382e23170c04000000000000111e2a3744515d6a7784909da2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a29d9083766a5d5043372a1d10000000000000000a141e28343f4a545d676d787f868f939b9fa3abacafaca9aaa29f9c999992908d8a8784817d7a76726d68636059544f45413a322b2219110700000000000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d10000613202c3946535f6c7987868686868686867c6f6255493c2f22160900000000131f2c3946525f6c79868686868686868686868686868686868686868686868686868686868685858482807e7b7874706b64615a534d453e362d241b11080000000000000000000000000000030c17232e38424d565e696e7a828a91969d9fa7a7a7a4a2a1a1a2a4a6a7a7a09d96918a81796e685e564c41382d21170d000000000000000714212d3a4754606d7a8793a0aca69a8d8073675a4d4034271a0d01000815222e3b4855616e7b8894a1aca5988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facb8ada39c98989898989898989898989898999a9b9c9ea1a9a7aba9a8a19e99928e87817a706b605b534a423930261c1209000000000000000000000000000000000000000000000000000000000000040e18242f3a434f59606d79849199a4afbbb9aea194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e61554840404040404040404040404040404040404040404040404040404040403d3c38332c231a100500000000000000030c19222d37404a525c636c717a81868d9196989b9c9e9f9f9f9f9e9d9b9997928e89827c736c655c544b42382e231a0c03000000000000000613202c3945515d677683909ca9ab9a8e8174665c5145382e323537383939393836313d464e5456555350494b494745413a31281d1307000000000000000009141f28343f4a545e686d7a838e929d9fa7a49f9b9892908e8e8d8e8f9197999ea1a9a29e9590867d706b60574d42362c221108000000000000000006121f2b3844505c66727f8c96a0acaea2988f82776c605a50443f38302b26201f1c171a1a1a171c1f20252a30363e464e58616c73808d96a1acab9f948a7d7064584e43372b1d120700000000000613202c3945515d67737f8c95a0aaada19791847b706b615e5754524c4e4d4d4d4e4b5153545c60676d747f88939fa5afa79f92877c6f62584e43372b1d1207000000000000000c18232e39424e58616c717f8a9298a0a8aba49f99928e8a8784828180808081828486898d92979ea1a8aca49f9590847b6e685e544a3f342820150a000000000000111e2a3744515d6a7784909d9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9d9083766a5d5043372a1d1000000000000006111c26303844505c666d79828c92989ea5acaeabaca49f9d9998928f8c898683807d7a7774716d6865615e56544f48443d353028201910070000000000000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d100006121f2c3845525e6a757979797979797979766a6054473b2e22150800000000121f2b3844515d697479797979797979797979797979797979797979797979797979797979797978777674716f6c65636059555046423c332c241b12090000000000000000000000000000000006111c26303b444d575e686d757e848b9095979a9c9e9e9f9f9f9e9c9a9895908b847e756d675e564c443a2f261b0f05000000000000000714212d3a4754606d7a87939f9f9f9a8d8073675a4d4034271a0d01000815222e3b4855616e7b88949f9f9f988b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929facacacada7a5a5a5a5a5a5a5a5a5a5a5a5a5a6a6a8a9a8a6aba39f9c9996918c87817b746d6761595049413930271e140a000000000000000000000000000000000000000000000000000000000000000007131d28313d45515d676f7c87939fa7b1acaca194877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e61554d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4a48443e352c21160b000000000000000007101b252e38404a525a61686d747b8084888b8e90919292929291908e8c8985817c766f6a605b534b423930261c1108000000000000000004111d2935414b5566737f8c99a7ab9e9285796d6053463e3128282a2b2c2c2c242f39434e58606261605b53585654514b433a2f24180d0100000000000000030b17232e38424c565e686d79818990959b9fa2aaa39f9d9b9a9a9b9c9ea1a9a49f9c97928c837b706b60594f453b30241a100000000000000000000713202d3a4653606d7884919ea8b2a99f92867b6e655b50483e342e261e1b1312100c060d060b0f12131a1f252a343d46505a606d7984919ea8b0a69c8f83766a5f5347392e23180c00000000000714212d3a4754606d7a85929fa7b0a69e92857b6e696059524d47464141404040414045464b51555d606d727f8b939ea9afa3998f82766a605447392f24180c00000000000004101c2834404b545f6a717e87939fa2aaa9a199938e86827e7a777574737373747577797c80858b91969da5afa79f9691847a6e665c50443c32261b0f040000000000111e2a3744515d6a77839093939393939393939393939393939393939393939393939393939393939393939393939393939083766a5d5043372a1d100000000000000b17232e38424f59606d78828f949fa3aaafaca7a09d9a93908c8985827f7c7a7673706d686764605d5654524c48433d383229241e160e07000000000000000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d100004111d2a36424e59636a6c6c6c6c6c6c6c6c6260584e43372b1f130600000000101c2935414d5862696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6a69676562605b53544f49453e37312a211a12090000000000000000000000000000000000000a151e29323b454d565d606c71797e83878a8d8f9192929292918f8d8b87837e79716c605d554c443b32281d140a00000000000000000714212d3a4754606d7a8793939393938d8073675a4d4034271a0d01000815222e3b4855616e7b8893939393938b7f7265584c3f3225190c000000000000131f2c3946525f6c7985929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa39f9f9e9d9c9b99979992908c89847f7b746e69605d554f443f382f271e150c020000000000000000000000000000000000000000000000000000000000000000010c161f2935404b55606b73808d95a09f9f9f9f94877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e615a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a57554f473e33281c1004000000000000000009131c262e38404850565e61696e73787c7e818384858686858583817f7c79746f6a625f585049413930271e150a000000000000000000010d18242f3b4855616e7b88959faba1978a7e71645a50433a2f241d151f141c2935404b55606a6f6e6c65676563605d554b4135291d1104000000000000000006111c26303a444c565e676d747c83898e9298999b9d9e9f9f9f9f9e9d9b999993908b857f786e6960594f473d33291f1208000000000000000005111e2a36414c5664707d8a96a1adada1978c7f72695e53493f3628231c140c0a060300000000000306090e1419222b343e45515d67717e8a96a0acab9f94887c6f62544b4034281c100400000006131f2b37434e5866727f8c97a2adaa9e948a7d70695f574f46423b3935303433342e34383a40454b515b626d74818e97a1adab9e94897c6f62554b4035291d1004000000000006131f2c3845515c666f7c869299a4aea8a0979187817b75716d6869676766676768676d7073797e848e939fa4aca8a0969083786d60584e43372b20150a0000000000111e2a3744515d6a77838686868686868686868686868686868686868686868686868686868686868686868686868686868683766a5d5043372a1d10000000000003101c28343f4a54616b74818e949ea6aeafa7a09d95908b8783807c797673706d676764615e565754524c4746413a38322c272119130c0400000000000000000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d1000010e1a26313d4751595e5f6060606060606055544e463c32271b0f03000000000d1925303b4650585d5f6060606060606060606060606060606060606060606060606060605f5f5e5d5c5a585553504948443d39342b261f180f0800000000000000000000000000000000000000030c172029333b444c525a61676d71767a7e818284858686858483817e7b77716d67615a514b433b322920160b0200000000000000000714212d3a4754606d7a868686868686868073675a4d4034271a0d01000815222e3b4855616e7b868686868686867f7265584c3f3225190c000000000000131f2c3946525f6c798592939393939393939393939393939393939398929291918f8e8d8b8886837f7c78736e69615f57514c433e332d261d150c0300000000000000000000000000000000000000000000000000000000000000000000040d18242f39434f59606d798390999393939393877b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b6e67676767676767676767676767676767676767676767676767676767676767676361594f44382c2014070000000000000000010a141c262e363e444c52575e61666a6f7274767878797978787675726f6d66626058534e443f382f271e150c03000000000000000000000714212d3a46535f697683909da8a99d9083766c61554b40352e27222222262d3845515d676f7c7b797674726f6d675d5145392c2013060000000000000000000a141e28323a444c555c606b6f777d8185898c8e90919292929291908f8d8a86837e79726d665f574f473d352b20170d0000000000000000000714202d3946525e6876828f9ca8b2ab9e9185796d60574d41382d2417110a02000000000000000000000002091019222935404b55606c7884919dabb0a69a8e8174665c5145382c1f13060000000815222e3b4754606a7884919ea9b1a79c8f82756c61574d453d36302d292427272723282c2e343a4145515b606d7a85929eaab0a69b8e8275675d5145392c1f13060000000004111d2935414b55606d79839098a3aba9a09691857d746e6964615d565b5a5a5a5a555c6063666d7179818b939aa4afa89f958c80736a5f54473d32271b0f0100000000101d2936424f5b677177797979797979797979797979797979797979797979797979797979797979797979797979797979797671665b4e4236291c10000000000006121f2b3844505c66707d89939da6b0aca49f959089837f7b76736f6d666663605d555754524c4a4745413a3936302c27211b160d08020000000000000000000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d1000000915202b353f474e5253535353535353534947433c342b20150a000000000008141f2a343e464d5152535353535353535353535353535353535353535353535353535353535252514f4d4b4846443f3838332d28221a140e06000000000000000000000000000000000000000000050e172129323a414550555c6064686e7174767778797978787674716e6965605d555045403a312920170e040000000000000000000713202c3945525d687679797979797979736e64584c3f3326190d00000714212d3a46535f697679797979797979726d62564a3e3124180b000000000000131f2c3946525f6c798686868686868686868686868686868686868686858585848381807e7c7976736f6c65615e57534d45413a3127221b140b0300000000000000000000000000000000000000000000000000000000000000000000000007121d27313d45515c676f7c86868686868686867b6e6154483b2e211508000000000000000000121e2b3845515e6b7884919eabaea194887b737373737373737373737373737373737373737373737373737373737373737373706b6155483c2f231609000000000000000000020a131c242c323b41464d5254585f626568696b6c6c6c6c6b6a686663605c54544e4e4c4841382f1d150c03000000000000000000000005121e2a36424d5764717e8b96a1ab9f958a7d70675d51454039302f2e2f2f38404b55606d7986888583817e7c796d6054473a2d211407000000000000000000020c162029323a434b515960636b7075797c7f82838485868685858382807d7a76726d67605c544d453d352b23190e050000000000000000000814212e3b4754616e7a87939facafa3998c7f72675d51453b2f261b1206000000000000000000000000000000071018242f3944505b66727e8b99a3aeac9f9285796d6053463a2d2013080000000916222f3c4955626f7c8896a1acaca095897c6f625a50453b332a25201d191a1a1a181c1f23282f353f45515d67727f8b98a2aeac9f9286796d6053473a2d201406000000000613202c3945515d67737f8c95a0aaada19791847b706b615e5754524c4e4d4d4d4e4b5153545c60676d747f88939fa5afa79f92877c6f62584e43372b1d1207000000000e1a27333f4a555f676a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a665f554a3e32261a0d00000000000713202d3a4653606d7883909da5afafa49a938c837d77726e686663605c545653514b4a4746413e3a3935302d2a251e1b17151312100b0600010000000000000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d100000040f19242d353d424546464646464646463c3b37322b22190f040000000000020d18222c343b4144464646464646464646464646464646464646464646464646464646464646454443413e3c3937332d2c27211d170e09030000000000000000000000000000000000000000000000050f1720282f353e434b5153565e616467696b6b6c6c6c6b696765615e5753514b433e352f281f170e050000000000000000000004111d2935414c565d6c6c6c6c6c6c6c6c67645c52473b2f23170b000005121e2b37424d575f6c6c6c6c6c6c6c6c65625b51463a2e221509000000000000121f2b3844515d6974797979797979797979797979797979797979797979787877767573716f6d666662605b53534d47423c352f281f17110a0200000000000000000000000000000000000000000000000000000000000000000000000000010b151f2834404b55606a6f797979797979797976695e53463a2d211407000000000000000000121e2b3845515e6b7884919eabb4a79a8e818080808080808080808080808080808080808080808080808080808080808080807d7063574a3d3024170a00000000000000000000020e1925303b444c525f6060606060605d5d5e5f5f5f5f5e5d5b596060606060605a58534a41362b2014080000000000000000000000020e1a26313b4653606d7984919ea7a79e9184796d605b514b423d3c3b3c3d424a515d67717e8b9892908e8b897e7164574b3e3124180b00000000000000000000050e172029313940454f54596063676d70727576787879797878777573706d6865605d55504a423c332b23191107000000000000000000030f1b27333f495364717e8b9aa4afac9f92867a6e61554b4033291d140a000000000000000000000000000000000007121d28333f4a54616d7a86929facaea298897d706356493d2f24190d0100000d1a2633404d596673808c99a8b2aa9d9083776a6054483e332a211a14110d080d070c1013181d242935414c55606d7985929fabaea2988a7d7164574a3e2e23170b000000000714212d3a4754606d7a85929fa7b0a69e92857b6e696059524d47464141404040414045464b51555d606d727f8b939ea9afa3998f82766a605447392f24180c000000000a16222e39434d555b5d606060606060606060606060606060606060606060606060606060606060606060606060606060605d5b554d43382d22160a0000000003101c28343f4a5464717e8a95a0acaea49f93888078706b65615e565653514a494745403d3a3936302d2c292424242b29262422201f1c1711110c0600000000000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d1000000008121b242b31363839393939393939392f2e2b27201910070000000000000006101a222a30353839393939393939393939393939393939393939393939393939393939393938373634322f2d2b27221b1c16110c060000000000000000000000000000000000000000000000000000050d161e242931394045474c5254575a5c5e5f5f5f5f5e5c5a5854524d474540393129241d160d050000000000000000000000010d19242f3a444c525f606060606060605a58524a40362b1f13070000020e1a26313c454d535560606060606060585651493f34291e1206000000000000101c2935414d5862696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6a6968666462605c545653504946423b373129241e160d0600000000000000000000000000000000000000000000000000000000000000000000000000000000030d18232e39434e5860626c6c6c6c6c6c6c6c6c5e574d42362a1e1205000000000000000000121e2b3845515e6b7884919eabb7a99d938e8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8073665a4d4033271a0d0000000000000000000005111e2a36414c565e6c6c6c6c6c6c6c6a675f555353524f5960636c6c6c6c6c6c67645c53483c3024180b00000000000000000000000009141f2c3844515c66727f8b95a0aca1968e81756e605c544f4a4948494a4e545b606d7984919e9f9d9a92857a6d6053473a2d2014070000000000000000000000050e171f272f343d43484f54555c606366686a6b6c6c6c6c6b6a686664615e5653514b443f38302a211911080000000000000000000005121f2b3744505b6575818e9bacb6a99c8f8276685e5243392f21170b020000000000000000000000000000000000010b17222d3846525d6875828f9ca8b4aa9a8d807367564c4135291d11040005111e2a36424d576976838f9ca9b5ab998c7f7366584e43362c21180f0905010000000004070c1319242f3a45515d6774818e9aa7b4aa9b8e817468544a3f34281c1003000006131f2b37434e5866727f8c97a2adaa9e948a7d70695f574f46423b3935303433342e34383a40454b515b626d74818e97a1adab9e94897c6f62554b4035291d100400000006111c27313b434a4f5153535353535353535353535353535353535353535353535353535353535353535353535353535353504e4a433a31271c11050000000006121f2b3844505c6675828f9ca7b1aa9d928b7e736d66605954524d494644403d3a39352f2e2d2a252120282d3031383533312f2d2b28231c1d181109000000000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d100000000009121920262a2c2c2d2d2d2d2d2d2d22221f1b150f070000000000000000000810181f25292b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2a29272522201f1b1711100b050000000000000000000000000000000000000000000000000000000000040c13191f272f34383b4146474b4e4f515253535251504e4b4846423b38352f271f18130c040000000000000000000000000008131e28323a414553535353535353534d4c4740382e24190e0200000009141f2a333c424648535353535353534c4a463f372d23180d010000000000000d1925303b4650585d5f606060606060606060606060606060606060605f5f5e5e5c5b5a585553514b4946443f3836312b261f19130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303c464e54555f606060606060605f534d453b31251a0e02000000000000000000121e2b3845515e6b7884919eabb7afa59d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a998d8073665a4d4033271a0d000000000000000000000714202d3946525e68767979797979797771675b4f464854606b70797979797979746e64584c4033271a0d01000000000000000000000004101c2834404a54606d7883919aa4a89e938c80746d6660595755555556585f666c75818e96a1aca3998e8174675d5145392c201306000000000000000000000000050d151d232932383d44484b515356595b5d5e5f5f5f5f5e5d5c5a5754524c47454039342e261e180f0800000000000000000000000613202d394653606c7885929eabb3a9988b7f7265564c4131271d0f050000000000000000000000000000000000000006111c2935414c5665727f8b98aab4aa9d918477685d5245392c201306000714202d3a46525e697885929eabafa399897c6f6256493d32231a0f060000000000000000000108131e2935404b5564707d8a97a9b3aa9d908377665c5044382b1f120600000815222e3b4754606a7884919ea9b1a79c8f82756c61574d453d36302d292427272723282c2e343a4145515b606d7a85929eaab0a69b8e8275675d5145392c1f1306000000000b151f2931393f42444646464646464646464646464646464646464646464646464646464646464646464646464646464643423e3831281f150a00000000000713202d3a4653606d7985929facaea3988d80746c605c544f4746413c3a38342e2d2c292421201d19242c34393d3e4442403e3b3a38342e2e29231b12090000000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d100000000000080f151a1d1f20202020202020201615130f0a040000000000000000000000060d14191c1f1f202020202020202020202020202020202020202020202020202020201f1f1e1c1a181513120f0b0600000000000000000000000000000000000000000000000000000000000000000001080d151d23292c3036393b3e414344454646454543413e3b3a36302c29241d150d07010000000000000000000000000000010c1620282f35394646464646464646403f3b362e261c120800000000030e18212a31373a3b464646464646463f3e3a342d251b11060000000000000008141f2a343e464d51525353535353535353535353535353535353535352525251504e4d4b494645403c3937332d2a251f1a150d080100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2b343c43474953535353535353534846423b33291f140900000000000000000000121e2b3845515e6b7884919eabacacafa9a7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6998d8073665a4d4033271a0d000000000000000000000814212e3b4754616e7a86868686868683776a5d5144495663707d8686868686868074675a4e4134271b0e010000000000000000000000000c18232e3944515c66707d88939fa6a59c928c8079706b666462616263666a6f78808d939ea9a89f92877b6e62554b4035291d100400000000000000000000000000030b121821272c323839404546494c4f50515253535252504f4d4a4746413a39352f28231c150c060000000000000000000000000815222e3b4855616e7b8897a1adada197887b6e6255483b3022150b0000000000000000000000000000000000000000000d1924303c4855626f7b8898a2aeaca095877a6d6054473a2d211407000814212e3b4754616e7b8797a2adac9f92867a6d6053473a2d2014070000000000000000000000010d18242f3b4754616e7a8797a1adac9f9286796d6053463a2d20130700000916222f3c4955626f7c8896a1acaca095897c6f625a50453b332a25201d191a1a1a181c1f23282f353f45515d67727f8b98a2aeac9f9286796d6053473a2d20140600000000040d171f272e333637393939393939393939393939393939393939393939393939393939393939393939393939393939393736322d271f160d0300000000000815222f3b4855626e7b8898a2aeac9f92867a6d615a504a423d3936302d2c282320201d18141317222c363e45494b514f4d4a4846443f383a342d241b110600000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d1000000000000004090e1112131313131313131309080603000000000000000000000000000002080d10121313131313131313131313131313131313131313131313131313131313131211100e0b0906050300000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f252a2d2e3134363838393939383634322e2d2a251f1d18120b030000000000000000000000000000000000040d161e24292c393939393939393934332f2b241c140a010000000000060f181f262b2d2e3939393939393932312e29231b13090000000000000000020d18222c343b41444646464646464646464646464646464646464646464545444342403e3c3a38342e2d2b27221b1a140e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c19222b32373b3c46464646464646463b3a36312921170d0300000000000000000000121e2b3845515e6b7884919e9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f998d8073665a4d4033271a0d000000000000000000000814212e3b4754616e7a87939393939084776a5d5144495663707c89939393938d8174675a4e4134271b0e0100000000000000000000000007121c2834404a54606b73808d949fa7a49c928d837d7773706f6e6f7072767c828d929da5aaa1968d8174695f5343392f24180d01000000000000000000000000000001070c161b21272c2e34383a3d3f42434545464645454442403d3a3936302c29241d17110a03000000000000000000000000000a1724303d4a5763707d8a96a9b3ab9e928578695f53473a2e2114030000000000000000000000000000000000000000000813202d394653606c7985929facb1a795897c6f6256493c2f231609000916232f3c4956626f7c8995a9b3aa9e918477675d5145382c1f13060000000000000000000000000714202d3946525e687885919eabaea398887b6e6255483b2f22150800000d1a2633404d596673808c99a8b2aa9d9083776a6054483e332a211a14110d080d070c1013181d242935414c55606d7985929fabaea2988a7d7164574a3e2e23170b0000000000050d151c2227292a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2a2926221c150d040000000000000a1723303d4a5663707d8996aab4a89c8f8275685e52443f38302d2a25201f1c181413100d07111d28343e485055575e5c59575553504a4a453f362d23180c01000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d10000000000000000001040606060606060606060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c1014191e20212427292b2c2c2c2c2b29272521201e1a14100c070100000000000000000000000000000000000000040c13191d202d2d2d2d2d2d2d2d2726231f19120a0200000000000000060e141a1e21222d2d2d2d2d2d2d2524221e1811090100000000000000000006101a222a303538393939393939393939393939393939393939393939393837363533312f2d2c2823201f1b17110e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101920272b2e2f39393939393939392e2d2a251f170f050000000000000000000000121e2b3845515e6b7884919393939393939393939393939393939393939393939393939393939393939393939393939393938d8073665a4d4033271a0d000000000000000000000814212e3b4754616e7a87949f9f9d9084776a5d5144495663707c89969f9f9a8d8174675a4e4134271b0e01000000000000000000000000000c18232e39424f59606d788290959fa7a49d95908984807d7c7b7c7d7f838890949da4aaa39891847a6d61574d4231281d12070000000000000000000000000000000000040a0f161b1d23282c2d30333537383939393938373533312e2d2a251f1d18120c060000000000000000000000000000000c1926323f4c5965727f8c98a5b2a99c8f837669574d42372b1e120600000000000000000000000000000000000000000006121f2b3844505b667783909daab1a4978b7e7164584b3e3125180b000a1723303d4a5663707d8996a3b0a99c90837669554b4035291d100400000000000000000000000005111e2a36414c566a7683909da9b4aa96897c6f6356493c302316090005111e2a36424d576976838f9ca9b5ab998c7f7366584e43362c21180f0905010000000004070c1319242f3a45515d6774818e9aa7b4aa9b8e817468544a3f34281c10030000000000040b11161a1d1e202020202020202020202020202020202020202020202020202020202020202020202020202020201d1c1a16110a03000000000000000b1724313e4a5764717d8a97a4b0a6998d807366564c41342e26201e191312100c070604010815212d3945505a61646b68666462605c545651483f34291d1105000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000000000004090e1112131313131313131313060400000000000000000000000000000000000000000000000004080a0a1313131313131313130e0e0b080300000000000000000000000000000000000000000000000000000000000004080e111414181b1c1e1f20201f1e1d1b181514120e0904000000000000000000000000000000000000000000000001080d111314202020202020201a1917130e080100000000000000000003090e12141520202020202020191815120d060000000000000000000000000810181f25292b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2b2928272522201f1c1813120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e151b1f22222c2d2d2d2d2d2d2d21211e1a140d05000000000000000000000000121e2b3845515e6b788486868686868686868686868686868686868686868686868686868686868686868686868686868686868073665a4d4033271a0d000000000000000000000814212e3b4754616e7a8794a1aa9d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e010000000000000000000000000007121c27303d44505c666d7a8390959da5a7a09d95918d8a888888898c90959c9fa6a9a19892867c6f685e52453c311f160c0100000000000000000000000000000000000000040b1012181c1f202326282a2b2c2c2c2c2b2a29272421201d1913100c0701000000000000000000000000000000000e1b2834414e5b6774818e9aa7b3a79a8d8074675a4d4131261a0e02000000000000000000000000000000000000000000030f1c28333f4a546875818e9ba8b3a6998d8073665a4d4033271a0d000b1724313e4a5764717d8a97a4b0a89b8f8275685c4f422f24180c00000000000000000000000000010d192530424f5c6875828f9ba8b0a3968a7d7063574a3d3024170a000714202d3a46525e697885929eabafa399897c6f6256493d32231a0f060000000000000000000108131e2935404b5564707d8a97a9b3aa9d908377665c5044382b1f120600000000000000060a0e10111313131313131313131313131313131313131313131313131313131313131313131313131313131310100d0a050000000000000000000b1724313e4a5764717d8a97a4b0a5998c7f7266594c3f30231c15110e080807070808090e131925303d4955616c71777573716e6d6665625b51453a2e221509000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d10000000000000000000000000000000000000000000000000000000000000000000080f151a1d1f20202020202020202013100c070100000000000000000000000000000000000000050b101416172020202020202020201b1a18140f0901000000000000000000000000000000000000000000000000000000000000020507080b0e10111213131212100e0b0807050200000000000000000000000000000000000000000000000000000001040707131313131313130d0d0b07020000000000000000000000000002050708131313131313130c0b0906010000000000000000000000000000060d14191c1f1f202020202020202020202020202020202020201f1f1f1e1d1b1a18161313100c0705030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13151620202020202020201514120e090300000000000000000000000000111d2a3743505c6872787979797979797979797979797979797979797979797979797979797979797979797979797979797979736e63584b3f3226190c000000000000000000000814212e3b4754616e7a8794a1a99d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e0100000000000000000000000000000b151e28343f4a545d686d7a838e939ea0a8a8a09d999795949596999d9fa7aba49f9792867e706a60564c41332a1f0d040000000000000000000000000000000000000000000000070c10131316191c1d1e1f20201f1f1d1c1a171413110d080400000000000000000000000000000000000000101c2936434f5c6976828f9ca9b2a5998c7f7266594c3f3326190900000000000000000000000000000000000000000000000b17222d404d5a6773808d9aa6b3a89b8e8175685b4f4235281c0f000b1825313e4b5864717e8b97a4b1a89b8e8275685b4f4235281c070000000000000000000000000000081b2835414e5b6874818e9ba7b0a4978a7d7164574a3e3124170b000814212e3b4754616e7b8797a2adac9f92867a6d6053473a2d2014070000000000000000000000010d18242f3b4754616e7a8797a1adac9f9286796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96abb5a69a8d807367544b403428201c1816151514141515171a1e242b37434e5864717e8482807d7b7977726d62564a3d3124170b000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d10000000000000000000000000000000000000000000000000000000000000000009121920262a2c2c2d2d2d2d2d2d2d2d1f1c18120b0300000000000000000000000000000000000810171c2023242d2d2d2d2d2d2d2d2d282724201a130b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1012131313131313131313131313131313131313131313121211100f0d0b090706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608091313131313131313080705020000000000000000000000000000000f1b27333f4b5660686b6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c66635c52473b2f23170a000000000000000000000814212e3b4754616e7a87949c9c9c9084776a5d5144495663707c89969c9c9a8d8174675a4e4134271b0e010000000000000000000000000000030c17232e38424c565e686d79818991969d9fa4aca6a3a2a1a2a3a5a8a9a29f99938e857c706c61584e443a3021180e00000000000000000000000000000000000000000000000000000406070a0c0f10121213131212110f0d0a07070501000000000000000000000000000000000000000000101d2a3643505d697683909ca9b1a4978a7e7164574b3e3124180b0000000000000000000000000000000000000000000000061926323f4c5965727f8c98a5b2a89c8f8275695c4f4236291c0f000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2834414e5b6774818e9aa7b1a4978b7e7164584b3e3125180b000916232f3c4956626f7c8995a9b3aa9e918477675d5145382c1f13060000000000000000000000000714202d3946525e687885919eabaea398887b6e6255483b2f221508000000000000000000000000000000000000000000000105090b0b1313131313131313120706030000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8899a4afa89b8e8275665c51453a322c29232322212121212223252a2f353f47535f6a76828f8f8c8a8886837e7265584b3f3225180c000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000008121b242b3136383939393939393939392c29231d150d0300000000000000000000000000000008121a22282d30313939393939393939393533302b251d140b010000000000000000000000000000000000000000000000000000000003090d1012131313131313131313060300000000000000000000000000000000000000000000000000000000000000000004080c0e0f13131313131313131313131313131313131313131313131313131313131313131313131313130f0e0c080400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232f3a444e565c5e60606060606060606060606060606060606060606060606060606060606060606060606060606060605a58524a40362a1f1307000000000000000000000814212e3b4754616e7a878f8f8f8f8f84776a5d5144495663707c898f8f8f8f8d8174675a4e4134271b0e0100000000000000000000000000000006111c26303a444c565e676d747d848a90939a9a9c9e9f9f9f9e9d9b9997928d87817a6f6a615a50463c32281e0f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111e2a3744515d6a7783909daab0a3968a7d7063574a3d3024170a00000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1a99c908376695d5043362a1d10000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000a1723303d4a5663707d8996a3b0a99c90837669554b4035291d100400000000000000000000000005111e2a36414c566a7683909da9b4aa96897c6f6356493c30231609000000000000000000000000000000000000000000060c1115171820202020202020201f1312100c06000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939facab9f9285796d60564c443d38342f2f2f2e2d2e2e2f3031363a4145515b626f7c87939b999798928a7e7164574b3e3124180b000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d10000000000000000000000000000000000000000000000000000000000000040f19242d353d424546464646464646464638342f271f150b010000000000000000000000000006101a242c33393c3d46464646464646464641403c362f261d1309000000000000000000000000000000000000000000000000000000070e14191d1f20202020202020202012100c06000000000000000000000000000000000000000000000000000000000002090f14181b1c20202020202020202020202020202020202020202020202020202020202020202020202020201c1b18140f0902000000000000000000000000000000000000000000000000000000040607090c0e1011121313131211100f0d0b0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090c0e1011121313131211100e0b080705020000000000000000000000000000000000000000000000000007121d28323c444b505153535353535353535353535353535353535353535353535353535353535353535353535353535353534d4b4740382e24190e02000000000000000000000714212d3a4754606d7a8283838383838174675b4e414855626f7c8283838383827f7265584c3f3225190c00000000000000000000000000000000000a151e28323a444c555c606b70787e83878b8d909192929291908f8c8985817c746d68605850483e342b20160c000000000000000000000000000000000000000000000000000000000000000306060808080808080605030000000000000000000000000000000000000000000000000000111e2b3844515e6b7784919eaaafa396897c706356493d3023160a00000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1aa9d9083776a5d5044372a1d11000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1724313e4a5764717d8a97a4b0a89b8f8275685c4f422f24180c00000000000000000000000000010d192530424f5c6875828f9ba8b0a3968a7d7063574a3d3024170a00000000000000000000000000000000000000000911171d2124252d2d2d2d2d2d2d2d2b201f1c17110a03000000000000000000000000000000000000000000000006131f2c3945515d677683909dabada2978a7e71685e564f4745403e3c3b3b3a3a3b3b3d3f42464c515a626d76828f99a4a6aa9f92857a6d6053473a2d201407000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000915202b353f474e5253535353535353535345403931271d1207000000000000000000000000050e18222c363e44494a5353535353535353534e4c4841392f251a0f03000000000000000000000000000000000000000000000000000811191f25292b2c2d2d2d2d2d2d2d2d1f1c17110a030000000000000000000000000000000000000000000000000000030c131a202527282d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d282725201a130c03000000000000000000000000000000000000000000000004070c10121316191b1d1e1f1f201f1f1e1d1b19171414110e0806030000000000000000000000000000000000000000000000000000000000000000000000000003070c10131416191b1d1e1f1f201f1f1e1c1a181514120e09050200000000000000000000000000000000000000000000010c16202a323a3f43454646464646464646464646464646464646464646464646464646464646464646464646464646464646403f3b362e261c120800000000000000000000000713202c3945525d686d767676767676746f64584c4047535f6a6f767676767676726d62564a3e3125180b0000000000000000000000000000000000030c162029323a434b515960666d71767b7e8183848586858484827f7d79746f6a615e564e463e362c22190e050000000000000000000000000000000000000000000000000000000000060b0f121314141414141413120f0b06000000000000000000000000000000000000000000000000121f2b3845525e6b7885919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0aa9e9184776b5e5144382b1e11000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8275685b4f4235281c070000000000000000000000000000081b2835414e5b6874818e9ba7b0a4978a7d7164574a3e3124170b0000000000000000000000000000000000000009121b22292e31323939393939393939382d2c28231c150c030000000000000000000000000000000000000000000004101d2935404b5566737f8c99a3aea99e91857a6d68605953514b4b494848474748484a4b4d53555d606c727f8c949fabaea3998d8074675d5145392c201306000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000e1a26313d4751595e5f606060606060605f514b43392f23180c0000000000000000000000030c17202a343e485055576060606060606060605b59534b41362b20140800000000000000000000000000000000000000000000000007111a232a3135383939393939393939392c28231c150c03000000000000000000000000000000000000000000000000020c151e252c31343539393939393939393939393939393939393939393939393939393939393939393939393939393534312c251e150c020000000000000000000000000000000000000001070c1013181c1f20232527292b2b2c2d2c2c2b2a28262421201e1915120f0a03000000000000000000000000000000000000000000000000000000000000000000060b1012181d1f202325282a2b2b2c2d2c2c2a29272521211e1a14110e0902000000000000000000000000000000000000000000050f1820282f333738393939393939393939393939393939393939393939393939393939393939393939393939393939393933322f2a241c140a00000000000000000000000004111d2935414c565d6069696969696967645c53483c434e585f6269696969696965625b51463a2e221609000000000000000000000000000000000000040d172029303940454f545c6064686e7174767878797878777573706d67625f58524c443d342c241a100700000000000000000000000000000000000000000000000000000000020a11171c1f20212121212121201f1b17110a0200000000000000000000000000000000000000000000121f2b3845525e6b7884919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0aa9d9184776a5e5144372b1e11000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2834414e5b6774818e9aa7b1a4978b7e7164584b3e3125180b00000000000000000000000000000000000006111b242d343a3d3e4646464646464646453a38342e261e150a00000000000000000000000000000000000000000000000c18242f3b4754616e7a86929fa8ada19790827a6f6b63605c5557565554545454555658575e61676d747e88939fa6b0a89f92867b6e61554b4035291d1004000000101d293643505c6976838f8b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b8f8376695c504336291d10000000000000000000000000000000000000000000000000000000000000111d2a36424e59636a6c6c6c6c6c6c6c6c6c5c554b4034291c1004000000000000000000000b151e29323c46505a61646c6c6c6c6c6c6c6c6c68645d53483c3024180b0000000000000000000000000000000000000000000000030e19232c353c414546464646464646464638342e261e150a00000000000000000000000000000000000000000000000009131e272f373d4042464646464646464646464646464646464646464646464646464646464646464646464646464642403d372f271e1309000000000000000000000000000000000003090e12181d1f23282c2d3032343638383939393838373533312e2d2a25211f1b150f0b060000000000000000000000000000000000000000000000000000000000020a11171c1f24292c2d30323437373839393938373634312e2d2a25201e19140e09020000000000000000000000000000000000000000060f161d23272a2b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2726231f19120a02000000000000000000000000010d1924303a444c52545c5c5c5c5c5c5b58534a41363c464e53555c5c5c5c5c5c585651493f34291e120600000000000000000000000000000000000000050e171e272e343d424a5053565e616567696b6c6c6c6b6a686663605c55534e46413a322b221a110800000000000000000000000000000000000000000000000000000000020b141c22282b2d2e2e2e2e2e2e2d2b27221b140b02000000000000000000000000000000000000000000111e2b3844515e6b7784919eaab0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a99d9083766a5d5043372a1d10000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000000000000000000000000000000010c17222d363f454a4b53535353535353535246443f3830261c1106000000000000000000000000000000000000000000000714202d3946525e6874808d96a1aaa99f9490847c76706d67666462626160616162636567696e737a818b939aa4afaaa1968d8074695e5343392f24180d01000000101d293643505c6976838f8b7f7265584c3f3225190c06060606060606060606060606060606060606060606060606060c1925323f4c5865727f8b8f8376695c504336291d10000000000000000000000000000000000000000000000000000000000000121f2c3845525e6a75797979797979797976675c5145382c1f130600000000000000000007121c27303a444e58616c70797979797979797979746f64594c4033271a0e010000000000000000000000000000000000000000000009141f2a353e474d51535353535353535353443f3830261c110600000000000000000000000000000000000000000000040f1a252f3941484d4f53535353535353535353535353535353535353535353535353535353535353535353535353534f4d4841392f251a0f04000000000000000000000000000001070c141a1d24292c2e34383a3c3f4143444546464645444342403e3b3936302e2b261f1c17110a020000000000000000000000000000000000000000000000000003090c141c23282b2f35383a3c3f41434445464646454443413e3b3a36312d2a251f1a140d050000000000000000000000000000000000000000050c12171b1d1e20202020202020202020202020202020202020202020202020202020202020202020202020202020201a1917130e0800000000000000000000000000000008131e28323a4145475050505050504e4c4841382f343c4347485050505050504c4a463f372d23180d010000000000000000000000000000000000000000050c151d232830383f44464d5254585a5d5e5f5f5f5e5d5c595653514b47433c3630292019100800000000000000000000000000000000000000000000000000000000000a141d262d3338393b3b3b3b3b3b3937332d261d140a000000000000000000000000000000000000000000111e2a3744515d6a7784909daab0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1a99c8f8276695c504336291d10000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000000000000000000000000000005111d29343f4850565860606060606060605e53504a42382e23170c0000000000000000000000000000000000000000000005111e2a36414c56606d7a849198a2aaa69f969189827d797573716f6e6e6d6d6e6e707274777b80858e939fa4acaba3989184796d60574d4231281d120700000000101d293643505c6976838f8b7f7265584c3f322519131313131313131313131313131313131313131313131313131313131925323f4c5865727f8b8f8376695c504336291d1000000000000000000104060606060606060606000000000000000000000013202c3946535f6c798786868686868686796d6053473a2d2014070000000000000000081118232e39424c565f6a707e8786868686868686868174685b4e4135281b0e02000000000000000000000000000000000000000000010d1925313c4750585e5f606060606060605f504a42382e23170c000000000000000000000000000000000000000000000814202c37414b53595b60606060606060606060606060606060606060606060606060606060606060606060606060605b59534b41372c20140800000000000000000000000000030b12181f252a2f35393a404446494c4e5051525253525251504e4c4a4746413c3a37312b28221c140b070000000000000000000000000000000000000000000000060d141a1e262e34383a404547494c4e50515252535252514f4d4b4846423b3a36302a251f170e07010000000000000000000000000000000000000001070b0f111213131313131313131313131313131313131313131313131313131313131313131313131313131313130d0c0a070200000000000000000000000000000000020c1620283035393a43434343434341403c362f262a32373b3c4343434343433f3e3a342d251b110700000000000000000000000000000000000000000000030b12181e262e34383b4146474b4e505152535251514f4c4a4645403937322a251e170e07000000000000000000000000000000000000000000000000000000000006111c262f383f444647474747474746443f382f261b11060000000000000000000000000000000000000000101d2a3643505d697683909ca9b1a5988b7e7265584b3f3225180700000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3a89b8f8275685c4f4235291c0f000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000000000000000000000000000000000915212e3a45505a62656c6c6c6c6c6c6c6c6b605c544a3f34281c1003000000000000000000000000000000000000000000020e1925303b45525d686f7c869298a0a8a8a09e948f8a8582807e7c7b7b7a7a7b7b7d7e8084878d92979da5afaaa29992867c6f675d51453b311f160c0100000000101d293643505c6976838f8b7f7265584c3f322520202020202020202020202020202020202020202020202020202020202025323f4c5865727f8b8f8376695c504336291d1000000000000004090e11121313131313131313090806030000000000000013202c3946535f6c7986929393939393867a6d6053473a2d20140700000000000000060f19232834404a545e686f7c86929a93939393968f82786d6053463a2d2013070000000000000000000000000000000000000000000004101d2935414d58626a6c6c6c6c6c6c6c6c6c5c544a3f34281c10030000000000000000000000000000000000000000000c1825313d48535d65686c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c68655d53483d3125180c000000000000000000000000060d151d24293136394045474a515356585a5c5e5e5f605f5f5e5d5b595754524c4847433c38332d261d18120b030000000000000000000000000000000000000000070f181f262a30383f44464b515356585b5d5e5e5f605f5f5d5c5a5854534d4746423b3630292018120b03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161e24292c2d3636363636363433302b251d20262b2e2f36363636363632312e29231b130900000000000000000000000000000000000000000000000000070c151c23282c3036393b3e414345454645454442403d3a38342e2b262019130d050000000000000000000000000000000000000000000000000000000000000b17222d38424a505354545454545453504941382d22170b00000000000000000000000000000000000000000f1c2835424f5b6875818e9ba8b3a6998c807366594d402f23180c00000000000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4a79a8e8174675b4e4134281b0e000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000000000000000000000000000000000b1724313d4a56626c717979797979797979786d665c5044382c1f13080000000000000000000000000000000000000000000008141e2935414c56606a707d8691969fa3aba69f9c98928f8c8a89888787878788898b8d9195999fa2a9aba69f9892877e706a60554b4133291f0d040000000000101d293643505c6976838f8b7f7265584c3f322d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d323f4c5865727f8b8f8376695c504336291d100000000000080f151a1d1f20202020202020201615130f0a04000000000013202c3946535f6c7986929f9f9f9f93867a6d6053473a2d201407000000000000040d18212b353d44515c666d7a849198a29f9fa19791847a6d665c5144382c1f12060000000000000000000000000000000000000000000005121f2b3845515e6a74797979797979797976665c5044382c1f12060000000000000000000000000000000000000000000e1b2734404d59656f757979797979797979797979797979797979797979797979797979797979797979797979797979756f65594d4034271b0e00000000000000000000000910181f272f353b42464b5153545c60636567696b6b6c6c6c6b6b6a686664615e5655534e46443f382f28231d150c05000000000000000000000000000000000000081019212931363e424a5053555d606365676a6a6b6c6c6c6b6a696764615e5754524d46423b3329241d150d040000000000000000000000000000000000000000000000000000000000020608080b0e1011121313121211100d0b0807050200000000000000000000000000000000000000000000000000000000000000000000000000040c13191d2021292929292929282724201a13151b1f21222929292929292525221e181109010000000000000000000000000000000000000000000000000000030a11171c1f252a2d2e3234363839393938373533302d2c28231d1b150d0802000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545b60616161616161605b53493f33271b0f03000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6b3a89b8e817568554b4034291c100400000000000000000000000000000000000000000005121e2a36424d576976838f9ca9b2a5988c7f7265594c3f3226190c000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000000000000000000000000000005121e2a36424d5765717e868686868686868685786d6053463a3025190d01000000000000000000000000000000000000000000020d19242f3a434e58606b707c848d92999fa2aaaaa29f9c99979595949394949596989a9da0a8abaaa79f9d948f857d706c61584e433a2f21170d000000000000101d293643505c6976838f8b7f7265584c3f393939393939393939393939393939393939393939393939393939393939393939393f4c5865727f8b8f8376695c504336291d100000000009121920262a2c2c2d2d2d2d2d2d2d22221f1b150f070000000013202c3946535f6c7986929facaca093867a6d6053473a2d2014070000000000020b161f2a333d47515b606d78829096a1aaaea39992857b6e685d544a4034281c1004000000000000000000000000000000000000000000000613202c3946535f6c798686868686868686786d6053463a2d2013070000000000000000000000000000000000000000000f1c2835424f5b68758286868686868686868686868686868686868686868686868686868686868686868686868686868175685b4f4235281c0f0000000000000000000009121b222a313940454d53555d6065666d6f72747677787979797877767573716e6867625f5853504a423d342e271e170e050000000000000000000000000000000008111a222b333b424650545c6063676d6f727476777879797978777674716e6966615e56524d453f352f271f160d04000000000000000000000000000000000000000000000000000205090e121415181b1d1e1f20201f1f1e1c1a181514120e090502000000000000000000000000000000000000000000000000000000000000000000000002080d1113141d1d1d1d1d1d1b1a18140f080a0f1215151d1d1d1d1d1d191816120d07000000000000000000000000000000000000000000000000000000000000060c1014191e202125272a2b2c2c2c2b2a292623201f1c18120f0a04000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b666c6e6e6e6e6e6e6c655b5044372b1f1205000000000000000000000000000000000000000c1925323f4c5865727f8b98abb5aa9d908477675c5145382c1f13060000000000000000000000000000000000000000000714212d3a46535f697885929fabb4aa968a7d7063574a3d3024170a000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000000000000000000000000000714212d3a46535e69768390939393939393978a7d7063564c4135291d11050000000000000000000000000000000000000000000008131e28313c464f59606a6f7980878e92989b9fa2aaa6a6a4a2a1a1a0a0a1a1a3a5a7a7aca49f9d9995908a827b706b615a50463d31281d0f05000000000000101d293643505c6976838f8b7f7265584c4646464646464646464646464646464646464646464646464646464646464646464646464c5865727f8b8f8376695c504336291d1000000008121b242b31363839393939393939392f2e2b272019100700000013202c3946535f6c7986929facada093867a6d6053473a2d20140700000000000a141d28313c454f59626d74818e949fa8aea49f92877d6f695f564c42392e23180c00000000000000000000000000000000000000000000000613202c3946535f6c798692939393939386796d6053463a2d2013070000000000000000000000000000000000000000000f1c2835424f5b6875828e9393939393939393939393939393939393939393939393939393939393939393939393938e8175685b4f4235281c0f00000000000000000009121b242c343c434b51575e61676d7175797c7f81838485858685858483817f7d7a77736f6a64605b544f454039302920170f050000000000000000000000000000060f1a232c343d454d535a61666d7075797c7f81838485858685858482807e7b77736e69615e575145403931281f160c030000000000000000000000000000000000000000000002080e11151a1e21222528292b2c2c2c2c2b2b29272522211e1a14120e09020000000000000000000000000000000000000000000000000000000000000000000000010407071010101010100e0d0b08030000030608091010101010100c0b09060100000000000000000000000000000000000000000000000000000000000000000003080e111414181b1d1e1f201f1e1e1c19171313100c0700000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c787a7a7a7a7a7a776c605346392d20130600000000000000000000000000000000000000091623303c4956636f7c8999a4afac9f9286796d6053473a2d22170b0000000000000000000000000000000000000000000815222e3b4855616e7b8897a2adaea298887b6e6155483b2e221508000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000000000000000000000000000815212e3b4854616e7b87939f9f9f9f9fa99b8f8275685e5246392d20150a00000000000000000000000000000000000000000000010c161f2b343d474f585f676d737b81868b8f9298989a9b9d9e9f9f9f9f9f9f9e9d9c9a989a93908d88837d766e69615950483e342b1f160c00000000000000101d293643505c6976838f8b7f72655853535353535353535353535353535353535353535353535353535353535353535353535353535865727f8b8f8376695c504336291d100000040f19242d353d424546464646464646463c3b37322b22190f04000013202c3946535f6c7986929facada093867a6d6053473a2d2014070000000006111c262f3a434d57606b727f8b939da6afa59c928b7e716b60574d443a30271c120700000000000000000000000000000000000000000000000613202c3946535f6c7986929f9f9f9f9386796d6053463a2d2013070000000000000000000000000000000000000000000f1c2835424f5b6875828e9b9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9b8e8275685b4f4235281c0f000000000000000008121b242d363e464e555d60696e74797e8285898b8d8f91919293929291908e8c8a8784807c76716c666059514b433b332921170e05000000000000000000000000030d18212c353e464e575f616c70787d8185898b8e90919192939292908f8d8b87847f7b746e69625b514b433a31281e150b000000000000000000000000000000000000000002080d14191e20262b2e2f323436383939393938373634322e2d2b26201e1a140e090200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080b0e101212131212110f0d0a070604000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8787878787877a6d6154473a2e211407000000000000000000000000000000000000000714202d3a4753606d7a86939facaea399897d706353493f33271b0f030000000000000000000000000000000000000004111d2935414c5565717e8b98a9b3ac9f9285786d6053463a2d201307000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000000000000000000000000000007131f2c38434e5866737f8c9aa4afaca8aaac9f92867a6d6154473c32261b0f0000000000000000000000000000000000000000000000040d19222b353d464e555d60696e747a7e8285888b8d8f909192929292929291908f8d8c898683807c76706c615f574f473e362c22190d0400000000000000101d293643505c6976838f8b7f72656060606060606060606060606060606060606060606060606060606060606060606060606060606065727f8b8f8376695c504336291d1000000915202b353f474e5253535353535353534947433c342b20150a000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000071017222d38424c555f69707d87929fa5afa79e938d80736c61594f453c32281e150b0000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8acacb2adaba5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a59b8e8275685b4f4235281c0f0000000000000006101a242d363f4850585f676d737b80858b8f9298989a9c9e9e9f9f9f9e9e9d9b999795908d88837e786f6b605c554d453b332920170c0300000000000000000000010b151f2a333e474f5860696e767d84898e9298989a9d9d9e9f9f9f9e9d9c9a9795918c86817b726d605d554b433a30271d1207000000000000000000000000000000000000040c13191f252a2d31373a3b3e41434445464645454443403e3b3a37312d2a251f1a140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507070c0f0e0c0904000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794949494877a6d6154473a2e211407000000000000000000000000000000000000000613202c3945515d677784909daab4ab9a8d8073655b5044372b1f140a000000000000000000000000000000000000010c13202c3945515d6775828e9ba8b5a89c8f8275665c5044382b1f1206000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000000000000000000000000000915222e3b4854606a7784919eaca49f9b9ea5a3998b7f7265584e43372b1c12070000000000000000000000000000000000000000000000071019232b343c434b51575f61676d7175797c7e80828384858586868585848482817f7d7a77736f6a64615a534d453e352c241a10070000000000000000101d293643505c6976838f8b7f726c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c727f8b8f8376695c504336291d1000010e1a26313d4751595e5f6060606060606055544e463c32271b0f030013202c3946535f6c7986929facada093867a6d6053473a2d2014070000050e192228333f4a545d676e7b859299a3afa89f958e81776c605a50473d332a20160c030000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000f1c2835424f5b6875818e9babb5b2a8a19e98989898989898989898989898989898989898989898989898989898988e8275685b4f4235281c0f000000000000030c18222c363f48505a616a6f7980868d92979c9fa2aaa7a9a8a7a6a6a6a7a8a9a8a6a7a09d9a94908a837c746d675e574d453b32291e150a0000000000000000000007121d27313c454f59616a6f7b828a91969b9fa2aaa7a7a5a3a2a2a3a4a5a8a7a7a09d99928e867f756d675d554b42392e23180c0300000000000000000000000000000000080e161e25293036393c4247484b4e50515253535252514f4d4b4846423c3a36302a251f170f0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d111314191c1b19150f090200000000000000000000000000000000000000030613131313131313130d0c0a07020000000000000000000000000003060809131313131313130b0b09050100000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1a094877a6d6154473a2e2114070000000000000000000000000000000000000004101d2935404b556773808d9aa9b3ab9e9184786c6053463c2f261b1106000000000000000000000000000000000007131d28333f4a54606d7a86929facb1a7988b7f7265544a3f34281c1003000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000000000000000000000004101c2834404b54626f7c8996a0a49a938e939eab9d9083776a5f5347392e23180c000000000000000000000000000000000000000000000000071119222a313940454d53555d6065666d6f71737576777879797979787877757472706d6866625f58555046423b332c231a1208000000000000000000101d293643505c6976838f8b7f79797979797979797979797979797979797979797979797979797979797979797979797979797979797979797f8b8f8376695c504336291d100004111d2a36424e59636a6c6c6c6c6c6c6c6c6260584e43372b1f13060013202c3946535f6c7986929facada093867a6d6053473a2d20140700030d17202b343d44505b666d79839197a2abaaa1969083796d655b50483e352b21180e04000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000d1a2734404d5a6773808d99a3aeada196918b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8175685b4f4235281c0f0000000000000b151e2a343e48505a626c717c848c92989fa2a9aca8a8a09e9c9a9a999a9a9b9d9fa3ababaaa69f9c95908781796e695e574d443b30261c11060000000000000000000c18242f39434d57616b707c858f949ea0a8aca8a19e9a989695959697989c9fa2aaaba39f98928b81796d675d544b4034281e150b0000000000000000000000000000020a121a202830353b4146474e5355585b5c5e5f5f5f5f5e5e5c5a5855534d4846423b363029211a120a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13191d202126292825201b140c0300000000000000000000000000000000060c101220202020202020201a1917130e0800000000000000000000040a0f13151620202020202020181715110c06000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1a094877a6d6154473a2e21140700000000000000000000000000000000000000010d18242f3d495663707c8997a1adaca196897d7063584e41382d22170f06000000000000000000000000000000071118242f3844505b66717e8b98a2aeaca095887b6e6155483b2e23170b00000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000000000000000000000006131f2c3845515c6674818d9aa89f9388828e9baaa095887c6f62544a4034281c10040000000000000000000000000000000000000000000000000710181f282f353b42464c5154545c60626567686a6b6c6c6c6c6c6c6b6a69676563605d5655534e49443e36312a211a110800000000000000000000101d293643505c6976838f918b86868686868686868686868686868686868686868686868686868686868686868686868686868686868686868b918f8376695c504336291d100006121f2c3845525e6a757979797979797979766a6054473b2e2215080013202c3946535f6c7986929facada093867a6d6053473a2d201407010b151f29333d46505a606c78828f95a0a9aba29891847a6e675c53493f362d23190f0600000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000815212e3b4854616e7b86929faaab9e91847f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7d7063564a3d3023170a000000000007121d27303c46505a626c717e8691969fa2aaaba39f9b9796918f8e8d8d8d8d8f9092999a9ea1a9aba79f9a938d837b6e695e564c42382e23170c040000000000000004101d2935404b555f69707d8692979fa6aca69f9c96918e8b898988898a8c8f92989ea1a8aaa29f938f83796d665c51453d30271c1207000000000000000000000000020b141c242c323a41464d5254575f626567696b6c6c6c6c6b6a696765615f5754524d46423b332c241c140a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c10161b1e25292d2e333534312c251e150c0200000000000000000000000000030a11171c1f2d2d2d2d2d2d2d2d2726231f19120a0200000000000000070f161b1f22232d2d2d2d2d2d2d2524211d1811090000000000000000000000000000000000000000000814212e3b4754616e7a8794a1a094877a6d6154473a2e21140700000000000000000000000000000000000000000713202d3a4653606d7985929eacb2a89c8f82756a5f53493f332721180f0802000000000000000000000003091119232935404b55606c7884919daab3a99d908477695f53463a2d1c110600000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000000000000000000000000000713202d3a4653606d7985929eaa9d90837d8998a2a79a8d8074665c5144382c1f130800000000000000000000000000000000000000000000000000060d161d242931363a4145474a505355585a5c5d5e5f5f5f5f5f5f5e5d5c5a595654524c4847433c39332a261f180f080000000000000000000000101d293643505c6976828f9393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393938f8376695c504336291d10000613202c3946535f6c7987868686868686867c6f6255493c2f2216090013202c3946535f6c7986929facada093867a6d6053473a2d20140707121d27313b454e58616c73808d949ea7afa39992867c6f685e554b41382d241b11070000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000714212d3a46535e6974818e98a2ada196887c7272727272727272727272727272727272727272727272727272727272706b6054483c2f22160900000000000c18232e39424e58616c717f8a9298a0a8aba49f99928e8a8784828180808081828486898d92979ea1a8aca49f9590847b6e685e544a3f342820150a0000000000000006131f2c3845515d676e7b869298a1a9aaa29f948f8984817e7d7c7c7c7d7f82868b91969da4aea59e958f82786d60594f42392e23180c0000000000000000000000010b141d262e363e444c52565e61666a6e717476777879797878777673716e6966615e57524d453e362e261c140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12181d1f272b3035393a3f42413d3730271e1409000000000000000000000000030c151c23282c393939393939393933322f2a241c140a00000000000007101920272b2e2f3939393939393932312e29221b120900000000000000000000000000000000000000000814212e3b4754616e7a8794a1a094877a6d6154473a2e211407000000000000000000000000000000000000000006121f2c3844505c6673808d9aa4afaa9e94887c6f655b50443d332a2219140e09060400000100000406090e141a232b353d45515d67717e8a95a0acada2978b7e7265574d42362a1e0a0000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000000000000000000000005111d2935414c5664707d8a97a2a9998c807885929fab9e9285796d6053463a3025190d0100000000000000000000000000000000000000000000000000040c12181f262a2f35393a3f4446494b4d4f505152525353525251514f4e4c4a4745413c3b37322d28221a140e06000000000000000000000000101d293643505c69768286868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868376695c504336291d10000613202c3946535f6c7986929393939393887c6f6255493c2f2216090013202c3946535f6c7986929facada093867a6d6053473a2d2014071118242f39434d57606a717e8b929ca6aea49f92877d706a5f564c43392f261b1209000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d20130700000000000000000000000000000000000000000005121e2a36424d57616e7b86929fa8a89c8f82766c6565656565656565656565656565656565656565656565656565656360594f44382c2014070000000004101c2834404b545f6a717e87939fa2aaa9a199938e86827e7a777574737373747577797c80858b91969da5afa79f9691847a6e665c50443c32261b0f04000000000004111d2935414b55606d79839098a2aaa9a198928a827c787472706f6f70717275797e848d929fa4aba79f948d80746b60544a4034281c10040000000000000000000009131d262f38404850565e61686e73777b7e81838485868685858482807e7b77736e69615e57504840382e261c13090000000000000000000000000000000000000000000000000000000000000000000000000000000000060c10151a1d24292c32383a4146474c4f4d49423930251b0f0400000000000000000000000a151e262e34384646464646464646403f3b362e261c120800000000040f19222b32383b3c464646464646463e3d3a342d241b1106000000000000000000000000000000000000000814212e3b4754616e7a8794a1a094877a6d6154473a2e211407000000000000000000000000000000000000000003101c28343f4a54616e7b87939fabb0a69c9083776c60584e453c342a251e1a1312100c070e070c1013131a1f262a353d47505a606d7984919ea7b1a99f9285796d6053473b31261a0e0000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000000000000000000000713202d3946525e6875828f9ba9a197897c75828e9baba1978a7d7064564c41362a1e1105000000000000000000000000000000000000000000000000000001070d141a1e24292c2e34383a3c3e40424344454646464645454442413f3d3a3935302e2b26201c170e0903000000000000000000000000000f1c2935424e5a66707679797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797670665a4e4235291c0f000613202c3946535f6c7986929f9f9f9f95887c6f6255493c2f2216090013202c3946535f6c7986929facada093867a6d6053473a2d2014101a232935404b555e696f7c86929fa4aea69d928b7f726b61584e443b31271d140a00000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000020e1a25313b46525e6973808c96a0ac9f948b7e716a5f5658585858585858585858585858585858585858585858585856544f473d33271c10040000000006131f2c3845515c666f7c869299a4aea8a0979187817b75716d6869676766676768676d7073797e848e939fa4aca8a0969083786d60584e43372b20150a00000000000613202c3945515d67737f8c95a0aaaba19792867e766f6c6565636262636465676d7279808b9399a4afa69d92897d70665c5144382c1f150a00000000000000000007101b252f38404a525a61686d747b8084888b8e8f919292929291918f8d8b8884807b746e69615a524a40382e251b0f060000000000000000000000000000000000000000000000000000000000000000000000000002090e11171c1f262b2f35393d43474c5254595c59534b42372c2015090000000000000000000006111c2630383f4453535353535353534d4b4740382e24190e020000000a16202b343d434749535353535353534b4a453f362d22180c010000000000000000000000000000000000000814212e3b4754616e7a8794a1a094877a6d6154473a2e2114070000000000000000000000000000000000000000000c17232e3846535f6975828e99a3afab9f948b7f726a60574e463e36302a25201f1c181b1a1b181c1f20262b31363f474f59616c74808d96a1adada2978d8073675d5145392a1f14090000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000000000000000000000714212e3a4754616d7a86929fab9e928579717e8b99a3a99b8f8275685e5246392d20150a0000000000000000000000000000000000000000000000000000000003090e13191d2023282c2d2f32343537383939393939393837363432302d2c2924211f1b15100b050000000000000000000000000000000d1926323e49545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69665e54493e3226190d000613202c3946535f6c7986929facaca295887c6f6255493c2f2216090013202c3946535f6c7986929facada093867a6d6053473a2d201418222c353e45515d676e7b859198a3aea79e948d80746d62594f463c32291f150b0200000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000009141f2a36424d57606d7984919aa4a69f92867c6e685d554b4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4a48443d352b21160b0000000004111d2935414b55606d79839098a3aba9a09691857d746e6964615d565b5a5a5a5a555c6063666d7179818b939aa4afa89f958c80736a5f54473d32271b0f01000000000714212d3a4754606d7a85929fa7afa49992857c716c63605b535656555657555c60676d747f87939fa6aea49d9184796d6053463c31261b0f0300000000000000030c19222d37404a525c636c717a81868c9196989a9c9e9f9f9f9f9e9d9c9a9895918d86817b716c645c524a40372d21180e0300000000000000000000000000000000000000000000000000000000000000000001040b1014191c23282c3137394045474e54565e616668655d53493d3125190c000000000000000000000c17232e38424a505f606060606060605a58524a40362a1f13070000030f1b27323d464e545660606060606060585650483f34291d11050000000000000002050708080808080808080814212e3b4754616e7a8794a1a094877a6d6154473a2e21140808080808080808080705020000000000000000000006111c2a36424d57626e7b87929fa8b0a69f92877c6f695f585046413b36312d2c282327272723282c2d31373b42465159606b717e8a929da8b1a79f92857a6d61554b4035291d10040000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000000000000000000000006121e2b37424d5765727f8b99a3ab9b8e81756d7a86929fac9f92867a6d6154473c32271b0f00000000000000000000000000000000000000000000000000000000000001080d1113171c1f20222527292a2b2c2c2c2c2c2c2b2a2927262321201d1915120f0a0400000000000000000000000000000000000a16212d38424c545a5c60606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605c5a544c42382d21160a000613202c3946535f6c7986929facaca295887c6f6255493c2f2216090013202c3946535f6c7986929facada093867a6d6053473a2d2016202a343e47515b606d79839097a1aaa9a0958f82786d605b51473d342a20170d030000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d20130700000000000000000000000000000000000000000000030e1a25303b45515d67707d88939fa6a29891847a6d675c544b423f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3d3c38332b231a0f05000000000613202c3945515d67737f8c95a0aaada19791847b706b615e5754524c4e4d4d4d4e4b5153545c60676d747f88939fa5afa79f92877c6f62584e43372b1d120700000005111e2a36424d5766727f8c97a2adaa9f93877d706a615a5350494a4949494a4b51555c606d73808c949fabaca0958b7e7164584e43372b1f1206000000000000000a151e2b343f49525c646e737e858d92999da0a8a9a29f9d9c9b9c9d9fa2aaa7a09d99928e857e736e645c52493f332a1f14090000000000000000000000000000000000000000000000000000000000000001080d11161c1f252a2e34383c42474b5153586062686d72756f65594d4134281b0e00000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c66635c52473b2f23170a000006131f2b38434e5860626c6c6c6c6c6c6c65625a50453a2e211509000000000002090e121415151515151515151515212e3b4754616e7a8794a1a094877a6d6154473a2e211515151515151515151514120e09020000000000000000000e1a26313b47535f6974808d96a0abaea39991857b6e6a615a524c46423c3a38342e3434342e34383a3c42474d535b626b707d86929fa4aeaaa0958b7f72685e5243392f24180d010000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000000000000000000000814212e3a47535f697683909daba3998a7e716875828f9caba3998c7f7265584e43372b1d1207000000000000000000000000000000000000000000000000000000000000000104060c10121316181a1c1d1e1f1f20201f1f1e1e1c1b19171413110d0806030000000000000000000000000000000000000005101c26313a42494e505353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353504e49423a31261c1005000613202c3946535f6c7986929f9f9f9f95887c6f6255493c2f2216090013202c3946535f6c7986929facada093867a6d6053473a2d201e28323c464f59636d75818e959fa9aaa1979083796d665c50493f352c22180e05000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000000009141f2935404b55606b73808d949fa8a0968f82796d665c544b433a323232323232323232323232323232323232302f2c27211a110800000000000714212d3a4754606d7a85929fa7b0a69e92857b6e696059524d47464141404040414045464b51555d606d727f8b939ea9afa3998f82766a605447392f24180c0000000714202d3a46525e697784909da9a8a2988d80746b60585046443f3d3c3c3d3e40454b515b606d7882909ca6b0a89d9083776a5f53473a2e21150600000000000006111c26303d46515b646e74808a92979fa3a9a19e999792908f8f8f909298989d9fa7a39f97928a80736e635b51453b31261a0e0400000000000000000000000000000000000000000000000000000000040a0f13191d20272c3036383f44464e53555d60656a6f747a7f8175685c4f4235291c0f00000000000000000006121f2c3844505c667679797979797979736e63584b3f3226190c00000815222e3b4754606a6f79797979797979716c62564a3d3124170b00000000050d141a1e2021212121212121212121212e3b4754616e7a8794a1a094877a6d6154473a2e2121212121212121212121201e1a140d05000000000000000009141f2b37424d57606d79849199a4afaba19791847c706c615e56534d494644404141414141404546494d53575f616d727d869298a2aeaca2989083786c60564c4131281d1207000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000000000000000000030f1b27333f4953626e7b88959fac9f92867a6d64717e8b99a3ab9d9083776a605447392e23180c0000000000000000000000000000000000000000000000000000000000000000000000030607090b0d0f101112131313131212110f0e0c0a0707040100000000000000000000000000000000000000000000000a151f2831383e4243464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464643423e3831281f150a00000613202c3946535f6c7986929393939393887c6f6255493c2f2216090013202c3946535f6c7986929facada093867a6d6053473a2d2026303a444e58616b727f8c939ea7aca29891857b6e675d544a3f372d231a100600000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000020c18242f39434f59606d78829096a0a89f948f82786d665d554c443b332b2525252525252525252525252525252322201c160f08000000000006131f2b37434e5866727f8c97a2adaa9e948a7d70695f574f46423b3935303433342e34383a40454b515b626d74818e97a1adab9e94897c6f62554b4035291d100400000814212e3b4754616e7b8795989a9b9c92857a6d61594f463e37332d2f2f302e34394045505c666f7c88949fabaca095887b6f6255483c2d22170b0000000000000c17232e38424f59626d74808d929ea1a9a39f97918c8885838282838385888b90959ea1a8a29f928d80736d62574d42362a20160a0000000000000000000000000000000000000000000000000001070c10151b1e24292c33383b42464a5053575f62676d71777c81868c83776a5d5144372a1e110000000000000000000713202d3a4653606d78868686868686868073665a4d4033271a0d00000916232f3c4956626f7c868686868686867e7165584b3e3225180b000000050f171f252a2d2e2e2e2e2e2e2e2e2e2e2e2e3b4754616e7a8794a1a094877a6d6154473a2e2e2e2e2e2e2e2e2e2e2e2e2d2a251f170f0500000000000000030e1a26313c45515d676f7d87939fa4aea9a19691867e756e68615e575653514a4e4e4d4e4e4b515356575f62696e767f879298a2aaafa49a92867c6f665b50443a301f160c01000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000000000000000005121f2b3744505b6573808d99a7ac9c8f837668606d7a86929faca095887c6f62554b4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d161f262d32353639393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393635322d261f160d0300000613202c3946535f6c7987868686868686867c6f6255493c2f2216090013202c3946535f6c7986929facada093867a6d6053473a2d232e38424c565f6a707d87939fa5afa49a92867c6f695e554b42382e251b11080000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d20130700000000000000000000000000000000000000000000000007121d27313d44505c666d7a849197a1a69e948f81786d675d564d453d3528231c141919191919191919191919171614100b050000000000000815222e3b4754606a7884919ea9b1a79c8f82756c61574d453d36302d292427272723282c2e343a4145515b606d7a85929eaab0a69b8e8275675d5145392c1f130600000b1825323e4b5865717e888a8b8d8e908e8174685e52473d342b272223222323282f343f4a545f6a76828f9cacb1a7998c7f736653493f33271b0f030000000003101c28343f4a54606b727f8c929ca4aaa299928c84807b787675757677797b7f838a91969fa6a49c928b7f72695f53463d32271b0f030000000000000000000000000000000000000000000003090e12181c1f262b2f35393d44484d52545c60646a6e74797e83898e929084776a5d5144372a1e110000000000000000000713202d3a4653606d798693939393938d8073665a4d4033271a0d00000916232f3c4956626f7c8993939393938b7e7165584b3e3225180b0000020d17212930363a3b3b3b3b3b3b3b3b3b3b3b3b3b4754616e7a8794a1a094877a6d6154473b3b3b3b3b3b3b3b3b3b3b3b3b3a36302921170d020000000000000009151f2935404b55606b727f8b929da4ada9a198928a817a746e696562605c545b5a5a5a5b545c606266696e747b828b9299a2aaaea39f93887e706a5f544a3f32291e0d0400000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000000000000000000000613202d394653606c7884919eaba49a8b7f72655d6875828f9caaa79a8d8074675c5145382c1f14080000000000000000000000000000000000020507080c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0b0906010000000000000000040d151c212629292d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292926211c150d0400000006121f2c3845525e6a757979797979797979766a6054473b2e2215080013202c3946535f6c7986929facada093867a6d6053473a2d28343f4a545e686f7c869299a4afa59f93887e706a60574d433a30261c1309000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000000000010b151f28343f4a545e686e7b859298a2a69e938f82796d685f574f473e342e261e160d0c0c0c0c0c0c0c0c0c0a09070400000000000000000916222f3c4955626f7c8896a1acaca095897c6f625a50453b332a25201d191a1a1a181c1f23282f353f45515d67727f8b98a2aeac9f9286796d6053473a2d20140600000714212d3a4754606d797c7d7f808183847d7063564c41352b221b17161616181d232e38424e5864717d8a9aa4afa99c8f8276655b5044372b1f12050000000006121f2c3844505c666f7c87929fa4aba29892878079736f6a6a696869656c6e72777d848f949fa6a49f92867b6e61584e43382b1f13060000000000000000000000000000000000000000060b0f141a1d23292c32373a4145474f54565e61666d71767b80858b90959b9d9084776a5d5144372a1e110000000000000000000713202d3a4653606d7986939f9f9f998d8073665a4d4033271a0d00000916232f3c4956626f7c89959f9f9f988b7e7165584b3e3225180b000009141f29333b4246484848484848484848484848484854616e7a8794a1a094877a6d6154484848484848484848484848484846423b33291f140900000000000000030d18242f3a434f59626d74808d929ca3adaaa29f938e86807b76726f6d6669686767676869666d6f72777b81868f949fa3ababa39f918c7f726c61584e42382d20170d0000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000000000000000004101d2935404b5563707d8996a1ac9f93877b6e615664717e8a98a2ab9e9285796d6053463b3025190e02000000000000000000000000000003090e12141519191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191816120d070000000000000000030a1016191c1d20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201d1c1916100a030000000004111d2a36424e59636a6c6c6c6c6c6c6c6c6260584e43372b1f13060013202c3946535f6c7986929facada093867a6d6053473a2d353d44505c666d7a849198a2aba69d938c7f726c61584e453b31281e140a01000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000030d17232e38424c565f696f7c869299a3a59e948f827a6e69605950443f38302820180f07000000000000000000000000000000000000000d1a2633404d596673808c99a8b2aa9d9083776a6054483e332a211a14110d080d070c1013181d242935414c55606d7985929fabaea2988a7d7164574a3e2e23170b00000613202c3945515d676d6f707273757678706b6054443a30231a0f0b0609070c121c26303c4754616d7a86939facab9f9285796c605346392d20130600000003101c28343f4a54606d78839099a3afa39992867d736d67625f585c5c535b6061656c707a828f949fa9a2988f82766a6054473b2e221508000000000000000000000000000000000002080d11171c1f262a2f34383c43474c5254596063696e73797d82888d92979da0a79d9084776a5d5144372a1e110000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2aca4988b7e7165584b3e3225180b00020e1a25303b454d52545454545454545454545454545454616e7a8794a1a094877a6d61545454545454545454545454545454524d453b30251a0e020000000000000007131d28313d47515b606c77808c919ea1a9aea59e98928d87837f7c79777674747474747677797c7f83888e92999fa6aea8a199928b7f736d635a50463c2f261c0e050000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000000000000000006131f2c3945515d6774818e9ba8ab9c908376695e53606d7a86929faca2978a7d7164564d41362a1e110500000000000000000000000000060d141a1e2122262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262525221e181109010000000000000000050a0d0f101313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313100f0d0a05000000000000010e1a26313d4751595e5f6060606060606055544e463c32271b0f030013202c3946535f6c7986929facada093867a6d6053473f383d47515b606d78828f96a0aaa89f948e81746d635a50463c33291f160c0200000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000006111c26303a444d57606a707d879298a2a69e9490847b6f6b625a504a423a322a21191106000000000000000000000000000000000005111e2a36424d576976838f9ca9b5ab998c7f7366584e43362c21180f0905010000000004070c1319242f3a45515d6774818e9aa7b4aa9b8e817468544a3f34281c10030004111d2935414c555d606264656768696b6360594f4432291e110800000000010a14202d3946525e687784919daaaea298877a6e6154473b2e21140800000006121f2c3844505c66727f8b95a0aba89f92877d706b605d55534e4f4f495053555a61686d79829097a1a49f94897c6f6256493c2f231609000000000000000000000000000001040a0f13191c22282b3136394045474e53565d60656b70757b80848a8f949a9fa2a7a09d979083776a5d5144372a1e110000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0005121e2a36424d575e616161616161616161616161616161616e7a8794a1a094877a6d616161616161616161616161616161615e574d42362a1e120500000000000000010c161f2b353f44505b656c747f8a92979ea6acaaa29f9a93908c898684828181808181828486898c90959a9fa3ababa49f9691877e736d635b51473e342a1d140a000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000000000000000714202d3a4753606d7985929faba3998b7f726557515d6775818e9ba9a99c8f8275685e5246392d20160a000000000000000000000000060f181f262a2d2e3232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232312e29231b13090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915202b353f474e5253535353535353534947433c342b20150a000013202c3946535f6c7986929facada093867a6d6059504a42454f59626d74808d949fa8a9a0968f82786d605b51483e342b21170d040000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000a151e29323c454e58616b707d869298a2a69f9691857d716c605c544c443c332b2317110a020000000000000000000000000000000714202d3a46525e697885929eabafa399897c6f6256493d32231a0f060000000000000000000108131e2935404b5564707d8a97a9b3aa9d908377665c5044382b1f120600010d19242f3a434c51545557585a5b5d5e56544f473d3320170d00000000000005111d2a36414c566875828e9ba8b3aa95897c6f6256493c2f2316090000000713202d3a4653606d7984919ea7ada1968d80736b6059514b474342423f44464850565d676d7a85929b9993908c8275685c4f4235291c0f02000000000000000000000001070d11161b1e252a2d33383b42464b5153585f62686d72777d82868c91969c9fa6a39f9b95908b857f7366594c403326190d0000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000714202d3a46525e696e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e7a8794a1a094877a6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e695e52463a2d2014070000000000000000040d192327333f49535b606d737d858f949da0a7acaca49f9c989892918f8e8d8d8d8e8f919298999d9fa7acaca69f99938d847d716c635b51493f352c22180b02000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000000000000000005111e2a36414d5664717e8a98a2ac9f92867a6e61544b5563707d8a97a1ac9f92867b6e6154473d32271b0f0100000000000000000000030d18212931363a3b3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3e3a342d251b110700000000000000000000000000000000000000000000000000000000050a0d0f101313131313130f0f0d0904000000000000000000000000000000000000000000000000000000000000040f19242d353d424546464646464646463c3b37322b22190f04000013202c3946535f6c7986929facaea194887b706b605b544c4d57606b727f8b929da6aba19791847a6d665c51493f362c22190f05000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000030c17202a333d464f59616b707d869298a1a8a09792877e746d665d564d453d3527221b140b0300000000000000000000000000000814212e3b4754616e7b8797a2adac9f92867a6d6053473a2d2014070000000000000000000000010d18242f3b4754616e7a8797a1adac9f9286796d6053463a2d201307000008131e28313a414547494a4c4d4e50514948443d352b210e05000000000000010d192530414e5b6774818e9aa7b0a3968a7d7063574a3d3024170a000004101d2935404b5564717d8a96a1acaa9e9184796d60594f45403937312d3337393e444c555e68717e8b8e8a86837f7c6f6255483c2f22150900000000000000000000040a0f13181d20272c3036383f44464d53555c60646a6f747a7f84898f92999ea1a9a19e99928e89837e79736d63574b3e3225180c0000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000815212e3b4854616e7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7c8995a2a295887c7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b6e6154483b2e211508000000000000000000071017222d384149505b636b707b828990959c9fa4acaca9aaa39f9d9c9b9a9a9a9b9c9d9fa3aaaaababa39f9b948f878079706b625a514940372e231a100600000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000000000000000714202d3946525e6876828f9caaab9c8f8276685e524653606d7985929eaba3998c7f7266584e43372b1d12070000000000000000000009141f29333b4246484c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4a463f372d23180d0100000000000000000000000000000000000000000000000000030a11161a1c1d2020202020201c1b1915100902000000000000000000000000000000000000000000000000000000000008121b242b31363839393939393939392f2e2b272019100700000013202c3946535f6c7986929facb8ab9e92857d736c665e56555f69707d87929fa4aea39992857b6e685d544a40372e241a100700000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000050e18212b343e474f59616b707d8691969fa7a199928b80786d685f574f473f332d261d150c03000000000000000000000000000916232f3c4956626f7c8995a9b3aa9e918477675d5145382c1f13060000000000000000000000000714202d3946525e687885919eabaea398887b6e6255483b2f2215080000010c161f282f35393a3c3d3f404243453d3b38332b23190f0000000000000000081a2733404d5a6673808d99a6b0a4978a7d7164574a3e3124170b00000613202c3945515d6775828f9ba8aea3988b7e71675d51473d352f2b2622272b2d323a434c56606d7883817e7a76736f6a5f53473b2e2115080000000000000000070c10151b1d24292c32383a41464a5053575f61676d71767c81868b91959b9fa3a69f9c96918c86817c77716d67635b51463b2f22160a0000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00121f2b3845525e6b788487878787878787878787878787878787898e99a4a4988e888787878787878787878787878787878784786b5e5245382b1f120000000000000000000006111b262f383f44515961696e757d83898f939a9c9fa2aaa7a8aaa9a7a7a7a7a7a9a9a8a6a9a29e9b99928e88827c746d676059504840372e251c11080000000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000000000000000814212e3b4754616e7b86929faca3998b7e7165564c44515c6674818d9aa8ab9d9184776a605447392f23180c000000000000000000020e1a26313b454d535559595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959585651493f34291e1206000000000000000000000000000000000000000000000000040d151c2226292a2d2d2d2d2d2d292825211b140c03000000000000000000000000000000000000000000000000000000000009121920262a2c2c2d2d2d2d2d2d2d22221f1b150f070000000013202c3946535f6c7986929facb9ada197928780786d68605d676e7b859299a3aea49f92877d6f695f564c42392e251c12080000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000060f19222c353e474f59606b6f7c8490959ea5a39f928d827a6e69605950443f382f271e150d040000000000000000000000000a1723303d4a5663707d8996a3b0a99c90837669554b4035291d100400000000000000000000000005111e2a36414c566a7683909da9b4aa96897c6f6356493c30231609000000040d161e24292c2d2f313234353638302f2c272119110700000000000000000d1a2633404d596673808c99a6b1a4978a7e7164574b3e3124180b00000714202d3a4753606d7a86929facac9f92867a6d60554b403529241d1a171b1f2028313a44515c666d7775716d6866625f584e43372b1f1206000000000000030b12181c1f262b2f35393d43484c52545b6063696e73797e83888e92989da0a8a29f9a94908a847f7a756f6b65605d55514940352a1e12060000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00121f2b3845525e6b7885919494949494949494949494949494949599a0aaaaa098959494949494949494949494949494949184786b5e5245382b1f1200000000000000000000000a141d262d3340474f575e616b70777d82878b8f9298989a9b9d9e9e9f9f9f9e9d9d9b999797928e8a86817c766f6a605d554f473e362e251c130a000000000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000000000006131f2b37434e5865727f8c99a3ac9f92867a6d615447404a54636f7c8996a1aca095897c6f62554b4034291c1004000000000000000005121e2a36424d575f616565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565625b51463a2e2216090000000000000000000000000000000000000000000000030d161f272d3235363939393939393635312c261e150c020000000000000000000000000000000000000000000000000000000000080f151a1d1f20202020202020201615130f0a04000000000013202c3946535f6c7986929facb9b3a9a199938c827a6f6a656d79839097a1aba59c928b7e716b60574d443a30271c130a000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000007101a232c353e474f59606a6f7a838f939fa4a49d948f847b706b625a5049413930271f160d0400000000000000000000000b1724313e4a5764717d8a97a4b0a89b8f8275685c4f422f24180c00000000000000000000000000010d192530424f5c6875828f9ba8b0a3968a7d7063574a3d3024170a00000000040c13191d202122242527282a2b252423211c170d0801000000000000000e1b2734414e5a6774818d9aa7b0a4978a7d7164574a3e3124170b00000a1723303d4a5663707d8998a3aea89b8e8275675d51433a2f23181d1d1d1d1d161f2834404a545c606a6864615e5655534e463c32261b0f030000000000030c151c23282c31373a4045474f54565e61666c70767b80858b90959a9fa2a8a09e98928e88837e79736e6863605953514b4340372e23190d020000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00121f2b3845525e6b7885919ea1a1a1a1a1a1a1a1a1a1a1a1a1a1a2a4aab2b2aaa4a2a1a1a1a1a1a1a1a1a1a1a1a1a1a19e9185786b5e5245382b1f120000000000000000000000020b141b2227353e454d525960636b70757b7e8285888b8d8f9091929292929191908e8c8a8885817e7a746f6a626058514b433d352d241c130a01000000000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000000000000000815212e3b47535f6a7783909dabaa9c8f8275685e5246394653606c7884919eaba89a8d8174675c5145382c1f140900000000000000000714212d3a46535f696e72727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272726d62564a3e3125180b00000000000000000000000000000000000000000000000a151f2831383e424346464646464642413d3730271e140900000000000000000000000000000000000000000000000000000000000004090e11121313131313131313090806030000000000000013202c3946535f6c7986929facb9bab2aba49f948f847c726c77818f95a0a9a79e938c80736c61594f453c32281e150b01000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000008111a232c353d474f585f686e79818c939aa2a69f9691857d716c605b534a423931281f160d04000000000000000000000b1825313e4b5864717e8b97a4b1a89b8e8275685b4f4235281c070000000000000000000000000000081b2835414e5b6874818e9ba7b0a4978a7d7164574a3e3124170b000000000008121a22282d303132323232323231302d282219130c04000000000006121e2b37424d576875828f9ba8b4aa96897d7063564a3d3023170a00000d1a2733404d5a6673808d99aab4aa978b7e7164554c4131282a2a2a2a2a2a2a2a2a232e39424a51535d5b5754524c4847433c342a20150a0000000000000b151e272e34383c43474b5153596063686d72787d82878d92979d9fa7a49f9c96918b86817c76716d66615e56544f47454039312e251c1207000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00121f2b3845525e6b7885919e9f9f9f9f9f9f9f9f9f9f9f9f9f9fa1a3a8b0b0a8a3a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9e9185786b5e5245382b1f12000000000000000000000000020a1117232c333b42464f54596063696e7276797c7e808283848585868585848382807d7b7975716d68625f58544e45403a312b231b120a0100000000000000000000000b1825313e4b5864717e8b97a4aca89b8e8175685b4e4235281b0f08040000000000000000000003050e1b2734414e5a6774818d9aa7aca4978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000000000003101c28343f4a54626f7c8895a0aca3988b7e7164564c413744505b6573808d9aa7ab9f9285796d6053473b30251a0e02000000000000000815222e3b4855616e7b7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7265584c3f3225190c0000000000000000000000000000000000000000000005111c27313a434a4e505353535353534f4d49423930261b1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facb9b2a8a09da09f9691877f76808c939ea7a89f958e81776c605a50473d332a20160c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000008111a232b353d464e565e676d7780889298a0a8a09792877e736c655c544b433a31281f160c030000000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2834414e5b6774818e9aa7b1a4978b7e7164584b3e3125180b0000000005101a242c33393c3e3f3f3f3f3f3f3e3c393329241e16100c0709060b1117232d3a47535f697884919eabaea398887b6e6155483b2e2215080004101c2834404b546976828f9ca9aea398887b6f6255483c2f3737373737373737373737373039404446514e4b4746413c3b37322a261f180f060000000007121c2730394044464e53555d60656b6f757a7f848a8f939a9ea1a9a29e99938f89847f7a746f6a64605c54524c48433d39352f271f1c130a00000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00121f2b3845525e6b78849193939393939393939393939393939394979ea8a89e97949393939393939393939393939393939185786b5e5245382b1f12000000000000000000000000000006111a202930363d44484f54565e6165666d6f7174757778787979787877767573716f6d6664605d56534e47433d352f281f191109000000000000000000000000000b1825313e4b5864717e8b979f9f9f9b8e8175685b4e4235281b1614100b05000000000000060b0f12131b2734414e5a6774818d9a9f9f9f978b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000000000006121f2b3844505c6673808d9aa7ac9f92867a6d6054473a333f4953626f7c8895a0aca2978a7e7164574d42362a1e1205000000000000000a1724303d4a5763707d8a8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c86796c5f5346392c2013000000000000000000000000000000000000000000000a16222d38434c545a5d6060606060605c5a544c42372c2115090000000000000000000000000000000000000000000000000000000105090b0b13131313070604000000000000000000000000000013202c3946535f6c7986929facb9aca0969196a0a199928c838c929ca5aaa1969083796d655b50483e352b21180e040000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000081119232b343c444d555d656c737e8691969fa6a299928b80776d665d554b433a31281e150a0000000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000b17222c363e44494a4b4b4b4b4b4b4a49453e352f281f1c18171616171b222935404b55616e7b8896a1acac9f9286796d6053463a2d2013070006131f2c3845515c667884919eabac9f9286796d6053464444444444444444444444444444444444444444444444444444443b3a36312a21180e030000000c18232e39424a5153585f62676d72777c81868c91969c9fa4a7a09d97928d87827d78726d68625f5853504a46413b38322c29241d150d0a0100000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00121f2b3845525e6b788486868686868686868686868686868686878c97a3a3978c878686868686868686868686868686868684786b5e5245382b1f12000000000000000000000000000000080e171f2f3a454f575c5e60605f545c60626567686a6b6b6c6c6c6b6a6a68666462605c5454524c47433c383229241d160d0700000000000000000000000000000b1825313e4b5864717e8b93939393938e8175685b4e42352b2423201c170e09030000020a11171b1f20252c34414e5a6774818d93939393938b7e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000000000713202d3a4653606d7985919eabaa9b8f8275675d5145392d3847535f6a7784909daaa99c8f8276695e52463a2d20160a000000000000000a1724303d4a5763707d8a96989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989286796c5f5346392c2013000000000000000000000000000000000000000000010d1a26323e4a545e66696c6c6c6c6c6c69655e54493d3125190d0000000000000000000000000000000000000000000000000000060c111517182020201f1413100c0701000000000000000000000013202c3946535f6c7986929facb7aa9d91849196a0a39f9490949ca4aba29891847a6d675c53493f362d23190f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000071019222a323b434b535b606c707c848f949da4a39f928d81786d675d554b433a30261c110600000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000004101c28333e4850555758585858585857555045413a312c282323222322282d333d45515d67727f8c99a8b2a99d908376665c5144382c1f1206000713202d3a4653606d7986939facaa9d908477665c50505050505050505050505050505050505050505050505050505050504846423b332a1f1409000004101c2834404a545c60646a6f747a7e83898e92999ea1a8a39f9b95908b85807b75706c65605d56534e46443f3836302c271f1d18120b03000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00111e2a3743505c687278797979797979797979797979797979797a8794a1a094877a797979797979797979797979797979797872685c5043372a1e11000000000000000000000000000000000f1b2834404c5761686b6c6c6c605c5455585a5c5d5e5f5f565d6065696b6c6b6965605c554e463c37312b272018130c040000000000000000000000000000000b1825313e4b5864717e868686868686868175685b4e42393831302d28221a140c07070b141b22272b2d323939414e5a677480868686868686867e7164584b3e3125180b000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f06060403010000000000000203060e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000000000004111d2935414c5563707d8a97a1ada2988a7e7164554c41352b37434e5866737f8c99a7ac9f93877b6e6154483d32271b0f010000000000000a1724303d4a5763707d8a969f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9286796c5f5346392c2013000000000000000000000000000000000000000000030f1c2935424e5a6670767979797979797570655a4d4135281b0f020000000000000000000000000000000000000000000000000911181d2124252d2d2d2c201f1c18120b030000000000000000000013202c3946535f6c7986929facaea194877b849196a1a69f9c9fa6afa39992867c6f685e554b41382d241b110700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000071018202931394149505a616a6f7a828d929fa4a49c938e82796d675d554b42382e23171006000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000814212d3944505a616465656565656564615a514c433e38342e302f302d33383f44505a606d7985929eabb1a7998c807366544a4034281c1004000815212e3b4854616e7b879aa4afa99c90837669545d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d55534d453b31261a0e020006121f2c3844515c666d71767c81858b90959b9fa3a8a19e99928e89837e79736e6963605b53524c47433c38342e2a251e1b16100c070100000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000f1b2834404b5660686b6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6e7a8794a1a094877a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6860564b4034281b0f00000000000000000000000000000005111e2a3744505c6873787979796d665c504b4d4f4c52565e61686d727678797876726d675f584e463c30261c160d0701000000000000000000000000000000000a1724303d4956626c7179797979797979756f65594d4646453d3c39332a261f181212181d262d3337393e4546464c58646e7479797979797979716c6256493d3024170a000b1825313e4b5864717e8b97a4aca89b8e8175685b4e4235281b13131311100e0a050005090d0f1013131b2734414e5a6774818d9aa7aca4978b7e7164584b3e3125180b0000000000000613202c3945515d6775818e9ba9ac9f92867a6d6053473a2f26323c4855616e7b88959faba4998c7f7266594f43382c1d12070000000000000a1724303d4a5763707d8a93939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939286796c5f5346392c201300000000000000000000000000000000000000000003101d2a3643505d6976828686868686868275695c4f4236291c0f03000000000000000000000000000000000000000000000009121b22292e3132393939392d2c29231d150d0300000000000000000013202c3946535f6c7986929facada09386797b849197a1a9a9abb0a89f92877d706a5f564c43392f261b12090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000060e171f282f383f4450585f686d78808b9399a3a59e948f82796d675d544a3f342822180b020000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000a1623303c4955616c71727272727272716c605d554f4645403e3d3c3c3d3f44495059616c73808d97a1adab9f95887c6f6255483c2e23180c00000916232f3c4956626f7c8995acb6a89c8f82756a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a615f574d42362a1e1205000713202d3a4653606d787e83888d92989da0a7a69f9c96918c86817c77716d67615f5753504945413a37312c28231c19140f0a0400000000000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000b17232f3a454e565c5e6060606060606060606060606060616e7a8794a1a094877a6d6160606060606060606060606060605e5c564e453a2f23170b00000000000000000000000000000005121f2b3845525e6b7885868686786d60534a4c51565e61686d737a7f82858685837f796f6a5f584e42382e23170b0000000000000000000000000000000000000815212d3945505a62646c6c6c6c6c6c6c68655d53535353514a49443e363129231d1d23282f383f44464b52535353535c64676c6c6c6c6c6c6c64625a5045392d211508000b1825313e4b5864717e8b979f9f9f9b8e8175685b4e423528202020201d1d1a16110b1015191c1c2020202734414e5a6774818d9a9f9f9f978b7e7164584b3e3125180b0000000000000714212d3a4754606d7a86929facaa9b8e8175675d5145392c212d3a46535f697683909dabab9e9184776b605448392f24180c0000000000000a1724303d4a5763707d8686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686796c5f5346392c201300000000000000000000000000000000000000000003101d2a3643505d69768390939393938f8275695c4f4236291c0f030000000000000000000000000000000000000000000006111b242d343a3d3e464646463a38342f271f150b01000000000000000013202c3946535f6c7986929facada093867a6e7b859197a1a9b3aca1968b7f726b60584e443a31271d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000000000050d161d262d333e464e565d666d747f879298a2a69e949082796d665c50443f342a1d140a0000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000b1724313e4a5764717e7e7e7e7e7e7e7d756d67615953514b4b4a49494a4a50535b606b707e88939fa9b0a69d9083766a5f53473b2e1c120700000a1623303d495663707c8996a3afa89b8e8177777777777777777777777777777777777777777777777777777777777777776e695f53463a2d21140700101d293643505c6976828a90949a9fa2aaa29f9a948f8a847f7a756f6a64605d55534d46443f38352f2b261f1c17110e0802000000000000000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0007121e28333c454b50525353535353535353535353535354616e7a8794a1a094877a6d61545353535353535353535353535352504b453c33281e120700000000000000000000000000000003101d2a3643505d6976839098897c6f635a56555d60686d737a80858b8f9192928f8b847c6f6a5f544a3f34281c1003000000000000000000000000000000000005111d29343e48505658606060606060605b595e606060605e57555046423b342f27272e343c41495053585f6060605f5c585a60606060606060585650483e34291d1105000b1825313e4b5864717e8b93939393938e8175685b4e42352d2d2d2d2d2a2926221c151b212528292d2d2d2d34414e5a6774818d93939393938b7e7164584b3e3125180b000000000005121e2a36424d5765717e8b98a2aea2988a7d7064554b4035291e2a36424d5765727f8b99a3aca096897c6f63554b4035291d100400000000000916232f3c4855616b707979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746a5e5145382b1f1200000000000000000000000000000000000000000003101d2a3643505d697683909c9f9f9c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000010c18222d363f454a4b535353524745403931271d1207000000000000000013202c3946535f6c7986929facada093867a6d6f7c859297a2aaab9e91847a6d675c554b423930261e140b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000040b141b2227343c444c545c606d727e869298a2a69f958f82786d605a50463c2f261c110600000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000003101d2a3643505d6976838b8b8b8b8b8b8a817a706b64605c545756555657545b60656c727d86929aa4afaa9f948a7d7064584e43372b1f0b0000000a1724303d4a5763707d8a96a3b0ab9e928583838383838383838383838383838383838383838383838383838383838383837b6e6155483b2e22150800101d2a3743505d6a7683909c9fa6a8a09d98928d88837d78736d6862605853514b46423b37332d29241e1b15100c06000000000000000000000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00010c17212a333a4043454646464646464646464646464754616e7a8794a1a094877a6d6154474646464646464646464646464543403a332a21170c01000000000000000000000000000000010e1b2834414e5b6774818e9a8e81756c656364676d737a80868d92989c9e9f9e9c9691857c6f665c5044382b1f13080000000000000000000000000000000000000c17222d363e45494b5353535353535359636b6c6c6c6c6b64615a534d45403931303940454d535b60656c6c6c6c6b686157535353535353534b49453e362d22170c00000b1825313e4b5864717e868686868686868175685b4e423939393939393736322d271f262c3235363939393939414e5a677480868686868686867e7164584b3e3125180b00000000000714212d3a46535e697683909caaab9f9285796d6053463a2f241a26313b4754616d7a86929faca89a8e8174675d5145392c1f140900000000000714202c38444f5961636c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a62584d4135291d100000000000000000000000000407090a0b0b0b0b0b0b101d2a3643505d697683909ca9a89c8f8275695c4f4236291c0f0b0b0b0b0b0b0a09070400000000000000000000000005111d29343f485056586060605f53514b43392f23180c000000000000000013202c3946535f6c7986929facada093867a6d6a6f7c859298a2aaa1968f82796d675c544a423830261d140b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117222a323a424a505b626c717d869298a2a79f948e81746d62584e42382d22170b00000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000030f1c2936424f5c6975828f9898989898938e847d76706d6666646362636465666c71787f879298a2acaca2988f82766c6155463c32261b0f0000000a1724313d4a5764707d8a97a3b0ada1979290909090909090909090909090909090909090909090909090909090909090887b6e6255483b2f22150800101d2a3743505d6a7683909da9a49c96918b85817c76716d66615e56544e4745403936312b27221b19130f0a030000000000000000000000000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000050f1821282f34373839393939393939393939393b4754616e7a8794a1a094877a6d6154473a39393939393939393939393837342f2821180f0500000000000000000000000000000000000c1825323f4b5865727e8b98938b7f75717071747a80858d92989fa2aaa4a3a5a8a1979083786d6053463a2f24190d01000000000000000000000000000000000006111b242d34393d3e464646464646525e6b757979797978706c615f57514b433e3d424b51575f656c71787979797873685c504646464646463e3d39342d241b110600000a1724303d4956626c7179797979797979756f65594d3b46464646464644423e39312930383d41434646464646464c58646e7479797979797979716c6256493d3024170a00000000000815212e3b4854616e7b87939faca99b8e8174675c5145382c1d14202d3946525e6876828f9caaab9f9285796d6053473b31251a0e00000000000714212d3a46535f696e72727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272726d62564a3e3125180b00000000000000000000040b10131616171717171717171d2a3643505d697683909ca9a89c8f8275695c4f4236291c17171717171717161613100b05000000000000000000000915212e3a45505a62656c6c6c6c605c554b4034291c10040000000000000013202c3946535f6c7986929facada093867a6d606a6f7d869298a3a89f948f82796d665c544a42382f261d140b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000061018202830383f44515a616b707d869299a4a69d938b7e716a5f544a3f33281d1207000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000020e1b2835414e5b6874818e9ba5a5a5a59e96918a837d79767271706f6f707275787d838b9299a2aaafa49a92867b6e61594f44342a20150a0000000a1724313d4a5764707d8a97a3b0b3a9a19e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d94887b6e6155483b2e22150800101d2a3743505d6a7683909da99c928d847f7a746f6a64605c54524c48433d38352f2a261f1b17110d080100000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000000060f171e23282a2b2d2d2d2d2d2d2d2d2d2d2e3b4754616e7a8794a1a094877a6d6154473a2e2d2d2d2d2d2d2d2d2d2d2b2a28231e170f060000000000000000000000000000000000000815222f3b4855626e7b88959b918b827e7d7e81858c92989fa2a29f9a9796989c9f9f958a7d7164554c4135291d110400000000000000000000000000000000000009121b22292d303139393939394653606c7987868686847d756e69605c554f46454f545c60696e777e8586868685786b5f5245393939393931302d29221b12090000000815212d3945505a62646c6c6c6c6c6c6c68655d534648535353535353504f4a433b313a42494e4f53535353535348535c64676c6c6c6c6c6c6c64625a5045392d2115080000000007131f2c38434e5866737f8c9aa4ada2978a7d7063554b4034281c111d2a36414c5664717e8b98a2aea2988b7e7164574d42362a1b1106000000000815222e3b4855616e7b7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7265584c3f3225190c000000000000000000070f161b20222324242424242424242a3643505d697683909ca9a89c8f8275695c4f42362924242424242424242322201c160f070000000000000000000b1724313d4a56626c71797979796d675c5145382c1f13060000000000000013202c3946535f6c7986929facada093867a6d60606a707d869299a3a69f948f82786d665c544a42382f261d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e161e262e343f485059606b707e87939fa6a59f92867c6f665b5044392e23180c000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000010e1a2734414d5a6774808d9aa7b1b4aea8a19e94908a85827f7e7d7c7c7d7f82858a90959fa3ababa39f93887e71695f53473e3322180e040000000a1723303d4a5663707d8996a3b0b8b0aba99f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa9aaaaaaaaaa94877a6e6154473b2e21140800101d2a3743505d6a7683909da69a8d8079726d68625f5853504a46413b38322c29241d1a150f0b0600000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00000000050c12171b1e1f202020202020202020212e3b4754616e7a8794a1a094877a6d6154473a2e212020202020202020201f1e1b17120c05000000000000000000000000000000000000000814212e3a47535f6a7784919d9b948f8b898a8d92989fa2a29f98928d8a898b90949c9c8f8276675d5145392c201306000000000000000000000000000000000000000911171d2124252d2d2d2d313e4b5864717e889396918a827b736d67615953525960666d737b828b929792877e7064574a3d312d2d2d2d2524211d1711090000000005111d29343e48505658606060606060605b59534d535f6060606060605d5b554d4339424c545a5c6060606060605f5353585a60606060606060585650483e34291d1105000000000915222e3b4854606a7784919eacab9e9285796d6053463a2e23180d1925303a4754606d7a86929facaa9c8f8276695e5346382d22170b000000000a1724303d4a5763707d8a8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c86796c5f5346392c2013000000000000000007111921272c2f303131313131313131313643505d697683909ca9a89c8f8275695c4f4236313131313131313131302f2c272119110700000000000000000b1825323e4b5865717e86868686796d6053473a2d20140a0000000000000013202c3946535f6c7986929facada093867a6d6058606b707d879299a3a69e948f81786d665c544a41382f261b11060000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000010000040607080707050100040c141c2328363e474f59616c727f8c949faaa3989083786c60554b4034281c10040000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000d1a2633404d596673808c99a6b4aaa29f9a9f9f9c98928f8c8a8988898a8b8e92979da0a7aea8a199928b7f726c61574d42352c21100600000000091623303c4956636f7c8996a2afb0a69f9c9393939393939393939393939393939393939393939393939c9ea6b0aea398877a6d6054473a2d21140700101d2a3743505d6a7683909da99c928d847f7a746f6a64605c54524d48443d39352f2b261f1c17110d080200000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000000000001070b0f1112131313131313131314212e3b4754616e7a8794a1a094877a6d6154473a2e2114131313131313131312110f0b0701000000000000000000000000000000000000000006121e2b37424e5765727e8b95a09e9c9896979a9fa2a39f98928c85817e7d7e838c929f92867a6d6054473a2d2114070000000000000000000000000000000000000000060c1115171820202024303d4956626c717f8b919e948f868079706b615f5d606b6f797f868f949f93887e716c6155493c3023202020181715110c060000000000000c17222d363e45494b535353535353534e4d4d575e6c6c6c6c6c6c6c6a665f554a3e49545e66696c6c6c6c6c6c6c5e574d4e535353535353534b49453e362d22170c0000000004101c2834404b54626f7c8996a0aca99a8e8174665c5144382c1d120813202c3945515d6775818e9ba9ac9f93877b6e6153493f33271b0f030000000a1724303d4a5763707d8a96989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989286796c5f5346392c201300000000000000040f19232b32383b3d3e3e3e3e3e3e3e3e3e3e43505d697683909ca9a89c8f8275695c4f423e3e3e3e3e3e3e3e3e3e3d3b38332b23190f05000000000000000a1723303d4a5663707d8993988a7d7063574a3d31261b0f0300000000000013202c3946535f6c7986929facada093867a6d605359616b717e87929aa4a69e938e81786d665b534941382d2217140a01000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000020608080e070c101313151413110d0802020a1117242c353d47505a606c77828f98a2aa9f958b7e71675c5145382c1f14080000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000c1926323f4c5965727f8c98a5aea298928d939aa0a29f9c999796959697989b9ea1a9acaba39f9691877f726d625a50453c31231a1000000000000815222f3b4855626e7b8895a9b3ab9f948f8686868686868686868686868686868686868686868686868f949eaaac9f928579675d5145392c20130600101d2a3743505d6a7683909da9a49c96918b86817c76716d66615e56544f4745403937312b28221c19130f0a040000000000000000000000000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000000000000020405060606060606060814212e3b4754616e7a8794a1a094877a6d6154473a2e211407060606060606060504020000000000000000000000000000000000000000000000020e1a26313c4653606c78839097a1a8a4a3a4aaa29f98928d86807a74717072767f8c94998a7d7063574a3d3024170a0000000000000000000000000000000000000000000005080a0b131315212d3945505a626d727f8b919c98928c847d756e69686d747c838c92989c918b7f726c625a5044392d201413130b0a0805000000000000000006111b242d34393d3e464646464646464246535e69767979797979797771665b4f424e5a66707679797979797976695e5346464646464646463e3d39342d241b11060000000006131f2c3845515c6674818d9aa8ada197897d7063544a4034281c0b04111d2935414b5564707d8a97a2ada49a8c7f73655b5044372b1f13070000000a1724303d4a5763707d8a969f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9286796c5f5346392c2013000000000000000b16212b353d4448494a4a4a4a4a4a4a4a4a4a4a505d697683909ca9a89c8f8275695c4f4a4a4a4a4a4a4a4a4a4a4a4948443d352b21160b000000000000000815222f3b4855626e7b88959a8d817467584e43372b1f120600000000000013202c3946535f6c7986929facada093867a6d60534f59616c717e88939fa3a59e938e81786c655b53493f3327261c130a010000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000003090e1214151a1c181c1f202121201d19130c050006121a232b353e44505b656e7b86929faaa79e9184796d6053463b3025190d0100000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000b1825313e4b5864717e8b97a4ab9f9286818890959b9fa3aba4a3a2a2a3a5a8a9a7a8a19e99928d847d716d625b51483e332a1f110800000000000714212d3a4754606d7a8797a2ada99c8f82797979797979797979797979797979797979797979797979828f9ca9ab9e9184786b554b4135291d110400101d2a3743505d6a7683909c9fa6a8a09d98928d88837e79736e6863605953514b47423c38332d2a251e1b15100c07010000000000000000000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000000000000000000000000000000000814212e3b4754616e7a8794a1a094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000009151f2b3844505b666f7c8591969c9f9f9e9c98928d86807a736d686463656d76828f998d8073665a4d4033271a0d00000000000000000000000000000000000000000000000000000605111d29343e48505a626d727f8c929c9f96918a827b73717a818891959f9d928c7f736d625a50483e33281c1004060000000000000000000000000009121b22292d3031393939393939393b4854616e7b86868686868683776a5d50444f5c6976828686868686867b6e6154483b39393939393931302d29221b120900000000000713202d3a4653606d7985929eabab9e9185796d6053463a2e23180c010d18242f3a4653606d7985929fabac9e9184786c6053463a2f24180d0100000a1724303d4a5763707d8a93939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939286796c5f5346392c201300000000000004101b27323d474f54565757575757575757575757575d697683909ca9a89c8f8275695c57575757575757575757575756544f473d33271c10040000000000000714202d3a4753606d7a86979e9184786a5f53473a2e21150800000000000013202c3946535f6c7986929facada093867a6d605347505a616c727f8b919ba4a59e938e81776c655b504440382e261c130a0100000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000000000060e151a1e2122272823282c2d2e2e2d2a251e160e05000811192327333f49535e69737f8c98a2ada1968b7e7164564c41362a1e110500000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000a1724313d4a5764707d8a97a3ac9f9286797c83898e9299999c9d9e9f9f9f9e9d9b9896918c86807a706b625a51493f362c21180e0000000000000613202c3945515d677885929eabaa9d9184776c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c667784919eaaa99c8f8376695c50432f24180d0100101c2936434f5c6976828a8f949a9fa2a9a29f9a94908a84807b756f6b65605d55534d46443f3836302b271f1c18120e0903000000000000000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000000000000000000000000000000000814212e3b4754616e7a8794a1a094877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545f6a6f7c848c909292918f8b86807b746e68605d56565b64707d8a998f8275685c4f4235291c0f020000000000000000000000000000000000000000000000000000000c17222d363f48515b636d737f8c929ca09e948f867f7d848d939aa09d938d80736d635b51483e362c22170b000000000000000000000000000000000911171d2124252d2d2d2d2d2d2e3b4854616e7b87939393939083776a5d50444f5c6976828f93939393877b6e6154483b2e2d2d2d2d2d2524211d171109000000000005111d2935414c5664707d8a97a2ada89a8d8074665c5044382b1c12070007131f2c3845515c6674818e9aa8aca096897c7063554b4035291d110400000a1724303d4a5763707d8686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686796c5f5346392c20130000000000000713202c38444f59606364646464646464646464646464697683909ca9a89c8f827569646464646464646464646464646360594f44382c20130700000000000006131f2c3945515d677885929e96887b6f6255483c3025190d01000000000013202c3946535f6c7986929facada093867a6d60534748505a626d727f8c929ca4a59d938e80776c605c524a40382e251c130a01000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000000060f181f262b2d2e34352e34383a3b3a3936302820160c0200071117222d38414d57606d7a86929faca89c908376685e5246392d20140700000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000a1623303d495663707c8996a3afa399867a6f787d82868a8c8f909192929291908e8b8884807b736d68605950483f372d241a0f0600000000000004111d2935414c55697683909ca9ab9f928578695f606060606060606060606060606060606060606d7986929faca79a8d8174675a4e4134271b0700000713202d3a4653606d787d82888d92979da0a7a69f9c97918c86817c77726d67625f5753504a46413a37322c29231d1a140f0b0600000000000000000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000000000000000000000000000000000814212e3b4754616e7a8794a1a094877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000b17222d38424e585f6a6f797f83858684827f7a736e69615e56524c4a54606d7987868683776a5e5144372b1e110400000000000000000000000000000000000000000000000000000006101b242d363f49515b636d73808d929da49e98928c8a91969fa49e938e81746e645b51493f362d241a10050000000000000000000000000000000000060c111517182020202020212e3b4854616e7b87949f9f9d9083776a5d50444f5c6976828f9c9f9f94877b6e6154483b2e2120202020181715110c060000000000000713202d3946525e6875828f9ba9ada196897c6f63544a3f34281c0b000004101c2834404b5463707c8996a1ada89b8e8174675d5145392c20140900000916232f3c4855616b707979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746a5e5145382b1f120000000000000916222f3b4854606b7071717171717171717171717171717683909ca9a89c8f82757171717171717171717171717171706b6054483b2f22160900000000000004101d2935404b556a7783909d998c7f7266564c41362a1d1105000000000013202c3946535f6c7986929facada093867a6d6053473e48515b626d737f8c929ca4a59d938d80746e645c524a40372e251c1309010000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d20130700000000000000000000000000000000000000000000030e18212a31373a3b414243404546484746413a32281e1308000006111b262f3b45525d6875828e9ba8ac9f93877a6e6154473b2e21140800000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000916222f3c4955626f7c8895a2b5ab94877b6e6c70757a7d808284848586858583817f7c78736e68605d564f473f362d251b120800000000000000010d19242f414d5a6774808d9aabaea298887b6e61555353535353535353535353535353535355626f7c8899a3afa9988b7e7265584b3f3225180c000006121f2c3844505c666d71767b80858b90959b9fa3a9a19e99928e89837e79746e6964605b54524c47433d38342f2a251f1b17110d080100000000000000000000000000000713202d3a4653606d798693a0aca69a8d8073675a4d4034271a0700000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000000000000000000000000000000000814212e3b4754616e7a8794a1a094877a6d6154473a2e211407000000000000000000000000000000000000000000000000000000000000000000000006111c262f3c464e585f676d727678797876726d68615e56524c454145515d67757979797771675b4f43362a1d10040000000000000000000000000000000000000000000000000000000009121b242d373f49525b636e74808d929da5a39f99979ea1a69e948e81786c605c524940372d241b1108000000000000000000000000000000000000000005080a0b1313131315212e3b4854616e7b8794a1aa9d9083776a5d50444f5c6976828f9ca9a194877b6e6154483b2e21151313130b0a080500000000000000000714212e3a4754616d7a86929facab9e9184786c605346392e23170b0000000c18232e394653606c7884919eabac9f92857a6d6053473b31261a0e02000714202c38444f5961636c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a62584d4135291d100000000000000a1623303d495663707d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7e83919daaaa9d90837e7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d706356493d3023160a000000000000000c18242f424f5c6875828f9b9c908376685e5246392d201307000000000013202c3946535f6c7986929facada093867a6d6053473a3f49515b636d73808d929da5a59d928d80746e635c524940372e251b13090000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d2013070000000000000000000000000000000000000000000009151f2a333c4247484d4f504b51535454524c443a3025190d0100000a141d2935414c5664717e8b97a4afa49a8a7e7164574b3e3124180b00000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000815212e3b4854616e7b8794abb5a295887b6f6263686d7073767778797978787674726f6a66615e56524c433d352d241b1309000000000000000000081724313e4a5764717d8a99a3afaa988b7e7165574d42464646464646464646464646424d5765727f8c98abada297887b6f6255483c2f221509000003101c28343f4a545c60646a6e74797e83898e92989ea0a8a39f9b95908b85807b76706c66615e56544e4745403936312b27221b19130c04000000000000000000000000000713202d3a4653606d798693a0aca79a8e8174675b4e412e23180c00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000000000000000000000000000000000814212e3b4754616e7a8794a1a094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000000000a141d2a343c464e555d6065696c6c6b6965615e56524d46413b35414b555d6b6c6c6c6a675f564b3f33271b0e02000000000000000000000000000000000000000000000000000000000009121b252d374049525c646e74808d939da59f9f9f9fa79f948f82786d665b504a40372e251b1209000000000000000000000000000000000000000000000000000606060815212e3b4854616e7b8794a1a99d9083776a5d50444f5c6976828f9ca9a194877b6e6154483b2e2115080606000000000000000000000006121e2b37424d5765727f8b99a3aea89a8d8073655b5044372b1c110600000007121f2b3844505b6673808d9aa8aea2988b7e7164574d42362a1e12050004101c28333e474f5557606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605f5e5850473c3125190d000000000003101d2a3643505d6976838a8a8a8a8a8a8a8a8a8a8a8a8a8a8a9195a0acab9f95908a8a8a8a8a8a8a8a8a8a8a8a8a8a8a83776a5d5044372a1d1104000000000000071a2734414d5a6774808d9a9f93867a6d6154473a2e23180c000000000013202c3946535f6c7986929facada093867a6d6053473a373f49525b636e74808d939da5a49d928d80736e635b51493f372d251b120900000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaca09386796d6053463a2d201307000000000000000000000000000000000000000000020e1a26313c454d53555a5b5c555c6061615e564c41362a1d11050000020b19242f3c4955626f7c8895a2b6ac998d8073665a4d4033271a0d00000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000714212d3a4754606d7a8799a4afa296897c6f63565d606366696a6b6c6c6c6b6a6865625f5854524d45413a312b231b1209010000000000000000000714212e3a4754616d7a86929faca89b8e8275695e53463d313939393939393939303946525e6976828f9ca9ab9e9285786c605346392d2013060000000c17232e38424a5053575f62676d71777c81868c91969c9fa4a7a09d97928d87827d78726d6862605853514b46423b37332d29241e160d0a0100000000000000000000000713202d3a4653606d798693a0aca89b8f827568544b4034281c1004000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000000000000000000000000000000000814212e3b4754616e7a87949f9f94877a6d6154473a2e211407000000000000000000000000000000000000000000000000000000000000000000000000020b18222a343c434b5154595d5f5f5e5c5854524c46423b36302f3a434b515e6060605e5b564d44392e22170b0000000000000000000000000000000000000000000000000000000000000009131c252e37404a525c606c77818e93939393939393959082796d665c544a3f382e251c130900000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87949c9c9c9083776a5d50444f5c6976828f9c9c9c94877b6e6154483b2e211508000000000000000000000000000814212e3a47535f697683909d9f9fa096897c6f6253493f33271b0a00000000030f1c28333f4a54626f7c8895a09faa9c908376695f53463a2d21140700000b16212c353e44484a5353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353514d473e352a1f1409000000000003101d2a3643505d6976839097979797979797979797979797979da0a8b1b1a79f9d97979797979797979797979797979083776a5d5044372a1d11040000000000000c1926323f4c5965727f8c98a4998b7e7164544a4034281c10040000000013202c3946535f6c7986929facada093867a6d6053473a2d374049525c606c77818e939ea6a49c928c80736d635b51493f372d241b1209000000000000000000000000000000000000000000000000010101010101010101010613202c3946535f6c7986929facaca09386796d6053463a2d20130701010101010101010101000000000000000000000006121e2b37424d575f616768696a676d6e6d685e5246392d2013080000000814212e3b4754616e7a8794a1ada89b8e8175685b4e4235281b0f02000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0000000613202d394653606c7986939faca3968a7d706357525457595c5d5e5f5f5f5e5d5b5855534e4746413b352f281f19110900000000000000000000000713202d3946525d6876828f9ca9ac9f92867b6e61584e433b322c292424292c3139424d57616e7b86929faca89b8e8174655b5044372b1f120500000006111c2630383f44464e53555d60656a6f747a7f848a8f93999ea1a9a29f9a938f8a847f7a746f6a64605c55534d46443f38352f28201c140a00000000000000000000000713202d3a4653606d798693a0aca99d908376665c5145382c1f130700091623303c4956636f7c8996a2afa4988b7e7165584b3e3225180b0000000000000000000000000000000000000814212e3b4754616e7a8792929292877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000061018222a313a4145474c50525352504c4746413a36302a2528313a414547535353514f4b443b32281d110600000000000000000000000000000000000000000000000000000000000000010a131c252e384044505b656c7881868686868686868683796d675d544a42382d261c130a0100000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b878f8f8f8f8f83776a5d50444f5c6976828f8f8f8f8f877b6e6154483b2e211508000000000000000000000000000815222f3b4855626e7b8895939393939184776a605441382d22170b00000000000b17222d3847545f6a7784919393939394887b6e6155483b2e221508000005101a232c33383c3d464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464645413c352c23190e03000000000003101d2a3643505d697683909c9f9f9f9f9f9f9f9f9f9f9f9f9fa9abb0b8b8b0aaa89f9f9f9f9f9f9f9f9f9f9f9f9f9d9083776a5d5044372a1d11040000000000000b1724313e4a5764717d8a97ab9b8e8275665c5144382c1f12060000000013202c3946535f6c7986929facada093867a6d6053473a2d2e374044505b656d78818e949ea6a49c928c7f736d635b51493f362d241b120900000000000000000000000000000000000000010406070d0d0d0d0d0d0d0d0d0d0d13202c3946535f6c7986929facaca09386796d6053463a2d20130d0d0d0d0d0d0d0d0d0d0d07060400000000000000000814212d3a47535f696e7475767778797b7a6d6154473a2f24190d0100000714202d3a4753606d7a8693a0ada89c8f8275695c4f4236291c0f03000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000005121f2b3744505b657885929faba4978b7e7164584b474a4d4f515152535252504e4c4947433c39363029241e160d0700000000000000000000000005111d2935414c5664717e8b96a1ada3998d80746a60564d443e39352f2f35383c434b545e6973808d99a3aca096897d706353493f33271b0f03000000000a151e262e34383c42474b5153586062686d72787d82878d92979c9fa6a49f9c96918c86817c76716d67615e5753504945413a322e261c1207000000000000000000000713202d3a4653606d798693a0acac9f9286796d6053463a2e23180d060a1723303d4a5663707d8996a3b0a4978b7e7164584b3e3125180b0000000000000000000000000000000000000814212e3b4754616e7a8786868686877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000000610181f282f35393a3f43454645433f3a3936302a251f191f282f35393a46464644433f39322920160b000000000000000000000000000000000000000000000000000000000000000000010a131c2627333f49535b666c757979797979797979776d675d554b42392f261c140a010000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8283838383828074675a4e414d5a6673808283838383827a6e6154473b2e211408000000000000000000000000000d1a2733404d5a66738086868686868686807366584e432f261b1106000000000006111c2b37434e5866737f86868686868686807366594d4033261a0d00000008111a21282c2f3039393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393835312a231a110700000000000003101d2a3643505d6976839093939393939393939393939393939c9fa6b0b0a69e9c93939393939393939393939393939083776a5d5044372a1d11040000000000000916232f3c4956626f7c8995ab9f9285796d6053463a2d2013090000000013202c3946535f6c7986929facada093867a6d6053473a2d2027333f49535c666d78828f949fa6a49c918c7f726d625b51483f362d241b12080000000000000000000000000000000001070d1113141a1a1a1a1a1a1a1a1a1a1a1a202c3946535f6c7986929facaca09386796d6053463a2d201a1a1a1a1a1a1a1a1a1a1a1a1313100c070000000000000815222e3b4855616e7b80828384858687807367554c4135291d120c070a0a15212e3b4854616e7b8794a1aea89c8f8275695c4f4236291c0f03000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000030f1b27333f495e6b7884919eaba5988b7f7265584c3f3d404344454646454543413f3c3b37322d2a251f19130c0400000000000000000000000000010d1924303a4653606d7984919ea7ab9f92877c6f685e564f47454141414045474e555c666e7b86929faba89e9184786c605346392d22170b0000000000030c151c23282c3137394045474e54565e61666c70757b80858a90949a9fa2a8a19e98928e89837e79736e6963605b53524c4440382e24190e020000000000000000000713202d3a4653606d798693a0acaea398897c6f62544b4034281f1612101824313e4b5764717e8a97a4b1a4978a7e7164574b3e3124180b0000000000000000000000000000000000000714202d3946525e687579797979797975685e5246392d201307000000000000000000000000000000000000000000000000000000000000000000000000000000060d161d24292c2d323639393836322e2d2a251e19140d161d24292c2d3939393736332e2820170e0400000000000000000000000000000000000000000000000000000000000000000000010a1417222d38414a545b60686c6c6c6c6c6c6c6c6a605d554c433930271d140a02000000000000000000000000000000000000000000000000000000000000000714202d3946525e686e767676767676746e64584c404b58636e737676767676766e685e5246392d201407000000000000000000000000000c1926323f4b57636e7379797979797979736e6358463d321d140a000000000000000f1b26323c4b57636d7379797979797979736e63574b3f3226190c000000000810161c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2b29251f1911080000000000000003101d2a3643505d69768286868686868686868686868686868690949fabaa9e948f86868686868686868686868686868683776a5d5044372a1d11040000000000000814212e3b4754616e7a8799a3a297897c706356493d31261a0e0200000013202c3946535f6c7986929facada093867a6d6053473a2d20222d38414a545c666d79828f949fa7a49c918c7f726d625b51483f362c241a12080000000000000000000000000000040c13181d2021272727272727272727272727272c3946535f6c7986929facaca09386796d6053463a2d27272727272727272727272727201f1c18120b03000000000915222f3c4855626f7b888e8f9192978f8276675d5145392f241d181616141b222f3c4955626f7c8895a2afa89b8e8275685b4f4235281c0f02000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000b17222d44505d6a7783909daaa6998c7f7366594c403333363738393939383735322f2e2b26201e19140d080b09050100000000000000000000000008131f2c3845515c67727f8b95a0aba39991847a6e68615954514c4e4e4b5153575f676d78839098a2aca0968b7f72665b5044382b1b1106000000000000030a11171c1f262b2f35393d43474c52545b6063696e73797e83888e92989da0a7a39f9b95908b85807b75706c65605d56524a40352a1f13070000000000000000000713202d3a4653606d798693a0acb4aa998d8073665c51453b3128201f1c1e26323f4c5965727f8c98a5b0a3968a7d7063574a3d3024170a00000000000000000000000000000000000005111e2a36414c565e616c6c6c6c6c6c615e564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000040c13181d2021262a2c2c2b292521201d19130e09040c13181d20212d2d2d2b2a27221d160e050000000000000000000000000000000000000000000000000000000000000000000000000006111b262f38424a50535b60606060606060605d54514c433a31271e150b02000000000000000000000000000000000000000000000000000000000000000005111e2a36414c565e6169696969696967645c52473c47525c6366696969696969615e564c41362a1e1105000000000000000000000000000a17232f3b47525c63666c6c6c6c6c6c6c66635c5247342b200b02000000000000000a15202f3b46515b63666c6c6c6c6c6c6c66635c52473b2f23170a0000000000050b1014161720202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201f1d19140e070000000000000000030f1c2935424e5a66707679797979797979797979797979797982909ca9a89c8f827979797979797979797979797979797771665b4f4236291d10030000000000000613202d394653606c7986929fa99a8d807367574d42372b1e120600000013202c3946535f6c7986929facada093867a6d6053473a2d201b262f38424a545c676d798290959fa7a39b918b7f726d625a50483e362c241a1108000000000000000000000000040d161d24292c2d34343434343434343434343434343946535f6c7986929facaca09386796d6053463a34343434343434343434343434342d2c28231d150c030000000713202d3a4653606d7985929c9d9f9f92867a6d60554b40352f2923232324262d36424d5765717e8b98a4b1a69a8d8073675a4d4034271a0d01000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000000061d293643505c6976838f9ca9a69a8d8073675a4d403427292a2b2c2c2c2b2a282522211f1b1919191919181715110c06000000000000000000000004101c2834404b55606d78839099a3aba09690837a706b64605d555b5b555d60636a6e79818e959faaa49a9184796d60544a3f33281c0a000000000000000000060c10151a1d24292c32383a41464a5053575e61666d71767c81868b91959b9fa3a79f9d97928d87827d78726d68635c52473b2f23170a0000000000000000000713202d3a4653606d798693a0acb8ab9e9285796d60574d433a322d2c282a2d36424d576774818e9aa7b3a995897c6f6256493c2f231609000000000000000000000000000000000000010d1925303b444c52545f5f5f5f5f5f54524c443a3025190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d111314191d1f201f1d191413110d0802000001070d1113142020201e1d1b17110b040000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262f383f44464e5353535353535353504745413a31281f150c03000000000000000000000000000000000000000000000000000000000000000000010d1925303b444c52545c5c5c5c5c5c5a58524a4136404a52585a5c5c5c5c5c5c54524c443b3025190d010000000000000000000000000007131f2a35404a52575a606060606060605a58524a403522190f000000000000000004121e2a354049515759606060606060605957524a40352a1f1307000000000000000407090a131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131312100d0903000000000000000000010d1a26323e4a545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c76838f9ca9a89c8f82756c6c6c6c6c6c6c6c6c6c6c6c6c6c6a665f554a3e32261a0e0100000000000005121f2b3744505b657784919eaa9d918477695f53473a2d21140800000013202c3946535f6c7986929facada093867a6d6053473a2d20141d263039424b555d676d79839095a0a8a39f93887f726c625a50483e362c231a110800000000000000000000010c161f282f35393a40404040404040404040404040404046535f6c7986929facaca09386796d6053464040404040404040404040404040403a38342e271e150b00000006121f2c3844515c6676828f9caaaba2988b7e72675d51454039342f3030312f383f46525e6975818e9ba8b3a9988b7e7265584b3f3225180c00000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000020f1c2935424f5c6875828f9ba8a79a8e8174675b4e413428252525252525252525252525252525252525252524211d17110900000000000000000000000c18232e3944515c666f7c87929fa4a8a09590847d76716d6769676869676d70757b838e939ea7a59f93887d70665c5142382d22170b000000000000000000000003090e12181d1f272b3036383f44464d53545c60646a6f747a7f84898e92999ea1a8a19e99938f89847f7a736e63574b3f3226190c0000000000000000000713202d3a4653606d798693a0acb9ada1978b7e71695e554c443e3a3834363a3d46535e697784909daaada297877a6e6154473b2e2114080000000000000000000000000000000000000008141e29323b4146475353535353534746413a32281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070c10121312100c070705010000000000000104060713131311100e0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141d262d333839424646464646464646443a39352f281f160d03000000000000000000000000000000000000000000000000000000000000000000000008141e29323b4146475050505050504e4c4741382f3840474b4d5050505050504746413b32291e14080000000000000000000000000000020e19242e3840474b4d535353535353534d4b4740382e2410070000000000000000020d19232e3740464b4c535353535353534d4b4740372e24190e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16222d38434c545a5d606060606060606060606060606976838f9ca9a89c8f827569606060606060606060606060605d5b554d43392d22160a00000000000000030f1b27333f49536976838f9ca9a096887b6e6155483b2f24190d01000013202c3946535f6c7986929facada093867a6d6053473a2d2014141e273039434b555d676d7a839096a0a8a49a93887e716c615a50483e352c231a110800000000000000000007131d28313a4145474d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d535f6c7986929facaca09386796d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4645403930271d1207000004101c2834404a5465727e8b98a2aeaa9e9184796d605b514b45403e3d3d3d3f4149505b616e7b86929facada197887c6f6255493c2f22160900000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000020e1b2835414e5b6874818e9ba7a89b8f8275685c4f4235323232323232323232323232323232323232323232312e29221b12090000000000000000000007121d2834404a54606a727f8c929ca4a7a096918a827d7a7775747475767a7d818790959ea5a59e938d80736b60544b402f261c11060000000000000000000000000001070c10161b1e252a2d33383b42464b5153585f62676d72777c82868c91969c9fa4a49f9c96918b868073665a4d4033271a0d0000000000000000000713202d3a4653606d798693a0acb1a7a09d92857b6e675d56504846443f4246474f58616e7b8795a0acab9f928578685e5246392d20140700000000000000000000000000000000000000020d1720293036393b4646464646463a3935302820160c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141c22282b2d353939393939393939372d2c29241e160d04000000000000000000000000000000000000000000000000000000000000000000000000020d1720293036393b43434343434341403c362f262e353b3f404343434343433b3936302920170d0200000000000000000000000000000007121c262e353b3f4046464646464646403f3b352e261c120000000000000000000007121c252e353b3e4046464646464646403f3b352e251c12070000000000000000000000000000000000000000000000000000000000000000000004090d0f101313131313130e0d0b0803000000000000000000000000000000000000000000000000000000030f1b26323c464e53555656565656565656565656565c6976828f9ca9a89c8f8275695c56565656565656565656565655544e463c32271b0f0300000000000000000b17222d414e5b6874818e9ba7a8988c7f7265554c4135291d1104000013202c3946535f6c7986929facada093867a6d6053473a2d20140c151e273039434c555d686e7a849196a1a9a49a93877e716c615a50473e352c231a110700000000000000010d18242f3a434b51545a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5f6c7986929facaca09386796d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a53514b42392e23180c0000000c18232e3a4754616d7a86929fa9aca1968d80746d605d55514b4a49494a4b4f535b606d74818e98a3aeab9e9285796d6053463a2d20130700000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000010d1a2734404d5a6773808d9aa6a99c8f8376695c50433f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3e3d3a342d241b1106000000000000000000000c18232e39424e58626d73808c929ea1a8a19e948f8a8683828181828386898e93999fa7a39f938f81786d60594f42392e1d140a0000000000000000000000000000000000040a0f13191c22282b3136394045464e53555d60656b70757b7f848a8f939a9fa2a8a09e989083776a5d5144372a1e110000000000000000000713202d3a4653606d798693a0acaca09590959082796d68615a5553504a4d525459606a74808d9aa7b1a99c8f827669564d41362a1e11050000000000000000000000000000000000000000050e171e252a2d2e3939393939392e2d29251e160e04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030607090b0d0f1111121313121211100f0d0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f20282d2d2d2d2d2d2d2d2a21201d19130c040000000000000000000000000000000000000000000000000000000000000000000000000000050e171e252a2d2e3636363636363433302b241d242a2f32333636363636362e2d2a251e170e0500000000000000000000000000000000000a141c242a2f32333939393939393933322f2a241c140a00000000000000000000000a131c232a2f32333939393939393933322f2a241c130a000000000000000000000000000000000000000000000000000000000000000000020a1015191b1c2020202020201b1a17140e08010000000000000000000000000000000000000000000000000006131f2b37434e585f62636363636363636363636363636976828f9ca9a89c8f827569636363636363636363636363636260584e43372b1f13060000000000000000061a2633404d596673808c99a6a99c8f8276675d5145392c201306000013202c3946535f6c7986929facada093867a6d6053473a2d2014070c151e27313a434c565e686e7b849196a1a9a49992877e716c61594f473e352b23190f0400000000000004111d2935414b555d606767676767676767676767676767676767676c7986929facaca09386796d676767676767676767676767676767676767605c544b4034281c100400000713202d3946525e6874808d97a2ada89d928c7f746d67605c5557565657585960656c727f8b939daaafa4998d8074665c5044382b1f120600000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000d192633404c5966737f8c99a6aa9d9083776a5d504c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4b4a453f362d22170c0100000000000000000007121c27303d46515b646e73808a92979fa3a69f9c9992908f8e8e8f9092989b9fa4a69f99928c81786d665c50473d30271d0b020000000000000000000000000000000000000002080d11171c1f252a2e34383c43474c5154596063686e73797d82878d92979da0a79d9084776a5d5144372a1e110000000000000000000713202d3a4653606d798693a0acaa9d9084909490827a716c6562605c54565e61646b707c87929facb0a6998c7f7266594c3f3025190e02000000000000000000000000000000000000000000050d14191e20212c2c2c2c2c2c21201d19130c040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104060b10121315171a1c1d1e1f1f201f1f1e1d1b19171514120e09060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131b20202020202020201d1413110d080100000000000000000000000000000000000000000000000000000000000000000000000000000000050d14191e20212929292929292726241f1a13191f23262729292929292921201e19140d05000000000000000000000000000000000000020a12191f2326272d2d2d2d2d2d2d2726231f19120a020000000000000000000000010a12191e2325262d2d2d2d2d2d2d2626231f19120a010000000000000000000000000000000000000000000000000000000000000000040c141b212528292d2d2d2d2d2d2726241f1a130b020000000000000000000000000000000000000000000000000815212e3b47535f6a6f707070707070707070707070707075828f9ca8a89c8f827570707070707070707070707070706f6a6054473b2e22150800000000000000000b1825323e4b5865717e8b98a4ac9f92867a6d6054473a2d22170b000013202c3946535f6c7986929facada093867a6d6053473a2d201407030c151f28313a444c565e696e7b849197a1a9a39992877e706c61594f473d352b21160b0000000000000613202c3945515d676d737373737373737373737373737373737373737986929facaca0938678737373737373737373737373737373737373736d665c5145382c1f1306000005111d2935414c56616d7a85929fa5aea49b918c8079716d67656463636465686b70787f87929fa5afa89f93877b6e61544a3f34281c100300000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000c1925323f4c5865727f8b98a5aa9e9184776b5e5858585858585858585858585858585858585858585858585650483f34291d1105000000000000000000000b151e2b343f49525c646e737e858e92999ea1a8a39f9d9c9a9b9c9d9fa3a9a29f9b948f877f776d665c544a3f352c1e150b0000000000000000000000000000000000000000000000060b0f141a1d23282c32373a4145474f54565e61666d70767b80858b90959b9d9084776a5d5144372a1e110000000000000000000713202d3a4653606d798693a0aca396897d85929490847d76726e6d666b6b696e71757d859299a3afab9f94887b6e6155483b2e221508000000000000000000000000000000000000000000000002080d1114142020202020201413110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d1113171c1f20222426292a2b2b2c2c2c2b2b2a28262422211e1a1312100c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060f131313131313131311070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1114141d1d1d1d1d1d1b1a17140e080e1317191a1d1d1d1d1d1d1414110d0802000000000000000000000000000000000000000000070e1317191a202020202020201a1917130e08000000000000000000000000000000070d12161919202020202020201a1917130e07000000000000000000000000000000000000000000000000000000000000000000020c161e262c3135363939393939393433302b241d140b0100000000000000000000000000000000000000000000000916222f3c4955626f7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d82909ca9a99d90837d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c6f6255493c2f22160900000000000000000a1723303d4a5663707d8996a3aea3998a7d7164544a3f33281c0f030013202c3946535f6c7986929facaca093867a6d6053473a2d20140700030d161f28323b444d575f696e7c859297a2aaa39992877e706b61594f473d32271b100400000000000714212d3a4754606d79808080808080808080808080808080808080808087929facb3a69a8d8080808080808080808080808080808080808080796d6053463a2d2013070000010d1925303a46525e68717e8b939da5ada39b928d847e797572717070707274777d828c9299a3afaaa1968e8174695f5342382e23170b0000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000b1825313e4b5864717e8b97a4ab9f9285786565656565656565656565656565656565656565656565656565625a50453a2e21150900000000000000000000030c19222d37404a525c636c717a81868d9196989b9c9e9f9f9f9f9e9d9b9997928e89827c736c655c544b42382e231a0c030000000000000000000000000000000000000000000000000003090e12181c1f262b2f35393d44484d52545c6064696e74797e83898e929084776a5d5144372a1e110000000000000000000714202d3a4753606d7a8693a0ada194887b7e8b9296918a837f7b79787778797a7d82889297a1abafa4998f8276695f53473a2d211408000000000000000000000000000000000000000000000000000105070813131313131307070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e13181d2023282b2d2f3133353737383939393837373533312e2d2a26201f1c17110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507081010101010100e0d0b08030002070a0c0d1010101010100807050100000000000000000000000000000000000000000000000002070a0c0d131313131313130d0c0a0702000000000000000000000000000000000002060a0c0d131313131313130d0c0a0702000000000000000000000000000000000000000000000000000000000000000000000a141e2830383d414346464646464641403c362f261d13080000000000000000000000000000000000000000000003101d2a3643505d69768289898989898989898989898989898990949fabab9f959089898989898989898989898989898983776a5d5044372a1d1104000000000000000815222f3b4855626e7b8895a99f9f9b8e8174665b5044382b1f12060013202c3946535f6c7986929f9f9f9f93867a6d6053473a2d2014070000040d162029323b454d575f6a6f7c859298a29fa39992877d706b60594f44382c20130700000000000814212e3b4754616e7a878d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d9299a3afb5a89d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d867a6d6053473a2d20140700000008131e2a36414c56626c74818e939da4aea49d96918b85827f7d7c7c7d7e8184898f949fa3abaaa29891847a6d60574d4230261c11060000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000a1724313d4a5764707d8a97a3ac9f93867872727272727272727272727272727272727272727272727272716c62564a3d3124170b000000000000000000000007101b252e38404a525a61686d747b8084888b8e90919292929291908e8c8985817c766f6a605b534b423930261c11080000000000000000000000000000000000000000000000000000000000070c10151b1e24292c32383b41464a5053575f62676d71777c81868c83776a5d5144372a1e110000000000000000000714212d3a4754606d7a8793a0ada194877b74818e949e95908c888685848585878a8f939aa1a9afa59f93877c6f62574d42372b1e1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f151a1d24292c2e34383a3c3e404244444546464545444342403d3b3a36312d2c28231c19130d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090c0e1011121313131211100f0d0b08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101b26303a42494e4f5353535353534e4c4741382f241a0e0300000000000000000000000000000000000000000003101d2a3643505d6976839096969696969696969696969696969c9fa6b0b1a79f9d96969696969696969696969696969083776a5d5044372a1d1104000000000000000714202d3a4753606d7a8697939393939285796c605346392d2013060013202c3946535f6c7986929393939393867a6d6053473a2d201407000000040e172029333b454e585f6a6f7c8692989393939992867d706b6054483b2f22160900000000000814212e3b4754616e7a87949a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9fa3abb5b9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a93867a6d6053473a2d201407000000020d1925303a44505a606d78818d929fa2aaa8a09e97928f8c8a89898a8b8e91969c9fa6ada7a09892867c6f685d52453c311e140a000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b00000000091623303c4956636f7c8996a2afa4998c7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7e7165584b3e3225180b00000000000000000000000009131c262e38404850565e61696e73787c7e818384858686858583817f7c79746f6a625f585049413930271e150a0000000000000000000000000000000000000000000000000000000000000000040a0f13191d20272c3036383f44464d53555d60656a6f747a7f8175685b4f4235281c0f0000000000000000000714212e3a4754616d7a8794a0b4ab94877a6d78828f939f9d989a939291919298979b9fa4acaba39f938d80736a6054453c31261a0e020000000000000004080c0e0f0c07070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c151b20262b2f35393a3f4446484a4d4f5051525253525251504e4c4a4846423d3a38342e29251e19140d050000000000000000000000000000000000000000000000000000000000000000000000000004070c10121316191b1d1e1f1f201f1f1e1d1b19171414110e0806030000000000000000000000000000000000000000000000000004090e1112131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130b0a08040000000000000000000000000004080a0b1313131313131313131313131313131311100e0b06000000000000000000000005090d0f101313100f0d090500000000000000000000000000000000000000000000000000000000000000000000000000000915212c38424c545a5c6060606060605a58524a41362b1f140800000000000000000000000000000000000000000003101d2a3643505d697683909c9f9f9f9f9f9f9f9f9f9fa3a3a3a9abb0b9b9b1aba9a3a3a39f9f9f9f9f9f9f9f9f9f9d9083776a5d5044372a1d11040000000000000006131f2c3945515d677885868686868686867c6f6256493c2f2316090013202c3946535f6c798786868686868686796d6053473a2d20140700000000050e172129333c464e58606a707d8686868686868686867c706356493d3023160a00000000000814212e3b4754616e7a8794a1a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6acafb5acacacaea8a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a093867a6d6053473a2d2014070000000008131e29323f44505c666d78808b92989fa3aba9a29e9b9897969697989b9ea0a8aca9a19e9590867d6f6a60564c41332a1f0c02000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000915222f3c4855626f7b8895a2b5ab9b918c8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b85786b5f5245382c1f12050000000000000000000000010a141c262e363e444c52575e61666a6f7274767878797978787675726f6d66626058534e443f382f271e150c030000000000000000000000000000000000000000000000000000000000000000000001080d11161b1f252a2e34383c42474b5153586062686d72756f65594d4134281b0e0000000000000000000814212e3b4754616e7a87949f9fa39986796d6d79818c92989fa29f9e9e9e9fa2aaa8a9aaa29f99928b81786d60584e43332a1f150900000000000002090f14181b1b191413110d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121820262b31373a4145474a50535557595c5d5e5e5f5f5f5e5e5d5b595755534d4946443f3835302a251e170e0802000000000000000000000000000000000000000000000000000000000000000001070c1013181c1f20232527292b2b2c2d2c2c2b2a28262421201e1915120f0a0300000000000000000000000000000000000000000000080f151a1d1f20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020171714110c05000000000000000000050c11141717202020202020202020202020202020201e1d1b17120b0400000000000000020a1015191c1c20201c1c1915100a020000000000000000000000000000000000000000000000000000000000000000000000000d1925313d49545e65696c6c6c6c6c6c67645c52473c3024170b00000000000000000000000000000000000000000003101d2a3643505d6976839093939393939393939393939b9ea5afb7b7b6b7b9b8afa59d9b93939393939393939393939083776a5d5044372a1d11040000000000000004101d2935404b55687378797979797979796f6a6054483b2e22150900121f2c3845525e6a75797979797979797976675c5145382c1f13060000000000050f18212a333c464e58606b70797979797979797979706b6054483b2f22160900000000000814212e3b4754616e7a87949f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f93867a6d6053473a2d20140700000000020d172028343f4a545c666d747e858e92999ea1a8a7a8a5a4a3a3a3a5a7a8aca49f9d97928c837b6f6b60584e443a3021180e00000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b000000000815212e3b4854616e7b8794abb5ada39b989898989898989898989898989898989898989898989898989285786b5f5245382c1f1205000000000000000000000000020a131c242c323a41464d5254585f626568696b6c6c6c6c6b6a686663605c54544e47433c332d261d150c030000000000000000000000000000000000000000000000000000000000000000000000000001040b1014191c23282c3137394045474e54565e616568655d53483d3125190c0000000000000000000815222e3b4855616e7b889393939392867966676d787f868d92989a9c9e9e9f9f9e9d9c9998928d877f746d665c50463d3221180e030000000000030b131a202527282621201d19130f0a040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c151d232831373c42474b5154545c60626466686a6a6b6c6c6c6b6a6a686664615f575653504a46413a3630292019130d05000000000000000000000000000000000000000000000000000000000003090e12181d1f23282c2d3032343638383939393838373533312e2d2a25211f1b150f0b060000000000000000000000000000000000000009121920262a2c2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423211c171008000000000000000810171c2123242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b2a27231d160e050000000000040c141b212528292d2d292825211b140c0400000000000000000000000000000000000000000000000000000000000000000000020f1b2835414e5a657076797979797979746e64584c4033261a0d00000000000000000000000000000000000000000003101d2a3643505d6976828686868686868686868686868e939ea9b0aba9abacb2a99d938e86868686868686868686868683776a5d5044372a1d110400000000000000000c18242f39435761686b6c6c6c6c6c6c6c6260584e43382c1f130700111d2a36424e59636a6c6c6c6c6c6c6c6c6c5c554b4034291c1004000000000000060f18212a343d464f5960636c6c6c6c6c6c6c6c6c6360594f44382c20130700000000000814212e3b4754616e7a8793939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393867a6d6053473a2d2014070000000000050e17232e38424a545c606c717a81868d9196989a9c9e9f9f9f9f9e9d9c999a93908b857f786e6960594f463c32281e0f0600000000000b1825313e4b5864717e8b97a4aca89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7aca4978b7e7164584b3e3125180b000000000714212d3a4754606d7a8799a3afacada7a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a59e9285786b5f5245382c1f120500000000000000000000000000010a121a202830363b4246484e5355585b5d5e5f5f5f5f5e5d5b595653514a47433d373127221b140b03000000000000000000000000000000000000000000000000000000000000000000000000000000000002080e11171c1f262b2f35393d43474c5254595b59534b42372c2015090000000000000000000916232f3c4956626f7c86868686868685786b5c666c727b80858a8d8f9192929291908f8c8a86807b726d605c544a3f342b200f060000000000020b151d252c313435332e2d2a251e1b16110d0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810191e272e343c43474d53555d6064666d6f7173757777787979787877767573706e696763605c54524c46413b322a251e170e06000000000000000000000000000000000000000000000000000001070c141a1d24292c2e34383a3c3f4143444546464645444342403e3b3936302e2b261f1c17110a020000000000000000000000000000000008121b242b3136383939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393931302d28221a1208000000000008121a22282d3031393939393939393939393939393939393736332e2820170e04000000020c161e262c32353639393635322c261e160c0200000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828686868686868074675a4e4134271b0e010000000000000000000000000000000000000000030f1c2935424e5a667076797979797979797979797979818e9ba7a69f9c9ea1a8a79b8e817979797979797979797979797771665b4f4236291d1003000000000000000007121d2731454f575d5f6060606060606056544e463d32271b0f03000e1a26313d4751595e5f606060606060605f514b43392f23180c0000000000000000060f18222b343d474f54565f606060606060605f56544f473d32271b100400000000000814212e3b4754616e7a868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686796d6053473a2d20140700000000000006111c263038424a505a61686e747b8084888b8e90919292929291908f8d8a87837e79726d665f574f473d342b20160c0000000000000b1825313e4b5864717e8b979f9f9f9b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9a9f9f9f978b7e7164584b3e3125180b000000000613202c3945515d677986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9e9285786b5f5245382c1f1205000000000000000000000000000000080e161e252a30363a3c4347484b4e50515253535252504e4c494644403937322b262017110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c10151a1d24292c32373a4146474c4f4d48423930251b0f040000000000000000000815222e3b4754606a6f797979797979787368545b60696e74797d808284858685858482807d7a746e69625b504a42382e22190f00000000000009131d272f373d40423f3a3936302c27201d18130f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009111a222a303940454e53575f62676d7175797b7d8082838485858685858483817f7d7b7874706d66615e56524c443e36302920180f07000000000000000000000000000000000000000000000000030b12181f252a2f35393a404446494c4e5051525253525251504e4c4a4746413c3a37312b28221c140b070000000000000000000000000000040f19242d353d4245464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646463e3c39332c241a100500000005101a242c33393c3e4646464646464646464646464646464644433f39322920160b0000000a141e2830383d4143464643413d3830281e140a000000000000000000000000000000000000000000000000000000000000000000020f1c2835424f5b6875828e939393938d8073675a4d4034271a0d010000000000000000000000000000000000000000010d1a26323e4a545e66696c6c6c6c6c6c6c6c6c66707d89939eab9f94909196a1ac9f93887c6f666c6c6c6c6c6c6c6c6c6a665f554a3e32261a0e010000000000000000010b151f333d454c5052535353535353534948433d342b21160a00000915202b353f474e5253535353535353535345403931271d1207000000000000000000061019222b353d4448495253535353535353524948443d352b21160b0000000000000714202d3946525e687679797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797976675d5145392c201306000000000000000a141e2630383f4450565e61696e73787b7e81838485868685858482807d7a76726d67605c544d453d352b22190e040000000000000b1825313e4b5864717e8b93939393938e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d93939393938b7e7164584b3e3125180b0000000004111d2935414b556b7885929393939393939393939393939393939393939393939393939393939393939285786b5f5245382c1f120500000000000000000000000000000000050c13191f252a2d32373b3c3f414345454646454543423f3c3a38342e2b27201b150b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12181d1f272b3035393a3f42413d3730271e14090000000000000000000006131f2b37434e5860626c6c6c6c6c6c6b68615750575e61676d7073767778797978777673706d67615e5751443f3830261c10070000000000040f1a252f3941484d4e4c4746413a38322c29241d1a15100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b232c343c424b51585f62696e747a7d8185888a8c8f9091919292929191908e8c8a8884807d79736d68615e565046413a322a2119100700000000000000000000000000000000000000000000060d151d24293136394045474a515356585a5c5e5e5f605f5f5e5d5b595754524c4847433c38332d261d18120b030000000000000000000000000915202b353f474e52535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534a49453e362c22170c0000000c17222c363e45494a53535353535353535353535353535353514f4b443b32281d12060005101b26303a42494e4f53534f4e49423a30261b10050000000000000000000000000000000000000000000000000000000000000000020e1b2835414e5b6874818e9b9f9f998c807366594d4033261a0d000000000000000000000000000000000000000000000a16222d38434c545a5d6060606060606057606d7883919da5a499908384919ea6a49a9083786d6057606060606060605d5b554d43392d22160a00000000000000000000030d212b333b404445464646464646463c3b38322b22190f040000040f19242d353d424546464646464646464638342f271f150b0100000000000000000000071019232b32383b3d4646464646464646463d3b38322b23190f0400000000000005111e2a36414c565e6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5d554b4035291d110400000000000000020c141e262e343e444c52575e61666a6f727476777879797978777573716d6865605d55504a423c332b23191007000000000000000b1825313e4b5864717e868686868686868175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a677480868686868686867e7164584b3e3125180b00000000010d18242f44515e6b7784868686868686868686868686868686868686868686868686868686868686868685786b5f5245382c1f1205000000000000000000000000000000000002080d141a1e20262b2e2f323536383939393938373533302d2c28231c1b150f0a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c10161b1e25292d2e323534312c251e150c0200000000000000000000030f1b27323d464e545660606060606060595751444d53555c606367696b6b6c6c6b6a696663605d55534d453f342e261e140a0000000000000814202c37414b53595b5954524c48433d39352f2b261f1c18120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b242d353e464e545c606a6f757b81868a8e929797999b9d9d9e9f9f9f9e9d9d9b999796918d8985807a746e68615a524c443c332b2219100700000000000000000000000000000000000000000910181f272f353b42464b5153545c60636567696b6b6c6c6c6b6b6a686664615e5655534e46443f382f28231d150c0500000000000000000000000e1a26313d4751595e5f606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060575550483e33281c11040004111c28333e48505557606060606060606060606060606060605e5b564d44392e23170b000915212c38424c545a5c60605c5a544c42382c2115090000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7a5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000005111c27313a434a4e50535353535353535e69727f8c95a0a99f93877c7e8a949faba0958c7f72695e53535353535353504f4a433b31271c110500000000000000000000000f1921292f343738393939393939392f2e2c27211910070000000008121b242b3136383939393939393939392c29231d150d0300000000000000000000000007111921272c2f30393939393939393939302f2c272119110700000000000000020e1925303b444c525f6060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605f514b433a2f24180d010000000000000000020c141c2328323b41464d5354585f626567696b6c6c6c6c6b6a696664615e5653514b443f38302a2119110700000000000000000a1724303d4956626c7179797979797979756f65594d4034271b0e01000000000000000000000000010d1a2733404c58646e7479797979797979716c6256493d3024170a0000000000071d2a37434f5c67727779797979797979797979797979797979797979797979797979797979797979797873685d5044372b1e11050000000000000000000000000000000000000003090e12151b1f212225282a2b2c2c2c2c2b2a282623201f1c18120f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13191d202126282825201b140c030000000000000000000000000a16202b343d434749535761686b6c6c66635b5146464b515357565e61666a6c6c6a66605d56514c46423b3328231c140c020000000000000c1825313d48535d656866615e56544f4745403a37312c28231c1a140f0b0600000000000000000000000000000000000000000000000000000000000000000000000000000007101b242d363e474f585f666d737c82878e92989b9ea2a9a6a8aaa8a7a6a6a6a7a8a9a8a6a8a19e9a97928c86807a716c615e564d453c342b22190e0500000000000000000000000000000000000009121b222a313940454d53555d6065666d6f72747677787979797877767573716e6867625f5853504a423d342e271e170e0500000000000000000000111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d211408000814212d3945505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a675f564b3f33271b0e000d1925323d49545e66696c6c69665e54493d3225190d0000000000000000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa6a5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000a151f2831383e42434646464643505a616e7b86929fa7a2978d817476828f99a3a79f92867b6e61594f434646464644423e3931291f150b000000000000000000000000070f171e24282b2c2d2d2d2d2d2d2d23221f1b160f0700000000000009121920262a2c2c2d2d2d2d2d2d2d2d1f1c18120b030000000000000000000000000000070f161b2022232c2d2d2d2d2d2d2d2c2322201b160f0700000000000000000008141e29323b4146535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535345403a31281d130700000000000000000000020a1117202930363b4246484e5355585b5d5e5f5f5f5f5e5d5c5a5754524c47454039342e261e180f070000000000000000000815212d3945505a62646c6c6c6c6c6c6c68655d53483d3124180c00000000000000000000000000000b1824303c48535c64676c6c6c6c6c6c6c64625a5045392d21150800000000020f1b27333f4b5660676b6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6861574c4034281c0f0300000000000000000000000000000000000000000002050a0f121515181b1d1e1f20201f1f1d1b19161312100c07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d111314191c1b19150f090200000000000000000000000000040f19222b32373b3c505c6873787979736d63574b434750555d60686d7276787977736d685f584e443b31292117110a02000000000000000e1b2734404d59656f75726d6863605953514b47433c38342e2a251f1b17110d08020000000000000000000000000000000000000000000000000000000000000000000000050e19222d363e485059616a6f7980878f93999fa3aaabaaaaa29f9d9b9a9a999a9a9b9d9fa2aaa9aba9a19e98928d857e756d685f574e463c342a20170c030000000000000000000000000000000009121b242c343c434b51575e61676d7175797c7f81838485858685858483817f7d7a77736f6a64605b544f454039302920170f05000000000000000000121f2c3845525e6a7579797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979716c6155493c3023170a000a1723303c4955616c71797979797979797979797979797979797771675b4f43362a1d10000f1c2835414e5a66707679797670665a4e4135281c0f0200000000000000000000000000000000000000000000000000000006050403020d1a2633404d596673808c99a6a4978b7e7164584b3e3125180b0203040506000000000000000000000000000000000000030d161f272d323536393935404b55616c75828f98a2a79f92857a6d6e7c87929fa9a2988f82756c61554b403539393736322d271f170d0300000000000000000000000000060d13181c1e1f202020202020201615130f0a040000000000000000080f151a1d1f20202020202020202013100c070100000000000000000000000000000000040b101316161f202020202020201f161613100b0400000000000000000000020d1720293036393b4646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464639352f281f160c01000000000000000000000000060e171e252a31363a3c4347484b4e50515253535252514f4d4a4746413a39352f28231c150c060000000000000000000005111d29343e48505658606060606060605b59534b41372c20140800000000000000000000000000000814202b36414a53585a60606060606060585650483e34291d110500000000000b17232e3a444e565c5e60606060606060606060606060606060606060606060606060606060606060605f5d574f453b2f24180c00000000000000000000000000000000000000000000000000030608090c0e10121213131212100f0c09070604000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507070c0f0e0c09040000000000000000000000000000000007101920272b3845525f6b788586867f7366574d4e535a61676d727a7f83858584807a6f6a5f564d42362a1f14080000000000000000000f1b2835424e5b6875817f7a756f6b65605d55534e4644403936302b27221b19130f0a040000000000000000000000000000000000000000000000000000000000000000020d17202b343e48505a616b707c838c92999fa4abaca7a09d999892908f8d8d8d8d8d8f909298989c9fa4abaaa29f97928a827a6e6960584e463c32291e150b00000000000000000000000000000008121b242d363e464e555d60696e74797e8285898b8d8f91919293929291908e8c8a8784807c76716c666059514b433b332921170e05000000000000000013202c3946535f6c79878686868686868686868686868686868686868686868686868686868686868686868686868686868686868686867e7164574a3e3124170b000b1724313e4a5764717d8686868686868686868686868686868684776a5e5144372b1e1100101c2936434f5c69768286868276695c4f4336291c10030000000000000000000000000000000000000000000000030608091211100f0e0d1926333f4c5966727f8c99a5a4978a7d7164574a3e3124170d0e1011121307060401000000000000000000000000000000040d151c2226292a2d2c3945515d67707d8a949eaaa0958b7f72686a73808d97a1aa9e938a7d70675d51453c31262a2926221c150d0500000000000000000000000000000002070c0f11121313131313131309090703000000000000000000000004090e111213131313131313131306040000000000000000000000000000000000000000000307090a1313131313131313130a09070400000000000000000000000000050e171e252a2d2e393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939392c29241d160d040000000000000000000000000000050d14191f252a2d31373a3c3f41434445464646454442403e3a3936302c29241d17110a030000000000000000000000000c17222d363e45494b535353535353534e4d4841392f251a0f040000000000000000000000000000030f1a252f3841484c4e535353535353534b49453e362d22170c00000000000006121d28323c444b4f51535353535353535353535353535353535353535353535353535353535353535352504c453d33291e1307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161b2a3743505d6a7683908f8276695e54585f626c71797f858c909292908c857c6f695e52463b3025190e020000000000000000101d2a3743505d6a76838c86817c77726d67625f5853514a46423b37332d29241e1b15100c0701000000000000000000000000000000000000000000000000000000000009141f29323d46505a626c717d8690959fa3ababa49f9b95908c898584828180808081828385888b8f93999fa2aaa9a19e938f847b6f6a60584e443b30271d12070000000000000000000000000006101a242d363f4850585f676d737b80858b8f9298989a9c9e9e9f9f9f9e9e9d9b999795908d88837e786f6b605c554d453b332920170c030000000000000013202c3946535f6c798692939393939393939393939393939393939393939393939393939393939393939393939393939393939393938a7e7164574a3e3124170b000b1724313e4a5764717d8a93939393939393939393939393939184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c1003000000000000000000000000000000000000000000040a0f1315161f1e1d1c1b1a1925323f4c5865727f8b98a5a3968a7d7063574a3d3024191a1b1c1d1e1f1413110d08010000000000000000000000000000030a11161a16202b37434e58606d7984919ea6a59d9083786d60606d7a85919ea6a59e9184796d60584e43372b20161a16110b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d14191e20212d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d201d18130c040000000000000000000000000000000002080d141a1e21262b2e2f323436383939393938373633312e2d2a25201d18120c06000000000000000000000000000006111b242d34393d3e4646464646464642403d372f271d13090000000000000000000000000000000008131d262f363c4041464646464646463e3d39342d241b1106000000000000010c16202a323a3f434446464646464646464646464646464646464646464646464646464646464646464544403b332b21170d0200000000000000000000000000000000000000000000000000000000000000000000020608080c0f111213131312100e0c08070502000000020404060606060606000000000000000000000000000000000001040707131313131313130d0c0a07020000000000000000000000000002060808131313131313131310060603000000000000000000000000040a1b2835424e5b6875818e92877b6e6663646a6f767e848c92989d9f9f9d9791857b6e61564d41362a1e11050000000000000000101d2a3743505d6a768390928e89837e7a746f6a64605c54524d46443f3835302b271f1d18120e09030000000000000000000000000000000000000000000000000000030d1925303b444e58626c717e879298a0a7afa79f99938e88837f7c79777574737373747577797c7f83878d92989ea5ada59e9691857c6f6a5f564c42392e23180c030000000000000000000000030c18222c363f48505a616a6f7980868d92979c9fa2aaa7a9a8a7a6a6a6a7a8a9a8a6a7a09d9a94908a837c746d675e574d453b32291e150a0000000000000013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b000b1724313e4a5764717d8a979f9f9f9f9f9f9f9f9f9f9f9f9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000000070f161b1f22232c2b2a2928272625323e4b5865717e8b98a4a396897c706356493d3025262728292a2b2c21201d19130c040000000000000000000000000000000508131e28323a47535f6a73808d96a1aa9e93897d70665c5d67717e8b949faba1968d80736a5f53473e32281e13080500000000000000000000000000000000000407090a13131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130a0907040000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080e1114142020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202013110d07010000000000000000000000000000000000000003090e12151a1f212225282a2b2c2c2c2c2b2a29272421201e1913100d07010000000000000000000000000000000009121b22292d3031393939393939393534312c251d150b0100000000000000000000000000000000010b141d252b3033343939393939393931302d29221b12090000000000000000040e1820282e33373839393939393939393939393939393939393939393939393939393939393939393837342f2921190f0600000000000000000000000000000000000000000000000000000000000000000003090e121415191b1d1f1f201f1f1d1b191514120e09030b0e10111313131313130b0b0905010000000000000000000001080d111314202020202020201a1916130d0700000000000000000000030a0f1214151f202020202020201c13120f0b0600000000000000000000000c1926333f4c5966727f8c998f8279727071757c838a91969fa2aaa3a3a9a1978e8174685e5246392d2014060000000000000000101d2a3743505d6a7683909d9b95908b85807b76716d66615e5753504945413a37322c29241d1a15100b060000000000000000000000000000000000000000000000010b151f2a36424d56606a717e889299a2aaafa49c959087817c77726f6d6668676766676768666c6f72767b80868e939fa3aaa8a09792867c6f685e544b40342820150900000000000000000000000b151e2a343e48505a626c717c848c92989fa2a9aca8a8a09e9c9a9a999a9a9b9d9fa3ababaaa69f9c95908781796e695e574d443b30261c110600000000000013202c3946535f6c7986929facacacaea9a7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a4978a7d7164574a3e3124170b000b1724313e4a5764717d8a97989898989898989b9ea6b0aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000007101920272b2e2f3938373635343331313e4a5764717d8a97a4a295897c6f6256493c3132333435363738392d2c29241e160d040000000000000000000000000000020c1924303a44505a626e7c87929fa8a2988e81756b605455606c78839099a4a89f92877c6f625a50443a3024190c03000000000000000000000000000000040b101316162020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020171614100b05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205070813131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313060401000000000000000000000000000000000000000000000002050a0f121515181b1d1e1f20201f1f1e1c1a171413110d080401000000000000000000000000000000000000000911171d2124252d2d2d2d2d2d2d282724201a130b03000000000000000000000000000000000000020b131a202427272d2d2d2d2d2d2d2524211d17110900000000000000000000060e161d23272a2b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2b28241e170f070000000000000000000000000000000000000000000000000000000000000000060b0f151a1e212225282a2c2c2d2c2b2a282522211e1a1410171b1d1e202020202020181715110c060000000000000000040c13191d202d2d2d2d2d2d2d2d2625231e19120a0100000000000000060e151a1f21222c2d2d2d2d2d2d2d29201f1c17110a020000000000000000000a1623303d495663707c8998948f837e7d7e828790949ea1a19e9996979a9f9f92877b6e6154473b2d22170b0000000000000000101d2a3743505d6a7683909da7a09d98928d88837e79736e6963605b53524c47433c38352f2b261f1c17110e0802000000000000000000000000000000000000000007121d27313946525e696f7c86929aa3ababa39f928d837c756f6a6662605c545a5a5a5a5a545b606265696e747b818a9298a2a9a9a19891847a6e665c51453c31261a0e0500000000000000000007121d27303c46505a626c717e8691969fa2aaaba39f9b9796918f8e8d8d8d8d8f9092999a9ea1a9aba79f9a938d837b6e695e564c42382e23170c04000000000013202c3946535f6c7986929facb9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a978a7d7164574a3e3124170b000b1724313e4a5764717d8a8b8b8b8b8b8b8b8b8f939eaaaa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c1003000000000000000000000000000000000000040f19222b32373b3c4544434241403f3e3d3d4a5763707d8a96a3a295887b6f6255483c3d3e3f4041434445463a39352f281f160c01000000000000000000000000000a141e2935414c56616c76828f99a3a89f92867b6e61594f505b656f7c87939fa9a3999082766c62564c4135291e150a0000000000000000000000000000070f161b2022232d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2323201c16100800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090c0e10111213131312110f0d0b070705010000000000000000000000000000000000000000000000060c11151718202020202020201b1b18140f0901000000000000000000000000000000000000000001080f14181a1b20202020202020181715110c06000000000000000000000000040c12171b1d1e20202020202020202020202020202020202020202020202020202020202020201f1e1c18130d0600000000000000000000000000000000000000000000000000000000000000020a11171b1f262b2e2f32353738393939383735322e2d2b261f1c23272a2b2d2d2d2d2d2d2524211d181109000000000000040d161e24292c393939393939393933322f2a241c130a000000000000060f1820262b2e2f3939393939393939362d2b28221c140b0200000000000000000713202d3a4653606d7985929f95908b898b8f93999fa39f97918c8a8a8e9299998c7f7265544a3f33281c0f0300000000000000101d2a3743505d6a768390979d9fa7a29f9a94908a85807b75706c65605d56544e4745403937312b28231c1914100b040100000000000000000000000000000000000c18232f3943505a616e7b859198a3acaca399928b80786f6a625f585653504a4e4d4d4d4e4a505355575e61696e757e869297a2aaaaa1969082786d60574e42372b21170b0000000000000000000c18232e39424e58616c717f8a9298a0a8aba49f99928e8a8784828180808081828486898d92979ea1a8aca49f9590847b6e685e544a3f342820150a000000000013202c3946535f6c7986929facb9a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8a7e7164574a3e3124170b000815222e3b4855616e7b7f7f7f7f7f7f7f7f7f818f9ba8aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000a16202b343d4347495251504f4e4d4c4b4a49495663707c8996a3a194887b6e615548494a4b4c4d4e4f5051524745413a31281e130800000000000000000000000006111c26303845525d68717e8b949faba1968c8073695e534749535f6a74818d97a2ab9f948b7e71685d52463d30261c110600000000000000000000000007111921272c2f303939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939302f2c27211a11080000000000000002080d101213131313131313130707040100000000000000000000000000000000000000000000000000030613131313131313131313120f0a05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005080a0b131313131313130f0e0c080400000000000000000000000000000000000000000000000003080b0d0e131313131313130b0a080500000000000000000000000000000001060b0f1111131313131313131313131313131313131313131313131313131313131313131312110f0c070200000000000000000000000000000000000000000000000000000000000000060b141b22272b31373a3b3f4244454646464543413f3b3a37312c282e33363739393939393932312e29221b120900000000010c1620282f35394646464646464646403f3b352e251c120700000000040d18222a31373a3b4646464646464646433938332d261d140a000000000000000006131f2c3845515c6774818d98a09d9896979b9fa49f99928d85807d7d818792998f8276665b5044382b1f1206000000000000000c1926323f4c5965727f858b90959b9fa3a69f9c97918c87827d78726d6862605853514b47423c38342e2a251e1b16110d0801000000000000000000000000000004101c2934404b55616c76828f97a1aaafa49a92877e736d665f58534e4946443f41404040413f4446484d53565e616c717c859298a2aca89f948d80736a5f53473e33281c10040000000000000004101c2834404b545f6a717e87939fa2aaa9a199938e86827e7a777574737373747577797c80858b91969da5afa79f9691847a6e665c50443c32261b0f040000000013202c3946535f6c7986929facb3a79a8d80808080808080808080808080808080808080808080808080808080808080808080808080807c6f6255483c2f221509000714212d3a46535f696e7272727272727272727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000030f1b27323d464e54565f5e5d5c5b5a595857565556626f7c8995a2a194877a6e615455565758595a5b5c5d5e5f54524c433a2f24190d0100000000000000000000000b17232e38424e58606d7a85929ea6a69e9184796d60574d42414e58616d7a85929ea7a69e92857a6d61584e42382e23170c0200000000000000000000040f19232b32383b3d46464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646463d3c38332c231a10050000000000060d14191c1f1f202020202020201413110d0801000000000000000000000000000000000000000000060c1012202020202020202020201e1b161009010000000000000002080d101213131313131313090806030000000000000000000000000000000000000000000000010407071213131313131313131313120f0a050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f181d262d33373c4247484c4e505252535252504e4c4846423c3834393f43444646464646463e3d3a342d241b110600000008131e28323a414553535353535353534d4b4740372e24190d020000010c161f2a343c43474852535353535353534f46443f382f261c11060000000000000004101c2834404b55616e7b86929fa4a5a3a4a7a09d948f868079737070747d87939285796c605346392d201306000000000000000b1825313e4a57626d72797e83898e92999ea1a8a19e99928f89847f7a746f6a65605d55534d46443f3836302c27201d19130f0a0400000000000000000000000006131f2c3845515c67707d8a949fa9b0a69f93887e716c605c544e47433c3a38342e3433342d3338393c42464d525a616a6f7c86929aa4afa69f92877b6e62594f44392d20150a0000000000000006131f2c3845515c666f7c869299a4aea8a0979187817b75716d6869676766676768676d7073797e848e939fa4aca8a0969083786d60584e43372b20150a0000000013202c3946535f6c7986929facada0938679737373737373737373737373737373737373737373737373737373737373737373737373736f6a5f53473a2e2115080005121e2a36424d575f616565656565656566727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c1003000000000000000000000000000000000006131f2b37434e5860626c6b6a696867666463626160626f7b8895a2aa93867a6d606162636465666768696a6b6c605d564c4135291d11040000000000000000000003101c28343f4a54606a74818d97a1ab9f948a7e71675d51453b3c46525e68727e8b95a0aca1978e81746a60544a3f34281f1409000000000000000000000b16212b353d44484953535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534a48443d352c21160b000000000810181f25292b2c2d2d2d2d2d2d2d2d201d19130c04000000000000000000000000000000000000030a11171c1f2d2d2d2d2d2d2d2d2d2d2b27211b130a010000000000060d14191c1f1f2020202020201515120f0a030000000000000000000000000000000000000001080d1113141f202020202020202020201e1b161009010000000000000004090e1112131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130b0a0804000000000000000000000001060b0f111113131313131207060300000000000000000000000000000000000000000000000000000000000000000000060606060606060503000000020608080c0f111213131312100e0b08070502000000000000000000000000000000000000000000000000000008111a212a2f383f44464d5355585b5d5f5f605f5e5d5b5855534d46443f444b4f515353535353534b4a453f362d22180c0100010d19242f3a444c525f606060606060605957524940352a1e1307000007131d28313c464e53555f606060606060605c53504a42382d22170b00000000000000000c18232e3946525e69727f8b929b9e9f9e9b959089827b736d6763646b74818e98887b6e6255483b2f221508000000000000000916222e3a46515b62676d71777c81868c91969c9fa6a39f9b96918c86817c77716d67615f5753504a46413b38322c29241e1b15100c0700000000000000000003101c28343f4a54606d7984919ea6b0aa9e948c7f736c625a504a423c37322d2c282327272722282b2d31363b42465058606a707e88939fa8aea3998f82766c6155493c31261b0f00000000000004111d2935414b55606d79839098a3aba9a09691857d746e6964615d565b5a5a5a5a555c6063666d7179818b939aa4afa89f958c80736a5f54473d32271b0f0100000013202c3946535f6c7986929facada093867a6d676767676767676767676767676767676767676767676767676767676767676767676767625f584e43372b1f120600020e1a26313b454d53555858585858585966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000815222e3b4754606a6f7877767574737271706f6e6d686e7b8894a1a39886796c6c6d6e6f7071727374767778796d685d5245392c201306000000000000000000030c19232b3844505c666f7c87939fa9a3998f82766c61554b403335414c56606c7883909aa4a99f93887c6f665c50443b30251a0d03000000000000000004101b27323d474f5456606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606056554f473d33271c1004000006101a222a3035383939393939393939392c29241e160d0400000000000000000000000000000000030c151c23282c3939393939393939393937332c251c1309000000000810181f25292b2c2d2d2d2d2d2d22211f1b150e060000000000000000000000000000000000040c13191d20212b2d2d2d2d2d2d2d2d2d2d2b27211b130a010000000000080f151a1d1f20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020171714110c050000000000000000040c12171b1d1e20202020201f1312100c060000000000000000000000000000000000000000000000000000000105090b0b13131313131312120f0c04090e121415191b1d1f1f201f1f1d1b181414110e0802000000000000000000000000000000000000000000000008111a232c333c41495053575f6265686a6b6c6c6c6b6a6865615f5753504a4e565b5e606060606060585650483f34291d11050004111d2935414c565d6c6c6c6c6c6c6c6c66635b52473b2f23160a00071018242f3a434e585f626c6c6c6c6c6c6c6c69605b544a3f33281c0f030000000000000007121d2a36424d56626d7380898f9292918f8a837d766e69605d5559626f7c89988a7d7063574a3d3024170a0000000000000006121e29353f4951555c60646a6f757a7f848a8f949a9fa2a8a09e98928e88837e79736e6964605c54524c48443d39352f2b261f1c18120b030000000000000006121f2b3844505c66727f8c96a0acaea2988f82776c605a50443f38302b26201f1c171a1a1a171c1f20252a30363e464e58616c73808d96a1acab9f948a7d7064584e43372b1d120700000000000613202c3945515d67737f8c95a0aaada19791847b706b615e5754524c4e4d4d4d4e4b5153545c60676d747f88939fa5afa79f92877c6f62584e43372b1d120700000013202c3946535f6c7986929facada093867a6d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a55534e463c31261b0f03000009141f2a333b4246484c4c4c4c4c4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000916232f3c4956626f7c8584838281807f7e7d7c7b7a79787a8794a19f92867978797a7b7c7d7e7f8081828384867a6d6054473a2d2114070000000000000000000b151e2a36414d56606d78839099a4a99f92877c6f625a5043392f303a44505b666f7c87939faaa49a9083786d60574d42362a1f150b01000000000000000713202c38444f5960636c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6361594f44382c20140700020d18222c343b414446464646464646464639352f2820160c010000000000000000000000000000000a151e262e343846464646464646464646433e372e251b1005000006101a222a303538393939393939392f2e2b2620181006000000000000000000000000000000040d161e24292c2d383939393939393939393937332c251c13090000000009121920262a2c2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423211c171008000000000000060e161d23272a2b2d2d2d2d2d2c201f1c17110a03000000000000000000000000000000000000000000000000060c111517182020202020201f1e1c1810151a1e212225282a2b2c2d2c2b2a282521201e19140f0a040000000000000000000000000000000000000000060f1a232c353e454d535b6064696e72757778797979787674726e6964605c545660676a6c6c6c6c6c6c65625a50453a2e211509000713202c3945525d687679797979797979736d63574b3f3225190c050e19222935404b555f6a6e7979797979797979766c665b5044382b1f120600000000000000000e1925303b44515b636e737d82858684827d78706b625f57514b53606d788686867f7265584c3f3225190c00000000000000010d18232d373f434b5153586062686d73787d82888d92989da0a8a29f9b95908b85807b76706d66615e56544f4745413a37312c28231d150c030000000000000713202d3a4653606d7884919ea8b2a99f92867b6e655b50483e342e261e1b1312100c060d060b0f12131a1f252a343d46505a606d7984919ea8b0a69c8f83766a5f5347392e23180c00000000000714212d3a4754606d7a85929fa7b0a69e92857b6e696059524d47464141404040414045464b51555d606d727f8b939ea9afa3998f82766a605447392f24180c00000013202c3946535f6c7986929facada093867a6d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4847433c342a20150a000000030e18212a31363a3b3f3f3f3f3f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000916232f3c4956626f7c8991908f8e8d8c8b8a898887868583919daa9f92878385868788898a8b8c8d8e8f9091877a6d6054473a2d211407000000000000000007121d27303946525e68727f8b95a0aba1978d80746a5f53483e312728333f4a54606b74818e98a2aca0958c7f72695e52463e31271d1207000000000000000916222f3b4854606b707979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979706b6155483c2f2316090008141f2a343e464d5152535353535353535345413a32281e1308000000000000000000000000000006111c2630383f44535353535353535353534f4940372c21160a00020d18222c343b4144464646464646463c3a37312a22180e0300000000000000000000000000010c1620282f35393a4546464646464646464646433e372e251b1005000008121b242b3136383939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393931302d28221a120800000000040e1820282e3337383939393939392d2c28231c150c03000000000000000000000000000000000000000000000911181d2124252d2d2d2d2d2d2c2b28241c1f262b2e2f32353738393939383735312e2d2a251f1b150d07010000000000000000000000000000000000020b18212c353e474f575f656c71767b7f8183858586858583817f7b77716d665f58677277797979797979716c62564a3d3124170b000714212d3a4754606d7a86868686868686807366594d4033261a0d0b16202b343d45515d676e7c868686868686868682796c605346392d201306000000000000000009141f29323f49525c636b707578797875706c656059534d4544505c6674797979726d62564a3e3124180b000000000000000007111b252d31394045474e54565e61666d70767b81858b91959b9fa3a79f9d97928d87827d78736e6863605954514c47433c38342e271e150b000000000005111e2a36414c5664707d8a96a1adada1978c7f72695e53493f3628231c140c0a060300000000000306090e1419222b343e45515d67717e8a96a0acab9f94887c6f62544b4034281c100400000006131f2b37434e5866727f8c97a2adaa9e948a7d70695f574f46423b3935303433342e34383a40454b515b626d74818e97a1adab9e94897c6f62554b4035291d1004000013202c3946535f6c7986929facada093867a6d6053474040404040404040404040404040404040404040404040404040404040404040403c3a37312a22180e0400000000060f181f262a2d2e323232333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000916232f3c4956626f7c89959d9c9b9a99979695949992919195a0aca399929091929995969798999a9b9c9d93877a6d6054473a2d21140700000000000000000c18232e39424f59616e7b85929fa7a79e92857a6d60584e43362c1f222d38424f59616e7a86929fa7a79f92867b6e61594f43392f24180c030000000000000a1623303d495663707d86868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686867d7063564a3d3023170a000d1925303b4650585d5f606060606060605f524c443a2f24190d01000000000000000000000000000c17232e38424a505f60606060606060605f5a52493e33271b0f0008141f2a343e464d51525353535353534847433c342a20150a0000000000000000000000000008131e28323a41454752535353535353535353534f4940372c21160a00040f19242d353d4245464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646463e3c39332c241a10050000010c16202a323a3f43444646464646453a38342e261e150a00000000000000000000000000000000000000000009121b22292e313239393939393939373430282c31373a3b3f4244454646464543413e3b3936302b272018130c04000000000000000000000000000000000a141d2a333e474f5961696e787e83888b8e909292939291908e8b88837e786f6a606a77848686868686867e7165584b3e3225180b000714212d3a4754606d7a8793939393938c807366594d4033261a0a141d28323d46515b606d798391989393939991847a6d665b5044382b1f12060000000000000000020d17202d37404952596063686b6c6b6864605b534f47423c3f4a545c6a6c6c6c65625b51463a2e2215090000000000000000000a131b1f272f34383d43474c52545c60646a6e747a7f84898f92999ea1a9a29f9a938f8a847f7a75706b65605d55534e4645403930271d1207000000000714202d3946525e6876828f9ca8b2ab9e9185796d60574d41382d2417110a02000000000000000000000002091019222935404b55606c7884919dabb0a69a8e8174665c5145382c1f13060000000815222e3b4754606a7884919ea9b1a79c8f82756c61574d453d36302d292427272723282c2e343a4145515b606d7a85929eaab0a69b8e8275675d5145392c1f1306000013202c3946535f6c7986929facada093867a6d6053473a34343434343434343434343434343434343434343434343434343434343434342f2e2b2620181006000000000000060e141a1e2122252526333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000916232f3c4956626f7c8995a2a7a6a5a4a3a2a1aaa29f9e9da0a7b1aba39f9d9e9fa2aaa2a3a4a4a5a6a7a093877a6d6054473a2d2114070000000000000004101c2834404b54606b75818e98a2aca0958b7e72685d52463c31241a1c262f3d46525e68727f8c95a0aca2988e81756b61554b4035292015090000000000000a1623303d495663707c89939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393897d7063564a3d3023170a00101c2935414d5862696c6c6c6c6c6c6c6c6c5d564c4135291d110400000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e12000d1925303b4650585d5f60606060606055534e463c31261b0f030000000000000000000000030c19242f3a444c52545e6060606060606060605f5a52493e33271b0f000915202b353f474e52535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534a49453e362c22170c000006121d28323c444b4f5153535353535246443f3830261c11060000000000000000000000000000000000000006111b242d343a3d3e4646464646464544403b34383c4247484c4e505252535252504e4b4746413b373229241d160d05000000000000000000000000000006111b262f3c454f59616b707b838a9095989b9d9e9f9f9f9e9d9b9895908b837c706b67798592939393938a7d7164574a3e3124170b000714212d3a4754606d7a87939f9f9f998c807366594d4033261a111c262f3a444e58626d75818e95a0aaa59f92877c6f685e544a3f33281c0f03000000000000000000050e1b252e3740474f54565c5f5f5e5c57535049413d373138424a50535f6060585651493f34291e1206000000000000000000010a0d151d23292c32383a41464a5053585f62676d72777d82878d92979d9fa7a49f9c96918c86827c77726d67625f5853514b42392e23180c000000000814212e3b4754616e7a87939facafa3998c7f72675d51453b2f261b1206000000000000000000000000000000071018242f3944505b66727e8b99a3aeac9f9285796d6053463a2d2013080000000916222f3c4955626f7c8896a1acaca095897c6f625a50453b332a25201d191a1a1a181c1f23282f353f45515d67727f8b98a2aeac9f9286796d6053473a2d201406000013202c3946535f6c7986929facada093867a6d6053473a2d2727272727272727272727272727272727272727272727272727272727272722211f1b150e06000000000000000003090e121415191926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000916232f3c4956626f7c89959b9a999998979695949892919095a0aba39992909192989495969798999a9b9c93877a6d6054473a2d211407000000000000040d1a242c3845515c66707d89939eaaa59d9083786c60564c41342a2012141d2a36414c56606d7883919da5aa9e938a7d70675d51453c31261a0d0400000000000a1623303d495663707c89969f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f96897d7063564a3d3023170a00121f2b3844515d6974797979797979797976685d5245392c20130700000000000000000000000006121f2c3844505c66767979797979797979766c5f5346392d201300101c2935414d5862696c6c6c6c6c6c6c625f584e43372b1f120600000000000000000000000b151e2935414c565d606b6c6c6c6c6c6c6c6c6c6c645a4f43372b1e12000e1a26313d4751595e5f606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060575550483e33281c1104000b17232e3a444e565c5e60606060605f53504a42382e23170c000000000000000000000000000000000000010c18222d363f454a4b53535353535352504c454044464e5355585b5d5e5f605f5e5d5b5854524d47433d352f281f170f05000000000000000000000000000b17222d38414d57616b707d8690959d9fa7a8aaaaa39f9e9e9e9fa3a09d9590867d706d798698a29f9f96897d7063564a3d3023170a000714212d3a4754606d7a8793a0aca6998c807366594d4033261a17222d38424c56606a727f8b939ea8a79e938b7f726a60564c42382d22170b000000000000000000000009131c252e353d4448494f5253514f4a46443f382f2b2630383f44465353534c4a463f372d23180d010000000000000000000000030b12181c1f272b3036383f44464e53555d60656b70757b80858b90959b9fa3a8a19e99928e89847f7a746f6a64605c544b4034281c10040000030f1b27333f495364717e8b9aa4afac9f92867a6e61554b4033291d140a000000000000000000000000000000000007121d28333f4a54616d7a86929facaea298897d706356493d2f24190d0100000d1a2633404d596673808c99a8b2aa9d9083776a6054483e332a211a14110d080d070c1013181d242935414c55606d7985929fabaea2988a7d7164574a3e2e23170b000013202c3946535f6c7986929facada093867a6d6053473a2d201a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1515120f0a040000000000000000000000020507080c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000916232f3c4956626f7c89908f8e8d8c8b8a898887868584839099a49f9287838485868788898a8b8c8d8e8f90877a6d6054473a2d2114070000000000010c161f2a36424d57606d7984919da5aa9e93897c6f665b50443a3022180e0b1925303b44515c66707d89939eaaa59e9184796d60574e42372b20160c01000000000a1623303d495663707c8996a3acacacb5afaca7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a396897d7063564a3d3023170a00131f2c3946525f6c7986868686868686867a6d6054473a2d2114070000000000000000000000000713202d3a4653606d788686868686868686796c605346392d201300121f2b3844515d697479797979797979766a5f53473a2e2115080000000000000000000007121d27303945525d686d78797979797979797979766c5f5346392d201300111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d211408000f1b27333f4b5660676b6c6c6c6c6c6c605c544a3f34281c1003000000000000000000000000000000000005111d29343f485056586060606060605f5d574f4a5153575f6265686a6b6c6c6c6b6a6864615e56544e45413a312921170f050000000000000000000000030f1b27333f49535f69707d8792989fa7aba7a09d9898929191919299989d9f9892877d707a8794aab4a396897c706356493d3023160a000714212d3a4754606d7a8793a0ada6998c807366594d403326172128333f4a545e686f7c87929fa5aaa0958e81756d62584e443a2f261c11060000000000000000000000010a131c232b33383c3d42454645423d3937332d261d1e262e34383a4646463f3e3a342d251b11060000000000000000000000000001070c10161b1e252a2e34383c43474b5154596063696e73797e83888e92989ea1a8a39f9b95918b85817c76716d665c5145382c1f1306000005121f2b3744505b6575818e9bacb6a99c8f8276685e5243392f21170b020000000000000000000000000000000000010b17222d3846525d6875828f9ca8b4aa9a8d807367564c4135291d11040005111e2a36424d576976838f9ca9b5ab998c7f7366584e43362c21180f0905010000000004070c1319242f3a45515d6774818e9aa7b4aa9b8e817468544a3f34281c10030013202c3946535f6c7986929facada093867a6d6053473a2d20140d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0908060300000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000916222f3c4955626f7c83838281807f7e7d7c7b7a7978777887939f9e9184787879797a7b7c7d7e7f80818283847a6d6054473a2d211407000000000007131d28313a46535f69737f8c96a0aca2988e81756b60544a3f32281e100608141e2834404a54606b75828f98a2aca0968c80736a5f53473e32281e1308000000000a1623303d495663707c8996a7b1bbb5aba39f9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a96897d7063564a3d3023170a00131f2c3946525f6c7985929393939393877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693939393939386796c605346392d201300131f2c3946525f6c79868686868686867c6f6255483c2f221509000000000000000000000c18232e39424f59606d7a85868686868686868686796c605346392d201300121f2c3845525e6a7579797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979716c6155493c3023170a00111d2a37434f5c6772777979797979786d665c5044382c1f120600000000000000000000000000000000000915212e3a45505a62656c6c6c6c6c6c6c696157545c60646a6e72757778797979787674716e68626058514b433b332921170d030000000000000000000005121f2b3744505b656e7b859299a2aaaaa39f95918b888584848586888b90959e9992857b7b8894a1aea295897c6f6256493c2f231609000714212d3a4754606d7a8793a0ada6998c807366594d4033261e29333b44505b666d7a849199a3aea2989083796d605b51463d32281d140a00000000000000000000000000010a111921272c2f303538393835312d2b27221b14151c23282c2d39393932312e29231b13090000000000000000000000000000000000040a0f13191c23282b31373a4145474f54575e61676d71767c81868c91969c9fa4a7a09d98928e88837e796d6053463a2d20130700000613202d394653606c7885929eabb3a9988b7f7265564c4131271d0f050000000000000000000000000000000000000006111c2935414c5665727f8b98aab4aa9d918477685d5245392c201306000714202d3a46525e697885929eabafa399897c6f6256493d32231a0f060000000000000000000108131e2935404b5564707d8a97a9b3aa9d908377665c5044382b1f12060013202c3946535f6c7986929facada093867a6d6053473a2d201407010101010101010101010101010101010101010101010101010101010000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000815212e3b47535f6a6f77767574737271706f6e6e6d66667885929e9d9083766b676d6e6f7071717273747576776d675d5145392c20130600000000020b18242f3a43505a616e7b86929fa8a89f92867b6e61594f42382d20160c00020c18232e39424f59616e7b86929fa8a89f92867b6e625a50443a2f24190c020000000a1623303d495663707c8995a0a9b3afa399928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d897d7063564a3d3023170a00131f2c3946525f6c7985929f9f9f9f93877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d7986939f9f9f9f9386796c605346392d201300131f2c3946525f6c79859293939393887b6f6255483c2f22150900000000000000000005101c2834404b54606b74818e979393939393939386796c605346392d20130013202c3946535f6c79878686868686868686868686868686868686868686868686868686868686868686868686868686868686868686867e7164574a3e3124170b00111e2b3844515e6b7784868686868686786d6053463a2d20130800000000000000000000000000000000000b1724313d4a56626c71797979797979787369585f666d71777b7f8183858586858583817e7b756f6a605d554d453b33291f150b010000000000000000030f1b27333f4953606c77829097a2abaaa398928b837f7b79787778797b7f83899196978f827c8895a2aea295897c6f6256493c2f231609000714212d3a4754606d7a8793a0ada6998c807366594d40332627303b454f59606c78828f96a1aba49f92857b6e675d51493f342b20160b02000000000000000000000000000000070f161c202223292c2c2b2924201f1b17110a0a11171c1f202c2d2d2524221e181109010000000000000000000000000000000000000002080d11171c1f262b2f35393d44484d53555c60646a6f747a7f848a8f939a9fa2aaa29f9a94908a8376695d5043362a1d1000000815222e3b4855616e7b8897a1adada197887b6e6255483b3022150b0000000000000000000000000000000000000000000d1924303c4855626f7b8898a2aeaca095877a6d6054473a2d211407000814212e3b4754616e7b8797a2adac9f92867a6d6053473a2d2014070000000000000000000000010d18242f3b4754616e7a8797a1adac9f9286796d6053463a2d2013070013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c1003000000000000000000000000000000000006131f2b37434e585f626a69686766666564636261605c6a7784919d9c8f8275695c60616263646566676869696a605d554c4135291d1104000000000a141d2935404b55616c75828f98a3aca0968c7f73695e52473d2f261c0e04000007121c27303d46535e69737f8c96a0aca3998f82766c61564c4135291e140a0000000714202d3a4753606d79839097a2acac9f928780808080808080808080808080808080808080808080808080808080808080808080808080807b6e6255483b2f22150800131f2c3946525f6c7985929facaca093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929f9f9f95887b6f6255483c2f2215090000000000000000050e1b242c3845515c666f7c88939fa99f9f9f9f9f9386796c605346392d20130013202c3946535f6c798692939393939393939393939393939393939393939393939393939393939393939393939393939393939393938a7e7164574a3e3124170b000e1b2734414e5a6774818d93939398897c6f6356493c2f24190d01000000000000000000000000000000000b1825323e4b5865717e868686868686857866616a6f787e83888b8e909192939291908e8b86827c746d675e574d453b31271d1207000000000000000005121f2b3744505b65717e8a949fa9aea39892867f78726e6c656b666d6e72767d849094948c7f8c99a5afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033232e39424d57616b73808c949fa8a69d928a7e71695f554b40372d22190e050000000000000000000000000000000000050b101316161c1f201e1c1713120f0b060000060c101213202020191815120d06000000000000000000000000000000000000000000000000060b10151a1d24292c33383b42464b5153586062686d72787d82878d92989da0a7a69f9c9084776a5d5144372a1e1100000a1724303d4a5763707d8a96a9b3ab9e928578695f53473a2e2114030000000000000000000000000000000000000000000813202d394653606c7985929facb1a795897c6f6256493c2f231609000916232f3c4956626f7c8995a9b3aa9e918477675d5145382c1f13060000000000000000000000000714202d3946525e687885919eabaea398887b6e6255483b2f2215080013202c3946535f6c7986929facada093867a6d6053473a2d20140c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c070604010000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000030f1b26323c464e53555e5d5c5b5a595857565554535d697683909c9b8e8174685b535455565758595a5b5c5d5e54514c433a2f24190d0100000006111b262f3845515d67717e8a949eaaa69e9184796d60574d42352b1d140a000000000b151e2a36424d57606d7984919ea6ab9f948a7e71685d52453d30261c1106000006131f2c3945515d676e7b85929aa4afa3998e81747373737373737373737373737373737373737373737373737373737373737373737373736e695f53473a2e21140800131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f22150900000000000000020c16202b37424d57606d7983919aa4afacacacac9f9386796c605346392d20130013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b000a1724313d4a5764707d8a99a3aa998c807366564c4135291d1104000000000000000000000000000000000b1724313e4a5764717d8a939393939786796d6c707c838b9095989b9d9e9f9f9f9e9d9b99928f8781796e695e574d43392f24180c03000000000000000613202d394653606c7883909da6b0a79f92867d726c6662605b545c6062656b707a8290959286929facafa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d40332834404b545e69707d88939fa6a99f948d80736c61574d43392f251b100700000000000000000000000000000000000000000407090a0f1213120f0a0605030000000000000306071313130c0b090601000000000000000000000000000000000000000000000000000000030a0f13181d20272c3136394045464e54565e61666c70767b80858b90959ca4aa9d9084776a5d5144372a1e1100000c1926323f4c5965727f8c98a5b2a99c8f837669574d42372b1e120600000000000000000000000000000000000000000006121f2b3844505b667783909daab1a4978b7e7164584b3e3125180b000a1723303d4a5663707d8996a3b0a99c90837669554b4035291d100400000000000000000000000005111e2a36414c566a7683909da9b4aa96897c6f6356493c302316090013202c3946535f6c7986929facada093867a6d6053473a2d2019191919191919191919191919191919191919191919191919191413110d0701000000000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000a15202a343c43474951504f4e4d4c4b4a4948474f5b6875828e9b9a8d8073675a4d4748494a4b4c4d4e4f50514745413a31281e1308000000000b17222d38414e58606d7984919ea6ab9f948a7d70675c51453b3023190b0200000000030c1a25313b45515c67707d8a949eaba69e91857a6d60584e42382e23170b000004101d2935404b555f69707d88939fa6ab9d938b7e716a67676767676767676767676767676767676767676767676767676767676767676767625f574d42372b1e120600131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f2215090000000000000008131e28323a47535f69737f8c95a0acb6b8b9beac9f9386796c605346392d20130013202c3946535f6c7986929facacacaea9a7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a4978a7d7164574a3e3124170b000714212d3a4754606d7a86929fa99d908376685d5245392c201307000000000000000000000000000000000a1723303d4a5663707d89969f9fa994877a6d707e8690959da09e9c9b9a9b9c9ea1a9aba39f9a938e847b6e695e554b403529201509000000000000030f1c28333f4a5463707d8995a0acab9f958b7e716b605b5453504a5053555961686d798391999299a3aeafa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033343c45515c666e7b85929aa4aba1979082786d605a50453c31271d1309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d11161c1f252a2e34383c43474c52545b6064696e747a7e838c929caa9d9084776a5d5144372a1e1100000e1b2834414e5b6774818e9aa7b3a79a8d8074675a4d4131261a0e02000000000000000000000000000000000000000000030f1c28333f4a546875818e9ba8b3a6998d8073665a4d4033271a0d000b1724313e4a5764717d8a97a4b0a89b8f8275685c4f422f24180c00000000000000000000000000010d192530424f5c6875828f9ba8b0a3968a7d7063574a3d3024170a0013202c3946535f6c7986929facada093867a6d6053473a2d26262626262626262626262626262626262626262626262626262621201d18130c040000000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c1003000000000000000000000000000000000000040e18222a32373b3c44434241403f3e3d3c3b414e5a6774818d9a988c7f7265594c3f3c3d3e3e3f40414243443a39352f281f160c01000000030f1b27333f49535f6a73808d96a19fa3998f82766c61554b4033291f100700000000000009141f2934404b55616c76828f99a39fa1978d80746a60544a3f34281c100300000c18242f39434d57616b73808c949ea8a59f92867c6f685d545a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a55534d453c31261a0e0200131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f221509000000000000030d1925303a44505a616e7b86929fa7afacabadb3ac9f9386796c605346392d20130013202c3946535f6c7986929facb9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a978a7d7164574a3e3124170b000613202c3945515d677683909ca99f92867a6d6054473a2d211409000000000000000000000000000000000a1623303d495663707c8996a3aca195887b707e8792989e9896918f8e8d8e8f91979b9fa4aca49f9691847b6e675d51453c31261a0f02000000000006121f2b3844505b6674818e9ba7b1a99d9083766d6259504a46443f4446484f565d676f7c87929fa3abb4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d40313c46505a606d78839097a2aca39991857a6e665c50483e332a1f150b00000000000000000000000000000000000000000000000000000000000004080a0a1313131312110f0b070100000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f141a1d24292c32383a41464a5053585f62676d7279808c99a69d9084776a5d5144372a1e110000101c2936434f5c6976828f9ca9b2a5998c7f7266594c3f3326190900000000000000000000000000000000000000000000000b17222d404d5a6773808d9aa6b3a89b8e8175685b4f4235281c0f000b1825313e4b5864717e8b97a4b1a89b8e8275685b4f4235281c070000000000000000000000000000081b2835414e5b6874818e9ba7b0a4978a7d7164574a3e3124170b0013202c3946535f6c7986929facada093867a6d6053473a333333333333333333333333333333333333333333333333333333332d2c29241d160d0400000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000007101820262b2e2f37363534333332313033404d596673808c99978b7e7164584b3e313031323334353636372d2c29241e160d040000000005121f2b3744505b656f7c87929393939392877c6e625a5043392e21170d00000000000000030c18232f3943505a616e7b86929393939393877c6f665c5044382b1f1206000007121d27313b454f59606c78828f96a0aaa39891847a6d665b504d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4847423c332a2015090000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f2215090000000000010b151f2a36414c56626c76828f98a3aca49f9ea1a9b39f9386796c605346392d20130013202c3946535f6c7986929facb9a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8a7e7164574a3e3124170b0004111d2935414c5566737f8c99a9a3998a7d7164574a3e31261a0e02000000000000000000000000000000091623303c4956636f7c8996a2afa295897c7c86929996918c8784828181818285888e939aa1a9a8a0969083796d60584e43372b1f140900000000000613202d394653606c7985929eabada1978a7d70645a50443f393734383a3d444c555f6a74818e9aa7b1bdafa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d403a434e58616c74808d959fa9a59f92877d6f685e544a3f362c21180d0300000000000000000000000000000000000000000000000000000000050b10141617202020201f1e1b17120c0500000000000000000000000000000000000000000000000000000000000000000000000002080d11171c1f262a2f35383d43484c52545c60646a6e747a7e838c929caa9d9084776a5d5144372a1e110000101d2a3643505d697683909ca9b1a4978a7e7164574b3e3124180b0000000000000000000000000000000000000000000000061926323f4c5965727f8c98a5b2a89c8f8275695c4f4236291c0f000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2834414e5b6774818e9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3a39352f281f160c01000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000000070e151b1f21222b2a29282726252425323f4c5865727f8b98968a7d7063574a3d30242425262728292a2b21201d19130c0400000000000613202d394653606c79838686868686868680736a5f53473e30271d0f05000000000000000007121d27313e47535f6973808686868686868683796d6053463a2d2013070000010b151f2a333e44505b666d7a849198a2aaa1968f82786c60594f45404040404040404040404040404040404040404040404040404040403b3a37312a21180e030000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f221509000000000007121d27313946525e68717e8b949faaa49a939297a1ad9f9386796c605346392d20130013202c3946535f6c7986929facb3a79a8d80808080808080808080808080808080808080808080808080808080808080808080808080807c6f6255483c2f22150900010d19242f3c4956626f7c8997a2ab9a8e817467574d42372b1e12050000000000000000000000000000000916232f3c4956626f7c8995a2afa396897d839098938d847f7b777574747476787c81889197a1a9a8a0958d80736a5f53473b30251a0e02000000000916232f3c4956626f7c8997a2adab9e9285796d6053463f332d2b282c2d323a434e58626e7b88959fabb8afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d40414b555f6a717e8a929da7a89e938c7f726b60564c42382e241a0f06000000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d2b2a28231e170f06000000000000000000000000000000000000000000000000000000000000000000040a0f13191c22282b3136394045474e54565e61666d70767b80858b90959ca4aa9d9084776a5d5144372a1e110000111e2a3744515d6a7783909daab0a3968a7d7063574a3d3024170a00000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1a99c908376695d5043362a1d10000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d60534c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4745413a31281d1307000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c1003000000000000000000000000000000000000000000040a0f1315161e1d1c1b1a19181724313e4a5764717d8a9795897c6f6256493c2f231718191a1b1c1d1e1413110d080100000000000005121f2b3744505b656c7679797979797979736e64584e43352c1e150b000000000000000000010b151f2b37424d57636e7379797979797979776d665c5044382b1f1206000000030d182128333f4a545d686f7c86929fa4a89f948c80736b61574d43392f343434343434343434343434343434343434343434343434342f2e2b2620180f06000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f22150900000000020b18232f39434f59616d7a85929ea6a99f938785929eab9f9386796c605346392d20130013202c3946535f6c7986929facada0938679737373737373737373737373737373737373737373737373737373737373737373737373736f6a5f53473a2e21150800000813202d394653606c7985929eab9e918478695f53463a2d2114060000000000000000000000000000000916222f3c4955626f7c8895a2afa89c8f828f9593888079726e6969686768696a6f747d859197a2ada79f92877c6e62574d42362a1e1205000000000c1926323f4c5965727f8c98a9b3a79b8e8174665c50443828221f1c1f2028313c47535f6a7683909da9b6afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d3f45515d676f7c86929fa4aaa0968f81756d62594f443b30261c12080000000000000000000000000000000000000000000000000000000008111a22282d3031393939393837342f2821180f05000000000000000000000000000000000000000000000000000000000000070c10151b1e24292d33383b42464b5153586062686d73787d82888d92989da0a7a69f9c9084776a5d5144372a1e110000111e2b3844515e6b7784919eaaafa396897c706356493d3023160a00000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1aa9d9083776a5d5044372a1d11000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d605959595959595959595959595959595959595959595959595959595959595954514b433a2f24180d010000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000000000000000306080911100f0e0d0c0b1623303d495663707c899694877b6e6154483b2e21150b0c0d0e0f1011070604010000000000000000030f1b27333f49535b60696c6c6c6c6c6c6c67645c52463c31231a0c0300000000000000000000030d1a26313c45525c63666c6c6c6c6c6c6c6a605c544a3f34281c100300000000060f17222d38424c565f6a717e8b929da7a69f93887d70695f554b40352927272727272727272727272727272727272727272727272722211e1a150e0600000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f221509000000000a141d2934404b55606b74818e97a1ada1978e8183909da99f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d676767676767676767676767676767676767676767676767676767676767676767676767625f584e43372b1f1206000006121f2b3844505b6675828e9ba8a196887b6e6155483b2e23170c0000000000000000000000000000000916222f3c4955626f7c8895a2afaa9e948f9493887e736d67615e575b5a5b5860626b6f7c85929ea6afa3998e8175695e52463a2d201408000000020f1b2835424e5b6875818e9ba8b5ab988b7e7165544a3f342817121012161f2b37434e5866727f8c99abb5afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366595049515b606d79849198a2aea29891847a6d605b51473d32291e150a0000000000000000000000000000000000000000000000000000000005101a232c33393c3d464646464543403a332a21170c01000000000000000000000000000000000000000000000000000003090e12181c1f262b3035383f44464d53555d60656a6f757a7f848a8f949a9fa2aaa29f9a948f8a8276695d5043362a1d100000121f2b3845525e6b7885919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0aa9e9184776b5e5144382b1e11000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6666666666666666666666666666666666666666666666666666666666666666605d554b4135291d11040000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000000000000000000000403020100000915222f3c4855626f7b889598867a6d6053473a2d201407000102030304000000000000000000000000000b17222d38414950535d606060606060605a58524a40332a20110800000000000000000000000009151f2a33404a52585a606060606060605d53504a42382e23170b00000000000006111c262f3a444e58616c74808d959fa9a49a92857b6e675d51453f342b20171a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1514120e09030000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f22150900000006111b262f3845515c67707d89939ea9a69e91857a84919daa9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a55534e463c31261b0f030000030f1c28333f4a5465717e8b98a8a8988b7e7265544a3f34281c100300000000000000000000000000000916222f3c4955626f7c8895a2afb0a69e9c958c80736c605c55524d4e4e4e4e5459606a717e8a949fabab9f92877b6e6154483b3025190e02000005111d2a36414c566a7784909daaafa499887b6f6255483c2e23170603060d1a26313c4956626f7c8999a3afafa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c80736b605b5358626d75818e96a0aaa49f92867c6f675d51493f352b20170c03000000000000000000000000000000000000000000000000000000000b17222c363e44494a5353535352504b453c33281e1207000000000000000000000000000000000000000000000001040b10141a1d23282c32373a41464a5053575f61676d71777c81868c91969c9fa6a7a09d98928d88837e786d6053463a2d2013070000121f2b3845525e6b7884919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0aa9d9184776a5e5144372b1e11000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada09386797272727272727272727272727272727272727272727272727272727272727272726d675d5145392c2013060000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a879a928579675d5145392c2013060000000000000000000000000000000000000006111b262f383f444650535353535353534d4c4740382e21180e00000000000000000000000000030e18212e3840474b4d535353535353535046443f3830261c1106000000000000000a141d28323c46505a606d78839097a1aba2979083796d605b51463d32291e140a0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0808060200000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f2215090000000b17222d38414e58606d7984919ea5aa9e948a7e7885919eab9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4847433c342a20150a000000000b17222d3b4854616e7b8795a0a89b8f8275665c5044382c1f120600000000000000000000000000000916222f3c4955626f7c8895a2afb8b0a89d9083786d605a514b464241414143474f58616c76828f9ca9afa3998c7f7266564c41362a1e110500000713202d3946525e687985929facac9f9386796d6053463a2d20130600000913202d3a4653606d7986929facafa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0adab9e91847d726c655d606a727f8b939ea8a79d928a7e716a5f554c41372d23190e050000000000000000000000000000000000000000000000000000000004101c28333e48505557606060605e5c564e453a2f23170b00000000000000000000000000000000000000000001080d11161c1f252a2e34383c43474c52545b6063696e73797e83898e92999ea1a8a39f9b95908b85807b76716d665c5144382c1f12060000111e2b3844515e6b7784919eaab0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a99d9083766a5d5043372a1d10000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb2a6998c7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f796d6054473a2d2114070000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939184786b554b4035291d100400000000000000000000000000000000000000000a141d262d3337394346464646464646403f3c362e261c0f060000000000000000000000000000060f1c262e363b3f4046464646464646443a38342e261e140a0000000000000000020b16202a343e44515c666e7b859199a3a9a0958e81756d62584e443a30261c11060001010101010101010101010101010101010000000000000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f2215090000040f1b27333f49535f6a73808c96a0aca2988f82757985929fac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053474040404040404040404040404040404040404040404040404040404040404040403c3a37312a22180e04000000000614202d3a46525e697784919daa9f9285796d6053463a2d20130800000000000000000000000000000916222f3c4955626f7c8895a2afb9ada1968a7d71665c5045403936303432373d46505a63707d8a97a1adab9d908377685e5246392d20140700000714212e3a4754616d7a8798a2aeab9e918478675c5145382c1f1306000006131f2c3845515c667784919daaafa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0adada19691877f776d68686f7c87929fa5a99f958d80746c61584e433a2f251b110700000000000000000000000000000000000000000000000000000000000814202d3944505a61646c6c6c6c6b6860564b4034281b0f0200000000000000000000000000000000000000040c13191d20272c3036394045464e54565d61666c70757b80858b90959b9fa3a8a19e99928e89837e7a746e6a64605c544a4034281c10040000111e2a3744515d6a7784909daab0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1a99c8f8276695c504336291d10000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9a89c918c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c877b6e6154483b2e2115080000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79869a9184786b554b4135291d11040000000000000000000000000000000000000000020b141b22272b2d36393939393939393433302b241c140b000000000000000000000000000000000a141c242a2f323339393939393939372d2b28231c140c02000000000000000000040e18222834404a545e69707d87929fa5a79e938b7f726a60564c42382e23170f0600000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f22150900040d1a232b3744505b656f7c87929fa8a79f92867b6e7986939fac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a34343434343434343434343434343434343434343434343434343434343434342f2e2b2620181006000000000005121e2a36424d576774808d9aaaa298897c6f6356493c2f24190d01000000000000000000000000000916222f3c4955626f7c8895a2afb8ab9e9184786c60544a3f342f2a2527272b333e4653606c7885929eabaca095877a6e6154473b2e21140800000915222f3c4855626f7b8895aab4a99d9083766a554b4034281c1004000004101c2834404b546975828f9ca8afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0adb2a9a199928c827a6f6d7a849199a3aba1979083786d605a50463c31281e130a000000000000000000000000000000000000000000000000000000000000061623303c4955616c70797979797872685c5043372a1e07000000000000000000000000000000000000010a0d161e24292c33383b42464b5153585f62686d72787d82878d92979da0a7a49f9c96918c86817c77726d67625f5853514a42392e23180c000000101d2a3643505d697683909ca9b1a5988b7e7265584b3f3225180700000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3a89b8f8275685c4f4235291c0f000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9ada39c999999999999999999999999999999999999999999999999999999999999999994877b6e6154483b2e2115080000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794928679675d5145392c201306000000000000000000000000000000000000000000020a11171b1f202a2d2d2d2d2d2d2d2726231f19120b0200000000000000000000000000000000020a12191f2326272d2d2d2d2d2d2d2a201f1c17110a020000000000000000000000061018232e39424d57606b727f8c939ea7a59f92877c6f685e544a3f342821180d04000000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f221509010c161f2a36414c56606c77839099a3aba0958c7f726d7a879aa4af9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d2727272727272727272727272727272727272727272727272727272727272722211f1b150e06000000000000020e1a25303d4a5763707d8a98a3aa998c807366564c4135291d1104000000000000000000000000000916222f3c4955626f7c8895a2afb6ac9a8d8074665b5042382e231d1a1b1b212b3844505b6674818e9ba7b1a7978a7e7164574b3e3124180700000a1623303d495663707c8996a3afa89c8f8275695c4f422e23180c000000000c18232e414e5a6774818d9aa7afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0adbbb2aba39f948f847c78828f96a1aba49992857b6e665c51483e342a1f160c0100000000000000000000000000000000000000000000000000000002080e111724313d4a5764707d8686868684786b5e5245382b18120e09030000000000000000000000000000000a131c1f282f35393d44484d52545c60646a6f747a7f848a8f939a9fa2a9a19e9a938f8a847f7a756f6b65605d55534e4644403930271c12070000000f1c2835424f5b6875818e9ba8b3a6998c807366594d402f23180c00000000000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4a79a8e8174675b4e4134281b0e000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9b5ada8a6a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a194877b6e6154483b2e2115080000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000000000000000000000403020101000915222f3c4855626f7b889598877a6d6054473a2d2114070001020303040000000000000000000000000000000000060b0f12131d202020202020201a1917130e080100000000000000000000000000000000000000080e1317191a202020202020201d1312100b06000000000000000000000000000007121c27303b454f59626d75818e95a0aaa39991847a6d665c50443e332a1f160c010000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f22150907121d28313946525e68727e8b949faba3999083786d6e7a8794a1b69f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d201a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1515120f0a0400000000000000000914202d3a4753606d7a86929fa99d908376685d5245392c201307000000000000000000000000000916222f3c4955626f7c8895a2afafa49a897d7063544a3f30261c120e0a0f1c28333f4a5465717e8b98abb5a69a8d8073675a4d402e23180c00000a1724313d4a5764707d8a97a3b0a89b8e8175685b4e4235281b0700000000071a2633404d596673808c99a6afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0adb8b0aaa9a69e969186828f949fa8a69f93877d70695e544b40362c22180d04000000000000000000000000000000000000000000000000000001070c14191b2227313d4a5764707d8a93939185786b5e52453828231c1a140d070100000000000000000000000007121c252e313a4145474f54575e61666d71767c81868c91969c9fa4a79f9d97928d87827d78726d6863605953514b47433c38342e271e150b000000000d1a2734404d5a6773808d9aa6b3a89b8e817568554b4034291c100400000000000000000000000000000000000000000005121e2a36424d576976838f9ca9b2a5988c7f7265594c3f3226190c000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9afa7a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f94877b6e6154483b2e2115080000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000000000000000206080811100f0e0d0c0b1623303d495663707c899694887b6e6155483b2e22150b0c0d0e0f10110707050100000000000000000000000000000003050610131313131313130d0d0b07030000000000000000000000000000000000000000000002070a0c0d131313131313131107060300000000000000000000000000000000000b151e29333d47515b606d79839098a2aba1968f82786d605a50453c31281d13070000000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070303030303030303030303030713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f2215090b18242f39434f59616e7a85929fa6a89f92877c6f666e7b8894a1ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d20140d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d090806030000000000000000000006131f2c3945515d6776838f9ca99f92867a6d6054473a2d211409000000000000000000000000000916222f3c4955626f7c8895a2afac9f93867a6d6054473a2d21150a01000b17222d3c4855626f7b8899a4afa99c8f837669554b4034281c1004000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e010000000c1926323f4c5965727f8c98a5afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0adb0a69e9c9fa2a199928f949ea6a89e948c7f736b60574d42392e241b10060000000000000000000000000000000000000000000000000000030b12181e252a2d33373d4a5764707d8a979e9185786b5e524538342e2a251f18120c0400000000000000000000020d19232e3740434c5154596063696e73797e83888e92989ea0a8a29f9a95908b85807b76706c66615e56544f4745403a37312c28231c150c03000000000c1925323f4c5865727f8b98abb5aa9d908477675c5145382c1f13060000000000000000000000000000000000000000000714212d3a46535f697885929fabb4aa968a7d7063574a3d3024170a000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9a79d95939393939393939393939393939393939393939393939393939393939393939393877b6e6154483b2e2115080000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c1003000000000000000000000000000000000000000000030a0f1214151e1d1c1b1a19181824313e4b5764717e8a9795897c6f6256493c2f231718191a1b1c1d1e1413110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17202b353f45515d676e7b86929aa4a89f948d80736c61574e433a2f2418110700000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114101010101010101010101010101013202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f22150a141d2935404b55616b75818e97a2aca1968d80746a626f7b8895a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d20140701010101010101010101010101010101010101010101010101010101000000000000000000000000000004101d2935404b5566727f8c99a9a3998a7d7164574a3e31261a0e020000000000000000000000000916222f3c4955626f7c8895a2afaa9e918477675d5145392c20130300000613202d3a4653606d7986939facab9e918478675c5145382c1f1306000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e010000000c1825323f4b5865727e8b98a5afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0adaa9e948f9298a2a39f9c9ea6aaa1968f82776c60594f453b30271d12090000000000000000000000000000000000000000000000000000060d151d23293036383f44464a5764707d8a979e9185786b5e5246444039363029241d160d0600000000000000000006121e2a35404951555d60656b70757b80858a90959a9fa2a8a09d98928e88837e79736e6963605b54524c48433d39352f2b261f1c18120b030000000000091623303c4956636f7c8999a4afac9f9286796d6053473a2d22170b0000000000000000000000000000000000000000000815222e3b4855616e7b8897a2adaea298887b6e6155483b2e221508000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9a2958b868686868686868686868686868686868686868686868686868686868686868686867b6e6154483b2e2115080000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000000060e151a1f21222b2a29282726252425323f4c5865727f8b98968a7d7063574a3d30242425262728292a2b21201d19130c0500000000000000000000000305060e101010101010090806030000000000000000010304060606060504030100000000000000000000000000000000000000000000000000000000000000000000000000000000050e19232935404b555f69707e88939fa6a69d928a7e716a5f554b40352923190e05000000000000000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d211c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f2215111c262f3845515d67707d8a939ea9a59e9184796d60626f7c8895a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3c4955626f7c8897a1ab9a8d817467574d42372b1e12050000000000000000000000000916222f3c4955626f7c8895a2afa89c8f827569554b4135291d1104000006131f2c3845515c677884919eabac9f9386796d6053463a2d201307000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e010000000b1825323e4b5865717e8b98a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada99c8f82869298a3aba9aaaea39891847a6d655b50473d33291e150b0000000000000000000000000000000000000000000000000000070f181f272f343b4146495053565964707d8a979e9185786b5e5753514a46423b352f281f180f0700000000000000000a16232f3b46515b63676d72777d82878d92979d9fa7a39f9b96918b86817c76716d67615f5753504a46413a38322c29241d1a15100c07000000000000000714202d3a4753606d7a86939facaea399897d706353493f33271b0f030000000000000000000000000000000000000004111d2935414c5565717e8b98a9b3ac9f9285786d6053463a2d201307000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867979797979797979797979797979797979797979797979797979797979797979797976695e52463a2d2014070000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000000060f1820262b2e2f37363534343332313033404d596673808c99978b7e7164584b3e313031323334353636372e2d2a251e170e050000000000000000060b0f12131b1d1d1d1d1d1d1615130f0a0400020507080b0e1011121313131211100e0b08070502000000000000000000000000000000000000000000000000000000000000000000000000071118242f39434d57616c73808d949fa8a49f92867c6e675d51453f352b20170c030000000000000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2929292929292929292929292929292929292d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f221517222d38424e58606d7984919ea5a99e938a7d70675d626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d20140c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c070604010000000000000000000000000000000713202d394653606c7885919eaa9e918477695f53463a2d2114060000000000000000000000000916222f3c4955626f7c8895a2afa79a8d8174675a4e412f24180d01000004101c2834404b556a7683909da9afa49a887b6e6155483b2e221508000b1824313e4b5764717e8a97a4b1a79a8d8074675a4d4134271a0e010000000b1825323e4b5865717e8b98a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807d869299a3abb5ac9f92867c6f685d53493f352b21170c0300000000000000000000000000000000000000000000000000071019212a313940454c52535b60636669707d8a979e9185786b6763605c54524d454039312921191007000000000000000c1925323e4b57636d737a7f84898f92999ea1a9a19e99928f89847f7a746f6a64605c55534d46443f3836302c27201d18130f0a040000000000000000000613202c3945515d677784909daab4ab9a8d8073655b5044372b1f140a000000000000000000000000000000000000010c13202c3945515d6775828e9ba8b5a89c8f8275665c5044382b1f1206000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5e574d42362a1e12050000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c1003000000000000000000000000000000000000030e18222a31373a3b44434241403f3e3d3c3b414e5a6774818d9a998c7f7266594c3f3c3d3d3e3f40414243443a3936302920170c020000000000020a11171b1f202729292929292922221f1b150e090e111414181a1c1e1f20201f1f1e1c1a181514120e0904010000000000000000000000000000000000000000000000000000000000000000000007121d28313c45505a606c78828f96a1aaa2989183796d605b51473d33291e150b0000000000000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a6d6054473a36363636363636363636363636363636363636363a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f22151c28333f4a545f6a73808d96a1aca2978e81756b6155626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d2019191919191919191919191919191919191919191919191919191413110d07010000000000000000000000000005121f2b3744505b6575818e9baca096887b6e6155483b2e23170c0000000000000000000000000916222f3c4955626f7c8895a2afa6998c807366594d4033261a07000000000c18232e424f5c6975828f9ca8b6ac95897c6f6256493c2f231609000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e010000000c1825323f4b5865727e8b98a5afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c80737d879299a4aca6998c80736a60584e453c332a21170f05000000000000000000000000000000000000000000000000060f19222b333c434b51565e61656c6f7375777e8a979e9184787674706d66615e57514b433b332b22190f060000000000000d192633404c5966737f868b91959b9fa3a69f9c97918c86827d78726d68625f5853514b46423b38332d2a251e1b16110d0701000000000000000000000004101d2935404b556773808d9aa9b3ab9e9184786c6053463c2f261b1106000000000000000000000000000000000007131d28333f4a54606d7a86929facb1a7988b7f7265544a3f34281c1003000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d60606060606060606060606060606060606060606060606060606060606060605f524d453b30251a0e020000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000000a15202a343c43474851504f4e4d4c4b4a4948474f5b6875828e9b9a8d8073675a4d4748494a4b4c4d4e4f50514746413a32291e130800000000020b141b22272b2d343636363636362f2e2b262019141a1e20212527292b2c2c2d2c2c2b29272421211e1a14110d08020000000000000000000000000000000000000000000000000000000000000000010c161f2a333e44505b666d7a849198a3aaa0958e81756d62594f453b30271c120700000000000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a6d605447434343434343434343434343434343434343434343434653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f221a242b3844505b666f7c87929fa8a69f92857a6e615956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d26262626262626262626262626262626262626262626262626262621201d18130c04000000000000000000000000030f1b27333f495364717e8b9aa4a8988b7e7265544a3f34281c100300000000000000000000000916222f3c4955626f7c8895a2afa5988b7f7265584c3f3225190c00000000071b2835424e5b6875818e9ba8b0a396897d7063564a3d3023170a000a1724303d4a5763707d8a96a3b0a89b8e8175685b4e4235281b07000000000c1926323f4c5965727f8c98a5afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c8073717e87939aa4ab9e92857c6f6a5f574d453b332921170e0500000000000000000000000000000000000000000000040d18212b343c454d555c60686e73787c7f828486929fa196898482807d79746e69605d554d453d342b21180d030000000000101d2a3743505d6a768390989da0a8a29f9a948f8a84807b75706c65605d56544e4745403936312b28221c19130f0a040100000000000000000000000000010d18242f3d495663707c8997a1adaca196897d7063584e41382d22170f06000000000000000000000000000000071118242f3844505b66717e8b98a2aeaca095887b6e6155483b2e23170b00000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d60535353535353535353535353535353535353535353535353535353535353534846423b33291f1409000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c10030000000000000000000000000000000000020f1a26313c464e53555e5d5c5b5a595857565554535d697683909c9b8e8174685b535455565758595a5b5c5d5e54524c443a3025190d010000000a141d262d333739414343434343433c3b37322a2220252a2d2e313436373939393938373634312e2d2a25201d19130d070100000000000000000000000000000000000000000000000000000000000000040d182128333f4a545e686f7c86929fa5a79e938c7f726b60574d42392e23181006000000000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a6d60544f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f53606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f221f2a36424d57606c78839099a3ab9f948b7e71685e5256626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a333333333333333333333333333333333333333333333333333333332d2c29241d160d040000000000000000000000000b17222d3b4754616e7a87939fa89b8f8275665c5044382c1f120600000000000000000000000916222f3c4955626f7c8895a2afa5988b7e7265584b3f3225180c000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a000916232f3c4956626f7c8995acb6a89b8f8275685c4f422e23180c000000000d1a2633404d596673808c99a6afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c80736c717e88939fa3a19792857c6e695f574d453b332920170e050000000000000000000000000000000000000000010c161f2a333c464e575f676d737a8084898c8f919298a3a8a197918f8d8a85817b736d675f574e463d332a1f150b0100000000101d2a3743505d6a7683909da7a09d98928d88837d79736e6963605b53524c47433c38342f2a261f1c17110d080200000000000000000000000000000000000713202d3a4653606d7985929eacb2a89c8f82756a5f53493f332721180f0802000000000000000000000003091119232935404b55606c7884919daab3a99d908477695f53463a2d1c110600000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d60534746464646464646464646464646464646464646464646464646464646463b3a36302921170d02000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c1003000000000000000000000000000000000006121f2b37434e585f626a69686767666564636261605c6a7784919d9c8f8275695c60616263646566676869696a615e564c41362a1d1105000006111b262f383f44464e5050505050504947433c34292c30363a3b3e41434445464646454443413e3b3a36312c29241e18130c0400000000000000000000000000000000000000000000000000000000000000060f17222d38424c56606a717e8b939da7a59f92877d70695e544a40342822180d040000000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a6d605c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f2228313a46525e69727f8b959faba3999082776c60564c56626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3a39352f281f160c0100000000000000000000000614202d3946525e687783909daa9f9285796d6053463a2d20130800000000000000000000000916222f3c4955626f7c8895a2afa4988b7e7165584b3e3225180b000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3124180b000815222e3b4855616e7b889aa4afa99d9083766a544b4034281c10040000010e1b2734414e5a6774818d9aa7afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c8073666c727f8b919ca4a19791857b6e695f574d453b322920170e050000000000000000000000000000000000000008131e28313c464e5860696e7980868d9196999c9d9fa3aaaba9a19e9c9a97928d8680796e6960584e453b31271d120700000000101d2a3743505d6a7683909d9b95908b85807b76716d66615e5753504945413a37322c29231d1a140f0b06000000000000000000000000000000000000000006121f2c3844505c6673808d9aa4afaa9e94887c6f655b50443d332a2219140e09060400000100000406090e141a232b353d45515d67717e8a95a0acada2978b7e7265574d42362a1e0a0000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a393939393939393939393939393939393939393939393939393939392e2d2a251f170f0500000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000814212e3a47535f6a6e77767574737271706f6e6d6d66667885929e9d9083766b666d6e6f7070717273747576776d685e5246392d20130700000b17222d38414950535a5c5c5c5c5c5c55544e463c35393b4246474b4d4f515253535252514f4d4b4846423b39353029241d160d070000000000000000000000000000000000000000000000000000000000000006111c262f3a444e58626c74818e959fa9a39991857b6e665c51443e342a20160b0200000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a6d696969696969696969696969696969696969696969696969696969696d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f242f3a43505a616e7b86929fa7a89f92867c6e655b504956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d60534c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4745413a31281d1307000000000000000000000005111e2a36414c566773808d9aaaa298897c6f6356493c2f24190d01000000000000000000000916222f3c4955626f7c8895a2afa4988b7e7165584b3e3225180b000000010e1a2734414d5a6774808d9aa7b1a4978b7e7164584b3e3125180b000714202d3a4753606d7a86939facab9e918478665c5145382c1f1306000004111d2935404b556976828f9ca9afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366626d727f8c929ca4a19791847b6e695e574d443b322920160e040000000000000000000000000000000000010d19242f3a434e58606a6f7b838c92989ea1a9a8aaa39f9e9e9fa3aaa8a9a29f98928d837b6f6a60574d43392f24180c03000000101d2a3743505d6a768390928e89837e79746e6a64605c54524d46443f38352f2b261f1c18120e09030000000000000000000000000000000000000000000003101c28343f4a54616e7b87939fabb0a69c9083776c60584e453c342a251e1a1312100c070e070c1013131a1f262a353d47505a606d7984919ea7b1a99f9285796d6053473b31261a0e0000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d21201e1a140d050000000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000815222f3b4855626e7c83838281807f7e7d7c7b7a7978777887939f9e9184787778797a7b7c7d7e7f80818283847a6d6154473a2e21140700030f1b27333f49535b6067696969696969625f584e454045474d5254585a5c5e5f5f605f5f5e5c5a5754534d4745413a352f281f191109010000000000000000000000000000000000000000000000000000000000000a141d28323c46505a606d79839097a1aba1979083786d605a50463c32281d140a00000000000000000000000000000000000000131f2c3946525f6c7985929facada093877a767676767676767676767676767676767676767676767676767676767676788693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f2935414c55616c75828f98a2aca0968c80736a5f53494956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d605959595959595959595959595959595959595959595959595959595959595954514b433a2f24180d0100000000000000000000010d1925303d495663707d8998a2aa998c807366564c4135291d1104000000000000000000000916222f3c4955626f7c8895a2afa4988b7e7165584b3e3225180b000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3124180b0006131f2c3845515c677885919eabac9f9286796d6053463a2d20130600000613202c3945515d677784919eaaafa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c8073665b636d73808d929da5a19691847b6e695e564d443a322820160d040000000000000000000000000000000004111d2935414c555f6a6f7c8590959fa2aaa69f9c98989291919298979c9fa4aaa39f9590857c6f695f554b4035291f1509000000101d2a3743505d6a76838c86817c77716d67625f5853504a46423b37332d29241e1b15100c0701000000000000000000000000000000000000000000000000000c17232e3846535f6975828e99a3afab9f948b7f726a60574e463e36302a25201f1c181b1a1b181c1f20262b31363f474f59616c74808d96a1adada2978d8073675d5145392a1f14090000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a2d2020202020202020202020202020202020202020202020202020201514120e0902000000000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100300000000000000000000000000000000000916222f3c4955626f7c88908f8e8d8c8b8a898887868584839099a49f9287838485868788898a8b8c8d8e8f90877a6e6154473b2e2114080005121f2b3744505b656c747676767676766f6a5f574d4b5153575e616467696a6c6c6c6c6b6a696764615e5754524c45403a312b231b130a010000000000000000000000000000000000000000000000000000000000020b16202b343f45515c676e7b859299a3a99f958d80746c61584e443a2f261b1106000000000000000000000000000000000000131f2c3946525f6c7985929facb6a99c8f82828282828282828282828282828282828282828282828282828282828282828f9ca9b5ac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2f303845515d67707d8a939eaaa49a9184796d60584e414956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6666666666666666666666666666666666666666666666666666666666666666605d554b4135291d110400000000000000000000000813202d3a4653606d7985929fa99d908376685d5245392c201307000000000000000000000916222f3c4955626f7c8895a2afa5988b7f7265584c3f3225190c000000010e1b2834414e5b6774818e9aa7b0a4978a7d7164574a3e3124170b0004101c2934404b55697683909ca9afa399887b6f6255483c2d22170b00010714202d3a4753606d7a86939facafa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366595b636e74808d939da5a19691847b6e685e564c443a32281f160d040000000000000000000000000000030e18222c3945515d676e7c859297a0a7a8a09e94908b8886858586878a8f93999fa7a7a09792857b6e675d51453c31261a0e0000000f1b2835424e5b6875817f7a756f6b65605d55534e46443f3836302b27221b19130f0a040000000000000000000000000000000000000000000000000000000006111c2a36424d57626e7b87929fa8b0a69f92877c6f695f585046413b36312d2c282327272723282c2d31373b42465159606b717e8a929da8b1a79f92857a6d61554b4035291d10040000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a2d201413131313131313131313131313131313131313131313131313080705020000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c100704000000000000000000000000000000000916222f3c4955626f7c88959b9a9a99989796959a93929190959faba39992909192989495969798999a9b9c94877a6e6154473b2e211408000613202d394653606c79808283838383837c6f695e56555d6065696e717476777879797978777674716e6966605d56514b433d352d251c130a000000000000000000000000000000000000000000000000000000000000040e19222834404b555e69707d87929fa5a79d928a7e716a5f564c41382d22170f050000000000000000000000000000000000131f2c3946525f6c7985929facb8ab9f948f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f949fabb7ac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c2e38424e58606d7a84919ea6a99f93887d70675c51463c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada09386797272727272727272727272727272727272727272727272727272727272727272726d675d5145392c201306000000000000000000000006131f2c3845515c6775828f9ca89f92867a6d6054473a2d211409000000000000000000000916222f3c4955626f7c8895a2afa6998c7f7366594c4033261906000000020f1b2835424e5b6875818e9ba8b0a3968a7d7063574a3d3024170a00000c18232f414d5a6774808d9aa7b5ab978b7e716453493f33271b0f0b0e121c28333f4a5463707d899aa4afafa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c80736659525c606c77818e939ea6a09691847a6e685e564c443a31281f160d04000000000000000000000000000a15202b37434e58606d7a849197a2a9a79f969189837e7b797878797b7e828790959ea5a9a1979184796d60574d42372b1d120700000e1b2734404d59656f75726d6863605953514b47433c38342e2a251f1b17110d0801000000000000000000000000000000000000000000000000000000000000000e1a26313b47535f6974808d96a0abaea39991857b6e6a615a524c46423c3a38342e3434342e34383a3c42474d535b626b707d86929fa4aeaaa0958b7f72685e5243392f24180d010000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a2d20140d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0b0a0805000000000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336291c1614100b0500000000000000000000000000000916222f3c4955626f7c8895a2a7a6a5a4a3a2aca49f9f9e9d9fa7b1aba39f9d9e9fa2aaa2a3a3a4a5a6a7a194877a6e6154473b2e2114080005121f2b3744505b656e7b858f8f8f8f8f857b6e685d60676d72777b7e80828485868685858482807e7b77726d68605d554f473f372e251c1209000000000000000000000000000000000000000000000000000000000000071018232e39434d57606b727f8c939ea8a49f92867c6f685d53493f332721170c0300000000000000000000000000000000131f2c3946525f6c7985929facb8b0a69f9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9fa6b0bbac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c343f4a54606a74808d96a1ada1978e81746b60554b403c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facb2a6998c7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f796d6054473a2d211407000000000000000000000004101c2834404b5565727f8b98a8a3998a7d7064574a3d31261a0e020000000000000000000916222f3c4955626f7c8895a2afa79a8d8074675a4d412e23170c000000030f1c2936424f5c6975828f9ca8afa296897c6f6356493c302316090000071824313e4b5764717e8a97a7b1a79a8e8174655b5044372b211b171a1d242b3844505b6673808d9aacb6afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d505b656c78818e949ea6a09691837a6d685e564c433a31281f160d030000000000000000000000020f1a26313b4754606a74818e96a0a9a89f9590847d76716e6c656b696e71757c838e939ea6a9a0968d8073695f5347392e23180c00000c1825313d48535d656866615e56544f4745403937312c28231c1a140f0b060000000000000000000000000000000000000000000000000000000000000000000009141f2b37424d57606d79849199a4afaba19791847c706c615e56534d494644404141414141404546494d53575f616d727d869298a2aeaca2989083786c60564c4131281d1207000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a2d201a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a171714110c0500000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f4336292423201c171008000000000000000000000000000916222f3c4955626f7c88959d9c9b9a98979695949992919095a0aca399929091929994969798999a9b9c9d94877a6e6154473b2e21140800030f1b27333f49535e696f7c8692999c9790837a6d666d72797f83878b8d8f919292939292918f8d8a87837f7a736d676059514940372e241b0f0600000000000000000000000000000000000000000000000000000000000007121d27303b454f59636d75818f95a0aaa29891847a6d655b50443d33291e150b00000000000000000000000000000000131f2c3946525f6c7985929facb8b8b0aba9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9abb0b8b9ac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c3844505c666f7c87939fa9a69e92857a6d60594f43393c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facb9a89c918c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c877b6e6154483b2e2115080000000000000000000000000c18232e3b4855626e7b8896a1ab9a8d817467574d42372b1e12050000000000000000000916222f3c4955626f7c8895a2afa89b8f827568544a3f34281c1003000004101d2935404b556a7683909da9b4aa95887b6e6255483b2f22150800000814212e3b4754616e7b8795a0acab9e9184786c6053463e332b2722252a2f35404a54606c7884919eabb8afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d49535b666d78828f949fa6a09590837a6d685d564c433a31281f150c030000000000000000000006121f2b37434e58626f7c89939da8aca09690837a706b6561605b575e61646a6f78818e949faaa89f92867b6e62554b4034281c1004000814202c37414b53595b5954524c48433d39352f2b261f1c17110e0903000000000000000000000000000000000000000000000000000000000000000000000000030e1a26313c45515d676f7d87939fa4aea9a19691867e756e68615e575653514a4e4e4d4e4e4b515356575f62696e767f879298a2aaafa49a92867c6f665b50443a301f160c01000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a2d27272727272727272727272727272727272727272727272727272727272423211c171008000000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f433633302f2c28211a11080000000000000000000000000916222f3c4955626f7c8891908f8e8d8c8b8a898887868583909daa9f92878385868788898a8b8c8d8e8f9091877a6e6154473b2e21140800000b17222d38414d57606a707e87939fa0958f82786e787f858b9095979a9c9d9f9f9f9f9e9d9c9a9795908c868079706b625b514940362c21180e030000000000000000000000000000000000000000000000000000000000000b151e29333d47515b606d79839198a2aaa0968f82776c60594f453b30271d1207000000000000000000000000000000131f2c3946525f6c7985929facb8b0a8a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa0a1a6aeb8ac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c424d57606d78839099a4aa9e948a7e71685d52473d303c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facb9ada39c999999999999999999999999999999999999999999999999999999999999999994877b6e6154483b2e2115080000000000000000000000000714212e3a47535f6a7884919eaa9e918477695f53463a2d2114060000000000000000000916222f3c4955626f7c8895a2afaa9d908377665c5044382c1f1206000006131f2c3845515d677885919eabaea298877a6d6154473a2e21140700000714202d3a46525e697784909dabada197897d70635a50453d37332d3136394045515c66717d8a96a1adb9afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d414a545c666d79828f949fa7a09590837a6d685d554b433931271e150c030000000000000000000814212e3a47535f6a76828f9ca5afa49a91847a6d6860595553504d5254585f666d78828f98a3aea3998d8074675c5145382c1f130600040f1a252f3941484d4e4c4746413a38322c29241d1a15100c060000000000000000000000000000000000000000000000000000000000000000000000000000000009151f2935404b55606b727f8b929da4ada9a198928a817a746e696562605c545b5a5a5a5b545c606266696e747b828b9299a2aaaea39f93887e706a5f544a3f32291e0d0400000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a34343434343434343434343434343434343434343434343434343434343431302d28221a12080000000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f433e3f3d3c38332c231a110800000000000000000000000915222f3c4855626f7c8584838281807f7e7d7c7b7a79787a8794a19f92867978797a7b7c7d7e7f8081828384867a6e6154473b2e211408000006111b262f3b454e58616c727f8b929d9f948e817b838c92979d9fa7a8a09e9c9b9a9b9c9d9fa4a7a09d98928d847d726d635b51483e332a201509000000000000000000000000000000000000000000000000000000000000030c17212b353f45515d676e7c86929fa4a89e948c7f736b60574d43392e231810070000000000000000000000000000131f2c3946525f6c7985929facb8a89e969393939393939393939393939393939393939393939393939393939393939393959ca6b1ac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255483c46535f69727f8c95a0aba2988f82766c61564c41352f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facb9b5ada8a6a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a194877b6e6154483b2e21150800000000000000000000000006121f2b37434e586774818e9aaba096887b6e6155483b2e23170c0000000000000000000916222f3c4955626f7c8895a2afac9f9286796d6053463a2d20130900000714202d3a4753606d7a86939facab9f928578685e5246392d201307000005111e2a36424d5666737f8c99a3afa99c8f82766c61574f46443f414142464b515a606d7883919da8b0b8afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d40424a545c676d79829095a0a7a09590837a6d675d554b433930271e150c0300000000000000000815222f3b4855626e7b88949fabac9f93877d6f685d564f4846444246484e545c666e7b86929facab9f9285796d6053463a2d201307000009131d272f373d40423f3a3936302c27201d18120f0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d18242f3a434f59626d74808d929ca3adaaa29f938e86807b76726f6d6669686767676869666d6f72777b81868f949fa3ababa39f918c7f726c61584e42382d20170d0000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d605347404040404040404040404040404040404040404040404040404040404040403e3c39332c241a100500000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f464a4c4a48443e352c231a1108000000000000000000000815212e3b47535f6a6f7877767574737271706f6e6d676e7b8894a1a39886796c6c6d6e6f7071727374757677796e685e5246392d2014070000000a141d29333c464f59626d74808d939e9d938e8690959ea2a8a19e9896918f8e8d8e8f91939a9d9fa7a29f9691877f736d635a50453c31261a0e05000000000000000000000000000000000000000000000000000000000000050f19232935414b555f6a717e8a929da6a69f93877d70695e554b40342822190e0400000000000000000000000000131f2c3946525f6c7985929facb8a2968c87868686868686868686868686868686868686868686868686868686868686868a95a1adac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f62554844505a616e7b86929fa7a79f92867b6e615a50443a302f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facb9afa7a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f94877b6e6154483b2e211508000000000000000000000000020f1a26313e4a5764717d8a99a4a8988b7e7265544a3f34281c100300000000000000000916222f3c4955626f7c8895a2afaea398887c6f6255493c31251a0d06030615222f3c4855626f7c889aa4afaa9d9083776a564c4135291d11050000020e1925303b4854616e7b87929fabab9f948a7d706a60595350494e4e4d53555d606c73808c959c9ea6b0afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4038424b555d676d7a839095a0a79f959082796d675d554b433930271e150c0200000000000006121f2b37434e586774808d9aa6b0a89b8e82756b60564c443d3937363a3c424a545f6975818e9baba7a2978a7d7064574a3d3124170a0000020b151d252c313435332e2d2a251e1b16100d070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313d47515b606c77808c919ea1a9aea59e98928d87837f7c79777674747474747677797c7f83888e92999fa6aea8a199928b7f736d635a50463c2f261c0e050000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4a49453e362c22170c00000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c4f51575957554f473e352c231a110800000000000000000006121f2b37434e585f626c6b6a696867656463626160626f7b8895a2aa93867a6d606061636465666768696a6b6c615e564c41362a1e1105000000020b17212b343e47515b606c78818f959f9d999299a0a7a49f96918b8884828181818284878b90959ea2a8a199928c7f736c61574e42372b22170b00000000000000000000000000000000000000000000000000000000000000071118242f3a434e58616c73808d949fa8a49992857b6e675c51453f342b20160b02000000000000000000000000131f2c3946525f6c7985929facada093877a797979797979797979797979797979797979797979797979797979797979788693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6255484c56616c76828f98a2aba0958c7f72695e53483e32282f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facb9a79d95939393939393939393939393939393939393939393939393939393939393939393877b6e6154483b2e211508000000000000000000000000000a14212e3a4754616d7a86939fa89b8f8275665c5044382c1f120600000000000000000916222f3c4955626f7c8895a2afb4aa988b7f7265574d42362a1f161210121c2834404a5465717e8b98acb6a79b8e8174685b4e413025190d010000000914202d3a46525e6975818e99a3afa69e92857c6f6b62605b535a5b575e61676d737e8893948f949eaaafa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d403039434b555d686d7a839096a0a79f959082796d675d554b423930261e140b0200000000000815212e3b47535f6a7884919eabaca096897c6f62594f443a322d2b2a2d3038424d5763707d89999b9a99988d8073665a4d4033271a0d000000030b131a202527282621201d19130f0a04010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2b353f44505b656c747f8a92979ea6acaaa29f9a93908c898684828181808181828486898c90959a9fa3ababa49f9691877e736d635b51473e342a1d140a000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a575550483e33281c1105000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c515b63666361594f473e352c231a11080000000000000000030f1b26323c464e53555f5e5d5c5b5a595857565556626f7c8995a2a194877a6e615455565758595a5b5c5d5e5f54524c443b3025190d0100000000050f19222c353f44505b666d79839096a1a39fa3aba49a938c847f7b777675747475777a7e838a9297a1a8a39f918a7e716a5f53473e33281c10040000000000000000000000000000000000000000000000000000000000000007131d28313c46505a606d78828f96a1aba1979083796d605a50463c32281d140a000000000000000000000000131f2c3946525f6c7985929facada093877a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f625548525d68717e8a949faaa4999083786d60574d42362c232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facb9a2958b868686868686868686868686868686868686868686868686868686868686868686867b6e6154483b2e211508000000000000000000000000000713202d3946525d687683909da99f9285796d6053463a2d20130800000000000000000916222f3c4955626f7c8895a2afb6a99c8f8376695e53463c3128201f1c1f232c3844515c6675818e9ba8b3a9988b7f7265584c3f322519080000000005121e2a36424d57626e7c87929fa7ada19791857d746f6c6568676869696e7279808893958f828f9ca8afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d40333039434c565e686e7a849196a1a79f948f82796d675c544b423830261d140a00000000000915222f3c4855626f7c8896a1adaa9e9184776a6054473d3228201f1e2026303c4753606d79868f8e8d8c8b8b8276695c504336291d100000000002090f14181b1b191413110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d192327333f49535b606d737d858f949da0a7acaca49f9c989892918f8e8d8d8d8e8f919298999d9fa7acaca69f99938d847d716c635b51493f352c22180b02000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6767676767676767676767676767676767676767676767676767676767676767676764615a5045392d211408000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695c5b636d72706b61594f473e352c231a110800000000000000000a15202a343c4347485251504f4e4d4c4b4a49495663707c8996a3a194887b6e615548494a4b4c4d4e4f5051524746413b32291e140800000000000007101a2328333f4a545d676e7a84919eabacafa49a93888079726e696968676869686d71767e859196a1aaa39f92867c6e625a5044392d20150a00000000000000000000000000000000000000000000000000000000000000010c161f2a333e44505c666d7a849199a3a99f958e81746c62584e443a2f261c11060000000000000000000000131f2c3946525f6c7985929facada093877a6d606060606060606060606060606060606060606060606060606060606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f62554f59606d7a85929ea6a89f93877c6f665c50453b3124232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867979797979797979797979797979797979797979797979797979797979797979797976695e52463a2d2014070000000000000000000000000005111d2935414c566673808c99aaa298897c6f6356493c2f24190d01000000000000000916222f3c4955626f7c8895a2afb9ac9f93877b6e61584e433a312d2c282b2e343f4953606d7985929eabada197887c6f6255493c2f22160900000000020e1a25303b47535f6a73808d95a0a8a9a1979188817c797674747476787b7f848d939890837e8a97a3afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d403328313a434c565e686e7b849197a1a69f948f82796d665c544a42382f261c1106000000000c1925323f4c5865727f8b98a8b2a79a8d807467584e43352b20161212151f2c3845515c677481828180807f7e7d7063564a3d3023170a00000000000004080c0e0f0c07070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000071017222d384149505b636b707b828990959c9fa4acaca9aaa39f9d9c9b9a9a9a9b9c9d9fa3aaaaababa39f9b948f878079706b625a514940372e231a100600000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada09386797373737373737373737373737373737373737373737373737373737373737373737373716c6155493c3023170a000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f82766958636d727f7d706b61594f473e352c231a110800000000000000040e18222a32373b3c4544434241403f3e3d3d4a5763707d8a96a3a295887b6f6255483c3d3e3f4041424344463b3936302920170d0200000000000000081117222d38424b555e6873808c99a6b3ac9f93887e736d67615f575b5a5b565e61656c717b849198a2aea2988f82766c6155493c32271b0f0300000000000000000000000000000000000000000000000000000000000000040d182128343f4a545e686f7c87929fa5a79d938b7e716a60564c42382d22170f0600000000000000000000131f2c3946525f6c7985929facada093877a6d605453535353535353535353535353535353535353535353535353606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f625554606b74818e97a1ada1968d80746a60544a3f33291f232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5e574d42362a1e120500000000000000000000000000010d1924303c4956636f7c8998a2aa998c807366564c4135291d1104000000000000000916222f3c4955626f7c8895a2afbbafa4998d80746a5f554c433d3a383438393f44505b65717d8a97a2adab9e9285786c605346392d201306000000000009141f2b37434e58606d79839096a0a8a9a19a938e8985828181818284878c91969992867c7d8a97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d40332628313a444c565e696e7b859197a1a69f948f82786d665c544a42382d22170b000000030f1b27333f49536875818e9ba8b4aa978a7d7064574a3d3224190d0505101c2934404b55646f74757474737271706b6054483c2f221609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f383f44515961696e757d83898f939a9c9fa2aaa7a8aaa9a7a7a7a7a7a9a9a8a6a9a29e9b99928e88827c746d676059504840372e251c11080000000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb3a79a8d8080808080808080808080808080808080808080808080808080808080808080808080807e7164574a3e3124170b000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695f6a727f8c867d706b61594f473e352c231a11080000000000000006101820262b2e2f3938373635343231313e4a5764717d8a97a4a295897c6f6256493c3132333435363738392e2d2a251e170e0500000000000000000006111c28343f4a54606d7a85929eabb7aa9d91847a6d665d55534d4e4e4e4c52545a61696f7c86929fa8aa9f948a7d7064584e43372b1f13060000000000000000000000000000000000000000000000000000000000000000060f17232e38424c56606a727f8b939da7a59f92867c6f685e544a3f332821180d03000000000000000000131f2c3946525f6c7985929facada093877a6d605447464646464646464646464646464646464646464646464653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f62555c666f7d88939fa9a59e9184796d60584e42382e2117232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d60606060606060606060606060606060606060606060606060606060606060605f524d453b30251a0e0200000000000000000000000000000813202d3a4653606d7985929fa99d908376685d5245392c201307000000000000000916222f3c4955626f7c8895a2afb4aba39f92877c6e675d554f4846443f44464a5059606c7883909da9b1a79a8e8174655b5044372b1f12050000000000030f1a26313c45515c676e7b8491969fa4aca49f9b97928f8e8d8e8f9196999e9892877e717e8a97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261f28323b444d575f696f7c859298a2a69e948f81786d665c544a3f33281c0f03000005121f2b3744505b657784909daaaea298877b6e6154483b2e21150800000c18232f3943535d64686968676665646360594f44382c2014070000000000000000000000000000000000000000000406071013131313131310100d0a050000000003060809121313131313130d0c0a0702000000000000000000000000000000000a141d262d3340474f575e616b70777d82878b8f9298989a9b9d9e9e9f9f9f9e9d9d9b999797928e8a86817c766f6a605d554f473e362e251c130a000000000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8174675b4e4134281b0e010000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f827669626e7b869292877d706b61594f473e352c231a110800000000000000060e151b1f21222c2b2a2928272625323e4b5865717e8b98a4a396897c706356493d3025262728292a2b2c21201e19140d050000000000000000000006121f2b3844505c66727f8c97a1adb8aca0968f81786c605b514842414141464750575f6a727f8c96a1ada69d9083766a6054473b2e22150900000000000000000000000000000000000000000101010101010101010101010006111c26303a444e58626d74818e95a0a9a39891847a6d665b50443e332a1f150b010000000000000000131f2c3946525f6c7985929facada093877a6d6054473a39393939393939393939393939393939393939393a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca295887b6f6257606d7984919aa4a99e938a7d70675d51463c30261c16232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d60535353535353535353535353535353535353535353535353535353535353534846423b33291f140900000000000000000000000000000006121f2c3844505c6675828f9ba89f92867a6d6054473a2d211409000000000000000916222f3c4955626f7c8895a2afaea39992999083796d6760595553504a5053545c606b727f8b959fabaca095897c6f6353493f33271b0f030000000000000a15202934404b555e696e7b848e939a9fa3aba9a19e9c9b9a9b9c9e9f9d9590867e70717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d403326162029323b454d575f6a6f7c869298939393938e81786d665b5044382b1f120600000613202d394653606c7985929facab9f928578695e52463a2d201407000007121d2731414b53595b5c5b5a59585856544f473d33271c100400000000000000000000000000000000000001070c1013141d2020202020201d1c1a16110a03040a0f1215151f2020202020201a1916130d07000000000000000000000000000000020b141b2227353e454d525960636b70757b7e8285888b8d8f9091929292929191908e8c8a8885817e7a746f6a626058514b433d352d241c130a01000000000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000060606060e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a8e8174675b4e4134281b0e010000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276695f6a707e869292877d706b61594f473e352c231a0e0400000000000000040a0f1215151f1e1d1c1b1a1925323f4c5865727f8b98a5a3968a7d7063574a3d3024191a1b1c1d1e1f1414110d080200000000000000000000000713202d3a4653606d7985919ea9b3b2aca89e938d80746d625a50463d3336393e454e58606d7984919eabab9f95887c6f6255493c31251a0e02000000000000000000000000000000010507070d0d0d0d0d0d0d0d0d0d0d0d0d0d0a141e29323d46515b606d79839097a1aaa1968f82786c60594f453c31271d12070000000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca195887b6e625f69737f8c95a0aca2978e81756b61554b40342b1e1516232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d60534746464646464646464646464646464646464646464646464646464646463b3a36302921170d0200000000000000000000000000000003101c28343f4a5465727e8b98a8a3998a7d7064574a3d31261a0e020000000000000916222f3c4955626f7c8895a2afac9f928692958f827a706b6562605c545b6062666d727d86929fa7b0a69d9083776b605441382d22170b00000000000000030c18232f39434d575e696e7981878f92999b9d9e9f9f9f9e9d9b9895908a837c706c717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a172029333c454e58606a6f7d868686868686868681796c605346392d20130600000714212e3a4754616d7a8798a2aeaa9d9084776a574d42362a1e12050000010b151f2f3941484c4e4f4e4d4d4c4b4a48443d352b21160b000000000000000000000000000000000000030b12181d1f202a2d2d2d2d2d2d2a2926221c150d0e151b1f21222c2d2d2d2d2d2d2625231e19120a010000000000000000000000000000020a1117232c333b42464f54596063696e7276797c7e808283848585868585848382807d7b7975716d68625f58544e45403a312b231b120a0100000000000000000000000b1825313e4b5864717e8b97a4aca89b8e8175685b4e4235281b0f0200000000000306060c13131313131b2734414e5a6774818d9aa7aca4978b7e7164584b3e3125180b0013202c3946535f6c7986929facacacaea9a7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a69a8e8174675b4e4134281b0e010000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f82766958616c707d869292877d706b61594f473e352c20160c020000000000000000030608091211100f0e0d1926333f4c5966727f8c99a5a4978a7d7164574a3e3124170d0e0f1011130807050100000000000000000000000000091623303c4956636f7c8997a1adb2a8a19ea19d928b7f726c61584e453c322d333c44515c66727f8c99a7b1a79a8d807367574d42362a1e12050000000000000000000000000002080d1113141a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a17202b343f45515c676e7b859299a4a89f948d80736c61574d43392f2418100700000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2120202020202020202020202020202020202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca194887b6e61626e7b86929fa8a69f92857b6e61594f433a2f22190c16232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a393939393939393939393939393939393939393939393939393939392e2d2a251f170f0500000000000000000000000000000000000c17232e3b4855616e7b8896a0ab9a8d817467574d42362a1e12050000000000000916222f3c4955626f7c8895a2afa6998c7f8c94948f847d76726f6d666b666c6e72787f879298a3aea99f948a7e7164594f442f261b1106000000000000000007121d27313b454d575e676d747c82868b8e909192929291908e8b88837e786f6a64717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0e17212a333c464e58606b6f7979797979797979756c665b5044382b1f120600000815222f3b4855626e7b8895aab4a99c8f8276695c4f4330251a0e02000000030d1d262f363c4041424141403f3e3d3c38332b231a0f050000000000000000000000000000000000030d151d24292c2d363939393939393736322d271f161820262b2e2f3939393939393933322f2a241c130a0000000000000000000000000000000006111a202930363d44484f54565e6165666d6f7174757778787979787877767573716f6d6664605d56534e47433d352f281f191109000000000000000000000000000b1825313e4b5864717e8b979f9f9f9b8e8175685b4e4235281b0f02000000060b0f12131920202020201b2734414e5a6774818d9a9f9f9f978b7e7164584b3e3125180b0013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8e8174675b4e4134281b0e010000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276696464646b707d859292867d706b61594f473d32281e130800000000000000000000000006050403020d1a2633404d596673808c99a6a4978b7e7164584b3e3125180b02030405060000000000000000000000000000000005111d2935414c566773808d9aa9b2a8a0969196a19f93877e706a60574d443a312834404a54616e7b8795a0acaa9e918477695e53463a2d211407000000000000000000000000050c13191d2021272727272727272727272727272727272727272934404b555e69707d87939fa6a69f93887d70695f554b40352922190e05000000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114131313131313131313131313131313202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca194877a6e616c76828f98a3ab9f948b7e72685e52473e31281d100916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d21201e1a140d050000000000000000000000000000000000000614212d3a46535f697784919eaa9e918477695f53463a2d2114060000000000000916222f3c4955626f7c8895a2afa396897d828f97969189837f7b79787778797b7f848b9299a3aaaaa2978f82766c6155473d321d140a000000000000000000010b151f29333b454d555d606a6f757a7e8183858586858583817f7b77716d665f64717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d0f18212a343c464f5960636c6c6c6c6c6c6c6c68605b544a3f33281c0f030000091623303c4956636f7c8996a2afa89b8e8275685b4f4235281c0900000000000b141d252b303335363534333231302f2c27211a11080000000000000000000000000000000000020c151f272f35383a4346464646464643423e3831281f222a31373a3c45464646464646403f3b352e251c120700000000000000000000000000000000080e171f252a33383d44484d5254545c60626567686a6b6b6c6c6c6b6a6a68666462605c5454524c47433c383229241d160d0700000000000000000000000000000b1825313e4b5864717e8b93939393938e8175685b4e4235281b0f0200020a11171c1f20262c2d2d2d2c202734414e5a6774818d93939393938b7e7164584b3e3125180b0013202c3946535f6c79869293939393939393939393939393939393939393939393939393939393939393939393939393939393938e8174675b4e4134281b0e010000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f8f8276717171717171717c859292867d706b61594f443a3024190d01000000000000000000000000000000010d1a2734404d5a6773808d9aa6a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000713202d3946525d687784919daaaca09691849197a19992867c6f695f564c43392f2e3946535e697784919daaaca096877b6e6154483b2e2115080000000000000000000000050e171e252a2d2e34343434343434343434343434343434343434342f39434d57606b737f8c939ea8a49a92857b6e675d51453f342b20170c030000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070606060606060606060606060713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca094877a6d68717e8b949faaa3999083776c60564d41352c1f160c0916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d2020202020202020202020202020202020202020202020202020201514120e09020000000000000000000000000000000000000005121e2a36424d576774818d9aaba096887b6e6155483b2e23170b0000000000000916222f3c4955626f7c8895a2afa3968a7d7b8592999e95908b888685848486888c91959fa3abaaa29892857b6e615a5045352b210b0200000000000000000000030d172129333b434b51586062686e71747678797978787674726e6964605c5464717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d060f18222b343d474f54565f606060606060605b53504a42382d22170b0000000a1723303d4a5663707d8996a3b0a79a8e8174675b4e4134281b0e0100000000020b131a202427282928272625252322201c160f080000000000000000000000000000000000000a141e27313940454750535353535353504e4a433a31212a343c434748525353535353534d4b4740372e24190d0200000000000000000000000000000000050d141a21272c33383b4246474a505355585a5c5d5e5f5f5b60666c6c6c6c6c6a5c544a4745413a37312b272018130c040000000000000000000000000000000b1825313e4b5864717e868686868686868175685b4e4235281b0f00060b141c22282b2d333939393939382b34414e5a677480868686868686867e7164584b3e3125180b0013202c3946535f6c7987868686868686868686868686868686868686868686868686868686868686868686868686868686868686868174675b4e4134281b0e010000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f90837e7d7d7d7d7d7d7d7e7f869392867d706b61564c4135291d1105000000000000000000000000000000010e1b2734414e5a6774818d9aa7a5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000714212e3a4754616d7a8796a0acaa9e91847b859298a29892857b6e685e554b42382d36424d576774818d9aa7b2a8978a7e7164574b3e3124180b00000000000000000000020c1720293036393a4040404040404040404040404040404040404040404040454f59606c77828f96a0aaa2979083796d605b51463d32291e150a0000000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca093867a6d6d7a85929ea6a89f92867c6e655b50443b30231a0d040916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d20141313131313131313131313131313131313131313131313131308070502000000000000000000000000000000000000000000020e1a26313d4a5764707d8a99a3a8988b7e7265544a3f34281c100300000000000916222f3c4955626f7c8895a2afa4978a7d717d8792989f9d9899929191919298989da0a8aba79f9892867d70695f53483e3323190f000000000000000000000000050f172129313a40454e54565e6164686a6b6c6c6c6b6a6865615f5753505864717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d00061019222b353d43484952535353535353534e46443f382f261c11060000000a1724303d4a5763707d8a96a3b0a79a8d8174675a4e4134271b0e01000000000001090f14181a1b1c1b1a1a1918171614100b0500000000000000000000000000000000000006111c263039434b51535d6060606060605d5b554d433829333c464e53555f6060606060605957524940352a1e1307000000000000000000000000000000000002090e161c21272c30363a3b3f4446494b4d4f5051575f666c72797979797975665c504439352f2b26201b160d0701000000000000000000000000000000000a1724303d4956626c7179797979797979756f65594d4034271b0e090f181d262d3338393f4646464646453834404c58646e7479797979797979716c6256493d3024170a00121f2c3845525e6a757979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746f64594c4033271a0d010000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f95908a8a8a8a8a8a8a8a8a8c93999892867d70685d5246392d201307000000000000000000000000000000020e1b2835414e5b6874818e9b9f9f998c807366594d4033261a0d000000000000000000000000000000000000000000091623303c4956636f7c8996a8b2a89b8e81757c869299a19791847a6d675c544a3f33313e4b5865717e8b98a4b1a6998d8073665a4d4033271a060000000000000000000008131e29323a4146474d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d505b656d7a849198a2a9a0958e81756d62594f443b30261c110600000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca39986796d75818e97a2aca0968c80736a5f53493f32291f1108000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d20140d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0b0a080500000000000000000000000000000000000000000914212d3a4754606d7a86929fa89b8f8275665c5044382b1f120600000000000916222f3c4955626f7c8895a2afa4978a7e71707d8690959d9fa39f9e9e9e9fa3aaa9a8a79f9d9590867d706b60574d42362c22110700000000000000000000000000050f171f282f353d43474c5254585b5d5e5f5f5f5e5d5b5855534d464b5864717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d0000071019232b32383b3c4646464646464646423938332d261d140a000000000a1724303d4a5763707d8a96a3b0a79a8d8174675a4e4134271b0e010000000000000003070909131211100f0e0d0a09070400000000000000000000000000000000000000091317232e38424b555d60696c6c6c6c6c6c6a665f554a3e323b454e585f626c6c6c6c6c6c6c66635b52473b2f23160a00000000000000000000000000000000000000050b10161c1f252a2d2e34383a3c3e444d525b62696e787f8686868687796d6053463a2d241e1b150f0a040000000000000000000000000000000000000815212d3945505a62646c6c6c6c6c6c6c68655d53483d3124180d1419212a2f383f44464c535353535352443f3848535c64676c6c6c6c6c6c6c64625a5045392d21150800111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645d53483c3024180b000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828f9393939393939393939393979fa4a39892857a6d6154473a2e211407000000000000000000000000000000020f1c2835424f5b6875828e939393938d8073675a4d4034271a0d0100000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1a6998c7f73707e87939fa0969083796d665b50443f363c4956636f7c8996abb5a89c8f8275695c4f422e23170b000000000000000000010d1925303a444c52545a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a535d686f7c86929fa4a79e938b7f726b60564c42382e23170c00000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929fac9f928679707d89939ea9a59d9184796d60584e41382d20170d00000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d201a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a171714110c050000000000000000000000000000000000000613202c3945515d677683909ca99f9285796d6053463a2d20130800000000000916222f3c4955626f7c8895a2afa4978a7e716b707c838a9095989b9d9e9f9f9f9e9d9b9895908a837b706b60594f453b31241a10000000000000000000000000000000050d161d242932373b4146474b4e505252535252504e4c4846423e4b5864717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d00000007101921272c2f303939393939393939352d2b28221c140b02000000000a1723303d4a5663707d8996a3b0a79a8e8174675b4e4134281b0e010000000000040a0f131516201f1e1d1c1b1a171614100b050000000000000000000000000000000009121b2528343f4a545d676d767979797979797671665b4e423b444d575f6a6f78797979797979736d63574b3f3225190c000000000000000000000000000000000000000000050b1014191e202429323a414650565e616d727b828c929992877e71665c5044382b1f130f0a04000000000000000000000000000000000000000005111d29343e48505658606060606060605b59534b41372c200e171f252a333b424a5053595f6060605f5e504a42414a53585a60606060606060585650483e34291d1105000e1a26313d4751595e5f606060606060606060606060606060606060606060606060606060606060606060606060606060606060605b59534a41362b201408000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100101c2936434f5c6976828686868686868686868686868b93999992877e70685d5246392d20130700000000000000000000000000000003101c2936434f5c6976828686868686868074675a4e4134271b0e0100000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7b1a4978a7e716c727f8b929d9f958f81786c605b51483e3b4754616e7a8799a4afaa9d9084776a544a3f34281c1003000000000000000005111d2a36414c565e6167676767676767676767676767676767676767676767676767676767676a717e8a929daba59f92877d6f685e544a3f34281c1003000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929fac9f9285797984919ea5a99d93897d70675c51463c2f261b0e0500000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a2d27272727272727272727272727272727272727272727272727272727272423211c171008000000000000000000000000000000000004111d2935414c5566737f8c99a9a297897c6f6356493c2f24190d01000000000916222f3c4955626f7c8895a2afa4978b7e71646a6f787e83888b8e909192929291908e8b88837e766e6960594f473d33291f120800000000000000000000000000000000040c131820272b3036393b3e4143454646454543413f3b3a363e4b5864717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d00000000070f161b1f22232c2d2d2d2d2d2d2d28201f1c17110a020000000000091623303c4956636f7c8996a2afa79b8e8174685b4e4135281b060000000000070f161b1f22232c2b2a292827262322201c160f08000000000000000000000000000008111b242d373f44505c666d798286868686868683766a5d5043434c565f696f7c85868686868686807366594d4033261a0d00000000000000000000000000000000000000000000000710191f282f353e444c525a61696e767f8690949a93877e716c61544a3f34281c100100000000000000000000000000000000000000000000000c17222d363e45494b535353535353534e4d4841392f251a19202930363f454d545b60666c6c6c6c6c6a5c544a3f41484c4e535353535353534b49453e362d22170c00000915202b353f474e5253535353535359636b6c6c6c6c6b64615a534d53535353535353534d535b60656c6c6c6c6b686157535353534e4c4841382f251a0f03000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e11000f1c2835414e5a6670767979797979797979797979797e869392877e706c61564c4135291d1105000000000000000000000000000000020f1b2835414e5a657076797979797979746e64584c4033261a0d0000000000000000000000000000000000000000020f1c2835424f5b6875828e9ba8afa396897c70636d74808d939e9e938d80746d625a50463d4653606c7986939facab9e928578665c5044382b1f120600000000000000000713202d3946525e686d7373737373737373737373737373737373737373737373737373737373737374808d99a3aea39991847a6e665c5044382c1f1206000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929fab9e918578808d96a0aca1978e81746b60554b40342a1d140a0000000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6053473a34343434343434343434343434343434343434343434343434343434343431302d28221a120800000000000000000000000000000000010d19242f3c4956626f7c8997a2a9998c807366564c4135291d1104000000000916222f3c4955626f7c8895a2afa4978b7e71645f666d71777b7e8183858586858583817e7b76716c615f574f473d352b21180d00000000000000000000000000000000000001070d151b1e252a2d2e31353738393939383735322e2d313e4b5864717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d0000000000040a0f1315161f202020202020201b13120f0b06000000000000000915222f3c4855626f7b8895aab4a89b8f8275685c4f422d22170b0000000007101921272c2f3039383736353433302f2c27211a110800000000000000000000000007101a232d363f49525c606d78828f94939393938c807366594d434c565e686e7b85919793939992877d706356493d3023160a00000000000000000000000000000000000000000000040f19222b313a41454f565e616c717b828b92989a93887e716c615a5042382e23170b00000000000000000000000000000000000000000000000006111b242d34393d3e4646464646464642403d372f271d1e2529323b424651575f666c72797979797975665c5044383c4041464646464646463e3d39342d241b11060000040f19242d353d42454646464646525e6b757979797978706c615f57514b434646424b51575f656c71787979797873685c5046464641403c362f261d130800000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e11000d1925323d49545e66696c6c6c6c6c6c6c6c6c6c717e879392877e716c615a50443a3024190d01000000000000000000000000000000000d1925313d49545e65696c6c6c6c6c6c67645c52473c3024170b000000000000000000000000000000000000000003101c2936434f5c6976828f9ca9aea295887b6f62606c78818f959f9d928b7f726c61584e4544505b667885929fabac9f9386796d6053463a2d20130700000000000000000714212e3a4754616d7a80808080808080808080808080808080808080808080808080808080808080808086929facaba1969082786d6053463a2d201307000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faa9d91847b87929fa8a69e92857a6d61594f43392e22180b020000000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d605347404040404040404040404040404040404040404040404040404040404040403e3c39332c241a1005000000000000000000000000000000000813202d394653606c7985929ea99d908376685d5245392c201306000000000916222f3c4955626f7c8895a2afa4978b7e7164545c6064696e72747678787979787675726e6964615a534d453d352b23190f060000000000000000000000000000000000000000040a0f14191e202125282a2b2c2c2c2b2a28252225313e4b5864717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d000000000000000307090913131313131313130f0606030000000000000000000714212e3a4754616d7a8798a2aea99c8f837669544a3f33281c0f030000040f19222b32383b3c464544434241403d3c38332b231a0f0500000000000000000000060f19222c353e48515b636e74818e949ea69e948e81746e63574b4b555d686e7a849197a1a49f93877e716b6054483b2f221609000000000000000000000000000000000000000000000a16212b343d434b515961686d757e858f949f9f93887f716c625a50483e30261c11060000000000000000000000000000000000000000000000000009121b22292d3031393939393939393534312c2518202830353e444d525b62696e787f8686868687796d6053463a2d33343939393939393931302d29221b12090000000008121b242b313638393939394653606c7987868686847d756e69605c554f46454f545c60696e777e8586868685786b5f524539393433302b251d140b0100000000000000000000000000000c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e11000915212c38424c545a5c6060606060605a626c717e879392877e716c615a50483e32281e130800000000000000000000000000000000000915212c38424c545a5c6060606060605a58524a41362b1f1408000000000000000000000000000000000000000003101d2a3643505d697683909ca9aea194877b6e615b666d79839096a09f93877e706a60574d444a546b7884919eabafa49a867a6d6053473a2d20140700000000000000000815222f3b4855626e7b888d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d9299a3aeb2a99f94897d7063564a3d3023170a000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faa9d9083839099a3aa9f948a7e71685d52473d30271d0f06000000000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4a49453e362c22170c0000000000000000000000000000000006121f2b3844505b6675828e9ba89f92867a6d6054473a2d211409000000000916222f3c4955626f7c8895a2afa4978b7e7164585053575f6165686a6b6c6c6c6b6a6865615f57555046423b332b231a1108000000000000000000000000000000000000000000000002080e111414181b1d1f1f201f1f1d1b191825313e4b5864717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d00000000000000000000000606060606060606020000000000000000000000000613202d394653606c7985929facaa9e918477665b5044382b1f120600000a16212b343d434849535251504f4e4d4a48443d352b21160b000000000000000000050f18222b343e47505a626d73808d939da69f948f82786d605c524a545c676d7a839096a0a49c918b7f726c61594f44382c201307000000000000000000000000000000000000000000030f1b27323d464e555d606b707a818a92979f9b918b7f726d625a50483e362c1e140a0000000000000000000000000000000000000000000000000000000911171d2124252d2d2d2d2d2d2d282724201d2429323a414650565e616d727b828c929992877e71665c5044382b27272d2d2d2d2d2d2d2524211d17110900000000000009121920262a2c2c2d2d313e4b5864717e889396918a827b736d67615953525960666d737b828b929792877e7064574a3d312d282724201a130b020000000000000000000000020507080c1926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e110005101b26303a42494e4f535353534e58626c717e879393877e716c615a50483e362c20160c02000000000000000000000000000000000004101b26303a42494e4f5353535353534e4c4741382f241a0e03000000000000000000000000000000000000000004111d2a3744505d6a7783909daaada194877a6e61545d676d7a849197a19992867c6f695f564c515e6b7784919eaab6a094877a6d6154473a2e21140700000000000000000815222f3b4855626e7b88959a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9fa3abb5bbb0a6968a7d7063574a3d3024170a000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929fac9f928790959faba2988f82766c61564c41352b1e150b00000000000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a575550483e33281c1105000000000000000000000000000000030f1c28333f4a5465717e8b98a7a3998a7d7064574a3d31261a0e020000000916222f3c4955626f7c8895a2afa4978b7e7164584b464d5355585b5d5e5f5f5f5e5d5b5855534d49453e36312a211a11080000000000000000000000000000000000000000000000000000020507080b0e101213131212100e0c1825313e4b5864717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b657784909daaac9f9285796c605346392d20130600030f1b27323d464f54565f5e5d5c5b5a5956544f473d33271c100400000000000000040e17212a343d464f59616c727f8c929ca5a0959082796d665c5044505c666d79829095a0a59d928c7f736d625a50473d32271b100400000000000000000000000000000000000000000007131f2c38434e5860676d747d858e939fa29b918b7f726d625a50483f362d241a0c0200000000000000000000000000000000000000000000000000000000060c11151718202020202020201b1b191f282f353e444c525a61696e767f8690949a93877e716c61544a3f34281c1b20202020202020181715110c060000000000000000080f151a1d1f202024303d4956626c717f8b919e948f868079706b615f5d606b6f797f868f949f93887e716c6155493c30231b1a18140f08010000000000000000000003090e121415191926333f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100000a141e2830383d414346464647535f6a717e879393877e716c615a50483e362c231a0e04000000000000000000000000000000000000000a141e2830383d414346464646464641403c362f261d130800000000000000000000000000000000000000000004111e2b3744515e6a7784919daaada094877a6d6154555e686e7b859298a29892857b6e685e554b5e6a7784919daaada194877a6e6154473b2e21140800000000000000000815222f3b4855626e7b8895a1a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a7acaeb5acacaca3968a7d7063574a3d3024170a000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929faca39992999fa7a79f92867b6e615a50443a3023190c0300000000000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada093867a6d6767676767676767676767676767676767676767676767676767676767676767676764615a5045392d211408000000000000000000000000000000000b17222d3b4854616e7b8795a0ab9a8d817467574d42362a1e12050000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e4246484b4e505252535252504e4b4847423c39332a261f180f0800000000000000000000000000000000000000000000000000000000000000000204050606060504020b1825313e4b5864717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000000030f1b27333f49536875818e9ba8aea398887b6e6255483b2d22170b0407131f2c38434f5960636c6b6a696867666360594f44382c201407000000000000040d162029333c464e58616b717e88939fa4a19690837a6d675d544a525c606d78818f949fa69e938d80746d635b51483e352b21160b000000000000000000000000000000000000000000000915222e3b4854606a6f79818a91979ea39c918c7f726d625b51483f362d241b12080000000000000000000000000000000000000000000000000000000000000005080a0b131313131313130f19222b313a41454f565e616c717b828b92989a93887e716c615a5042382e23170b131313131313130b0a0805000000000000000000000004090e11121315212d3945505a626d727f8b919c98928c847d756e69686d747c838c92989c918b7f726c625a5044392d20140d0b08030000000000000000000000060e141a1e2122252526333f4c5966727f8c99a5aa9d9184776a5e5144372b1e110000020c161e262c32353639393c4855626f7b869393887e716c615a50483e362c241a11080000000000000000000000000000000000000000020c161e262c3135363939393939393433302b241d140b0100000000000000000000000000000000000000000004111e2b3744515e6a7784919daaada194877a6e61544c565f696f7c869299a19791847a6d675c545e6b7784919eaaada094877a6d6154473a2e21140700000000000000000815222f3b4855626e7b88959f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f968a7d7063574a3d3024170a000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929facaba39fa3ababa0958c7f72695f53483e32281e11070000000000000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facada09386797373737373737373737373737373737373737373737373737373737373737373737373716c6155493c3023170a000000000000000000000000000000000614202d3a46525e697784919daa9e918477695f53463a2d2114060000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e363a3b3f4143454546464543423f3b3a37312d28221a140e060000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0ada6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000000000b17222d3f4c5865727f8b98a8b2aa978a7e7164544a3f33281b13101014222f3b4854606b6f79787776757473706b6054483c2f2216090000000000030c161f28323b454e58606a707d87929aa4a19791847b6e685d554b515b636e74818e939ea69e948e81776c605b51493f362c23190f04000000000000000000000000000000000000000000000916232f3c4956626f7c848e9393939393918c7f726d625b51493f362d241b12090000000000000000000000000000000000000000000000000000000000000000000000000606060606000a16212b343d434b515961686d757e858f949f9f93887f716c625a50483e30261c110600060606060606000000000000000000000000000000000001040605111d29343e48505a626d727f8c929c9f96918a827b73717a818891959f9d928c7f736d625a50483e33281c100400000000000000000000000000060f181f262a2d2e323232333f4c5966727f8c99a5aa9d9184776a5e5144372b1e11000000040c141b212528292d2e3a47535f6a73808c887e716c625a50483e362c241a120800000000000000000000000000000000000000000000040c141b212528292d2d2d2d2d2d2726241f1a130b020000000000000000000000000000000000000000000004111d2a3744505d6a7783909daaaea194877b6e6154484d57606a707e87939fa0969082796d665b5e6b7884919eabb4aa93877a6d6054473a2d21140700000000000000000815222f3b4855626e7b88939393939393939393939393939393939393939393939393939393939393939393939393939393938a7d7063574a3d3024170a000000131f2c3946525f6c7985929facada093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929facb5afacafafa4999083786d60574d42362c20160c000000000000000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facb3a79a8d8080808080808080808080808080808080808080808080808080808080808080808080807e7164574a3e3124170b0000000000000000000000000000000005121e2a36424d576774808d9aaaa096887b6e6155483b2e23170b0000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e312d2e32353738393939383735322e2d2b261f1c170e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4afa295887c6f6255493c2f221609000714212d3a4754606d7a8793a0aca6998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000000000616222f3c4955626f7c8896a1ada79a8e8174665b5044382d241f1c1d1f27303c4956636f7d868584838281807d7063564a3d3023170a00000000020b151e28313a444d575f6a6f7c869299a3a29892857b6e695e564c505a626d73808d939da59f948f82786d655b504940372d241a110700000000000000000000000000000000000000000000010e1b2734414e5a67748186868686868686867f736d635b51493f372d241b1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323d464e555d606b707a818a92979f9b918b7f726d625a50483e362c1e140a00000000000000000000000000000000000000000000000000000000000c17222d363f48515b636d737f8c929ca09e948f867f7d848d939aa09d938d80736d635b51483e362c22170b00000000000000000000000000030e18212a31363a3b3f3f3f3f3f4c5966727f8c99a5aa9d9184776a5e5144372b1e1100000000020a1015191c1c1f2b37434e58636d73807e716c625a50483e362c241a1208000000000000000000000000000000000000000000000000020a1015191b1c2020202020201b1a17140e0801000000000000000000000000000000000000000000000003101d2a3643505d697683909ca9aea295887b6f625548454e58616c727f8c929d9f948e81786c605b657885929eabaea29886796d6053463a2d20130700000000000000000815222f3b4855626e7b8686868686868686868686868686868686868686868686868686868686868686868686868686868686867d7063574a3d3024170a000000131f2c3946525f6c7985929facaca093877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693a0acac9f9386796c605346392d201300131f2c3946525f6c7985929facb8bbb9b2a89f93877c6f665c50453b31241a0e04000000000000000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facb9a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8174675b4e4134281b0e01000000000000000000000000000000020e1a25303d4a5763707d8a98a3a8988b7e7265544a3f34281c100300000916222f3c4955626f7c8895a2afa4978b7e7164584b3e31252225282a2b2c2c2c2b2a282522211e1a15110c050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4aca295887c6f6255493c2f221609000714212d3a4754606d7a87939f9f9f998c807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a7884919eabab9e9185786c6053493f352f2c28292c2f39424f5966727f8c91908f8e8d8b7e7265584b3f3225180c000000000a141d273039434c565e696e7c859298a2a39992867c6f695f564d4f59626c727f8c929ca5a0959082796d665c53493f372e251b12080000000000000000000000000000000000000000000000010d1a2733404c58646e747979797979797979736d635b51493f372d251b12090000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2c38434e5860676d747d858e939fa29b918b7f726d625a50483f362d241a0c02000000000000000000000000000000000000000000000000000000000006101b242d363f49515b636d73808d929da49e98928c8a91969fa49e938e81746e645b51493f362d241a10050000000000000000000000000009141f2a333b4246484c4c4c4c4c4c5966727f8c99a5aa9d9184776a5e5144372b1e1100000000000005090d0f0f1a26313c46525b646e73716d625a50483e362d241a120800000000000000000000000000000000000000000000000000000004090d0f101313131313130e0d0b080300000000000000000000000000000000000000000000000000020f1c2935424f5c6875828f9ba8afa296897c6f6356493d46505a626d74808d939e9e938d80736d606c7986929facab9f928578665c5044382c1f120600000000000000000814212e3a47535f6a76797979797979797979797979797979797979797979797979797979797979797979797979797979797979706b6155483c2f231609000000131f2c3946525f6c7985929f9f9f9f93877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d7986939f9f9f9f9386796c605346392d201300131f2c3946525f6c7985929facacacacada1968d80746a60544a3f33291f120900000000000000000916232f3c4956626f7c8995a2ac9f9386796c605346392d20130013202c3946535f6c7986929facb9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a8e8174675b4e4134281b0e01000000000000000000000000000000000914202d3a4753606d7a86929fa89b8f8275665c5044382b1f120600000916222f3c4955626f7c8895a2afa4978b7e7164584b3e312518181b1d1f1f201f1f1d1b181514120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b979f9f9f95887c6f6255493c2f221609000714212d3a4754606d7a8793939393938c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000006131f2b37434e586774808d9aa6ada1978a7d70655b5045413a383435393b424b54606b7783909d9d9c9b95887b6e6155483b2e22150800000006111b262f39424b555e686e7b849197a2a49a92877d706a60574d4f59616c717e88939fa4a19690837a6d675d544a41382d251c1309000000000000000000000000000000000000000000000000000b1824303c48535c64676c6c6c6c6c6c6c6c66635b51493f372d251b130900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222e3b4854606a6f79818a91979ea39c918c7f726d625b51483f362d241b12080000000000000000000000000000000000000000000000000000000000000009121b242d373f49525b636e74808d929da5a39f99979ea1a69e948e81786c605c524940372d241b110800000000000000000000000000020e1a26313b454d53555858585858585966727f8c99a5aa9d9184776a5e5144372b1e11000000000000000000000a15202a344049525c646765625a50483f362d241b1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3e48515b606c78818f959f9d928b7f726c6d7a8799a3afaa9e9184776b544a3f34281c1003000000000000000006121e2b37424e575f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6361594f44382c201407000000131f2c3946525f6c7986929393939393877a6d6054473a2d2114070000000000000000000000000713202d3a4653606d798693939393939386796c605346392d201300131f2c3946525f6c7985929f9f9f9f9fa59e9184796d60584e42382e21170d0000000000000000000916232f3c4956626f7c89959f9f9f9386796c605346392d20130013202c3946535f6c7986929facacacaea9a7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a69a8e8174675b4e4134281b0e010000000000000000000000000000000006131f2c3945515d6776828f9ca99f9285796d6053463a2d20130800000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180c0e101212131312100f0c08080602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b9393939393887c6f6255493c2f221609000714212d3a4754606d7a86868686868686807366594d4033261a0d000000000000000000000000000000000000000000000000000000000000000000030f1b26323c4855626e7b88949eaca99d9083786c605a524c4645404045474c545c66707d8995a0aaa99d918477695f53463a2d2114070000000b17222d38414a545d676d7a839196a1a49f93887e716b60584e4e58606b707e87929aa4a19791847b6e685d554b42392f261b130a00000000000000000000000000000000000000000000000000000814202b36414a53585a60606060606060605957514940372e251b13090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c848e9393939393918c7f726d625b51493f362d241b120900000000000000000000000000000000000000000000000000000000000000000009121b252d374049525c646e74808d939da59f9f9f9fa79f948f82786d665b504a40372e251b1209000000000000000000000000000005121e2a36424d575f616565656565656566727f8c99a5aa9d9184776a5e5144372b1e1100000000000000000000030e18222e37404a52585a585650483f362d241b120900000000000000000000000000000000000000000000000000000000000000000000000000010507071313131313131313080705020000000000000000000000000000000000000c1926333f4c5966727f8c99a5b2a5998c7f7266594c3f363f44505b666d79839096a09f93877e706f7c8995abb5a99c8f8376695c50432e23170c000000000000000000020e1a26313c454e535560606060606060606060606060606060606060606060606060606060606060606060606060606060606057554f473e33281c1004000000131f2c3946525f6c7986868686868686867a6d6054473a2d2114070000000000000000000000000713202d3a4653606d788686868686868686796c605346392d201300131f2c3946525f6c798692939393939393938a7d70675d51463d30261c0f060000000000000000000916232f3c4956626f7c89939393939386796c605346392d20130013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8e8174675b4e4134281b0e010000000000000000000000000000000004101d2935404b5566727f8c99a9a297897c6f6356493c2f24190d01000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b0204050606060504020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e868686868686867c6f6255493c2f221609000713202c3945525d687679797979797979736d63574b3f3225190c000000000000000000000000000000000000000000000000000000000000000000000a15212e3a47535f6a76828f9aa4ab9f958c7f726c605d5653514b4b5153565e666d7983909da7ada2978b7f7265574d42372b1e12050000030f1b27333f49535c666d79839095a0a59c928b7f726c61594f4d575f6a6f7d869299a3a29892857b6e695e564c433930271d140a010000000000000000000000000000000000000000000000000000030f1a252f3841484c4e53535353535353534c4b4640372e251c1309010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a67748186868686868686867f736d635b51493f372d241b1209000000000000000000000000000000000000000000000000000000000000000000000009131c252e37404a525c606c77818e93939393939393959082796d665c544a3f382e251c13090000000000000000000000000000000714212d3a46535f696e7272727272727272727f8c99a5aa9d9184776a5e5144372b1e11000000000000000000000006101c252e3840474c4d4b4a453f362d241b120900000000000000000000000000000000000000000000000000000000000000000000000002080d11131420202020202020201514120e0902000000000000000000000000000000000a1724313d4a5764707d8a97a9b2a89b8e817568564c4136333f4a545d676d7a849197a19992867c717e8a97a4b1a79a8e8174675b4e4134281b06000000000000000000000915202a333c4247485353535353535353535353535353535353535353535353535353535353535353535353535353535353534a48443e352c21160b00000000121f2b3844515d6974797979797979797976685d5245392c20130700000000000000000000000006121f2c3844505c66767979797979797979766c5f5346392d201300131f2c3946525f6c7986868686868686868681756c61554b40342b1e150a000000000000000000000916232f3c4956626f7c86868686868686796c605346392d20130013202c3946535f6c79869293939393939393939393939393939393939393939393939393939393939393939393939393939393938e8174675b4e4134281b0e0100000000000000000000000000000000000c18242f3c4955626f7c8897a1a9998c807366564c4135291d1104000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4956626c7179797979797979766a5f53473b2e2115080004111d2935414c565d6c6c6c6c6c6c6c6c66635b52473b2f23160a0000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e58626f7c87939fa8a79f93887e746d6863605c54555d6063686e78818e95a0aca69f9285796d6053473c31261a0e02000005121f2b3744505b656d78828f959fa59d938c80736d625a504c565f696f7c859298a3a39892867c6f695f564d443a31271e150b020000000000000000000000000000000000000000000000000000000008131d262f363c40414646464646464646403e3b352e251c130a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a2733404c58646e747979797979797979736d635b51493f372d251b1209000000000000000000000000000000000000000000000000000000000000000000000000010a131c252e384044505b656c7881868686868686868683796d675d544a42382d261c130a010000000000000000000000000000000815222e3b4855616e7b7f7f7f7f7f7f7f7f7f818f9ba8aa9d9184776a5e5144372b1e110000000000000000000000000a131c262e363c3f403e3d3a342d241b1209000000000000000000000000000000000000000000000000000000000000000000000000050c13191d20212d2d2d2d2d2d2d2d21201e1a140d050000000000000000000000000000000815222e3b4855616e7b8896a1adaa9d908477685e5246392d38424b555e686e7b859298a29892857b808d9aa6b4aa988b7f7265584c3f3225190c00000000000000000000030e18212a31373a3b4646464646464646464646464646464646464646464646464646464646464646464646464646464646463d3c38332c231a100500000000101c2935414d5862696c6c6c6c6c6c6c6c6c5d564c4135291d110400000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e1200121f2b3844515d6974797979797979797979756f65594f433a2f22190c03000000000000000000000815222e3b4754606a6f79797979797979766c5f5346392d20130013202c3946535f6c7987868686868686868686868686868686868686868686868686868686868686868686868686868686868686868174675b4e4134281b0e0100000000000000000000000000000000000713202d394653606c7885919ea99c908376685d5245392c201306000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212d3945505a62646c6c6c6c6c6c6c625f584e43372b1f130600010d19242f3a444c525f606060606060605957524940352a1e130700000000000000000000000000000000000000000000000000000000000000000000020f1a26313c4754606a74818e96a0a9a49a9387807a74706d666a6a676d70747a828e939ea7a89f948b7e72675d5145392a1f140900000815212d3945505a606c77818e949fa69e938e81746e635b5146525e686e7b859197a2a39992867d706a5f574d443b32281f150c030000000000000000000000000000000000000000000000000000000000010b141d252b303334393939393939393933322f2a231c130a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824303c48535c64676c6c6c6c6c6c6c6c66635b51493f372d251b13090000000000000000000000000000000000000000000000000000000000000000000000000000010a131c2627333f49535b666c757979797979797979776d675d554b42392f261c140a01000000000000000000000000000000000b1724313e4a5764717d8a8b8b8b8b8b8b8b8b8f939eaaaa9d9184776a5e5144372b1e11000000000000000000000000010b141c242b30333432312e29221b1209000000000000000000000000000000000000000000000000000000000000000000000000050e161e252a2d2e39393939393939392e2d2a251f170f0500000000000000000000000000000714212d3a46535f697884919eabac9f93877a6d6154473c322f39434c565f696f7d86929aa197918483909daaaea298897c6f6356493c302316090000000000000000000000060f1820262b2e2f393939393939393939393939393939393939393939393939393939393939393939393939393939393939302f2c28211a110800000000000d1925303b4650585d5f606060606060605f524c443a2f24190d01000000000000000000000000000c17232e38424a505f60606060606060605f5a52493e33271b0f00101c2935414d5862696c6c6c6c6c6c6c6c6c68655d53473e31281d1007000000000000000000000006131f2b38434e5860626c6c6c6c6c6c6c6c645a4f43372b1e1200121f2c3845525e6a757979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746f64594c4033271a0d01000000000000000000000000000000000005121f2b3744505b6575818e9bac9f92867a6d6054473a2d211407000916222f3c4955626f7c8895a2aca4978b7e7164584b3e3125180b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d29343e485056586060606060606055534e463c32261b0f03000008131e28323a414553535353535353534d4b4740372e24190d0200000000000000000000000000000000000000000000000000000000000000000000000a15202b37434e58606d7a849197a2a9a499938d85807d79787777787a7c81868f949ea5a9a1969082776c60554b403529180e0300000a1724303d4956626c74808d939ea69f948f81786d605c52494754616e7a849197a1a49a92877e706b60584e453c322920160d0300000000000000000000000000000000000000000000000000000000000000020b131a202427272d2d2d2d2d2d2d2d2625231e19120a010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202b36414a53585a60606060606060605957514940372e251b130900000000000000000000000000000000000000000000000000000000000000000000000000000000010a1417222d38414a545b60686c6c6c6c6c6c6c6c6a605d554c433930271d140a0200000000000000000000000000000000000b1724313e4a5764717d8a97989898989898989b9ea6b0aa9d9184776a5e5144372b1e1100000000000000000000000000020b12191f2326272524211d181109000000000000000000000000000000000000000000000000000000000000000000000000020c1620283036394646464646464646463b3a36302921170d020000000000000000000000000005121e2a36424d576875818e9baaafa49a8b7e7164584e43372b313a444d57606b717e88939fa096919095a0abac9f9285796d6053463a2d201307000000000000000000000000060e151a1e21222d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423201c16100800000000000008141f2a343e464d5152535353535353535345413a32281e1308000000000000000000000000000006111c2630383f44535353535353535353534f4940372c21160a000d1925303b4650585d5f60606060606060605b59534b42352c1f160c000000000000000000000000030f1b27323d464e5456606060606060605f5a52493e33271b0f00111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645d53483c3024180b000000000000000000000000000000000000030f1b27333f495364717e8a9aa4a3998a7d7064574a3d3124170a000916222f3c4955626f7c88959f9f9f978b7e7164584b3e3125180b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17222d363e45494b535353535353534947433c342a20150a000000010c1620282f35394646464646464646403f3b352e251c1207000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323c45515d676e7c859297a0a7a49f97928d89868584848586898d92989fa6a79f9791847b6e655b50433a2f2418060000000b1825313e4b5864717e8b929da5a0958f82796d665c504a43505d6a76839096a0a99f93887e716c61594f463c332a20170e0400000000000000000000000000000000000000000000000000000000000000000001080f14181a1b2020202020202020191916120d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a252f3841484c4e53535353535353534c4b4640372e251c13090100000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f38424a50535b60606060606060605d54514c433a31271e150b020000000000000000000000000000000000000b1724313e4a5764717d8a979f9f9f9f9f9f9f9f9f9f9f9f9d9184776a5e5144372b1e11000000000000000000000000000001080e1317191a181715110c060000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a41465353535353535353534846423b33291f140900000000000000000000000000020e1a26313e4a5764717e8a98a2aeac9c8f82766a5f53473f352f323c454f59616c727f8c929da09d9da0a7b1aa9c8f8275665c5145382c1f13060000000000000000000000000003090e121415202020202020202020202020202020202020202020202020202020202020202020202020202020202020171614100b0500000000000000020d18222c343b414446464646464646464639352f2820160c010000000000000000000000000000000a151e262e343846464646464646464646433e372e251b10050008141f2a343e464d515253535353535353534f4d48423930231a0d04000000000000000000000000000a16202b343d43474953535353535353534f4940372c21160a000e1a26313d4751595e5f606060606060606060606060606060606060606060606060606060606060606060606060606060606060605b59534a41362b201408000000000000000000000000000000000000000b17222d3a4754616d7a87939393938d8174675a4e4134271b0e000916222f3c4955626f7c8893939393938b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b242d34393d3e464646464646463c3b37322a22180e0400000000040d161e24292c393939393939393933322f2a241c130a00000000000000000000000000000000000000000000000000000000000000000000000000000a15202935414c555f6a6f7c8590959fa3a9a19e9a96979291909192999a9fa2aaa29f9590857b6e695e53493f31281d13070000000d1a2633404d596673808c99a4aa9d91847a6d675c544a3f45525e6b7885919ea8a5998c7f726c625a50473d342a21180e0500000000000000000000000000000000000000000000000000000000000000000000000003080b0d0e13131313131313130d0c0a06020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131d262f363c40414646464646464646403e3b352e251c130a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262f383f44464e5353535353535353504745413a31281f150c03000000000000000000000000000000000000000b1724313e4a5764717e8a93939393939393939393939393939184776a5e5144372b1e110000000000000000000000000000000003070b0d0d0b0b09050100000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a444c525f60606060606060605f524d453b30251a0e02000000000000000000000000000914202d3a4753606d7985929fabab9f94887c6f625b5145403937333d46505a626d74808d939ea7aaabb1aea2988b7e7164544b4034281c1004000000000000000000000000000000020608081313131313131313131313131313131313131313131313131313131313131313131313131313131313130a0907040000000000000000000006101a222a3035383939393939393939392c29241e160d0400000000000000000000000000000000030c151c23282c3939393939393939393937332c251c13090000020d18222c343b414446464646464646464642413d3730271e11080000000000000000000000000000040f19222b32383b3c4646464646464646433e372e251b1005000915202b353f474e5253535353535353535353535353535353535353535353535353535353535353535353535353535353535353534e4c4841382f251a0f03000000000000000000000000000000000000000613202d3946525e687783868686868684776b5e5144382b1e11000916222f3c4955626f7c868686868686867e7164584b3e3125180b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b22292d3031393939393939392f2e2b2620181006000000000000040c13191d202d2d2d2d2d2d2d2d2625231e19120a010000000000000000000000000000000000000000000000000000000000000000000000000000040d19242f3a434e58606a6f7b838c92989ea1a9a7a9a29f9d9d9e9fa3aba9a19e98928d837b6e695f574d41382d1f160c010000000d1a2633404d596673808c99a3ac9f92867c6f695f564c4345525e6b7885919ea6a89c8f82786d605c52493f362c2319100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b141d252b303334393939393939393933322f2a231c130a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141d262d333839424646464646464646443a39352f281f160d0300000000000000000000000000000000000000000b1724313e4a5764717e8686868686868686868686868686868684776a5e5144372b1e1100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d2a36414c565e6c6c6c6c6c6c6c6c6c6c5e574d42362a1e12050000000000000000000000000006131f2c3945515d6774818d99a3afa69c8f82766d625a514b474242414148515b606c78818f959fabb8b4aa9f92857a6d6054473a2e23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810181f25292b2c2d2d2d2d2d2d2d2d201d19130c04000000000000000000000000000000000000030a11171c1f2d2d2d2d2d2d2d2d2d2d2b27211b130a0100000006101a222a3035383939393939393939393534312c251e150c0000000000000000000000000000000007101920272b2e2f393939393939393937332c251c13090000040f19242d353d4245464646464646464646464646464646464646464646464646464646464646464646464646464646464646464641403c362f261d1308000000000000000000000000000000000000000005111e2a36414c5667717779797979797772675c4f43372a1d11000815212e3b47535f6a7679797979797979716c6256493d3024170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000911171d2124252d2d2d2d2d2d2d22211f1b150e06000000000000000001080d111314202020202020201a1916130d07000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313c464e5860696e7980868d9197999c9d9fa3aaaaa9a19e9c9a97928d8680796e695f574d453b2f261b0d04000000000a1623303d495663707d87929aa4a29891857b6e685e554b424e5b6874818e949fa79e948e81746e635b51483e352b22180f060000000000000000000000000000000000000000000000000000000000000000000000000000030607090b0d0f1111121313121211100f0d0a08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b131a202427272d2d2d2d2d2d2d2d2625231e19120a010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141c22282b2d353939393939393939372d2c29241e160d040000000000000000000000000000000000000000000a1723303c4955616c71797979797979797979797979797979797771675b4f43362a1d10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050a0d0f1013130f0e0c09040000000000000713202d3946525e6876797979797979797976695e52463a2d2014070000000000000000000000000004101d2935404b55616e7b87929fa9ab9f948b7f726c605d55534d4e4e4e4b51535b666d7983909da9b6aea2988d8073675d5145392c1d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d14191c1f1f202020202020201413110d0801000000000000000000000000000000000000000000060c1012202020202020202020201e1b1610090100000000000810181f25292b2c2d2d2d2d2d2d2d2d282825201b140c030000000000000000000000000000000000070f161b1f22232d2d2d2d2d2d2d2d2b27211b130a0100000008121b242b31363839393939393939393939393939393939393939393939393939393939393939393939393939393939393939393433302b251d140b010000000000000000000000000000000000000000010d1925303a44555f676a6c6c6c6c6c6b6760564b3f33271b0e0006131f2b37434e585f626c6c6c6c6c6c6c64625a5045392d21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c11151718202020202020201615130f0a04000000000000000000000001040707131313131313130d0c0a0702000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a333d464e575f676d737b8085898c8f919298a3a8a196918f8d8985807b736d675e574d453c33291d140a00000000000916222f3b4854606b717e88939fa4a19791847a6d675d544a4653606d78828f959fa69d938d80736d625a50473d342a21180e050000000000000000000000000000000000000000000000000000000000000000000104060b10121315171a1c1d1e1f1f201f1f1e1d1b19171514120e0906030000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080f14181a1b2020202020202020191916120d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f20282d2d2d2d2d2d2d2d2a21201d19130c04000000000000000000000000000000000000000000000814212d3945505a61646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a675f564b3f33271b0e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11161a1c1d20201c1b1915100902000000000714212e3a4754616d7a86868686868686867b6e6154483b2e21150800000000000000000000000000000c18242f3946535f6974808d96a1aba69f92877e736d67615f575b5a5b555d60636a6f7a83909daab6ab9f92857a6d61554b42382d2217110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d101213131313131313130707040100000000000000000000000000000000000000000000000000030613131313131313131313120f0a050000000000000000060d14191c1f1f20202020202020201c1b19150f090200000000000000000000000000000000000000040a0f13151620202020202020201e1b16100901000000000009121920262a2c2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d282724201a130b020000000000000000000000000000000000000000000008131e2932434d555b5d60606060605e5c564e44392e23170b00030f1b26323c464e535560606060606060585650483e34291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005080a0b1313131313131309080603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18212b343d454d555d60696e73787c7f828486929fa196898482807d79746e69605c554d453c332a21170b0200000000000713202c38444f59616c727f8c929da5a0969083796d665c5044515c666d79839096a0a59c928b7f726c61594f463c332920170d0400000000000000000000000000000000000000000000000000000000000001070d1113171c1f20222426292a2b2b2c2c2c2b2b2a28262422211e1a1312100c060000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080b0d0e13131313131313130d0c0a06020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131b20202020202020201d1413110d0801000000000000000000000000000000000000000000000004111c28333e48505557606060606060606060606060606060605e5b564d44392e23170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d151c2226292a2d2d292825211b140c030000000714212e3a4754616d7a87939393939393877b6e6154483b2e211508000000000000000000000000000007121d2a36424d57606d7a849199a3aba39992878079736e696968676869676d70757c8490959fabb3ab9e91847a6e675d544a3f3328231a100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d10121313131313131313130f0e0c09040000000000000000000000000000000000000000000000030608091313131313131313120f0a050000000000000000080f151a1d1f20202020202020202020202020202020202020202020202020202020202020202020202020202020202020201b1a18140f08010000000000000000000000000000000000000000000000020d1720313b434a4f515353535353514f4b443c32281d120600000a15202a343c434749535353535353534b49453e362d22170c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010407070b0d0f111213131212100e0c080705020000000000000000000000000000000000000000000000000000000000060f19222b333c434b51565e61666c6f7375777e8a979e9184787673706d66615e56514b433b332a21180f0500000000000003101b27323d47505a626d73808d939ea69f958f82786d605b524a545d676d7a849197a1a49f93887e716b60584e453b32291f160c0300000000000000000000000000000000000000000000000000000003090e13181d2023282b2d2f3133353737383939393837373533312e2d2a26201f1c17110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060f1313131313131313110706040100000000000000000000000000000000000000000000000000000c17222c363e45494a53535353535353535353535353535353514f4b443b32281d12060000000000000000000000000000000000000000000000000000000000000000000000000000000000030d161f272d32353639393534312c261e150c0200000714212e3a4754616d7a87949f9f9f9f94877b6e6154483b2e2115080000000000000000000000000000010e1a26313b45525d686f7d879299a3aaa399938d847f7b787675747475777a7d828991969fa7aca6a8a1969083796d665b50443f362c22190f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080b0e111112131312110f0c0908060300000000000000000406070b0f1213131211100e0c0b0906010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090e111213131313131313131313131313131313131313131313131313131313131313131313131313131313131313130e0d0b08030000000000000000000000000000000000000000000000000000050e1f2931393f4244464646464644433f39322a20160c010000040e18222a32373b3c464646464646463e3d39342d241b110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070a0d10111213131211100d0a07060400000000030505060606060606000000000000000000000000000000000000000000000000000002080d111314171a1c1e1f1f201f1f1d1b181514120e090400000000000000000000000000000000000000000000000000000000071019212a313940454d52545b60636669707d8a979e9185786b6763605c54524d454039302921180f0600000000000000000b16212b353e48515b606c77818e949fa79e948e81746d635a504b555e686e7b859198a2a49a92877d706a5f574d443a31281e150b02000000000000000000000000000000000000000000000000040a0f151a1d24292c2e34383a3c3e404244444546464545444342403d3b3a36312d2c28231c19130d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090c0e1011121313131211100f0d0b080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101a242c33393c3e4646464646464646464646464646464644433f39322920160b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151f2831383e4243464642413d3730271e140900000714212e3a4754616d7a8794a0acaca194877b6e6154483b2e21150800000000000000000000000000000009141f2935414c56606b717e879298a0a8a49f97918c8885838181818283868a8f939da0a8a39f999b9e9f958f81786c605b51483e342b21170d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415181b1d1e1f201f1f1d1b191515120f0a0401000000070c101313181c1e1f201f1e1d1b181815120d0600000000000000000004090e111213131313131313131313131313131313131313131313131313131211100e0c0a07060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d171f272e33363739393939393837332e2820180e040000000006101820262b2e2f3939393939393931302d29221b120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d111314171a1d1e1f1f201f1e1c1a171413100c07010c0f1112131313131313090907030000000000000000000000000000000000000000050b1013191d20212427292b2b2c2c2c2b2a282522211e1a14100c07010000000000000000000000000000000000000000000000000000070f181f272f353b42464a5053565964707d8a979e9185786b5e5653504a46423b342e271e170f06000000000000000000040f19232c363f44505b656d78828f95a0a69d938c80736c62594f4c565f696f7c869299a3a39992867c6f695f564c433a30271d140a0000000000000000000000000000000000000000000000070c151b20262b2f35393a3f4446484a4d4f5051525253525251504e4c4a4846423d3a38342e29251e19140d050000000000000000000000000000000000000000000000000000000000000000000000000004070c10121316191b1d1e1f1f201f1f1e1d1b19171414110e0806030000000000000000000000000000000000000000000000000004090e1112131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130b0a080400000000000000000008121a22282d3031393939393939393939393939393939393736332e2820170e04000000000000000000000000000000000000000000000000000000000000000000000000000000000005111c27313a434a4e5053534f4d49423930261b1004000714212e3a4754616d7a8794a0adaea194877b6e6154483b2e211508000000000000000000000000000000030d19242f3a444f59616c717e8691969fa2a9a19e9997918f8e8d8e8f9092999b9ea5a69f99928d8e939e9e938d80746d625a50463d33291f140900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1e212125282a2b2c2c2c2b2a282622211f1b15110d08030b12181c1f2025292b2c2c2c2b2a272524221d18110901000000000000080f151a1d1f202020202020202020202020202020202020202020202020201f1f1e1d1b19161413100c07040100000000000000000000000000000000000000000000000407090a13131313131313131313131313131313131313131313131313131313131313131313131313131313130b0a080400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d151c2227292a2d2d2d2d2d2b2a27231d160e06000000000000060e151b1f21222d2d2d2d2d2d2d2524211d171109000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e13191d20212427292b2b2c2c2c2b292724201f1c18120e181c1e1f2020202020201615130f0a0400000000000000000000000000000000040a0f171c1e24292c2d3133363738393939383735322e2d2a261f1d18120b060000000000000000000000000000000000000000000000000000060d151d24293036383f44464a5764707d8a979e9185786b5e5246443f38363028231d150c05000000000000000000000007111a2427333f49535c666d79839096a1a59c928b7e716b61584e4d575f6a707d879299a4a29891857b6e685e554b42392f261b11060000000000000000000000000000000000000000030b121820262b31373a4145474a50535557595c5d5e5e5f5f5f5e5e5d5b595755534d4946443f3835302a251e170e0802000000000000000000000000000000000000000000000000000000000000000001070c1013181c1f20232527292b2b2c2d2c2c2b2a28262421201e1915120f0a0300000000000000000000000000000000000000000000080f151a1d1f20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020171714110c0500000000000000000810171c2123242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b2a27231d160e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16222d38434c545a5d60605c59544b42372c211509000714212e3a4754616d7a8794a0adaea194877b6e6154483b2e2115080000000000000000000000000000000008131e28323d47505a616c717c848c92989d9fa4a9a19e9c9b9a9b9c9d9fa3a9a29f9a94908780818e949f9d928b7f726c61584e453b31251a0e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c161b1f252a2d2e31343738393939383735322f2e2b26201d19130c151d23282c2d32353839393838363432312e29231b1309000000000009121920262a2c2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2c2b29282623201f1d1813110d080100000000000000000000000000000000000000050b101416172020202020202020202020202020202020202020202020202020202020202020202020202020202020171714110c05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b11161a1d1e20202020201e1d1b17120c040000000000000000040a0f13151620202020202020181715110c060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e141a1e24292c2d3033363738393939383634302d2c29231d1a24282b2c2d2d2d2d2d2d23221f1b160f070000000000000000000000000000070f151b22282d3035393a3e404244454646454543413f3b3a36312c29241d17110a0200000000000000000000000000000000000000000000000000030b12181f252a2d33383d4a5764707d8a979e9185786b5e524538342e2a251f18120b0300000000000000000000000000091217222d38414b545d676e7a849197a1a49f92877d706a60574d4e58606b717e87939fa4a19791847a6d675d544a41382d22171209000000000000000000000000000000000000070c151d232831373c42474b5154545c60626466686a6a6b6c6c6c6b6a6a686664615f575653504a46413a3630292019130d05000000000000000000000000000000000000000000000000000000000003090e12181d1f23282c2d3032343638383939393838373533312e2d2a25211f1b150f0b060000000000000000000000000000000000000009121920262a2c2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423211c1710080000000000000000050c11141717202020202020202020202020202020201e1d1b17120b04000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a26323e4a545e66696c6c68655d54493d3125190c000714212e3a4754616d7a8794a0a2a2a194877b6e6154483b2e21150800000000000000000000000000000000010c16202b343e48505a616a6f797f858b90939a9a9c9d9e9f9f9f9e9d9c9a9897928d88837c7378828f95a09f93877e706a60574d42362a1e1205000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a111720272b31363a3b3e4144444546464544423f3c3b37322c29241e191e272e34383a3e42454646454443413f3d3a342d251b110600000008121b242b31363839393939393939393939393939393939393939393939393939393837363432302d2c2924201d19130e0902000000000000000000000000000000000810161c2023232d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423211c17100800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060a0e1011131313131311110e0b0601000000000000000000000003060809131313131313130b0a0805000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f181f262a2f35393a3d404344454646454443403d3a38342f2a252f3437383939393939392f2e2c272119100700000000000000000000000009101920272b33393a4145474a4d4f515252535252504e4b4846423b39352f27221b140b050000000000000000000000000000000000000000000000000001070c14191c2228313d4a5764707d8a93939185786b5e52453828231c19140c070000000000000000000000000000000006111b262f39424c555e686e7b859298a2a39992867c6f695f564c4f59616c727f8b929ca5a0969083796d665c53493f3327241a1007000000000000000000000000000000000810191e272e343c43474d53555d6064666d6f7173757777787979787877767573706e696763605c54524c46413b322a251e170e06000000000000000000000000000000000000000000000000000001070c141a1d24292c2e34383a3c3f4143444546464645444342403e3b3936302e2b261f1c17110a020000000000000000000000000000000008121b242b3136383939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393931302d28221a120800000000000000000004080a0b1313131313131313131313131313131311100e0b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c2935424e5a6670767979756f65594d4134281b0e000714212e3a4754616d7a87949595959594877b6e6154483b2e2115080000000000000000000000000000000000040d19222d363e48505860676d737a7f83878a8d8f90929292929190908e8b8885807c766f6a6d7a8390969a9992867c6f695e53463a2d2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151c232832373b4246484b4e505152535252504e4c4847433c39352f28222b30394045464b4f5152535251504e4b4a463f372d23180d0100040f19242d353d42454646464646464646464646464646464646464646464646464646454443413f3d3a38352f2c29241e1a140c06000000000000000000000000000008111a21272c2f30393939393939393939393939393939393939393939393939393939393939393939393939393939393931302d28221a120800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b1218212a31363a4145474a4d505152525352514f4d4a4745403936313a4044454646464646463c3b38322b22190f04000000000000000000020a131b222b32373e44494c5254575a5c5e5e5f5f5f5e5d5b5855534d47454039332d261d170e06000000000000000000000000000000000000000000000000000002090e111724313d4a5764707d8686868684786b5e5245382b17110e09020000000000000000000000000000000000000a141d27303a434c565f696f7c869299a3a29892857b6e685e554b505a626d73808d939da69f958f82786d655b50443f362c22190f04000000000000000000000000000009111a222a303940454e53575f62676d7175797b7d8082838485858685858483817f7d7b7874706d66615e56524c443e36302920180f07000000000000000000000000000000000000000000000000030b12181f252a2f35393a404446494c4e5051525253525251504e4c4a4746413c3a37312b28221c140b070000000000000000000000000000040f19242d353d4245464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646463e3c39332c241a1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d69768286868175685c4f4235291c0f000714212e3a4754616d7a87888888888888877b6e6154483b2e21150800000000000000000000000000000000000007101b242d363e464e555c60676d72767b7e80828485858685848483817e7c79746f6a625f686e7b848d8d8d8d8d857b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d151e262e343d43474d5354585b5d5e5f5f5f5e5d5b5955534e4745413a3129343c424b5153585c5e5f5f5f5e5d5a585651493f34291d1206000915202b353f474e5253535353535353535353535353535353535353535353535353525251504e4c494745403a39352f2a251f17110a03000000000000000000000005101a232c33383c3d46464646464646464646464646464646464646464646464646464646464646464646464646464646463e3c39332c241a100500000000000004090e111213131313131313131306040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090e111213131313131313131306040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151c2328333b42464c5254575a5c5e5e5f5f5f5e5c5a5753514b46423b454c50525353535353534948433d342b21160a0000000000000000000a141c252d343d43475055565d606466696a6b6c6c6c6b6a6865615f5753514b443f382f292018100600000000000000000000000000000000000000000000000000000000061623303c4955616c70797979797872685c5043372a1e06000000000000000000000000000000000000000000020b151e28313b444d57606a707d87929fa3a19791847a6e675d544a515b636e74818e949ea79f948e81776c605b51483e342b21160a0000000000000000000000000009121b232c343c424b51585f62696e747a7d8185888a8c8f9091919292929191908e8c8a8884807d79736d68615e565046413a322a2119100700000000000000000000000000000000000000000000060d151d24293136394045474a515356585a5c5e5e5f605f5f5e5d5b595754524c4847433c38332d261d18120b030000000000000000000000000915202b353f474e52535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534a49453e362c22170c00000000000000000000000000000000000000010406070a0c0e101112131313121211100e0c0a070604010000000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000713202d3a4653606d787c7c7c7c7c7c7c7c786d6053463a2d2013070000000000000000000000000000000000000009121b242d343d434b51555d6065696e717375777879797978777674716f6d66625f58565e696f7c8181818181807f7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2730383f444e54575e6164676a6b6c6c6c6b6a6865625f5854524c433f353c464e545c6065686b6c6c6b6b696765625b51463a2e221509000e1a26313d4751595e5f60606060606060606060606060606060606060606060605f5f5f5e5c5b595653514b4745413a363028231c150c05000000000000000000000b16212c353d44484a53535353535353535353535353535353535353535353535353535353535353535353535353535353534a49453e362c22170c0000000000080f151a1d1f20202020202020202013100c0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f151a1d1f20202020202020202013100c070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e272e343f454d53565d606366696a6b6c6c6c6b696763605c55534d444f575c5f60606060606056544e463d32271b0f030000000000000009121c262e373f464e545a6164686d7173757778797978787674726e6965605d555049413a322a221810060000000000000000000000000000000000000000000000000000000814202d3944505a61646c6c6c6c6b6860564b4034281b0f00000000000000000000000000000000000000000000030c161f29323c454e58616b717e8b919ca4a0969083796d665c5349525c606d78828f959fa69e938d80736d625a50473d32271b0f03000000000000000000000009121b242d353e464e545c606a6f757b81868a8e929797999b9d9d9e9f9f9f9e9d9d9b999796918d8985807a746e68615a524c443c332b2219100700000000000000000000000000000000000000000910181f272f353b42464b5153545c60636567696b6b6c6c6c6b6b6a686664615e5655534e46443f382f28231d150c0500000000000000000000000e1a26313d4751595e5f606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060575550483e33281c11040000000000000000000000000000000104080d11131417191b1d1e1f1f20201f1e1e1d1b19161413100d0704000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f0006121f2c3844505c666d6f6f6f6f6f6f6f6f6d665c5144382c1f1206000000000000000000000000000000000000000009121b222b313940454b5154575e616467696a6b6c6c6c6b6a69676562605c54534e4d575f6a6f747474747474726d62564a3d3124180b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d273139424a50586062696e71747777787979787775726f6a66605d56504540454e5860666d717578797978777674726d62564a3d3124180b00111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6a69676563605d5554524c46423b342e261e170f06000000000000000004101c27333d474f55566060606060606060606060606060606060606060606060606060606060606060606060606060606060575550483e33281c110400000009121920262a2c2c2d2d2d2d2d2d2d2d1f1c18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121920262a2c2c2d2d2d2d2d2d2d2d1f1c18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121c273039404451575f61686d7073767778797978777673706d67615e57505761686b6c6c6c6c6c6c6260584e43382c1f130700000000000006101b242e384049515860626c70757a7d808284858586858583817e7b77726d67605b534c443c342a22180e05000000000000000000000000000000000000000000000000000004101c28333e48505557606060605e5c564e453a2f23170b0000000000000000000000000000000000000000000000040d17202a333d464f59626c737f8c929da5a0958f82786d655b5044505c666d79839095a0a59d928c7f726c61594f43382c1f13070000000000000000000007101b242d363e474f585f666d737c82878e92989b9ea2a9a6a8aaa8a7a6a6a6a7a8a9a8a6a8a19e9a97928c86807a716c615e564d453c342b22190e0500000000000000000000000000000000000009121b222a313940454d53555d6065666d6f72747677787979797877767573716e6867625f5853504a423d342e271e170e0500000000000000000000111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d2114080000000000000000000000000002080d1113191d2021232628292b2c2c2c2c2c2b2b2a28252320201d1813100c0700000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f0003101c28343f4a545c606262626262626262605c544a4034281c10040000000000000000000000000000000000000000000910191f272f343a4145474d5254575a5c5d5f5f5f5f5e5d5d5b585553514a4743454e585f6267676767676765625b51463a2e2215090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c18242f39434b545c606a6f757b7e8183848586858583817f7c78726d68625a514b4d57606a6f797e82848586858483817f7265584b3f3225180c00121f2c3845525e6a7579797979797979797979797979797979797979797979797979797877767472706d6765605d56524d443f38302921180f06000000000000000714202c38444f5961636c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d211408000008121b242b3136383939393939393939392c29231d150d03000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b242b3136383939393939393939392c29231d150d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e39424a515b63696e747a7d808384858586858482807d79746e69605b536873787979797979796f6a6054483b2e2215090000000000030e18222d36404a525b626a6f767d82868a8d8f919192929291908e8b88847e79716c655e564e463c342a20170c0300000000000000000000000000000000000000000000000000000b17222c363e44494a5353535352504b453c33281e1207000000000000000000000000000000000000000000000000050e18212b343e47505a636d74808d939ea69f948e81776c6053464a545d676d7a839196a1a49f93887e716b6054483b2f221509000000000000000000050e19222d363e485059616a6f7980878f93999fa3aaabaaaaa29f9d9b9a9a999a9a9b9d9fa2aaa9aba9a19e98928d857e756d685f574e463c342a20170c030000000000000000000000000000000009121b242c343c434b51575e61676d7175797c7f81838485858685858483817f7d7a77736f6a64605b544f454039302920170f05000000000000000000121f2c3845525e6a7579797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979716c6155493c3023170a000000000000000000000001080d13191d2024292c2d303335363738393939393837363432302d2c29241f1c18120b060000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f00000c17232e38424a5053555555555555555553514a42392e23180c0000000000000000000000000000000000000000000000070d151d23292f35393b4246474a4d4f51525253525151504e4b4946444039373c464e53555a5a5a5a5a5a585651493f34291d120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e2935404b555d666d747c82878b8e909192929291908e8c88847f7a716d605d55535f696f7c848b8f9192929291908d86796c605346392d20130013202c3946535f6c798786868686868686868686868686868686868686868686868685858483817f7c7976726d68615e57504a423b332a22180f050000000000000916232f3c4855616b707979797979797979797979797979797979797979797979797979797979797979797979797979797979716c6155493c3023170a00040f19242d353d424546464646464646464638342f271f150b01000000000000000000000000000000000000000000000000000000000000000000000000000000040f19242d353d424546464646464646464638342f271f150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404a545c606d727b81868a8d8f9191929292918f8d8a85807b726c655c6b78858686868686867c6f6256493c2f23160900000000000a15202a343e48525c636d727c838a8f9299999c9d9e9f9f9f9e9d9b9895908b857e776d685f584e463c32291e150a000000000000000000000000000000000000000000000000000005101a232c33393c3d464646464543403a332a21170c0100000000000000000000000000000000000000000000000000060f19222c353f48515b606c78818f94939393938c7f7366594c424b555d686e7b84919793939a92867c6f6356493c302316090000000000000000020d17202b343e48505a616b707c838c92999fa4abaca7a09d999892908f8d8d8d8d8d8f909298989c9fa4abaaa29f97928a827a6e6960584e463c32291e150b00000000000000000000000000000008121b242d363e464e555d60696e74797e8285898b8d8f91919293929291908e8c8a8784807c76716c666059514b433b332921170e05000000000000000013202c3946535f6c79878686868686868686868686868686868686868686868686868686868686868686868686868686868686868686867e7164574a3e3124170b00000000000000000000040c13191e24292c2f35393a3d3f4143444546464645454443413f3d3a39352f2c28231d17110a02000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000006111c2630383f444649494949494949494644403930271c1207000000000000000000000000000000000000000000000000030b12181d24292c30363a3b3e40424445464646454443413e3c3a38342e2b343c4347484e4e4e4e4e4e4b4a463f372d23180c010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303845515d676d7880898f93999a9d9e9f9f9f9e9d9b9896918c857e756d675d58626e7b8691969b9e9f9f9e9e9c9386796c605346392d20130013202c3946535f6c79869293939393939393939393939393939393939393939399929292918f8e8c8986827e7a746e69605c544d453c342a21170c0200000000000a1723303d4a5663707d86868686868686868686868686868686868686868686868686868686868686868686868686868686867e7164574a3e3124170b000915202b353f474e5253535353535353535345403931271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000915202b353f474e5253535353535353535345403931271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000030e18212c3844515c666d757f878d9298999c9d9e9f9f9f9e9c9a98928d867f776d666679869293939393887b6e6255483b2f22150800000000030f1b26313c46505a636e737f8790949c9fa3aba8a5a3a1a1a1a3a5a7a7a09d97928b827a6f6a5f584e443b30261c1106000000000000000000000000000000000000000000000000000008111a22282d3031393939393837342f2821180f0500000000000000000000000000000000000000000000000000000007101a232d364044505b666d79828686868686868275695c4f42434c565e696f7c858686868686867f7265584c3f3225190c000000000000000009141f29323d46505a626c717d8690959fa3ababa49f9b95908c898584828180808081828385888b8f93999fa2aaa9a19e938f847b6f6a60584e443b30271d12070000000000000000000000000006101a242d363f4850585f676d737b80858b8f9298989a9c9e9e9f9f9f9e9e9d9b999795908d88837e786f6b605c554d453b332920170c030000000000000013202c3946535f6c798692939393939393939393939393939393939393939393939393939393939393939393939393939393939393938a7e7164574a3e3124170b000000000000000000070d161e24293035393a4145474a4c4e505152525353525151504e4c494745403a38342e27221b140b060000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f00000c17232e38424a5053555555555555555553514a42392e23180c0000000000000000000000000000000000000000000000000001070c13181d20252a2d2e313436373839393938373634322f2d2c2823222a31373a3c4141414141413f3d3a342d251b110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3842505a606d79828d929b9fa4ababa39f9d9c9b9c9d9fa19e97928b82796d685f6a76828f98a1a8aaa39f9995949386796c605346392d20130013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa39f9f9e9d9c9a9899928f8b86817b736d665e574e463c33291e140a00000000000a1723303d4a5663707d899393939393939393939393939393939393939393939393939393939393939393939393939393938a7d7164574a3e3124170b000e1a26313d4751595e5f606060606060605f514b43392f23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000e1a26313d4751595e5f606060606060605f514b43392f23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000915202c38434f59606d78818c92999fa2aaa9a8aaa29f9e9e9e9fa29f98928c81786d6d798699a39f9f94877a6e6154473b2e2114080000000006121f2b37434e58626c73808b92999fa6aca49f9c989695949596989c9fa4a9a19e948f847c6f6a5f564d42382e23170c0300000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d2b2a28231e170f06000000000000000000000000000000000000000000000000000000000008111b2428333f4a545c676d767979797979797570655a4d413a444d575f6a6f78797979797979726d62564a3e3124180b00000000000000030d1925303b444e58626c717e879298a0a7afa79f99938e88837f7c79777574737373747577797c7f83878d92989ea5ada59e9691857c6f6a5f564c42392e23180c030000000000000000000000030c18222c363f48505a616a6f7980868d92979c9fa2aaa7a9a8a7a6a6a6a7a8a9a8a6a7a09d9a94908a837c746d675e574d453b32291e150a0000000000000013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b00000000000000000810181f282f353a4145474c525456595b5c5e5f5f5f5f5f5e5e5d5b585653514b46454039332d261d180f0700000000000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f0003101c28343f4a545c606262626262626262605c544a4034281c1004000000000000000000000000000000000000000000000000000001070d11141a1e20212427292a2c2c2c2c2b2a2a282522201f1c181820262b2e2f34343434343432312e29231b1309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616c74818e949da4aca7a09d9992908f8f8f9192999a9e9f948f837a6d666f7c88949faaaea398928c88878886796c605346392d20130013202c3946535f6c7986929facacacada7a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a6a7a8a9a7aba39f9c98928d867f786e695f584e453b30261c1106000000000a1723303d4a5663707d89969f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b00111d2a36424e59636a6c6c6c6c6c6c6c6c6c5c554b4034291c10040000000000000000000000000000000000000000000000000000000000000000000000000000111d2a36424e59636a6c6c6c6c6c6c6c6c6c5c554b4034291c1004000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313b4854606b74808d939fa3ababa49f9b979892919192939a989d9f938f82786d7a8794abb4a094877a6d6154473a2e211407000000000815212e3a47535f6a717e8b929fa3aba69f9a938f8c89888788898c90939a9ea6a69f9691857c6f685e544a3f34281f1409000000000000000000000000000000000000000000000000000000050b10141617202020201f1e1b17120c0500000000000000000000000000000000000000000000000000000000000000091217222d38424b555c60696c6c6c6c6c6c69655e54493d323b454e585f626c6c6c6c6c6c6c65625b51463a2e221509000000000000010b151f2a36424d56606a717e889299a2aaafa49c959087817c77726f6d6668676766676768666c6f72767b80868e939fa3aaa8a09792867c6f685e544b40342820150900000000000000000000000b151e2a343e48505a626c717c848c92989fa2a9aca8a8a09e9c9a9a999a9a9b9d9fa3ababaaa69f9c95908781796e695e574d443b30261c110600000000000013202c3946535f6c7986929facacacaea9a7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a4978a7d7164574a3e3124170b0000000000000008111a222a313a41454c5254565d60636668696a6b6c6c6c6c6b6a69676563605d5553514b443f382f2a21191107000000000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f0006121f2c3844505c666d6f6f6f6f6f6f6f6f6d665c5144382c1f1206000000000000000000000000000000000000000000000000000000000104090e111414171a1c1e1f1f201f1e1e1d1b18161312100c0e151b1f21222727272727272524221d18110900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c66717e8b939ea6aea59d95908a86838282838486898d92979f959083786d73808d99a6b0a89f9286807c7a7b7d7063574a3d3024170a0013202c3946535f6c7986929facb9ada39b9898989898989898989898989898989899999a9c9ea1a8a9acaaa29f98928c837b6e6a5f574d42382e23170b010000000a1723303d4a5663707d8996a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1978a7d7164574a3e3124170b00121f2c3845525e6a75797979797979797976675c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000121f2c3845525e6a75797979797979797976675c5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000006121e2b37424e57636f7c87939fa5afa9a199938f8a878584848586888c90959e948d80747b8794a1ada093877a6d6054473a2d2114070000000713202c38444f59626f7c86929fa4afa49c948f87827f7c7b7a7b7c7f83878f949fa3a8a19791857a6e665c50443b31261a0e030000000000000000000000000000000000000000000000000000000004080a0a1313131312110f0b070100000000000000000000000000000000000000000000000000000000000000000006111c262f39434b51535d6060606060605c5a544c423729333c464e53555f606060606060585651493f34291e120600000000000007121d27313946525e696f7c86929aa3ababa39f928d837c756f6a6662605c545a5a5a5a5a545b606265696e747b818a9298a2a9a9a19891847a6e665c51453c31261a0e0500000000000000000007121d27303c46505a626c717e8691969fa2aaaba39f9b9796918f8e8d8d8d8d8f9092999a9ea1a9aba79f9a938d837b6e695e564c42382e23170c04000000000013202c3946535f6c7986929facb9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a978a7d7164574a3e3124170b00000000000007101a242c343c434c51565d6065686d707274767778797979787877767472706d6764605c555049413c332b231910070000000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000713202d3a4653606d787c7c7c7c7c7c7c7c786d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000020507080b0d0f11121313131211100e0b0907060400040a0f1215151b1b1b1b1b1b181815120c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7884919ea5afa69d938e837d797776757677797c80858c9298958e81747683909ca9aca0958a7e736f6e6e706b6155483c2f2316090013202c3946535f6c7986929facb9a79b918b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8c8d8d8f9196979c9fa3abaaa29f9590847c6e695e544a3f34281d13070000000a1723303d4a5663707d899494949494949494949494949494949494949494949494949494949494949494949494949494948a7d7164574a3e3124170b0013202c3946535f6c798786868686868686796d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c798786868686868686796d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f6a76828f9aa4afaba1979287827d7a79787778797b7f838a9196928a7e7b8895a1ada093867a6d6053473a2d2014070000000916222f3b4854606b76828f98a2aea49c928c827b7672706e6e6e7072767c828b9299a3a9a1979082786d60574d42362a20150a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d273139404547505353535353534f4d49423930212a343c434748525353535353534c4a463f372d23180d010000000000000c18232f3943505a616e7b859198a3acaca399928b80786f6a625f585653504a4e4d4d4d4e4a505355575e61696e757e869297a2aaaaa1969082786d60574e42372b21170b0000000000000000000c18232e39424e58616c717f8a9298a0a8aba49f99928e8a8784828180808081828486898d92979ea1a8aca49f9590847b6e685e544a3f342820150a000000000013202c3946535f6c7986929facb9a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8a7e7164574a3e3124170b0000000000040e19222c363e464e555d60686d72767a7d7f8183848585868685848483817f7c7a75706d67605b534e463d352b22190d0400000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a87888888888888877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000001030405060606050403010000000000000000030608090e0e0e0e0e0e0c0b09060100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a96a0acac9f948e8179716d67696869676d70747a7f869095938a7e7885929fabaa9d9184776c6261616361594f44382c2014070013202c3946535f6c7986929facb2a5988b7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f80808284878b8f92999fa7aea79f9691847b6e665c50443a2f24180d0100000a1723303d4a5663707d87878787878787878787878787878787878787878787878787878787878787878787878787878787877e7164574a3e3124170b0013202c3946535f6c7986929393939393867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929393939393867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b88949facaea39992857d75716e686b6b666d6e72767d84909492857d8996a3aca09386796d6053463a2d201307000005111e2a36424d5663707d89949faaa79d928c80766e69656362616263656a6f767f879299a4a99f948c7f73695f53463c31261a0f010000000000000000000005080a0b1313131313131313131313131313131313131313131313131313131313131313131313130f0f0d09040000000000000000000000000000000000000000020b151f272f34383a4346464646464642413d3730271e222a31373a3c454646464646463f3e3a342d251b110600000000000004101c2934404b55616c76828f97a1aaafa49a92877e736d665f58534e4946443f41404040413f4446484d53565e616c717c859298a2aca89f948d80736a5f53473e33281c10040000000000000004101c2834404b545f6a717e87939fa2aaa9a199938e86827e7a777574737373747577797c80858b91969da5afa79f9691847a6e665c50443c32261b0f040000000013202c3946535f6c7986929facb3a79a8d80808080808080808080808080808080808080808080808080808080808080808080808080807c6f6255483c2f22150900000000020c16202b343e4850585f676d737a7f8386898c8e8f9192929292929191908e8b8986827d79716c655f584f473d342b20160c01000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a87949595959594877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576875818e9ba8afa49a8f82786d66605d555c555c6063676d727b838f9391857b8797a2ada79a8d8074675a545557554f473e33281c10040013202c3946535f6c7986929facada093867972727272727272727272727272727272737475787a7e828790959da4aea9a1969083786d60554b4135291d110400000713202d3a4653606d787a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a796d6053463a2d2013070013202c3946535f6c7986929f9f9f9f93867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929f9f9f9f93867a6d6053473a2d2014070606060606060606060504020000000000000000000000000000000000000000000000000000000d192633404c5966737f8c99a6b0ac9f92877c6f6b64615e56545c6062656c707a8290949083909daaaca09386796d6053463a2d20130700000714202d3a46525e6976828f9ca6aca0958d80736d625f575655545556585f626d727e87939fa6a69f92867b6e61584e43372b1e13080000000000000000060c111517182020202020202020202020202020202020202020202020202020202020202020202020201c1b191510090200000000000000000000000000000000000000030d151d23292c2d363939393939393635312c261e151820262b2e2f3939393939393932312e29231b13090000000000000006131f2c3845515c67707d8a949fa9b0a69f93887e716c605c544e47433c3a38342e3433342d3338393c42464d525a616a6f7c86929aa4afa69f92877b6e62594f44392d20150a0000000000000006131f2c3845515c666f7c869299a4aea8a0979187817b75716d6869676766676768676d7073797e848e939fa4aca8a0969083786d60584e43372b20150a0000000013202c3946535f6c7986929facada0938679737373737373737373737373737373737373737373737373737373737373737373737373736f6a5f53473a2e2115080000000008131e28323d46505a616a6f7a80868b909399999b9c9d9e9f9f9f9f9e9d9c9a9898928e8a847e786e6a60594f463d32281e1308000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a8794a0a2a2a194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000020608080b0e10121213131211100e0b0807050200000000000000000000000000000000000000000000000000000000000000000000000000020507080a0d0f1111121313131211100e0c0906050300000000000000000000000000000000000000000714202d3a46525e697885919eabac9f93877c6f665c54514b4f4b5153555d60696e79818f949083909da9b3a4988b7e7165584b484a48443e352c21160b000013202c3946535f6c7986929facada093867a6d656565656565656565656565656566666769686d71767c838d929da5afa89f958c7f72675d5145392c201307000006131f2c3845515c666d6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6d675c5145382c1f13060013202c3946535f6c7986929facaca093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facaca093867a6d6053473a2d20141313131313131313131212110f0d0a07060401000000000000000000000000000000000000000005111e2a36424d576976838f9ca9b1a79a8d80736a605954524c4a5053555a61676d798290959095a0abaca09386796d6053463a2d20130700000814212e3b4754616e7b87939e9fa39d9083786d605b534d49484748494e535b626c727f8c949faba3988f82756a5f53473a2f24190d010000000000000911171d2124252d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c0300000000000000000000000000000000000000030b12181c1f202a2d2d2d2d2d2d292825211b140c0e151b1f21222c2d2d2d2d2d2d2524221e1811090100000000000003101c28343f4a54606d7984919ea6b0aa9e948c7f736c625a504a423c37322d2c282327272722282b2d31363b42465058606a707e88939fa8aea3998f82766c6155493c31261b0f00000000000004111d2935414b55606d79839098a3aba9a09691857d746e6964615d565b5a5a5a5a555c6063666d7179818b939aa4afa89f958c80736a5f54473d32271b0f0100000013202c3946535f6c7986929facada093867a6d676767676767676767676767676767676767676767676767676767676767676767676767625f584e43372b1f1206000000010d1924303a444e58616c707c848d92989c9fa4a49f9e9c9a9a99999a9a9b9d9fa3a29f9b96918b837c706b60584e443a2f24190d020000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a8794a0adaea194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000104090e121415181b1d1e1f20201f1e1d1a181514120e090401000000000000000000000000000000000000000000000000000000000000000105080e11141417191c1d1e1f20201f1f1e1c1b181513120f0b060000000000000000000000000000000000000815212e3b4854616e7b8797a1adaa9d9083776a5f544b4540424045474b51575f676d78828f9590959fabb0a3968a7d7063574a3d3d3c38332c231a1005000013202c3946535f6c7986929facada093867a6d6058585858585858585858585858595a5a565d60646a6f78808d939eaab1a79e92857a6d6054473a2f24180d010004101c2834404b545c606161616161616161616161616161616161616161616161616161616161616161616161616161616161605c554b4034281c10040013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20202020202020202020201f1f1e1c1a171413110d08040000000000000000000000000000000000000714202d3a46525e697885929fabaca095877b6e61584f4746413f44464850555d676e7b85929da0a7b1aca09386796d6053463a2d20130700000c1926323f4c5965727f8c8f91929996897d70665c5047423d3b3b3b3d4347515a606c77828f99a3aa9f93877c6f62564c4135291d1104000000000009121b22292d30313939393939393939393939393939393939393939393939393939393939393939393939393635312c261e150c020000000000000000000000000000000000000001070c1013141d2020202020201c1b1915100902030a0f1215151f202020202020191815120d06000000000000000006121f2b3844505c66727f8c96a0acaea2988f82776c605a50443f38302b26201f1c171a1a1a171c1f20252a30363e464e58616c73808d96a1acab9f948a7d7064584e43372b1d120700000000000613202c3945515d67737f8c95a0aaada19791847b706b615e5754524c4e4d4d4d4e4b5153545c60676d747f88939fa5afa79f92877c6f62584e43372b1d120700000013202c3946535f6c7986929facada093867a6d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a55534e463c31261b0f0300000005111d2935414c56606a707e8691969fa2a49f9b9993918f8e8d8d8c8d8d8f9092989a9fa2a19e9590867d706a60564c4135291e13080000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a8794a0adaea194877b6e6154483b2e21150800000000000000000000000000000000000000000000000001080d11151a1e212225282a2b2c2c2c2b2b2a272421211e1a14100d070100000000000000000000000000000000000000000000000000000002080d1114191e20212426292a2b2c2c2d2c2c2b29272522201f1b17110f0a040000000000000000000000000000000916222f3c4955626f7c8895a9b3a79a8d817467584e4239352f34383a40454d555c666d7a85919d9fa7b1afa396897c706356493d302f2c28211a110800000013202c3946535f6c7986929facada093867a6d60534c4c4c4c4c4c4c4c4c4c4c4c4c4d4d4c5254585f666c78818e98a2aeada2978b7e7265554b4035291d100400000c18232e39424b51535454545454545454545454545454545454585c5c5c5c5c58545454545454545454545454545454545453514b43392e23180c000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d2d2d2d2d2d2d2d2d2d2d2d2c2b2a28262421201d1913100c07000000000000000000000000000000000814212e3b4754616e7b8798a2aeaa9d908377695e53463d393634383a3e434c555e69717e8b97a1adb9aca09386796d6053463a2d20130700000a1723303d4a5663707d80828486888a84776b60544a3f37312f2e2f31373f44505b656e7b87929faca49a8e8174685d5245392c2013080000000006111b242d34393d3e46464646464646464646464646464646464646464646464646464646464646464646464642413d3730271e140900000000000000000000000000000000000000000000040607101313131313130f0f0d09040000000003060809121313131313130c0b0906010000000000000000000713202d3a4653606d7884919ea8b2a99f92867b6e655b50483e342e261e1b1312100c060d060b0f12131a1f252a343d46505a606d7984919ea8b0a69c8f83766a5f5347392e23180c00000000000714212d3a4754606d7a85929fa7b0a69e92857b6e696059524d47464141404040414045464b51555d606d727f8b939ea9afa3998f82766a605447392f24180c00000013202c3946535f6c7986929facada093867a6d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4847433c342a20150a000000000713202d3946525d686f7c869298a0a7a099938f8a868482818080808081828486898d92989da59f9892867c6f685d52453a3024190d0100000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a8794a0acaca194877b6e6154483b2e2115080000000000000000000000000000000000000000000000070c13191d20262b2e2f3234363839393938373634312e2d2a25201d18120c0400000000000000000000000000000000000000000000000002090e13191e20252a2d2e30333537383839393938373634322f2d2b27221b1b16100b04000000000000000000000000000a1723303d4a5663707d8996a3b0a6998c7f7366594c402f2924292c2f353b434b545d68707d8a959fabb7afa396897c706356493d3023201c1610080000000013202c3946535f6c7986929facada093867a6d6053473f3f3f3f3f3f3f3f3f3f3f3f40414145474e545b666d7a85929fabb3a99c908376675d5145392c201306000007121d2730394045464747474747474747474747474747505a6264686868686865625b5147474747474747474747474747474645403930271d1207000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a3939393939393939393939393938373533312d2c29241f1c18120c060000000000000000000000000000091623303c4956636f7c8996aab4a79a8e817467574d42342d2a282b2d313a434d57606d7985929eabb8aca09386796d6053463a2d20130700000916222f3c4854606b70737577797b7d7d7063594f42382e26222122262b333f49535f6974818e9aa6ac9f92867a6d6054473a2f24190d010000000c17222d363e45494b5353535353535353535353535353535353535353535353535353535353535353535353534f4d49423930261b10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c5664707d8a96a1adada1978c7f72695e53493f3628231c140c0a060300000000000306090e1419222b343e45515d67717e8a96a0acab9f94887c6f62544b4034281c100400000006131f2b37434e5866727f8c97a2adaa9e948a7d70695f574f46423b3935303433342e34383a40454b515b626d74818e97a1adab9e94897c6f62554b4035291d1004000013202c3946535f6c7986929facada093867a6d6053474040404040404040404040404040404040404040404040404040404040404040403c3a37312a22180e0400000005121e2a36424d57616d7a859298a3a69f959087827d7a77767474737373747577797d80868e929ba3a29891847a6d60564c4135291d110400000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a87949f9f9f9f94877b6e6154483b2e211508000000000000000000000000000000000000000000030b12181e24292c31373a3b3e414345454646454443413e3b3a36312c29241d160d0802000000000000000000000000000000000000000000070c141a1e252a2d3036393b3d4042444445464646454443413f3c3937332d2b27201b160d070100000000000000000000000a1724313d4a5764707d8a97a3b0a5988c7f7265594c3f2e23181c1f24293139424c56616c7683909da9b3afa396897c706356493d302316100b05000000000013202c3946535f6c7986929facada093867a6d6053473a3232323232323232323233332f35393c424a545e68737f8c99a9b2ac9f9286796d6053473a2d2014070000000b151e272e34383a3b3b3b3b3b3b3b3b3b3b3b3b3b4956626c717575757575726d62564a3b3b3b3b3b3b3b3b3b3b3b3b3b3a38342e271e150b00000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053474646464646464646464646464645454442403d3a39352f2c28231d17110a030000000000000000000000000a1724313d4a5764707d8a97a3b0a5988c7f7265594c3f31261e1c1f2028313b45515c6673808d99aab4aca09386796d6053463a2d20130700000714202c38444f5960636669666d6f71706b6054473d30262c2c2c2b2a222d38414d57626e7b88949faba3988b7e7265554c4135291d1104000005111d29343e485056586060606060606060606060606060606060606060606060606060606060606060606060605c5a544c42372c21150900000000000002070a0c0d131313131313120908060300000000060b0e10111313131313130f07060300000000000000000000000000000000000000000000000714202d3946525e6876828f9ca8b2ab9e9185796d60574d41382d2417110a02000000000000000000000002091019222935404b55606c7884919dabb0a69a8e8174665c5145382c1f13060000000815222e3b4754606a7884919ea9b1a79c8f82756c61574d453d36302d292427272723282c2e343a4145515b606d7a85929eaab0a69b8e8275675d5145392c1f1306000013202c3946535f6c7986929facada093867a6d6053473a34343434343434343434343434343434343434343434343434343434343434342f2e2b2620181006000000000714212d3a46535f6974808d97a1a99f948f837c75706d686967676666676768666d70747a818b919ba5a1968d8074685d5245392c20130700000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a87939393939393877b6e6154483b2e2115080000000000000000000000000000000000000000060c151d23282f35393c4247484b4e50515253535251504d4b4846423b39352f281f19130c04000000000000000000000000000000000000030b12181f252a3036393b4146474a4c4f50515253535252514f4e4b4846443f3837322c272118130c04000000000000000000000a1723303d4a5663707d8996abb5a6998d807366544a403428211e1a181f27303a44505a64707d8a97a2adafa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d6053473a2d252525252525252525262724292c2f38424c56626f7b8896a1adaea399897c6f6256493c2f231609000000030c151d23282c2d2e2e2e2e2e2e2e2e2e2e2e313e4b5864717e82828282827f7265584c3f322e2e2e2e2e2e2e2e2e2e2e2d2c28231d150c0300000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d605353535353535353535353535353535252514f4d4a4745413a38342e28231c150c0700000000000000000000000b1824313e4b5764717e8a97a4b0a4978a7d7164574a3e3124171012161f2834404b54626f7c8998a3aeaca09386796d6053463a2d201307000004101c27333d474f54565a545c6062646360594f44353638393939383734312f3c47535f6a76838f9ca9aa9c908376675d5145392c20130600000815212d3945505a62646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69655e54493d3125190d0000000000070d1316191a2020202020201f1515120f0a04040b11171a1d1e2020202020201c1312100b060000000000000000000000000000000000000000000814212e3b4754616e7a87939facafa3998c7f72675d51453b2f261b1206000000000000000000000000000000071018242f3944505b66727e8b99a3aeac9f9285796d6053463a2d2013080000000916222f3c4955626f7c8896a1acaca095897c6f625a50453b332a25201d191a1a1a181c1f23282f353f45515d67727f8b98a2aeac9f9286796d6053473a2d201406000013202c3946535f6c7986929facada093867a6d6053473a2d2727272727272727272727272727272727272727272727272727272727272722211f1b150e0600000000000815222e3b4855616e7b86929fa9a1978f82796e6a64615d565b5a5a595a5a545c6063686d747f8b939ea89f92867a6d6054473a2d21140700000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a86868686868686867b6e6154483b2e211508000000000000000000000000000000000000000810181e272e343a4145474d5355585b5d5e5f5f5f5e5e5d5a5754534d474540393129251e160e0500000000000000000000000000000000050c151c232830363a4146474d525457595c5d5e5f5f605f5f5e5c5a585553504947433d383229241d160d060000000000000000000915222f3c4855626f7b8899a3afa89b8f8275665c51443a322d2b2627272628323e4653606d7985929fabafa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201919191919191919191a191d20262f3a47535f6a7885919eabb5ab978b7e7164584b3e3125180b00000000030b12181c1f20212121212121212121212734404d5a6773808d8f8f8f8e8174685b4e41352821212121212121212121201f1c18120b030000000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d606060606060606060606060606060605f5e5d5b595754514c46454039342e261e191009000000000000000000000b1825313e4b5864717e8b97a4b0a396897d7063564a3d3023170a060d18232e3a4653606d7986929facaca09386796d6053463a2d2013070000000b16212b353d44484a4d4b5153555756544f473e4143454646464543413e3a39424e5765727e8b98a7ac9f92867a6d6054473a2d21140600000a1724303d4956626c717979797979797979797979797979797979797979797979797979797979797979797979797570655a4d4135281b0f000000010a12191e2325262d2d2d2d2d2d2c22211f1b150e0e161d22272a2a2d2d2d2d2d2d29201f1c17110a02000000000000000000000000000000000000030f1b27333f495364717e8b9aa4afac9f92867a6e61554b4033291d140a000000000000000000000000000000000007121d28333f4a54616d7a86929facaea298897d706356493d2f24190d0100000d1a2633404d596673808c99a8b2aa9d9083776a6054483e332a211a14110d080d070c1013181d242935414c55606d7985929fabaea2988a7d7164574a3e2e23170b000013202c3946535f6c7986929facada093867a6d6053473a2d201a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1515120f0a04000000000004101c2934404b556673808c99a2a99e91857a6d675f5854524c4e4d4d4d4d4e4b5153565d606d75818e9ba9a2988b7e7164584b3e3125180b00000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000713202d3946525e6876797979797979797976695e52463a2d20140700000000000000000000000000000000000009121a222a303940454c5254575f626567696b6c6c6c6b6a696764615e5753514b433e35302820170e050000000000000000000000000000050e171e272e343b42464c5254565e616366686a6b6b6c6c6c6b6a69676562605b53544e48443d352f281f180f0600000000000000000714202d3a4753606d7a86929facab9e9285796d60564c443d3a373134333332323845515c6675828f9ca8afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140c0c0c0c0c0c0c0c080d11141d2b37434e58697683909ca9b2a5988c7f7265594c3f3226190c000000000000070c1013131414141414141414141a2734404d5a6773808d9a9b9b8e8174685b4e4135281b1414141414141414141313100c0700000000000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6a686664605d5553514b443f38302b221b120a0100000000000000000b1825323e4b5865717e8b98a4afa296897c6f6356493c302316090007131f2c3845515c667683909da9aca09386796d6053463a2d201307000000050f1a232b33383c3d40404546484a494845474a4d505152535252504e4b4746414754616e7a8795a0aca3998a7d7064574a3d2e23170b00000b1825313e4b5864717e8686868686868686868686868686868686868686868686868686868686868686868686868275695c4f4236291c0f0000000a131c242a2f3233393939393939392f2e2b2620181720272e333637393939393939352d2b28231c140c02000000000000000000000000000000000005121f2b3744505b6575818e9bacb6a99c8f8276685e5243392f21170b020000000000000000000000000000000000010b17222d3846525d6875828f9ca8b4aa9a8d807367564c4135291d11040005111e2a36424d576976838f9ca9b5ab998c7f7366584e43362c21180f0905010000000004070c1319242f3a45515d6774818e9aa7b4aa9b8e817468544a3f34281c10030013202c3946535f6c7986929facada093867a6d6053473a2d20140d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d090806030000000000000006131f2c3845515c6777848f929797988b7f72685d554e4746414141404040414045464c525b626f7c8897a2aa9b8e8174685b4e4135281b0e02000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f0005111d2a36414c565e6c6c6c6c6c6c6c6c6c6c5e574d42362a1e1205000000000000000000000000000000000009121a242c343c434b51565d6066696e7174767878797978777674716e6965605d555046413a322920170e05000000000000000000000000050e172029303940444d52565e6165686e70737577777879797978777674726f6c65626058544f45413a312a21180f060000000000000006131f2c3945515d677783909dabada1978a7e71685e564f484742424140403f3f3f404b546673808c99a6afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000001040b1b2631424f5c6875828f9ba8b2a6998c7f7366594c403326190d000000000000000004060708080808080808080d1a2734404d5a6773808d9aa69b8e8174685b4e4135281b0e0808080808080808070604000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867979797979797979797979797979797979797878777573706d6764605c54504a423d342d241c130a01000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f2316090004101c2834404b546875828f9ba8aca09386796d6053463a2d2013070000000008111a21272c2f302e34383a3c43474b5154575a5c5e5f5f5f5e5d5a5854524c48525e687784919daaab9a8d807467544a3f34281c1003000b1825313e4b5864717e8b939393939393939393939393939393939393939393939393939393939393939393938f8275695c4f4236291c0f000007121c252e353b3f40464646464646453c3a37312a22202932393f4344464646464646423a38342e261e140a00000000000000000000000000000000000613202d394653606c7885929eabb3a9988b7f7265564c4131271d0f050000000000000000000000000000000000000006111c2935414c5665727f8b98aab4aa9d918477685d5245392c201306000714202d3a46525e697885929eabafa399897c6f6256493d32231a0f060000000000000000000108131e2935404b5564707d8a97a9b3aa9d908377665c5044382b1f12060013202c3946535f6c7986929facada093867a6d6053473a2d2014070101010101010101010101010101010101010101010101010101010100000000000000000000000714202d3a4753606d79808285878a8c86796d60564c433c393530343333342e34383a4147535f6a7885929fa99d9083766a5d5043372a1d1004000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f00010d1925303a444c525f60606060606060605f524d453b30251a0e020000000000000000000000000000000007111a242c363e464e555c60686d72777b7e818384858686858483807e7b76716d67615a524c443b332920170b0200000000000000000000040d172029323b424a51575e61686d72777a7d7f82838485868685858482817e7b78746f6a636059514b433b332a21180d0400000000000004101d2935404b5566737f8c99a3aea99e91847a6d68615955534d4f4e4d4c4c4c4b4b4c5865727f8b98a5afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000001040a1b2835424e5b6875818e9ba8b2a5988b7f7265584c3f3225190c000000000000000000000000000000000000010d1a2734404d5a6773808d9aa69b8e8174685b4e4135281b0e0200000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facb9a2958b86868686868686868686868686868686868685858482807d7a76716d66605c544e463f372e251c1309000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000c18232e414e5b6874818e9ba7aca09386796d6053463a2d2013070000000000080f161c2022232a313a41454e53555d606467696b6c6c6c6b6a6764615d56544f566774818d9aa7a99c908376665c5044382b1f1206000b1825313e4b5864717e8b979f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9c8f8275695c4f4236291c0f00020d19242e3740474b4d535353535353524847433c342a21323b444a4f515353535353534f46443f3830261c1106000000000000000000000000000000000815222e3b4855616e7b8897a1adada197887b6e6255483b3022150b0000000000000000000000000000000000000000000d1924303c4855626f7b8898a2aeaca095877a6d6054473a2d211407000814212e3b4754616e7b8797a2adac9f92867a6d6053473a2d2014070000000000000000000000010d18242f3b4754616e7a8797a1adac9f9286796d6053463a2d2013070013202c3946535f6c7986929facada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c676d7376787b7d807f73675d51443a312d29242727262723282c3037434e586a7784919daa9e9184776b5e5144382b1e1105000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000008131e28323a41465353535353535353534846423b33291f140900000000000000000000000000000000050e19232c363e4850585f676d737a7f84888b8e90919292929191908d8a87837e79716c615e564d453b32291d140a000000000000000000010c161f29323b444c545c60696e757a7f83878a8c8f90919292939292918f8d8b8885817c76706b605d554d453c332a20160c010000000000000c18242f3b4854616e7b86929fa8ada19690827a706b65615f575c5a5a5959585858585865717e8b98a4afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140a0a0a0a0a0a0a0b070d10141b2a36414c566976828f9ca9b4aa978a7e7164574b3e3124180b000000000000000000000000000000000000010d1a2734404d5a6773808d9aa69b8e8174685b4e4135281b0e0200000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140b0b0b0b0b0b0b0b0b0a0a0907060401000000000000000000000000000000000000000000000013202c3946535f6c7986929facb9a79d959393939393939393939393939393939399939291908e8c8a86837e79726d666058514940372e251b10070000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f2316090000071a2734404d5a6773808d9aa6aca09386796d6053463a2d201307000000000000050b1019232b343c434c52585f62676d71747678797979787674716d686360595865717e8b98a4ac9f9285796d6053463a2d201307000b1825313e4b5864717e8b97a4a5a5a5a5a5a5a5a5a5a5a5a7a9aeacacacafa9a7a5a5a5a5a5a5a5a5a5a5a59c8f8275695c4f4236291c0f0007131e2a3540495257596060606060605f55534e463c332939444d555b5d6060606060605c53504a42382e2317130a0000000000000000000000000000000a1724303d4a5763707d8a96a9b3ab9e928578695f53473a2e2114030000000000000000000000000000000000000000000813202d394653606c7985929facb1a795897c6f6256493c2f231609000916232f3c4956626f7c8995a9b3aa9e918477675d5145382c1f13060000000000000000000000000714202d3946525e687885919eabaea398887b6e6255483b2f2215080013202c3946535f6c7986929facada093867a6d6053473a2d20140c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c07060401000000000000000000000004101c2934404b555c606769696e7073736d63554b403228201d191a1a1e21262b30363e46525e697885919eab9e9184786b5e5145382b1e1205000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f00000c17232e38424a5053555555555555555553514a42392e23180c000000000000000000000000000000020d17202b353e48505a616a6f797f868c9195989a9c9e9f9f9f9e9d9c9a9795908b857e766d685e574d443b2f261b1106000000000000000007121d28313b444d565e666d727b81868c909596999b9d9e9e9f9f9f9e9d9c9a9897918d89837d746d675f574d453c32281e13080000000000000714202d3a46525e6974808d96a1a9a89f9590847d77726e696a6867666665656565646465717e8b98a4afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d6053473a2d2016161616161616171718181d20262d3946525e687784909daaaea298897c6f6356493c30231609000000000000000000000000000000000000010d1a2734404d5a6773808d9aa69b8e8174685b4e4135281b0e0200000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20181818181818181818171716151413110d080705020000000000000000000000000000000000000013202c3946535f6c7986929facb9afa7a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa49f9f9e9d9b9999928f8b857f786f6a625b514940372d22190c0300000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000000000050e19222b353d464e565d606a6f747a7d8083848586858583817e7a76706b625f626f7c8995aaaea298887b6e6255483b2f221508000b1825313e4b5864717e8b979898989898989898989898989a9da4aebaafa59d9a9898989898989898989898988f8275695c4f4236291c0f000a16232f3b47525b63666c6c6c6c6c6c6c625f584e453b323f4a555f676a6c6c6c6c6c6c68605c544a3f3428251c120900000000000000000000000000000c1926323f4c5965727f8c98a5b2a99c8f837669574d42372b1e120600000000000000000000000000000000000000000006121f2b3844505b667783909daab1a4978b7e7164584b3e3125180b000a1723303d4a5663707d8996a3b0a99c90837669554b4035291d100400000000000000000000000005111e2a36414c566a7683909da9b4aa96897c6f6356493c302316090013202c3946535f6c7986929facada093867a6d6053473a2d2019191919191919191919191919191919191919191919191919191413110d0701000000000000000000000c18232f39434b51535a575e61646666635b5143392f20191d2021262b2e31373a41464f59616e7b8796a1aa9d9083776a5d5044372a1d1104000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f0003101c28343f4a545c606262626262626262605c544a4034281c1004000000000000000000000000000008141e29323d47505a616c717c848c92989da0a7a7a7a4a3a2a1a2a4a6a7a79f9d97918a827a6e695e564c41382d22170b01000000000000010d18242f39434d565e686e787f868e92999da0a7a6a8a7a5a4a3a3a4a5a7a9a7a9a19e9a94908981796e695f574d443a2f24190d04000000000005121e2a36424d57606d79849197a1a9a79f969189837f7b78767574737372727271717171717e8b98a4afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d6053473a2d232323232323232324242524292c2f38404b55616e7a86939facac9f9285796d6053463a2d201307000000000000000004060708080808080808080d1a2734404d5a6773808d9aa69b8e8174685b4e4135281b0e0808080808080808070604000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d242424242424242424242424232221201d191514120e0903000000000000000000000000000000000013202c3946535f6c7986929facb9b3a9a19e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9e9fa2aaa2a5a8aba39f9c97928c837c726d635b51493f342b1e150b00000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000000020c17202b343d474f585f686d747c81868a8d8f9192929291908d8b86827d766f6a616d7a8798a2aeaa968a7d7063574a3d3024170a000b1825313e4b5864717e8b8b8b8b8b8b8b8b8b8b8b8b8b8b8d929da9b5a99d938e8b8b8b8b8b8b8b8b8b8b8b8b8b8275695c4f4236291c0f000c1925323f4b57636d73797979797979786f6a5f574d443a434f5b677177797979797979756d665c504440372d241b1108000000000000000000000000000e1b2834414e5b6774818e9aa7b3a79a8d8074675a4d4131261a0e02000000000000000000000000000000000000000000030f1c28333f4a546875818e9ba8b3a6998d8073665a4d4033271a0d000b1724313e4a5764717d8a97a4b0a89b8f8275685c4f422f24180c00000000000000000000000000010d192530424f5c6875828f9ba8b0a3968a7d7063574a3d3024170a0013202c3946535f6c7986929facada093867a6d6053473a2d26262626262626262626262626262626262626262626262626262621201d18130c0400000000000000000007121d2731394045474d4d535457595957514940312720252a2d2e31373a3c42464c5259616b73808d99a9aa9b8e8175685b4f4235281c0f02000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f0006121f2c3844505c666d6f6f6f6f6f6f6f6f6d665c5144382c1f120600000000000000000000000000020b1925303b444f59616c717e8691969fa2aaa9a19e9b9796959595979a9ea1a8a9a19e948f837b6e685e53493f33271e130800000000000004101d2935404b555e696e7a838c92989fa3ababa39f9d9a9897969697989a9d9fa3ababa69f9c938e847b6e695f564c41352921160a0000000000020e1a25303b45515d676f7c8591979ea5a8a09e95908b8885838281807f7f7f7e7e7e7e7d7d808d9aa7afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d6053473a3030303030303030303031312f35393c4149515d67727e8b99a4afa79c8f8275665c5145382c1f1306000000000000070c1013131414141414141414141a2734404d5a6773808d9aa69b8e8174685b4e4135281b1414141414141414141313100c0700000000000013202c3946535f6c7986929facada093867a6d6053473a31313131313131313131313131302f2d2c292422211e1a14100b0600000000000000000000000000000013202c3946535f6c7986929facb9ada1979292929292929292929292929292929292989495989b9fa3aaa9a19e9591877f736d635b51463c30271d1207000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000000008131e29323d464f59606a6f7a81878e92989a9c9e9f9f9f9e9d9a99928f89837c726d687885929faba5988b7f7265584c3f3225190c000815222f3b4855626e7c7f7f7f7f7f7f7f7f7f7f7f7f7f7f808d9aa7b4a79a8e807f7f7f7f7f7f7f7f7f7f7f7f7f7d7063574a3d3024170a000d1a2633404d59667380868686868686857c6f695e564c4344515d6a778386868686868682786d605c52493f362d231a1107000000000000000000000000101c2936434f5c6976828f9ca9b2a5998c7f7266594c3f3326190900000000000000000000000000000000000000000000000b17222d404d5a6773808d9aa6b3a89b8e8175685b4f4235281c0f000b1825313e4b5864717e8b97a4b1a89b8e8275685b4f4235281c070000000000000000000000000000081b2835414e5b6874818e9ba7b0a4978a7d7164574a3e3124170b0013202c3946535f6c7986929facada093867a6d6053473a333333333333333333333333333333333333333333333333333333332d2c29241d160d040000000000000000010b151f272f34383a404246484a4d4c4b464037292c2d3036393a3e4247484d53565e616b707d87929faca2988b7e7265584b3f3225180c00000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000713202d3a4653606d787c7c7c7c7c7c7c7c786d6053463a2d201307000000000000000000000000000a141d2a36414c56606b717e879298a0a8a8a19e97928e8b898888898a8d91969ea1a8a69f9591847a6e655b50443a2f24190d0000000000050f1a232c3945515d676e7b8490959fa2aaa9a19e9992908d8b8a89898a8b8d9092999ea1a9aba59e9691847b6e685d52453d32271b0f03000000000009141f2935414b555f6a6f7c858f939c9fa4a79f9d989892908f8d8d8c8c8b8b8b8b8a8a8a8d929da9afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d6053473d3d3d3d3d3d3d3d3d3d3d3e3e3f4045474e535b606d7984919eababa0958a7d7164544b4034281c100400000000030b12181c1f20212121212121212121212734404d5a6773808d9aa69b8e8174685b4e41352821212121212121212121201f1c18120b030000000013202c3946535f6c7986929facada093867a6d6053473e3e3e3e3e3e3e3e3e3e3e3e3e3d3d3c3a39352f2e2d2a261f1c17110a020000000000000000000000000013202c3946535f6c7986929facb8ab9e9285858585858585858585858585858585858687898b8e92989fa2aaa7a099928b7f736d62584e43392e23180c000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000010d1925303a444e58606b707c848e939a9fa2aaa9a8a4aba39fa3aba39f9c9490877f746d7784919daaa69a8d8073675a4d4034271a0d000814212e3a47535f6a6e72727272727272727272727272727d8a96a3b0a3978a7d72727272727272727272727272706b6155483c2f231609000a1623303d495663707d87929a93939791847b6e685e554b424d5a6774808d93939393938e81746e635b51483f352c231910060000000000000000000000101d2a3643505d697683909ca9b1a4978a7e7164574b3e3124180b0000000000000000000000000000000000000000000000061926323f4c5965727f8c98a5b2a89c8f8275695c4f4236291c0f000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2834414e5b6774818e9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3a39352f281f160c010000000000000000030d151d23292c2d31363a3b3d40403e3b352f35393a3d4146474a4d5355575f61686d747d869299a3a79f92867a6d6154473a2e21140700000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a87888888888888877b6e6154483b2e21150800000000000000000000000006111b262f3846525e68707d879299a3aaa49d96918a85817e7d7b7b7c7d80848a91969fa7a7a0968f82776c60564c4135291c1106000000000b16212c38444f59606d798390969fa7aea59d97918c8683817e7d7d7d7d7e8083868c91979ea5ada8a09691847a6d60594f43382c1f14090000000000020d18242f3a434e585f6a6f7a82898f93999c9fa2aaa29f9d9b9a999998989898979797979a9da4aeafa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d605349494949494949494949494a4a4b4c4b5153585f656c74808d96a1aca4999083786c605346392e23180c00000000030c151d23282c2d2e2e2e2e2e2e2e2e2e2e2e34404d5a6773808d9aa69b8e8174685b4e41352e2e2e2e2e2e2e2e2e2e2e2d2c28231d150c0300000013202c3946535f6c7986929facada093867a6d60534b4b4b4b4b4b4b4b4b4b4b4b4b4a4a49484745413f3b3a36312b28231c140c0701000000000000000000000013202c3946535f6c7986929facada093867978787878787878787878787878787878797a7c7f82868c92989fa7aba39f918b7f726a60554b4034281d12070000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000005111d2a36414c56606a707d8691969fa4acaaa29f9b979599929994979a9e9f99928c81787683909ca9a79b8e8174685b4e4135281b0e0006121e2b37424e575f6265656565656565656565656565707d8a96a3b0a3978a7d706565656565656565656565656361594f44382c201407000916222f3b4854606b717e88939fa4a19691847a6d675d544a4653606c78818e949fa69d938d80736d635a50473e352b22180f0600000000000000000000111e2a3744515d6a7783909daab0a3968a7d7063574a3d3024170a00000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1a99c908376695d5043362a1d10000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d60534c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4745413a31281d1307000000000000000000030b12181c1f20252a2d2e3133332f34383a4045474a4c525457575f6265696e737a81889298a2a8a0958d8073685d5246392d20130700000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a87949595959594877b6e6154483b2e2115080000000000000000000000000b17222d38414f59616e7a859299a3aba49c928d847e787471706f6e6f7173787d8490959fa8a89f948c7f72685d5245382d22170b00000004101c27333c4854606b74818e95a0a8ada39c938e857f7b777472717070717274777a7f858e939ca4ada9a0968e81746b6054483b31251a0e02000000000007131d28313c464e585f686d757c82878b8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abacb5afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d6056565656565656565656565657575859555d60646a6f77808d929da8a59f93877d70655b5044372b1d1207000000000b151e272e34383a3b3b3b3b3b3b3b3b3b3b3b3b404d5a6773808d9aa69b8e8174685b4e413b3b3b3b3b3b3b3b3b3b3b3b3a38342e271e150b00000013202c3946535f6c7986929facada093867a6d6057575757575757575757575757575757565554514c4c4846423b38342e261e18120b030000000000000000000013202c3946535f6c7986929facada093867a6d6b6b6b6b6b6b6b6b6b6b6b6b6b6b666d6d6f72757a808590959fa6aea49f92877c6f675c5145392e23180c0000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000040f19232d3946525e686f7c869298a1a8aba39f98928e8a88878686888a8e92979f9f938d8075828f9ba8a89c8f8275695c4f4236291c0f00020e1a26313c454e535558585858585858585858585863707d8a96a3b0a3978a7d7064585858585858585858585857554f473e33281c1004000713202c38444f59616c727f8b929ca5a0969083796d665c5349505b666d78828f959fa59c928c7f726c625a50473d342a21180e05000000000000000000111e2b3844515e6b7784919eaaafa396897c706356493d3023160a00000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1aa9d9083776a5d5044372a1d11000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d605959595959595959595959595959595959595959595959595959595959595954514b433a2f24180d0100000000000000000001070c1013141a1e2124293036394045474b515357565e616467696e72767b80858d939aa2a79f969183796d60564c4135291d110500000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a8794a0a2a2a194877b6e6154483b2e2115080000000000000000000000030f1b27333f4953616b75828f97a1aba49c918c8079716c66646362626264666c707a839096a0aca69f92857a6d60544a3f33281c0f0300000714202c38444f5963707d89939ea7aea49c918c817a726e686765646363646567686e737a818c919ca5afa89e93897c6f63574d42362a1e12050000000000010c161f2a343c464e565e616b6f757b7f8285888a8c8d8f8f9090919191919292929292999ba3acafa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867a6d636363636363636363636363636364646668676d71757c828d929da4a49f938c7f726b6053493f33271b0b0000000007121d273039404546474747474747474747474747474d5a6773808d9aa69b8e8174685b4e474747474747474747474747474645403930271d1207000013202c3946535f6c7986929facada093867a6d64646464646464646464646464646464646362605d555855534d46443f383029231d150d0500000000000000000013202c3946535f6c7986929facada093867a6d605f5f5f5f5f5f5f5f5f5f5f5f5f5c60616265686d737b838f949fa7afa3999183796d60544b4034281c100400000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000a16212c38444f59616d7a849198a2aaaaa299928d85817d7b7a79797b7d81858b92979d928a7e818e9ba7a99d9083766a5d5043372a1d1000000915202a333c4247484c4c4c4c4c4c4c4c4c4c4c5763707d8a96a3b0a3978a7d7064574c4c4c4c4c4c4c4c4c4c4a48443e352c21160b000004101c27323d47505a626d73808c929da59f958f82786d655b504a545c666d79839096a0a49c918b7e716c61594f463c332a20170d040000000000000000121f2b3845525e6b7885919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0aa9e9184776b5e5144382b1e11000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6666666666666666666666666666666666666666666666666666666666666666605d554b4135291d1104000000000000000000000000040610181f272f353b41464b5153555d606467686d7174777b7f83888d92989fa4a39f9590847b6e675d51443a3024190d0100000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a8794a0adaea194877b6e6154483b2e211508000000000000000000000005121f2b3744505b65707d8a939ea9a79d928c7f746d67605b5456555556545b60686d7984919da6aea2988c7f72665b5044382b1f120600000916222f3c4854606b7783909da5afa89d928c7f746d68615e56585756565758565e61686d747f8c939da9afa59c8f8276695e53463a2d211407000000000000040d18222a343c444c52596063696e7276797b7d7f81828383848484848585858585868b909ba7afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facada093867970707070707070707070707070707071717274767a7d82878f949da4a099938c80746d63594f41382d22170b000000000c18232e39424b515354545454545454545454545454545a6773808d9aa69b8e8174685b545454545454545454545454545453514b43392e23180c000013202c3946535f6c7986929facada0938679717171717171717171717171717171717170706f6d676865615f5753504a423d342f271f170e05000000000000000013202c3946535f6c7986929facada093867a6d605352525252525252525252524a50535456565e61696e78828f95a0acaba0958b7f72665c5145382c1f130600000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000030f1b27323c4855606b75818e96a1aaaaa2989287807a75716e6d676d6e7074797f858f949e9185818e9ba8aa9d9084776a5d5144372a1e110000030e18212a31373a3b3f3f3f3f3f3f3f3f3f3f4a5763707d8a96a3b0a3978a7d7064574a3f3f3f3f3f3f3f3f3f3d3c38332c231a10050000000b16212b353e48515b636e74808e939ea69f948e81776c605b514b545d676d7a849196a1a39f92877e706b60584e453b322920160d0300000000000000121f2b3845525e6b7884919eabafa296897c6f6356493c3023160900000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0aa9d9184776a5e5144372b1e11000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada09386797272727272727272727272727272727272727272727272727272727272727272726d675d5145392c201306000000000000000000000000071019222a313940454d52555c6064676d7074777a7d8184888c90959a9fa2a39f98928c837b6e695e554b4032281e13080000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a8794a0adaea194877b6e6154483b2e21150800000000000000000000000613202d394653606c7883909da6aca0958d80736d605c55504a4a4848494a50565d676f7d89949facaa9e9185786c605346392d2013060004101c2834404b5463707d8995a0acaca0968d80736d605d56524d4b4a4a4a4a4b4c52565d606d74818e97a2adab9f94877b6e6154483b2e211507000000000000050e171e252a323a41464f54575e6165666d6f717374757676777777787878787879797e8b98a4afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facb0a396897d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d7d7e7f8183868a8e93999f9f9d9590877f746e645b51473d2f261b110600000004101c2834404b545c606161616161616161616161616161616773808d9aa69b8e817468616161616161616161616161616161605c554b4034281c10040013202c3946535f6c7986929facb1a4978b7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7e7d7d7c7b7a7875726e6964605c544f454039312920170e050000000000000013202c3946535f6c7986929facada093867a6d605347454545454545454545453f444647494c52575f666d7a83919da6b0a79e9184796d6053463a2d20130900000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000007131f2c38444f5963707d89939ea8aea29892867d746d686462605d606164676d727a828e93979185929facaa9e9184776b5e5144382b1e11000000060f1820262b2e2f3232323232323232323d4a5763707d8a96a3b0a3978a7d7064574a3d3232323232323232302f2c28211a110800000000050f19232c363f49525c606c78818f949fa69e938d80746d635a504b555e686e7b849197a2a39992867d706a5f574d443b32281f150c03000000000000111e2b3844515e6b7784919eaab0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a99d9083766a5d5043372a1d10000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb2a6998c7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f796d6054473a2d2114070000000000000000000000061019232b343c434b51565e61676d71757a7d8084868a8d9196989d9fa7aba399928e867f796e695e574d43392f20160c020000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a8794a0acaca194877b6e6154483b2e2115080000000000000000000005111e2a36424d5763707d8a95a0aca69d9083786d605b514b443f3d3c3b3c3f444c55606b7683909c9f9e9d97897c6f6256493c2f2316090006131f2c3845515c6675818e9ba7b1a99e9184796d605b524c46413f3e3d3d3e3f41464c525b606d7a85929fabb0a6988c7f7265594c3f2f24180d0100000000020c1720293036393a3e3f44484d5354545c606264666768696a6a6a6b6b6b6b6c6c6c717e8b98a4afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facb9a5998f8989898989898989898989898989898a8a8b8c8e9092989b9e9c9995908a837d726d645c53493f352b1d140a0000000006131f2c3845515c666d6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e73808d9aa69b8e81746e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6d675c5145382c1f13060013202c3946535f6c7986929facb9a69a908b8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a89888784827f7b76716d666059514b433a322920160c0300000000000013202c3946535f6c7986929facada093867a6d6053473a38383838383838382e34383a3a3c41464d545d686f7c89949eaaada1968a7d7064574a3d31251a0e02000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000915222f3b4854606b7683909da5afa69f92867d706b605d565554515355555d60686d78818e94989298a2aeab9e9184786b5e5145382b1e1200000000060e151a1e21222525252525252525303d4a5763707d8a96a3b0a3978a7d7064574a3d31252525252525252423201c16100800000000000007111a242d374044505b666d79828f95a0a59d928c7f726c625a504c565e696e7c859298a2a39892867c6f695f564d443a31271e150b020000000000111e2a3744515d6a7784909daab0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b1a99c8f8276695c504336291d10000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9a89c918c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c877b6e6154483b2e21150800000000000000000000030c18222b353d464e555d60686e73797e82868a8d90939a9a9ea0a8a9abb1ac9f9287817b736d665e574d453b31271d0e04000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a87949f9f9f9f94877b6e6154483b2e211508000000000000000000000714202d3a46525e6976828f9ca7ab9f94897d70665c50454039332d2f2f2d333a434f5964717e8b989291908f8c7f7366594c403326190d000713202d3a4653606d7985929facada1978a7e71675d5145413a36303130303130363a4145525d68737f8c99a9b3a89c8f827569554b4035291d10040000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f65717e8b98a4afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facb9aba199969696969696969696969696969696969797999b9d9f9e96918f8c88837e78706b625b534a41372e23190b02000000000713202d3a4653606d797a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a808d9aa79b8e817a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a796d6053463a2d2013070013202c3946535f6c7986929facb9aca29a97979797979797979797979797979797979797969596918f8b88837e78706b605c554c443a32281e150a00000000000013202c3946535f6c7986929facada093867a6d6053473a2d2c2c2c2c2c2c2c23282b2d2e30363b424c56606b75828f9cabb2a89b8e817568574d42362a1e1205000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700030f1c28333f4a54636f7c89959fabab9f948b7e716a6059524c48474546484b51565e666d788290989fa2aab4ab9e9185786b5e5245382b1f12000000000003090e1214151919191919191924303d4a5763707d8a96a3b0a3978a7d7064574a3d3124191919191919171614100b05000000000000000008121b2528333f4a545c676d79839096a0a49c918b7e716c61594f4d575f6a6f7d869299a3a29891857b6e685e564c433930261d140a0000000000101d2a3643505d697683909ca9b1a5988b7e7265584b3f3225180700000000000000000000000000000000000000000000000d1a2633404d596673808c99a6b3a89b8f8275685c4f4235291c0f000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9ada39c999999999999999999999999999999999999999999999999999999999999999994877b6e6154483b2e211508000000000000000000000b151e2a343d474f585f676d737b80858a8f92989a9d9fa4a39f9fa4aba4a7a79a8d807b756f6a605c544a42382e23170c03000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a87939393939393877b6e6154483b2e211508000000000000000205070814212e3b4754616e7b87939facaa9c9083766b60544a3f342f282222222228313d4855616e7b878685848483817f7265584b3f3225180c00091623303c4956636f7c8998a2a5a69e9285796d60554b40352f2a2524232324252a2f35414c56626f7c8897a1adab9e918578675d5145392c201306000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525965727f8c98a5afa396897c706356493d3023160a0000000000000013202c3946535f6c7986929facb9b3aba5a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a4a4a5a7a99e948f84827f7b76716c656059514941382f251c110700000000000a1723303d4a5663707d87878787878787878787878787878787878d929da99e938e87878787878787878787878787878787877e7164574a3e3124170b0013202c3946535f6c7986929facb9b4aca6a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a3a3a8a19e9b9894908a847d746d675e564c443a30261c1106000000000013202c3946535f6c7986929facada093867a6d6053473a2d201f1f1f1f1f1f171c1f2021252a303a434f5964707d8a99a3afab9e928578695e53463a2d211407000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070006121f2b3844505b6674818e9ba7b1a79c8f82766c62584f45413b3a393a3b40454c545c666e7b86929facb4b7ab9e9184786b5e5145382b1e1200000000000000020608080c0c0c0c0c0c1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170c0c0c0c0c0a0907040000000000000000000000091317222d38424b555d676d7a849197a1a39f92877e706b60584e4e58606a707d87929aa4a19791847a6e685d554b42382f261b1106000000000f1c2835424f5b6875818e9ba8b3a6998c807366594d402f23180c00000000000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7b4a79a8e8174675b4e4134281b0e000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9b5ada8a6a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a194877b6e6154483b2e21150800000000000000000007121c27303c464f59606a6f7980868d92979c9fa3a8a09e9a9992939995989b9f9d928d87827c736d665c544a3f34281e150a000000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a86868686868686867b6e6154483b2e211508000000000002080e1114141d2935404b5565727f8c99a4aea2988a7e7164594f42382e231d17191917212d3a46535f69767b7a7978777675726d62564a3d3124180b000c1926333f4c5966727f8c969798999a8d8174665c5143392f241e1917171717191e24303a4653606c7985929eabada197867a6d6053473a2d20140700000005111d2a36414c565e6164656768696a6b68655d534840414243434444444545454d596673808c99a6afa295897c6f6256493c2f2316090000000000000013202c3946535f6c7986929facb9afa7a2a09f9f9f9f9f9f9f9f9f9f9f9f9fa0a1a2a4a6aaa89c8f827e7a736e6964605b534f473f372f261d130a0000000000000a1723303d4a5663707d89949494949494949494949494949494949a9da4aea59e9b949494949494949494949494949494948a7d7164574a3e3124170b0013202c3946535f6c7986929facb9afa7a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa0a0a1a2a5a8aba8a69f9c95918981796d685e564c42382e23170c030000000013202c3946535f6c7986929facada093867a6d6053473a2d201412121212060b10121314191e28313d4754606d7a86929facada297877b6e6154483b2e211508000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000613202d394653606c7985929eabaca095897c6f635a50463d35302d2c2d2f353a424a545e6973808d9aa4afb7aa9e9184776b5e5144382b1e11000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000000000000006111c262f39434c555e686e7b859197a2a39992867d6f6a5f574d4e58616b717e88939fa4a09690837a6d675d544a41382d22170b060000000d1a2734404d5a6773808d9aa6b3a89b8e817568554b4034291c100400000000000000000000000000000000000000000005121e2a36424d576976838f9ca9b2a5988c7f7265594c3f3226190c000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9afa7a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f94877b6e6154483b2e2115080000000000000000000c18232e39424e58606b6f7c848c92989fa2a7a09d9996918d8a868687888b8e92989f9a948f8780786d665c50443e30261c11060000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000713202d3946525e6876797979797979797976695e52463a2d20140700000000050d14191e2021252c3845515d6776838f9cabac9f9285796d6053463d3026252525252525252a36424d575f696e6d676b6a696865625b51463a2e221509000e1b2835414e5b68748188898a8b8d8e8b7e7164544b4031271d130e080a0a080e131f2b3744505b657683909da9b3a994887b6e6155483b2e2215080000000713202d3946525e686d71727374767778756f65594d3d323536373737383835404b556774818e9aa7b2a995887b6e6255483b2f2215080000000000000013202c3946535f6c7986929facb9a79d95939393939393939393939393939393949597999d9f9e948f8a85807b726d605c544a42392e2318140b010000000000000a1723303d4a5663707d8996a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a7a9aeb6afaaa8a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1978a7d7164574a3e3124170b0013202c3946535f6c7986929facb9a79d959393939393939393939393939393939393949496989b9fa2a9aba7a09d938e837a6d685e544a3f342820150a0000000013202c3946535f6c7986929facada093867a6d6053473a2d2014070505050000030607080c16202c3945515d677783909daab3a9968a7d7063574a3d3024170a000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000916232f3c4956626f7c8997a2adaa9d9083776b6054483f34292421202024293039424d57616e7b87939facb7aa9d9184776a5e5144372b1e11000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000000000000000000000000000000000a141d27303a434c565f696f7c859298a3a39892857c6f695e564c4f59616c727f8b929ca5a0959082796d665c53493f332722170c0000000c1925323f4c5865727f8b98abb5aa9d908477675c5145382c1f13060000000000000000000000000000000000000000000714212d3a46535f697885929fabb4aa968a7d7063574a3d3024170a000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9a79d95939393939393939393939393939393939393939393939393939393939393939393877b6e6154483b2e211508000000000000000004101c2834404a545f6a6f7d8691969fa2a69e9c95908c8884807d7a797a7c7e81858c92989e99938c81786d605a5042382e23170c0000000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f0005111d2a36414c565e6c6c6c6c6c6c6c6c6c6c5e574d42362a1e1205000000050e171f252a2d2e32323a4753606d7986929faca89b8e8275675c51453832323232323232323230313b454d575e61605d555d5c5b585651493f34291d1206000714212d3a4754606d7a7b7c7d7f8081827b6e6155483b2e22150b0100000000030f1b27333f49536975828f9ca8aea295887b6f6255483c2f2215090000000714212e3a4754616d7a7e7f8081828485817568584e43372e2c2823282c2f3945515d677783909daaada196877a6d6054473a2d2114070000000000000013202c3946535f6c7986929facb9a2958b86868686868686868686868686868787888a8d90959a9f9c98928d867e756d665c544a40342820160a000000000000000a1723303d4a5663707d89969f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa6a8aeb6afa9a79f9f9f9f9f9f9f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b0013202c3946535f6c7986929facb9a2958b86868686868686868686868686868686868788898c8e92979da0a8aca59d9590837a6d665c50443c31261a0f0300000013202c3946535f6c7986929facada093867a6d6053473a2d20140700000000000000000004111d2935414c556975828f9ca8b1a4988b7e7165584b3e3225180b000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000c1925323f4c5865727f8b98a9b3ab998c7f7266594f43362d2219141313181e27303b46525e697683909da9b6aa9d9083776a5d5044372a1d11000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000000000000000020b151e28313a444d575f6a6f7d869299a3a29791847b6e685e554b505a626d73808d939da59f948f82786d655b50443e34281d11050000091623303c4956636f7c8999a4afac9f9286796d6053473a2d22170b0000000000000000000000000000000000000000000815222e3b4855616e7b8897a2adaea298887b6e6155483b2e221508000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9a2958b868686868686868686868686868686868686868686868686868686868686868686867b6e6154483b2e211508000000000000000006121f2c3844515c666f7c859298a0a8a19e948f89847f7b7774706d6c6d6f7174797f869195a09f938e81746c61544a3f34281c100300000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f00010d1925303a444c525f60606060606060605f524d453b30251a0e020000020d1720293036393b3f3f3f495663707c8998a3aeaa988b7e7265554b403f3f3f3f3f3f3f3f3f3f3d3c383b454d535453514b51504f4b4a463f372d23180d01000613202c3945515d676d6e7071727374756e695f53463a2d2114030101000205080f17222d424f5b6875828e9ba8b5ab95887b6e6255483b2f2215080000000815212e3b4854616e7b878c8d8e8f909184786a6054473f3a38342e34383a404b55606d7a86929facab9e918578675d5145392c2013060000000000000013202c3946535f6c7986929facada0938679797979797979797979797979797a7a7b7e8083888d9299a19f98928b81786d665c51443d32271b0f030000000000000a1723303d4a5663707d89939393939393939393939393939393939a9da4aea59d9b939393939393939393939393939393938a7d7164574a3e3124170b0013202c3946535f6c7986929facada0938679797979797979797979797979797979797a7b7c7f81858b91969fa4aca79f959082786d60584e43372b1f140900000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000010d19242f414e5b6874818e9ba7b2a5988c7f7265594c3f3226190c000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000e1b2834414e5b6774818e9aa7afa399897c6f6356493d32231b100806070c151e2a36424d576774808d9aa7b3a99c8f8276695c4f4336291c10000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000030c161f29323b454e58606b707e87929fa3a19691847a6d675d5145515b636e74818e939ea69e948e81776c605a5045392d21150800000714202d3a4753606d7a86939facaea399897d706353493f33271b0f030000000000000000000000000000000000000004111d2935414c5565717e8b98a9b3ac9f9285786d6053463a2d201307000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867979797979797979797979797979797979797979797979797979797979797979797976695e52463a2d20140700000000000000000713202d3a4653606d78839197a2a8a097928a827c77726e6967636060616265676d727b839196a19d938a7d70665c5044382c1f120600000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000008131e28323a41465353535353535353534846423b33291f140900000008141f29323b4146474c4c4c4c5966727f8c99aaaea398887b6f62554c4c4c4c4c4c4c4c4c4c4c4c4948443d3b4246484745404443423f3d3a342d251b1106000004111d2935414c555d6062636465666869615f574d42362a1e120d0d0e090e121419212b37434e58697683909ca9aea399877a6d6154473a2e2114070000000714212d3a46535e697884919a9b9c9d96897c6f625a504a464440434044464b515c67717e8b98a3aeaa9b8f827568554b4135291d11040000000000000013202c3946535f6c7986929facada093867a6d6c6c6c6c6c6c6c6c6c6c666c6d6e6f7173777b80879196a1a29f938e81786d60584e43382b20150a0000000000000a1723303d4a5663707d86868686868686868686868686868686868d929da89d938e86868686868686868686868686868686867e7164574a3e3124170b0013202c3946535f6c7986929facada093867a6d6c6c6c6c6c6c6c6c6c6c6c6c6c666d6d6e6f7275797e848d939aa4afa79f948d80736a5f53473b31261a0e02000013202c3946535f6c7986929facada093867a6d6053473a2d20140700000000000000000000081b2734414e5a6774818d9aa7b2a6998c7f7366594c403326190d000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700101d293643505c6976838f9ca9ac9f92867a6d6053473a2d201407000000030c1a25303f4b5865727e8b98a5b1a89b8e8275685b4f4235281c0f000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000040d172029333c464f59616c717e8b919ca4a0969083796d60534749525c606d78818f949fa69e938d80736c6156493d3024170a00000613202c3945515d677784909daab4ab9a8d8073655b5044372b1f140a000000000000000000000000000000000000010c13202c3945515d6775828e9ba8b5a89c8f8275665c5044382b1f1206000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5e574d42362a1e12050000000000000006131f2b37434e5865727f8c95a0a9a09691857d766f6b66625f575753535455555d60696e7a84919ea59e9184786d6053463a2d20130800000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f000006111c2630383f444649494949494949494644403930271c12070000020e1925303b444d5254585858585b6875828e9ba8ac9f9286796d605858585858585858585858585856544f473d363a3b3a39352f363532312e29231b1309000000010d19242f3a434c5154555657585a5b5c55534d453b31261a1a1a1a1b1b1a1e21252a333b4754606a7884919eabac9f9286796c605346392d20130600000005121e2a36424d576774818e9aa6a9a89b8e81756c605c5453514a504a5153555d606d7983919daaaea2988b7e7165584b3e2f24180d010000000000000013202c3946535f6c7986929facada093867a6d606060606060606060605b606061626466696e747c849196a1a59e938d80736a6054473c31261a0f0200000000000916232f3c4855616b707979797979797979797979797979797979808d9aa69b8e817979797979797979797979797979797979716c6155493c3023170a0013202c3946535f6c7986929facada093867a6d606060606060606060606060605c6061616365676d71798088939fa5afa69f92877c6f62574d42362a1e1205000013202c3946535f6c7986929facada093867a6d6053473a2d20140700000000000000000004101c2834404a546875828e9ba8b2a5988c7f7265594c3f3226190c000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700111e2b3744515e6a7784919daaab9e918578675d5145392c1f130600000000091724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000050e17212a343d474f59626c727f8c929da89f958e8175685b4e4244505c666d79828f95a0a59d928b7e7164584b3e3125180b000004101d2935404b556773808d9aa9b3ab9e9184786c6053463c2f261b1106000000000000000000000000000000000007131d28333f4a54606d7a86929facb1a7988b7f7265544a3f34281c1003000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d60606060606060606060606060606060606060606060606060606060606060605f524d453b30251a0e02000000000000000815222e3b47545f6a7784919ea7a39891847b706b63605955534d4a474647484b51575e68707d8a96a1a1968a7e7164574b3e2f24190d01000000000000000000000000000000000003101d2a3643505d697683908f8275685c4f4235291c0f00000c17232e38424a5053555555555555555553514a42392e23180c000005111e2a36414d565e6165656565656a7784909daaaa9d9083776665656565656565656565656565656360594f44382d2e2d2c292429282524221d181109010000000008131e28313a41454748494a4c4d4e4f4846423b332923272727272728252a2d30363c454e58626f7c8896a1adab9c908376655b5044372b1f1205000000020e1a25313c4855626f7c88949faaaa9e938a7e726d6662605c545d545c6062676d75808d95a0aca99f92867a6d6154473a2e211407000000000000000013202c3946535f6c7986929facada093867a6d6053535353535353534a505354545557575f616a6f7b84919ea7a59f92877c6f62584e43372b1f120600000000000714202c38444f5961636c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c73808d9aa69b8e81746c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d2114080013202c3946535f6c7986929facada093867a6d6053535353535353535353534a5153545556555d60676d747f8c939daaaea3998e8275695f53463a2d211407000013202c3946535f6c7986929facada093867a6d6053473a2d2014070606000104060708090b141f2c3844515c667683909ca9b1a4988b7e7165584b3e3225180b000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700121f2b3845525e6b7885919eabaa9d9084776a554b4035291d1004000000000b1824313e4b5764717e8a97a4b1a5998c7f7266594c3f3326190c000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000060f18222b353e47505a636d74808d9aa7a79d9083766a5d50433f4a545c676d7a84909daaa4998c807366594d4033261a0d0000010d18242f3d495663707c8997a1adaca196897d7063584e41382d22170f06000000000000000000000000000000071118242f3844505b66717e8b98a2aeaca095887b6e6155483b2e23170b00000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d60535353535353535353535353535353535353535353535353535353535353534846423b33291f140900000000000000000916222f3c4955626f7c8896a0ac9f92867c6e696159544f4847423d3a393a3c40454d56606c7884919ea89b8f827568554c4135291d1104000000000000000000000000000000000408101d2a3643505d697683908f8275685c4f4235291c0f0003101c28343f4a545c606262626262626262605c544a4034281c1004000714202d3946525e686e7272727272727985929faca89b8e8275727272727272727272727272727272706b6054483c3126201f1d181d1c181815120d06000000000000010c161f282f35393a3b3d3e3f4041423b3a36312c2f3034343434343531363a3b41464e57606a74808d9aa8aea3998c7f726653493f33271b0f03000000000915212e3b47535f6a76828f98a2aea59f92877f78726f6d666a696a666d6f7379818d929da7aca2978d8074685d5246392d201307000000000000000013202c3946535f6c7986929facada093867a6d6053474646464646463f44464747484b4d53585f69707d8a959faba3998f82766a5f53473a2e211408000000000004101c27333d474f55566060606060606060606060606060606773808d9aa69b8e817468606060606060606060606060606060575550483e33281c11040013202c3946535f6c7986929facada093867a6d6053474646464646464646464044464748494b51555d606d74818e98a2aeab9f93877b6e6155483b2f24180d010013202c3946535f6c7986929facada093867a6d6053473a2d2014131313070d10131414151a1d27303a4653606d7985929fabb2a896897c706356493d3023160a000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700121f2c3945525f6c7885929faba99c908376695d50432f24180c00000000000c1825323f4b5865727e8b98a5b5ab978a7e7164574a3e3124170b000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000007101a232d373f44505c666d7983909da9a59d9083766a5d5043434c565e696f7c85929faca3998c807366594d4033261a0d0000000713202d3a4653606d7985929eacb2a89c8f82756a5f53493f332721180f0802000000000000000000000003091119232935404b55606c7884919daab3a99d908477695f53463a2d1c110600000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d60534746464646464646464646464646464646464646464646464646464646463b3a36302921170d0200000000000000000b1825323e4b5865717e8b98a8a79a8d81746a5f574f48443d3a37312d2d2e2f353b44505b6574818e9ba79e928578675d5145392c2013060000000000000000000000000000050c1114171d2a3643505d697683908f8275685c4f4235291c0f0006121f2c3844505c666d6f6f6f6f6f6f6f6f6d665c5144382c1f1206000814212e3b4754616e7a7f7f7f7f7f7f7f8c98a2aea99c8f827f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7d7063574e42372b1e13100c070f0c0b0906010000000000000000040d161e24292c2d2f3031323335362e2d2a32383b3d404040404141424246484c525860696f7c87929faca99f92867b6e6155483b2d22170b000000000006121f2b37434e58626f7c86929fa4aca399928b837f7b797777767777797c80858e939da4aea49a92857a6d61564c4135291d1105000000000000000013202c3946535f6c7986929facada093867a6d6053473a393939392d3338393a3b3c3e42464e57616c7683909da9ab9f94887b6e6255483b2f2215060000000000000b16212c353d44484a53535353535353535353535353535a6773808d9aa69b8e8174685b53535353535353535353535353534a49453e362c22170c000013202c3946535f6c7986929facada093867a6d6053473a393939393939392e34383a3a3b3c40454b515b616d7a86929facafa4998c7f7366554b4035291d10040013202c3946535f6c7986929facada093867a6d6053473a2d202020202020181d20202122252a2f39434d57636f7c8998a2aeaca196877b6e6154473b2e211408000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700121f2c3945525f6c7885929faba99c908376695d50432f24180d01000000000c1926333f4c5966727f8c99a5afa399887c6f6255493c2f221609000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000060f19222c363f49525c606d78828f959fa69d938c807366594d424b555e686e7b859198a2a49a92867d706356493d3023160a00000006121f2c3844505c6673808d9aa4afaa9e94887c6f655b50443d332a2219140e09060400000100000406090e141a232b353d45515d67717e8a95a0acada2978b7e7265574d42362a1e0a0000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a393939393939393939393939393939393939393939393939393939392e2d2a251f170f050000000000000000000d192633404c5966737f8c99a6a3968a7d7063584e453e38322e2b262020212429333f49536673808d99a6a197877a6d6054473a2d211407000000000000000000000000000810171c2123242a3643505d697683908f8275685c4f4235291c0f000713202d3a4653606d787c7c7c7c7c7c7c7c786d6053463a2d201307000714202d3a4753606d7a868b8b8b8b8b8c919caab4ab9f948f8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b84776a5f53473a2e2114080000020000000000000000000000000000040c13191d202122232425272829222b353d4448494d4d4d4d4e4e4f4d5354565e616a6f7b849199a3aba1978d8174695f53463a2d1b11060000000000030f1b26323c47535f6a717e8b939aa2aaa39f95918c8886848483838485898c92979ea5aaa39f93887d70685e52443a3024190d01000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d2d2d2d22282b2d2d2e2f31363c45505a65727f8c98a5b0a6998c7f7366594c402d22170b00000000000005101a232c33383c3d464646464646464646464646464d5a6773808d9aa69b8e8174685b4e464646464646464646464646463e3c39332c241a1005000013202c3946535f6c7986929facada093867a6d6053473a2d2d2d2d2d2d2d23282c2d2e2e2f35394046525e6873808d99a9b3ab9d908377675d5145392c2013060013202c3946535f6c7986929facada093867a6d6053473a2d2d2d2d2d2d2d24292c2d2e2f30363b424b555f6974818e9aaab4ab9e918478695e52463a2d201407000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700121f2b3845525e6b7885919eabaa9d9084776a554b4035291d1004000000030f1b27333f49536773808d9aa6ac9f92867a6d6053473a2d201407000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000050e18212b343e48515b636e74818e949ea79e948e81746e63574b4a545d676d7a849197a1a49f93887e716b6054483b2f22160900000003101c28343f4a54616e7b87939fabb0a69c9083776c60584e453c342a251e1a1312100c070e070c1013131a1f262a353d47505a606d7984919ea7b1a99f9285796d6053473b31261a0e0000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d21201e1a140d05000000000000000000000d1a2633404d596673808c99a6a295887c6f6255493c332c27211e1d2024292d333b434e586774818d9aa7a994887b6e6155483b2e22150800000000000000000000000008121a22282d3031323643505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a87888888888888877b6e6154483b2e211508000613202c3945515d6775828f98989898999ca3adbcb0a69f9c98989898989898989898989898989896887b6e6255483b3025190e02000000000000000000000000000000000001080d111314151617191a1b1c27323d474f54565a5a5a5a5a5b5c575e6164686d747c859196a0aaa39992857a6e61574d42362a1e0a000000000000000a15202b37434e58616c727f8892989fa3a7a09d99999291909090919298999ea2a9a69f98928b7f726c61564c4132281e130800000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d202020171c1f20212122262a333e4955626f7c8895a2afa99c8f82766953493f33271b0f0300000000000008111a21272c2f30393939393939393939393939404d5a6773808d9aa69b8e8174685b4e4139393939393939393939393931302d28221a120800000013202c3946535f6c7986929facada093867a6d6053473a2d202020202020181c1f20212224292f35414c56626f7c8897a2adac9f9286796d6053473a2d2014070013202c3946535f6c7986929facada093867a6d6053473a393939393939392f35393a3b3b3d42464d545c676e7b87929facb1a79a8d817467574d42362a1e1105000b1825323e4b5865717e8b98a4aca295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700111e2b3744515e6a7784919daaab9e918578675d5145392c20130600000005121f2b3744505b6576838f9ca9aa9d908477675c5145382c1f1306000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000040d17202a333d47505a626d73808c939da69f958f82786d605b5244505c666d79839096a0a59c928b7f726c61594f44382c201307000000000c17232e3846535f6975828e99a3afab9f948b7f726a60574e463e36302a25201f1c181b1a1b181c1f20262b31363f474f59616c74808d96a1adada2978d8073675d5145392a1f14090000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a2d2020202020202020202020202020202020202020202020202020201514120e090200000000000000000000000c1925323f4c5865727f8b98a9a396897c706356493d332b262324292c2f35383f444d56606a7683909da9a399877a6e6154473b2e211408000000000000000000000008121a242c33393c3e3f3e43505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a87949595959594877b6e6154483b2e2115080004101d2935404b5565717e8b99a49f9fa5a7adb5bbb2aaa4a19f9f9f9f9f9f9f9f9f9f9f9f9f9fa8998c7f7266564d41362a1e11050000000000000000000000000000000000000001040607080a0b0c0d13202c38444f596063676767676768686a696e71757a81879197a0a8a19892877d6f685e52453b31261a0e00000000000000040f1a26313c46505a636d727e868e92999da0a8aba39f9e9d9c9d9e9fa2aaaaa29f9b948f867e726d62594f443a3020160c0200000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d2014130b0f12131414151a212e3b4754616e7a8794a1adab9e928578655b5044372b1f1205000000000000000810161c2023232d2d2d2d2d2d2d2d2d2d2d34404d5a6773808d9aa69b8e8174685b4e41352d2d2d2d2d2d2d2d2d2d2d2423211c1710080000000013202c3946535f6c7986929facada093867a6d6053473a2d2014131313130c1012131415181d25303a4653606c7985929fabafa399897c6f6256493c2f2316090013202c3946535f6c7986929facada093867a6d60534746464646464646464640454747484a4d52575e666d79829099a3afab9f95897c6f6356493c30251a0e02000b1825323e4b5865717e8b989f9f9f95897c6f6256493c2f23160900000d1a2733404d5a6673808d999f9f9f9386796d6053463a2d20130700101d293643505c6976838f9ca9ac9f92867a6d6053473a2d20140a0000000613202d394653606c7985929fabac9b8e817468554b4034291c1004000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000000000000000030c161f29323c464f59616c727f8b929ca5a0969083796d665c5049525c606d78828f959fa69e938d80736d625a50473d32271b10030000000006111c2a36424d57626e7b87929fa8b0a69f92877c6f695f585046413b36312d2c282327272723282c2d31373b42465159606b717e8a929da8b1a79f92857a6d61554b4035291d10040000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a2d2014131313131313131313131313131313131313131313131313130807050200000000000000000000000000091623303c4956636f7c8997a1a5988b7e7265594f453d3731302f35393a40454950565e686f7c89959fac9f9286796d6053463a2d2013070000000000000000000008121a242c363e45494a4c4a46505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a8794a0a2a2a194877b6e6154483b2e21150800010d18242f3a4754616d7a86939393939a9da5afb5aaa0989593939393939393939393939393939393908376685e5246392d2014070000000000000000000000000000000000000000000000000000000916222f3b4854606b707373737374747576787b7e82868e9299a1a39f9791867e716b60564d4133291f140900000000000000000a15202a343e48515b636c717b81878c919597999c9d9e9e9f9f9f9e9d9b9998928e89827b716c625b51473e32281e0e040000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140c0c0c0c0c0c090e13202d3a4653606d798693a0acac9f9286796c605346392d2013060000000000000000050b10141617202020202020202020202734404d5a6773808d9aa69b8e8174685b4e41352820202020202020202020171714110c05000000000013202c3946535f6c7986929facada093867a6d6053473a2d2014070606000004060707070c131f2b3844505b667683909ca9b5ab978a7e7164574b3e3124180b0013202c3946535f6c7986929facada093867a6d6053535353535353535353534b5153545557575e61696e78818e949fabafa59d9083776b6054483b2f1f140900000b1825323e4b5865717e8b9393939393897c6f6256493c2f23160900000d1a2733404d5a6673808d939393939386796d6053463a2d201307000e1b2834414e5b6774818e9aa7afa399897c706356493d30261c110a080a111c28343f4a54626f7c8898a2aea49a8a7e7164574b3e2f23180c00000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000000000000000000000000000000020b151e28313b444e58606b707e87929fa4a19791847a6d675d544a515b636e74818e949ea79e948e81776c605b51483e352b21160b0000000000000e1a26313b47535f6974808d96a0abaea39991857b6e6a615a524c46423c3a38342e3434342e34383a3c42474d535b626b707d86929fa4aeaaa0958b7f72685e5243392f24180d010000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a2d20140d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0b0a080500000000000000000000000713202d3a4653606d7985929ea99c8f82766b60574f47433e3d3d4045474b51535b60686e7a84919ea7a99d908376665c5145382c1f130600000000000000000008121a242c363e48505557585651505d697683908f8275685c4f4235291c0f000714212e3a4754616d7a8794a0adaea194877b6e6154483b2e21150800000713202d3946525e687682868686868e929da9b0a4988e888686868686868686868686868686868686887b6e6154473b2e2114080000000000000000000000000000000000000000000000000000000a1623303d495663707d808080808181828385878b8f92999fa09e99928d857c716c61594f443b3021180d030000000000000000030e18222d363f49515a61696e747b8084888b8d8f90919292929291908e8c8985817c766e69615a51493f352c20160c000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20191919191919191a1a1c222d3a4754606d7a8793a0adafa399877a6d6054473a2d211407000000000000000000000407090a1313131313131313131a2734404d5a6773808d9aa69b8e8174685b4e4135281b1313131313131313130b0a08040000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000030f1c28333f4a546875828f9ba8b2a5988b7f7265584c3f3225190c0013202c3946535f6c7986929facada093867a6d606060606060606060606060555d6061626466696e737b828e939ea6b0a79e938a7d7063594f44382c200d0200000b1825323e4b5865717e868686868686867c6f6256493c2f23160b0301071a2733404d5a66738086868686868686786d6053463a2d201307000c1825323f4b5865727e8b98a9b2ab998c7f7266594f42382e231a1615141c232c3844505c6673808d9aaaac9f93877a6d6154473a2e21140700000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000a141d27303a434d565f6a6f7d869299a3a29892857b6e685e554b505a626d73808c939da69f958f82786d655b50493f362c23190f0400000000000009141f2b37424d57606d79849199a4afaba19791847c706c615e56534d494644404141414141404546494d53575f616d727d869298a2aeaca2989083786c60564c4131281d1207000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a2d201a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a171714110c0500000000000000000006121f2b3844505c6673808c96a19f94897d70696059534e4b49494b5153555d60656c717a839096a0aca2978c7f7265544b4034281c1004000000000000000008121a242c363e48505a616465625b515d697683908f8275685c4f4235291c0f000714212e3a4754616d7a8794a0adaea194877b6e6154483b2e211508000005111e2a36414c5666707679797979818e9aa7aea195887c79797979797979797979797979797979797976685e5246392d2014070000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c8d8d8d8d8e8f909298979c9c9a9896918d86807a6f6a615a50473d32291f0f060000000000000000000006101b242e373f4850575e61696e73777b7e80828484858686858583827f7d79756f6b625f5750483f372d231a0e04000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d252525252525252626262b2d333c4855616e7b8894a1aeaea399867a6d6053473a2d201407000000000000000000000000000006060606060606060d1a2734404d5a6773808d9aa69b8e8174685b4e4135281b0e0606060606060606000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000b17222d414e5b6774818e9aa7b2a5998c7f7266594c3f3326190c0013202c3946535f6c7986929facada093867a6d6c6c6c6c6c6c6c6c6c6c6c6c6c676d6e6e7073767b80858f949ea5afa8a0958e81756b6155473d32271b0f0000000b1724313d4a56626c71797979797979796f6a6054473b2e231c150c0b121826323f4b58636e737979797979797976665c5044382c1f1206000916222f3c4955626f7c8897a1adaa9d9184776b60544a3f342b26232222262e35414c56606d7985919eabaa9d908376685e5246392d20130700000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000000000000000000000000000006111c262f39434c565e696e7c859298a3a39992867c6f695f564c4f59616c727f8b929ca5a0969083796d665c53493f372d241a110700000000000000030e1a26313c45515d676f7d87939fa4aea9a19691867e756e68615e575653514a4e4e4d4e4e4b515356575f62696e767f879298a2aaafa49a92867c6f665b50443a301f160c01000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a2d27272727272727272727272727272727272727272727272727272727272423211c171008000000000000000003101c28343f4a54606d7a849199a49e91847b6f6b625f58585656555d6064676d71787e859095a0a8a49e92857a6d6154473a2e23180c000000000000000008121a242c363e48505a616c71726d625b5d697683908f8275685c4f4235291c0f000714212e3a4754616d7a8794a0acaca194877b6e6154483b2e2115080000010d1925303a44545e66696c6c6c75818e9ba8ada194877a6e6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b5e564d41362a1e11050000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c999a9a9a9b9b9d9fa29f94908d8b8884807b746d68605850483e352b20170d00000000000000000000000915202b353f474e524d52575f62666a6e71737577787879797978777573706d67636059534d46423c332a1f140900000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a323232323232323233333137383f444f5964717e8b97a4b1ac9f928679675d5145392c1f1306000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa69b8e8174685b4e4135281b0e0200000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140700000000000000000000061b2834414e5b6774818e9aa7b2a6998c7f7366594c403326190d0013202c3946535f6c7986929facada09386797979797979797979797979797979797a7a7b7d8082868c92979fa6afa79f969183796d60594f44352b21160b0000000915212e3a45505a62656c6c6c6c6c6c6c6260584e443d342e271e18151d2329333c47525c63666c6c6c6c6c6c6c6c5c544a3f34281c1003000613202d394653606c7884919eabaca095897d70665c50443f37312f2e2f30383f46525e68717e8b97a1ada3988b7e7265564c41362a1e110500000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000000000091217222d38424b555d686e7b849197a2a39f92877d706a60574d4e58606b707e87929fa4a19791847a6d675d544a41382d251b120800000000000000000009151f2935404b55606b727f8b929da4ada9a198928a817a746e696562605c545b5a5a5a5b545c606266696e747b828b9299a2aaaea39f93887e706a5f544a3f32291e0d0400000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6053473a34343434343434343434343434343434343434343434343434343434343431302d28221a120800000000000000000b17232e3845525d68707d87939aa19691847d746f6a6764636366676d70757a7e838b9297a0a7a49c928b7e71685d5246392d1d12070000000000000008121a242c363e48505a616c717e7f726d6257697683908f8275685c4f4235291c0f000714212e3a4754616d7a87949f9f9f9f94877b6e6154483b2e211508000008131e28323a4146545a5d60606875828f9ba8ada093877a6d606060606060606060606060606060606054524d443b3025190e020000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5a6a7a7a8a9aba99c9083807e7c77736e69615e564e463e362c23190e0500000000000000000000010e1a26313d4751595e5f6060605e575f626466696a6b6b6c6c6c6b6a686663605d6060606055534d453c31261a0e02000000000000000000000013202c3946535f6c7986929facada093867a6d6053473f3f3f3f3f3f3f3f3f3f404142464a5057606b75828f9ca8b5aa9d9184776a554b4035291d1004000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa69b8e8174685b4e4135281b0e0200000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140700000000000000000205101c2834404b556875828f9ba8b2a5988b7f7265584c3f3225190c0013202c3946535f6c7986929facb9a2958b868686868686868686868686868686868687888a8c8f92999fa2a9aba39f9590847b6e675d51473e3323190f0400000005111d29343f4850565860606060606060605e56544f444039302a211f272f343e454d53555d60606060606060605f504a42382e23170c000005121f2b3744505b6574808d9aa6b0a89d9083786d605a5047433d3c3b3c3d424a505b616d7a85929ea9ab9f92867a6d6154473a3025190d0100000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000000007101b2428333f4a545c676d7a839096a1a49c918b7e716b61584e4d565f6a6f7d869299a3a29891857b6e685e554b42382f261b130900000000000000000000030d18242f3a434f59626d74808d929ca3adaaa29f938e86807b76726f6d6669686767676869666d6f72777b81868f949fa3ababa39f918c7f726c61584e42382d20170d0000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d605347404040404040404040404040404040404040404040404040404040404040403e3c39332c241a10050000000000000006111c2935414c56606b717e8892989f969188817c777471707073767a7d81858b91959ea1a9a29f928d80736c61564c4135291d0b0000000000000008121a242c363e48505a616c717e878b7f72695e697683908f8275685c4f4235291c0f000714212e3a4754616d7a87939393939393877b6e6154483b2e21150800010d1925303a444c52545757575c6875828f9ba8aca09386796d60575757575757575757575757575755544e46413b32291f1408000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c999f9fa0a1a2a4a6aa9e9185817e7a746e69605c554d443d342c241a1107000000000000000000000004111d2a36424e59636a6c6c6c6c6b636059585a5c5d5e5f5f5f5f5e5d5b575f626a6c6c6c6c6c5f574d42372b1e1205000000000000000000000013202c3946535f6c7986929facada093867a6d60534c4c4c4c4c4c4c4c4c4c4c4d4e4d53545b6069707d88939facb3a99b8e8174685b4e412f24180c00000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa69b8e8174685b4e4135281b0e0200000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140c0c0c0c0c0c0c0c090e1116202c3845515c677683909ca9b6ac978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9a79d959393939393939393939393939393939393949597999c9fa3abaca49f99928d837b6e695e554c41352c21110700000000010c18222d363f454a4b5359636a6c6c6c6c6b636059514a423c332a2a3139404550575f626a6c6c6c6c6c5f574d53443f3830261c11060000030f1b27333f4953626f7c88949eabab9f958c7f726c625a534e4a4948484a4e545c606d75818e97a1ada3998d8074685d524639291e13080000000000000000000002070a0c0d0908060a1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a00000000000000000000000000000000040f19222d363e44505b666d79828f95a0a59d928c7f726c62594f4c565e696e7c859298a2a39892867c6f695e564c433930261d140a01000000000000000000000007131d28313d47515b606c77808c919ea1a9aea59e98928d87837f7c79777674747474747677797c7f83888e92999fa6aea8a199928b7f736d635a50463c2f261c0e050000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4a49453e362c22170c00000000000000000d19242f3a444f59626c717e868f949c9a938e8883807e7c7c7f83868a8e92989da0a7a39f97928a80736e645a50443a3024190d00000000000008121a242c363e48505a616c717e879292867b6e61697683908f8275685c4f4235291c0f000714212e3a4754616d7a86868686868686867b6e6154483b2e2115080005111d2a36414c565e61646464646875828e9ba8aca09386796d6464646464646464646464646464646260584e43372b20170d02000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c939393939495979a9d9f97918e8b85817b736d675e564d453b30271d1207000000000000000000000006121f2c3845525e6a757979797978706b605c544d5151525353524b515a61696e777979797976695f53463a2d211407000000000000000000000013202c3946535f6c7986929facada093867a6d60585858585858585858585859595a575f61666c717b84919aa4afada2978a7e7164574b3e3124180700000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aa69b8e8174685b4e4135281b0e0200000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201919191919191919191a191e2028323a4653606d7986929facafa49a897c6f6356493c302316090013202c3946535f6c7986929facb9afa7a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa0a1a1a3a6a8a6a8a09e9a938f8780796e695e574d433a2f231a1000000000000006111b242d343a3d3e525e6a757979797978706b605c544d453f36333c434b515a61696e777979797976695f53463a342e261e150a000000000b17222d3847535f6a75828f99a3afa79f92877e716c625f5857565555575860666d737f8c939ea9a89f92867b6e61564c413529170d02000000000000000000070d131619191515120f1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000000a16212b343e48515b606c78818e949fa69e938d80746d635a504b555d686e7b849197a2a49992867d706a5f574d443a31281e150b02000000000000000000000000010c161f2b353f44505b656c747f8a92979ea6acaaa29f9a93908c898684828181808181828486898c90959a9fa3ababa49f9691877e736d635b51473e342a1d140a000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a575550483e33281c11050000000000000008131e28323d47505a626c717b82898f92999b95908d8b89898c8f92999b9fa2a9a29e99928e857e736e645c52483e32281e13080000000000050e1a242c363e48505a616c717e879292867d70695e697683908f8275685c4f4235291c0f000713202d3946525e6876797979797979797976695e52463a2d201407000713202d3946525e686d717171717174818e9ba7ada093877a717171717171717171717171717171716f6a6054473c31261a0e02000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f868686868687888a8d90959a9e9b98928d8680796e695f574d43392e23180c03000000000000000000000613202c3946535f6c7987868686847d736d665f5751464146454d555c606c717b83868686867b6e6155483b2e221508000000000000000000000013202c3946535f6c7986929facada093867a6d65656565656565656565656566666769696e72787e859196a1acb1a79f9285796d6053473a2d20140700000000000000000000000000000000000000000000010d1a2734404d5a6773808d9a9a9a8e8174685b4e4135281b0e0200000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d2525252525252525252627252a2d323a444e5863707d8998a2aeac9f93867a6d6154473a2e2114070013202c3946535f6c7986929facb9afa7a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa39f9f9e9d9b999796918c87827c736d675e574d453b31281e11080000000000000009121b22292e3946535f6c7987868686847d736d665f575146413e454d555c606c717b83868686867b6e6155483b2e231c150c030000000006111b2b37434e58626f7c87929fa6aea39992877e766f6a666462616263666a6f78808c919ca5aaa0968c8073695e53443a302419050000000000000000010a12191e23252622211f1b1724303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000030f1b27323d47505a636d74808d939ea69f948e81786c605b514a545c676d7a839096a1a49f93877e716b60584e453b32281f160c030000000000000000000000000000040d192327333f49535b606d737d858f949da0a7acaca49f9c989892918f8e8d8d8d8e8f919298999d9fa7acaca69f99938d847d716c635b51493f352c22180b02000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada093867a6d6767676767676767676767676767676767676767676767676767676767676767676764615a5045392d21140800000000000000010c16202b353f48505a61696e767d8287929fa09d9a979696999c9fa3a9a29f9b97928d86817a716c635c524a40362d20160c0200000000020d17202c363e48505a616c717e879292867d706b6057697683908f8275685c4f4235291c0f0005111d2a36414c565e6c6c6c6c6c6c6c6c6c6c5e574d42362a1e1205000714212e3a4754616d7a7e7d7d7d7d7d828f9ca9b1a4988b7f7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7c6f62574d42372b1e1205000000000000000000000000000000000000000000000000000000000c1825323e4b57636d72797979797a7a7b7e8083888d9399a09f99928c837b6e695f554b4034281f140900000000000000000000000b1825323e4b5865717e8b9296918780786e69625b524c4550575f676d747e869095948d8074695f53463a2d211407000000000000000000000013202c3946535f6c7986929facada09386797272727272727272727272727272737476787b7f848a9297a1a8b2a9a0958c7f72675d5145382c1f130600000000000000000000000000000000000000000000010d1a2734404d5a6773808d8d8d8d8d8174685b4e4135281b0e0200000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a32323232323232323232333330363a3e444c565f6a75818e9baab4aa9d918477685d5246392d2013070013202c3946535f6c7986929facb9a79d959393939393939393939393939393939399929291908f8d8a8784807b756f6a605c554d453b33291f160c0000000000000000000911181d25323e4b5865717e8b9296918780786e69625b524c4550575f676d747e869095948d8074695f53463a2d21110a030000000000000f1b26313c47535f6a73808c949fa7aba399928b827c7773706f6e6f7073777c838d929ca3aba2989184796d60574d4232281e130800000000000000000a131c242a2f32332f2e2b262024303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a00000000000000000000000000000007131f2c38434f59616c727f8c929da5a0959082796d665b5044505b666d79828f95a0a59c928b7f726c61594f463c332920160d0400000000000000000000000000000000071017222d384149505b636b707b828990959c9fa4acaca9aaa39f9d9c9b9a9a9a9b9c9d9fa3aaaaababa39f9b948f878079706b625a514940372e231a100600000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facada09386797373737373737373737373737373737373737373737373737373737373737373737373716c6155493c3023170a0000000000000000040d19232d363f49515a61696e757b818e9aa7aaa7a4a3a3aba39f9c9997928e8a85807b746d68615a524a40382e241b0e04000000000008141f29323e48505a616c707e879291857c6f6b646464697683908f8275685c4f4235291c0f00010d1925303a444c525f60606060606060605f524d453b30251a0e02000714212d3a4754606d7a868a8a8a8a8a8f949fabb3a79b918b8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8377695f53463a2d211408000000000000000000000000000000000000000000000000000001020a16222f3a46515b63666c6c6c676d6e6f7173777c81879195a0a39f9590847b6e675c51453b30251a0e02000000000000000000000b1724313d4a56626d73808c9399938d837b726d615e56515a61696e79818a9298958f82786d60574d42372b1e1205000000000000000000000013202c3946535f6c7986929facb2a5988b7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f80818384888b91959fa2a9afa8a1979083796d60554b4035291d100400000000000000000000000000000000000000000000000a1724303d4a5763707d80808080807e7164574a3e3124170b0000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473f3f3f3f3f3f3f3f3f3f3f3f404142464750565d686f7c87939facb0a69a8d807367564c4135291d11050013202c3946535f6c7986929facb9a2958b86868686868686868686868686868686868685858382807e7b77736e69625f58514b433b332921170d0400000000000000000000060c1724313d4a56626d73808c9399938d837b726d615e56515a61696e79818a9298958f82786d60574d42372b1e1200000000000000000a15202b37434e58606d78828f959fa6aba39f948f8883807d7c7b7b7d7f838990959ca4aba39992867c6f675d51453b3120160c020000000000000007121c252e353b3e403c3b37322a24303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000000000000000000000915222f3b4854606b717e88939fa4a19690837a6d675c544a4653606c78818e949fa69d938c80736d625a50473d342a21170e0500000000000000000000000000000000000006111b262f383f44515961696e757d83898f939a9c9fa2aaa7a8aaa9a7a7a7a7a7a9a9a8a6a9a29e9b99928e88827c746d676059504840372e251c11080000000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb3a79a8d8080808080808080808080808080808080808080808080808080808080808080808080807e7164574a3e3124170b00000000000000000915202a333f48515b636c717b81878e939da9acaba49f9d999992908c8985817d79746e69615e56504840382e261c12090000000000020e1925303b44505a616c707e879291847c717171717171717683908f8275685c4f4235291c0f000008131e28323a41465353535353535353534846423b33291f140900000613202c3945525d6876828f979797979c9fa6b0b7aca39b9897979797979797979797979797979795887b6e6155483b3025190e0200000000000000000000000000000000000000000407090a0d0e0f10121e2a353f495157596060555d60616264676a6f747c839095a0a7a0969083796d60574d42362a1e1205000000000000000000000915212e3a45505a636e74818e939f9590867e756d68605c606c717b838e939f969083796d665c50453c31261a0e02000000000000000000000013202c3946535f6c7986929facb9a79b918b8b8b8b8b8b8b8b8b8b8b8b8b8b8c8c8d8f9196989da0a7adaba59e9691857b6e675c5143392f24180c0000000000000000000000000000000000000000000000000916232f3c4855616b707373737373716c6155493d3023170a0000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d60534c4c4c4c4c4c4c4c4c4c4c4c4c4d4e4d52545a61686d7a83909aa4afac9f94887c6f6255493c3024190d010013202c3946535f6c7986929facada093867979797979797979797979797979797979797878777573716e6966625f57534e454039302920170f050000000000000000000000000915212e3a45505a636e74818e939f9590867e756d68605c606c717b838e939f969083796d665c50453c31261a0e0200000000000000030f1b26313c44505c666d7a8390949fa4aca69f9c95908c8a8988888a8c90959d9fa7a8a19992877e716a5f554b4033291f0e0400000000000000020d19242e3740464b4c4847433c3429303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000091623303c4956636f7c86929a93939791847b6e685d554b424d5a6673808d93939393948e81746e635b51483e352b22180f0500000000000000000000000000000000000000000a141d262d3340474f575e616b70777d82878b8f9298989a9b9d9e9e9f9f9f9e9d9d9b999797928e8a86817c766f6a605d554f473e362e251c130a000000000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f02000000000000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8174675b4e4134281b0e01000000000000020e1a26313c45505a636d727e868e939a9da5a39f9c9993908c898683807c7975706d66615e57524c443e362e261c140a00000000000005111e2a36414d56616c707e879292867f7e7d7d7d7d7d7d7d7e83918f8275685c4f4235291c0f0000020c1620283036394646464646464646463b3a36302921170d02000004111d2935414c5665727e8b9aa49f9fa1a3a9b1bbb5aca7a49f9f9f9f9f9f9f9f9f9f9f9f9f9fa7988c7f7265564c41362a1e1105000200000000000000000000000000000000050b101416171a1b1c1d1e1f232e373f464b4c53534b5153545557585f626a6f7a839097a1a8a0958d8074695e52463a2d2014090000000000000000000005111d29343f48525b606d78818f959f98928b827a706b676d747e8690959d9891847b6e675d544a3f332a1f140900000000000000000000000013202c3946535f6c7986929facb9ada39b989898989898989898989898989899999a9c9ea1a8aaacaaa69f9c938e847c6f695f554b4031271d12070000000000000000000000000000000000000000000000000714202c38444f596163676767676764615a5045392d2114080000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6058585858585858585858585858595a5a565e61656c707a829095a0acafa49a8f82766a5f53473b2e1e1308000013202c3946535f6c7986929facada093867a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6a686664615e5755534d47433c342e271e170e050000000000000000000000000005111d29343f48525b606d78818f959f98928b827a706b676d747e8690959d9891847b6e675d544a3f332a1f14090000000000000000000a152028343f4a545d686d7a828d939a9fa6aba7a09d999795949596999d9fa7aba39f9691877e716c61584e43392f21170d000000000000000007131e2a35404952575955534e463f35303d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000000000000000000000c1925323f4c5865727f868686868686857c6f695e564c4343505c69768286868686868682786d605c52493f362c23191006000000000000000000000000000000000000000000020b141b2227353e454d525960636b70757b7e8285888b8d8f9091929292929191908e8c8a8885817e7a746f6a626058514b433d352d241c130a01000000000000000000000b1825313e4b5864717e8b97a4b1a89b8e8175685b4e4235281b0f06060606060000000000000000010e1b2734414e5a6774818d9aa7b1a4978b7e7164584b3e3125180b0013202c3946535f6c7986929facb9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a8e8174675b4e4134281b0e0100000000000006121e2b37424e57626d727f8a92989fa4a29f99928f8b8683807d797673706d6664605c54534d46413a322c241c140a020000000000000714202d3946525e68707e87929999928c8a8a8a8a8a8a8a8a8a91958f8275685c4f4235291c0f000000050e161e252a2d2e39393939393939392e2d2a251f170f05000000010d19242f3b4754616e7b879393939394979fa9bcaea49c9993939393939393939393939393939393908376685e5246392d20140c070f0b0a080500000000000000000000000810161c202324262728292a2b2c202e353a3e3f464640454747484b4e535860686d7a85929ea9a79f92877b6e6154483b31261a0e02000000000000000000010c18222d364044505c666d79829095a09f938f857d746f79818a9298a09992867c6f695e554b42382e21180e0300000000000000000000000013202c3946535f6c7986929facacacada7a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a6a7a9a9a7aca49f9d99948f89817a6f6a5f574d43392e1f150b0100000000000000000000000000000000000000000000000004101c28333e474f55575a5a5a5a5a575550483e33281d11050000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d656565656565656565656565656566666769696e72777d8590949fa7b1a79f93877c6f62584e43372b1f0c02000013202c3946535f6c7986929facada093867a6d6060606060606060606060606060605f5f5e5d5c5a5754524d4847423c373128231d150c050000000000000000000000000000010c18222d364044505c666d79829095a09f938f857d746f79818a9298a09992867c6f695e554b42382e21180e03000000000000000000030c17232e38424c565d686d78808790949b9fa2aaa8a6a3a2a1a2a3a6a8a9a29f99928d847d716c615a50463c31271d0f0500000000000000000a16232f3b46525b6366625f585146413a3d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000000000000000000000b1824313e4a56626d72797979797979786f6a5f574d443a414e5a667076797979797979756d665c504a40372d241a11070000000000000000000000000000000000000000000000020a1117232c333b42464f54596063696e7276797c7e808283848585868585848382807d7b7975716d68625f58544e45403a312b231b120a0100000000000000000000000b1825313e4b5864717e8b97a4aca89b8e8175685b4e4235281b0f13131313130c06060300000000010e1b2734414e5a6774818d9aa7aca4978b7e7164584b3e3125180b0013202c3946535f6c7986929facacacaea9a7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a69a8e8174675b4e4134281b0e010000000000000814212e3a47535f6a717e8b919fa2a69f98928d87827e7a7673706d676663605c5453514b46423b363029201c17110a020000000000000814212e3b4754616e7b859299a3a39f9793939393939393939393938f8275685c4f4235291c0f00000000050c13191d20212d2d2d2d2d2d2d2d21201e1a140d0500000000000814202d3a46525e69768386868686878d97aab4a89c928c8686868686868686868686868686868686887a6e6154473b2e211c181c1b171714110c05000000000000000008111a21282c2f30333435363738392d2c282f3233392f35393a3b3c3e43474e565e68717e8b97a1ada3998d807367574d42362a1e12050000000000000000000006111b2428343f4a545d676d7a839196a19e979188807b838e929fa29f93877d706a5f574d433a30261c0f060000000000000000000000000013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa49f9f9f9e9d9c9a999a93908d88827d756d685f584e453c30271d0d0300000000000000000000000000000000000000000000000000000b16212c353e44484a4d4d4d4d4d4a49453e362c22170c000000000000000000000000000000000000000013202c3946535f6c7986929facada093867972727272727272727272727272727272737475787b7f838a91979fa6b0a79f958d80746a6054463c32261b0f00000013202c3946535f6c7986929facada093867a6d605353535353535353535353535353535252504f4d4b4846423b3a37312b262018120b030000000000000000000000000000000006111b2428343f4a545d676d7a839196a19e979188807b838e929fa29f93877d706a5f574d433a30261c0f06000000000000000000000006111c26303a434c565d666d737c83898e9298999b9d9e9f9f9f9e9d9b9997928d87817a6f6b615a50483e342a1f150b0000000000000000000c1925323e4b57636d736f6a625b524c443d4a5763707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000000000000000000000915222e3a46515b62656c6c6c6c6c6c6c625f584e453b323e49545e66696c6c6c6c6c6c69605c544a3f382e251b1208000000000000000000000000000000000000000000000000000006111a202930363d44484f54565e6165666d6f7174757778787979787877767573716f6d6664605d56534e47433d352f281f191109000000000000000000000000000b1825313e4b5864717e8b979f9f9f9b8e8175685b4e4235281b1320202020201913120f0b060000010e1b2734414e5a6774818d9a9f9f9f978b7e7164584b3e3125180b0013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8e8174675b4e4134281b0e01000000000005111e2a36424d57626e7b86929fa3a59e949086807b75716d686663605d555653504a464540393631302e2d2b28231c140c0400000000000714202d3946525e68717e87929999928a8686868686868686868686868175685c4f4235291c0f000000000002080d11131420202020202020201514120e090200000000000005111e2a36424d56667176797979797b8798a3aea6998c8079797979797979797979797979797979797976685e5246392d2c292329282423211d17100800000000000005101a232c33383c3d404142434445453a38342e27262d24292c2d2e2f31373d444c56606c7885919eabab9e918478695f53463a2d2114070000000000000000000000091217232e38424b555d686e7b849197a2a19a938d8890959da59d928b7f726b61584e453b31281e140a000000000000000000000000000013202c3946535f6c7986929393939393939393939393939393939393939a93929291908f8e8c898683807b76706b615e564e463c332a1e150b00000000000000000000000000000000000000000000000000000005101a232c33383c3d40404040403e3d39332c241a1005000000000000000000000000000000000000000013202c3946535f6c7986929facb2a5988b7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f80818285878b90959ea1a9aea69f959083796d60584e43342a20150a00000013202c3946535f6c7986929facada093867a6d6053474646464646464646464646464645454442403e3b3a36302e2b261f1b150c0700000000000000000000000000000000000000091217232e38424b555d686e7b849197a2a19a938d8890959da59d928b7f726b61584e453b31281e140a000000000000000000000000000a151e28313a444c545c606a6f767c8185898c8e909192929292918f8c8985807b746d68605950483e362c22180d030000000000000000000d192633404c5966737f7c726d615d564f444a5763707d8a96a3b0a3978a7d7064574a3d3124170a00000000000000000000000000000006121e29343f495156586060606060605f55534e463c332938424c545a5c6060606060605c53504a42382e261c130900000000000000000000000000000000000000000000000000000000080e171f252a33383d44484d5254545c60626567686a6b6b6c6c6c6b6a6a68666462605c5454524c47433c383229241d160d0700000000000000000000000000000b1825313e4b5864717e8b93939393938e8175685b4e4235281f202c2d2d2d2c26201f1c17110a02000e1b2734414e5a6774818d93939393938b7e7164584b3e3125180b0013202c3946535f6c79869293939393939393939393939393939393939393939393939393939393939393939393939393939393938e8174675b4e4134281b0e0100000000000714202d3a46525e6975828e98a2a89e938e827b736e6964615e565653514b4946443f3a3e4041403e3d3b3a38342e261e160d040000000005111e2a36414d56616c717e879392867e797979797979797979797979756f65594d4134281b0e00000000000000010507071313131313131313080705020000000000000000020e1925303b44555f666a6c6c6c6c7985929faca89b8e81756c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b5e564c413b3a38342f363531302d28221a120800000000000b16212c353e44484a4d4e4f505152524644403930271c181d20202122262b323a44505b6674818e9aa7ada196887b6e6155483b2e22150800000000000000000000000006111c263039434c565e696f7c859299a3a49f9a959da0a79e948d80746d62594f463c33291f160c02000000000000000000000000000013202c3946535f6c79878686868686868686868686868686868686868686868685858483817f7d7a77736e6a636059524c443c342a21180c030000000000000000000000000000000000000000000000000000000008111a21282c2f30343434343431302d28221a120800000000000000000000000000000000000000000013202c3946535f6c7986929facb9a79b918b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8c8d8d8f9197989da0a7adaaa39f948f837a6d675c51463d3222180e0400000013202c3946535f6c7986929facada093867a6d6053473a3939393939393939393939393938373533312e2d2a25211e1a150f0a0400000000000000000000000000000000000000000006111c263039434c565e696f7c859299a3a49f9a959da0a79e948d80746d62594f463c33291f160c0200000000000000000000000000030c161f28323a424a515860626b6f75797c7f828385858685858482807c79746e6a615e564f473e362c241a1006000000000000000000020f1c2835424f5b687581867f756d686059504a5763707d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000010d18232d373f464a4c535353535353524847433c342a21303a42494e505353535353534f46443f3830261c130a010000000000000000000000000000000000000000000000000000000000050d141a21272c33383b4246474a545c6a6c6c6c6c6c66605b5f5e5e5d5b59575553504a4745413a37312b272018130c040000000000000000000000000000000b1825313e4b5864717e868686868686868175685b4e4235282b383939393939332d2b28221c140b060e1b2734414e5a677480868686868686867e7164584b3e3125180b0013202c3946535f6c7987868686868686868686868686868686868686868686868686868686868686868686868686868686868686868174675b4e4134281b0e0100000000000814212e3b4754616e7b87939faaa0968e81786e69615e5754524c494745403d3a3840464b4c4e4c4b494846443f3830281f160c01000000020e1925303b44505a616c717e879392877e716c6c6c6c6c6c6c6c6c6c68655d54493d3125190c000000000000000000000000000000000000000000000000000000000000000009141f2932434d555b5d60605b667783909daaaa9d908377675c60606060606060606060606060606054524c4446484745404443423e3d39332c241a100500000004101c28333e474f5557595a5b5c5d5e5f53514a42392e231810131414151b2028333f4a5464717e8b97a4b2a8978a7e7164574b3e3124180b000000000000000000000000000a141e27313a444d575f6a707d879299a49f9f9f9fa9a0958f82786d605b51473e342a21170d04000000000000000000000000000000121f2c3845525e6a757979797979797979797979797979797979797979797979797877767472706d6866625f58544f46413a322a22180f060000000000000000000000000000000000000000000000000000000000000810161c20232427272727272423211d1710080000000000000000000000000000000000000000000013202c3946535f6c7986929facb9ada39b9898989898989898989898989898989899999a9c9ea1a9aaacaba39f98928c827a6d685e554b40342b2110060000000013202c3946535f6c7986929facada093867a6d6053473a2d2d2d2d2d2d2d2d2d2d2d2c2c2b2a29272421201e1a14120e09030000000000000000000000000000000000000000000000000a141e27313a444d575f6a707d879299a49f9f9f9fa9a0958f82786d605b51473e342a21170d04000000000000000000000000000000040d162028303940444e54596063666d707275767879797978777573706d66625f57524c443d342c241a120800000000000000000000020f1c2835424f5b6875828e8b827a6f6b605c545763707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000000000000000000000006111b252d343a3e3f464646464646453c3a37312a221e2830383e4143464646464646423a38342e261e140a010000000000000000000000000000000000000000000000000000000000000002090e161c21272c30363a44505c66757979797979726c665f5751504f4d4a4846443f3a39352f2b26201b160d0701000000000000000000000000000000000a1724303d4956626c7179797979797979756f65594d402e34384546464646463f3938332d261d180f091a2733404c58646e7479797979797979716c6256493d3024170a00121f2c3845525e6a757979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746f64594c4033271a0d0100000000000b1825313e4b5864717e8b99a4aa9d9184796d665f57524d4746413d3a38352f3040495157595b5958565453504a423a31281e13080000000008141f29323e48505a616c717e889392877e716c615a6060606060605c59544b42372c2115090000000000000000000000000000000000000000000000000000000000000000020d1720313b434a4e50534a546774818e9aa7ac9f9286796d6053535353535353535353535353535347464a51535453514b504f4e4a49453e362c22170c0000000714202c38444f596163666768696a6b6c605c544a4034281c100607080a0e17222d3d4a5763707d8a96a3b0a5988b7f7265584c3f3225190c00000000000000000000000000020c151f28323b454e58606b717e8793939393939393969083796d665c50493f352c22190f0500000000000000000000000000000000111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6a69676663615e5655534e48443d363028201810060000000000000000000000000000000000000000000000000000000000000000050b101416171a1a1a1a1a171714110c05000000000000000000000000000000000000000000000013202c3946535f6c7986929facacacada7a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a6a7a8aaa8a6a7a09d99928e867f786d685e564c43392e22190f000000000013202c3946535f6c7986929facaca093867a6d6053473a2d20202020202020202020201f1f1d1c1a181514120e0906020000000000000000000000000000000000000000000000000000020c151f28323b454e58606b717e8793939393939393969083796d665c50493f352c22190f050000000000000000000000000000000000040d161e272e343d43474f54545c606366686a6b6c6c6c6b6a686663605c54534e46413a322b221a12080000000000000000000000020f1c2835424f5b6875828e938f847d736d665e5763707d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000000009131b23292e3132393939393939392f2e2b262018161e262d323536393939393939362d2b28231c140c0200000000000000000000000000000000000000000000000000000000000000000000050b10161c1f252d3a4653606d7987868686867f786e69625b524d443e3c3a38342e2c29241e1b150f0a040000000000000000000000000000000000000815212d3945505a62646c6c6c6c6c6c6c68655d53483d383f445253535353534c46443f382f2a2119141824303c48535c64676c6c6c6c6c6c6c64625a5045392d21150800111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645d53483c3024180b0000000000010d1a2734404d5a6773808d9aaba4988b7e71675c544d46423b3935302d2c292e3842515b63666866646361605c544c433a2f24190d01000000020d17202c363e48505a626c717e889392877e716c61574d535353534f4d49423930261b1004000000000000000000000000000000000000000000000000000000000000000000050e1f2831383e4243464b5865717e8b98a8aea399897c7063564946464646464646464646464646404a545c6061605c555d5c5b575550483e33281d110500000916232f3c4855616b70737475767778786d665c5144382c1f12060000000616232f3c4956626f7c8995a2afa6998c807366594d4033261a0d0000000000000000000000000000030d162029333c464f59616c727f8686868686868686847b6e675d544a3f372d231a100700000000000000000000000000000000000e1a26313d4751595e5f6060606060606060606060606060606060606060605f5f5e5d5c5b595654524c4847433c38332a251e160e0600000000000000000000000000000000000000000000000000000000000000000000000407090a0d0d0d0d0d0b0a08050000000000000000000000000000000000000000000000000013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa39f9f9e9d9b999795908c86817b736d665e564c443a30271d1007000000000013202c3946535f6c7986929f9f9f9f93867a6d6053473a2d20141313131313131313131212110f0d0b08070502000000000000000000000000000000000000000000000000000000000000030d162029333c464f59616c727f8686868686868686847b6e675d544a3f372d231a100700000000000000000000000000000000000000040c151c232832373d43484b515356595b5d5e5f5f5f5f5e5c595653514b47423c35302820191008000000000000000000000000020f1c2835424f5b6875828e9b96918780786e696163707d8a96a3b0a3978a7d7064574a3d3124170a0000000000000000000000000000000000010911181e2224252d2d2d2d2d2d2c22211f1a150e0c141b212628292d2d2d2d2d2d29201f1c17110a0200000000000000000000000000000000000000000000000000000000000000000000000000050b10141f2b3844505c66717e879399928c827b726d615e565046413a322924201d19130f0a04000000000000000000000000000000000000000005111d29343e48505658606060606060605b59534b4138424a505e5f6060605f5953504a423b332a251f17202b36414a53585a60606060606060585650483e34291d1105000e1a26313d4751595e5f606060606060606060606060606060606060606060606060606060606060606060606060606060606060605b59534a41362b2014080000000000020e1b2835414e5b6874818e9ba7a194887b6e61554b423b36302d292523282c343f4a54636d73747371706e6d665d564c4135291d110400000000050e1a242c363e48505a626c717f889392877e71695f534646464642413d3730271e140900000000000000000000000000000000000000000000000000000000000000000000000d161f272d3236373b4855616e7b8896a0acab998d807366594f4338393939393939393939393844515c666d6e6d676b6a696864615a5045392d21140800000a1724303d4a5763707d80818283848586786d6053463a2d20160d0909070c1724303d4a5763707d8a96a3b0a69a8d8073675a4d4034271a0d010000000000000000000000000000040e17212a343d47505a626d727979797979797979786e695e554b42382e251b11080000000000000000000000000000000000000915202b353f474e525353535353535353535353535353535353535353535353525251504e4c4a4746413b3a37312c272119130c05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929393939393939393939393939393939393939393939399929291908f8d8a87847f7b756e69605c544c443a32291e150b00000000000013202c3946535f6c7986929393939393867a6d6053473a2d20140706060606060606060605040200000000000000000000000000000000000000000000000000000000000000000000000000040e17212a343d47505a626d727979797979797979786e695e554b42382e251b1108000000000000000000000000000000000000000000030b121820272b323839404546494c4f505252535252514f4d4946454039373129251e160e0700000000000000000000000000020f1c2835424f5b6875828e9ba199928c827b706c63707d8a96a3b0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000060d121518192020202020201f1515120f0a03030a1015191c1d2020202020201c1312100b06000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616c717e87939a9490867f766e69615a524c443e352f281f19100700000000000000000000000000000000000000000000000c17222d363e45494b535353535353534e4d4841343f4a545c6a6c6c6c6c6c66605b544d453f3630292019252f3841484c4e535353535353534b49453e362d22170c00000915202b353f474e525353535353535353535353534a545c6a6c6c6c6c6c66605b544d5353535353535353535353535353535353534e4c4841382f251a0f030000000000020e1b2835414e5b6874818e9ba7a194877a6e6154473e39352f3333332e34383d44505c66737f817f7e7c7b786d685d5245392c201306000000000008121b242d363f48505a626d727f8b9192867b6e6155483b39393534312c261e150c020000000000000000000000000000000000000000000000000000000000000000000000040d151c2226292d3a46535f697784919eaaaa9d9184776b6054483d31282d2d2d2d2d2d2d2d3a4653606d787b7a7978777675716c6155493d3023170a00010e1a2734414d5a6774808c8d8e8f9091887c6f6255483e31281f1a171617181d27333f495364717e8b97a4b1a6998c807366594d4033261a0d00000000000000000000000000000000050f18222b353e48515b62656c6c6c6c6c6c6c6c6b615e574d433a30261c130900000000000000000000000000000000000000040f19242d353d4245464646464646464646464646464646464646464646464646454443413f3d3a3936302e2b26201c160d080200000000000000000000000000000000000000000000000000000000000000000000020608080b0e1011121313121211100d0b08070502000000000000000000000000000000000000000013202c3946535f6c79878686868686868686868686868686868686868686868686868685858382807d7a77736e69615f57504a423a322920170c0300000000000013202c3946535f6c798786868686868686796d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f18222b353e48515b62656c6c6c6c6c6c6c6c6b615e574d433a30261c1309000000000000000000000000000000000000000000000000070c151b21272c2e34383a3d3f424345464646454442403d3a38342e2b262019130c040000000000000000000000000000020f1c2835424f5b6875818e969ea39f9490857d746d707d8a96a3b0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000106090b0c13131313131312090806030000000005090d0f101313131313130f07060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e3842505a616c717e88939a98928b827b716c615e564f45413a312b22190f040000000000000000000000000000000000000000000006111b242d34393d3e4646464646464642403d373844505c66757979797979726c665f575146423b3229251e262f363c4041464646464646463e3d39342d241b11060000040f19242d353d4245464646464646464646464644505c66757979797979726c665f5751464246464646464646464646464646464641403c362f261d1308000000000000000d1a2733404d5a6673808d99aca295897c6f62585047454140403f40404045464f57606d78858e8c8b8987867a6d6054473a2d21140700000000000009121b242d363f48505a626d727f8b8c7f72695f53463a2d2d292825211b140c0300000000000000000000000000000000000000000000000000000000000000000000000000030a11161a1e2a36424d576773808d9aa7aca096897c6f63594f433a3129242322222429333f4a5463707d878685848382817e7164574a3e3124170b00000b1825323e4b5865717e8b989b9c9d988b7f7265594f433a312a2524232323282f3744505b6574818e9aa7b5ab988b7e7265584b3f3225180c0000000000000000000000000000000000061019232c363f4951565860606060606060605e54524d453b31281e140a01000000000000000000000000000000000000000008121b242b3136383939393939393939393939393939393939393939393939393837363433302e2d2a25211f1a15100b050000000000000000000000000000000000000000000000000000000000000000000205090e121415181b1d1e1f20201f1f1e1c1a181514120e0905020000000000000000000000000000000000121f2c3845525e6a7579797979797979797979797979797979797979797979797979797878777573716e6866615e57534d443f38302820170e0500000000000000121f2c3845525e6a75797979797979797976675c5145382c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061019232c363f4951565860606060606060605e54524d453b31281e140a0100000000000000000000000000000000000000000000000000040a0f161b1d23282c2d303335373839393938373533302d2c28231d1a150d080200000000000000000000000000000000091623303c4956636f7d848e939fa29f97928a8079707d8a96a3b0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303e48505a626c717f88939f9f948f857e756d686159514b433d342b21160a000000000000000000000000000000000000000000000009121b22292d3031393939393939393534312d3a4653606d7987868686867f786e69625b524d443e35302820252b3033343939393939393931302d29221b12090000000008121b242b313638393939393939393939393a4653606d7987868686867f786e69625b524d443e353039393939393939393939393433302b251d140b01000000000000000b1824313e4b5764717e8a9aa4a69a8d80736a615a54524c4d4d4c4c4d4b515359606a717e8b979997968f8376685d5245392c2013060000000000000009121b242d363f48515b626d727f80736d63574d42362a1e1c1b191510090200000000000000000000000000000000000000000000000000000000000000000000000000000000050a0e1a26313c4855626f7c88959faba89b8f82756b60554b433b352f2f2f2f2f353b44505b6673808c989291908f8b7e7164584b3e3125180b00000815222e3b4855616e7b8896a0a9aa9d9083776b61554b433c36313030302e3439404b55606c7884919eaaafa499897d7063564a3d3023170a00000000000000000000000000000000000007111a242d373f464a4c5353535353535353524846423b33291f160c020000000000000000000000000000000000000000000009121920262a2c2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2a2928262321201d1914120f090300000000000000000000000000000000000000000000000000000000000000000002080e11151a1e21222528292b2c2c2c2c2b2b29272522211e1a14120e0902000000000000000000000000000000111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6a686664615e5654534d46423c342e261e160e050000000000000000111d2a36424e59636a6c6c6c6c6c6c6c6c6c5c554b4034291c10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007111a242d373f464a4c5353535353535353524846423b33291f160c0200000000000000000000000000000000000000000000000000000000040a0f12181c1f202326282a2b2c2c2c2c2b292623201f1c18120e09030000000000000000000000000000000000000915222f3b4854606b6f7a818a92989fa29e928d837b7d8a96a3b0a3978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a131313131310100d0a050000000000000000000000000000000000000000000000000000000000000a141e2c363e48505a626d727f8b919b9e97928a817a706b605d554e463d32271b0f0300000000000000000000000000000000000000000000000911171d2124252d2d2d2d2d2d2d28271f2b3844505c66717e879399928c827b726d615e565046413a3229241d2427272d2d2d2d2d2d2d2524211d17110900000000000009121920262a2c2c2d2d2d2d2d2d2d2d2b3844505c66717e879399928c827b726d615e565046413a3229242d2d2d2d2d2d2d2d282724201a130b0200000000000000000814212e3b4754616e7b87939fac9f92867c706c64605d565a5959595a555c60636b707c85929fa9a1968b7e7265564c4135291d1104000000000000000009121b242d363f49515b626d72736e635b51453b31261a0e0e0c090400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915212e3a47535f6a7683909da7aa9e93897c6f675d554c45413d3c3b3c3c40454d57606c7884919e9f9e9d95877a6e6154473b2e21140800000814212d3a47535f697784919daaaca0958a7d70675d554d46423e3d3c3d3e40454b515c67707d8a96a0acac9f93867a6d6054473a2d2114070000000000000000000000000000000000000008121b252d343a3e3f4646464646464646453b3a36302921170d04000000000000000000000000000000000000000000000000080f151a1d1f20202020202020202020202020202020202020202020201f1f1e1d1b19171413110d08060200000000000000000000000000000000000000000000000000000000000000000002080d14191e20262b2e2f323436383939393938373634322e2d2b26201e1a140e0902000000000000000000000000000e1a26313d4751595e5f6060606060606060606060606060606060606060606060605f5f5e5d5c5a5754524c4846423b373128231c140c040000000000000000000e1a26313d4751595e5f606060606060605f514b43392f23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b252d343a3e3f4646464646464646453b3a36302921170d040000000000000000000000000000000000000000000000000000000000000000070c10131316191c1d1f1f201f1f1e1c1a161313100c070000000000000000000000000000000000000000000713202c38444f5960686d757e8590949fa39d959086818e9ba8b0a3978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1014161720202020201d1c1a16110a0300000000000000000000000000000000000000000000000000000000020c1a242d363f48505a626d727f8b919ba29f938e857d746d6760584e43382c1f1307000000000000000000000000000000000000000000000000060c11151718202020202020201b1b1c28343f4a54616c717e87939a9490867f766e69615a524c443e352f281f191b20202020202020181715110c060000000000000000080f151a1d1f20202020202020201c28343f4a54616c717e87939a9490867f766e69615a524c443e352f281f1920202020201b1a18140f08010000000000000000000714202d3946525e6876828f9aa4a39892857d76716d6868676666666668676d70757d859197a2a49e9184796d6053463a2f24190d0100000000000000000009121b242d373f49515b626566635c52493f33291f140900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b37434e5864707d8a95a0aca59d9183796d675e56514b4a494848494b51575f69717e8b96a1aca89d908377685e5246392d201407000006121e2b37424d5766737f8c98a2aea79e9184796d675f57534d4b4a494a4b4b51555d606d7983909da8b2a99d908376685d5245392c201307000000000000000000000000000000000000000009131b23292e31323939393939393939382e2d2a251f170f05000000000000000000000000000000000000000000000000000004090e11121313131313131313131313131313131313131313131313131211100e0c0a070705010000000000000000000000000000000000000000000000000000000000000000000000040c13191f252a2d31373a3b3e41434445464645454443403e3b3a37312d2a251f1a140d050000000000000000000000000915202b353f474e5253535353535353535353535353535353535353535353535353535252504f4d4a4746413b3a36312b261f17110a02000000000000000000000915202b353f474e5253535353535353535345403931271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b23292e31323939393939393939382e2d2a251f170f0500000000000000000000000000000000000000000000000000000000000000000000000406070a0c0f101213131312110f0d0a0706040000000000000000000000000000000000000000000000030f1b27323d474f565d606c717b828c9299a0a098928e939eaab0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d2d2a2926221c150d040000000000000000000000000000000000000000000000000000000008121b242d363f48515b626d727f8c919ca39e97918a81796f6a6054483b2e221509000000000000000000000000000000000000000000000000000005080a0b131313131313130f0b17232e3842505a616c717e88939a98928b827b716c615e564f45413a312b22190f1313131313130b0a0805000000000000000000000004090e1112131313131313130b17232e3842505a616c717e88939a98928b827b716c615e564f45413a312b22190f1313130e0d0b0803000000000000000000000005111e2a36414d56626f7c87939fa5a297928a837d7a777573737273737476797d82889197a1a59d928a7e71675c514538281e1308000000000000000000000009121b252d373f495156585a57524a40372d21180d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26313c4653606c7883909aa4aca0958f82796e68605d555756555556555d60696e7b85929fa8aca1968a7e7164564d41362a1e11050000020e1a26313c4754616d7a86929fa8aca1969082796e69615e575857565657545c60676d75818e95a0acada2978b7f7265564c4135291d11040000000000000000000000000000000000000000010911181e2224252d2d2d2d2d2d2d2d2b21201e1a140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080e161e25293036393c4247484b4e50515253535252514f4d4b4846423c3a36302a251f170f080000000000000000000000040f19242d353d4245464646464646464646464646464646464646464646464646464645454442403e3b3936302d2a251f1a140b06000000000000000000000000040f19242d353d424546464646464646464638342f271f150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010911181e2224252d2d2d2d2d2d2d2d2b21201e1a140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b16212b353d444c525a61696e787f8791969da29f9b9ea5afb0a3978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a22282d303139393939393736322d271f160d030000000000000000000000000000000000000000000000000000000009121b242d363f49515b626d727f8c9193939393938e847c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000060606060606060006111c26303e48505a626c717f88939f9f948f857e756d686159514b433d342b21160a000606060600000000000000000000000000000000000104060606060606060006111c26303e48505a626c717f88939f9f948f857e756d686159514b433d342b21160a000601010000000000000000000000000000020e1925303b4754606a73808d939fa4a29f94908a86848280807f7f80818385898f939aa1a49f938d80746c61554b403428160c0100000000000000000000000009121b252d373f464a4c4d4b4740382e251c0f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151f2b3744505b656f7c88939fa7a89e948f837a736d6765636262626365676d727b849197a2ada59e9184786d6053463b3025190e020000000915202d3946525e6873808c95a0aaa89f9490837b736e6967646363636465666d7179818e939da7b0a69e92857a6d6054473a2f24190d0100000000000000000000000000000000000000000000060d1216181920202020202020201f1514120e09020000000000000000000000000000000000000000000000000000000000000000000104060606060606060601000000000000000000040607090c0e0f11121213131211100e0b0808060200000000000000000000000000000000000000000000000000020a121a202830353b4146474e5355585b5c5e5f5f5f5f5e5e5c5a5855534d4846423b363029211a120a020000000000000000000008121b242b31363839393939393939393939393939393939393939393939393939393938373533312e2d2a25211e1a140e0903000000000000000000000000000008121b242b3136383939393939393939392c29231d150d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d1216181920202020202020201f1514120e090200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003070909131313131313130b0a08040000000000000000000000000000000000040f19232b323a414550575e666c727c848d929ea1a9aaafb7b0a3978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101a232c33393c3d464646464643423e3831281f150a000000000000000000000000000000000000000000000000000000000009121b242d373f49515b636d737f86868686868686868174675a4e4134271b0e0100000000000000000000000000000000000000000000000000000000000000000000000000000a141e2c363e48505a626d727f8b919b9e97928a817a706b605d554e463d32271b0f0300000000000000000000000000000000000000000000000000000000000000000a141e2c363e48505a626d727f8b919b9e97928a817a706b605d554e463d32271b0f0300000000000000000000000000000000000008141f2b37434e58606d78818d939a9fa69f9c9992908f8d8c8c8c8d8e9092989c9fa49f99938c81786d605a5043392e231804000000000000000000000000000009131b252d343a3e3f403f3b352e261c130a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f4953606b74808d959fa8a69e959086807a7672706f6e6f6f7274797f869196a1a9a79d938a7e71665c504438291f14080000000005111d2935414c56606d79849198a2aaa69f959086807b767371706f70717275797e848e939da5afa89f948b7f72675d5145392c1e13080000000000000000000000000000000000000000000000000106090b0c1313131313131313120807050200000000000000000000000000000000000000000000000000000000000000000004090e1112131313131313130e0d0b0703000104070c10131316191b1c1e1f1f20201f1e1d1b181514120f0a0400000000000000000000000000000000000000000000020b141c242c323a41464d5254575f626567696b6c6c6c6c6b6a696765615f5754524d46423b332c241c140a020000000000000000000009121920262a2c2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2a29272421201e1914120e0903000000000000000000000000000000000009121920262a2c2c2d2d2d2d2d2d2d2d1f1c18120b030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000106090b0c13131313131313131208070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13151620202020202020171714110c0500000000000000000000000000000000071119202830353e454d545b606a6f79808a92979ea6aeb4aca3978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222c363e44494a5353535353504e4a433a31271c1105000000000000000000000000000000000000000000000000000000000009121b252d373f49515b636d737979797979797979746e64584c4033271a0d010000000000000000000000000000000000000000000000000000000000000000000000000000020c1a242d363f48505a626d727f8b919ba29f938e857d746d6760584e43382c1f13070000000000000000000000000000000000000000000000000000000000000000020c1a242d363f48505a626d727f8b919ba29f938e857d746d6760584e43382c1f1307000000000000000000000000000000000000020f1b27323d44505c666d78808890959b9fa2a39f9d9b9a999999999b9d9fa2a29e9b948f877f776d665c50483e30271d120700000000000000000000000000000109131b23292e313233322f2a241c140a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38414f59606d788390959fa7a79f98928c86827f7d7c7b7b7c7e81858b9298a1a8a69f958e81746c61544a3f3428170d0200000000010d1925303a45515c676f7c869298a1a9a79f98928d8783807e7d7c7d7e7f82858b91969ea5afa7a0969082786c60554b4135291d0c010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f151a1d1f202020202020201a1a17130e070d1113181c1f20232527292a2b2c2c2c2c2b2a282522211f1a15100c0701000000000000000000000000000000000000010b141d262e363e444c52565e61666a6e717476777879797878777673716e6966615e57524d453e362e261c140a0000000000000000000000080f151a1d1f20202020202020202020202020202020202020202020202020201f1f1d1c1a171414110e0805020000000000000000000000000000000000000000080f151a1d1f20202020202020202013100c0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161b1f22232d2d2d2d2d2d2d2423211c17100800000000000000000000000000000000070e161e2429333b424a505860676d747d858f949fa29f9f9f978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e4850555760606060605d5b554d43382d22160a00000000000000000000000000000000000000000000000000000000000009131b252d373f49515b63666c6c6c6c6c6c6c6c67645c53483c3024180b0000000000000000000000000000000000000000000000000000000000000000000000000000000008121b242d363f48515b626d727f8c919ca39e97918a81796f6a6054483b2e22150900000000000000000000000000000000000000000000000000000000000000000008121b242d363f48515b626d727f8c919ca39e97918a81796f6a6054483b2e221509000000000000000000000000000000000000000a152028343f4a545c666c737c83898e9298989b9c9e9e9f9f9f9e9e9d9a9897928e89827c736c655c544a3f362c1e150b00000000000000000000000000000000010911181e2225252726231f19120a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f3d45515c666d7a8390959fa4aaa29f98928f8c8a898888898b8e92979fa2aaa59e949083796d605a5042382e23170500000000000008131e2934404b555f6a707d8692979fa6aaa39f9993908d8b8a89898a8c8f92979da0a8aca59e9590847a6d665b50433a2f24180d00000000000000000000000000000000000000000000000000000000000000020608080b0e1011121313121211100d0b080705020000000000000000000000000000000000000000000009121920262a2c2c2d2d2d2d2d2d2726231f1913181d2023282c2d2f323436373839393938383734322f2e2b261f1c18120b03000000000000000000000000000000000009131d262f38404850565e61686e73777b7e81838485868685858482807e7b77736e69615e57504840382e261c1309000000000000000000000004090e111213131313131313131313131313131313131313131313131313131212110f0d0b0807050200000000000000000000000000000000000000000000000004090e1112131313131313131313060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a131313131313130a09070400000000000000000007101921272c2f303939393939393931302d28221a120800000000000000000000000000000000040c131921292f383f444e555d606b707a828b9298939393938a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202d3944505a61646c6c6c6c6c6a665f554a3e32261a0d0000000000000000000000000000000000000000000000000000000000000109131b252e37404951575960606060606060605a58534a41362b201408000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b242d363f49515b626d727f8c9193939393938e847c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000009121b242d363f49515b626d727f8c9193939393938e847c6f6256493c2f23160900000000000000000000000000000000000000040b17232e38424a545b606b6f767d8185898c8e9091929293929291908e8c8985817c766f6a605b534a42382e241a0c03000000000000000000000000000000000000070d121618191a1917130e0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2834404b545e686d7a838d939a9fa7aaa29f9c989695959596989b9fa2a9a8a09e938e827a6d675d51483e30261c1106000000000000020c18232f39434e58606b707d858f949ea0a8aba49f9c9a9796969697989b9ea1a9aca7a09d938e837b6e685e544a3f31281d1307000000000000000000000000000000000000000000000000000000000205090e121415181b1d1e1f20201f1f1e1c1a181514120e09050200000000000000000000000000000000000008121b242b313638393939393939393433302b241d24292c2e34383a3c3f41424445454646454443413e3b3a37312c29231d150d0700000000000000000000000000000007101b252f38404a525a61686d747b8084888b8e8f919292929291918f8d8b8884807b746e69615a524a40382e251b0f0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1014161720202020202020171614100b05000000000000040f19232b32383b3c464646464646463e3c39332c241a10050000000000000000000000000000000002080f171d262d333c434b515961686d757e858686868686867d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303c4955616c7079797979797671665b4e4236291c1000000000000000000000000000000000000000000000000000000000000000010a131c252e3740464b4c53535353535353534e4c4841382f251a0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b242d373f49515b636d737f86868686868686868174675a4e4134271b0e010000000000000000000000000000000000000000000000000000000000000000000009121b242d373f49515b636d737f86868686868686868174675a4e4134271b0e010000000000000000000000000000000000000006111c263038424a505960636b7075797c7f81838485858685858483817f7c79746f6b6260585049413830261c120900000000000000000000000000000000000000000106090b0c0d0c0a0702000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b18232e39424c565e686d79808790959b9fa2aaa8a5a3a2a1a2a2a5a7aba49f9c96918981796d685d554b40362c1e150a000000000000000007121d27313c464f59606a6f7b828a91969c9fa3aba8a6a4a3a2a3a4a5a8a8aaa29f9b95908981796e695e564c42382d1f160c01000000000000000000000000000000000000000000000000000002080e11151a1e21222528292b2c2c2c2c2b2b29272522211e1a14120e0902000000000000000000000000000000040f19242d353d424546464646464646413f3c362f282f35393a404546494c4e4f51525253535251504e4b4847433c38342f271f19100a01000000000000000000000000030c19222d37404a525c636c717a81868c9196989a9c9e9f9f9f9f9e9d9c9a9895918d86817b716c645c524a40372d21180e030000000000000000000000020507081313131313131313131313131313131313131313131313131313131313131211100c09060503000000000000000000000000000000000000000000000000000000000000020507080b0e111112131312110f0c0908060300000000000000000406070b0f1213131211100e0c0b0906010000000000000000000000000000000000000000000000010406070a0d10111213131312100e0b070705010000000000000000000000000000000000000000000810161c2023232d2d2d2d2d2d2d2323201c16100800000000000a16212b353d434849535353535353534a49453e362c22170c000000000000000000000000000000000000050b141c2228313940454f565e616d7279797979797979706c6155493c3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d868686868683766a5d5043372a1d100000000000000000000000000000000000000000000000000000000000000000010a131c252e353b3e40464646464646464641403c362f261d1308000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b252d373f49515b636d737979797979797979746e64584c4033271a0d01000000000000000000000000000000000000000000000000000000000000000000000009121b252d373f49515b636d737979797979797979746e64584c4033271a0d0100000000000000000000000000000000000000000a141e262f383f444f54596063666d6f72747677787979797877767472706d66636059544e443f382f261e140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303a444c565e676d747c83898e9298999b9d9e9f9f9f9e9d9c9999938f8a847d756d675d564c433a2f241a0c030000000000000000010b151f2a343d474f5860696e767e848a8f9299999b9d9e9f9f9f9f9e9d9b9998928e89837d756d675e564d443a2f261c0d040000000000000000000000000000000000000000000000000002080d14191e20262b2e2f323436383939393938373634322e2d2b26201e1a140e0902000000000000000000000000000915202b353f474e52535353535353534d4c474038313a4045474b515356585a5c5d5e5f5f5f5f5e5d5b5855534e47454039312b221b130a0000000000000000000000000a151e2b343f49525c646e737e858d92999da0a8a9a29f9d9c9b9c9d9fa2aaa7a09d99928e857e736e645c52493f332a1f140900000000000000000002080e1114142020202020202020202020202020202020202020202020202020202020201f1e1c191613120f0b06000000000000000000000000000000000000000000000000000003090e121415181b1d1e1f201f1f1d1b191515120f0a0401000000070c101313181c1e1f201f1e1d1b181815120d06000000000000000000000000000000000000000001070d111314171a1c1e1e1f201f1e1d1b181413110d080200000000000000000000000000000000000008111a21272c2f3039393939393939302f2c27211a1108000000030f1b27323d474f545660606060606060575550483e33281c1104000000000000000000000000000000000000020a11171f272f353e444c525b62656c6c6c6c6c6c6c64615a5044392d20140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a9393939083766a5d5043372a1d10000000000000000000000000000000000000000000000000000000000000000000010a131c232a2f323339393939393939393433302b251d140b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b252d373f49515b63666c6c6c6c6c6c6c6c67645c53483c3024180b0000000000000000000000000000000000000000000000000000000000000000000000000009131b252d373f49515b63666c6c6c6c6c6c6c6c67645c53483c3024180b000000000000000000000000000000000000000000020c141d262d333d43484f54545c60636568696b6b6c6c6c6b6b6a676563605c54544f47433d332d261d140c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e28323a444c555c606b6f767c8185898c8e909192929291908f8d8a86827d79706b605d554c443a31281d120800000000000000000000030d18222b353d464e575e616c71787d82868a8c8f90919293929291908e8c8985817d77706b605d554d443b32281d140a00000000000000000000000000000000000000000000000000040c13191f252a2d31373a3b3e41434445464645454443403e3b3a37312d2a251f1a140d050000000000000000000000000e1a26313d4751595e5f6060606060605a58524a403a434b5153545c60626567696a6b6c6c6c6b6b6a6765625f5853514b433d342d251b12090000000000000000000006111c26303d46515b646e74808a92979fa3a9a19e999792908f8f8f909298989d9fa7a39f97928a80736e635b51453b31261a0e0400000000000000050d14191e20212d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b292623201f1b17110c0600000000000000000000000000000000000000000000040a0f141a1e212125282a2b2c2c2c2b2a282622211f1b15110d08030b12181c1f2025292b2c2c2c2b2a272524221d1811090100000000000000000000000000000000040a0f13181d20202326292a2b2c2c2c2b2a272521201e1913100b0500000000000000000000000000000005101a232c33383c3d464646464646463d3c38332c231a1005000007131f2c38434f5960636c6c6c6c6c6c6c64615a5045392d2114080000000000000000000000000000000000000000060d151d2429323a41465156585f606060606060575550483e33281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a979f9d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000000000000000000000010a12191e2325262d2d2d2d2d2d2d2d272724201a130b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000109131b252e37404951575960606060606060605a58534a41362b201408000000000000000000000000000000000000000000000000000000000000000000000000000109131b252e37404951575960606060606060605a58534a41362b20140800000000000000000000000000000000000000000000020b141c222832383d44484a515356595b5d5e5f5f605f5f5e5d5b595653504a48443d383227221b140b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c162028323a434b515960636b6f75797d7f828385858685858482807d7a76716d666059514b433a32281f160c000000000000000000000000061019232b343d454d525a61666c70757a7d80828385858686858483817f7c7975706b636059514b433b322920160b02000000000000000000000000000000000000000000000000080e161e25293036393c4247484b4e50515253535252514f4d4b4846423c3a36302a251f170f080000000000000000000000111d2a36424e59636a6c6c6c6c6c6c6c67645c5247404b555d6064666d6f727475777878797978777674716e6a64605c554e463f372d251b11070000000000000000000c17232e38424f59626d74808d929ea1a9a39f97918c8885838282838385888b90959ea1a8a29f928d80736d62574d42362a20160a000000000000050e171e252a2d2e39393939393939393939393939393939393939393939393939393939393938373633302d2b27221b17110a0300000000000000000000000000000000000000060c161b1f252a2d2e31343738393939383735322f2e2b26201d19130c151d23282c2d32353839393838363432312e29231b1309000000000000000000000000000002080d151b1d24292c2d3033363738393939383634312e2d2a251e1c160f0a04000000000000000000000000000b16212c353d44484a535353535353534a48443d352c21160b00000915222f3b4854606b6f79797979797979716c6155493c3023170a000000000000000000000000000000000000000000030b1218202930363f454a4b525353535353534a49443e362c22170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a39d9083766a5d5043372a1d10000000000000000000000000000000000000000000000000000000000000000000000000070d1216191920202020202020201b1a18140f0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c252e3740464b4c53535353535353534e4c4841382f251a0f030000000000000000000000000000000000000000000000000000000000000000000000000000010a131c252e3740464b4c53535353535353534e4c4841382f251a0f030000000000000000000000000000000000000000000000020a111721272c333839404446494c4e5051525253525251504e4c4946443f3838322b272017110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e162028313940454f54596063676d707375777879797978777673716e6864605c544f454039312820160d0400000000000000000000000000071119222b333b424650545b6064676d707375777879797978787675726f6d67636059544f45403a312920170e050000000000000000000000000000000000000000000000020a121a202830353b4146474e5355585b5c5e5f5f5f5f5e5e5c5a5855534d4846423b363029211a120a02000000000000000000121f2c3845525e6a7579797979797979746e64584c45515d676d7176797c7f81828485858686858483817e7b77716d67605851493f372d23190b020000000000000003101c28343f4a54606b727f8c929ca4aaa299928c84807b787675757677797b7f838a91969fa6a49c928b7f72695f53463d32271b0f0300000000020d1720293036393b4646464646464646464646464646464646464646464646464646464646464544433f3c3937332d28231c150c0500000000000000000000000000000000030a111720272b31363a3b3e4144444546464544423f3c3b37322c29241e191e272e34383a3e42454646454443413f3d3a342d251b1106000000000000000000000000050d131920262b2f35393a3d404344454646464543413e3a3936302c28211b150e06000000000000000000000004101c27333d474f55566060606060606056554f473d33271c100400091623303c4956636f7d868686868686867e7164574a3e3124170b0000000000000000000000000000000000000000000001070e171e252a343a3d3f464646464646463d3c39332c231a10050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a39d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000000000000000000000000000002060a0c0d13131313131313130e0d0b0803000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c252e353b3e40464646464646464641403c362f261d130800000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c252e353b3e40464646464646464641403c362f261d13080000000000000000000000000000000000000000000000000000060b161b21272c2e34383a3c3f41434445464646454443413f3d3a38342e2c27211b160b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e161f272f343d43484f54555c606366686a6b6c6c6c6b6a696664615e5653514a423d352f271f160d04000000000000000000000000000000071019202930363e424a5053555d606366686a6b6c6c6c6c6b6a686663605c55554f48443d352f281f170e050000000000000000000000000000000000000000000000020b141c242c323a41464d5254575f626567696b6c6c6c6c6b6a696765615f5754524d46423b332c241c140a02000000000000000013202c3946535f6c79878686868686868074675a4d4753606d797e8286898b8d8f90919292929291908e8b88837e796f6a625b51493f352b1d140a0000000000000006121f2c3844505c666f7c87929fa4aba29892878079736f6a6a696869656c6e72777d848f949fa6a49f92867b6e61584e43382b1f13060000000008141e29323b41465353535353535353535353535353535353535353535353535353535353535352514f4c4946443f38342e261e170f070000000000000000000000000000030c151c232832373b4246484b4e505152535252504e4c4847433c39352f28222b30394045464b4f5152535251504e4b4a463f372d23180d0100000000000000000000080e171e252a31373a4045474a4d4f515152535251504e4b4746413a38332b2620181009000000000000000000000714202c38444f5961636c6c6c6c6c6c6c6361594f44382c20140700091623303c4956636f7c8993939393938a7d7164574a3e3124170b000000000000000000000000000000000000000000000000050d131923292e31323939393939393931302d28221a1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a39d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c232a2f323339393939393939393433302b251d140b010000000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c232a2f323339393939393939393433302b251d140b01000000000000000000000000000000000000000000000000000000040a0f161c1c23282c2d3032353638383939393838373432302d2c28231c1b160f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d151d232932383d44484b515356595b5d5e5f5f5f5e5d5c5a5754524d464440393029241d150d040000000000000000000000000000000000070e171f252a2f383f44464b515457595c5d5e5f605f5f5e5d5b595653514b48443d383329241d160d050000000000000000000000000000000000000000000000010b141d262e363e444c52565e61666a6e717476777879797878777673716e6966615e57524d453e362e261c140a000000000000000013202c3946535f6c798692939393938d8074675a4d4f5c6875828b8f9298989a9c9d9e9f9f9f9e9e9d9a9895908b847c726d625b51473d2f261c1106000000000003101c28343f4a54606d78839099a3afa39992867d736d67625f585c5c535b6061656c707a828f949fa9a2988f82766a6054473b2e221508000000020e1925303b444c525f60606060606060606060606060606060606060606060606060606060605f5f5e5c5956535049443f38302921191007000000000000000000000000030d151e262e343d43474d5354585b5d5e5f5f5f5e5d5b5955534e4745413a3129343c424b5153585c5e5f5f5f5e5d5a585651493f34291d120600000000000000000008111a202930363c43474b515356595c5d5e5f5f5f5e5d5a5854524c48443e37312a221b120a0100000000000000000916232f3c4855616b7079797979797979706b6155483c2f23160900091623303c4956636f7c89969f9f9f978a7d7164574a3e3124170b0000000000000000000000000000000000000000000000000002080d181d2224252c2d2d2d2d2d2d2423201c17100800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a39d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000000000000060a0e1011121313131212100e0b0707050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a12191e2325262d2d2d2d2d2d2d2d272724201a130b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a12191e2325262d2d2d2d2d2d2d2d272724201a130b02000000000000000000000000000000000000000000000000000000000000050b1012181c1f202326282a2b2c2c2d2c2c2b2a282623201f1c17110f0b040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121821272c3238394045464a4c4f505252535252514f4d4a4746413b38342e271e18120b0300000000000000000000000000000000000000050d141a1d262d33383a4145474a4d4f50525253535251504e4c494645403938332c272118130c0400000000000000000000000000000000000000000000000009131d262f38404850565e61686e73777b7e81838485868685858482807e7b77736e69615e57504840382e261c13090000000000000013202c3946535f6c7986929f9f9f9a8d8074675a4d4f5c6975828f9c9fa3aaa7a7a4a2a1a1a0a1a3a6a7a79f9d9691877f726d62594f42382d22170b000000000006121f2c3844505c66727f8b95a0aba89f92877d706b605d55534e4f4f495053555a61686d79829097a1a49f94897c6f6256493c2f23160900000005111e2a36414c565e6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6a696663605b53504a423b332b23190f0600000000000000000000010b151f2730383f444e54575e6164676a6b6c6c6c6b6a6865625f5854524c433f353c464e545c6065686b6c6c6b6b696765625b51463a2e221509000000000000000008121a232c323a41464e53555d606366696a6b6c6c6c6b696764615e56554f47433c342d241c130a01000000000000000a1723303d4a5663707d868686868686867d7063564a3d3023170a00091623303c4956636f7c8996a2aca4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000060c111517181f202020202020171614100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a39d9083766a5d5043372a1d10000000000000000000000000000000000000000000000000000000040b11161a1d1e1f2020201f1e1d1b181413110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070d1216191920202020202020201b1a18140f080100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070d1216191920202020202020201b1a18140f080100000000000000000000000000000000000000000000000000000000000000000000070c10121316191b1d1e1f1f201f1f1e1d1b19161312100c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c161b21272c2e34383a3d40424445464646454443403e3b3936302c28231c150c070100000000000000000000000000000000000000000002090b141c22282b2f35393a3d40424445464646454543423f3c3a38342e2c27211c160d070100000000000000000000000000000000000000000000000007101b252f38404a525a61686d747b8084888b8e8f919292929291918f8d8b8884807b746e69615a524a40382e251b0f0600000000000013202c3946535f6c7986929faca79a8d8074675a4d4f5c6976828f9caaa29f9c9a97969594939496999ea0a8a8a099928b7f726b60544a3f33281c0f03000000000713202d3a4653606d7984919ea7ada1968d80736b6059514b474342423f44464850565d676d7a85929b9993908c8275685c4f4235291c0f0200000714202d3946525e6876797979797979797979797979797979797979797979797979797979797979787776726f6c65605c544d453d352b22180d0300000000000000000007121d273139424a50586062696e71747777787979787775726f6a66605d56504540454e5860666d717578797978777674726d62564a3d3124180b0000000000000008111a242c353e444c52585f62676d7073767778797979787674716d68636159534e463f362e251c1309000000000000000a1723303d4a5663707d899393939393897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000105090b0c131313131313130a0a080400000000000000000000000000000000000000000000000000000002050708080808080808080808080808080808080808080808080808080a1724313d4a5764707d8a97a39d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000000050e161c2227292a2c2c2d2c2c2b29282521201d19130f0a0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002060a0c0d13131313131313130e0d0b08030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002060a0c0d13131313131313130e0d0b08030000000000000000000000000000000000000000000000000000000000000000000000000000040607090c0e1011121313131211100e0c0a07060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161b1d23282c2d303335373839393938373633312e2d2a251f1c18120b0300000000000000000000000000000000000000000000000000020a11171c1f24292c2d30333537383939393938373533302d2c28231d1c16100b0500000000000000000000000000000000000000000000000000030c19222d37404a525c636c717a81868c9196989a9c9e9f9f9f9f9e9d9c9a9895918d86817b716c645c524a40372d21180e03000000000013202c3946535f6c7986929faca79a8d8074675a4d4f5c6976828f9c9a9892908d8b8988878787898c91969fa2aaa39f93877d70665b5044382b1f120700000004101d2935404b5564717d8a96a1acaa9e9184796d60594f45403937312d3337393e444c555e68717e8b8e8a86837f7c6f6255483c2f2215090000000814212e3b4754616e7a8686868686868686868686868686868686868686868686868686868686868584827f7c78716d665e574f473d342a1f150b0100000000000000020c18242f39434b545c606a6f757b7e8183848586858583817f7c78726d68625a514b4d57606a6f797e82848586858483817f7265584b3f3225180c000000000000050f1a232c363e474f565e616a6f747a7d808284848586858483817e7a76706b625f58514840372e251b11070000000000000a1723303d4a5663707d89969f9f9f96897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e11141415151515151515151515151515151515151515151515151515151724313d4a5764707d8a97a39d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000040e1720272e3336373939393939383634312e2d2a251e1a150e060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b0f12181c1f202326282a2b2c2c2c2b2a29272421201e1914100c070000000000000000000000000000000000000000000000000000000000060b0f13181d20212426292a2b2c2d2c2c2b2a282623201f1c1812100b050000000000000000000000000000000000000000000000000000000a151e2b343f49525c646e737e858d92999da0a8a9a29f9d9c9b9c9d9fa2aaa7a09d99928e857e736e645c52493f332a1f1409000000000013202c3946535f6c7986929faca79a8d8074675a4d505c6976838f918d898583807e7c7b7a7a7b7d7f848b9298a2aba4999083786c605346392e23180c0000000613202c3945515d6775828f9ba8aea3988b7e71675d51473d352f2b2622272b2d323a434c56606d7883817e7a76736f6a5f53473b2e2115080000000814212e3b4754616e7a87939393939393939393939393939393939393939393939393939393999292918f8c89837e786e6960594f463c31271d1207000000000000000a141e2935404b555d666d747c82878b8e909192929291908e8c88847f7a716d605d55535f696f7c848b8f9192929291908d86796c605346392d20130000000000020d17212c353e48505961686d757c8186898c8f909192929291908d8b86827d766f6a625b524940372d23190d0300000000000a1723303d4a5663707d8996a3aca396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000000000000000000000000000000000000000010507080b0e10111213131211100e0b0807050100000000000000000000000000000000000000000000000000000000050d14191e202121212121212121212121212121212121212121212121212121212124313d4a5764707d8a97a39d9083766a5d5043372a1d10000000000000000000000000000000000000000000000000000b16202932393f434445464646454543413e3a3936302b2620180f0900000000000000000000000000000000000000000000000000000004090e1112131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130b0a0804000000000000000000000004090e1112131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130b0a0804000000000000000000000000000000000000000000040613131313131313131312110e090400000000000000000000000000000000000000000000000000000000020507080b0e111112131312110f0c0908060300000000000000000406070b0f1213131211100e0c0b0906010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c10131317191c1d1f1f201f1f1e1c1a171414110e080400000000000000000000000000000000000000000000000000000000000000000003070d111314171a1c1d1f1f20201f1e1d1b19161313100c07000000000000000000000000000000000000000000000000000000000006111c26303d46515b646e74808a92979fa3a9a19e999792908f8f8f909298989d9fa7a39f97928a80736e635b51453b31261a0e040000000013202c3946535f6c7986929faca79a8d8074675a4d505c6976838a85807c797674716f6e6e6d6e7073787e869299a3aba0958a7e7164544b4034281c100400000714202d3a4753606d7a86929facac9f92867a6d60554b403529241d1a171b1f2028313a44515c666d7775716d6866625f584e43372b1f12060000000814212e3b4754616e7a87949f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa39f9e9d9c9995908b837b6f6b60584e43392f23180c02000000000006111c26303845515d676d7880898f93999a9d9e9f9f9f9e9d9b9896918c857e756d675d58626e7b8691969b9e9f9f9e9e9c9386796c605346392d2013000000000009141f29333d47505a616b707a82888e9298999c9d9e9f9f9f9e9c9a99938f8a837c726d635c52493f352b1f150b01000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000000000000000000000000000000000003080d111414171a1c1e1f20201f1e1d1a171414110d080300000000000000000000000000000000000000000000000000050e171f252a2d2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e313d4a5764707d8a97a39d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000006111c27323b434a4f51525353535251504e4b4746413a37312a221b120900000000000000000000000000000000000000000000000000080f151a1d1f20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020171714110c050000000000000000080f151a1d1f20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020171714110c050000000000000000000000000000000001070c10132020202020202020201f1d1a150f080000000000000000000000000000000000000000000000000003090e121415181b1d1e1f201f1f1d1b191515120f0a0401000000070c101313181c1e1f201f1e1d1b181815120d060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070a0d0f11121313131211100d0b0807050200000000000000000000000000000000000000000000000000000000000000000000000000010406070a0d0f11121313131212100f0c09070604000000000000000000000000000000000000000000000000000000000000000c17232e38424f59626d74808d929ea1a9a39f97918c8885838282838385888b90959ea1a8a29f928d80736d62574d42362a20160a0000000013202c3946535f6c7986929faca79a8d8074675a4d4e5a6774807d7974706d666764636261606163656c727d87929faca79b8f8275665c5145382c1f130600000a1723303d4a5663707d8998a3aea89b8e8275675d51433a2f23181d1d1d1d1d161f2834404a545c606a6864615e5655534e463c32261b0f030000000814212e3b4754616e7a8794a1acacb4aeaca6a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a6a8aaa9a7a09d9590857d6f6a5f554b4034291e130800000000000b17232e3842505a606d79828d929b9fa4ababa39f9d9c9b9c9d9fa19e97928b82796d685f6a76828f98a1a8aaa39f9995949386796c605346392d201300000000020e1a25303b454f59616c717d858f939a9fa3aaa9aaa8a7a6a7a9a9aba49f9c9490867f736e635b51473d31271d1207000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000000000000000000000000000000060b1014191e20212427292b2c2c2c2c2b2a272421201e19140f0b0600000000000000000000000000000000000000000000020d17202930363a3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3b3d4a5764707d8a97a39d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000a16222e39434d555b5d5f5f605f5f5e5c5b5854524c47433c342d241b1108000000000000000000000000000000000000000000000009121920262a2c2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423211c17100800000000000009121920262a2c2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423211c1710080000000000000000000000000000030b12181c1f2d2d2d2d2d2d2d2d2c2c2a262019120900000000000000000000000000000000000000000000040a0f141a1e212125282a2b2c2c2c2b2a282622211f1b15110d08030b12181c1f2025292b2c2c2c2b2a272524221d181109010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54606b727f8c929ca4aaa299928c84807b787675757677797b7f838a91969fa6a49c928b7f72695f53463d32271b0f0300000013202c3946535f6c7986929faca79a8d8074675a4d4c58646e74716d6663605c54585655545454535b606b74818d9aa9ac9f9285796d6053463a2d20130700000d1a2733404d5a6673808d99aab4aa978b7e7164554c4131282a2a2a2a2a2a2a2a2a232e39424a51535d5b5754524c4847433c342a20150a000000000814212e3b4754616e7a8794a7afb4aba39f9a9898989898989898989898989898989898989898999b9ea1a9aca79f9792857c6e675c51453a3025190d0100000003101c28343f4a54616c74818e949da4aca7a09d9992908f8f8f9192999a9e9f948f837a6d666f7c88949faaaea398928c88878886796c605346392d20130000000005121e2a36424d57606b717e8791979ea5acaba9a19e9b9a9a9b9d9fa4abaca69f98928b80736d62594f43392f23180c000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000000000000000000000000000020a11171c1f252a2d2e3134363839393938373634312e2d2a251f1b17110a02000000000000000000000000000000000000000009141f29323b4246474848484848484848484848484848484848484848484848484848484848484a5764707d8a97a39d9083766a5d5043372a1d100000000000000000000000000000000000000000000000020e1a27333f4a555f676a6c6c6c6c6c6b696764615e56534e463e362d23190b0200000000000000000000000000000000000000000008121b242b3136383939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393931302d28221a12080000000008121b242b3136383939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393931302d28221a1208000000000000000000000000030d151d23292c3939393939393939393836312b241b12080000000000000000000000000000000000000000060c161b1f252a2d2e31343738393939383735322f2e2b26201d19130c151d23282c2d32353839393838363432312e29231b13090000000000000000000000000000000000020507080b0e111112131312110f0c0908060300000000000000000406070b0f1213131211100e0c0b09060100000000000000000000000000000000000000050a0d0f101313100f0d0a050000000000000000000000000000000000000000000000000000000000000000060a0e1011121313131212100e0b0707050100000000000000000000000000000000000000000000000006121f2c3844505c666f7c87929fa4aba29892878079736f6a6a696869656c6e72777d848f949fa6a49f92867b6e61584e43382b1f130600000013202c3946535f6c7986929faca79a8d8074675a4d47525c646764605c5453514b4b4948474748495059626e7b8897a1ada298887c6f6255493c2f2216090004101c2834404b546976828f9ca9aea398887b6f6255483c2f3737373737373737373737373039404446514e4b4746413c3b37322a261f180f060000000814212e3b4754616e7a87959fa3aba399928d8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8c8c8f92979ea1a9a9a2979184796d60564c41362a1d110500000006121f2b3844505c66717e8b939ea6aea59d95908a86838282838486898d92979f959083786d73808d99a6b0a89f9286807c7a7b7d7063574a3d3024170a000000030e18212d3a46525e69707d879299a1a9ada79f9d97928f8d8d8e9093999fa2aaaaa39f928b7f726b60554b4034291c12070000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000000000000000000000001070c141c23282b3036393b3e414344454646454443413e3b3936302b27221b140b07000000000000000000000000000000000000020e1925303b444d5254545454545454545454545454545454545454545454545454545454545454545764707d8a97a39d9083766a5d5043372a1d10000000000000000000000000000000000000000000000003101d2936434f5b6771777879797978787674716d68625f5850483e352b1d140a0000000000000000000000000000000000000000040f19242d353d4245464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646463e3c39332c241a10050000040f19242d353d4245464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646463e3c39332c241a100500000000000000000000010b151f272f343846464646464646464645423d352d24190f040000000000000000000000000000000000030a111720272b31363a3b3e4144444546464544423f3c3b37322c29241e191e272e34383a3e42454646454443413f3d3a342d251b1106000000000000000000000000000003090e121415181b1d1e1f201f1f1d1b191515120f0a0401000000070c101313181c1e1f201f1e1d1b181815120d0600000000000000000000000000000000030a11161a1c1d20201d1c1a16110a0300000000000000000000000000000000000000000000000000000000040b11161a1d1e1f2020201f1e1d1b181413110d080200000000000000000000000000000000000000000003101c28343f4a54606d78839099a3afa39992867d736d67625f585c5c535b6061656c707a828f949fa9a2988f82766a6054473b2e22150800000013202c3946535f6c7986929faca79a8d8074675a4d414a52585a5753504a4645403e3c3b3b3a3b3f47535f6a7885929eabaa968a7d7063574a3d3024170a0006131f2c3845515c667884919eabac9f9286796d6053464444444444444444444444444444444444444444444444444444443b3a36312a21180e0300000714202d3a4753606d79838c9299a29f9286807f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f8082858a91969fa7a9a0968c7f73685e5246392d2013080000000713202d3a4653606d7884919ea5afa69d938e837d797776757677797c80858c9298958e81747683909ca9aca0958a7e736f6e6e706b6155483c2f2316090000000915202c38444f59616e7b869299a3abada49c959089858281808183878c9298a0a8aea49f93877d6f675c5145392e23180c0000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000000000000000000000030b12181e262e34383b4146474a4d4f515253535251504d4a4746413b37332d261d18120b030000000000000000000000000000000005111e2a36424d565e61616161616161616161616161616161616161616161616161616161616161616164707d8a97a39d9083766a5d5043372a1d10000000000000000000000000000000000000000000000004111e2a3744515d6a778385868686858483817e7a756e6a615a50473d2f261b1106000000000000000000000000000000000000000915202b353f474e52535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534a49453e362c22170c00000915202b353f474e52535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534a49453e362c22170c0000000000000000000007121d2731394045535353535353535353524e473f352b20150900000000000000000000000000000000030c151c232832373b4246484b4e505152535252504e4c4847433c39352f28222b30394045464b4f5152535251504e4b4a463f372d23180d010000000000000000000000040a0f141a1e212125282a2b2c2c2c2b2a282622211f1b15110d08030b12181c1f2025292b2c2c2c2b2a272524221d1811090100000000000000000000000000040d151c2226292a2d2d2a2926221c150d040000000000000000000000000000000000000000000000000000050e161c2227292a2c2c2d2c2c2b29282521201d19130f0a030000000000000000000000000000000000000006121f2c3844505c66727f8b95a0aba89f92877d706b605d55534e4f4f495053555a61686d79829097a1a49f94897c6f6256493c2f23160900000013202c3946535f6c7986929faca79a8d8074675a4d4141474c4e4a46443f3a38342e302f2e2d2d37434e586a7784909daaa4978b7e7164584b3e3125180b000713202d3a4653606d7986939facaa9d908477665c50505050505050505050505050505050505050505050505050505050504846423b332a1f140900000613202c3945515d676d787f879297a29992867e727272727272727272727272727272727272727375797e8490959fa9a89f92867a6d6154473a2f24190d0100000b1824313e4b5764717e8a96a0acac9f948e8179716d67696869676d70747a7f869095938a7e7885929fabaa9d9184776c6261616361594f44382c2014070000020f1a26313c4855616b75828f98a2abada39b928c837d7975747374767a7f869196a0a8afa4999184796d60544a4034281c100400000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000000000000000000050d151d242930383f44464c5254575a5c5e5f5f5f5f5e5d5a5754524c46443f382f28231c150c030000000000000000000000000000000714202d3a46525e696e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e707d8a97a39d9083766a5d5043372a1d10000000000000000000000000000000000000000000000006121f2c3945525f6c78859292999292918f8e8b87827c716c61594f41382d22170b000000000000000000000000000000000000000e1a26313d4751595e5f606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060575550483e33281c1104000e1a26313d4751595e5f606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060575550483e33281c11040000000000000000000c18232f39434b515f606060606060605f5e5951473d31261a0e010000000000000000000000000000030d151e262e343d43474d5354585b5d5e5f5f5f5e5d5b5955534e4745413a3129343c424b5153585c5e5f5f5f5e5d5a585651493f34291d120600000000000000000000060c161b1f252a2d2e31343738393939383735322f2e2b26201d19130c151d23282c2d32353839393838363432312e29231b1309000000000000000000000000030d161f272d32353639393635322d271f160d03000000000000000000000000000000000000000000000000040e1720272e3336373939393939383634312e2d2a251e1a150e060000000000000000000000000000000000000713202d3a4653606d7984919ea7ada1968d80736b6059514b474342423f44464850565d676d7a85929b9993908c8275685c4f4235291c0f02000013202c3946535f6c7986929faca79a8d8074675a4d41363c3f413e3a38342e2c2823232221212c3844505c667784919daaa5988b7f7265584b3f3225180c000815212e3b4854616e7b879aa4afa99c90837669545d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d55534d453b31261a0e020004101d2935404b555d666d727d859298a29892877f716b6565656565656565656565656565656566666d717a839097a1ada2988b7f7265564c4135291d11040005121e2a36424d576875818e9ba8afa49a8f82786d66605d555c555c6063676d727b838f9391857b8797a2ada79a8d8074675a545557554f473e33281c1004000006121f2b37434e5863707d8a939eaaafa59b918b8078706c66676768686d737b849196a0acaba0968c7f72665c5144382c1f120600000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000000000000000000050e161f272f353e424a5053565e616467696b6c6c6c6b6a696764615e56535049413d342e271e150c0300000000000000000000000000000814212e3b4754616e7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7f8b98a49d9083766a5d5043372a1d10000000000000000000000000000000000000000000000006121f2c3945525f6c7885929493939496999a99938e867e716b6053493f33271b0f03000000000000000000000000000000000000111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d21140800111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d211408000000000000000004101c2934404b555c6c6c6c6c6c6c6c6c6c6a63594e42362a1d110400000000000000000000000000010b151f2730383f444e54575e6164676a6b6c6c6c6b6a6865625f5854524c433f353c464e545c6065686b6c6c6b6b696765625b51463a2e2215090000000000000000030a111720272b31363a3b3e4144444546464544423f3c3b37322c29241e191e272e34383a3e42454646454443413f3d3a342d251b110600000000000000000000000a151f2831383e4243464643423e3831281f150a0000000000000000000000000000000000000000000000000b16202932393f434445464646454543413e3a3936302b2620180f090000000000000000000000000000000004101d2935404b5564717d8a96a1acaa9e9184796d60594f45403937312d3337393e444c555e68717e8b8e8a86837f7c6f6255483c2f22150900000013202c3946535f6c7986929faca79a8d8074675a4d4134303334312d2c28231f1c18161e2429363e4653606d7985929facab978a7e7164574b3e3124180b000916232f3c4956626f7c8995acb6a89c8f82756a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a615f574d42362a1e120500010d18242f39434b545c606b707d86929fa29992877d70675d5858585858585858585858585859545c60686d7a85919ea9aa9c908376685d5245392c201306000714202d3a46525e697885919eabac9f93877c6f665c54514b4f4b5153555d60696e79818f949083909da9b3a4988b7e7165584b484a48443e352c21160b0000000814212e3a47535f6a7683909ca5afa99e938b7f736c65605b545a565e61696e7a84919aa4afa89e9285796d6053463a2d22170b00000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000000000000000040d162028313940454f545c6064686e7174767778797978777674716e6863605b534e44403930271e150c0300000000000000000000000000111e2a3744515d6a7784878787878787878787878787878787878787878787878787878787878787878787878b919ba99d9083766a5d5043372a1d10000000000000000000000000000000000000000000000006121f2c3945525f6c78858887868787898d92979f9892887d70655b5044372b1f1205000000000000000000000000000000000000121f2c3845525e6a7579797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979716c6155493c3023170a00121f2c3845525e6a7579797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979716c6155493c3023170a000000000000000006131f2c3845515c67767979797979797979756a5e5245382c1f12060000000000000000000000000007121d273139424a50586062696e71747777787979787775726f6a66605d56504540454e5860666d717578797978777674726d62564a3d3124180b00000000000000030c151c232832373b4246484b4e505152535252504e4c4847433c39352f28222b30394045464b4f5152535251504e4b4a463f372d23180d0100000000000000000005111c27313a434a4e505353504e4a433a31271c11050000000000000000000000000000000000000000000006111c27323b434a4f51525353535251504e4b4746413a37312a221b12090000000000000000000000000000000613202c3945515d6775828f9ba8aea3988b7e71675d51473d352f2b2622272b2d323a434c56606d7883817e7a76736f6a5f53473b2e21150800000013202c3946535f6c7986929faca79a8d8074675a4d413427262724201f1c1713141920282f353f48515b63707d8998a2aea399897c6f6356493c30231609000a1623303d495663707c8996a3afa89b8e8177777777777777777777777777777777777777777777777777777777777777776e695f53463a2d211407000007121d283139424a5059606b717e8b949fa39991857a6d60564c4c4c4c4c4c4c4c4c4c4c4c4c4a51565e68717e8b97a1a69f94877a6d6054473a2d211407000815212e3b4854616e7b8797a1adaa9d9083776a5f544b4540424045474b51575f676d78828f9590959fabb0a3968a7d7063574a3d3d3c38332c231a10050000000815222f3b4855626e7b88949fabada2978e81746d605b53504a4d4c52575e68707d87939facada1978a7d716453493f33271b0f03000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000000000000010c161f28323a434b515961666d71767a7e808284858686858483807d7a76706c656058514a423930271e150a00000000000000000000000000111e2a3744515d6a778490949494949494949494949494949494949494949494949494949494949494949494989ba3a99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000916232f3c4956626f7c7b7a7a7a7b7d808590959f9a9184786c605346392d20130600000000000000000000000000000000000013202c3946535f6c79878686868686868686868686868686868686868686868686868686868686868686868686868686868686868686867e7164574a3e3124170b0013202c3946535f6c79878686868686868686868686868686868686868686868686868686868686868686868686868686868686868686867e7164574a3e3124170b00000000000000000714202d3a4753606d798686868686868687796c5f5346392c201306000000000000000000000000020c18242f39434b545c606a6f757b7e8183848586858583817f7c78726d68625a514b4d57606a6f797e82848586858483817f7265584b3f3225180c000000000000030d151e262e343d43474d5354585b5d5e5f5f5f5e5d5b5955534e4745413a3129343c424b5153585c5e5f5f5f5e5d5a585651493f34291d12060000000000000000000a16222d38434c545a5d60605d5a544c43382d22160a000000000000000000000000000000000000000000000a16222e39434d555b5d5f5f605f5f5e5c5b5854524c47433c342d241b110800000000000000000000000000000714202d3a4753606d7a86929facac9f92867a6d60554b403529241d1a171b1f2028313a44515c666d7775716d6866625f584e43372b1f120600000013202c3946535f6c7986929faca79a8d8074675a4d4134271a1b171312100e171f252a323a4145515a626d76828f9caaac9f9286796d6053473a2d201407000a1724303d4a5763707d8a96a3b0ab9e928583838383838383838383838383838383838383838383838383838383838383837b6e6155483b2e2215080000010c161f2830383f444f59626c76828f9ca7a1978d8073685e52463f3f3f3f3f3f3f3f3f3f3f40444c56606d7985929a999896897c6f6356493c30231609000916222f3c4955626f7c8895a9b3a79a8d817467584e4239352f34383a40454d555c666d7a85919d9fa7b1afa396897c706356493d302f2c28211a110800000005121e2a36424d576774808d9aa6b0ac9f92857a6d615b5049443f4041464d56606b75828f9baab3a99b8e8175655b5044372b1f1205000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000000000000008131e28313a444c555d606b70787e82868a8d8f919292929291908d8a87827d786f6a605c544a423930261c1106000000000000000000000000111e2a3744515d6a7784909da1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a4a7aca99d9083766a5d5043372a1d100000000000000000000000000000000000000000000000000815222e3b4754606a6f6e6d6d6d6e70737a83909da096897c6f6356493c3023160900000000000000000000000000000000000013202c3946535f6c798692939393939393939393939393939393939393939393939393939393939393939393939393939393939393938a7e7164574a3e3124170b0013202c3946535f6c798692939393939393939393939393939393939393939393939393939393939393939393939393939393939393938a7e7164574a3e3124170b00000000000000000714202d3a4753606d7a8693939393939286796c5f5346392c2013060000000000000000000000000a141e2935404b555d666d747c82878b8e909192929291908e8c88847f7a716d605d55535f696f7c848b8f9192929291908d86796c605346392d20130000000000010b151f2730383f444e54575e6164676a6b6c6c6c6b6a6865625f5854524c433f353c464e545c6065686b6c6c6b6b696765625b51463a2e2215090000000000000000010d1a26323e4a545e66696c6c69665e544a3e32261a0d010000000000000000000000000000000000000000020e1a27333f4a555f676a6c6c6c6c6c6b696764615e56534e463e362d23190b02000000000000000000000000000a1723303d4a5663707d8998a3aea89b8e8275675d51433a2f23181d1d1d1d1d161f2834404a545c606a6864615e5655534e463c32261b0f0300000013202c3946535f6c7986929faca79a8d8074675a4d4134271a0e0b070b1218202930363e444c525b626c727f8b949faba89c8f8376675d5145392c1f1306000a1724313d4a5764707d8a97a3b0ada1979290909090909090909090909090909090909090909090909090909090909090887b6e6255483b2f221508000000040d161e262e343d47505a63707c8995a0a99f92867a6d6154473b3032323232323232322e343a45515c6674818e8e8c8b89887f7265584c3f3225190c000a1723303d4a5663707d8996a3b0a6998c7f7366594c402f2924292c2f353b434b545d68707d8a959fabb7afa396897c706356493d3023201c161008000000000714212d3a46535f697884919eabafa49a8c7f73685e52443f383330363b444f5963707d8a98a2aeab9f9285796c605346392d201306000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000000000000050e19242f3a434c565e676d747d848a8f93999a9c9e9f9f9f9e9d9c9a9a938f8a837c736d665c544a42382e23170b020000000000000000000000111e2a3744515d6a7784909d9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000006131f2b38434e586062616160606163686f7c8899a4988b7e7265584b3f3225180c00000000000000000000000000000000000013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b0013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b00000000000000000714202d3a4753606d7a86939f9f9f9f9286796c5f5346392c201306000000000000000000000006111c26303845515d676d7880898f93999a9d9e9f9f9f9e9d9b9896918c857e756d675d58626e7b8691969b9e9f9f9e9e9c9386796c605346392d2013000000000007121d273139424a50586062696e71747777787979787775726f6a66605d56504540454e5860666d717578797978777674726d62564a3d3124180b0000000000000000030f1c2935424e5a66707679797670665a4e4235291c0f03000000000000000000000000000000000000000003101d2936434f5b6771777879797978787674716d68625f5850483e352b1d140a000000000000000000000000000d1a2733404d5a6673808d99aab4aa978b7e7164554c4131282a2a2a2a2a2a2a2a2a232e39424a51535d5b5754524c4847433c342a20150a0000000013202c3946535f6c7986929faca79a8d8074675a4d4134271a0e030c151c2328323b41464f565d606d727e87929fa6ada1968b7e7165554b4035291d1004000a1724313d4a5764707d8a97a3b0b3a9a19e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d94887b6e6155483b2e22150800000000040c141c2328353f4854606b7783909daaa3988c7f7266574d42362a25252525252525232834404b5464717e8281807e7d7c796d6053473a2d201407000a1724313d4a5764707d8a97a3b0a5988c7f7265594c3f2e23181c1f24293139424c56616c7683909da9b3afa396897c706356493d302316100b0500000000000815222e3b4855616e7b8896a1aca69f93877b6e61564c41332d28252a323d4653606c7985929fabada297887b6e6155483b2e221508000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000000000020d17202935414c555e686d79818a91969c9fa4aba5aba49f9fa4aca5aca49f9c95908780786d665c544a3f34281d140a0000000000000000000000111e2a3744515d6a77839093939393939393939393939393939393939393939393939393939393939393939393939393939083766a5d5043372a1d10000000000000000000000000000000000000000000000000030f1b27323d464e5456555453545456606c7986939f998c807366594d4033261a0d00000000000000000000000000000000000013202c3946535f6c7986929facacacaea9a7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a4978a7d7164574a3e3124170b0013202c3946535f6c7986929facacacaea9a7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a4978a7d7164574a3e3124170b00000000000000000714202d3a4753606d7a8693a0acac9f9286796c5f5346392c20130600000000000000000000000b17232e3842505a606d79828d929b9fa4ababa39f9d9c9b9c9d9fa19e97928b82796d685f6a76828f98a1a8aaa39f9995949386796c605346392d201300000000020c18242f39434b545c606a6f757b7e8183848586858583817f7c78726d68625a514b4d57606a6f797e82848586858483817f7265584b3f3225180c000000000000000003101d2a3643505d69768286868276695d5043362a1d1003000000000000000000000000000000000000000004111e2a3744515d6a778385868686858483817e7a756e6a615a50473d2f261b1106000000000000000000000004101c2834404b546976828f9ca9aea398887b6f6255483c2f3737373737373737373737373039404446514e4b4746413c3b37322a261f180f0600000013202c3946535f6c7986929faca79a8d8074675a4d4134271a0e0c151e272e343e444d525961686d757f879299a3afa59e9184796d6053463a2f24180c00000a1723303d4a5663707d8996a3b0b8b0aba99f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa9aaaaaaaaaa94877a6e6154473b2e2114080000000000020a1117232c38444f596673808c99a6aa9d918477695e52463a2d2019191919191918232e394955616c7176747371706f6d675d5145392c201306000a1723303d4a5663707d8996abb5a6998d807366544a403428211e1a181f27303a44505a64707d8a97a2adafa396897c706356493d3023160a000000000000000b1825313e4b5864717e8b939a979a9c908376695e52443a30221b19202b3844505b6676838f9ca9b3a9978a7d7064574a3d3124170a000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000000000008141e29323b45515d676d7a838e939ea0a8a7a09d99959993939a96999ea0a8a7a099928c81786d665c50443d2f261c110600000000000000000000111e2a3744515d6a77838686868686868686868686868686868686868686868686868686868686868686868686868686868683766a5d5043372a1d10000000000000000000000000000000000000000000000000000a162027333f49535b606060606062666e7b8799a4988c7f7265594c3f3226190c00000000000000000000000000000000000013202c3946535f6c7986929facb9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a978a7d7164574a3e3124170b0013202c3946535f6c7986929facb9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a978a7d7164574a3e3124170b00000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000003101c28343f4a54616c74818e949da4aca7a09d9992908f8f8f9192999a9e9f948f837a6d666f7c88949faaaea398928c88878886796c605346392d2013000000000a141e2935404b555d666d747c82878b8e909192929291908e8c88847f7a716d605d55535f696f7c848b8f9192929291908d86796c605346392d2013000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000006121f2c3945525f6c78859292999292918f8e8b87827c716c61594f41382d22170b000000000000000000000006131f2c3845515c667884919eabac9f9286796d6053464444444444444444444444444444444444444444444444444444443b3a36312a21180e03000013202c3946535f6c7986929faca79a8d8074675a4d4134271a0b151e273039404450565e616b707a818b9299a3aba79e938b7e71665c5145382c1d12070000091623303c4956636f7c8996a2afb0a69f9c9393939393939393939393939393939393939393939393939c9ea6b0aea398877a6d6054473a2d2114070000000000000006101b27323d4956636f7c8996a9aca095877b6e6154483b2e21150c0c0c0c07121d2d3944505a6164696766656362605d554b4035291d1104000915222f3c4855626f7b8899a3afa89b8f8275665c51443a322d2b2627272628323e4653606d7985929fabafa396897c706356493d3023160a000000000000000c1925323f4c5865727f8486898b8d8f8c807366574d4232281e110f1c28333f4a546774808d9aa7b2a5988b7f7265584c3f3225190c000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000000010d1925303b44515b606d798390959ea5a9a19e95908c8987868687898c91969ea1a9a39f938f81786d60584e42382d22170b00000000000000000000101d2936424f5b677177797979797979797979797979797979797979797979797979797979797979797979797979797979797671665b4e4236291c100000000000000000000000000000000000000000000000000005121f2b3744505b656c6d6c6c6d6f7278818e9ba095897c6f6356493c3023160900000000000000000000000000000000000013202c3946535f6c7986929facb9a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8a7e7164574a3e3124170b0013202c3946535f6c7986929facb9a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8a7e7164574a3e3124170b00000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000006121f2b3844505c66717e8b939ea6aea59d95908a86838282838486898d92979f959083786d73808d99a6b0a89f9286807c7a7b7d7063574a3d3024170a00000006111c26303845515d676d7880898f93999a9d9e9f9f9f9e9d9b9896918c857e756d675d58626e7b8691969b9e9f9f9e9e9c9386796c605346392d2013000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000006121f2c3945525f6c7885929493939496999a99938e867e716b6053493f33271b0f03000000000000000000000713202d3a4653606d7986939facaa9d908477665c50505050505050505050505050505050505050505050505050505050504846423b332a1f1409000013202c3946535f6c7986929faca79a8d8074675a4d4134271a121d273039424a515a62686e757d848e939fa3aba8a0958f81756c61544b4034281c0b0100000815222f3b4855626e7b8895a9b3ab9f948f8686868686868686868686868686868686868686868686868f949eaaac9f928579675d5145392c20130600000000000000000b14212d3a4754606d7a8797a1ada7978b7e7164584b3e3125180b00000000101c28333e485055575c5b5958565553514b433a2f24180d01000714202d3a4753606d7a86929facab9e9285796d60564c443d3a373134333332323845515c6675828f9ca8afa396897c706356493d3023160a000000000000000b1824313e4a56626d72787a7c7e8082847d7063574a3d3024160c0b17222d404c5966737f8c99a6b2a6998d8073665a4d4033271a0d000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000000005111e2a36414c56626d75828f959fa7a8a097928a837f7c7a79797a7c7f848a9297a0a8a59e938d80736a60544a3f33281c0f030000000000000000000e1a27333f4a555f676a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a665f554a3e32261a0d000000000000000000000000000000000000000000000001080d13202d394653606c777979797a7b7e838e939e989083786c605346392d20130600000000000000000000000000000000000013202c3946535f6c7986929facb3a79a8d80808080808080808080808080808080808080808080808080808080808080808080808080807c6f6255483c2f2215090013202c3946535f6c7986929facb3a79a8d80808080808080808080808080808080808080808080808080808080808080808080808080807c6f6255483c2f22150900000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000713202d3a4653606d7884919ea5afa69d938e837d797776757677797c80858c9298958e81747683909ca9aca0958a7e736f6e6e706b6155483c2f2316090000000b17232e3842505a606d79828d929b9fa4ababa39f9d9c9b9c9d9fa19e97928b82796d685f6a76828f98a1a8aaa39f9995949386796c605346392d2013000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000006121f2c3945525f6c78858887868787898d92979f9892887d70655b5044372b1f1205000000000000000000000815212e3b4854616e7b879aa4afa99c90837669545d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d55534d453b31261a0e020013202c3946535f6c7986929faca79a8d8074675a4d4134271a18232e39434b545c606c717b818a91969ea5afa69f959083796d605a5042392e23180c0000000714212d3a4754606d7a8797a2ada99c8f82797979797979797979797979797979797979797979797979828f9ca9ab9e9184786b554b4135291d110400000000000000030613202c3945515d677885919eaba6998d8073665a4d4033271a0d0c0c0c0c0b17222c363e44494a4f4e4d4b4a484745403a31281d1307000006131f2c3945515d677783909dabada1978a7e71685e564f484742424140403f3f3f404b546673808c99a6afa396897c706356493d3023160a000000000000000916222e3a46515b6265676d6f71737578706b6155483c2f231604061925323f4c5865727f8b98a5b2a79a8d8074675a4d4134271a0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000000000714202d3946525e68727f8b949ea7a9a09591857e77726f6d686c6d6f72787e859196a0a9a59f93877c6f665b5044382b1f13080000000000000000000a16222e39434d555b5d606060606060606060606060606060606060606060606060606060606060606060606060606060605d5b554d43382d22160a00000000000000000000000000000000000000000003090e13191d202d394653606c7984868687888b90959a9590867c6f665b5044382b1f120802000000000000000000000000000000000013202c3946535f6c7986929facada0938679737373737373737373737373737373737373737373737373737373737373737373737373736f6a5f53473a2e2115080013202c3946535f6c7986929facada0938679737373737373737373737373737373737373737373737373737373737373737373737373736f6a5f53473a2e21150800000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000b1824313e4b5764717e8a96a0acac9f948e8179716d67696869676d70747a7f869095938a7e7885929fabaa9d9184776c6261616361594f44382c201407000003101c28343f4a54616c74818e949da4aca7a09d9992908f8f8f9192999a9e9f948f837a6d666f7c88949faaaea398928c88878886796c605346392d2013000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000916232f3c4956626f7c7b7a7a7a7b7d808590959f9a9184786c605346392d201306000000000000000000000916232f3c4956626f7c8995acb6a89c8f82756a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a615f574d42362a1e12050013202c3946535f6c7986929faca79a8d8074675a4d41342716202834404b555c666d747e858e939ea1a8aca49f9490837b6e675d51483e30271d12070000000613202c3945515d677885929eabaa9d9184776c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c667784919eaaa99c8f8376695c50432f24180d010000000000040a0f13151d2935414b556a7783909daaa89b8f8275685c4f4235291c191919191919191a242c33393c3e4341403e3d3c3a39352f281f160c01000004101d2935404b5566737f8c99a3aea99e91847a6d68615955534d4f4e4d4c4c4c4b4b4c5865727f8b98a5afa396897c706356493d3023160a0000000000000006121e29343f495156555d60626467696b6361594f44382c2014070b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000005111d2935414c56616e7a85929fa6ada19791837b716c6662605d606163656c717b849197a1ada4999184786c6053463a3025190d01000000000000000006111c27313b434a4f5153535353535353535353535353535353535353535353535353535353535353535353535353535353504e4a433a31271c110500000000000000000000000000000000000000030a0f151a1e24292c2e3844505b6673808c9993999292908d89837c6f6a5f544a3f33281c19130d080100000000000000000000000000000013202c3946535f6c7986929facada093867a6d676767676767676767676767676767676767676767676767676767676767676767676767625f584e43372b1f12060013202c3946535f6c7986929facada093867a6d676767676767676767676767676767676767676767676767676767676767676767676767625f584e43372b1f120600000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000005121e2a36424d576875818e9ba8afa49a8f82786d66605d555c555c6063676d727b838f9391857b8797a2ada79a8d8074675a545557554f473e33281c1004000006121f2b3844505c66717e8b939ea6aea59d95908a86838282838486898d92979f959083786d73808d99a6b0a89f9286807c7a7b7d7063574a3d3024170a000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000815222e3b4754606a6f6e6d6d6d6e70737a83909da096897c6f6356493c30231609000000000000000000000a1623303d495663707c8996a3afa89b8e8177777777777777777777777777777777777777777777777777777777777777776e695f53463a2d2114070013202c3946535f6c7986929faca79a8d8074675a4d4134271e28323a45515c676d78818b92979ea5ada8a19a938d827a6e695e554c41362d1e150b0000000004111d2935414c55697683909ca9ab9f928578695f606060606060606060606060606060606060606d7986929faca79a8d8174675a4e4134271b070000000000070f161b1f2223242f43505d697683909ca9a99c908376695d5043362a2525252525252525252520282d303136343332302f2d2c29241d160d04000000000c18242f3b4854616e7b86929fa8ada19690827a706b65615f575c5a5a5959585858585865717e8b98a4afa396897c706356493d3023160a00000000000000010d18232d373f464a4b515356585a5c5e57554f473e33281c10040b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000000713202d3946525e6874808d98a2aea69e92857b6e69615a5654525354535b60696e7b85929ea8aba0958a7d7063564c41362a1d11050000000000000000000b151f2931393f42444646464646464646464646464646464646464646464646464646464646464646464646464646464643423e3831281f150a00000000000000000000000000000000000000060b151a1f262b2f35393a40444a54616e7b87939f92878583817d786f6a5f584e4238342e29241e19130c04000000000000000000000000000013202c3946535f6c7986929facada093867a6d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a55534e463c31261b0f030013202c3946535f6c7986929facada093867a6d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a55534e463c31261b0f0300000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000714202d3a46525e697885919eabac9f93877c6f665c54514b4f4b5153555d60696e79818f949083909da9b3a4988b7e7165584b484a48443e352c21160b0000000713202d3a4653606d7884919ea5afa69d938e837d797776757677797c80858c9298958e81747683909ca9aca0958a7e736f6e6e706b6155483c2f231609000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000006131f2b38434e586062616160606163686f7c8899a4988b7e7265584b3f3225180c000000000000000000000a1724303d4a5763707d8a96a3b0ab9e928583838383838383838383838383838383838383838383838383838383838383837b6e6155483b2e2215080013202c3946535f6c7986929faca79a8d8074675a4d41342724303a44515b606d79828e939fa2a9ada59d96918880786d685e564d433a2f241b0c0300000000010d19242f414d5a6774808d9aabaea298887b6e61555353535353535353535353535353535355626f7c8899a3afa9988b7e7265584b3f3225180c0000000007101921272c2f303236434f5c6976828f9ca9aa9d9083776a5d50443732323232323232323232322d2c28232429282625232220201d18130c0400000000000714202d3a46525e6974808d96a1a9a89f9590847d77726e696a6867666665656565646465717e8b98a4afa396897c706356493d3023160a000000000000000006111b252d343a3a404547494b4d4f514a48443e352c21170b000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000000714212e3a4754616d7a86929faaab9f948a7d70695e575049474546474950565e69717e8b96a0aca79c8f8275685e5246392d201307000000000000000000040d171f272e333637393939393939393939393939393939393939393939393939393939393939393939393939393939393736322d271f160d030000000000000000000000000000000000020a111720262b31373a4145474a5153555e6976828f9b8f82787774706c655f58504a46443f38353029241e160d070000000000000000000000000013202c3946535f6c7986929facada093867a6d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4847433c342a20150a000013202c3946535f6c7986929facada093867a6d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4847433c342a20150a0000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000815212e3b4854616e7b8797a1adaa9d9083776a5f544b4540424045474b51575f676d78828f9590959fabb0a3968a7d7063574a3d3d3c38332c231a10050000000b1824313e4b5764717e8a96a0acac9f948e8179716d67696869676d70747a7f869095938a7e7885929fabaa9d9184776c6261616361594f44382c201407000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000000030f1b27323d464e5456555453545456606c7986939f998c807366594d4033261a0d000000000000000000000a1724313d4a5764707d8a97a3b0ada1979290909090909090909090909090909090909090909090909090909090909090887b6e6255483b2f2215080013202c3946535f6c7986929faca79a8d8074675a4d4134272935414c56626d75818e949da5ada9a19e938e847d736d665d564d443b31281e1209000000000000081724313e4a5764717d8a99a3afaa988b7e7165574d42464646464646464646464646424d5765727f8c98abada297887b6f6255483c2f221509000000040f19222b32383b3c3f3f434f5c6976828f9ca9aa9d9184776a5e51443f3f3f3f3f3f3f3f3f3f3f3f3a38342e271e151a1817151413110d070100000000000005121e2a36424d57606d79849197a1a9a79f969189837f7b78767574737372727271717171717e8b98a4afa396897c706356493d3023160a00000000000000000009131b23292e2f35393a3c3e4042453d3c38332c231a1005000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000005121e2a36424d5765727f8c98a2aea99c8f82766c61574d453e3a39393a3f444d57616c7784919eaaa99f93867a6d6154473a2e21140700000000000000000000050d151c2227292a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2a2926221c150d040000000000000000000000000000000000060c141c232831373c42474c5154545c60626466717e8a9792877b6e6a69676462605b5453504a45413a352f281f18120b03000000000000000000000013202c3946535f6c7986929facada093867a6d6053474040404040404040404040404040404040404040404040404040404040404040403c3a37312a22180e04000013202c3946535f6c7986929facada093867a6d6053474040404040404040404040404040404040404040404040404040404040404040403c3a37312a22180e040000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000916222f3c4955626f7c8895a9b3a79a8d817467584e4239352f34383a40454d555c666d7a85919d9fa7b1afa396897c706356493d302f2c28211a110800000005121e2a36424d576875818e9ba8afa49a8f82786d66605d555c555c6063676d727b838f9391857b8797a2ada79a8d8074675a545557554f473e33281c1004000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000000000a162027333f49535b606060606062666e7b8799a4988c7f7265594c3f3226190c000000000000000000000a1724313d4a5764707d8a97a3b0b3a9a19e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d94887b6e6155483b2e2215080013202c3946535f6c7986929faca79a8d8074675a4d4134272d3946525d68727e8b939ea6afa69f979189817a706b605c544c443b32291f160c000000000000000714212e3a4754616d7a86929faca89b8e8275695e53463d313939393939393939303946525e6976828f9ca9ab9e9285786c605346392d2013060000000a16212b343d4348494c4c4c4f5c6976828f9ca9aa9d9184776a5e514c4c4c4c4c4c4c4c4c4c4c4c4c4645403930271d12070a09070604010000000000000000020e1a25303b45515d676f7c8591979ea5a8a09e95908b8885838281807f7f7f7e7e7e7e7d7d808d9aa7afa396897c706356493d3023160a000000000000000000010911181e1d24292c2d2f31343638302f2c28211a110800000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000714202d3a46525e697783909daaada197897d7063594f453b332d2c2d2d333b45505a66737f8c999d9c9c998a7d7063574a3d3024170a0000000000000000000000040b11161a1d1e202020202020202020202020202020202020202020202020202020202020202020202020202020201d1c1a16110a030000000000000000000000000000000000070f181e262e343c43474d53555d6064666d6f717375798592998c8078777673716e6c6663605c54524c45413a3128231d150c040000000000000000000013202c3946535f6c7986929facada093867a6d6053473a34343434343434343434343434343434343434343434343434343434343434342f2e2b262018100600000013202c3946535f6c7986929facada093867a6d6053473a34343434343434343434343434343434343434343434343434343434343434342f2e2b2620181006000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000a1723303d4a5663707d8996a3b0a6998c7f7366594c402f2924292c2f353b434b545d68707d8a959fabb7afa396897c706356493d3023201c161008000000000714202d3a46525e697885919eabac9f93877c6f665c54514b4f4b5153555d60696e79818f949083909da9b3a4988b7e7165584b484a48443e352c21160b00000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000005121f2b3744505b656c6d6c6c6d6f7278818e9ba095897c6f6356493c30231609000000000000000000000a1723303d4a5663707d8996a3b0b8b0aba99f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa9aaaaaaaaaa94877a6e6154473b2e2114080013202c3946535f6c7986929faca79a8d8074675a4d4134272e3a4754616d7a85929fa5afa59e948f857d746d676059514a423a322920170d04000000000000000713202d3946525d6876828f9ca9ac9f92867b6e61584e433b322c292424292c3139424d57616e7b86929faca89b8e8174655b5044372b1f12050000030f1b27323d474f5456585858585c6976828f9ca9aa9d9184776a5e585858585858585858585858585853514b42392e23180c00000000000000000000000000000009141f2935414b555f6a6f7c858f939c9fa4a79f9d989892908f8d8d8c8c8b8b8b8b8a8a8a8d929da9afa396897c706356493d3023160a0000000000000000000000060d1213181d2020232527292b2423201c1710080000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000815212e3b4854616e7b87959fabab9e9184786c6053463e33292120202227333e4956626f7c899191908f8e8d8073665a4d4033271a0d00000000000000000000000000060a0e10111313131313131313131313131313131313131313131313131313131313131313131313131313131310100d0a05000000000000000000000000000000000000081019212a30383f444e53575f62676d7175797c7e80828390979c928c848382807e7b7974706d66605d56524c433d342e271e160e0500000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d2727272727272727272727272727272727272727272727272727272727272722211f1b150e060000000013202c3946535f6c7986929facada093867a6d6053473a2d2727272727272727272727272727272727272727272727272727272727272722211f1b150e0600000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000a1724313d4a5764707d8a97a3b0a5988c7f7265594c3f2e23181c1f24293139424c56616c7683909da9b3afa396897c706356493d302316100b0500000000000815212e3b4854616e7b8797a1adaa9d9083776a5f544b4540424045474b51575f676d78828f9590959fabb0a3968a7d7063574a3d3d3c38332c231a100500000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000000000613202d394653606c777979797a7b7e838e939e989083786c605346392d20130600000000000000000000091623303c4956636f7c8996a2afb0a69f9c9393939393939393939393939393939393939393939393939c9ea6b0aea398877a6d6054473a2d2114070013202c3946535f6c7986929faca79a8d8074675a4d41342935404b5565727f8c97a2ada59e938e827a706b605d554f444039302820170e05000000000000000005111d2935414c5664717e8b96a1ada3998d80746a60564d443e39352f2f35383c434b545e6973808d99a3aca096897d706353493f33271b0f03000007131f2c38434f59606365656565656976828f9ca9aa9d9184776a656565656565656565656565656565605c544b4034281c10040000000000000000000000000000020d18242f3a434e585f6a6f7a82898f93999c9fa2aaa29f9d9b9a999998989898979797979a9da4aeafa396897c706356493d3023160a0000000000000000000000000101070d11131416181a1c1e171614100b05000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000b1824313e4b5764717e8a97a7b1a79a8d8174665b5044382c2017131317202d3a4753606d79868584838281807e7164574b3e3124180b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a222b333c424a50585f62696e747a7e8185888b8d8f9095a0a49c9691908f8d8a8885817d79736d68605d564f454039302820160e05000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1515120f0a04000000000013202c3946535f6c7986929facada093867a6d6053473a2d201a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1515120f0a040000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000a1723303d4a5663707d8996abb5a6998d807366544a403428211e1a181f27303a44505a64707d8a97a2adafa396897c706356493d3023160a000000000000000916222f3c4955626f7c8895a9b3a79a8d817467584e4239352f34383a40454d555c666d7a85919d9fa7b1afa396897c706356493d302f2c28211a11080000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000000020a13202d394653606c7984868687888b90959a9590867c6f665b5044382b1f1206000000000000000000000815222f3b4855626e7b8895a9b3ab9f948f8686868686868686868686868686868686868686868686868f949eaaac9f928579675d5145392c2013060013202c3946535f6c7986929faca79a8d8074675a4d41342c3945515d677783909da9ac9e938e81786d686159514c433d342e271e160e05000000000000000000010d1924303a4653606d7984919ea7ab9f92877c6f685e564f47454141414045474e555c666e7b86929faba89e9184786c605346392d22170b0000000915222f3b4854606b6f72727272727276828f9ca9aa9d918477727272727272727272727272727272726d665c5145382c1f130600000000000000000000000000000007131d28313c464e585f686d757c82878b8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abacb5afa396897c706356493d3023160a00000000000000000000000000000001040607090b0d0f120a0a07040000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00010e1b2734414e5a6774818d9aa7b4aa978a7e7164544a3f33281a0e0606131f2c3845515c676d79787776757474716c6155493d3023170a0000000000000000000000000000000000000000000000000002050708080808080808060503000000000000000000000000000000000000000000000000000000000000000000000000000000000007111a232b343d454d545c606a6e757b81868a8e929897999c9da0a7aea8a19e9d9c9a9797928e8985807a736d686059514b423a322820170e050000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d090806030000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0908060300000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000915222f3c4855626f7b8899a3afa89b8f8275665c51443a322d2b2627272628323e4653606d7985929fabafa396897c706356493d3023160a000000000000000a1723303d4a5663707d8996a3b0a6998c7f7366594c402f2924292c2f353b434b545d68707d8a959fabb7afa396897c706356493d3023201c161008000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000001070c141c232b3844505b6673808c9993999292908d89837c6f6a5f544a3f33281c0f03000000000000000000000714212d3a4754606d7a8797a2ada99c8f82797979797979797979797979797979797979797979797979828f9ca9ab9e9184786b554b4135291d11040013202c3946535f6c7986929faca79a8d8074675a4d41342d3a4753606d7a86929faca49a8f81776d665e564f45413a3128231c150c04000000000000000000000008131f2c3845515c67727f8b95a0aba39991847a6e68615954514c4e4e4b5153575f676d78839098a2aca0968b7f72665b5044382b1b1106000000091623303c4956636f7d7f7f7f7f7f7f7f83919daaab9e91857f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f796d6053463a2d201307000000000000000000000000000000010c161f2a343c464e565e616b6f757b7f8285888a8c8d8f8f9090919191919292929292999ba3acafa396897c706356493d3023160a000000000000000000000000000000000000000000010305000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0004111d2935414c566a7683909da9aea298887b6e6155483b2d2217080004101c2934404b555c606c6b6a6969686764615a5045392d211408000000000000000000000000000000000000000000000003090e12141515151515151513120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000050f19232b353d464e575f666d727c81878e92999b9fa2aaa6a8aaa9a8a7a7a8a9aaa9a6a9a29e9a97928d85807a706b605c544c443a322920170c0300000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140701010101010101010101010101010101010101010101010101010101000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201407010101010101010101010101010101010101010101010101010101010000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000714202d3a4753606d7a86929facab9e9285796d60564c443d3a373134333332323845515c6675828f9ca8afa396897c706356493d3023160a000000000000000a1724313d4a5764707d8a97a3b0a5988c7f7265594c3f2e23181c1f24293139424c56616c7683909da9b3afa396897c706356493d302316100b0500000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000030b12181e262e34383f4a54616e7b87939f92878583817d786f6a5f584e42382d2218120b030000000000000000000613202c3945515d677885929eabaa9d9184776c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c667784919eaaa99c8f8376695c50432f24180d010013202c3946535f6c7986929faca79a8d8074675a4d41342f3c4855626f7b8899a3ac9f93877b6e655c544c443d352f281f18120b0300000000000000000000000004101c2834404b55606d78839099a3aba09690837a706b64605d555b5b555d60636a6e79818e959faaa49a9184796d60544a3f33281c0a000000000d1a2734404d5a6773808b8b8b8b8b8b8b9195a0acada197918b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b877a6d6054473a2d21140700000000000000000000000000000000040d18222a343c444c52596063696e7276797b7d7f81828383848484848585858585868b909ba7afa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000713202c3945525d687885929fabac9f9285796c605346392d20130600000c18232f39434b51535f5e5e5d5c5b5a575550483e33281d110500000000000000000000000000000000000000000000050d141a1e2121212121212121201f1b17110a020000000000000000000000000000000000000000000000000000000000000000000000030d17212b353d474f5860696e787f868e93999fa3ababaca8a9a29e9d9b9b9a9b9c9d9fa3aaa9aba9a19e98928c857d736d665d564c443a32291e150a00000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000006131f2c3945515d677783909dabada1978a7e71685e564f484742424140403f3f3f404b546673808c99a6afa396897c706356493d3023160a000000000000000a1723303d4a5663707d8996abb5a6998d807366544a403428211e1a181f27303a44505a64707d8a97a2adafa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000050d151d242930383f44464c535e6976828f9b8f82787774706c655f584e443f382f28231c150c03000000000000000004111d2935414c55697683909ca9ab9f928578695f606060606060606060606060606060606060606d7986929faca79a8d8174675a4e4134271b07000013202c3946535f6c7986929faca79a8d8074675a4d4134303c4956636f7c8996abaa9e918477695e534a423a3229241e160d070000000000000000000000000000000c18232e3944515c666f7c87929fa4a8a09590847d76716d6769676869676d70757b838e939ea7a59f93887d70665c5142382d22170b000000000d1a2734404d5a6773808d9898989898989da0a7b1b3a9a19e98989898989898989898989898989893877a6d6054473a2d21140700000000000000000000000000000000050e171e252a323a41464f54575e6165666d6f717374757676777777787878787879797e8b98a4afa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000714212d3a4754606d7a8797a2adaa9d918477655b5044372b1f1205000007121d273139404547525251504f4e4d4b49453e362c22170c00000000000000000000000000000000000000000000050f171f252a2d2e2e2e2e2e2e2e2d2b27221b140b02000000000000000000000000000000000000000000000000000000000000000000010b151f29333d474f59606a6f7b838c92999fa4abadaaa29f9b979792908f8e8e8e8f909298989d9fa7acaaa29f97918880786d685e564c443a30261c1106000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c07060401000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c070604010000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000004101d2935404b5566737f8c99a3aea99e91847a6d68615955534d4f4e4d4c4c4c4b4b4c5865727f8b98a5afa396897c706356493d3023160a000000000000000915222f3c4855626f7b8899a3afa89b8f8275665c51443a322d2b2627272628323e4653606d7985929fabafa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000050e161f272f353e424a5053565e6164717e8a9792877b6e696764615e56535049413d342e271e150c0300000000000000010d19242f414d5a6774808d9aabaea298887b6e61555353535353535353535353535353535355626f7c8899a3afa9988b7e7265584b3f3225180c000013202c3946535f6c7986929faca79a8d8074675a4d41342f3c4955626f7c8895a7ab9e9184786a5f544a423930281f160d040000000000000000000000000000000007121d2834404a54606a727f8c929ca4a7a096918a827d7a7775747475767a7d818790959ea5a59e938d80736b60544b402f261c1106000000000d1a2734404d5a6773808d9a9f9f9f9f9fa9aab0b8bab2acaa9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f93877a6d6054473a2d211407000000000000000000000000000000020c1720293036393a3e3f44484d5354545c606264666768696a6a6a6b6b6b6b6c6c6c717e8b98a4afa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000815222f3b4855626e7b8895a9b3a99c8f82766953493f33271b0f030000010b151f272f34383a464544434241413e3d39332c241a1006000000000000000000000000000000000000000000030c17212931363a3b3b3b3b3b3b3b3937332d261d140a00000000000000000000000000000000000000000000000000000000000000000007121d27313b454f59606b707c8590959fa3abaea9a19e98928e8a87858382818181828386888b90959b9fa4aca9a19a938d837a6d685e564c42382e23170d040000000013202c3946535f6c7986929facada093867a6d6053473a2d2019191919191919191919191919191919191919191919191919191413110d070100000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d2019191919191919191919191919191919191919191919191919191413110d0701000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000c18242f3b4854616e7b86929fa8ada19690827a706b65615f575c5a5a5959585858585865717e8b98a4afa396897c706356493d3023160a000000000000000714202d3a4753606d7a86929facab9e9285796d60564c443d3a373134333332323845515c6675828f9ca8afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000040d162028313940454f545c6064686e7174798592998c80777674716e6863605b534e44403930271e150c0300000000000000081724313e4a5764717d8a99a3afaa988b7e7165574d42464646464646464646464646424d5765727f8c98abada297887b6f6255483c2f221509000013202c3946535f6c7986929faca79a8d8074675a4d41342e3a4754616d7a8795a0aca196887c6f665c544b423a31281f160d03000000000000000000000000000000000c18232e39424e58626d73808c929ea1a8a19e948f8a8683828181828386898e93999fa7a39f938f81786d60594f42392e1d140a00000000000d1a2734404d5a6773808d9393939393939c9fa6b0b2a8a09393939393939393939393939393939393877a6d6054473a2d21140700000000000000000000000000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f65717e8b98a4afa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00091623303c4956636f7c8996a2afa89b8e8175685b4e422d22170b00000000030d151d23292c2d3938373636353431302d28221a1208000000000000000000000000000000000000000000000a151e29333b42464848484848484846443f382f261b110600000000000000000000000000000000000000000000000000000000000000000c18242f39434d57606b707d8692979fa7aeaba39f96918b86817e7b7876757474757677797c7f83888e939a9fa7aca49f9590837a6d685e544a3f34281f160c0100000013202c3946535f6c7986929facada093867a6d6053473a2d26262626262626262626262626262626262626262626262626262621201d18130c04000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d26262626262626262626262626262626262626262626262626262621201d18130c040000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000714202d3a46525e6974808d96a1a9a89f9590847d77726e696a6867666665656565646465717e8b98a4afa396897c706356493d3023160a0000000000000006131f2c3945515d677783909dabada1978a7e71685e564f484742424140403f3f3f404b546673808c99a6afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000010c161f28323a434b515961666d71767a7e80828f979c928c8483807d7a76706c656058514a423930271e150a000000000000000714212e3a4754616d7a86929faca89b8e8275695e53463d313939393939393939303946525e6976828f9ca9ab9e9285786c605346392d201306000013202c3946535f6c7986929faca79a8d8074675a4d41342d3946525e687784919da8a89c9082786d665c544b433a31281f150b0100000000000000000000000000000007121c27303d46515b646e73808a92979fa3a69f9c9992908f8e8e8f9092989b9fa4a69f99928c81786d665c50473d30271d0b0200000000000d1a2734404d5a677380868686868686868f949faaaca0968986868686868686868686868686868686867a6d6054473a2d2114070000000000000000000000000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525965727f8c98a5afa396897c706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000a1724303d4a5763707d8a96a3b0a79a8d8174675a4e4134271b060000000000030b12181c1f202c2b2b2a2928272423211d1710080000000000000000000000000000000000000000000006111c26303b454d535454545454545453504941382d22170b0000000000000000000000000000000000000000000000000000000000000004101d2935404b555e69707d879298a2a9b1a8a099928c847f7a75716e696a6868676869666d6f72767b818790959da4afa79f9590837a6d665c50443e31281d130700000013202c3946535f6c7986929facada093867a6d6053473a333333333333333333333333333333333333333333333333333333332d2c29241d160d040000000000000013202c3946535f6c7986929facada093867a6d6053473a333333333333333333333333333333333333333333333333333333332d2c29241d160d0400000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000005121e2a36424d57606d79849197a1a9a79f969189837f7b78767574737372727271717171717e8b98a4afa396897c706356493d3023160a0000000000000004101d2935404b5566737f8c99a3aea99e91847a6d68615955534d4f4e4d4c4c4c4b4b4c5865727f8b98a5afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000008131e28313a444c555d606b70787e82868a8d8f949fa49c9691908d8a87827d786f6a605c544a423930261c11060000000000000713202d3946525d6876828f9ca9ac9f92867b6e61584e433b322c292424292c3139424d57616e7b86929faca89b8e8174655b5044372b1f1205000013202c3946535f6c7986929faca79a8d8074675a4d41342935414c5666727f8c96a1ab9f948e81786d665d554c433a31271d1207000000000000000000000000000000000b151e2b343f49525c646e737e858e92999ea1a8a39f9d9c9a9b9c9d9fa3a9a29f9b948f877f776d665c544a3f352c1e150b0000000000000d1926333f4c58646e7379797979797979828f9ca9aa9d9184797979797979797979797979797979797976685d5245392c201307000000000000000000000000000005111d2a36414c565e6164656768696a6b68655d534840414243434444444545454d596673808c99a6afa295897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000a1724313d4a5764707d8a97a3b0a79a8d8074675a4d4134271a0e01000000000001070c1013141f1f1e1d1c1b1a181714110c0600000000000000000000000000000000000000000000000c17232e38424d575e61616161616161605b53493f33271b0f03000000000000000000000000000000000000000000000000000000000005101a232c3945515d676e7b859299a2aab1a79f9691878079726d6764615e575c5b5b5b545c6062656a6e747c838d929fa3aba7a0959082786d60594f433a2f24180d02000013202c3946535f6c7986929facada093867a6d6053473f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3a39352f281f160c0100000000000013202c3946535f6c7986929facada093867a6d6053473f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3a39352f281f160c01000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000020e1a25303b45515d676f7c8591979ea5a8a09e95908b8885838281807f7f7f7e7e7e7e7d7d808d9aa7afa396897c706356493d3023160a00000000000000000c18242f3b4854616e7b86929fa8ada19690827a706b65615f575c5a5a5959585858585865717e8b98a4afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000050e19242f3a434c565e676d747d848a8f93999a9c9fa6aca8a09e9c9a9a938f8a837c736d665c544a42382e23170b02000000000005111d2935414c5664717e8b96a1ada3998d80746a60564d443e39352f2f35383c434b545e6973808d99a3aca096897d706353493f33271b0f03000013202c3946535f6c7986929faca79a8d8074675a4d413425303a4754606d79849199a4a69e938e81786d675d564c43392f24180d03000000000000000000000000000000030c19222d37404a525c636c717a81868d9196989b9c9e9f9f9f9f9e9d9b9997928e89827c736c655c544b42382e231a0c030000000000000b17232f3b47525c64676c6c6c6c6c6c76828f9ca9aa9d9184776c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5d564c4135291d110400000000000000000000000000000713202d3946525e686d71727374767778756f65594d3d323536373737383835404b556774818e9aa7b2a995887b6e6255483b2f221508000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000b1724313e4a5764717d8a97a4b0a69a8d8073675a4d4034271a0d010000000000000000040607131211100f0e0e0b0a080500000000000000000000000000000000000000000000000003101c28343f4a545e696e6e6e6e6e6e6e6c655b5044372b1f120500000000000000000000000000000000000000000000000000000000000b16212b37434e58606d79839097a1abb1a79f9590847c736d67605d5554524d4f4e4e4e4a505355585f626a6f78808a9299a3aba79f948d80736b61554b4035291f1409000013202c3946535f6c7986929facada093867a6d60534c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4745413a31281d130700000000000013202c3946535f6c7986929facada093867a6d60534c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4745413a31281d1307000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000009141f2935414b555f6a6f7c858f939c9fa4a79f9d989892908f8d8d8c8c8b8b8b8b8a8a8a8d929da9afa396897c706356493d3023160a00000000000000000714202d3a46525e6974808d96a1a9a89f9590847d77726e696a6867666665656565646465717e8b98a4afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000020d17202935414c555e686d79818a91969c9fa4aba5aba49f9fa4aca5aca49f9c95908780786d665c544a3f34281d140a0000000000010d1924303a4653606d7984919ea7ab9f92877c6f685e564f47454141414045474e555c666e7b86929faba89e9184786c605346392d22170b00000013202c3946535f6c7986929faca79a8d8074675a4d4134272c3945515d67707d87939fa3a59e938f82796d685d554b4035291f150b0100000000000000000000000000000007101b252e38404a525a61686d747b8084888b8e90919292929291908e8c8985817c766f6a605b534b423930261c11080000000000000007131f2b36404a52585a60606060606976828f9ca9aa9d9184776a6060606060606060606060606060605f524c443a2f24190d0100000000000000000000000000000714212e3a4754616d7a7e7f8081828485817568584e43372e2c2823282c2f3945515d677783909daaada196877a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000a1724313d4a5764707d8a97a3b0a79a8d8074675a4d4134271a0e010000000000000105090b0b121111100f0e0d0908060300000000000000000000000000000000000000000000000006121f2c3844505c66767b7b7b7b7b7b7b776c605346392d2013060000000000000000000000000000000000000000000000000000000004101c27333a47535f6a74808d95a0a9b2a89f9590837a6f6a605c55514b484642424141423f4446494e53585f666d737e879299a4afa69f93887d70675d51453b30251a0e020013202c3946535f6c7986929facada093867a6d605959595959595959595959595959595959595959595959595959595959595954514b433a2f24180d01000000000013202c3946535f6c7986929facada093867a6d605959595959595959595959595959595959595959595959595959595959595954514b433a2f24180d010000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000020d18242f3a434e585f6a6f7a82898f93999c9fa2aaa29f9d9b9a999998989898979797979a9da4aeafa396897c706356493d3023160a000000000000000005121e2a36424d57606d79849197a1a9a79f969189837f7b78767574737372727271717171717e8b98a4afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000008141e29323b45515d676d7a838e939ea0a8a7a09d99959993939a96999ea0a8a7a099928c81786d665c50443d2f261c1106000000000008131f2c3845515c67727f8b95a0aba39991847a6e68615954514c4e4e4b5153575f676d78839098a2aca0968b7f72665b5044382b1b110600000013202c3946535f6c7986929faca79a8d8074675a4d4134272935414b55606b727f8c919fa3a59e948f837a6d675d51453e31271d12070000000000000000000000000000000009131c262e38404850565e61696e73787c7e818384858686858583817f7c79746f6a625f585049413930271e150a0000000000000000020e19242e3840474c4d535353535c6976828f9ca9aa9d9184776a5e53535353535353535353535353535345413a32281e13080000000000000000000000000000000815212e3b4854616e7b878c8d8e8f909184786a6054473f3a38342e34383a404b55606d7a86929facab9e918578675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000a1724303d4a5763707d8a96a3b0a79a8d8074675a4d4134271a0e010000000000060c111517181f1e1d1c1b1a191615130f0a04000000000000000000000000000000000000000000000713202d3a4653606d7986878787878786796d6053473a2d201407000000000000000000000000000000000000000000000000000000000714202c38444f59626e7c87929fa7b1aaa1969083796d685f58514b45413b3a363035342e34383a3c43474e545c606c717e87939fa5afa49a9185796d60574d42362a1e11050013202c3946535f6c7986929facada093867a6d6666666666666666666666666666666666666666666666666666666666666666605d554b4135291d1104000000000013202c3946535f6c7986929facada093867a6d6666666666666666666666666666666666666666666666666666666666666666605d554b4135291d11040000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000007131d28313c464e585f686d757c82878b8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abacb5afa396897c706356493d3023160a0000000000000000020e1a25303b45515d676f7c8591979ea5a8a09e95908b8885838281807f7f7f7e7e7e7e7d7d808d9aa7afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000010d1925303b44515b606d798390959ea5a9a19e95908c8987868687898c91969ea1a9a39f938f81786d60584e42382d22170b000000000004101c2834404b55606d78839099a3aba09690837a706b64605d555b5b555d60636a6e79818e959faaa49a9184796d60544a3f33281c0a0000000013202c3946535f6c7986929faca79a8d8074675a4d413427242f3a434f59626d727f8b9299a2a69f959083796d605a5043392f24180c000000000000000000000000000000000915202b353f474e524c52575e61666a6f7274767878797978787675726f6d66626058534e4846423c332a1f140900000000000000000008121c262e363b3f404646464f5c6976828f9ca9aa9d9184776a5e51464646464646464646464646464639352f2820160c010000000000000000000000000000000714212d3a46535e697884919a9b9c9d96897c6f625a504a464440434044464b515c67717e8b98a3aeaa9b8f827568554b4135291d1104000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000a1623303d495663707c8996a3afa79a8e8174675b4e4134281b0700000000000911181d2124252c2b2a2928272622211f1b150e060000000000000000000000000000000000000000000713202d3a4653606d79869394949493867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000916232f3c4855616b76828f99a3afaea39891847a6d675e564e454039352f2d2a25282823282c2d31373c424a505a616c727f8b939ea8aca1978c8073695e52463a2d2014070013202c3946535f6c7986929facada09386797272727272727272727272727272727272727272727272727272727272727272726d675d5145392c201306000000000013202c3946535f6c7986929facada09386797272727272727272727272727272727272727272727272727272727272727272726d675d5145392c2013060000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000010c161f2a343c464e565e616b6f757b7f8285888a8c8d8f8f9090919191919292929292999ba3acafa396897c706356493d3023160a00000000000000000009141f2935414b555f6a6f7c858f939c9fa4a79f9d989892908f8d8d8c8c8b8b8b8b8a8a8a8d929da9afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000005111e2a36414c56626d75828f959fa7a8a097928a837f7c7a79797a7c7f848a9297a0a8a59e938d80736a60544a3f33281c0f0300000000000c18232e3944515c666f7c87929fa4a8a09590847d76716d6769676869676d70757b838e939ea7a59f93887d70665c5142382d22170b0000000013202c3946535f6c7986929faca79a8d8074675a4d4134271d28313d47515b636d727e879298a2a79f958e81756c61554b4035291d10040000000000000000000000000000010e1a26313d4751595e5f6060605e585f626568696b6c6c6c6c6b6a686663605c546060606055534d453c31261a0e020000000000000000010a141c242b2f33343939434f5c6976828f9ca9aa9d9184776a5e5144393939393939393939393939392c29241e160d040000000000000000000000000000000005121e2a36424d576774818e9aa6a9a89b8e81756c605c5453514a504a5153555d606d7983919daaaea2988b7e7165584b3e2f24180d01000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000815222f3b4855626e7b8895a9b3a89b8f8275685c4f422e23180c0000000009121b22292e3132393837363534332f2e2b262018100600000000000000000000000000000000000000000713202d3a4653606d798693a0a1a093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000005121e2a36424d5763707d89949fabb2a89f92867c6f685e554c443c342e2924201e1a1b1b171c1f20262b30383f44505a626d75818e96a0aca79f92867b6e6154473b2e2114080013202c3946535f6c7986929facb2a6998c7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f796d6054473a2d211407000000000013202c3946535f6c7986929facb2a6998c7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f796d6054473a2d2114070000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000040d18222a343c444c52596063696e7276797b7d7f81828383848484848585858585868b909ba7afa396897c706356493d3023160a000000000000000000020d18242f3a434e585f6a6f7a82898f93999c9fa2aaa29f9d9b9a999998989898979797979a9da4aeafa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000714202d3946525e68727f8b949ea7a9a09591857e77726f6d686c6d6f72787e859196a0a9a59f93877c6f665b5044382b1f1308000000000007121d2834404a54606a727f8c929ca4a7a096918a827d7a7775747475767a7d818790959ea5a59e938d80736b60544b402f261c11060000000013202c3946535f6c7986929faca79a8d8074675a4d413427161f2c353f49515b636c717d869299a3a79e938a7e71675d5145382c1f1307000000000000000000000000000004111d2a36424e59636a6c6c6c6c6b636059585b5d5e5f5f5f5f5e5d5b59575f626a6c6c6c6c6c5f574d42372b1e1205000000000000000000020a12191f2326272d36434f5c6976828f9ca9aa9d9184776a5e5144372d2d2d2d2d2d2d2d2d2d2d2d201d19130c040000000000000000000000000000000000020e1a25313c4855626f7c88949faaaa9e938a7e726d6662605c545d545c6062676d75808d95a0aca99f92867a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000714212e3a4754616d7a8797a2ada99c90837669544a4034281c1004000006111b242d343a3d3e454444434241403c3b37322a22180e04000000000000000000000000000000000000000713202d3a4653606d798693a0aca093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000714212d3a46535e6975828f9ca6b0aca0968c7f736a60564c433a3228231d1814120e09060c1012131a1e262e343e48515b606d7984919ea09d95908a807366594d4033261a0d0013202c3946535f6c7986929facb9a89c918c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c877b6e6154483b2e211508000000000013202c3946535f6c7986929facb9a89c918c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c877b6e6154483b2e2115080000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000050e171e252a323a41464f54575e6165666d6f717374757676777777787878787879797e8b98a4afa396897c706356493d3023160a0000000000000000000007131d28313c464e585f686d757c82878b8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abacb5afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000005111d2935414c56616e7a85929fa6ada19791837b716c6662605d606163656c717b849197a1ada4999184786c6053463a3025190d0100000000000c18232e39424e58626d73808c929ea1a8a19e948f8a8683828181828386898e93999fa7a39f938f81786d60594f42392e1d140a0000000000131f2c3946525f6c7985929faca79a8e8174675b4e4134281b1a232d373f49515a626b707d87929fa6a59e9184796d6053473a2f24180d010000000000000000000000000006121f2c3845525e6a757979797978706b605c544d5152535352524b515a61696e777979797976695f53463a2d2114070000000000000000000001080e1317191c2936434f5c6976828f9ca9aa9d9184776a5e5144372b202020202020202020201413110d0805030000000000000000000000000000000000000915212e3b47535f6a76828f98a2aea59f92877f78726f6d666a696a666d6f7379818d929da7aca2978d8074685d5246392d20130700000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3aca396897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000713202d3946525d687885929fabaa9e918477665c5144382c1f120600010c18222d363f454a4b5251504f4e4d4c4947433c342a20150a000000000000000000000000000000000000000713202d3a4653606d798693a0a7a093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87939facb2a89d9184796d60584e443a31292018120d0705020000000306090c151c2328363f45515d676f7d899395908a837e776c605346392d2013060013202c3946535f6c7986929facb9ada39c999999999999999999999999999999999999999999999999999999999999999994877b6e6154483b2e211508000000000013202c3946535f6c7986929facb9ada39c999999999999999999999999999999999999999999999999999999999999999994877b6e6154483b2e2115080000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000020c1720293036393a3e3f44484d5354545c606264666768696a6a6a6b6b6b6b6c6c6c717e8b98a4afa396897c706356493d3023160a00000000000000000000010c161f2a343c464e565e616b6f757b7f8285888a8c8d8f8f9090919191919292929292999ba3acafa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000713202d3946525e6874808d98a2aea69e92857b6e69615a5654525354535b60696e7b85929ea8aba0958a7d7063564c41362a1d1105000000000007121c27303d46515b646e73808a92979fa3a69f9c9992908f8e8e8f9092989b9fa4a69f99928c81786d665c50473d30271d0b020000000000121f2c3945525f6c7885929faba89b8e8275685b4f42302519111b252e373f485059606b717e8b949faba1968b7e7165554b4135291d1104000000000000000000000000000613202c3946535f6c7987868686847d736d665f5751464146454d555c606c717b83868686867b6e6155483b2e22150800000000000000000000000002070b101c2936434f5c6976828f9ca9aa9d9184776a5e5144372b1e13131313130b101316171e1a1613120f0b060300000000000000000000000000000006121f2b37434e58626f7c86929fa4aca399928b837f7b797777767777797c80858e939da4aea49a92857a6d61564c4135291d110500000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d89969f9f9f96897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0005111d2935414c566a7683909da9ac9f9286796d6053463a2d2013070005111d29343f485056585f5e5d5c5b5a5955534e463c32261b0f030000000000000000000000000000000000000713202d3a4653606d7986939a9a9a93867a6d6053473a2d201407000000000000000000000000000000000000000000000000000005121e2a36424d576673808d99a4afaca0968a7e71665c51463c32281f170e0700000000000000000000030a1117242935414b55606b75818e8a837d78706c655b5044372b1f12050013202c3946535f6c7986929facb9b5ada8a6a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a194877b6e6154483b2e211508000000000013202c3946535f6c7986929facb9b5ada8a6a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a194877b6e6154483b2e2115080000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f65717e8b98a4afa396897c706356493d3023160a0000000000000000000000040d18222a343c444c52596063696e7276797b7d7f81828383848484848585858585868b909ba7afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000714212e3a4754616d7a86929faaab9f948a7d70695e575049474546474950565e69717e8b96a0aca79c8f8275685e5246392d2013070000000000000b151e2b343f49525c646e737e858e92999ea1a8a39f9d9c9a9b9c9d9fa3a9a29f9b948f877f776d665c544a3f352c1e150b000000000000121e2b3845515e6b7884919eaba99c8f827669564c41362a1e11131c252e363e474f59626d76828f9caaa99c908376675d5145392c20130600000000000000000000000000000b1825323e4b5865717e8b9296918780786e69625b524c4550575f676d747e869095948d8074695f53463a2d211407000000000000000000000000000003101c2936434f5c6976828f9ca9aa9d9184776a5e5144372b1e110600080f161c2022232b2723201f1b17120f0b0600000000000000000000000000030f1b26323c47535f6a717e8b939aa2aaa39f95918c8886848483838485898c92979ea5aaa39f93887d70685e52443a3024190d0100000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d899393939393897d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00010d192430414e5b6774818e9aa7afa399887b6f6255483c2e23180c060615212e3a45505a62656c6b6a69686766625f584e43372b1f13060000000000000000040607080808080808080813202d3a4653606d79868d8d8d8d8d86796d6053473a2d20140808080808080808070604000000000000000000000000000000000714212d3a46535f697784919eabb5ab9d9184786c60544b40342b20160d0500000000000000000000000000061218242f3a434f59616e7b837e78716c65605b53493f33271b0f030013202c3946535f6c7986929facb9afa7a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f94877b6e6154483b2e211508000000000013202c3946535f6c7986929facb9afa7a2a09f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f94877b6e6154483b2e2115080000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525965727f8c98a5afa396897c706356493d3023160a0000000000000000000000050e171e252a323a41464f54575e6165666d6f717374757676777777787878787879797e8b98a4afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000005121e2a36424d5765727f8c98a2aea99c8f82766c61574d453e3a39393a3f444d57616c7784919eaaa99f93867a6d6154473a2e211407000000000000030c19222d37404a525c636c717a81868d9196989b9c9e9f9f9f9f9e9d9b9997928e89827c736c655c544b42382e231a0c03000000000000101d2a3643505d697683909ca9ab9e918478685e5246392d20140a131c242d353d47505a63707d8998a3ac9f92867a6d6054473a2d21140700000000000000000000000000000b1724313d4a56626d73808c9399938d837b726d615e56515a61696e79818a9298958f82786d60574d42372b1e1205000000000000000000000000000003101c2936434f5c6976828f9ca9aa9d9184776a5e5144372b1e070008111921272c2f3038342f2d2b27221f1c17110a020000000000000000000000000a15202b37434e58616c727f8892989fa3a7a09d99999291909090919298999ea2a9a69f98928b7f726c61564c4132281e13080000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000a1723303d4a5663707d868686868686867d7063564a3d3023170a00091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000081825313e4b5864717e8b97a7b1ab988b7e7165554b4034281d1413131624313d4a56626c71787777767574736f6a5f53473b2e211508000000000001070c101314151515151515151515202d394653606c7880808080808080786d6053463a2d201515151515151515151413100c0701000000000000000000000000000815222e3b4855616e7b8896a0acafa3998c7f72665b5042392e22190e0500000000000000000000000000000007131d28313d46535f696e77716c65605b53504941382d22170b000013202c3946535f6c7986929facb9a79d95939393939393939393939393939393939393939393939393939393939393939393877b6e6154483b2e211508000000000013202c3946535f6c7986929facb9a79d95939393939393939393939393939393939393939393939393939393939393939393877b6e6154483b2e2115080000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000005111d2a36414c565e6164656768696a6b68655d534840414243434444444545454d596673808c99a6afa295897c6f6256493c2f23160900000000000000000000020c1720293036393a3e3f44484d5354545c606264666768696a6a6a6b6b6b6b6c6c6c717e8b98a4afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000714202d3a46525e697783909daaada197897d7063594f453b332d2c2d2d333b45505a66737f8c999d9c9c998a7d7063574a3d3024170a0000000000000007101b252e38404a525a61686d747b8084888b8e90919292929291908e8c8985817c766f6a605b534b423930261c1108000000000000000f1b2835424e5b6875818e9ba8ada196877a6e6154473b30251b1413121b232b353f4653606d7986929faca399897c6f6256493c2f23160900000000000000000000000000000915212e3a45505a636e74818e939f9590867e756d68605c606c717b838e939f969083796d665c50453c31261a0e02000000000000000000000000000003101c2936434f5c6976828f9ca9aa9d9184776a5e51442f24180d050f19232b33383c3d45403c3937332d2b28221c140b050000000000000000000000040f1a26313c46505a636d727e868e92999da0a8aba39f9e9d9c9d9e9fa2aaaaa29f9b948f867e726d62594f443a3020160c020000000000000000000000000000000000000000000000000000000000000000000000010b1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000916232f3c4855616b7079797979797979706b6155483c2f23160900091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000815212e3b4854616e7b87959faba89b8e8175675c5145392e2521201f202935404b5565717e8584838281807f7c6f6255493c2f22160900000000030b12181d1f20212121212121212121212b3844505b666c747474747474746d665c5044382c21212121212121212121201f1d18120b030000000000000000000000000c1825323f4b5865727e8b98a8b2ac9f92867a6e61544a3f30271d100700000000000000000000000000000000010c161f2a36424d575f616a64605b535049443f382f261b1106000013202c3946535f6c7986929facb9a2958b868686868686868686868686868686868686868686868686868686868686868686867b6e6154483b2e211508000000000013202c3946535f6c7986929facb9a2958b868686868686868686868686868686868686868686868686868686868686868686867b6e6154483b2e2115080000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000713202d3946525e686d71727374767778756f65594d3d323536373737383835404b556774818e9aa7b2a995887b6e6255483b2f2215080000000000000000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f65717e8b98a4afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000815212e3b4854616e7b87959fabab9e9184786c6053463e33292120202227333e4956626f7c899191908f8e8d8073665a4d4033271a0d000000000000000009131c262e38404850565e61696e73787c7e818384858686858583817f7c79746f6a625f585049413930271e150a00000000000000000c1926323f4c5965727f8c98a9b2a8978a7d7064564d42362b2621201f1f20232c3845515c667784919eaaab978a7d7164574a3e3124170b000000000000000000000000000005111d29343f48525b606d78818f959f98928b827a706b676d747e8690959d9891847b6e675d544a3f332a1f1409000000000000000000000000000000020f1c2935424f5c6875828f9ba8ab9e9184786b554b4035291d110b16212b353d44484a514d4946443f3938332d261d170e0500000000000000000000000a15202a343e48515b636c717b81878c919597999c9d9e9e9f9f9f9e9d9b9998928e89827b716c625b51473e32281e0e04000000000000000000000000000000000000000000000000000000000000000105090b0b0d0d1825313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000714202c38444f5961636c6c6c6c6c6c6c6361594f44382c20140700091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000714202d3a46525e697783909daaab9f9285796d60544b4036312d2c2c2d323a45515d6775818e91908f8e8d897c6f6356493c30231609000000030d151d24292c2d2e2e2e2e2e2e2e2e2e2e2e333f4a545b6067676767676767605c544a3f342e2e2e2e2e2e2e2e2e2e2e2d2c29241d150d030000000000000000000004101d2935404b556875828f9ba8b5a99c908376685e5242382d1e150b000000000000000000000000000000000000040d1a26313b454d53555d57535049443f38332d261d140a00000013202c3946535f6c7986929facada093867979797979797979797979797979797979797979797979797979797979797979797976695e52463a2d201407000000000013202c3946535f6c7986929facada093867979797979797979797979797979797979797979797979797979797979797979797976695e52463a2d2014070000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000714212e3a4754616d7a7e7f8081828485817568584e43372e2c2823282c2f3945515d677783909daaada196877a6d6054473a2d211407000000000000000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525965727f8c98a5afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1824313e4b5764717e8a97a7b1a79a8d8174665b5044382c2017131317202d3a4753606d79868584838281807e7164574b3e3124180b0000000000000000010a141c262e363e444c52575e61666a6f7274767878797978787675726f6d66626058534e443f382f271e150c030000000000000000091623303c4956636f7c8997a2ada89b8f8275695e52463f37312e2d2c2c2d2e343b45515d677885919eaba4978b7e7164584b3e3125180b0000000000000000000000000000010c18222d364044505c666d79829095a09f938f857d746f79818a9298a09992867c6f695e554b42382e21180e03000000000000000000000000000000020f1b2835424e5b6875818e9ba8ab9f928578675d5145392c2017161c27333d474f54565e5a5653504946443f382f2920170d0200000000000000000000030e18222d363f49515a61696e747b8084888b8d8f90919292929291908e8c8985817c766e69615a51493f352c20160c00000000000000000000000000000000000000000000000000000000000000060c111517181a1a1a25313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e0004101c27333d474f55566060606060606056554f473d33271c100400091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000005121e2a36424d5765727f8c98a2aea2988b7e71665c5146423b3a39383a3d444d57606d7a85929e9d9c9b9285796d6053463a2d2013070000010b151f272f35383a3b3b3b3b3b3b3b3b3b3b3b3b3b424a50535a5a5a5a5a5a5a53504a423b3b3b3b3b3b3b3b3b3b3b3b3b3a39352f271f150b0100000000000000000006131f2c3845515d677884919eabb6ac998c7f7266564c412f261c0c030000000000000000000000000000000000000009141f29333b424648504a46443f38332d27221b140b0200000013202c3946535f6c7986929facada093867a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5e574d42362a1e1205000000000013202c3946535f6c7986929facada093867a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5e574d42362a1e12050000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000815212e3b4854616e7b878c8d8e8f909184786a6054473f3a38342e34383a404b55606d7a86929facab9e918578675d5145392c20130600000000000000000005111d2a36414c565e6164656768696a6b68655d534840414243434444444545454d596673808c99a6afa295897c6f6256493c2f231609000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000010e1b2734414e5a6774818d9aa7b4aa978a7e7164544a3f33281a0e0606131f2c3845515c676d79787776757474716c6155493d3023170a000000000000000000020a131c242c323a41464d5254585f626568696b6c6c6c6c6b6a686663605c54544e47433c332d261d150c030000000000000000000713202d3a4653606d7985929fabac9f92877b6e615a5147433c3b3a38383a3b40444d56606d7a86939facaa978a7d7164574a3e3124170b00000000000000000000000000000006111b2428343f4a545d676d7a839196a19e979188807b838e929fa29f93877d706a5f574d433a30261c0f0600000000000000000000000000000000010d1a2734404d5a6773808d9aa6ac9f93867a6d6053473a2e262323262c38444f5960636b6762605b5353504a423b33291f1409000000000000000000000006101b242e373f4850575e61696e73777b7e80828484858686858583827f7d79756f6b625f5750483f372d231a0e040000000000000000000000000000000000000000000000000000000000000911181d21242527272727313e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e00000b16212c353d44484a535353535353534a48443d352c21160b0000091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000020e1a25303b4754616d7a86929fa9aa9e9184796d605b534d4847454546484f565e69727f8c98a2aaa69b8e8275665c5044382c1f1206000007121d27313940454748484848484848484848484848484848484d4d4d4d4d4d4d48484848484848484848484848484848484745403931271d12070000000000000000000714202d3a4753606d7a86939facafa49a897c6f6356493c3023140a0000000000000000000000000000000000000000030d17212931363a3b443e3937332d27221b17110a020000000013202c3946535f6c7986929facada093867a6d60606060606060606060606060606060606060606060606060606060606060605f524d453b30251a0e02000000000013202c3946535f6c7986929facada093867a6d60606060606060606060606060606060606060606060606060606060606060605f524d453b30251a0e020000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000714212d3a46535e697884919a9b9c9d96897c6f625a504a464440434044464b515c67717e8b98a3aeaa9b8f827568554b4135291d11040000000000000000000713202d3946525e686d71727374767778756f65594d3d323536373737383835404b556774818e9aa7b2a995887b6e6255483b2f221508000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000004111d2935414c566a7683909da9aea298887b6e6155483b2d2217080004101c2934404b555c606c6b6a6969686764615a5045392d21140800000000000000000000010a121a202830363b4246484e5361696b6c6c6c68605c545d5b595653514a47433d373127221b140b030000000000000000000006121f2c3844505c6674818e9ba6afa3998e81756c625b534e494746444446484a51575e68727e8b99a4aea398897c6f6256493c2f23160900000000000000000000000000000000091217232e38424b555d686e7b849197a2a19a938d8890959da59d928b7f726b61584e453b31281e140a0000000000000000000000000000000000000c1825323f4b5865727e8b98aaafa49a897c7063544b403631303031363f4854606b7078736f6c6563605b544d453b30251a0e02000000000000000000000009121c252e363e454d52575f62666a6e71737577787879797978777573706d67636059534d453e362d251b110800000000000000000000000000000000000000000000000000000000000009121b22292e313234343434343e4b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000005101a232c33383c3d464646464646463d3c38332c231a10050000091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000000914202d3946525d6874808d97a2aca0968d80746d615e575554515153555960686e7b86929faaab9f94897c6f63544a3f34281c100300000c18242f39434b5153545454545454545454545454545454545454545454545454545454545454545454545454545454545453514b43392f24180c0000000000000000000915222f3c4855626f7b889aa4afac9f93867a6d6054473a2d211407000000000000000000000000000000000000000000060f171f262a2d2e37312d2b27221b17110b0600000000000013202c3946535f6c7986929facada093867a6d60535353535353535353535353535353535353535353535353535353535353534846423b33291f140900000000000013202c3946535f6c7986929facada093867a6d60535353535353535353535353535353535353535353535353535353535353534846423b33291f1409000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000005121e2a36424d576774818e9aa6a9a89b8e81756c605c5453514a504a5153555d606d7983919daaaea2988b7e7165584b3e2f24180d010000000000000000000714212e3a4754616d7a7e7f8081828485817568584e43372e2c2823282c2f3945515d677783909daaada196877a6d6054473a2d211407000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000713202c3945525d687885929fabac9f9285796c605346392d20130600000c18232f39434b51535f5e5e5d5c5b5a575550483e33281d1105000000000000000000000000080e161e252a30363a3c505d697378797979746d665e564e4c494644403937322b262017110a02000000000000000000000003101c28343f4a54626f7c89949fabab9e938b7e726d625f5856545351505355545c60696e7a85929eabac9f92867a6d6053473a2d201407000000000000000000000000000000000006111c263039434c565e696f7c859299a3a49f9a959da0a79e948d80746d62594f463c33291f160c02000000000000000000000000000000000000091623303c4956636f7c8998a2aeac998c8073665c5146423e3d3c3d4246515b63707d84807c78746f6c665e574d42362a1e11050000000000000000000000000a131c242c333b42464d5355575f626466696a6b6b6c6c6c6b6a686663605d55544f4c4841382f241b130900000000000000000000000000000000000000000000000000000000000006111b242d343a3d3e4040404040404b5864717e8b97a4b1a79a8e8174675b4e4134281b0e000008131e28313a414547494949494949494745413a31281e13080000091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000005111d2935414c56616d7a85929fa5a89d928c7f756e696461605d5c6062656b6f7a839198a2aea3999083766b605442382e23170c000004101d2935404b555d606161616161616161616161616161616161616161616161616161616161616161616161616161616161605d554b4035291d100400000000000000000b1724313e4a5764717d8a97acb6aa9e918477675d5145392c20130600000000000000000000000000000000000000000000060d141a1e21222a24201f1b17110b06000000000000000013202c3946535f6c7986929facada093867a6d60534746464646464646464646464646464646464646464646464646464646463b3a36302921170d0200000000000013202c3946535f6c7986929facada093867a6d60534746464646464646464646464646464646464646464646464646464646463b3a36302921170d02000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000020e1a25313c4855626f7c88949faaaa9e938a7e726d6662605c545d545c6062676d75808d95a0aca99f92867a6d6154473a2e211407000000000000000000000815212e3b4854616e7b878c8d8e8f909184786a6054473f3a38342e34383a404b55606d7a86929facab9e918578675d5145392c201306000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000714212d3a4754606d7a8797a2adaa9d918477655b5044372b1f1205000007121d273139404547525251504f4e4d4b49453e362c22170c0000000000000000000000000000050c13191f252a3845525f6b788586868681786d685f584f473f38342e2b27201b150b0600000000000000000000000000000c17232e384754606a76828f99a3aea59f92877f756f6a666261605c5c606164666d727b839097a1ada59c8f8275675d5145392c1f13060000000000000000000000000000000000000a141e27313a444d575f6a707d879299a49f9f9f9fa9a0958f82786d605b51473e342a21170d04000000000000000000000000000000000000000714202d3a4753606d7985929facab9e9185796d605a534d4b4a494a4d535b626d76828f8d8984807c786e695e52463a2d201407000000000000000000000000020e1925303b444c525f6060606060605d5c5d5e5f5f5f5f5e5d5b6060606060605a58534a41362b2014080000000000000000000000000000000000000000000000000000000000010c18222d363f454a4b4d4d4d4d4d4d4d5864717e8b97a4b1a79a8e8174675b4e4134281b0e00010d19242f3a434c52545656565656565654524c433a2f24190d0100091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000000010d1924303a46525e68727e8b939ea7a49c918c827b75716e6d67666d6f71767d849195a0aaa69f92877c6f63594f4330261c1106000006131f2c3845515d676d6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6e6d675d5145392c1f130600000000000000000c1926323f4c5965727f8c98a5b2a99c8f837669554b4135291d1104000000000000000000000000000000000000000000000003090e1214151d1713120f0b060000000000000000000013202c3946535f6c7986929facada093867a6d6053473a393939393939393939393939393939393939393939393939393939392e2d2a251f170f050000000000000013202c3946535f6c7986929facada093867a6d6053473a393939393939393939393939393939393939393939393939393939392e2d2a251f170f0500000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000915212e3b47535f6a76828f98a2aea59f92877f78726f6d666a696a666d6f7379818d929da7aca2978d8074685d5246392d201307000000000000000000000714212d3a46535e697884919a9b9c9d96897c6f625a504a464440434044464b515c67717e8b98a3aeaa9b8f827568554b4135291d1104000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000815222f3b4855626e7b8895a9b3a99c8f82766953493f33271b0f030000010b151f272f34383a464544434241413e3d39332c241a100600000000000000000000000000000002080d141a26323f4c5965727f8c93938e827a6f6a615951444039302820180f0a0300000000000000000000000000000006111c2b38434e58626f7c87929fa5afa399928b817c76726f6e6d66666d6e7074797f859095a0a9a89e93897d7063554b4035291d1004000000000000000000000000000000000000020c151f28323b454e58606b717e8793939393939393969083796d665c50493f352c22190f05000000000000000000000000000000000000000006131f2c3845515c6775828f9ba7ada1978c80736c615f5757565657575f616d727f8b949a96918d89857b6e6154473b2e21140800000000000000000000000005111e2a36414c565e6c6c6c6c6c6c6c6a675f555253534f5960636c6c6c6c6c6c67645c53483c3024180b000000000000000000000000000000000000000000000000000000000005111d29343f485056585a5a5a5a5a5a5a5a64717e8b97a4b1a79a8e8174675b4e4134281b0e0004111d2935414c565d6062626262626262605d564c4135291d110400091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b0000000008131e2a36414c56626d75818e959fa6a49c948f86827e7b7a7979797b7e83899196a0a7a59e948c7f736b6054473d321e150a0000000714202d3a4753606d797b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b7b796d6053473a2d20140700000000000000000d192633404c5966737f8c99a6b2a89b8e8175685b4e422f24180d010000000000000000000000000000000000000000000000000002050708110b06050300000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d21201e1a140d05000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d21201e1a140d050000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000006121f2b37434e58626f7c86929fa4aca399928b837f7b797777767777797c80858e939da4aea49a92857a6d61564c4135291d11050000000000000000000005121e2a36424d576774818e9aa6a9a89b8e81756c605c5453514a504a5153555d606d7983919daaaea2988b7e7165584b3e2f24180d01000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000091623303c4956636f7c8996a2afa89b8e8175685b4e422d22170b00000000030d151d23292c2d3938373636353431302d28221a120800000000000000000000000000000000000003091825313e4a56626d75818f969490847c706b625b514a423a322a21191106000000000000000000000000000000000f1b27323d47535f6a727f8c939da5aba39f938e87827f7c7a797879797b7d81858b9297a0a7a8a0968f82756b605443392f24180c0000000000000000000000000000000000000000030d162029333c464f59616c727f8686868686868686847b6e675d544a3f372d231a100700000000000000000000000000000000000000000004101c2934404b5563707d8a95a0aca99f93887e746e69666463636366696e757f87939fa6a19e9a908377695e52463a2d2014070000000000000000000000000714202d3946525e68767979797979797771675b4f464854606b70797979797979746e64584c4033271a0d01000000000000000000000000000000000000000000000000000000000915212e3a45505a6265676767676767676767717e8b97a4b1a79a8e8174675b4e4134281b0e000613202c3945525d686d6f6f6f6f6f6f6f6d685d5245392c20130600091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b00000000020d1925303a44515b606d798390949da5a69e98928f8b8887858586888b90949ea1a8a39f938e82786d60594f43352b210c030000000a1723303d4a5663707d87878787878787878787878787878787878787878787878787878787878787878787878787878787877e7164574a3e3124170b00000000000000000d1a2734404d5a6773808d9aa6b3a79a8d8074675a4d4134271a07000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d2020202020202020202020202020202020202020202020202020201514120e090200000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d2020202020202020202020202020202020202020202020202020201514120e0902000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000030f1b26323c47535f6a717e8b939aa2aaa39f95918c8886848483838485898c92979ea5aaa39f93887d70685e52443a3024190d0100000000000000000000020e1a25313c4855626f7c88949faaaa9e938a7e726d6662605c545d545c6062676d75808d95a0aca99f92867a6d6154473a2e21140700000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a1724303d4a5763707d8a96a3b0a79a8d8174675a4e4134271b060000000000030b12181c1f202c2b2b2a2928272423211d17100800000000000000000000000000000000000000000916222e3a46515b606d7a8491989691867d726d605c544c443c332b2317110a0200000000000000000000000000000a16202b37434e58606c77818e939fa2aaa59e9a938f8c898786858586888a8d92979ea1a9a59e9691847a6d61594f4431271d1207000000000000000000000000000000000000000000040e17212a343d47505a626d727979797979797979786e695e554b42382e251b110800000000000000000000000000000000000000000000000c18232f394653606c7883909aa4afa49a938b817b767371706f7072767b818b9399a4afa99f948a7e7164574d42362a1e11050000000000000000000000000814212e3b4754616e7a86868686868683776a5d5144495663707d8686868686868074675a4e4134271b0e01000000000000000000000000000000000000000000000000000000000b1724313d4a56626d71737373737373737373737e8b97a4b1a79a8e8174675b4e4134281b0e000714212d3a4754606d7a7c7c7c7c7c7c7c7a6d6054473a2d21140700091623303c4956636f7c8996a2afa4978a7d7164574a3e3124170b000000000008131e28323f45515d676d7a828e939da0a7a39f9b97949892929895989c9fa6a7a099928d81786d665c50463d3223190f000000000a1723303d4a5663707d899494949494949494949494949494949494949494949494949494949494949494949494949494948a7d7164574a3e3124170b00000000000000000e1b2734414e5a6774818d9aa7b3a69a8d8073675a4d4034271a0d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20141313131313131313131313131313131313131313131313131308070502000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201413131313131313131313131313131313131313131313131313080705020000000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000a15202b37434e58616c727f8892989fa3a7a09d99999291909090919298999ea2a9a69f98928b7f726c61564c4132281e13080000000000000000000000000915212e3b47535f6a76828f98a2aea59f92877f78726f6d666a696a666d6f7379818d929da7aca2978d8074685d5246392d20130700000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a1724313d4a5764707d8a97a3b0a79a8d8074675a4d4134271a0e01000000000001070c1013141f1f1e1d1c1b1a181714110c0600000000000000000000000000000000000000000006121e29353f45525d686f7c86929f9892877f746d665d564d453d3528231c140c0300000000000000000000000000040f1b26323c44505b656d78818b92989fa4aca49f9c9995949892929894979a9ea1a9a7a09d938f847b6e685d52473d331f150b0100000000000000000000000000000000000000000000050f18222b353e48515b62656c6c6c6c6c6c6c6c6b615e574d433a30261c130900000000000000000000000000000000000000000000000007121f2b3844505b66707d88939fa5aca49f938e8783807e7d7c7d7f82878e939fa4aba9a1978f82766c6155453b30251a0e020000000000000000000000000814212e3b4754616e7a87939393939084776a5d5144495663707c89939393938d8174675a4e4134271b0e01000000000000000000000000000000000000000000000000000000000b1825323e4b5865717f80808080808080808080828f9ca9b4a79a8e8174675b4e4134281b0e000a1723303d4a5663707d898989898989897d7063564a3d3023170a00091623303c4956636f7c8996a2aca4978a7d7164574a3e3124170b0000000000020c16202935404b555d686d78818991959c9fa3aba4aaa29f9fa2aaa4aba49f9c95908780786d665c544a3f342b211007000000000a1723303d4a5663707d8996a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1978a7d7164574a3e3124170b00000000000000000e1b2835414e5b6874818e9ba7b3a6998c807366594d4033261a0d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0b0a080500000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d20140d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0b0a0805000000000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000040f1a26313c46505a636d727e868e92999da0a8aba39f9e9d9c9d9e9fa2aaaaa29f9b948f867e726d62594f443a3020160c0200000000000000000000000006121f2b37434e58626f7c86929fa4aca399928b837f7b797777767777797c80858e939da4aea49a92857a6d61564c4135291d110500000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1724313e4a5764717d8a97a4b0a69a8d8073675a4d4034271a0d010000000000000000040607131211100f0e0e0b0a08050000000000000000000000000000000000000000000000010d18232935414c565f6a727e8b939e99938c81786d685f574f473f342e261e150c03000000000000000000000000000a152027333f49535c666d747f868e939a9ea1a8a7a5a2aaa29f9fa2aaa3a7aaa29f9b959089827a6e695e564c41352b210d03000000000000000000000000000000000000000000000000061019232c363f4951565860606060606060605e54524d453b31281e140a01000000000000000000000000000000000000000000000000030f1c28333f4a54606b73808d939da4aca59d99938f8c8a89898a8c8f93999ea5aea79f9791857b6e615a504533291f1409000000000000000000000000000814212e3b4754616e7a87949f9f9d9084776a5d5144495663707c89969f9f9a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000000000003101d293643505c6976828d8d8d8d8d8d8d8d8d8d8f949eaab4a79a8e8174675b4e4134281b0e000a1723303d4a5663707d899595959595897d7063564a3d3023170a00091623303c4956636f7c89969f9f9f978a7d7164574a3e3124170b000000000000050e18242f3a434c565d666d747d848a8f92999a9c9e9e9f9f9e9d9c9a99938f8a837c736c665c544a42382e22190f00000000000a1723303d4a5663707d89969f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b00000000000000000e1b2835414e5b6874818e9ba7b3a6998d8073665a4d4033271a0d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a171714110c050000000000000013202c3946535f6c7986929facada093867a6d6053473a2d201a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a171714110c0500000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000a15202a343e48515b636c717b81878c919597999c9d9e9e9f9f9f9e9d9b9998928e89827b716c625b51473e32281e0e0400000000000000000000000000030f1b26323c47535f6a717e8b939aa2aaa39f95918c8886848483838485898c92979ea5aaa39f93887d70685e52443a3024190d0100000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a1724313d4a5764707d8a97a3b0a79a8d8074675a4d4134271a0e010000000000000105090b0b121111100f0e0d09080603000000000000000000000000000000000000000000000000070d19242f3a434e58626d75818e95a09f928e827a6e69605951443f3830271e150b00000000000000000000000000040b17222d38414a545c606d727b81878d9196989a9c9d9e9f9f9f9e9d9d9b9898928e8a837d756d685e574d443a3023190f000000000000000000000000000000000000000000000000000007111a242d373f464a4c5353535353535353524846423b33291f160c0200000000000000000000000000000000000000000000000000000b17222d38424f59606c78818d929ea0a8aba49f9c9997969696999c9fa4abaaa29f9590857c6f695e53483e3420170d02000000000000000000000000000814212e3b4754616e7a8794a1aa9d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000000000003101d293643505c6976838f9a9a9a9a9a9a9a9a9a9c9ea6b0b4a79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a2a2a296897d7063564a3d3023170a00091623303c4956636f7c8993939393938a7d7164574a3e3124170b0000000000000007131d28313a444c545c606b70787e82868a8d8f9192929291918f8d8a86827d786f6a605b544a423930261c100700000000000a1723303d4a5663707d899393939393939393939393939393939393939393939393939393939393939393939393939393938a7d7164574a3e3124170b00000000000000000e1b2734414e5a6774818d9aa7b3a69a8d8073675a4d4034271a0d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a2d27272727272727272727272727272727272727272727272727272727272423211c17100800000000000013202c3946535f6c7986929facada093867a6d6053473a2d27272727272727272727272727272727272727272727272727272727272423211c171008000000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000030e18222d363f49515a61696e747b8084888b8d8f90919292929291908e8c8985817c766e69615a51493f352c20160c0000000000000000000000000000000a15202b37434e58616c727f8892989fa3a7a09d99999291909090919298999ea2a9a69f98928b7f726c61564c4132281e13080000000000000000000000000000000203101d2a3643505d69768390908376695d5043362a1d100302000000000000000a1724303d4a5763707d8a96a3b0a79a8d8074675a4d4134271a0e010000000000060c111517181f1e1d1c1b1a191615130f0a04000000000000000000000000000000000000000000000008131e28313c46515b606d79839198a29d948f847b706b625b504a423930271d12070000000000000000000000000006111b262f38424a505b62696e757b8084888b8d8f90929292929191908e8b8985817d78706b605d564d453b32281e110700000000000000000000000000000000000000000000000000000008121b252d343a3e3f4646464646464646453b3a36302921170d0400000000000000000000000000000000000000000000000000000006111c262f3d44505b666d78808a91969d9fa7a7a9a6a4a3a2a3a5a9a7a8a09e98928c837b6f6a5f574d42362c220e0500000000000000000000000000000814212e3b4754616e7a8794a1a99d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000000000003101d293643505c6976838f9ca6a6a6a6a6a6a6a6a9aab0acaca79a8e8174675b4e4134281b0e000a1723303d4a5663707d8996a3aca396897d7063564a3d3023170a00091623303c4956636f7d868686868686867e7164574a3e3124170b00000000000000010c161f28323a424b515960666c71767a7d808284858686858483807d7a75706c666058504a423930271e140a0000000000000a1723303d4a5663707d86868686868686868686868686868686868686868686868686868686868686868686868686868686867e7164574a3e3124170b00000000000000000d1a2734404d5a6773808d9aa6b3a79a8d8174675a4e4134271b09000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d6053473a34343434343434343434343434343434343434343434343434343434343431302d28221a1208000000000013202c3946535f6c7986929facada093867a6d6053473a34343434343434343434343434343434343434343434343434343434343431302d28221a12080000000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000006101b242e373f4850575e61696e73777b7e80828484858686858583827f7d79756f6b625f5750483f372d231a0e04000000000000000000000000000000040f1a26313c46505a636d727e868e92999da0a8aba39f9e9d9c9d9e9fa2aaaaa29f9b948f867e726d62594f443a3020160c0200000000000000000000000000050a0f12101d2a3643505d69768390908376695d5043362a1d10120f0a0500000000000a1623303d495663707c8996a3afa79a8e8174675b4e4134281b0700000000000911181d2124252c2b2a2928272622211f1b150e0600000000000000000000000000000000000000000000010c161f2a343f45515d676e7c86929fa59f9691857d726d605c544b42392e23180c00000000000000000000000000000a141d2630383f4451575f61696e73787b7e80828485858685858483817f7c7a75706d666059524c443b332920160c000000000000000000000000000000000000000000000000000000000009131b23292e31323939393939393939382e2d2a251f170f0500000000000000000000000000000000000000000000000000000000000a141d28333f4a545c666d747d848b9095979a9c9e9f9f9f9f9e9d9a9896918c857f786e695f584e453b31241a100000000000000000000000000000000814212e3b4754616e7a87949c9c9c9084776a5d5144495663707c89969c9c9a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000000000003101d293643505c6976838f9c9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8e8174675b4e4134281b0e000a1723303d4a5663707d89969f9f9f96897d7063564a3d3023170a000915222f3b4854606b6f79797979797979716c6155493c3023170a0000000000000000040d162028303940454f545b6064686e7174767778797978777673716e6863605b544e443f382f271e150c020000000000000916232f3c4855616b707979797979797979797979797979797979797979797979797979797979797979797979797979797979716c6155493c3023170a00000000000000000d192633404c5966737f8c99a6b2a89b8f8275685c4f4230251a0e020000000000000000000000000000000000000000000000000000010203000000000000000000000000000000000013202c3946535f6c7986929facada093867a6d605347404040404040404040404040404040404040404040404040404040404040403e3c39332c241a10050000000013202c3946535f6c7986929facada093867a6d605347404040404040404040404040404040404040404040404040404040404040403e3c39332c241a100500000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000009121c252e363e454d52575f62666a6e71737577787879797978777573706d67636059534d453e362d251b110800000000000000000000000000000000000a15202a343e48515b636c717b81878c919597999c9d9e9e9f9f9f9e9d9b9998928e89827b716c625b51473e32281e0e04000000000000000000000000010910161b1e20202a3643505d69768390908376695d5043362a20201e1b161009010000000815222f3b4855626e7b8895a9b3a89b8f8275685c4f422e23180c0000000009121b22292e3132393837363534332f2e2b262018100600000000000000000000000000000000000000000000040d18222935404b555f6a717e8a939da7a09792877f746d665c544b4034281c100400000000000000000000000000020b151e262e343f454d53575f6266696e71747677787979797877767472706d6763605c544f45413a322921170e040000000000000000000000000000000000000000000000000000000000010911181e2224252d2d2d2d2d2d2d2d2b21201e1a140d05000000000000000000000000000000000000000000000000000000000000020b17222d38424a545c606b70797e83878b8d8f919292929291908e8b88847f7a736d665f574e463c33291f12090000000000000000000000000000000814212e3b4754616e7a878f8f8f8f8f84776a5d5144495663707c898f8f8f8f8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000000000003101d293643505c6976838f939393939393939393939393939393938e8174675b4e4134281b0e000a1723303d4a5663707d899393939393897d7063564a3d3023170a0007131f2c38434f5960636c6c6c6c6c6c6c64615a5045392d211408000000000000000000040d161e272e343d424a5053565e616467696b6b6c6c6b6a696764615e5653504a423c332d261d150c03000000000000000714202c38444f5961636c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d21140800000000000000000b1825313e4b5864717e8b97a4b1a99d9083766a574d42362a1e1105000000000000000000000000000000000000000000000003080c0e0e0f0b0707040100000000000000000000000013202c3946535f6c7986929facada093867a6d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4a49453e362c22170c0000000013202c3946535f6c7986929facada093867a6d60534d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4a49453e362c22170c00000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000a131c242c333b42464d5355575f626466696a6b6b6c6c6c6b6a686663605d55544f47423c332d241b1309000000000000000000000000000000000000030e18222d363f49515a61696e747b8084888b8d8f90919292929291908e8c8985817c766e69615a51493f352c20160c000000000000000000000000010a131b21272b2d2d2d3643505d69768390908376695d5043362d2d2d2b27211b130a0100000714212e3a4754616d7a8797a2ada99c90837669544a4034281c1004000006111b242d343a3d3e454444434241403c3b37322a22180e0400000000000000000000000000000000000000000000071018242f39434e58616c74818e95a0a9a299928b80786d665c5145382c1f13060000000000000000000000000000030c151c2328333c42464d5355575f626567696a6b6c6c6c6b6a6a686563605d5553504a423d35302820170f050000000000000000000000000000000000000000000000000000000000000000060d1216181920202020202020201f1514120e0902000000000000000000000000000000000000000000000000000000000000000006111c262f38424a505961666d71767b7e818384858686858483817f7b77736d68605c544d453c342a21170d000000000000000000000000000000000714212d3a4754606d7a8283838383838174675b4e414855626f7c8283838383827f7265584c3f3225190c0000000000000000000000000000000000000000000000000000000003101d293643505c6976828686868686868686868686868686868686868174675b4e4134281b0e000a1723303d4a5663707d868686868686867d7063564a3d3023170a00030f1b27323d474f545660606060606060575550483e33281c110400000000000000000000040c151d23282f383f44464c5254575a5c5e5f5f5f5e5e5c5a5754524c46443f382f28221c140b03000000000000000004101c27333d474f55566060606060606060606060606060606060606060606060606060606060606060606060606060606060575550483e33281c110400000000000000000a1723303d4a5663707d8996aab4ab9f928578695e52463a2d20140700000000000000000000000000000000000000000001090f14181a1b1c181413110d08050100000000000000000013202c3946535f6c7986929facada093867a6d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a575550483e33281c110500000013202c3946535f6c7986929facada093867a6d605a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a575550483e33281c1105000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000010a121a212930363c4247484e5355596063676a6b6c6b6a666260585653514b48433d37312a211b1209010000000000000000000000000000000000000006101b242e373f4850575e61696e73777b7e80828484858686858583827f7d79756f6b625f5750483f372d231a0e0400000000000000000000000009131c252c33373939393943505d69768390908376695d50433939393937332c251c130900000713202d3946525d687885929fabaa9e918477665c5144382c1f120600010c18222d363f454a4b5251504f4e4d4c4947433c342a20150a000000000000000000000000000000000000000000000007121d28313c46505a606d7983909893939393928d82796d6053463a2d201307000000000000000000000000000000030a1117212a31373c4247484d5355585a5c5d5f5f5f5f5e5e5d5b585653514b46443f383029241e160e05000000000000000000000000000000000000000000000000000000000000000000000106090b0c1313131313131313120807050200000000000000000000000000000000000000000000000000000000000000000000000a141d2630383f444f545c6064696e7174767778797978787674726f6a66605d56514a423c332a22180f05000000000000000000000000000000000713202c3945525d686d767676767676746f64584c4047535f6a6f767676767676726d62564a3e3125180b00000000000000000000000000000000000000000000000000000000020f1c2835414e5a667076797979797979797979797979797979797979746f64594c4033271a0d000916232f3c4855616b7079797979797979706b6155483c2f23160900000a16212b353d434849535353535353534a49453e362c22170c000000000000000000000000030b12181d262d33383b4146474a4d4f515253535251504d4a4746413b38332d261d17110a02000000000000000000000b16212c353d44484a53535353535353535353535353535353535353535353535353535353535353535353535353535353534a49453e362c22170c0000000000000000000815222e3b4855616e7b8898a2aeada297877b6e6154473b2e21140a0000000000000000000000000000000000000000030b131a20242728292521201d1913110d08020000000000000013202c3946535f6c7986929facada093867a6d6767676767676767676767676767676767676767676767676767676767676767676764615a5045392d21140800000013202c3946535f6c7986929facada093867a6d6767676767676767676767676767676767676767676767676767676767676767676764615a5045392d211408000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000080f171f252a31373e4850585f626b6f737778797877736f6a615f574f473d38322b2620180f090000000000000000000000000000000000000000000009121c252e363e454d52575f62666a6e71737577787879797978777573706d67636059534d453e362d251b110800000000000000000000000005101b252e373e434646464646505d69768390908376695d504646464646433e372e251b10050005111d2935414c566a7683909da9ac9f9286796d6053463a2d2013070005111d29343f485056585f5e5d5c5b5a5955534e463c32261b0f0300000000000000000000000000000000000000000000010c161f2a343e45515c676e7b8586868686868686867a6e6154473b2e2114080000000000000000000000000000000000060f181f262b31373a3c4247484b4d4f51525253525251504e4c494745403a38342e261e19130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141e262e343e424a5153575e616467696b6c6c6c6c6b6a6765625f5854524c444039302a21181006000000000000000000000000000000000004111d2935414c565d6069696969696967645c53483c434e585f6269696969696965625b51463a2e22160900000000000000000000000000000000000000000000000000000000000d1926323e49545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645d53483c3024180b000714202c38444f5961636c6c6c6c6c6c6c6361594f44382c2014070000040f19232b32383b3c464646464646463e3c39332c241a10050000000000000000000000000000070b141c22282b3036393b3e414344454646454443403e3b3936302b28221c140b0600000000000000000000000005101a232c33383c3d46464646464646464646464646463f44464f4f4f4f4f4f4f46444046464646464646464646464646463e3c39332c241a10050000000000000000000613202d394653606c7985929facb3a9968a7d7063574a3d31261b0f01000000000000000000000000000000000000000b151d252b30343536312d2c2924201d19130c0701000000000013202c3946535f6c7986929facada09386797373737373737373737373737373737373737373737373737373737373737373737373716c6155493c3023170a00000013202c3946535f6c7986929facada09386797373737373737373737373737373737373737373737373737373737373737373737373716c6155493c3023170a000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000050d15202a333e47505a616a6f767c808385868583807c756e6960594f473d32291f150e060000000000000000000000000000000000000000000000000a131c242c333b42464d5355575f626466696a6b6b6c6c6c6b6a686663605d55544f47423c332d241b1309000000000000000000000000000a16212c3740494f5353535353535d69768390908376695d5353535353534f4940372c21160a00010d192430414e5b6774818e9aa7afa399887b6f6255483c2e23180c060615212e3a45505a62656c6b6a69686766625f584e43372b1f13060000000000000000000000000000000000000000000000040d18222934404b555f696e78797979797979797976685e5246392d201407000000000000000000000000000000000000060e141a1f262b2e31373a3b3e41434445464646454443413f3d3a39352f2b28231c140c0802000000000000000000000000000000000000000000000000030608090f1112131313110f0c0707050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c141c232830394044464d5254585a5c5e5f5f5f5f5e5d5b5855534e4745413a342e271e180f06000000000000000000000000000000000000010d1924303a444c52545c5c5c5c5c5c5b58534a41363c464e53555c5c5c5c5c5c585651493f34291e120600000000000000000000000000000000000000000000000000000000000915212d38424c545a5c6060606060606060606060606060606060605b59534a41362b2014080004101c27333d474f55566060606060606056554f473d33271c100400000007101921272c2f303939393939393931302d28221a120800000000000000000000000000000000020a11171c1f252a2d2e3134363838393938373634312e2d2a251f1c17110a02000000000000000000000000000008111a21272c2f3039393939393939393939392d38424a50535c5c5c5c5c5c5c53514a42392e393939393939393939393931302d28221a12080000000000000000000006121f2b3844505b667683909ca9b3a79a8d807467584e43372b1e1308000000000000000000000000000000000000060f1d272f373c4041423e3a39352f2d29251e18120b030000000013202c3946535f6c7986929facb3a79a8d8080808080808080808080808080808080808080808080808080808080808080808080807e7164574a3e3124170b00000013202c3946535f6c7986929facb3a79a8d8080808080808080808080808080808080808080808080808080808080808080808080807e7164574a3e3124170b000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000020e1a26313c454f59616c707c82898d90929291908d88827b706b60594f443b3025190e02000000000000000000000000000000000000000000000000010a121a212930363c4247484e5355585a5c5d5e5f5a61646c6c6c6c66635c5248433d37312a211b120901000000000000000000000000000f1b27333e49525a5f60606060606069768390908376696060606060605f5a52493e33271b0f0000081825313e4b5864717e8b97a7b1ab988b7e7165554b4034281d1413131624313d4a56626c71787777767574736f6a5f53473b2e211508000000000000000000000000000000000000000000000000060f18232f39434d575f616c6c6c6c6c6c6c6c6c6c5e564c41362a1e11050000000000000000000000000000000000000003090e151a1e21262b2e2f32343637383939393837373532302d2c29241f1c17110a02000000000000000000000000000000000000000000000000030a0f1215151c1e1f1f201f1e1c181413110d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171e272e34383b4246484b4e50515253535251504e4c4847433c39353028231c150c06000000000000000000000000000000000000000008131e28323a4145475050505050504e4c4841382f343c4347485050505050504c4a463f372d23180d01000000000000000000000000000000000000000000000000000000000005101b26303a42494e505353535353535353535353535353535353534e4c4841382f251a0f0300000b16212c353d44484a535353535353534a48443d352c21160b0000000000070f161b1f22232d2d2d2d2d2d2d2423211c17100800000000000000000000000000000000000000060b0f14191e20212427292b2c2c2c2b2b29272421201e19140f0b0600000000000000000000000000000000000810161c2023232d2d2d2d2d2d2d2d2d2d28333f4a545b6068686868686868605c544a4034282d2d2d2d2d2d2d2d2d2d2423211c1710080000000000000000000000030f1c28333f4a546774808d9aaab4aa9d9184776a5f53473a2f24190b0200000000000000000000000000000000030e18212f3941484d4e4f4b4745413a39353029241d150d0300000013202c3946535f6c7986929facb9a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8174675b4e4134281b0e01000013202c3946535f6c7986929facb9a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8174675b4e4134281b0e010000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000006121e2b37424d57616c707e868f949a9c9998999c99938f857d706b60564d42362a1f14080000000000000000000000000000000000000000000000000000080f171f252a31373a3c4247484b4d4f4a505b636c7079797979736e63574b3f322b2620180f09000000000000000000000000000000121e2b37434f5a646c6c6c6c6c6c6c6c7683909083766c6c6c6c6c6c6c6c645a4f43372b1e1200000815212e3b4854616e7b87959faba89b8e8175675c5145392e2521201f202935404b5565717e8584838281807f7c6f6255493c2f2216090000000000000000000000000000000000000000000000000007121d27313c454d53555f60606060606060605f524c443b3025190e0200000000000000000000000000000000000000000003090e12151a1e21222527292a2c2c2c2c2b2b2a282523201f1d1812100b0600000000000000000000000000000000000000000000000000060e151b1f2122282a2b2c2c2c2b292521201d19130d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c151c23282c30363a3b3e414344454646454543413f3c3a37312c29241e18120b03000000000000000000000000000000000000000000020c1620283035393a43434343434341403c362f262a32373b3c4343434343433f3e3a342d251b1107000000000000000000000000000000000000000000000000000000000000000a141e2830383e414346464646464646464646464646464646464641403c362f261d130800000005101a232c33383c3d464646464646463d3c38332c231a1005000000000000040a0f13151620202020202020171714110c050000000000000000000000000000000000000000000003080d111414171a1c1e1f20201f1e1d1a171414110e08030000000000000000000000000000000000000000050b101416172020202020202020201f2b3844505b666c757575757575756d665c5144382c1f202020202020202020171714110c05000000000000000000000000000b17222d3d4a5763707d8a98a2aeaca095887c6f62564c4135291d140a000000000000000000000000000000000915202a33414b53595b5c5854524c4746413a352f271f150b01000013202c3946535f6c7986929facb9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a8e8174675b4e4134281b0e01000013202c3946535f6c7986929facb9aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a8e8174675b4e4134281b0e010000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000814212e3a47535f69707e87929899938f8c8b8c90949e9792877d6f695e52463b3025190e020000000000000000000000000000000000000000000000000000050d141a1f262b2e31373a3b3e444c545c606d727e868686868073665a4d4033271a150e060000000000000000000000000000000013202d3946535f6c767979797979797979839090837979797979797979766c5f5346392d201300000714202d3a46525e697783909daaab9f9285796d60544b4036312d2c2c2d323a45515d6775818e91908f8e8d897c6f6356493c3023160900000000000000000000000000000000000000000000000000010b151f2a333c4246485253535353535353535346413b32291e14080000000000000000000000000000000000000000000000000206090e121415181a1c1e1f1f201f1f1e1d1b19161413100c0703000000000000000000000000000000000000000000000000000006101820262b2e2f3537383939393835322e2d2a251e19130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f252a2d2e3134363839393939383734322f2e2b26201d19130c07000000000000000000000000000000000000000000000000040e161e24292c2d3636363636363433302b251d20262b2e2f36363636363632312e29231b13090000000000000000000000000000000000000000000000000000000000000000030c161e262d3235363939393939393939393939393939393939393433302b251d140b010000000008111a21272c2f3039393939393939302f2c27211a110800000000000000000003070909131313131313130b0a08040000000000000000000000000000000000000000000000000000010507080b0e10111213131211100d0b080705020000000000000000000000000000000000000000000000000407090a131313131313131313202d394653606c7881828282828281796d6053463a2d201313131313131313130b0a08040000000000000000000000000000000614202d3a4753606d7985929facb1a79a8d8073685d52453b2f261b1106000000000000000000000000000006101a26313c45535d64686964605d5654524c45403931271d1207000013202c3946535f6c7986929facacacaea9a7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a69a8e8174675b4e4134281b0e01000013202c3946535f6c7986929facacacaea9a7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a69a8e8174675b4e4134281b0e010000000000000000020714202d3a4753606d7a8693a0acac9f9286796c5f5346392c2013070502000000000000000000000000000000000006121f2b37434e58626e7b869299959187827f7f80838991969992857b6e61564d41362a1e110500000000000000000000000000000000000000000000000000000002090e151a1e21262b343d454d565d666d747f87929892857b6e6154473b2e21140903000000000000000000000000000000000013202d394653606c798686868686868686909494908686868686868686796c605346392d2013000005121e2a36424d5765727f8c98a2aea2988b7e71665c5146423b3a39383a3d444d57606d7a85929e9d9c9b9285796d6053463a2d2013070000000000000000000000000000000000000000000000000000030d18212a31373a3b4546464646464646463b3936302920170d02000000000000000000000000000000000000000000000000000000020608080b0e1011121313131211100e0c0a07060400000000000000000000000000000000000000000000000000000000030e18222a31373a3c42444546464644423f3a39363029241e160e0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c10141a1e20212527292b2c2c2c2c2b2a282522211f1b15110d08020000000000000000000000000000000000000000000000000000040c13191d2021292929292929282724201a13151b1f21222929292929292525221e18110901000000000000000000000000000000000000000000000000000000000000000000040c141b212628292d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d282724201a130b020000000000000810161c2023232d2d2d2d2d2d2d2323201c161008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060606060606060713202d3a4653606d79868f8f8f8f8f867a6d6053473a2d201407060606060606060000000000000000000000000000000000000006131f2c3845515c6775828f9ba8b2ab9f92857a6d60574d41382d2217110a020000000000000000000001081018222b37424e57646f7475716d6865615e56514b43392f24180c000013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8e8174675b4e4134281b0e01000013202c3946535f6c7986929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9a8e8174675b4e4134281b0e0100000000000003090e1214202d3a4753606d7a86939f9f9f9f9286796c5f5346392c201514120e09030000000000000000000000000000000815212e3a47535f6a75828f989691837c76737273767d849197978e8174685e5246392d2014070000000000000000000000000000000000000000000000000000000000050c151d2328363e464f575f686d78818c939993877d70695e52463a2d20140700000000000000000000000000000000000013202d394653606c7986939393939393939c9f9f9c9393939393939386796c605346392d20130000020e1a25303b4754616d7a86929fa9aa9e9184796d605b534d4847454546484f565e69727f8c98a2aaa69b8e8275665c5044382c1f1206000000000000000000000000000000000000000000000000000000060f181f262b2d2e3939393939393939392e2d2a251e170e0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c4347484f5152525352514f4b4746413a35302820191108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090e121415181b1d1e1f20201f1e1d1b191515120f0a0401000000000000000000000000000000000000000000000000000000000002080d1113141d1d1d1d1d1d1b1a18140f080a0f1215151d1d1d1d1d1d191816120d07000000000000000000000000000000000000000000000000000000000000000000000000030a1015191c1d2020202020202020202020202020202020201b1a18140f08010000000000000000050b1014161720202020202020171614100b05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050a0d0f101313100f0d0a0500000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939b9b9b93867a6d6053473a2d201407000000000000000000000000000000000000000000000000000004101c2934404b5563707d8a96a1acaea2988c7f73695e53493f3327221b140b090603000001000205080d1319222a343c47535f6a7481827e7a76716d68605d554b4035291d10040013202c3946535f6c79869293939393939393939393939393939393939393939393939393939393939393939393939393939393938e8174675b4e4134281b0e01000013202c3946535f6c79869293939393939393939393939393939393939393939393939393939393939393939393939393939393938e8174675b4e4134281b0e010000000000050d141a1e21212d3a4753606d7a8693939393939286796c5f5346392d2d21211e1a140d0500000000000000000000000000000915222f3c4855626f7b88949e91847a6f6a6665666b6f7b85929e93877b6e6154473b2e21140800000000000000000000000000000000000000000000000000000000060e161e272e344048505960696e7a828e939f948c7f736b60574d42362a1e110500000000000000000000000000000000000013202d394653606c7986939f9f9f9f9f9fa9ababa99f9f9f9f9f9f9386796c605346392d20130000000914202d3946525d6874808d97a2aca0968d80746d615e575554515153555960686e7b86929faaab9f94897c6f63544a3f34281c100300000000000000000000000000000000000000000000000000000000060e141a1e21222c2d2d2d2d2d2d2d2d21201e19140d05000000000000000000000000000000000000000000000000000000000000000000000406070a0d0f11121313131212100e0c090606030000000000000000000000000000000000000000000000030f1b26313c464e53555b5d5e5f5f5f5e5c5854524c46413a322b231a1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080b0e10111213131212100e0c0908060300000000000000000000000000000000000000000000000000000000000000000000010407071010101010100e0d0b08030000030608091010101010100c0b09060100000000000000000000000000000000000000000000000000000000000000000000000000000005090d0f101313131313131313131313131313131313130e0d0b08030000000000000000000000000407090a131313131313130a090704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11161a1c1d20201d1c1a16110a030000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0a8a093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000c18232f394653606c7884919ea8b2aa9f92867b6e655b50443e332d261d1a1312100b060e090e1214191e2429343c46505a626e7b878f8b86827e7a766d675d5145392c1f13060013202c3946535f6c7987868686868686868686868686868686868686868686868686868686868686868686868686868686868686868174675b4e4134281b0e01000013202c3946535f6c7987868686868686868686868686868686868686868686868686868686868686868686868686868686868686868174675b4e4134281b0e0100000000050f171f252a2d2e393a4753606d798686868686868687796c5f53463939392e2d2a251f170f05000000000000000000000000000d192633404c5966737f8c99968a7d70685f5858596069717e8b98998b7e7165584b3e3225180b000000000000000000000000000000000000000000000000000000070f18202830394045525a616b6f7b838f949d968f82776c60594f453b30251a0e0200000000000000000000000000000000000013202d394653606c7986939facacacacacb6b7b7b6acacacacac9f9386796c605346392d201300000005111d2935414c56616d7a85929fa5a89d928c7f756e696461605d5c6062656b6f7a839198a2aea3999083766b605442382e23170c00000000000000000000000000000000000000000000000000000000000003090e1214151f20202020202020201414110e0802000000000000000000000000000000000000000000000000000000000000000001070c10131416191c1d1f1f20201f1e1d1b191613120f0b0600000000000000000000000000000000000000000006121f2b37434e585f62686a6b6c6c6c6b6865615e56524c443d352c241a110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d151c2226292a2d2d2a2926221c150d0400000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d798693a0aca093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000007121f2b3844505b66727f8b96a1acaea2988f82776c605a50443f382f2b26201f1c171b1a1b1a1e2124292f353e464e58626c75828f9999928f8b8682796d6053473a2d20140700121f2c3845525e6a757979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746f64594c4033271a0d010000121f2c3845525e6a757979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746f64594c4033271a0d01000000030d17212931363a3b464645515c67767979797979797979756a5e52464646463b3a36312921170d030000000000000000000000020f1c2935424f5c6875828f9b9184786b61564e4c4f57606d7a86929a8e8174675b4e4134281b0e0100000000000000000000000000000000000000000000000000071019212a323a434b515b636c717d8591959f9991847a6d655b50473d33291f14090000000000000000000000000000000000000013202d394653606c7986939facb9b9b9b9c3c4c4c3b9b9b9b9ac9f9386796c605346392d2013000000010d1924303a46525e68727e8b939ea7a49c918c827b75716e6d67666d6f71767d849195a0aaa69f92877c6f63594f4330261c1106000000000000000000000000000000000000000000000000000000000000000002050708121313131313131313080705020000000000000000000000000000000000000000000000000000000000000000040a0f12181c1f202326282a2b2c2c2c2c2b2a282523201f1c17110f0a030000000000000000000000000000000000000815212e3a47535f6a6f7577787979797775726d68615d564f473e362c231a1006000000000000000000000000000000000000000000000000000000000000000000000000000000020507080b0e111112131312110f0c0908060300000000000000000406070b0f1213131211100e0c0b09060100000000000000000000000000000000000000000000000000020507080b0d0f1112131313131211100e0b08080602000000000000000000000000000000000000000000000000000000000000000000050a0d0f101313100f0d0a0500000000000000000000000000000000000000000000000000000000050a0d0f101313100f0d0a050000000000000000000000000000000000000000000000000000000000050a0d0f101313100f0d0a0500000000000000000000000000000000000000000000000000030d161f272d32353639393635322d271f160d03000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986939f9f9f93867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000030f1c28333f4a54606d7984919ea6b0aa9e948c7f726c615a5049413c37312d2b2823272728252a2d2f353a41454f585f6a717e8b939ea39f9c998f8275675d5145392c1f130600111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645d53483c3024180b000000111d2a36424e59636a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c67645d53483c3024180b0000000009141f29333b4246485353534b555c6c6c6c6c6c6c6c6c6c6a635953535353534846423b33291f1409000000000000000000000004101d2a3743505d6a7683909c8f827669594f443f45515d677784919c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000000040f19222b333c444c555c606d737e869297a09f92877c6f685d53493f352b20170d020000000000000000000000000000000000000013202d394653606c7986939facb9c6c6c6cfd0d0cfc6c6c6b9ac9f9386796c605346392d20130000000008131e2a36414c56626d75818e959fa6a49c948f86827e7b7a7979797b7e83899196a0a7a59e948c7f736b6054473d321e150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161b1d23292c2d303335373839393939383635322f2d2b28221c1b150e0903000000000000000000000000000000000915222f3c4855626f7c81848585868584827e7a746d68605950483e352c22180d0300000000000000000000000000000000000000000000000000000000000000000000000003090e121415181b1d1e1f201f1f1d1b191515120f0a0401000000070c101313181c1e1f201f1e1d1b181815120d060000000000000000000000000000000000000000000205090e121415181a1c1e1f1f20201f1f1e1c1a181514120e09060300000000000000000000000000000000000000000000000000000000030a11161a1c1d20201d1c1a16110a03000000000000000000000000000000000000000000000000030a11161a1c1d20201d1c1a16110a0300000000000000000000000000000000000000000000000000030a11161a1c1d20201d1c1a16110a0300000000000000000000000000000000000000000000000a151f2831383e4243464643423e3831281f150a000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79869393939393867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000b17222d3845515c67717e8b949ea9b0a69f92877e716c605b534d47423c3a38342e34343531363a3b41454c5159616a6f7c86929fa5aea99f93877c6f62554b4035291d1004000e1a26313d4751595e5f606060606060606060606060606060606060606060606060606060606060606060606060606060606060605b59534a41362b2014080000000e1a26313d4751595e5f606060606060606060606060606060606060606060606060606060606060606060606060606060606060605b59534a41362b201408000000020e1a25313b454d535f6060606060605d606060606060605f5e5c6060606060605f534d453b31251a0e020000000000000000000004101d2a3743505d6a7683909c8f827669594f454045515d677784909c8f8275695c4f4236291c0f030000000000000000000000000000000000000000000000000a16212b343d454d565e676d757f8a9298a19e938b7f726a60564c41382d23190e05000000000000000000000000000000000000000013202d394653606c7986939facb9c6d2d2dcdddddcd2d2c6b9ac9f9386796c605346392d201300000000020d1925303a44515b606d798390949da5a69e98928f8b8887858586888b90949ea1a8a39f938e82786d60594f43352b210c0300000000000000000000000000000000000000000000000000010406070a0d0f11121313131212100f0d0a070704010000000000000000000000000000000000000000000000000000000000000000060b151b21272c2f34383a3d40424445464646454543413f3c3938332d2b26201a150b060000000000000000000000000000000a1724313d4a5764707d8a9091929292918f8b86807a706b615a50473e342a1f150b01000000000000000000000000000000000000000000000000000000000000000000040a0f141a1e212125282a2b2c2c2c2b2a282622211f1b15110d08030b12181c1f2025292b2c2c2c2b2a272524221d18110901000000000000000000000000000000000003090e12141a1e21212527292a2b2c2c2c2c2c2a29272522211e1a15120f0a0400000000000000000000000000000000000000000000000000040d151c2226292a2d2d2a2926221c150d0400000000000000000000000000000000000000000000040d151c2226292a2d2d2a2926221c150d040000000000000000000000000000000000000000000000040d151c2226292a2d2d2a2926221c150d0400000000000000000000000000000000000000000005111c27313a434a4e505353504e4a433a31271c11050000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7886868686868686796d6053473a2d2014070000000000000000000000000000000000000000000000000000000006111c2834404b55616c75828f97a2abafa39992877e726c655f57534d4946443f41414141424246484c52555d606b707c859298a2aeada2978f82756a5f5343392f24180c00000915202b353f474e52535353535353535353535353535353535353534d545b60666c6c6c6c6c6a5c544a53535353535353535353534e4c4841382f251a0f030000000915202b353f474e52535353535353534d575e6c6c6c6c6c6c6c6a665f55535353545e66696c6c6c6c6c6c6c5e574d5353535353534e4c4841382f251a0f0300000005121e2a36424d575e6c6c6c6c6c6c6c6a665f55535353545e66696c6c6c6c6c6c6c5e574d42362a1e120500000000000000000000020f1c2935424f5c6875828f9b9184786b61574f4d5058606d7a86929a8e8174675b4e4134281b0e010000000000000000000000000000000000000000000000030f1b27323d464e575f686d79818c929fa3a0958e81756d62584e443a2f261b110800000000000000000000000000000000000000000013202d394653606c7986939facb9c6d2dfe9eaeae9dfd2c6b9ac9f9386796c605346392d2013000000000008131e28323f45515d676d7a828e939da0a7a39f9b97949892929895989c9fa6a7a099928d81786d665c50463d3223190f00000000000000000000000000000000000000000000000004080d111314171a1c1d1f1f20201f1f1d1c1a171413110d080400000000000000000000000000000000000000000000000000000000020a111720262b323839404547494c4f50525253535251504e4c4946443f3837312b262017110a02000000000000000000000000000a1724313d4a5764707d8a979e9f9f9f9e9b98928d847d716c61594f463c31271d12070000000000000000000000000000000000000000000000000000000000000000060c161b1f252a2d2e31343738393939383735322f2e2b26201d19130c151d23282c2d32353839393838363432312e29231b130900000000000000000000000000000003090e141a1e21252a2d2e31343637383939393938373634322f2e2b26211f1b150f0a0400000000000000000000000000000000000000000000030d161f272d32353639393635322d271f160d030000000000000000000000000000000000000000030d161f272d32353639393635322d271f160d03000000000000000000000000000000000000000000030d161f272d32353639393635322d271f160d0300000000000000000000000000000000000000000a16222d38434c545a5d60605d5a544c43382d22160a00000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c66767979797979797976675c5145382c1f130600000000000000000000000000000000000000000000000000000000000c18232e3943505a616e7b859299a3afaba39992877f776e69615f575553504a4e4e4d4e4f4d5354565d60676d747d859297a1aaaea49e92857b6e61584e4331271d12070000040f19242d353d424546464646464646464646464646464646424651575f666c72797979797975665c50444646464646464646464641403c362f261d130800000000040f19242d353d424546464646464646535e69767979797979797771665b4f464e5a66707679797979797976695e5346464646464641403c362f261d1308000000000714212d3a46535e69767979797979797771665b4f464e5a66707679797979797976695e53463a2d21140700000000000000000000000d192633404c5966737f8c99968a7d706960595a5a616a727e8b98998b7e7265584b3f3225180c00000000000000000000000000000000000000000000000007131f2c38434e5860696e7a828e939ca4a2989183796d605b51463d32281d140a0000000000000000000000000000000000000000000013202d394653606c7986939facb9c6d2dfecf6f6ecdfd2c6b9ac9f9386796c605346392d20130000000000020c16202935404b555d686d78818991959c9fa3aba4aaa29f9fa2aaa4aba49f9c95908780786d665c544a3f342b21100700000000000000000000000000000000000000000000070c1013191d20212426292a2b2c2c2c2c2b2a28262421201d1913100c0701000000000000000000000000000000000000000000000000040b141c222832373d43484b515356595b5d5e5f5f5f5f5e5d5b585653504a47433c373127221b140b030000000000000000000000000a1724313d4a5764707d8a979e9ea2a9a9aaa39f9691877e716b61584e43392f23180c030000000000000000000000000000000000000000000000000000000000030a111720272b31363a3b3e4144444546464544423f3c3b37322c29241e191e272e34383a3e42454646454443413f3d3a342d251b110600000000000000000000000000060b151a1f262a2d31363a3b3e4042444546464646454443413e3b3a37312e2b26201b150c070000000000000000000000000000000000000000000a151f2831383e4243464643423e3831281f150a00000000000000000000000000000000000000000a151f2831383e4243464643423e3831281f150a0000000000000000000000000000000000000000000a151f2831383e4243464643423e3831281f150a00000000000000000000000000000000000000010d1a26323e4a545e66696c6c69665e544a3e32261a0d01000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c5c554b4034291c1004000000000000000000000000000000000000000000000000000000000007121d27303e46525e69707d87929fa4acaba399938c827b746e696562605c545b5a5a5b5c575e6164686d737a808a9297a1a9afa59d928a7e70695e52463c321f150b0100000008121b242b31363839393939393939393939393930353e444d525b62696e787f8686868687796d6053463a3939393939393939393433302b251d140b01000000000008121b242b31363839393939393b4854616e7b86868686868683776a5d50444f5c6976828686868686867b6e6154483b393939393433302b251d140b01000000000815212e3b4854616e7b86868686868683776a5d50444f5c6976828686868686867b6e6154483b2e21150800000000000000000000000916222f3c4955626f7c88949e91847b706b6766676c717c85929f93877b6e6154473b2e2114080000000000000000000000000000000000000000000000000915222e3b4854606a6f7b8490949ea5a49f92867c6e675d51493f342b20160b020000000000000000000000000000000000000000000013202d394653606c7986939facb9c6d2dfececececdfd2c6b9ac9f9386796c605346392d2013000000000000050e18242f3a434c565d666d747d848a8f92999a9c9e9e9f9f9e9d9c9a99938f8a837c736c665c544a42382e22190f000000000000000000000000000000000000000000060b12181c1f24292c2d31333537383939393938373533302d2c29241f1c18120c0700000000000000000000000000000000000000000000040d161d262d333c43474f54555c606366686a6b6c6c6c6c6b69686562605b54534e47423c332d261d150d0300000000000000000000000a1724313d4a5764707d8a92919297979c9fa6a9a19992877d706a5f554b4034291f140900000000000000000000000000000000000000000000000000000000030c151c232832373b4246484b4e505152535252504e4c4847433c39352f28222b30394045464b4f5152535251504e4b4a463f372d23180d0100000000000000000000020a11171f262b31363a3b4246484b4d4f51525253535252514f4d4b4847423c3a37312b262018120b0300000000000000000000000000000000000005111c27313a434a4e505353504e4a433a31271c110500000000000000000000000000000000000005111c27313a434a4e505353504e4a433a31271c11050000000000000000000000000000000000000005111c27313a434a4e505353504e4a433a31271c1105000000000000000000000000000000000000030f1c2935424e5a66707679797670665a4e4235291c0f030000000000000000000000000000000000000000000000000000000000000000000000000c17232e38424a505f606060606060605f514b43392f23180c000000000000000000000000000000000000000000000000000000000000000b151e2a36424d56606b717f8b939aa3ababa49f948f86817b76726f6d6668686767686869696e71757a7f858d929ea2a9afa59e938d80746c61574d42342a200d03000000000009121920262a2c2c2d2d2d2d2d2d2d2d2429323a414650565e616d727b828c929992877e71665c5044382b2d2d2d2d2d2d2d2d282724201a130b020000000000000009121920262a2c2c2d2d2d2e3b4854616e7b87939393939083776a5d50444f5c6976828f93939393877b6e6154483b2e2d2d2d282724201a130b0200000000000815212e3b4854616e7b87939393939083776a5d50444f5c6976828f93939393877b6e6154483b2e21150800000000000000000000000815212e3b47535f6a76828f989691847d77747374777e859297978e8174695e52463a2d2014070000000000000000000000000000000000000000000000000916232f3c4956626f7c85919693939393928a7e716a5f554b40372d22190e04000000000000000000000000000000000000000000000013202d394653606c7986939facb9c6d2dfdfdfdfdfdfd2c6b9ac9f9386796c605346392d20130000000000000007131d28313a444c545c606b70787e82868a8d8f9192929291918f8d8a86827d786f6a605b544a423930261c100700000000000000000000000000000000000000020a11171c23282c2f35393a3d4042444546464645454342403d3a39352f2c29231d18120b0300000000000000000000000000000000000000030c161f282f383f444e54596063676d707375777879797978787674726f6c66625f58534d443f382f271f150d03000000000000000000000a1724313d4a5764707d87858585868a8f949fa2aaa39992867c6f675c51453b31261a0e030000000000000000000000000000000000000000000000000000030d151e262e343d43474d5354585b5d5e5f5f5f5e5d5b5955534e4745413a3129343c424b5153585c5e5f5f5f5e5d5a585651493f34291d1206000000000000000000040c141c232831373b4246484d5354585a5c5d5e5f5f5f5f5f5d5c5a5855534d4847433c373228231d150c0500000000000000000000000000000000000a16222d38434c545a5d60605d5a544c43382d22160a0000000000000000000000000000000000000a16222d38434c545a5d60605d5a544c43382d22160a000000000000000000000000000000000000000a16222d38434c545a5d60605d5a544c43382d22160a00000000000000000000000000000000000003101d2a3643505d69768286868276695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000000000006111c2630383f4453535353535353535345403931271d120700000000000000000000000000000000000000000000000000000000000000030c1925303b444f59626d727f889299a1a8afa69f99928e88837f7c797775747474747576787b7e82868c92979da4adaba39f938e81786d605a50453b3022180e00000000000000080f151a1d1f202020202020191f282f353e444c525a61696e767f8690949a93877e716c61544a3f34281c202020202020201b1a18140f0801000000000000000000080f151a1d1f202020212e3b4854616e7b87949f9f9d9083776a5d50444f5c6976828f9c9f9f94877b6e6154483b2e2120201b1a18140f08010000000000000815212e3b4854616e7b87949f9f9d9083776a5d50444f5c6976828f9c9f9f94877b6e6154483b2e211508000000000000000000000006131f2b37434e58626f7c86929a96918984818081848a92979892857a6e61564d42362a1e11050000000000000000000000000000000000000000000000000d1a2633404d59667380868686868686868680746c61574e43392f251b100700000000000000000000000000000000000000000000000013202d394653606c7986939facb9c6d2d2d2d2d2d2d2d2c6b9ac9f9386796c605346392d201300000000000000010c161f28323a424b515960666c71767a7d808284858686858483807d7a75706c666058504a423930271e140a00000000000000000000000000000000000000050b141c22282e34383a4145474a4d4f50525253535252504f4d4a4745413a38342f28231d150c070000000000000000000000000000000000000b151e283139424a50585f626b6f75797d7f828385858686858483817f7c79746f6a625f575049413931271f150b010000000000000000000714202d3a4753606d79797878787a7d828a9298a1a9a2989083796d60574d42362a20150a00000000000000000000000000000000000000000000000000010b151f2730383f444e54575e6164676a6b6c6c6c6b6a6865625f5854524c433f353c464e545c6065686b6c6c6b6b696765625b51463a2e2215090000000000000000050e161e262e343c42474d5355575e616467696a6b6c6c6c6c6b6a696765625f5755534e47433c342e271e170e05000000000000000000000000000000010d1a26323e4a545e66696c6c69665e544a3e32261a0d0100000000000000000000000000000000010d1a26323e4a545e66696c6c69665e544a3e32261a0d010000000000000000000000000000000000010d1a26323e4a545e66696c6c69665e544a3e32261a0d01000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000000000000000000000000000000000000000a151e262e343846464646464646464638342f271f150b01000000000000000000000000000000000000000000000000000000000000000009141f29323d47505a626d727e8791969ea5acaba39f9a95908c8885848281818081828385878b8f92989fa2a9ada8a099928d81786d665c50483e33291f1006000000000000000004090e1112131313130f19222b313a41454f565e616c717b828b92989a93887e716c615a5042382e23170b1313131313130e0d0b080300000000000000000000000004090e1112131315212e3b4854616e7b8794a1aa9d9083776a5d50444f5c6976828f9ca9a194877b6e6154483b2e2115130e0d0b080300000000000000000815212e3b4854616e7b8794a1aa9d9083776a5d50444f5c6976828f9ca9a194877b6e6154483b2e2115080000000000000000000000030f1b26323c47535f6a717e8892989e95908d8d8e91969e9792867d6f685e52443b3025190e020000000000000000000000000000000000000000000000000c1925323f4b57636d737979797979797979746e645a50453c31281d12090000000000000000000000000000000000000000000000000013202d394653606c7986939facb9c6c6c6c6c6c6c6c6c6c6b9ac9f9386796c605346392d20130000000000000000040d162028303940454f545b6064686e7174767778797978777673716e6863605b544e443f382f271e150c02000000000000000000000000000000000000070f171d262d33394044464c525457595c5d5e5f5f5f5f5e5d5b595754524c47454039342e271e1810090000000000000000000000000000000007121d273039434b545b606a6f767c8185898c8e90919292929291908e8b8985817c756e69605b534b433931271d120700000000000000000006131f2c3845515c676d6d676b676d70767e869297a1aaa0958c8073695f53463c31261a0f0300000000000000000000000000000000000000000000000007121d273139424a50586062696e71747777787979787775726f6a66605d56504540454e5860666d717578797978777674726d62564a3d3124180b00000000000000050e17202830383f444d53575f6166696e71737577787979797978777674716e6967625f58544e454039302920170e050000000000000000000000000000030f1c2935424e5a66707679797670665a4e4235291c0f0300000000000000000000000000000000030f1c2935424e5a66707679797670665a4e4235291c0f030000000000000000000000000000000000030f1c2935424e5a66707679797670665a4e4235291c0f03000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000000000000030c151c23282c3939393939393939392c29231d150d03000000000000000000000000000000000000000000000000000000000000000000020d17202b353f48515b626c717d848e939da0a7abaca79f9d989892908f8e8d8d8e8f909298979c9fa3aaada9a29f96918780786c665c544a3f362c21170d00000000000000000000000104060606000a16212b343d434b515961686d757e858f949f9f93887f716c625a50483e30261c110600060606060601010000000000000000000000000000000000010406060815212e3b4854616e7b8794a1a99d9083776a5d50444f5c6976828f9ca9a194877b6e6154483b2e211508010100000000000000000000000815212e3b4854616e7b8794a1a99d9083776a5d50444f5c6976828f9ca9a194877b6e6154483b2e2115080000000000000000000000000a15202b37434e58616c717e868f949a9d9a999a9d99938f857d706b60564d4132291f1409000000000000000000000000000000000000000000000000000a16232f3b47525b63666c6c6c6c6c6c6c6c67645c52483e332a1f160c000000000000000000000000000000000000000000000000000013202d394653606c7986939facb9b9b9b9b9b9b9b9b9b9b9b9ac9f9386796c605346392d2013000000000000000000040d161e272e343d424a5053565e616467696b6b6c6c6b6a696764615e5653504a423c332d261d150c0300000000000000000000000000000000000007101921292f383f444a5153565d606466686a6b6c6c6c6c6b6a686663605d5653514b454039302a221a12090000000000000000000000000000040d18232e39434b555d666c737c83898e9298999b9d9e9f9f9f9f9e9c9b9897918d88827b736c655d554b43392f24180e05000000000000000004101c2934404b555c60605c555d60646c717c859298a3a79f92867b6e61584e43372b1f14090000000000000000000000000000000000000000000000020c18242f39434b545c606a6f757b7e8183848586858583817f7c78726d68625a514b4d57606a6f797e82848586858483817f7265584b3f3225180c000000000000030c172029323a424a50575f62696e73777b7e8082848585868685858482807e7b78736f6a625f58514b423a322920170c030000000000000000000000000003101d2a3643505d69768286868276695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768286868276695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768286868276695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000000000000000000000000000000000000030a11171c1f2d2d2d2d2d2d2d2d2d1f1c18120b030000000000000000000000000000000000000000000000000000000000000000000000050e19232d363f49515a626b6f7a818990959c9fa6a9aca9aaa29f9d9b9b9a9a9b9b9c9fa2aaa8acaaa9a19e97928c847c736c665b544a42382e241a0f0500000000000000000000000000000000030f1b27323d464e555d606b707a818a92979f9b918b7f726d625a50483e362c1e140a0000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87949c9c9c9083776a5d50444f5c6976828f9c9c9c94877b6e6154483b2e211508000000000000000000000000000815212e3b4854616e7b87949c9c9c9083776a5d50444f5c6976828f9c9c9c94877b6e6154483b2e211508000000000000000000000000040f1b26313c46505a616c717c82898d90929291908d88827b706b60594f443b3020170d020000000000000000000000000000000000000000000000000007131e2a35404952575960606060606060605a58524a40362c21180d04000000000000000000000000000000000000000000000000000013202d394653606c7986939facacacacacacacacacacacacacac9f9386796c605346392d201300000000000000000000040c151d23282f383f44464c5254575a5c5e5f5f5f5e5e5c5a5754524c46443f382f28221c140b03000000000000000000000000000000000000071119222b333b424a50545c6064686d70737577787979797878767573706d6864605c55514b423c342c241b1209000000000000000000000000010c161f2834404b555d676d78808790949b9fa2a9a29e9c9b9a9a9b9d9fa3a9a19e9a948f877f776d675d554b40352920170d0200000000000000000c18232f39434b515353514b51535a616a6f7c86929fa7a3988e81756a5f53473b30251a0e01000000000000000000000000000000000000000000000a141e2935404b555d666d747c82878b8e909192929291908e8c88847f7a716d605d55535f696f7c848b8f9192929291908d86796c605346392d20130000000000000b151e29323a444c545c60696e757b8084878b8d8f90919292929292908f8d8b8884807c766f6a605c544c443b32291e150b0000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000000000000000000060c101220202020202020202013100c07010000000000000000000000000000000000000000000000000000000000000000000000000008111b242d373f48505960686d757d83898f94989c9fa3aba7a8aaa8a7a7a7a7a8a9a9a7a5a8a09e9a97918c8580796f6b605b544a423830261c1108000000000000000000000000000000000007131f2c38434e5860676d747d858e939fa29b918b7f726d625a50483f362d241a0c020000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b878f8f8f8f8f83776a5d50444f5c6976828f8f8f8f8f877b6e6154483b2e211508000000000000000000000000000815212e3b4854616e7b878f8f8f8f8f83776a5d50444f5c6976828f8f8f8f8f877b6e6154483b2e211508000000000000000000000000000a15202a343e48505a616a6f767c808385868583807c756e6960594f473d32291f0e050000000000000000000000000000000000000000000000000000020d19242e3740474b4d53535353535353534d4c4740382f241a0f0600000000000000000000000000000000000000000000000000000013202d394653606c7986939f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9386796c605346392d20130000000000000000000000030b12181d262d33383b4146474a4d4f515253535251504d4a4746413b38332d261d17110a02000000000000000000000000000000000000060f19232b343d454d545b60666d71767a7d8082838585868685858382807d7a76716d67605c544e463e362d241b1108000000000000000000000008131e28313a45515c676d79828d92999fa6a39f9a97928f8e8d8e8e9092989b9fa3a69e99928c82796d675d51453f32291e1408000000000000000007121d27313940454747454045475058606a727f8c959faa9f93877c6f62574d42362a1d120700000000000000000000000000000000000000000006111c26303845515d676d7880898f93999a9d9e9f9f9f9e9d9b9896918c857e756d675d58626e7b8691969b9e9f9f9e9e9c9386796c605346392d2013000000000007121d27303a444c565d666d737b81878c9196979a9c9d9e9f9f9f9f9e9d9c9a9896918d88827c746d665e564c443b30271d120700000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000000000000000000000003061313131313131313130604000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b252d363f474f565e616b70787d82878b909299989a9c9d9e9f9f9f9e9e9d9c9b999696918d89857f7a736d676059504a42382f261e140a0000000000000000000000000000000000000915222e3b4854606a6f79818a91979ea39c918c7f726d625b51483f362d241b1208000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8283838383828074675a4e414d5a6673808283838383827a6e6154473b2e211408000000000000000000000000000814212e3b4754616e7a8283838383828074675a4e414d5a6673808283838383827a6e6154473b2e21140800000000000000000000000000030e18222c363e4850585f626b6f737778797876736f6a615e574f473d342b20170d0000000000000000000000000000000000000000000000000000000007121c252e353b3f404646464646464646413f3c362f261d12080000000000000000000000000000000000000000000000000000000013202d394653606c798693939393939393939393939393939393939386796c605346392d201300000000000000000000000000070b141c22282b3036393b3e414344454646454443403e3b3936302b28221c140b0600000000000000000000000000000000000000030c18212b353d464f575e666c71797e82868a8c8f90919292929291908e8c8a86837e79726d665f5850483f362d231a0e05000000000000000000010d19242f3a43505a606d79828f949fa3a7a099928e898583818181828386898e92999fa7a39f948f82796d605b51443b3025190e0200000000000000010b151f272f34383a3a3835393e464e58606c7883909da6a49a8e8175695e5246392f23180c0000000000000000000000000000000000000000000b17232e3842505a606d79828d929b9fa4ababa39f9d9c9b9c9d9fa19e97928b82796d685f6a76828f98a1a8aaa39f9995949386796c605346392d201300000000000c18232e39434c565e686d7880868e93999da0a8aba39f9d9d9c9c9c9d9fa2aaa8a19e9a948f8780786d685e564c42392e23180c03000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b242d353d444c525960656c70767b7f8386898b8d8f9091929292929190908e8c8a8784807c79726d67605d554f443f382f261d140c020000000000000000000000000000000000000916232f3c4956626f7c848e9393939393918c7f726d625b51493f362d241b120900000000000000000000000000000000000000000000000000000000000000000714202d3946525e686e767676767676746e64584c404b58636e737676767676766e685e5246392d201407000000000000000000000000000714202d3946525e686e767676767676746e64584c404b58636e737676767676766e685e5246392d201407000000000000000000000000000006101a242c363e464e53596063676a6b6c6b6a66625f58534d453d352b22190e0500000000000000000000000000000000000000000000000000000000000a131c242a2f323339393939393939393433302b241d140b000000000000000000000000000000000000000000000000000000000013202d394653606c798686868686868686868686868686868686868686796c605346392d20130000000000000000000000000000020a11171c1f252a2d2e3134363838393938373634312e2d2a251f1c17110a0200000000000000000000000000000000000000000a151e2a333d474f5960696e787e848a8f9299999b9d9e9f9f9f9f9e9d9b9999928f8b857f796f6a615a50483f352b20170d02000000000000000004111d2935414c56616c74818e949ea6a69f959087817c79767474747577797d818790959ea5a69e948e81756d62564c41362a1e14080000000000000000030d151d23292c2d2d2c292c343d44505b666f7c89949eac9f92877b6e61554b4034291c10040000000000000000000000000000000000000003101c28343f4a54616c74818e949da4aca7a09d9992908f8f8f9192999a9e9f948f837a6d666f7c88949faaaea398928c88878886796c605346392d20130000000004101c2834404b555e686d7a828c92999fa4a9a19e99999291908f8f90909298989da0a8a69e99928d837a6e685e544b40342820150a000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000000010406070a0d10111213131211100d0a070604000000000305050606060606060000000000000000000000000000000000000000000000000000000000000000000000000000000000000109121b232b323a41464f535b6063696e7276797c7f8182848585868685848483817f7d7b7773706d66605d55514b433d332d261d140b02000000000000000000000000000000000000010e1b2734414e5a67748186868686868686867f736d635b51493f372d241b120900000000000000000000000000000000000000000000000000000000000000000005111e2a36414c565e6169696969696967645c52473c47525c6366696969696969615e564c41362a1e11050000000000000000000000000005111e2a36414c565e6169696969696967645c52473c47525c6366696969696969615e564c41362a1e110500000000000000000000000000000008121a242c343c43474f54565a5d5f5f5e5d5a55534e46423b332b23191007000000000000000000000000000000000000000000000000000000000000010a12191e2325262d2d2d2d2d2d2d2d2726241f19130b02000000000000000000000000000000000000000000000000000000000013202d3946535f6c767979797979797979797979797979797979797979766c5f5346392d201300000000000000000000000000000000060b0f14191e20212427292b2c2c2c2b2b29272421201e19140f0b0600000000000000000000000000000000000000000006111c26303c454f59606b6f7b828b91969c9fa3a9a19e9c9b9a9b9c9d9fa2aaa39f9c97928c847c716c625a50473d32291e130800000000000000000613202c3945525d68717e8a939da6a89f948f837c746f6c6668676768666d70757c838f939ea7a69e938b7f72685e52463b3025190d010000000000000000030b12181c1f20201f1d2228333f4a54606b75828f9ca8a3998d8073675c5145382c1f14090000000000000000000000000000000000000006121f2b3844505c66717e8b939ea6aea59d95908a86838282838486898d92979f959083786d73808d99a6b0a89f9286807c7a7b7d7063574a3d3024170a000000020d17202c3845515c676d7a838f949fa3aaa29f97918c898684838282838485888b91969ea1a9a39f9590837a6e665c51453c31261a0f020000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000001080d111314171a1d1e1f1f201f1e1c1a171413100c07010c0f11121313131313130909070300000000000000000000000000000000000000000000000000000000000000000000000000000000091019202830363d41495053575e6165676d6f7274757778787979787877767472706e696763605c54514c45403a3128221c140b0200000000000000000000000000000000000000010d1a2733404c58646e747979797979797979736d635b51493f372d251b120900000000000000000000000000000000000000000000000000000000000000000000010d1925303b444c52545c5c5c5c5c5c5a58524a4136404a52585a5c5c5c5c5c5c54524c443b3025190d0100000000000000000000000000010d1925303b444c52545c5c5c5c5c5c5a58524a4136404a52585a5c5c5c5c5c5c54524c443b3025190d010000000000000000000000000000000008121a222a31373d4348494d50525352504d4947433c36312921191107000000000000000000000000000000000000000000000000000000000000000000070d1316191a20202020202020201a1a17130e0801000000000000000000000000000000000000000000000000000000000000121e2b37434f5a646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e1200000000000000000000000000000000000003080d111414171a1c1e1f20201f1e1d1a171414110e080300000000000000000000000000000000000000000000000c17232e38424d57606b707d8590949ea1a8a29e9997918f8e8e8e8f909298999ea2a9a19e9691867e716c62594f443a3025190d0400000000000004111d2935414c55606d7a85929ea5aca0968f82796e6a62605b545a5b545c60636a6e78818f959faba59f92857a6e61564c41362a1e110500000000000000000001070c10131414131017222d38424f5963707d8995a0ab9e9285796d6053473b31261a0e000000000000000000000000000000000000000713202d3a4653606d7884919ea5afa69d938e837d797776757677797c80858c9298958e81747683909ca9aca0958a7e736f6e6e706b6155483c2f23160900000009141f2b37434e58606d798390959fa6a8a098928b85807c79777675757677797c7f848a92979fa7a79f959083786d60584e43372b1e13080000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000003090e13191d20212427292b2b2c2c2c2b292724201f1c18120e181c1e1f2020202020201615130f0a04000000000000000000000000000000000000000000000000000000000000000000000000000000070e161e252a2f383f44464d5354555c60636567696a6b6c6c6c6b6b6a69686663615e575653504a45413a352f281f17110a020000000000000000000000000000000000000000000b1824303c48535c64676c6c6c6c6c6c6c6c66635b51493f372d251b130900000000000000000000000000000000000000000000000000000000000000000000000008141e29323b4146475050505050504e4c4741382f3840474b4d5050505050504746413b32291e140800000000000000000000000000000008141e29323b4146475050505050504e4c4741382f3840474b4d5050505050504746413b32291e140800000000000000000000000000000000000008101820262b32383b3c404445464543403c3b37322a251f170f07000000000000000000000000000000000000000000000000000000000000000000000002070a0c0d13131313131313130e0d0b070300000000000000000000000000000000000000000000000000000000000000000f1b27333e49525a5f60606060606060606060606060606060606060605f5a52493e33271b0f0000000000000000000000000000000000000000010507080b0e10111213131211100d0b0807050200000000000000000000000000000000000000000000000003101c28343f4a545f69707d8692979fa6a49d97928c888583828181828385898c92979fa3a8a09892887e716b60564c41362a20150a0000000000000613202c3945515d6773808d97a1ada69e91847a6d675f5853504a4e4e4b5153585f666d79839099a3ada2978d8174685e5246392d201409000000000000000000000000040607070606111c262f3d4854606b7784919daba2978a7e7164574d42362a1b11060000000000000000000000000000000000000b1824313e4b5764717e8a96a0acac9f948e8179716d67696869676d70747a7f869095938a7e7885929fabaa9d9184776c6261616361594f44382c2014070000020e1925303a47535f6a73808d959fa7aaa09691867f79736f6d676a696969666d6f72787d8590959fa9a79f958d80736a5f53473a3025190d0100000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000060e141a1e24292c2d3033363738393939383634302d2c29231d1a24282b2c2d2d2d2d2d2d23221f1b160f07000000000000000000000000000000000000000000000000000000000000000000000000000000050c13191d262d33373b4246484b515356585a5c5d5e5f5f5f5f5e5d5d5b595754534d4946443f38352f29241d160d0600000000000000000000000000000000000000000000000814202b36414a53585a60606060606060605957514940372e251b130900000000000000000000000000000000000000000000000000000000000000000000000000020d1720293036393b43434343434341403c362f262e353b3f404343434343433b3936302920170d02000000000000000000000000000000020d1720293036393b43434343434341403c362f262e353b3f404343434343433b3936302920170d0200000000000000000000000000000000000000060e151b21272c2f30343738393837332f2e2b26201a140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16212c3740494f535353535353535353535353535353535353535353534f4940372c21160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c666e7b859298a2a9a49f928d857f7c78767574747576797c80858c9299a2aaa39a92877d70685e52463c32261b0f0200000000000714212d3a4754606d7a85929fa9aa9e94897d70685d554e46443f41414045464e545c676f7c87929faca99f92867a6e6154473c31261a0e0200000000000000000000000000000000000a141d2c38444f5965727f8c99a3a99c8f8276695f5346382d22170b000000000000000000000000000000000005121e2a36424d576875818e9ba8afa49a8f82786d66605d555c555c6063676d727b838f9391857b8797a2ada79a8d8074675a545557554f473e33281c1004000005111e2a36424d56626f7c87929fa7aea29891847c726d6763605c555c5c545c6062656c707a839097a1ada79f92877c6f62564c41362a1e110500000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000070f181f262a2f35393a3d404344454646454443403d3a38342f2a252f3437383939393939392f2e2c272119100700000000000000000000000000000000000000000000000000000000000000000000000000000002080b141b22272b31363a3b404547494c4e4f5152525353525151504e4c4a4846423d3a38342e29241e18130c04000000000000000000000000000000000000000000000000030f1a252f3841484c4e53535353535353534c4b4640372e251c1309010000000000000000000000000000000000000000000000000000000000000000000000000000050e171e252a2d2e3636363636363433302b241d242a2f32333636363636362e2d2a251e170e050000000000000000000000000000000000050e171e252a2d2e3636363636363433302b241d242a2f32333636363636362e2d2a251e170e05000000000000000000000000000000000000000000040a0f161b1f2223272a2c2c2b2a2722211f1b150e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005080a0b13131313131313090806030000000000000005101b252e373e4346464646464646464646464646464646464646464646433e372e251b10050000000000000000000000030613131313131313130d0c0a07020000000000000000000000000003060809131313131313130b0b090501000000000000000004111d2935414c56606d78839097a2aaa49a938b807a736f6a6968676869666d6f737a80879298a2aba39992857a6d61584e43372b1e14080000000005111e2a36424d5765727f8b98a2aea99c8f82756b60564c433c38332d2e34383c424b555f6a74818e9ba8aea3988c7f7266574d42372b1e12050000000000000000000000000000000000020b1c27333d4754616d7a86929fac9f93877b6e6153493f33271b0f03000000000000000000000000000000000714202d3a46525e697885919eabac9f93877c6f665c54514b4f4b5153555d60696e79818f949083909da9b3a4988b7e7165584b484a48443e352c21160b0000000714202d3a46525e6975828e99a3afa89f92867c6f6a605c5553514b4f4f4a5053535b60686e7a85919ea7afa3998e8175685e5246392d20130700000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000030b1218212a31363a4145474a4d505152525352514f4d4a4745403936313a4044454646464646463c3b38322b22190f0400000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171b1f252a2d2f34383a3c3f4142444545464645454443413f3d3b3a36312d2c28231c19130d0701000000000000000000000000000000000000000000000000000008131d262f363c40414646464646464646403e3b352e251c130a0100000000000000000000000000000000000000000000000000000000000000000000000000000000050d14191e20212929292929292726241f1a13191f23262729292929292921201e19140d0500000000000000000000000000000000000000050d14191e20212929292929292726241f1a13191f23262729292929292921201e19140d05000000000000000000000000000000000000000000000000040a0f1315161a1d1f201f1d1a1615130f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c11151718202020202020201615130f0a0400000000000009131c252c33373939393939393939393939393939393939393939393937332c251c130900000000000000000000060c101220202020202020201a1917130e0800000000000000000000040a0f13151620202020202020181715110c06000000000000000713202c3945525d68727f8c95a0a9a69f93887f746d68625f585b5b5b545c6063676d737d869299a4aba2978e81756a5f54473b3025190d010000000714202d3a46525e697683909daaada196897d7063594f433a312b282223282c3039434e58626f7c8895a0acaa9d908477695f53463a2d2114070000000000000000000000000000000000000b13202d3a4653606d7985929eaba49a8c8073655b5044372b1f1207000000000000000000000000000000000815212e3b4854616e7b8797a1adaa9d9083776a5f544b4540424045474b51575f676d78828f9590959fabb0a3968a7d7063574a3d3d3c38332c231a10050000000814212e3b4754616e7b87939fabaca0958a7e716a5f58514b47454042423f44464950565e68707d8a95a0acab9f92867a6d6154473a2e21140700000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000030c151c2328333b42464c5254575a5c5e5e5f5f5f5e5c5a5753514b46423b454c50525353535353534948433d342b21160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f141a1e2123292c2d303234363738393939383837363533302e2d2a25201f1c17110d080100000000000000000000000000000000000000000000000000000000010b141d252b303334393939393939393933322f2a231c130a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1114141d1d1d1d1d1d1b1a17140e080e1317191a1d1d1d1d1d1d1414110d080200000000000000000000000000000000000000000002080d1114141d1d1d1d1d1d1b1a17140e080e1317191a1d1d1d1d1d1d1414110d0802000000000000000000000000000000000000000000000000000000030709090d11121312100d090806030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000911171d2124252d2d2d2d2d2d2d22211f1b150e060000000000010a131b21272b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a010000000000000000030a11171c1f2d2d2d2d2d2d2d2d2726231f19120a0200000000000000070f161b1f22232d2d2d2d2d2d2d2524211d1811090000000000000714212d3a4754606d7a85929fa7ab9f948c7f726d605d56534e4f4e4e4a5053555d606b707d87939faaa99e93887c6f62564c41362a1e11050000000814212e3b4754616e7b87959fabab9e9184786c6053463d31281f1c17181c1f27313c47535f6a7784919daaaca095887b6e6155483b2e221506000000000000000000000000000000000005111d2a36414c5664707d8a97a1adac9e9184786c605346392f24180c000000000000000000000000000000000916222f3c4955626f7c8895a9b3a79a8d817467584e4239352f34383a40454d555c666d7a85919d9fa7b1afa396897c706356493d302f2c28211a1108000000000c1925323f4c5865727f8b99a4afaa9d9184786c60574e45403a38342f2e34383a3f444d56616b7783909daaafa3998b7e7265584b3f2f24180d01000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000b151e272e343f454d53565d606366696a6b6c6c6c6b696763605c55534d444f575c5f60606060606056544e463d32271b0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214181c1f20232527292a2b2c2c2c2c2b2a2a28262421211e1a1312100c060000000000000000000000000000000000000000000000000000000000000000020b131a202427272d2d2d2d2d2d2d2d2625231e19120a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507081010101010100e0d0b08030002070a0c0d1010101010100807050100000000000000000000000000000000000000000000000000010507081010101010100e0d0b08030002070a0c0d101010101010080705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b22292d3031393939393939392f2e2b26201810060000000000010910161b1e202020202020202020202020202020202020202020201e1b161009010000000000000000030c151c23282c393939393939393933322f2a241c140a00000000000007101920272b2e2f3939393939393932312e29221b12090000000006131f2b37434e5866727f8c97a2ada79c9083786c605b524c47434241413f44464c5159616b73808d98a2aea59b8f8275685e5246392d2014070000000b1824313e4b5764717e8a97a7b1a79a8e8174665b5044382b1f160f0b0c10151f2b37434e586773808d9aa6b1a7988b7e7165584b3e2d22170b00000000000000000000000000000000000713202d3946525e6875828f9ba9b3aca196897c6f63554b4035291d10040000000000000000000000000000000a1723303d4a5663707d8996a3b0a6998c7f7366594c402f2924292c2f353b434b545d68707d8a959fabb7afa396897c706356493d3023201c1610080000000004111d2935414c556975828f9cabb2a9988b7e72655b50453c342e2c292323282b2d333b444f5965727e8b98a9b3ab9b8f827568554b4035291d1004000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000007121c273039404451575f61686d7073767778797978777673706d67615e57505761686b6c6c6c6c6c6c6260584e43382c1f13070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205070c10131416191b1c1e1f1f20201f1e1e1d1b19171514120e090603000000000000000000000000000000000000000000000000000000000000000000000001080f14181a1b2020202020202020191916120d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090f1112131313110f0c070705010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b242d34393d3e464646464646463c3b37322a22180e04000000000000050a0f1213131313131313131313131313131313131313131313120f0a05000000000000000000000a151e262e34384646464646464646403f3b362e261c120800000000040f19222b32383b3c464646464646463e3d3a342d241b11060000000815222e3b4754606a7784919ea9aca095897d70655b5045413a3732342e34383a41454f59606d7a85929fabac9f92867a6e6154473b2e23180c0000010e1b2834414e5b6774818e9aa7b4aa978a7e7164544a3f3328190d040000040d1b26323d4a5764707d8a97aab4a79b8e81746853493f33271b0f03000000000000000000000000000000000714212e3a4754616d7a86929facb9b2a89a8e8174675d5145382c1f14080000000000000000000000000000000a1724313d4a5764707d8a97a3b0a5988c7f7265594c3f2e23181c1f24293139424c56616c7683909da9b3afa396897c706356493d302316100b0500000000000613202c3945515d677885929eabada196887b6e6153493f3328231f1c18171c1f2227323e4855626e7b8897a2adab9e918578675d5145392c201306000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000c18232e39424a515b63696e747a7d808384858586858482807d79746e69605b536873787979797979796f6a6054483b2e22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040607090c0e0f1112121313121211100e0c0a080705020000000000000000000000000000000000000000000000000000000000000000000000000000000003080b0d0e13131313131313130d0c0a0602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708121313131313130a090704000000000000000000000000000000000000000000000000000000060b0e1011131313131313131313131313131313130b0a080400000000000000000000000000030a0f1215151c1e1f1f201f1e1c181413110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17222d363e45494b535353535353534947433c342a20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2630383f4453535353535353534d4b4740382e24190e020000000a16202b343d434749535353535353534b4a453f362d22180c0100000916222f3c4955626f7c8896a0acaa9d9084776b6053493f35302b262823282c2f353e45525d6874818d9aaaafa3998b7f7265544b4034281c10040005111e2a36414c566a7683909da9aea298887b6e6155483b2d221708000000000a15212e3b4854616e7b8798a2aeaa9d908377655b5044372b1f120500000000000000000000000000000006131f2b37434e5865727f8c99a3aeb7b8ab9f9285796d6053473b3025190e0200000000000000000000000000000a1723303d4a5663707d8996abb5a6998d807366544a403428211e1a181f27303a44505a64707d8a97a2adafa396897c706356493d3023160a000000000000000714212d3a4754606d7a8797a1adab9e918578695f5341382d211813100c0b101217202d394653606c7985929fabada196867a6d6053473a2d201407000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000004101c2834404a545c606d727b81868a8d8f9191929292918f8d8a85807b726c655c6b78858686868686867c6f6256493c2f2316090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214151f202020202020171614100b050000000000000000000000000000000000000000000000040b12171b1d1e20202020202020202020202020202020171714110c0500000000000000000000060e151b1f2122282a2b2c2c2c2b292521201d19130d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111d29343e485056586060606060606055534e463c32261b0f0300000000000000000000000000000000000307090a0e111213131211100e0b090706030000000000000000000c17232e38424a505f606060606060605a58524a40362a1f13070000030f1b27323d464e545660606060606060585650483f34291d110500000d192633404c5966737f8c99a8b2ab998c807366594f41382d241e1b1b171c1f242935414c5663707c8998a2aeab9c8f8276665c5145382c1f1306000713202d3946525e687885929fabac9f9285796c605346392d201306000000000714212d3a46535e697985929facac9f9285796c605346392d2013060000000000000000000000000000000815222e3b4754606a7783909dabacababaea2988a7e7164564c41362a1e110500000000000000000000000000000915222f3c4855626f7b8899a3afa89b8f8275665c51443a322d2b2627272628323e4653606d7985929fabafa396897c706356493d3023160a000000000000000915222f3c4855626f7b8895a9b3a99c8f827669574d422f261b0f070400000306121f2b3744505b657683909da9b2a995887b6e6255483b2f221508000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000030e18212c3844515c666d757f878d9298999c9d9e9f9f9f9e9c9a98928d867f776d666679869293939393887b6e6255483b2f22150800000000000000000000000000000000000000000000000000000003080c0e0e131313131313130f0e0c09040000000000000000000000000000000000000000000000000000000000000003070b0d0e131313131313130e0e0c08030000000000000000000000000000030608090f1112131313110f0c0707050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a131313131313120807050200000000000000000000060d141a1e21222c2d2d2d2d2d2c2423201c161008000000000000000000000000000000000000000000050e161d23272a2b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423211c171008000000000000000006101820262b2e2f3537383939393835322e2d2a251e19130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212d3945505a62646c6c6c6c6c6c6c625f584e43372b1f1306000000000000000000000000000000040b101316161a1d1f201f1e1e1d1a18151312100b0600000000000003101c28343f4a545c6c6c6c6c6c6c6c6c66635c52473b2f23170a000006131f2b38434e5860626c6c6c6c6c6c6c65625a50453a2e2115090005111d2935414c566976828f9ca9afa399897c6f6356493d2f261b130f0a0c101319242f3a4653606d7985929facac9f9285796d6053463a2d201307000714212e3a4754616d7a8798a2aeaa9d918477665b5044382b1f12060000000005121e2a36424d576a7784919daaaea298877a6e6154473b2e211408000000000000000000000000000004101c2834404b55626f7c8895a0a8a19e9fa2aa9c8f8275685e5246392d20150a00000000000000000000000000000714202d3a4753606d7a86929facab9e9285796d60564c443d3a373134333332323845515c6675828f9ca8afa396897c706356493d3023160a000000000000000916232f3c4956626f7c8995a2afa89b8e8275685b4f423128140a0000000000030f1b27333f49536976828f9ca9afa295897c6f6256493c2f231609000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000915202c38434f59606d78818c92999fa2aaa9a8aaa29f9e9e9e9fa29f98928c81786d6d798699a39f9f94877a6e6154473b2e2114080000000000000000000000000000000000000000000000000001090f14181a1b202020202020201c1b191510090200000000000000000000000000000000000000000000000000000001080e1317191a202020202020201b1a18140f090100000000000000000000030a0f1215151c1e1f1f201f1e1c181413110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b101416172020202020201f1514120e090300000000000000060f181f262a2d2e38393939393939302f2c28211a110800000000000000000000000000000000000000040e1720282e3336373939393939393939393939393939393931302d28221a1208000000000000030e18222a31373a3c42444546464644423f3a39363029241e160e070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4956626c7179797979797979766a5f53473b2e2115080000000000000000000000000002090e161b202223272a2c2c2c2b2a29272522201f1c17110a020000000006121f2c3844505c667679797979797979736e63584b3f3226190c00000815222e3b4754606a6f79797979797979716c62564a3d3124170b000713202d3946525e687885929eabac9f92867a6d6053473a2d20140a0200000308131f2c3844505c667683909ca9aea298887c6f6255493c2f221609000915222f3c4855626f7b8895aab4a99c8f837669544a3f33281c0f0300000000020e1a2531434f5c6976828f9ca9b4aa95887b6f6255483c2f221509000000000000000000000000000006131f2c3845515c6774808d9aa7a196919298a29f92867a6e6154473c31261b0f000000000000000000000000000006131f2c3945515d677783909dabada1978a7e71685e564f484742424140403f3f3f404b546673808c99a6afa396897c706356493d3023160a00000000000000091623303c4956636f7c8996a2afa79a8d8174675a4e4134271b080000000000000b17222d424e5b6875818e9ba8afa296897c6f6356493c30231609000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000020e1a26313b4854606b74808d939fa3ababa49f9b979892919192939a989d9f938f82786d7a8794abb4a094877a6d6154473a2e211407000000000000000000000000000000000000000000000000030b131a202427282d2d2d2d2d2d2d292825211b140c0300000000000000000000000000000000000000000000000000020b12191f2326272d2d2d2d2d2d2d282724201a130b030000000000000000060e151b1f2122282a2b2c2c2c2b292521201d19130d0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810161c2023242c2d2d2d2d2d2c22211e1a140d060000000000030d18212931363a3b454646464646463d3c38332c231a10070000000000000000000000000000000000000b16202932393f4344464646464646464646464646464646463e3c39332c241a100500000000000a15202a343c4347484f5152525352514f4b4746413a3530282019110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e868686868686867c6f6255493c2f221609000000000000000000000000050d141a21272c2f30343738393938373634312f2d2b28231c140c020000000713202d3a4653606d78868686868686868073665a4d4033271a0d00000916232f3c4956626f7c868686868686867e7165584b3e3225180b000714212e3a4754616d7a8797a1adaa9e918477675d5145382c1f13020000000003101c28343f4a546774818e9aa7b4aa978b7e7164584b3e3125180b000a1723303d4a5663707d8996a3b0a89b8e8275685b4f422d22170b000000000000091c2835424f5b6875828e9ba8b0a396897d7063564a3d3023170a00000000000000000000000000000713202d3a4653606d7985929fab9e918485929fa3998c7f7265584e43372b1c11060000000000000000000000000004101d2935404b5566737f8c99a3aea99e91847a6d68615955534d4f4e4d4c4c4c4b4b4c5865727f8b98a5afa396897c706356493d3023160a000000000000000815222f3b4855626e7b8895aab4a79a8e8174675b4e412f24190d010000000000061b2835424e5b6875818e9ba8b4aa95887b6f6255483c2f221509000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000006121e2b37424e57636f7c87939fa5afa9a199938f8a878584848586888c90959e948d80747b8794a1ada093877a6d6054473a2d2114070000000000000000000000000000000000000000000000010b151d252b303435393939393939393534312c261e150c000000000000000000000000000000000000000000000000000b141d242b303334393939393939393534302b251d150b0100000000000006101820262b2e2f3537383939393835322e2d2a251e19130c04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a21282c2f30393939393939382e2d2a261f180f060000000009141f29333b424648525353535353534a48443e352c22190f060000000000000000000000000000000006121d28323b444b4f51535353535353535353535353535353534a49453e362c22170c00000000030f1b26313c464e53555b5d5e5f5f5f5e5c5854524c46413a322b231a1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b9393939393887c6f6255493c2f2216090000000000000000000000060f171f252a32383b3d4144454646454443413e3c3a38342e261e140a0000000713202d3a4653606d798693939393938d8073665a4d4033271a0d00000916232f3c4956626f7c8993939393938b7e7165584b3e3225180b000915222f3c4855626f7c8895a9b3a99c8f837669554b4035291d100400000000000c17232e3f4c5966727f8c99a5b2a6998c807366594d4033261a0d000a1724313d4a5764707d8a97a3b0a79a8e8174675b4e4134281b060000000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a0000000000000000000000000005111e2a36424d5764717e8a97a2a99a8d80818e9baa9d9083776a5f5347382e23170b00000000000000000000000000000c18242f3b4854616e7b86929fa8ada19690827a706b65615f575c5a5a5959585858585865717e8b98a4afa396897c706356493d3023160a000000000000000814212e3b4754616e7a8798a2aea89b8f827568564c4135291d11070400010407101d2935404b556976828f9ca9aea398877a6e6154473b2e211408000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000814212e3a47535f6a76828f9aa4afaba1979287827d7a79787778797b7f838a9196928a7e7b8895a1ada093867a6d6053473a2d201407000000000000000000000000000000000000000000000009131d272f373c40414646464646464642413d3730271e0e050000000000000000000000000000000000000000000000030d1d262e363c3f414646464646464641403c372f271d13090000000000030e18222a31373a3c42444546464644423f3a39363029241e160e0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101a232c33383c3d464646464646453b3a36312921180d030000020e1a26313b454d53555f60606060605f57554f473e342b21180d040000000000000000000000000000000b17232e39444d565b5e60606060606060606060606060606060575550483e33281c110400000006121f2b37434e585f62686a6b6c6c6c6b6865615e56524c443d352c241a11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b979f9f9f95887c6f6255493c2f22160900000000000000000000060f18212930363d4448494d505253525151504d4b4846443f3830261c110600000713202d3a4653606d7986939f9f9f998d8073665a4d4033271a0d00000916232f3c4956626f7c89959f9f9f988b7e7165584b3e3225180b000a1723303d4a5663707d8996a3b0a89b8e8275685b4f422f24180c000000000000061825323e4b5865717e8b98a4b1a79a8e8174675b4e4134281b0e000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e0100000000010e1b2734414e5a6774818d9aa7b0a4978a7d7164574a3e3124170b000000000000000000000000000714202d3a46525e6976828f9ca9a297897d7d8a98a2a095887c6f62544a3f34281c1003000000000000000000000000000714202d3a46525e6974808d96a1a9a89f9590847d77726e696a6867666665656565646465717e8b98a4afa396897c706356493d3023160a000000000000000613202d394653606c7985929faba99d908376685d5245392c221813100c0d101318202c3945515d677783909daaac9f9286796d6053463a2d201307000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000815222f3b4855626e7b88949facaea39992857d75716e686b6b666d6e72767d84909492857d8996a3aca09386796d6053463a2d20130700000000000000000000000000000000000000000000030f1a252f3941484d4e535353535353534f4d4942393020170d02000000000000000000000000000000000000000000010b151f2e3840474c4d535353535353534e4d4841392f251a0f03000000000a15202a343c4347484f5152525352514f4b4746413a3530282019110800000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f19222c353e44484a535353535353524846423b33291f1409000005121e2a36424d575f616b6c6c6c6c6c6c6361594f463d332a1f160b0200000000000000000000000000000e1b27333f4b565f676a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d2114080000000815212e3a47535f6a6f7577787979797775726d68615d564f473e362c231a100600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4aca295887c6f6255493c2f221609000000000000000000020c18212a333b42464f54565a5d5f5f5f5e5d5c5a585553504a42382e23170b00000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2aca4988b7e7165584b3e3225180b000b1724313e4a5764717d8a97a4b0a79a8e8174675b4e4134281b070000000000000b1724313e4a5764717d8a97a4b0a89c8f8275695c4f4236291c0f000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e0100000000010e1a2734414d5a6774808d9aa7b1a4978b7e7164584b3e3125180b000000000000000000000000000814212e3b4754616e7b87939fab9e9285797985929fa79a8d8073665c5044382b1f13070000000000000000000000000005121e2a36424d57606d79849197a1a9a79f969189837f7b78767574737372727271717171717e8b98a4afa396897c706356493d3023160a0000000000000006121f2b3844505b6676828f9cabac9f92867a6d6054473e3429241f1c18181d202328323b4753606d7a86929faca99c908376665c5144382c1f1206000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000d192633404c5966737f8c99a6b0ac9f92877c6f6b64615e56545c6062656c707a8290949083909daaaca09386796d6053463a2d201307000000000000000000000000000000000000000000000814202b37414b53595b606060606060605c59544b4232291f140900000000000000000000000000000000000000000007121d2731404a52585a606060606060605b59534b41372b201408000000030f1b26313c464e53555b5d5e5f5f5f5e5c5854524c46413a322b231a12080000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18212b343e474f55575f60606060605f55534d453b31261a0e02000714212d3a46535f696e78797979797979706b61584e453b31281d140a0000000000000000000000000000101d2a36434f5b67717779797979797979797979797979797979716c6155493c3023170a0000000915222f3c4855626f7c81848585868584827e7a746d68605950483e352c22180d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4afa295887c6f6255493c2f2216090000000000000000000a141e2a333b454d52596063676a6b6c6c6b6a69676462605c544a3f34281c1003000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000b1824313e4b5764717e8a97a4b1a79a8d8074675a4d4134271a0e0100000000000a1724313d4a5764707d8a97a3b0a99c8f8376695c504336291d10000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e0100000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3124180b00000000000000000000000007131f2c38434f5966727f8c99a4aa9b8e817475818e9baa9e9184796d6053463a2f24180d01000000000000000000000000020e1a25303b45515d676f7c8591979ea5a8a09e95908b8885838281807f7f7f7e7e7e7e7d7d808d9aa7afa396897c706356493d3023160a00000000000000030f1c28333f4a5466727f8c99a3aea3998a7d71645a50463d352f2c292324292c2e343b444f5963707d8a99a3aea6998d807366544a4034281c1004000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000005111e2a36424d576976838f9ca9b1a79a8d80736a605954524c4a5053555a61676d798290959095a0abaca09386796d6053463a2d201307000000000000000000000000000000000000000000000c1824303c48535d64686c6c6c6c6c6c6c68655d54443b3025190e0000000000000000000000000000000000000000000c18232f3943525c64676c6c6c6c6c6c6c68645d53483c3024180c00000006121f2b37434e585f62686a6b6c6c6c6b6865615e56524c443d352c241a1108000000000000000000000000000000000000000000000000000000000000000000000000000000020b16202a333d474f5961636c6c6c6c6c6c6b615f574d42362a1e1205000815222e3b4855616e7b858686868686867d706a60574d433a2f261b110600000000000000000000000000111e2b3744515e6a7784868686868686868686868686868686867e7164574a3e3124170b0000000a1724313d4a5764707d8a9091929292918f8b86807a706b615a50473e342a1f150b010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4afa295887c6f6255493c2f221609000000000000000006111c26303b454d575e616b70747778797978777674716f6d665c5044382b1f1206000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000b1824313e4b5764717e8a97a4b1a79a8d8074675a4d4134271a0e0100000000000a1724313d4a5764707d8a97a3b0a99d9083766a5d5043372a1d10000a1724313d4a5764707d8a97a3b0a79a8e8174675b4e4134281b0e0100000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a0000000000000000000000000915222f3b4854606b7784919eaba2988a7d70707d8a98a2a197897d7063554b4135291d11040000000000000000000000000009141f2935414b555f6a6f7c858f939c9fa4a79f9d989892908f8d8d8c8c8b8b8b8b8a8a8a8d929da9afa396897c706356493d3023160a00000000000000000b17222d3b4754616e7b86929faaab9d9083766c61584e45403a38342f2f35393a40454d56606b75828f9babab9f94887b6f6255483c2e23180c00000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000714202d3a46525e697885929fabaca095877b6e61584f4746413f44464850555d676e7b85929da0a7b1aca09386796d6053463a2d201307000000000000000000000000000000000000000000000e1a2734404d59646f7479797979797979756f65564d42362a1c11060000000000000000000000000000000000000004101c2934404b55646e7479797979797979746f64594d4034271a0e0000000815212e3a47535f6a6f7577787979797775726d68615d564f473e362c231a100600000000000000000000000000000000000000000000000000000000000000000000000000000a141d28323c454f59616b70797979797979786e695f53463a2d211407000714212d3a46535f696f7c86929a939992867d6f695f554c41382d22170d04000000000000000000000000111e2b3744515e6a77849193939393939393939393939393938a7e7164574a3e3124170b0000000a1724313d4a5764707d8a979e9f9f9f9e9b98928d847d716c61594f463c31271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4afa295887c6f6255493c2f22160900000000000000000b17232e38424d575f696e767c8083858685848483807e7c786d6053463a2d201307000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b070000000000000b1724313e4a5764717d8a97a4b0a99d9083766a5d5043372a1d10000a1723303d4a5663707d8996a3b0a89b8e8175685b4e4235281b090000000000020f1b2835424e5b6875818e9ba8b0a3968a7d7063574a3d3024170a000000000000000000000004101d2935404b55636f7c8996a0ab9f9285796d6d7985929fa99b8e8175675d5145392c20140900000000000000000000000000020d18242f3a434e585f6a6f7a82898f93999c9fa2aaa29f9d9b9a999998989898979797979a9da4aeafa396897c706356493d3023160a00000000000000000614202d3946525e6874818e98a2ab9f958a7e716a6058514b47454042434045474b51575f696f7c89939eaaa4998f82766a5f53473a2e1c120700000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000814212e3b4754616e7b8798a2aeaa9d908377695e53463d393634383a3e434c555e69717e8b97a1adb9aca09386796d6053463a2d201307000000000000000000000000000000000000000000000e1b2835414e5b687481868686868686868175695e5246382d22170b0000000000000000000000000000000000000006131f2c3845515c677480868686868686868174685b4e4135281b0e0000000915222f3c4855626f7c81848585868584827e7a746d68605950483e352c22180d0300000000000000000000000000000000000000000000000000000000000000000000000006111c262f3a444d57606b707d868686868686857b6e6155483b2e2215080005121e2a36424d57606a707e88939fa29892857b6e675d53493f33271f160c010000000000000000000000111e2b3744515e6a7784919d9f9f9f9f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b0000000a1724313d4a5764707d8a979e9ea2a9a9aaa39f9691877e716b61584e43392f23180c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000204050606060504020b1825313e4b5864717e8b97a4afa295887c6f6255493c2f2216090000000000000003101c28343f4a545f696e7b82898d9092929291908f8d8b887e7164584b3e3125180b000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000a1724303d4a5763707d8a96a3b0a89b8e8175685b4e422e23180c0000000000000b1825313e4b5864717e8b97a4b1a99c8f8376695c504336291d10000916222f3c4955626f7c8895aab4a99c8f8276695c4f4330251a0e0200000000030f1c2936424f5c6975828f9ca8b5ab95897c6f6256493c2f23160900000000000000000000000613202c3945515d6774818e9aa8aa9b8e8175676775818e9baa9f92867a6d6054473b31251a0e020000000000000000000000000007131d28313c464e585f686d757c82878b8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abacb5afa396897c706356493d3023160a000000000000000005111e2a36414d56616e7b85929fa4a79f92867c6f6a605d5553514b4f4f4b5153545c60696e7b84919ea6a69f93877c6f63584e43372b1f0b0000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000091623303c4956636f7c8996aab4a79a8e817467574d42342d2a282b2d313a434d57606d7985929eabb8aca09386796d6053463a2d201307000000000000000000000000000000000000000000000916232f3c4956626f7c89959393939392867b6e61544a3f33281c0f030000000000000000000000000000000000000714202d3a4753606d7985929393939395897c6f6356493c302316090000000a1724313d4a5764707d8a9091929292918f8b86807a706b615a50473e342a1f150b0100000000000000000000000000000000000000000000000000000000000000000000040d17222d38424c565f696f7d869299939a92867c6f695f53463a2d21140700020e1a26313b454e58616c73808c949ea1979183796d655b50443d31281d13070000000000000000000000111e2b3744515e6a7784919daab0a69e9b98989898989898978a7d7164574a3e3124170b0000000a1724313d4a5764707d8a92919297979c9fa6a9a19992877d706a5f554b4034291f1409000000000000000000000000000000000000000000000000000000000000000000000000000000020608080c0f111213131312110f0c1825313e4b5864717e8b97a4afa295887c6f6255493c2f2216090000000000000006121f2b3844505c666e7b848f949a9d9e9f9f9e9d9c9a978b7e7164584b3e3125180b000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000916222f3c4955626f7c8895a9b3a99c8f827669544a4034281c100400000000000c1926333f4c5966727f8c99a5b2a89c8f8275695c4f4236291c0f000814212e3b4754616e7b8798a3aeaa9d9084776a574d42362a1e12050000000005111d2935414c566a7783909daaafa399877b6e6154483b2e21150800000000000000000000000714202d3a4753606d7a85929faca3988a7d716464707d8a98a2a2988b7e7165574d42362a1e120500000000000000000000000000010c161f2a343c464e565e616b6f757b7f8285888a8c8d8f8f9090919191919292929292999ba3acafa396897c706356493d3023160a0000000000000000020e1925303b46535e69717e8b929da4a29891847c726d6763605c555c5c555d6063666d727b839096a1a69f948d80736b6054463c31261a0f0000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000a1724313d4a5764707d8a97a3b0a5988c7f7265594c3f31261e1c1f2028313b45515c6673808d99aab4aca09386796d6053463a2d201307000000000000000000000000000000000000000000000915222e3b4854606a7783909daa9fa3998c7f73665b5044382b1f1409000000000000000000000000000000000006121f2b37434e5864717e8a97a29f9f9d9083776b6054483b2f2215090000000a1724313d4a5764707d8a979e9f9f9f9e9b98928d847d716c61594f463c31271d1207000000000000000000000000000000000000000000000000000000000000000000010c161f28333f4a545d686e7b859298a29f93887e706a60574d42362a1e1205000009141f29333d46505a606c77828f96a1a0958f82776c60594f433a2f24180c0300000000000000000000111e2b3744515e6a7784919daaaa9e938f8b8b8b8b8b8b8b8b8a7d7164574a3e3124170b0000000a1724313d4a5764707d87858585868a8f949fa2aaa39992867c6f675c51453b31261a0e0300000000000000000000000000000000000000000000000000000000000000000000000003090e121415191b1d1f1f201f1f1d1b191825313e4b5864717e8b97a4afa295887c6f6255493c2f221609000000000000000713202d3a4653606d788390969fa6aaababa5a1a0a0a1978b7e7164584b3e3125180b000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000814212e3b4754616e7a8797a2adaa9d918477665c5144382c1f120600000000000e1b2734414e5a6774818d9aa7b4a89b8e8175685b4e4235281b0f000713202d3a4653606d7986929facab9f928578695e52463a2d201407000000000713202d3946525d687885929eabac9f9286796d6053463a2d2013070000000000000000000005121e2a36424d5764717e8b98a2ac9f92867a6d60606d7985929faa9c8f8376695e53463a2d21160a0000000000000000000000000000040d18222a343c444c52596063696e7276797b7d7f81828383848484848585858585868b909ba7afa396897c706356493d3023160a00000000000000000008141f2a36424d57626c74808d929fa2a19691877f79736f6d676969696a676d6f73797f869095a0a49f949082796d60594f43342a20150a0000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1824313e4b5764717e8a97a4b0a4978a7d7164574a3e3124171012161f2834404b54626f7c8998a3aeaca09386796d6053463a2d2013070000000000000000000000000000000000000000000007131f2c38434e5865727e8b98a2aeab9e9184786c6053463b30251a0e00000000000000000000000000000000000814212e3a47535f6a7683909ca9aea2988b7f7265594f43382c1f13070000000a1724313d4a5764707d8a979e9ea2a9a9aaa39f9691877e716b61584e43392f23180c03000000000000000000000000000000000000000000000000000000000000000008131e28313a44505b666d7a849197a29e948c80736c61584e453b31261a0e020000030d18212b343e44505b656d7a849199a49e948c7f726b60554b4135291e150b00000000000000000000111e2b3744515e6a7784919daaa89b8f817f7f7f7f7f7f7f7f7f7b6e6155483b2e2215080000000714202d3a4753606d79797878787a7d828a9298a1a9a2989083796d60574d42362a20150a00000000000000000000000000000000000000000000000000000000000000000000060b0f151a1e212225282a2c2c2d2c2b2a28262225313e4b5864717e8b97a4afa295887c6f6255493c2f22160900000000000004101c2834404b5564717e8a959fa8b0a9a19e9894939394968b7e7164584b3e3125180b000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000714202d3946525e687885929fabac9f9286796d6053463a2d20130a0400000006121f2b37434e586976828f9ca9b4a79a8e8174675b4e4134281b0e0006121f2b3844505c667784909daaaea298877b6e6154483b2e21150a000000000714212e3a4754616d7a8797a1adaa9e918477665c5145382c1f1306000000000000000000000714212d3a46535f6976838f9caaaa9b8f8275675d5d6775828e9baa9f93877b6e6154483d32271b0f0000000000000000000000000000050e171e252a323a41464f54575e6165666d6f717374757676777777787878787879797e8b98a4afa396897c706356493d3023160a000000000000000000020e1a25313b45505a646e74808b92989fa199928c85807c797776757676777a7c80858b9298a09f9a938d82796d675d51473d3222180e030000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825313e4b5864717e8b97a4b0a396897d7063564a3d3023170a060d18232e3a4653606d7986929facaca09386796d6053463a2d20130700000000000000000000000000000000000000000000030f1b27323d4754606d7a85929facaca1968a7d7063574d42362a1c110600000000000000000000000000000004101c2934404b55626e7b88949fabac9f92867a6d6054473d32271b0f030000000a1724313d4a5764707d8a92919297979c9fa6a9a19992877d706a5f554b4034291f140900000000000000000000000000000000000000000000000000000000000000030d19242f3a434f59606c78828f96a0a1968f82776c605a50463d33291f140900000000060f192227333f49535e68707d87939fa69f92877d6f675d51453d30271d1207000000000000000000111e2b3744515e6a7784919daaa5998c7f7272727272727272726e695f53463a2d21140700000006131f2c3845515c676d6d676b676d70767e869297a1aaa0958c8073695f53463c31261a0f0300000000000000000000000000000000000000000000000000000000000000020a11171b1f262b2e2f32353738393939383735322f2e313e4b5864717e8b97a4afa295887c6f6255493c2f22160900000000000006131f2c3845515c6776828f9ca7b1aaa197928b88868687898b7e7164584b3e3125180b000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0005111e2a36414c56697683909ca9aea399897c6f6256493d32271b13100c090e1117212e3a47535f6a7885929eabb3a6998d8073665a4d4033271a0d0003101c28343f4a546875818e9ba8b3aa978a7d7064574a3d32271b0d04000001081623303d495663707c8996a9b3a89c8f827569544b4034281c1004000000000000000000030f1c28333f4a54616e7b87939faca2988a7e7164555564717e8a98a3a49a8c7f7366584e43372b1d1207000000000000000000000000020c1720293036393a3e3f44484d5354545c606264666768696a6a6a6b6b6b6b6c6c6c717e8b98a4afa396897c706356493d3023160a0000000000000000000009141f29333f48525c646e747e868e92999c9f97928d898684838282838486898d92979f9c99948f8780796d675d554b40342b211006000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa296897c6f6356493c302316090007131f2c3845515c667683909da9aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000a16202c3945515d6774818e9aa7b1a89b8f8275695e5246382e23170b00000000000000000000000000000006131f2c3845515c6774808d9aa6b0a79b8e8174685d5245392b21160a000000000a1724313d4a5764707d87858585868a8f949fa2aaa39992867c6f675c51453b31261a0e030000000000000000000000000000000000000000000000000000000000010b151f2935414c56606b737f8c949ea49991847a6d655b50483e342b21180d030000000000071017222d38414c56606b74808d96a0a3999184796d60594f42392e23180c020000000000000000111e2b3744515e6a7784919daaa5998c7f726665656565656565615f574d42362a1e120500000004101c2934404b555c60605c555d60646c717c859298a3a79f92867b6e61584e43372b1f1409000000000000000000000000000000000000000000000000000000000000060b141b22272b31373a3b3f4244454646464544423f3b3a373e4b5864717e8b97a4afa295887c6f6255493c2f2216090000000000000713202d3a4653606d7986929facaea39892857f7b79797b7c7f7c6f6256493c2f231609000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00010d192530404d5a6673808d99a9b2ab998c7f7266584e43372b251f1c181b1a1b2228343f4a54626f7c8897a2adb1a4978b7e7164584b3e3125180b00000b17232e3f4b5865727e8b98a8b2a69a8d807367584e43372b1f15100c090e131e2a36414c5666727f8c99a5b3aa998c7f7366594c402e23180c0000000000000000000006121f2b3844505b6673808c9aa4ac9f92867a6d605454606d7a86929fac9d9184776a605447392e23180c00000000000000000000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f65717e8b98a4afa396897c706356493d3023160a00000000000000000000030d17212d36414a525c646c717b81868c8f92979e99999291908f8f90919299999e9892908c88827d746d675d554b43392f22190f00000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f2316090004101c2834404b546875828f9ba8aca09386796d6053463a2d201307000000000000000000000000000000000000000000000004111d2935414b55626f7c88959fabac9f92877b6e61544a3f34281c100300000000000000000000000000000714202d3a4753606d7985929eabaca095897c6f63564c413529190f04000000000714202d3a4753606d79797878787a7d828a9298a1a9a2989083796d60574d42362a20150a000000000000000000000000000000000000000000000000000000000007121d27313945525d68707d87939fa69f93877d6f685e53493f362c22190f060000000000000006111b262f3a444f59606d7984919ea5a0968e81746b60544b4034281e13080000000000000000111e2b3744515e6a7784919daaa5998c7f72665958585858585855534d453b31261a0e02000000000c18232f39434b515353514b51535a616a6f7c86929fa7a3988e81756a5f53473b30251a0e0100000000000000000000000000000000000000000000000000000000080f181d262d33373c4247484c4e505252535252504e4c4847433e4b5864717e8b97a4afa295887c6f6255493c2f2216090000000000000916232f3c4956626f7c8999a3aeac9f92867c726e6d6d6e70726f6a6054473b2e221508000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000081623303c4956636f7c8997a1adaa9d9083776a6054473f36302c282328252a2d333c44505c6673808c99a9b3b3a996897c6f6356493c3023160900000615222f3c4855626f7b8896a0acaa9d9184776a6054473c31271f1c181b1a1e242d3946525e6876838f9ca9aea298897c706356493d30231607000000000000000000000613202d394653606c7884919eaca99b8e8175675d51515d6775828f9caba096897c6f62544b4034281c100400000000000000000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525965727f8c98a5afa396897c706356493d3023160a0000000000000000000000050f1b242f38414a525a62696e747b7f8285929faba39f9d9c9c9c9d9d9fa3ab9f928682807b766f6b605d554b433a31271d100700000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000c18232e414e5b6874818e9ba7aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000010d18242f3a47535f6a7683909da9afa3998c7f73665c5044382b1f14090a0a0a0a0a0a0a0a0a0a0a0a0a0a121f2b37434e5864717e8b97a2adaa9d9083776b6054443a2f241907000000000006131f2c3845515c676d6d676b676d70767e869297a1aaa0958c8073695f53463c31261a0f03000000000000000000000000000000000000000000000000000000000c18232f39434f59606d7a849199a4a0968d80736b60564c41382d231a10070000000000000000000a141d28323d45515d67707d89939ea89d93897d70665c51453a3025190d0200000000000000111e2b3744515e6a7784919daaa5998c7f7266594c4c4c4c4c4c4846423b332a1f1409000000000007121d27313940454747454045475058606a727f8c959faa9f93877c6f62574d42362a1d120700000000000000000000000000000000000000000000000000000008111a212a2f383f44464d5355585b5d5f5f605f5e5d5b5955534e464b5864717e8b97a4afa295887c6f6255493c2f2216090000000000000a1724313d4a5764707d8a97abb5a79a8e81746a6160606163656260584e43372b1f1306000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00000713202d3a4653606d7984919eaaab9f95897c6f625b5146413a38342e343136383f444d57606d7984919eabb7ada297877a6d6154473a2e21140700000815212e3a47535f6a7784919eabaca095887c6f62584e4339312c282327262b2f35414c56616d7a86929facab9f9285796d6053463a2d20130700000000000000000004111d2935414c5663707d8996a1aca1978a7d7063554b4b5564717e8b99a3a89a8d8174665c5145382c1f13080000000000000000000005111d2a36414c565e6164656768696a6b68655d534840414243434444444545454d596673808c99a6afa295897c6f6256493c2f231609000000000000000000000000091217232e38424a535b606a6f767c8084919eaaa7a4a2a1a0a0a1a2a4a7a99c8f837f7b756e6a625b514b433a31281f150b0000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f2316090000071a2734404d5a6773808d9aa6aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000007131d2b37434e5864717e8b97a2adab9e9184786d6053463b31251a16161616161616161616161616161616212e3a47535f6a7683909ca9aea2988b7f7265594f4332281e1308000000000004101c2934404b555c60605c555d60646c717c859298a3a79f92867b6e61584e43372b1f140900000000000000000000000000000000000000000000000000000004101c2934404b55606b74818e96a1a59d9184796d60594f443a2f261b110800000000000000000000020b16202935404b55606b75818e98a2a59d9184796d60564c41362a1f140800000000000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3f3f3f3f3b3a36312a21180e030000000000010b151f272f34383a3a3835393e464e58606c7883909da6a49a8e8175695e5246392f23180c000000000000000000000000000000000000000000000000000008111a232c333c41495053575f6265686a6b6c6c6c6b6a6865625f5853505864717e8b97a4afa295887c6f6255493c2f2216090000000000000b1825313e4b5864717e8b97a4b1a4978a7e716458535354565856544e463d32271b0f03000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000006121f2b3844505c6673808d98a2aea79c8f82766d625b524c46454041414242464950575f69727e8b96a1adb8ab9e928578685e5246392d201307000006121f2b37434e586673808d99a3afa89b8e81756a5f554b433c38342e3431373a4145525d68737f8c99a3afa79b8e8175675c5145382c1f13060000000000000000000613202c3945525d6875818e9ba8ab9e9285796d6053464754616d7a86929fab9e9285796d6053463a3025190d010000000000000000000713202d3946525e686d71727374767778756f65594d3d323536373737383835404b556774818e9aa7b2a995887b6e6255483b2f2215080000000000000000000000020c162028343f4a545c656c737c82888c9196a09f9a97959493939495979a9e9f948f8b86817b726d645d534a40352c1f150b0100000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000010f1b26323c4753606d7985929fabada1968a7d7063574d42362a23232323232323232323232323232323232934404b55626e7b88949fabac9f92867a6d6054473d3221160c010000000000000c18232f39434b515353514b51535a616a6f7c86929fa7a3988e81756a5f53473b30251a0e0100000000000000000000000000000000000000000000000000020d17212c3845515c67707d89939da89e93897d6f675c51473d32281d140a000000000000000000000000050e18242f39434f59616e7b86929fa9a0968c7f72685e52463b3025190e01000000000000111e2b3744515e6a7784919daaa5998c7f7266594c3f333232322e2d2a261f180f0600000000000000030d151d23292c2d2d2c292c343d44505b666f7c89949eac9f92877b6e61554b4034291c1004000000000000000000000000000000000000000000000000060f1a232c353e454d535b6064696e72757778797979787775726e6a64605c5464717e8b97a4afa295887c6f6255493c2f2216090000000000000c1825323f4b5865727e8b98a5afa295897c6f6256494648494c4947433d342b20150a00000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000003101c28343f4a54616e7b86929fa8ab9f948b7f726d615e5653514b4e4e4f4d53535b60696e7b85929fa8b2b5a89c8f827569564c4135291d11050000030f1a26313c4854616e7b87929faaac9f92877c6f675d554e46454041414142474c515b606d7a85929eabaca095897d7063554b4034281c10040000000000000000000714212d3a4754606d7a86929faca89a8d8174665c514446525d6876828f9caba2978a7d7064564c4135291d11050000000000000000000714212e3a4754616d7a7e7f8081828485817568584e43372e2c2823282c2f3945515d677783909daaada196877a6d6054473a2d211407000000000000000000000008131e28323a44505c666d777f878f94999e9f97928e8b8887868687888b8d92979e9c99928e867f746f645c52473e31271d120700000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000a151f2c3845515d6774808d9aa6b0a89c8f8275695e5346382e3030303030303030303030303030303030303845515c6774808d9aa6b0a79b8e8174685d5245392c2013040000000000000007121d27313940454747454045475058606a727f8c959faa9f93877c6f62574d42362a1d12070000000000000000000000000000000000000000000000000009141f2a36414c56606d7984919ea5a2988e81756b60554b40352b20160b020000000000000000000000000007121d27313d46525e6973808d97a2a89f92857a6d61564d41362a1e1308000000000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326252522211e1a140e06000000000000000000030b12181c1f20201f1d2228333f4a54606b75828f9ca8a3998d8073675c5145382c1f14090000000000000000000000000000000000000000000000030e18212c353e474f575f656c71767b7f8183858586858583817f7b77716d665f64717e8b97a4afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea195887b6e6255483b3b3d3f3c3b37322b22190f0400000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000b17232e3846525e6973808d96a0aaa69f93877f746d6863605c545b5b5c575e61656c717b849198a2aebab3a9988c7f7265594c3f3025190d010000000a15212d3a46535e6975818e98a3aea3999083796d675f5853514b4e4e4e4d53555d606d74818e97a1ada69d9083776b605443392e23180c00000000000000000006121f2b37434e5865727e8b98a2aca096897c6f63544a40414c5665727e8b99a4a99b8f8275685e5246392d2015090000000000000000000815212e3b4854616e7b878c8d8e8f909184786a6054473f3a38342e34383a404b55606d7a86929facab9e918578675d5145392c20130600000000000000000000010d1924303a44505a606d78818c93999fa098928c85817e7b7a797a7a7b7e81858b92979f9f99928b81746e63594f43392f24180c00000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000004101d2935404b55626e7b88949fabac9f93877b6e61544a3f3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d4753606d7985929eabaca095897c6f63564c4135291d110400000000000000010b151f272f34383a3a3835393e464e58606c7883909da6a49a8e8175695e5246392f23180c000000000000000000000000000000000000000000000000020e1a25303946525e68737f8c96a0a99f92867a6e61594f43392f23190e040000000000000000000000000000010b151f2a36424d57606d7a85929eaaa2978d8074685e52463a2f24190d010000000000111e2b3744515e6a7784919daaa5998c7f7266594c3f332619191514120e0903000000000000000000000001070c10131414131017222d38424f5963707d8995a0ab9e9285796d6053473b31261a0e000000000000000000000000000000000000000000000009141f2a333e474f5961696e787e83888b8e909292939291908e8c88847e786e6a64717e8b97a4afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e30322f2e2b27201910070000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00000006111c2a36424d56606d79849198a2aba499938b807a736f6d666968676869696e71787e859196a1aab3b9ada297887c6f6255493c2f2216080000000005121e2a36424d57616e7b86929fa6aba0958f82796f6a63605c555b5a5b575f62676d747f8c939ea9a99f948a7d7064594f4430271d12070000000000000000000814212e3a47535f6a7683909daaaa9e9184776b605442393b4754616e7b86939fac9f92867a6d6154473c31261a0e0000000000000000000714212d3a46535e697884919a9b9c9d96897c6f625a504a464440434044464b515c67717e8b98a3aeaa9b8f827568554b4135291d11040000000000000000000004111d2935414c56616c74808d939fa4a09591867f7a74716f6e6d6d6e6f7174797e8590959fa39f938d80736b61554b4035291d1004000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000c18242f3947535f6a7683909ca9afa4998c8073665c504949494949494949494949494949494949494949494e5864717e8b97a2adaa9d9083776b6054443a2f24190d010000000000000000030d151d23292c2d2d2c292c343d44505b666f7c89949eac9f92877b6e61554b4034291c1004000000000000000000000000000000000000000000000005121e2a36424d57616e7a86929fa8a1978c8073685e52473d31271d110700000000000000000000000000000000030d1a25303b45525d6873808c98a2a99f92867b6e61554c4135291d11040000000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0807050200000000000000000000000000000000040607070606111c262f3d4854606b7784919daba2978a7e7164574d42362a1b1106000000000000000000000000000000000000000000020b1a26313b454f59616b707b838a9095989b9d9e9f9f9f9e9d9b9895908b837c6f6b717e8a97a4afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e232523221f1b150f07000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000000000e1925303b45515d676f7c869299a2aaa49f928d86807c79767574747576787b7e838a9297a1a8b2bcb8ab9e9285796c605346392d20130600000000020e1a25313b46535f69737f8c949fa7a79f948f837c75706d676867676869696e737a818c919ca5aaa1978f82766c6155473d331e150b00000000000000000003101c28343f4a54626e7b88959faba7998c807366594f43303946525e687683909ca9a3998b7f7265574d42372b1b1106000000000000000005121e2a36424d576774818e9aa6a9a89b8e81756c605c5453514a504a5153555d606d7983919daaaea2988b7e7165584b3e2f24180d01000000000000000000000713202c3945525d68717e8a929da5a19791837b726d676462616060616264676d717a839096a1a59c928a7d70675d5145392c1f150a000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000007121d2b37434e5864717e8a97a1adab9e9184796d6056565656565656565656565656565656565656565656565f6a7683909ca9aea2988b7f7265594f4332281e130800000000000000000000030b12181c1f20201f1d2228333f4a54606b75828f9ca8a3998d8073675c5145382c1f140900000000000000000000000000000000000000000000000714202d3a46525e6974818d98a2aa9e92857a6d60564c41352b1f150b00000000000000000000000000000000000009141f2935414c56616d7a86929faca3988d8073675d5145392c20150a0000000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000000000a141d2c38444f5965727f8c99a3a99c8f8276695f5346382d22170b0000000000000000000000000000000000000000000a141d2a36424d57616b707d8690959d9fa7a8aaaaa39f9e9e9e9fa3a09d9590867d6f717d8a97a4afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e22191615130f0a0400000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000009141f2935404b55606a707e879298a0a7a49d98928d898583828181828384878b90959ea1a9b2babeb2a99b8e8175665b5044382b1f1206000000000009141f2a36424d57606d78828f959fa7a69f959087817d79777574747476787b80858e939ca3aaa29892857b6e615a5044352b210c0300000000000000000006121f2c3844505c6673808d9aa7ab9f95887b6e6255483d3236414d5665727f8c98a7ab9d908376695f5347382d22170b0000000000000000020e1a25313c4855626f7c88949faaaa9e938a7e726d6662605c545d545c6062676d75808d95a0aca99f92867a6d6154473a2e2114070000000000000000000003101c28343f4a54606d7a85929ea4a79e91857b6e69605d55555453535455555c60686e7a84919ea8a49e9184796d6053473c31261b0f030000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000010f1a26313c4653606d7985929eacada1968a7d70646363636363636363636363636363636363636363636363636e7b88949fabac9f92867a6d6054473d3221160c01000000000000000000000001070c10131414131017222d38424f5963707d8995a0ab9e9285796d6053473b31261a0e0000000000000000000000000000000000000000000004111d2935414c56616e7b86929faaa2988c7f73675d51443b3023190d03000000000000000000000000000000000000020d19242f3a46525e6874808d9aa6aa9f92857a6d6054473c31261b0f0300000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000000000020b1c27333d4754616d7a86929fac9f93877b6e6153493f33271b0f030000000000000000000000000000000000000006111b262f3846535f69707d8792989fa7aba8a09d9898929191919299989d9f9892867c707d8a96a3afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221509080603000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00000000020c18242f39434e58616c707d8690959ea1a9a29f9a9892908f8e8e8f8f9196989da09f9da0a8b2b9ada1978a7d7063544a3f33281c0f030000000000030e1a26313b44505c666d7a8390959da5a7a099938e898683828181818385888c92979da5a7a09892867d70695e52483e3323190f000000000000000000000713202d3a4653606d7985919eabab9d908377695f53473a2b303b4854616e7b8795a0ab9f95887b6e6253493f33271b0f0300000000000000000915212e3b47535f6a76828f98a2aea59f92877f78726f6d666a696a666d6f7379818d929da7aca2978d8074685d5246392d2013070000000000000000000006121f2b3844505c66737f8c97a1ab9f958a7d70695f57514b4847464747484b51565e68717e8a96a0aca1968b7f7265584e43372b1f12060000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000009151f2c3845515c6673808d9aa4afa99c8f82757070707070707070707070707070707070707070707070707074808d9aa6b0a79b8e8174685d5245392c201304000000000000000000000000000000040607070606111c262f3d4854606b7784919daba2978a7e7164574d42362a1b11060000000000000000000000000000000000000000000713202c3945525d6874808d99a3ab9f92857a6d60554c4132291e1107000000000000000000000000000000000000000008131e2935414c56626f7b88949faba2988b7f7265584e43372b1f120600000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000000000000b13202d3a4653606d7985929eaba49a8c8073655b5044372b1f1207000000000000000000000000000000000000000b17222d3841505a616e7b859299a2aaaba39f96918c888584848586888c90959e9891847a7d8996a3afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000000000007121d27313d46505a616b707c838b91979c9fa3aaa29f9d9c9b9a9b9c9ea1a29f9a939196a0acb8ab9e9184796d6053463a2d22170b0000000000000009141f28343f4a545e686d7a838e929d9fa7a49f9b9892908e8e8d8e8f9197999ea1a9a29e9590867d706b60574d42362c22110800000000000000000005111d2a36414c5663707d8a97a1ada3998c7f7265574d42372b2d3a46535e697783909daaa7998d8073655b5044372b1f1207000000000000000006121f2b37434e58626f7c86929fa4aca399928b837f7b797777767777797c80858e939da4aea49a92857a6d61564c4135291d1105000000000000000000000713202d3a4653606d7984919ea9a99d9083766b61574d45403c3b3a3a3b3c40454c56606c7884919eaaa89d9184776a5f53473a2e2115080000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000004101c2834404b54616e7b87939facac9f93877d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d85929fabaca095897c6f63564c4135291d11040000000000000000000000000000000000000000000a141d2c38444f5965727f8c99a3a99c8f8276695f5346382d22170b0000000000000000000000000000000000000000000714212d3a4754606d7a86929faba69a8d8074685d52433a2f20170d000000000000000000000000000000000000000000010d1925303a47535f6a7683909cacaa9d9184776a5f53473a2e21150a00000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c000000000000000000000000000000000000000000000000000005111d2a36414c5664707d8a97a1adac9e9184786c605346392f24180c000000000000000000000000000000000000030f1b27333f4953616c76828f97a2ababa399928c847f7b79787778797b7f838a9197968e817d8996a3afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000000010b151f2b343e485059616a6e787e858a8f9299999b9d9e9f9f9f9e9e9c9998928e8684919daab0a69a8d8073665c5044382b1c110600000000000000030b17232e38424c565e686d79818990959b9fa2aaa39f9d9b9a9a9b9c9ea1a9a49f9c97928c837b706b60594f453b30241a10000000000000000000000713202d3946525e6875828f9ba9ac9f92867a6e6154473c31262a36424d5766737f8c99a7ab9e9184786c605346392f24180c0000000000000000030f1b26323c47535f6a717e8b939aa2aaa39f95918c8886848483838485898c92979ea5aaa39f93887d70685e52443a3024190d0100000000000000000000091623303c4956636f7c8996a1adab988b7f7265594f453c352f2e2d2d2e2e343b44505b6674808d9aa7aca095887b6f6255483c2f2215090000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000c18232e3946535f6976828f9ca9afa499938a89898989898989898989898989898989898989898989898989899297a2adaa9d9084776b6054443a2f24190d01000000000000000000000000000000000000000000020b1c27333d4754616d7a86929fac9f93877b6e6153493f33271b0f030000000000000000000000000000000000000006131f2b37434e5865727f8c98a2ab9f94887b6e62564c4131281e0e050000000000000000000000000000000000000000000008131e2b37434e5865727f8b9aa4aca095887b6f6255483c32261b0f03000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000000000713202d3946525e6875828f9ba9b3aca196897c6f63554b4035291d1004000000000000000000000000000000000005121f2b3744505b65717e8a949fa9aea39992877f78726e6c666b666d6f72777e859095938c7f8c99a6afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000000000000030d19222c363e474f575f666d72797e82868a8c8e909192929292918f8d8a86817c838f9ca9aa9e93887b6e62544a3f34281c0a00000000000000000006111c26303a444c565e676d747c83898e9298999b9d9e9f9f9f9f9e9d9b999993908b857f786e6960594f473d33291f1208000000000000000000000714212e3a4754616d7a86929facaa9c8f8276685e5246392a2025313b4855626e7b8895a0aca196897d7063554b4035291d100400000000000000000a15202b37434e58616c727f8892989fa3a7a09d99999291909090919298999ea2a9a69f98928b7f726c61564c4132281e130800000000000000000000000c1926333f4c5966727f8c99a8afa499887b6e6255483e332924212020212328333f4a5464717d8a97a4b1a7988b7e7265584b3f3225180c0000000000000000000203101d2a3643505d69768390908376695d5043362a1d10030200000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000007121d2a36424d5764707d8a96a1adaba49f9796969696969696969696969696969696969696969696969696969fa2a9aea2988b7f7265594f4332281e130800000000000000000000000000000000000000000000000b13202d3a4653606d7985929eaba49a8c8073655b5044372b1f1207000000000000000000000000000000000000000815212e3b47535f6a7784919daaac9c8f83766a5f53443a301f160c0000000000000000000000000000000000000000000000020f1a26313c4754616e7b87939faca7998c807366584e43372b1f1306000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9b2a89a8e8174675d5145382c1f140800000000000000000000000000000000000613202d394653606c7883909da6b0a79f92877d726d6662605b545c6062656c717a8390969285929facafa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000000000007101a232c353e454e545c60676d71767a7d7f828385858686858482807d79757d89949faba69b8f82756a5f5342382e23170b000000000000000000000a141e28323a444c555c606b6f777d8185898c8e90919292929291908f8d8a86837e79726d665f574f473d352b20170d0000000000000000000006131f2b37434e5865727f8b99a3aea2988b7e7164564c41362a18212e3a47535f6a7784919daaa89b8e8174675d5145392c1f14090000000000000000040f1a26313c46505a636d727e868e92999da0a8aba39f9e9d9c9d9e9fa2aaaaa29f9b948f867e726d62594f443a3020160c0200000000000000000000020f1c2935424f5c6875828f9ba8ac9f9386796c605346392d20181413141418222d3c4956626f7c8995a2afa79a8e8174675b4e4134281b0e01000000000000050a0f12101d2a3643505d69768390908376695d5043362a1d10120f0a050000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000305101d2a3643505d69768390908376695d5043362a1d1005030000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000e1a26313b4653606d7984919eabb5afaca3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3abadb3ac9f92867a6d6054473d3221160c010000000000000000000000000000000000000000000005111d2a36414c5664707d8a97a1adac9e9184786c605346392f24180c000000000000000000000000000000000000000916222f3c4955626f7c8896a0aca49a8b7e7265574e4232281e0d040000000000000000000000000000000000000000000000000a15202d3a46525e697683909da9aa9e9184776a5f54473b2e221506000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000000006131f2b37434e5865727f8c99a3aeb7b8ab9f9285796d6053473b3025190e02000000000000000000000000000000030f1c28333f4a5463707c8995a0acab9f958b7f726b605c5453504a5153555a61686e7a8491989298a2aeafa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0600000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000000000000000008111a232c333c424a50555c6064676d707375767878797978777673716d7883909da6ac9e93887c6f62584e4330261c110600000000000000000000020c162029323a434b515960636b7075797c7f82838485868685858382807d7a76726d67605c544d453d352b23190e05000000000000000000000815222e3b47545f6a7783909dabac9f92867a6d6054473b3025191e2b37424e576673808c99a8ab9f9285796d6053473b3025190e0200000000000000000a15202a343e48515b636c717b81878c919597999c9d9e9e9f9f9f9e9d9b9998928e89827b716c625b51473e32281e0e04000000000000000000000003101d2a3643505d697683909ca9ab9e928578665b5044382b1f120707070715222e3b4855616e7b8894a1aea89b8f8275685c4f4235291c0f0200000000010910161b1e20202a3643505d69768390908376695d5043362a20201e1b16100901000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000060b0f12131d2a3643505d69768390908376695d5043362a1d13120f0b06000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000009141f2c3844505c6673808c99a3afbbb9b1acaa9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa7a9afb8bab1a79b8e8174685d5245392c20130400000000000000000000000000000000000000000000000713202d3946525e6875828f9ba9b3aca196897c6f63554b4035291d1004000000000000000000000000000000000006131f2b37434e586673808d99a8ac9f93877b6e6154473c3121160c0000000000000000000000000000000000000000000000000005111e2a36424d5765727f8c98a9aca096887c6f6255493c2d22170b000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c000000000000000000000000000000000000000000000000000815222e3b4754606a7783909dabacababaea2988a7e7164564c41362a1e110500000000000000000000000000000006121f2b3844505b6674818e9ba7b1a99d9083786c6059504a46444044464850565e68707d89939fa2aab4afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0aca79a8d8174675a4e412d22170b00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00000000000000000008111a212a30383f444b5153555d606366686a6b6c6c6c6b6b696668717e8b95a0aca49a8f82756a5f54463c311e140a000000000000000000000000050e172029313940454f54596063676d70727576787879797878777573706d6865605d55504a423c332b231911070000000000000000000004101c2834404b55626f7c8895a0aca99b8e8175675d514539291e141a26313c4955626f7c8896a0aca2988a7e7164564d42362a1e11050000000000000000030e18222d363f49515a61696e747b8084888b8d8f90919292929291908e8c8985817c766e69615a51493f352c20160c00000000000000000000000004111e2b3744515e6a7784919daaab9e9184786b554b4034281c100400000814212e3b4754616e7a8794a1ada99c908376695d5043362a1d1003000000010a131b21272b2d2d2d3643505d69768390908376695d5043362d2d2d2b27211b130a010000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000020a11171b1f202a2d3643505d69768390908376695d5043362d2a201f1b17110a0200000000000000000000000000101d2a3643505d69768390908376695d5043362a1d10000000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87929facb9b1a7a0939393939393939393939393939393939393939393939b9ea5afb8aca095897c6f63564c4135291d110400000000000000000000000000000000000000000000000714212e3a4754616d7a86929facb9b2a89a8e8174675d5145382c1f140800000000000000000000000000000000000815222e3b4754606a7784919eaaa99c908376685e5246392d20140400000000000000000000000000000000000000000000000000020e1a25303b4855616e7b8896a1ada8998c7f7366544a3f33281c0f030000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000004101c2834404b55626f7c8895a0a8a19e9fa2aa9c8f8275685e5246392d20150a0000000000000000000000000000000613202d394653606c7985929eabada1978a7d70655b50443f393834383a3e444c56606b75828f9ba8b1bcafa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0aca89b8e827568544a3f33281c0f03000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000000000000000000030e1a242f3841474c4e4c474c515457595b5d5e5f5f5f5f5e59616d7a85929ea7a89f93877c6f62584e43342a200c0200000000000000000000000000050e171f272f343d43484f54555c606366686a6b6c6c6c6c6b6a686664615e5653514b443f38302a21191108000000000000000000000006131f2c3845515c6774808d9aa7ada1978a7d7063554b413529170d15212e3b47535f6a7784919eaaaa9c8f8276695e52463a2d20150a00000000000000000006101b242e373f4850575e61696e73777b7e80828484858686858583827f7d79756f6b625f5750483f372d231a0e0400000000000000000000000004111e2b3744515e6a7784919daaab9f928578675c5145382c1f130f0b0c1015222f3b4855626e7b8895a1aea99c8f8376695c504336291d100300000009131c252c33373939393943505d69768390908376695d50433939393937332c251c13090000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000020b141b22272b2d37393943505d69768390908376695d50433939372d2b27221b140b0200000000000000000000000811192a3643505d69768390908376695d5043362a1911080000000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000c17232e3846525e6975828f9ca8b2aca095898686868686868686868686868686868686868686868e939ea9b4aa9d9084776b6054443a2f24190d010000000000000000000000000000000000000000000006131f2b37434e5865727f8c99a3aeb7b8ab9f9285796d6053473b3025190e02000000000000000000000000000000000916222f3c4955626f7c8896a0aca8988c7f7265564d41362a1e110500000000000000000000000000000000000000000000000000000914212d3a46535f697884919eaba99c8f8276665b5044382b1f12060000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000006131f2c3845515c6774808d9aa7a196919298a29f92867a6e6154473c31261b0f0000000000000000000000000000000916222f3c4955626f7c8897a1adab9e9285796d6053493f342e2b282c2d323b444f59626f7c8995a0acb8afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0aca99c8f8376665b5044382b1f120700091623303c4956636f7c8996a2afa4988b7e7165584b3e3225180b00000000000000000008141f2b36414a52585a5954524c474a4c4f50525253534c56616b74818e97a1ada1968d81746a5f54463c3222180e000000000000000000000000000000050d151d232932383d44484b515356595b5d5e5f5f5f5a61646c6c6c6c66635c524739342e261e180f080000000000000000000000000713202d3a4653606d7985929eabab9e9285796d6053463a2f241807131f2b37434e586773808d9aa8ac9f93877b6e6154473c32261b0f0000000000000000000009121c252e363e454d52575f62666a6e71737577787879797978777573706d67636059534d453e362d251b11080000000000000000000000000003101d2a3643505d697683909ca9aea29886796d6053463a2f241f1c17181c1f262f3d495663707c8996a3afa89b8f8275685c4f4235291c0f02000005101b252e373e434646464646505d69768390908376695d504646464646433e372e251b100500000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000a141d262d33373943464646505d69768390908376695d50464646433937332d261d140a0000000000000000000009111a232b3443505d69768390908376695d5043342b231a110900000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000006111c2a36424d5763707d8a96a1acaa9d9083797979797979797979797979797979797979797979818e9ba7aea2988b7f7265594f4332281e130800000000000000000000000000000000000000000000000815222e3b4754606a7783909dabacababaea2988a7e7164564c41362a1e110500000000000000000000000000000003101c28343f4a546673808c99a8ada196887b6e6155483b3025190e02000000000000000000000000000000000000000000000000000005121e2a36424d576875828f9ba8ab9f9285796c605346392d2013060000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000000000713202d3a4653606d7985929fab9e918485929fa3998c7f7265584e43372b1c110600000000000000000000000000000c1926323f4c5965727f8c98a9b3a89b8e8175665c5041382d231f1c1f2029323d4854606a7784919daab7afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0acab9f9285796c605346392e23180d060a1723303d4a5663707d8996a3b0a4978b7e7164584b3e3125180b0000000000000000000b1724303c47525c646766615e56544e46454045453f49535d68707d8a939da9a59e91847a6d60584e43342a200f0600000000000000000000000000000000030b121821272c323839404546494c4f50514a505b636c7079797979736e63574b3f32231c150c0600000000000000000000000005111e2a36424d5664717d8a97a2ada89a8d8174665c514438281d13070f1b26323c4956626f7c8996a1ada4998c7f7265584e43372b1c1106000000000000000000000a131c242c333b42464d5355575f626466696a6b6b6c6c6c6b6a686663605d55544f47423c332d241b13090000000000000000000000000000020e1b2835414e5b6874818e9ba7b3aa96897c6f63554b40352f2b282223282c3038414e5865727f8c98a5b5ab9a8d8073675a4d4034271a0d0100000a16212c3740494f5353535353535d69768390908376695d5353535353534f4940372c21160a00000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000006111b262f383f444650535353535d69768390908376695d535353535046443f382f261b1106000000000000000006121b232c353d464e576976839090837669574e463d352c231b1206000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000e1a25303b4653606c7884919eabaca095897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d7a86929facac9f92867a6d6054473d3221160c010000000000000000000000000000000000000000000004101c2834404b55626f7c8895a0a8a19e9fa2aa9c8f8275685e5246392d20150a00000000000000000000000000000006121f2b3844505c6676828f9ca9ab9e918478695f53463a2d1f1408000000000000000000000000000000000000000000000000000000020e1a26313f4c5965727f8c98abaea298887c6f6255483c2f2215090000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c000000000000000000000000000000000000000000000005111e2a36424d5764717e8a97a2a99a8d80818e9baa9d9083776a5f5347382e23170b00000000000000000000000000020f1b2835424e5b6875818e9ba8b5ab988b7e7165544a3f2f261b12101217202c38434e586673808d99abb5afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0acada297887c6f62544a4034281f1612101724313e4a5764717d8a97a4b0a4978a7e7164574b3e3124180b0000000000000000000d1a2633404c58646e74736e6862605853514b464244505b656d7a84919ea5a79e938a7d70675d51463c3222190e00000000000000000000000000000000000001070c161b21272c2e34383a3d3f42444c545c606d727e868686868073665a4d4033271a0a03000000000000000000000000000714202d3a46525e6975828f9ca9aca096897c6f63544a403428160c010a13202d394653606c7884919eabab9d9084776a5f5347382e23170c00000000000000000000010a121a212930363c4247484e5355585a5c5d5e5f5f5f5f5e5d5b595653514b48433d37312a211b1209010000000000000000000000000000000c1925323f4c5865727f8b98a7b1a6998c8073675d5145403938332d2e34383a4149535f6a76828f9ca9afa4998a7e7164574b3e3124180b0000000f1b27333e49525a5f60606060606069768390908376696060606060605f5a52493e33271b0f00000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000b17222d38414950535d6060606060697683909083766960606060605d53504941382d22170b000000000000020a1117242d363e474f585f69768390908376695f584f473e362d2417110a0200000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000009141f2b3844505b66727f8c99a3aea79a8d8174675c606060606060606060606060605765717e8b98a2aea79b8e8174685d5245392c201304000000000000000000000000000000000000000000000006131f2c3845515c6774808d9aa7a196919298a29f92867a6e6154473c31261b0f0000000000000000000000000000000713202d3a4653606d7985929faba89b8e827568574d42362a1e0d0200000000000000000000000000000000000000000000000000000000091623303c4956636f7c8999a3aeaa988b7e7265584b3f322518070000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000714202d3a46525e6976828f9ca9a297897d7d8a98a2a095887c6f62544a3f34281c100300000000000000000000000005111d2a36414c566a7784909daaafa499887c6f6255483c2e22140a04060e1b27323d495663707c8999a4afafa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0acb3a9998c7f73665c51443b3128201f1c1f25323f4c5865727f8b98a5b0a3968a7d7063574a3d3024170a0000000000000000010e1b2734414e5a6774807f7a756f6a64605c55524d505a606c77828f96a1a9a0958e81756b61554c41342a2010070000000000000000000000000000000000000000040a0f161b1d23282c2d343d454d565d666d747f87929892857b6e6154473b2e21140800000000000000000000000000000814212e3b4754616e7b86929facaa9e9184776b605442392e2318040005121f2b3744505b6574808d9aa9aca095887c6f62544a3f34281c10030000000000000000000000080f171f252a31373a3c4247484b4d4f51515253535252504f4c4a4745403938322b2620180f0900000000000000000000000000000000000815222f3b4855626e7b88959fabab9e9185796d605a514b46443f42424045464c525b656e7b87939facac9f93867a6e6154473b2e211408000000121e2b37434f5a646c6c6c6c6c6c6c6c7683909083766c6c6c6c6c6c6c6c645a4f43372b1e1200000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000030f1b27333f49535b606a6c6c6c6c6c6c7683909083766c6c6c6c6c6c6a605b53493f33271b0f0300000000020b141b2227363f485059606a6f7b859191857b6f6a605950483f3627221b140b02000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54616e7a86929facab9f9285796d60535353535353535353535353535f697683909caaaca095897c6f63564c4135291d110400000000000000000000000000000000000000000000000713202d3a4653606d7985929fab9e918485929fa3998c7f7265584e43372b1c110600000000000000000000000000000916222f3c4955626f7c8898a2aeab988c7f7265594c3f31261a0e02000000000000000000000000000000000000000000000000000000000714202d3a4753606d7986929faca79b8e8174685b4e412e23180c0000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000814212e3b4754616e7b87939fab9e9285797985929fa79a8d8073665c5044382b1f13070000000000000000000000000713202d3946525e687985929facac9f93867a6d6053473a2d20140700000a14202d3a4753606d7a86939facafa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0acb8ab9e9184796d60574d433a322d2c282b2d36414c566774808d9aa7b3aa95897c6f6256493c2f2316090000000000000000020f1c2935424f5c6875828c86817c76716d67615e5759616c727f8c949ea9a2979083796d60594f433a2f22190e0000000000000000000000000000000000000000000000040b0c151d2328363e464f575f686d78818c939993877d70695e52463a2d2014070000000000000000000000000007131f2c38434f5966727f8c99a3afa7998c807366594f4330271c120700030f1b27333f495363707c8997a1ada79a8d8074665c5044382c1f1206000000000000000000000000050d141a1f262b2e31373a3b3e4042444545464646454442403d3a38352f2c27211a150e060000000000000000000000000000000000000814212e3a47535f6a7683909da6ada1978c80736c605c5553504a4e4f4b5153565d616c77828f99a4afa69c8f8276685e5246392d20140700000013202d3946535f6c767979797979797979839090837979797979797979766c5f5346392d201300000000000000000000101d2a3643505d69768390908376695d5043362a1d0a0000000000000000000005121f2b3744505b656c76797979797979798390908379797979797979766c655b5044372b1f1205000000000a141d262d334048505a616b6f7c8591979791857c6f6b615a504840332d261d140a000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000b17222d3846525e6875828e9ba8ada2978a7e7164574d42464646464646463f4a54626e7b88949fabaa9d9084776b6054443a2f24190d010000000000000000000000000000000000000000000005111e2a36424d5764717e8a97a2a99a8d80818e9baa9d9083776a5f5347382e23170b00000000000000000000000000000c1825323f4b5865727e8b98aaaea399897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000006131f2c3845515c677784919eaaa99c90837669554b4034281c100400111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000007131f2c38434f5966727f8c99a4aa9b8e817475818e9baa9e9184796d6053463a2f24180d0100000000000000000000000714212e3a4754616d7a8798a2aeab9e918478675c5145382c1f1306000006131f2c3945515d677784919eaaafa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0acb9ada1968b7e71695e554c443e3a383437393e46525e687683909ca9aea298877a6e6154473b2e2114080000000000000000020f1c2935424f5c6875828f928e89837e79736e6963606b707e88939fa6a39992857b6e675d51473e31281e10070000000000000000000000000000000000000000000000060e161e272e344048505960696e7a828e939f948c7f736b60574d42362a1e1105000000000000000000000000000915222f3b4854606b7784919d9f9f9f95887b6e6255483d3222150b0000000b17222d3a4653606d7985929e9f9f9e9185796d6053463a2d2013070000000000000000000000000002090e151a1e21262b2e2f31333637383839393938373533302d2c29241d1b160e09030000000000000000000000000000000000000006121e2b37424e5764707d8a949fa9a99c928b7e746d6762605b545b5b555c6062686d75808d949eaba99e94897d7063564c41362a1e110500000013202d394653606c798686868686868686909494908686868686868686796c605346392d2013000000000000000000020b142a3643505d69768390908376695d504331261a0b020000000000000000000613202d394653606c798386868686868686909494908686868686868683796c605346392d20130600000006111b262f383f44515a626c707d8591938e8e9391857d706c625a51443f382f261b11060000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000006111c2a36414c5663707d8996a0aca99c8f8276695e5246382d393939393844505c6673808d99a6aea2988b7f7265594f4332281e130800000000000000000000000000000000000000000000000714202d3a46525e6976828f9ca9a297897d7d8a98a2a095887c6f62544a3f34281c1003000000000000000000000000020e1b2835414e5b6874818e9ba7ac9f9286796d6053473a2d201407000000000000000000000000000000000000000000000000000000000004101c2934404b556976828f9ca9ab9e918478675c5145382c1f130600111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c000000000000000000000000000000000000000000000915222f3b4854606b7784919eaba2988a7d70707d8a98a2a197897d7063554b4135291d110400000000000000000000000915222f3c4855626f7b8895aab4a99d9083766a554b4034291c1004000004101d2935404b556976828f9ca9afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0acb1a8a09d92857b6e675e56504846443f4446484f58616d7a86929facab9f928578695e52463a2d2014070000000000000000020f1c2935424f5c6875828f999b95908b85807b756f6b6f7d86929aa4a49f92877d70695f554b41352c1f160c0000000000000000000000000000000000000000000000070f18202830394045525a616b6f7b838f949d968f82776c60594f453b30251a0e0200000000000000000000000000091623303c4956636f7c8996939393939083776a5f53473a2e21140300000006121f2b3844505c6674818e93939393978a7d7063574a3d3024170a00000000000000000000000000000003090e12151a1e21222527292a2b2c2c2c2c2b2a282623201f1d18120f0a04000000000000000000000000000000000000000000020e1a26313c4955616c76828f97a1aaa49f93888079736f6c6669686869676d6f747a818d929ca6aaa1978f82766b6055443b3025190e0200000013202d394653606c798693939393939393969696969393939393939386796c605346392d20130000000000000000000a141d2b37434e586976839090837669584e43372b1d140a00000000000000000005121f2b3744505b656f7c899393939393939c9f9f9c939393939393897c6f655b5044372b1f12050000000b17222d384149505b636c717e8692928c81818c9292867e716c635b504941382d22170b0000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000d1925303b4854606b7784919daaac9f93877b6e6153493f33272d2d2d3a4653606d7984919eabac9f92867a6d6054473d3221160c0100000000000000000000000000000000000000000000000814212e3b4754616e7b87939fab9e9285797985929fa79a8d8073665c5044382b1f130700000000000000000000000004101c2934404b55697683909ca9aa9e918477675c5145382c1f13060000000000000000000000000000000000000000000000000000000000000c18232f414e5b6774818e9aa7ac9f9386796d6053463a2d20130700111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000000000000000004101d2935404b55636f7c8996a0ab9f9285796d6d7985929fa99b8e8175675d5145392c20140900000000000000000000000a1623303d495663707c8996a3afa89c8f8275695c4f422f23180c000000000c18242f414e5a6774818d9aa7afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508000000000000000000000713202d3a4653606d798693a0acaca09591959082796d68615a5553504a50535459616a73808c99a3afa99c8f827669564d42362a1e11050000000000000000000d1a2633404d59667380878c91979c97928c86827c777c859298a2a49a938b7f726b60574d433a2f231a0d0400000000000000000000000000000000000000000000071019212a323a434b515b636c717d8591959f9991847a6d655b50473d33291f140900000000000000000000000000000e1b2834414e5b677481868686868686867f7265574e42372b1e120600000003101c28343f4a5463707d868686868686868175685b4f4235281c0f00000000000000000000000000000000000206090e121415181a1c1e1e1f20201f1f1d1c19171413100c07010000000000000000000000000000000000000000000000000915202d3944505a616e7b859298a1a9a49a938d85807b79767575757677797c81858e939ca4a9a19892857b6e61594f4432291e14080000000013202d394653606c798693928d8989898989898989898989898d929386796c605346392d2013000000000000000006111b262f3847535f6a7683909083766a5f53473d2f261b11060000000000000000030f1b27333f4953606b75828f99a39f9f9fa9ababa99f9f9fa3998f82756b6053493f33271b0f030000030f1b27333f49535b606d737e8792928b807474808b9292877e736d605b53493f33271b0f0300000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000008141e2c38444f5965727f8c98a3aea4998c7f73655b5044372b1f2a36414c5663707d8a97a1ada79b8e8174685d5245392c201304000000000000000000000000000000000000000000000007131f2c38434f5966727f8c99a4aa9b8e817475818e9baa9e9184796d6053463a2f24180d01000000000000000000000006131f2c3845515c677885919eaba99c8f827669554b4034291c1004000000000000000000000000000000000000000000000000000000000000071926333f4c5966727f8c99a5afa49a887b6e6255483b2f22150800111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000613202c3945515d6774818e9aa8aa9b8e8175676775818e9baa9f92867a6d6054473b31251a0e02000000000000000000000a1724313d4a5764707d8a97a3b0a89b8e8175685b4e4235281b0700000000071a2633404d596673808c99a6afa295887c6f6255493c2f2216090000000000000c1925323f4c5865727f8b98a5aea194887b6e6155483b2e221508080400000000000000000713202d3a4653606d798693a0acaa9d9184919590837a716c6662605c545b6061646b707c87929fabb0a6998c7f7266594c3f3025190e020000000000000000000c1926323f4b57636e737b80858a90949a99928e8984869297a2a49a93887f726d62594f453b3128221c140b020000000000000000000000000000000000000000040f19222b333c444c555c606d737e869297a09f92877c6f685d53493f352b20170d0200000000000000000000000000000d1a2733404c59646f7479797979797979726d6256453c31261a0e02000000000b17232e384855616b7079797979797979756f65594d4034271b0e0000000000000000000000000000000000000000020608080b0d0f11121213131312110f0d0a07060400000000000000000000000000000000000000000000000000000003101c28333e46525e696f7c8692979fa6a49f97918c888583828182828386898d92989ea5a69f9792867c6f695e52473d3320170d020000000013202d394653606c7986938d807d7d7d7d7d7d7d7d7d7d7d7d808d9386796c605346392d201300000000000000000b17222d38414f59626f7c879292877c6f62594f41382d22170b0000000000000000000b17222d38414f59616e7b86929fa9b3acb6b7b7b6acb3a99f92867b6e61594f41382d22170b00000005121f2b3744505b656c747f8b9292877e736d6d737e8792928b7f746c655b5044372b1f120500000b1825323e4b5865717e8b98a4aca295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000002101c27333d4754616d7a86929facab9e9184786c6053463a2f242d3946525e6875828f9ba9aca095897c6f63564c4135291d110400000000000000000000000000000000000000000000000915222f3b4854606b7784919eaba2988a7d70707d8a98a2a197897d7063554b4135291d110400000000000000000000000714202d3a4753606d7a86939faca79a8e8174675b4e412f23180c000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b6ac96897d7063564a3d3023170a00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000000000000000714202d3a4753606d7a85929faca3988a7d716464707d8a98a2a2988b7e7165574d42362a1e1205000000000000000000000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e010000000c1926323f4c5965727f8c98a5afa295887c6f6255493c2f2216090000000000050c1925323f4c5865727f8b98a5aea194887b6e6155483b2e22171614100b050000000000000713202d3a4653606d798693a0aca4978a7e85929590847e77726f6d666b656c6e71767d859299a3aeac9f94887b6e6155483b2e221509000000000000000000000a17232f3b47525c63696e73797e83888d92989b95909298a2a99f93887f726d625b514c47433c332d261d140a00000000000000000000000000000000000000000a16212b343d454d565e676d757f8a9298a19e938b7f726a60564c41382d23190e050000000000000000000000000000000b1824303c48535d64676c6c6c6c6c6c6c65625b5146332a201509000000000006111c2c38444f5961636c6c6c6c6c6c6c68655d53483d3125180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222a36424d57606a6f7c858f949ea1a8a19e999892908f8e8e8f9092999a9fa2a8a09e948f857c6f6a60564d42352c210e05000000000013202d394653606c7986938b7e7270707070707070707070727e8b9386796c605346392d201300000000000000030f1b27333f4953606b75828f99998f82756b6053493f33271d1207000000000000000006111b262f3d46535f6974808d97a2adbac3c4c4c3b9ada2978d8073695f53473d2f261b11060000000613202d394653606c77808c9192867d716c63636c717d8692918c80776c605346392d20130600000b1825323e4b5865717e8b989f9f9f95897c6f6256493c2f23160900000d1a2733404d5a6673808d999f9f9f9386796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000b16202d3946525d6875818e9ba7aca096897c7063554b4135292e3a4754616d7a86929facaa9d9084776b6054443a2f24190d010000000000000000000000000000000000000000000004101d2935404b55636f7c8996a0ab9f9285796d6d7985929fa99b8e8175675d5145392c20140900000000000000000000000815222f3b4855626e7b889aa4afa5998c7f7266594c3f3326190700000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afa4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c000000000000000000000000000000000000000005121e2a36424d5764717e8b98a2ac9f92867a6d60606d7985929faa9c8f8376695e53463a2d21160a000000000000000000000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e010000000c1825323f4b5865727e8b98a5afa295887c6f6255493c2f221609000000000810171c25323f4c5865727f8b98a5aea194887b6e6155483b2e262423201c17100800000000000713202d3a4653606d798693a0aca4978a7e7e8b9296918a837f7b79787778797b7e828a9297a2abafa49a8f8276695f53473a2d2114080000000000000000000007131f2a35404a52575e61666d71767c81869196a09d9fa2aaa6998c8075706b65605d55534e443f382f261c1106000000000000000000000000000000000000030f1b27323d464e575f686d79818c929fa3a0958e81756d62584e443a2f261b1108000000000000000000000000000000000814202b36414a53595b60606060606060595651493f3521180e03000000000000101c28333e474f5557606060606060605b59534b41372c2014080000000000000000000000000000000000000000000000000406070a0d0f11121313131212100e0c0906060300000000000000000000000000000000000000000000000000050e1a25303b454e58606a6f7b828b91969c9fa3aaa29f9d9c9b9b9c9d9fa3aba39f9b96918a827b6f6a60584e443b30231a0f00000000000013202d394653606c7986938b7e7265636363636363636365727e8b9386796c605346392d2013000000000000010c161f2b3744505b65707d89949e9e94897d70655b5044392e23180c0100000000000000000a141d2b37424d57606d7a85929fa8b2bdc8c8bdb2a89e92857a6d60574d42352b1d140a000000020f1b2835424e5b6875818d9292857c706b625a5a626b707c8592928d8175685b4e4235281b0f02000b1825323e4b5865717e8b9393939393897c6f6256493c2f2316110b0b101a2733404d5a6673808d939393939386796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000005111d2935414c56636f7c8995a0aca89b8e8174675d5145392c37434e5865727f8b99a3aea2988b7f7265594f4332281e130800000000000000000000000000000000000000000000000613202c3945515d6774818e9aa8aa9b8e8175676775818e9baa9f92867a6d6054473b31251a0e02000000000000000000000a1724303d4a5763707d8a96acb6a4978a7e7164574b3e3124180b000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afa5988b7e7265584b3f3225180c00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000000000000000714212d3a46535f6976838f9caaaa9b8f8275675d5d6775828e9baa9f93877b6e6154483d32271b0f000000000000000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e010000000b1825323e4b5865717e8b98a4afa295887c6f6255493c2f22160900000008121a22282d323f4c5865727f8b98a5aea194887b6e6155483b333331302d28221a1108000000000713202d3a4653606d798693a0aca4978b7e74818e949e95908c888685848585878b8f949fa2a9aea59f93877c6f62574d42372b1e120600000000000000000000020e19242e3840454d52545c60646a6f747b84919eaba39f9da09f9287827d77726d67625f58504a42382d22170b00000000000000000000000000000000000007131f2c38434e5860696e7a828e939ca4a2989183796d605b51463d32281d140a0000000000000000000000000000000000030f1a252f3841484c4e535353535353534c4a463f372d230f06000000000000000b16212c353e44484a535353535353534f4d4841392f251a0f0400000000000000000000000000000000000000000001070c10131416191c1d1f1f20201f1e1d1b191613120f0b0600000000000000000000000000000000000000000000000009141f29333d464e5860696e767e848a8f9299999b9d9e9f9f9f9f9e9d9b9999928f8a847e766e6960584e463d32291f110800000000000013202d394653606c7986938b7e7265585656565656565865727e8b9386796c605346392d201300000000000008131e2834404b54606c7883909da6a69d9083786c60544b4034281e13080000000000000000020b1a26313c45525d68727f8c96a0acb9c2c7b8aca0968b7f72685d52453b3123190b02000000000b1724313e4a5764717e869293877f746d665d5d666d747f879392867e7064574a3d3124170a00000b1825323e4b5865717e868686868686867c6f6256493c2f23221d16161b202733404d5a66738086868686868686786d6053463a2d20130700000000000000000000000000000000000000000000000000000000000000000000010d1924303a4854606b7783909daaac9f92857a6d6054473c313b4754606a7783909dabac9f92867a6d6054473d3221160c0100000000000000000000000000000000000000000000000714202d3a4753606d7a85929faca3988a7d716464707d8a98a2a2988b7e7165574d42362a1e1205000000000000000000000b1825313e4b5864717e8b97a4afa296897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a1aea5988c7f7265594c3f3226190c00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000000000000030f1c28333f4a54616e7b87939faca2988a7e7164555564717e8a98a3a49a8c7f7366584e43372b1d12070000000000000000000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e010000000b1825323e4b5865717e8b98a4afa295887c6f6255493c2f221609000005101a242c33393c3f4c5865727f8b98a5aea194887b6e6155484040403d3c39332c231a10050000000713202d3a4653606d798693a0aca5988b7e7278828e939f9d999a939291919298979c9fa6adaba39f938d80736a6054453c31261a0e0200000000000000000000030e18212a31373e434b51575e666c727c849196a1a0999290959b99928f89847f7a746f6a605b544a3f33281c0f0300000000000000000000000000000000000915222e3b4854606a6f7b8490949ea5a49f92867c6e675d51493f342b20160b0200000000000000000000000000000000000008131d262f363c4041464646464646463f3e3a352d251b11000000000000000005101a232c33383c3d4646464646464642403d372f271e13090000000000000000000000000000000000000000040a0f12181c1f202326282a2b2c2c2c2c2b2a282523201f1c17110f0a03000000000000000000000000000000000000000000020d17212b343d464e565e616c71787e82868a8c8f90919292929291908e8c8986827d78716c615e574e463d342b20170d0000000000000013202d394653606c7986938b7e7265584b4a4a4a4a4b5865727e8b9386796c605346392d20130000000000010d19242f3845515c66717e8a959fabab9f958a7e71665c51453a2f24190d02000000000000000009141f2935414c56606d7984919ea6b0bebeb0a69e9184796d60564c41332a1f100700000000000a1623303c4955616c717d8692938c80786d67676d78808c9392867d706c6155493c3023160a00000b1724313d4a56626c71797979797979796f6a6054473b36332e272021272c2f303f4b58636e737979797979797976665c5044382c1f1206000000000000000000000000000000000000000000000000000000000000000000000008131e2c38434f5965727f8b98a2aea2988b7e7165574d4237404b55626f7c8895a0aca79b8e8174685d5245392c201304000000000000000000000000000000000000000000000005121e2a36424d5764717e8b98a2ac9f92867a6d60606d7985929faa9c8f8376695e53463a2d21160a000000000000000000000c1825323f4b5865727e8b98a5afa295887c6f6255493c2f221609000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aea6998c7f7366594c403326190d00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000000000006121f2b3844505b6673808c9aa4ac9f92867a6d605454606d7a86929fac9d9184776a605447392e23180c0000000000000000000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e010000000c1825323f4b5865727e8b98a5afa295887c6f6255493c2f22160900000c17222c363e45494a4d5865727f8b98a5aea194887b6e61554d4d4d4d4a49443e362c22170b0000000713202d3a4653606d798693a0aca5988b7f726d78818b92989fa29f9e9e9e9fa3aaa9a9aaa29f99928b81786d60584e43332a1f1509000000000000000000000009151f2a333c42474f555c60696e787f879196a09f95918684898e92989b95918b85817c766c665b5044382b1f120600000000000000000000000000000000000916232f3c4956626f7c85919693939393928a7e716a5f554b40372d22190e0400000000000000000000000000000000000000010b141d252b3033343939393939393932312e29231b130900000000000000000008111a21282c2f30393939393939393534312c251e150c02000000000000000000000000000000000000040a0f161b1d23292c2d303335373839393939383635322f2d2b28221c1b150e09030000000000000000000000000000000000000000050f19222b343c444d525a61666d71757a7d80828385858686858483827f7d7a75716d66615a524d453d342b22190e050000000000000013202d394653606c7986938b7e7265584b3f3d3d3f4b5865727e8b9386796c605346392d2013000000000004111d2935414c56606d7984919ea7b1b1a79e9184796d60564c4135291f14090000000000000000030d1924303a44515c66707d8a949facb6b6ac9f948a7d70665c51443a3021180e0000000000000814212d3944505a616b707c8591928d82796e6e79828e9291857c706b615a5044392d20140800000915212e3a45505a62656c6c6c6c6c6c6c6260584e4344433f3932292b32383b3d4647525c63666c6c6c6c6c6c6c6c5c544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000020f1b27323d4754606d7a86929facaa9c908376695f53473845515c6774808d9aa7aca095897c6f63564c4135291d110400000000000000000000000000000000000000000000000714212d3a46535f6976838f9caaaa9b8f8275675d5d6775828e9baa9f93877b6e6154483d32271b0f000000000000000000000c1926323f4c5965727f8c98a5aea195887b6e6255483b2f221508000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8794a0ada6998d8073665a4d4033271a0d00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c000000000000000000000000000000000000000613202d394653606c7884919eaca99b8e8175675d51515d6775828f9caba096897c6f62544b4034281c100400000000000000000a1724303d4a5763707d8a96a3b0a89b8e8175685b4e4235281b07000000000c1926323f4c5965727f8c98a5afa295887c6f6255493c2f2216090005111c28333e48505557595965727f8b98a5aea194887b6e615959595959575550483e33281c100400000713202d3a4653606d798693a0aca5998c7f72666d757f868d92989a9c9e9e9f9f9e9d9c9998928d867f746d665c50463d3221180e0300000000000000000000020e1a26313c454d535961676d727b828c92999f99928d837c777c81868c91969c98928d8882786c605346392d20130600000000000000000000000000000000000d1a2633404d59667380868686868686868680746c61574e43392f251b1007000000000000000000000000000000000000000000020b131a202427282d2d2d2d2d2d2d2625221e18110901000000000000000000000810161c2023242d2d2d2d2d2d2d282725201a130c03000000000000000000000000000000000000060b151b21272c2f34383a3d40424445464646454543413f3c3938332d2b26201a150b060000000000000000000000000000000000000000071019222b323b424650545c6064676d70737577787979797878767573706d6764605c545046423b332b22191007000000000000000013202d394653606c7986938b7e7265584b3f3d3d3f4b5865727e8b9386796c605346392d201300000000040e18222c3945525d68727f8b96a0acb9b9aca0968b7f72685d52453b30251a0e04000000000000000008131e2834404a54616c7682909aa4afafa49a9082766c61544a4032281e0f0600000000000004101c28333e485059606a6f7b8490948f837a7a838f9490847b6f6a605950483e33281c1004000005111d29343f485056586060606060606056544e5353514f4a443b32353d44484953535352585a606060606060605f504a42382e23170c000000000000000000000000000000000000000000000000000000000000000000000000000a16202c3945515d6774818e9aa7ab9f94887b6e62544a3f4653606d7985929fabaa9d9084776b6054443a3024190d0100000000000000000000000000000000000000000000030f1c28333f4a54616e7b87939faca2988a7e7164555564717e8a98a3a49a8c7f7366584e43372b1d12070000000000000000000d192633404c5966737f8c99a6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0ada79a8d8074675a4d4134271a0e00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000000000004111d2935414c5663707d8996a1aca1978a7d7063554b4b5564717e8b99a3a89a8d8174665c5145382c1f130800000000000000000916232f3c4956626f7c8995acb6a89c8f8275695c4f422e23180c000000000d1a2633404d596673808c99a6afa295887c6f6255493c2f221609000814212d3945505a6164666666727f8b98a5aea194887b6e66666666666664615a5044392d20140800000713202d3a4653606d798693a0aca6998c7f7366606d727b80858a8d8f9192929291908f8c8985807b726d605c544a3f342b200f06000000000000000000000006121e2b37424d575f616b70797f868f949f9d948f8780796f6a6f747a7f84898f93999a9486796d6053463a2d20130700000000000000000000000000000000000c1925323f4b57636d737979797979797979746e645a50453c31281d1209000000000000000000000000000000000000000000000001080f14181a1b20202020202020191816120d0700000000000000000000000000050b10141617202020202020201c1b18140f09020000000000000000000000000000000000020a111720262b323839404547494c4f50525253535251504e4c4946443f3837312b262017110a0200000000000000000000000000000000000000071019202930363e424a5053555d606366686a6b6c6c6c6c6b6a686663605d5553504a423e3630292119100700000000000000000013202d394653606c7986938b7e7265584b4a4a4a4a4b5865727e8b9386796c605346392d2013000000000a15202a36424d57606d7a85929ea8b2bdbdb2a89e92857a6d60574d42362a20150a0000000000000000020c18232e3942505a626f7c87939faaaa9f93877c6f625a5042392e20160c00000000000000000b17222c363e474f585f696e7a839094908484909490837a6e695f584f473e362c22170b000000010c18222d363f454a4b5353534c525f6060606060605d5b554d44393d474f54566060606060605a58535353535353443f3830261c11060000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c55626f7c88959faba6998d8073665c50444d5764717e8a97a2ada2988b7f7265594f4332281e1308000000000000000000000000000000000000000000000006121f2b3844505b6673808c9aa4ac9f92867a6d605454606d7a86929fac9d9184776a605447392e23180c0000000000000000000d1a2734404d5a6773808d9aa6ada094877a6d6154473a2e211407000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0ada79a8d8074675a4d4134271a0e00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000000000613202c3945525d6875818e9ba8ab9e9285796d6053464754616d7a86929fab9e9285796d6053463a3025190d01000000000000000815222e3b4855616e7b889aa4afa99d9083766a554b4034281c10040000010e1b2834414e5b6774818e9aa7afa295887c6f6255493c2f221609000a1723303c4955616c71737373737f8b98a5aea194887b73737373737373706c6155493c3023160a00000713202d3a4653606d798693a0aca6998d8073665b62686e74797d808284858685858482807d7a746e69625b504a42382e22190f0000000000000000000000000814212d3a47535f696e757d848c92989395908a827c736d676062686d72787d82878d929786796d6053463a2d20130700000000000000000000000000000000000a16232f3b47525b63666c6c6c6c6c6c6c6c67645c52483e332a1f160c000000000000000000000000000000000000000000000000000003080b0d0e131313131313130c0b090601000000000000000000000000000000000407090a131313131313130f0e0c0804000000000000000000000000000000000000040b141c222832373d43484b515356595b5d5e5f5f5f5f5e5d5b585653504a47433c373127221b140b0300000000000000000000000000000000000000070e171f252a30383f44464c515457595c5d5e5f5f5f5f5e5d5b595653514b46443f38302a251f170f070000000000000000000013202d394653606c7986938b7e7265585757575757575865727e8b9386796c605346392d2013000000020b1b26313a46525e6973808d97a1adbac4c4b9ada1978d8073695e52463c31261b0b02000000000000000007121c27303e4754606a75818e98a2a2988e81756a6054483e30271c0e04000000000000000005101a242c353d464e575f686e7a828f949191948f827a6e685f574e463d352c241a10050000000006111b242d343a3d3e46414c565e6c6c6c6c6c6c6c6a675f554a3f444f5960636c6c6c6c6c6c67645c534846464638342e261e150a0000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a47545f6a7783909da9ab9e9184796d605346525e6976828f9ca9ac9f92867a6d6054473d3221160c0200000000000000000000000000000000000000000000000613202d394653606c7884919eaca99b8e8175675d51515d6775828f9caba096897c6f62544b4034281c100400000000000000000e1a2734414d5a6774808d9aa7ada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8794a0ada6998d8073665a4d4033271a0d00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000000000714212d3a4754606d7a86929faca89a8d8174665c514446525d6876828f9caba2978a7d7064564c4135291d1105000000000000000714202d3a4753606d7a86939facab9e918478675c5145382c1f1306000004111d2935414c566976828f9ca9afa295887c6f6255493c2f221609000b1724313e4a5764717e80808080828f9ca8b3a79a8d80808080808080807e7064574a3d3124170a00000713202d3a4653606d798693a0aca6998d8073665a565e61666d7073757778797978777673706d67615e5751443f3830261c10070000000000000000000000000815222e3b4855616e7b8286868686868686837d766f6a605c55565d61656c70757b80858a867a6d6053473a2d201407000000000000000000000000000000000007131e2a35404952575960606060606060605a58524a40362c21180d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161d262d333c43474f54555c606366686a6b6c6c6c6c6b69686562605b54534e47423c332d261d150d0300000000000000000000000000000000000000050d14191e262e34383a4145474a4d4f50525253535251504f4c4a4745403a38342e261e1a140d05000000000000000000000013202d394653606c7986938b7e7265646464646464646465727e8b9386796c605346392d20130000000a141d2b37434e58616e7b86929fa9b3becccabeb3a99f92867b6e61584e43372b1d140a0000000000000000000b151e2b37434e58616e7b86929f9f92867b6e61584e43362c1e150b0000000000000000000008121a232b343c454d565e686d79828e93938e82796d685e564d453c342b231a120800000000000009121b22292e31323946525e68767979797979797771675b4f434854606b70797979797979746e64584c4039392c28231c150c0300000000000000000000000000000000000000000000000000000000000000000000000000000008131e2b37434e5865717e8b97a2ada1968a7d7063564c54616e7b87939faca79b8e8174685d5245392c201304000000000000000000000000000000000000000000000004111d2935414c5663707d8996a1aca1978a7d7063554b4b5564717e8b99a3a89a8d8174665c5145382c1f130800000000000000000e1a2734414d5a6774808d9aa7ada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1aea6998c7f7366594c403326190d00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c000000000000000000000000000000000006121f2b37434e5865727e8b98a2aca096897c6f63544a40414c5665727e8b99a4a99b8f8275685e5246392d2015090000000000000006131f2c3845515c677885919eabac9f9286796d6053463a2d20130600000713202c3945525d687884919eabafa295887c6f6255493c2f221609000f1c2835424f5b6875828c8c8c8c8f949eaab5a99d928d8c8c8c8c8c8c8c8174685b4e4135281b0e02000713202d3a4653606d798693a0aca6998d8073665a4d52545c606367696b6b6c6c6b6a696663605d55534d453f342e261e140a000000000000000000000000000814212d3a47535f696e757979797979797976706b625f58514b4c52535b6063696e73797e83796d6053473a2d2014070000000000000000000000000000000000020d19242e3740474b4d53535353535353534d4c4740382f241a0f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070a0d10111213131211100d0a07060400000000030505060606060606000000000000000000000000000000000000030c161f282f383f444e54596063676d707375777879797978787674726f6c66625f58534d443f382f271f150d030000000000000000000000000000000000000002090c151c23282c2f35393a3d4042444546464645454342403d3a39352f2b28231c140c090200000000000000000000000013202d394653606c7986938b7e7270707070707070707070727e8b9386796c605346392d2013000006111b262f3847535f6a74818e98a2aebbb9b9b9b9baaea2988e81746a5f53473d2f261b11060000000000000000030c1b27323c46525e6973808d97978c8073695e52463c32241a0c030000000000000000000000081119222a333c444d565d676d78818d8d81786d675d564d443c332a2219110800000000000000000911181d21212e3b4754616e7a86868686868683776a5d5144495663707d8686868686868074675a4e4134271f1c17110a0300000000000000000000000000000000000000000000000000000000000000000000000000000000010f1b26323c4753606d7985929faba99b8e8275685d525966737f8c99a4aca095897c6f63564c4135291d110400000000000000000000000000000000000000000000000613202c3945525d6875818e9ba8ab9e9285796d6053464754616d7a86929fab9e9285796d6053463a3025190d01000000000000000d1a2734404d5a6773808d9aa6ada094877a6d6154473a2e211407000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a1aea5988c7f7265594c3f3226190c00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000000000814212e3a47535f6a7683909daaaa9e9184776b605442393b4754616e7b86939fac9f92867a6d6154473c31261a0e0000000000000004101c2934404b55697683909ca9afa399887b6f6255483c2e23170b00010714212d3a4754606d7a8796a1acafa295887c6f6255493c2f221609000f1c2835424f5b6875828e9999999c9ea6b0b9aea49d9a9999999999998e8174685b4e4135281b0e02000713202d3a4653606d798693a0aca6998d8073665a4d464b5153575a5c5e5f5f5f5e5d5c595654514b46423b3328231c140c020000000000000000000000000006121e2b37424d575f61696c6c6c6c6c6c6c6a636159534e45404146495053575e61666d71766d675d5145392c1f130600000000000000000000000000000000000007121c252e353b3f404646464646464646413f3c362f261d1208000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d111314171a1d1e1f1f201f1e1c1a171413100c07010c0f11121313131313130909070300000000000000000000000000000b151e283139424a50585f626b6f75797d7f828385858686858483817f7c79746f6a625f575049413931271f150b010000000000000000000000000000000000000000030a11171c1f24292c2d30333537383939393938373533302d2c29241f1c17110a02000000000000000000000000000013202d394653606c7986938d807d7d7d7d7d7d7d7d7d7d7d7d808d9386796c605346392d201300000b17222d38414f59626f7c87939faab4acacacacacacb4aa9f93877c6f62594f41382d22170b0000000000000000000a15202a36424d57606d7a85919185796d60574d42342b20110800000000000000000000000000071019212a323b444c555d666d748080746d665d554c443b322a2118100700000000000000000000060c1114212e3b4754616e7a87939393939084776a5d5144495663707c89939393938d8174675a4e4134271b100c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151f2c3945515d6774808d9aa6ac9f92867a6d6154606b7784919eabaa9d9084776b6054443a3024190d0100000000000000000000000000000000000000000000000714212d3a4754606d7a86929faca89a8d8174665c514446525d6876828f9caba2978a7d7064564c4135291d1105000000000000000d192633404c5966737f8c99a6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afa5988b7e7265584b3f3225180c00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000003101c28343f4a54626e7b88959faba7998c807366594f43303946525e687683909ca9a3998b7f7265574d42372b1b1106000000000000000c18232f414d5a6774808d9aa7b5ab988b7e7165544a3f34281c100b0e131c2834404a5464707d8a97a8b2afa295887c6f6255493c2f221609000f1c2835424f5b6875828e9b9f9fa0acaeb5bdb1a9a3a19f9f9f9f9f9b8e8174685b4e4135281b0e02000713202d3a4653606d798693a0aca6998d8073665a4d404045464a4d4f5152535252514f4d4a4745413a3631292117110a020000000000000000000000000000020e1a26313c454d53555c606060606060605d57554f47433c3435383f44464d53545c606469605d554b4035291d1004000000000000000000000000000000000000000a131c242a2f323339393939393939393433302b241d140b0000000000000000000000000000000000000000000000000000000000000000000000000000000003090e13191d20212427292b2b2c2c2c2b292724201f1c18120e181c1e1f2020202020201615130f0a04000000000000000000000007121d273039434b545b606a6f767c8185898c8e90919292929291908e8b8985817c756e69605b534b433931271d120700000000000000000000000000000000000000000000060c1013191d20212426292a2b2c2c2c2c2b2a282623201f1d1812100b060000000000000000000000000000000013202d394653606c798693928d8a8a8a8a8a8a8a8a8a8a8a8a8d929386796c605346392d201300030f1b27333f4953606b76828f99a49f9f9f9f9f9f9f9f9f9fa4998f82756b6053493f33271b0f030000000000000000040e1a25303b45515d67727e8b8b7e71675d51453b3022190f000000000000000000000000000000070f182029323a434b545c606e73736e605c544b433a322920180f07000000000000000000000000010814212e3b4754616e7a87949f9f9d9084776a5d5144495663707c89969f9f9a8d8174675a4e4134271b0e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55626f7b88949faba3998b7e726557636f7c8996a0aca2988b7f7265594f4332281e1308000000000000000000000000000000000000000000000006121f2b37434e5865727e8b98a2aca096897c6f63544a40414c5665727e8b99a4a99b8f8275685e5246392d201509000000000000000c1926323f4c5965727f8c98a5aea195887b6e6255483b2f22150800000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2afa4978b7e7164584b3e3125180b00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000006121f2c3844505c6673808d9aa7ab9f95887b6e6255483d3236414d5665727f8c98a7ab9d908376695f5347382d22170b00000000000000071824313e4b5764717e8a97a7b1a79b8e8174665c5044382b221b171a1d242c3844515c6674818d9aa7b4afa295887c6f6255493c2f221609000f1c2835424f5b6875828e939393939fa3abb5a99f98949393939393938e8174685b4e4135281b0e02000713202d3a4653606d798693a0aca6998d8073665a4d4034383a3d404244454646454443403d3a39352f2a251f170f06000000000000000000000000000000000009151f2a333c4247484f53535353535353504a48443e373129292d33373b42464b5153575d53514b43392f24180c0000000000000000000000000000000000000000010a12191e2325262d2d2d2d2d2d2d2d2726241f19130b02000000000000000000000000000000000000000000000000000000000000000000000000000000060e141a1e24292c2d3033363738393939383634302d2c29231d1a24282b2c2d2d2d2d2d2d23221f1b160f07000000000000000000040d18232e39434b555d666c737c83898e9298999b9d9e9f9f9f9f9e9c9b9897918d88827b736c655d554b43392f24180e05000000000000000000000000000000000000000000000003080d111314171a1c1d1f1f20201f1e1d1c19171413100c070300000000000000000000000000000000000013202d394653606c798693939393939393939393939393939393939386796c605346392d20130005121f2b3744505b65707d8994939393939393939393939393939394897d70655b5044372b1f120500000000000000000009141f2935414b55606d788383786d60554b4033291f100700000000000000000000000000000000060e1720283139424a505c636767635c504a4239312820170e0600000000000000000000000000000814212e3b4754616e7a8794a1aa9d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3947535f6a7683909ca9ab9d908376695f6774818e9aa8ac9f92867a6d6054473d3221160c0200000000000000000000000000000000000000000000000814212e3a47535f6a7683909daaaa9e9184776b605442393b4754616e7b86939fac9f92867a6d6154473c31261a0e000000000000000c1825323f4b5865727e8b98a5afa295887c6f6255493c2f221609000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b6ac96897d7063564a3d3023170a00111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c000000000000000000000000000000000713202d3a4653606d7985919eabab9d908377695f53473a2b303b4854616e7b8795a0ab9f95887b6e6253493f33271b0f030000000000000814212e3b4754616e7b8795a0acab9e9285796d6053463e342b2722262a2f35404b55606d7985929eabb8afa295887c6f6255493c2f221609000f1c2835424f5b68758186868686868b99a3aea3988d88868686868686868174685b4e4135281b0e02000713202d3a4653606d798693a0aca6998d8073665a4d40332c2d3034363838393938373633302d2c29241d1a140d05000000000000000000000000000000000000030e18212a31373a3b4246464646464646433d3c38332b26201b22272b3136394045464b504745403931271d120700000000000000000000000000000000000000000000070d1316191a20202020202020201a1a17130e0801000000000000000000000000000000000000000000000000000000000000000000000000000000070f181f262a2f35393a3d404344454646454443403d3a38342f2a252f3437383939393939392f2e2c272119100700000000000000010c161f2834404b555d676d78808790949b9fa2a9a29e9c9b9a9a9b9d9fa3a9a19e9a948f877f776d675d554b40352920170d02000000000000000000000000000000000000000000000000010406070a0d0f11121313131212100f0d0a07060400000000000000000000000000000000000000000013202d394653606c798686868686868686868686868686868686868686796c605346392d2013000613202d394653606c798386868686868686868686868686868686868683796c605346392d201306000000000000000000030d18242f3a44505c66707d7d70665c50433a2f21170d000000000000000000000000000000000000050d161f2730383f4452585a5a5852443f3830271f160d050000000000000000000000000000000814212e3b4754616e7a8794a1a99d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2b37434e5864717e8a97a1ab9f95887b6e616d7985929faba79b8e8174685d5245392c201304000000000000000000000000000000000000000000000003101c28343f4a54626e7b88959faba7998c807366594f43303946525e687683909ca9a3998b7f7265574d42372b1b11060000000000000b1825313e4b5864717e8b97a4afa296897c6f6356493c30231609000000000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5afa49a887b6e6255483b2f22150800111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000005111d2a36414c5663707d8a97a1ada3998c7f7265574d42372b2d3a46535e697783909daaa7998d8073655b5044372b1f12070000000000000714202d3a46525e697784909dabada1978a7d70635a50463d37332d31363a4045515d67717e8b97a1adb9afa295887c6f6255493c2f221609000e1b2834414d59656f75797979797987929faca194887b79797979797979746f64594d4034271a0e01000713202d3a4653606d798693a0aca6998d8073665a4d403327202427292b2c2c2c2b2a29262321201d18130e09030000000000000000000000000000000000000000060f181f262b2d2e363939393939393937302f2c28211b1511171b1f252a2e34383a3e433a39352f271f150b01000000000000000000000000000000000000000000000002070a0c0d13131313131313130e0d0b0703000000000000000000000000000000000000000000000000000000000000000000000000000000030b1218212a31363a4145474a4d505152525352514f4d4a4745403936313a4044454646464646463c3b38322b22190f0400000000000008131e28313a45515c676d79828d92999fa6a39f9a97928f8e8d8e8e9092989b9fa3a69e99928c82796d675d51453f32291e140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013202d3946535f6c767979797979797979797979797979797979797979766c5f5346392d20130005121f2b3744505b656c77797979797979797979797979797979797979776c655b5044372b1f12050000000000000000000007131d28343f4a54606b70706b60544a3f31281d0f0500000000000000000000000000000000000000040d151e262e3440474b4d4d4b4740342e261e150d04000000000000000000000000000000000814212e3b4754616e7a87949c9c9c9084776a5d5144495663707c89969c9c9a8d8174675a4e4134271b0e01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010f1a26313c4653606d7985929eaca7998c7f7366717d8a98a2aca095897c6f63564c4135291d1104000000000000000000000000000000000000000000000006121f2c3844505c6673808d9aa7ab9f95887b6e6255483d3236414d5665727f8c98a7ab9d908376695f5347382d22170b0000000000000a1724303d4a5763707d8a96acb6a4978a7e7164574b3e3124180b000000000000000000000000000000000000000000000000000000000000010e1b2834414e5b6774818e9aa7ac9f9386796d6053463a2d20130700111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000713202d3946525e6875828f9ba9ac9f92867a6e6154473c31262a36424d5766737f8c99a7ab9e9184786c605346392f24180c00000000000005111e2a36424d5666737f8c99a3afa99c9083766c61584f46443f414142464b515b606d7984919ea9afb8afa295887c6f6255493c2f221609000c1925313d48535d65686c6c6c677683909da9a194887b6e6c6c6c6c6c6c68645d53483c3024180c00000713202d3a4653606d798693a0aca6998d8073665a4d4033271a171a1c1e1f201f1f1e1c1a171413110d07010000000000000000000000000000000000000000000000060e151a1e2122292d2d2d2d2d2d2d2a2423201c160f0a060b0f141a1d23282c2d31362d2c29241d150d030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151c2328333b42464c5254575a5c5e5e5f5f5f5e5c5a5753514b46423b454c50525353535353534948433d342b21160a0000000000010d19242f3a43505a606d79828f949fa3a7a099928e898583818181828386898e92999fa7a39f948f82796d605b51443b3025190e0200000000000000000000000000000000000000000000000002070b0d0d131313131313130f0e0c0804000000000000000000000000000000000000000000000000121e2b37434f5a646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e1200030f1b27333f49535b606a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a605b53493f33271b0f0300000000000000000000010b17232e38424f5960636360594f42382e1f160c000000000000000000000000000000000000000000030c151c2328363b3f40403f3b3628231c140c0300000000000000000000000000000000000814212e3b4754616e7a878f8f8f8f8f84776a5d5144495663707c898f8f8f8f8d8174675a4e4134271b0e01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151f2c3845515c6773808d9aa4aa9d9184776a75828e9baaaa9d9084776b6054443a3024190d0100000000000000000000000000000000000000000000000713202d3a4653606d7985919eabab9d908377695f53473a2b303b4854616e7b8795a0ab9f95887b6e6253493f33271b0f0300000000000815222f3b4855626e7b889aa4afa5998c7f7266594c3f3326190700000000000000000000000000000000000000000000000000000000000004101d2935404b556976838f9ca9ab9e918478675c5145382c1f130600111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000000000714212e3a4754616d7a86929facaa9c8f8276685e5246392a2025313b4855626e7b8895a0aca196897d7063554b4035291d10040000000000020e1925303b4854616e7b87929fabab9f948a7e716a60595350494e4e4d53555d606d74808d969b9ea5afafa295887c6f6255493c2f221609000915202c37424b53595b6060606774808d9aa7a194887b6e6160606060605b59534b41372b20140800000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d0d0f111213131211100d0a07060401000000000000000000000000000000000000000000000000000003090e1214151c202020202020201d171614100b0500000003090e12181c1f20242a201f1d18120b03000000000000000000000000000000000000000000000000000000000000000000010406070a0d10111213131211100d0a07060400000000030505060606060606000000000000000000000000000000000b151e272e343f454d53565d606366696a6b6c6c6c6b696763605c55534d444f575c5f60606060606056544e463d32271b0f030000000004111d2935414c56616c74818e949ea6a69f959087817c79767474747577797d818790959ea5a69e948e81756d62564c41362a1e14080000000000000000000000000000000000000000000001080e1317191a202020202020201b1b18140f0901000000000000000000000000000000000000000000000f1b27333e49525a5f60606060606060606060606060606060606060605f5a52493e33271b0f00000b17222d38414950535d6060606060606060606060606060606060605d53504941382d22170b00000000000000000000000006111c26303d474f555656554f473d30261c0d0400000000000000000000000000000000000000000000030a1117242a2f323434322f2a2417110a020000000000000000000000000000000000000714212d3a4754606d7a8283838383838174675b4e414855626f7c8283838383827f7265584c3f3225190c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b55616e7b87939faca095887b6f7985929faca3988b7f7265594f4332281e1308000000000000000000000000000000000000000000000005111d2a36414c5663707d8a97a1ada3998c7f7265574d42372b2d3a46535e697783909daaa7998d8073655b5044372b1f120700000000000714202d3a4753606d7a86939faca79a8e8174675b4e412f24180c00000000000000000000000000000000000000000000000000000000000006131f2c3845515d677784919eaaa99c90837669554b4034281c100400111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c000000000000000000000000000006131f2b37434e5865727f8b99a3aea2988b7e7164564c41362a18212e3a47535f6a7784919daaa89b8e8174675d5145392c1f14090000000000000914202d3a46525e6975818e99a3afa69f92857c706b62605b535a5b575f61676d747f8b92938f939eaaafa295887c6f6255493c2f22160900040f1b25303942484d4f53535764717e8a97a9a194887b6e6155535353534e4d4841392f251a0f0300000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d01030505060605040300000000000000000000000000000000000000000000000000000000000000000000020608080f13131313131313100a0907040000000000000000070c101313181d1413100c0701000000000000000000000000000000000000000000000000000000000000000001080d111314171a1d1e1f1f201f1e1c1a171413100c07010c0f111213131313131309090703000000000000000000000007121c273039404451575f61686d7073767778797978777673706d67615e57505761686b6c6c6c6c6c6c6260584e43382c1f1307000000000613202c3945525d68717e8a939da6a89f948f837c746f6c6668676768666d70757c838f939ea7a69e938b7f72685e52463b3025190d010000000000000000000000000000000000000000020a12191f2326272d2d2d2d2d2d2d282724201a130b030000000000000000000000000000000000000000000a16212c3740494f535353535353535353535353535353535353535353534f4940372c21160a000006111b262f383f4446505353535353535353535353535353535353535046443f382f261b1106000000000000000000000000000a141e2c353d44484a4a48443d352c1e140a00000000000000000000000000000000000000000000000000060c191f2326272726231f190b0600000000000000000000000000000000000000000713202c3945525d686d767676767676746f64584c4047535f6a6f767676767676726d62564a3e3125180b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3946535f6976828f9ca9a7998c7f737d8a98a2ac9f92867a6d6054473d3221160c0200000000000000000000000000000000000000000000000713202d3946525e6875828f9ba9ac9f92867a6e6154473c31262a36424d5766737f8c99a7ab9e9184786c605346392f24180c000000000006131f2c3845515d677885919eaba99c8f827669554b4035291d100400000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86929faca79b8e8174685b4e412e23180c0000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000000000815222e3b47545f6a7783909dabac9f92867a6d6054473b3025191e2b37424e576673808c99a8ab9f9285796d6053473b3025190e02000000000005121e2a36424d57626e7c87929fa7ada29792857d756f6c6568676869696e7379818b91948f828f9ba8afa295887c6f6255493c2f221609000009141e2730373d4142464854616e7b8796a1a194887b6e61554846464641403c372f271d13090000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060606060606060400000000000000000000000000000406070b1007060400000000000000000000000000000000000000000000000000000000000000000003090e13191d20212427292b2b2c2c2c2b292724201f1c18120e181c1e1f2020202020201615130f0a040000000000000000000c18232e39424a515b63696e747a7d808384858586858482807d79746e69605b536873787979797979796f6a6054483b2e22150900000004111d2935414c55606d7a85929ea5aca0968f82796e6a62605b545a5b545c60636a6e78818f959faba59f92857a6e61564c41362a1e110500000000000000000000000000000000000000010a141c242b2f3334393939393939393534312c251d150b01000000000000000000000000000000000000000005101b252e373e4346464646464646464646464646464646464646464646433e372e251b10050000000a141d262d33373944464646464646464646464646464646464646443937332d261d140a0000000000000000000000000000020c1a232c33383c3d3d3c38332c231a0c020000000000000000000000000000000000000000000000000000080e1317191a1a1917130e0800000000000000000000000000000000000000000004111d2935414c565d6069696969696967645c53483c434e585f6269696969696965625b51463a2e22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2b37424d5764717d8a97a1aa9d908377818e9baaa79b8e8174685d5245392c2013040000000000000000000000000000000000000000000000000714212e3a4754616d7a86929facaa9c8f8276685e5246392a2025313b4855626e7b8895a0aca196897d7063554b4035291d10040000000004101d2935404b55697683909ca9aa9e918477675d5145382c1f13060000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8999a3afaa988b7e7265584b3f322518070000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000004101c2834404b55626f7c8895a0aca99b8e8175675d514539291e141a26313c4955626f7c8896a0aca2988a7e7164564d42362a1e11050000000000020e1a25303b47535f6a73808d95a0a8a9a1979288817c797674747476787b7f858d929790827d8996a3afa295897c6f6256493c2f2316090000020c151e252c3134353a46535e697884919ea194887b6e6155483b39393534302b251d150b010000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e141a1e24292c2d3033363738393939383634302d2c29231d1a24282b2c2d2d2d2d2d2d23221f1b160f070000000000000004101c2834404a545c606d727b81868a8d8f9191929292918f8d8a85807b726c655c6b78858686868686867c6f6256493c2f2316090000000613202c3945515d6773808d97a1ada69e91847a6d675f5853504a4e4e4b5153585f666d79839099a3ada2978d8174685e5246392d2014090000000000000000000000000000000000000008121c262e363b3f404646464646464642403d372f271d130900000000000000000000000000000000000000000009131c252c33373939393939393939393939393939393939393939393937332c251c130900000000020b141b22272b2d37393939393939393939393939393939393939372d2b27221b140b0200000000000000000000000000000008111a21272c2f30302f2c27211a11080000000000000000000000000000000000000000000000000000000002070a0d0d0d0d0a070200000000000000000000000000000000000000000000010d1924303a444c52545c5c5c5c5c5c5b58534a41363c464e53555c5c5c5c5c5c585651493f34291e1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a26313c4653606d7984919eaba095887b85929faba095897c6f63564c4135291d1104000000000000000000000000000000000000000000000006131f2b37434e5865727f8b99a3aea2988b7e7164564c41362a18212e3a47535f6a7784919daaa89b8e8174675d5145392c1f140900000000000c18242f414e5b6874818e9ba7ac9f92867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99abaea298887b6f6255483c2f2215090000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000006131f2c3845515c6774808d9aa7ada1978a7d7063554b413529170d15212e3b47535f6a7784919eaaaa9c8f8276695e52463a2d20150a00000000000009141f2b37434e58606d79839096a0a8a9a19a938e8985828181818284888c91979992857b7c8996a2afa296897c6f6356493c30231609000000030c141b2025282a36424d576875828e9ba194887b6e6155483b2e2d282724201a130b03000000000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070a0d0f11121313131212100e0c090606030000000000000000000000000000000000000000000000000000000000070f181f262a2f35393a3d404344454646454443403d3a38342f2a252f3437383939393939392f2e2c27211910070000000000030e18212c3844515c666d757f878d9298999c9d9e9f9f9f9e9c9a98928d867f776d666679869293939393887b6e6255483b2f2215080000000714212d3a4754606d7a85929fa9aa9e94897d70685d554e46443f41414045464e545c676f7c87929faca99f92867a6e6154473c31261a0e020000000000000000000000000000000000020e19242e3840474c4d535353535353534e4d4841392f251a0f040000000000000000000000000000000000000000010a131b21272b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a010000000000020a11171b1f202a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2a201f1b17110a020000000000000000000000000000000000080f161c2023232323201c160f08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28323a4145475050505050504e4c4841382f343c4347485050505050504c4a463f372d23180d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2c3844505c6673808c99a4a79c8f828f97a2aa9d9084776b6054443a3024190d0100000000000000000000000000000000000000000000000815222e3b47545f6a7783909dabac9f92867a6d6054473b3025191e2b37424e576673808c99a8ab9f9285796d6053473b3025190e0200000000071925323f4c5865727f8b98aaafa399897c6f6356493c302316090000000000000000000000000000000000000000000000000000000006121e2b37424d576875828f9ba8ab9f9285796c605346392d2013060000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c000000000000000000000000000713202d3a4653606d7985929eabab9e9285796d6053463a2f241807131f2b37434e586773808d9aa8ac9f93877b6e6154473c32261b0f000000000000030f1a26313c45515c676e7b8491969fa4aca49f9b97928f8e8d8e8f9196999e9892877d707b8895a2aea396897c706356493d3023160a0000000002090f15191a25313f4c5965727f8c989f94887b6e6155483b2e221b1a18140f090100000000000713202d3a4653606d7986939f9f9f998d8073665a4d4033271a0d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c10131416191c1d1f1f20201f1e1d1b191613120f0b0600000000000000000000000000000000000000000000000000030b1218212a31363a4145474a4d505152525352514f4d4a4745403936313a4044454646464646463c3b38322b22190f04000000000915202c38434f59606d78818c92999fa2aaa9a8aaa29f9e9e9e9fa29f98928c81786d6d798699a39f9f94877a6e6154473b2e211408000005111e2a36424d5765727f8b98a2aea99c8f82756b60564c433c38332d2e34383c424b555f6a74818e9ba8aea3988c7f7266574d42372b1e1205000000000000000000000000000000000007131f2b36404a52585a606060606060605b59534b41372c201408000000000000000000000000000000000000000000010910161b1e202020202020202020202020202020202020202020201e1b161009010000000000000000060b0f12131d2020202020202020202020202020202020201d13120f0b060000000000000000000000000000000000000000050b10141617171614100b050000000000000000000000000000000000000000000000000000000000000000000000000000050a0d0f101313100f0d090500000000000000000000000000020c1620283035393a43434343434341403c362f262a32373b3c4343434343433f3e3a342d251b1107000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939fac9e948f949ea9a3988b7f7265594f4332281e1308000000000000000000000000000000000000000000000004101c2834404b55626f7c8895a0aca99b8e8175675d514539291e141a26313c4955626f7c8896a0aca2988a7e7164564d42362a1e1105000000000916222f3c4955626f7c8898a2aeab988c7f7265594c3f31261a0e020000000000000000000000000000000000000000000000000000000814212d3a47535f697885919eaba99c8f8276665b5044382b1f12060000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000005111e2a36424d5664717d8a97a2ada89a8d8174665c514438281d13070f1b26323c4956626f7c8996a1ada4998c7f7265584e43372b1c11060000000000000a15202934404b555e696e7b848e939a9fa3aba9a19e9c9b9a9b9c9ea09d9590867d706e7b8894abb5a396897d7063564a3d3023170a0000000000000409091623303c4956636f7c89999393887b6e6155483b2e2215080c0803000000000000000713202d3a4653606d798693939393938d8073665a4d4033271a0d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f12181c1f202326282a2b2c2c2c2c2b2a282523201f1c17110f0a03000000000000000000000000000000000000000000030c151c2328333b42464c5254575a5c5e5e5f5f5f5e5c5a5753514b46423b454c50525353535353534948433d342b21160a000000020e1a26313b4854606b74808d939fa3ababa49f9b979892919192939a989d9f938f82786d7a8794abb4a094877a6d6154473a2e21140700000714202d3a46525e697683909daaada196897d7063594f433a312b282223282c3039434e58626f7c8895a0acaa9d908477695f53463a2d21140700000000000000000000000000000000000b17232f3b47525c64676c6c6c6c6c6c6c68655d53483d3124180c0000000000000000000000000000000000000000000000050a0f1213131313131313131313131313131313131313131313120f0a0500000000000000000000000003050611131313131313131313131313131313131313110605030000000000000000000000000000000000000000000000000407090a0a0907040000000000000000000000000000000000000000000000000000000000000000000000000000030a11161a1c1d20201c1c1915100a02000000000000000000000000040e161e24292c2d3636363636363433302b251d20262b2e2f36363636363632312e29231b1309000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e3846535e6975828f9ca8a69e9c9ea6ac9f92867a6d6054473d3221160c02000000000000000000000000000000000000000000000006131f2c3845515c6774808d9aa7ada1978a7d7063554b413529170d15212e3b47535f6a7784919eaaaa9c8f8276695e52463a2d20150a000000000713202d3a4653606d7985929faca89b8f827568574d42362a1e12050000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8897a1ada8998c7f7366544a3f33281c0f030000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000714202d3a46525e6975828f9ca9aca096897c6f63544a403428160c010a13202d394653606c7884919eabab9d9084776a5f5347382e23170c000000000000030c18232f39434d575e696e7981878f92999b9d9e9f9f9f9e9d9b9895908b837c706b6d7a8799a49f9f978a7d7064574a3d3124170a00000000000000000713202d3a4653606d7987868686867b6e6155483b2e221508000000000000000000000713202d3a4653606d78868686868686868073665a4d4033271a0d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161b1d23292c2d303335373839393939383635322f2d2b28221c1b150e0903000000000000000000000000000000000000000b151e272e343f454d53565d606366696a6b6c6c6c6b696763605c55534d444f575c5f60606060606056544e463d32271b0f03000006121e2b37424e57636f7c87939fa5afa9a199938f8a878584848586888c90959e948d80747b8794a1ada093877a6d6054473a2d21140700000814212e3b4754616e7b87959fabab9e9184786c6053463d31281f1c17181c1f27313c47535f6a7784919daaaca095887b6e6155483b2e22150600000000000000000000000000000000000d1926333f4c58646e7379797979797979756f65594d4034271b0e01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d151c2226292a2d2d292825211b140c04000000000000000000000000040c13191d2021292929292929282724201a13151b1f21222929292929292525221e181109010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040906111c2a36424d5763707d8a96a1acaaa8aab0a79b8e8174685d5245392c20130f0c07010000000000000000000000000000000000000000000713202d3a4653606d7985929eabab9e9285796d6053463a2f241807131f2b37434e586773808d9aa8ac9f93877b6e6154473c32261b0f0000000006121f2b3844505c6676838f9ca9ab9e918578695f53463a2d211409000000000000000000000000000000000000000000000000000005121e2a36424d5766727f8c99a9aca096887c6f6255493c2d22170b000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000000814212e3b4754616e7b86929facaa9e9184776b605442392e2318040005121f2b3744505b6574808d9aa9aca095887c6f62544a3f34281c100300000000000007121d27313b454d575e676d747c82868b8e909192929291908e8b88837e786f6a606c798693939393938a7e7164574b3e3124180b000000000000000006131f2c3845515c6775797979797976695f53463a2d2114070000000000000000000006121f2c3844505c667679797979797979736e63584b3f3226190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b151b21272c2f34383a3d40424445464646454543413f3c3938332d2b26201a150b06000000000000000000000000000000000007121c273039404451575f61686d7073767778797978777673706d67615e57505761686b6c6c6c6c6c6c6260584e43382c1f130700000814212e3a47535f6a76828f9aa4afaba1979287827d7a79787778797b7f838a9196928a7e7b8895a1ada093867a6d6053473a2d20140700000b1824313e4b5764717e8a97a7b1a79a8e8174665b5044382b1f160f0b0c10151f2b37434e586773808d9aa6b1a7988b7e7165584b3e2d22170b00000000000000000000000000000000010d1a2734404d5a677380868686868686868175685b4e4235281b0f0200000000000000000000000000000000000000000000000000000000000000060a0e1011131313131313100f0d0a0500000000000000000000000000000000000000000000000000000000060a0e1011131313131313100f0d0a05000000000000000000000000000005090d0f101313100f0d0a050000000000000000000000000000000000000000000000000000000000000000000000000000000000030d161f272d32353639393635322c261e160c0200000000000000000000000002080d1113141d1d1d1d1d1d1b1a18140f080a0f1215151d1d1d1d1d1d191816120d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f151a1d1a25313b4653606c7884919e9f9f9f9f9fa095897c6f63564c4135291d1e1c18130c050000000000000000000000000000000000000005111e2a36424d5664717d8a97a2ada89a8d8174665c514438281d13070f1b26323c4956626f7c8996a1ada4998c7f7265584e43372b1c110600000003101c28343f4a546673808c99a8ada197887b6e6155483b30251a0e02000000000000000000000000000000000000000000000000000714212d3a46535e697783909daaaa9e9184776a5f53473b2e1c1106000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c000000000000000000000007131f2c38434f5966727f8c99a3afa7998c807366594f4330271c120700030f1b27333f495363707c8997a1ada79a8d8074665c5044382c1f1206000000000000010b151f29333b454d555d606a6f757a7e8183858586858583817f7b77716d665f5b6678848686868686867f7265584c3f3225190c000000000000000004101c2834404b555c6a6c6c6c6c6c6c5f574d42372b1e12050000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c66635c52473b2f23170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a111720262b323839404547494c4f50525253535251504e4c4946443f3837312b262017110a020000000000000000000000000000000c18232e39424a515b63696e747a7d808384858586858482807d79746e69605b536873787979797979796f6a6054483b2e22150900000815222f3b4855626e7b88949facaea39992857d75716e686b6b666d6e72767d84909492857d8996a3aca09386796d6053463a2d20130700010e1b2834414e5b6774818e9aa7b4aa978a7e7164544a3f3328190d040000040d1b26323d4a5764707d8a97aab4a79b8e81746853493f33271b0f03000000000000000000000000000000010d1a2734404d5a6773808d93939393938e8175685b4e4235281b0f020000000000000000000000000000000000000000000000000000000000040b11161a1d1e2020202020201d1c1916100a03000000000000000000000000000000000000000000000000040b11161a1d1e2020202020201d1c1916100a0300000000000000000000020a1015191c1c20201d1c1a16110a030000000000000000000000000000000000000000000000000000000000000000000000000000000a151f2831383e4243464643413d3830281e140a0000000000000000000000000000010407071010101010100e0d0b08030000030608091010101010100c0b09060100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121a20262a2c2d2b3844505b66737f8c999393939393939084776b6054443a30242c2b28241e170f070000000000000000000000000000000000000714202d3a46525e6975828f9ca9aca096897c6f63544a403428160c010a13202d394653606c7884919eabab9d9084776a5f5347382e23170c000000000b17232e3c4956626f7c8996a0aca9988c7f7265574d42362a1e1205000000000000000000000000000000000000000000000000000815212e3b4854616e7b87959faba8998c807366584e43372b1f0a00000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000915222f3b4854606b7784919d9f9f9f95887b6e6255483d3222150b0000000b17222d3a4653606d7985929e9f9f9e9185796d6053463a2d20130700000000000000030d172129333b434b51586062686e71747678797978787675726e6a64605c5454687278797979797979726d62564a3e3124180b0000000000000000000c18232e39434b51535f6060606055534d453c31261a0e0200000000000000000000000c17232e38424a505f606060606060605a58524a40362a1f130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b141c222832373d43484b515356595b5d5e5f5f5f5f5e5d5b585653504a47433c373127221b140b030000000000000000000000000004101c2834404a545c606d727b81868a8d8f9191929292918f8d8a85807b726c655c6b78858686868686867c6f6256493c2f23160900000d192633404c5966737f8c99a6b0ac9f92877c6f6b64615e56545c6062656c707a8290949083909daaaca09386796d6053463a2d2013070005111e2a36414c566a7683909da9aea298887b6e6155483b2d221708000000000a15212e3b4854616e7b8798a2aeaa9d908377655b5044372b1f1205000000000000000000000000000000010d1a2734404d5a6773808d9a9f9f9f9b8e8175685b4e4235281b0f0200000000000000000000000000000000000000000000000000000000050d151c2227292a2d2d2d2d2d2d292926211c150d0400000000000000000000000000000000000000000000050d151c2227292a2d2d2d2d2d2d292926211c150d040000000000000000040c141b212528292d2d2a2926221c150d040000000000000000000000000000000000000000000000000000000000000000000000000005111c27313a434a4e5053534f4e49423a30261b1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b242b3236393939333f4a54616e7a8786868686868686867f7265594f433239393837342f2921190f0500000000000000000000000000000000000814212e3b4754616e7b86929facaa9e9184776b605442392e2318040005121f2b3744505b6574808d9aa9aca095887c6f62544a3f34281c10030000000615222e3b4754606a7784919eaaa99d908376695e52463a2d20150a00000000000000000000000000000000000000000000000006131f2b37434e5865727f8c98a7aca095887c6f6255483c32261b0f00000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0000000000000000000000091623303c4956636f7c8996939393939083776a5f53473a2e211417110b0b10121f2b3844505c6674818e93939393978a7d7063574a3d3024170a0000000000000000050f172129313a40454e54565e6164686a6b6c6c6c6b6a6865625f5753504a5660686b6c6c6c6c6c6c65625b51463a2e22160900000000000000000007121d27303940454653535353534846423c332a1f140900000000000000000000000006111c2630383f4453535353535353534d4b4740382e24190e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161d262d333c43474f54555c606366686a6b6c6c6c6c6b69686562605b54534e47423c332d261d150d030000000000000000000000030e18212c3844515c666d757f878d9298999c9d9e9f9f9f9e9c9a98928d867f776d666679869293939393887b6e6255483b2f2215080005111e2a36424d576976838f9ca9b1a79a8d80736a605954524c4a5053555a61676d798290959095a0abaca09386796d6053463a2d201307000713202d3946525e687885929fabac9f9285796c605346392d201306000000000714212d3a46535e697985929facac9f9285796c605346392d201306000000000000000000000000000000010d1a2734404d5a6773808d9aa6aca89b8e8175685b4e4235281b0f02000000000000000000000000000000000000000000000000000000040d171f272e3336373939393939393635322d261f160d030000000000000000000000000000000000000000040d171f272e3336373939393939393635322d261f160d03000000000000020c161e262c32353639393635322d271f160d030000000000000000000000000000000000000000000000000000000000000000000000000a16222d38434c545a5d60605c5a544c42382c211509000000000000000000000000000000000000030608090b0d0f1112121313121211100e0c0a070604010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f1a242d363d42454646464646525e686e797979797979797979726d625647454646464544403a332b21170c0100000000000000000000000000000007131f2c38434f5966727f8c99a3afa7998c807366594f4330271c120706040f1b27333f495363707c8997a1ada79a8d8074665c5044382c1f120600000006131f2b37434e586673808d99a8ac9f93877b6e6154483c31261b0f0200000000000000000000000000000000000000000000020c15212e3b47535f6a7683909da9aa9d9184776a5f53473a2a20150a00000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000e1b2834414e5b677481868686868686867f7265574e42372b2a27221d16161b202228343f4a5463707d868686868686868175685b4f4235281c0f000000000000000000050f171f282f353d43474c5254585b5d5e5f5f5f5e5d5b5855534e46443f4e565c5e606060606060585651493f34291e1206000000000000000000000b151e272e34383a46464646463b3a37312a21180e03000000000000000000000000000a151e262e34384646464646464646403f3b362e261c1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c161f282f383f444e54596063676d707375777879797978787674726f6c66625f58534d443f382f271f150d03000000000000000000000915202c38434f59606d78818c92999fa2aaa9a8aaa29f9e9e9e9fa29f98928c81786d6d798699a39f9f94877a6e6154473b2e211408000714202d3a46525e697885929fabaca095877b6e61584f4746413f44464850555d676e7b85929da0a7b1aca09386796d6053463a2d201307000714212e3a4754616d7a8798a2aeaa9d918477665b5044382b1f12060000000005121e2a36424d576a7784919daaaea298877a6e6154473b2e211408000000000000000000000000000000010d1a2734404d5a6773808d9aa6aca89b8e8175685b4e4235281b0f020000000000000000000000000000000000000000000000000000000b151f2931393f424446464646464643423e3831281f150a00000000000000000000000000000000000000000b151f2931393f424446464646464643423e3831281f150a0000000000000a141e2830383d4143464643423e3831281f150a0000000000000000000000000000000000000000000000000000000000000000000000010d1a26323e4a545e66696c6c69665e54493d3225190d00000000000000000000000000000003070a0f121515181a1c1e1e1f1f201f1f1e1d1b19161413110d08040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915202b363f484e5253535353514d565e616c6c6c6c6c6c6c6c6c65625b514b5253535352504c453d33291e13070000000000000000000000000000000915222f3b4854606b7784919d9f9f9f95887b6e6255483d3222151b1313100c17222d3a4653606d7985929e9f9f9e9185796d6053463a2d201307000000030f1b27323d4955626f7c8896a0aca49a8b7f7265584e43372b1e13080000000000000000000000000000000000000000000008131e2a36414c56626f7c88959faba2988c7f7265584e43372b1f120600000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000d1a2733404c59646f7479797979797979726d6256453c313736332e272021272c2f302e384855616b7079797979797979756f65594d4034271b0e00000000000000000000050d161d242932373b4146474b4e505252535252504e4c4847423c3834454b50515353535353534c4a463f372d23180d0100000000000000000000030c151d23282c2d39393939392e2d2b261f180f060000000000000000000000000000030c151c23282c393939393939393933322f2a241c140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e283139424a50585f626b6f75797d7f828385858686858483817f7c79746f6a625f575049413931271f150b010000000000000000020e1a26313b4854606b74808d939fa3ababa49f9b979892919192939a989d9f938f82786d7a8794abb4a094877a6d6154473a2e211407000814212e3b4754616e7b8798a2aeaa9d908377695e53463d393634383a3e434c555e69717e8b97a1adb9aca09386796d6053463a2d201307000915222f3c4855626f7b8895aab4a99c8f837669544a3f33281c0f0300000000020e1a2531434f5c6976828f9ca9b4aa95887b6f6255483c2f221509000000000000000000000000000000010d1a2734404d5a6773808d9a9f9f9f9b8e8175685b4e4235281b0f02000000000000000000000000000000000000000000000000000006111c27313b434a4f51535353535353504e49423a31261c100500000000000000000000000000000000000006111c27313b434a4f51535353535353504e49423a31261c10050000000005101b26303a42494e4f5353504e4a433a31271c110500000000000000000000000000000000000000000000000000000000000000000000030f1c2935424e5a66707679797670665a4e4135281c0f00000000000000000000000000040a0f13151b1f21222527292a2b2c2c2d2c2b2b2a28262321201d1913100c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a26323d4851595e606060605e575552545f606060606060606058565053585f6060605f5c574f453a2f24180c000000000000000000000000000000091623303c4956636f7c8996939393939083776a5f53473a2e2d2d28201f1c18121f2b3844505c6674818e93939393978a7d7063574a3d3024170a000000000a15212e3b47535f6a7784919daaac9c9083766a5f53473a3025190d010000000000000000000000000000000000000000010d1924303946525e6874818e9aa7aa9f92857a6d6054473c31261b0f0300000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000b1824303c48535d64676c6c6c6c6c6c6c65625b5146464644433f3932292b32383b3d4646444f5961636c6c6c6c6c6c6c68655d53483d3125180c0000000000000000000000040c131820272b3036393b3e4143454646454543423f3b3a37312c283a4043454646464646463f3e3a342d251b1106000000000000000000000000030b12181c1f202c2d2d2d2d22211e1a140e0600000000000000000000000000000000030a11171c1f2d2d2d2d2d2d2d2d2726231f19120a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d273039434b545b606a6f767c8185898c8e90919292929291908e8b8985817c756e69605b534b433931271d1207000000000000000006121e2b37424e57636f7c87939fa5afa9a199938f8a878584848586888c90959e948d80747b8794a1ada093877a6d6054473a2d21140700091623303c4956636f7c8996aab4a79a8e817467574d42342d2a282b2d313a434d57606d7985929eabb8aca09386796d6053463a2d201307000a1723303d4a5663707d8996a3b0a89b8e8275685b4f422d22170b000000000000091c2835424f5b6875828e9ba8b0a396897d7063564a3d3023170a000000000000000000000000000000010d1a2734404d5a6773808d93939393938e8175685b4e4235281b0f0200000000000000000000000000000000000000000000000000000a16222e39434d555b5d6060606060605c5a544c42382d21160a0000000000000000000000000000000000000a16222e39434d555b5d6060606060605c5a544c42382d21160a000000000915212c38424c545a5c60605d5a544c43382d22160a0000000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d69768286868276695c4f4336291c100000000000000000000000040b10161b1f22262b2e2f3233353738383939393837373532302d2c29241f1d18120b060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2a36424e59636b6c6c6c6c6b64615a534d53535353535353534d535b60656c6c6c6c6b6861574c4034281c0f0300000000000000000000000000000e1b2834414e5b677481868686868686867f7265574e4237393939352d2c28231d1c28343f4a5463707d868686868686868175685b4f4235281c0f0000000006131f2b37434e5865727f8c98a2ab9f94887c6f62564c4135291e1308000000000000000000000000000000000000000005111d2935414c56616e7a86929faca3988d8074685d5245392a20150a0000000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c00000000000000000000000814202b36414a53595b6060606060606059565153535353514f4a443b32353d444849535353534f5557606060606060605b59534b41372c20140800000000000000000000000001070d151b1e252a2d2e31353738393939383735322f2e2b261f282f34373839393939393932312e29231b1309000000000000000000000000000000070c10131320202020201514120e090300000000000000000000000000000000000000060c101220202020202020201a1917130e0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18232e39434b555d666c737c83898e9298999b9d9e9f9f9f9f9e9c9b9897918d88827b736c655d554b43392f24180e05000000000000000814212e3a47535f6a76828f9aa4afaba1979287827d7a79787778797b7f838a9196928a7e7b8895a1ada093867a6d6053473a2d201407000a1724313d4a5764707d8a97a3b0a5988c7f7265594c3f31261e1c1f2028313b45515c6673808d99aab4aca09386796d6053463a2d201307000a1724313d4a5764707d8a97a3b0a79a8e8174675b4e4134281b060000000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a000000000000000000000000000000010d1a2734404d5a677380868686868686868175685b4e4235281b0f0200000000000000000000000000000000000000000000000000010e1a27333f4a555f676a6c6c6c6c6c6c69665e54493e3226190d0100000000000000000000000000000000010e1a27333f4a555f676a6c6c6c6c6c6c69665e54493e3226190d010000000d1925323d49545e66696c6c69665e544a3e32261a0d0100000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c1000000000000000000000060c161b21272c2f31373a3c3e4042444545464645454443413f3d3a39352f2c29241d17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3945525e6b757979797978706c615f57514b434646424b51575f656c71787979797873685c5044372b1e110500000000000000000000000000000d1a2733404c59646f7479797979797979726d6256453c45464646413a38342e271e232e384855616b7079797979797979756f65594d4034271b0e00000000030f1b26323c4754606d7a86929faaa69a8d8174685e52463a2f24190d02000000000000000000000000000000000000040d1a232d3946525d6873808d98a3aa9f92867b6e61564c413529180e040000000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326190c0807050200000000000000030f1a252f3841484c4e53535353534c525f6060606060605d5b554d44393d474f54566060606060605a585353535353534f4d4841392f251a0f040000000000000000000000000000040a0f14191e202125282a2b2c2c2c2b2a282522211e1a151d23272a2b2d2d2d2d2d2d2524221e1811090100000000000000000000000000000000000406071313131313080705020000000000000000000000000000000000000000000000030613131313131313130d0c0a070200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2834404b555d676d78808790949b9fa2a9a29e9c9b9a9a9b9d9fa3a9a19e9a948f877f776d675d554b40352920170d020000000000000815222f3b4855626e7b88949facaea39992857d75716e686b6b666d6e72767d84909492857d8996a3aca09386796d6053463a2d201307000b1824313e4b5764717e8a97a4b0a4978a7d7164574a3e3124171012161f2834404b54626f7c8998a3aeaca09386796d6053463a2d201307000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e0100000000010e1b2734414e5a6774818d9aa7b0a4978a7d7164574a3e3124170b000000000000000000000000000000000d1926333f4c58646e7379797979797979756f65594d4034271b0e010000000000000000000000000000000000000000000000000003101d2936424f5b6771777979797979797670665a4e4235291c0f030000000000000000000000000000000003101d2936424f5b6771777979797979797670665a4e4235291c0f030000000f1c2835414e5a66707679797670665a4e4235291c0f0300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000000000000030a111721272c32383b3c4347484b4d4f5151525253525251504e4c494745413a39352f28221c140b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7987868686847d756e69605c554f46454f545c60696e777e8586868685786b5f5245382c1f120500000000000000000000000000000b1824303c48535d64676c6c6c6c6c6c6c65625b514c50525353534e464540393029202c38444f5961636c6c6c6c6c6c6c68655d53483d3125180c00000000000a15202c3945525d6874808d98a3ac9f92867a6d61564c4135291f14090000000000000000000000000000000000010c161f2a36424d57616d7a85929faaa2988d8074695e52433a2f241906000000000000111e2b3744515e6a7784919daaa5998c7f7266594c3f332619191514120e090300000000000008131d262f363c4041464646414c565e6c6c6c6c6c6c6c6a675f554a3f444f5960636c6c6c6c6c6c67645c534846464642403d372f271e1309000000000000000000000000000000000002080e111414181b1d1f1f201f1f1d1b191514120e0912171b1e1e202020202020191816120d060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313a45515c676d79828d92999fa6a39f9a97928f8e8d8e8e9092989b9fa3a69e99928c82796d675d51453f32291e14080000000000000d192633404c5966737f8c99a6b0ac9f92877c6f6b64615e56545c6062656c707a8290949083909daaaca09386796d6053463a2d201307000b1825313e4b5864717e8b97a4b0a396897d7063564a3d3023170a060d18232e3a4653606d7986929facaca09386796d6053463a2d201307000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e0100000000010e1a2734414d5a6774808d9aa7b1a4978b7e7164584b3e3125180b000000000000000000000000000000000b17232f3b47525c64676c6c6c6c6c6c6c68655d53483d3124180c000000000000000000000000000000000000000000000000000004111e2a3744515d6a77838686868686868276695c504336291d10030000000000000000000000000000000004111e2a3744515d6a77838686868686868276695c504336291d1003000000101c2936434f5c69768286868276695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c1000000000000000030c151c232832383d4348494e5355585a5c5d5e5f5f605f5e5e5d5b595654514c47454039332d261d181008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e889396918a827b736d67615953525960666d737b828b929792877e7064574a3d3124170a0000000000000000000000000000000814202b36414a53595b606060606060605956514f575d5f6060605b53514b423a322a28333e474f5557606060606060605b59534b41372c201408000000000004111d2935414c56616e7b86929faaa2988c8073685d52453b30251a0d030000000000000000000000000000000007121d28313946535e6973808d98a2a89f92857a6d61564d4231281e1308000000000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3326252522211e1a140e060000000000010b141d252b30333439393946525e68767979797979797771675b4f434854606b70797979797979746e64584c4039393534312c251e150c0200000000000000000000000000000000000000020507080b0e101213131212100f0c0808060200070b0f11121313131313130c0b09060100000000000000000000000000000000000000000000000000000000050a0d0f101313100f0d0a0500000000000000000000000000000000000000000000000000000000000000000000020608080b0e1011121313121211100d0b080705020000000000000000000000000000000000000000000000010d19242f3a43505a606d79828f949fa3a7a099928e898583818181828386898e92999fa7a39f948f82796d605b51443b3025190e020000000005111e2a36424d576976838f9ca9b1a79a8d80736a605954524c4a5053555a61676d798290959095a0abaca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa296897c6f6356493c302316090007131f2c3845515c667683909da9aca09386796d6053463a2d201307000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e0100000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3124180b0000000000000000000000000000000007131f2b36404a52585a606060606060605b59534b41372c201408000000000000000000000000000000000000000000000000000004111e2a3744515d6a778490939393938f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a778490939393938f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000000000000030d151e262e343d44484f5456585f626566686a6b6b6c6c6c6b6a6a686563605d5553514b443f382f2a221a11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4956626c717f8b919e948f868079706b615f5d606b6f797f868f949f93887e716c6155493c3023160a000000000000000000000000000000030f1a252f3841484c4e535353535353534c4a4c5761696b6c6c6c68605c544c443c342c2c353e44484a535353535353534f4d4841392f251a0f040000000000010d19242f3a46525e6974808d98a2aa9f92857a6d60574d42362a1f150b010000000000000000000000000000050e18242f39434f59616e7b86929faaa0968c7f72685e52443b301f160c01000000000000111e2b3744515e6a7784919daaa5998c7f7266594c3f333232322e2d2a261f180f060000000000020b131a202427282d2e3b4754616e7a86868686868683776a5d5144495663707d8686868686868074675a4e41342d282725201a130c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11161a1c1d20201d1c1a16110a0300000000000000000000000000000000000000000000000000000000000205090e121415181b1d1e1f20201f1f1e1c1a181514120e090502000000000000000000000000000000000000000004111d2935414c56616c74818e949ea6a69f959087817c79767474747577797d818790959ea5a69e948e81756d62564c41362a1e1408000000000714202d3a46525e697885929fabaca095877b6e61584f4746413f44464850555d676e7b85929da0a7b1aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f2316090004101c2834404b546875828f9ba8aca09386796d6053463a2d201307000a1724313d4a5764707d8a97a3b0a79a8e8174675b4e4134281b0e0100000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a00000000000000000000000000000000020e19242e3840474c4d535353535353534e4d4841392f251a0f04000000000000000000000000000000000000000000000000000004111e2a3744515d6a7784909d9f9f9c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909d9f9f9c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000000020b151f2730383f444f54596063676a6f7173757778787979787877767472706d6764605d55504a423c342c231a100700000000000000000000000000000000000000000000000000000000000000000000000000000000000815212d3945505a626d727f8b919c98928c847d756e69686d747c838c92989c918b7f726c625a5044392d2014080000000000000000000000000000000008131d262f363c4041464646464646463f44505d697378797979746d665e564e463e35282c33383c3d4646464646464642403d372f271e13090000000000000008131e2a36424d57616d7a85929fa8a2978d8073695e52463d31271d120700000000000000000000000000020b17202935404b55606b75828f98a3a59d9184796d60564c4132291f0d0400000000000000111e2b3744515e6a7784919daaa5998c7f7266594c3f3f3f3f3f3b3a36312a21180e03000000000001080f14181a1b212e3b4754616e7a87939393939084776a5d5144495663707c89939393938d8174675a4e4134271c1b18140f090200000000000000000000000000000000000000000000020507080b0e111112131312110f0c0908060300000000000000000406070b0f1213131211100e0c0b09060100000000000000000000000000000000040d151c2226292a2d2d2a2926221c150d04000000000000000000000000000000000000000000000000000002080e11151a1e21222528292b2c2c2c2c2b2b29272522211e1a14120e09020000000000000000000000000000000000000613202c3945525d68717e8a939da6a89f948f837c746f6c6668676768666d70757c838f939ea7a69e938b7f72685e52463b3025190d010000000814212e3b4754616e7b8798a2aeaa9d908377695e53463d393634383a3e434c555e69717e8b97a1adb9aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000c18232e414e5b6874818e9ba7aca09386796d6053463a2d201307000a1723303d4a5663707d8996a3b0a89b8e8175685b4e4235281b090000000000020f1b2835424e5b6875818e9ba8b0a3968a7d7063574a3d3024170a00000000000000000000000000000000020e1a26313c454e53556060606060606055534e463c31261b0f03000000000000000000000000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c1000000000000a141d273139424a505960636b6f74787b7e8082848485858685858483817f7c7a75716d67605b544e463e352c23190d040000000000000000000000000000000000000000000000000000000000000000000000000000000005111d29343e48505a626d727f8c929c9f96918a827b73717a818891959f9d928c7f736d625a50483e33281c100400000000000000000000000000000000010b141d252b303334393939393939393845525f6b788586868681786d685f584f473f342e272c2f30393939393939393534312c251e150c0200000000000000010e1a25303b46525e68727f8c96a0a99f92867b6e61594f43392f24180e040000000000000000000000000a141d29323a45515d67707d89939ea89d93897d70675c51443a3020170d0000000000000000111e2b3744515e6a7784919daaa5998c7f7266594c4c4c4c4c4c4846423b332a1f14090000000000000003080b0814212e3b4754616e7a87949f9f9d9084776a5d5144495663707c89969f9f9a8d8174675a4e4134271b0e0c08040000000000000000000000000000000000000000000003090e121415181b1d1e1f201f1f1d1b191515120f0a0401000000070c101313181c1e1f201f1e1d1b181815120d060000000000000000000000000000030d161f272d32353639393635322d271f160d03000000000000000000000000000000000000000000000002080d14191e20262b2e2f323436383939393938373634322e2d2b26201e1a140e090200000000000000000000000000000004111d2935414c55606d7a85929ea5aca0968f82796e6a62605b545a5b545c60636a6e78818f959faba59f92857a6e61564c41362a1e1105000000091623303c4956636f7c8996aab4a79a8e817467574d42342d2a282b2d313a434d57606d7985929eabb8aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f2316090000071a2734404d5a6773808d9aa6aca09386796d6053463a2d201307000916222f3c4955626f7c8895aab4a99c8f8276695c4f4330251a0e0200000000030f1c2936424f5c6975828f9ca8b5ab95897c6f6256493c2f2316090000000000000000000000000000000006121e2b37424e575f6c6c6c6c6c6c6c6c625f584e43372b1f1206000000000000000000000000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000006111b262f39434b545c606b70767c8184888b8d8f9091929293929191908e8c8986827e79716c665f584f473e352b1f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000c17222d363f48515b636d737f8c929ca09e948f867f7d848d939aa09d938d80736d635b51483e362c22170b000000000000000000000000000000000000020b131a202427282d2d2d2d2d2d2d323f4c5965727f8c93938e827a6f6a615951444039302823242d2d2d2d2d2d2d282725201a130c0300000000000000000009141f2a36414c56606d7984919da5a2988e81756b60554b40352920160b020000000000000000000006111c262f3a444f59606d7984919ea5a1968e81746b60554b4032291e0e050000000000000000111e2b3744515e6a7784919daaa5998c7f72665958585858585855534d453b31261a0e020000000000000000000814212e3b4754616e7a8794a1aa9d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000040a0f141a1e212125282a2b2c2c2c2b2a282622211f1b15110d08030b12181c1f2025292b2c2c2c2b2a272524221d181109010000000000000000000000000a151f2831383e4243464643423e3831281f150a00000000000000000000000000000000000000000000040c13191f252a2d31373a3b3e41434445464645454443403e3b3a37312d2a251f1a140d0500000000000000000000000000000613202c3945515d6773808d97a1ada69e91847a6d675f5853504a4e4e4b5153585f666d79839099a3ada2978d8174685e5246392d2014090000000a1724313d4a5764707d8a97a3b0a5988c7f7265594c3f31261e1c1f2028313b45515c6673808d99aab4aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000814212e3b4754616e7b8798a3aeaa9d9084776a574d42362a1e12050000000005111d2935414c566a7783909daaafa399877b6e6154483b2e211508000000000000000000000000000000000814212e3a47535f6a7679797979797979766a5f53473a2e211508000000000000000000000000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000000000b17222d38414b555c666d737d82898e919698999b9d9e9e9f9f9f9e9d9d9b9898928f8a857e786f6a61594f473d31281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000006101b242d363f49515b636d73808d929da49e98928c8a91969fa49e938e81746e645b51493f362d241a10050000000000000000000000000000000000000001080f14181a1b20202020202025313e4a56626d75818f969490847c706b625b514a423a322a21192020202020201c1b18140f090200000000000000000000020d1925303a45515c67707d89939da89e93897d70675d51453d32281d140a000000000000000000071017222d38424c56606b74808d96a0a3999184796d60594f43392e20170d000000000000000000111e2b3744515e6a7784919daaa5998c7f726665656565656565615f574d42362a1e12050000000000000000000814212e3b4754616e7a8794a1a99d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e01000000000000000000000000000000000000000000060c161b1f252a2d2e31343738393939383735322f2e2b26201d19130c151d23282c2d32353839393838363432312e29231b1309000000000000000000000005111c27313a434a4e505353504e4a433a31271c11050000000000000000000000000000000000000000080e161e25293036393c4247484b4e50515253535252514f4d4b4846423c3a36302a251f170f08000000000000000000000000000714212d3a4754606d7a85929fa9aa9e94897d70685d554e46443f41414045464e545c676f7c87929faca99f92867a6e6154473c31261a0e0200000b1824313e4b5764717e8a97a4b0a4978a7d7164574a3e3124171012161f2834404b54626f7c8998a3aeaca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000713202d3a4653606d7986929facab9f928578695e52463a2d201407000000000713202d3946525d687885929eabac9f9286796d6053463a2d201307000000000000000000000000000000000815222f3b4855626e7b868686868686867c6f6255483c2f22140a000000000000000000000000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000000030f1b27333f49535c676d7880888f949a9ea1a8a6a9a19e9d9d9c9d9d9ea1a9aaa39f9b97918b837c706b61594f433a2f24190d010000000000000000000000000000000000000000000000000000000000000000000000000000000009121b242d373f49525b636e74808d929da5a39f99979ea1a69e948e81786c605c524940372d241b11080000000000000000000000000000000000000000000003080b0d0e131313131316222e3a46515b606d7a8491989691867d726d605c544c443c332b2317110a1313130f0e0c08040000000000000000000000000008131e2834404b55606b74818e96a1a59d9184796d60594f443a2f261b110600000000000000060f192228333f4a545e68707d88939fa69f92877d6f675d51473d30271d0e05000000000000000000111e2b3744515e6a7784919daaa5998c7f7272727272727272726e695f53463a2d2114070000000000000000000814212e3b4754616e7a87949c9c9c9084776a5d5144495663707c89969c9c9a8d8174675a4e4134271b0e0100000000000000000000000000000000000000030a111720272b31363a3b3e4144444546464544423f3c3b37322c29241e191e272e34383a3e42454646454443413f3d3a342d251b1106000000000000000000000a16222d38434c545a5d60605d5a544c43382d22160a000000000000000000000000000000000000020a121a202830353b4146474e5355585b5c5e5f5f5f5f5e5e5c5a5855534d4846423b363029211a120a020000000000000000000005111e2a36424d5765727f8b98a2aea99c8f82756b60564c433c38332d2e34383c424b555f6a74818e9ba8aea3988c7f7266574d42372b1e120500000b1825313e4b5864717e8b97a4b0a396897d7063564a3d3023170a060d18232e3a4653606d7986929facaca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070006121f2b3844505c667784909daaaea298877b6e6154483b2e21150a000000000714212e3a4754616d7a8797a1adaa9e918477665c5145382c1f1306000000000000000000000000000000000714212d3a4754606d7a879893939393897d7063564a3d2f261b11060000000000000000000000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c1000000005121f2b3744505b656d79828d939a9fa6a7a09d999697929090909090929795999da0a7a19e9590867d706b60564c4135291d1307000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b252d374049525c646e74808d939da59f9f9f9fa79f948f82786d665b504a40372e251b1209000000000000000000000000000000000000000000000000000001010606060606121e29353f45525d686f7c86929f9892877f746d665d564d453d3528231c140c0300020100000000000000000000000000000000020c18232e39434f59606d79849199a3a0968d80736b60564c41382d221710070000000000030d18212b343d44505b666d7a85919aa49e948c7f726b60554b41352b1e150b00000000000000000000111e2b3744515e6a7784919daaa89b8f817f7f7f7f7f7f7f7f7f7b6e6155483b2e2215080000000000000000000814212e3b4754616e7a878f8f8f8f8f84776a5d5144495663707c898f8f8f8f8d8174675a4e4134271b0e01000000000000000000000000000000000000030c151c232832373b4246484b4e505152535252504e4c4847433c39352f28222b30394045464b4f5152535251504e4b4a463f372d23180d010000000000000000010d1a26323e4a545e66696c6c69665e544a3e32261a0d0100000000000000000000000000000000020b141c242c323a41464d5254575f626567696b6c6c6c6c6b6a696765615f5754524d46423b332c241c140a020000000000000000000714202d3a46525e697683909daaada196897d7063594f433a312b282223282c3039434e58626f7c8895a0acaa9d908477695f53463a2d21140700000b1825323e4b5865717e8b98a4afa296897c6f6356493c302316090007131f2c3845515c667683909da9aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070003101c28343f4a546875818e9ba8b3aa978a7d7064574a3d32271b0d04000001081623303d495663707c8996a9b3a89c8f827569544b4034281c1004000000000000000000000000000000000613202c3945525d687985929f9f9f998c7f7366584e41382d2217110a02000000000000000000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000005111e2a36414c56606c77818e949fa4a7a09d95908c89878584838383848587898c90959ea1a7a09892867d6f685d52453a2f24180d01000000000000000000000000000000000000000000000000000000000000000000000000000000000009131c252e37404a525c606c77818e93939393939393959082796d665c544a3f382e251c1309000000000000000000000000000000000000000000000000000000000000000000010d18232935414c565f6a727e8b939e99938c81786d685f574f473f342e261e150c030000000000000000000000000000000000000007121d27303d45515d676f7d87929fa69f93877d6f685e53493f332722190f060000000009141f29333d46505a606c78828f97a1a0958f82776c60594f433a2f23190c0300000000000000000000111e2b3744515e6a7784919daaaa9e938f8b8b8b8b8b8b8b8b8a7d7164574a3e3124170b0000000000000000000714212d3a4754606d7a8283838383838174675b4e414855626f7c8283838383827f7265584c3f3225190c000000000000000000000000000000000000030d151e262e343d43474d5354585b5d5e5f5f5f5e5d5b5955534e4745413a3129343c424b5153585c5e5f5f5f5e5d5a585651493f34291d12060000000000000000030f1c2935424e5a66707679797670665a4e4235291c0f03000000000000000000000000000000010b141d262e363e444c52565e61666a6e717476777879797878777673716e6966615e57524d453e362e261c140a0000000000000000000814212e3b4754616e7b87959fabab9e9184786c6053463d31281f1c17181c1f27313c47535f6a7784919daaaca095887b6e6155483b2e22150600000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f2316090004101c2834404b546875828f9ba8aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000b17232e3f4b5865727e8b98a8b2a69a8d807367584e43372b1f15100c090e131e2a36414c5666727f8c99a5b3aa998c7f7366594c402e23180c000000000000000000000000000000000004111d2935414c566976838f9caca99d9083766a6053493f3327221b140b040000000000000000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c1000000713202d3946525e68727f8c939ea6a59d959089837f7c7a787776767677787a7c7f838a9297a1a9a29891847a6d60554b4135291d11040000000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c252e384044505b656c7881868686868686868683796d675d544a42382d261c130a0100000000000000000000000000000000000000000000000000000000000000000000070d19242f3a434e58626d75818e95a09f928e827a6e69605951443f3830271e150b00000000000000000000000000000000000000000b151e2935414b55606b727f8c949ea49991847a6d655b50443e342b21180d030000020e1a26313b454e58616c73808d949ea19791837a6d655b50473d31281d11070000000000000000000000111e2b3744515e6a7784919daab0a69e9b98989898989898978a7d7164574a3e3124170b0000000000000000000713202c3945525d686d767676767676746f64584c4047535f6a6f767676767676726d62564a3e3125180b0000000000000000000000000000000000010b151f2730383f444e54575e6164676a6b6c6c6c6b6a6865625f5854524c433f353c464e545c6065686b6c6c6b6b696765625b51463a2e221509000000000000000003101d2a3643505d69768286868276695d5043362a1d100300000000000000000000000000000009131d262f38404850565e61686e73777b7e81838485868685858482807e7b77736e69615e57504840382e261c130900000000000000000b1824313e4b5764717e8a97a7b1a79a8e8174665b5044382b1f160f0b0c10151f2b37434e586773808d9aa6b1a7988b7e7165584b3e2d22170b00000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000c18232e414e5b6874818e9ba7aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000615222f3c4855626f7b8896a0acaa9d9184776a6054473c31271f1c181b1a1e242d3946525e6876838f9ca9aea298897c706356493d302316070000000000000000000000000000000000010d19242f3f4c5966727f8c9aa4ab9f95897c6f655b50443e332d261d160e0600000000000000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100004101c2834404a54616d7a85929fa5a69d938e837d77736f6d686a6a696a6a676d6f73787e859196a1aaa1968d8073675d5145392c201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a131c2627333f49535b666c757979797979797979776d675d554b42392f261c140a0100000000000000000000000000000000000000000000000000000000000000000000000008131e28313c46515b606d79839198a29d948f847b706b625b504a423930271d120700000000000000000000000000000000000000030c18242f3a434f59606c77828f95a0a1968f82776c605a50463d33291f1409000005121e2a36424d57606a717e8a929ca29892857b6e685d53493f352b1f160c000000000000000000000000111e2b3744515e6a7784919d9f9f9f9f9f9f9f9f9f9f9f9f978a7d7164574a3e3124170b00000000000000000004111d2935414c565d6069696969696967645c53483c434e585f6269696969696965625b51463a2e221609000000000000000000000000000000000007121d273139424a50586062696e71747777787979787775726f6a66605d56504540454e5860666d717578797978777674726d62564a3d3124180b000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000007101b252f38404a525a61686d747b8084888b8e8f919292929291918f8d8b8884807b746e69615a524a40382e251b0f06000000000000010e1b2834414e5b6774818e9aa7b4aa978a7e7164544a3f3328190d040000040d1b26323d4a5764707d8a97aab4a79b8e81746853493f33271b0f03000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f2316090000071a2734404d5a6773808d9aa6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000815212e3a47535f6a7784919eabaca095887c6f62584e4339312c282327262b2f35414c56616d7a86929facab9f9285796d6053463a2d2013070000000000000000000000000000000000000815222f3b4855626e7b87939faba79c9082776c605a50443f382f282017110a020000000000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100006121f2c3844515c6674808d98a2aa9e948e8179706b6663605d565d5d5d555d6062656c717b84919ea8a99f92857a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a1417222d38414a545b60686c6c6c6c6c6c6c6c6a605d554c433930271d140a0200000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a343f45515d676e7c86929fa59f9691857d726d605c544b42392e23180c000000000000000000000000000000000000000007131d28313d44505b656d7a839197a19e948c80736c61584e453b31261a0e02000714212d3a46535f696f7c869293939992867c6f695f564c41382d23190d04000000000000000000000000111e2b3744515e6a77849193939393939393939393939393938a7d7164574a3e3124170b000000000000000000010d1924303a444c52545c5c5c5c5c5c5b58534a41363c464e53555c5c5c5c5c5c585651493f34291e120600000000000000000000000000000000020c18242f39434b545c606a6f757b7e8183848586858583817f7c78726d68625a514b4d57606a6f797e82848586858483817f7265584b3f3225180c000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000030c19222d37404a525c636c717a81868c9196989a9c9e9f9f9f9f9e9d9c9a9895918d86817b716c645c524a40372d21180e03000000000005111e2a36414c566a7683909da9aea298887b6e6155483b2d221708000000000a15212e3b4854616e7b8798a2aeaa9d908377655b5044372b1f1205000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000006121f2b37434e586673808d99a3afa89b8e81756a5f554b433c38342e3431373a4145525d68737f8c99a3afa79b8e8175675c5145382c1f13060000000000000000000000000000000000000814212e3a47535f6975828f99a3ab9f948c7f726c615a5049413a3227221b140b0400000000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000713202d3a4653606d7885929fa9a2988f82786d6760595654524c5050504c5154535b6069707d8a96a0aca2988a7e7164574a3e3124170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f38424a50535b60606060606060605d54514c433a31271e150b02000000000000000000000000000000000000000000000000000000000000000000000000000000040d18222935404b555f6a717e8a939da7a09792877f746d665c544b4034281c100400000000000000000000000000000000000000010c161f27333f49535d686e7b859298a29f93887e706a60574d42362a1e1205000815222e3b4855616e7b858686868686867d706a60574d433a2f261b110700000000000000000000000000111e2b3744515e6a7784868686868686868686868686868686867d7164574a3e3124170b0000000000000000000008131e28323a4145475050505050504e4c4841382f343c4347485050505050504c4a463f372d23180d01000000000000000000000000000000000a141e2935404b555d666d747c82878b8e909192929291908e8c88847f7a716d605d55535f696f7c848b8f9192929291908d86796c605346392d2013000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000a151e2b343f49525c646e737e858d92999da0a8a9a29f9d9c9b9c9d9fa2aaa7a09d99928e857e736e645c52493f332a1f140900000000000713202d3946525e687885929fabac9f9285796c605346392d201306000000000714212d3a46535e697985929facac9f9285796c605346392d201306000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000030f1a26313c4854616e7b87929faaac9f92877c6f675d554e46454041414142474c515b606d7a85929eabaca095897d7063554b4034281c100400000000000000000000000000000000000006121e2b37424d57626f7c87929fa7a69f93877e716c605b534c443d332d261d160e06000000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000a1723303d4a5663707d899297979992857b6e665c554f49474541434343414547495057616b7784919daaaa9a8d8174675a4e4134271b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262f383f44464e5353535353535353504745413a31281f150c030000000000000000000000000000000000000000000000000000000000000000000000000000000000071018242f39434e58616c74818e95a0a9a299928b80786d665c5145382c1f13060000000000000000000000000000000000000000040d17222d38414c565f696f7d869299939a92867c6f695f53463a2d211407000714212d3a46535f696e78797979797979706b61584e453b31281d140a0000000000000000000000000000101d2a36434f5b67717779797979797979797979797979797979716c6155493c3023170a00000000000000000000020c1620283035393a43434343434341403c362f262a32373b3c4343434343433f3e3a342d251b11070000000000000000000000000000000006111c26303845515d676d7880898f93999a9d9e9f9f9f9e9d9b9896918c857e756d675d58626e7b8691969b9e9f9f9e9e9c9386796c605346392d2013000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000006111c26303d46515b646e74808a92979fa3a9a19e999792908f8f8f909298989d9fa7a39f97928a80736e635b51453b31261a0e04000000000714212e3a4754616d7a8798a2aeaa9d918477665b5044382b1f12060000000005121e2a36424d576a7784919daaaea298877a6e6154473b2e211408000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000a15212d3a46535e6975818e98a3aea3999083796d675f5853514b4e4e4e4d53555d606d74818e97a1ada69d9083776b605443392e23180c00000000000000000000000000000000000000020e1a26313c4754606a73808d959fa8a49992877e736c655e564f443f382f2820180f070000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000a1724313d4a5764707d8285878a8c8d8073685e544b433d3a39352f362f35393a3f444f596774818d9aa7a99c908376695d5043362a1d1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141d262d333839424646464646464646443a39352f281f160d030000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d28313c46505a606d7983909893939393928d82796d6053463a2d20130700000000000000000000000000000000000000000006111b262f3a434d57606a707d868686868686857b6e6155483b2e2215080005121e2a36424d575f616b6c6c6c6c6c6c6361594f463d332a1f160b0200000000000000000000000000000e1b27333f4b565f676a6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d2114080000000000000000000000040e161e24292c2d3636363636363433302b251d20262b2e2f36363636363632312e29231b130900000000000000000000000000000000000b17232e3842505a606d79828d929b9fa4ababa39f9d9c9b9c9d9fa19e97928b82796d685f6a76828f98a1a8aaa39f9995949386796c605346392d2013000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000c17232e38424f59626d74808d929ea1a9a39f97918c8885838282838385888b90959ea1a8a29f928d80736d62574d42362a20160a000000000915222f3c4855626f7b8895aab4a99c8f837669544a3f33281c0f0300000000020e1a2531434f5c6976828f9ca9b4aa95887b6f6255483c2f221509000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000005121e2a36424d57616e7b86929fa6aba0958f82796f6a63605c555b5a5b575f62676d747f8c939ea9a99f948a7d7064594f4430271d120700000000000000000000000000000000000000000915202b37434e58606d79839096a0a7a39992877f776d6860595049413a322a2119100700000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000a1623303c4955616c7076787b7d80827c6f62564d4239302d2c29242a24292c2d33404c5966737f8c99a6aa9d9184776a5e5144372b1e110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141c22282b2d353939393939393939372d2c29241e160d040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a343e45515c676e7b8586868686868686867a6e6154473b2e211408000000000000000000000000000000000000000000000a141d28313b454e58616b70797979797979786e695f53463a2d21140700020e1a26313b454d53555f60606060605f57554f473e342b21180d040000000000000000000000000000000b17232e39444d565b5e60606060606060606060606060606060575550483e33281c1104000000000000000000000000040c13191d2021292929292929282724201a13151b1f21222929292929292525221e181109010000000000000000000000000000000003101c28343f4a54616c74818e949da4aca7a09d9992908f8f8f9192999a9e9f948f837a6d666f7c88949faaaea398928c88878886796c605346392d2013000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000003101c28343f4a54606b727f8c929ca4aaa299928c84807b787675757677797b7f838a91969fa6a49c928b7f72695f53463d32271b0f030000000a1723303d4a5663707d8996a3b0a89b8e8275685b4f422d22170b000000000000091c2835424f5b6875828e9ba8b0a396897d7063564a3d3023170a000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000020e1a25313b46535f69737f8c949fa7a79f948f837c75706d676867676869696e737a818c919ca5aaa1978f82766c6155473d331e150b000000000000000000000000000000000000000000030f1b27323c45515d676e7a8490959ea6a399938c827a6f6b605b534c443c332b22191107000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000814202d39444f59616469696e7073756f6a5f53443b302721201f2023282c2f353a424d566673808c99a6aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f20282d2d2d2d2d2d2d2d2a21201d19130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18222934404b555f696e78797979797979797976685e5246392d20140700000000000000000000000000000000000000000000020b161f2a333d464f5961636c6c6c6c6c6c6b615f574d42362a1e1205000009141f29333b424648525353535353534a48443e352c22190f060000000000000000000000000000000006121d28323b444b4f51535353535353535353535353535353534a49453e362c22170c000000000000000000000000000002080d1113141d1d1d1d1d1d1b1a18140f080a0f1215151d1d1d1d1d1d191816120d0700000000000000000000000000000000000006121f2b3844505c66717e8b939ea6aea59d95908a86838282838486898d92979f959083786d73808d99a6b0a89f9286807c7a7b7d7063574a3d3024170a000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000006121f2c3844505c666f7c87929fa4aba29892878079736f6a6a696869656c6e72777d848f949fa6a49f92867b6e61584e43382b1f13060000000a1724313d4a5764707d8a97a3b0a79a8e8174675b4e4134281b060000000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000009141f2a36424d57606d78828f959fa7a69f959087817d79777574747476787b80858e939ca3aaa29892857b6e615a5044352b210c03000000000000000000000000000000000000000000000a15202935404b555e686e7b838f949fa3a49f948f847d726c655d564d453d342b23190f060000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100004101c28333e474f5557575e61646669625f584e4332292122282b2d2e34383a40454c545e6975828f9ba8aa9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131b20202020202020201d1413110d0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f18232f39434d575f616c6c6c6c6c6c6c6c6c6c5e564c41362a1e11050000000000000000000000000000000000000000000000040d18212b343e474f55575f60606060605f55534d453b31261a0e020000030d18212931363a3b454646464646463d3c38332c231a10070000000000000000000000000000000000000b16202932393f4344464646464646464646464646464646463e3c39332c241a100500000000000000000000000000000000010407071010101010100e0d0b08030000030608091010101010100c0b090601000000000000000000000000000000000000000713202d3a4653606d7884919ea5afa69d938e837d797776757677797c80858c9298958e81747683909ca9aca0958a7e736f6e6e706b6155483c2f231609000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000003101c28343f4a54606d78839099a3afa39992867d736d67625f585c5c535b6061656c707a828f949fa9a2988f82766a6054473b2e2215080000000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e0100000000010e1b2734414e5a6774818d9aa7b0a4978a7d7164574a3e3124170b000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000030e1a26313b44505c666d7a8390959da5a7a099938e898683828181818385888c92979da5a7a09892867d70695e52483e3323190f0000000000000000000000000000000000000000000000040c18242f39434c565e696e7a828c9299a1a69e9691877f776d685f574e463d352b21180c0300000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c1000000b17212c353e44494a4d535457595c55534e463c312a2d2d3338393c4045464b51565d666e7b86929faca89c8f8275695c4f4236291c0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306060f1313131313131313110706040100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c454d53555f60606060606060605f524c443b3025190e02000000000000000000000000000000000000000000000000060f19222c353e44484a535353535353524846423b33291f140900000000060f181f262a2d2e38393939393939302f2c28211a110800000000000000000000000000000000000000040e1720282e3336373939393939393939393939393939393931302d28221a120800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a96a0acac9f948e8179716d67696869676d70747a7f869095938a7e7885929fabaa9d9184776c6261616361594f44382c201407000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000006121f2c3844505c66727f8b95a0aba89f92877d706b605d55534e4f4f495053555a61686d79829097a1a49f94897c6f6256493c2f2316090000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e0100000000010e1a2734414d5a6774808d9aa7b1a4978b7e7164584b3e3125180b000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000000009141f28343f4a545e686d7a838e929d9fa7a49f9b9892908e8e8d8e8f9197999ea1a9a29e9590867d706b60574d42362c22110800000000000000000000000000000000000000000000000007121d27313b444d565e686d777f8791979fa6a199928c827a6e6960584f473d332a1e150a00000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000005101a232c33393c3d4246484a4d4f4847433c3431363a3b3f4446494b5153555d60686d78828f98a2aea7998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a333c4246485253535353535353535346413b32291e1408000000000000000000000000000000000000000000000000000007101a232c33383c3d464646464646453b3a36312921180d030000000000060d141a1e21222c2d2d2d2d2d2c2423201c161008000000000000000000000000000000000000000000050e161d23272a2b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423211c171008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000106090b0c1313131313130d0c0a070200000000000005121e2a36424d576875818e9ba8afa49a8f82786d66605d555c555c6063676d727b838f9391857b8797a2ada79a8d8074675a545557554f473e33281c1004000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000713202d3a4653606d7984919ea7ada1968d80736b6059514b474342423f44464850565d676d7a85929b9993908c8275685c4f4235291c0f0200000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e0100000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3124180b000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000000030b17232e38424c565e686d79818990959b9fa2aaa39f9d9b9a9a9b9c9ea1a9a49f9c97928c837b706b60594f453b30241a1000000000000000000000000000000000000000000000000000010b151f29323b444d565d656c727d858f949fa3a39f948f847b6f6a60594f453c30261c1106000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c1000000008111a21282d3031363a3b3d40423c3a37373b3c4246484a505355555c6063676d727a818f949eaaab9f95887c6f6255493c2f22160900000000000000000000000000000000000000000000000000000003080c0e0e131313131313130f0e0c09040000000000000000000000000000000000000000000000000000000000000003070b0d0e131313131313130e0e0c08030000000000000000000000000000000000000000000000000000000000030d18212a31373a3b4546464646464646463b3936302920170d0200000000000000000000000000000000000000000000000000000008111a21282c2f30393939393939382e2d2a261f180f060000000000000003090e1214151f202020202020171614100b050000000000000000000000000000000000000000000000040b12171b1d1e20202020202020202020202020202020171714110c0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070d121618192020202020201a1917130e0800000000000714202d3a46525e697885919eabac9f93877c6f665c54514b4f4b5153555d60696e79818f949083909da9b3a4988b7e7165584b484a48443e352c21160b00000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000004101d2935404b5564717d8a96a1acaa9e9184796d60594f45403937312d3337393e444c555e68717e8b8e8a86837f7c6f6255483c2f2215090000000a1724313d4a5764707d8a97a3b0a79a8e8174675b4e4134281b0e0100000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000000006111c26303a444c565e676d747c83898e9298999b9d9e9f9f9f9f9e9d9b999993908b857f786e6960594f473d33291f12080000000000000000000000000000000000000000000000000000030d172029323b444c535b606b707a828c9299a1a69e9691857d6f6b60574d42382e23170c020000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000000000810171c2023252a2d2e31333036393c4347494d5354545b606266676d7074797e858f939ea6aea49d9083776a6054473b2e2215080000000000000000000000000000000000000000000000000001090f14181a1b202020202020201c1b191510090200000000000000000000000000000000000000000000000000000001080e1317191a202020202020201b1a18140f090100000000000000000000000000000000000000000000000000000000060f181f262b2d2e3939393939393939392e2d2a251e170e0500000000000000000000000000000000000000000000000000000000000810161c2023242c2d2d2d2d2d2c22211e1a140d060000000000000000000002050708121313131313130a090704000000000000000000000000000000000000000000000000000000060b0e1011131313131313131313131313131313130b0a080400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010911181e2225252d2d2d2d2d2d2726231f19120a020000000815212e3b4854616e7b8797a1adaa9d9083776a5f544b4540424045474b51575f676d78828f9590959fabb0a3968a7d7063574a3d3d3c38332c231a100500000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000613202c3945515d6775828f9ba8aea3988b7e71675d51473d352f2b2622272b2d323a434c56606d7883817e7a76736f6a5f53473b2e2115080000000a1723303d4a5663707d8996a3b0a89b8e8175685b4e4235281b090000000000020f1b2835424e5b6875818e9ba8b0a3968a7d7063574a3d3024170a000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000000000000000a141e28323a444c555c606b6f777d8185898c8e90919292929291908f8d8a86837e79726d665f574f473d352b20170d00000000000000000000000000000000000000000000000000000000050e172029323a4149505960686d777f879297a0a8a09792867d6f695f544a3f34281e13080000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000000050b1014161a1e21282f353a4146474e5455575e6165666c6f7276797d81858b91979ea5afa69d92897d7063584e43372b1f1306000000000000000000000000000000000000000000000000030b131a202427282d2d2d2d2d2d2d292825211b140c0300000000000000000000000000000000000000000000000000020b12191f2326272d2d2d2d2d2d2d282724201a130b0300000000000000000000000000000000000000000000000000000000060e141a1e21222c2d2d2d2d2d2d2d2d21201e19140d0500000000000000000000000000000000000000000000000000000000000000050b101416172020202020201f1514120e09030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b23292e313239393939393933322f2a241c140a0000000916222f3c4955626f7c8895a9b3a79a8d817467584e4239352f34383a40454d555c666d7a85919d9fa7b1afa396897c706356493d302f2c28211a11080000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000714202d3a4753606d7a86929facac9f92867a6d60554b403529241d1a171b1f2028313a44515c666d7775716d6866625f584e43372b1f12060000000916222f3c4955626f7c8895aab4a99c8f8276695c4f4330251a0e0200000000030f1c2936424f5c6975828f9ca8b5ab95897c6f6256493c2f231609000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000000000020c162029323a434b515960636b7075797c7f82838485868685858382807d7a76726d67605c544d453d352b23190e050000000000000000000000000000000000000000000101020000000000050e1720282f383f444f565e656c727d859196a0a9a29892857b6e665c50443a3025190d0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000000000000000409121b232b323a41454c525458606266696e7175797c7f8285898d92979ea1a9ada59e948d80746b6054463c32271b0f030000000000000000000000000000000000000000000000010b151d252b303435393939393939393534312c261e150c000000000000000000000000000000000000000000000000000b141d242b303334393939393939393534302b251d150b010000000000000000000000000000000000000000000000000000000003090e1214151f20202020202020201414110e0802000000000000000000000000000000000000000000000000000000000000000000000407090a13131313131312080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002070a0c0d13131313090907030005090d0f101313131312100d0903000000000000000000000000000000000000000000000000050a0d0f101313100f0d0a0500000000000000000000000000000007111b252d343a3e3f464646464646403f3b362e261c120800000a1723303d4a5663707d8996a3b0a6998c7f7366594c402f2924292c2f353b434b545d68707d8a959fabb7afa396897c706356493d3023201c161008000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000a1723303d4a5663707d8998a3aea89b8e8275675d51433a2f23181d1d1d1d1d161f2834404a545c606a6864615e5655534e463c32261b0f030000000814212e3b4754616e7b8798a3aeaa9d9084776a574d42362a1e12050000000005111d2935414c566a7783909daaafa399877b6e6154483b2e211508000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000000000000050e1720353f474e524f54596063676d70727576787879797878777573706d6865605d55504a46423c332a1f14090000000000000000000000000000020507080a0b0c0c0d0e0f090907030000050d161d262d333d444c535b606b6f7b849196a1aaa2979083786d60564c41362a1b110600000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000000000009121b242d353d444c52565e61666a6f73777b7e8285888c8f92989a9fa2a9aca9a19e938e82786d60594f44342b20150a00000000000000000000000000000000000000000000000009131d272f373c40414646464646464642413d3730271e0e050000000000000000000000000000000000000000000000030d1d262e363c3f414646464646464641403c372f271d13090000000000000000000000000000000000000000000000000000000000000205070812131313131313131308070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e1317191a202020201615130f0a1015191c1d202020201f1d19140e07000000000000000000000000000000000000000000030a11161a1c1d20201d1c1a16110a03000000000000000000000000010d18232d373f464a4c5353535353534d4b4740382e24190e02000a1724313d4a5764707d8a97a3b0a5988c7f7265594c3f2e23181c1f24293139424c56616c7683909da9b3afa396897c706356493d302316100b0500000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000d1a2733404d5a6673808d99aab4aa978b7e7164554c4131282a2a2a2a2a2a2a2a2a232e39424a51535d5b5754524c4847433c342a20150a000000000713202d3a4653606d7986929facab9f928578695e52463a2d201407000000000713202d3946525d687885929eabac9f9286796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700000000000000010e1a26313d4751595e5f606060555c606366686a6b6c6c6c6c6b6a686664615e566060606055534d453c31261a0e02000000000000000000000002090e111414171818191a1b1c1615130f0a0400040b141b2227323a4149505960696e7b849199a3a99f958c7f73685e5246382d22170b00000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c1000000000000006101b242d373f474f565d60686d72777c8084878b8e9297999c9fa2aaababa8a19e96918a81796d665c51473d3322190e040000000000000000000000000000000000000000000000030f1a252f3941484d4e535353535353534f4d4942393020170d02000000000000000000000000000000000000000000010b151f2e3840474c4d535353535353534e4d4841392f251a0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000106090b0c1313131313130d0c0a07020000000000000000000000000000000000000000000000010a12191f2326262d2d2d2d23221f1b161b212628292d2d2d2c2b29251f19110800000000000000000000000000000000000000040d151c2226292a2d2d2a2926221c150d04000000000000000000000006121e29343f495156586060606060605a58524a40362a1f1307000a1723303d4a5663707d8996abb5a6998d807366544a403428211e1a181f27303a44505a64707d8a97a2adafa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000004101c2834404b546976828f9ca9aea398887b6f6255483c2f3737373737373737373737373039404446514e4b4746413c3b37322a261f180f0600000006121f2b3844505c667784909daaaea298877b6e6154483b2e21150a000000000714212e3a4754616d7a8797a1adaa9e918477665c5145382c1f1306000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000000000004111d2a36424e59636a6c6c6c6c6b636059595b5d5e5f5f5f5f5e5d5c5a575f626a6c6c6c6c6c5f574d42372b1e120500000000000000000000050d14191e20212324252627282823221f1b160f0700020a111720292f383f444f575f696f7d87929fa9a79f92867a6d6153493f33271b0f03000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000000040e18222d363f49515960686d737a7f84888d9196989b9ea2a9a9acaaaaa29f9b96918c847e746d675c544a40352b2110070000000000000000000000000000000000000000000000000814202b37414b53595b606060606060605c59544b4232291f140900000000000000000000000000000000000000000007121d2731404a52585a606060606060605b59534b41372b2014080000000000000003060809131313131313130b0a08050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070f111213131312110e0b0706040000000000000000000000000000000000070d121618192020202020201a1917130e08000000000000000000000000000000000000000000000a131c242a2f323339393939302f2c2721262d323536393939393835312a231a11070000000000000000000000000000000000030d161f272d32353639393635322d271f160d03000000000000000000000916222e3a46515b62656c6c6c6c6c6c66635c52473b2f23170a000915222f3c4855626f7b8899a3afa89b8f8275665c51443a322d2b2627272628323e4653606d7985929fabafa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000006131f2c3845515c667884919eabac9f9286796d6053464444444444444444444444444444444444444444444444444444443b3a36312a21180e03000003101c28343f4a546875818e9ba8b3aa978a7d7064574a3d32271b0d04000001081623303d495663707c8996a9b3a89c8f827569544b4034281c1004000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b98a4aca295897c6f6256493c2f23160906040d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070000000000000006121f2c3845525e6a757979797978706b605c544d5152535352524b515a61696e777979797976695f53463a2d211407000000000000000000050e171f252a2d2e30313233343435302f2c27211910070000060e171d262d333d454d57606b73808d97a2ada2988c8073655b5044372b1f1205000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c1000000000000a15202a343e48515b626b707a80868c9196999da0a8a8abaaa7a7a09d9a98928e8a847f79716c605c554b42392e231a0f000000000000000000000000000000000000000000000000000c1824303c48535d64686c6c6c6c6c6c6c68655d54443b3025190e0000000000000000000000000000000000000000000c18232f3943525c64676c6c6c6c6c6c6c68645d53483c3024180c0000000000040a0f13151620202020202020181715110c060000000000000000000000000000000000000000000000000000000000000000000000000000000001080d1113141c1e1f1f20201f1e1b181413100c0701000000000000000000000000010911181e2225252d2d2d2d2d2d2726231f19120a020000000000000000000000000000000000000007121c262e353b3f40464646463c3b38322b30383e41434646464645413c352c23190e03000000000000000000000000000000000a151f2831383e4243464643423e3831281f150a000000000000000000000b1825313e4a56626d72797979797979736e63584b3f3226190c000714202d3a4753606d7a86929facab9e9285796d60564c443d3a373134333332323845515c6675828f9ca8afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000713202d3a4653606d7986939facaa9d908477665c50505050505050505050505050505050505050505050505050505050504846423b332a1f14090000000b17232e3f4b5865727e8b98a8b2a69a8d807367584e43372b1f15100c090e131e2a36414c5666727f8c99a5b3aa998c7f7366594c402e23180c00000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b989f9f9f95897c6f6256493c2f231b1313100c1a2733404d5a6673808d999f9f9f9386796d6053463a2d201307000000000000000613202c3946535f6c7987868686847d736d665f5751464146454d555c606c717b83868686867b6e6155483b2e2215080000000000000000020d17202930363a3b3d3e3f3f4041423c3b38322b23190f040000050b141b2227333b454f59606d7a85929fabaa9e9185786c605346392d201306000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c1000000000030f1b26313c46505a626d727d848d92989ea0a8aaaba8a8a09e9a9795908d8985817d78726d67615a514b433930271c1108000000000000000000000000000000000000000000000000000e1a2734404d59646f7479797979797979756f65564d42362a1c11060000000000000000000000000000000000000004101c2934404b55646e7479797979797979746f64594d4034271a0e00000000060e151b1f21222d2d2d2d2d2d2d2524211d1711090000000000000000000000000000000000000000000000000000000000000000000000000000040c13191d2021292a2c2c2d2c2c2a2824201f1c18120b03000000000000000000000009131b23292e313239393939393933322f2a241c140a000000000000000000000000000000000000020e19242e3840474b4d535353534948433d353a42494e5053535353514d473e352a1f140900000000000000000000000000000005111c27313a434a4e505353504e4a433a31271c11050000000000000000000c1925323f4c5865727f8686868686868073665a4d4033271a0d0006131f2c3945515d677783909dabada1978a7e71685e564f484742424140403f3f3f404b546673808c99a6afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000815212e3b4854616e7b879aa4afa99c90837669545d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d55534d453b31261a0e0200000615222f3c4855626f7b8896a0acaa9d9184776a6054473c31271f1c181b1a1e242d3946525e6876838f9ca9aea298897c706356493d3023160700000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e8b9393939393897c6f6256493c2f2d28201f1c181a2733404d5a6673808d939393939386796d6053463a2d20130700000000000000000b1825323e4b5865717e8b9296918780786e69625b524c4550575f676d747e869095948d8074695f53463a2d211407000000000000000009141f29323b4246474a4b4b4c4d4e4f4948433d352b21160a000000020a11172129333d45525d6874808d9aa7ada197887c6f6255483c2f221509000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000006121f2b37434e58626c727f8791969fa2aaaaaaa29f9b9896918e8a8784807d7975706d66605d555045403930271e150b00000000000000000000000000000000000000000000000000000e1b2835414e5b687481868686868686868175695e5246382d22170b0000000000000000000000000000000000000006131f2c3845515c677480868686868686868174685b4e4135281b0e00000006101820262b2e2f3939393939393931302d29221b1209000000000000000000000000000000000000000000000000000000000000000000000000040d161e24292c2d363738393939383735312d2c29231d150d0600000000000000000007111b252d343a3e3f464646464646403f3b362e261c1208000000000000000000000000000000000007131f2a35404a5257596060606056544f473d424c545a5c6060605f5e5850473c3125190d0100000000000000000000000000000a16222d38434c545a5d60605d5a544c43382d22160a0000000000000000000c1925323f4c5865727f8b939393938d8073665a4d4033271a0d0004101d2935404b5566737f8c99a3aea99e91847a6d68615955534d4f4e4d4c4c4c4b4b4c5865727f8b98a5afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000916232f3c4956626f7c8995acb6a89c8f82756a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a615f574d42362a1e120500000815212e3a47535f6a7784919eabaca095887c6f62584e4339312c282327262b2f35414c56616d7a86929facab9f9285796d6053463a2d20130700000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1825323e4b5865717e868686868686867c6f6256493c3939352d2c28231d2733404d5a66738086868686868686786d6053463a2d20130700000000000000000b1724313d4a56626d73808c9399938d837b726d615e56515a61696e79818a9298958f82786d60574d42372b1e120500000000000000020e1925303b444d5254565758595a5b5b56544f473d32271b0f0300000000060f18212935414c5663707d8996aab3a9988c7f7265594c3f3226190c000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000000000815212e3a47535f6a717e889299a1a9aca69f9c98928e8b8784817e7a7773706d6663605c54514b433e342e271e150c0300000000000000000000000000000000000000000000000000000916232f3c4956626f7c89959393939392867b6e61544a3f33281c0f030000000000000000000000000000000000000714202d3a4753606d7985929393939395897c6f6356493c302316090000040e18222a32373b3c464646464646463e3d39342d241b110600000000000000000000000000000000000000000000000000000000000000000000010c161f282f35393a4244454646464544413e3a38342f271f17110a02000000000000010d18232d373f464a4c5353535353534d4b4740382e24190e02000000000000000000000000000000000a17232f3b47525c63666c6c6c6c6360594f4349545e66696c6c6c6c6a62584d4135291d100400000000000000000000000000010d1a26323e4a545e66696c6c69665e544a3e32261a0d0100000000000000000c1925323f4c5865727f8b989f9f998d8073665a4d4033271a0d00000c18242f3b4854616e7b86929fa8ada19690827a706b65615f575c5a5a5959585858585865717e8b98a4afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a1623303d495663707c8996a3afa89b8e8177777777777777777777777777777777777777777777777777777777777777776e695f53463a2d211407000006121f2b37434e586673808d99a3afa89b8e81756a5f554b433c38342e3431373a4145525d68737f8c99a3afa79b8e8175675c5145382c1f130600000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000b1724313d4a56626c71797979797979796f6a605447464646413a38342e2726323f4b58636e737979797979797976665c5044382c1f120600000000000000000915212e3a45505a636e74818e939f9590867e756d68605c606c717b838e939f969083796d665c50453c31261a0e020000000000000005111e2a36424d565e61636465666767686360594f43382c1f13070000000000060f1924303a4753606d798698a2aea79a8e8174675b4e4134281b0e000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c1000000006121f2b37434e58626f7c86929aa3aba8a09e948f8a85827e7b7774716e686763605c5453504a4540393128231f1c17110a02000000000000000000000000000000000000000000000000000915222e3b4854606a7783909daa9fa3998c7f73665b5044382b1f1409000000000000000000000000000000000006121f2b37434e5864717e8a97a29f9f9d9083776b6054483b2f22150900000a15202a343c434749535353535353534b49453e362d22170c0000000000000000000000000000000000000000000000000000000000000000000008131e28313a4145474f515252535352514e4b474540393127221b140b02000000000006121e29343f495156586060606060605a58524a40362a1f1307000000000000000000000000000000000c1926323f4b57636e73797979796f6b6054484e5a66707679797979746a5e5145382b1f120500000000000000000000000000030f1c2935424e5a66707679797670665a4e4235291c0f0300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000714202d3a46525e6974808d96a1a9a89f9590847d77726e696a6867666665656565646465717e8b98a4afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a1724303d4a5763707d8a96a3b0ab9e928583838383838383838383838383838383838383838383838383838383838383837b6e6155483b2e2215080000030f1a26313c4854616e7b87929faaac9f92877c6f675d554e46454041414142474c515b606d7a85929eabaca095897d7063554b4034281c100400000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000915212e3a45505a62656c6c6c6c6c6c6c6260584e525353534e4645403930292f3b47525c63666c6c6c6c6c6c6c6c5c544a3f34281c1003000000000000000005111d29343f48525b606d78818f959f98928b827a706b676d747e8690959d9891847b6e675d544a3f332a1f140900000000000000000714202d3a46525e696e707172727374756f6b6054483b2f22150800000000000008131f2c3845515c677885929faba89b8f8275685c4f4235291c0f000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000815212e3a47535f6a76828f98a3aca7a0969189827d7975716e696764615e565653514a46443f38352f312f2d2b28221c140b0200000000000000000000000000000000000000000000000007131f2c38434e5865727e8b98a2aeab9e9184786c6053463b30251a0e00000000000000000000000000000000000814212e3a47535f6a7683909ca9aea2988b7f7265594f43382c1f130700030f1b26323c464e535560606060606060585650483e34291d11050000000000000000000000000000000000000000000000000000000000000000010d19242f3a434c52545c5d5f5f605f5f5d5b5753514b433f332d261d140a00000000000916222e3a46515b62656c6c6c6c6c6c66635c52473b2f23170a000000000000000000000000000000000d1a2633404d59667380868686867d6f635649505c69768286868686796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768286868276695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000005121e2a36424d57606d79849197a1a9a79f969189837f7b78767574737372727271717171717e8b98a4afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a1724313d4a5764707d8a97a3b0ada1979290909090909090909090909090909090909090909090909090909090909090887b6e6255483b2f2215080000000a15212d3a46535e6975818e98a3aea3999083796d675f5853514b4e4e4e4d53555d606d74818e97a1ada69d9083776b605443392e23180c0000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d2013070005111d29343f48505658606060606060605654575d5f6060605b53514b423a322a36404a52585a606060606060605f504a42382e23170c000000000000000000010c18222d364044505c666d79829095a09f938f857d746f79818a9298a09992867c6f695e554b42382e21180e0300000000000000000814212e3b4754616e7b7d7e7e7f8081827d6f6356493c3024190d02000000000004101c2934404b556b7784919eaaa99c908376695d5043362a1d10000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000915222f3c4855626f7b88949faaaca09590847d76706d6765615e575754524c494644403a444442413f3e3c3938332d261d140a000000000000000000000000000000000000000000000000030f1b27323d4754606d7a85929facaca1968a7d7063574d42362a1c110600000000000000000000000000000004101c2934404b55626e7b88949fabac9f92867a6d6054473d32271b0f030006131f2b37434e585f626c6c6c6c6c6c6c64625a5045392d211508000000000000000000000000000000000000000000000000000000000000000004111d2935414c565d60696a6b6c6c6c6b6a6864605c5550443f382f261b1106000000000b1825313e4a56626d72797979797979736e63584b3f3226190c000000000000000000000000000000000d1a2633404d596673808c9393897c6f635649505c6976838f939286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000020e1a25303b45515d676f7c8591979ea5a8a09e95908b8885838281807f7f7f7e7e7e7e7d7d808d9aa7afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a1724313d4a5764707d8a97a3b0b3a9a19e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d94887b6e6155483b2e22150800000005121e2a36424d57616e7b86929fa6aba0958f82796f6a63605c555b5a5b575f62676d747f8c939ea9a99f948a7d7064594f4430271d12070000000b1825323e4b5865717e8b98a4aca295897c6f6256493c2f23160900040d1a2733404d5a6673808d99a6aca09386796d6053463a2d20130700010c18222d363f454a4b53535353535353495761696b6c6c6c68605c544c443c342e3840474b4d5353535353535353443f3830261c11060000000000000000000006111b2428343f4a545d676d7a839196a19e979188807b838e929fa29f93877d706a5f574d433a30261c0f060000000000000000000b1724313e4a5764717e898a8b8c8d8e8c807366564c4135291e130b060400020509121f2b3844505c667885929eaba99c908376695d5043362a1d10000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000c1926333f4c5966727f8c99a6afa49a90837a706b64605c5554524d4b4746413d3a434a4f50514f4d4c4a4946443f382f261c11060000000000000000000000000000000000000000000000000a16202c3945515d6774818e9aa7b1a89b8f8275695e5246382e23170b00000000000000000000000000000006131f2c3845515c6774808d9aa6b0a79b8e8174685d5245392b21160a00000815212e3b47535f6a7679797979797979716c6256493d3024170a00000000000000000000000000000000000000000000000000000000000000000613202c3945525d686d757778797979787774716d67625a504941382d22170b030000000c1925323f4c5865727f8686868686868073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000009141f2935414b555f6a6f7c858f939c9fa4a79f9d989892908f8d8d8c8c8b8b8b8b8a8a8a8d929da9afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a1723303d4a5663707d8996a3b0b8b0aba99f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa9aaaaaaaaaa94877a6e6154473b2e211408000000020e1a25313b46535f69737f8c949fa7a79f948f837c75706d676867676869696e737a818c919ca5aaa1978f82766c6155473d331e150b000000000b1825323e4b5865717e8b989f9f9f95897c6f6256493c2f2316090b10141a2733404d5a6673808d999f9f9f9386796d6053463a2d201307000006111b242d343a3d3e46464646464646505d697378797979746d665e564e463e3528363b3f40464646464646464638342e261e150a000000000000000000000000091217232e38424b555d686e7b849197a2a19a938d8890959da59d928b7f726b61584e453b31281e140a000000000000000000000815222f3b4855626e7c889798999a9a8f8275685d52463a30241d1512100c0e12141a202d3a4653606d7986939faca99c8f8276695c4f4336291c10000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000020f1c2835424f5b6875828e9ba8ac9f93877c6f68605953514b4846423e3b393634434d555b5d5d5c5a59575553504a42382d22170b00000000000000000000000000000000000000000000000004111d2935414b55626f7c88959fabac9f92877b6e61544a3f34281c100300000000000000000000000000000714202d3a4753606d7985929eabaca095897c6f63564c413529190f0400000916222f3c4955626f7c868686868686867e7164584b3e3125180b00000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8284858586868584817e79716c605b53493f33271f14090000000c1925323f4c5865727f8b939393938d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000020d18242f3a434e585f6a6f7a82898f93999c9fa2aaa29f9d9b9a999998989898979797979a9da4aeafa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000091623303c4956636f7c8996a2afb0a69f9c9393939393939393939393939393939393939393939393939c9ea6b0aea398877a6d6054473a2d2114070000000009141f2a36424d57606d78828f959fa7a69f959087817d79777574747476787b80858e939ca3aaa29892857b6e615a5044352b210c03000000000b1825323e4b5865717e8b9393939393897c6f6256493c2f231610171c20232733404d5a6673808d939393939386796d6053463a2d20130700000009121b22292e313239393939393945525f6b788586868681786d685f584f473f342e2f323339393939393939392c28231c150c030000000000000000000000000006111c263039434c565e696f7c859299a3a49f9a959da0a79e948d80746d62594f463c33291f160c02000000000000000000000613202d394653606c7785929ea5a69f92867a6d61564c41352e27201f1c181a1e21252a34404b55626f7c889aa4afa79b8e8174685b4e4135281b0e000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000003101d293643505c6976838f9ca9a99d9083766a5f564f4645403b3a36302e2d2f3c46555f666a6a6967656462605b544a3f33281c0f030000000000000000000000000000000000000000000000010d18242f3a47535f6a7683909da9afa3998c7f73665c5044382b1f14090a0a0a0a0a0a0a0a0a0a0a0a0a0a121f2b37434e5864717e8b97a2adaa9d9083776b6054443a2f2419070000000916222f3c4955626f7c8893939393938b7e7164584b3e3125180b00000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a87909292939292908e8a847e746c655b50443b30251a0e0200000c1925323f4c5865727f8b989f9f998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000007131d28313c464e585f686d757c82878b8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abacb5afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000815222f3b4855626e7b8895a9b3ab9f948f8686868686868686868686868686868686868686868686868f949eaaac9f928579675d5145392c20130600000000030e1a26313b44505c666d7a8390959da5a7a099938e898683828181818385888c92979da5a7a09892867d70695e52483e3323190f00000000000b1825323e4b5865717e868686868686867c6f6256493c2f23161a22282d303139404d5a66738086868686868686786d6053463a2d201307000000000911181d2124252d2d2d2d2d323f4c5965727f8c93938e827a6f6a6159514440393028272d2d2d2d2d2d2d2d1f1c17110a030000000000000000000000000000000a141e27313a444d575f6a707d879299a49f9f9f9fa9a0958f82786d605b51473e342a21170d04000000000000000000000005121f2b3744505b6575828f9baaaea3988b7f72685d52454039302d2c2823252a2d30363e45515c6773808c99acb4aa998c7f7366594c403326190d000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000004101d2a3743505d6a7683909da9a79b8e817468584e443d38342e2d2a2a2d2f38424e5866717777757472716f6c665b5044382b1f120600000000000000000000000000000000000000000000000007131d2b37434e5864717e8b97a2adab9e9184786d6053463b31251a16161616161616161616161616161616212e3a47535f6a7683909ca9aea2988b7f7265594f4332281e13080000000916222f3c4955626f7c88959f9f9f978b7e7164584b3e3125180b00000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a87949e9f9f9f9e9d9b96918b80776c60574d42362a1e120500000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000010c161f2a343c464e565e616b6f757b7f8285888a8c8d8f8f9090919191919292929292999ba3acafa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000714212d3a4754606d7a8797a2ada99c8f82797979797979797979797979797979797979797979797979828f9ca9ab9e9184786b554b4135291d1104000000000009141f28343f4a545e686d7a838e929d9fa7a49f9b9892908e8e8d8e8f9197999ea1a9a29e9590867d706b60574d42362c22110800000000000b1724313d4a56626c71797979797979796f6a6054473b2e2217242c33393c3d46464b58636e737979797979797976665c5044382c1f12060000000000060c111517182020202025313e4a56626d75818f969490847c706b625b514a423a322a211920202020202012100c060000000000000000000000000000000000020c151f28323b454e58606b717e8793939393939393969083796d665c50493f352c22190f05000000000000000000000000030f1b27333f495364717e8a98a2aeaa9e91857a6d605b514b423d3a38342e31363a3b42465059606d7984919eabaea398897d7063564a3d3023170a000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000003101d293643505c6976838f9ca9a79a8d817467564c413a39352f363036393c424a54606a77838482807f7d7c786c605346392d201306000000000000000000000000000000000000000000000000010f1b26323c4753606d7985929fabada1968a7d7063574d42362a23232323232323232323232323232323232934404b55626e7b88949fabac9f92867a6d6054473d3221160c010000000916222f3c4955626f7c8895a2aca4978b7e7164584b3e3125180b00000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a87949fa3aba6abaaa9a19e928b7f72695e52463a2d20140800000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000000040d18222a343c444c52596063696e7276797b7d7f81828383848484848585858585868b909ba7afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000613202c3945515d677885929eabaa9d9184776c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c667784919eaaa99c8f8376695c50432f24180d010000000000030b17232e38424c565e686d79818990959b9fa2aaa39f9d9b9a9a9b9c9ea1a9a49f9c97928c837b706b60594f453b30241a100000000000000915212e3a45505a62656c6c6c6c6c6c6c6260584e43382b1c2328363e44494a525353525c63666c6c6c6c6c6c6c6c5c544a3f34281c10030000000000000105090b0b13131316222e3a46515b606d7a8491989691867d726d605c544c443c332b2317110a13131306030000000000000000000000000000000000000000030d162029333c464f59616c727f8686868686868686847b6e675d544a3f372d231a100700000000000000000000000000000b17222d3a4753606d7a85929faaada1978e81746d605c544f4946444043434246484d525a616b737f8c96a1acac9f92867a6d6053473a2d201407000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000020e1b2835414e5b6874818e9ba7a99c8f8276685e534c4745414343434146474d545b666f7c88908f8d8c8a85796c605346392d201306000000000000000000000000000000000000000000000000000a151f2c3845515d6774808d9aa6b0a89c8f8275695e5346382e3030303030303030303030303030303030303845515c6774808d9aa6b0a79b8e8174685d5245392c201304000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b00000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8799929995999fa2aaada49f92867b6e6154483b3025190e02000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000000050e171e252a323a41464f54575e6165666d6f717374757676777777787878787879797e8b98a4afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000004111d2935414c55697683909ca9ab9f928578695f606060606060606060606060606060606060606d7986929faca79a8d8174675a4e4134271b070000000000000006111c26303a444c565e676d747c83898e9298999b9d9e9f9f9f9f9e9d9b999993908b857f786e6960594f473d33291f120800000000000005111d29343f485056586060606060606056544e463d3227262e343f485055575f6060605a585a606060606060605f504a42382e23170c000000000000000000000000060606121e29353f45525d686f7c86929f9892877f746d665d564d453d3528231c140c03000000000000000000000000000000000000000000000000040e17212a343d47505a626d727979797979797979786e695e554b42382e251b11080000000000000000000000000000000613202c3945515d6773808d98a2aea99d938c7f736d6660595653514a50504d5354575e616c707d87929fa8b0a69b8e8275675d5145392c201306000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000c1926323f4c5965727f8c98a7ac9f92867a6d655e5654514b504f504d5254575f666c7882909c9c9a988e8174655b5044372b1f12050000000000000000000000000000000000000000000000000004101d2935404b55626e7b88949fabac9f93877b6e61544a3f3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d4753606d7985929eabaca095897c6f63564c4135291d1104000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b00000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a87878686888d9298a2abaea2988c807366564d41362a1e1105000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000020c1720293036393a3e3f44484d5354545c606264666768696a6a6a6b6b6b6b6c6c6c717e8b98a4afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000010d19242f414d5a6774808d9aabaea298887b6e61555353535353535353535353535353535355626f7c8899a3afa9988b7e7265584b3f3225180c00000000000000000a141e28323a444c555c606b6f777d8185898c8e90919292929291908f8d8a86837e79726d665f574f473d352b20170d00000000000000010c18222d363f454a4b535353535353534947433d342b2830383f44515a61646c6c6c6c66635c5253535353535353443f3830261c11060000000000000000000000000000010d18232935414c565f6a727e8b939e99938c81786d685f574f473f342e261e150c03000000000000000000000000000000000000000000000000050f18222b353e48515b62656c6c6c6c6c6c6c6c6b615e574d433a30261c13090000000000000000000000000000000004111d2935404b55616e7b86929fa6afa59c918c8079706b6562605c545c5d575e6164696e747e869299a3afaa9f94897d7063554b4035291d1104000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000915222f3c4855626f7b88959faba3998e81776d6863605d555d5c5d565e6164696e78808e949fa8a0958a7d706453493f33271b0f0300000000000000000000000000000000000000000000000000000c18242f3947535f6a7683909ca9afa4998c8073665c504949494949494949494949494949494949494949494e5864717e8b97a2adaa9d9083776b6054443a2f24190d01000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b00000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d787c7a79797c80869299a4afaa9e918477685e5246392d201407000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f65717e8b98a4afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000081724313e4a5764717d8a99a3afaa988b7e7165574d42464646464646464646464646424d5765727f8c98abada297887b6f6255483c2f2215090000000000000000020c162029323a434b515960636b7075797c7f82838485868685858382807d7a76726d67605c544d453d352b23190e05000000000000000006111b242d343a3d3e464646464646463c3b38322b29323a424a505b636c7079797979736e63574b46464646464638342e261e150a00000000000000000000000000000000070d19242f3a434e58626d75818e95a09f928e827a6e69605951443f3830271e150b00000000000000000000000000000000000000000000000000061019232c363f4951565860606060606060605e54524d453b31281e140a0100000000000000000000000000000000010d18242f3a46525e68727f8c949fa8ada49c928d837d77726f6d666a69696a696e71757b818a9298a2abaea2988f82766b6054433a2f24180d01000000000000000205111e2a3744515d6a7784909d9f9f9c8f8376695c504336291d100d0b08030000000000000000000000000004111e2a3744515d6a7784909d9f9f9c8f8376695c504336291d1003000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000815212e3a47535f6a7683909da5ab9e938e817a74706d676a6969696a686e71757b828e929da6a59d9083786c605346392d22170b00000000000000000000000000000000000000000000000000000007121d2b37434e5864717e8a97a1adab9e9184796d6056565656565656565656565656565656565656565656565f6a7683909ca9aea2988b7f7265594f4332281e130800000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b020405060606050402000000000000000000000000000000000000000000000006121f2c3844515c666d6f6d686d6f737d87939facaca096877a6e6154473b2e211408000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525965727f8c98a5afa396897c706356493d3023160a000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000714212e3a4754616d7a86929faca89b8e8275695e53463d313939393939393939303946525e6976828f9ca9ab9e9285786c605346392d201306000000000000000000050e172029313940454f54596063676d70727576787879797878777573706d6865605d55504a423c332b231911070000000000000000000009121b22292e3132393939393939392f2e2b272b333b444c545c606d727e868686868073665a4d4039393939392c28231c150c03000000000000000000000000000000000008131e28313c46515b606d79839198a29d948f847b706b625b504a423930271d12070000000000000000000000000000000000000000000000000007111a242d373f464a4c5353535353535353524846423b33291f160c0200000000000000000000000000000000000007131d2a36414d56606d78829096a1a8ada49d959089837f7c797777767677787b7d82868e939fa2aaaea39f92867b6e61594f4431281d130700000000000002080e11141e2a3744515d6a778490939393938f8376695c50433629201b1a18140f0801000000000000000000000004111e2a3744515d6a778490939393938f8376695c504336291d1001000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c1000000006121f2b37434e5863707d89939da6a59e938e86807d7a787776767677787a7e82878f949da5a69d938a7d70655b5044372b1b1106000000000000000000000000000000000000000000000000000000010f1a26313c4653606d7985929eacada1968a7d70646363636363636363636363636363636363636363636363636e7b88949fabac9f92867a6d6054473d3221160c0100000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180c0e101213131312100e0b0807050200000000000000000000000000000000000004101c2834404a545c6062615e60626b75818e9ba8b2a8968a7d7063574a3d3024170a000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000005111d2a36414c565e6164656768696a6b68655d534840414243434444444545454d596673808c99a6afa295897c6f6256493c2f231609000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000713202d3946525d6876828f9ca9ac9f92867b6e61584e433b322c292424292c3139424d57616e7b86929faca89b8e8174655b5044372b1f120500000000000000000000050e171f272f343d43484f54555c606366686a6b6c6c6c6c6b6a686664615e5653514b443f38302a211911080000000000000000000000000911181d2124252d2d2d2d2d2d2d2322242c343d454d565d666d747f87929892857b6e6154473b2e2d2d2d2d1f1c17110a03000000000000000000000000000000000000010c161f2a343f45515d676e7c86929fa59f9691857d726d605c544b42392e23180c000000000000000000000000000000000000000000000000000008121b252d343a3e3f4646464646464646453b3a36302921170d0400000000000000000000000000000000000000010e1925303b44505c666e7a849196a0a7afa7a09d95908c8985848383838485878a8e92999da5aeaaa39f918a7e71695f53473d321f160c010000000000050d14191e20212d3744515d6a77838686868686868276695c5043362d2d272724201a130b020000000000000000000004111e2a3744515d6a77838686868686868276695c504336291c140a000000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000000030f1a26313c4855606b74818e949da5a59e98928d898785838382838485878a8f93999fa6a49d948e81746c6153493f33271b0a000000000000000000000000000000000000000000000000000000000009151f2c3845515c6673808d9aa4afa99c8f82757070707070707070707070707070707070707070707070707074808d9aa6b0a79b8e8174685d5245392c2013040000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e312518191b1d1f1f201f1f1d1b181414110e080200000000000000000000000000000000000c18232e39424a5153555452535964717e8a97a4b1a5988b7f7265584c3f3225190c000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000713202d3946525e686d71727374767778756f65594d3d323536373737383835404b556774818e9aa7b2a995887b6e6255483b2f221508000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000005111d2935414c5664717e8b96a1ada3998d80746a60564d443e39352f2f35383c434b545e6973808d99a3aca096897d706353493f33271b0f030000000000000000000000050d151d232932383d44484b5161696b6c6c6c68605c5f5e5d5c5a5754524c47454039342e261e180f080000000000000000000000000000060c11151718202020202020151d2328363e464f575f686d78818c939993877d70695e52463a2d2020202012100c06000000000000000000000000000000000000000000040d18222935404b555f6a717e8a939da7a09792877f746d665c544b4034281c1004000000000000000000000000000000000000000000000000000009131b23292e31323939393939393939382e2d2a251f170f0500000000000000000000000000000000000000000008141f28343f4a545e686e7b8490959fa3abaca7a09d98989291908f90919297979b9fa3abaca7a098928b7f726c61574d42352b210d040000000000050e171e252a2d2e3939424f5b6771777979797979797670665a4e423939393433302b251d140b0100000000000000000003101d2936424f5b6771777979797979797670665a4e42352e261c12070000101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c10000000000a15202c38444f59606d79828e939da0a7a29f9a96979290908f90909297979b9fa4a7a09d928d82786d605a5041382d22170b000000000000000000000000000000000000000000000000000000000004101c2834404b54616e7b87939facac9f93877d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d85929fabaca095897c6f63564c4135291d11040000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e31252225282a2b2c2d2c2b2a282521201e19140f0a0400000000000000000000000000000007121c2730394044464847464855626f7b8895a2aea6998c7f7366594c403326190d000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000714212e3a4754616d7a7e7f8081828485817568584e43372e2c2823282c2f3945515d677783909daaada196877a6d6054473a2d211407000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000010d1924303a4653606d7984919ea7ab9f92877c6f685e564f47454141414045474e555c666e7b86929faba89e9184786c605346392d22170b00000000000000000000000000030b121821272c323839505d697378797979746d665e564e4f4d4a4746413a39352f28231c150c06000000000000000000000000000000000105090b0b131313130e161e272e344048505960696e7a828e939f948c7f736b60574d42362a1e1113130603000000000000000000000000000000000000000000000000071018242f39434e58616c74818e95a0a9a299928b80786d665c5145382c1f13060000000000000000000000000000000000000000000000000000010911181e2224252d2d2d2d2d2d2d2d2b21201e1a140d0500000000000000000000000000000000000000000000020b17232e38424d565f696e7b838d92999fa4acacaaaaa39f9e9d9c9c9d9ea1a9a8acaca8a19e9590867e726d625a50453c3123190f0000000000020d1720293036393b4646464a555f676a6c6c6c6c6c6c69665e54494646464641403c362f261d1308000000000000000000010e1a27333f4a555f676a6c6c6c6c6c6c69665e544b4740382e24190e0200101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d697683908f8276695c4f4336291c100000000003101c27333d45515c676d79818990959b9fa2aaa9a19e9d9c9c9c9d9fa2a9aaa29f9b95908a80786d665c51473e2f261b11060000000000000000000000000000000000000000000000000000000000000c18232e3946535f6976828f9ca9afa499938a89898989898989898989898989898989898989898989898989899297a2adaa9d9084776b6054443a2f24190d010000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e312d2e32353738393939383735312e2d2a251f1b150d070100000000000000000000000000000b151e272e34383a3c3a3a4754606d7a8793a0b5a69a8d8073675a4d4034271a0d000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000815212e3b4854616e7b878c8d8e8f909184786a6054473f3a38342e34383a404b55606d7a86929facab9e918578675d5145392c201306000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000008131f2c3845515c67727f8b95a0aba39991847a6e68615954514c4e4e4b5153575f676d78839098a2aca0968b7f72665b5044382b1b1106000000000000000000000000000001070c161b21273845525f6b788586868681786d685f584f473f3a3936302c29241d17110a03000000000000000000000000000000000000000000000600070f18202830394045525a616b6f7b838f949d968f82776c60594f453b30251a0e020600000000000000000000000000000000000000000000000000000007121d28313c46505a606d7983909893939393928d82796d6053463a2d20130700000000000000000000000000000000000000000000000000000000060d1216181920202020202020201f1514120e090200000000000000000000000000000000000000000000000006111c26303b444d575f696e7880878f939a9ea1a8a7a9aaaaaaa9a9aaaaa9a8aaa39f9c96918b837c716c625b51483e332a1f1107000000000008141e29323b4146535353535353555b5d6060606060605c5a545353535353534e4c4841382f251a0f030000000000000000000a16222e39434d555b5d6060606060606060605a57524a40352a1f130700101c2936434f5c6976828f908376695d5043362a1d10030000000000000000000000000000000000000000000000010507070b0b0b0b0b0b0b101d2a3643505d697683908f8276695c4f4336291c1000000000000b16212834404b555c676d747d838a8e9298989a9c9d9e9f9f9f9e9e9c9a9898928e8a837d746d665c544a40352c1d140a0000000000000000000000000000000000000000000000000000000000000007121d2a36424d5764707d8a96a1adaba49f9796969696969696969696969696969696969696969696969696969fa2a9aea2988b7f7265594f4332281e1308000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e373a3b3f4143454646464543413e3b3936302b272018130c0400000000000000000000000000030c151c23282c2d2f2e3a4653606d798699a3afa79a8d8074675a4d4134271a0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000714212d3a46535e697884919a9b9c9d96897c6f625a504a464440434044464b515c67717e8b98a3aeaa9b8f827568554b4135291d1104000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000004101c2834404b55606d78839099a3aba09690837a706b64605d555b5b555d60636a6e79818e959faaa49a9184796d60544a3f33281c0a0000000000000000000000000000000000040a0f1926323f4c5965727f8c93938e827a6f6a6159514440393028201d18120c0600000000000000000000000000000000000000000000000000071019212a323a434b515b636c717d8591959f9991847a6d655b50473d33291f14090000000000000000000000000000000000000000000000000000000000010c161f2a343e45515c676e7b8586868686868686867a6e6154473b2e21140800000000000000000000000000000000000000000000000000000000000106090b0c131313131313131312080705020000000000000000000000000000000000000000000000000000000a141e29323c454d575e666d737c82878d9196989a9c9d9e9f9f9f9f9e9c9b9998928f8a847f786f6a625a51493f362c21180e0000000000020e1925303b444c525f6060606060605d5b5553535353534f54566060606060605a58534a41362b20140800000000000000000006111c27313b434a4f5153515a61646c6c6c6c66635c52473b2f23170a00101c2936434f5c6976828f908376695d5043362a1d100300000000000000000000000000000000000000000002080d11131417171717171717171d2a3643505d697683908f8276695c4f4336291c100000000000050c18232e39434b555c606b6f787d8185898b8e9091919292929191908e8c8985827d77706b605c544b42392e231a0b0200000000000000000000000000000000000000000000000000000000000000000e1a26313b4653606d7984919eabb5afaca3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3abadb3ac9f92867a6d6054473d3221160c01000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e4246484c4e505252535252504e4b4746413b373229241d160d0500000000000000000000000000030b12181c1f20222c3844505c667986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000005121e2a36424d576774818e9aa6a9a89b8e81756c605c5453514a504a5153555d606d7983919daaaea2988b7e7165584b3e2f24180d01000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000c18232e3944515c666f7c87929fa4a8a09590847d76716d6769676869676d70757b838e939ea7a59f93887d70665c5142382d22170b000000000000000000000000000000000000000b1825313e4a56626d75818f969490847c706b625b514a423a322a2119110600000000000000000000000000000000000000000000000000040f19222b333c444c555c606d737e869297a09f92877c6f685d53493f352b20170d02000000000000000000000000000000000000000000000000000000000000040d18222934404b555f696e78797979797979797976685e5246392d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c17202a333c454d545c606a6f757b8084888b8d8f91929293929291908e8c8986827d79726d665f5850483f372d241a0f06000000000005111e2a36414c565e6c6c6c6c6c6c6c6a675f554a46444f5960636c6c6c6c6c6c67645c53483c3024180b0000000000000000000008101f2931323a424a505b636c7079797979736e63574b3f3226190c00101c2936434f5c6976828f908376695d5043362a1d10030000000000000000000000000000000000000000050d13191e20212424242424242424242a3643505d697683908f8276695c4f4336291c1000000000000007121d273039434b515960666c7075797c7f81838485858685858483817f7d7975706b636159514b423930271c110800000000000000000000000000000000000000000000000000000000000000000009141f2c3844505c6673808c99a3afbbb9b1acaa9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa7a9afb8bab1a79b8e8174685d5245392c20130400000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b464d5355585b5d5e5f605f5e5d5b5854524d47433d352f281f170f050000000000000000000000000000070c1012131c28343f4a5f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000020e1a25313c4855626f7c88949faaaa9e938a7e726d6662605c545d545c6062676d75808d95a0aca99f92867a6d6154473a2e21140700000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000007121d2834404a54606a727f8c929ca4a7a096918a827d7a7775747475767a7d818790959ea5a59e938d80736b60544b402f261c1106000000000000000000000000000000000000000916222e3a46515b606d7a8491989691867d726d605c544c443c332b2317110a0200000000000000000000000000000000000000000000000a16212b343d454d565e676d757f8a9298a19e938b7f726a60564c41382d23190e050000000000000000000000000000000000000000000000000000000000000000060f18232f39434d575f616c6c6c6c6c6c6c6c6c6c5e564c41362a1e1105000000000000000000000000000000000000000000000000000000000000000000000000020608080c0e111212131312110e0c080705020000000000000000000000000000000000000000050e18212a333b424b51585f626a6e73787b7e80828485858686858483817f7c7975716d66605c544e463f362d251b12080000000000000714202d3946525e68767979797979797771675b4f434854606b70797979797979746e64584c4033271a0d00000000000000000007121a222b333b444c545c606d727e868686868073665a4d4033271a0d00101c2936434f5c6976828f908376695d5043362a1d100b0b0b0b0b0b0b07070501000000000000000000050e171e252a2d2e313131313131313131313643505d697683908f8276695c4f4336291c10000000000000000b151e27303940454f545b6063676d7072747677787879797877767472706d66636159554f45403930271e150b0000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87929facb9b1a7a0939393939393939393939393939393939393939393939b9ea5afb8aca095897c6f63564c4135291d110400000000000000000916222f3c4955626f7c8895a2afa4978b7e7164585053575f6165686a6b6c6c6c6b6a6864615e56544e45403a312921170f0500000000000000000000000000000004060c17232e46535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000915212e3b47535f6a76828f98a2aea59f92877f78726f6d666a696a666d6f7379818d929da7aca2978d8074685d5246392d20130700000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000c18232e39424e58626d73808c929ea1a8a19e948f8a8683828181828386898e93999fa7a39f938f81786d60594f42392e1d140a000000000000000000000000000000000000000006121e29353f45525d686f7c86929f9892877f746d665d564d453d3528231c140c03000000000000000000000000000000000000000000030f1b27323d464e575f686d79818c929fa3a0958e81756d62584e443a2f261b11080000000000000000000000000000000000000000000000000000000000000000000007121d27313c454d53555f60606060606060605f524c443b3025190e020000000000000000000000000000000000000000000000000000000000000000000003090e121415191b1d1e1f201f1f1e1b191514120e090300000000000000000000000000000000000000060f182129303940454e53575f6266696e71747677787979797877767572706d6764605c54504a423c342d241b1309000000000000000814212e3b4754616e7a86868686868683776a5d5144495663707d8686868686868074675a4e4134271b0e00000000000000030b1218242c343d454d565d666d747f87929892857b6e6154473b2e21140800101c2936434f5c6976828f908376695d5043362a1d17171717171717171413110d0802000000000000020d1720293036393a3e3e3e3e3e3e3e3e3e3e3e43505d697683908f8276695c4f4336291c1000000000000000030c151e272e343d424a5053555d60636567696a6b6c6c6c6b6b69676563605c54554f48443e342e271e150c0300000000000000000000000000000000000000000000000000000000000000000000000c17232e3846525e6975828f9ca8b2aca095898686868686868686868686868686868686868686868e939ea9b4aa9d9084776b6054443a2f24190d0100000000000000000916222f3c4955626f7c8895a2afa4978b7e7164545c6064696e72747678797979787674716e68626058514b433b332921170d030000000000000000000000000000000013202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000006121f2b37434e58626f7c86929fa4aca399928b837f7b797777767777797c80858e939da4aea49a92857a6d61564c4135291d110500000000000000000000000000000203101d2a3643505d69768390908376695d5043362a1d100302000000000000000000000007121c27303d46515b646e73808a92979fa3a69f9c9992908f8e8e8f9092989b9fa4a69f99928c81786d665c50473d30271d0b020000000000000000000000000000000000000000010d18232935414c565f6a727e8b939e99938c81786d685f574f473f342e261e150c03000000000000000000000000000000000000000007131f2c38434e5860696e7a828e939ca4a2989183796d605b51463d32281d140a0000000000000000000000000000000000000000000000000000000000000000000000010b151f2a333c4246485253535353535353535346413b32291e1408000000000000000000000000000000000000000000000000000000000000000000060c11151a1e212226282a2b2c2c2c2b2a282522211e1a14100b05000000000000000000000000000000000000060f171e272e343c43474e5355575f626567696a6b6c6c6c6c6b69686663605c5553504a443f38302a221b120901000000000000000814212e3b4754616e7a87939393939084776a5d5144495663707c89939393938d8174675a4e4134271b0e000000000000050c151d2328363e464f575f686d78818c939993877d70695e52463a2d20140700101c2936434f5c6976828f908376695d5043362a24242424242424242421201e19130d05000000000008131e29323a4146474a4a4a4a4a4a4a4a4a4a4a4a505d697683908f8276695c4f4336291c100000000000000000030c151d23282f383f44464b515356585b5d5e5e5f5f5f5e5e5d5b595653514b48443e383328231d150c0300000000000000000000000000000000000000000000000000000000000000000000000006111c2a36424d5763707d8a96a1acaa9d9083797979797979797979797979797979797979797979818e9ba7aea2988b7f7265594f4332281e13080000000000000000000916222f3c4955626f7c8895a2afa4978b7e716460666d71777b7f8183858586858583817e7b756f6a605d554d453b33291f150b0100000000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000030f1b26323c47535f6a717e8b939aa2aaa39f95918c8886848483838485898c92979ea5aaa39f93887d70685e52443a3024190d01000000000000000000000000050a0f12101d2a3643505d69768390908376695d5043362a1d10120f0a05000000000000000000000b151e2b343f49525c646e737e858e92999ea1a8a39f9d9c9a9b9c9d9fa3a9a29f9b948f877f776d665c544a3f352c1e150b00000000000000000000000000000000000000000000070d19242f3a434e58626d75818e95a09f928e827a6e69605951443f3830271e150b00000000000000000000000000000000000000000915222e3b4854606a6f7b8490949ea5a49f92867c6e675d51493f342b20160b02000000000000000000000000000000000000000000000000000000000000000000000000030d18212a31373a3b4546464646464646463b3936302920170d020000000000000000000000000000000000000000000000000000000000000002090e171d1f262b2e2f32353738393939383735322e2d2b261f1c160c07010000000000000000000000000000000000050c151d232831373c4247484d5355585a5c5e5f5f605f5f5e5d5b595653514b46443f38342e261e1810090000000000000000000814212e3b4754616e7a87949f9f9d9084776a5d5144495663707c89969f9f9a8d8174675a4e4134271b0e0000000000060e161e272e344048505960696e7a828e939f948c7f736b60574d42362a1e110500101c2936434f5c6976828f908376695d504336313131313131313131312e2d2a251e170e05000000010d1925303a444c5254575757575757575757575757575d697683908f8276695c4f4336291c10000000000000000000030b12181d262d333839404547494c4e5051525253525251504e4c4a4645403938332c282118120b0300000000000000000000000000000000000000000000000000000000000000000000000000000e1a25303b4653606c7884919eabaca095897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d7a86929facac9f92867a6d6054473d3221160c010000000000000000000916222f3c4955626f7c8895a2afa4978b7e71646a6f787e83888b8e909192939291908e8b86827c746d675e574d453b31271d120700000000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000000a15202b37434e58616c727f8892989fa3a7a09d99999291909090919298999ea2a9a69f98928b7f726c61564c4132281e13080000000000000000000000010910161b1e20202a3643505d69768390908376695d5043362a20201e1b161009010000000000000000030c19222d37404a525c636c717a81868d9196989b9c9e9f9f9f9f9e9d9b9997928e89827c736c655c544b42382e231a0c03000000000000000000000000000000000000000000000008131e28313c46515b606d79839198a29d948f847b706b625b504a423930271d1207000000000000000000000000000000000000000916232f3c4956626f7c85919693939393928a7e716a5f554b40372d22190e040000000000000000000000000000000000000000000000000000000000000000000000000000060f181f262b2d2e3939393939393939392e2d2a251e170e0500000000000000000000000000000000000000000000000000000000000000050d141a22282d31373a3b3f4144454546464544413f3b3a37312c272118120b030000000000000000000000000000000000030b121820262b31373a3c4247484b4d4f51525253535251504e4c494745403a38342e28231c140c06000000000000000000000814212e3b4754616e7a8794a1aa9d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e00000000070f18202830394045525a616b6f7b838f949d968f82776c60594f453b30251a0e0200101c2936434f5c6976828f908376695d50433e3e3e3e3e3e3e3e3e3e3e3a3936302920170d02000005111e2a36414c565e616464646464646464646464646464697683908f8276695c4f4336291c100000000000000000000000070b141c22282b2f35383a3d3f41434445454646454443413f3d3a38342e2c28211c160c070000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2b3844505b66727f8c99a3aea79a8d8174675c606060606060606060606060605765717e8b98a2aea79b8e8174685d5245392c201304000000000000000000000916222f3c4955626f7c8895a2afa4978b7e716c717c838b9095989b9d9e9f9f9f9e9d9b99928f8781796e695e574d43392f23180c03000000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000000040f1a26313c46505a636d727e868e92999da0a8aba39f9e9d9c9d9e9fa2aaaaa29f9b948f867e726d62594f443a3020160c0200000000000000000000010a131b21272b2d2d2d3643505d69768390908376695d5043362d2d2d2b27211b130a01000000000000000007101b252e38404a525a61686d747b8084888b8e90919292929291908e8c8985817c766f6a605b534b423930261c1108000000000000000000000000000000000000000000000000010c161f2a343f45515d676e7c86929fa59f9691857d726d605c544b42392e23180c000000000000000000000000000000000000000d1a2633404d59667380868686868686868680746c61574e43392f251b100700000000000000000000000000000000000000000000000000000000000000000000000000000000060e141a1e21222c2d2d2d2d2d2d2d2d21201e19140d0500000000000000000000000000000000000000000000000000000000000000060f171f252a34393c4247484c4e505152535252514e4c4846423c383329241d150d03000000000000000000000000000000000000070c151b20262b2e31373a3b3e41434445464646454443423f3d3a38342f2c28231c17110a0200000000000000000000000814212e3b4754616e7a8794a1a99d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e000000071019212a323a434b515b636c717d8591959f9991847a6d655b50473d33291f14090000101c2936434f5c6976828f908376695d504a4a4a4a4a4a4a4a4a4a4a4a4746413a32291e130800000713202d3946525e686d7171717171717171717171717171717683908f8276695c4f4336291c10000000000000000000000000020a11171c1f24292c2d3032343637383939393838363432302d2c28231d1c16100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54616e7a86929facab9f9285796d60535353535353535353535353535f697683909caaaca095897c6f63564c4135291d1104000000000000000000000916222f3c4955626f7c8895a2afa4978b7e71717e8790959da09e9c9b9a9b9c9ea1a9aba39f9a938e847b6e695e554b403429201509000000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000000000a15202a343e48515b636c717b81878c919597999c9d9e9e9f9f9f9e9d9b9998928e89827b716c625b51473e32281e0e04000000000000000000000009131c252c33373939393943505d69768390908376695d50433939393937332c251c130900000000000000000009131c262e38404850565e61696e73787c7e818384858686858583817f7c79746f6a625f585049413930271e150a0000000000000000000000000000000000000000000000000000040d18222935404b555f6a717e8a939da7a09792877f746d665c544b4034281c10040000000000000000000000000000000000000c1925323f4b57636d737979797979797979746e645a50453c31281d120900000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214151f20202020202020201414110e080200000000000000000000000000000000000000000000000000000000000000060f18212930363e45494d5355595b5d5e5f5f5f5e5d5b5855534d48443d352f271f150d03000000000000000000000000000000000000030a0f151a1e21262b2e2f32343637383939393938363533302d2c29231f1c17110b06000000000000000000000000000814212e3b4754616e7a87949c9c9c9084776a5d5144495663707c89969c9c9a8d8174675a4e4134271b0e0000040f19222b333c444c555c606d737e869297a09f92877c6f685d53493f352b20170d020000101c2936434f5c6976828f908376695d5757575757575757575757575754524c443a3025190d01000714212e3a4754616d7a7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7e83918f8276695c4f4336291c100000000000000000000000000000060b0f12181d1f202325282a2b2b2c2c2c2b2b2a282623201f1c1812100b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3846525e6875828e9ba8ada2978a7e7164574d42464646464646463f4a54626e7b88949fabaa9d9084776b6054443a2f24190d01000000000000000000000916222f3c4955626f7c8895a2afa4978a7e717e8892999e9896918f8e8d8e8f92979b9fa4aca49f9691847b6e675c51453c31261a0e020000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000030e18222d363f49515a61696e747b8084888b8d8f90919292929291908e8c8985817c766e69615a51493f352c20160c000000000000000000000005101b252e373e434646464646505d69768390908376695d504646464646433e372e251b10050000000000000000010a141c262e363e444c52575e61666a6f7274767878797978787675726f6d66626058534e443f382f271e150c03000000000000000000000000000000000000000000000000000000071018242f39434e58616c74818e95a0a9a299928b80786d665c5145382c1f13060000000000000000000000000000000000000a16232f3b47525b63666c6c6c6c6c6c6c6c67645c52483e332a1f160c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050708121313131313131313080705020000000000000000000000000000000000000000000000000000000000000000030d18212a333b42465055575f6265686a6b6c6c6c6b6a6865615f57544f45403931271f150b010000000000000000000000000000000000000003090e12151a1e21222527292b2c2c2d2c2c2b2a282623201f1c1812100c060000000000000000000000000000000814212e3b4754616e7a878f8f8f8f8f84776a5d5144495663707c898f8f8f8f8d8174675a4e4134271b0e00000a16212b343d454d565e676d757f8a9298a19e938b7f726a60564c41382d23190e05000000101c2936434f5c6976828f908376696464646464646464646464646464615e564c41362a1e1105000a1723303d4a5663707d898a8a8a8a8a8a8a8a8a8a8a8a8a8a8a91958f8276695c4f4336291c100000000000000000000000000000000003070c10131416191b1d1e1f1f201f1f1e1d1b19171313100c07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2a36414c5663707d8996a0aca99c8f8276695e5246382d393939393844505c6673808d99a6aea2988b7f7265594f4332281e130800000000000000000000000916222f3c4955626f7c8895a2afa4978a7e7c86929a96918c8784828181818285898e939aa1a9a8a0969083796d60574e42372b1f14090000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b989f9f998d8073665a4d4033271a0d0000000000000006101b242e373f4850575e61696e73777b7e80828484858686858583827f7d79756f6b625f5750483f372d231a0e0400000000000000000000000a16212c3740494f5353535353535d69768390908376695d5353535353534f4940372c21160a000000000000000000020a131c242c323a41464d5254585f626568696b6c6c6c6c6b6a686663605c54544e47433c332d261d150c03000000000000000000000000000000000000000000000000000000000007121d28313c46505a606d7983909893939393928d82796d6053463a2d20130700000000000000000000000000000000000007131e2a35404952575960606060606060605a58524a40362c21180d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a333c454d525a6164696e72747778787979787774726e69636059514b433931271d12070000000000000000000000000000000000000000000206090e121415181a1c1e1f1f20201f1e1d1b19161413100c070300000000000000000000000000000000000714212d3a4754606d7a8283838383838174675b4e414855626f7c8283838383827f7265584c3f3225190c00030f1b27323d464e575f686d79818c929fa3a0958e81756d62584e443a2f261b110800000000101c2936434f5c6976828f9083767171717171717171717171717171716d685e5246392d201307000a1723303d4a5663707d8993939393939393939393939393939393938f8276695c4f4336291c10000000000000000000000000000000000000000406070a0c0e1011121213131211100e0c0a07060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1925303b4854606b7784919daaac9f93877b6e6153493f33272d2d2d3a4653606d7984919eabac9f92867a6d6054473d3221160c0100000000000000000000000916222f3c4955626f7c8895a2afa3978a7e839098938d847f7b777574747476797c81889297a1a9a89f958d80736a5f53473b30251a0e0200000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8b939393938d8073665a4d4033271a0d000000000000000009121c252e363e454d52575f62666a6e71737577787879797978777573706d67636059534d453e362d251b11080000000000000000000000000f1b27333e49525a5f60606060606069768390908376696060606060605f5a52493e33271b0f00000000000000000000010a121a202830363b4246484e5355585b5d5e5f5f5a61646c6c6c6c66635c52473d373127221b140b03000000000000000000000000000000000000000000000000000000000000010c161f2a343e45515c676e7b8586868686868686867a6e6154473b2e211408000000000000000000000000000000000000020d19242e3740474b4d53535353535353534d4c4740382f241a0f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000030613131313131313130d0c0a07020000000000000000000000000003060809131313131313130b0b090501000000000000000007121d27313c464e575e616c71777b7f8183848586858584817f7b76706b605d554b43392f23180c040000000000000000000000000000000000000000000000020608080b0e1011121313131211100f0c0a07060400000000000000000000000000000000000000000713202c3945525d686d767676767676746f64584c4047535f6a6f767676767676726d62564a3e3125180b0007131f2c38434e5860696e7a828e939ca4a2989183796d605b51463d32281d140a0000000000101c2936434f5c6976828f91837e7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7a6d6154473a2e211407000a1723303d4a5663707d868686868686868686868686868686868686868276695c4f4336291c1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141e2c38444f5965727f8c98a3aea4998c7f73655b5044372b1f2a36414c5663707d8a97a1ada79b8e8174685d5245392c2013040000000000000000000000000916222f3c4955626f7c8895a2afa89b8e818e9593878079726e6969686768656c6f757d859297a2ada79f92877b6e62574d42362a1e110500000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000c1925323f4c5865727f8686868686868073665a4d4033271a0d0000000000000000000a131c242c333b42464d5355575f626466696a6b6b6c6c6c6b6a686663605d55544f47423c332d241b130900000000000000000000000000121e2b37434f5a646c6c6c6c6c6c6c6c7683909083766c6c6c6c6c6c6c6c645a4f43372b1e12000000000000000000000000080e161e252a30363a3c4347484b4e504a505b636c7079797979736e63574b3f32262017110a020000000000000000000000000000000000000000000000000000000000000000040d18222934404b555f696e78797979797979797976685e5246392d2014070000000000000000000000000000000000000007121c252e353b3f404646464646464646413f3c362f261d12080000000000000000000000000000000000000000000000000000000000000000000000000000000000060c101220202020202020201a1917130e0800000000000000000000040a0f13151620202020202020181715110c06000000000000000c18242f39434e585f696e767e83888c8e909192929291908e8b87827d746d675d554b40342920150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c565d6069696969696967645c53483c434e585f6269696969696965625b51463a2e221609000915222e3b4854606a6f7b8490949ea5a49f92867c6e675d51493f342b20160b020000000000101c2936434f5c6976828f95918a8a8a8a8a8a8a8a8a8a8a8a8a8a8a897d7063564a3d3023170a000916222f3c4854606b70797979797979797979797979797979797979797670665a4e4135281c0f00000000000000000000000000000000000003080b0d0e13131313131313131313131313131313131313131313131313131313131313131311100e0a06000000000000000000000000000000000000000000000000000000000002101c27333d4754616d7a86929facab9e9184786c6053463a2f242d3946525e6875828f9ba9aca095897c6f63564c4135291d11040000000000000000000000000916222f3c4955626f7c8895a2afaa9e938e9393877e736d67615e575b5a535b60626b707c85929fa6afa3998e8175695e52463a2d20140800000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825313e4a56626d72797979797979736e63584b3f3226190c000000000000000000010a121a212930363c4247485761696b6c6c6c68605c5f5f5e5d5b595653514b48433d37312a211b1209010000000000000000000000000013202d3946535f6c767979797979797979839090837979797979797979766c5f5346392d201300000000000000000000000000050c13191f252a2d32373b3c3f444c545c606d727e868686868073665a4d4033271a0b060000000000000000000000000000000000000000000000000000000000000000000000060f18232f39434d575f616c6c6c6c6c6c6c6c6c6c5e564c41362a1e110500000000000000000000000000000000000000000a131c242a2f323339393939393939393433302b241d140b00000000000000000000000000000000000000000000000000000000000000000000000000000000030a11171c1f2d2d2d2d2d2d2d2d2726231f19120a0200000000000000070f161b1f22232d2d2d2d2d2d2d2524211d181109000000000004101d2935404b555f6a6e7b838a9095989b9c9a989898999c9b9a938f8981796d675c51453d32271b0f00000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1924303a444c52545c5c5c5c5c5c5b58534a41363c464e53555c5c5c5c5c5c585651493f34291e1206000916232f3c4956626f7c85919693939393928a7e716a5f554b40372d22190e04000000000000101c2936434f5c6976828f9393939393939393939393939393939393897d7063564a3d3023170a000713202c38444f5960636c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69665e54493d3225190d0000000000000000000000000000000001080f14181a1b2020202020202020202020202020202020202020202020202020202020202020201e1d1a16110b04000000000000000000000000000000000000000000000000000000000b16202d3946525d6875818e9ba7aca096897c7063554b4135292e3a4754616d7a86929facaa9d9084776b6054443a2f24190d010000000000000000000000000916222f3c4955626f7c8895a2afafa59e9b958c7f736c605c55524d4e4e49505359606a717e8a949fabab9f92877b6e6154473b3025190e02000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000916222e3a46515b62656c6c6c6c6c6c66635c52473b2f23170a0000000000000000000000080f171f252a313744505d697378797979746d665e564e504f4c4a4745403938322b2620180f0900000000000000000000000000000013202d394653606c798686868686868686909494908686868686868686796c605346392d2013000000000000000000000000000002080d141a1e20262b343d454d565d666d747f87929892857b6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000000000000000007121d27313c454d53555f60606060606060605f524c443b3025190e020000000000000000000000000000000000000000010a12191e2325262d2d2d2d2d2d2d2d2726241f19130b02000000000000000000000000000000000000000000000000000000000000000000000000000000030c151c23282c393939393939393933322f2a241c140a00000000000007101920272b2e2f3939393939393932312e29221b12090000000006131f2c3945515d676e7c8490959d9d9993908d8b8b8b8d8f92999f9c938e82796d60584e43372b1c110600000000000000000000000106090b0c0e06060300000000000000020405060605040200000000000002070a0c0d0b0b0905010000000000000000000000000008131e28323a4145475050505050504e4c4841382f343c4347485050505050504c4a463f372d23180d01000d1a2633404d59667380868686868686868680746c61574e43392f251b100700000000000000101c2936434f5c697682868686868686868686868686868686868686867d7063564a3d3023170a0004101c27333d474f5456606060606060606060606060606060606060605c5a544c42382c211509000000000000000000000000000000020b131a202427272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2a2927221c150d0500000000000000000000000000000000000000000000000000000005111d2935414c56636f7c8995a0aca89b8e8174675d5145392c37434e5865727f8b99a3aea2988b7f7265594f4332281e1308000000000000000000000000000916222f3c4955626f7c8895a2afb7afa89d9083786d605a514b464241413f44464f58616c76828f9ca9afa3998c7f7266564c41362a1e1105000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000006121e29343f495156586060606060605a58524a40362a1f1307000000000000000000000000050d141a1f263845525f6b788586868681786d685f584f47403d3a38352f2c27211a150e060000000000000000000000000000000013202d394653606c798693939393939393969696969393939393939386796c605346392d201300000000000000000000000000000000050c151d2328363e464f575f686d78818c939993877d70695e52463a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000010b151f2a333c4246485253535353535353535346413b32291e14080000000000000000000000000000000000000000000000070d1316191a20202020202020201a1a17130e0801000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e262e34384646464646464646403f3b362e261c120800000000040f19222b32383b3c464646464646463e3d3a342d241b1106000004111d2935414c55606d798391969f9b938e8783807f7e7f8082878f949e9d948e81746a605447382e23170b00000000000000000000070d121618191b13120f0b06000608080c0e1112131312110f0c09080603080e1317191a181715110c06000000000000000000000000020c1620283035393a43434343434341403c362f262a32373b3c4343434343433f3e3a342d251b110700000c1925323f4b57636d737979797979797979746e645a50453c31281d120900000000000000000f1c2835414e5a66707679797979797979797979797979797979797979706b6054483c2f22160900000b16212b353d44484a535353535353535353535353535353535353534f4e49423a30261b10050000000000000000000000000000010b141d252b3033343939393939393939393939393939393939393939393939393939393939393939393736332e271f170d040000000000000000000000000000000000000000000000000000010d1924303a4854606b7783909daaac9f92857a6d6054473c313b4754606a7783909dabac9f92867a6d6054473d3221160c01000000000000000000000000000916222f3c4955626f7c8895a2afb9ada1968a7d70665c5045403936302d33373d46505a63707d8a97a1adab9d908377685e5246392d201407000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000d1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000010d18232d373f464a4c5353535353534d4b4740382e24190e020000000000000000000000000002090e1926323f4c5965727f8c93938e827a6f6a6159514440393029241d1b160e0903000000000000000000000000000000000013202d394653606c798693928d89898989898989898989898989898986796c605346392d2013000000000000000000000000000000060e161e272e344048505960696e7a828e939f948c7f736b60574d42362a1e11050000000000000000000000000000000000000000000000000000000000000000000000000000030d18212a31373a3b4546464646464646463b3936302920170d0200000000000000000000000000000000000000000000000002070a0c0d13131313131313130e0d0b0703000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2630383f4453535353535353534d4b4740382e24190e020000000a16202b343d434749535353535353534b4a453f362d22180c01000613202c3945515d6773808d95a09b918c817b767372717273767b828f939e9f93877c6f62544a3f34281c100300000000000000010911181e22252628201f1c17110e121415181b1e1e1f201f1e1c191615130f12191f2326272524211d181109000000000000000000000000040e161e24292c2d3636363636363433302b251d20262b2e2f36363636363632312e29231b13090000000a16232f3b47525b63666c6c6c6c6c6c6c6c67645c52483e332a1f160c0000000000000000000d1925323d49545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6360594f44382c2013070000050f19232b33383c3d4646464646464646464646464646464646464643413d3830281e140a00000000000000000000000000000008131d262f363c404146464646464646464646464646464646464646464646464646464646464646464644423f3931291f150b00000000000000000000000000000000000000000000000000000008131e2c38434f5965727f8b98a2aea2988b7e7165574d4237404b55626f7c8895a0aca79b8e8174685d5245392c20130400000000000000000000000000000916222f3c4955626f7c8895a2afb7ab9e9184786c60544a3f342e2a2522272b343e4653606c7885919eabac9f93877a6e6154473b2e211408000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000002090e1a2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000007111b252d343a3e3f464646464646403f3b362e261c1208000000000000000000000000000000000b1825313e4a56626d75818f969490847c706b625b514a423a322a211911060000000000000000000000000000000000000013202d394653606c7986938d807d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7063564a3d3023170a0000000000000000000000000000070f18202830394045525a616b6f7b838f949d968f82776c60594f453b30251a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000060f181f262b2d2e3939393939393939392e2d2a251e170e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e38424a505f606060606060605a58524a40362a1f13070000030f1b27323d464e545660606060606060585650483f34291d1105000714212d3a4754606d7a85929f9e948c7f746e696765656566696e78818f98a39a8e8175665c5044382b1f12060000000000000009131b23292e3132352d2b28221c1a1e212225282a2b2c2c2b2a282622221f1b1c242a2f323332312e29221b1209000000000000000000000000040c13191d2021292929292929282724201a13151b1f21222929292929292525221e1811090100000007131e2a35404952575960606060606060605a58524a40362c21180d040000000000000000000915212c38424c545a5c6060606060606060606060606060606060606056544f473d33271c100400000008111921272c2f30393939393939393939393939393939393939393635322c261e160c020000000000000000000000000000030f1a252f3841484c4e535353535353535353535353535353535353535353535353535353535353535353514f4a433b31271c11060000000000000000000000000000000000000000000000000000020f1b27323d4754606d7a86929facaa9c908376695f53473845515c6774808d9aa7aca095897c6f63564c4135291d110400000000000000000000000000000916222f3c4955626f7c8895a2afb6ac9a8d8073665b5042382e231d1a171b222b3744505b6574818e9ba7afa49a8a7e7164574b3e31241807000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000040a0f141a1e2633404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000009131b23292e313239393939393933322f2a241c140a00000000000000000000000000000000000916222e3a46515b606d7a8491989691867d726d605c544c443c332b2317110a02000000000000000000000000000000000013202d394653606c7986938b7e727070707070707070707070707070706b6054483c2f22160900000000000000000000000000071019212a323a434b515b636c717d8591959f9991847a6d655b50473d33291f14090000000000000000000000000000000000000000000000000000000000000000000000000000000000060e141a1e21222c2d2d2d2d2d2d2d2d21201e19140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000001070b0f1112131313131313130a090704000001070b0f1112131313131313130a0907040000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c66635c52473b2f23170a000006131f2b38434e5860626c6c6c6c6c6c6c65625a50453a2e211509000b1825323e4b5865717e8b989e9c8f82756d615e57585858575e666e7b86929f9e9285786d6053463a2d20130700000000000009121b252d353a3e3f413938332d26262b2e2f323537383939383735322f2e2b27262e353b3f403e3d3a342d241b120900000000000000000000000002080d1113141d1d1d1d1d1d1b1a18140f080a0f1215151d1d1d1d1d1d191816120d070000000000020d19242e3740474b4d53535353535353534d4c4740382f241a0f060000000000000000000005101b26303a42494e4f535353535353535353535353535353535353534a48443d352b21160b0000000000080f161c2022232d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c040000000000000000000000000000000814202b36414a53585a6060606060606060606060606060606060606060606060606060606060606060605d5b554d43392e22160a0000000000000000000000000000000000000000000000000000000a16202c3945515d6774818e9aa7ab9f94887b6e62544a3f4653606d7985929fabaa9d9084776b6054443a3024190d0100000000000000000000000000000916222f3c4955626f7c8895a2afafa49a897d7063544a3f30261c120e0b0f1b27333f495364717e8b97abb5ac9a8d8073675a4d402e23180c000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000000000000000002080d161b1f252a2d33404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000010911181e2225252d2d2d2d2d2d2726231f19120a02000000000000000000000000000000000006121e29353f45525d686f7c86929f9892877f746d665d564d453d3528231c140c030000000000000000000000000000000013202d394653606c7986938b7e7265636363636363636363636363636360594f44382c201307000000000000000000000000040f19222b333c444c555c606d737e869297a09f92877c6f685d53493f352b20170d0200000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214151f20202020202020201414110e08020000000000000000000000000000000000000000000000000000000000000000000000000000000000050c12171b1e1f20202020202020171613100b050c12171b1e1f20202020202020171613100b05000000000006121f2c3844505c667679797979797979736e63584b3f3226190c00000815222e3b4754606a6f79797979797979716c62564a3d3124170b000e1b2835414e5b6874818e909192897c6f635b524d4c4b4c4d545e6976828f9ca297887b6e6155483b2e221508000000000009121b252d373f464a4c4e46443f382f31373a3b3f41444546464544423f3c3b37322c3840474b4d4b4a453f362d241a120800000000000000000000000000010407071010101010100e0d0b08030000030608091010101010100c0b0906010000000000000007121c252e353b3f404646464646464646413f3c362f261d12080000000000000000000000000a141e2830383d4143464646464646464646464646464646464646463d3c38332b23190f05000000000000050b10131617202020202020202020202020202020202020201c1c1915100a02000000000000000000000000000000000b1824303c48535c64676c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a675f554a3f33271a0e00000000000000000000000000000000000000000000000000000004111d2935414c55626f7c88959faba6998d8073665c50444d5764717e8a97a2ada2988b7f7265594f4332281e13080000000000000000000000000000000916222f3c4955626f7c8895a2afac9f93867a6d6053473a2d20140a00000b17222d3c4855626f7b8899a4afa99c8f837669554b4034281c10040000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000050c131921272c30363a3b404d596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000070d121618192020202020201a1917130e0800000000000000000000000000000000000000010d18232935414c565f6a727e8b939e99938c81786d685f574f473f342e261e150c0300000000000000000000000000000013202d394653606c7986938b7e72655856565656565656565656565656544f473d33271c10040000000000000000000000000a16212b343d454d565e676d757f8a9298a19e938b7f726a60564c41382d23190e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205070812131313131313131308070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f171e23282a2b2d2d2d2d2d2d2d2322201c160f171e23282a2b2d2d2d2d2d2d2d2322201c160f08000000000713202d3a4653606d78868686868686868073665a4d4033271a0d00000916232f3c4956626f7c868686868686867e7165584b3e3225180b000c1926323f4c5965727f8283848586786d605346423f3e3f424d576773808d9aa995897c6f6256493c2f2316090000000008121b242d373f495157595b53504a42383c4247484b4e5151525352514f4c4947433c39404a52585a585650483f362c241a1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a131c242a2f323339393939393939393433302b241d140b00000000000000000000000000020c161e262c32353639393939393939393939393939393939393939302f2c27211911080000000000000000000407090a13131313131313131313131313131313131313100f0d09050000000000000000000000000000000000000d1a2733404c58646e747979797979797979797979797979797979797979797979797979797979797979797771675b4f4236291d10000000000000000000000000000000000000000000000000000000010d19242f3a47545f6a7783909da9ab9e9184796d605346525e6976828f9ca9ac9f92867a6d6054473d3221160c020000000000000000000000000000000916222f3c4955626f7c8895a2afaa9e918477675d5145392c20130200000613202d3a4653606d7986939facab9e918478675c5145382c1f13060000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000000000000070e171e252a32383b4246474b4e596673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000070d121618192020202020201a1917130e080000000000000000000000000000000000000000070d19242f3a434e58626d75818e95a09f928e827a6e69605951443f3830271e150b00000000000000000000000000000013202d394653606c7986938b7e7265584b4a4a4a4a4a4a4a4a4a4a4a4a48443d352b21160b000000000000000000000000030f1b27323d464e575f686d79818c929fa3a0958e81756d62584e443a2f261b11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f1821282f34373839393939393939302f2c27211921282f34373839393939393939302f2c27211911080000000713202d3a4653606d798693939393938d8073665a4d4033271a0d00000916232f3c4956626f7c8993939393938b7e7165584b3e3225180b000c1825313e4a57636d7275767778796d665c5044383030363f4c5966727f8c99ab96897d7063564a3d3023170a000000040d1a242d363f49515b626568605b544a45464d5355585b5d5e5f5f5e5d5b5955544e47454a525c636665625a50483e362c231a0d0400000000000000000003060809131313131313131313131313131313131313131313131313130b0a0804000000000000000000010a12191e2325262d2d2d2d2d2d2d2d2726241f19130b020000000000000000000000000000040c141b212528292d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2322201c160f0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1b2734414e5a67748186868686868686868686868686868686868686868686868686868686868686868683776a5d5144372a1e110000000000000000000000000000000000000000000000000000000008131e2b37434e5865717e8b97a2ada1968a7d7063564c54616e7b87939faca79b8e8174685d5245392c201304000000000000000000000000000000000916222f3c4955626f7c8895a2afa89c8f827569554b4035291d1104000006131f2c3845515c677884919eabac9f9386796d6053463a2d2013070000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000000000071019202930363d44484d5254575b5d6673808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000010911181e2225252d2d2d2d2d2d2726231f19120a020000000000000000000000000000000000000008131e28313c46515b606d79839198a29d948f847b706b625b504a423930271d1207000000000000000000000000000013202d394653606c7986938b7e7265584b3f3d3d3d3d3d3d3d3d3d3d3d3c38332b23190f0500000000000000000000000007131f2c38434e5860696e7a828e939ca4a2989183796d605b51463d32281d140a0000000000000000000000000000000000000000000002070c0f11121313131313131313131313131313131313131313131313131313131313131313131313131308070502000000000000000000000001070b0f1112131313131313130a09070400000000000000010c17212a333a404345464646464646463d3c38332b232a333a404345464646464646463d3c38332b23190f0500000713202d3a4653606d7986939f9f9f998d8073665a4d4033271a0d00000916232f3c4956626f7c89959f9f9f988b7e7165584b3e3225180b000916222e3a46515b636568696b676d675c544a3f41414142464e586673808d99a399887c6f6255493c2f2216090000010c161f2c363f48515b626d72746c665b545153575f6265686a6b6c6c6b6a68656260585452525c636e73716c625a50483e352c1f160c01000000000000040a0f12151520202020202020202020202020202020202020202020202020171714110c05000000000000000000070d1316191a20202020202020201a1a17130e080100000000000000000000000000000000020a1015191c1c20202020202020202020202020202020202020171613100b05000000000000000000000000000000000000000003090d1012131313131313130e0d0b080300000000000000000000000000000000000000000e1b2734414e5a6774818d939393939393939393939393939393939393939393939393939393939393939083776a5d5144372a1e1100000000000000000000000000000000000000000000000000000000010f1b26323c4753606d7985929faba99b8e8275685d525966737f8c99a4aca095897c6f63564c4135291d1104000000000000000000000000000000000916222f3c4955626f7c8895a2afa79a8d8174675a4e412f24180d01000004101c2834404b556a7683909da9afa49a887b6e6155483b2e2215080000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000061019222b323a41464f54575e6164676a6b73808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000009131b23292e313239393939393933322f2a241c140a00000000000000000000000000000000000000010c161f2a343f45515d676e7c86929fa59f9691857d726d605c544b42392e23180c000000000000000000000000000013202d394653606c7986938b7e7265584b3f3d3d3d3d3d3d3d3d3d3d3d3c39332c231a10050000000000000000000000000915222e3b4854606a6f7b8490949ea5a49f92867c6e675d51493f342b20160b02000000000000000000000000000000000000000000060d13181c1e1f202020202020202020202020202020202020202020202020202020202020202020202020201514120e09030000000000000000050c12171b1e1f20202020202020171613100b05000000000007121e28333c454b5052535353535353534a48443d352b333c454b5052535353535353534a48443d352b21160b00000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2aca4988b7e7165584b3e3225180b0006121e2a353f495157595b5d555c605c554b474e4e4e4e4d52575f6a76838f9c9f92867a6d6054473a2d211407000007131d28313e48505a626d727f81786c665b5c6064696e727477787979787775726f6a65605d5c636e73807e716c615a50473e31281e13080000000000060e151b1f21222d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423211c17100800000000000000000002070a0c0d13131313131313130e0d0b0703000000000000000000000000000000000000000005090d0f10131313131313131313131313131313131313130a090704000000000000000000000000000000000000000000070e14191d1f202020202020201b1a17140e08010000000000000000000000000000000000000e1b2734414e5a6774818d9a9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9d9084776a5d5144372a1e1100000000000000000000000000000000000000000000000000000000000a151f2c3945515d6774808d9aa6ac9f92867a6d6154606b7784919eabaa9d9084776b6054443a3024190d01000000000000000000000000000000000916222f3c4955626f7c8895a2afa6998c807366594d4033261a07000000000c18232e424f5c6975828f9ca8b6ac95887c6f6255493c2f2216090000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000000050e18222b343d444c52596063696e7174767778808c9996897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000007111b252d343a3e3f464646464646403f3b362e261c120800000000000000000000000000000000000000040d18222935404b555f6a717e8a939da7a09792877f746d665c544b4034281c10040000000000000000000000000013202d394653606c7986938b7e7265584b4a4a4a4a4a4a4a4a4a4a4a4a49443e362c22170b0000000000000000000000000916232f3c4956626f7c85919693939393928a7e716a5f554b40372d22190e04000000000000000000000000000000000000000000070f171e24282b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d22211e1a140e06000000000000060f171e23282a2b2d2d2d2d2d2d2d2322201c160f08000000000b17232f3a454e565c5e6060606060606056544f473d333a454e565c5e6060606060606056544f473d33271c1004000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00010d18232d373f464a4c4f504b5153514c52545a5a5a5b575e61696f7c87929f9c8f8376675d5145392c20130600010d18242f3a43505a626c727f8b8e81786c66666d71767b7e81848485868584827f7c77726d68606e73808d877e716c61594f433a2f24190d0100000006101820262b2e2f3939393939393939393939393939393939393939393939393931302d28221a1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000811191f25292b2c2d2d2d2d2d2d2726241f1a130b0200000000000000000000000000000000000e1b2734414e5a6774818d9aa7acacb2a9a19e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9084776a5d5144372a1e11000000000000000000000000000000000000000000000000000000000004101d2935404b55626f7b88949faba3998b7e726557636f7c8996a0aca2988b7f7265594f4332281e130800000000000000000000000000000000000916222f3c4955626f7c8895a2afa5988b7f7265584c3f3225190c00000000071b2835424e5b6875818e9ba8b0a396897d7063564a3d3023170a0000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000020c16202a343d464e565e616b6f757b7e8183848587939f96897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000010d18232d373f464a4c5353535353534d4b4740382e24190e0200000000000000000000000000000000000000071018242f39434e58616c74818e95a0a9a299928b80786d665c5145382c1f13060000000000000000000000000013202d394653606c7986938b7e726558575757575757575757575757575550483e33281c100400000000000000000000000d1a2633404d59667380868686868686868680746c61574e43392f251b1007000000000000000000000000000000000000000000060f1921292f343738393939393939393939393939393939393939393939393939393939393939393939393939392e2d2b261f180f0600000000050f1821282f34373839393939393939302f2c27211911080000000f1b2834404b5660686b6c6c6c6c6c6c6c6360594f4438404b5660686b6c6c6c6c6c6c6c6360594f44382c201307000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000007111c252d353a3e3f42434045474c565d616767676869696e727b8491999e938a7d7063554b4135291d11040004111d2935404b55616c717e8893938e81786c70797e83888b8e9091929291908e8c88847f7a726d73808d9292877e716b61554c4135291d11040000040e18222a32373b3c464646464646464646464646464646464646464646464646463e3c39332c241a1005000000000000000000000000020608080c0b09060100000000000000000000000000000000000000000004080a0b0807050200000000000000000000000000000000000205070813131313131313130707050100000000000000000007111a232a313538393939393939393433302b241d140b01000000000000000000000000000000000e1b2734414e5a6774818d9aa9b3b9ada1979191919191919191919191919191919191919191919191919083776a5d5144372a1e110000000000000000000000000000000000000000000000000000000000000c18242f3947535f6a7683909ca9ab9d908376695f6774818e9aa8ac9f92867a6d6054473d3221160c0200000000000000000000000000000000000916222f3c4955626f7c8895a2afa5988b7e7265584b3f3225180c000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a0000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000008131e28323c464e5860686d767c82878a8e9091929399a496897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000006121e29343f495156586060606060605a58524a40362a1f1307000000000000000000000000000000000000000007121d28313c46505a606d7983909893939393928d82796d6053463a2d2013070000000000000000000000000013202d394653606c7986938b7e72656464646464646464646464646464615a5044392d20140800000000000000000000000c1925323f4b57636d737979797979797979746e645a50453c31281d1209000000000000000000000000000000000000000000020d17212b333b404445464646464646464646464646464646464646464646464646464646464646464646464646463b3a37312a21180e030000010c17212a333a404345464646464646463d3c38332b23190f050000111e2a3743505c68727879797979797979706b6054483c43505c68727879797979797979706b6054483c2f221609000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000a131c232a2e3132352f343946525d686d7474747475777b7f8591969e938e81746b6155433a2f24180d01000613202c3945515d67717e87939a9d938e81797d848b9095989b9d9e9f9f9e9d9b9895918c857f79808d929c9992877d70675d5145392c20130600000a15202a343c434748535353535353535353535353535353535353535353535353534a49453e362c22170c0000000000000000000003090e121415191815120d06000000000000000000000000000000000000050c111417171514120e09030000000000000000000000000002090e12141520202020202020201413110d0802000000000000030e19232c353c414546464646464646413f3c362f261d1308000000000000000000000000000000000e1a2734414d5a6774808d97a2adb8ab9e91858484848484848484848484848484848484848484848484848275685c4f4235291c0f00000000000000000000000000000000000000000000000000000000000007121d2b37434e5864717e8a97a1ab9f95887b6e616d7985929faba79b8e8174685d5245392c2013040000000000000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3124180b0000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000010d1925303a444e58606a6f7a82898f94979a9d9e9f9fa4ab96897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000000000101d2a3643505d69768390908376695d5043362a1d100000000000000000000916222e3a46515b62656c6c6c6c6c6c66635c52473b2f23170a0000000000000000000000000000000000000000010c161f2a343e45515c676e7b8586868686868686867a6e6154473b2e2114080000000000000000000000000013202d394653606c7986938b7e727070707070707070707070707070706c6155493c3023160a00000000000000000000000a16232f3b47525b63666c6c6c6c6c6c6c6c67645c52483e332a1f160c0000000000000000000000000000000000000000000007131e29333d454c5052535353535353535353535353535353535353535353535353535353535353535353535353534846423c332a1f1409000007121e28333c454b5052535353535353534a48443d352b21160b0000121f2b3845525e6b7884868686868686867d7063564a3d45525e6b7884868686868686867d7063564a3d3023170a000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000000010a11181e22252628232e3a4754616d7a808181818284878c929796918b81796d60594f4431281d130700000714202d3a4753606d7a859297a2a59d938e848991969d9fa7a7aaa8a7a7a8aaa8a7a09d97928b858d929ca4a39892857a6d6054473a2d21140700030f1b26323c464e535560606060606060606060606060606060606060606060606060575550483e33281c11040000000000000000060e151a1e21222524221e181109010000000000000000000000000000000810171c21232422211e1a140d060000000000000000000000050d141a1e20212d2d2d2d2d2d2d2d21201d19130c05000000000009141f2a353e474d51535353535353534e4c4741382f241a0e030000000000000000000000000000000815212e3b4854616e7b85929ea4aea99d9083787777777777777777777777777777777777777777777777756f65594d4134281b0e000000000000000000000000000000000000000000000000000000000000010f1a26313c4653606d7985929eaca7998c7f7366717d8a98a2aca095897c6f63564c4135291d11040000000000000000000000000000000000000916222f3c4955626f7c8895a2afa4988b7e7165584b3e3225180b000000010e1a2734414d5a6774808d9aa7b1a4978b7e7164584b3e3125180b0000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000005111d2a36414c565f6a6f7d848f949c9ea6a7a9aaabacafa296897c6f635649505c6976838f9c9286796c5f5346392c201306000000000000000000000000030a0f1d2a3643505d69768390908376695d5043362a1d0f0a03000000000000000b1825313e4a56626d72797979797979736e63584b3f3226190c000000000000000000000000000000000000000000040d18222934404b555f696e78797979797979797976685e5246392d2014070000000000000000000000000013202d394653606c7986938d807d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7e7064574a3d3124170a000000000000000000000007131e2a35404952575960606060606060605a58524a40362c21180d04000000000000000000000000000000000000000000000c18242f3b454f575d5f6060606060606060606060606060606060606060606060606060606060606060606060606055534d453c31261a0e02000b17232f3a454e565c5e6060606060606056544f473d33271c100400121f2b3845525e6b7885919393939393897d7063564a3d45525e6b7885919393939393897d7063564a3d3023170a000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000000070d121618191c212e3b4854616e7b878d8d8e8f9193938f8d89847e756d675c51473e331f160c0100000613202c3945515d676f7c859298a2a59d9591959da0a8aba8a09d9b9a9a9b9d9fa4aca9a19e9691969ca4a39992867d70675d5145392c2013060006121f2b37434e585f626c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d21140800000000000000060f181f262b2e2f32312e29231b130a010000000000000000000000000008121a22282d30312e2d2a261f180f06000000000000000000050f171f252a2d2e39393939393939392e2d2a251e160e05000000010d1925313c4750585e5f6060606060605a58524a41362b1f14080000000000000000000000000000000714202d3a46525e69707d8a929da7ab9f958d80736b6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a68655d54493d3125190c000000000000000000000000000000000000000000000000000000000000000a151f2c3845515c6773808d9aa4aa9d9184776a75828e9baaaa9d9084776b6054443a3024190d010000000000000000000000000000000000000916222f3c4955626f7c8895a2afa5988b7e7265584b3f3225180c000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3124180b0000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000713202d3946525e686f7c8691969ea6aab0b4b6b7b8b9afa296897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000000060e151a1f2a3643505d69768390908376695d5043362a1f1a150e060000000000000c1925323f4c5865727f8686868686868073665a4d4033271a0d00000000000000000000000000000000000000000000060f18232f39434d575f616c6c6c6c6c6c6c6c6c6c5e564c41362a1e11050000000000000000000000000013202d394653606c798693928d8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a86796c605346392d20130000000000000000000000020d19242e3740474b4d53535353535353534d4c4740382f241a0f0600000000000000000000000000000000000000000000000f1c2834404c5761686b6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5f574d42372b1e1205000f1b2834404b5660686b6c6c6c6c6c6c6c6360594f44382c20130700121f2b3845525e6b7885919e9f9f9f96897d7063564a3d45525e6b7885919e9f9f9f96897d7063564a3d3023170a000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000000000106090c0c15212e3b4854616e7b87949a9b9c9e938682807d78716c605c554b40352c210d0400000004111d2935404b55606a6f7c869298a2a7a09da0a7a9a29f9996918f8e8d8e90939a9ea1a8a8a19ea1a8a39992877d706b60554c4135291d1104000815212e3b47535f6a7679797979797979797979797979797979797979797979797979716c6155493c3023170a000000000000060f18212a31373a3b3f3e3a342d251c130a01000000000000000000000008121a242c33393c3e3b3a36312921180f0500000000000000020d17212930363a3b4646464646464646463936302820160c02000004101d2935414d58626a6c6c6c6c6c6c6c67645c52473c3024170b00000000000000000000000000000005121e2a36424d57616c74808d95a0aaa79f93887d70685e545e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5c59544b42372c2115090000000000000000000000000000000000000000000000000000000000000004101c2834404b55616e7b87939faca095887b6f7985929faca3988b7f7265594f4332281e1308000000000000000000000000000000000000000916222f3c4955626f7c8895a2afa5988b7f7265584c3f3225190c000000010e1b2834414e5b6774818e9aa7b0a4978a7d7164574a3e3124170b0000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000005121e2a36424d57616d7a849198a1a8b0b7bbc1c3c4c5bcafa296897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000000006101820262b2e3643505d69768390908376695d5043362e2b262018100600000000000c1925323f4c5865727f8b939393938d8073665a4d4033271a0d000000000000000000000000000000000000000000000007121d27313c454d53555f60606060606060605f524c443b3025190e020000000000000000000000000013202d394653606c798693939393939393939393939393939393939386796c605346392d201300000000000000000000000007121c252e353b3f404646464646464646413f3c362f261d1208000000000000000000000000000000000000000000000000111e2b3744505d6873787979797979797979797979797979797979797979797979797979797979797979797979797976695f53463a2d21140700111e2a3743505c68727879797979797979706b6054483c2f22160900121f2b3845525e6b7885919eabaca396897d7063564a3d45525e6b7885919eabaca396897d7063564a3d3023170a000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000000000000060b0f12131c212e3b4854616e7b8793939495989a9285817d756e685e574d43392e23180c00000000010d18242f3a434e58606a6f7d86929aa4acaaaca59d97928c88848281818283878b91969fa3ababadac9f92877d706b61594f433a2f24190d01000915222f3c4855626f7c868686868686868686868686868686868686868686868686867e7164574a3e3124170b0000000000050f18212a333c4247484c4a463f372e251c130a0100000000000000000008121a242c363e45494a4846423b332921170e0500000000000009141f29333b42464853535353535353535346413a32281e1308000005121f2b3845515e6a7479797979797979746e64584c3f33261a0d000000000000000000000000000000020e1a25303b454f59606d79839098a2aea49a92857a6e665b5051515151515151515151515151515151514f4d49423930261b100400000000000000000000000000000000000000000000000000000000000000000c18232e3946535f6976828f9ca9a7998c7f737d8a98a2ac9f92867a6d6054473d3221160c02000000000000000000000000000000000000000916222f3c4955626f7c8895a2afa6998c7f7366594c4033261907000000020f1b2835424e5b6875818e9ba8b0a3978a7d7064574a3d3124170a0000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000714212d3a46535f6974818e96a1aab2bac2c7ccd0d1c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c201306000000000000000000061018222a31373a3c43505d69768390908376695d50433c3a37312a22181006000000000c1925323f4c5865727f8b989f9f998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000010b151f2a333c4246485253535353535353535346413b32291e1408000000000000000000000000000013202d394653606c798686868686868686868686868686868686868686796c605346392d2013000000000000000000000000000a131c242a2f323339393939393939393433302b241d140b00000000000000000000000000000000000000000000000000121f2c3845525f6b7885868686868686868686868686868686868686868686868686868686868686868686868686867b6e6155483b2e22150800121f2b3845525e6b7884868686868686867d7063564a3d3023170a00121f2b3845525e6b7885919eabaca396897d7063564a3d45525e6b7885919eabaca396897d7063564a3d3023170a000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00000000020a11171c1f2028232e3b4854616e7b86868687898c9195928e89827a6e695e544a4034281c10040000000007131d28313d464e58606b6f7c87939facaba39f938e857f7b7775747475777a7e848c9299a2a9b3a4978a7e716b61594f473d31281e130800000916232f3c4956626f7c8993939393939393939393939393939393939393939393938a7d7164574a3e3124170b00000000050e172129333c454d5355585651493f372e251c130a010000000000000008121a242c363e4850555755534d453b332920170e0500000000020e1a25303b454d525f60606060606060605f524c443a3025190d01000613202c3946535f6c79868686868686868074675a4e4134271b0e0100000000000000000000000000000009141f29333e45515c676e7b86929fa5aca1978f82786c60594f4444444444444444444444444444444442413d3730271e140900000000000000000000000000000000000000000000000000000000000000000007121d2b37424d5764717d8a97a1aa9d908377818e9baaa79b8e8174685d5245392c20130400000000000000000000000000000000000000000916222f3c4955626f7c8895a2afa79a8d8174675a4e412e23180c000000030f1c2936424f5c6975828f9ca8afa296897c6f6356493c302316090000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000815222e3b4855616e7b87929fa8b2bcc4ccd3d7dcd5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000000060f18222a343c43474847505d69768390908376695d50474847433c342a22180f060000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000000000000000000030d18212a31373a3b4546464646464646463b3936302920170d02000000000000000000000000000013202d3946535f6c767979797979797979797979797979797979797979766c5f5346392d201300000000000000000000000000010a12191e2325262d2d2d2d2d2d2d2d2726241f19130b0200000000000000000000000000000000000000000000000000121f2c3845525f6b7885929393939393939393939393939393939393939393939393939393939393939393939393887b6e6155483b2e22150800121f2b3845525e6b7885919393939393897d7063564a3d3023170a00121f2b3845525e6b7885919e9f9f9f96897d7063564a3d45525e6b7885919e9f9f9f96897d7063564a3d3023170a000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000000020b141c22282b2d352e343a46535e69767979797a7c7f848c9399948f847b6e665c5144382c1f150900000000010c161f2b343d45515d67717e8b9aa4afa399928b817a736e6968676768686e72797f879297a2aaa6998c7f73695f53463e352b1f160c010000091623303c4956636f7c89969f9fa8a19e9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c978a7d7164574a3e3124170b000000020b172029333b454d575f6265625b51493f372e251c130a01000000000008121a242c363e48505a6164615f574d453b322920170c0200000005121e2a36424d575e6c6c6c6c6c6c6c6c6c6c5e564c41362a1d1105000613202c3946535f6c798692939393938d8174675a4e4134271b0e01000000000000000000000000000000030d17212834404b555f69717e8a939da8a99f948c7f736b60564c4135373737373737373737373737373534312c261e150c02000000000000000000000000000000000000000000000000000000000000000000000e1a26313c4653606d7984919eaba095887b85929faba095897c6f63564c4135291d110400000000000000000000000000000000000000000916222f3c4955626f7c8895a2afa89b8f827568544a4034281c1004000004101c2934404b556a7683909da9b4aa95887b6f6255483c2f2215090000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0006121e2b37424d576774818d99a3afbac4ced6dfe3e2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c20130600000000000000030e18212a343c464e535554525d69768390908376695d525455534e463c342a21180e0300000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000000000000000000000000000000000000000000000060f181f262b2d2e3939393939393939392e2d2a251e170e05000000000000000000000000000000121e2b37434f5a646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e12000000000000000000000000000000070d1316191a20202020202020201a1a17130e08010000000000000000000000000000000000000000000000000000121f2c3845525f6b7885929e9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f94887b6e6155483b2e22150800121f2b3845525e6b7885919e9f9f9f96897d7063564a3d3023170a00121f2b3845525e6b7885919393939393897d7063564a3d45525e6b7885919393939393897d7063564a3d3023170a000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000a141d262d33383942434045464d575e6c6c666d6d6f72787f87939f969083786d6053463c31261a0e0200000000040f1b27333f4953606d7984919eaca49f92877f746d68615f575b5a565e61676d727d859298a2ac9f92867b6e61564c41362a1e11050000000a1623303d495663707c899aa4aca196918f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8a7d7164574a3e3124170b0000000a141d29323b454d575f696e726d635b51493f372d251c130a0100000008121a242c363e48505a616c716e695f574d443b32291e140a0000000714202d3a46525e6976797979797979797976685e5246392d201307000613202c3946535f6c7986929f9f9f9a8d8174675a4e4134271b0e0100000000000000000000000000000000050f18232e39434d57616c74818e95a0aaa69f92877d6f685d52463f342a2b2b2b2b2b2b2b2b2b2b2b292825211b140c03000000000000000000000000000000000000000000000000000000000000000000000009141f2c3844505c6673808c99a4a79c8f828f97a2aa9d9084776b6054443a3024190d0100000000000000000000000000000000000000000916222f3c4955626f7c8895a2afaa9d908477665c5144382c1f1206000006131f2c3845515c677884919eabaea298877a6d6154473a2e2114070000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000814212d3a47535f697884919eabb5c0ccd6e0e8f1e2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000009151f2a333c464e585f62615e566976839090837669565e61625f584e463c332a1f150900000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000000000000000000000000000000000000000000000000060e141a1e21222c2d2d2d2d2d2d2d2d21201e19140d05000000000000000000000000000000000f1b27333e49525a5f60606060606060606060606060606060606060605f5a52493e33271b0f0000000000000000000000000000000002070a0c0d13131313131313130e0d0b070300000000000000000000000000000000000000000000000000000000121f2c3845525f6b7885929eabacacaea9a7a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a194887b6e6155483b2e22150800121f2b3845525e6b7885919eabaca396897d7063564a3d3023170a00121f2b3845525e6b7884868686868686867d7063564a3d45525e6b7884868686868686867d7063564a3d3023170a000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000006111c262f383f44464f504b51535452535f605c606162666c727f8b95a0958c7f7265574e42372b1e12060000000005121f2b3744505b65727f8c97a1a89c928a7e726d615d56534d4e4e4c52555c606b707c86929fa6a3988e8175685e5246392d2014070000000815222f3b4855626e7b87939fa99e91848383838383838383838383838383838383827d706356493d3023160a000006111b262f3b444d575f696e7b7f726d635b51493f372d251c130a010008121a242c363e48505a616c717d7b6e695e564d443a30261c110600000815212e3b4854616e7b86868686868686867a6d6154473a2e211407000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e01000000000000000000000000000000000007121d27303c45505a606d79839198a3aea39991847a6d615b51463c31281d1e1e1e1e1e1e1e1e1e1c1b191510090200000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939fac9e948f949ea9a3988b7f7265594f4332281e13080000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afac9f9286796d6053463a2d20130900000714202d3a4753606d7a86939facac9f928579685e5246392d2013070000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000815222e3b4855616e7b8896a1adbdc7d1dee8f2efe2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c201306000000000000020e1a26313c454e585f6a6f6d685e69768390908376695e686d6f6a5f584e453c31261a0e02000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000000000000000000000000000000000000000000000000003090e1214151f20202020202020201414110e080200000000000000000000000000000000000a16212c3740494f535353535353535353535353535353535353535353534f4940372c21160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000121f2c3845525f6b7885929eabb8aea49d9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a94887b6e6155483b2e22150800121f2b3845525e6b7885919eabaca396897d7063564a3d3023170a00111e2a3743505c68727879797979797979706b6054483c43505c68727879797979797979706b6054483c2f221609000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00000b17222d38424a50535b5d555c60605d564c4a505354545b606c7883909d9e9184786a5f53473a2e211408000000000613202d394653606c7884919ea9a0968d80736c625b524c4642414141464b5159606a717e8a939eaa9f92867a6e6154473b2f24180c0000000814212e3a47535f6975818e97a29d9084787676767676767676767676767676767676706b6054483b2f22160900000b17222d38414d565e696e7b848b7f726d635b51493f372d251b130a08121a242c363e48505a616c717e86847b6e695e564c42382e23170b00000815212e3b4854616e7b87939393939393877a6d6154473a2e211407000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e010000000000000000000000000000000000000b151e2a333e45515d676f7c86929fa5aba1968f82756d62584e433a2f24180f111111111111110f0e0c09040000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e3846535e6975828f9ca8a69e9c9ea6ac9f92867a6d6054473d3221160c020000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afaea399887c6f6255493c31261a0d06030615222f3c4855626f7b8899a4afaa9d9084776a564c41362a1e11050000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000b1825313e4b5864717e8b97a8b2bdcfd9e3f0faefe2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c20130600000000000006121e2b37424d575f6a6f7b7a6d686976839090837669686d7a7b6f6a5f574d42372b1e1206000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000000000000000000000000000002050708121313131313131313080705020000000000000000000000000000000000000005101b252e373e4346464646464646464646464646464646464646464646433e372e251b10050000000000000000000000000000000000000003080b0e0e131313131313130a090704000000000000000000000000000000000000000000000000000000121f2c3845525f6b7885929eabb8a99d928d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d887b6e6155483b2e22150800121f2b3845525e6b7885919e9f9f9f96897d7063564a3d3023170a000f1b2834404b5660686b6c6c6c6c6c6c6c6360594f4438404b5660686b6c6c6c6c6c6c6c6360594f44382c201307000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00030f1c28333f4a545b6068696b676d6d685d52454446474a505b6573808c99a196887b6e6255483b2f221508000000000a1623303d495663707d8996a0a99e9184786d605a5146413a373130363940454f58616c75828f99a3a3998c7f7266554b4035291d1004000006121e2b37424d57616e7b85929fa0958c80736c6969696969696969696969696969696360594f44382c20130700030f1b27333f49535e696e7b8491918c7f726d635b51493f372d251b13121a242c363e48505a616c717e879291847b6e685e544a3f34281c1003000815212e3b4854616e7b87949f9f9f9f94877a6d6154473a2e211407000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e01000000000000000000000000000000000000030c18212935404b555f6a727f8b939ea8a89e948b7f726a5f554b41352921180d030404040404020200000000000000000000000000000000000000000000000000000000000000000000000000000001070c06111c2a36424d5763707d8a96a1acaaa8aab0a79b8e8174685d5245392c201304000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afb5ab998c7f7266574d42372b1f15120f121c2834404a5465717e8b98abb5a89b8e8175685b4e423025190d010000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000d192633404c5966737f8c99a6b2bfcfd9eaf5ffefe2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000814212d3a47535f696f7c85837a6d68768390908376686d7a83857c6f695f53473a2d211408000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131c252c33373939393939393939393939393939393939393939393937332c251c130900000000000000000000000000000000000001080f14181a1b20202020202020171614100b0500000000000000000000000000000000000000000000000000121f2c3845525f6b7885929eabb4a79a8d8080808080808080808080808080808080808080808080808080808080807a6d6154473a2e21140700121f2b3845525e6b7885919393939393897d7063564a3d3023170a000b17232f3a454e565c5e6060606060606056544f473d333a454e565c5e6060606060606056544f473d33271c1004000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0006121f2b3844505b666c75767778797a6d60544b403a3a3f495364717e8b97a8978a7d7164574a3e3124170b00000003101c28343f4a546773808d9aa8a2978a7e71665c51483f35302b26252a2e343d46505a626e7b87929fab9d908376675d5145382c1f13060000020e1a26313c46525e68717e8a929c9f93887e716c605b535c5c5c5c5c5c5c5c5c5c5c56544f473d32271b10030005121f2b3744505b656e7b8491969c918c7f726d635b51493f372d251b1a242c363e48505a616c717e8792999691837a6d665c5044382b1f1206000815212e3b4854616e7b8794a1acaca094877a6d6154473a2e211407000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000060f18242f39434e58626d75818e96a1aba69f92867c6f675d51453f332a1f150b010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050c13181b1e1a25313b4653606c7884919e9f9f9f9f9fa095897c6f63564c4135291d1104000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afb6a99c908376695f53473c3127201f1c1f232c3844515c6675818e9ba8b3a9988c7f7265594c3f32261908000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000d1a2734404d5a6773808d9aa6b3c0cdd9e6f3fcefe2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000815222e3b4855616e7b859290837a6d7683909083766d7a839092857b6e6155483b2e221508000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000000000000000000000000000000000000000000010406070a0d101112131312100e0b080705020000000000000000000000000000010a131b21272b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a010000000000000000000000000000000000020b131a202427282d2d2d2d2d2d2d2323201c160f08000000000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a73737373737373737373737373737373737373737373737373737373736d685e5246392d20130700121f2b3845525e6b7884868686868686867d7063564a3d3023170a0007121e28333c454b5052535353535353534a48443d352b333c454b5052535353535353534a48443d352b21160b00000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000613202d394653606c7881838485868275665c5145403f414a5464717e8b97a4988b7e7165584b3e3225180b00000006121f2b3844505c667683909da99f9285796d60544a403629241e1a191d2328343e47535f6a7683909ca99f92867a6d6053473a2d2014070000000915202a36414d56616c73808d939d9a92877e736c655d554e5050505050505050504948443d352b21160b00000613202d394653606c79839096a0a39c918c7f726d635b51493f372d25242c363e48505a616c717e879299a3a0959083796d6053463a2d201307000815212e3b4854616e7b8794a1acaca094877a6d6154473a2e211407000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e01000000000000000000000000000000000000000007121d28313c46515b606d7a849199a3aea3999184796d605a50463c31271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f171e23282a2b2d2b3844505b66737f8c999393939393939084776b6054443a302419120b030000000000000000000000000000000000000000000916222f3c4955626f7c8895a2afb7ab9f94887b6e62574e4339312d2b282b2e343f4953606d7985929fabada297897c6f6356493c30231609000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000e1b2835414e5b6874818e9ba7b4c1cedae7f4fcefe2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c2013060000000000000713202d3a4653606d78818e9390837a7683909083767a8390938e81786d6053463a2d201307000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000000000020608080d0606030000000000000000000000000000000104080d111314171a1d1e1f201f1f1d1b181414110e080200000000000000000000000000010910161b1e202020202020202020202020202020202020202020201e1b161009010000000000000000000000000000000000010b141d252b30333439393939393939302f2c27211a11080000000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e67676767676767676767676767676767676767676767676767676767615e564c4135291d110500111e2a3743505c68727879797979797979706b6054483c2f22160900010c17212a333b434a4f5053535353534c4a463f372d232a333b434a4f5053535353534c4a463f372d23190f0500000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0006121f2b3844505b6677849091929285796d6058514a4c4b515b6673808d99a9978a7d7164574a3e3124170b0000000713202d3a4653606d7986929fa89b8e8175665c5042392e2419130e0d1218222b37434e5866727f8c99a5a399897c6f6356493c30231609000000030e1925303b44505a606c77818e939c99928b80776d675f585045414343434343433d3b38322b23190f04000005121f2b3744505b65707d869298a2a39c918c7f726d625b51493f372d2c363e48505a616c717e879299a3a39992877e71665c5044382b1f1206000815212e3b4854616e7b87949f9f9f9f94877a6d6154473a2e211407000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000010c161f2a343f45525d686f7c87929fa6aba0968e81756c62584e43392f24180f060000000000000000000000000000000000000000000000000000000000000000000000000000000000050f1821292f3437383939333f4a54616e7a8786868686868686867f7265594f43322c29231d150d0700000000000000000000000000000000000000000916222f3c4955626f7c8895a2afbdb0a69a8d81746a5f554b433c39383338393f44505b65717e8a97a2adab9f9285796d6053463a2d201307000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000e1b2835414e5b6874818e9ba7b4c1cedae7f4fcefe2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c20130600000000000006121f2c3844505c666d78818e9390837a839090837a8390938e81786d665c5044382c1f1206000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000003090e1214151913120f0b06000000000000000000000003070d1013191d202124272a2b2c2d2c2b2a282521201e19140f0a0400000000000000000000000000050a0f1213131313131313131313131313131313131313131313120f0a050000000000000000000000000000000000000008131d262f363c4041464646464646463d3c38332c231a0f0500000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e615a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a54524c443a3025190d01000f1b2834404b5660686b6c6c6c6c6c6c6c6360594f44382c20130700000a16222e39434d555b5d6060606060585651493f34292e39434d555b5d6060606060585651493f34291e120600000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00030f1c28333f4a546774818e9a9f978b7e716a605c5459555d606c7884919da297897c6f6356493c302316090000000714212e3a4754616d7a8798a3a5988b7f7265544a3f30271c1208020007101a26313d495663707c8996a3ab978a7d7164574a3e3124170b0000000008141f29323e44505b656c78818d929f9f928c81796f6a625a514c433c34363636302f2c2721191107000000030f1b27333f4953606b707d869298a2a39c918c7f726d625b51493f37363e48505a616c717e879299a3a39992877e716c61544a3f34281c1003000815212e3b4854616e7b87939393939393877a6d6154473a2e211407000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e01000000000000000000000000000000000000000000040d18222935414c56606a727f8c949fa9a89e938b7e716a5f554b40352921170c03000000000000000000000000000000000000000000000000000000000000000000000000000000010c17212a333a4044454646463a46525e686e797979797979797979726d6256473f3a38342f271f191007000000000000000000000000000000000000000916222f3c4955626f7c8895a2afb4aba39f92877b6e675d554e4846443f44464a5059606c7883909da9b1a89b8e8175665c5044382b1f1206000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000e1b2734414e5a6774818d9aa7b4c0cddae7f6ffefe2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c20130600000000000003101c28343f4a545c666d78818e939084839191838490938e81786d665c544a3f34281c1003000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000060e151a1e212226201f1c17110a0200000000000003060c1012181d2024292c2d30343638393939383735322e2d2a251e1b150d08020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a252f3841484c4e535353535353534a48443d352c21160b00000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e61544d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4746413a32281e130800000b17232f3a454e565c5e6060606060606056544f473d33271c100400010e1a27333f4a555f676a6c6c6c6c6c65625b51463a2e333f4a555f676a6c6c6c6c6c65625b51463a2e22160900000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00000b17222d3c4956626f7c89949f9f92857c716d66666666676d737f8c96a09f9285796d6053463a2d2013070000000815222f3b4855626e7b8895aaa4978a7d7164574a3e2e24150b000000000915222f3b4855626e7b8895a1a5988b7e7265584b3f3225180c00000000020d172027333f49535b666c74808b92989c938f847c716c605d554e463e362e292322201b160f0700000000000b17222d38414f59606b707d869298a2a39b918c7f726d625b51493f3e48505a616c717e879299a3a39992877e716c615a5042382e23170b00000815212e3b4854616e7b86868686868686867a6d6154473a2e211407000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000061019242f3a444e58606c77828f97a1aba59f92867c6e675d51453e33291e150b00000000000000000000000000000000000000000000000000000000000000000000000000000007131e29333c454c505253535246444d565e616c6c6c6c6c6c6c6c6c65625b51504c47454039312a221910060000000000000000000000000000000000000916222f3c4955626f7c8895a2afaea39992999083796d6760585553504a5053545c606b727f8b95a0acaca095897d7063544a3f34281c1003000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000d192633404c5966737f8c99a6b2bfced9e5f1feefe2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c201300000000000000000c17232e38424a545c666c78818e92909195959191928d81786c665c544a42382e23170c00000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000060f181f262b2d2e332d2b28221c140b08060406060b0f12171c1f24292c2f35393a3d4043444546464543413e3b3936302b272019130c04000000000000000000000000000000000000000000050a0d0f101313100f0d0a05000000000000000000000000000000000000000000000000000814202b36414b53595b6060606060606056554f473d33271c1004000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e615447404040404040404040404040404040404040404040404040403a3935302820160c02000007121e28333c454b5052535353535353534a48443d352b21160b000003101d2936424f5b6771777979797979726d62564a3e3136424f5b6771777979797979726d62564a3e3124180b00000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00000615222e3b4754606a76828f98a29792857e7975737273757a8088939fa1978d8074665c5144382c1f12060000000916222f3c4955626f7c8895a2a396897d7063564a3d30231706000000000714212e3a4754616d7a8794a0a5998c7f7266594c3f3326190c0000000000050e17222d38414a545b606e737e8691969e9691867e756d675f58504840372e261c13100b0400000000000006111b262f3d474f59606b707d869298a2a39b918c7f726d625b514948505a616c717e879299a3a39992877e716c615a50483e30261c110600000714202d3a46525e6976797979797979797976685e5246392d201307000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e01000000000000000000000000000000000000000000000008131e28323d44505b656d7a859199a4aea2989083796d605a50453b30271c120700000000000000000000000000000000000000000000000000000000000000000000000000000c18232f3a454f575c5e60605f53504a4d52545f60606060606060605c5e5f5f5c5853514b433c342a22180c0200000000000000000000000000000000000916222f3c4955626f7c8895a2afac9f928692958f81796f6a6462605b545b6062666d727d87929fa7b0a69d9184786c605346392e23170b00000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000b1824313e4b5764717e8a97a8b2bdc8d4e2edf8efe2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c20110c0600000000000006111c263038424a545b666c77808d929da0a09d928d80776c665b544a423830261c110600000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000030e18212a31373a3b403938332d261d191312101314171c1f23282c2f35393a4145474a4d505152535252504e4b4746413b373229241e160e05000000000000000000000000000000000000030a11161a1c1d20201d1c1a16110a0300000000000000000000000000000000000000000000000b1824303c48535d64676c6c6c6c6c6c6c6360594f44382c201407000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b3434343434343434343434343434343434343434343434342e2d29251e160e04000000010c17212a333b434a4f5053535353534c4a463f372d23190f05000004111d2a3744505d6a778386868686867f7265584c3f323744505d6a778386868686867f7265584c3f3225190c00000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000006131f2b37434e58616e7b869298a097928b8582807f8082858d939aa19892857a6d61544a4034281c10040000000815222e3b4855616e7b8894aaa4978a7d7164574a3e2d22170b000000000815222f3b4855626e7b8895a1a5988b7e7265584b3f3225180c00000000000006111b262f38424a505c636c717c848e939f98928b817a6f6a625a524940382e251c110800000000000000000a141d2b353d474f59606b707d869298a2a39b918c7f726d625b51505a616c717e879299a3a39992877e716c615a50483e362c1e140a00000005121e2a36424d575e6c6c6c6c6c6c6c6c6c6c5e564c41362a1d1105000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000000010c162027333f49535e68707d87939fa6aaa0958d81746c61574d42392e23180e05000000000000000000000000000000000000000000000000000000000000000000000000030f1b2834404c5761686b6c6c6c605c544a46475353534c52565d6065696b6c6b6965605c554e463c342a1e140a00000000000000000000000000000000000916222f3c4955626f7c8895a2afa5988b7f8b93938f837c76716e6c666b666c6e72787f879299a3aea99f948a7e71665b5044382b1c110600000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000815222e3b4855616e7b8896a0acb8c6d0dbe7f0f9e2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f5346392c211d1711090000000000000a151e263038424a545b656c77808d939d9d938d80776c655b544a423830261e150a0000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000009151f2a333c4247484c46443f382f2925201f1d1f2022282b2e34383a4045474c5254575a5d5e5f605f5e5d5b5854524c47433c35302820170e0500000000000000000000000000000000040d151c2226292a2d2d2a2926221c150d04000000000000000000000000000000000000000000010e1a2733404c59646f7479797979797979706b6055483c2f231609000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e272727272727272727272727272727272727272727272721201d19130c0400000000000a16222e39434d555b5d6060606060585651493f34291e1206000004111e2b3744515e6a7784919393938c7f7265594c3f323744515e6a7784919393938c7f7265594c3f3226190c00000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000030f1b27323d46535f69707d8691969e9f97928e8c8c8d8f92989f9f9691867d6f685e5242392e23180c000000000714212e3a4754616d7a8798a2a5988b7f7265544a3f33281c1107010006101823303c4956636f7c8996a2aa978a7d7164574a3e3124170b000000000000000a141d262f383f44525a616a6f7a818b92989f938e847c716c635b524a40372e231a0d0400000000000000020b19232b353d474f59606b707d869298a2a39b918c7f726d625b5a616c707e879299a3a39992877e716c615a50483e362c241a0c02000000020e1a25303b454d525f60606060606060605f524c443a3025190d01000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e01000000000000000000000000000000000000000000000000040d17222d38414c56606b73808d949fa9a79d928a7e71695f544a40342820170b02000000000000000000000000000000000000000000000000000000000000000000000005111e2a3744505c6873787979796d665c504441454c52565e61686d727678797876726d675f584e463c30261c1106000000000000000000000000000000000916222f3c4955626f7c8895a2afa396897d818e96959087827e7b79787778797b7f848c9299a3abaaa2978f82776c60544a3f33281c0a0000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000714212d3a46535f697784919eaab4bfcad6dee8eee2d5c9bcafa296897c6f635649505c6976838f9c9286796c5f534639302d29221b12090000000000030c151e262f38424a535b656c74818e9b9b8e81746c655b534a42382f261e150c030000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00020e1a26313c454d53555953504a423b35302d2b292c2d2d3338393f44464b5153565d606367696b6c6c6c6b6a6865615e56544e46413a322920170d020000000000000000000000000000030d161f272d32353639393635322d271f160d030000000000000000000000000000000000000000010e1b2834414e5b677481868686868686867d7063564a3d3023170a000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1a1413110d08020000000000010e1a27333f4a555f676a6c6c6c6c6c65625b51463a2e221609000005111e2b3844515e6b7784919e9f998c7f7266594c3f333844515e6b7784919e9f998c7f7266594c3f3326190c00000713202d3a4653606d798693a0aca6998d8073665a4d4033271a0d00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000a15202a36424d57606b707c848c9196999c9b9999999b9d9a97928d847d6f6b60564c4130271c1207000000000613202d394653606c7985929fa79b8e8174665b5044382d2218120d0c1117222b37424d5765727f8c98a5a398897c6f6256493c2f23160900000000000000020b141d262d33404850585f686d757e8690959d9691867e736d645c524940352c1f160c0100000000000000071119232b353d474f59606b707d869298a2a39b918c7f726d62616c707e879299a3a39992877e716c615a50483e362c241a1208000000000009141f29333b42464853535353535353535346413a32281e130800000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000000000006111b262f3a444f59606d78829097a2ada49f92857b6e665c51443e32291d140a000000000000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885868686786d60534a4c51565e61686d737a7f82858685837f796f6a5f584e42382e23170b000000000000000000000000000000000916222f3c4955626f7c8895a2afa3968a7d7a84919899938f8b888685848486888c91969fa3aba9a29892857b6e655b5042382d22170b0000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0005121e2a36424d576673808c98a2aebac3ccd7dce3e7d5c9bcafa296897c6f635649505c6976838f9c9286796c5f53463e3d39342d241b110600000000060f19232b353d464e58606a6f7c8592989891857c6f6a60584e463d352b23190f060000000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0006121e2b37424d575f6166605b544d46413b393835393a3c3f44464a5053555d6064686d70737677787979787674716e68626058524c443a32291e130800000000000000000000000000000a151f2831383e4243464643423e3831281f150a0000000000000000000000000000000000000000010e1b2734414e5a6774818d93939393938a7d7064574a3d3124170a000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e21140d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d070705010000000000000003101d2936424f5b6771777979797979726d62564a3e3124180b000005121e2b3845515e6b7884919ea6998c807366594d40333845515e6b7884919ea6998c807366594d4033261a0d00000713202d3a4653606d798693a0aca69a8d8073675a4d4034271a0700000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b000000040e1a26313b454f59606a6f797f848a8d8f9192929291908d8a8580796f6b60594f443a301e150b000000000006121f2b3844505b667683909ca99e9285786c60544a3f3329241d19181b2227343c46535f6976838f9ca99f9286796d6053463a2d2013070000000000000000020b141c2228363e464e565d606c717b838d929f98928b80736e645b51473d31281e13080000000000000000071119232b353d474f59606b707d869298a2a39b918c7f726d6c707e879299a3a39992877e716c615a50483e362c241a1208000000000000020d17212930363a3b4646464646464646463936302820160c0200000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000000000a141d29323d44505c666e7b85929ea4ada2979083786d60594f443b2f261c11060000000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d6976839098897c6f635a56555d60686d737a80858b8f9192928f8b847c6f6a5f544a3f34281c10030000000000000000000000000000000916222f3c4955626f7c8895a2afa4978a7d717d8692989f9c9799929291919298989ea0a8aba69f9792867d70695f53493f2f261c11060000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00020e1a26313b4754616e7a86929fa7b1bac2cbd1d6dcd5c9bcafa296897c6f635653535c6976838f9c9286796c5f53534b49453e362d22170c000000030e18212b353d474f58606a6f7c8592918c8c9191857c6f6a60584f473d352b21180e0300000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000814212d3a47535f696e736c665f57524c484644404547494a5053545c6063676d71757a7d8083848586858583817e7a756f6a615d564c443a3025190d0100000000000000000000000005111c27313a434a4e505353504e4a433a31271c110500000000000000000000000000000000000000010e1a2734414d5a6774808d9a9f9f9f978a7d7164574a3e3124170b000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e2114080101010101010101010101010101010101010101000000000000000000000004111d2a3744505d6a778386868686867f7265584c3f3225190c000005121f2b3845525e6b7885919ea6998d8073665a4d40333845525e6b7885919ea6998d8073665a4d4033271a0d00000713202d3a4653606d798693a0aca79a8e8174675b4e412e23180c00000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b0000000009141f29333d474f5860676d72787d8082848586858483807e79736d6760594f473d32281e0c030000000000030f1c28333f4a546673808d99a7a1978a7d70665b50443e352f292423282d333d464f59616e7b86929faa9c908376665c5145382c1f13060000000000000001070d111317242d343c444c525a62696e78808b92999f928c80736d63594f433a2f24190d010000000000000000071119232b353d474f59606b707d869298a2a39b918c7f72707e879299a3a39992877e716c615a50483e362c241a12080000000000000000050f171f252a2d2e39393939393939392e2d2a251e160e050000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000000000000020b172028343f4a545e69707d8a929da7a99f958d80736b61564d42382d22170e05000000000000000000000000000000000000000000000000000000000000000000010e1b2834414e5b6774818e9a8e81756c656364676d737a80868d92989c9e9f9e9c9691857c6f665c5044382b1f13080000000000000000000000000000000916222f3c4955626f7c8895a2afa4978a7e71707d8690959da0a39f9e9e9e9fa3aaa9a8a69f9c948f857d706b60574d41382d1d140a000000000000000000000000000613202c3946535f6c7986929f9f9f9a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000914202d3946525e6873808c95a0a8b1bbc0c7cbd0d0c9bcafa296897c6f63606060606976838f9c9286796c606060585650483e34291d110500000915202a333d474f59606a6f7c8592918c7f7f8c9192857c6f6a60594f473d332a20150900000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000815222e3b4855616e7b7f786e69615e565453504b515356545b6063666d70757a7e82868a8d909192939291908e8b86827c746d685e564c41362a1e11050000000000000000000000000a16222d38434c545a5d60605d5a544c43382d22160a00000000000000000000000000000000000000000d1a2633404d596673808c99a6aca4978b7e7164584b3e3125180b000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000004111e2b3744515e6a7784919393938c7f7265594c3f3226190c000005121f2c3845525f6b7885929ea69a8d8073675a4d40343845525f6b7885929ea69a8d8073675a4d4034271a0d01000713202d3a4653606d798693a0aca89b8f827568544b4034281c1004000916232f3c4956626f7c8995a2afa4988b7e7165584b3e3225180b00000000030d17212b353d464e555c60666d70737677787978787674716d67605d554f473d352b20160c000000000000000b17222d3c4956636f7c8995a0a99d9083786c605a50454039352f2e34383f444e58616b75818e99a3a3988c7f7265544b4034281c1004000000000000040c13181d202021222a323a414550575f666d747e8792989c928c7f726b61564c4135291d1307000000000000000000071119232b353d474f59606b707d869298a2a39b918b7f7d879299a3a39992877e716c615a50483e362c241a120800000000000000000000050d141a1e20212d2d2d2d2d2d2d2d21201d19130c05000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e01000000000000000000000000000000000000000000000000000000050e17232e38424d57616c74808d95a0aaa79f93887d70695e544a3f332820160b020000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98938b7f75717071747a80858d92989fa2aaa4a3a5a8a1979083786d6053463a2f24190d0100000000000000000000000000000916222f3c4955626f7c8895a2afa4978a7e716b707c838b9195989b9d9e9f9f9f9e9d9b9894908a827b706b60594f453b2f261b0b02000000000000000000000000000613202c3946535f6c798692939393938d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000005111e2a36414c56606d798390969fa7afb5babfc2c3c4bcafa296897c6f6c6c6c6c6c6c76838f9c9286796c6c6c6c64625a5045392d21150800020f1a26313c464f59606b6f7c8592918b7f72727f8b9192857c6f6b60594f463c31261a0f02000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000815222f3b4855626e7b88827b736d686461605b555d606265666c7074797d81858a8f92999a9c9e9f9f9f9e9d9b99928f87817a6d685e5246392d2013070000000000000000000000010d1a26323e4a545e66696c6c69665e544a3e32261a0d01000000000000000000000000000000000000000c1925323f4c5865727f8b98a5b2a5988b7f7265584c3f3225190c000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000005111e2b3844515e6b7784919e9f998c7f7266594c3f3326190c000006131f2c3946525f6c7985929fa79a8d8074675a4d41343946525f6c7985929fa79a8d8074675a4d4134271a0e01000713202d3a4653606d798693a0aca99d908376665c5145382c1f130700091623303c4956636f7c8996a2afa4988b7e7165584b3e3225180b0000000000060f19232b343d434b51545c606366696b6c6c6c6b6a6764605d55514b433d342b23190e04000000000000000615222f3b4854606b7784919da8a0958c7f726c615a514b4541403f4045495058606a707d8a939eaa9f92867a6d6154473a2e23180c000000000000040d161d24292c2d2e2f30302f353e454d545c606c717d8692999f93887d70685d52453a2f24180d01000000000000000000071119232b353d474f59606b707d869298a2a39b918b869299a3a39992877e716c615a50483e362c241a120800000000000000000000000002090e12141520202020202020201413110d080200000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000000000000000006111c26303b45505a606d79839098a2aea49a92857b6e665b50443d32281d140a0000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b88959b918b827e7d7e81858c92989fa2a29f9a9796989c9f9f958a7d7164554c4135291d110400000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e71646a6e787e84888c8e909192929291908e8b88837d766e6960594f473d33291d140a00000000000000000000000000000613202c3946535f6c79878686868686868074675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000020e1925303b45515c666e7b8490959fa3abaeb4b6b7b8b9afa296897d7979797979797979828f9c92867979797979716c6256493d3024170a0006121f2b37434e58606b707d8692918b7f726d6d727f8b9192867d706b60584e43372b1f1206000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000815222f3b4855626e7b888f86807a75716e6c666b676d6f7175797c81858a8e92989c9fa3aba39f9e9d9d9d9fa3a39f9a938e847a6d6154473a2e2114070000000000000000000000030f1c2935424e5a66707679797670665a4e4235291c0f03000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a6998c807366594d4033261a0d000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000005121e2b3845515e6b7884919ea6998c807366594d4033261a0d00000613202c3946535f6c7986929fa79a8d8174675a4e41343946535f6c7986929fa79a8d8174675a4e4134271b0e01000713202d3a4653606d798693a0acac9f9286796d6053463a2e23180d060a1723303d4a5663707d8996a3b0a4978b7e7164584b3e3125180b000000000000081119222b303940454a5053575a5c5e5f5f5f5e5d5a5753514b45413a312b22191107000000000000000007131f2c38434f5965727f8b96a1a79f93887e716c605d55524c4c4c4b51535b606a6f7c86929fa5a3988e8174685e5246392d1d12070000000000010c161f282f35393a3b3c3c3d3d3c383b424a515a626b707e87939f9a92857a6d60554b4135291d110400000000000000000000071119232b353d474f59606b707d869298a2a39b999299a3a39992877e716c615a50483e362c241a120800000000000000000000000000000002050708131313131313131307070501000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000000000000000040404000a141e29333e45515c676e7b86929fa5aca1978f82786c60594f443a2f261b110600000000000000000000000000000000000000000000000000000000000000000814212e3a47535f6a7784919d9b948f8b898a8d92989fa2a29f98928d8a898b90949c9c8f8276675d5145392c20130600000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e71645f666d71777b7f8183858586858583817e7b76706b615e574f473d352b21180b02000000000000000000000000000006121f2c3845525e6a7579797979797979746e64584c3f33261a0d000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000008141e2834404b545e696e7b838d92999fa3aaa9aaabacaea5998f8986868686868686868f949f988986868686867e7164584b3e3125180b000814212e3a47535f6a707d8692918b7f726d62626d727f8b9192867d706a5f53473a2e211408000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000815222f3b4855626e7b8898928d86827e7b797877787a7c7e8285898d92979b9fa2a7a09d9999929190909192999a9ea19f96887b6e6255483b2f221508000000000000000000000003101d2a3643505d69768286868276695d5043362a1d1003000000000000000000000000000000000000000916232f3c4956626f7c8995aab4a79a8e8174675b4e4134281b09000000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000005121f2b3845525e6b7885919ea6998d8073665a4d4033271a0d000006121f2c3844515c667986939fa79b8e8174685b4e41353844515c667986939fa79b8e8174685b4e4135281b0e02000713202d3a4653606d798693a0acaea398897c6f62544b4034281f1612101824313e4b5764717e8a97a4b1a4978a7e7164574b3e3124180b000000000000000810191e272e34383f44464a4d505152535251504d4a47454039352f281f191007000000000000000000030c1b27323d4753606d7984919eaca49a92867e736d67605d565959545c60656c717c859198a2ac9f92867b6e61564c4135291d0c03000000000007131d28313a4045474848494a4a48443d3940445059616c73808c96a0978d8073675d5145392c2013060000000000000000000000071119232b353d474f59606b707d869298a2aba39fa3a39992877e716c615a50483e362c241a12080000000000000000000000000000000000000000060606060606060600000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e010000000000000000000000000000000000000000000306080911111111110c17212834404b555f69717e8a939da8a99f948c7f736b60564c41382d22170d040000000000000000000000000000000000000000000000000000000000000006121e2b37424e5765727e8b95a09e9c9896979a9fa2a39f98928c85817e7d7e838c929f92867a6d6054473a2d21140700000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164545c60646a6e72757778787979787675726e69636159534d453d352b23190f0600000000000000000000000000000004111d2a36424e59636a6c6c6c6c6c6c6c67645c52473c3024170b000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000020c18232e39424d575e696e7880878d9298999c9d9e9fa39fa1999693939393939393939c9fa6a393939393938b7e7164584b3e3125180b000815222f3b4855626e7b8592938b7f726d625b5b626d727f8b9192857b6e6255483b2f221508000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000815222f3b4855626e7b88959f98928e8b878685848586898b8e92979a9ea1a8a09e9995908c89868483838486898d92979e95887b6e6255483b2f221508000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000814212e3b4754616e7a8798a2aea89b8f8275685c4f4230251a0e020000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000005121f2c3845525f6b7885929ea69a8d8073675a4d4034271a0d01000713202d3a4653606d79869aa4a89b8e8175685b4e42353a4653606d79869aa4a89b8e8175685b4e4235281b0f02000713202d3a4653606d798693a0acb4aa998d8073665c51453b3128201f1c1e26323f4c5965727f8c98a5b0a3968a7d7063574a3d3024170a0000000000000000070c151d23282e34383a3d4043444546454543413e3a38352f29241d160d07000000000000000000000b151e2b353d45515c67717d8a9aa4aca298928a8079716d6867666567666d70787e869197a1aaa6998c8073695e53493f372d1e150b00000000010d18242f3a434b51535455565756554f473d343f47505a606d7884919e9f92857a6d6054473a2d211407000000000000000000000000071119232b353d474f59606b707d86929facafacac9f92877e716c615a50483e362c241a1208000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e0100000000000000000000000000000000000000030a0f1215151e1e1e1e1e1e1e18232e39434d57616c74818e96a0aaa69f93877d70685e53493f33271f160c01000000000000000000000000000000000000000000000000000000000000020e1a26313c4653606c78839097a1a8a4a3a4aaa29f98928d86807a74717072767f8c94998a7d7063574a3d3024170a00000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164585053585f6265686a6b6c6c6c6b6a6865615f57554f46423b332b2319110700000000000000000000000000000000010e1a26313d4751595e5f6060606060605a58524a41362b1f1408000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000007121d27303b454d575e666d747b8186898d8f909192999393939393939393939393939393939393939393938b7e7164584b3e3125180b000814212e3a47535f6a74808d887f726d625b51515b626d727f8b8d80746a5f53473a2e211408000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000815222f3b4855626e7b88949fa29f9b979992919192939a989b9ea1a9a29e9a96918c8883807d7a78767677797c80858b9297887b6e6255483b2f221508000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000613202d394653606c7985929facaa9d9083776a574d42362a1e11050000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000006131f2c3946525f6c7985929fa79a8d8074675a4d4134271a0e01000714202d3a4753606d7a8693a0a89b8e8275685b4f42353a4753606d7a8693a0a89b8e8275685b4f4235281c0f02000713202d3a4653606d798693a0acb8ab9e9285796d60574d433a322d2c282a2d36424d576774818e9aa7b3a995897c6f6256493c2f231609000000000000000000030b12181c23282b2d30333638393939383734312d2c29241d18130c040000000000000000000007121c27303d474f59606b707d87939facaaa29f928d847e7a767473727375797d838b9298a1a9b3a5998c7f726d625b51493f30271d120700000004111d2935404b555d60616263636360594f4438353e44505c66727f8b98a2988a7e7164574b3e3124180b00000000000000000000000000071119232b353d474f59606b727f8c98a5b2b3a79a8d80746c615a50483e362d241b120900000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e01000000000000000000000000000000000000060e151a1f21222b2b2b2b2b2b2b2b2b27303c45505a606d79849198a3aea49991847a6d655b50443d31281e13080000000000000000000000000000000000000000000000000000000000000009151f2b3844505b666f7c8591969c9f9f9e9c98928d86807a736d686463656d76828f998d8073665a4d4033271a0d00000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b464e5355595b5d5e5f5f5f5e5d5b5855534d48443e363129211911070000000000000000000000000000000000000915202b353f474e52535353535353534e4c4741382f241a0e03000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000000b151e29333b454d545c60696e747a7d808384858686868686868686868686868686868686868686868686867e7164584b3e3125180b0006121f2b37434e58646e74817e726d625b514949515b626d727f80746e64584e43372b1f1206000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000714212d3a4754606d79828b92989ea1a8a39f9e9e9f9fa4aca9a19e9a97928e89847f7b7773706d676a6a666d6f73797f858f887b6e6255483b2f221508000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000005121f2b3744505b657783909daaac9f928579695e52463a2d2014070000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929fa79a8d8174675a4e4134271b0e01000714212d3a4754606d7a8793a0a89b8f8275685c4f42353a4754606d7a8793a0a89b8f8275685c4f4235291c0f02000713202d3a4653606d798693a0acb9ada1978b7e71695e554c443e3a3834363a3d46535e697784909daaada297877a6e6154473b2e2114080000000000000000000000070c11171c1f202427292b2c2c2c2b2a2724201f1d18120d070100000000000000000000000c18232e39424f59606b707d86929aa4aba9aca49c96918b8682807f7f8082858a90959fa3aaaaaca79c918b7f726d625b5142392e23180c0000000613202c3945515d676d6e6f6f70706b6055483d32343f4a54616e7b8899a49a8d8174675a4e4134271b0e010000000000000000000000071119232b353d474f59606b707d86929facacacac9f92877e716c615a50483e362d241b1209000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e01000000000000000000000000000000000006101820262b2e2f3737373737373737373737333e45515d676f7c86929fa5aba1968f82776c60584e433a2f24190d06000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545f6a6f7c848c909292918f8b86807b746e68605d56565b64707d8a998f8275685c4f4235291c0f02000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e4347484c4e505252535252504e4b4846423b38332a251f170f0700000000000000000000000000000000000000040f19242d353d424546464646464646413f3c362f261d130800000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000000030c172129333b424a51575e61676d7073767778797979797979797979797979797979797979797979797979716c6256493d3024170a00020f1a26313c46525c646e74726d625b51493f3f49515b626d72746e645c52463c31261a0f02000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000613202c3945515d676d767e858c9196989b9d9e9f9f9e9d9a9897928e8a85817c77736e696663605d55545c6063676d727a81887b6e6255483b2f221508000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000030f1b27333f49536874818e9ba7aea298877b6e6154473b2e2114080000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e2114080000000000000000000000000000000000000000000000000000000000000006121f2c3844515c667986939fa79b8e8174685b4e4135281b0e02000814212e3b4754616e7a8794a1a89c8f8275695c4f42363b4754616e7a8794a1a89c8f8275695c4f4236291c0f03000713202d3a4653606d798693a0acb1a7a09d92857b6e675d56504846443f4246474f58616e7b8795a0acab9f928578685e5246392d20140700000000000000000000000000060b101213171a1d1e1f201f1e1d1a171413100c070100000000000000000000000004101c2834404a54606b707d869298a3a69f9c9fa4a8a19e99928f8d8c8c8d8f92989da0a7a7a09da0a7a39b918b7f726d62544b4034281c100400000714202d3a4753606d797b7b7c7d7d7063584e4338313a4653606d7986939f9c8f8276695c4f4336291c100300000000000000000000071119232b353d474f59606b707d869298a2a39f9fa3a39992877e716c615a50483e362d241b12090000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929faca79b8e8174685b4e4135281b0e0200000000000000000000000000000000030e18222a31373a3c44444444444444444444444444404b555f6a727f8b939ea8a89e948c7f726a60554c41352922180c010000000000000000000000000000000000000000000000000000000000000b17222d38424e585f6a6f797f83858684827f7a736e69615e56524c4a54606d7987868683776a5e5144372b1e1104000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e373a3b3f4244454546464543423f3b3a36312c28211a140d050000000000000000000000000000000000000000000a16202b343d4347494949494949494846423b33291f140900000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000050f172029303940444d53555d606366696a6b6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64625a5045392d21150800000915202a33414a525c646765625b51493f37373f49515b626567645c524a41332a20150900000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0004111d2935414b555d606d717a7f84898c8f9091929291908e8b8885817d79746f6b66615f575653514b4b5153555c60686d757f7b6e6155483b2e221508000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000b17222d3f4c5865727f8b98aab4aa96897c706356493d302316080000000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79869aa4a89b8e8175685b4e4235281b0f02000815212e3b4854616e7b8794a1a99c8f8376695c5043363b4854616e7b8794a1a99c8f8376695c504336291d1003000713202d3a4653606d798693a0acaca09590959082796d68615a5553504a4d525459606a74808d9aa7b1a99c8f827669564d41362a1e11050000000000000000000000000000000306070a0d101112131212100e0b07060400000000000000000000000000000006121f2c3844515c66707d869298a3a39c948f939aa0a7aba39f9c9a99989a9b9fa2aaa8a19e9590959ba3a39b918b7f72665c5145382c1f13060003101c2936434f5c6976828788898a85786a605448423f404653606d798699a49c8f8376695c504336291d1003000000000000000000071119232b353d474f59606b707d869298a2a399929299a3a39992877e716c615a50483e362d241b120900000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929faca89b8e8275685b4f4235281c0900000000000000000000000000000000000a15202a343c4347485151515151515151515151515151514e58626d75818f96a1aba69f92877c6f675d51453f34291d110500000000000000000000000000000000000000000000000000000000000006111c262f3c464e585f676d727678797876726d68615e56524c454145515d67757979797771675b4f43362a1d1004000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e312e2f32353738393939383735322e2d2a261f1c170e0903000000000000000000000000000000000000000000030f1b27323d464e545656565656565654534d453b31251a0e02000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000000000050e171e272e343b42464b5153565a5c5d5e5f6060606060606060606060606060606060606060606060585650483e34291d11050000030e18212f38414a52585a585651493f372d2d373f495156585a58524a41382f21180e0300000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00010d18242f3a434b515a62686d72797c7f82848586858583817f7c7974706d6663605955534d494745404045464b51565e616d726e695f53473a2d211408000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000616232f3c4956626f7c8998a3aea5988c7f7265594c3f3025190d0100000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0a89b8e8275685b4f4235281c0f02000815222e3b4855616e7b8894a1a99c908376695d5043363b4855616e7b8894a1a99c908376695d5043362a1d1003000713202d3a4653606d798693a0acaa9d9084909490827a716c6562605c54565e61646b707c87929facb0a6998c7f7266594c3f3025190e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d79849197a1a49c918c838790959c9fa4aca9a7a6a5a6a8a8a7a09d96918a848c919ba3a0959084796d6053463a2d20130700000d1a2733404d5a6673808d959697897c6f625b534d4c4d4f58626f7c8895ab9b8e8275685b4f4235281c0f020000000000000000071119232b353d474f59606b707d869298a2a3999286869299a3a39992877e716c615a50483f362d241b1209000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929faca89c8f8275695c4f4230251a0e02000000000000000000000000000000030f1a26313c464e53555e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5b606d7a849199a3aea39991847a6d605a50453a2e211509000000000000000000000000000000000000000000000000000000000000000a141d2a343c464e555d6065696c6c6b6965615e56524d46413b35414b555d6b6c6c6c6a675f564b3f33271b0e02000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e31252226282a2b2c2c2c2b2a282522211e1a14100b05000000000000000000000000000000000000000000000006131f2b37434e586062626262626262615e574d42362a1e1205000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000000000000050c151c232831363a4045474a4d5051525353535353535353535353535353535353535353535353534b49453e362d22170c00000000060f1d262f3841474c4e4b4a453f372d25252d373f464a4b4e4c4741382f261d0f060000000c1925323f4c5865727f8b989f9f998d8073665a4d4033271a0d000007131d28313a414550565d60666d6f727577787979787674726f6c6663605c54544f4846423d3a393534383a40454c525b6265615f574d42372b1e1206000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000713202d3a4653606d7986929faca89b8e817568564c41362a1e110500000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0a89b8f8275685c4f4235291c0f02000815222f3b4855626e7b8895a1a99d9083766a5d5043373b4855626e7b8895a1a99d9083766a5d5043372a1d1004000713202d3a4653606d798693a0aca396897d85929490847d76726e6d666b6b696e71757d859299a3afab9f94887b6e6155483b2e2215080000000000000002060a0c0d1313131313131313131313131313131313131313131312110f0c0701000000000000000006121f2c3844515c666e7c8591979c928c7f767c838a8f939a9a9d9e9f9f9e9d9b9895908b847e777f8c919b9691837a6e665c5145382c1f130600000916232f3c4956626f7c89959f9c8f82756d615e57595959616a73808d99a8998d8073665a4d4033271a0d0000000000000000071119232b353d474f59606b707d869298a2a39992877d7d879299a3a39992877e716c625a50483f362d241b12090000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaa9d9083776a574d42362a1e120500000000000000000000000000000006121f2b37434e585f626a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a686f7c87929facaba0968e81756c62564a3d3124170b00000000000000000000000000000000000000000000000000000000000000020b18222a343c434b5154595d5f5f5e5c5854524c46423b36302f3a434b515e6060605e5b564d44392e22170b00000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e312518191b1d1f1f201f1f1d1b181514120e0903000000000000000000000000000000000000000000000000000815222e3b4754606a6f6f6f6f6f6f6f6e695e53463a2d211407000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000030b12181f252a2f35393a3d404344454646464646464646464646464646464646464646464646463e3d39342d241b110600000000000b141d262f363c40413f3d3a342d251b1b252d343a3d3f413f3c362f261d140b000000000c1925323f4c5865727f8b939393938d8073665a4d4033271a0d0000010c161f282f353f444c52545c606265686a6b6c6c6b6a676562605b5453514a48433d3a36312d2c29282c2f343a414651575955534d453c31261a0e02000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000006121f2c3844515c667683909ca9aa9e918477685e5246392d20130700000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1a89c8f8275695c4f4236291c0f03000915222f3c4855626f7b8895a2aa9d9083776a5d5044373c4855626f7b8895a2aa9d9083776a5d5044372a1d1104000714202d3a4753606d7a8693a0ada194887b7e8b9296918a837f7b79787778797a7d82889297a1abafa4998f8276695f53473a2d211408000000000000070d12161919202020202020202020202020202020202020202020201f1e1b18130c050000000000000004101c2834404a545f6a6e7c8591928c7f736d6f787d82878b8e9091929291908e8b88837e79716d727f8c9191847a6e685e544b4034281c100400000815222e3b4754606a7783909a9e948c7f756e69676666676b707c86929fa096897c6f6356493c3023160900000000000000071119232b353d474f59606b707d869298a2a39992877e70717e879299a3a39993877e716c625a50483f362d241b120900000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facac9f928579695e52463a2d2014060000000000000000000000000000000815212e3a47535f6a6f777777777777777777777777777777777777777777777f8c99a5b2a89e938b7e7165584b3e3225180b0000000000000000000000000000000000000000000000000000000000000000061018222a313a4145474c50525352504c4746413a36302a2528313a414547535353514f4b443b32281d110600000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180c0f111212131312100f0c080705020000000000000000000000000000000000000000000000000000000916232f3c4956626f7c7c7c7c7c7c7c7b6e6154483b2e211508000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d0000000000000000000000070c141a1d24292c2d303336373839393939393939393939393939393939393939393939393931302d29221b1209000000000000020b141d242b30333432312e29231b12131b23292e31323433302b241d140b02000000000c1925323f4c5865727f8686868686868073665a4d4033271a0d000000040d161d2429323a41454a505356595c5d5e5f5f5e5d5b585553504a4644403938322d2a2620201d1c1f232930363f464a4c4847423c332a1f150900000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000004101c2834404a5466737f8c99a9aca096877a6d6154473a2e21140a00000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1a99c8f8376695c504336291d1003000916232f3c4956626f7c8995a2aa9d9084776a5d5144373c4956626f7c8995a2aa9d9084776a5d5144372a1e1104000714212d3a4754606d7a8793a0ada194877b74818e949e95908c888685848585878a8f939aa1a9afa59f93877c6f62574d42372b1e120600000000010a12191e2325262d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b2b28241e170f06000000000000000c18232e39424e575f6a6e7c858c80736d63666d70767b7e81838485858584817f7c77726d67626d727f8b847b6e685e564c42392e23180c00000006131f2b38434e5863707d88939f9c918c817b7673727374777d859298a29e9184786d6053463a2d201307000000000000071119232b353d474f59606b707d869298a2a39992877e706c6c717e879299a3a49993877e716c625a50483f362d241b1209000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929facaea298877b6e6154483b2d22170b0607080808060200000000000000000915222f3c4855626f7c8484848484848484848484848484848484848484848484919daab7afa59f9285786c5f5245392c1f120600000000000000000000000000000000000000000000000000000000000000000610181f282f35393a3f43454645433f3a3936302a251f191f282f35393a46464644433f39322920160b0000000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b020405060606050402000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c79878989898989898074675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000000000000000000003090e13181d20202327292a2b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2524211d1711090000000000000000020b131a1f2426272524221d1811090911181d2224252726241f1a130b0200000000000b1825313e4a56626d72797979797979736e63584b3f3226190c00000000040c131820282f35383f4446494c4f5152535252504e4c4946443f3a38342e2c27211e1a1413101013181e252a353a3e3f3b3a37312a21180e0300000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000c18232e3c4956626f7c8997a2ada8978a7e7164574a3e31261b0f03000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8894a1a99c908376695d5043362a1d100300091623303c4956636f7c8996a2aa9e9184776b5e5144383c4956636f7c8996a2aa9e9184776b5e5144382b1e1105000714212e3a4754616d7a8794a0b4ab94877a6d78828f939f9d989a939291919298979b9fa4acaba39f938d80736a6054453c31261a0e02000000000a131c232a2f3233393939393939393939393939393939393939393939393837342f2921180f0500000000000007121c27303c454e575f6a6e7c7f736e635b5c6064696e717477787979787775726f6a65605d5b626d727e7b6e695e564d443b30271d1207000000030f1b27323d4854606b73808d939f9c938e8783807f8081848a9297a19f928a7d70665c5044382b1f12060000000000071119232b353d474f59606b707d869298a2a39992877e716c61616c717e879299a3a49993877e716c625a50483f362d241b12090000000000000000000000000000060606060606060600000000000000000000000613202c3946535f6c7986929facb4aa978a7d7064544a3f33281c131313151514120f0a030000000000000916222f3c4955626f7c889191919191919191919191919191919191919191919196a0acb8b8ac9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000060d161d24292c2d323639393836322e2d2a251e19140d161d24292c2d3939393736332e2820170e040000000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c798692959595958d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d000000000000000000000000000001070d111314171a1d1e1f202020202020202020202020202020202020202020202020181715110c060000000000000000000001080e14171a1b181815120c060000060c121518181b1a17140e08010000000000000916222e3a46515b62656c6c6c6c6c6c66635c52473b2f23170a000000000001070d161e24292e34383a3c3f42444546464543413f3c3938332d2c28231c1b16120e09060404070c131923292e31322e2d2b261f180f060000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000713202d3a4653606d7985929eaba79b8e817468584e43372b1f1206000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b8895a1a99d9083766a5d5043372a1d1004000a1623303d495663707c8996a3ab9e9184786b5e5145383d495663707c8996a3ab9e9184786b5e5145382b1e1205000814212e3b4754616e7a87949f9fa39986796d6d79818c92989fa29f9e9e9e9fa2aaa8a9aaa29f99928b81786d60584e43332a1f15090000000007121c252e353b3e40464646464646464646464646464646464646464646464544403a332b21170c010000000000000b151e2a333c454e575f6a6e726d635c525053575e6164676a6b6c6c6b6a6865625f585351515b626c716e695e574d443b32291e150b00000000000a16202c38444f59606c77808c92989f9992908d8c8c8e91969e9f99928c80736b61544a3f34281c100300000000040f19232b353d474f59606b707d869298a2a49992877e716c615a5a616c717e879299a3a49993877e716c625a50483f362d241b110600000000000000000002050708131313131313131307070501000000000000000613202c3946535f6c7986929facb4a79a8e8174665b5044382d22201f202222211f1a150e0600000000000916222f3c4955626f7c88959d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9da0a8b2acacac9f9285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000040c13181d2021262a2c2c2b292521201d19130e09040c13181d20212d2d2d2b2a27221d160e05000000000000000000000000000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929fa2a29a8d8174675a4e4134271b0e000c1925323f4c5865727f8b98a5a6998d8073665a4d4033271a0d00000000000000000000000000000000010406070a0d1011121313131313131313131313131313131313131313131313130b0a0805000000000000000000000000000003080b0d0e0c0b090501000000000106090b0c0e0d0b0803000000000000000006121e29343f495156586060606060605a58524a40362a1f130700000000000000040c13191c23282b2d2f323537383939383734322f2d2b28221f1c18120f0a0502000000000002080d181e22252622211e1a150e06000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000006121f2b3844505c6674818e9baaab9e9184786a5f53473a2e21150a000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b8895a2aa9d9083776a5d5044372a1d1104000a1723303d4a5663707d8996a3ab9e9185786b5e5245383d4a5663707d8996a3ab9e9185786b5e5245382b1f1205000815222e3b4855616e7b889393939392867966676d787f868d92989a9c9e9e9f9f9e9d9c9998928d877f746d665c50463d3221180e03000000020d19232e3740464b4c5353535353535353535353535353535353535353535352504c453d33291e1307000000000000030c18212a333c454e575f6266635b524944464d5354585b5d5e5f5f5e5d5b5855534e474549515a6265615e574d453b322920170c03000000000004101c27323d44505b656c777f868e92999b9c9a99999a9d9b99938f867f736e63594f42382e23170b00000000000b16212b353d474f59606b707d869298a2a49993877e716c615a50505a616c717e879299a3a49993887e716c625a51483f372d23180c0100000000000002090e12141520202020202020201413110d080200000000000613202c3946535f6c7986929facb8ab9e9185786c60544a3f332d2c2c2d2f2f2e2b2620180f06000000000916222f3c4955626f7c88959f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9285796c5f5246392c1f1306000000000000000000000000000000000000000000000000000000000000000000000001070d111314191d1f201f1d191413110d0802000001070d1113142020201e1d1b17110b0400000000000000000000000000000000000916222f3c4955626f7c8895a2aca4978b7e7164584b3e3125180b000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929faca79a8d8174675a4e4134271b0e000c1925323f4c5865727f8b989f9f998d8073665a4d4033271a0d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18232d373f464a4c5353535353534d4b4740382e24190e02000000000000000001080d11171c1f202326292a2b2c2c2b2a282522201f1c1712100c070000000000000000000000070d121618191514120e090300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000003101c28343f4a5464707d8a98a2ada196887b6f6255483c31261a0f000000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2aa9d9084776a5d5144372a1e1104000a1724303d4a5763707d8a96a3ab9e9285786b5f5245383d4a5763707d8a96a3ab9e9285786b5f5245382c1f0600000916232f3c4956626f7c86868686868685786b5c666c727b80858a8d8f9192929291908f8c8a86807b726d605c544a3f342b200f060000000006121e2a354049515759606060606060606060606060606060606060606060605e5c574f453a2f24180c00000000000000060f18212a333c454e53555957514940383b4246484b4e5051525252514f4c4847433c393f4850565854534d453b332920170e05000000000000000b162127333f49535b656c727b81868b8e9091929291908e8b87827c726d635c52473e30261c11060000000003101b27323d474f59606b707d869298a2a49a93877e716c615a504848505a616c717e879299a4a49a93887e716c625b51493f34291d11050000000000050d141a1e20212d2d2d2d2d2d2d2d21201d19130c05000000000613202c3946535f6c7986929facb4aba1978a7e71665b50443f3a39383a3b3b3a37312a22180e030000000916222f3c4955626f7c8893939393939393939393939393939393939393939393939393939393939285796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000010406070c10121312100c070705010000000000000104060713131311100e0b06000000000000000000000000000000000000000916222f3c4955626f7c88959f9f9f978b7e7164584b3e3125180b000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c7986929f9f9f9a8d8174675a4e4134271b0e000c1925323f4c5865727f8b939393938d8073665a4d4033271a0d00000000000000000000000000000000000000000000000000000000000000000000040613131313131313131312110e09040000000000000000000000000000000000040613131313131313131312110e0904000000000000000000000000000000000007111b252d343a3e3f464646464646403f3b362e261c1208000000000000000000000000060b10121316191c1e1f201f1f1d1b191613120f0b060400000000000000000000000000000106090b0c08080602000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000000000b17232e3a4753606d7985929faca8998c7f7366584e43372b1c11060000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e21140800000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8996a2aa9e9184776b5e5144382b1e1105000a1724313d4a5764707d8a97a3ab9f9285786c5f52452e3d4a5764707d8a97a3ab9f9285786c5f52452e23170b00000815222e3b4754606a6f797979797979787368545b60696e74797d808284858685858482807d7a746e69625b504a42382e22190f00000000000a16232f3b46515b63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6861574c4034281b0f0000000000000000060f18212a333c4247484c4b463f372b31363a3b3e41444546464544423f3c3a37312c363f454a4b4846423b332920170e050000000000000000050b17222d384149535b606a6e757a7e81838585868584817f7b756f6a635b524940352c1e140a00000000000713202c38444f59606b707d869298a2a49a93887e716c615a50483e3e48505a616c717e879399a4a49a93887f726d625b51453a2e22150900000000050f171f252a2d2e39393939393939392e2d2a251e160e050000000613202c3946535f6c7986929facaea399929183786c6059504947454546484847433c342a20150a0000000916222f3c4955626f7c8686868686868686868686868686868686868686868686868686868686868686796c5f5246392c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8893939393938b7e7164584b3e3125180b000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c798692939393938d8174675a4e4134271b0e000c1925323f4c5865727f8686868686868073665a4d4033271a0d0000000000000000000000000000000000000000000000000000000000000001070c10132020202020202020201f1d1a150f080000000000000000000000000001070c10132020202020202020201f1d1a150f08000000000000000000000000000000000009131b23292e313239393939393933322f2a241c140a000000000000000000000000000000030607090c0f1112131312100e0c090606030000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000006131f2c3845515d6774818e9ba8aa9d9184776a5f5347382e23170b0000000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3ab9e9184786b5e5145382b1e1205000b1824313e4b5764717e8a97a4ac9f9285796c5f4a3f343e4b5764717e8a97a4ac9f9285796c5f4a3f34281c10030006131f2b37434e5860626c6c6c6c6c6c6b68615750575e61676d7073767778797978777673706d67615e5751443f3830261c100700000000000c1925323e4b57636d73797979797979797979797979797979797979797979797873685c5044372b1e11000000000000000000060f18212a31373a3b3f3e3a352e25252a2d2e313437383939383735322f2e2b26242d343a3d3e3b3a36312921170e050000000000000000000006111b262f38414950575f62686e717477787979787775726e69625f58514940372e231a0c0200000000000916222f3b4854606b707d869298a2a49a93887e716c625a50483e36363e48505a616c717e879399a4a49a93887f726d62564a3d3124180b000000020d17212930363a3b4646464646464646463936302820160c0200000613202c3946535f6c7986929facac9f9286928c7f736b605b53535151535555534e463c31261a0f0200000815222e3b4754606a76797979797979797979797979797979797979797979797979797979797979797974695d5144382b1f120500000000000000000000000000000000000003080c0e0e131313131313130f0e0c09040000000000000000000000000000000000000000000000000000000000000003070b0d0e131313131313130e0e0c08030000000000000916222f3c4955626f7c868686868686867e7164584b3e3125180b000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3946535f6c79878686868686868074675a4e4134271b0e000b1825313e4a56626d72797979797979736e63584b3f3226190c000000000000000000000000000000000000000000000000000000000000030b12181c1f2d2d2d2d2d2d2d2d2c2c2a26201912090000000000000000000000030b12181c1f2d2d2d2d2d2d2d2d2c2c2a262019120900000000000000000000000000000000010911181e2225252d2d2d2d2d2d2726231f19120a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000004101d2935404b5563707d8996a1aca095887b6f62544a3f34281c100300000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3ab9e9185786b5e5245382b1f1205000b1825313e4b5864717e8b97a4ac9f938679665c5044383e4b5864717e8b97a4ac9f938679665c5044382b1f120600030f1b27323d464e54566060606060605f5c574f444d53555c606367696b6b6c6c6b6a696663605d55534d453f342e261e140a0000000000000d192633404c5966737f8686868686868686868686868686868686868686868685786b5e5245382b1f1200000000000000000000060f1820262b2e2f33322f2a231c1a1e212125282a2b2c2c2b2a282522211f1b1b22292e31322e2d2a251f170f050000000000000000000000000a141d262f383f444e53565e6165686a6b6c6c6b6a6865615e57534e463f372e251c11080000000000000a1623303d495663707d869298a2a39f93887f716c625a50483e362c2c363e48505a616c717e879399a4a49a93887e7265584b3f3225180c00000009141f29333b42464853535353535353535346413a32281e1308000005121f2b3744505b657986939faca79a8d818d93877d726c6562605d5c6062625f584e43372b1f1206000006131f2b37434e5860626c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6962584d4135291c10030000000000000000000000000000000001090f14181a1b202020202020201c1b191510090200000000000000000000000000000000000000000000000000000001080e1317191a202020202020201b1a18140f0901000000000815212e3b47535f6a7679797979797979716c6256493d3024170a0000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3845525e6a7579797979797979746e64584c3f33261a0d000916222e3a46515b62656c6c6c6c6c6c66635c52473b2f23170a0000000000000000000000000000000000000000000000000000000000030d151d23292c3939393939393939393836312b241b1208000000000000000000030d151d23292c3939393939393939393836312b241b12080000000000000000000000000000000000070d121618192020202020201a1917130e08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050a0d0f101313100f0d0a0500000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000000000c18242f394653606c7884919eaba7998c8073665c5044382b1f140900000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3ab9e9285786b5f5245382c1f0600000b1825323e4b5865717e8b98a4afa49986796d6053463a3e4b5865717e8b98a4afa49986796d6053463a2d20130700000a16202b343d43474953535353535352504c453b42464b5153575a5c5e5f5f5f5e5d5c595754514c46423b3328231c140c020000000000000d192633404c5966737f8c93939393939393939393939393939393939393939185786b5e5245382b1f120000000000000000000000060e151a1e21222625221e18120e121415181b1d1e1f1f1f1e1c191515120f11181d21242521211e1a140d0500000000000000000000000000020b141d262d333c42474c5254585b5d5e5f5f5e5d5b5854524d47433c342d251c130a000000000000020f1c2935424f5c6875828f949fa39b918b7f726d625a50483e362d24242c363e48505a616c717e879399a49e938e8175685b4e4235281b0f0200020e1a25303b454d525f60606060606060605f524c443a3025190d01000613202d394653606c78869aa4afa396897d869292877f78726e6d67676d6e6e6a5f53473a2e2114080000030f1b27323c464e5455606060606060606060606060606060606060606060606060606060606060605f5d5850463b3025190d00000000000000000000000000000000030b131a202427282d2d2d2d2d2d2d292825211b140c0300000000000000000000000000000000000000000000000000020b12191f2326272d2d2d2d2d2d2d282724201a130b0300000006131f2b37434e585f626c6c6c6c6c6c6c64625a5045392d2115080000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2a36424e59636a6c6c6c6c6c6c6c67645c52473c3024170b0006121e29343f495156586060606060605a58524a40362a1f130700000000000000000000000000000000000000000000000000000000010b151f272f343846464646464646464645423d352d24190f0400000000000000010b151f272f343846464646464646464645423d352d24190f0400000000000000000000000000000000000106090b0c1313131313130d0c0a07020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11161a1c1d20201d1c1a16110a030000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000000000007121f2b3844505b6673808c99a3ab9e9184796d6053463b30251a0e01000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3ab9f9285786c5f52452e23170b00000c1825323f4b5865727e8b98a5b5a093867a6d6053473a3f4b5865727e8b98a5b5a093867a6d6053473a2d2014070000040f19222b32373b3c4646464646464544403a3136394045474a4d4f5152535252514f4d4a4745413a3631292117110a02000000000000000d192633404c5966737f8c999999999999999da0a7a9a29f999999999999999185786b5e5245382b1f1200000000000000000000000003090e121415191816120d07020507080b0e1112131312110f0c09080603060c111517181514120e0903000000000000000000000000000000020b141b222731373b4146474b4e5152525352514e4c4846423b37312a221c130a01000000000000000714202d3a4753606d79828f949b918b7f726d625a50483f362d241b1a242c363e48505a626c717e87939a938e81786d6053463a2d201307000005121e2a36424d575e6c6c6c6c6c6c6c6c6c6c5e564c41362a1d1105000713202d3a4653606d798693a0b6a295887c818e99928c837f7b7a7979797b7c6e6255483b2f2215080000000a15202b343c4347495353535353535353535353535353535353535353535353535353535353535352514d463e342a1f1408000000000000000000000000000000010b151d252b303435393939393939393534312c261e150c000000000000000000000000000000000000000000000000000b141d242b303334393939393939393534302b251d150b010000030f1b26323c464e535560606060606060585650483e34291d110500000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a26313d4751595e5f6060606060605a58524a41362b1f140800010d18232d373f464a4c5353535353534d4b4740382e24190e020000000000000000000000000000000000000000000000000000000007121d2731394045535353535353535353524e473f352b2015090000000000000007121d2731394045535353535353535353524e473f352b20150900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d151c2226292a2d2d2a2926221c150d0400000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000000030f1c28333f4a54616e7b87929faca1968a7d7063574d42362a1d1307000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000b1824313e4b5764717e8a97a4ac9f9285796c5f4a3f34281c1003000c1925323f4c5865727f8b98a5ada093877a6d6054473a3f4c5865727f8b98a5ada093877a6d6054473a2d21140700000007101920272b2e2f3939393939393837342f252a2f34383a3d404344454646454443403d3a39352f2a251f170f060000000000000000000d192633404c5966737f8c8c8c8c8c8c8c8c9095a0a297928c8c8c8c8c8c8c8c85786b5e5245382b1f120000000000000000000000000000020608080c0c0a060200000000000001040506060504020000000000000105090b0b08070502000000000000000000000000000000000000020a111720262b3036393b3e41444546464544423f3b3a36302b262018100a01000000000000000006131f2c3845515c676d79828f918b7f726d625b51483f362d241b12121a242c363e48505a626c717e88938e81786d665c5044382b1f120600000714202d3a46525e6976797979797979797976685e5246392d201307000714202d3a4753606d7a8693a0ada194887b7c88949f95918c8886858586888073675a4d4034271a0d000000040f19222b32373b3c464646464646464646464646464646464646464646464646464646464646464644413b342c22180d0200000000000000000000000000000009131d272f373c40414646464646464642413d3730271e0e050000000000000000000000000000000000000000000000030d1d262e363c3f414646464646464641403c372f271d13090000000a15202a343c434749535353535353534b49453e362d22170c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000915202b353f474e52535353535353534e4c4741382f241a0e03000007111b252d343a3e3f464646464646403f3b362e261c120800000000000000000000000000000000000000000000000000000000000c18232f39434b515f606060606060605f5e5951473d31261a0e010000000000000c18232f39434b515f606060606060605f5e5951473d31261a0e0100000000000000000000000000000000000000000000000000000000000106090b0c131313130c0b09060100000000000000000000000000000000000000000000000000000000000000030d161f272d32353639393635322d271f160d03000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000000000b17222d3846525e6975828f9ba7a89b8f8275695e52463a2f24180d000000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4ac9f938679665c5044382b1f1206000c1926333f4c5966727f8c99a5ada094877a6d6154473a3f4c5966727f8c99a5ada094877a6d6154473a2e21140700000000070f161b1f22232d2d2d2d2d2d2c2b28241a1d23292c2d3034363838393938373633302d2c29241e1a140d0500000000000000000000091623303c4956636f7d808080808080808083909d9f928580808080808080807f7265594c3f3226190c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b151a1e252a2d2e323537383939383735322e2d2a251f1a150e060000000000000000000004101c2934404b555c676d79828a7f726d625b51493f362d241b120909121b242d363e48505a626c717e8681786d665c544a3f34281c100300000815212e3b4854616e7b86868686868686867a6d6154473a2e211407000714212d3a4754606d7a8793a0ada194877a76828f99a09d9895989292988d8073675a4d4034271a0d0000000007101920272b2e2f39393939393939393939393939393939393939393939393939393939393939393835302a221a1006000000000000000000000000000000030f1a252f3941484d4e535353535353534f4d4942393020170d02000000000000000000000000000000000000000000010b151f2e3840474c4d535353535353534e4d4841392f251a0f030000040e18222a32373b3c464646464646463e3d39342d241b1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f19242d353d424546464646464646413f3c362f261d13080000000009131b23292e313239393939393933322f2a241c140a000000000000000000000000000000000000000000000000000000000004101c2934404b555c6c6c6c6c6c6c6c6c6c6a63594e42362a1d1104000000000004101c2934404b555c6c6c6c6c6c6c6c6c6c6a63594e42362a1d110400000000000000000000000000000000000000000000000000000000070d1216181920202020181815120c060000000000000000000000000000000000000000000000000000000000000a151f2831383e4243464643423e3831281f150a000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000000000006111c2a36424d5763707d89959fac9f92867b6e61554b4135291d12070000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4afa49986796d6053463a2d201307000d192633404c5966737f8c99a6ada194877a6e6154473b404c5966737f8c99a6ada194877a6e6154473b2e2114080000000000040a0f1315162020202020201f1e1c180e12181c1f202427292b2c2c2c2b2a29262421201d19130e090300000000000000000000000915222f3b4854606b6f7373737373737374818e9b9e91847873737373737373726d62574a3e3125180b0000000000000105090b0b1313131307060405090b0b131313130706040005090b0b13131313070604000000000000000000000000000000000000000000000000000000000000000003090e14191e202125282a2b2c2c2b2a282521201e1a140f0a030000000000000000000000000c18232f39434b555c676d797d726d625b51493f372d241b1209000009121b242d363f48505a626c717d786d665c544a42382e23170b0000000815212e3b4854616e7b87939393939393877a6d6154473a2e211407000814212e3b4754616e7a8794a1aca093877a6f7c87929fa5a5aaa29f9f9a8d8073675a4d4034271a0d0000000000070f151b1f22222d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2b29251f181008000000000000000000000000000000000814202b37414b53595b606060606060605c59544b4232291f140900000000000000000000000000000000000000000007121d2731404a52585a606060606060605b59534b41372b20140800000006101820262b2e2f3939393939393931302d29221b1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b242b313638393939393939393433302b241d140b0100000000010911181e2225252d2d2d2d2d2d2726231f19120a02000000000000000000000000000000000000000000000000000000000006131f2c3845515c67767979797979797979756a5e5245382c1f1206000000000006131f2c3845515c67767979797979797979756a5e5245382c1f12060000000000000000000000000000000000000000000000000000010911181e2225252d2d2d2d2524221d1811090000000000000000000000000000000000000000000000000000000005111c27313a434a4e505353504e4a433a31271c11050000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000000000000000e1a25303b4854606b7683909da8a3998d8073675d5145392e23180c0000000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5b5a093867a6d6053473a2d201407000d1a2633404d596673808c99a6aea194887b6e6155483b404d596673808c99a6aea194887b6e6155483b2e221508000000000000000306080913131313131312110f0c01070c101314171a1c1e1f201f1f1e1c1a171413110d0801000000000000000000000000000713202c38444f5960636666666666666874818e9b9e9184786b66666666666665625b51463a2e2216090000000000060c111517182020201f141310111517182020201f1413100c111517182020201f1413100c07010000000000000000000000000000000000000000000000000000000000000002080d111414181b1e1f1f201f1e1b191514120e0903000000000000000000000000000007121d273139434b555c676d716c625b51493f372d251b12090000000009121b242d363f48505a626b706d665c544a423830261c11060000000815212e3b4854616e7b87949f9f9f9f94877a6d6154473a2e211407000815222e3b4855616e7b88949f9fa39986796d73808c939fa2aaaaaba69a8d8073675a4d4034271a0d000000000000040a0f131516202020202020202020202020202020202020202020202020202020202020201f1f1c19140d0600000000000000000000000000000000000c1824303c48535d64686c6c6c6c6c6c6c68655d54443b3025190e0000000000000000000000000000000000000000000c18232f3943525c64676c6c6c6c6c6c6c68645d53483c3024180c00000000060e151b1f21222d2d2d2d2d2d2d2524211d1711090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121920262a2c2c2d2d2d2d2d2d2726241f1a130b0200000000000000070d121618192020202020201a1917130e08000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d798686868686868687796c5f5346392c20130600000000000714202d3a4753606d798686868686868687796c5f5346392c201306000000000000000000000000000000000000000000000000000009131b23292e31323939393932312e29231b13090000000000000000000000000000000000000000000000000000000a16222d38434c545a5d60605d5a544c43382d22160a0000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000000000009141f2c38444f5964717e8a96a0ab9f92857a6d60544b4034281d120700000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5ada093877a6d6054473a2d211407000d1a2733404d5a6673808d99a6aea195887b6e6255483b404d5a6673808d99a6aea195887b6e6255483b2f2215080000000000000000000000060606060606050503000000000406070a0d10111213131211100d0a07060401000000000000000000000000000000030f1b27323d474f545659595959595b6874818e9b9e9184786b5e5959595959595751493f35291e1206000000000911181d2124252d2d2d2c201f1c1d2124252d2d2d2c201f1c181d2124252d2d2d2c201f1c18120b030000000000000000000000000000000000000000000000000000000000000000010507080b0e1112131312110f0c0807050200000000000000000000000000000000010b151f273139434b555c6064615a51493f372d251b130900000000000009121b242d363f4850596063605c544a423830261e140a000000000815212e3b4854616e7b8794a1acaca094877a6d6154473a2e211407000915222f3c4855626f7b8893939393928679666c77818c92989b9e9f9f9a8d8073675a4d4034271a0d000000000000000003060809131313131313131313131313131313131313131313131313131313131313131312100d08020000000000000000000000000000000000000e1a2734404d59646f7479797979797979756f65564d42362a1c11060000000000000000000000000000000000000004101c2934404b55646e7479797979797979746f64594d4034271a0e0000000000040a0f13151620202020202020181715110c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f151a1d1f202020202020201b1a17140e08010000000000000000000106090b0c1313131313130d0c0a070200000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693939393939286796c5f5346392c20130600000000000714202d3a4753606d7a8693939393939286796c5f5346392c2013060000000000000000000000000000000000000000000000000007111b252d343a3e3f464646463f3d3a342d251b110600000000000000000000000000000000000000000000000000010d1a26323e4a545e66696c6c69665e544a3e32261a0d0100000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000000000002101b27323d4653606c7884919da8a2978b7f72665c5145392e23180c01000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99a5ada094877a6d6154473a2e211407000d1a2734404d5a6773808d9aa6aea295887b6f6255483c404d5a6773808d9aa6aea295887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b16212b353d4448494d4d4d4d4e5b6874818e9b9e9184786b5e514d4d4d4d4c4a463f372d23180d0100000009121b22292e3132393939392d2c29292e3132393939392d2c2923292e3132393939392d2c29231d150d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d151f273139434b5153575550483f372d251b1309000000000000000009121b242d363f474f545653504a423830261e140c02000000000815212e3b4854616e7b8794a1acaca094877a6d6154473a2e211407000916222f3c4955626f7c86868686868685786c656c777f868b8e919292928d8073675a4d4034271a0d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1b2835414e5b687481868686868686868175695e5246382d22170b0000000000000000000000000000000000000006131f2c3845515c677480868686868686868174685b4e4135281b0e0000000000000003060809131313131313130b0a080500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090e1112131313131313130e0d0b080300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a86939f9f9f9f9286796c5f5346392c20130600000000000714202d3a4753606d7a86939f9f9f9f9286796c5f5346392c201306000000000000000000000000000000000000000000000000010d18232d373f464a4c535353534b4a463f372d23180c01000000000000000000000000000000000000000000000000030f1c2935424e5a66707679797670665a4e4235291c0f0300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000000000000000b161f2b3844505b66717e8b96a0a99e9184796d60554b4034281e1308000000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000d192633404c5966737f8c99a6ada194877a6e6154473b2e211408000e1b2734414e5a6774818d9aa7afa295887c6f6255493c414e5a6774818d9aa7afa295887c6f6255493c2f2216090000000000000105080b0b1313131313130c0b090501000000000000000000000000000002070a0c0d1313131313130b0a08050000000000000000040f19232b32383b3c404040414e5b6874818e9b9e9184786b5e51454040403f3e3a352d251b110700000006111b242d343a3d3e464646463a3834343a3d3e464646463a38342f343a3d3e464646463a38342f271f150b0100000000000000000000000000000000000000030608090d1012131312110f0b0707050100000306060b0f121312110e080705020000000000000000000000000000030d151f2731394045474a49453e362d251b13090100000000000000000009121b242d353d44484a46443f3830261e140c0200000000000815212e3b4854616e7b87949f9f9f9f94877a6d6154473a2e211407000815222e3b4754606a767979797979797873695b656c727a7f8284858685837e7164574b3e3124180b00000000000004090c0e0f131313131313131313131313131313131313131313131313131313131313131313100f0d09050000000000000000000000000000000000000916232f3c4956626f7c89959393939392867b6e61544a3f33281c0f030000000000000000000000000000000000000714202d3a4753606d7985929393939395897c6f6356493c3023160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050a0d0f101313100f0d0a05000000000000000000000000000714202d3a4753606d7a8693a0acac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0acac9f9286796c5f5346392c20130600000000000000000000000000000000000000000000000006121e29343f4951565860606060585651493f34291d120600000000000000000000000000000000000000000000000003101d2a3643505d69768286868276695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000000000000030f1c28333f4a54606d7884919da7a1968b7e72675c51453a2f24190d030000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000d1a2633404d596673808c99a6aea194887b6e6155483b2e221508000e1b2834414e5b6774818e9aa7afa295897c6f6256493c414e5b6774818e9aa7afa295897c6f6256493c2f2316090000000000060c11151718202020202020181815110c06000000000000000000000000070e1316191a202020202020181715110c060000000000000007111921272c2f30333335414e5b6874818e9b9e9184786b5e514538333332312e29231b130a000000010c18222d363f454a4b535353524745403f454a4b53535352474540393f454a4b535353524745403931271d12070000000000000000000000000000000000040a0f1315161a1d1f1f201f1e1b181413110d080b0f1213181c1f201f1e1b1514120e090300000000000000000000000000030d151f272f34383a3e3c39332c241b130901000000000000000000000009121b232b33383c3d3a38342e261e140c020000000000000815212e3b4854616e7b87939393939393877a6d6154473a2e2114070006131f2b37434e5860626c6c6c6c6c6c6c6961535b60686d72757778797876716c6155493d3023170a0000000002091015191b1c2020202020202020202020202020202020202020202020202020202020202020201d1c1915100a03000000000000000000000000000000000915222e3b4854606a7783909daa9fa3998c7f73665b5044382b1f1409000000000000000000000000000000000006121f2b37434e5864717e8a97a29f9f9d9083776b6054483b2f22150900000000000000000000000000000000000000000406070a0c0f11111213131312110f0d0b070705010000000000000000000000000000000000000000000000000003060809131313131313130b0a08050000000000000000000000000000000000000000000000000000000000000000000000000000000000030a11161a1c1d20201d1c1a16110a0300000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000000916222e3a46515b62656c6c6c6c65625b51463a2e22150900000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000000000000000b17222d3844505c66717e8a95a0a89e9184796d60564c4135291f14090000000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99a6aea195887b6e6255483b2f221508000e1b2835414e5b6874818e9ba7afa396897c706356493d414e5b6874818e9ba7afa396897c706356493d3023160a000000000911171d2124252d2d2d2d2d2d2524221d181109000000000000000000010a12191e2325262d2d2d2d2d2d2524211d17110900000000000000070f161b202223262835414e5b6874818e9b9e9184786b5e5145382b262625221e18110a0100000005111d29343f485056586060605f53514b485056586060605f53514b43485056586060605f53514b43392f23180c00000000000000000000000000000003090e151b1f2222272a2b2c2c2c2a282521201d1913171c1f2024292b2c2c2a2821211e1a140d0500000000000000000000000000030d151d23292c2d31302d28221a1209010000000000000000000000000009111921272c2f302d2b28231c140c02000000000000000815212e3b4854616e7b86868686868686867a6d6154473a2e21140700030f1b27323c464e54556060606060605f5d574950565d6065686b6c6c6b6a64615a5045392d211408000000030c141b212528292d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292826211b140c0400000000000000000000000000000007131f2c38434e5865727e8b98a2aeab9e9184786c6053463b30251a0e00000000000000000000000000000000000814212e3a47535f6a7683909ca9aea2988b7f7265594f43382c1f1307000000000000000000000000000000000001070c10131417191b1d1e1f20201f1f1e1c1a171413110d0804010000000000000000000000000000000000000000040a0f13151620202020202020181715110c060000000000000000000000000000000000000000000000000000000000000000000000000000040d151c2226292a2d2d2a2926221c150d04000000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000000b1825313e4a56626d7279797979726d62564a3d3124180b00000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000000000000000006111c28343f4a54606c7883909da6a1968c7f72685d52453b31261a0c0300000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000d1a2734404d5a6773808d9aa6aea295887b6f6255483c2f221509000f1b2835424e5b6875818e9ba8b0a396897d7063564a3d424e5b6875818e9ba8b0a396897d7063564a3d3023170a00000009121b22292d303139393939393932312e29231b120900000000000000000a131c242a2f323339393939393931302d29221b120900000000000000040b0f1315161b2835414e5b6874818e9b9e9184786b5e5145382b1e191816120d0700000000000915212e3a45505a62656c6c6c6c605c55505a62656c6c6c6c605c554b505a62656c6c6c6c605c554b4034291c100400000000000000000000000000060e141a20262b2e2f3336383939383735322e2d2a251e22282b2d313638393937342e2d2a251f170f0500000000000000000000000000030b12181c1f202423211c17100800000000000000000000000000000000080f161c202223201f1c17110a0200000000000000000714202d3a46525e6976797979797979797976685e5246392d20130700000a15202b343c43474953535353535352514c3f444c5254585b5e5f5f5f5d575550483e33281d11050000020c151e262c3134353939393939393939393939393939393939393939393939393939393939393939393635322d261e160c030000000000000000000000000000030f1b27323d4754606d7a85929facaca1968a7d7063574d42362a1c110600000000000000000000000000000004101c2934404b55626e7b88949fabac9f92867a6d6054473d32271b0f03000000000000000000000000000000050b1012181c1f202326282a2b2c2c2c2c2c2a29272421201d1913100d07010000000000000000000000000000000000060e151b1f21222d2d2d2d2d2d2d2524211d171109000000000000000000000000000000000000000000000000000000000000000000000000030d161f272d32353639393635322d271f160d030000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000000c1925323f4c5865727f868686867f7265584b3f3225180c00000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000000000000000000000b17232e3844505b66707d89949fa89e92857a6d60574d42362a1e150a00000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000e1b2734414e5a6774818d9aa7afa295887c6f6255493c2f221609000f1c2835424f5b6875828e9ba8b0a3968a7d7063574a3d424f5b6875828e9ba8b0a3968a7d7063574a3d3024170a000006111b242d34393d3e4646464646463f3d3a342d241b0b02000000000000030d1c252e353b3f404646464646463e3d39342d241b110600000000000000000307090e1b2835414e5b6874818e9b9e9184786b5e5145382b1e120b0906010000000000000b1724313d4a56626c71797979796d675c56626c71797979796d675c5156626c71797979796d675c5145382c1f1306000000000000000000000000080f181f262a32373b3c40434546464544423e3a3936302a2d3338393e4245464544413b3a36312921170d030000000000000000000000000001070c101314171714110c05000000000000000000000000000000000000050b101316171312100b060000000000000000000005121e2a36424d575e6c6c6c6c6c6c6c6c6c6c5e564c41362a1d11050000040f19222b32373b3c464646464646454441333a4145474b4f51525352504b49453e362c22170c00000009141e2730373d414246464646464646464646464646464646464646464646464646464646464646464643413e3830281e140a0000000000000000000000000000000a16202c3945515d6774818e9aa7b1a89b8f8275695e5246382e23170b00000000000000000000000000000006131f2c3845515c6774808d9aa6b0a79b8e8174685d5245392b21160a0000000000000000000000000000040b10161c1d23292c2d30333537383839393938373633312e2d2a25201d18120b0600000000000000000000000000000006101820262b2e2f3939393939393931302d29221b120900000000000000000000000000000000000000000000000000000000000000000000000a151f2831383e4243464643423e3831281f150a0000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000000c1926323f4c5965727f8c93938b7f7265584c3f3225190c00000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000000000000000006111c28333f4a54616b76828f99a4a1978d8073695f53463d30261c1106000000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000e1b2834414e5b6774818e9aa7afa295897c6f6256493c2f231609000f1c2936424f5c6975828f9ca8b0a3978a7d7064574a3d424f5c6975828f9ca8b0a3978a7d7064574a3d3124170a00010c17222d363f45494b5353535353534b4a453f372d1d140a0000000000010b151f2e3740474b4d5353535353534b49453e362d22170c00000000000000000000020e1b2835414e5b6874818e9b9e9184786b5e5145382b1e12050000000000000000000b1825323e4b5865717e86868686796d605865717e86868686796d60535865717e86868686796d6053473a2d20140a0000000000000000000000081119212a31363c4347494d5052525352514e4b4746413a36383f44464b4f525352514e4846423b33291f1409000000000000000000000000000000000406070b0a0805000000000000000000000000000000000000000000000407090a070603000000000000000000000000020e1a25303b454d525f60606060606060605f524c443a3025190d0100000007101920272b2e2f393939393939393835272f35393a3f4244454645433e3d39332c241a1006000004101b26303942494d4f535353535353535353535353535353535353535353535353535353535353535353504e49423a30261b1005000000000000000000000000000004111d2935414b55626f7c88959fabac9f92877b6e61544a3f34281c100300000000000000000000000000000714202d3a4753606d7985929eabaca095897c6f63564c413529190f0400000000000000000000000000060b161b21282c2f34383a3d3f42444445464646454442403e3a3936302c29241d17110a02000000000000000000000000040e18222a32373b3c464646464646463e3d39342d241b110600000000000000000000000000000000000000000000000000000000000000000005111c27313a434a4e505353504e4a433a31271c110500000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000000c1926333f4c5966727f8c99988c7f7265594c3f3226190c00000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000b17222d38424f59626f7c87939fa99f92867b6e61594f42382e23170c020000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000e1b2835414e5b6874818e9ba7afa396897c706356493d3023160a00101c2936434f5c6976828f9ca9aca4978a7d7164574a3e434f5c6976828f9ca9aca4978a7d7164574a3e3124170b0005111d29343f48505658606060606060585651493f2f261b11060000000007121d27314049525759606060606060585650483e34291d1105000000000000000205070e1b2835414e5b6874818e9b9e9184786b5e5145382b1e12050000000000000000000a1723303d4a5663707d8993988a7d70635763707d8993988a7d7063575663707d8993988a7d7063574a3d31261b0f03000000000000000000060f19232b333b42464e54555a5d5e5f5f5f5d5b5854524c4641424a5053575c5e5f5f5d5b54534d453b31251a0e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333b42464853535353535353535346413a32281e13080000000000070f151b1f22222d2d2d2d2d2d2c2b281e24292c2d3235383939383731302d28221a12080000000915212c37424b54595c6060606060606060606060606060606060606060606060606060606060606060605c5a544c42382d2115090000000000000000000000000000010d18242f3a47535f6a7683909da9afa3998c7f73665c5044382b1f14090a0a0a0a0a0a0a0a0a0a0a0a0a0a121f2b37434e5864717e8b97a2adaa9d9083776b6054443a2f241907000000000000000000000000020a111721272c3338394045474a4c4e50515253535252514f4d4a4746413a39352f28231c140c0600000000000000000000000a15202a343c434749535353535353534b49453e362d22170c0000000000000000000000000000000000000000000000000000000000000000000a16222d38434c545a5d60605d5a544c43382d22160a00000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000000d192633404c5966737f8c99998c7f7266594c3f3326190c00000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000000000000000000000006111c262f3d47535f6a74818e97a2a3988e82756b60544a3f34281f14090000000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000f1b2835424e5b6875818e9ba8b0a396897d7063564a3d3023170a00101d293643505c6976838f9c9f9f9f978b7e7164584b3e43505c6976838f9c9f9f9f978b7e7164584b3e3125180b000815212d3945505a62646c6c6c6c6c6c65625b5141382d22170b000000000c18232f3943525b63666c6c6c6c6c6c64625a5045392d211508000000000002090e1114141b2835414e5b6874818e9b9e9184786b5e5145382b1e12050000000000000000000815222f3b4855626e7b88959a8d81746758626e7b88959a8d8174675855626e7b88959a8d817467584e43372b1f12060000000000000000030e18222b353d454d53585f6266696b6c6c6b6a6865615e56524c4c545b6064696b6c6c6a67615e574d42362a1e1205000000000000000000000000000000010406070b0e101213131312100e0b07060401000000000000000000000000000000000000000000000000000000000000020d17212930363a3b4646464646464646463936302820160c02000000000000040a0f1315162020202020201f1e1c13191d202125282b2c2c2c2a2423211d171008000000000c1925313d49545d65686c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69665e54493e3226190d00000000000000000000000000000007131d2b37434e5864717e8b97a2adab9e9184786d6053463b31251a16161616161616161616161616161616212e3a47535f6a7683909ca9aea2988b7f7265594f4332281e13080000000000000000000000030b141c222832383e44484b515356595b5d5e5f5f5f5f5f5d5c5a5754524c47454039342e261e170f07000000000000000000030f1b26323c464e535560606060606060585650483e34291d110500000000000000000000000000000000000000000000000000000000000000000d1a26323e4a545e66696c6c69665e544a3e32261a0d00000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000000d1a2633404d596673808c99998c7f7366594c403326190d00000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000000000000000000000a141d2b37434e58616d7a85929fa79e93897d70665c50443b30251a0d0300000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000f1c2835424f5b6875828e9ba8b0a3968a7d7063574a3d3024170a00101d2a3643505d6976839093939393938b7e7165584b3e43505d6976839093939393938b7e7165584b3e3225180b000b1724303d4956626c71797979797979726d6253493f33271b0f03000004101c2934404b55636e73797979797979716c6256493d3024170a00000000050d14191e2021272835414e5b6874818e9b9e9184786b5e5145382b1e12050000000000000000000714202d3a4753606d7a86979e9184786a5f606d7a86979e9184786a5f53606d7a86979e9184786a5f53473a2e21150800000000000000000a15202a343d474f575f616a6f7376787979787775716d68615e56565d666c717578797877746e695e53463a2d2114070000000000000000000000000001070d111314181b1d1f1f201f1f1d1b181413110d07010000000000000000000000000000000000000000000000000000000000050f171f252a2d2e39393939393939392e2d2a251e160e0500000000000000000003060809131313131313121210080d111314181c1e1f201f1d181714110c0600000000000e1b2834414d59656f757979797979797979797979797979797979797979797979797979797979797979797670665a4e4135281c0f000000000000000000000000000000010f1b26323c4753606d7985929fabada1968a7d7063574d42362a23232323232323232323232323232323232934404b55626e7b88949fabac9f92867a6d6054473d3221160c0100000000000000000000030c151d262d333d44484f55555c606366686a6b6b6c6c6c6b6a696664615e5653514b443f38302921191007000000000000000006131f2b37434e585f626c6c6c6c6c6c6c64625a5045392d21150800000000000000000000000000000000000000000000000000000000000000000f1c2935424e5a66707679797670665a4e4235291c0f00000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000000d1a2733404d5a6673808d99998c807366594d4033261a0d00000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000000000000000000000000020b1b26323c46525e68727f8c95a0a59d9083786d60574d42362a1f150b01000000000000121f2c3845525f6b7885929eabada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000f1c2936424f5c6975828f9ca8b0a3978a7d7064574a3d3124170a00101d2a3743505d6a7683868686868686867f7265584b3f43505d6a7683868686868686867e7265584b3f3225180c000b1825313e4b5864717e8686868686867f72655b5044372b1f150a000006131f2c3845515c6773808686868686867e7164584b3e3125180b000000050e171f252a2d2e342d35414e5b6874818e9b9e9184786b5e5145382b1e120500000000000000000006131f2c3945515d677885929e96887b6f625d677885929e96887b6f62555d677885929e96887b6f6255483c3025190d01000000000000020f1a26313c464f5960696e767c80838585868583817e7a746d68605d686d787e8285868584817b6e6154483b2e211508000000000000000000000002080e13181d202024272a2b2c2d2c2b2a272421201d18130e090300000000000000000000000000000000000000000000000000000000050d141a1e20212d2d2d2d2d2d2d2d21201d19130c05000000000000000000000000000006060606060606050300010406070c0f11121312100b0a0805000000000000000f1c2935424f5c6875828686868686868686868686868686868686868686868686868686868686868686868276695c504336291d10000000000000000000000000000000000a151f2c3845515d6774808d9aa6b0a89c8f8275695e5346382e3030303030303030303030303030303030303845515c6774808d9aa6b0a79b8e8174685d5245392c20130400000000000000000000000b151e272f383f444f54596163676d70727577777879797978777573716d6865605d55504a423b332a22190f06000000000000000815212e3b47535f6a7679797979797979716c6256493d3024170a0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d69768386868376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9a998d8073665a4d4033271a0d00000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000000000000000000000000000a15202a36414c56606d7883909aa4a0958c7f72695e52463e31271d1207000000000000121f2c3845525f6b7885929eabaca194877a6e6154473b2e21140800000000000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f9ca9aca4978a7d7164574a3e3124170b00101c2936424f5b66717679797979797979726d62564a3d424f5b66717679797979797979726d62564a3d3124180b000713202d3a4653606d7984919393939184786c6053463c31261a0f02000714202d3a4753606d7985929393939184796d6053463a2d2013070000020d17202930363a3b413a38414e5b6874818e9b9e9184786b5e5145382b1e120500000000000000000004101d2935404b556a7783909d998c7f7266566a7783909d998c7f726656556a7783909d998c7f7266564c41362a1d110500000000000006121f2b37434e58606b707b82888d9091929292908e8b86817a706b606d7a828a8f91929290897d7063564a3d3023170a00000000000000000000050d14191d24292c2d31343738393939383634312d2c29241d1a140d050000000000000000000000000000000000000000000000000000000002090e12141520202020202020201413110d080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2935424f5c6875828f939393939393939393939393939393939393939393939393939393939393938f8276695c504336291d100000000000000000000000000000000004101d2935404b55626e7b88949fabac9f93877b6e61544a3f3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d4753606d7985929eabaca095897c6f63564c4135291d11040000000000000000000007121d273039424a505960636b7075797d7f81838485868685858482807d7a76716d67605c544d453c342a21180c030000000000000916222f3c4955626f7c868686868686867e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9a9a8d8073675a4d4034271a0d01000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000040d1925303a44515c666f7d88939fa79f92867b6e61594f43392f24180c020000000000121f2c3845525f6b7885929e9f9f9f94877a6e6154473b2e21140800000000000000000000000000000000000000000000000000000000000000101d293643505c6976838f9c9f9f9f978b7e7164584b3e3125180b000e1a26323e4a555f666a6c6c6c6c6c6c6c65625b51453a3e4a555f666a6c6c6c6c6c6c6c65625b51453a2e2215090006131f2c3845515c66727f8c97a2a0958a7d7063584e43372b1e13080714202c38444f5965717e8b97a1a2978c7f72665c5144382c1f1206000009141f29323b4246474d4745404e5b6874818e9b9e9184786b5e5145382b1e1205000000000000000000000c18242f424f5c6875828f9b9c908376685e6875828f9b9c908376685e5c6875828f9b9c908376685e5246392d2013070000000000000814212e3a47535f6a707d858f94999c9e9f9c9b9c9b98928e857d706b75828f949c9e9f9f96897d7063564a3d3023170a000000000000000000080e171e252a2f35393a3e4143454646464543413e3a39352f2a251f170f09000000000000000000000000000000000000000000000000000000000002050708131313131313131307070501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2935424f5c6875828f9b9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9c8f8376695c504336291d1000000000000000000000000000000000000c18242f3947535f6a7683909ca9afa4998c8073665c504949494949494949494949494949494949494949494e5864717e8b97a2adaa9d9083776b6054443a2f24190d01000000000000000000040e18232e39434b545b606b70767d8185898c8e90919292929292908f8d8a86837e79726d665f574e463c332a1e150b0000000000000916222f3c4955626f7c8893939393938b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9a9a8d8074675a4d4134271a0e01000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000030709090c0c0c0c0c0c0c0c0c0c0c0c0c0c08131e2834404a54606b74818e97a1a2988e81756b61554b4035291e140a0000000000121f2c3845525f6b7885929393939393877a6e6154473b2e21140800000000000000000000000000000000000000000000000000000000000000101d2a3643505d6976839093939393938b7e7165584b3e3225180b000a16222d38434d555b5d60606060606060585651493f3438434d555b5d60606060606060585651493f34291d11050004101c2834404b54606d7a85929fa89c8f82766a5f53473a3025190d0916232f3c4855606b7783909da99f92857a6d60544a4034281c100400020e1925303b444d52545a53514b4e5b6874818e9b9e9184786b5e5145382b1e120500000000000000000000071a2734414d5a6774808d9a9f93867a6d616774808d9a9f93867a6d615a6774808d9a9f93867a6d6154473a2e23180c000000000007131f2c38434e58626e7c8692989fa29f97928f8e8f9196999792877d707d89949ea69e989291897d7063564a3d3023170a00000000000000010a121a202930363a4045474b4e505252535252504e4b4745413a363029211b120a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2935424f5c6875828f939393939393939393939393939393939393939393939393939393939393938f8376695c504336291d10000000000000000000000000000000000007121d2b37434e5864717e8a97a1adab9e9184796d6056565656565656565656565656565656565656565656565f6a7683909ca9aea2988b7f7265594f4332281e1308000000000000000000020c16202834404b555c666c737d838a8e9298999b9d9e9e9f9f9f9e9d9c999993908b857f786e695f584e453c30271d120700000000000916222f3c4955626f7c88959f9f9f978b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000010e1b2834414e5b6774818e9a9a8d8174675a4e4134271b0e01000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000040b0f1315161919191919191919191919191919191918232e39424f59616d7a85929ea69e938a7d70675d51453c30261c110600000000121f2c3845525f6b7885868686868686867a6e6154473b2e21140800000000000000000000000000000000000000000000000000000000000000101d2a3743505d6a7683868686868686867e7265584b3f3225180c0005111c27313b434a4f50535353535353534b4a453f372d313b434a4f50535353535353534b4a453f372d23180c0100000c18232e3945515d6773808d98a39f94887c6f62564c41362a1c12121f2b37434e5863707d8995a0a3988c8073675d5142392e23180c000005111e2a36424d565e6167605c554e5b6874818e9b9e9184786b5e5145382b1e1205000000000000000000000c1926323f4c5965727f8c98a4998b7e716465727f8c98a4998b7e71645465727f8c98a4998b7e7164544a4034281c1004000000000915222e3b4854606a76828f98a2a298928b8583828284878c929792857b818e9aa69e948f8684867d7063564a3d3023170a000000000000000a131c242c323b41464b5153575a5d5e5f605f5e5d5a5754514b46423b332d241c140a01000000000000000000000000000000000000000000000000000106090b0c13131313131313090806030000000000000000000000000003060809131313131313130b0b0905010000000000000000000000000000000000000000000f1c2935424f5c6875828686868686868686868686868686868686868686868686868686868686868686868376695c504336291d100000000000000000000000000000000000010f1a26313c4653606d7985929eacada1968a7d70646363636363636363636363636363636363636363636363636e7b88949fabac9f92867a6d6054473d3221160c0100000000000000000008131e28323a45515c676d78808990959b9fa2aaaba39f9d9d9c9d9ea1a9aba49f9d97928b837b6f6a5f574d42392e23180c02000000000916222f3c4955626f7c8895a2aca4978b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000020e1b2835414e5b6874818e9b9a8e8174675b4e4134281b0e01000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000070f161b20222325252525252525252525252525252525252527303d46525e68717e8a949ea59e9184796d60584e42382e23170b02000000111e2b3744505d6873787979797979797976685e5246392d20140700000000000000000000000000000000000000000000000000000000000000101c2936424f5b66717679797979797979726d62564a3d3124180b00000a151f2931383e4243464646464646463f3d3a342d242931383e4243464646464646463f3d3a342d241b110600000007121d2935414c55616e7b86929fa69a8e8174685e5246392e231814212e3a47535f6a76828f9ca79f92867a6d61554b4030271c120700000714202d3a46525e696e746d675f585b6874818e9b9e9184786b5e5145382b1e1205000000000000000000000b1724313e4a5764717d8a97ab9b8e82756664717d8a97ab9b8e8275665c64717d8a97ab9b8e8275665c5144382c1f1206000000000916232f3c4956626f7c89949fa79f92867e79767576777b7f858f948f8283909daa9c8f82797779796d6053473a2d20140700000000000009121c252e363e444c52555d6064676a6b6c6c6c6b696764605d55524d453f362e261c1309000000000000000000000000000000000000000000000000060d12161819202020202020201615130f0a04000000000000000000040a0f13151620202020202020181715110c0600000000000000000000000000000000000000000e1b2834414d59656f757979797979797979797979797979797979797979797979797979797979797979797670665a4e4135281c0f00000000000000000000000000000000000009151f2c3845515c6673808d9aa4afa99c8f82757070707070707070707070707070707070707070707070707074808d9aa6b0a79b8e8174685d5245392c201304000000000000000000010d1925303a44515b606d79828d929d9fa7a8a19e999992919090919297979b9fa4a9a19e9590857c6f695f544b4034281e1408000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9b9b8e8174685b4e4135281b0e02000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000007111921272c2f30323232323232323232323232323232323232323235414c56616c75828f98a2a1968d80736a5f544a3f34281d140a0000000f1c2834404c5761686b6c6c6c6c6c6c6c6c5e564c41362a1e1105000000000000000000000000000000000000000000000000000000000000000e1a26323e4a555f666a6c6c6c6c6c6c6c65625b51453a2e2215090000030d171f272d3236373939393939393932312e29231b1f272d3236373939393939393932312e29231b120900000000000d19242f3a46525e6874818e9aa49f92867a6d61544a4034281c1d2a36414c56626e7b88949fa3998d8174685e52433a2f1e150b0000000814212e3b4754616e7b80796f6a605b6874818e9b9e9184786b5e5145382b1e1205000000000000000000000916232f3c4956626f7c8995ab9f9285796d626f7c8995ab9f9285796d60626f7c8995ab9f9285796d6053463a2d201309000000000d1a2733404d5a6673808d99a69f958a7d716d666869696e737a828e938f90959fa298887b6f676d6d675c5145382c1f13060000000000050f1b242e37404850565e61676d71747678797979787674716d67615e57504840382e251b0f06000000000000000000000000000000000000000000010911181e2224252d2d2d2d2d2d2d23221f1b160f0700000000000000070f161b1f22232d2d2d2d2d2d2d2524211d171109000000000000000000000000000000000000000c1925313d49545d65686c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69665e54493e3226190d00000000000000000000000000000000000004101c2834404b54616e7b87939facac9f93877d7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7d85929fabaca095897c6f63564c4135291d110400000000000000000005111d2935414c56626d75818e949ca4aba39f96918c88868483838485878a8f939a9fa7a79f9791857b6e665c51453b3025190d000000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000020f1c2835424f5b6875828e9b9b8e8175685b4e4235281b0f02000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000040f19232b32383b3c3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f44505a616e7b86929fa69f92877c6f665c50443c2f261b110600000c18242f3b454f575d5f606060606060605f524c443b3025190e02000000000000000000000000000000000000000000000000000000000000000a16222d38434d555b5d60606060606060585651493f34291d1105000000040d151c2226292a2d2d2d2d2d2d2d2524221d1811151c2226292a2d2d2d2d2d2d2d2524221d18110900000000000008131e2a36414d56626e7b87939fa3988c7f73665c5144382c1f202d3946525e6874818e9aa69f92877b6e61564c4131281d0c030000000815212e3b4854616e7b87837c726c656874818e9b9e9184786b5e5145382b1e1205000000000000000000000814212e3b4754616e7a8799a3a297897c70636e7a8799a3a297897c7063616e7a8799a3a297897c706356493d31261a0e02000000101d293643505c6976838f9ca99d9083766c605c54575e61686d78818e949d9fa79f9285796a5f60605c554b4034291c100400000000030d17212d364049515a61686e747a7e8183858586858583817e7a746e69625a524a40372d21180e03000000000000000000000000000000000000000009131b23292e3132393939393939392f2e2b2720191007000000000007101920272b2e2f3939393939393932312e29221b12090000000000000000000000000000000000000915212c37424b54595c6060606060606060606060606060606060606060606060606060606060606060605c5a544c42382d211509000000000000000000000000000000000000000c18232e3946535f6976828f9ca9afa499938a89898989898989898989898989898989898989898989898989899297a2adaa9d9084776b6054443a2f24190d010000000000000000000713202d3946525e68727f8b939ea6aba399928c84807c7977767677787a7e828790959ea5a9a1979083796d60564c41362a1c11060000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000020f1c2935424f5c6875828f9b9b8e8275685b4f4235281c0f02000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000203101d2a3643505d69768390908376695d5043362a1d10030200000000000000000b16212b353d4448494c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c525e69727f8b949fa3999083786d60574d41382d22170b000007131e29333d454c5052535353535353535346413b32291e1408000000000000000000000000000000000000000000000000000000000000000005111c27313b434a4f50535353535353534b4a453f372d23180c0100000000030a11161a1c1d20202020202020181815110c060a11161a1c1d20202020202020181815110c0600000000000000010e1925303b47535f6975828f9ba69e9184796d6053463d32272834404b55616d7a86929fa69b8e8175695f53443a301f160c000000000815212e3b4854616e7b8790867f776e6974818e9b9e9184786b5e5145382b1e1205000000000000000000000613202d394653606c7986929fa99a8d8073676c7986929fa99a8d807367606c7986929fa99a8d807367574d42372b1e1206000000111e2b3744515e6a7784919da6998d80736659504a4d52565e666d78829099a3aa9e9184776b585353514b43392f23180c000000000009141f29333f48515b636c717a80868a8d909192939291908d8a86817b716d645c52493f332a2015090000000000000000000000000000000000000009121b252d343a3e3f464646464646463c3b38322b22190f04000000040f19222b32383b3c464646464646463e3d3a342d241b1108000000000000000000000000000000000004101b26303942494d4f535353535353535353535353535353535353535353535353535353535353535353504e49423a30261b10050000000000000000000000000000000000000007121d2a36424d5764707d8a96a1adaba49f9796969696969696969696969696969696969696969696969696969fa2a9aea2988b7f7265594f4332281e130800000000000000000003101c28343f4a54616d7a85929fa5aea39992877f79736f6d666a696a686e71757c838f939ea7a9a0958c8073685e5246382d22170b0000000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b0204050606060504020000000000000000000000000000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000000000000000000000030f1c2936424f5c6975828f9c9b8f8275685c4f4235291c0f02000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000050a0f12101d2a3643505d69768390908376695d5043362a1d10120f0a050000000000030f1b27323d474f54565858585858585858585858585858585858585858585858585857606c77828f97a2a0958c7f72695f53493f33271b0f0300020d17212b333b404445464646464646463b3936302920170d020000000000000000000000000000000000000000000000000000000000000000000a151f2931383e4243464646464646463f3d3a342d241b110600000000000000050a0e1010131313131313130c0b0905010000050a0e1010131313131313130c0b09050100000000000000000008141f2b37424d57626f7c89949fa1978a7e7164594f44382c2c3845515c67737f8c98a39f94887c6f62574d4232291e0d04000000000815212e3b4854616e7b8798928c827b7174818e9b9e9184786b5e5145382b1e12050000000000000000000005121f2b3744505b657784919eaa9d91847769657784919eaa9d918477695f657784919eaa9d918477695f53473a2d211408000000121e2b3845515e6b7884919ea5988b7e7265584b3f42464c545c666f7c87929faa9d9084776a5d514745403931271d120700000000020e1a25313b45505a636d737e858d92989a9d9a9998999a9c9a98928d867e736e645b51463c31261a0f04000000000000000000000000000000000008111a242d373f464a4c535353535353534947433d342b20160a0000000a16202b343d434749535353535353534b4a453f362d241a1107000000000000000000000000000000000009141e2730373d414246464646464646464646464646464646464646464646464646464646464646464643413e3830281e140a0000000000000000000000000000000000000000000e1a26313b4653606d7984919eabb5afaca3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3abadb3ac9f92867a6d6054473d3221160c0100000000000000000006121f2b3844505c6673808d97a2aba79f92877d726d6762605c545d565e61646a6f79818f95a0aba79f92867a6e61544a3f33281c0f0300000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180c0e101213131312100e0b08070502000000000000000000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000003101c2936434f5c6976828f9c9c8f8275695c4f4236291c0f03000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000010910161b1e20202a3643505d69768390908376695d5043362a20201e1b161009010000000713202c38444f596063656565656565656565656565656565656565656565656565656565656e7b85929fa79f92867b6e655b5044372b1f12050000060f1921292f343738393939393939392e2d2a251e170e0500000000000000000000000000000000000000000000000000000000000000000000030d171f272d3236373939393939393932312e29231b12090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313c4854606a7683909ca79d9083776b6054483b312d3a4653606d7985919ea79c8f82766a5f54453b3120170d00000000000815212e3b4854616e7b879298948f857e74818e9b9e9184786b5e5145382b1e120500000000000000000000030f1b27333f49536976838f9ca9a096887b6e6976838f9ca9a096887b6e616976838f9ca9a096887b6e6155483b2f24190d010000111e2a3744515d6a7784909da5988b7f7265544a413d3b424b545f6a75828f9ca89d9084776a5d514438342f271f150b010000000005121e2a36424d57626c737f8a92979f9f97918e8c8b8c8e91969e9f98928b80736d62584e43372b21160b0000000000000000000000000000000007101a232c363f495156586060606060606056544e463d32271b0f0300030f1b27323d464e545660606060606060585650483f362c2319100700000000000000000000000000000000020c151e262c3134353939393939393939393939393939393939393939393939393939393939393939393635322d261e160c0300000000000000000000000000000000000000000009141f2c3844505c6673808c99a3afbbb9b1acaa9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa7a9afb8bab1a79b8e8174685d5245392c201304000000000000000000000713202d3a4653606d7985929b9d9e9f958b7e716b605c5553514a504c5254585f676d78839099a3aea2988c8073665b5044382b1f120600000916222f3c4955626f7c8895a2afa4978b7e7164584b3e312518191b1d1f1f201f1f1d1b181414110e080200000000000000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000003101d293643505c6976838f9c9c8f8276695c4f4336291c1003000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000010a131b21272b2d2d2d3643505d69768390908376695d5043362d2d2d2b27211b130a0100000915222f3b4854606b6f7272727272727272727272727272727272727272727272727272727272727e8b97a1a3989082776c605346392d201306000000070f171e24282b2c2d2d2d2d2d2d2d21201e19140d05000000000000000000000000000000000000000000000000000000000000000000000000040d151c2226292a2d2d2d2d2d2d2d2524221d181109000000000000000000000105070810101010101010101010101010101010101010101008070501000000000000000000000000000000000915202c38434e5863707d8a95a0a095897c6f63574d423638444f5964717e8b97a1a095897d7063584e43332a1f0e0500000000000613202d394653606c787f86909597928a81818e9b9e9184786b5e5145382b1e120500000000000000000000000b17222d414e5b6874818e9ba7a8988c7f726874818e9ba7a8988c7f72656874818e9ba7a8988c7f7265554c4135291d11040000101c2936434f5c6976828f9ca79a8d8074665c524c4a4847464e5865717e8b98a49d9084776a5d51443729231d150d0300000000000714212d3a46535e69717e8b919fa297928b85817f7f8081848a9196a09f928c7f726a5f53473d32271b10010000000000000000000000000000061019222c353e48515b62656c6c6c6c6c6c6c6260584e43382b1f13060006131f2b38434e5860626c6c6c6c6c6c6c65625a50483e352b22190f0600000000000000000000000000000000030c141b212528292d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292826211b140c040000000000000000000000000000000000000000000003101c28343f4a54616e7b87929facb9b1a7a0939393939393939393939393939393939393939393939b9ea5afb8aca095897c6f63564c4135291d1104000000000000000000000a1623303d495663707c898c8e9092979083786c6059514b464440434146474e555d666f7c86929facaa9e9184786c605346392d20130600000916222f3c4955626f7c8895a2afa4978b7e7164584b3e31252225282a2b2c2d2c2b2a282521201e19140f0a040000000000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000003101d2a3643505d697683909c9c8f8376695c504336291d1003000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000009131c252c33373939393943505d69768390908376695d50433939393937332c251c13090000091623303c4956636f7c7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f85919eaa9f948b7f7265584b3f3225180c00000000060d13181c1e1f202020202020201414110e08020000000000000000000000000000000000000000000000000000000000000000000000000000030a11161a1c1d20202020202020181815110c0600000000000000000002080d1114141c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1414110d08020000000000000000000000000000030f1b27323d4653606c7884919da79b8f8275695f53463a3c4854606b7783909da89d9083776b6054463c3221180e00000000000006121f2b3844505b666c727c838c9299938e8e939e9e9184786b5e5145382b1e12050000000000000000000000061a2633404d596673808c99a6a99c8f82766773808c99a6a99c8f8276676673808c99a6a99c8f8276675d5145392c20130600000c1926333f4c5966727f8c99a59e9184796d605d5656555453505663707c8996a39d9084776a5d5144372a18120b03000000000006121f2b37434e58616e7b86929fa29792857e787473727374787d849095a09f92867c6e62594f44382c1e130800000000000000000000000000060f18222b343e47505a626d72797979797979796f6a6054473b2e221508000815222e3b4754606a6f79797979797979716c625a50473d342b21180f050000000000000000000000000000000002091015191b1c2020202020202020202020202020202020202020202020202020202020202020201d1c1915100a030000000000000000000000000000000000000000000000000c17232e3846525e6975828f9ca8b2aca095898686868686868686868686868686868686868686868e939ea9b4aa9d9084776b6054443a2f24190d01000000000000000000000814212e3b4754616e7b7e7f81838587887e71655b5045403a38343036393c434b545f6a75818e9baaada196897c6f6256493c2f23160600000916222f3c4955626f7c8895a2afa4978b7e7164584b3e312d2e32353738393939383735312e2d2a251f1b150d0701000000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000004101d2a3743505d6a7683909d9c908376695d5043362a1d1003000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000005101b252e373e434646464646505d69768390908376695d504646464646433e372e251b1005000e1b2734414e5a6774808b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b8b9197a1ada69b8e8175685b4f4235281c0f000000000002070c0f11121313131313131308070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000050a0e1010131313131313130c0b090501000000000000000000050d14191e202129292929292929292929292929292929292929292921201e19140d0500000000000000000000000000000a161f2b3744505b65717e8b96a19f93877b6e61554c41424e5763707d8995a0a0968a7e7164594f44342a200f06000000000000030f1c28333f4a545b606a6e787f8690959b9b9ea59e9184786b5e5145382b1e120500000000000000000000000b1825323e4b5865717e8b98a4ac9f92867a6d717e8b98a4ac9f92867a6d65717e8b98a4ac9f92867a6d6054473a2d22170b00000915222f3c4855626f7c88939ea0968c7f746d6865636261605c5f626f7b8895a29d9084776a5d5144372a1e07010000000000000815212e3a47535f6a76828f98a29f92857b716c66666566656c707a839099a3989083766b6054483a2f24190d010000000000000000000000050e17212a343d474f59616c727f868686868686867c6f6256493c2f231609000916232f3c4956626f7c868686868686867e716c61594f463c332a21170e05000000000000000000000000000000000004090c0e0f131313131313131313131313131313131313131313131313131313131313131313100f0d0905000000000000000000000000000000000000000000000000000006111c2a36424d5763707d8a96a1acaa9d9083797979797979797979797979797979797979797979818e9ba7aea2988b7f7265594f4332281e130800000000000000000000000714202d3a46525e696e71737476787a7c796d6053493f46464544423f3b3a39424e5863707d8998a2aea8998c7f7266594c3f2d22170b00000916222f3c4955626f7c8895a2afa4978b7e7164584b3e373a3b3f4143454646464543413e3b3936302b272018130c040000000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000004111d2a3744505d6a7783909d9d9083766a5d5043372a1d1004000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a16212c3740494f5353535353535d69768390908376695d5353535353534f4940372c21160a000e1b2734414e5a6774818d9898989898989898989898989898989898989898989898989898989898989ea1a9b3a89b8e8175685b4f4235281c0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171e252a2d2e3636363636363636363636363636363636363636362e2d2a251e170e0500000000000000000000000000030f1b27333f4953606d7984919ea4998d8074675d514547535f6a75828f9ca79e9184786d6053463d3320190e00000000000000000b17222d38424a50585f666d727c838c9299a0a79e9184786b5e5145382b1e120500000000000000000000000a1723303d4a5663707d8996a3aea3998a7d71707d8996a3aea3998a7d7164707d8996a3aea3998a7d7164544a3f33281c0f03000815212e3a47535f6a75828f97a29c918c807a7572706e6d6d666c6c6f7b8895a29d9084776a5d5144372a1e1104000000000003101c28343f4a54626f7c88949fa0958a7e7169605b5458535b60686e7b86929f9f95897d7063564c4135291d110400000000000000000000040d172029333c464f59616b717e88939393939791847a6d6154473a2e211407000714212e3a4754616d7a84919793939392877e706b60584e453c332920160d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a25303b4653606c7884919eabaca095897c6f6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d7a86929facac9f92867a6d6054473d3221160c01000000000000000000000005111e2a36424d575e616466686a686d6f6d675d515152535352514e4c4847423c4653606c7885929faba89b8f82756853493f33271b0f03000916222f3c4955626f7c8895a2afa4978b7e7164584b3e4246484c4e505252535252504e4b4746413b373229241d160d0500000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000004111e2a3744515d6a7784909d9d9083776a5d5044372a1d1104000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000f1b27333e49525a5f60606060606069768390908376696060606060605f5a52493e33271b0f000e1b2734414e5a6774818d9aa5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5abadb3aca89b8e8275685b4f4235281c0f00000000000000020507080c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0b0906010000000000000000000000000000000000000000000000020d1720293036393b4343434343434343434343434343434343434343433b3936302920170d02000000000000000000000000000b17222d3844515c66727f8c97a29f92857a6d60544a4c56626e7b87939fa1978b7e72665c5044382b1f1207000000000000000006111c262f383f444e545c606a6f788087909593939184786b5e5145382b1e120500000000000000000000000815222f3b4855626e7b8895a99f9f9b8e81746e7b8895a99f9f9b8e8174666e7b8895a99f9f9b8e8174665b5044382b1f12060006121f2b37434e58616e7b8592979f9c928d86827f7d7b7a79797978787c8895a29d9084776a5d5144372a1e1104000000000006121f2b3844505c6674818d9aa69d9083786c6057504a4c4950565f6974818d9aa79b8e8175685d5245392c201306000000000000000000030d161f29323b454e58606b707d87929aa4a29791857b6e685e5246392d201307000713202d3946525e686e7b859197a2a39992867d706a60574e453b32281f160c030000000000000000000000000000060a0e1011131313131313130b0a08080b0d0e131313131313130e0d0b07030000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2b3844505b66727f8c99a3aea79a8d8174675c606060606060606060606060605765717e8b98a2aea79b8e8174685d5245392c201304000000000000000000000000020e1a25303b454d525457595b565d6062605d555c5e5f5f5f5f5d5b5955534d4644505b6576838f9ca9aa9e918477655b5044372b1f1205000916222f3c4955626f7c8895a2afa4978b7e7164584b464d5355585b5d5e5f605f5e5d5b5854524d47433d352f281f170f05000000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000004111e2b3744515e6a7784919d9d9084776a5d5144372a1e1104000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000121e2b37434f5a646c6c6c6c6c6c6c6c7683909083766c6c6c6c6c6c6c6c645a4f43372b1e12000e1b2734414e5a6774818d9a9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9b8e8275685b4f4235281c0f000000000003090e12141519191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191816120d070000000000000000000000000000000000000000000008141e29323b4146474f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4746413b32291e14080000000000000000000000000006111b2834404a54606d7a85929fa2988b7f72665b50525e6874818d9aa49e9285796d60544a3f34281c10030000000000000000000a141d262d333c424a50585f666d737c838686868684786b5e5145382b1e120500000000000000000000000714202d3a4753606d7a8697939393939285796d7a8697939393939285796c6d7a8697939393939285796c605346392d20130600030f1b26313c46535e696f7c858f949c9f98928f8c898887868685858584919eaa9d9084776a5d5144372a1e110400000000000713202d3a4653606d7885929fa9988b7f72655b50443f3f3f444d57626f7c8897a19f92867a6d6054473a2d2114070000000000000000030c151f28313b444d575f6a6f7d869299a3a29892857c6f695f564c4135291d11050005111d2935414c565f696f7c859298a2a39892867c6f6a5f574d443a31281e150c020000000000000000000000040b11161a1d1e2020202020202018171514171a1b202020202020201a1a17130e08010000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a54616e7a86929facab9f9285796d60535353535353535353535353535f697683909caaaca095897c6f63564c4135291d11040000000000000000000000000009141f29333b4246474a4c4e4c52545c606366696b6c6c6c6b6a6865625f5753504a536773808d9aa6ac9f9286796c605346392d201306000916222f3c4955626f7c8895a2afa4978b7e7164585053575f6165686a6b6c6c6c6b6a6864615e56544e45403a312921170f050000000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000005111e2b3844515e6b7784919e9d9184776a5e5144372b1e1104000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000013202d3946535f6c767979797979797979839090837979797979797979766c5f5346392d2013000e1b2734414e5a6774808d9393939393939393939393939393939393939393939393939393939393939393939393938e8275685b4f4235281c0f00000000060d141a1e2122262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262626262525221e1811090100000000000000000000000000000000000000010d1925303b444c52545c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c54524c443b3025190d01000000000000000000000000000c18232e3945515d6773808d98a39e9184786c605354616d7a86929fa2988c7f73675c5142382e23170b00000000000000000000020b141c222830383f444e545c606a6f77797979797872685c5043372a1d1104000000000000000000000006131f2c3945515d677885868686868686867c6f7885868686868686867c6f677885868686868686867c6f6256493c2f23160900000a15202a36424d57606a6f7b828a8f9299999b9896959499929292919196a1aa9d9084776a5d5144372a1e110400000000000915222f3c4855626f7c8897a2a197887b6e6153493f332d333b4653606c7985929ea399897d706356493d3023160a00000000000000020b151e27313a434c565f696f7c859298a2a39992867d6f6a5f574d443a3025190d0100010d1925303a444d575f6a6f7d869299a3a29892857c6e695e564c433a30271e140a00000000000000000000050d151c2227292a2d2d2d2d2d2d2d2524211f2426272d2d2d2d2d2d2d2726231f19120b0200000000000000000000000000000000000000000000000000000000000000000000000000000b17222d3846525e6875828e9ba8ada2978a7e7164574d42464646464646463f4a54626e7b88949fabaa9d9084776b6054443a2f24190d0100000000000000000000000000020d17202930363a3b404850565d60666d70737677787979787775726e6964605c545966727f8c99a5aea399877a6d6154473a2e211407000916222f3c4955626f7c8895a2afa4978b7e7164545c6064696e72747678797979787674716e68626058514b433b332921170d0300000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000005121e2b3845515e6b7884919e9e9184776b5e5144382b1e1105000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000013202d394653606c798686868686868686909494908686868686868686796c605346392d2013000e1b2734414e5a67748086868686868686868686868686868686868686868686868686868686868686868686868686868175685b4f4235281c0f000000060f181f262a2d2e3232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232312e29231b13090000000000000000000000000000000000000005111e2a36414c565e61696969696969696969696969696969696969696969615e564c41362a1e11050000000000000000000000000007121c2935414b55616e7a86929fa0968a7d7064585c66737f8c98a29f92857a6d60554b4030261c11060000000000000000000000020a11171e262e343c424a51585f626a6c6c6c6c6b6860564b3f33271b0f02000000000000000000000004101d2935404b55687378797979797979796f6a7378797979797979796f6a687378797979797979796f6a6054483b2e2215090000030e1a25313b454e5860696e767d8286898c8e8f90909191919292929399a4aa9d9084776a5d5144372a1e110400000000000b1825323e4b5865717e8b98a99e928578695f5341382d222b3744505b6575828f9cab998c7f7266594c3f3326190c000000000000000a141d263039434c565e686e7b859197a2a49a92877d706b60584e453b32281e130800000008131e28323b454e58606b707d879299a4a19791847b6e685e554b433930261c11060000000000000000040d171f272e3336373939393939393931302d2b303334393939393939393433302b241d140b010000000000000000000000000000000000000000000000000000000000000000000000000006111c2a36414c5663707d8996a0aca99c8f8276695e5246382d393939393844505c6673808d99a6aea2988b7f7265594f4332281e1308000000000000000000000000000000050e171f252a38404a525a61686d73797d8082848586868584817f7b77716d66605865717e8b98a4b4ab94887b6e6155483b2e221508000916222f3c4955626f7c8895a2afa4978b7e716460666d71777b7f8183858586858583817e7b756f6a605d554d453b33291f150b01000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000005121f2b3845525e6b7885919e9e9184786b5e5145382b1e1205000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000013202d394653606c7986939393939393939c9f9f9c9393939393939386796c605346392d2013000d1a26333f4c58646e747979797979797979797979797979797979797979797979797979797979797979797979797979756f65594d4034271b0e0000030d18212931363a3b3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3e3a342d251b11070000000000000000000000000000000000000714202d3946525e686e7676767676767676767676767676767676767676766e685e5246392d20140700000000000000000000000000000d18242f3a46525e6874818e99a49c9083766a60606d7984919ea3998d8073685d5243392f1e140a0000000000000000000000000000060c141c2328303940444e54555d606060605e5c564e443a2f23170b000000000000000000000000000c18242f39435761686b6c6c6c6c6c6c6c6260686b6c6c6c6c6c6c6c626061686b6c6c6c6c6c6c6c6260584e43382c1f130700000009141f29333c464e575f626c70757a7d7f8182838484848585858687939faa9d9084776a5d5144372a1e110400000000000e1b2734414e5a6774808d9aa79d9083766a574d422f261b27333f49536774808d9aa79b8f8275685c4f4235291c0f00000000000006111b262f38424b555d686e7a849197a1a49f93887e716b61594f463c332a20160c02000000020c16202a333c464f59616b717e87939fa3a19691847a6d675d554b42382e2317130a000000000000000b151f2931393f4244464646464646463e3d39363c3f4146464646464646413f3c362f261d120800000000000000000000000000000000000000000000000000000000000000000000000000000d1925303b4854606b7784919daaac9f93877b6e6153493f33272d2d2d3a4653606d7984919eabac9f92867a6d6054473d3221160c01000000000000000000000000000000020c16202c36404a525c646c717a8085898d8f9192929292908e8c88837e786f6a6264717d8a97a4aea195887b6e6255483b2f221508000916222f3c4955626f7c8895a2afa4978b7e71646a6f787e83888b8e909192939291908e8b86827c746d675e574d453b31271d1207000000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000005121f2c3845525f6b7885929e9e9185786b5e5245382b1f1205000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000013202d394653606c798689898989898989909595908989898989898986796c605346392d2013000b1724303c47525c64676c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c68655d53483d3125180c000009141f29333b4246484c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4c4a463f372d23180d0100000000000000000000000000000000000814212e3b4754616e7a8282828282828282828282828282828282828282827a6e6154473b2e211408000000000000000000000000000007131d2a36414c56626e7b87939f9f94887c6f6264717e8b97a19f92867b6e61564c4131271d0c02000000000000000000000000000000020a11171e272e343c434749515353535351504b443c32281d12070000000000000000000000000007121d2731454f575d5f6060606060606056545d5f606060606060605654575d5f6060606060606056544e463d32271b0f030000020e1a25313b454d5354575a6164686d7072747576777778787878797c8895a29d9084776a5d5144372a1e110400000000000f1c2936424f5c6975828f9ca89b8e8175685b4e42312817222d3f4c5865727f8b98a59d9083766a5d5043372a1d100000000000091217222d38414a545d676d7a839096a0a49c928b7f726c61594f473d342a21180e040000000000040e18212a343d464f59616c727f8b919ca4a0969083796d675c544a3f3428251c1209000000000006111c27313b434a4f51535353535353534b494541474c4e535353535353534d4c4740382f24190e030000000000000000000000000000000000000000000000000000000000000000000000000008141e2c38444f5965727f8c98a3aea4998c7f73655b5044372b1f2a36414c5663707d8a97a1ada79b8e8174685d5245392c2013040000000000000000000000000000000008131e28323e48525c646e737e858d9297999c9e9f9f9f9e9d9b9895908b847c726d64717d8a97a4aea295887b6f6255483c2f221509000916222f3c4955626f7c8895a2afa4978b7e716c717c838b9095989b9d9e9f9f9f9e9d9b99928f8781796e695e574d43392f23180c030000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000006121f2c3945525f6c7885929f9e9285786b5f5245382c1f1205000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a1723303d4a5663707d7d7d7d7d7d7d7d839090837d7d7d7d7d7d7d7d7063564a3d3023170a0008141f2b36414a52585a60606060606060606060606060606060606060606060606060606060606060606060606060605b59534b41372c20140800020e1a26313b454d535559595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959595959585651493f34291e120600000000000000000000000000000000000815212e3b4854616e7b878f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f877b6e6154483b2e2115080000000000000000000000000000010e1925303b47535f6975828f9ba69b8e8175686b7783909da49a8e8174695e52443a301f150b000000000000000000000000000000000000060c151c232832373b3c444646464645433f3a322a20160c0100000000000000000000000000010b151f333d454c505253535353535353494850525353535353535349484c5052535353535353534948433d342b21160a00000005121e2a36424d575e6163646566676663666869696a6b6b6b6b6c6f7b8895a29d9084776a5d5144372a1e11040000000000101d2a3643505d697682909ca79a8d8174675a4e4134271b25313e4b5864717e8b97a49d9184776a5e5144372b1e110000000008121b2427333f49535c666d79829095a0a59d928c7f736d625a50473e352b22180f0600000000000000060f18222b343d47505a626d727f8c929da59f958f82796d665c504440372e241b1208000000000a16222e39434d555b5d606060606060605856504a52585a606060606060605a58524a40362b1f13070000000000000000000000000000000000000000000000000000000000000000000000000002101c27333d4754616d7a86929facab9e9184786c6053463a2f242d3946525e6875828f9ba9aca095897c6f63564c4135291d1104000000000000000000000000000000010d1925303a44505a646e73808a92979ea1a9a9a8a19e9c9b9a9b9d9f9d9591877f736e717d8a97a4afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa4978b7e71717e8790959da09e9c9b9a9b9c9ea1a9aba39f9a938e847b6e695e554b4034292015090000000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000006131f2c3946525f6c7985929f9f9285786c5f5245392c1f1200000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000916222f3c4854606b70707070707070768390908376707070707070706b6054483c2f22160900030e1a242f3841474c4e53535353535353535353535353535353535353535353535353535353535353535353535353534f4d4841392f251a0f040005121e2a36424d575f616565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565625b51463a2e22160900000000000000000000000000000000000815212e3b4854616e7b87949c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c94877b6e6154483b2e21150800000000000000000000000000000008141e2b37424d57626f7c89949f9f92867b6e707d8995a09f93877c6f62574d4232281e0d0300000000000000000000000000000000000000030b121820262b2e2f37393939393837332f2820180f05000000000000000000000000000000030d212b333b404445464646464646463c3b4445464646464646463c3b404445464646464646463c3b38322b22190f040000000714212d3a46535e696e7071727374736d63545c5d5d5e5e5e5f626f7b8895a29d9084776a5d5144372a1e11040000000000111e2a3744515d6a7783909da69a8d8073675a4d4034271a24313e4a5764717d8a97a49e9185786b5e5245382b1f12000000060f1a242d363f44505b656d78828f949fa69e938d80746d635b51483e352c23191006000000000000000000061019222c353e48515b636d73808d939da59f948f81786d605c52493f362d241a0f060000000e1a27333f4a555f676a6c6c6c6c6c6c6c64625a525c64676c6c6c6c6c6c6c67645c52473c3023170b00000000000000000000000000000000000000000000000000000000000000000000000000000b16202d3946525d6875818e9ba7aca096897c7063554b4135292e3a4754616d7a86929facaa9d9084776b6054443a2f24190d0100000000000000000000000000000005111d2935414c56616c73808d929fa2a9aaa29f9996918f8e8d8e9092999d99928c8073717d8a97a4afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa4978a7e717e8892999e9896918f8e8d8e8f92979b9fa4aca49f9691847b6e675c51453c31261a0e0200000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000000000613202c3946535f6c7986929f9f9285796c5f52462e23170b00000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000713202c38444f5960636363636363697683909083766963636363636360594f44382c201307000008131d262f363c3f41464646464646464646464646464646464646464646464646464646464646464646464646464642403d372f271e130900000714212d3a46535f696e72727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272726d62564a3e3125180b00000000000000000000000000000000000815212e3b4854616e7b8794a1a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a194877b6e6154483b2e211508000000000000000000000000000000020e1a26313c4754606a7683909ca3998c807375828f9ca69c8f82756a5f53453b3020160c00000000000000000000000000000000000000000000070c151b1f22222a2d2d2d2d2b2a27231d160f0600000000000000000000000000000000000f1921292f343738393939393939392f2e3738393939393939392f2e343738393939393939392f2e2c2721191007000000000815212e3b4854616e7b7d7e7f7f807f73665b50505151515256636f7c8996a29c8f8376695c504336291d10030000000000111e2b3844515e6b7784919ea6998c807366594d4033261a24303d4a5763707d8a96a39f9285796c5f5246392c1f130000030e18212c363f48515b606c77818e949ea69e948e81776c605b52493f362c231a1007000000000000000000000007101a232c363f49515b646e74818e939ea69e938e81746e635b51483f362c21180e030000101d2936424f5b67717779797979797979716c6258646e7479797979797979746e64584c3f33261a0d000000000000000000000000000000000000000000000000000000000000000000000000000005111d2935414c56636f7c8995a0aca89b8e8174675d5145392c37434e5865727f8b99a3aea2988b7f7265594f4332281e1308000000000000000000000000000000000713202d3946525e68717e8a929da4ada79f98928d88848281818183868b91959f928b7f727d8a97a4afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa4978a7e7c86929a96918c8784828181818285898e939aa1a9a8a0969083796d60574e42372b1f140900000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000000000000000000000000000000006121f2b3844505c667986939f9f9286796c5f4a3f34281c1003000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000004101c27333d474f5456565656565d69768390908376695d5656565656544f473d33271c10040000010b141d242b30333439393939393939393939393939393939393939393939393939393939393939393939393939393534312c251e150c0200000815222e3b4855616e7b7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7265584c3f3225190c00000000000000000000000000000000000815212e3b4854616e7b87949f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f94877b6e6154483b2e211508000000000000000000000000000000000915202b38434e5863707d8a95a09e9285797b87939f9f94897c6f63584e4333291f0e040000000000000000000000000000000000000000000000040a0f1315161e202020201e1d1b17120c05000000000000000000000000000000000000070f171e24282b2c2d2d2d2d2d2d2d23222b2c2d2d2d2d2d2d2d2322282b2c2d2d2d2d2d2d2d23221f1b160f0700000000000b1724313e4a5764717d8a8b8b8c8d86786c60544c4a494a4e5764717e8b97a49b8e8275685b4f4235281c0f020000000000111e2a3744515d6a7783909da6998d8073665a4d4033271a24313d4a5764707d8a97a39f9285786c5f5245392c1f1200000915202a333e48505a636d73808d939ea69f948f82786d655b504940372d241a11080000000000000000000000000008111a242d374049525c606d78818f949fa59d938d80736d635a50483e332a2015090000111e2a3744515d6a7783868686868686867e71645a677480868686868686868074675a4d4134271a0e0000000000000000000000000000000000000000000000000000000000000000000000000000010d1924303a4854606b7783909daaac9f92857a6d6054473c313b4754606a7783909dabac9f92867a6d6054473d3221160c0100000000000000000000000000000004111d2935414c56616d7a85929ea4aea79f959086807b7875747475767a7e848c939992867c7d8a97a4afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa3978a7e839098938d847f7b777574747476797c81889297a1a9a89f958d80736a5f53473b30251a0e02000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000000000713202d3a4653606d79869aa49f938679665c5044382b1f1206000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b16212b353d44484a4a4a4a505d69768390908376695d504a4a4a4a48443d352b21160b00000000020b131a1f2426272d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d282725201a130c030000000a1724303d4a5763707d8a8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c86796c5f5346392c201300000000000000000000000000000000000815212e3b4854616e7b8793939393939393939393939393939393939393877b6e6154483b2e21150800000000000000000000000000000000030f1b27323d4653606c7883909da1978b7e808d9aa49c9083766b6054463c3121170d000000000000000000000000000000000000000000000000000003060809111313131312110f0b07010000000000000000000000000000000000000000060d13181c1e1f2020202020202016151e1f2020202020202016151c1e1f202020202020201615130f0a040000000000000814212e3b4754616e7a8793989998897d70665e56565657585f6975818e9ba7998c7f7266594c3f3326190c000000000000101d2a3643505d697682909ca79a8d8174675a4e4134271b24313e4b5764717e8a97a49e9184786b5e5245382b1f1200020f1a26313c46505a626d727f8c929da5a0959082796d665c53493f372e251b120800000000000000000000000000000008121b242e374044505c666d79828f959fa59c928c7f726c625a50463c31261a0f0200111e2a3744515d6a77849093939393938b7e71645a6774818d93939393938d8074675a4d4134271a0e00000000000000000000000000000000000000000000000000000000000000000000000000000008131e2c38434f5965727f8b98a2aea2988b7e7165574d4237404b55626f7c8895a0aca79b8e8174685d5245392c201304000000000000000000000000000000000713202c3945525d6873808d97a1adaa9f9590837b736e6969686768676d71797f87929890837e8a97a4afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa89b8e818e9593878079726e6969686768656c6f757d859297a2ada79f92877b6e62574d42362a1e1105000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0a49a86796d6053463a2d201307000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000050f19232b33383c3d3d3d43505d69768390908376695d50433d3d3d3c38332b23190f05000000000001080e14171a1b20202020202020202020202020202020202020202020202020202020202020202020202020201c1b18140f0902000000000a1724303d4a5763707d8a96989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989286796c5f5346392c201300000000000000000000000000000000000815212e3b4854616e7b8686868686868686868686868686868686868686867b6e6154483b2e21150800000000000000000000000000000000000a161f2b3744505b65717e8b96a19e918486929fa0958a7d7064594f43342a200f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002070c0f111213131313131313090911121313131313131309090f1112131313131313130909070300000000000000000714202d3946525e6875828f9aa49d9083786e6865636363656a6e7b86929f9f95887c6f6255483c2f2215090000000000000f1c2935424f5c6875828f9ba79b8e8174685b4e4130251a25323f4b5865727e8b98a59d9083776a5d5144372a1e110006121f2b37434e58616c717f8b919ca4a09690837a6d675d544a41382d251c1309000000000000000000000000000000000009121c2528343f4a545c676d79839095a0a49c918b7e716c61584e43372b1f120600111e2a3744515d6a7784909d9f9f9f978b7e71645a6774818d9a9f9f9f9a8d8074675a4d4134271a0e000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b27323d4754606d7a86929facaa9c908376695f53473845515c6774808d9aa7aca095897c6f63564c4135291d1104000000000000000000000000000000000714212d3a4754606d7a85929fa9aea2989083796e69625f575b5a555d60666d737e8692958f828f9ca8afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afaa9e938e9393877e736d67615e575b5a535b60626b707c85929fa6afa3998e8175695e52463a2d201408000000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000000000714212d3a4754606d7a8793a0a093867a6d6053473a2d201407000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000005101a232c33393c3d3d3d43505d69768390908376695d50433d3d3d3c39332c231a10050000000000000003080b0d0e13131313131313131313131313131313131313131313131313131313131313131313131313130f0e0c08040000000000000a1724303d4a5763707d8a969f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9286796c5f5346392c201300000000000000000000000000000000000714212d3a46535e697679797979797979797979797979797979797979797976695e53463a2d2114070000000000000000000000000000000000030f1b27333f4953606d7984919ea096919298a29d9184786c6053463d3220180e0000000000000000000000000000000000000000000000000000020507080c1011131311100c0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c56626f7c87939f9f958f827a757270707072757c849198a39a9083766a5f53473a2e2115080000000000000e1b2734414e5a6774818d9aa79c90837669574d42362a1e2733404d5a6673808d99a69c8f8276695c4f4336291c10000814212e3a47535f6a717e87939fa3a19691847a6e685d554b42382f261b130a010000000000000000000000000000000000000a1317232e38424b555d676d7a839196a1a39f92877e716a5f53473a2e21140800111e2a3744515d6a7784909daaaca4978b7e71645a6774818d9aa7aca79a8d8074675a4d4134271a0e000000000000000000000000000000000000000000000000000000000000000000000000000000000a16202c3945515d6774818e9aa7ab9f94887b6e62544a3f4653606d7985929fabaa9d9084776b6054443a3024190d0100000000000000000000000000000004111d2935414c5665727e8b98a2aeab9f92867b6e675e57534d4e4e4b51545c606c717e8a92948f949eaaafa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afafa59e9b958c7f736c605c55524d4e4e49505359606a717e8a949fabab9f92877b6e6154473b3025190e020000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000000000714212e3a4754616d7a8794a0a093877a6d6054473a2d211407000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000b17222c363e44494a4a4a4a505d69768390908376695d504a4a4a4a49443e362c22170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a93939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939286796c5f5346392c2013000000000000000000000000000000000005121e2a36424d575e6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5e574d42362a1e12050000000000000000000000000000000000000b17222d3844515c66727f8c97a2a09e9fa2a1968b7e71655b5044372b1f120600000000000000000000000000000000000000000000000003090e121415191c1e1f1f1e1c191514120e090300000000000000000000000000000000000105090b0b1313131307060400000105090b0b13131313070604000000000000000000000000000000000000000000000000010d1925303b4754606a73808d939f9e948f86817e7d7c7d7f82879196a09f93887d6f63584e43372b1f12060000000000000b1825323e4b5865717e8b98a99e918578695e52463a2d232b37424d576875828e9ba79a8d8074675a4d4134271a0e000815222f3b4855626e7b869299a4a29891847b6e685e564c433930261d140a01000000000000000000000000000000000000000006111c263039434b555e686e7b849197a2a39992867b6e6255483b2f22150800111e2a3744515d6a7784909daab1a4978b7e71645a6774818d9aa7b3a79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c55626f7c88959faba6998d8073665c50444d5764717e8a97a2ada2988b7f7265594f4332281e1308000000000000000000000000000000000713202c3945525d687683909caaaea3998c8073695e554d4742414140454a515a616c74808d979c9ea6b0afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afb7afa89d9083786d605a514b464241413f44464f58616c76828f9ca9afa3998c7f7266564c41362a1e11050000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000000000814212e3b4754616e7a8794a1a094877a6d6154473a2e211407000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000004101c28333e48505557575757575d69768390908376695d57575757575550483e33281c10040000000000000000000000000000000000000000000000000000000000000000050a0d0f101313100f0d0a05000000000000000000000000000000000a1724303d4a5763707d8686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686796c5f5346392c20130000000000000000000000000000000000020e1a25313b454d535f6060606060606060606060606060606060606060605f534d453b31251a0e0200000000000000000000000000000000000006111b2834404a54606d7a85929393939393939184796d6053493f33271b0f030000000000000000000000000000000000000000000002090e141a1e212226292b2c2c2b292521211e1a140e09020000000000000000000000000000060c111517182020201f1413100c070c111517182020201f1413100c07010000000000000000000000000000000000000000000008141e2b38434e58606d78818c92999f98928e8b89898a8b8f92999f98928b7f726b6054463c31261b0f030000000000000915222f3c4855626f7c8897a2a197877b6e6154483d342e303947535f697784919ea7978b7e7164584b3e3125180b000a1723303d4a5663707d8999a3ab9f92857b6f695e564c433a31271e150b02000000000000000000000000000000000000000000000a141e27303a434c565e696e7b85929faba398897d7063564a3d3023170a00111e2a3744515d6a7784909daaa89f978b7e71645a6774818d9aa7a09f9a8d8074675a4d4134271a0e00000000000000000000000000000000000000000000000000000000000000000000000000000000010d19242f3a47545f6a7783909da9ab9e9184796d605346525e6976828f9ca9ac9f92867a6d6054473d3221160c02000000000000000000000000000000000714212d3a4754606d7a86929facac9f92867a6d61574d433b37312f35394044505a606d7a85919eaab0b8afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afb9ada1968a7d70665c5045403936302d33373d46505a63707d8a97a1adab9d908377685e5246392d2014070000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000000000815212e3b4854616e7b8794a1a194877a6e6154473b2e211408000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000814202d3944505a616464646464646976839090837669646464646464615a5044392d201408000000000000000000000000000000000000000000000000000000000000030a11161a1c1d20201d1c1a16110a0300000000000000000000000000000916232f3c4855616b707979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979746a5e5145382b1f1200000000000000000000000000000000000009141f29333b4246485353535353535353535353535353535353535353534846423b33291f140900000000000000000000000000000000000000000c18232e3945515d67738086868686868686867f72665c5141382d22170b00000000000000000000000000000000000000000000050d141a1f262a2d2e32363839393836322e2d2a251f19140d050000000000000000000000000911181d2124252d2d2d2c201f1c1812181d2124252d2d2d2c201f1c18120b03000000000000000000000000000000000000000000020f1b27323d44505c666d777f868e92999a9b98969696989b9a98928e867f726d62594f44342a20150a000000000000000713202d3a4653606d7985929fa9988b7e7165594f443f3f3f424c56616e7b8896a0a095877b6e6154483b2e211508000a1723303d4a5663707d8996a1a9a2988b7e716b61584e463c332920160d03000000000000000000000000000000000000000000030c161f29323c454e58606b717e87939fa9a196897d7063564a3d3023170a00101d2a3743505d6a7683909d9e9b93938b7e71645a6773808d9aa19393938d8074675a4d4134271a0e000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e2b37434e5865717e8b97a2ada1968a7d7063564c54616e7b87939faca79b8e8174685d5245392c20130400000000000000000000000000000000000a1724313d4a5764707d8a99a3afa99c8f8276685e52453b312b2624292e343e45525d68727f8c98a2aebaafa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afb7ab9e9184786c60544a3f342e2a2522272b343e4653606c7885919eabac9f93877a6e6154473b2e2114080000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000000000000000000000000000815222e3b4855616e7b8894a1a194877b6e6154483b2e211508000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a1623303c4955616c70707070707070768390908376707070707070706c6155493c3023160a0000000000000000000000000000000000000000000000000000000000040d151c2226292a2d2d2a2926221c150d04000000000000000000000000000714202c38444f5961636c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6a62584d4135291d10000000000000000000000000000000000000030d17212931363a3b4646464646464646464646464646464646464646463b3a36312921170d03000000000000000000000000000000000000000007121c2935414b55636e737979797979797979726d62544a402f261b1106000000000000000000000000000000000000000000080e171f252a31363a3b3f4344464644433f3b3a36312a251f170e070000000000000000000009121b22292e3132393939392d2c29231d22292e3132393939392d2c29231d150d030000000000000000000000000000000000000000000a162028343f4a545c656c737b82868b8e909192929291908d8b86817b726d625b51473d3222180e040000000000000006121f2b3844505c6674808d9aa69c9083766b6157504a4c4c4e545d68737f8c99a89d908377695e53463a2d211407000814212e3b4754616e7a849197a2aa9f92877d706a60584e453b32281f150c0200000000000000000000000000000000000000020b151e28313b444d57606a707d879299a4a29791847a6e6154473b2e21140800101d293643505c6976828f9c938e8686867e7164596673808c9997898686868074675a4d4134271a0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000010f1b26323c4753606d7985929faba99b8e8275685d525966737f8c99a4aca095897c6f63564c4135291d110400000000000000000000000000000000000d1a2733404d5a6673808d99abb5ab988b7f7265564c4133291f1a181c232935414c56606d7a85929fabb8afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afb6ac9a8d8073665b5042382e231d1a171b222b3744505b6574818e9ba7afa49a8a7e7164574b3e312418070000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000000000010406070c0b0a09080815222f3b4855626e7b8895a1a194887b6e6155483b2e22150808090a0b0c07070501000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a1724313d4a5764707d7d7d7d7d7d7d7d839191837d7d7d7d7d7d7d7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000030d161f272d32353639393635322d271f160d0300000000000000000000000004101c28333e474f5557606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605f5e5850473c3125190d00000000000000000000000000000000000000050f171f252a2d2e3939393939393939393939393939393939393939392e2d2a251f170f05000000000000000000000000000000000000000000000d18242f3a43525c63666c6c6c6c6c6c6c6c65625b5142392e1d140a00000000000000000000000000000000000000000009111a202930363b4246484c4f515252514f4c4846423b36302920191109000000000000000006111b242d343a3d3e464646463a38342f272d343a3d3e464646463a38342f271f150b010000000000000000000000000000000000000000040b17232e38424a535b60696e757a7e8183848586858483817e7a756e69625b51493f352b211006000000000000000003101c28343f4a54626e7b88949e9f94897d7069605c5458595860666d7a85929fa1978b7f7265574d42362a1e1205000714202d3946525e686f7c859298a3a39992867d6f6a5f574d443a31271e140a000000000000000000000000000000000000000a141d27303a434c565f696f7c869299a3a29892857c6f685e5246392d201407000f1c2935424f5c6875828f9b8e81797979716c625965727f8c989285797979746e64584c3f33261a0d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151f2c3945515d6774808d9aa6ac9f92867a6d6154606b7784919eabaa9d9084776b6054443a3024190d010000000000000000000000000000000003101c28343f4a546975828f9ca8afa399887c6f6255493c3022170d0d1219242f3a45525d6875818e9ba8b4afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afafa49a897d7063544a3f30261c120e0b0f1b27333f495364717e8b97abb5ac9a8d8073675a4d402e23180c0000101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000000001080d11131419181716151415222f3c4855626f7b8895a2a195887b6e6255483b2f22151415161718181413110d080200000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000013202d394653606c79868a8a8a8a8a8a8a919595918a8a8a8a8a8a8a86796c605346392d2013000000000000000000000000000000000000000000000000000000000a151f2831383e4243464643423e3831281f150a000000000000000000000000000b16212c353e44484a5353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353514d473e352a1f14090000000000000000000000000000000000000000050d141a1e21212d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d21211e1a140d05000000000000000000000000000000000000000000000007131d2831404a52585a6060606060606060595751493f30271c0b02000000000000000000000000000000000000000009121b232b333b42464d5355595c5e5f5f5e5c5854534d46423b322b231b1209000000000000010c18222d363f454a4b535353524745403931363f454a4b535353524745403931271d120700000000000000000000000000000000000000000006111c263038414950575f62686d71747778787978787674716d68615f5751493f372d23190f000000000000000000000b17232e3847535f6a75828f97a29e92857b716d66666566676a6f78828f97a29e9285796d6053473b31251a0e020005111e2a36414c565f6a6f7d869299a3a29892857c6e695e564c433930261c1106000000000000000000000000000000000006111c262f39434c565e686e7b859298a2a39992867d6f6a5f564c41362a1e1105000f1b2835424e5b6875818e9b9083766c6c64625a5865727e8b989386796d6c67645c52473c3023170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b55626f7b88949faba3998b7e726557636f7c8996a0aca2988b7f7265594f4332281e1308000000000000000000000000000000000006121f2b3844505c667884919eabac9f9286796d6053463a2d2013070008131e2935414c5664717d8a97a8b2afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afac9f93867a6d6053473a2d20140a00000b17222d3c4855626f7b8899a4afa99c8f837669554b4034281c100400101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000000000040c13191d20212524232221201f222f3c4955626f7c8895a2a295887b6f6255483c2f221f20212223242521201d19130c04000000000000000000000203101d2a3643505d69768390908376695d5043362a1d1003020000000000000013202d394653606c798693939393939393939393939393939393939386796c605346392d201300000000000000000000000000000000000000000000000000000005111c27313a434a4e505353504e4a433a31271c110500000000000000000000000005101a232c33383c3d464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464645413c352c23190e0300000000000000000000000000000000000000000003090e1214152020202020202020202020202020202020202020201514120e0903000000000000000000000000000000000000000000000000010c161f2e3840474b4d53535353535353534c4a463f372d1e150b000000000000000000000000000000000000000007111b242d353d454d52575f6165696b6c6c6b6965615e57524d443d352c241b1107000000000005111d29343f485056586060605f53514b43393f485056586060605f53514b43392f23180c000000000000000000000000000000000000000000000a141e262f383f444d53565e6165676a6b6c6c6c6b696764605d56534d453f372d251b11070000000000000000000006111c2b37434e58616e7b85929fa19792857e797573727274777c838f949f9e938b7e71675d514539291f14090000020e1925303b444e58606b707e87929fa3a29791847b6e685d554b42382e23171309000000000000000000000000000000091317222d38424b555d686e7a849197a1a39f92877d706b60584e443b3025190e02000d1a2633404d596673808c99918477695e5856505663707d89969a877b6e615a58524a40362b1f1307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18242f3947535f6a7683909ca9ab9d908376695f6774818e9aa8ac9f92867a6d6054473d3221160c0200000000000000000000000000000000000713202d3a4653606d7986929facaa9e918477665c5145382c1f130600010d19242f3a4754616d7a8796a0acafa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afaa9e918477675d5145392c20130200000613202d3a4653606d7986939facab9e918478675c5145382c1f130600101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000000040d161e24292c2d3231302f2e2d2c292f3c4956626f7c8995a2a295887b6f6255483c2f292c2d2e2f3031322e2d29241e160e0400000000000000050a0f12101d2a3643505d69768390908376695d5043362a1d10120f0a05000000000013202d394653606c798686868686868686868686868686868686868686796c605346392d20130000000000000000000000000000000000000000000000000000000a16222d38434c545a5d60605d5a544c43382d22160a0000000000000000000000000008111a21282c2f3039393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393835312a231a11070000000000000000000000000000000000000000000000000205070813131313131313131313131313131313131313131308070502000000000000000000000000000000000000000000000000000000040d1c262e363b3f4046464646464646463f3e3a352d251b0c0300000000000000000000000000000000000000050e19232d363e474f575e61696e72767779797776726e69615e564f473e362c23190e04000000000915212e3a45505a62656c6c6c6c605c554b4045505a62656c6c6c6c605c554b4034291c1004000000000000000000000000000000000000000000020c141d262d333c42474c5254585b5d5e5f5f5f5e5d5a5854524c46423b332d251b13090000000000000000000000000f1a26313c46525e69717e8a939aa197928b8581807f7f80848890959f9f948e81756c62554b403529170d0300000008141e29323c464f59616c717e8b919ca4a19691837a6d675d544a3f3428251b12080000000000000000000000000008121b2528333f4a545c676d7a839096a0a49c918b7e716b61594f463c32291e140800000b1724313e4a5764717d8a9796877b6e6154474754616e7a8797978a7e7164544a4740382f24190e030000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2b37434e5864717e8a97a1ab9f95887b6e616d7985929faba79b8e8174685d5245392c2013040000000000000000000000000000000000000815212e3b4854616e7b8799a3afa99c8f827669544b4034281c100400000813202d3946525d687784919eaaafa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa89c8f827569554b4035291d1104000006131f2c3845515c677884919eabac9f9386796d6053463a2d20130700101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000000010c161f282f35393a3f3e3d3c3b3a38352f3c4956636f7c8996a2a295887c6f6255493c2f34383a3b3c3d3e3f3a3935302820160c0200000000010910161b1e20202a3643505d69768390908376695d5043362a20201e1b1610090100000013202d3946535f6c767979797979797979797979797979797979797979766c5f5346392d20130000000000000000000000000000000000000000000000000000010d1a26323e4a545e66696c6c69665e544a3e32261a0d01000000000000000000000000000810161c2023242d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2b29251f191108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141c242a2f3233393939393939393932312e29231b130900000000000000000000000000000000000000020c17202b353e48505960696e747b7f8284858584827f7b746e69605950483e352b20160c020000000b1724313d4a56626c71797979796d675c51454a56626c71797979796d675c5145382c1f130600000000000000000000000000000000000000000000020b141b222731373a4146474b4e505152535251504e4b4745413a36312a211b1309010000000000000000000000000a15202a36424d57616c727f8892979f9e97928e8c8b8c8d90959d9f99938d82796d605a5043392f24180500000000020d17202a343d47505a626c737f8c929da5a0959082796d665c504440372d241a1107000000000000000000000007111a242d373f44505b666d79828f95a0a59d928c7f726c62594f463d342a20170d0200000815222f3b4855626e7b8897978b7e7164574d46525e697885929a8e8174665c5044382c261d12080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010f1a26313c4653606d7985929eaca7998c7f7366717d8a98a2aca095897c6f63564c4135291d11040000000000000000000000000000000000000916222f3c4955626f7c8895abb5a79b8e8174685b4e412e23180c00000005111d2935414c566875828f9ba8afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa79a8d8174675a4e412f24180d01000004101c2834404b556a7683909da9afa49a887b6e6155483b2e22150800101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000008131e28313a4145474c4b4a49484745404443495663707c8996a3a295897c6f625649434440454748494a4b4b4746413a32281e1308000000010a131b21272b2d2d2d3643505d69768390908376695d5043362d2d2d2b27211b130a010000121e2b37434f5a646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e120000000000000000000000000000000000000000000000000000030f1c2935424e5a66707679797670665a4e4235291c0f030000000000000000000000000000050b1014161720202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201f1d19140e070000000000000000000000000000000000000000000002070a0c0d131313130e0d0b0803000407090a131313131006050300000000000000000000000000000000000000000000000000000000000000000000020a12191f2326272d2d2d2d2d2d2d2d2625221e181109010000000000000000000000000000000000000008131e29323d47505a626b707b81878c8f919292918f8b87817b706b615a50473d32281e13080000000b1825323e4b5865717e86868686796d6053474b5865717e86868686796d6053473a2d20140a0000000000000000000000000000000000000000000000020a11171f262b3035393a3e4144454546454543413e3a3935302a261f180f090100000000000000000000000000030e1a25303b45505a626d727e858d92989a9c9b9998999a9d9b99938f8780786d675c51483e31281d12070000000000050e18222b353e47505a636d74808d939ea69f948f82786d605c52493f362c23191007000000000000000000071019232c363f49525c606c78818f949fa69e938d80746d635a50473e342b22180e050000000713202d3a4653606d7985929b8f8275695f53464d566975828f9c9184796d6053463e31271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151f2c3845515c6773808d9aa4aa9d9184776a75828e9baaaa9d9084776b6054443a3024190d010000000000000000000000000000000000000a1623303d495663707c8996a3afa69a8d8073675a4d4034271a07000000010d192430414d5a6774808d9aa7afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa6998c807366594d4033261a07000000000c18232e424f5c6975828f9ca8b6ac95887c6f6255493c2f22160900101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013060000000000000000010d19242f3a434c5154585756555453514b504f4e5663707c8996a3a296897c6f63564e4f504b5153545556575854524c443a3024190d01000009131c252c33373939393943505d69768390908376695d50433939393937332c251c130900000f1b27333e49525a5f60606060606060606060606060606060606060605f5a52493e33271b0f000000000000000000000000000000000000000000000000000003101d2a3643505d69768286868276695d5043362a1d1003000000000000000000000000000000000407090a131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131312100d090300000000000000000000000000000000000000000000070e1316191a202020201b1a18140f0b10141617202020201d13120f0b0600000000000000000000000000000000000000000000000000000000000000000000080e1317191a2020202020202020191816120d070000000000000000000000000000000000000000010d1925303a444f59626c717d858e92999c9a98989a9c99928e857d716c61594f443a3024190d0200000a1723303d4a5663707d8993988a7d7063574a4a5663707d8993988a7d7063574a3d31261b0f03000000000000000000000000000000000000000000000000060b151a1e25292d2e32343738393939383634312d2c29241e1a140e060000000000000000000000000000000009141f29333e48515b626c707a80858a8d909192939291908e8b87827c736d665c554b40362d1f160c01000000000000061019232c353f48515b606c78818e949fa69e948e81746e635b51483e352b22190f0600000000000000060f18222b353e48515b636e74808d939ea69f948e81776c605b51483f352c221910060000000006121f2b3844505c6675818e9b93877b6e61574d4b5864717e8b98978a7e7164594f43392f23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b55616e7b87939faca095887b6f7985929faca3988b7f7265594f4332281e1308000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0a6998c807366594d4033261a0d00000000081926323f4c5965727f8c98a5afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa5988b7f7265584c3f3225190c00000000071b2835424e5b6875818e9ba8b0a396897d7063564a3d3023170a00101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201306000000000000000004111d2935414c555d606564636261605d555d5c5b5a63707d8996a3a396897c70635a5b5c5d555c606162636465615d564c4135291d11050005101b252e373e434646464646505d69768390908376695d504646464646433e372e251b1005000a16212c3740494f535353535353535353535353535353535353535353534f4940372c21160a000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a12191f2325262d2d2d2d282724201a161c2022232d2d2d2d2a201f1b17110a0200000000000000000000000000000000000000000000000000000000000000000002070a0c0d13131313131313130c0b09060100000000000000000000000000000000000000000005111d2a36414c56606b717e8792979e96918d8c8c8d91969e9792877e716b60564c4135291e130800000815222f3b4855626e7b88959a8d817467584e4855626e7b88959a8d817467584e43372b1f12060000000000000000000000000000000000000000000000000003090e13191d202125282a2b2c2c2c2b2a272521201d19130e09030000000000000000000000000000000000020d17202c363f49515a61686d73797d8083848586858583817e7b756f6a605c544b43392f241b0d04000000000000000007101a232d364044505b666d79828f95a0a69d938d80736d625a50473d342a21180d040000000000040d18212a343d47505a626d73808c929da59f958f82786d655b50493f362d231a1007000000000003101c28343f4a5463707d8995998d8074695e534754606d7a86929d9083766b61554b4034291c10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3946535f6976828f9ca9a7998c7f737d8a98a2ac9f92867a6d6054473d3221160c02000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a5998c7f7266594c3f3326190c000000000b1825323e4b5865717e8b98a4afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa5988b7e7265584b3f3225180c000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a00101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000613202c3945515d676d7271706f6e6d676b6a69686766707d8a96a3a396897d70666768696a6b676d6e6f7071726d685d5246392d201307000a16212c3740494f5353535353535d69768390908376695d5353535353534f4940372c21160a0005101b252e373e4346464646464646464646464646464646464646464646433e372e251b1005000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000000000000010406070a0d10111213131211100d0a07060400000000030505060606060606000000000000000000000000000000000000040613131313131313131312110e0904000000000000000a131c242a2f3233393939393433302b2521272c2f3039393939372d2b27221b140b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e68707d87929997918a84807f7f81848a92979992877d6f685d52453a3024190d01000714202d3a4753606d7a86979e9184786a5f534753606d7a86979e9184786a5f53473a2e21150800000000000000000000000000000000000000000000000000000002080d111314181b1d1e1f201f1e1d1b181413110d08020000000000000000000000000000000000000000050e1a242d373f4850565e61676d70747678797979787774716e68625f58504a423931271d12090000000000000000000008111b2428333f4a545c676d79839096a0a59c928b7f726c61594f463c332a1f160c01000000010c161f2a333c464f59616c727f8b929ca4a0969083796d665c53493f372e241b1108000000000000000b17232e394653606c7883909d92867b6e615a50515d6774818e99958a7d70675c5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d2b37424d5764717d8a97a1aa9d908377818e9baaa79b8e8174685d5245392c20130400000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1a5988c7f7265594c3f3226190c000000000b1824313e4b5764717e8a97a4afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa4978b7e7164584b3e3125180b000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3124180b00101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000714212d3a4754606d797f7e7d7c7b7a79787776757473727d8a97a3a3968a7d72737475767778797a7b7c7d7e7f7a6d6154473a2e211407000f1b27333e49525a5f60606060606069768390908376696060606060605f5a52493e33271b0f000009131c252c33373939393939393939393939393939393939393939393937332c251c130900000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000000000000000001080d111314171a1d1e1f1f201f1e1c1a171413100c07010c0f111213131313131309090703000000000000000000000001070c10132020202020202020201f1d1a150f08000000000007121c252e353b3f404646464641403c362f2b33383c3d46464646433937332d261d140a00000000000000000000000000050a0d0f10131313130b0a0805050a0d0f10131313130b0a08050000000000000000000000000000000000000000000000000000000000000005111e2a36414c56616d7a8592999691857e7774727274787e8591969992857a6d60564c4135291d11040006131f2c3945515d677885929e96887b6f625548515d677885929e96887b6f6255483c3025190d0100000000000000000000000000000000000000000000000000000000010507070b0e111212131212100e0b07070401000000000000000000000000000000000000000000000008121b252d363e444c52555c606467696b6c6c6c6b6a6865615e56544e443f3830271f150b000000000000000000000000091217222d38424b555d676e7a849197a1a49f93887e716b60584e453b31281d130700000007131d28313b454e58606b717e87939fa4a19691847a6d675d544a41382d251c1209000000000000000006121f2b3744505b65717e8a94988f82756c61554c55616e7b8692939184796d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a26313c4653606d7984919eaba095887b85929faba095897c6f63564c4135291d110400000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a5988b7f7265584c3f3225190c000000000b1724313e4a5764717d8a97a4afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa4988b7e7165584b3e3225180b000000010e1a2734414d5a6774808d9aa7b1a4978b7e7164584b3e3125180b00101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000815212e3b4854616e7b878a898887868584838281807f7e808d9aa7a79a8d807e7f808182838485868788898a887b6e6255483b2f22150800121e2b37434f5a646c6c6c6c6c6c6c6c7683909083766c6c6c6c6c6c6c6c645a4f43372b1e120000010a131b21272b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a0100000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000000003090e13191d20212427292b2b2c2c2c2b292724201f1c18120e181c1e1f2020202020201615130f0a040000000000000000030b12181c1f2d2d2d2d2d2d2d2d2c2c2a2620191209000000020e19242e3740474b4d535353534e4c484138353d44484a535353535046443f382f261b110600000000000000000000030a1016191c1d20202020181714111016191c1d20202020181714110c0600000000000000000000000000000000000000000000000000000000000714202d3946525e6874808d979891847b716c676565656c717b849198978d8073685d5245392c2013070004101d2935404b556a7783909d998c7f7266564c4b556a7783909d998c7f7266564c41362a1d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b242c323a41464b5153575a5d5e5f605f5e5d5b5854524d47433c342e261e150d030000000000000000000000000006111c262f39434c555e686e7b859298a2a49a92877d706a5f574d433a2f24180d0100010d18242f3a434d575f6a707d869299a4a29791847b6e685e554b42392f261b130a000000000000000000030f1b27333f4953616c7682868686867d7064574a535e69748086868686807366594d4033261a0d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2c3844505c6673808c99a4a79c8f828f97a2aa9d9084776b6054443a3024190d0100000000000000000000000000000000000000000b1824313e4b5764717e8a97a4b1a5988c7f7265594c3f3226190c000000000b1825313e4b5864717e8b97a4afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa5988b7e7265584b3f3225180c000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3124180b00101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130600000000000000000815212e3b4854616e7b8794969594989291908f8e8d8c8b8d929da9a99d928d8b8c8d8e8f9091929894959695887b6e6255483b2f2215080013202d3946535f6c767979797979797979839090837979797979797979766c5f5346392d2013000000010910161b1e202020202020202020202020202020202020202020201e1b161009010000000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000000000060e141a1e24292c2d3033363738393939383634302d2c29231d1a24282b2c2d2d2d2d2d2d23221f1b160f07000000000000030d151d23292c3939393939393939393836312b241b1208000007131f2a354049525759606060605b59534a413d474f5456606060605d53504941382d22170b000000000000000000040d151b212628292d2d2d2d2423211d1b212628292d2d2d2d2423211d171008000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a86929f92867c6e69615a59535b60696e7c86929f92867a6d6054473a2d21140700000c18242f424f5c6875828f9b9c908376685e524f5c6875828f9b9c908376685e5246392d20130700000000000000000000000106090b0c13131313130d0c0a070200050a0d0f1013131313130a0907040000000000000000000000000000000000000000000000000000000000000109111a20283035394045474a4d505152535252504e4b4746413b373228231c150c030000000000000000000000000000000a141d27303a434c565f696f7c869299a3a39992867c6f695f554b4035291d11040004111d2935404b555f696f7c869298a3a39892857c6f695e564c433930271d140a01000000000000000000000b17222d3841505a66707679797979706c6155494d57646e7479797979736e63574b3f3225190c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54616e7b87939fac9e948f949ea9a3988b7f7265594f4332281e13080000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a5998c7f7266594c3f3326190c000000000c1825323f4b5865727e8b98a5afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa5988b7f7265584c3f3225190c000000010e1b2834414e5b6774818e9aa7b0a4978a7d7164574a3e3124170b00101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693a0acac9f9286796c5f5346392c20130600000000000714202d3a4753606d7a8693a0acac9f9286796c5f5346392c20130600000000000000000815212e3b4854616e7b8794a1a2aaa29f9e9d9c9b9a99989a9da4aeaea49d9a98999a9b9c9d9e9fa2aaa2a195887b6e6255483b2f2215080013202d394653606c798686868686868686909494908686868686868686796c605346392d20130000000000050a0f1213131313131313131313131313131313131313131313120f0a0500000000000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000000000070f181f262a2f35393a3d404344454646454443403d3a38342f2a252f3437383939393939392f2e2c272119100700000000010b151f272f343846464646464646464645423d352d24190f04000a16232f3b47525c63666c6c6c6c67645d5346444f5960636c6c6c6c6a605b53493f33271b110600000000000000000d161f262d3235363939393931302d28262d3235363939393931302d28221a12080000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b99998c7f736a5f57504c4950575f6a73808d99988a7e7164574b3e3124180b0000071a2734414d5a6774808d9a9f93867a6d61544d5a6774808d9a9f93867a6d6154473a2e23180c00000000000000000000070d1216181920202020201a1917130e0a1015191c1d2020202020161613100b05000000000000000000000000000000000000000000000000000000000000080e161e25292f34383a3d4143454646464544413e3b3936302b262017110a0300000000000000000000000000000000020b151e28313b444d57606a707d87929aa4a29892857b6e675d5145392c201306000613202c3945515d676e7b859198a2a39992867d6f6a5f574d443a31281e150b02000000000000000000000006111b262f3e48545e66696c6c6c6c64615a504445525c64676c6c6c6c66635b52473b2f23160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17232e3846535e6975828f9ca8a69e9c9ea6ac9f92867a6d6054473d3222170b020000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a6998d8073665a4d4033271a0d000000000d192633404c5966737f8c99a6afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa6998c7f7366594c4033261907000000020f1b2835424e5b6875818e9ba8b0a3978a7d7064574a3d3124170a00101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a86939f9f9f9f9286796c5f5346392c20130600000000000714202d3a4753606d7a86939f9f9f9f9286796c5f5346392c20130600000000000000000815212e3b4854616e7b8794a1aaa29f9e9d9c9b9a999796999ca4aeaea49c999697999a9b9c9d9e9fa2aaa195887b6e6255483b2f2215080013202d394653606c798693939393939393969696969393939393939386796c605346392d2013000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000000030b1218212a31363a4145474a4d505152525352514f4d4a4745403936313a4044454646464646463c3b38322b22190f0400000007121d2731394045535353535353535353524e473f352b201509000c1925323f4b57636e7379797979746f64584e4854606b7079797979766c655b5044382d22170b0000000000000008111f2831383e4243464646463e3d393431383e4243464646463e3d39342c241a100600000000000000000000000000000000000000000000000000000f1c2835424f5b6875818e9b92867a6d61574e453f3f444e58616e7b87969b8e8174685b4e4135281b0e00000c1926323f4c5965727f8c98a4998b7e7164544a5965727f8c98a4998b7e7164544a4034281c100400000000000000010911181e2225262d2d2d2d2d2726231f19141b212628292d2d2d2d2d2322201c160f07000000000000000000000000000000000000000000000000000000000000040c13191d23292c2d31343638393939383735322e2d2a251f1b150c0600000000000000000000000000000000000000030c161f29323c454e58606b717e8893939393979184796d6053473a2d201407000714202d3a4753606d7984919793939392877e706b60584e453b32281f160c03000000000000000000000000000a141d2c36424c545a5c60606060575550483e414a52585a606060605957524940352a1e1307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e2834404b545c66707d8a96a3b0aaa8aab0a79b8e8174685d544a3f33281d140a0000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afa79a8d8174675a4e4134271b08000000010e1b2734414e5a6774818d9aa7afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa79a8d8174675a4e412e23180c000000030f1c2936424f5c6975828f9ca8afa296897c6f6356493c3023160900101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d7a8693939393939286796c5f5346392c20130000000000000714202d3a4753606d7a8693939393939286796c5f5346392c20130600000000000000000815212e3b4854616e7b87949594989291908f8e8d8c8b8a8c929ca8a89c928c8a8b8c8d8e8f90919298949595887b6e6255483b2f2215080013202d394653606c79868989898989898989898989898989898d929386796c605346392d2013000000000000000105070810101010101010101010101010101010101010101008070501000000000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000000030c151c2328333b42464c5254575a5c5e5e5f5f5f5e5c5a5753514b46423b454c50525353535353534948433d342b21160a0000000c18232f39434b515f606060606060605f5e5951473d31261a0e000d1a2633404d596673808686868681746a5f534a5663707d8686868683776c6053493f33271b0f030000000000050f1a23313a42494e50535353534b49453e3a42494e50535353534b49453e362c22170c0000000000000000000000000000000000000000000000000000111d2a3744505d6a7783909d908377685e52453c33333c46525e697784919c8f8276695c504336291d1000000b1724313e4a5764717d8a97ab9b8e8275665c515764717d8a97ab9b8e8275665c5144382c1f12060000000000000009131b23292e3132393939393933322f2a241f262d3235363939393939302f2c272119110700000000000000000000000000000000000000000000000000000000000002080d12181c1f2024272a2b2c2d2c2b2a282521201e19140f0a04000000000000000000000000000000000000000000040d17202a333c464f59616c727f868686868686867b6e6154483b2e211508000815212e3b4854616e7b868686868686867e716c61594f463c332920160d040000000000000000000000000000020b1a24313a42494e50535353534a49443e363841474c4e535353534d4b4740372e24190e0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303945515c666d78808d99a6a3a0a0a1a4a89c8f82756c665b50443e2f261b110600000000000000000000000000000000000000000815222e3b4855616e7b8894a9b3a89b8f8275685c4f423025190e02000005121e2a36424d576976828f9ca9afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa89b8f827568544a4034281c1004000004101c2934404b556a7683909da9b4aa95887b6f6255483c2f22150900101d2a3643505d69768390908376695d5043362a1d1000000000000000000714202d3a4753606d798686868686868687796c5f5346392c140c0200000000000714202d3a4753606d798686868686868687796c5f5346392c20130600000000000000000815212e3b4854616e7b878a8887868584838281807f7e7d808c99a6a6998c807d7e7f80818283848586878889887b6e6255483b2f221508000a1723303d4a5663707d7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d808d9386796c605346392d2013000000000002080d1114141c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1414110d080200000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000000000b151e272e343f454d53565d606366696a6b6c6c6c6b696763605c55534d444f575c5f60606060606056544e463d32271b0f030004101c2934404b555c6c6c6c6c6c6c6c6c6c6a63594e42362a1d11000714202d3a4753606d7984919392877b6e62564c54606b75818e98958a7e71655b5044372b1f120600000000000b16212b35424c545a5c6060606057555048424c545a5c60606060575550483e34281d110500000000000000000000000000000000000000000000000000121f2b3845525e6b7885919b8f827568564c41332a2a36424d566976838f9c9184776a5e5144372b1e1100000916232f3c4956626f7c8995ab9f9285796d605356626f7c8995ab9f9285796d6053463a2d20130900000000000007111b252d353a3e3f4646464646403f3b352e2830383e424346464646463d3b38332b23190f050000000000000000000000000000000000000000000000000000000000000001070c101314171a1d1e1f201f1f1d1b181414110e0802000000000000000000000000000000000000000000000000050e18212b343d47505a626d727979797979797976695e53463a2d211407000714212d3a46535e697679797979797979716c625a50473d342a21170e050000000000000000000000000000000008121f2831383e4243464646463d3c39332c2f363c3f4146464646403f3b352e251c1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e3943505a606d78828d929c9c97949394979d9e948e81786c60594f41382d22170b00000000000000000000000000000000000000000714202d3a4753606d7a8697a1ada99d9083766a564d41362a1e110500000714202d3a46525e697885919eabafa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afaa9d908477665c5144382c1f1206000006131f2c3845515c677884919eabaea298877a6d6154473a2e21140700101d2a3643505d69768390908376695d5043362a1d10000000000000000006131f2c3845515c67767979797979797979756a5e52452e261e140a000000000006131f2c3845515c67767979797979797979756a5e5245382c1f120600000000000000000714212d3a4754606d797e7d7c7b7a7978767574737271727f8c98a5a5988b7f7271727374757678797a7b7c7d7e7a6d6054473a2d211407000916222f3c4854606b707070707070707070707070707070727e8b9386796c605346392d201300000000050d14191e202129292929292929292929292929292929292929292921201e19140d05000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000000007121c273039404451575f61686d7073767778797978777673706d67615e57505761686b6c6c6c6c6c6c6260584e43382c1f13070006131f2c3845515c67767979797979797979756a5e5245382c1f120006131f2c3845515c67707d8a95998e8275685e524f59616e7b86929d9184786c605346392d22170b0000000004101c27333d47545e66696c6c6c6c64615a5047545e66696c6c6c6c64615a5045392d21140800000000000000000000000000000000000000000000000000121f2b3845525e6b7884919b8f827568564c4135292a36414c566976828f9c9184776a5e5144372b1e1100000814212e3b4754616e7a8799a3a297897c70635654616e7a8799a3a297897c706356493d31261a0e0200000000010d18232d373f464a4c53535353534d4b474038303a42494e5053535353534948443d352b21160b000000000000000000000000000000000000000000000000000000000000000000000406070a0e101213131312110e0b08070502000000000000000000000000000000000000000000000000000000060f19222b353e48515b62656c6c6c6c6c6c6c6c5e574d42362a1e12050005121e2a36424d575e6c6c6c6c6c6c6c6c65625a50473e352b22180f050000000000000000000000000000000000000d161f262d3235363939393931302d2822242b3033343939393933322f2a241c130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b55616c75818e949c94908a8786878a90959d938d80746b6153493f33271b0f030000000000000000000000000000000000000006131f2c3945515d677885919eabab9f928578685e5246392d20140600000815212e3b4854616e7b8797a1adafa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afac9f9286796d6053463a2d20130900000714202d3a4753606d7a86939facac9f928579685e5246392d20130700101d2a3643505d69768390908376695d5043362a1d10000000000000000004101c2934404b555c6c6c6c6c6c6c6c6c6c6a6359443f3830261c110600000006111c263038404b555c6c6c6c6c6c6c6c6c6c6a63594e42362a1d110400000000000000000613202c3945515d676d71706f6e6d676b6a696867666673808c99a6a6998c7f7366666768696a6b676d6e6f70716d685d5245392c201307000713202c38444f5960636363636363636363636363636365727e8b9386796c605346392d2013000000050e171e252a2d2e3636363636363636363636363636363636363636362e2d2a251e170e050000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000000000c18232e39424a515b63696e747a7d808384858586858482807d79746e69605b536873787979797979796f6a6054483b2e221509000714202d3a4753606d798686868686868687796c5f5346392c20130004101c2934404b55616b7683909d92867a6e615447525e6974808d9995897d7063544a3f33281c0f030000000714202c38444f5966707679797979716c61554f5966707679797979716c6155493d3023170a00000000000000000000000000000000000000000000000000111d2a3744505d6a7783909d908377685d52463c33333b46525e687784919c8f8276695c504336291d1000000613202d394653606c7986929fa99a8d8073675753606c7986929fa99a8d807367574d42372b1e12060000000006121e29353f4951575960606060605a57524a4038424c545a5c606060606056544f473d33271c10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101a232c363f49515658606060606060605f534d453b31251a0e0200020e1a25313b454d535f60606060606060585650483f352c2319100600000000000000000000000000000000000000040d151c212629292d2d2d2d2423201c171a1f2426272d2d2d2d2625231e19120a010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c67717e8b939c928c837d7a797a7e838e939d928a7d70655b5044372b1f12050000000000000000000000000000000000000004101d2935404b55697683909ca9ada297877a6e6154473b2d22170b0107111e2a36414d5665717e8b98a9b3afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afaea399887c6f6255493c31261a0d06030615222f3c4855626f7b8899a4afaa9d9084776a564c41362a1e110500101d2a3643505d69768390908376695d5043362a1d100000000000000000000c18232f39434b515f6060606060606060605f5e504a42382e23170b0000000b17232e38424a505e5f60606060606060605f5e5951473d31261a0200000000000000000004111d2935414b555d6064636261605d555d5c5b5a5a6774818d9aa7a79a8d8074675a5a5b5c5d555d6061626364605d564c4135291d11040004101c27333d474f54565656565656565656565656565865727e8b9386796c605346392d20130000020d1720293036393b4343434343434343434343434343434343434343433b3936302920170d0200000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000004101c2834404a545c606d727b81868a8d8f9191929292918f8d8a85807b726c655c6b78858686868686867c6f6256493c2f231609000714202d3a4753606d7a8693939393939286796c5f5346392c201300000c18232f39434f5964717e8a97998b7f7265554b4d56616e7b87929b8e8175665b5044382b1f12060000000916222f3c4854606b7682868686867e71645754606b7682868686867e7164574b3e3124180b000000000000000000000000000000000000000000000000000f1c2835424f5b6875818e9b92867a6d61574d453f3f454e57616e7a87939b8e8174685b4e4135281b0e000005121f2b3744505b657784919eaa9d918477695f535b657784919eaa9d918477695f53473a2d211408000000000916222e3a46515b62656c6c6c6c6c66635c52473e49545e66696c6c6c6c6c6360594f44382c201307000000000000000000000000000000020507080c10121312110f0c080705020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a242d373f464a4c535353535353534846423b33291f140900000009141f29333b424648535353535353534b4a453f362d231a1107000000000000000000000000000000000000000000030a1016191c1d20202020171614100b0e14171a1b202020201a1916130e070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7984919e938c8076706d6d6e7178818e949d9083786c605346392d20130600000000000000000000000000000000000000000c18242f414d5a6774808d9aa7b3a9978a7d706453493f33271b100d1218252d3946525e6875828f9ca8b5afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afb5ab998c7f7266574d42372b1f15120f121c2834404a5465717e8b98abb5a89b8e8175685b4e423025190d0100101d2a3643505d69768390908376695d5043362a1d100000000000000000040c131d2731394045534d545b60666c6c6c6c6c6a5c544a3f34281c10030003101c28343f4a545c6a6c6c6c6c6c66605b544d524e473f352019130c040000000000000000010d18242f3a434b51545857555453514b504f4e4f5b6875828e9ba8a89b8e8175685b4e4e4f504b51535455565854524c443a2f24190d0100000b16212b353d44484a4a4a4a4a4a4a4a4a4a4a4a4b5865727e8b9386796c605346392d2013000008141e29323b4146474f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4f4746413b32291e140800000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000000030e18212c3844515c666d757f878d9298999c9d9e9f9f9f9e9c9a98928d867f776d666679869293939393887b6e6255483b2f221508000714202d3a4753606d7a86939f9f9f9f9286796c5f5346392c2013000007121d27313e4653606d7984919d908376675d5146535e6975828f9b9285796c605346392d201306000006131f2b37434e5863707d8994998f82766c61555863707d8994998f82766c6155493d3023170a000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b99998c7f72695f57504c4c50575f6a73808c9a988a7e7164574b3e3124180b0000030f1b27333f49536976838f9ca9a096887b6e6155536976838f9ca9a096887b6e6155483b2f24190d010000000b1825313e4a57626d727979797979736e63574b424e5a6670767979797979706b6054483b2f2216090000000000000000000000000003090e121415191d1e1f1f1e1c181414110e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121b252d343a3e3f464646464646463b3a36312921170d03000000030d17212931363a3b464646464646463e3d3a342d241b1108000000000000000000000000000000000000000000000000050a0d0f10131313130a0a08040003080b0d0e131313130d0c0a0702000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96998e81756e64616061666d78828f9c95897c6f6256493c2f2316090000000000000000000000000000000000000000071825313e4b5864717e8b97a8b2a79a8d8074655b5044372b221c191d242a36414c56616e7b86929facb9afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afb6a99c908376695f53473c3127201f1c1f232c3844515c6675818e9ba8b3a9988c7f7265594c3f322619080000101d2a3643505d69768390908376695d5043362a1d1000000000000001070e161e2529323b424651575f666c72797979797975665c5044382b1f12060006121f2b3844505c66757979797979726c665f575146423b3229251e160e07010000000000000007131d28313a4145474b4a4948474540434243505c6976838f9ca9a99c8f8276695c4f43424340454748494a4b4745413a32281e1308000000050f19232b33383c3d3d3d3d3d3d3d3d3d3d3d3f4b5865727e8b9386796c605346392d201300010d1925303b444c52545c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c54524c443b3025190d01000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000000915202c38434f59606d78818c92999fa2aaa9a8aaa29f9e9e9e9fa29f98928c81786d6d798699a39f9f94877a6e6154473b2e211408000714202d3a4753606d7a8693a0acac9f9286796c5f5346392c2013000008121d262c3844505c6674818e9b92867a6d6053474d5765717e8b9897887b6e6255483b2f22150800000815212e3b47535f6a7683909d92867b6e615a535f6a7683909d92867b6e615a5045392d211408000000000000000000000000000000000000000000000000000814212e3b4754616e7a86929f92857b6e69615a59595a61696e7c86929f92867a6d6154473a2e2114070000000b17222d414e5b6874818e9ba7a8988c7f7265555b6874818e9ba7a8988c7f7265554c4135291d11040000000c1926323f4c5965727f86868686868073665a4d43505c69768286868686867d706356493d3023160a000000000000000000000002080e141a1e212226292b2c2c2b292521201e19140d0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b23292e3132393939393939392e2d2a251f170f050000000000050f171f252a2d2e3939393939393932312e29221b12090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9a93877b6e615c5453545c666f7c8997998c807366594d4033261a0d00000000000000000000000000000000000000000815212e3b4854616e7b8796a0acab9e9184786c6053463e342c2924292f353e46525e6873808c99a3aebbafa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afb7ab9f94887b6e62574e4339312d2b282b2e343f4953606d7985929fabada297897c6f6356493c302316090000101d2a3643505d69768390908376695d5043362a1d100000000000040c1318202830353e444d525b62696e787f8686868687796d6053463a2d201307000713202d3a4653606d7987868686867f786e69625b524d443e3530282018130c04000000000000010c161f282f35393a3e3d3c3b3a38352f3744515d6a7784909daaaa9d9083776a5d50442e2f35383a3b3c3d3e3a39352f2820160c0100000005101a232c33393c3d3d3d3d3d3d3d3d3d3d3d3f4b5865727e8b9386796c605346392d20130005111e2a36414c565e61696969696969696969696969696969696969696969615e564c41362a1e1105000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000000020e1a26313b4854606b74808d939fa3ababa49f9b979892919192939a989d9f938f82786d7a8794abb4a094877a6d6154473a2e211407000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201300030e19242f3840474a5464717e8a9799897c6f6256494854616e7b8796978a7d7164574a3e3124170b00000916222f3c4955626f7c88959b8e8174695f5355626f7c88959b8e8174695f53483e34281d1105000000000000000000000000000000000000000000000000000714202d3946525e6874808d979891837b706c676565676c717b849198978d8073685d5246392d201307000000061a2633404d596673808c99a6a99c8f8276675d596673808c99a6a99c8f8276675d5145392c2013060000000d192633404c5966737f8c9393938d8074675a4d43505d6a7683909393938a7d7064574a3d3124170a00000000000000000000050d14191f262a2d2e32363839393836322e2d2a251e19130c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010911181e2225252d2d2d2d2d2d2d21211e1a140d0500000000000000050d141a1e21212d2d2d2d2d2d2d2524211d18110900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004060709090909090909090706030000000000000000000000000000000000000000000000000000000000000000000003101c2936434f5c6976828f9c908377695e5247464a54606a7885919b8e8175685b4e4235281b0f02000000000000000000000000000000000000000714212d3a46535e697784919eaaaca196897d70635a50463e38343035394045515b616e7a85929fabb2baafa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afbdb0a69a8d81746a5f554b433c39383338393f44505b65717e8a97a2adab9f9285796d6053463a2d2013070000101d2a3643505d69768390908376695d5043362a1d1000000000070d161d2429323a414650565e616d727b828c929992877e71665c5044382b1f12060006121f2b3844505c66717e879399928c827b726d615e565046413a3229241d160d07000000000000040d161d24292c2d31302f2e2d2c292935404b556b7884919eabaa9e9184776b544a403428292c2d2e2f30312d2c29241e160d04000000000b17222c363e44494a4a4a4a4a4a4a4a4a4a4a4a4b5865727e8b9386796c605346392d2013000714202d3946525e686e7676767676767676767676767676767676767676766e685e5246392d201407000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000006121e2b37424e57636f7c87939fa5afa9a199938f8a878584848586888c90959e948d80747b8794a1ada093877a6d6054473a2d211407000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130007131f2b36404a52585a616e7b879a978a7e7164575055575e69788491998c7f7366594c403326190d0005121e2a36424d576673808d9994887c6f62574d576673808d9994887c6f62574d42362c22170c000000000000000000000000000000000000000000000000000005111e2a36414c56616d7a8592999591847d7774727274777e8591969992857a6d61564c4135291d11050000000b1825323e4b5865717e8b98a4ac9f92867a6d605865717e8b98a4ac9f92867a6d6054473a2d22170b0000010d1a2734404d5a6773808d9a9f9b8e8174685b4e44515e6a7784919d9f978a7e7164574b3e3124180b000000000000000000070e171f252a31363a3b3f4345464544423f3b39363029241e160d060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070d12161819202020202020201514120e090300000000000000000003090e12141520202020202020181715110c060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c10131316161616161616161312100c06000000000000000000000000000000000000000000000000000000000000000004111d2a3744505d6a7783909c8f827569574d423a424e586a7783909c8f8276695c4f4336291c10030000000000000000000000000000000000000005121e2a36424d576673808d99a6b0a89c9083766c6258504745404241464b515a626d75818e989ea0a8b2afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afb5aba39f92877b6e675d554e4846443f44464a5059606c7883909da9b1a89b8e8175665c5044382b1f12060000101d2a3643505d69768390908376695d5043362a1d100000000710191f282f353e444c525a61696e767f8690949a93877e716c61544a3f34281c10030003101c28343f4a54616c717e87939a9490867f766e69615a524c443e352f281f191007000000000000040c13181d202125242221201f1f2c3845515d677985929facab9f928578665c5144382c1f1f202122232521201d19130c040000000004101c28333e485055575757575757575757575757575865727e8b9386796c605346392d2013000814212e3b4754616e7a8282828282828282828282828282828282828282827a6e6154473b2e211408000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000814212e3a47535f6a76828f9aa4afaba1979287827d7a79787778797b7f838a9196928a7e7b8895a1ada093867a6d6053473a2d201407000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000b1723303c47525c64676c6d798693998c7f7266595a61646c6c7683909b8e8174685b4e4135281b0e000714212d3a46535e697884919c8f82766a5f53535e697884919c8f82766a5f53453c31241a10060000000000000000000000000000000000000000000000000000020e1925303b46525e68707d87929996918a84807f7f81848a91979992877d70685e52443a3024190d010000000a1723303d4a5663707d8996a3aea3998a7d71645463707d8996a3aea3998a7d7164544a3f33281c0f0300010e1b2734414e5a6774818d9aa79b8e8275685b4f45515e6b7884919ea5988b7e7265584b3f3225180c0000000000000000081019202930363b4246484c50515252514f4b4746413b352f282018100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000106090b0c13131313131313080705020000000000000000000000000002050708131313131313130b0b09050100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181c1f202323232323232323201f1c17110a0300000000000000000000000000000000000000000000000000000000000003101d293643505c6976838f9c908376675d51464446535f697884919b8e8275685b4f4235281c0f0200000000000000000000000000000000000000020e1a25313b4855626e7b88949eacab9f948b7e716a615a53514b4e4c52555d606c727f8b93969196a0acafa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afafa39992999083796d6760585553504a5053545c606b727f8b95a0acaca095897d7063544a3f34281c10030000101d2a3643505d69768390908376695d5043362a1d100000040f19222b313a41454f565e616c717b828b92989a93887e716c615a5042382e23170b0000000b17232e3842505a616c717e88939a98928b827b716c615e564f45413a312b22190f0400000000000001070d111314181716151414202d3a4753606d7a8698a2aeaea29886796d6053463a2d201314151617181413110d080100000000000814202d3944505a61646464646464646464646464646465727e8b9386796c605346392d2013000815212e3b4854616e7b878f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f877b6e6154483b2e211508000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000815222f3b4855626e7b88949facaea39992857d75716e686b6b666d6e72767d84909492857d8996a3aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000d1a26333f4c58646e7479797985929a8d8073675a616c71797979828f9b8f8275685c4f4235291c0f000815212e3b4854616e7b8796988c7f7265584e54616e7b8796988c7f7265584e433b33291f140900000000000000000000000000000000000000000000000000000008141e2a36414c56606b717e8792989e96918d8c8c8d91969e9892877e716b60564c4132281e1308000000000815222f3b4855626e7b8895a99f9f9b8e8174665b626e7b8895a99f9f9b8e8174665b5044382b1f120600020e1b2835414e5b6874818e9ba79c8f8276695c4f45525f6b7885929ea5988c7f7265594c3f3226190c0000000000000008111a222b323b41464d5355595c5e5f5f5e5c5854524c45413a322a2219100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151d23282c2d30303030303030302d2c28231c150c030000000000000000000000000000000000000000000000000000000000020f1b2835424e5b6875818e9b92867a6d605a5351535b616e7b88969a8d8073675a4d4034271a0d0100000000000000000000000000000000000000000914212e3a47535f6975828f9aa4afa69f92867d716c64605c555b565d61676d737e8792989184919eaaafa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afac9f928692958f81796f6a6462605b545b6062666d727d87929fa7b0a69d9184786c605346392e23170b000000101d2a3643505d69768390908376695d5043362a1d1000000a16212b343d434b515961686d757e858f949f9f93887f716c625a50483e30261c110600000006111c26303e48505a626c717f88939f9f948f857e756d686159514b433d342b21160a0000000000000000010406070b0a09080815212e3b4854616e7b8794aab4b3aa94877a6e6154473b2e21140808090a0b07070401000000000000000a1623303c4955616c707070707070707070707070707070727e8b9386796c605346392d2013000815212e3b4854616e7b87949c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c94877b6e6154483b2e211508000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000000d192633404c5966737f8c99a6b0ac9f92877c6f6b64615e56545c6062656c707a8290949083909daaaca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a67748086868689979a8d8174675a64717e8686868f939c8f8276695c504336291d10000a1724313d4a5764707d8a9798887b6e6255525764707d8a9798887b6e6255524d453b30251a0e020000000000000000000000000000000000000000000000000000020d1925303a444f59626c717d868e93999c9a98989a9c99938e857d716c62594f443a3020160c02000000000714202d3a4753606d7a8697939393939285796c60606d7a8697939393939285796c605346392d20130600020f1c2935424f5c6875828f9ba89c908376695d5044505b667985929fa6998c807366594d4033261a0d00000000000006101a232c343d444d52575f6165696b6c6c6b6965615e56524c443c342b22190f0500000000000000000000050a0d0f1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010100f0d09040000000000000000000000050a0d0f1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010100f0d090400000000000000000b151e272e34383a3c3c3c3c3c3c3c3c3a38342e261e150a0000000000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b98988d80736d63605c60636d75818e9b97897d7063564a3d3023170a00000000000000000000000000000000000000000006121e2b37424d57626f7c87939fa7aea29892867e76706d67686869686d72798088929992867e8a97a4afa295887c6f6255493c2f221609000916222f3c4955626f7c8895a2afa6998c7f8c93938f837c76716e6c666b666c6e72787f879299a3aea99f948a7e71665b5044382b1c1106000000101d2a3643505d69768390908376695d5043362a1d1000030f1b27323d464e555d606b707a818a92979f9b918b7f726d625a50483e362c1e140a00000000000a141e2c363e48505a626d727f8b919b9e97928a817a706b605d554e463d32271b0f030000000000000000000000000000000915222f3c4855626f7b8895a2aeaea195887b6e6255483b2f2215080000000000000000000000000000000a1724313d4a5764707e7d7d7d7d7d7d7d7d7d7d7d7d7d7d7d808d9386796c605346392d2013000815212e3b4854616e7b8794a1a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a194877b6e6154483b2e211508000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d1003000000000000000005111e2a36424d576976838f9ca9b1a79a8d80736a605954524c4a5053555a61676d798290959095a0abaca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a6774808d939393a19a8e8174675b64717d8a93939b9e9d9083766a5d5043372a1d10000c1926333f4c5966727f8c999285796a63615e5766727f8c999285796a63615e574d42362a1e110500000000000000000000000000000000000000000000000000000008131e29323d47505a626b707b81878c8f919292918f8c87817b706b625a50473d32281e0e04000000000006131f2c3945515d677885868686868686867c6f625d677885868686868686867c6f6256493c2f2316090003101c2936434f5c6976828f9ca99d9084776a5d514653606c798698a3a69a8d8073675a4d4034271a0d0100000000020c18222c353e474f565e61696e72767879787775726e68605d564e463d342b21170b0200000000000000030a1016191c1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1c1b1915100a0200000000000000030a1016191c1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1d1c1b1915100a02000000000007121d273039404546494949494949494946443f3830261c110600000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929f93887f756f6d666d7076808c939e9185796d6053463a2d201307000000000000000000000000000000000000000000020e1a26313c4754606a74818d95a0a9aaa298928a827d7977757575777a7f848d939a948c7f7c8895a2afa295897c6f6256493c2f231609000916232f3c4956626f7c8995a2afa296897d818e96959087827e7b79787778797b7f848c9299a3abaaa2978f82776c60544a3f33281c0a00000000101d2a3643505d69768390908376695d5043362a1d100007131f2c38434e5860676d747d858e939fa29b918b7f726d625a50483f362d241a0c020000000000020c1a242d363f48505a626d727f8b919ba29f938e857d746d6760584e43382c1f13070000000000000000000000000000000a1623303d495663707c8996a3acaca296897c6f6356493c3023160900000000000000000000000000000013202d394653606c79868a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8d929386796c605346392d2013000815212e3b4854616e7b87949f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f94877b6e6154483b2e211508000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000714202d3a46525e697885929fabaca095877b6e61584f4746413f44464850555d676e7b85929da0a7b1aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a6774808d9a9fa0a79b8e8174685b64717d8a979fa8aa9d9084776a5d5144372a1e11000e1a2734414d5a6774808d9a91847770706e695e6774808d9a91847770706e695e52463a2d201407000000000000000000000000000000000000000000000000000000020d17202b353f48505961696e747b7f8284858584827f7b746e69615950483f352b20160c00000000000004101d2935404b55687378797979797979796f6a6055687378797979797979796f6a6054483b2e2215090003101d2a3643505d697683909ca99e9184776b5e514754606d7a8793aaa79a8d8174675a4e4134271b0e01000000000a141e2a343e474f5960686e747b7f8384858584827e7a736d685f584f473d33291d140a000000000000040d151c2126292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292825211b140c040000000000040d151c2126292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292825211b140c04000000000c18232e39424b5153565656565656565653504a42382e23170c00000000000000000000000000000000000000000000000000000000000713202d3946525e6873808c959a938b817c7978797d828c929c948b7e71665c5145382c1f13060000000000000000000000000000000000000000000009151f2b37434e58606d79839197a0a8aaa29f948f8a868382818284878b91969f958f82787b8894a1aea296897c6f6356493c3023160900091623303c4956636f7c8996a2aea295887c7a84919899938f8b888685848486888c91969fa3aba9a29892857b6e655b5042382d22170b00000000101d2a3643505d69768390908376695d5043362a1d10000915222e3b4854606a6f79818a91979ea39c918c7f726d625b51483f362d241b12080000000000000008121b242d363f48515b626d727f8c919ca39e97918a81796f6a6054483b2e2215090000000000000000000000000000000b1724313e4a5764717d8a979f9f9f9f978a7d7064574a3d3124170a00000000000000000000000000000013202d394653606c798693939393939393939393939393939393939386796c605346392d2013000815212e3b4854616e7b8793939393939393939393939393939393939393877b6e6154483b2e211508000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000814212e3b4754616e7b8798a2aeaa9d908377695e53463d393634383a3e434c555e69717e8b97a1adb9aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a6774808d9aa7b3a79b8e8174685b64717d8a97a4b0aa9d9084776a5d5144372a1e11000f1b2835424e5b6875818e9b91847d7d7d7b6e616875818e9b91847d7d7d7b6e6154473b2e21140800000000000000000000000000000000000000000000000000000000050e19232d363f474f575e61696e72767779797776726e69615e574f473f362d23190e05000000000000000c18242f39435761686b6c6c6c6c6c6c6c6260585761686b6c6c6c6c6c6c6c6260584e43382c1f13070004111e2a3744515d6a7784909daa9e9285786b5f4a4754616e7a8794a1a89b8e8175685b4e4235281b0f0200000006111c26303c464f59616b6f7a81878c8f919292918f8b86807a6f6a60594f453b2f261b110600000000030d161f262d323536363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363635312c261e160c02000000030d161f262d323536363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363635312c261e160c02000004101c2834404b545c606363636363636363605c544a3f34281c10030000000000000000000000000000000000000000000000000000000005111d2935414c56606d798390969f938e89868586898f949c958f82786c60544b4034281c100400000000000000000000000000000000000000000000030f1b27323d45515d676e7b8591969fa4aca69f9c9892908f8e8f90939a9e9f9490837a6d7a8794aab4a396897c706356493d3023160a000a1623303d495663707c8996a3aca194887b6f7d8692989f9c9799929291919298989ea0a8aba69f9792867d70695f53493f2f261c110600000000101d2a3643505d69768390908376695d5043362a1d10000916232f3c4956626f7c848e9393939393918c7f726d625b51493f362d241b120900000000000000000009121b242d363f49515b626d727f8c9193939393938e847c6f6256493c2f2316090000000000000000000000000000000c1825323f4b5865727e8b9393939393938b7e7165584b3e3225180b00000000000000000000000000000013202d394653606c798686868686868686868686868686868686868686796c605346392d2013000815212e3b4854616e7b8686868686868686868686868686868686868686867b6e6154483b2e211508000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d10030000000000000000091623303c4956636f7c8996aab4a79a8e817467574d42342d2a282b2d313a434d57606d7985929eabb8aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a6774808d9aa7aca79b8e8174685b64717d8a97a4acaa9d9084776a5d5144372a1e11000f1c2936424f5c6975828f9c95918989897e72656975828f9c95918989897e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000007111b242d353e454d52575f6165696b6c6c6b6965615f57524d453d352d241b1107000000000000000007121d2731454f575d5f6060606060606056544e4f575d5f6060606060606056544e463d32271b0f030005111e2b3844515e6b7784919eaa9f928579665b504855616e7b8894a1a89b8f8275685c4f4235291c0f020000000b17232e38424e58616b707d858e92999c9e9f9f9e9c98928d847c6f6b60574d41382d22170b000000000a151f2831383e42434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343413d3830281e140a0000000a151f2831383e42434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343413d3830281e140a000006131f2c3845515c666d6f6f6f6f6f6f6f6f6d665c5044382c1f120600000000000000000000000000000000000000000000000000000000010d1925303a45515d676e7a848f949d9b99929292999c9d938e83796d665b5042392e23180c0000000000000000000000000000000000000000000000000a15202935414b555f696e7b848e939a9fa3aaaaa39f9d9b9b9c9d9f9f99928d827a6d6d798698a29f9f96897d7063564a3d3023170a000a1723303d4a5663707d89969f9fa49a877a6d707d8690959da0a39f9e9e9e9fa3aaa9a8a69f9c948f857d706b60574d41382d1d140a0000000000101d2a3643505d69768390908376695d5043362a1d10000e1b2734414e5a67748186868686868686867f736d635b51493f372d241b1209000000000000000000000009121b242d373f49515b636d737f86868686868686868174675a4e4134271b0e0000000000000000000000000000000d192633404c5966737f86868686868686867f7265594c3f3226190c00000000000000000000000000000013202d3946535f6c767979797979797979797979797979797979797979766c5f5346392d2013000714212d3a46535e697679797979797979797979797979797979797979797976695e53463a2d211407000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000a1724313d4a5764707d8a97a3b0a5988c7f7265594c3f31261e1c1f2028313b45515c6673808d99aab4aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a6774808d9a9f9f9f9b8e8174685b64717d8a979f9f9f9d9084776a5d5144372a1e1100101c2936434f5c6976828f9ca09d96968b7e72656976828f9ca09d96968b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000009121b232c333b42464d5355595c5e5f5f5e5c5955534d46423b332c231b1209000000000000000000010b151f333d454c505253535353535353494843454c5052535353535353534948433d342b21160a000005121f2b3845525e6b7885919eaba29886796c60534955626f7c8895a2a99c8f8376695c504336291d1003000003101c28343f4a545f6a707d8692979fa3ababacabaaaaa39f9691867d6f695e53493f33271b0f03000005101c26313a42494e50505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504f4e49423a30261b10040005101c26313a42494e50505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504f4e49423a30261b1004000713202d3a4653606d787c7c7c7c7c7c7c7c786d6053463a2d201307000000000000000000000000000000000000000000000000000000000008131e2935404b555e686e7a828a919598999a999795908981796d675d544a3f30271d1207000000000000000000000000000000000000000000000000040d18242f3a434d575f696e7981878e92989a9c9e9f9f9f9e9d9a98928e8680786d6866798592939393938a7d7164574a3e3124170b000b1724313e4a5764717d8a939393939386796d6b707c838b9195989b9d9e9f9f9f9e9d9b9894908a827b706b60594f453b2f261b0b020000000000101d2a3643505d69768390908376695d5043362a1d10000d1a2733404c58646e747979797979797979736d635b51493f372d251b12090000000000000000000000000009121b252d373f49515b636d737979797979797979746e64584c4033271a0d0000000000000000000000000000000c1825323e4b57636d737979797979797979726d63574a3e3125180c000000000000000000000000000000121e2b37434f5a646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c645a4f43372b1e120005121e2a36424d575e6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5e574d42362a1e1205000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1824313e4b5764717e8a97a4b0a4978a7d7164574a3e3124171012161f2834404b54626f7c8998a3aeaca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a6774808d93939393938e8174685b64717d8a93939393939084776a5d5144372a1e1100101d293643505c6976838f9ca9aaa3988b7e72656976838f9ca9aaa3988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000009111a212930363b4246484c4f515252514f4c4846423b363029211a11090000000000000000000000030d212b333b404445464646464646463c3b383b404445464646464646463c3b38322b22190f04000005121f2b3744505b657985929facaa93877a6d60544956636f7c8996a2a99d9083766a5d5043372a1d1004000006121f2b3844505c666f7c869298a1a9afb5b7b8b8b7b4aea8a19892857b6e655b5044372b1f140900000a16212d38424c545a5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5a544c42382c211509000a16212d38424c545a5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5a544c42382c211509000815212e3b4854616e7b87898989898989877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000020c18242f39434c565e686d777e84888b8c8d8c8b87837d746d675d554b42382d1e150b000000000000000000000000000000000000000000000000000007131d28313b454d575f676d747c81868a8d8f9192929291908d8a86817b736d665e6a77838686868686867e7165584b3e3225180b000b1825323e4b5865717e868686868686857866606a6e787e84888c8e909192929291908e8b88837d766e6960594f473d33291d140a000000000000101d2a3643505d69768390908376695d5043362a1d10000b1824303c48535c64676c6c6c6c6c6c6c6c66635b51493f372d251b130900000000000000000000000000000009131b252d373f49515b63666c6c6c6c6c6c6c6c67645c53483c3024180b0000000000000000000000000000000a16222f3b46515b63666c6c6c6c6c6c6c6c65635b51463a2e2216090000000000000000000000000000000f1b27333e49525a5f60606060606060606060606060606060606060605f5a52493e33271b0f00020e1a25313b454d535f6060606060606060606060606060606060606060605f534d453b31251a0e02000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825313e4b5864717e8b97a4b0a396897d7063564a3d3023170a060d18232e3a4653606d7986929facaca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a677480868686868686868174685b64717e8686868686868683776a5d5144372a1e1100101d293643505c6976838f9ca9b1a5988b7e72656976838f9ca9b1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000080f171f252a31363a3b3f4344464644433f3b3a36312a251f170f08000000000000000000000000000f1921292f343738393939393939392f2e2c2f343738393939393939392f2e2c27211910070000000613202d394653606c7986939faca194877a6e61544a5663707d8996a3aa9d9184776a5e5144372b1e070000000713202d3a4653606d78839198a2aab3bbc0c4c5c5c4bfbab2aaa1979083776c6053463b31261a0e02000d1926323e49545e66696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969655e54493d3125190d000d1926323e49545e66696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969696969655e54493d3125190d000815212e3b4854616e7b87949696969694877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000007121d27313b444c565d656c71777b7e80807f7e7b76706b605c554b43392f261c0c030000000000000000000000000000000000000000000000000000010c161f2a333b454d555d606a6f757a7d8183848586858583817e7a746e69605c54677177797979797979716c62564a3d3124170b000b1724313d4a56626c71797979797979787368585f666d71777b7f8183858586858583817e7b76706b615e574f473d352b21180b02000000000000101d2a3643505d69768386868376695d5043362a1d10000814202b36414a53585a60606060606060605957514940372e251b1309000000000000000000000000000000000109131b252e37404951575960606060606060605a58534a41362b20140800000000000000000000000000000006121e2a3540495157596060606060606060595751493f352a1e12060000000000000000000000000000000a16212c3740494f535353535353535353535353535353535353535353534f4940372c21160a000009141f29333b4246485353535353535353535353535353535353535353534846423b33291f140900000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa296897c6f6356493c302316090007131f2c3845515c667683909da9aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000d1a26333f4c58646e7479797979797979746f6459616c71797979797979797771675b4f4236291d1000101d293643505c6976838f9ca9aca5988b7e72656976838f9ca9aca5988b7e7265584b3f3225180c000000000000000000000000000000000000000000000000000000000000000000050d141a1f262a2d2e32363839393836322e2d2a261f1a140d050000000000000000000000000000070f171e24282b2c2d2d2d2d2d2d2d23221f24282b2c2d2d2d2d2d2d2d23221f1b160f07000000000714202d3a4753606d7a869aa4afa195887b6e62554a5764707d8a97a3ab9e9184786b5e51452f23180c000006121e2b37424e5765717e8b95a0aab4bcc5cbd1d2d2d0cbc4bcb3a99f958a7e7164574d42362a1e1205000f1c2935424e5a667076767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767670655a4e4135281b0f000f1c2935424e5a667076767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767670655a4e4135281b0f000815212e3b4854616e7b8794a1a2a2a094877a6d6154473a2e211407000000000000000000000000000000000000000000000000000000000000010b151f29323b444c535b6064696e71737473716e69636059514b433931281d140a00000000000000000000000000000000000000000000000000000000040d18212a333b434b51585f62686d71747678787979787674716d67615f5750555f676a6c6c6c6c6c6c65625a50453a2e211509000915212e3a45505a62656c6c6c6c6c6c6b686157545c60646a6e72757778787979787675726e69636159534d453d352b23190f06000000000000000f1c2935424e5a66707679797670665a4e4235291c0f00030f1a252f3841484c4e53535353535353534c4b4640372e251c1309010000000000000000000000000000000000010a131c252e3740464b4c53535353535353534e4c4841382f251a0f03000000000000000000000000000000020d19232e3740464b4c53535353535353534c4a463f372d23180d0100000000000000000000000000000005101b252e373e4346464646464646464646464646464646464646464646433e372e251b10050000030d17212931363a3b4646464646464646464646464646464646464646463b3a36312921170d0300000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f2316090004101c2834404b546875828f9ba8aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000b1723303c47525c64676c6c6c6c6c6c6c68645d535a61646c6c6c6c6c6c6c6a675f554a3f33271a0e00101d293643505c6976838f9c9f9f9f988b7e72656976838f9c9f9f9f988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000003090e141a1e212226292b2c2c2b292622211e1a140e090300000000000000000000000000000000060d13181c1e1f20202020202020161513181c1e1f202020202020201615130f0a0400000000000814212e3b4754616e7a8794a1b6a295887c6f62554b5864717e8b97a4ab9f9285786c554b4034291c1004000814212e3a47535f6a7784919ea7b1bcc5cfd7dcdfdedcd6cec5bbb1a79d908377695f53463a2d21140700101d293643505c697683838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838276695c4f4336291c1000101d293643505c697683838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838276695c4f4336291c10000815212e3b4854616e7b8794a1aeada094877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000030d172029323a41495053575f626566676664615e57544f45403931281f160b020000000000000000000000000000000000000000000000000000000000060f182129313a40454e53565d606467696b6c6c6c6b6a6764605d55534d444d555b5e606060606060585650483f34291d11050005111d29343f485056586060606060605f5c574f4a5153585f6265686a6b6c6c6c6b6a6865615f57554f46423b332b2319110700000000000000000d1a26323e4a545e66696c6c69665e544a3e32261a0d000008131d262f363c40414646464646464646403e3b352e251c130a0100000000000000000000000000000000000000010a131c252e353b3e40464646464646464641403c362f261d1308000000000000000000000000000000000007121c252e353b3e4046464646464646463f3e3a352d251c1107000000000000000000000000000000000009131c252c33373939393939393939393939393939393939393939393937332c251c130900000000050f171f252a2d2e3939393939393939393939393939393939393939392e2d2a251f170f050000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000c18232e414e5b6874818e9ba7aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130007131f2b36404a52585a606060606060605b59534b505557606060606060605d5b554d43392e22160a00101d293643505c6976828f93939393938b7e72656976838f93939393938b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000003090e121415191c1e1f1f1e1c191514120e09030000000000000000000000000000000000000002070c0f1112131313131313130909070c0f11121313131313131309090703000000000000000815222e3b4855616e7b8894a1aca396897c7063564b5865727e8b98a5ac9f928679675c5145382c1f1306000815222f3b4855626e7b8896a0acb9c3ced7e1e8ebebe7e0d6cdc2b8aca095887b6e6155483b2e2215080013202d394653606c79868f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f86796c5f5246392c1f130013202d394653606c79868f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f86796c5f5246392c1f13000815212e3b4854616e7b8794a1aeada094877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000050e1720282f383f44464d535558595a595854534d48443d342f271f160d0400000000000000000000000000000000000000000000000000000000000000060f181f282f353c43474c5254575a5c5e5f5f5f5e5d5a5754514b46423b444a4f515353535353534b4a453f362d22180c0100010c18222d363f454a4b53535353535352504c454044464e5355595b5d5e5f5f5f5e5d5b5855534d48443e363129211911070000000000000000000a16222d38434c545a5d60605d5a544c43382d22160a0000010b141d252b303334393939393939393933322f2a231c130a01000000000000000000000000000000000000000000010a131c232a2f323339393939393939393433302b251d140b010000000000000000000000000000000000000a131c232a2f3233393939393939393932312e2a231c130a000000000000000000000000000000000000010a131b21272b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2b27211b130a010000000000050d141a1e21212d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d21211e1a140d05000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f2316090000071a2734404d5a6773808d9aa6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201300030e19242f3840474c4d535353535353534e4d484145494a53535353535353514f4a433b31271c110600101d293643505c697682868686868686867f7265697682868686868686867e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000020507080c1011131311100c0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b88959f9f9f968a7d7063574c5965727f8c989f9fa399867a6d6053473a2d201407000c1825323f4b5865727e8b98a8b2bdccd5e0e9f3f9f8f2e8dfd4c8bcb1a7988b7e7165584b3e3225180b0013202d394653606c7986939c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9286796c5f5246392c1f130013202d394653606c7986939c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9286796c5f5246392c1f13000815212e3b4854616e7b8794a1acaca094877a6d6154473a2e211407000000000000000000000000000000000000000000000000000000000000000000050e161d262d33373c4247484b4d4d4c4b4846423b383329231d150d04000000000000000000000000000000000000000000000000000000000000000000060d161d242932373a4145474a4e505152535252504e4b4745413a3631393f43444646464646463e3d3a342d241b110600000006111b242d343a3d3e4646464646464544403b34383c4347484c4e505252535252504e4b4846423b38332a251f170f070000000000000000000005111c27313a434a4e505353504e4a433a31271c1105000000020b131a202427272d2d2d2d2d2d2d2d2625231e19120a010000000000000000000000000000000000000000000000010a12191e2325262d2d2d2d2d2d2d2d272724201a130b0200000000000000000000000000000000000000010a12191e2225262d2d2d2d2d2d2d2d2625221e18110a0100000000000000000000000000000000000000010910161b1e202020202020202020202020202020202020202020201e1b161009010000000000000003090e1214152020202020202020202020202020202020202020201514120e090300000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000008121d262f363c3f414646464646464641403c37393c3e4646464646464644423f3931291f150b00000f1c2835414e5a66707679797979797979726d6266707679797979797979726d62564a3d3124180b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000091623303c4956636f7c8993939393938a7e7164574c5966737f8c9393939393877a6d6154473a2e211407000d1a2633404d596673808c99a6b3bfced9e7f2fbfffffaf1e4d9cebfb3a6998c807366594d4033261a0d0013202d394653606c7986939f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9285796c5f5246392c1f130013202d394653606c7986939f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9285796c5f5246392c1f13000815212e3b4854616e7b87949f9f9f9f94877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000040b141b22272b31373a3b3e4041403e3b3a36312c272118120b030000000000000000000000000000000000000000000000000000000000000000000000040c131820262b2f35393a3e4143454546464543413e3a39352f2a262e33363739393939393932312e29221b1209000000000009121b22292e31323939393939393837342f282c31373a3b3f4244454546464543423f3b3a36312c28211a140d050000000000000000000000000a151f2831383e4243464643423e3831281f150a000000000001080f14181a1b2020202020202020191916120d07000000000000000000000000000000000000000000000000000000070d1216191920202020202020201b1a18140f080100000000000000000000000000000000000000000000070d121618192020202020202020191816120d070000000000000000000000000000000000000000000000050a0f1213131313131313131313131313131313131313131313120f0a0500000000000000000000000205070813131313131313131313131313131313131313131308070502000000000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130000010b141d242b303334393939393939393534302b2d3031393939393939393736332e271f170d0400000d1926323e49545e66696c6c6c6c6c6c6c65625b5e66696c6c6c6c6c6c6c65625b51453a2e2215090000000000000000000000000000000000000000000000000000000000000000050a0d0f10131313130b0a080500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d868686868686867e7165584d5a677380868686868686867b6e6155483b2e221508000e1b2734414e5a6774818d9aa7b4c0cddae7f7fffffffff5e7dacdc0b4a79a8d8174675a4e4134271b0e0013202d394653606c79869393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939285796c5f5246392c1f130013202d394653606c79869393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939285796c5f5246392c1f13000815212e3b4854616e7b87939393939393877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000000020a11171b1f262b2e2f32333433312e2d2a251f1c160c07010000000000000000000000000000000000000000000000000000000000000000000000000001070d151b1e24292c2d31343638393939383734312d2c29241d1a22272a2b2d2d2d2d2d2d2524211d181109000000000000000911181d2124252d2d2d2d2d2d2c2b28241c1f262b2e2f32353738393939383735322e2d2a261f1c170e090300000000000000000000000000030d161f272d32353639393635322d271f160d030000000000000003080b0d0e13131313131313130d0c0a0602000000000000000000000000000000000000000000000000000000000002060a0c0d13131313131313130e0d0b08030000000000000000000000000000000000000000000000000002060a0c0d13131313131313130c0c09060100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000000020b12191f2326272d2d2d2d2d2d2d282724202123242d2d2d2d2d2d2d2a2927221c150d050000000915212d38424c545a5c60606060606060585651545a5c60606060606060585651493f34291d1105000000000000000000000000000000000000000000000000000000000000030a1016191c1d20202020181714110c060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4855606b7079797979797979716c62564b58646e737979797979797976695f53463a2d211407000d1a2733404d5a6673808d99a6b3c0cfdae6f3fcfffffbf2e9d9ccc0b3a6998d8073665a4d4033271a0d0013202d394653606c79868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686796c5f5246392c1f130013202d394653606c79868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686796c5f5246392c1f13000815212e3b4854616e7b86868686868686867a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000060b0f151a1e2122252627262521211e1a14100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13191d20212427292b2c2c2c2b2a272421201d18130e171b1d1e202020202020181715110c06000000000000000000060c111517182020202020201f1e1c1810151a1f212226282a2b2c2c2c2b2a282522211e1a14100b0500000000000000000000000000000000040d151c2226292a2d2d2a2926221c150d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060712131313131311110e0b0601000000000000000000000000060a0e1011131313131313100f0d0a050000000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130000000001080e13171a1a202020202020201b1a1814141717202020202020201e1d1a16110b040000000005101b26303a42494e50535353535353534b4a45494e50535353535353534b4a453f372d23180c010000000000000000000000000000000000000000000000000000000000040d151b212628292d2d2d2d2423211d17100800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202c38444f5960636c6c6c6c6c6c6c65625a5047525c64676c6c6c6c6c6c6c6c5f574d42362a1e1205000c1925323f4c5865727f8b98a9b3bec9d5e1eaf4f9f8f3e9e0d5c9bdb2a8988b7f7265584c3f3225190c0013202d3946535f6c7679797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797974695d5144382b1f120013202d3946535f6c7679797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797974695d5144382b1f12000714202d3a46525e6976797979797979797976685e5246392d20130700000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415181a1a19181514120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080d111314171b1d1e1f201f1f1d1b181413110d07010b0e10111313131313130b0b09050100000000000000000000000105090b0b13131313131312110f0c040a0f121415191b1d1f1f201f1f1d1b181514120e090300000000000000000000000000000000000000030a11161a1c1d20201d1c1a16110a030000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080b0e111112131312110f0c0908060300000000000000000406070b0f1213131211100e0c0b09060100000000000000000000000000000000000000000000000000000406070a0d0f11121313131212100e0c09060603000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c1012131f20202020201e1d1b17120c04000000000000000000040b11161a1d1e2020202020201d1c1916100a03000000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201300000000000003070b0d0e131313131313130e0e0c08080a0b1313131313131311100e0a06000000000000000a141e2830383e4143464646464646463f3d3a3e4143464646464646463f3d3a342d241b11060000000000000000000000000000000000000000000000000000000000000d161f262d3235363939393931302d28221a12080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c27333d474f55566060606060606058565048404a52585a606060606060605f534d453b31261a0e0200091623303c4956636f7c8997a1adb9c4cfd9e2e8ebebe7e1d7cec6b9ada196887c6f6255493c2f22160900121e2b37434f5a646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6962584d4135291c1000121e2b37434f5a646c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6962584d4135291c100005121e2a36424d575e6c6c6c6c6c6c6c6c6c6c5e564c41362a1d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000020608080b0d0e0d0b0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010407070b0e101212131312100e0b07060401000000020404060606060606000000000000000000000000000000000000000000060606060606050503000000020608080c0f111212131312100f0c080705020000000000000000000000000000000000000000000000050a0d0f101313100f0d0a05000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415181b1d1e1f201f1f1d1b191515120f0a0401000000070c101313181c1e1f201f1e1d1b181815120d060000000000000000000000000000000000000000000001070c10131416191c1d1f1f20201f1e1d1b191613120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000030a11171c1f202c2d2d2d2d2d2b2a27231d160e0600000000000000050d151c2227292a2d2d2d2d2d2d292926211c150d040000000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c161e262d3235363939393939393932312e3235363939393939393932312e29231b120900000000000000000000000000000000000000000000000000000000000008111f2831383e4243464646463e3d39342c241a1006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b16212c353d44484a535353535353534b4a453f3840474b4d535353535353534846423b33291f140900000613202d394653606c7885929ea9b3bdc7d0d8dddfdedcd7cfc6bcb2a89e9184776c605346392d201306000f1b27333e49525a5f60606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605f5d5850463b3025190d000f1b27333e49525a5f60606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605f5d5850463b3025190d00020e1a25303b454d525f60606060606060605f524c443a3025190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1e212125282a2b2c2c2c2b2a282622211f1b15110d08030b12181c1f2025292b2c2c2c2b2a272524221d18110901000000000000000000000000000000000000040a0f12181c1f202326282a2b2c2c2c2c2b2a282523201f1c17110f0a0300000000000000000000000000000000000000000000000000000000000000000000030c151c23282c2d3939393939393837332e2820180e040000000000040d171f272e3336373939393939393635322d261f160d0300000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201300000000000002070a0c0d131313130e0d0b080303070b0d0e131313130d0c0a06020000000000000000000000040c141b212628292d2d2d2d2d2d2d2524222628292d2d2d2d2d2d2d2524221d181109000000000000000000000000000000000000000000000000000000000000050f1a23313a42494e50535353534b49453e362c22170c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f1a232c33383c3d464646464646463e3d3a342e363b3f40464646464646463b3a36312921170d03000006121f2b3844505b6673808c97a1abb5bdc5ccd2d2d2d1cbc4bcb4aaa0968c7f72655b5044372b1f1205000a16212c3740494f53535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535352514d463e342a1f1408000a16212c3740494f53535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535352514d463e342a1f1408000009141f29333b42464853535353535353535346413a32281e13080000000000000000000000000000000000000000000000000000000000030608091313131313120707050100000000000000000000000000000003060809131313131313131313131313131313131313131313131313130b0a080400000000000000000000000000000306131313131313131308070502000000000000000000000005080a0b13131313130e0d0b0803000000000000000000000306080913131313131313130603000000000000000000000000000004090c0e0f13131313131313130908060300000000000000000000000000000000000000000000000000000000020507081213131313131313100706040000000000000000000000000000000000060c161b1f252a2d2e31343738393939383735322f2e2b26201d19130c151d23282c2d32353839393838363432312e29231b130900000000000000000000000000000000040a0f161b1d23292c2d303335373839393939383635322f2d2b28221c1b150e090300000000000000000000000000000000000000000000000000000000000000000a151e262e34383a45464646464644433f39322a20160c01000000000b151f2931393f424446464646464643423e3831281f150a00000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130000000000070e1316191a202020201b1a18140f0e13171a1a20202020191916120d070000000000000000000000030a1015191c1d20202020202020181815191c1d20202020202020181815110c06000000000000000000000000000000000000000000000000000000000000000b16212b35424c545a5c60606060575550483e34281d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a21272c2f303939393939393932312e29242a2f3334393939393939392e2d2a261f170f06000000030f1c28333f4a54606d79859199a3abb3bbc0c4c5c5c4bfbab2aaa2989184796d6053493f33271b0f030005101b252e373e434646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464644413b342c22180d020005101b252e373e434646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464644413b342c22180d020000020d17212930363a3b4646464646464646463936302820160c02000000000000000000000000000000000000000000000000000000040a0f12151520202020201f1413110d08020000000000000000000000040a0f12151520202020202020202020202020202020202020202020202020171714110c0500000000000000000000060c101220202020202020201514120e090200000000000000060c1114171820202020201b1a18140f0801000000000000040a0f131516202020202020202012100c060000000000000000000002090f15191b1c20202020202020201615130f0a0400000000000000000000000000000000000000000000000002090e1114141f202020202020201d1312100c0700000000000000000000000000030a111720272b31363a3b3e4144444546464544423f3c3b37322c29241e191e272e34383a3e42454646454443413f3d3a342d251b11060000000000000000000000000000060b151b21272c2f34383a3d40424445464646454543413f3c3938332d2b26201a150b0600000000000000000000000000000000000000000000000000000000000006111c2630383f4446525353535353514f4b443c32281d120600000006111c27313b434a4f51535353535353504e49423a31261c1005000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000000010a12191f2325262d2d2d2d282724201a1a1f2426272d2d2d2d2625231e19120a01000000000000000000000005090d0f10131313131313130c0b090d0f10131313131313130c0b0905010000000000000000000000000000000000000000000000000000000000000004101c27333d47545e66696c6c6c6c64615a5045392d2114080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f161c2023232d2d2d2d2d2d2d2524211d191f2326272d2d2d2d2d2d2d22211e1a140d0600000000000b17222d3845515d67707d879299a2aaafb6b7b8b8b7b4aea8a19892867c6f665c5141382d22170b00000009131c252c3337393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393835302a221a100600000009131c252c3337393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393835302a221a100600000000050f171f252a2d2e39393939393939392e2d2a251e160e05000000000000000000000000000000000000000000000000000000060e151b1f21222c2d2d2d2d2c21201d19130c04000000000000000000060e151b1f21222d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2423211c17100800000000000000030a11171c1f2d2d2d2d2d2d2d2d21201e1a140d0500000000000810171d2123242d2d2d2d2d272724201a130b0200000000070f151b1f22222d2d2d2d2d2d2d2d1f1c17110a0300000000000000030c141b202528282d2d2d2d2d2d2d2c22211f1b150e0700000000000000000000000000000000000000000000050d141a1e20212c2d2d2d2d2d2d2d2a201f1c18120b0300000000000000000000030c151c232832373b4246484b4e505152535252504e4c4847433c39352f28222b30394045464b4f5152535251504e4b4a463f372d23180d010000000000000000000000020a111720262b323839404547494c4f50525253535251504e4c4946443f3837312b262017110a02000000000000000000000000000000000000000000000000000000000c17232e38424a50535f60606060605e5c564e44392e23170b0000000a16222e39434d555b5d6060606060605c5a544c42382d21160a000000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130000000a131c242a2f3233393939393433302b25242b3033343939393933322f2a231c130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202c38444f5966707679797979716c6155493d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1014161720202020202020181715110e1317191a202020202020201514120e090300000000000006111c2935404b55606b717e8792989fa4acabacabaaaaa39f9691867d706a5f544b402f261b1106000000010a131b21272b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2b29251f18100800000000010a131b21272b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2b29251f181008000000000000050d141a1e20212d2d2d2d2d2d2d2d21201d19130c0500000000000000000000000000000000000000000000000000000006101820262b2e2f3939393939382e2d29251e160e040000000000000006101820262b2e2f3939393939393939393939393939393939393939393939393931302d28221a12080000000000030c151c23282c39393939393939392e2d2a251f170f0500000008121a22282d303139393939393433302b251d140b00000007101920272b2e2f39393939393939392c28231c150c030000000000020c151e252c31343539393939393939392f2e2b26201810070000000000000000000000000000000000000000050e171f252a2d2e3939393939393939372d2c28231c150c030000000000000000030d151e262e343d43474d5354585b5d5e5f5f5f5e5d5b5955534e4745413a3129343c424b5153585c5e5f5f5f5e5d5a585651493f34291d120600000000000000000000040b141c222832373d43484b515356595b5d5e5f5f5f5f5e5d5b585653504a47433c373127221b140b03000000000000000000000000000000000000000000000000000003101c28343f4a545c606c6c6c6c6c6c6b6760564b3f33271b0e0000010e1a27333f4a555f676a6c6c6c6c6c6c69665e54493e3226190d010000000000000000000000000000000003101d2a3643505d69768390908376695d5043362a1d100300000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000007121c252e353b3f404646464641403c362f2f363c3f4146464646403e3b352e251c0e0500000000000000000000060a0e1011121313131212100e0b07070501000000000000000000000000000000000000020507081313131313131313070705010000000000000000000916222f3c4854606b7682868686867e7164574b3e3124180b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a131313131313130b0b090502070b0d0d13131313131313080705020000000000000000000d18242f3a434f59626c717d858e939a9c9e9f9f9d9c98928d847c706b61584e42392e1d140a0000000000010910161b1e2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201f1f1c19140d06000000000000010910161b1e2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201f1f1c19140d06000000000000000002090e12141520202020202020201413110d0802000000000000000000000000000000000000000000000000000000040e18222a31373a3c4646464646453a3935302820160c020000000000040e18222a32373b3c464646464646464646464646464646464646464646464646463e3c39332c241a1005000000000a151e262e343846464646464646463b3a36302921170d020006101a242c34393d3e464646464641403c362f261d0d0300040f19222b32373b3c464646464646464638342e261e150a000000000009141e2730373d414246464646464646463c3b37322a22180d03000000000000000000000000000000000000020b17202930363a3b4546464646464646433a38342e271e150b00000000000000010b151f2730383f444e54575e6164676a6b6c6c6c6b6a6865625f5854524c433f353c464e545c6065686b6c6c6b6b696765625b51463a2e221509000000000000000000040d161d262d333c43474f54555c606366686a6b6c6c6c6c6b69686562605b54534e47423c332d261d150d030000000000000000000000000000000000000000000000000006121f2c3844505c666d7879797979797772675c4f43372a1d11000003101d2936424f5b6771777979797979797670665a4e4235291c0f030000000000000000000000000000000203101d2a3643505d69768390908376695d5043362a1d100302000000000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201300020e19242e3740474b4d535353534e4c4841383840474c4d535353534c4b4640372e20170d0200000000000000040b11161a1d1e1f2020201f1e1d1b181413110d0802000000000000000000000000000002090e12141520202020202020201413110d080200000000000006131f2b37434e5863707d8994998f82766c6155493d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313d47505a626b707b81878c8f919292918f8b86807a6f6a61594f463c30271d0b0200000000000000050a0f121313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131312100d0802000000000000000000050a0f121313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131312100d080200000000000000000000000205070813131313131313130707050100000000000000000000000000000000000000000000000000000000000a15202a343c4347485353535353524746413a32281e130800000000000a15202a343c434748535353535353535353535353535353535353535353535353534a49453e362c22170c00000006111c2630383f4453535353535353534846423b33291f1409000c17222c363e45494b53535353534e4c4841382f1f150b010a15202b343c4347495353535353535353443f3830261c1106000000040f1b25303942484d4f53535353535353534947433c342a1f150b0100000000000000000000000000000000000a141d29333b4246475253535353535353504644403930271c120700000000000007121d273139424a50586062696e71747777787979787775726f6a66605d56504540454e5860666d717578797978777674726d62564a3d3124180b0000000000000000030c161f282f383f444e54596063676d707375777879797978787674726f6c66625f58534d443f382f271f150d030000000000000000000000000000000000000000000000000713202d3a4653606d7886868686868684776b5e5144382b1e11000004111e2a3744515d6a77838686868686868276695c504336291d100300000000000000000000000000050a0f12101d2a3643505d69768390908376695d5043362a1d10120f0a0500000000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130007131f2a354049525759606060605b58534a41404a52585a60606060595751494032291e1408000000000000050e161c2227292a2c2c2d2c2c2b29282521201d19130f0a030000000000000000000000050d141a1e20212d2d2d2d2d2d2d2d21201d19130c0500000000000815212e3b47535f6a7683909d92867b6e615a5045392d211408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2b353f48505961696e757b7f8384858584827e7b736d6860584f473e342a1e150b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26313c464e53555f606060605f54524c443a3025190c03000000030f1b26323c464e535560606060606060606060606060606060606060606060606060575550483e33281c110400000c17232e38424a505f606060606060605f524d453b30251a0e05111d28343e4850555760606060605a58534a4131271d12070f1b27323c464e5455606060606060605f504a42382e23170c0000000915202c37424b53595b606060606060605f55534e463c31271d12070000000000000000000000000000000006111b262f3b454d52545f606060606060605d53514a42392e23180c0000000000020c18242f39434b545c606a6f757b7e8183848586858583817f7c78726d68625a514b4d57606a6f797e82848586858483817f7265584b3f3225180c00000000000000000b151e283139424a50585f626b6f75797d7f828385858686858483817f7c79746f6a625f575049413931271f150b010000000000000000000000000000000000000000000000091623303c4956636f7c89989393938d8174675a4e4134271b0e000004111e2a3744515d6a778490939393938f8376695c504336291d10030000000000000000000000010910161b1e20202a3643505d69768390908376695d5043362a20201e1b161009010000000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000a16232f3b47525c63666c6c6c6c67645c534547525c64676c6c6c6c66635b51443b3025190e0100000000040e1720272e3336373939393939383634312e2d2a251e1a150e06000000000000000000050f171f252a2d2e39393939393939392e2d2a251e160e05000000000916222f3c4955626f7c88959b8e8174695f53483e34281d110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d19232d363f474f575f61696e72767879787775726e69615e564e463e352c22190c0300000000000000000005090d0f101313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130f0f0d09040000000000000000000000000205070813131313131311100e0b0600000407090a1313131313130e0d0b0803000000000000000000000001070c0f11121313131313070705010000000000000000000000000105090b0b13131313100f0d09050000000000000000000000000000000000000000000000000006121f2b37434e585f626c6c6c6c6c6b615e564c4135291e150b00000006121f2b37434e585f626c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c64615a5045392d2114080003101c28343f4a545c6c6c6c6c6c6c6c6c6c5e574d42362a1e120814212d3945505a61646c6c6c6c6c67645c5343392f23180c131f2b37434e5860626c6c6c6c6c6c6c6c5c544a3f34281c100300000c1925313d48535d65686c6c6c6c6c6c6c6c625f584e43392f24180e050000000000000000000000000000030c17222d38414d575e616c6c6c6c6c6c6c6c6a605c544a4034281c1004000000000a141e2935404b555d666d747c82878b8e909192929291908e8c88847f7a716d605d55535f696f7c848b8f9192929291908d86796c605346392d20130000000000000007121d273039434b545b606a6f767c8185898c8e90919292929291908e8b8985817c756e69605b534b433931271d12070000000000000000000000000000000000000000000004111d2935414c566673808c99aaa3998a7d7064574a3d3124170a000004111e2a3744515d6a7784909d9f9f9c8f8376695c504336291d100300000000000000000000010a131b21272b2d2d2d3643505d69768390908376695d5043362d2d2d2b27211b130a0100000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000c1925323f4b57636e7379797979746f64574d4c58646e7479797979736d63564c41362a1d1207000000000b16202932393f434445464646454543413e3a3936302b2620180f0900000000000000020d17212930363a3b4646464646464646463936302820160c02000005121e2a36424d576673808d9994887c6f62574d42362c22170c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007111b242d353e454d53575f6266696b6c6c6a6965615e56524c443d342c231a10070000000000000000020a1015191c1c2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020201c1b1915100902000000000000000002080e1114142020202020201e1d1a17110b0b101316162020202020201b1a18140f08010000000000000000050c12181b1e1f20202020201413110d0802000000000000000000060c11151718202020201c1c1915100a0200000000000000000000000000000000000000000000000815212e3a47535f6a6f7979797979786d685e52463d30271c120700000815212e3b47535f6a7679797979797979797979797979797979797979797979797979716c6155493c3023170a0006121f2c3844505c66767979797979797976695e52463a2d20140a1723303d4955616c717979797979746e64554b4034291c1015222e3b4754606a767979797979797976665c5044382c1f120600020e1b2834414d59656f7579797979797979796f6a5f554b40352920170b02000000000000000000000000000b151e27333f49535e696e7879797979797979766d665c5144382c1f120600000006111c26303845515d676d7880898f93999a9d9e9f9f9f9e9d9b9896918c857e756d675d58626e7b8691969b9e9f9f9e9e9c9386796c605346392d2013000000000000040d18232e39434b555d666c737c83898e9298999b9d9e9f9f9f9f9e9c9b9897918d88827b736c655d554b43392f24180e050000000000000000000000000000000000000000000713202c3945525d687683909da99f92867a6d6054473a2d211407000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000009131c252c33373939393943505d69768390908376695d50433939393937332c251c130900000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000d1a2633404d59667380868686868174695f534d5a677480868686867f73685e5246392f23180c00000006111c27323b434a4f51525353535251504e4b4746413a37312a221b120900000000000009141f29333b42464853535353535353535346413a32281e130800000714212d3a46535e697884919c8f82766a5f53453c31241a10060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121b232c333b42464d5355595c5e5f5f5e5c5854524d46413a322b221a11080000000000000000040c141b212528292d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d292825211b140c03000000000000050d14191e20212d2d2d2d2d2d2a2a27221d16161b2022232d2d2d2d2d2d272724201a130b02000000000000060f171e23282a2b2d2d2d2d2d21201d19130c04000000000000000911181d2124252d2d2d2d292826211b140c04000000000000000000000000000000000000000000000915222f3c4855626f7c8786868686857a6d61594f42392e23180c03000915222f3c4855626f7c868686868686868686868686868686868686868686868686867e7164574a3e3124170b000713202d3a4653606d78868686868686867b6e6154483b2e2115121e2a36424d5764717e86868686868074675c5145382c1f1416222f3c4955626f7c86868686868686786d6053463a2d20130700020f1c2835424f5b68758286868686868686867c6f675d51453e32291d140a00000000000000000000000007121d27303944505b656e7b858686868686868683796d6053463a2d2013070000000b17232e3842505a606d79828d929b9fa4ababa39f9d9c9b9c9d9fa19e97928b82796d685f6a76828f98a1a8aaa39f9995949386796c605346392d20130000000000010c161f2834404b555d676d78808790949b9fa2a9a29e9c9b9a9a9b9d9fa3a9a19e9a948f877f776d675d554b40352920170d0200000000000000000000000000000000000000000714212d3a4754606d7a86939fa99c908376675d5145392c201306000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000005101b252e373e434646464646505d69768390908376695d504646464646433e372e251b1005000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000714202d3a4753606d7984919392877b6e62564c54606d7a85919392867a6e61554b4034291c100400000a16222e39434d555b5d5f5f605f5f5e5c5b5854524c47433c342d241b110800000000020e1a25303b454d525f60606060606060605f524c443a3025190d01000815212e3b4854616e7b8796988c7f7265584e433b33291f1409000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009111a212931363c4247484c50515252514f4b4746423b363028201910080000000000000000020c161e262c3235363939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393635312c261e150c0200000000050e171e252a2d2e3939393939393736332e272021272c2f303939393939393433302b251d140b0100000000050f1821292f3437383939393939392d29241e160e04000000000009121b22292e3132393939393635322d261e160c000000000000000000000000000000000000000000000815212e3a47535f6a73808d9693978e81746b60544a4034281f1409000916232f3c4956626f7c8993939393939393939393939393939393939393939393938a7d7164574a3e3124170b000713202d3a4653606d79869393939393877b6e6154483b2e211514212d3a46535e6976828f9393939285796d6053473b30251a16222f3c4955626f7c88939393939386796d6053463a2d20130700000714212d3a4754606d7a849199939393999183796d605a50443b2f261b110600000000000000000000040d18232e39424e58606c77828f979393939392867b6e665c5144382c1f1206000003101c28343f4a54616c74818e949da4aca7a09d9992908f8f8f9192999a9e9f948f837a6d666f7c88949faaaea398928c88878886796c605346392d2013000000000008131e28313a45515c676d79828d92999fa6a39f9a97928f8e8d8e8e9092989b9fa3a69e99928c82796d675d51453f32291e140800000000000000000000000000000000000000000b1724313e4a5764717d8a99a4a9998c7f7366554b4135291d1104000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000a16212c3740494f5353535353535d69768390908376695d5353535353534f4940372c21160a000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130006131f2c3845515c67707d8a95998e8175685e52515d67717e8a96988d8073675c5145382c1f130600000e1a27333f4a555f676a6c6c6c6c6c6b696764615e56534e463e362d23190b0200000005121e2a36424d575e6c6c6c6c6c6c6c6c6c6c5e564c41362a1d1105000a1724313d4a5764707d8a9798887b6e6255524d453b30251a0e020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f171f262a31373a3b3f4345464544423f3b3a36302a251e160e070000000000000000000a141e2830383d414346464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464642413d3730271e1409000000020d1720293036393b46464646464644433f3932292b32383b3d46464646464641403c362f261d1308000000010c17212a333a4044454646464646463935302820160c0200000006111b242d343a3d3e4646464643413e3830281e110700000000000000000000000000000000000000000006121f2b37434e58606d7984919e9f93887d6f665c51443b31261a0d04091623303c4956636f7c89969f9fa8a19e9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c978a7d7164574a3e3124170b000713202d3a4653606d7986939f9f9f94877b6e6154483b2e21151b27333f4953616e7b87939f9fa2978a7e7164574d42362a1e16222f3c4955626f7c88959f9f9f9386796d6053463a2d20130700000613202c3945525d686f7c87929fa69fa0958d81746c61564d41382d22170d030000000000000000010c161f2834404b545f6a727f8b949fa9a89e938b7e71695f544a4034281c1004000006121f2b3844505c66717e8b939ea6aea59d95908a86838282838486898d92979f959083786d73808d99a6b0a89f9286807c7a7b7d7063574a3d3024170a00000000010d19242f3a43505a606d79828f949fa3a7a099928e898583818181828386898e92999fa7a39f948f82796d605b51443b3025190e0200000000000000000000000000000000000006121e2b37424d576774818e9aaba297897c6f6256493c2f24180d01000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000f1b27333e49525a5f60606060606069768390908376696060606060605f5a52493e33271b0f000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130004101c2934404b55616b7683909d92867a6d61544c55606c7884919d9285796d6053473a2d2014070000101d2936434f5b6771777879797978787674716d68625f5850483e352b1d140a0000000714202d3a46525e6976797979797979797976685e5246392d201307000c1926333f4c5966727f8c999285796a63615e574d42362a1e1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d141a20262b2e2f33363839393736322e2d2a251f19130c0500000000000000000005101b26303a42494e4f5353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353534f4d49423930261b1004000008141e29323b414653535353535353514f4a443b32353d4448495353535353534e4c4841382f251a0f03000007121e29333c454b505253535353535346413a32281e13080000010c18222d363f454a4b535353534f4e49423a3023190f050000000000000000000000000000000000000000030f1b26313c45515d67707d8a939e9a9183786d60574d42362a1f160c0a1623303d495663707c899aa4aca196918f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8f8a7d7164574a3e3124170b000713202d3a4653606d798693a0aca194877b6e6154483b2e21151f2b3744505b65737f8c99a4afa99c8f8276695e52463a2d2016222f3c4955626f7c8895a2aca09386796d6053463a2d201307000004111d2935414c56606a727f8c949ea8a89d928a7d70695e53493f33271f150b010000000000000008131e28313a45515c666f7c86929fa6aba1968e81756c62574d42392e23180c0000000713202d3a4653606d7884919ea5afa69d938e837d797776757677797c80858c9298958e81747683909ca9aca0958a7e736f6e6e706b6155483c2f2316090000000004111d2935414c56616c74818e949ea6a69f959087817c79767474747577797d818790959ea5a69e948e81756d62564c41362a1e14080000000000000000000000000000000000000814212e3a47535f697884919eab9e9285796c605346392d20130700000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000121e2b37434f5a646c6c6c6c6c6c6c6c7683909083766c6c6c6c6c6c6c6c645a4f43372b1e12000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201300000c18232f39434f5964717e8a97998b7f7265554b505b65727e8b97978a7d7164574a3e2f24180c0000111e2a3744515d6a778385868686858483817e7a756e6a615a50473d2f261b110600000815212e3b4854616e7b86868686868686867a6d6154473a2e211407000e1a2734414d5a6774808d9a91847770706e695e52463a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e151a1e212226292b2c2c2b292521201e19140d0802000000000000000000000915212c38424c545a5c6060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060605c5a544c42372c21150900020e1925303b444c525f6060606060605d5b554d44393d474f54566060606060605a58534a41362b20140800000c18232f3a454e575c5e60606060605f524c443a3024190d010005111d29343f48505658606060605c5a544c42352b21160b0000000000000000000000000000000000000000000a15202935404b55616b75818e98a0958c7f72695f53463e31281e130815222f3b4855626e7b87939fa99e91848383838383838383838383838383838383827d706356493d3023160a000713202d3a4653606d798693a0aca194877b6e6154483b2e2115202d394653606c7884919eabb5ac9f93877b6e6154473d32271b222f3c4955626f7c8895a2aca09386796d6053463a2d2013070000010d19242f3a434e58606c77828f96a1aba49e92857b6e655b50443c31271d1207000000000000050e19242f3a434f59606d79839098a3aea39991847a6d605a50453c30271c12070000000b1824313e4b5764717e8a96a0acac9f948e8179716d67696869676d70747a7f869095938a7e7885929fabaa9d9184776c6261616361594f44382c201407000000000613202c3945525d68717e8a939da6a89f948f837c746f6c6668676768666d70757c838f939ea7a69e938b7f72685e52463b3025190d0100000000000000000000000000000000000815222f3b4855626e7b8896a1a89b8e8275665b5044382b1f120600000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000013202d3946535f6c767979797979797979839090837979797979797979766c5f5346392d2013000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000007121d27313e4653606d7984919c908376675d514953606d7985929b8e817468554b4035291d100400121f2c3945525f6c78859292999292918f8e8b87827c716c61594f41382d22170b00000815212e3b4854616e7b87939393939393877a6d6154473a2e211407000f1b2835424e5b6875818e9b91847d7d7d7b6e6154473b2e21140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415191d1e1f1f1e1c181414110e09020000000000000000000000000d1925323d49545e66696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c69655e54493d3125190d0005111e2a36414c565e6c6c6c6c6c6c6c6a675f554a3f444f5960636c6c6c6c6c6c67645c53483c3024180b00030f1b2834404b5760686b6c6c6c6c6c6c5d564c4135291d1105000915212e3a45505a62656c6c6c6c69665e54473d33271c10040000000000000000000000000000000000000000040c18242f39434f59616e7b85929f9f92867b6e615a50433a2f24190c14212e3a47535f6975818e97a29d9084787676767676767676767676767676767676706b6054483b2f221609000713202d3a4653606d798693a0aca194877b6e6154483b2e211d2935414c5563707d8996a0acacafa4998c7f7266584e43382c1d222f3c4955626f7c8895a2aca09386796d6053463a2d20130700000008131e28313d44505b656d7a849199a3ada1978f82776c60584e43392f24180e0500000000020b17202935414c56606b73808d95a0aaa69f92877d6f685d52483e332a1e150b00000005121e2a36424d576875818e9ba8afa49a8f82786d66605d555c555c6063676d727b838f9391857b8797a2ada79a8d8074675a545557554f473e33281c100400000004111d2935414c55606d7a85929ea5aca0968f82796e6a62605b545a5b545c60636a6e78818f959faba59f92857a6e61564c41362a1e11050000000000000000000000000000000003101c28343f4a5465727f8b98a8a7988b7e7165544a3f33281c0f0300000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000013202d394653606c798686868686868686909494908686868686868686796c605346392d2013000b1825323e4b5865717e8b98a4afa295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000008121d262c3844505c6674818e9b92867a6d605347515d6775828f9b918477675d5145392c1f130600121f2c3945525f6c7885929493939496999a99938e867e716b6053493f33271b0f03000815212e3b4854616e7b87949f9f9f9f94877a6d6154473a2e211407000f1c2936424f5c6975828f9c95918989897e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020608080c10121312110f0c0807050200000000000000000000000000000f1c2835414e5a6670767979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797570655a4d4135281b0f000714202d3946525e68767979797979797771675b4f434854606b70797979797979746e64584c4033271a0d0004111e2a3744505c687278797979797976685d5246392d201307000b1724313d4a56626d7179797979767066594f44382c20150a00000000000000000000000000000000000000000007121d27313e46525e69727f8b959f988f82756c61554c4135291e14121e2b37424d57616e7b85929fa0958c80736c6969696969696969696969696969696360594f44382c201307000713202d3a4653606d798693a0aca194877b6e6154483b2e21202c3945515d6775818e9ba8a39fa3ab9d9184776a605448392f24222f3c4955626f7c8895a2aca09386796d6053463a2d201307000000010c161f27333f49535e686f7d87929fa6a99f948c7f726a5f554b40352920170b020000000a141d29333b45525d68707d87939fa7aa9f948c80736b60564c41362d21180c030000000714202d3a46525e697885919eabac9f93877c6f665c54514b4f4b5153555d60696e79818f949083909da9b3a4988b7e7165584b484a48443e352c21160b000000000613202c3945515d6773808d97a1ada69e91847a6d675f5853504a4e4e4b5153585f666d79839099a3ada2978d8174685e5246392d2014090000000000000000000000000000000006121f2c3844505c6675828f9ba8a095877b6e6154483b2d22170b0000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000013202d394653606c7986939393939393939c9f9f9c9393939393939386796c605346392d2013000b1825323e4b5865717e8b98a4aca295897c6f6256493c2f23160900000d1a2733404d5a6673808d99a6aca09386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c201300030e19242f3840474a5464717e8a9799897c6f6256494b5565727e8b9893867a6d6053473a2d20140700121f2c3945525f6c78858887868787898d92979f9892887d70655b5044372b1f1205000815212e3b4854616e7b8794a1acaca094877a6d6154473a2e21140700101c2936434f5c6976828f9ca09d96968b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101c2936434f5c6976828686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868686868275695c4f4236291c0f000814212e3b4754616e7a86868686868683776a5d5144495663707d8686868686868074675a4e4134271b0e0005121f2b3845525e6b788586868686867a6d6154473a2e211407000b1825323e4b5865717e8686868682766b6054483c32261b0f030000000000000000000000000000000000000000010b151f2a36424d56606c788390999e948a7e71675d51453c30261c111a26313c46525e68717e8a929c9f93887e716c605b535c5c5c5c5c5c5c5c5c5c5c56544f473d32271b1003000713202d3a4653606d798693a0aca194877b6e6154483b2e21212d3a4754606d7a86929fa3999299a3a096897c6f62554b403529222f3c4955626f7c8895a2aca09386796d6053463a2d20130700000000040d17222d38414c56606b737f8c949fa9a69f92867c6f675d51453e33291d140a000006111b262f3b45505a606d7a849199a4aea2989083786d60594f443a2f241b0f06000000000815212e3b4854616e7b8797a1adaa9d9083776a5f544b4540424045474b51575f676d78828f9590959fabb0a3968a7d7063574a3d3d3c38332c231a1005000000000714212d3a4754606d7a85929fa9aa9e94897d70685d554e46443f41414045464e545c676f7c87929faca99f92867a6e6154473c31261a0e020000000000000000000000000000000713202d3a4653606d7985929faa9d918477695e52463a2d1c11060000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000013202d394653606c798689898989898989909595908989898989898986796c605346392d2013000b1825323e4b5865717e8b989f9f9f95897c6f6256493c2f23160900000d1a2733404d5a6673808d999f9f9f9386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c20130007131f2b36404a52585a616e7b879a978a7e71645753595b626f7b889599887c6f6255493c2f221609000916232f3c4956626f7c7b7a7a7a7b7d808590959f9a9184796c605346392d201306000815212e3b4854616e7b8794a1aeada094877a6d6154473a2e21140700101d293643505c6976838f9ca9aaa3988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393938f8275695c4f4236291c0f000814212e3b4754616e7a87939393939084776a5d5144495663707c89939393938d8174675a4e4134271b0e0004101d2935404b556c788592939393877b6e6154483b2e211508000613202d394653606c7883909994897d7063584e43372b1f1306000000000000000000000000000000000000000000030d1925303b44505b666f7c87929f9e91847a6d60584e42382e231715202a36414d56616c73808d939d9a92877e736c655d554e5050505050505050504948443d352b21160b00000713202d3a4653606d798693a0aca194877b6e6154483b2e212b37434e5865717e8b98a29f9286929fa89a8e8174675d5145382c222f3c4955626f7c8895a2aca09386796d6053463a2d201307000000000006111b262f3a444f59606c77828f97a1aba3999184796d605a50453b2f261b1106030c17222d38414d57616c75818e96a1aba59f92857b6e665c50473d32281e120900000000000916222f3c4955626f7c8895a9b3a79a8d817467584e4239352f34383a40454d555c666d7a85919d9fa7b1afa396897c706356493d302f2c28211a11080000000005111e2a36424d5765727f8b98a2aea99c8f82756b60564c433c38332d2e34383c424b555f6a74818e9ba8aea3988c7f7266574d42372b1e1205000000000000000000000000000000091623303c4956636f7c8998a2aa9a8d807467574d42362a1e0a000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000a1723303d4a5663707d7d7d7d7d7d7d7d839090837d7d7d7d7d7d7d7d7063564a3d3023170a000b1825323e4b5865717e8b9393939393897c6f6256493c2f23160900000d1a2733404d5a6673808d939393939386796d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000b1723303c47525c64676c6d798693998c7f7266595d64686c6d7a8799978a7d7164574a3e3124170b000815222e3b4754606a6f6e6d6d6d6e70737a83909da096897c6f6356493c30231609000815212e3b4854616e7b8794a1acaca094877a6d6154473a2e21140700101d293643505c6976838f9ca9b1a5988b7e7265584b3f3225180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101c2936434f5c6976828f929292929292929292929292929292929292929292929292929292929292929292929292929292929292929292928f8275695c4f4236291c0f000814212e3b4754616e7a87949f9f9d9084776a5d5144495663707c89969f9f9a8d8174675a4e4134271b0e0006131f2c3945515d677986939f9f95887b6e6255483b2f2215080005121f2b3744505b656f7c87939d9083766a5f53473b2e2115090000000000000000000000000000000000000000000009141f28333f4a545f6a74808d96a1978d80746a60544a3f34281f141925303b44505a606c77818e939c99928b80776d675f585045414343434343433d3b38322b23190f0400000713202d3a4653606d798693a0aca194877b6e6154483b2e212e3a47535f6a7683909daa9b8e828e97a19f9285796d6053473b30252f3c4955626f7c8895a2aca09386796d6053463a2d2013070000000000000a141d28323d44505b656d7a859199a4aba0968e81746c61574d41382d22170d0b151e27333f49535e69717e8a939ea8a89e938a7e71695e544a3f352b20160c0000000000000a1723303d4a5663707d8996a3b0a6998c7f7366594c402f2924292c2f353b434b545d68707d8a959fabb7afa396897c706356493d3023201c16100800000000000714202d3a46525e697683909daaada196897d7063594f433a312b282223282c3039434e58626f7c8895a0acaa9d908477695f53463a2d211407000000000000000000000000000004111d2935414c566673808c99aaa3988a7d7063574a3d30251a0e000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000916222f3c4854606b70707070707070768390908376707070707070706b6054483c2f221609000b1825323e4b5865717e868686868686867c6f6256493c2f23160900000d1a2733404d5a66738086868686868686786d6053463a2d201307000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000d1a26333f4c58646e7479797985929a8d8073675a646f747979778692988b7e7165584b3e3225180b0006131f2b38434e586062616160606163686f7c8899a4988b7e7265584b3f3225180c000815212e3b4854616e7b87949f9f9f9f94877a6d6154473a2e21140700101d293643505c6976838f9ca9aca5988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2935424f5c6875828585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858275685b4f4235281c0f000814212e3b4754616e7a8794a1aa9d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e000714202d3a4753606d7a8699a4a295897c6f6256493c2f23160900030f1b27333f49535f6a75828f9b95887c6f6255493c31261a0e02000000000000000000000000000000000000000000020b17222d38424e58606d7984919e9f93877c6f665c50443b30251a141f29323e44505b656c78818d929f9f928c81796f6a625a514c433c34363636302f2c27211911070000000713202d3a4653606d798693a0aca194877b6e6154483b2e28343f4a54626e7b88959fa398897d85919ea2988a7e7164574d42362a2f3c4955626f7c8895a2aca09386796d6053463a2d201307000000000000020b162027333f49535e68707d87939fa6a89d928a7e70695e53493f33271f15121d27303944505b656e7b85929fa5aba0968e81746c61574d42382e23190d040000000000000a1724313d4a5764707d8a97a3b0a5988c7f7265594c3f2e23181c1f24293139424c56616c7683909da9b3afa396897c706356493d302316100b050000000000000814212e3b4754616e7b87959fabab9e9184786c6053463d31281f1c17181c1f27313c47535f6a7784919daaaca095887b6e6155483b2e22150600000000000000000000000000000713202c3945525d687683909da99f92867a6d6053473a2d201409000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000713202c38444f5960636363636363697683909083766963636363636360594f44382c201307000b1724313d4a56626c71797979797979796f6a6054473b2e22150800000c1926323f4b58636e737979797979797976665c5044382c1f1206000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a67748086868689979a8d8174675b6874818686868999988b7f7265584c3f3225190c00030f1b27323d464e5456555453545456606c7986939f998c807366594d4033261a0d000815212e3b4854616e7b87939393939393877a6d6154473a2e21140700101d293643505c6976838f9c9f9f9f988b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1b2834414d59656f75797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979797979756f65594d4134271b0e000814212e3b4754616e7a8794a1a99d9084776a5d5144495663707c8996a3a79a8d8174675a4e4134271b0e000714212e3a4754616d7a8794a0a396897c706356493d3023160a00000b17222d38414e58636f7c89959a8d807367574d42362a1e12050000000000000000000000000000000000000000000006111c262f3c45515d67707d8a949e999083786d60574d42362a1f15172027333f49535b666c74808b92989c938f847c716c605d554e463e362e292322201b160f07000000000713202d3a4653606d798693a0aca194877b6e6154483b2e2c3844505c6673808d9aa79f928679818e9baa9c8f8276695e52463a2d2f3c4955626f7c8895a2aca09386796d6053463a2d20130700000000000000040e17222d38414c56606b73808c949fa9a59e92857b6e655b50443c31271d18232e39424e58606c77828f97a2ada3999184796d605a50453b30261c1007000000000000000a1723303d4a5663707d8996abb5a6998d807366544a403428211e1a181f27303a44505a64707d8a97a2adafa396897c706356493d3023160a00000000000000000b1824313e4b5764717e8a97a7b1a79a8e8174665b5044382b1f160f0b0c10151f2b37434e586773808d9aa6b1a7988b7e7165584b3e2d22170b00000000000000000000000000000714212d3a4754606d7a86929fa99c8f8276675d5145392c1f1306000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000004101c27333d474f5456565656565d69768390908376695d5656565656544f473d33271c1004000915212e3a45505a62656c6c6c6c6c6c6c6260584e43382b1f130600000a17232f3b47525c63666c6c6c6c6c6c6c6c5c544a3f34281c1003000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a6774808d939393a19a8e8174675b6874818e939394a3998c7f7366594c403326190d00000a162027333f49535b606060606062666e7b8799a4988c7f7265594c3f3226190c000815212e3b4854616e7b86868686868686867a6d6154473a2e21140700101d293643505c6976828f93939393938b7e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925313d49545d65686c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c68655d53483d3125180c000814212e3b4754616e7a87949c9c9c9084776a5d5144495663707c89969c9c9a8d8174675a4e4134271b0e000815222e3b4855616e7b8894a1a3978a7d7064574a3d3124170a000006111b262f3c4854606b7783909d918478695f53463a2d21140700000000000000000000000000000000000000000000000a141d2935414b55616c75828f98a0958b7f72695e52463e31271d1217222d38414a545b606e737e8691969e9691867e756d675f58504840372e261c13100b0400000000000713202d3a4653606d798693a0aca194877b6e6154483b2e2d3a4653606d7985919ea99c8f82767e8a99a39f93877b6e6154483d322f3c4955626f7c8895a2aca09386796d6053463a2d201307000000000000000006111b262f3a444f59606d78828f97a1aca1978f82776c60584e43392f241f2834404b545f6a727f8c949fa9a69f92877c6f675d51483e33291e140a00000000000000000915222f3c4855626f7b8899a3afa89b8f8275665c51443a322d2b2627272628323e4653606d7985929fabafa396897c706356493d3023160a00000000000000010e1b2834414e5b6774818e9aa7b4aa978a7e7164544a3f3328190d040000040d1b26323d4a5764707d8a97aab4a79b8e81746853493f33271b0f03000000000000000000000000000b1724313e4a5764717d8a99a3a9988c7f7265554b4035291d1004000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000b16212b353d44484a4a4a4a505d69768390908376695d504a4a4a4a48443d352b21160b000005111d29343f485056586060606060606056544e463d32271b0f03000007131f2a36404a52585a606060606060605f504a42382e23170c00000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a6774808d9a9fa0a79b8e8174685b6874818e9b9fa0a6998c807366594d4033261a0d000005121f2b3744505b656c6d6c6c6d6f7278818e9ba095897c6f6356493c30231609000714202d3a46525e6976797979797979797976685e5246392d20130700101d293643505c697682868686868686867e7265584b3f3225180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915212c37424b54595c5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5b59534b42372c201509000814212e3b4754616e7a878f8f8f8f8f84776a5d5144495663707c898f8f8f8f8d8174675a4e4134271b0e000915222f3c4855626f7b8895a2a4978a7e7164574b3e3124180b000007111b252c38434f5966737f8c9996887b6e6155483b2e2215080000000000000000000000000000000000000000000000020b18242f3a43505a616e7b86929f9f92867b6e61594f43392f2418111b262f38424a505c636c717c848e939f98928b817a6f6a625a524940382e251c11080000000000000713202d3a4653606d798693a0aca194877b6e6154483b2e36414c5664707d8a97a1a8988c7f727a86929fa4998c7f7366594f43382f3c4955626f7c8895a2aca09386796d6053463a2d2013070000000000000000000a141d29323d44505c666e7b85929aa4a99f948c7f726a60554b40352928313a45515c666f7c86929fa6a99f948c7f736a60554b41362c21170c0200000000000000000714202d3a4753606d7a86929facab9e9285796d60564c443d3a373134333332323845515c6675828f9ca8afa396897c706356493d3023160a0000000000000005111e2a36414c566a7683909da9aea298887b6e6155483b2d221708000000000a15212e3b4854616e7b8798a2aeaa9d908377655b5044372b1f120500000000000000000000000006121e2b37424d576774818e9aaba197887c6f6255483c2f24180c00000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000050f19232b33383c3d3d3d43505d69768390908376695d50433d3d3d3c38332b23190f050000010c18222d363f454a4b535353535353534947433d342b20160a000000020e19242e3840474b4d5353535353535353443f3830261c110600000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a6774808d9aa7b3a79b8e8174685b6874818e9ba7b3a6998c807366594d4033261a0d00000613202d394653606c777979797a7b7e838e939e989083786c605346392d2013060005121e2a36424d575e6c6c6c6c6c6c6c6c6c6c5e564c41362a1d1105000f1c2835414e5a66707679797979797979726d62564a3d3124180b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101b26303942494d4f5252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252524f4d48423930251b0f04000714212d3a4754606d7a8283838383838174675b4e414855626f7c8283838383827f7265584c3f3225190c000916232f3c4956626f7c8995a2a5988b7e7265584b3f3225180c00010d18232d373f464956626f7c8999978a7d7164574a3e3124170b00000000000000000000000000000006060606060606060007131d28313e46535e69727f8c95a0988e81756b61554b4035291d14141d262f383f44525a616a6f7a818b92989f938e847c716c635b524a40372e231a0d0400000000000713202d3a4653606d798693a0aca194877b6e6154483b2e3946525e6875828f9ba9a196887b6f76828f9cab9e9184776b605448392f3c4955626f7c8895a2aca09386796d6053463a2d201307000000000000000000020b172028343f4a545e69707d88939fa7a69f92877c6f675d51453e332f3a434f59606d79839098a3ada2979082786c60584e433a2f241a0f0500000000000000000006131f2c3945515d677783909dabada1978a7e71685e564f484742424140403f3f3f404b546673808c99a6afa396897c706356493d3023160a000000000000000713202d3946525e687885929fabac9f9285796c605346392d201306000000000714212d3a46535e697985929facac9f9285796c605346392d2013060000000000000000000000000814212d3a47535f697884919eab9e9185786c605346392d20130700000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000005101a232c33393c3d3d3d43505d69768390908376695d50433630302f2c27211911080000000006111b242d343a3d3e464646464646463c3b38322b22190f040000000008121c262e363b3f40464646464646464638342e261e150a0000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a6774808d9aa7aca79b8e8174685b6874818e9ba7aca6998c807366594d4033261a0d00000613202d394653606c7984868687888b90959a9590867c6f665b5044382b1f120600020e1a25303b454d525f60606060606060605f524c443a3025190d01000d1926323e49545e66696c6c6c6c6c6c6c65625b51453a2e22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141e2730373d414246464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464642413d3730271e140900000713202c3945525d686d767676767676746f64584c4047535f6a6f767676767676726d62564a3e3125180b000a1723303d4a5663707d8996a3a5988c7f7265594c3f3226190c0006121e29353f49515759606d798692998c7f7366594c403326190d0000000000000000000002060a0c0d131313131313131313130c161f2a36424d57606d788390999e938a7d70675d51453c2f261b11141d262d33404850585f686d757e8690959d9691867e736d645c524940352c1f160c01000000000713202d3a4653606d798693a0aca194877b6e6154483b2e3a4754616d7a86929fab9e9184786a727f8b99a4a096897c6f63554b40353c4955626f7c8895a2aca09386796d6053463a2d20130700000000000000000000050e17232e38424d56616b73808d959fa9a3999184796d605a50453b35414c56606b73808d95a0aaa59f92857b6e665b50463d31281d12080000000000000000000004101d2935404b5566737f8c99a3aea99e91847a6d68615955534d4f4e4d4c4c4c4b4b4c5865727f8b98a5afa396897c706356493d3023160a000000000000000714212e3a4754616d7a8798a2aeaa9d918477665b5044382b1f12060000000005121e2a36424d576a7784919daaaea298877a6e6154473b2e2114080000000000000000000000000815222e3b4855616e7b8896a1ac9b8e8174655b5044372b1f120500000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000b17222c363e44494a4a4a4a505d69768390908376695d5043362a2322201c160f0800000000000009121b22292e3132393939393939392f2e2b27201910070000000000000a141c242a2f323339393939393939392c28231c150c030000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a6774808d9a9f9f9f9b8e8174685b6874818e9b9f9f9f998c807366594d4033261a0d000006121f2b3844505b6673808c9993999292908d89837c6f6a5f544a3f33281c0f03000009141f29333b42464853535353535353535346413a32281e130800000915212d38424c545a5c60606060606060585651493f34291d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c151e262c3134353939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393939393534312c251e150c02000004111d2935414c565d6069696969696967645c53483c434e585f6269696969696965625b51463a2e221609000a1724313d4a5764707d8a97a3a6998c807366594d4033261a0d000916222e3a46515b62656c667885919a8d8174675a4e4134271b0e000000000000000000070d121619192020202020202020202020201a25313b44505c666f7c87939f9e9184796d60584e41382d22170b141c2228363e464e565d606c717b838d929f98928b80736e645b51473d31281e1308000000000713202d3a4653606d798693a0aca194877b6e6154483b37434e5865727f8c99a3a99a8d8074676e7b87939fa89a8e8174675d5145393c4955626f7c8895a2aca09386796d6053463a2d201307000000000000000000000006111c26303b444f59606d78839097a2aba0968e81746c61574d423b45525d68707d87939fa7a89d938a7e71695e544a3f342b1f160c0000000000000000000000000c18242f3b4854616e7b86929fa8ada19690827a706b65615f575c5a5a5959585858585865717e8b98a4afa396897c706356493d3023160a000000000000000915222f3c4855626f7b8895aab4a99c8f837669544a3f33281c0f0300000000020e1a2531434f5c6976828f9ca9b4aa95887b6f6255483c2f221509000000000000000000000003101c28343f4a5465727f8b98a8a49a8a7e716453493f33271b0f0300000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000004101c28333e48505557575757575d69768390908376695d5043362a1d1613100b0500000000000000000911181d2124252d2d2d2d2d2d2d23221f1b160f0700000000000000020a12191f2326272d2d2d2d2d2d2d2d1f1c17110a03000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a6774808d93939393938e8174685b6874818e93939393938c807366594d4033261a0d0000030f1c28333f4a54616e7b87939f92878583817d786f6a5f584e42382d22170b000000020d17212930363a3b4646464646464646463936302820160c02000005101b26303a42494e50535353535353534b4a453f372d23180c0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c141b212528292c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c282725201b140c03000000010d1924303a444c52545c5c5c5c5c5c5b58534a41363c464e53555c5c5c5c5c5c585651493f34291e1206000b1824313e4b5764717e8a97a4a69a8d8073675a4d4034271a0d000b1825313e4a57626d7279797983909b8e8275685b4f4235281c0f00000000000000010a12191e2325262d2d2d2d2d2d2d2d2d2d2d2d2d2d28343f4a54606a74808d97a1968d80736a5f53493f33271e13111317242d343c444c525a62696e78808b92999f928c80736d63594f433a2f24190d010000000713202d3a4653606d798693a0aca194877b6e6154483b3b4754606a7784909daba197897c70636876838f9caa9f9285796d6053473b3c4955626f7c8895a2aca09386796d6053463a2d2013070000000000000000000000000a141e29323e44505c666e7b85929fa4a89d938a7e70695e544a45505a606d7a849199a4aba0968e81746c61574d42382d22190d040000000000000000000000000714202d3a46525e6974808d96a1a9a89f9590847d77726e696a6867666665656565646465717e8b98a4afa396897c706356493d3023160a000000000000000a1723303d4a5663707d8996a3b0a89b8e8275685b4f422d22170b000000000000091c2835424f5b6875828e9ba8b0a396897d7063564a3d3023170a000000000000000000000006121f2c3844505c6675828f9ba89f93877a6e6154473b2d22170b0000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000814202d3944505a6164646464646469768390908376695d5043362a1d1007040000000000000000000000060c11151718202020202020201615130f0a0400000000000000000000080e1317191a202020202020202012100c060000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000e1a2734414d5a677480868686868686868174685b68748186868686868686807366594d4033261a0d0000000b17222d3846535e6976828f9b8f82787774706c655f584e463c2f261c110600000000050f171f252a2d2e39393939393939392e2d2a251e160e05000000000a141e2830383e4143464646464646463f3d3a342d241b110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002091015191b1c1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1f1c1b18150f0902000000000008131e28323a4145475050505050504e4c4841382f343c4347485050505050504c4a463f372d23180d01000c1825323f4b5865727e8b98a5a79a8e8174675b4e4134281b0e000c1926323f4c5965727f86868689959c8f8275695c4f4236291c0f000000000000000a131c232a2f32333939393939393939393939393939392e38424e58606d7a85919e9f92877c6f655b50443a3025191d202021222a323a414550575f666d747e8792989c928c7f726b61564c4135291d13070000000713202d3a4653606d798693a0aca194877b6e6154483b404b55626f7c8995a0ab9e9184796d6064717e8b98a2a2988a7e7164574d423c4955626f7c8895a2aca09386796d6053463a2d201307000000000000000000000000020c172028343f4a545e69707d8a929da7a59e92857b6e665b504d57616c75818e96a1aba3999184796d605a50453b2f261c10070000000000000000000000000005121e2a36424d57606d79849197a1a9a79f969189837f7b78767574737372727271717171717e8b98a4afa396897c706356493d3023160a000000000000000a1724313d4a5764707d8a97a3b0a79a8e8174675b4e4134281b060000000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a00000000000000000000000713202d3a4653606d7985929faa9d908377685e5246392d1b11060000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000a1623303c4955616c70707070707070768390908376695d5043362a1d1003000000000000000000000000000105090b0b13131313131313090806030000000000000000000000000002070a0c0d1313131313131313060300000000000000000714202d3a4753606d7a8693a0adac9f9286796c5f5346392c2013000d1a26333f4c58646e7479797979797979746f6459646f7479797979797979736e63574b3f3226190c00000006111c2a36424d5764717e8a9792877b6e6763605b534e463c342a1d140a000000000000050d141a1e20212d2d2d2d2d2d2d2d21201d19130c050000000000030c161e262d3235363939393939393932312e29231b120900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090c0e0f1313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313130f0e0c090400000000000000020c1620283035393a43434343434341403c362f262a32373b3c4343434343433f3e3a342d251b110700000c1926323f4c5965727f8c98a5a89b8e8175685b4e4235281b0f000c1926323f4c5965727f8c93939d9f9c8f8276695c504336291d1000000000000007121c252e353b3e4046464646464646464646464646464646464645525d68717e8a949f999083776c60564c41362a24292c2d2e2f30302f353e454d545c606c717d8692999f93887d70685d52453a2f24180d0100000713202d3a4653606d798693a0aca194877b6e6154483b45515d6774818d9aa7a6998d8073665c606d7a85929faa9c8f8276695e53463c4955626f7c8895a2aca09386796d6053463a2d20130700000000000000000000000000050e17232e38424d57616c74808d959faaa2978f82786c6058535e69717e8a939ea8a69f92877c6f675d51483e33291d140a0000000000000000000000000000020e1a25303b45515d676f7c8591979ea5a8a09e95908b8885838281807f7f7f7e7e7e7e7d7d808d9aa7afa396897c706356493d3023160a000000000000000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e0100000000010e1b2734414e5a6774818d9aa7b0a4978a7d7164574a3e3124170b0000000000000000000000091623303c4956636f7c8998a2aa998d807366564c41362a1e0a000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000a1724313d4a5764707d7d7d7d7d7d7d7d8391908376695d5043362a1d100300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8693a0acac9f9286796c5f5346392c2013000b1723303c47525c64676c6c6c6c6c6c6c68645d535d64686c6c6c6c6c6c6c66635c52473b2f23170a000000000e1a25313b4653606d798592998c8073665c535049413c342a22190b020000000000000002090e12141520202020202020201413110d080200000000000000040c141b212628292d2d2d2d2d2d2d2524221d18110900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e161e24292c2d3636363636363433302b251d20262b2e2f36363636363632312e29231b13090000000d1a2633404d596673808c99a6a89c8f8275695c4f4236291c0f000c1926323f4c5965727f8c989faaa99c8f8376695c504336291d100000000000020d19232e3740464b4c535353535353535353535353535353535353534c56616c76828f989f948b7e71685e52463d302f35393a3b3c3c3d3d3c383b424a515a626b707e87939f9a92857a6d60554b4135291d110400000713202d3a4653606d798693a0aca194877b6e6154483b4753606d7985929fab9f94887b6e62545d6774818e9ba89f93877b6e6154483d4955626f7c8895a2aca09386796d6053463a2d201307000000000000000000000000000006111c26303b45505a606d78839098a2a99f948c7f726a605b656e7b85929fa5a99f948c7f726a60554b40362c21170b0200000000000000000000000000000009141f2935414b555f6a6f7c858f939c9fa4a79f9d989892908f8d8d8c8c8b8b8b8b8a8a8a8d929da9afa396897c706356493d3023160a000000000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e0100000000010e1a2734414d5a6774808d9aa7b1a4978b7e7164584b3e3125180b0000000000000000000004111d2935414c566673808c99aaa298897d706356493d3025190d000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000013202d394653606c79868a8a8a8a8a8a8a9195908376695d5043362a1d1003000000000000000000000000000000000000000000010406070d0b0a08050000000003080b0d0e0d070604000000000000000000000000000000000000000000000714202d3a4753606d7a86939f9f9f9f9286796c5f5346392c20130007131f2b36404a52585a606060606060605b59534b53595b606060606060605957524a40352a1f13070000000009141f2c3845515c67748086868685796d6053463f382f2a22191007000000000000000000000205070813131313131313130707050100000000000000000000030a1015191c1d20202020202020181815110c06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c13191d2021292929292929282724201a13151b1f21222929292929292525221e181109010000000d1a2734404d5a6773808d9aa6a99c8f8376695c504336291d10000c1926323f4c5965727f8c98a5b2a99c8f8376695c504336291d10000000000006121e2a3540495157596060606060606060606060606060606060606060605a616e7b86929f9e92857a6d61594f42393a4045474848494a4a48443d3940445059616c73808c96a0978d8073675d5145392c20130600000713202d3a4653606d798693a0aca194877b6e615448424d5764717e8a97a2aa9c908376695f535563707d8996a1a49a8c7f7366594f444955626f7c8895a2aca09386796d6053463a2d2013070000000000000000000000000000000a151e29333e45515c666e7b85929fa5a69f92877c6f67606c77828f97a2ada1978f82776c60584e43392f241a0f0500000000000000000000000000000000020d18242f3a434e585f6a6f7a82898f93999c9fa2aaa29f9d9b9a999998989898979797979a9da4aeafa396897c706356493d3023160a000000000000000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e0100000000010e1b2734414e5a6774818d9aa7b1a4978a7e7164574b3e3124180b000000000000000000000713202c3945525d687683909da99f9285796d6053463a2d201308000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000013202d394653606c7986939393939393939393908376695d5043362a1d10030000000000000000000000000000000000000001070d1113141a181715110c0601080f14181a1b191413100c0701000000000000000000000000000000000000000714202d3a4753606d798693939393939286796c5f5346392c201300030e19242f3840474c4d535353535353534e4d4841484d4e535353535353534d4b4740382e24190e020000000004101c2834404b55646e74797979786d665c5044382d261d18100700000000000000000000000000000000000000000000000000000000000000000000000000000005090d0f10131313131313130c0b090501000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d1113141d1d1d1d1d1d1b1a18140f080a0f1215151d1d1d1d1d1d191816120d0700000000000e1b2734414e5a6774818d9aa7aa9d9083776a5d5044372a1d11000c1926323f4c5965727f8c98a5aca99c8f8376695c504336291d1000000000000a16232f3b46515b63666c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b69727f8c95a0978e81746b60544b40434b51535455565756554f473d343f47505a606d7884919e9f92857a6d6054473a2d21140700000713202d3a4653606d798693a0aca194877b6e61544846535e6976828f9ca9a2988b7e7165574d53606c7884919eac9e9184776b6054484955626f7c8895a2aca09386796d6053463a2d201307000000000000000000000000000000030c17212834404b545f69717e8a929da7a3999184796d6a727f8c949fa9a49e92857b6e655b50463c31281d120800000000000000000000000000000000000007131d28313c464e585f686d757c82878b8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abacb5afa396897c706356493d3023160a000000000000000a1724313d4a5764707d8a97a3b0a79a8e8174675b4e4134281b0e0100000000010e1b2834414e5b6774818e9aa7b0a3978a7d7064574a3d3124170a000000000000000000000714212d3a4754606d7a86929fa89c8f8275665c5145382c1f1306000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000013202d394653606c7986868686868686868686868276695d5043362a1d1003000000000000000000000000000000000000040c13181d2020272524211d17100b131a2024272726201f1c18120b030000000000000000000000000000000000000714202d3a4753606d798686868686868687796c5f5346392c2013000008121d262f363c3f414646464646464641403c373c404146464646464646403f3b352e261c12070000000000000c18232e3943525c64676c6c6c6b605c544a3f34281b140b0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010407071010101010100e0d0b08030000030608091010101010100c0b0906010000000000000f1b2835424e5b6875818e9b9f9f9d9184776a5e5144372b1e11000c1926323f4c5965727f8c989f9f9f9c8f8376695c504336291d1000000000000c1925323e4b57636d737979797979797979797979797979797979797979797978736d7883919a9e93897d70665c51454b555d60616263636360594f4438353e44505c66727f8b98a2988a7e7164574b3e3124180b00000713202d3a4653606d798693a0aca194877b6e6154484953616e7b87939fac9f92867a6d605447505b6573808c99a6a096897c6f63554b4955626f7c8895a2aca09386796d6053463a2d20130700000000000000000000000000000000050f18232e39424d57616c74818e95a0aaa0968e81746f7c86929fa6a79d928a7d70695e53493f342b1f160c00000000000000000000000000000000000000010c161f2a343c464e565e616b6f757b7f8285888a8c8d8f8f9090919191919292929292999ba3acafa396897c706356493d3023160a000000000000000a1723303d4a5663707d8996a3b0a89b8e8175685b4e4235281b090000000000020f1b2835424e5b6875818e9ba8b0a3968a7d7063574a3d3024170a000000000000000000000b1724313e4a5764717d8a99a3a8988b7f7265544b4034281c1004000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000013202d3946535f6c7679797979797979797979797670665a4e4235291c0f030000000000000000000000000000000003090d161d24292c2d3431302d28221b141d252b303334332d2c29231d150d09030000000000000000000000000000000006131f2c3845515c67767979797979797979756a5e5245382c1f120000010b141d242b303334393939393939393534302b3034353939393939393933322f2a241c130a0000000000000007121d2730404a52585a6060605e53504a42382e23170a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2935424f5c6875818f939393939184786b5e5245382b1f12000c1926323f4c5965727f8c93939393938f8376695c504336291d1000000000000d192633404c5966737f868686868686868686868686868686868686868686868578666f7d88939f9d9184796d60574d515d676d6e6f6f70706b6055483d32343f4a54616e7b8899a49a8d8174675a4e4134271b0e01000713202d3a4653606d798693a0aca194877b6e615448505b6573808c9aa4a89b8e8174675d51454953616e7b88949fa89a8e8174675d514955626f7c8895a2aca09386796d6053463a2d201307000000000000000000000000000000000007121d27303b45505a606d79839098a2a89d938a7e79839098a3aaa0958d80746c61564d41382d22190d040000000000000000000000000000000000000000040d18222a343c444c52596063696e7276797b7d7f81828383848484848585858585868b909ba7afa396897c706356493d3023160a000000000000000916222f3c4955626f7c8895aab4a99c8f8276695c4f4330251a0e0200000000030f1c2936424f5c6975828f9ca8b5ab95897c6f6256493c2f23160900000000000000000006121e2b37424d576774818e9aaba196887b6e6255483b2e23180c00000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000121e2b37434f5a646c6c6c6c6c6c6c6c6c6c6c6c69665e544a3e32261a0d01000000000000000000000000000000060e151a1f282f35393a403e3d39342d241d262f363c4041403a38342f271f1a140d0500000000000000000000000000000004101c2934404b555c6c6c6c6c6c6c6c6c6c6a63594e42362a1d11000000020b12191f2326272d2d2d2d2d2d2d282724202427282d2d2d2d2d2d2d2626231f19120a0100000000000000000b151e2f3840474c4d5353535246443f3830261c11060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101c2936434f5c69768286868686868685786c5f5245392c1f12000c1926323f4c5965727f868686868686868276695c504336291d1000000000000d192633404c5966737f8c93939393939393939393939393939393939393939185786b6b74818e97a0968c7f73695f5353606d797b7b7c7d7d7063584e4338313a4653606d7986939f9c8f8276695c4f4336291c1003000713202d3a4653606d798693a0aca194877b6e61544853606c7884919eaca096897c7063554b4146535f697683909caa9f92857a6d60534955626f7c8895a2aca09386796d6053463a2d2013070000000000000000000000000000000000000b151e2a333e45515c676e7b86929fa5a59e9285818e95a0aaa3989183796d60594f443b2f261b1007000000000000000000000000000000000000000000050e171e252a323a41464f54575e6165666d6f717374757676777777787878787879797e8b98a4afa396897c706356493d3023160a000000000000000814212e3b4754616e7b8798a3aeaa9d9084776a574d42362a1e12050000000005111d2935414c566a7783909daaafa399877b6e6154483b2e2115080000000000000000000814212d3a47535f697784919eaa9e9184786a5f53473a2e1d120700000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000f1b27333e49525a5f60606060606060606060605d5a544c43382d22160a000000000000000000000000000000060f1820262b313a4045474d4b49453e362d222f3841484c4e4c47454039312a251f170f050000000000000000000000000000000c18232f39434b515f606060606060605f5e5951473d31261a0e0000000001080e13171a1a202020202020201b1a1814181a1b202020202020201a1917130e0700000000000000000000030c1d262f363c3f41464646453a38342e261e150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1c2835414e5a6670767979797979797873695d5144382b1e12000b1825313e4a57626d72797979797979797670665a4e4235291c0f00000000000d192633404c5966737f8c999999999999999da0a7a9a29f999999999999999185786b616d7a85929e9f92867b6e615a5c6976828788898a85786a605448423f404653606d798699a49c8f8376695c504336291d1003000713202d3a4653606d798693a0aca194877b6e61544c5663707d8996a1ab9e9184786c6053463a424d5765717e8b98a2a2988b7e7164574d55626f7c8895a2aca09386796d6053463a2d201307000000000000000000000000000000000000030c18212934404b555f69717e8b939ea7a297928e939da7a69f92867c6f675d51473e32291d140a000000000000000000000000000000000000000000020c1720293036393a3e3f44484d5354545c606264666768696a6a6a6b6b6b6b6c6c6c717e8b98a4afa396897c706356493d3023160a000000000000000713202d3a4653606d7986929facab9f928578695e52463a2d201407000000000713202d3946525d687885929eabac9f9286796d6053463a2d2013070000000000000000000815222e3b4855616e7b8896a0ab9a8e817467584e43372b1f0b0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000a16212c3740494f535353535353535353535353504e4a433a31271c11050000000000000000000000000000030e18212a31373e434b51535a585650483e322b34414a53585a5953514b433e36312921170d03000000000000000000000000000007121d2731394045535353535353535353524e473f352b20150900000000000003070b0d0e131313131313130e0e0c080c0e0e131313131313130d0c0a07020000000000000000000000000b141d242b303334393939382d2c28231c150c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1926323e49545e66696c6c6c6c6c6c6c6961574c4135281c10000916222e3a46515b62656c6c6c6c6c6c6c69665e54493e3226190d00000000000d192633404c5966737f8c8c8c8c8c8c8c8c9095a0a297928c8c8c8c8c8c8c8c85786b5d68717e8b949f988f82766c61566673808d959697897c6f625b534d4c4d4f58626f7c8895ab9b8e8275685b4f4235281c0f02000713202d3a4653606d798693a0aca194877b6e6154525d6875818e9ba8a4998c7f73655b5044373b4754606d7a86929faa9c8f8276695e5355626f7c8895a2aca09386796d6053463a2d20130700000000000000000000000000000000000000060f18232f39434d57616c74818e95a0a9a29e9b9da5a99e948b7f726a5f554b40352c20170b0200000000000000000000000000000000000000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f65717e8b98a4afa396897c706356493d3023160a0000000000000006121f2b3844505c667784909daaaea298877b6e6154483b2e21150a000000000714212e3a4754616d7a8797a1adaa9e918477665c5145382c1f1306000000000000000003101c28343f4a5465727e8b98a8a4998a7d7164574a3e31261a0f0000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000005101b252e373e4346464646464646464646464643423e3831281f150a0000000000000000000000000000000915202a333c424750555d606764615a50443a323d46535c646766605c554f46423b33291f14090000000000000000000000000000010b151f272f343846464646464646464645423d352d24190f0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b131a1f2426272d2d2d2b201f1c17110a03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915212d38424c545a5c6060606060605f5d574f463b3024180c0006121e29353f49515759606060606060605c5a544c42382d21160a0000000000091623303c4956636f7d808080808080808083909d9f928580808080808080807f726556626c76828f989f948a7e71685d626f7c89959f9c8f82756d615e57595959616a73808d99a8998d8073665a4d4033271a0d00000713202d3a4653606d798693a0aca194877b6e615454606d7a86929fac9f93877b6e6153493f333945515d6775818e9ba89f93877b6e615355626f7c8895a2aca09386796d6053463a2d201307000000000000000000000000000000000000000007121d27313c45505a606d79839198a2adaba7a9ada1978f82776c60584e43392f231a0e05000000000000000000000000000000000000000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525965727f8c98a5afa396897c706356493d3023160a0000000000000003101c28343f4a546875818e9ba8b3aa978a7d7064574a3d32271b0d04000001081623303d495663707c8996a9b3a89c8f827569544b4034281c1004000000000000000006121f2c3844505c6675828f9ba89f93867a6d6054473a2d2114090000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000009131c252c33373939393939393939393939393635322d271f160d030000000000000000000000000000020e1a26313c454e535a61676d73716c61564c4137434e58646e74736d676159534d453b31251a0e020000000000000000000000000000030d151d23292c3939393939393939393836312b241b120800000000000000000000000104060712131313130908060300000000000000000000000000000000000000000000000000000001080e13171a1a2020201f1312100c0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101b26303a42494e4f53535353535352514c463d342a1f130800010d18232d373f464a4c53535353535353504e49423a31261c100500000000000915222f3b4854606b6f7373737373737374818e9b9e91847873737373737373726d62575a626e7b86929f9e91857a6d60606a7783909a9e948c7f756e69676666676b707c86929fa096897c6f6356493c3023160900000713202d3a4653606d798693a0aca194877b6e61545865727e8b98a3a99c8f8276695e5341382d35414b5563707d8996a1a49a8c7f73655b55626f7c8895a2aca09386796d6053463a2d2013070000000000000000000000000000000000000000010b151f2a333e45515d676f7c86929facb8b4b8ab9e92857a6d655b50463c31271d11080000000000000000000000000000000000000000000005111d2a36414c565e6164656768696a6b68655d534840414243434444444545454d596673808c99a6afa295897c6f6256493c2f23160900000000000000000b17232e3f4b5865727e8b98a8b2a69a8d807367584e43372b1f15100c090e131e2a36414c5666727f8c99a5b3aa998c7f7366594c402e23180c0000000000000000000713202d3a4653606d7985929fa99d908376685d5245392c2013070000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000010a131b21272b2d2d2d2d2d2d2d2d2d2d2d2d2a2926221c150d0400000000000000000000000000000006121e2b37424e575f626c7179807e71685d52453c4754606a74817f79706b615e574d42362a1e1205000000000000000000000000000000030b12181c1f2d2d2d2d2d2d2d2d2c2c2a26201912090000000000000000000001070d1013141e202020201615130f0a0400000000000000000000000000000000000000000000000000000003070b0d0e131313120706030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e2830383e41434646464646464544413b342b22180d02000007111b252d353a3e3f4646464646464643423e3831281f150a0000000000000713202c38444f5960636666666666666874818e9b9e9184786b66666666666665625b51535f6973808c96a0978d80746a6063707d88939f9c918c817b7673727374777d859298a29e9184786d6053463a2d20130700000713202d3a4653606d798693a0aca194877b6e61545f6a7683909daaa2978a7e7164574d422f262f3a4653606c7884919eac9e9184786c6055626f7c8895a2aca09386796d6053463a2d201307000000000000000000000000000000000000000000030d18212935404b555f6a737f8c99a6b2bdb0a3968a7d70685e53493f342a1f150b00000000000000000000000000000000000000000000000713202d3946525e686d71727374767778756f65594d3d323536373737383835404b556774818e9aa7b2a995887b6e6255483b2f22150800000000000000000615222f3c4855626f7b8896a0acaa9d9184776a6054473c31271f1c181b1a1e242d3946525e6876838f9ca9aea298897c706356493d30231607000000000000000000091623303c4956636f7c8998a2aa998c807366564c4135291d11040000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000010910161b1e2020202020202020202020201d1c1a16110a03000000000000000000000000000000000814212e3a47535f6a6e767e848d857a6d60584e43505a626f7c888c847d756e695e53463a2d2114070000000000000000000000000000000001070c10132020202020202020201f1d1a150f0800000000000000000000040c12181d20202b2d2d2d2d22211f1b150e070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c161e262d323536393939393939393835302a22191006000000000a131b23292e3132393939393939393635322d261f160d03000000000000030f1b27323d474f545659595959595b6874818e9b9e9184786b5e5959595959595751494d57606d7984919e9f93877c6f66606b73808d939f9c938e8783807f8081848a9297a19f928a7d70665c5044382b1f120600000713202d3a4653606d798693a0aca194877b6e6154626f7c88959fab9f9285796d6053473b31202b3844505b6673808d99a7a096897c706355626f7c8895a2aca09386796d6053463a2d20130700000000000000000000000000000000000000000007121d27313c46505a606d7984919eaab7b9b1a4978b7e71695f554b40342820170b02000000000000000000000000000000000000000000000714212e3a4754616d7a7e7f8081828485817568584e43372e2c2823282c2f3945515d677783909daaada196877a6d6054473a2d21140700000000000000000815212e3a47535f6a7784919eabaca095887c6f62584e4339312c282327262b2f35414c56616d7a86929facab9f9285796d6053463a2d201307000000000000000004111d2935414c566673808c99aaa298897c6f6356493c3024190d010000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000050a0f12131313131313131313131313100f0d0a050000000000000000000000000000000000000815222f3b4855626e7c828a91968d80746a5f534b55616c76839096918a827b6e6154483b2e21150800000000000000000000000000000000000000040613131313131313131312110e090400000000000000000000040d161d24292c2d38393939392f2e2b2620181007000000000000000000000004090d0f0f131313131313130d0c0a060200000000000000000000000105090b0b13131313100f0d0905000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c141b212628292d2d2d2d2d2d2c2b28241f1810070000000000010a11181e2225262d2d2d2d2d2d2d292926211c150d0400000000000000000b16212b353d4448494d4d4d4d4e5b6874818e9b9e9184786b5e514d4d4d4d4c4a463f45515c67707d89939e999083786d60606c77808c92989f9992908d8c8c8e91969e9f99928c80736b61544a3f34281c100300000713202d3a4653606d798693a0aca194877b6e615c6673808d9aa7a79a8d8174675c5145382c1f28333f4a54626e7b88959fa89b8e8174675d626f7c8895a2aca09386796d6053463a2d2013070000000000000000000000000000000000000000060f18242f39434e58626c75818e96a0acafacafac9f92867b6e675c51453e32291d140a000000000000000000000000000000000000000000000815212e3b4854616e7b878c8d8e8f909184786a6054473f3a38342e34383a404b55606d7a86929facab9e918578675d5145392c201306000000000000000006121f2b37434e586673808d99a3afa89b8e81756a5f554b433c38342e3431373a4145525d68737f8c99a3afa79b8e8175675c5145382c1f130600000000000000000713202c3945525d687683909da99f9285796d6053463a2d201308000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d949e9f92877c6f625a515c67717e8a949f9e93867d7063574a3d3024170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f282f35393a45464646463c3b37322a22180e04000000000000000002091015191b1c20202020202020191916120d07000000000000000000060c11151718202020201d1c1915100a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1015191c1c2020202020201f1e1c18130d060000000000000000070d12161819202020202020201d1c1916100a03000000000000000000040f19232b32383b3c404040414e5b6874818e9b9e9184786b5e51454040403f3e3a34404b55606b75818e97a0958c7f72695e656c777f868e92999b9c9a99999a9d9b99938f867f736e63594f42382e23170b0000000713202d3a4653606d798693a0aca194877b6e61606d7985929eaba095897c6f62554b4034291c222d3847535f697683909daa9f92857a6d60626f7c8895a2aca09386796d6053463a2d20130700000000000000000000000000000000000000030c18212935404b555f6a717e8b939ea8aba39fa3aba2989083796d60594f443b2f261c11060000000000000000000000000000000000000000000714212d3a46535e697884919a9b9c9d96897c6f625a504a464440434044464b515c67717e8b98a3aeaa9b8f827568554b4135291d11040000000000000000030f1a26313c4854616e7b87929faaac9f92877c6f675d554e46454041414142474c515b606d7a85929eabaca095897d7063554b4034281c100400000000000000000714212d3a4754606d7a86929fa89b8f8275665c5044382c1f1206000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000000000000000000000000004080a0a131313130d0c0a070200000000000000000000000713202d3a4653606d78839097a2999083766c6156606d7984919e9f958d80736b6155483c2f23160900000000000000000002070c0f11121313130e0706040000000000000000000000000000000000000000000007121d28313940454751535353534947433c342a20150a00000000000000030c141b212528292d2d2d2d2d2d2d2625231e19120a010000000000000911181d2124252d2d2d2d292826211b140c0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005090d0f101313131313131212100c0802000000000000000000000106090b0c13131313131313100f0d0a0500000000000000000000000007111921272c2f30333335414e5b6874818e9b9e9184786b5e514538333332312e2e39434f59616d7a85929f9f92867b6e615b656c727b81868b8e9091929291908e8b87827c726d635c52473e30261c11060000000713202d3a4653606d798693a0aca194877b6e6164707d8a97a1ab9d9083776a605443392f23181c2b37424d5765727e8b98a3a2988b7e7164626f7c8895a2aca09386796d6053463a2d201307000000000000000000000000000000000000000b151e2a333c45515d676f7c86929fa5a79f999299a3aaa0958d80746b61564d42382d22170d04000000000000000000000000000000000000000005121e2a36424d576774818e9aa6a9a89b8e81756c605c5453514a504a5153555d606d7983919daaaea2988b7e7165584b3e2f24180d010000000000000000000a15212d3a46535e6975818e98a3aea3999083796d675f5853514b4e4e4e4d53555d606d74818e97a1ada69d9083776b605443392e23180c0000000000000000000b1724313e4a5764717d8a99a3a8988b7e7265544a3f34281c1003000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d10030000000000000000000000000000000000000000000000000000050b101416171f2020201a1917130e070000000000000000000006131f2c3845515c666e7b85929a9f948b7e71675e68737f8c96a1989083796d60594f44382c2014070000000000000000060d13181c1e1f2020201b1313100c0700000000000000000000000000000000000000010d18242f39434b51535e6060606055534e463c32261b0f040000000000020c151e262c3135363939393939393933322f2a231c130a000000000009121b22292e3132393939393635322d261e160c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070f161b202223262835414e5b6874818e9b9e9184786b5e5145382b2626251d27303d46525e68717e8b949f988f82756c615b606a6e757a7e81838585868584817f7b756f6a635b524940352c1e140a000000000713202d3a4653606d798693a0aca194877b6e616875828f9ca9a3998c7f7265584e4331271d121a26313c4754606d7a86929faa9c8f837669626f7c8895a2aca09386796d6053463a2d20130700000000000000000000000000000000000007121d27303c45505a606d79839198a2aa9f9590869299a4a79d928a7d70695e544a3f332820160c0100000000000000000000000000000000000000020e1a25313c4855626f7c88949faaaa9e938a7e726d6662605c545d545c6062676d75808d95a0aca99f92867a6d6154473a2e2114070000000000000000000005121e2a36424d57616e7b86929fa6aba0958f82796f6a63605c555b5a5b575f62676d747f8c939ea9a99f948a7d7064594f4430271d1207000000000000000005121e2b37424d576774818e9aaba096887b6e6155483b2e23170c00000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000810171c2023242c2d2d2d2726231f19120a01000000000000000004101c2834404b545e69707d88939f9e91857a6d616e7b86929f9f92867b6e665c51473e33281c1004000000000000000710171e24282b2c2d2d2d28201f1c18120b03000000000000000000000000000000000004101d2935404b555d606b6c6c6c6c625f584e43372b21160a000000000009141e2730373d414246464646464646403e3b352e251c120700000006111b242d343a3d3e4646464643413e3830281e1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040b0f1315161b2835414e5b6874818e9b9e9184786b5e5145382b1e1918151e2a36414c56606c778390999e938a7d70675d575f62686e717477787979787775726e69625f58514940372e231a0c02000000000713202d3a4653606d798693a0aca194877b6e616e7a86929fac9f92867a6d6154473d3221150b15202c3945525d6875818e9ba99f93877b6e626f7c8895a2aca09386796d6053463a2d2013070000000000000000000000000000000000060f18232e39434d57616c74818e95a0aaa29890837d87939fa7a49e92857b6e665b50443d32281e130800000000000000000000000000000000000000000915212e3b47535f6a76828f98a2aea59f92877f78726f6d666a696a666d6f7379818d929da7aca2978d8074685d5246392d20130700000000000000000000020e1a25313b46535f69737f8c949fa7a79f948f837c75706d676867676869696e737a818c919ca5aaa1978f82766c6155473d331e150b0000000000000000000714212d3a46535f697784919eaa9e918477695f53463a2d1c110600000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000000000000000006111a22282d30313939393933322f2a241c140a0000000000000000000c18232e39424d57616b73808d949f978d80746a74818e989d938a7e71695f544b40352c21160b0000000000000006101922292f343738393939352d2c28231d150c05000000000000000000000000000000000613202c3945515d676d78797979796f6a5f53473d32271b0f0100000004101b26303942494d4f535353535353534c4b4640372e23190d0200010c18222d363f454a4b53535353504e49423a30231a0f05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000307090e1b2835414e5b6874818e9b9e9184786b5e5145382b1e120b0c1925303a44505b656f7c87929f9e9184796d605853565e6165686a6b6c6c6b6a6865615e57534e463f372e251c110800000000000713202d3a4653606d798693a0aca194877b6e66727f8c99a3a99b8f8275685e5246392d201304111d2935414c5663707d8a97a1a49a8c8073656f7c8895a2aca09386796d6053463a2d20130700000000000000000000000000000000030c17212834404b555f69717e8a939da7a59f92867b73808d95a0aaa1978f82786c60594f443a2f241910060000000000000000000000000000000000000006121f2b37434e58626f7c86929fa4aca399928b837f7b797777767777797c80858e939da4aea49a92857a6d61564c4135291d1105000000000000000000000009141f2a36424d57606d78828f959fa7a69f959087817d79777574747476787b80858e939ca3aaa29892857b6e615a5044352b210c030000000000000000000815222e3b4855616e7b8896a0ab9a8d817467574d42362a1e0a0000000000000000000000000004111e2a3744515d6a7784909daaa99c8f8376695c504336291d100300000000000000000000000000000000000000000000030a1117242c33393c3d46464646403f3b352e261c120700000000000000050c121d27303b454f59606d788290979f92877c6f7c87939f958e81746c61574d42392e231a110c060000000000020d17222b333b404445464646413a38342e271e170e060000000000000000000000000000000714202d3a4753606d7a84868686877c6f62594f44382c1d12070000000915212c37424c545a5c606060606060605957514940352a1e12060005111d29343f48505658606060605c5a544c42352b21160b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1b2835414e5b6874818e9b9e9184786b5e5145382b1e120008131e27333f49535f6a73808d96a0968d80736a5f534c5254585b5d5e5f5f5e5d5b5854524d47433c342d251c130a0000000000000713202d3a4653606d798693a0aca194877b6e6a7784919daba1978a7d7064564c41362a1e11050d19242f3a4653606d7984919eac9e9184786c6f7c8895a2aca09386796d6053463a2d201307000000000000000000000000000000000b151e29333b45515c676e7b86929fa5a89e938b7e716d79839098a3a99f948c7f736b60564c41352922180d03000000000000000000000000000000000000030f1b26323c47535f6a717e8b939aa2aaa39f95918c8886848483838485898c92979ea5aaa39f93887d70685e52443a3024190d010000000000000000000000030e1a26313b44505c666d7a8390959da5a7a099938e898683828181818385888c92979da5a7a09892867d70695e52483e3323190f00000000000000000003101c28343f4a5465727e8b98a8a3998a7d7064574a3d31261a0e0200000000000000000000000004111e2a3744515d6a7784909d9f9f9c8f8376695c504336291d1003000000000000000000000000000000000000000000040c151c2328363e44494a525353534d4b4740382e24190e0200000000000810171d1e252a333e44505c666e7b85929a9990827982909a989183796d605a50453c302a251e1d1710090000000007131e29333d454c50525353534e4645403930292018100800000000000000000000000000000613202c3945515d67707d8a949a8f82766b605448392f24180c0000000d1925313d49545e65696c6c6c6c6c6c6c66635b51463b2f23160a000915212e3a45505a62656c6c6c6c69665e54473d33271c10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205070e1b2835414e5b6874818e9b9e9184786b5e5145382b1e1205020b17222d38414e58606d7984919e9f92877c6f655b5046474b4e5152525352514e4c4846423b37312a221c130a010000000000000713202d3a4653606d798693a0aca194877a6e6f7c8995a0ab9e9185796d6053463a3025190d0108131f2b3844505c6673808d9aa7a196897d706f7c8895a2aca09386796d6053463a2d20130700000000000000000000000000000007121c27303b45505a606d79839098a2aba0968e81756c666e7c86929fa6a69f92877c6f685d52453f342a1f150b010000000000000000000000000000000000000a15202b37434e58616c727f8892989fa3a7a09d99999291909090919298999ea2a9a69f98928b7f726c61564c4132281e13080000000000000000000000000009141f28343f4a545e686d7a838e929d9fa7a49f9b9892908e8e8d8e8f9197999ea1a9a29e9590867d706b60574d42362c22110800000000000000000006121f2c3844505c6675828f9ba89f92867a6d6054473a2d2114090000000000000000000000000004111e2a3744515d6a778490939393938f8376695c504336291d10030000000000000000000000000000000000000000060d161e262e343f485055575f6060605a57524a40352a1f13070000000008121a22282d3036393a3f4a545e69707d88939f948e828e949f92867c6f675d51483e3a3936302d28221b12090000000c18242f3b454f575d5f6060605b53514b423a322a221a11070000000000000000000000000004101d2935404b55616c75828f9c94897c6f63554b4035291d100400000f1b2835414d5a65707579797979797979736d63574b3e3225190c000b1724313d4a56626d7179797979767066594f44382c20150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002090e1114141b2835414e5b6874818e9b9e9184786b5e5145382b1e12050006111b262f3c45515d67707d8a939e999083776c60564c413e41444546464544423f3b3a36302b262018100a01000000000000000713202d3a4653606d798693a0aca094877a6d74818d9aa8a79a8d8073665c504438291e13080003101c28343f4a54626e7b88959fa89b8e81746f7c8895a2aca09386796d6053463a2d2013070000000000000000000000000000050f18232e39424d57616c74808d95a0aaa39991847a6d605f6a727f8b949fa9a39991847a6d605a50463c31271d1207000000000000000000000000000000000000040f1a26313c46505a636d727e868e92999da0a8aba39f9e9d9c9d9e9fa2aaaaa29f9b948f867e726d62594f443a3020160c0200000000000000000000000000030b17232e38424c565e686d79818990959b9fa2aaa39f9d9b9a9a9b9c9ea1a9a49f9c97928c837b706b60594f453b30241a10000000000000000000000713202d3a4653606d7985929fa99c908376675d5145392c2013060000000000000000000000000004111e2a3744515d6a77838686868686868276695c504336291d100300000000000000000000000000000000000000070f18202830383f44515a61646c6c6c6c66635c52473b2f23170a00000005101a242c33393a4146474a4d5357606b73808c949e938e939e938b7f726a5f55534d4b4746413a39342c241b100600000f1c2834404c5761696b6c6c6c68605c544c443c342c2318120b030000000000000000000000010d18242f3943505a626f7c89949b8e8175675d5145392c1f130600000f1c2936424f5c697582868686868686867f7366594c403326190d000b1825323e4b5865717e8686868682766b6054483c32271b0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d14191e2021272835414e5b6874818e9b9e9184786b5e5145382b1e120500000a141d2935404b55616b75818e989f958b7e72685e52463d3037383939383735322e2d2a251f1a150e060000000000000000000713202d3a4653606d798693a0aca093877a6d7985919eab9f95887b6e62544a3f3428170d0200000b17232e3847535f6a7783909dab9f9285796f7b8895a2aca09386796d6053463a2d20130700000000000000000000000000020c17212834404a545f69717e8a929da7a69f92877c6f675d58606c77828f97a1aba1968e81756d62584e43392f23180f050000000000000000000000000000000000000a15202a343e48515b636c717b81878c919597999c9d9e9e9f9f9f9e9d9b9998928e89827b716c625b51473e32281e0e0400000000000000000000000000000006111c26303a444c565e676d747c83898e9298999b9d9e9f9f9f9f9e9d9b999993908b857f786e6960594f473d33291f120800000000000000000000091623303c4956636f7c8998a2a9998c7f7366554b4135291d1104000000000000000000000000020d17222b36424f5b6771777979797979797670665a4e4235291c0f030000000000000000000000000000000000000810192129323a424a505b636c7079797979736e63574b3f3226190c0000000c17222c363e45494c525457575f6165656d78828f9c9e9b9e9b8f82756d6865615e575754524c49453e362c22170c0000111e2b3744505d697378797979746d665e564e463e3528231c150c04000000000000000000000007121d28313e4754606a7683909c9285796d6053473a2d20140700000f1c2936424f5c6975828f93939393938c7f7366594c403326190d000613202d394653606c7883909994897d7063584e43372b1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171f252a2d2e342d35414e5b6874818e9b9e9184786b5e5145382b1e12050000020b18242f39434f59616e7b85929f9f92857a6e61594f43392e232c2c2b2a282521201e1a140f0a03000000000000000000000713202d3a4653606d798693a0aca093867a6f7c8997a1aa9d9083766a5f5342382e23170500000006111c2b37434e5865727f8b99a3a2988a7e717b8895a1aca09386796d6053463a2d201307000000000000000000000000000a141e29333b44515c666e7b85929fa4a99f948c7f726a6055505b656e7a85929ea5a89e938b7e716a5f554b40342921170c020000000000000000000000000000000000030e18222d363f49515a61696e747b8084888b8d8f90919292929291908e8c8985817c766e69615a51493f352c20160c00000000000000000000000000000000000a141e28323a444c555c606b6f777d8185898c8e90919292929291908f8d8a86837e79726d665f574f473d352b20170d0000000000000000000004111d2935414c566673808c99aaa197897c6f6256493c2f24180d0100000000000000000000000007131e29333d454c555f676a6c6c6c6c6c6c69665e54493e3226190d01000000000000000000000000000000000007121a222b333b444c545c606d727e868686868073665a4d4033271a0d000005111d28333e485055565e616467696e7175787c808d99a6a8a6998c807c7875716e696764615e565550483e34281d110500121f2c3845525f6b788586868681786d685f584f473f342e271e160e0600000000000000000000010c161f2b37434e5864717e8a99988a7e7164574a3e3124170700000f1c2936424f5c6975828f9c9f9f9f998c7f7366594c403326190d0005121f2b3744505b656f7c87939d9083776a6054473b2e221509000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202930363a3b413a38414e5b6874818e9b9e9184786b5e5145382b1e120500000007121d27313e46525e68727f8b959f978e81756b60554b4034281f201f1e1b191514120e09030000000000000000000000000713202d3a4653606d798693a0aca093867974808d9aa9a3988b7e7265584e4330261c1106000000000f1a26313c4754616d7a86929faa9b8f82757b8894a1aca09386796d6053463a2d20130700000000000000000000000006111c26303b454f59606d78839097a2ada1978f82786c60584e49535e68707e8a939da8a59f92867c6f675c51453e33291e140a00000000000000000000000000000000000006101b242e373f4850575e61696e73777b7e80828484858686858583827f7d79756f6b625f5750483f372d231a0e040000000000000000000000000000000000020c162029323a434b515960636b7075797c7f82838485868685858382807d7a76726d67605c544d453d352b23190e05000000000000000000000713202c3945525d687683909da99e9285796c605346392d201307000000000000000000000000000c18242f3b454f575d5f60606060606060605c5a544c42382d21160a00000000000000000000000000000000030b1218242c343d454d565d666d747f87929892857b6e6154473b2e21140800000814212d3945505a6164686d7174777b7e8185888d929ca8b3a89c928c8885817e7b7774716d6864615a5045392d211508000c1926323f4c5965727f8c93938e827a6f6a615951444039302820180f0700000000000000000000040d1b27323d4754606d7a86929a8d8174675a4e412f24180d01000f1c2936424f5c6975828f9ca8aca6998c7f7366594c403326190d00030f1b27333f49535f6a75828f9b95887c6f6255493c31261a0e02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f29323b4246474d4745404e5b6874818e9b9e9184786b5e5145382b1e1205000000010b151f2a36414d56606c788390999e93897d70675c51453c31261a0e110f0c0807050200000000000000000000000000000713202d3a4653606d798693a0afa39986797884919eab9f92867a6d6054473c3121150a00000000000a15202d3946525d6875828f9ba99f92867a7b8894a1aca09386796d6053463a2d2013070000000000000000000000050e17232e38424d57616b73808d959fa9a49e92857b6e665b5046414d56616c74818e96a0aba2989083796d605a50453b30261c110600000000000000000000000000000000000009121c25333d45454d52575f62666a6e71737577787879797978777573706d67636059534d453e362d251b110800000000000000000000000000000000000000050e1720333d454c504f54596063676d70727576787879797878777573706d6865605d55504a423c332b2319110700000000000000000000000714212d3a4754606d7a86929fa89b8e8175665b5044382b1f1206000000000000000000000000000f1c2834404c5761696b6c6c6c68605c544c504e49423a31261c1005000000000000000000000000000000050c151d2328363e464f575f686d78818c939993877d70695e52463a2d20140700000a1723303d4955616c71777a7e8184888b8e9297999e9ea1a9a39f9e9997918e8b8784817e7a77716c6155493d3024170a000b1825313e4a56626d75818f969490847c706b625b514a423a322a2119110600000000000000000915202b353f4745515d677683909c9083766a554b4035291d1004000f1c2936424f5c6975828f9ca8b2a6998c7f7366594c403326190d00000b17222d38414e58636f7c89959a8d807367574d42372b1e120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303b444d52545a53514b4e5b6874818e9b9e9184786b5e5145382b1e120500000000030d1925303b44505b666f7c87929f9e9184796d60574d42372b20160c02000000000000000000000000000000000000000713202d3a4653606d798693a0ac9f9286797c8996a1a89b8e8175685d5245392c201303000000000005111d2935414c5663707d8a97a1a2988a7d7b8794a1aca09386796d6053463a2d20130700000000000000000000020b172028343f4a545e69707d8a929da7a79d928a7d70695e544a3f3b44505a606d79849199a3aaa0958d80746c61574d42382e23170e0400000000000000000000000000000000000c18242f3a454f575c5f606059575f626466696a6b6b6c6c6c6b6a686663605d55544f47423c332d241b130900000000000000000000000000000000000000000c18242f3a454f575c5f606059555c606366686a6b6c6c6c6c6b6a686664615e5653514b443f38302a211911080000000000000000000000000a1724313d4a5764707d8a99a3a7988b7e7165544a3f33281c0f0300000000000000000000000000111e2b3744505d697378797979746d665e564e463e3528231c150c040000000000000000000000000000060e161e272e344048505960696e7a828e939f948c7f736b60574d42362a1e110500000b1724313e4a5764717e83878a8e9196989b9e9c97919197a1989292979c9e9b9896918e8a87837e7164574b3e3124180b000916222e3a46515b606d7a8491989691867d726d605c544c443c332b2317110a020000000000010e1a26313d4751595e556673808d99928578675d5145392c201306000f1c2936424f5c6975828f9ca8aa9f998c7f7366594c403326190d000006111b262f3c4854606b7783909d918478695f53473a2d2114080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36424d565e6167605c554e5b6874818e9b9e9184786b5e5145382b1e1205000000000008141f28333f4a545f6a73808d96a0968c8073695f53473e32281e1308000000000000000000000000000000000000000713202d3a4653606d798693a0ac9f928579808d9aa8a196897d7063564c4135291d11040000000000010d1924303a4653606d7985929eaa9b8e817a8794a0b5a09386796d6053463a2d201307000000000000000000000a141d29323b44505c666e7b85929ea4aaa0958d80746c61574d4238323e45515d676f7c87929fa7a79d928a7e70695e544a3f342820160c02000000000000000000000000000000030f1c2834404c5761686b6c6c66635b55585a5c5d5e5f565e61666a6c6c6a66605d564e463c322a211b12090100000000000000000000000000000000000000030f1c2834404c5761686b6c6c66635b5356595b5d5e5f565e61666a6c6c6a66605d564e463c342e261e180f0800000000000000000000000005121e2b37424d576774818d9aaba095877b6e6154483b2d22170b0000000000000000000000000000121f2c3845525f6b788586868681786d685f584f473f342e271e160e06000000000000000000000000070f18202830394045525a616b6f7b838f949d968f82776c60594f453b30251a0e0200000a1724313d4a5764707d8a939a9a9ea09e9a938f8a8585919e9286858a8f93999ea09e9a9a938a7d7164574a3e3124170b0006121e29353f45525d686f7c86929f9892877f746d665d564d453d3528231c140c030000000004111d2a36424e59636a6c6c727f8b9897867a6d6053473a2d201407000f1c2935424f5c6875828f9b9f9d93938c7f7366594c403326190d000007111b252c38444f596673808c9996887b6e6155483b2e221508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a46525e696e746d675f585b6874818e9b9e9184786b5e5145382b1e12050000000000020b17222d38424e58606d7984919e9f92867b6e625a50443a3024190c030000000000000000000000000000000000000713202d3a4653606d798693a0ab9f92857884919eac9e9184786c6053463a2f24190d0100000000000008131f2c3844505c6673808d9aa79e9285798699a3afa09386796d6053463a2d20130700000000000000000006111c262f3b444f59606d78829097a1ada3989083796d605a50453b2f2935404b55606a73808c959faaa49f92857b6e665c50443d32281e130800000000000000000000000000000005111e2b3744505c6873787979736d63574b4d4f50555d60686d7276787977736d685f584e443b3025190e02000000000000000000000000000000000000000005111e2b3744505c6873787979736d6357494c4f50555d60686d7276787977736d685f584e443b3025190c06000000000000000000000000000714212d3a46535f697784919eaa9d918477695e52463a2d1c110600000000000000000000000000000c1926323f4c5965727f8c93938e827a6f6a615951444039302820180f0700000000000000000000071019212a323a434b515b636c717d8591959f9991847a6d655b50473d33291f14090000000713202d3a4653606d7985929f9f9c97928d87827d7883909c9285787d82878c91969b9f9f9285796d6053473a2d20140700010d18232935414c565f6a727e8b939e99938c81786d685f574f473f342e261e150c0300000006121f2c3845525e6a757979797e8a9794877b6e6154483b2e211508000e1b2835414e5b6874818e9b95898686867f7366594c403326190d00010d18232d373f464956636f7c8999978a7d7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7b80796f6a605b6874818e9b9e9184786b5e5145382b1e120500000000000006111c262f3c45515d67707d8a939e988f82766c61564c4135291e150a0000000000000000000000000000000000000713202d3a4653606d798693a0ab9e92857b8896a1a49a8c8073655b504437281e13080000000000000003101c28343f4a54626f7c8895a0a197897c86929faca09386796d6053463a2d2013070000000000000000050e17222d38424c56606b73808d949fa9a69f92867c6f675d51473e3329242f3a434e58606d78839098a2ada2979082786d60594f443a3025191006000000000000000000000000000005121f2c3845525f6b788586867f7366574d4e535a61676d727a7f83858584807a6f6a5f564d42362a1f1408000000000000000000000000000000000000000005121f2c3845525f6b788586867f7366574d4e535a61676d727a7f83858584807a6f6a5f564d42362a1f1408000000000000000000000000000815222e3b4855616e7b8896a0aa9a8d807467574d42362a1e0a0000000000000000000000000000000b1825313e4a56626d75818f969490847c706b625b514a423a322a211911060000000000000000040f19222b333c444c555c606d737e869297a09f92877c6f685d53493f352b20170d0200000006131f2c3845515c6775818e9a948f8a85807b76717783909d92857971767b80848a8f92998e8175675d5145382c1f13060000070d19242f3a434e58626d75818e95a09f928e827a6e69605951443f3830271e150b0000000613202c3946535f6c798786868a909a95887b6e6255483b2f221508000e1b2734414e5a6774818d9a9083797979736d63574b3e3225190c0006121e29353f49515759606d798692998c7f7366594c403326190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b87837c726c656874818e9b9e9184786b5e5145382b1e1205000000000000000a141d2935404b55616c75828f989f948a7e71685d52453d30261c110600000000000000000000000000000000000713202d3a4653606d798693a0ab9e91847f8c99a89f93877b6e6153493f3327160c0100000000000000000c17232e3847535f6a7783909da9998c7f85929faba09386796d6053463a2d20130700000000000000020b162028333f4a545e68707d88939fa6a99e938b7f726a5f554b40352c201d28313d44505c666e7b86929fa6a99f948c80736b60564c41352922180d030000000000000000000000000004101d2a3743505d6a7683908f8276695e54585f626c71797f858c909292908c857c6f695e52463b3025190e020000000000000000000000000000000000000004101d2a3743505d6a7683908f8276695e54585f626c71797f858c909292908c857c6f695e52463b3025190e02000000000000000000000003101c28343f4a5465727e8b98a8a398897d7063564a3d30251a0e0000000000000000000000000000000916222e3a46515b606d7a8491989691867d726d605c544c443c332b2317110a020000000000000a16212b343d454d565e676d757f8a9298a19e938b7f726a60564c41382d23190e050000000004101c2834404b5564707d8a8d88837e79736e696a7784919d9886796d696e73787d82868c8a7d7064554b4035291d100400000008131e28313c46515b606d79839198a29d948f847b706b625b504a423930271d120700000613202c3946535f6c79869293979aa295887c6f6255493c2f221609000d1a2733404d5a6673808d99918578666c66635b51463b2f23160a000916222e3a46515b62656c667885919a8d8174675a4e4134271b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8790867f776e6974818e9b9e9184786b5e5145382b1e120500000000000000020b18242f3a43505a616e7b86929f9e92857a6d60594f42382e23170c03000000000000000000000000000000000713202d3a4653606d798693a0aa9e918482909caa9c8f8276695f5341382d22170400000000000000000006111c2b37434e5865727f8b99a39d908384919eaba09386796d6053463a2d201307000000000000000a141d28323a44505b666e7a85929aa4aba1968f82756d62584e43392f231a161f28343f4a545f69717e8b939ea9a69f93877d70685e52463f342a1f150b01000000000000000000000000020f1b2835424e5b6875818e92877b6e6663646a6f767e848c92989d9f9f9d9791857b6e61564d41362a1e110500000000000000000000000000000000000000020f1b2835424e5b6875818e92877b6e6663646a6f767e848c92989d9f9f9d9791857b6e61564d41362a1e1105000000000000000000000006121f2c3844505c6675828f9ba89f9286796d6053473a2d20140900000000000000000000000000000006121e29353f45525d686f7c86929f9892877f746d665d564d453d3528231c140c0300000000030f1b27323d464e575f686d79818c929fa3a0958e81756d62584e443a2f261b11080000000000000c18232e3a4653606d7984807b76716d66615f6b7884919e93877a6d6061666c70757a7f83796d6053463a2f24180c00000000010c161f2a343f45515d676e7c86929fa59f9691857d726d605c544b42392e23180c00000613202c3946535f6c7986929fa4a6a295887c6f6255493c2f221609000b1825323e4b5865717e8b989286796d605957514940352a1e1206000b1825313e4a57626d7279797983909b8e8275685b4f4235281c0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8798928c827b7174818e9b9e9184786b5e5145382b1e1205000000000000000007131d28313e46525e69727f8c95a0978e81746b60544a3f34281f1409000000000000000000000000000000000713202d3a4653606d798693a0ab9e918587929fa2988b7e7164574d422f261b1106000000000000000000000f1b26313c4754616d7a86929f9f928785929eaba09386796d6053463a2d20130700000000000006111b262f3a444f59606c78828f97a1aca49991847a6d615b51463c31271d110d17232e38424d57626d75828f97a1ada49991847a6d615b51463c31271d1207000000000000000000000000000c1926333f4c5966727f8c998f8279727071757c838a91969fa2aaa3a3a9a1978e8174685e5246392d20140600000000000000000000000000000000000000000c1926333f4c5966727f8c998f8279727071757c838a91969fa2aaa3a3a9a1978e8174685e5246392d20140600000000000000000000000713202d3a4653606d7985929fa99c8f8276675d5145382c1f1306000000000000000000000000000000010d18232935414c565f6a727e8b939e99938c81786d685f574f473f342e261e150c0300000007131f2c38434e5860696e7a828e939ca4a2989183796d605b51463d32281d140a0000000000000007131f2c3845515c676d78746e6a64605c545f6b7885929e94877b6e61545b6063686e72776d675c5145382c1d12070000000000040d18222935404b555f6a717e8a939da7a09792877f746d665c544b4034281c1004000613202c3946535f6c7986929facafa295887c6f6255493c2f221609000916232f3c4956626f7c899a99897c6f6356494640372e23190d02000c1926323f4c5965727f86868689959c8f8275695c4f4236291c0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b879298948f857e74818e9b9e9184786b5e5145382b1e12050000000000000000010c161f2a36424d57606d788390999f93887c6f665c50443b31251a0d040000000000000000000000000000000713202d3a4653606d798693a0ada197919299a39f9285796d6053473b3120140a00000000000000000000000a15202d3946525e6875828f9ba399929297a1ada09386796d6053463a2d2013070000000000040e17222d38414c56606b737f8c949fa9a79f93877d70685e52493f342a1f150b06111c26303c45505a616d7a85919ea4aba1968f82756d62584e43392f24180f060000000000000000000000000a1623303d495663707c8998948f837e7d7e828790949ea1a19e9996979a9f9f92877b6e6154473b2d22170b00000000000000000000000000000000000000000a1623303d495663707c8998948f837e7d7e828790949ea1a19e9996979a9f9f92877b6e6154473b2d22170b0000000000000000000000091623303c4956636f7c8997a2a9988c7f7265554b4035291d100400000000000000000000000000000000070d19242f3a434e58626d75818e95a09f928e827a6e69605951443f3830271e150b0000000915222e3b4854606a6f7b8490949ea5a49f92867c6e675d51493f342b20160b020000000000000004101c2834404b555c666c66625f575351505b657985929f95887b6e62555053565e61666a605c554b4034281c0b01000000000000071018242f39434e58616c74818e95a0a9a299928b80786d665c5145382c1f1306000613202c3946535f6c7986929facafa295887c6f6255493c2f221609000714202d3a4753606d7a8693998c807366594f44382c251c120700000c1926323f4c5965727f8c93939da09c8f8276695c504336291d10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c787f86909597928a81818e9b9e9184786b5e5145382b1e1205000000000000000000040d1a25303b44505c666f7c87939f9a9083786d60574d42362a1f160c0100000000000000000000000000000713202d3a4653606d798693a0b3a9a19e9fa3a89a8e8174675d5145392c1f1302000000000000000000000005111d2a36414c5664707d8a97a1a39f9ea1a9b3a09386796d6053463a2d20130700000000020c162027333f49535e686f7d87929fa6aa9f958d80736b60564c41372d22180d03000a151e2a333f46525e68707d8a929da8a89e938b7f726a5f554b40352921170d0300000000000000000000000713202d3a4653606d7985929f95908b898b8f93999fa39f97918c8a8a8e9299998c7f7265544a3f33281c0f03000000000000000000000000000000000000000713202d3a4653606d7985929f95908b898b8f93999fa39f97918c8a8a8e9299998c7f7265544a3f33281c0f0300000000000000000004111d2935414c566673808c99a9a197887c6f6255483c2f24180c00000000000000000000000000000000000008131e28313c46515b606d79839198a29d948f847b706b625b504a423930271d120700000916232f3c4956626f7c85919693939393928a7e716a5f554b40372d22190e040000000000000000000c18232e39434b545b605b54534e464653606c7986939f95897c6f625649464c5254595d53514b43392e23180c000000000000000007121d28313c46505a606d7983909893939393928d82796d6053463a2d201307000613202c3946535f6c7986929facaca295887c6f6255493c2f221609000613202c3945515d677783909d9083776b6054483d30261c110600000c1926323f4c5965727f8c989faaa99c8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505b666c727c838c9299938e8e939e9e9184786b5e5145382b1e12050000000000000000000009141f28343f4a54606a74808d97a0958c7f72695e53463e31281d130700000000000000000000000000000713202d3a4653606d798693a0acb3adabacaca095897c6f62554b4035291d10040000000000000000000000010d1925303a4653606d7985929eabacabadb3aca09386796d6053463a2d2013070000000008131e28323a44505b656d7a849199a3aea2989083786d60594f443a30251b10060000030c18212a36414c56616b74808d95a0aba69f92867c6f675d51453e33291f1409000000000000000000000006131f2c3845515c6774818d98a09d9896979b9fa49f99928d85807d7d818792998f8276665b5044382b1f12060000000000000000000000000000000000000006131f2c3845515c6774818d98a09d9896979b9fa49f99928d85807d7d818792998f8276665b5044382b1f12060000000000000000000613202c3945525d687683909da99e9185786c605346392d201307000000000000000000000000000000000000010c161f2a343f45515d676e7c86929fa59f9691857d726d605c544b42392e23180c00000d1a2633404d59667380868686868686868680746c61574e43392f251b10070000000000000000000007121d273039424a5053504a47423c4753606d7a869aa496897c706356493d4146474c504645403930271d12070000000000000000010c161f2a343e45515c676e7b8586868686868686867a6e6154473b2e211408000613202c3946535f6c7986929f9f9f9f95887c6f6255493c2f2216090004101d2935404b556673808c9995897d7063584e42382e23170b00000c1926323f4c5965727f8c98a5b2a99c8f8376695c504336291d1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545b606a6e787f8690959b9b9ea59e9184786b5e5145382b1e120500000000000000000000030b17232e38424e58606d7a84919e9f92867b6e615a50433a2f24180d01000000000000000000000000000713202d3a4653606d798693a0acacacacb5ab9d9184776a605443392f24180c0000000000000000000000000008131f2c3844515c6674808d9aa7b1acacacaca09386796d6053463a2d201307000000010d1924303a444e58606c77828f96a1aba59f92857b6e665c50473d32281e130900000000060f1925303a444f59606d79839199a3aea3989183796d605a50453b31261a0e020000000000000000000004101c2834404b55616e7b86929fa4a5a3a4a7a09d948f868079737070747d87939285796c605346392d2013060000000000000000000000000000000000000004101c2834404b55616e7b86929fa4a5a3a4a7a09d948f868079737070747d87939285796c605346392d2013060000000000000000000714212d3a4754606d7a86929fac9b8e8174655b5044372b1f120500000000000000000000000000000000000000040d18222935404b555f6a717e8a939da7a09792877f746d665c544b4034281c1004000c1925323f4b57636d737979797979797979746e645a50453c31281d12090000000000000000000000000b151e272f383f4446443f38373a4754616d7a8794a0978a7d7064574a3d36393b3f443a38342e271e150b00000000000000000000040d18222934404b555f696e78797979797979797976685e5246392d201407000613202c3946535f6c7986929393939393887c6f6255493c2f22160900010d18242f3b4855616e7b88949c8f82756a60544a3f34281c1003000c1926323f4c5965727f8c98a5aca99c8f8376695c504336291d1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424a50585f666d727c838c9299a0a79e9184786b5e5145382b1e1205000000000000000000000006111c26303d45515d67717e8a949e988f82756c61554b4035291d1104000000000000000000000000000713202d3a4653606d7986939f9f9f9f9f9fa3998c7f7266584e4331271d12070000000000000000000000000004101c2834404a54626f7c8895a09f9f9f9f9f9f9386796d6053463a2d20130700000004111d2935414c56606a727f8c949ea8a89e938a7e71695f544a3f352b20160c00000000000008131e29323e45515d676f7c87929fa69fa0958e81746c61574d42362a1e120500000000000000000000000c18232e3946525e69727f8b929b9e9f9e9b959089827b736d6763646b74818e98887b6e6255483b2f22150800000000000000000000000000000000000000000c18232e3946525e69727f8b929b9e9f9e9b959089827b736d6763646b74818e98887b6e6255483b2f2215080000000000000000000a1724313d4a5764707d8a99a3a49a8a7e716453493f33271b0f030000000000000000000000000000000000000000071018242f39434e58616c74818e95a0a9a299928b80786d665c5145382c1f1306000a16232f3b47525b63666c6c6c6c6c6c6c6c67645c52483e332a1f160c00000000000000000000000000030c151d262d33383938332d2e3b4854616e7b87949f978a7e7164574b3e312d2e33372d2c28231d150c030000000000000000000000060f18232f39434d575f616c6c6c6c6c6c6c6c6c6c5e564c41362a1e1105000613202c3946535f6c7987868686868686867c6f6255493c2f22160900000714212d3a47535f6975828f9c93877c6f665c5044382b1f1206000c1926323f4c5965727f8c989f9f9f9c8f8376695c504336291d10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f383f444e545c606a6f788087909593939184786b5e5145382b1e12050000000000000000000000000a141e2935414c55616c75828f9893948a7d70675d5145392c201306000000000000000000000000000713202d3a4653606d7986939393939393939392867b6e6154473d3221150b0100000000000000000000000000000c18232e394754606a778390939393939393939386796d6053463a2d2013070000000713202c3945525d686f7c879293939393968e81746c61574d42382e23190e04000000000000020c17202935404b55606a727f8c9493939393938a7e71695f53463a2d211407000000000000000000000007121d2a36424d56626d7380898f9292918f8a837d766e69605d5559626f7c89988a7d7063574a3d3024170a000000000000000000000000000000000000000007121d2a36424d56626d7380898f9292918f8a837d766e69605d5559626f7c89988a7d7063574a3d3024170a0000000000000000000e1b2734414e5a6774818d93939393877a6d6154473a2d22170b0000000000000000000000000000000000000000000007121d28313c46505a606d7983909893939393928d82796d6053463a2d2013070007131e2a35404952575960606060606060605a58524a40362c21180d040000000000000000000000000000030b141c22282b2d2b28222f3b4855626e7b889393938b7e7265584b3f322521262a201f1c18120b030000000000000000000000000007121d27313c454d53555f60606060606060605f524c443b3025190e020006121f2c3845525e6a757979797979797979766a6054473b2e221508000006121e2b37424d57626f7c89939a9083786d6053463a2d201307000c1926323f4c5965727f8c93939393938f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262d333c424a50585f666d737c838686868684786b5e5145382b1e1205000000000000000000000000020c19242f3a43505a616e7b8686868686847a6d6053473a2d201407000000000000000000000000000713202d3a4653606d78868686868686868686868275685e5246392d20140300000000000000000000000000000007121c2b37434e5865727f86868686868686868686786d6053463a2d2013070000000714212d3a4754606d7a848686868686868684796d605a50453b30261c11070000000000000000050e18242f39434e58606c788286868686868686857b6e6155483b2e2215080000000000000000000000000e1925303b44515b636e737d82858684827d78706b625f57514b53606d788686867f7265584c3f3225190c0000000000000000000000000000000000000000000e1925303b44515b636e737d82858684827d78706b625f57514b53606d788686867f7265584c3f3225190c000000000000000000111e2b3844515e6b778486868686868377685e5246392d1b110600000000000000000000000000000000000000000000010c161f2a343e45515c676e7b8586868686868686867a6e6154473b2e21140800020d19242e3740474b4d53535353535353534d4c4740382f241a0f0600000000000000000000000000000000020a11171c1f201f1c222f3c4955626f7c86868686867f7265594c3f322619191d1313100c07000000000000000000000000000000010b151f2a333c4246485253535353535353535346413b32291e1408000004111d2a36424e59636a6c6c6c6c6c6c6c6c6260584e43372b1f13060000020e1a26313c4754606a7581868686867f7265584c3f3225190c000c1926323f4c5965727f868686868686868276695c504336291d10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141c222830383f444e545c606a6f77797979797872685c5043372a1d11040000000000000000000000000008131e28313e46535f696e7979797979786d675d5145392c2013060000000000000000000000000006121f2c3844505c667679797979797979797979757065564d41362a1e1105000000000000000000000000000000000f1b27323c4a57626d727979797979797979797976665c5044382c1f12060000000713202c3945525d686d7879797979797979776d675d51483e33291e150a0000000000000000000007121d27313c44505b666c7679797979797979786e695f53463a2d21140700000000000000000000000009141f29323f49525c636b707578797875706c656059534d4544505c6674797979726d62564a3e3124180b00000000000000000000000000000000000000000009141f29323f49525c636b707578797875706c656059534d4544505c6674797979726d62564a3e3124180b000000000000000000111d2a37434f5c6772777979797979777167564c41362a1e0a000000000000000000000000000000000000000000000000040d18222934404b555f696e78797979797979797976685e5246392d201407000007121c252e353b3f404646464646464646413f3c362f261d120800000000000000000000000000000000000000060b0f12131215222e3b4754606a767979797979726d63574a3e3125180c11070604000000000000000000000000000000000000030d18212a31373a3b4546464646464646463b3936302920170d020000010e1a26313d4751595e5f6060606060606055544e463c32271b0f0300000009151f2b38434e58656f7579797979726d62564a3e3125180b000b1825313e4a57626d72797979797979797670665a4e4235291c0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171e262e343c424a51585f626a6c6c6c6c6b6860564b3f33271b0f0200000000000000000000000000010c161f2a36424d575f616c6c6c6c6c6b605d554b4035291d11040000000000000000000000000003101c28343f4a545c6c6c6c6c6c6c6c6c6c6c6c69655e54443b3025190e02000000000000000000000000000000000a15202e3a46515b62656c6c6c6c6c6c6c6c6c6c6c5c544a3f34281c100300000004111d2935414c565d606b6c6c6c6c6c6c6c6b605d554b40362c21170c0300000000000000000000010b151f28333f4a545b60696c6c6c6c6c6c6c6c615f574d42362a1e1205000000000000000000000000020d17202d37404952596063686b6c6b6864605b534f47423c3f4a545c6a6c6c6c65625b51463a2e221509000000000000000000000000000000000000000000020d17202d37404952596063686b6c6b6864605b534f47423c3f4a545c6a6c6c6c65625b51463a2e2215090000000000000000000f1b27333f4b5660676b6c6c6c6c6c6a675f55443a3025190d00000000000000000000000000000000000000000000000000060f18232f39434d575f616c6c6c6c6c6c6c6c6c6c5e564c41362a1e11050000000a131c242a2f323339393939393939393433302b241d140b0000000000000000000000000000000000000000000003060606131f2b37434e5860626c6c6c6c6c65635b51463a2e2216090400000000000000000000000000000000000000000000060f181f262b2d2e3939393939393939392e2d2a251e170e05000000000915202b353f474e5253535353535353534947433c342b20150a00000000030f1b27323d46535d65686c6c6c6c65625b51463a2e221609000916222e3a46515b62656c6c6c6c6c6c6c69665e54493e3226190d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c141c2328303940444e54555d606060605e5c564e443a2f23170b000000000000000000000000000000040d1a26313b454d53555f606060605e53514b433a2f24180d0100000000000000000000000000000c17232e38424a505f606060606060606060605c5a544c4232291f1408000000000000000000000000000000000004121e29353f49515759606060606060606060605f504a42382e23170c00000000010d1924303a444c52545e606060606060605e53514b433a2f241a0f06000000000000000000000000030d17222d38424a50535d606060606060605f55534d453b31261a0e0200000000000000000000000000050e1b252e3740474f54565c5f5f5e5c57535049413d373138424a50535f6060585651493f34291e120600000000000000000000000000000000000000000000050e1b252e3740474f54565c5f5f5e5c57535049413d373138424a50535f6060585651493f34291e12060000000000000000000b17232e3a444e565c5e60606060605d5b554d4332291e1308000000000000000000000000000000000000000000000000000007121d27313c454d53555f60606060606060605f524c443b3025190e02000000010a12191e2325262d2d2d2d2d2d2d2d2726241f19130b0200000000000000000000000000000000000000000000000000030f1b27323c464e54556060606060595751493f352a1e1206000000000000000000000000000000000000000000000000060e141a1e21222c2d2d2d2d2d2d2d2d21201e19140d050000000000040f19242d353d424546464646464646463c3b37322b22190f0400000000000a16202b34414b53595b60606060585651493f34291e12060006121e29353f49515759606060606060605c5a544c42382d21160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171e272e343c434749515353535351504b443c32281d12070000000000000000000000000000000009141f29333b4246485253535353514745403a31281d130700000000000000000000000000000006111c2630383f4453535353535353535353534f4d4942393020170d020000000000000000000000000000000000010d18232d373f464a4c5353535353535353535353443f3830261c1106000000000008131e28323a4145475153535353535353514745403a31281d1208000000000000000000000000000006111c262f383f44465053535353535353524846423b33291f140900000000000000000000000000000009131c252e353d4448494f5253514f4a46443f382f2b2630383f44465353534c4a463f372d23180d01000000000000000000000000000000000000000000000009131c252e353d4448494f5253514f4a46443f382f2b2630383f44465353534c4a463f372d23180d0100000000000000000006121d28323c444b4f515353535353504f4a433b3120170d020000000000000000000000000000000000000000000000000000010b151f2a333c4246485253535353535353535346413b32291e1408000000000000070d1316191a20202020202020201a1a17130e08010000000000000000000000000000000000000000000000000000000a15202b343c43474953535353534c4a463f372d23180d010000000000000000000000000000000000000000000000000003090e1214151f20202020202020201414110e08020000000000000008121b242b31363839393939393939392f2e2b2720191007000000000000040f19222f3941484d4e535353534c4a463f372d23180d0100010d18232d373f464a4c53535353535353504e49423a31261c1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c151c232832373b3c444646464645433f3a322a20160c0100000000000000000000000000000000030d17212931363a3b4646464646453a39352f281f160c01000000000000000000000000000000000a151e262e3438464646464646464646464642413d3730271e0e050000000000000000000000000000000000000007111b252d353a3e3f464646464646464646464638342e261e150a000000000000020c1620283035393a4546464646464646443a39352f281f160c000000000000000000000000000000000a141d262d3338394346464646464646453b3a36312921170d03000000000000000000000000000000010a131c232b33383c3d42454645423d3937332d261d1e262e34383a4646463f3e3a342d251b1106000000000000000000000000000000000000000000000000010a131c232b33383c3d42454645423d3937332d261d1e262e34383a4646463f3e3a342d251b110600000000000000000000010c16202a323a3f4344464646464644423e3931291f0e0500000000000000000000000000000000000000000000000000000000030d18212a31373a3b4546464646464646463b3936302920170d020000000000000002070a0c0d13131313131313130e0d0b07030000000000000000000000000000000000000000000000000000000000040e19222b32373b3c46464646463f3e3a352d251c11070000000000000000000000000000000000000000000000000000000002050708121313131313131313080705020000000000000000000009121920262a2c2c2d2d2d2d2d2d2d22221f1b150f07000000000000000007101d272f373d4042464646463f3e3a342d251b110700000007111b252d353a3e3f4646464646464643423e3831281f150a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121820262b2e2f37393939393837332f2820180f05000000000000000000000000000000000000060f171f262a2d2e3939393939382d2c29241d160d040000000000000000000000000000000000030c151c23282c39393939393939393939393635312c261e150c0000000000000000000000000000000000000000000a131b23292e313239393939393939393939392c28231c150c0300000000000000040e161e24292c2d3839393939393939382d2c29241d160d0400000000000000000000000000000000020b141c22282b2d3639393939393939392e2d2a261f170f060000000000000000000000000000000000010a111921272c2f303538393835312d2b27221b14151c23282c2d39393932312e29231b13090000000000000000000000000000000000000000000000000000010a111921272c2f303538393835312d2b27221b14151c23282c2d39393932312e29231b1309000000000000000000000000040e1820282e33373839393939393736332e271f170d000000000000000000000000000000000000000000000000000000000000060f181f262b2d2e3939393939393939392e2d2a251e170e05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101920272b2e2f393939393932312e2a231c130a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f151a1d1f20202020202020201615130f0a04000000000000000000000b151d252c3134353939393932312e29231b130900000000000a131b23292e3132393939393939393635322d261f160d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c151b1f22222a2d2d2d2d2b2a27231d160f060000000000000000000000000000000000000000060d141a1e21222c2d2d2d2d2b20201d18130c0400000000000000000000000000000000000000030a11171c1f2d2d2d2d2d2d2d2d2d2d2d292825211b140c03000000000000000000000000000000000000000000010a11181e2225262d2d2d2d2d2d2d2d2d2d2d1f1c17110a03000000000000000000040c13191d20212b2d2d2d2d2d2d2d2b20201d18130c04000000000000000000000000000000000000020a11171c1f202a2d2d2d2d2d2d2d2c22211e1a140d060000000000000000000000000000000000000000070f161c202223292c2c2b2924201f1b17110a0a11171c1f202c2d2d2524221e1811090100000000000000000000000000000000000000000000000000000000070f161c202223292c2c2b2924201f1b17110a0a11171c1f202c2d2d2524221e1811090100000000000000000000000000060e161d23272a2b2d2d2d2d2d2a2926221c150d0500000000000000000000000000000000000000000000000000000000000000060e141a1e21222c2d2d2d2d2d2d2d2d21201e19140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070e151b1f22222d2d2d2d2d2625221e18110a010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090e1112131313131313131309080603000000000000000000000000030b131a202427282d2d2d2d2525221e181109010000000000010a11181e2225262d2d2d2d2d2d2d292926211c150d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f1315161e202020201e1d1b17120c050000000000000000000000000000000000000000000003090e1214151f202020201e1413110d070100000000000000000000000000000000000000000000060c101220202020202020202020201c1b1915100902000000000000000000000000000000000000000000000000070d12161819202020202020202020202012100c0600000000000000000000000002080d1113141e202020202020201e1413110d0701000000000000000000000000000000000000000000060b0f12131d202020202020201f1514120e090300000000000000000000000000000000000000000000050b101316161c1f201e1c1713120f0b060000060c101213202020191815120d0600000000000000000000000000000000000000000000000000000000000000050b101316161c1f201e1c1713120f0b060000060c101213202020191815120d0600000000000000000000000000000000040c12171b1d1e20202020201d1d1a16110b0300000000000000000000000000000000000000000000000000000000000000000003090e1214151f20202020202020201414110e0802000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f1315162020202020191816120d0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001090f14181b1b20202020191816120d07000000000000000000070d12161819202020202020201d1c1916100a0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060809111313131312110f0b07010000000000000000000000000000000000000000000000000002050708131313131312070604010000000000000000000000000000000000000000000000000000030613131313131313131313130f0f0d09040000000000000000000000000000000000000000000000000000000106090b0c13131313131313131313130603000000000000000000000000000000000104070712131313131313131107060401000000000000000000000000000000000000000000000000000306061013131313131313120807050200000000000000000000000000000000000000000000000000000407090a0f1213120f0a0605030000000000000306071313130c0b090601000000000000000000000000000000000000000000000000000000000000000000000407090a0f1213120f0a0605030000000000000306071313130c0b09060100000000000000000000000000000000000001060b0f1111131313131311100e0a06000000000000000000000000000000000000000000000000000000000000000000000000000205070812131313131313131308070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000306080913131313130c0c09060100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080c0e0f131313130c0b09060100000000000000000000000106090b0c13131313131313100f0d0a05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta new file mode 100644 index 0000000..66e69d1 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f586378b4e144a9851e7b34d9b748ee +timeCreated: 1484171803 +licenseType: Pro +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt b/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt new file mode 100644 index 0000000..a52cc38 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt @@ -0,0 +1 @@ +)]}〕〉》」』】〙〗〟’”⦆»ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻‐゠–〜?!‼⁇⁈⁉・、%,.:;。!?]):;=}¢°"†‡℃〆%,. \ No newline at end of file diff --git a/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta b/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta new file mode 100644 index 0000000..73ed660 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fade42e8bc714b018fac513c043d323b +timeCreated: 1425440388 +licenseType: Store +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt b/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt new file mode 100644 index 0000000..ccbb4ae --- /dev/null +++ b/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt @@ -0,0 +1 @@ +([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # \ No newline at end of file diff --git a/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta b/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta new file mode 100644 index 0000000..cc684b3 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d82c1b31c7e74239bff1220585707d2b +timeCreated: 1425440388 +licenseType: Store +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Sprite Assets.meta b/Assets/TextMesh Pro/Resources/Sprite Assets.meta new file mode 100644 index 0000000..5171f1b --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Sprite Assets.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 512a49d95c0c4332bdd98131869c23c9 +folderAsset: yes +timeCreated: 1441876896 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset b/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset new file mode 100644 index 0000000..98e6d27 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset @@ -0,0 +1,659 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2103686 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: TextMeshPro/Sprite + m_Shader: {fileID: 4800000, guid: cf81c85f95fe47e1a27f6ae460cf182c, type: 3} + m_ShaderKeywords: UNITY_UI_CLIP_RECT + m_LightmapFlags: 5 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 2800000, guid: dffef66376be4fa480fb02b19edbe903, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _ColorMask: 15 + - _CullMode: 0 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _UseUIAlphaClip: 0 + m_Colors: + - _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767} + - _Color: {r: 1, g: 1, b: 1, a: 1} +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 84a92b25f83d49b9bc132d206b370281, type: 3} + m_Name: EmojiOne + m_EditorClassIdentifier: + hashCode: -1836805472 + material: {fileID: 2103686} + materialHashCode: 0 + m_Version: 1.1.0 + m_FaceInfo: + m_FamilyName: + m_StyleName: + m_PointSize: 0 + m_Scale: 0 + m_LineHeight: 0 + m_AscentLine: 0 + m_CapLine: 0 + m_MeanLine: 0 + m_Baseline: 0 + m_DescentLine: 0 + m_SuperscriptOffset: 0 + m_SuperscriptSize: 0 + m_SubscriptOffset: 0 + m_SubscriptSize: 0 + m_UnderlineOffset: 0 + m_UnderlineThickness: 0 + m_StrikethroughOffset: 0 + m_StrikethroughThickness: 0 + m_TabWidth: 0 + spriteSheet: {fileID: 2800000, guid: dffef66376be4fa480fb02b19edbe903, type: 3} + m_SpriteCharacterTable: + - m_ElementType: 2 + m_Unicode: 128522 + m_GlyphIndex: 0 + m_Scale: 1 + m_Name: Smiling face with smiling eyes + m_HashCode: -1318250903 + - m_ElementType: 2 + m_Unicode: 128523 + m_GlyphIndex: 1 + m_Scale: 1 + m_Name: 1f60b + m_HashCode: 57188339 + - m_ElementType: 2 + m_Unicode: 128525 + m_GlyphIndex: 2 + m_Scale: 1 + m_Name: 1f60d + m_HashCode: 57188341 + - m_ElementType: 2 + m_Unicode: 128526 + m_GlyphIndex: 3 + m_Scale: 1 + m_Name: 1f60e + m_HashCode: 57188340 + - m_ElementType: 2 + m_Unicode: 128512 + m_GlyphIndex: 4 + m_Scale: 1 + m_Name: Grinning face + m_HashCode: -95541379 + - m_ElementType: 2 + m_Unicode: 128513 + m_GlyphIndex: 5 + m_Scale: 1 + m_Name: 1f601 + m_HashCode: 57188256 + - m_ElementType: 2 + m_Unicode: 128514 + m_GlyphIndex: 6 + m_Scale: 1 + m_Name: Face with tears of joy + m_HashCode: 239522663 + - m_ElementType: 2 + m_Unicode: 128515 + m_GlyphIndex: 7 + m_Scale: 1 + m_Name: 1f603 + m_HashCode: 57188258 + - m_ElementType: 2 + m_Unicode: 128516 + m_GlyphIndex: 8 + m_Scale: 1 + m_Name: 1f604 + m_HashCode: 57188261 + - m_ElementType: 2 + m_Unicode: 128517 + m_GlyphIndex: 9 + m_Scale: 1 + m_Name: 1f605 + m_HashCode: 57188260 + - m_ElementType: 2 + m_Unicode: 128518 + m_GlyphIndex: 10 + m_Scale: 1 + m_Name: 1f606 + m_HashCode: 57188263 + - m_ElementType: 2 + m_Unicode: 128521 + m_GlyphIndex: 11 + m_Scale: 1 + m_Name: 1f609 + m_HashCode: 57188264 + - m_ElementType: 2 + m_Unicode: 0 + m_GlyphIndex: 12 + m_Scale: 1 + m_Name: .notdef + m_HashCode: -600915428 + - m_ElementType: 2 + m_Unicode: 129315 + m_GlyphIndex: 13 + m_Scale: 1 + m_Name: 1f923 + m_HashCode: 57200239 + - m_ElementType: 2 + m_Unicode: 9786 + m_GlyphIndex: 14 + m_Scale: 1 + m_Name: 263a + m_HashCode: 1748406 + - m_ElementType: 2 + m_Unicode: 9785 + m_GlyphIndex: 15 + m_Scale: 1 + m_Name: 2639 + m_HashCode: 1748462 + m_SpriteGlyphTable: + - m_Index: 0 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 0 + m_Y: 384 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 1 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 128 + m_Y: 384 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 2 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 256 + m_Y: 384 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 3 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 384 + m_Y: 384 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 4 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 0 + m_Y: 256 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 5 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 128 + m_Y: 256 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 6 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 256 + m_Y: 256 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 7 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 384 + m_Y: 256 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 8 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 0 + m_Y: 128 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 9 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 128 + m_Y: 128 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 10 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 256 + m_Y: 128 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 11 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 384 + m_Y: 128 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 12 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 0 + m_Y: 0 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 13 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 128 + m_Y: 0 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 14 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 256 + m_Y: 0 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + - m_Index: 15 + m_Metrics: + m_Width: 128 + m_Height: 128 + m_HorizontalBearingX: 0 + m_HorizontalBearingY: 115.6 + m_HorizontalAdvance: 128 + m_GlyphRect: + m_X: 384 + m_Y: 0 + m_Width: 128 + m_Height: 128 + m_Scale: 1 + m_AtlasIndex: 0 + sprite: {fileID: 0} + spriteInfoList: + - id: 0 + x: 0 + y: 384 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: Smiling face with smiling eyes + hashCode: -1318250903 + unicode: 128522 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 1 + x: 128 + y: 384 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 1f60b + hashCode: 57188339 + unicode: 128523 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 2 + x: 256 + y: 384 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 1f60d + hashCode: 57188341 + unicode: 128525 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 3 + x: 384 + y: 384 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 1f60e + hashCode: 57188340 + unicode: 128526 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 4 + x: 0 + y: 256 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: Grinning face + hashCode: -95541379 + unicode: 128512 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 5 + x: 128 + y: 256 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 1f601 + hashCode: 57188256 + unicode: 128513 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 6 + x: 256 + y: 256 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: Face with tears of joy + hashCode: 239522663 + unicode: 128514 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 7 + x: 384 + y: 256 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 1f603 + hashCode: 57188258 + unicode: 128515 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 8 + x: 0 + y: 128 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 1f604 + hashCode: 57188261 + unicode: 128516 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 9 + x: 128 + y: 128 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 1f605 + hashCode: 57188260 + unicode: 128517 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 10 + x: 256 + y: 128 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 1f606 + hashCode: 57188263 + unicode: 128518 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 11 + x: 384 + y: 128 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 1f609 + hashCode: 57188264 + unicode: 128521 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 12 + x: 0 + y: 0 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 1f618 + hashCode: 57188168 + unicode: 128536 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 13 + x: 128 + y: 0 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 1f923 + hashCode: 57200239 + unicode: 129315 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 14 + x: 256 + y: 0 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 263a + hashCode: 1748406 + unicode: 9786 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + - id: 15 + x: 384 + y: 0 + width: 128 + height: 128 + xOffset: 0 + yOffset: 115.6 + xAdvance: 128 + scale: 1 + name: 2639 + hashCode: 1748462 + unicode: 9785 + pivot: {x: 0.5, y: 0.5} + sprite: {fileID: 0} + fallbackSpriteAssets: [] +--- !u!21 &1369835458 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: TextMeshPro/Sprite + m_Shader: {fileID: 4800000, guid: cf81c85f95fe47e1a27f6ae460cf182c, type: 3} + m_ShaderKeywords: + m_LightmapFlags: 5 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: [] + m_Floats: [] + m_Colors: [] diff --git a/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta b/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta new file mode 100644 index 0000000..c7ac83f --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c41005c129ba4d66911b75229fd70b45 +timeCreated: 1480316912 +licenseType: Pro +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Style Sheets.meta b/Assets/TextMesh Pro/Resources/Style Sheets.meta new file mode 100644 index 0000000..4958550 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Style Sheets.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4aecb92fff08436c8303b10eab8da368 +folderAsset: yes +timeCreated: 1441876950 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset b/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset new file mode 100644 index 0000000..018d42f --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset @@ -0,0 +1,81 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ab2114bdc8544297b417dfefe9f1e410, type: 3} + m_Name: Default Style Sheet + m_EditorClassIdentifier: + m_StyleList: + - m_Name: Normal + m_HashCode: -1183493901 + m_OpeningDefinition: + m_ClosingDefinition: + m_OpeningTagArray: + m_ClosingTagArray: + - m_Name: H1 + m_HashCode: 2425 + m_OpeningDefinition: <#40ff80>* + m_ClosingDefinition: '*' + m_OpeningTagArray: 3c00000073000000690000007a000000650000003d00000032000000650000006d0000003e0000003c000000620000003e0000003c000000230000003400000030000000660000006600000038000000300000003e0000002a000000 + m_ClosingTagArray: 2a0000003c0000002f00000073000000690000007a000000650000003e0000003c0000002f000000620000003e0000003c0000002f000000630000006f0000006c0000006f000000720000003e000000 + - m_Name: Quote + m_HashCode: 93368250 + m_OpeningDefinition: + m_ClosingDefinition: + m_OpeningTagArray: 3c000000690000003e0000003c00000073000000690000007a000000650000003d0000003700000035000000250000003e0000003c0000006d000000610000007200000067000000690000006e0000003d0000003100000030000000250000003e000000 + m_ClosingTagArray: 3c0000002f000000690000003e0000003c0000002f00000073000000690000007a000000650000003e0000003c0000002f00000077000000690000006400000074000000680000003e0000003c0000002f0000006d000000610000007200000067000000690000006e0000003e000000 + - m_Name: A + m_HashCode: 65 + m_OpeningDefinition: + m_ClosingDefinition: + m_OpeningTagArray: 3c000000630000006f0000006c0000006f000000720000003d000000230000003400000030000000610000003000000066000000660000003e0000003c000000750000003e000000 + m_ClosingTagArray: 3c0000002f000000750000003e0000003c0000002f000000630000006f0000006c0000006f000000720000003e000000 + - m_Name: Link + m_HashCode: 2656128 + m_OpeningDefinition: <#40a0ff> + m_ClosingDefinition: + m_OpeningTagArray: 3c000000750000003e0000003c000000230000003400000030000000610000003000000066000000660000003e0000003c0000006c000000690000006e0000006b0000003d0000002200000049000000440000005f0000003000000031000000220000003e000000 + m_ClosingTagArray: 3c0000002f000000750000003e0000003c0000002f000000630000006f0000006c0000006f000000720000003e0000003c0000002f0000006c000000690000006e0000006b0000003e000000 + - m_Name: Title + m_HashCode: 97690656 + m_OpeningDefinition: + m_ClosingDefinition: + m_OpeningTagArray: 3c00000073000000690000007a000000650000003d000000310000003200000035000000250000003e0000003c000000620000003e0000003c000000610000006c00000069000000670000006e0000003d00000063000000650000006e0000007400000065000000720000003e000000 + m_ClosingTagArray: 3c0000002f00000073000000690000007a000000650000003e0000003c0000002f000000620000003e0000003c0000002f000000610000006c00000069000000670000006e0000003e000000 + - m_Name: H2 + m_HashCode: 2426 + m_OpeningDefinition: <#4080FF> + m_ClosingDefinition: + m_OpeningTagArray: 3c00000073000000690000007a000000650000003d000000310000002e00000035000000650000006d0000003e0000003c000000620000003e0000003c000000230000003400000030000000380000003000000046000000460000003e000000 + m_ClosingTagArray: 3c0000002f00000073000000690000007a000000650000003e0000003c0000002f000000620000003e0000003c0000002f000000630000006f0000006c0000006f000000720000003e000000 + - m_Name: H3 + m_HashCode: 2427 + m_OpeningDefinition: <#FF8040> + m_ClosingDefinition: + m_OpeningTagArray: 3c00000073000000690000007a000000650000003d000000310000002e0000003100000037000000650000006d0000003e0000003c000000620000003e0000003c000000230000004600000046000000380000003000000034000000300000003e000000 + m_ClosingTagArray: 3c0000002f00000073000000690000007a000000650000003e0000003c0000002f000000620000003e0000003c0000002f000000630000006f0000006c0000006f000000720000003e000000 + - m_Name: C1 + m_HashCode: 2194 + m_OpeningDefinition: + m_ClosingDefinition: + m_OpeningTagArray: 3c000000630000006f0000006c0000006f000000720000003d000000230000006600000066000000660000006600000034000000300000003e000000 + m_ClosingTagArray: 3c0000002f000000630000006f0000006c0000006f000000720000003e000000 + - m_Name: C2 + m_HashCode: 2193 + m_OpeningDefinition: + m_ClosingDefinition: + m_OpeningTagArray: 3c000000630000006f0000006c0000006f000000720000003d000000230000006600000066000000340000003000000046000000460000003e0000003c00000073000000690000007a000000650000003d000000310000003200000035000000250000003e000000 + m_ClosingTagArray: 3c0000002f000000630000006f0000006c0000006f000000720000003e0000003c0000002f00000073000000690000007a000000650000003e000000 + - m_Name: C3 + m_HashCode: 2192 + m_OpeningDefinition: + m_ClosingDefinition: + m_OpeningTagArray: 3c000000630000006f0000006c0000006f000000720000003d000000230000003800000030000000410000003000000046000000460000003e0000003c000000620000003e000000 + m_ClosingTagArray: 3c0000002f000000630000006f0000006c0000006f000000720000003e0000003c0000002f000000620000003e000000 diff --git a/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta b/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta new file mode 100644 index 0000000..95fd96e --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f952c082cb03451daed3ee968ac6c63e +timeCreated: 1432805430 +licenseType: Store +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/TMP Settings.asset b/Assets/TextMesh Pro/Resources/TMP Settings.asset new file mode 100644 index 0000000..92a6053 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/TMP Settings.asset @@ -0,0 +1,52 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2705215ac5b84b70bacc50632be6e391, type: 3} + m_Name: TMP Settings + m_EditorClassIdentifier: + assetVersion: 2 + m_TextWrappingMode: 1 + m_enableKerning: 1 + m_ActiveFontFeatures: 00000000 + m_enableExtraPadding: 0 + m_enableTintAllSprites: 0 + m_enableParseEscapeCharacters: 1 + m_EnableRaycastTarget: 1 + m_GetFontFeaturesAtRuntime: 1 + m_missingGlyphCharacter: 0 + m_ClearDynamicDataOnBuild: 1 + m_warningsDisabled: 0 + m_defaultFontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_defaultFontAssetPath: Fonts & Materials/ + m_defaultFontSize: 36 + m_defaultAutoSizeMinRatio: 0.5 + m_defaultAutoSizeMaxRatio: 2 + m_defaultTextMeshProTextContainerSize: {x: 20, y: 5} + m_defaultTextMeshProUITextContainerSize: {x: 200, y: 50} + m_autoSizeTextContainer: 0 + m_IsTextObjectScaleStatic: 0 + m_fallbackFontAssets: [] + m_matchMaterialPreset: 1 + m_HideSubTextObjects: 0 + m_defaultSpriteAsset: {fileID: 11400000, guid: c41005c129ba4d66911b75229fd70b45, + type: 2} + m_defaultSpriteAssetPath: Sprite Assets/ + m_enableEmojiSupport: 1 + m_MissingCharacterSpriteUnicode: 0 + m_EmojiFallbackTextAssets: [] + m_defaultColorGradientPresetsPath: Color Gradient Presets/ + m_defaultStyleSheet: {fileID: 11400000, guid: f952c082cb03451daed3ee968ac6c63e, + type: 2} + m_StyleSheetsResourcePath: + m_leadingCharacters: {fileID: 4900000, guid: d82c1b31c7e74239bff1220585707d2b, type: 3} + m_followingCharacters: {fileID: 4900000, guid: fade42e8bc714b018fac513c043d323b, + type: 3} + m_UseModernHangulLineBreakingRules: 0 diff --git a/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta b/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta new file mode 100644 index 0000000..32db384 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f5b5dff67a942289a9defa416b206f3 +timeCreated: 1436653997 +licenseType: Pro +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders.meta b/Assets/TextMesh Pro/Shaders.meta new file mode 100644 index 0000000..29a90a6 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e9f693669af91aa45ad615fc681ed29f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl b/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl new file mode 100644 index 0000000..b611994 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl @@ -0,0 +1,178 @@ +float2 UnpackUV(float uv) +{ + float2 output; + output.x = floor(uv / 4096.0); + output.y = uv - 4096.0 * output.x; + + return output * 0.001953125; +} + +float4 BlendARGB(float4 overlying, float4 underlying) +{ + overlying.rgb *= overlying.a; + underlying.rgb *= underlying.a; + float3 blended = overlying.rgb + ((1 - overlying.a) * underlying.rgb); + float alpha = underlying.a + (1 - underlying.a) * overlying.a; + return float4(blended / alpha, alpha); +} + +float3 GetSpecular(float3 n, float3 l) +{ + float spec = pow(max(0.0, dot(n, l)), _Reflectivity); + return _SpecularColor.rgb * spec * _SpecularPower; +} + +void GetSurfaceNormal_float(texture2D atlas, float textureWidth, float textureHeight, float2 uv, bool isFront, out float3 nornmal) +{ + float3 delta = float3(1.0 / textureWidth, 1.0 / textureHeight, 0.0); + + // Read "height field" + float4 h = float4( + SAMPLE_TEXTURE2D(atlas, SamplerState_Linear_Clamp, uv - delta.xz).a, + SAMPLE_TEXTURE2D(atlas, SamplerState_Linear_Clamp, uv + delta.xz).a, + SAMPLE_TEXTURE2D(atlas, SamplerState_Linear_Clamp, uv - delta.zy).a, + SAMPLE_TEXTURE2D(atlas, SamplerState_Linear_Clamp, uv + delta.zy).a); + + bool raisedBevel = _BevelType; + + h += _BevelOffset; + + float bevelWidth = max(.01, _BevelWidth); + + // Track outline + h -= .5; + h /= bevelWidth; + h = saturate(h + .5); + + if (raisedBevel) h = 1 - abs(h * 2.0 - 1.0); + h = lerp(h, sin(h * 3.141592 / 2.0), float4(_BevelRoundness, _BevelRoundness, _BevelRoundness, _BevelRoundness)); + h = min(h, 1.0 - float4(_BevelClamp, _BevelClamp, _BevelClamp, _BevelClamp)); + h *= _BevelAmount * bevelWidth * _GradientScale * -2.0; + + float3 va = normalize(float3(-1.0, 0.0, h.y - h.x)); + float3 vb = normalize(float3(0.0, 1.0, h.w - h.z)); + + float3 f = float3(1, 1, 1); + if (isFront) f = float3(1, 1, -1); + nornmal = cross(va, vb) * f; +} + +void EvaluateLight_float(float4 faceColor, float3 n, out float4 color) +{ + n.z = abs(n.z); + float3 light = normalize(float3(sin(_LightAngle), cos(_LightAngle), 1.0)); + + float3 col = max(faceColor.rgb, 0) + GetSpecular(n, light)* faceColor.a; + //faceColor.rgb += col * faceColor.a; + col *= 1 - (dot(n, light) * _Diffuse); + col *= lerp(_Ambient, 1, n.z * n.z); + + //fixed4 reflcol = texCUBE(_Cube, reflect(input.viewDir, -n)); + //faceColor.rgb += reflcol.rgb * lerp(_ReflectFaceColor.rgb, _ReflectOutlineColor.rgb, saturate(sd + outline * 0.5)) * faceColor.a; + + color = float4(col, faceColor.a); +} + +// Add custom function to handle time in HDRP + + +// +void GenerateUV_float(float2 inUV, float4 transform, float2 animSpeed, out float2 outUV) +{ + outUV = inUV * transform.xy + transform.zw + (animSpeed * _Time.y); +} + +void ComputeUVOffset_float(float texWidth, float texHeight, float2 offset, float SDR, out float2 uvOffset) +{ + uvOffset = float2(-offset.x * SDR / texWidth, -offset.y * SDR / texHeight); +} + +void ScreenSpaceRatio2_float(float4x4 projection, float4 position, float2 objectScale, float screenWidth, float screenHeight, float fontScale, out float SSR) +{ + float2 pixelSize = position.w; + pixelSize /= (objectScale * mul((float2x2)projection, float2(screenWidth, screenHeight))); + SSR = rsqrt(dot(pixelSize, pixelSize)*2) * fontScale; +} + +// UV : Texture coordinate of the source distance field texture +// TextureSize : Size of the source distance field texture +// Filter : Enable perspective filter (soften) +void ScreenSpaceRatio_float(float2 UV, float TextureSize, bool Filter, out float SSR) +{ + if(Filter) + { + float2 a = float2(ddx(UV.x), ddy(UV.x)); + float2 b = float2(ddx(UV.y), ddy(UV.y)); + float s = lerp(dot(a,a), dot(b,b), 0.5); + SSR = rsqrt(s) / TextureSize; + } + else + { + float s = rsqrt(abs(ddx(UV.x) * ddy(UV.y) - ddy(UV.x) * ddx(UV.y))); + SSR = s / TextureSize; + } +} + +// SSR : Screen Space Ratio +// SD : Signed Distance (encoded : Distance / SDR + .5) +// SDR : Signed Distance Ratio +// +// IsoPerimeter : Dilate / Contract the shape +void ComputeSDF_float(float SSR, float SD, float SDR, float isoPerimeter, float softness, out float outAlpha) +{ + softness *= SSR * SDR; + float d = (SD - 0.5) * SDR; // Signed distance to edge, in Texture space + outAlpha = saturate((d * 2.0 * SSR + 0.5 + isoPerimeter * SDR * SSR + softness * 0.5) / (1.0 + softness)); // Screen pixel coverage (alpha) +} + +void ComputeSDF2_float(float SSR, float SD, float SDR, float2 isoPerimeter, float2 softness, out float2 outAlpha) +{ + softness *= SSR * SDR; + float d = (SD - 0.5f) * SDR; + outAlpha = saturate((d * 2.0f * SSR + 0.5f + isoPerimeter * SDR * SSR + softness * 0.5) / (1.0 + softness)); +} + +void ComputeSDF4_float(float SSR, float SD, float SDR, float4 isoPerimeter, float4 softness, out float4 outAlpha) +{ + softness *= SSR * SDR; + float d = (SD - 0.5f) * SDR; + outAlpha = saturate((d * 2.0f * SSR + 0.5f + isoPerimeter * SDR * SSR + softness * 0.5) / (1.0 + softness)); +} + +void ComputeSDF44_float(float SSR, float4 SD, float SDR, float4 isoPerimeter, float4 softness, bool outline, out float4 outAlpha) +{ + softness *= SSR * SDR; + float4 d = (SD - 0.5f) * SDR; + if(outline) d.w = max(max(d.x, d.y), d.z); + outAlpha = saturate((d * 2.0f * SSR + 0.5f + isoPerimeter * SDR * SSR + softness * 0.5) / (1.0 + softness)); +} + +void Composite_float(float4 overlying, float4 underlying, out float4 outColor) +{ + outColor = BlendARGB(overlying, underlying); +} + +// Face only +void Layer1_float(float alpha, float4 color0, out float4 outColor) +{ + color0.a *= alpha; + outColor = color0; +} + +// Face + 1 Outline +void Layer2_float(float2 alpha, float4 color0, float4 color1, out float4 outColor) +{ + color1.a *= alpha.y; + color0.rgb *= color0.a; color1.rgb *= color1.a; + outColor = lerp(color1, color0, alpha.x); + outColor.rgb /= outColor.a; +} + +// Face + 3 Outline +void Layer4_float(float4 alpha, float4 color0, float4 color1, float4 color2, float4 color3, out float4 outColor) +{ + color3.a *= alpha.w; + color0.rgb *= color0.a; color1.rgb *= color1.a; color2.rgb *= color2.a; color3.rgb *= color3.a; + outColor = lerp(lerp(lerp(color3, color2, alpha.z), color1, alpha.y), color0, alpha.x); + outColor.rgb /= outColor.a; +} diff --git a/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl.meta b/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl.meta new file mode 100644 index 0000000..001b14e --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 96de908384869cd409c75efa351d5edf +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + preprocessorOverride: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader new file mode 100644 index 0000000..7e0f35c --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader @@ -0,0 +1,145 @@ +Shader "TextMeshPro/Bitmap Custom Atlas" { + +Properties { + _MainTex ("Font Atlas", 2D) = "white" {} + _FaceTex ("Font Texture", 2D) = "white" {} + _FaceColor ("Text Color", Color) = (1,1,1,1) + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _Padding ("Padding", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader{ + + Tags { "Queue" = "Transparent" "IgnoreProjector" = "True" "RenderType" = "Transparent" } + + Stencil + { + Ref[_Stencil] + Comp[_StencilComp] + Pass[_StencilOp] + ReadMask[_StencilReadMask] + WriteMask[_StencilWriteMask] + } + + + Lighting Off + Cull [_CullMode] + ZTest [unity_GUIZTestMode] + ZWrite Off + Fog { Mode Off } + Blend SrcAlpha OneMinusSrcAlpha + ColorMask[_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + float2 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + float4 mask : TEXCOORD2; + }; + + uniform sampler2D _MainTex; + uniform sampler2D _FaceTex; + uniform float4 _FaceTex_ST; + uniform fixed4 _FaceColor; + + uniform float _VertexOffsetX; + uniform float _VertexOffsetY; + uniform float4 _ClipRect; + uniform float _MaskSoftnessX; + uniform float _MaskSoftnessY; + uniform float _UIMaskSoftnessX; + uniform float _UIMaskSoftnessY; + uniform int _UIVertexColorAlwaysGammaSpace; + + v2f vert (appdata_t v) + { + float4 vert = v.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + vert.xy += (vert.w * 0.5) / _ScreenParams.xy; + + float4 vPosition = UnityPixelSnap(UnityObjectToClipPos(vert)); + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + v.color.rgb = UIGammaToLinear(v.color.rgb); + } + fixed4 faceColor = v.color; + faceColor *= _FaceColor; + + v2f OUT; + OUT.vertex = vPosition; + OUT.color = faceColor; + OUT.texcoord0 = v.texcoord0; + OUT.texcoord1 = TRANSFORM_TEX(v.texcoord1, _FaceTex); + float2 pixelSize = vPosition.w; + pixelSize /= abs(float2(_ScreenParams.x * UNITY_MATRIX_P[0][0], _ScreenParams.y * UNITY_MATRIX_P[1][1])); + + // Clamp _ClipRect to 16bit. + const float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + OUT.mask = float4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + + return OUT; + } + + fixed4 frag (v2f IN) : SV_Target + { + fixed4 color = tex2D(_MainTex, IN.texcoord0) * tex2D(_FaceTex, IN.texcoord1) * IN.color; + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(IN.mask.xy)) * IN.mask.zw); + color *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(color.a - 0.001); + #endif + + return color; + } + ENDCG + } +} + + CustomEditor "TMPro.EditorUtilities.TMP_BitmapShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta new file mode 100644 index 0000000..0a416c8 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 48bb5f55d8670e349b6e614913f9d910 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader new file mode 100644 index 0000000..b89e267 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader @@ -0,0 +1,155 @@ +Shader "TextMeshPro/Mobile/Bitmap" { + +Properties { + _MainTex ("Font Atlas", 2D) = "white" {} + _Color ("Text Color", Color) = (1,1,1,1) + _DiffusePower ("Diffuse Power", Range(1.0,4.0)) = 1.0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + + Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" } + + Stencil + { + Ref[_Stencil] + Comp[_StencilComp] + Pass[_StencilOp] + ReadMask[_StencilReadMask] + WriteMask[_StencilWriteMask] + } + + + Lighting Off + Cull [_CullMode] + ZTest [unity_GUIZTestMode] + ZWrite Off + Fog { Mode Off } + Blend SrcAlpha OneMinusSrcAlpha + ColorMask[_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #pragma fragmentoption ARB_precision_hint_fastest + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + fixed4 color : COLOR; + float2 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct v2f + { + float4 vertex : POSITION; + fixed4 color : COLOR; + float2 texcoord0 : TEXCOORD0; + float4 mask : TEXCOORD2; + }; + + sampler2D _MainTex; + fixed4 _Color; + float _DiffusePower; + + uniform float _VertexOffsetX; + uniform float _VertexOffsetY; + uniform float4 _ClipRect; + uniform float _MaskSoftnessX; + uniform float _MaskSoftnessY; + uniform float _UIMaskSoftnessX; + uniform float _UIMaskSoftnessY; + uniform int _UIVertexColorAlwaysGammaSpace; + + v2f vert (appdata_t v) + { + v2f OUT; + float4 vert = v.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + vert.xy += (vert.w * 0.5) / _ScreenParams.xy; + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + v.color.rgb = UIGammaToLinear(v.color.rgb); + } + OUT.vertex = UnityPixelSnap(UnityObjectToClipPos(vert)); + OUT.color = v.color; + OUT.color *= _Color; + OUT.color.rgb *= _DiffusePower; + OUT.texcoord0 = v.texcoord0; + + float2 pixelSize = OUT.vertex.w; + //pixelSize /= abs(float2(_ScreenParams.x * UNITY_MATRIX_P[0][0], _ScreenParams.y * UNITY_MATRIX_P[1][1])); + + // Clamp _ClipRect to 16bit. + const float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + OUT.mask = float4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + + return OUT; + } + + fixed4 frag (v2f IN) : COLOR + { + fixed4 color = fixed4(IN.color.rgb, IN.color.a * tex2D(_MainTex, IN.texcoord0).a); + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(IN.mask.xy)) * IN.mask.zw); + color *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(color.a - 0.001); + #endif + + return color; + } + ENDCG + } +} + +SubShader { + Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" } + Lighting Off Cull Off ZTest Always ZWrite Off Fog { Mode Off } + Blend SrcAlpha OneMinusSrcAlpha + BindChannels { + Bind "Color", color + Bind "Vertex", vertex + Bind "TexCoord", texcoord0 + } + Pass { + SetTexture [_MainTex] { + constantColor [_Color] combine constant * primary, constant * texture + } + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_BitmapShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta new file mode 100644 index 0000000..d5fb125 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 1e3b057af24249748ff873be7fafee47 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader b/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader new file mode 100644 index 0000000..caa527f --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader @@ -0,0 +1,145 @@ +Shader "TextMeshPro/Bitmap" { + +Properties { + _MainTex ("Font Atlas", 2D) = "white" {} + _FaceTex ("Font Texture", 2D) = "white" {} + _FaceColor ("Text Color", Color) = (1,1,1,1) + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader{ + + Tags { "Queue" = "Transparent" "IgnoreProjector" = "True" "RenderType" = "Transparent" } + + Stencil + { + Ref[_Stencil] + Comp[_StencilComp] + Pass[_StencilOp] + ReadMask[_StencilReadMask] + WriteMask[_StencilWriteMask] + } + + + Lighting Off + Cull [_CullMode] + ZTest [unity_GUIZTestMode] + ZWrite Off + Fog { Mode Off } + Blend SrcAlpha OneMinusSrcAlpha + ColorMask[_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + float2 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + float4 mask : TEXCOORD2; + }; + + uniform sampler2D _MainTex; + uniform sampler2D _FaceTex; + uniform float4 _FaceTex_ST; + uniform fixed4 _FaceColor; + + uniform float _VertexOffsetX; + uniform float _VertexOffsetY; + uniform float4 _ClipRect; + uniform float _MaskSoftnessX; + uniform float _MaskSoftnessY; + uniform float _UIMaskSoftnessX; + uniform float _UIMaskSoftnessY; + uniform int _UIVertexColorAlwaysGammaSpace; + + v2f vert (appdata_t v) + { + float4 vert = v.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + vert.xy += (vert.w * 0.5) / _ScreenParams.xy; + + float4 vPosition = UnityPixelSnap(UnityObjectToClipPos(vert)); + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + v.color.rgb = UIGammaToLinear(v.color.rgb); + } + fixed4 faceColor = v.color; + faceColor *= _FaceColor; + + v2f OUT; + OUT.vertex = vPosition; + OUT.color = faceColor; + OUT.texcoord0 = v.texcoord0; + OUT.texcoord1 = TRANSFORM_TEX(v.texcoord1, _FaceTex); + float2 pixelSize = vPosition.w; + pixelSize /= abs(float2(_ScreenParams.x * UNITY_MATRIX_P[0][0], _ScreenParams.y * UNITY_MATRIX_P[1][1])); + + // Clamp _ClipRect to 16bit. + const float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + OUT.mask = float4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + + return OUT; + } + + fixed4 frag (v2f IN) : SV_Target + { + fixed4 color = tex2D(_MainTex, IN.texcoord0); + color = fixed4 (tex2D(_FaceTex, IN.texcoord1).rgb * IN.color.rgb, IN.color.a * color.a); + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(IN.mask.xy)) * IN.mask.zw); + color *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(color.a - 0.001); + #endif + + return color; + } + ENDCG + } +} + + CustomEditor "TMPro.EditorUtilities.TMP_BitmapShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta new file mode 100644 index 0000000..7eb1870 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 128e987d567d4e2c824d754223b3f3b0 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader new file mode 100644 index 0000000..757a617 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader @@ -0,0 +1,326 @@ +Shader "TextMeshPro/Distance Field Overlay" { + +Properties { + _FaceTex ("Face Texture", 2D) = "white" {} + _FaceUVSpeedX ("Face UV Speed X", Range(-5, 5)) = 0.0 + _FaceUVSpeedY ("Face UV Speed Y", Range(-5, 5)) = 0.0 + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineTex ("Outline Texture", 2D) = "white" {} + _OutlineUVSpeedX ("Outline UV Speed X", Range(-5, 5)) = 0.0 + _OutlineUVSpeedY ("Outline UV Speed Y", Range(-5, 5)) = 0.0 + _OutlineWidth ("Outline Thickness", Range(0, 1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _Bevel ("Bevel", Range(0,1)) = 0.5 + _BevelOffset ("Bevel Offset", Range(-0.5,0.5)) = 0 + _BevelWidth ("Bevel Width", Range(-.5,0.5)) = 0 + _BevelClamp ("Bevel Clamp", Range(0,1)) = 0 + _BevelRoundness ("Bevel Roundness", Range(0,1)) = 0 + + _LightAngle ("Light Angle", Range(0.0, 6.2831853)) = 3.1416 + _SpecularColor ("Specular", Color) = (1,1,1,1) + _SpecularPower ("Specular", Range(0,4)) = 2.0 + _Reflectivity ("Reflectivity", Range(5.0,15.0)) = 10 + _Diffuse ("Diffuse", Range(0,1)) = 0.5 + _Ambient ("Ambient", Range(1,0)) = 0.5 + + _BumpMap ("Normal map", 2D) = "bump" {} + _BumpOutline ("Bump Outline", Range(0,1)) = 0 + _BumpFace ("Bump Face", Range(0,1)) = 0 + + _ReflectFaceColor ("Reflection Color", Color) = (0,0,0,1) + _ReflectOutlineColor("Reflection Color", Color) = (0,0,0,1) + _Cube ("Reflection Cubemap", Cube) = "black" { /* TexGen CubeReflect */ } + _EnvMatrixRotation ("Texture Rotation", vector) = (0, 0, 0, 0) + + + _UnderlayColor ("Border Color", Color) = (0,0,0, 0.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _GlowColor ("Color", Color) = (0, 1, 0, 0.5) + _GlowOffset ("Offset", Range(-1,1)) = 0 + _GlowInner ("Inner", Range(0,1)) = 0.05 + _GlowOuter ("Outer", Range(0,1)) = 0.05 + _GlowPower ("Falloff", Range(1, 0)) = 0.75 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = 0.5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5.0 + _ScaleX ("Scale X", float) = 1.0 + _ScaleY ("Scale Y", float) = 1.0 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _MaskCoord ("Mask Coordinates", vector) = (0, 0, 32767, 32767) + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + + Tags + { + "Queue"="Overlay" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest Always + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma target 3.0 + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ BEVEL_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + #pragma shader_feature __ GLOW_ON + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + #include "TMPro.cginc" + + struct vertex_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 position : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 position : SV_POSITION; + fixed4 color : COLOR; + float2 atlas : TEXCOORD0; // Atlas + float4 param : TEXCOORD1; // alphaClip, scale, bias, weight + float4 mask : TEXCOORD2; // Position in object space(xy), pixel Size(zw) + float3 viewDir : TEXCOORD3; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 texcoord2 : TEXCOORD4; // u,v, scale, bias + fixed4 underlayColor : COLOR1; + #endif + + float4 textures : TEXCOORD5; + }; + + // Used by Unity internally to handle Texture Tiling and Offset. + uniform float4 _FaceTex_ST; + uniform float4 _OutlineTex_ST; + uniform float _UIMaskSoftnessX; + uniform float _UIMaskSoftnessY; + uniform int _UIVertexColorAlwaysGammaSpace; + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input,output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.position; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if (UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + float bias =(.5 - weight) + (.5 / scale); + + float alphaClip = (1.0 - _OutlineWidth*_ScaleRatioA - _OutlineSoftness*_ScaleRatioA); + + #if GLOW_ON + alphaClip = min(alphaClip, 1.0 - _GlowOffset * _ScaleRatioB - _GlowOuter * _ScaleRatioB); + #endif + + alphaClip = alphaClip / 2.0 - ( .5 / scale) - weight; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 underlayColor = _UnderlayColor; + underlayColor.rgb *= underlayColor.a; + + float bScale = scale; + bScale /= 1 + ((_UnderlaySoftness*_ScaleRatioC) * bScale); + float bBias = (0.5 - weight) * bScale - 0.5 - ((_UnderlayDilate * _ScaleRatioC) * 0.5 * bScale); + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 bOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + // Support for texture tiling and offset + float2 textureUV = input.texcoord1; + float2 faceUV = TRANSFORM_TEX(textureUV, _FaceTex); + float2 outlineUV = TRANSFORM_TEX(textureUV, _OutlineTex); + + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + output.position = vPosition; + output.color = input.color; + output.atlas = input.texcoord0; + output.param = float4(alphaClip, scale, bias, weight); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + output.mask = half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + output.viewDir = mul((float3x3)_EnvMatrix, _WorldSpaceCameraPos.xyz - mul(unity_ObjectToWorld, vert).xyz); + #if (UNDERLAY_ON || UNDERLAY_INNER) + output.texcoord2 = float4(input.texcoord0 + bOffset, bScale, bBias); + output.underlayColor = underlayColor; + #endif + output.textures = float4(faceUV, outlineUV); + + return output; + } + + + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + float c = tex2D(_MainTex, input.atlas).a; + + #ifndef UNDERLAY_ON + clip(c - input.param.x); + #endif + + float scale = input.param.y; + float bias = input.param.z; + float weight = input.param.w; + float sd = (bias - c) * scale; + + float outline = (_OutlineWidth * _ScaleRatioA) * scale; + float softness = (_OutlineSoftness * _ScaleRatioA) * scale; + + half4 faceColor = _FaceColor; + half4 outlineColor = _OutlineColor; + + faceColor.rgb *= input.color.rgb; + + faceColor *= tex2D(_FaceTex, input.textures.xy + float2(_FaceUVSpeedX, _FaceUVSpeedY) * _Time.y); + outlineColor *= tex2D(_OutlineTex, input.textures.zw + float2(_OutlineUVSpeedX, _OutlineUVSpeedY) * _Time.y); + + faceColor = GetColor(sd, faceColor, outlineColor, outline, softness); + + #if BEVEL_ON + float3 dxy = float3(0.5 / _TextureWidth, 0.5 / _TextureHeight, 0); + float3 n = GetSurfaceNormal(input.atlas, weight, dxy); + + float3 bump = UnpackNormal(tex2D(_BumpMap, input.textures.xy + float2(_FaceUVSpeedX, _FaceUVSpeedY) * _Time.y)).xyz; + bump *= lerp(_BumpFace, _BumpOutline, saturate(sd + outline * 0.5)); + n = normalize(n- bump); + + float3 light = normalize(float3(sin(_LightAngle), cos(_LightAngle), -1.0)); + + float3 col = GetSpecular(n, light); + faceColor.rgb += col*faceColor.a; + faceColor.rgb *= 1-(dot(n, light)*_Diffuse); + faceColor.rgb *= lerp(_Ambient, 1, n.z*n.z); + + fixed4 reflcol = texCUBE(_Cube, reflect(input.viewDir, -n)); + faceColor.rgb += reflcol.rgb * lerp(_ReflectFaceColor.rgb, _ReflectOutlineColor.rgb, saturate(sd + outline * 0.5)) * faceColor.a; + #endif + + #if UNDERLAY_ON + float d = tex2D(_MainTex, input.texcoord2.xy).a * input.texcoord2.z; + faceColor += input.underlayColor * saturate(d - input.texcoord2.w) * (1 - faceColor.a); + #endif + + #if UNDERLAY_INNER + float d = tex2D(_MainTex, input.texcoord2.xy).a * input.texcoord2.z; + faceColor += input.underlayColor * (1 - saturate(d - input.texcoord2.w)) * saturate(1 - sd) * (1 - faceColor.a); + #endif + + #if GLOW_ON + float4 glowColor = GetGlowColor(sd, scale); + faceColor.rgb += glowColor.rgb * glowColor.a; + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + faceColor *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(faceColor.a - 0.001); + #endif + + return faceColor * input.color.a; + } + ENDCG + } +} + +Fallback "TextMeshPro/Mobile/Distance Field" +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta new file mode 100644 index 0000000..56284e9 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: dd89cf5b9246416f84610a006f916af7 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader new file mode 100644 index 0000000..27c14bc --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader @@ -0,0 +1,321 @@ +Shader "TextMeshPro/Distance Field SSD" { + +Properties { + _FaceTex ("Face Texture", 2D) = "white" {} + _FaceUVSpeedX ("Face UV Speed X", Range(-5, 5)) = 0.0 + _FaceUVSpeedY ("Face UV Speed Y", Range(-5, 5)) = 0.0 + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineTex ("Outline Texture", 2D) = "white" {} + _OutlineUVSpeedX ("Outline UV Speed X", Range(-5, 5)) = 0.0 + _OutlineUVSpeedY ("Outline UV Speed Y", Range(-5, 5)) = 0.0 + _OutlineWidth ("Outline Thickness", Range(0, 1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _Bevel ("Bevel", Range(0,1)) = 0.5 + _BevelOffset ("Bevel Offset", Range(-0.5,0.5)) = 0 + _BevelWidth ("Bevel Width", Range(-.5,0.5)) = 0 + _BevelClamp ("Bevel Clamp", Range(0,1)) = 0 + _BevelRoundness ("Bevel Roundness", Range(0,1)) = 0 + + _LightAngle ("Light Angle", Range(0.0, 6.2831853)) = 3.1416 + _SpecularColor ("Specular", Color) = (1,1,1,1) + _SpecularPower ("Specular", Range(0,4)) = 2.0 + _Reflectivity ("Reflectivity", Range(5.0,15.0)) = 10 + _Diffuse ("Diffuse", Range(0,1)) = 0.5 + _Ambient ("Ambient", Range(1,0)) = 0.5 + + _BumpMap ("Normal map", 2D) = "bump" {} + _BumpOutline ("Bump Outline", Range(0,1)) = 0 + _BumpFace ("Bump Face", Range(0,1)) = 0 + + _ReflectFaceColor ("Reflection Color", Color) = (0,0,0,1) + _ReflectOutlineColor("Reflection Color", Color) = (0,0,0,1) + _Cube ("Reflection Cubemap", Cube) = "black" { /* TexGen CubeReflect */ } + _EnvMatrixRotation ("Texture Rotation", vector) = (0, 0, 0, 0) + + + _UnderlayColor ("Border Color", Color) = (0,0,0, 0.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _GlowColor ("Color", Color) = (0, 1, 0, 0.5) + _GlowOffset ("Offset", Range(-1,1)) = 0 + _GlowInner ("Inner", Range(0,1)) = 0.05 + _GlowOuter ("Outer", Range(0,1)) = 0.05 + _GlowPower ("Falloff", Range(1, 0)) = 0.75 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = 0.5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5.0 + _ScaleX ("Scale X", float) = 1.0 + _ScaleY ("Scale Y", float) = 1.0 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _MaskCoord ("Mask Coordinates", vector) = (0, 0, 32767, 32767) + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + Tags + { + "Queue" = "Transparent" + "IgnoreProjector" = "True" + "RenderType" = "Transparent" + } + + Stencil + { + Ref[_Stencil] + Comp[_StencilComp] + Pass[_StencilOp] + ReadMask[_StencilReadMask] + WriteMask[_StencilWriteMask] + } + + Cull[_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest[unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask[_ColorMask] + + Pass + { + CGPROGRAM + #pragma target 3.0 + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ BEVEL_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + #pragma shader_feature __ GLOW_ON + #pragma shader_feature __ FORCE_LINEAR + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + #include "TMPro.cginc" + + struct vertex_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 position : POSITION; + float3 normal : NORMAL; + float4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 position : SV_POSITION; + float4 color : COLOR; + float2 atlas : TEXCOORD0; + float weight : TEXCOORD1; + float2 mask : TEXCOORD2; // Position in object space(xy) + float3 viewDir : TEXCOORD3; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float2 texcoord2 : TEXCOORD4; + float4 underlayColor : COLOR1; + #endif + + float4 textures : TEXCOORD5; + }; + + // Used by Unity internally to handle Texture Tiling and Offset. + float4 _FaceTex_ST; + float4 _OutlineTex_ST; + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + float4 SRGBToLinear(float4 rgba) + { + return float4(lerp(rgba.rgb / 12.92f, pow((rgba.rgb + 0.055f) / 1.055f, 2.4f), step(0.04045f, rgba.rgb)), rgba.a); + } + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input,output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.position; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + float4 vPosition = UnityObjectToClipPos(vert); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 underlayColor = _UnderlayColor; + underlayColor.rgb *= underlayColor.a; + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 bOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + + // Support for texture tiling and offset + float2 textureUV = input.texcoord1; + float2 faceUV = TRANSFORM_TEX(textureUV, _FaceTex); + float2 outlineUV = TRANSFORM_TEX(textureUV, _OutlineTex); + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + float4 color = input.color; + #if (FORCE_LINEAR && !UNITY_COLORSPACE_GAMMA) + color = SRGBToLinear(input.color); + #endif + + output.position = vPosition; + output.color = color; + output.atlas = input.texcoord0; + output.weight = weight; + output.mask = half2(vert.xy * 2 - clampedRect.xy - clampedRect.zw); + output.viewDir = mul((float3x3)_EnvMatrix, _WorldSpaceCameraPos.xyz - mul(unity_ObjectToWorld, vert).xyz); + #if (UNDERLAY_ON || UNDERLAY_INNER) + output.texcoord2 = input.texcoord0 + bOffset; + output.underlayColor = underlayColor; + #endif + output.textures = float4(faceUV, outlineUV); + + return output; + } + + + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + float c = tex2D(_MainTex, input.atlas).a; + + float pixelSize = abs(ddx(input.atlas.y)) + abs(ddy(input.atlas.y)); + pixelSize *= _TextureHeight * 0.75; + float scale = 1 / pixelSize * _GradientScale * (_Sharpness + 1); + + float weight = input.weight; + float bias = (.5 - weight) + (.5 / scale); + float sd = (bias - c) * scale; + + float outline = (_OutlineWidth * _ScaleRatioA) * scale; + float softness = (_OutlineSoftness * _ScaleRatioA) * scale; + + half4 faceColor = _FaceColor; + half4 outlineColor = _OutlineColor; + + faceColor.rgb *= input.color.rgb; + + faceColor *= tex2D(_FaceTex, input.textures.xy + float2(_FaceUVSpeedX, _FaceUVSpeedY) * _Time.y); + outlineColor *= tex2D(_OutlineTex, input.textures.zw + float2(_OutlineUVSpeedX, _OutlineUVSpeedY) * _Time.y); + + faceColor = GetColor(sd, faceColor, outlineColor, outline, softness); + + #if BEVEL_ON + float3 dxy = float3(0.5 / _TextureWidth, 0.5 / _TextureHeight, 0); + float3 n = GetSurfaceNormal(input.atlas, weight, dxy); + + float3 bump = UnpackNormal(tex2D(_BumpMap, input.textures.xy + float2(_FaceUVSpeedX, _FaceUVSpeedY) * _Time.y)).xyz; + bump *= lerp(_BumpFace, _BumpOutline, saturate(sd + outline * 0.5)); + n = normalize(n - bump); + + float3 light = normalize(float3(sin(_LightAngle), cos(_LightAngle), -1.0)); + + float3 col = GetSpecular(n, light); + faceColor.rgb += col * faceColor.a; + faceColor.rgb *= 1 - (dot(n, light) * _Diffuse); + faceColor.rgb *= lerp(_Ambient, 1, n.z * n.z); + + fixed4 reflcol = texCUBE(_Cube, reflect(input.viewDir, -n)); + faceColor.rgb += reflcol.rgb * lerp(_ReflectFaceColor.rgb, _ReflectOutlineColor.rgb, saturate(sd + outline * 0.5)) * faceColor.a; + #endif + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float bScale = scale; + bScale /= 1 + ((_UnderlaySoftness * _ScaleRatioC) * bScale); + float bBias = (0.5 - weight) * bScale - 0.5 - ((_UnderlayDilate * _ScaleRatioC) * 0.5 * bScale); + #endif + + #if UNDERLAY_ON + float d = tex2D(_MainTex, input.texcoord2.xy).a * bScale; + faceColor += input.underlayColor * saturate(d - bBias) * (1 - faceColor.a); + #endif + + #if UNDERLAY_INNER + float d = tex2D(_MainTex, input.texcoord2.xy).a * bScale; + faceColor += input.underlayColor * (1 - saturate(d - bBias)) * saturate(1 - sd) * (1 - faceColor.a); + #endif + + #if GLOW_ON + float4 glowColor = GetGlowColor(sd, scale); + faceColor.rgb += glowColor.rgb * glowColor.a; + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + float2 maskZW = 0.25 / (0.25 * maskSoftness + 1 / scale); + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * maskZW); + faceColor *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(faceColor.a - 0.001); + #endif + + return faceColor * input.color.a; + } + ENDCG + } +} + +Fallback "TextMeshPro/Mobile/Distance Field" +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta new file mode 100644 index 0000000..08cd8ae --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 14eb328de4b8eb245bb7cea29e4ac00b +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph new file mode 100644 index 0000000..4f7157c --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph @@ -0,0 +1,12074 @@ +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.GraphData", + "m_ObjectId": "386c36a1c4c34ea29deb680fb82cfe8b", + "m_Properties": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "c417006ffa034c44b79da3dd323165ff" + } + ], + "m_Keywords": [], + "m_Dropdowns": [], + "m_CategoryData": [ + { + "m_Id": "6b0cd1bfb339459ca967fa23df287ef0" + } + ], + "m_Nodes": [ + { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + }, + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + { + "m_Id": "e591df3a1eb94e259b762f2830b407e2" + }, + { + "m_Id": "bc782d8e80154073b48a687a07adf60a" + }, + { + "m_Id": "2786e48f93f54a82aee4303ce7b63c82" + }, + { + "m_Id": "7f7d8028b58d4227a4560891be6e7cda" + }, + { + "m_Id": "f5a8bfcec21a4dac9df63993ec53635e" + }, + { + "m_Id": "be58359e488f42e9b5121357d0fa526b" + } + ], + "m_GroupDatas": [ + { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + } + ], + "m_StickyNoteDatas": [], + "m_Edges": [ + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 5 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 7 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 6 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 1 + } + } + ], + "m_VertexContext": { + "m_Position": { + "x": -2506.000244140625, + "y": -3749.0 + }, + "m_Blocks": [ + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + } + ] + }, + "m_FragmentContext": { + "m_Position": { + "x": -2506.000244140625, + "y": -3480.0 + }, + "m_Blocks": [ + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "e591df3a1eb94e259b762f2830b407e2" + }, + { + "m_Id": "bc782d8e80154073b48a687a07adf60a" + }, + { + "m_Id": "2786e48f93f54a82aee4303ce7b63c82" + }, + { + "m_Id": "7f7d8028b58d4227a4560891be6e7cda" + }, + { + "m_Id": "f5a8bfcec21a4dac9df63993ec53635e" + }, + { + "m_Id": "be58359e488f42e9b5121357d0fa526b" + } + ] + }, + "m_PreviewData": { + "serializedMesh": { + "m_SerializedMesh": "{\"mesh\":{\"fileID\":10210,\"guid\":\"0000000000000000e000000000000000\",\"type\":0}}", + "m_Guid": "" + }, + "preventRotation": false + }, + "m_Path": "TextMeshPro/SRP", + "m_GraphPrecision": 0, + "m_PreviewMode": 2, + "m_OutputNode": { + "m_Id": "" + }, + "m_ActiveTargets": [ + { + "m_Id": "7cf0e63037a74dc2a9f591225c678ff4" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "007c75c776ac4f1babe9cd7ae1fc4f14", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5722.99951171875, + "y": -3827.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1356dc7cbdfa4199a6535d3bbf4cd536" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData", + "m_ObjectId": "00996039d61e400a9e854ce591ac35a0", + "m_Distortion": false, + "m_DistortionMode": 0, + "m_DistortionDepthTest": true, + "m_AddPrecomputedVelocity": false, + "m_TransparentWritesMotionVec": false, + "m_DepthOffset": false, + "m_ConservativeDepthOffset": false, + "m_TransparencyFog": true, + "m_AlphaTestShadow": false, + "m_BackThenFrontRendering": false, + "m_TransparentDepthPrepass": false, + "m_TransparentDepthPostpass": false, + "m_TransparentPerPixelSorting": false, + "m_SupportLodCrossFade": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "013228b0fdf1424097798f0973a9a4fb", + "m_Title": "Face Texture", + "m_Position": { + "x": -4828.0, + "y": -2832.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "02559cbe5ad441a3904ccb75ded2b2c5", + "m_Id": 5, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "03182b3263304258b265266325c21f65", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "045c4f6b050549c7a0efb208e6349779", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "04dc152dd2ba4d519391577eb1156235", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4540.0, + "y": -2749.0, + "width": 151.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "3d04f5ba6e7b40d281f22eb424145acd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "04dfcc9ff13a4bf282ed46faec39d15c", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "05805bc6fcc941fd889922555c6c86d7", + "m_Guid": { + "m_GuidSerialized": "fe84e680-4cee-4ca5-be86-2e293a9ba093" + }, + "m_Name": "Ambient Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_05805bc6fcc941fd889922555c6c86d7", + "m_OverrideReferenceName": "_Ambient", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "0580d4b7e3a049049569f4508643a724", + "m_Guid": { + "m_GuidSerialized": "eefb88c5-7665-45dc-b3c2-7cf98b9990d6" + }, + "m_Name": "Softness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_D64EC33D", + "m_OverrideReferenceName": "_Softness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "068ae649e00b40e198ec5a30ad741fab", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0699eea947fc426cbfeb8744cf120222", + "m_Id": 1, + "m_DisplayName": "Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "07946387933e416db576b677f0711e5f", + "m_Guid": { + "m_GuidSerialized": "21d612fb-8153-41f8-9e2f-9de044c19fbf" + }, + "m_Name": "_FaceTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1A08AD4A", + "m_OverrideReferenceName": "_FaceText_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "082e9706dffc4c188270980d4e44ce0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0848ba750e0341198cf0bbd413e0efe4", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "09b1b86c1c074337a4c439d3a308dd2e", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0a67ca5280214bd794dc0ad66b5710a9", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0b57f2d35157477ab2b29a5aac14ae8b", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0ba4932e164847878ddb7b7bcff96985", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0c4dc51f26484c26ad88a3fe4002abcd", + "m_Id": 2, + "m_DisplayName": "Color (1)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0d6a57754b824f6db9cefa6953bc06a9", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0d7878dd226d4cfb81a991dc312309fc", + "m_Id": 0, + "m_DisplayName": "Underlay Dilate", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "0f7ffb6d2de4447f9736780cbcee8e07", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0fac35636fca4474a6afaefc3c757775", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "105b1ed1aa714e41bbe1ef5472bdb11f", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4923.99951171875, + "y": -4233.0, + "width": 158.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "8a08179f99d649d289b8053d5fa0ad22" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "109f638d1f9b49d4991d6d21a86d4eb7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5098.99951171875, + "y": -3182.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "880bb02c6c6b49b18aa6ebc66dc566a0" + }, + { + "m_Id": "1b9cd8f5f4004e2eaf8afbaab803bc04" + }, + { + "m_Id": "b224a1cf80604103ad085c799995f3c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "10a99c07aad742349d258db16838c129", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1196ae398cc348349ab0c1a23fdab4bd", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1356dc7cbdfa4199a6535d3bbf4cd536", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "14ad19bf20a140dd88d58452d7df688b", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 1.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "150533bad8e2424aaa2c74e253af8592", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4955.0, + "y": -3487.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "72fb5a0d7796446b9e2b929cb32facdc" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "163beb4431c34f538340bc0af0991e6f", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3284.0, + "y": -3516.0, + "width": 119.99999237060547, + "height": 149.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c334de01ecd429baa7652fc6002536b" + }, + { + "m_Id": "e2d28f29bbac4983a401574480b5ca28" + }, + { + "m_Id": "6a7af6143e114a538663e71f56731a21" + }, + { + "m_Id": "3e25be96bb3747738c238cf3a741d5df" + }, + { + "m_Id": "4907352322c644ebacdf2ca30f2994fd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "183118ca50814141b7bc3e0cee27fb9b", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "19075add867e4757b9520d18fe8de1d0", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4291.99951171875, + "y": -3197.0, + "width": 124.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c28ee9109014fa086e5de7a3993341d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "0580d4b7e3a049049569f4508643a724" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1b9cd8f5f4004e2eaf8afbaab803bc04", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1bdde3efd3b7464b8934c555be0f8a48", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "1be90d4f96a841748b0c95219b12ad27", + "m_Guid": { + "m_GuidSerialized": "4c91c146-43bb-4de8-948a-fbf8b1da10e1" + }, + "m_Name": "Bevel Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_97690701", + "m_OverrideReferenceName": "_BevelOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": -0.5, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "1c4df61c2fea404eb3b87b270d7c59bc", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4311.0, + "y": -3221.0, + "width": 148.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "f864c900600e427ba7793f00c715e971" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1d35fa1fb5004f96a65ace54fbe4f1ad", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1db37082bf844442804487b4944352de", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1df58cfa4dad4c449d01ee1c5ea05f2e", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "1e12726617b24675958e942eb62e4b09", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4772.0, + "y": -4404.0, + "width": 145.00001525878907, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "0848ba750e0341198cf0bbd413e0efe4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1f247658c7ba45fb93c41f51e21acb0d", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1f46181633594ae0a1fb2adb76b42981", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "200245fc8bbe4826b209ab5f7ffe074c", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "204dacb5a95b424facf11cb6f65bd188", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "215a82c127204988b751de7d3a39b955", + "m_Id": 6, + "m_DisplayName": "Outline", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Outline", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "215b30ae27784ec3a13360a9029af283", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "21a7a380e66d42e780e2a2a1baa630d5", + "m_Guid": { + "m_GuidSerialized": "b2d0099f-e605-49f5-9959-e7cacae37aa3" + }, + "m_Name": "Bevel Type", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_21a7a380e66d42e780e2a2a1baa630d5", + "m_OverrideReferenceName": "_BevelType", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e", + "m_Guid": { + "m_GuidSerialized": "cd167d3a-7465-4d5a-86fc-0f22dc0ef908" + }, + "m_Name": "Outline Color 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_5550EB71", + "m_OverrideReferenceName": "_OutlineColor1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "232b1aa09e67479abae141d3c76d3c5b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "256d41e89a204d22951450de1c38051d", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "26e48352a08441bfa694dcea54c06e36", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "2786e48f93f54a82aee4303ce7b63c82", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Smoothness", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "9d0c47172bf840a0ac029980ba082af7" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Smoothness" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "281bcee4777040f8a31ee0e10344e98d", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "285f6a9863d54ed2a8150727ad749456", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4177.0, + "y": -2422.0, + "width": 154.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "b42e6dbfbc864097af182cbff5c0c1fb" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.IsFrontFaceNode", + "m_ObjectId": "2a552a0b828f457c911aa19561e410ae", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Is Front Face", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4282.0, + "y": -3681.3330078125, + "width": 121.99999237060547, + "height": 77.33348846435547 + } + }, + "m_Slots": [ + { + "m_Id": "2ef1d888dc9d49e59d6a6950897ddc93" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "2ac79705aa9e415dbb74ec215233fd1b", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Composite (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3350.0, + "y": -3810.0, + "width": 213.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "a75f7ac601c446469802fe7754c1f279" + }, + { + "m_Id": "8c38a5d8327f456e9783740c05382619" + }, + { + "m_Id": "facc84930f544fd7a0205a6176b18ac0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Composite", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2b01ea3023e34c94af1754e4dcea8f2e", + "m_Id": 0, + "m_DisplayName": "Face Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2bf5f2fdd2984599b7323d10cfb1d240", + "m_Id": 1, + "m_DisplayName": "Filter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Filter", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "2c10b97b92c947ceb307a93759c0228b", + "m_Guid": { + "m_GuidSerialized": "6be0b8ff-a766-4c6b-a6e4-3a72758ac95f" + }, + "m_Name": "Bevel Amount", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B01DD93E", + "m_OverrideReferenceName": "_BevelAmount", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.25, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2c7a9460724b47daad8df1be144de7c6", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "2d0a269511e34bd1ba9056d2c939dff2", + "m_Guid": { + "m_GuidSerialized": "edbe73dc-53ab-4bc1-9d64-ab36e0e05f03" + }, + "m_Name": "_FaceUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_3A8E0F13", + "m_OverrideReferenceName": "_FaceUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "2db15d90c2204143b225ec4ef08d0755", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4387.0, + "y": -2405.0, + "width": 163.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "def8e0b9d8384982bc5b4c32d877e458" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "2e4eb1ef08bb44178c82e53872485e0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2ef1d888dc9d49e59d6a6950897ddc93", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 2, + "m_Value": true, + "m_DefaultValue": true +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData", + "m_ObjectId": "305e3be306674fcd8bb02273d27ee5b7", + "m_MaterialNeedsUpdateHash": 280372, + "m_SurfaceType": 1, + "m_RenderingPass": 4, + "m_BlendMode": 0, + "m_ZTest": 4, + "m_ZWrite": false, + "m_TransparentCullMode": 2, + "m_OpaqueCullMode": 2, + "m_SortPriority": 0, + "m_AlphaTest": true, + "m_TransparentDepthPrepass": false, + "m_TransparentDepthPostpass": false, + "m_SupportLodCrossFade": false, + "m_DoubleSidedMode": 0, + "m_DOTSInstancing": false, + "m_CustomVelocity": false, + "m_Tessellation": false, + "m_TessellationMode": 0, + "m_TessellationFactorMinDistance": 20.0, + "m_TessellationFactorMaxDistance": 50.0, + "m_TessellationFactorTriangleSize": 100.0, + "m_TessellationShapeFactor": 0.75, + "m_TessellationBackFaceCullEpsilon": -0.25, + "m_TessellationMaxDisplacement": 0.009999999776482582, + "m_DebugSymbols": false, + "m_Version": 2, + "inspectorFoldoutMask": 9 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "30ca940fe2794c949f2a1d4d2caaa446", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "319916a5921343f7b7eef0e50dc93def", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4791.0, + "y": -3245.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "d219977210094c0082c517d8dc00c8bb" + }, + { + "m_Id": "f48f04ad45d046a8b88e71731ed506e7" + }, + { + "m_Id": "e6e80c6b0db545cda26b079a9a78fbb3" + }, + { + "m_Id": "c6bdb985bc16435fa72f5a3c81bb633c" + }, + { + "m_Id": "d1a17e42e7a04dc38984e3c01149445b" + }, + { + "m_Id": "fb15d0ba56d54a6192f11e107aeb5fa8" + }, + { + "m_Id": "c35312edaa2344788b1964ee2f63a236" + }, + { + "m_Id": "c88fcbaeea954a5f9c68c339fa8b604d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "34a67e0fef884f9399e674d9eeaf720c", + "m_Id": 6, + "m_DisplayName": "Color3", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color3", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "34a72a5ebb04402384a4fd3748111a37", + "m_Id": 0, + "m_DisplayName": "Alpha Clip Threshold", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AlphaClipThreshold", + "m_StageCapability": 2, + "m_Value": 0.0010000000474974514, + "m_DefaultValue": 0.5, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3535ae87c6dd4769b52b20d9eca61069", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "35cbea6373dd4e4f8d0fea36e8add392", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "36a0c473c4c04c3a930dd38f3920d410", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "36f1b4d96f2941c39e5cd95d9c1d2ce6", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6008.99951171875, + "y": -3341.0, + "width": 144.99998474121095, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "65b3dc13b2b6484283ffe5abfe87a06a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "373f1de8db6c429c9d46c781f741d7a4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3802c81c3be24823aa1d7c9997a33c29", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "3915c1927ffe49f8967304321cfbe497", + "m_Id": 4, + "m_DisplayName": "Atlas", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Atlas", + "m_StageCapability": 3, + "m_BareResource": true, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "39a382d661e2484da71f04c43f48e55f", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "39f2f84f30304d859fb07569e2695f60", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3423.000244140625, + "y": -3516.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "4b2d9ea03bf64fa19dcae1511d2581da" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "3c50439118b2496f9e390021b0964606", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.AlphaClipThreshold", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3028.0, + "y": -3054.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "34a72a5ebb04402384a4fd3748111a37" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.AlphaClipThreshold" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3d04f5ba6e7b40d281f22eb424145acd", + "m_Id": 0, + "m_DisplayName": "Face Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3db1608e927e4102a3c3a88e9fcab39a", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "3dccd64e7f324bc1a75c1479d7a67c51", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "3e231021af7b47ba97f2871e7f25d0fe", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2803.000244140625, + "y": -3520.0, + "width": 140.0, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "6ccaced3889e4503a9414d808ec33981" + }, + { + "m_Id": "7f3d71a6c96847c099da45f95aafbecb" + }, + { + "m_Id": "d8edec16956c4f15b7d51d6ec10753f4" + }, + { + "m_Id": "39a382d661e2484da71f04c43f48e55f" + }, + { + "m_Id": "8764669016f6442f8152593c18a649d7" + }, + { + "m_Id": "26e48352a08441bfa694dcea54c06e36" + }, + { + "m_Id": "3e94a0d106064bdb864c960512ef4026" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3e25be96bb3747738c238cf3a741d5df", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "3e372195f4bd4845852a37839e5b602d", + "m_Guid": { + "m_GuidSerialized": "60abd046-2a1a-48cd-a0af-2f702f7f53ab" + }, + "m_Name": "_MainTex", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_90CBF488", + "m_OverrideReferenceName": "_MainTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":28684132378477856,\"guid\":\"8f586378b4e144a9851e7b34d9b748ee\",\"type\":2}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "3e94a0d106064bdb864c960512ef4026", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "3ec4797e381747829ef4712c85fcf7a1", + "m_Guid": { + "m_GuidSerialized": "020d65cc-50a8-4b8a-a624-90d7b489f549" + }, + "m_Name": "Specular Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_3ec4797e381747829ef4712c85fcf7a1", + "m_OverrideReferenceName": "_SpecularPower", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 1.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 4.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "3fdf4b7bc5d4426492dcc057603ef4a6", + "m_Guid": { + "m_GuidSerialized": "675d2567-3fca-4da6-9462-dfa4924950f1" + }, + "m_Name": "_OutlineUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_D66D89E6", + "m_OverrideReferenceName": "_OutlineUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "400d0b6c95dd4540ad3da3e8cb7e50b2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "41986ac6400d46709d0ef043a67f6b34", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "41b9b79b3859472882bcea393703eec0", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "424dbeeb009344efa29c304c4979e3d6", + "m_Guid": { + "m_GuidSerialized": "314c37de-c6f2-4463-866d-8588f6fc119e" + }, + "m_Name": "Diffuse Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_424dbeeb009344efa29c304c4979e3d6", + "m_OverrideReferenceName": "_Diffuse", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "42a586e4f6ec40eeaba891b7fd133864", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4934.0, + "y": -4442.99951171875, + "width": 133.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "da7a06d393a44089842070d51d2aa0a6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "42cadae0923e4969b50bbc3f78185934", + "m_Title": "Face + 3 Outlines + Underlay", + "m_Position": { + "x": -5468.0, + "y": -3558.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4328cdbf78b94c038fd614c59bfe1cac", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "44317f2e371447e2a8d894f8a021a235", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Layer1 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4004.999755859375, + "y": -4173.0, + "width": 191.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "10a99c07aad742349d258db16838c129" + }, + { + "m_Id": "b85d677872b44421bf5536f42ba0267c" + }, + { + "m_Id": "75aba700d74d4b2687bf3166cf1da3e2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer1", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "44806230fa384c1e95f9c5918a14f056", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4488af8ff6a7421298a7e827f567263b", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4109.0, + "width": 158.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "66f69ef16eac4eb48357bde804cf3c39" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "4590bfa2a0664b65b6f073bae33a071f", + "m_Id": 0, + "m_DisplayName": "Emission", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Emission", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_ColorMode": 1, + "m_DefaultColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "4648b46ad29a4008a80de4f8a5a5b813", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4615.0, + "y": -2422.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "b2baf44eae52473cb6cda7b1debece01" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "46fbf3eeb0ea4470869cba7443249295", + "m_Guid": { + "m_GuidSerialized": "be87c5a3-e361-4b95-89c8-911c39a51c0d" + }, + "m_Name": "Outline Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_A0B54237", + "m_OverrideReferenceName": "_OutlineTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "47d020251e9841a5b1f0fd64396026a1", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "48390d02257d41bf98eace1deaa4c539", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "8036d0e6090b456e9b4ea87227868236" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Position" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "484b51c50485473b819c4f05087b32d7", + "m_Title": "Underlay", + "m_Position": { + "x": -5253.0, + "y": -4542.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4907352322c644ebacdf2ca30f2994fd", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "49e7c3ad55ce458797f0e60c950cb965", + "m_Guid": { + "m_GuidSerialized": "31b55db9-0da1-4ec4-af2b-d83747ed5bc4" + }, + "m_Name": "Underlay Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_CE9DEDB3", + "m_OverrideReferenceName": "_UnderlayOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4a66dcbe712a4d40bd8f355b834594b5", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "4abff6ff92fa4a05b203f10580988335", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4323.99951171875, + "y": -3498.0, + "width": 140.0, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "b015d1b7e4134c59baf6851e7649802c" + }, + { + "m_Id": "d9dc4839ee2847999110bdb234d6041a" + }, + { + "m_Id": "91d6a9a5fbc04ea49075cb51835e7264" + }, + { + "m_Id": "f42ad06b3c6a45d3ab33de904c063412" + }, + { + "m_Id": "ed6c215a65584deeaefad1d2c7743044" + }, + { + "m_Id": "edbee7a8952b46529ac5ad0365775774" + }, + { + "m_Id": "70337a74f6ad4b7bb6befc825219bab1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4b2d9ea03bf64fa19dcae1511d2581da", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4bda5c294e1949138d033640e1d385b4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4c28ee9109014fa086e5de7a3993341d", + "m_Id": 0, + "m_DisplayName": "Softness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4c334de01ecd429baa7652fc6002536b", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4d1cb1a475df49f9a148195a65f5453a", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4d9ce48719d143748f9f8e22da6f9ddc", + "m_Id": 5, + "m_DisplayName": "TextureWidth", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureWidth", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4e64dac49ddc47c3b5b1e27b17a08304", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "4eb3c00a1ca44e10be833b7ca61ff059", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4f194ff591484e908fc2bcdacbcf2570", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4309.0, + "y": -2773.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "2b01ea3023e34c94af1754e4dcea8f2e" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "509e6f38505b4b0695b263706a55028f", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "51378bae98a94c309785d14cd5cbb453", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "GetSurfaceNormal (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4067.333251953125, + "y": -3881.99951171875, + "width": 263.9999694824219, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "5b0077c23eae443887872f84227deccc" + }, + { + "m_Id": "3915c1927ffe49f8967304321cfbe497" + }, + { + "m_Id": "4d9ce48719d143748f9f8e22da6f9ddc" + }, + { + "m_Id": "ebd6d75abcb84108bcadbfe7ee5f6244" + }, + { + "m_Id": "ef9738ec7e894772a14e9dce441c16c6" + }, + { + "m_Id": "9eeec1a9713045af8845cea263d5ea48" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GetSurfaceNormal", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "51f76f8a53ad43a4ad028426548ce9ba", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "52798bdb86f6400e86489a7a368e9f8b", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6154.99951171875, + "y": -3169.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1df58cfa4dad4c449d01ee1c5ea05f2e" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "53073e5ea924459fa6681a4943e9f947", + "m_Guid": { + "m_GuidSerialized": "5fdac24e-2d58-4471-80ce-79c3ab9a2564" + }, + "m_Name": "Outline Color 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_DBAB5AEC", + "m_OverrideReferenceName": "_OutlineColor2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.009433984756469727, + "g": 0.02534518577158451, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "54d7a93ffec5490aa4591da23a21b693", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "55ffa45ec3654d5e88089fb40d2b0465", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "56c25395796e4d2fbe5c892d428d1620", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5102.99951171875, + "y": -3427.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "9eb8137a6c2e41bbafdc8b0732dd47a3" + }, + { + "m_Id": "36a0c473c4c04c3a930dd38f3920d410" + }, + { + "m_Id": "068ae649e00b40e198ec5a30ad741fab" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "57abc172afd449e2a4d567f93432507b", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "582d6e289dbe4fdca7cf0307273eaa2f", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "59bd90a849624124bae6464ee3669aa6", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4007.0, + "y": -2395.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "2e4eb1ef08bb44178c82e53872485e0f" + }, + { + "m_Id": "8695190a5e614f2d90081871a8a06fc2" + }, + { + "m_Id": "81bdb47901ef48e5a588c6724b1b0142" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "5b0077c23eae443887872f84227deccc", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5b3ff4ee364f4d7a923b530ad60d8762", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5bd258837c514ff7ab0bf7027e762c18", + "m_Guid": { + "m_GuidSerialized": "2d8f3ee9-1307-4b58-a60d-526e86b07109" + }, + "m_Name": "Bevel Roundness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_AB6A015F", + "m_OverrideReferenceName": "_BevelRoundness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5da82bf481f8489ebd05e997f617f51b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": 4.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5e42524569844befad16fda5a94eb9cb", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5fbe253f3e444f2aa8ac717f9c856619", + "m_Guid": { + "m_GuidSerialized": "0a61c93f-6430-4aa6-af07-79bc3b411ccd" + }, + "m_Name": "Bevel Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B50BBFCC", + "m_OverrideReferenceName": "_BevelWidth", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.5, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61133d79a89048c195f54939b2a1d30a", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61a6ac5f29344d109411f26850ab0a96", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitData", + "m_ObjectId": "6238ae56182d404f8563cb88cb801549", + "m_RayTracing": false, + "m_MaterialType": 0, + "m_MaterialTypeMask": 2, + "m_RefractionModel": 0, + "m_SSSTransmission": true, + "m_EnergyConservingSpecular": true, + "m_ClearCoat": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6271438664e74b3fbf723bd6a1f50f8b", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "62bc551cea604e88b7858cc37d96a98a", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "636180f6e0504f2baaa5cc086980cb47", + "m_Guid": { + "m_GuidSerialized": "c1223e37-093d-4d5a-b2b0-cd9cc3e4f88e" + }, + "m_Name": "Outline Offset 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_636180f6e0504f2baaa5cc086980cb47", + "m_OverrideReferenceName": "_OutlineOffset1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "63c7cd57fc3c45a9a97b514fdae32693", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5266.99951171875, + "y": -3387.0, + "width": 156.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "c422a9a9ff824176aad2241f58c44d0b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "641eda269d7b4da9acb65f8d50035ea9", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "65b3dc13b2b6484283ffe5abfe87a06a", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "65c8e64a7535466e933eed08a2f77532", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4791.0, + "y": -3499.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "256d41e89a204d22951450de1c38051d" + }, + { + "m_Id": "0a67ca5280214bd794dc0ad66b5710a9" + }, + { + "m_Id": "ebbd94a7102a4457a48ac492de3bff14" + }, + { + "m_Id": "6271438664e74b3fbf723bd6a1f50f8b" + }, + { + "m_Id": "c9b722d107ce4cd6a748c883472b9b0f" + }, + { + "m_Id": "74cf69e61bef44589521f1bf2bf3c59a" + }, + { + "m_Id": "6e532f83d1c44e839bcfc5845d3b01d6" + }, + { + "m_Id": "cb5e9f9567e84f8fa5463efc0e256e19" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "66f69ef16eac4eb48357bde804cf3c39", + "m_Id": 0, + "m_DisplayName": "_UnderlayColor", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "67a519f507384ff1861df5d8d5b486be", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4278.0, + "y": -3939.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "c3e6d7c20c184bf39fd8822130e693e7" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitSubTarget", + "m_ObjectId": "67bc2306558f4f2fa807637aaebaeab4" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "68ec7c31365549d6a8ce883edfc02de2", + "m_Id": 4, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6a7af6143e114a538663e71f56731a21", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "6b0cd1bfb339459ca967fa23df287ef0", + "m_Name": "", + "m_ChildObjectList": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "c417006ffa034c44b79da3dd323165ff" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "6b2f65c1463f4f7bad16c54a95d2fe75", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5101.0, + "y": -3301.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "1d35fa1fb5004f96a65ace54fbe4f1ad" + }, + { + "m_Id": "fa6de3be9f5b4411b5081b49e645f424" + }, + { + "m_Id": "400d0b6c95dd4540ad3da3e8cb7e50b2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6ccaced3889e4503a9414d808ec33981", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "6dfc1177dd0541a7a780fbf911ad1956", + "m_Id": 0, + "m_DisplayName": "_OutlineTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6e13f3cd573c467a94379f45d96cb690", + "m_Id": 2, + "m_DisplayName": "SSR", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "6e532f83d1c44e839bcfc5845d3b01d6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "6e8946a245e842b38231d4a241bfb3ef", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BaseColor", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3026.0, + "y": -3110.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "ef0b93f78372439696f50711eaf57d90" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BaseColor" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6fbdcc5a972b4fa883dc5f21e525a376", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "70337a74f6ad4b7bb6befc825219bab1", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "703396865b6e4990a0cf1189ea684e5c", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "712da461f71a454db59d349f752d41ee", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "71dd947935b64ce38f0d25406dde447b", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "724e17584e97443e9e285dfa7253c8e3", + "m_Id": 0, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 2, + "m_Value": 0.15000000596046449, + "m_DefaultValue": 1.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "72fb5a0d7796446b9e2b929cb32facdc", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "7444469eb9884253819add9ef96baa25", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4298.0, + "y": -3809.99951171875, + "width": 144.66648864746095, + "height": 129.33323669433595 + } + }, + "m_Slots": [ + { + "m_Id": "03182b3263304258b265266325c21f65" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "748c31bbcecc4b30bec2e42c0612175b", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "74b41464cbed4e9e8e23af5ab9be40cf", + "m_Guid": { + "m_GuidSerialized": "41afbdcb-f3ae-4340-8973-1c1998c992a2" + }, + "m_Name": "Outline Offset 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "74cf69e61bef44589521f1bf2bf3c59a", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "7564379492aa4c5a927ff3501acdc70d", + "m_Id": 0, + "m_DisplayName": "Normal (Tangent Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalTS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 3 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "757174b6f25040fdbb20355a21752222", + "m_Id": 0, + "m_DisplayName": "Outline Offset 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "75aba700d74d4b2687bf3166cf1da3e2", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "75c5657544c648058b20cea090f48dbf", + "m_Id": 0, + "m_DisplayName": "_OutlineUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "767769f736d5478cba5f10a415e28e7f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "773b90134e894e429203c0c83e80b9de", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "77991fa631724e0cb32eed66ff017b23", + "m_Id": 0, + "m_DisplayName": "Metallic", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Metallic", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "77e28f3e930b4c249145630ec961af95", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "79147f6986644769b58d9ed64fe771e1", + "m_Id": 0, + "m_DisplayName": "OutlineMode", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7984fd094e1147bdabb4e26fbd3d31c8", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3113.000244140625, + "y": -3468.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "082e9706dffc4c188270980d4e44ce0f" + }, + { + "m_Id": "f2a351a5375c441b8d9ab7e2c9545a77" + }, + { + "m_Id": "41986ac6400d46709d0ef043a67f6b34" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "7a046f410ce64aa88438b0bfd412c045", + "m_Guid": { + "m_GuidSerialized": "d47271f5-5a84-47bf-a09e-c825d2aeb013" + }, + "m_Name": "Outline Color 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_551702C5", + "m_OverrideReferenceName": "_OutlineColor3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "7a0f504e4175406dbd8134250f4e350b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7a80e8839f0e4a1d9a6c0814f8793ee6", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4961.99951171875, + "y": -3452.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "6fbdcc5a972b4fa883dc5f21e525a376" + }, + { + "m_Id": "0ba4932e164847878ddb7b7bcff96985" + }, + { + "m_Id": "9178663316db43d582f1c4a127d307c6" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7acfafd73b8c4dfab8c55c18a887e087", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "7b8a19bd115e4167a25b59cb3218a817", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "7c27ccb2c2dc4ca59c5438c3358630ca", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget", + "m_ObjectId": "7cf0e63037a74dc2a9f591225c678ff4", + "m_ActiveSubTarget": { + "m_Id": "67bc2306558f4f2fa807637aaebaeab4" + }, + "m_Datas": [ + { + "m_Id": "00996039d61e400a9e854ce591ac35a0" + }, + { + "m_Id": "305e3be306674fcd8bb02273d27ee5b7" + }, + { + "m_Id": "6238ae56182d404f8563cb88cb801549" + }, + { + "m_Id": "a8c49a47cb934f7e8e4d88fce06df6ff" + } + ], + "m_CustomEditorGUI": "TMPro.EditorUtilities.TMP_SDF_HDRPLitShaderGUI", + "m_SupportVFX": false, + "m_SupportLineRendering": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7d7696aa6d184b4fb9c316a9dec37aee", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4959.0, + "y": -3326.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "4d1cb1a475df49f9a148195a65f5453a" + }, + { + "m_Id": "47d020251e9841a5b1f0fd64396026a1" + }, + { + "m_Id": "62bc551cea604e88b7858cc37d96a98a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7d78a616c2754cc28d1f32cf66ade611", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4005.0, + "y": -2797.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "d9bcb754db834583b6518c5ed5152114" + }, + { + "m_Id": "861d4258049a4a3e8164f7297090f88e" + }, + { + "m_Id": "a7c06457d7454693a8bc3dc95257b2c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "7e0fadb2533f496192c1ad3e78642010", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4188.0, + "width": 173.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d48c3871e3064027a10ae9f4babd3be0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "7f2e6b5f15364ed9835d67d0cf4f8f65", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Tangent", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2586.0, + "y": -3592.0, + "width": 200.0, + "height": 41.0 + } + }, + "m_Slots": [ + { + "m_Id": "85ff8667d72947edada4e9fb4ff60559" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Tangent" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7f3d71a6c96847c099da45f95aafbecb", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "7f7d8028b58d4227a4560891be6e7cda", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Occlusion", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "a00de0d572a84a08a23fe14c2ad5030d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Occlusion" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", + "m_ObjectId": "8036d0e6090b456e9b4ea87227868236", + "m_Id": 0, + "m_DisplayName": "Position", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Position", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "80e665a5eeb64730a51742f698bf0d48", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "8135ca333f8f4ea78163743e6ec1f55c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4081.999755859375, + "y": -3140.0, + "width": 156.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d6a6a119394e4082a11bc024a6e42ef8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "81bdb47901ef48e5a588c6724b1b0142", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "81e8ed0534534674a74263e6161a2a1a", + "m_Guid": { + "m_GuidSerialized": "78aab961-c4a8-41f3-b203-1239c3b33b13" + }, + "m_Name": "Underlay Dilate", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_D48690B9", + "m_OverrideReferenceName": "_UnderlayDilate", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "82af2db1018543d7832af96c1cfc981f", + "m_Guid": { + "m_GuidSerialized": "37906c7b-9a3a-454b-a62a-9aa097e64bde" + }, + "m_Name": "Light Angle", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_82af2db1018543d7832af96c1cfc981f", + "m_OverrideReferenceName": "_LightAngle", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 6.28000020980835 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "82d5443fe54d4a3b9420f8745d00a632", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": 8.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "84dc74cdbd8c45e1b189e4fd9a69942d", + "m_Id": 0, + "m_DisplayName": "Outline Offset 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "85a1ad8e741e41759002e8cdc8cd0b96", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "ScreenSpaceRatio (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5800.99951171875, + "y": -3363.0, + "width": 258.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "6e13f3cd573c467a94379f45d96cb690" + }, + { + "m_Id": "8e6ed600f6504f4083092f5b511e44c4" + }, + { + "m_Id": "93b161cce4504cb79c97b6d8db178de7" + }, + { + "m_Id": "2bf5f2fdd2984599b7323d10cfb1d240" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ScreenSpaceRatio", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "85b5940eb77e4625812ded7215bab8d7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4081.999755859375, + "y": -3096.0, + "width": 156.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ada023d617104472b8ab75a81558c0a1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot", + "m_ObjectId": "85ff8667d72947edada4e9fb4ff60559", + "m_Id": 0, + "m_DisplayName": "Tangent", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tangent", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "861d4258049a4a3e8164f7297090f88e", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "867a4ae13c0d4a028c71bc1063824c14", + "m_Guid": { + "m_GuidSerialized": "d483c212-0a30-4f6d-b94d-9abbc83a6522" + }, + "m_Name": "Outline Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_C68C9E14", + "m_OverrideReferenceName": "_IsoPerimeter", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 2, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "8695190a5e614f2d90081871a8a06fc2", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8764669016f6442f8152593c18a649d7", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "880bb02c6c6b49b18aa6ebc66dc566a0", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "88253223d2c34ecfab92b0c344048f94", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "ComputeSDF (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4323.0, + "width": 227.99998474121095, + "height": 190.0 + } + }, + "m_Slots": [ + { + "m_Id": "c52a1744a9a14989b0ae452ad6de6061" + }, + { + "m_Id": "a03db80c558b4f87a330c5ae0a9443a5" + }, + { + "m_Id": "8f1b1d1e8ff24b3284993e52354e54fa" + }, + { + "m_Id": "5da82bf481f8489ebd05e997f617f51b" + }, + { + "m_Id": "82d5443fe54d4a3b9420f8745d00a632" + }, + { + "m_Id": "61133d79a89048c195f54939b2a1d30a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8a08179f99d649d289b8053d5fa0ad22", + "m_Id": 0, + "m_DisplayName": "Underlay Offset", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8b66f4e6bc9d4662b3218ac33a69839f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8c38a5d8327f456e9783740c05382619", + "m_Id": 3, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8cbd81814903479ea1d3151c1f38183e", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "8cf8aae64c1d443f9303126886b40f17", + "m_Guid": { + "m_GuidSerialized": "8d78c9a5-aaef-41fb-af68-2358e401d7ac" + }, + "m_Name": "_UnderlayColor", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_2F5FE804", + "m_OverrideReferenceName": "_UnderlayColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8e6ed600f6504f4083092f5b511e44c4", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "8ed907a2cc7949b68a283ae243ea1977", + "m_Guid": { + "m_GuidSerialized": "36803443-a9bc-4f3c-a4f2-7d66a5417ac1" + }, + "m_Name": "Outline Offset 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8f1b1d1e8ff24b3284993e52354e54fa", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9147636b0cfa466a9b37a013d8f693bf", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5421.99951171875, + "y": -3902.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a4f471e3221c4134b291bd9d2ba22db6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "9178663316db43d582f1c4a127d307c6", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "91890fe48ebe4717aea61ecaf3ad4861", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2983.000244140625, + "y": -3468.0, + "width": 119.99999237060547, + "height": 149.0 + } + }, + "m_Slots": [ + { + "m_Id": "3dccd64e7f324bc1a75c1479d7a67c51" + }, + { + "m_Id": "e444f2c81d1e48329fa2c91005277e8d" + }, + { + "m_Id": "b2c26292b7434733878a9b042f44de89" + }, + { + "m_Id": "964fea1fd4b24f4daf5bef84c4b45118" + }, + { + "m_Id": "deac82280a2b43078e0e40863e2d974c" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "91d6a9a5fbc04ea49075cb51835e7264", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "928621a3ca2d41c89a10336bbbc81ddc", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "93b161cce4504cb79c97b6d8db178de7", + "m_Id": 3, + "m_DisplayName": "TextureSize", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureSize", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "945b45993dd84a979755b98c48138f72", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "952d0fa5cd744df0b434cd38e9a90b93", + "m_Guid": { + "m_GuidSerialized": "ce395871-ddeb-47c3-a31d-07855800c197" + }, + "m_Name": "_UnderlaySoftness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_F2B9E3EF", + "m_OverrideReferenceName": "_UnderlaySoftness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "95928bcb6a284b8d88105a84c2e1d3ce", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4793.0, + "y": -2593.0, + "width": 155.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d880558893fb442b9320cf55885d1117" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "964fea1fd4b24f4daf5bef84c4b45118", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "98934a69591249d5b8b92b39045359a3", + "m_Title": "Outline1 Texture", + "m_Position": { + "x": -4672.0, + "y": -2481.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "998db5e5901e45b29040eb2099370071", + "m_Guid": { + "m_GuidSerialized": "6f383614-f2ad-4269-be8f-87b0ecb03cf0" + }, + "m_Name": "Bevel Clamp", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_5BD7E808", + "m_OverrideReferenceName": "_BevelClamp", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "9c228fac287d446296b91a4acf5cec59", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4600.0, + "y": -3498.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "582d6e289dbe4fdca7cf0307273eaa2f" + }, + { + "m_Id": "1db37082bf844442804487b4944352de" + }, + { + "m_Id": "8b66f4e6bc9d4662b3218ac33a69839f" + }, + { + "m_Id": "4a66dcbe712a4d40bd8f355b834594b5" + }, + { + "m_Id": "a0285c9c381a49cba194709efa0a7c85" + }, + { + "m_Id": "b2728d0dd3ce40678867c94a7d977916" + }, + { + "m_Id": "e141833aa78b4fd59ecad949beb43a78" + }, + { + "m_Id": "51f76f8a53ad43a4ad028426548ce9ba" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9c26fdddba244d36a854298c00473247", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9d0c47172bf840a0ac029980ba082af7", + "m_Id": 0, + "m_DisplayName": "Smoothness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Smoothness", + "m_StageCapability": 2, + "m_Value": 0.5, + "m_DefaultValue": 0.5, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "9d3c3383d5934a17bf9efbb7fd9e9043", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5443.0, + "y": -3315.0, + "width": 144.99998474121095, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "232b1aa09e67479abae141d3c76d3c5b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e6e50a71d9843b49b62ebe1cf7d3d59", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4486.0, + "y": -3865.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "3535ae87c6dd4769b52b20d9eca61069" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e87ce9607e14015a3790c528ca5dfda", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4637.0, + "y": -2239.0, + "width": 167.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "75c5657544c648058b20cea090f48dbf" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "9eb8137a6c2e41bbafdc8b0732dd47a3", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "9eeec1a9713045af8845cea263d5ea48", + "m_Id": 6, + "m_DisplayName": "IsFront", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "IsFront", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "9f0de188085746d5a19073da1de85ddb", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4160.0, + "y": -2739.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "7c27ccb2c2dc4ca59c5438c3358630ca" + }, + { + "m_Id": "373f1de8db6c429c9d46c781f741d7a4" + }, + { + "m_Id": "fd0b096ed5b74f9e9ec51327be200731" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a00de0d572a84a08a23fe14c2ad5030d", + "m_Id": 0, + "m_DisplayName": "Ambient Occlusion", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Occlusion", + "m_StageCapability": 2, + "m_Value": 1.0, + "m_DefaultValue": 1.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a0285c9c381a49cba194709efa0a7c85", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a03db80c558b4f87a330c5ae0a9443a5", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "a3f8b6e8ae7f48e2989a029904401502", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "a455bd79094c4413a7b7dd80ca8b9368", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4611.0, + "y": -2691.0, + "width": 222.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "ffb07af0bca546d8b9bc439d34aa68f5" + }, + { + "m_Id": "2c7a9460724b47daad8df1be144de7c6" + }, + { + "m_Id": "55ffa45ec3654d5e88089fb40d2b0465" + }, + { + "m_Id": "e495a9f7a11f4eb89334e83be154ceb9" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateShaderProperty", + "m_ObjectId": "a4ad98d8828c424384229c344ebe2ed0", + "m_Guid": { + "m_GuidSerialized": "f98fc1a2-bb81-4bd1-a207-23d3a90d518e" + }, + "m_Name": "SamplerState", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "SamplerState_a4ad98d8828c424384229c344ebe2ed0", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": false, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_filter": 0, + "m_wrap": 1, + "m_anisotropic": 0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a4f471e3221c4134b291bd9d2ba22db6", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "a535f3bcbeb14622bb177eb6f46e76f4", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4647.0, + "y": -2283.0, + "width": 177.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "6dfc1177dd0541a7a780fbf911ad1956" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "a6bbb32e8d884be9bb36db91fe4b81b1", + "m_Guid": { + "m_GuidSerialized": "6aa76edf-7b80-46ac-add4-406cf1d85493" + }, + "m_Name": "_GradientScale", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_EAE27356", + "m_OverrideReferenceName": "_GradientScale", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 10.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "a6c38edd2e8743a9b057ba8452b9f129", + "m_Guid": { + "m_GuidSerialized": "9fc942ee-4a1d-4ced-a5a6-81893e3ddb63" + }, + "m_Name": "Light Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_a6c38edd2e8743a9b057ba8452b9f129", + "m_OverrideReferenceName": "_SpecularColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "a75f7ac601c446469802fe7754c1f279", + "m_Id": 0, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a7942746b5564dc7bbbae1deb2403022", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "a7c06457d7454693a8bc3dc95257b2c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.LightingData", + "m_ObjectId": "a8c49a47cb934f7e8e4d88fce06df6ff", + "m_NormalDropOffSpace": 0, + "m_BlendPreserveSpecular": true, + "m_ReceiveDecals": true, + "m_ReceiveSSR": true, + "m_ReceiveSSRTransparent": false, + "m_SpecularAA": false, + "m_SpecularOcclusionMode": 0, + "m_OverrideBakedGI": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "aa2794b8f0e24bf281d22e0fef0647be", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "aa3e347d733e48f7b65d8a8847370eec", + "m_Group": { + "m_Id": "" + }, + "m_Name": "EvaluateLight (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3631.0, + "y": -3810.0, + "width": 230.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "0699eea947fc426cbfeb8744cf120222" + }, + { + "m_Id": "0c4dc51f26484c26ad88a3fe4002abcd" + }, + { + "m_Id": "d5173cc3c6cd4f1998550f3187a3e9c8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "EvaluateLight", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aa87c72ac0e64469acc34f936f00b3d0", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4225.0, + "width": 193.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "0d7878dd226d4cfb81a991dc312309fc" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "abd59150589b436cadf8c9e6f43ccb8e", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "aca823a8188948c782eddaf0f45e1868", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalOS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2542.0, + "y": -3404.000244140625, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "e386b183a18245a796b024022f7f3074" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalOS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "acd0cd5a177f4a97bf23db7219305e3f", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4348.0, + "y": -3905.99951171875, + "width": 185.33299255371095, + "height": 101.33324432373047 + } + }, + "m_Slots": [ + { + "m_Id": "945b45993dd84a979755b98c48138f72" + }, + { + "m_Id": "e51a636b2621440eb94cc802c1cf4bfc" + }, + { + "m_Id": "1bdde3efd3b7464b8934c555be0f8a48" + }, + { + "m_Id": "e364823e158a407fb48dd7b630c79973" + }, + { + "m_Id": "703396865b6e4990a0cf1189ea684e5c" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ada023d617104472b8ab75a81558c0a1", + "m_Id": 0, + "m_DisplayName": "Outline Color 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aef5c44f84e04c3185e0b93e95e34204", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5264.99951171875, + "y": -3142.0, + "width": 159.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "84dc74cdbd8c45e1b189e4fd9a69942d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b000f852aa984e9dae25b125a4607f4e", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b015d1b7e4134c59baf6851e7649802c", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "b0b352c4503a43d083a64e57352b29a0", + "m_Guid": { + "m_GuidSerialized": "01cfcc78-60aa-4f71-a1e3-8d8df6dae253" + }, + "m_Name": "Reflectivity Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_b0b352c4503a43d083a64e57352b29a0", + "m_OverrideReferenceName": "_Reflectivity", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 5.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 5.0, + "y": 15.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "b1188549725543d485436c2e921ffbb2", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4146.0, + "y": -2833.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "281bcee4777040f8a31ee0e10344e98d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "b163c9f1666644b0bba62cf0e12df7bc", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4373.0, + "y": -2715.0, + "width": 180.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "cce40479b6284b6fa3174db9f09d0ac9" + }, + { + "m_Id": "80e665a5eeb64730a51742f698bf0d48" + }, + { + "m_Id": "1f46181633594ae0a1fb2adb76b42981" + }, + { + "m_Id": "8cbd81814903479ea1d3151c1f38183e" + }, + { + "m_Id": "cfaf3f3a5a1146e194cddad30c95aada" + }, + { + "m_Id": "b43489e37a5c4df88f15844292a55ec7" + }, + { + "m_Id": "cd7281fb41aa4e61ac0fdf71d4f4bd46" + }, + { + "m_Id": "f01d52cdcb1647aab35782b4af535efd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 1, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "b224a1cf80604103ad085c799995f3c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b2728d0dd3ce40678867c94a7d977916", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b2baf44eae52473cb6cda7b1debece01", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b2c26292b7434733878a9b042f44de89", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "b30617d78dec40a7b8aa7f72dca7f41d", + "m_Id": 0, + "m_DisplayName": "Bent Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BentNormal", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 3 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b42e6dbfbc864097af182cbff5c0c1fb", + "m_Id": 0, + "m_DisplayName": "Outline Color 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b43489e37a5c4df88f15844292a55ec7", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "b4a40cb6acd441acb83cfe0240bf910d", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4750.99951171875, + "y": -4274.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "d0b10e52e21941b183f5f635894c76c8" + }, + { + "m_Id": "0d6a57754b824f6db9cefa6953bc06a9" + }, + { + "m_Id": "773b90134e894e429203c0c83e80b9de" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "b4c4676c68bb4752af59e21f896d9470", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "b571db753a1948d5a6f1de4e7d0c7238", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5581.99951171875, + "y": -3867.0, + "width": 183.99998474121095, + "height": 100.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "5b3ff4ee364f4d7a923b530ad60d8762" + }, + { + "m_Id": "c183b5bd9bbe45089f93996e73110918" + }, + { + "m_Id": "1196ae398cc348349ab0c1a23fdab4bd" + }, + { + "m_Id": "183118ca50814141b7bc3e0cee27fb9b" + }, + { + "m_Id": "f44e4374a48a4996aa60d23d3ae1e9f9" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b691728a389a417d9b4f2d02541209c2", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b7f9ac55517141868bfb9d2ad6429792", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b85d677872b44421bf5536f42ba0267c", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b911c23b90124d15924551e2730501eb", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "bc782d8e80154073b48a687a07adf60a", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BentNormal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "b30617d78dec40a7b8aa7f72dca7f41d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BentNormal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "bc9afcb18afa4ccc82d2cdc34d3f4641", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -5392.0, + "y": -3867.0, + "width": 125.99999237060547, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "5e42524569844befad16fda5a94eb9cb" + }, + { + "m_Id": "54d7a93ffec5490aa4591da23a21b693" + }, + { + "m_Id": "aa2794b8f0e24bf281d22e0fef0647be" + }, + { + "m_Id": "200245fc8bbe4826b209ab5f7ffe074c" + }, + { + "m_Id": "fc2e62201c5847e798fd939314413fcd" + }, + { + "m_Id": "fe11fa80cc1847a5a37f6757d521cf25" + }, + { + "m_Id": "de0c6f7f7af94defa6c3dbc6433de9d4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "be58359e488f42e9b5121357d0fa526b", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Metallic", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "77991fa631724e0cb32eed66ff017b23" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Metallic" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c183b5bd9bbe45089f93996e73110918", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "c234e5216678436195ee1a5914bc79da", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4446.0, + "y": -2347.000244140625, + "width": 222.00001525878907, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "b4c4676c68bb4752af59e21f896d9470" + }, + { + "m_Id": "3db1608e927e4102a3c3a88e9fcab39a" + }, + { + "m_Id": "0f7ffb6d2de4447f9736780cbcee8e07" + }, + { + "m_Id": "d4954b7bbbb0412cbc997bcbe7dfa808" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "c35312edaa2344788b1964ee2f63a236", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "c3e6d7c20c184bf39fd8822130e693e7", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "c417006ffa034c44b79da3dd323165ff", + "m_Guid": { + "m_GuidSerialized": "7a28a011-205c-4fa8-bf4f-8064aa2308b2" + }, + "m_Name": "_ScaleRatioA", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "_ScaleRatioA", + "m_DefaultReferenceName": "_ScaleRatioA", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "c422a9a9ff824176aad2241f58c44d0b", + "m_Id": 0, + "m_DisplayName": "Outline Offset 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "c478c32c45884c57a62f7b2aa8ddc3b0", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c49cfb8bb96846dc87ee00c0c041a372", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c52a1744a9a14989b0ae452ad6de6061", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c6bdb985bc16435fa72f5a3c81bb633c", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c7d4094601ac4bc1aead609c72b1f1c1", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c7ddee91dc5b48dc828309c77fdb0b88", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4266.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a7942746b5564dc7bbbae1deb2403022" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "c88fcbaeea954a5f9c68c339fa8b604d", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c9b722d107ce4cd6a748c883472b9b0f", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c9d7f0dbae7d422985a1cc87c025e76b", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4315.0, + "y": -3165.0, + "width": 144.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "79147f6986644769b58d9ed64fe771e1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "c9ec735d1a1046769e5601b2c97c849a", + "m_Guid": { + "m_GuidSerialized": "281a9526-c332-4471-a44e-ece4a1e95ef6" + }, + "m_Name": "Face Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_75569DEA", + "m_OverrideReferenceName": "_FaceTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ca2a1083dc014f39ab8af0cdf140866b", + "m_Id": 0, + "m_DisplayName": "_FaceTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "cb3c0c3f08654b068bea44c4ffb15f4a", + "m_Guid": { + "m_GuidSerialized": "21009d12-8d94-4273-b0d0-a8ee0608ddcf" + }, + "m_Name": "OutlineMode", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_cb3c0c3f08654b068bea44c4ffb15f4a", + "m_OverrideReferenceName": "_OutlineMode", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cb5e9f9567e84f8fa5463efc0e256e19", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "cb7117ecb1d047a8b2cb00ed552cb181", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Alpha", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3032.66650390625, + "y": -3029.33349609375, + "width": 200.0, + "height": 41.33349609375 + } + }, + "m_Slots": [ + { + "m_Id": "724e17584e97443e9e285dfa7253c8e3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Alpha" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cc88101667c9488f9c5a716e851c1b21", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cce40479b6284b6fa3174db9f09d0ac9", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "cd7281fb41aa4e61ac0fdf71d4f4bd46", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cda5e3b4c1054bf3a65c0b7ec6bc778a", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "cdddee3a537c464697357f11b966f9b8", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4420.0, + "y": -4483.0, + "width": 156.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "41b9b79b3859472882bcea393703eec0" + }, + { + "m_Id": "c7d4094601ac4bc1aead609c72b1f1c1" + }, + { + "m_Id": "767769f736d5478cba5f10a415e28e7f" + }, + { + "m_Id": "b691728a389a417d9b4f2d02541209c2" + }, + { + "m_Id": "045c4f6b050549c7a0efb208e6349779" + }, + { + "m_Id": "509e6f38505b4b0695b263706a55028f" + }, + { + "m_Id": "204dacb5a95b424facf11cb6f65bd188" + }, + { + "m_Id": "35cbea6373dd4e4f8d0fea36e8add392" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "cfaf3f3a5a1146e194cddad30c95aada", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d0a791a544614667962a9a9a9ce0c68a", + "m_Title": "Screen Space Ratio", + "m_Position": { + "x": -6179.99951171875, + "y": -3422.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d0b10e52e21941b183f5f635894c76c8", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d1a17e42e7a04dc38984e3c01149445b", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d219977210094c0082c517d8dc00c8bb", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d258902c6ec74942afdb9ebf8c1d07f8", + "m_Title": "Generate Normal", + "m_Position": { + "x": -4511.33349609375, + "y": -3999.3330078125 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "d30452ac6b244ecca03df4d7b4de9f81", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d48c3871e3064027a10ae9f4babd3be0", + "m_Id": 0, + "m_DisplayName": "_UnderlaySoftness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d4954b7bbbb0412cbc997bcbe7dfa808", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "d4df208fc23b42f2b52364124f1b661c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5268.0, + "y": -3261.0, + "width": 159.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "757174b6f25040fdbb20355a21752222" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "d5173cc3c6cd4f1998550f3187a3e9c8", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d6a6a119394e4082a11bc024a6e42ef8", + "m_Id": 0, + "m_DisplayName": "Outline Color 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d880558893fb442b9320cf55885d1117", + "m_Id": 0, + "m_DisplayName": "_FaceUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d8edec16956c4f15b7d51d6ec10753f4", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d9bcb754db834583b6518c5ed5152114", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d9dc4839ee2847999110bdb234d6041a", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "da7a06d393a44089842070d51d2aa0a6", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "daaf032a109749a88c9b8ff8e1f8b541", + "m_Title": "Offset Scale", + "m_Position": { + "x": -5747.99951171875, + "y": -3961.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "dbcb748279484a4590e53518c49122b8", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4783.0, + "y": -2765.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "7a0f504e4175406dbd8134250f4e350b" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "dc75c4e3a1bc4bb0a128086c2b0679a5", + "m_Guid": { + "m_GuidSerialized": "85cd941f-2fd2-43a3-b0fa-9f728bfb4220" + }, + "m_Name": "Face Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_99AFBB3D", + "m_OverrideReferenceName": "_FaceColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "de0c6f7f7af94defa6c3dbc6433de9d4", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "deac82280a2b43078e0e40863e2d974c", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "def8e0b9d8384982bc5b4c32d877e458", + "m_Id": 0, + "m_DisplayName": "Outline Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "dff7a66b353a4023b29c9d937da77960", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4602.0, + "y": -4298.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "7b8a19bd115e4167a25b59cb3218a817" + }, + { + "m_Id": "0b57f2d35157477ab2b29a5aac14ae8b" + }, + { + "m_Id": "e9e06fcb161e44ba8cc9f6f60264df78" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "e141833aa78b4fd59ecad949beb43a78", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e2d28f29bbac4983a401574480b5ca28", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e364823e158a407fb48dd7b630c79973", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "e386b183a18245a796b024022f7f3074", + "m_Id": 0, + "m_DisplayName": "Normal (Object Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalOS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e444f2c81d1e48329fa2c91005277e8d", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "e495a9f7a11f4eb89334e83be154ceb9", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e51a636b2621440eb94cc802c1cf4bfc", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "e591df3a1eb94e259b762f2830b407e2", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Emission", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "4590bfa2a0664b65b6f073bae33a071f" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Emission" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e6e80c6b0db545cda26b079a9a78fbb3", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "e818605f8f5a4f01bf61caaa33693581", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "ComputeSDF44 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4144.0, + "y": -3369.0, + "width": 244.0, + "height": 214.0 + } + }, + "m_Slots": [ + { + "m_Id": "641eda269d7b4da9acb65f8d50035ea9" + }, + { + "m_Id": "f6823778a3cf42d5bbe8a83e5f9c9fa3" + }, + { + "m_Id": "9c26fdddba244d36a854298c00473247" + }, + { + "m_Id": "f684c5678e9e4f078157a3ab7ef5057b" + }, + { + "m_Id": "14ad19bf20a140dd88d58452d7df688b" + }, + { + "m_Id": "215a82c127204988b751de7d3a39b955" + }, + { + "m_Id": "c478c32c45884c57a62f7b2aa8ddc3b0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF44", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "e9e06fcb161e44ba8cc9f6f60264df78", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebbd94a7102a4457a48ac492de3bff14", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebd6d75abcb84108bcadbfe7ee5f6244", + "m_Id": 7, + "m_DisplayName": "TextureHeight", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureHeight", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "ec184d6d9fb2494897774c9e7d279e6d", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4803.0, + "y": -2627.0, + "width": 165.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ca2a1083dc014f39ab8af0cdf140866b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "07946387933e416db576b677f0711e5f" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "ec1f2e8bc9fd4ae38b133c60ee6c49b8", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4957.99951171875, + "y": -3204.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "748c31bbcecc4b30bec2e42c0612175b" + }, + { + "m_Id": "4bda5c294e1949138d033640e1d385b4" + }, + { + "m_Id": "4e64dac49ddc47c3b5b1e27b17a08304" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "ec79eb447dfd47a9b3380344c6a60f43", + "m_Guid": { + "m_GuidSerialized": "54c77f8b-0534-4b35-a3f0-83ab2ebe6c1f" + }, + "m_Name": "_OutlineTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1774DE83", + "m_OverrideReferenceName": "_OutlineTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "ecf16c34d46f4502ac601f0c38c7576b", + "m_Title": "Vertex Color", + "m_Position": { + "x": -3448.000244140625, + "y": -3579.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ed1d1f1613334c3bb904dd08161cd7e5", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ed6c215a65584deeaefad1d2c7743044", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "edbee7a8952b46529ac5ad0365775774", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "ef0b93f78372439696f50711eaf57d90", + "m_Id": 0, + "m_DisplayName": "Base Color", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BaseColor", + "m_StageCapability": 2, + "m_Value": { + "x": 0.7353569269180298, + "y": 0.7353569269180298, + "z": 0.7353569269180298 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_ColorMode": 0, + "m_DefaultColor": { + "r": 0.5, + "g": 0.5, + "b": 0.5, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "ef9738ec7e894772a14e9dce441c16c6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "f01d52cdcb1647aab35782b4af535efd", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "f23a8b2b7c85478388ff7a8c8a6de740", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Layer4 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3849.999755859375, + "y": -3286.0, + "width": 193.0, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "0fac35636fca4474a6afaefc3c757775" + }, + { + "m_Id": "cc88101667c9488f9c5a716e851c1b21" + }, + { + "m_Id": "68ec7c31365549d6a8ce883edfc02de2" + }, + { + "m_Id": "02559cbe5ad441a3904ccb75ded2b2c5" + }, + { + "m_Id": "34a67e0fef884f9399e674d9eeaf720c" + }, + { + "m_Id": "3802c81c3be24823aa1d7c9997a33c29" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer4", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "f2903158b3624759bca1fcd843698078", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 2.0, + "y": 2.0, + "z": 2.0, + "w": 2.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "f2a351a5375c441b8d9ab7e2c9545a77", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "f383b24f0bc6434dafe44b3e3d338a63", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6012.99951171875, + "y": -3209.0, + "width": 183.99998474121095, + "height": 100.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "fb5e1e2a67c14602808358686bb75091" + }, + { + "m_Id": "712da461f71a454db59d349f752d41ee" + }, + { + "m_Id": "b000f852aa984e9dae25b125a4607f4e" + }, + { + "m_Id": "b911c23b90124d15924551e2730501eb" + }, + { + "m_Id": "c49cfb8bb96846dc87ee00c0c041a372" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "f3d31c1f18d8491a8ecf5cbc37e4b7db", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4321.99951171875, + "y": -3246.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ed1d1f1613334c3bb904dd08161cd7e5" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f42ad06b3c6a45d3ab33de904c063412", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f44e4374a48a4996aa60d23d3ae1e9f9", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f48f04ad45d046a8b88e71731ed506e7", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "f4ecc442a2d246759f7c2c0412953d28", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Normal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "a3f8b6e8ae7f48e2989a029904401502" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Normal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "f5a8bfcec21a4dac9df63993ec53635e", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalTS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "7564379492aa4c5a927ff3501acdc70d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalTS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f6823778a3cf42d5bbe8a83e5f9c9fa3", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f684c5678e9e4f078157a3ab7ef5057b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": { + "x": 3.0, + "y": 2.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "f814deb543c24fbbafbcdb5071d96022", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4600.0, + "y": -3245.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "abd59150589b436cadf8c9e6f43ccb8e" + }, + { + "m_Id": "7acfafd73b8c4dfab8c55c18a887e087" + }, + { + "m_Id": "928621a3ca2d41c89a10336bbbc81ddc" + }, + { + "m_Id": "b7f9ac55517141868bfb9d2ad6429792" + }, + { + "m_Id": "09b1b86c1c074337a4c439d3a308dd2e" + }, + { + "m_Id": "1f247658c7ba45fb93c41f51e21acb0d" + }, + { + "m_Id": "d30452ac6b244ecca03df4d7b4de9f81" + }, + { + "m_Id": "215b30ae27784ec3a13360a9029af283" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f864c900600e427ba7793f00c715e971", + "m_Id": 0, + "m_DisplayName": "Outline Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fa6de3be9f5b4411b5081b49e645f424", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DivideNode", + "m_ObjectId": "faace8101df943d8956faa31728cb004", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Divide", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5254.99951171875, + "y": -3891.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "77e28f3e930b4c249145630ec961af95" + }, + { + "m_Id": "f2903158b3624759bca1fcd843698078" + }, + { + "m_Id": "30ca940fe2794c949f2a1d4d2caaa446" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "facc84930f544fd7a0205a6176b18ac0", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "fb15d0ba56d54a6192f11e107aeb5fa8", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "fb5e1e2a67c14602808358686bb75091", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "fc2e62201c5847e798fd939314413fcd", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fd0b096ed5b74f9e9ec51327be200731", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "fdb77c3e92ee497b88ca5dc46dc45350", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4208.0, + "y": -2371.0, + "width": 180.0, + "height": 180.0 + } + }, + "m_Slots": [ + { + "m_Id": "4328cdbf78b94c038fd614c59bfe1cac" + }, + { + "m_Id": "04dfcc9ff13a4bf282ed46faec39d15c" + }, + { + "m_Id": "71dd947935b64ce38f0d25406dde447b" + }, + { + "m_Id": "61a6ac5f29344d109411f26850ab0a96" + }, + { + "m_Id": "44806230fa384c1e95f9c5918a14f056" + }, + { + "m_Id": "4eb3c00a1ca44e10be833b7ca61ff059" + }, + { + "m_Id": "57abc172afd449e2a4d567f93432507b" + }, + { + "m_Id": "cda5e3b4c1054bf3a65c0b7ec6bc778a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "fe11fa80cc1847a5a37f6757d521cf25", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "ffb07af0bca546d8b9bc439d34aa68f5", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph.meta new file mode 100644 index 0000000..a445e27 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ca2ed216f98028c4dae6c5224a952b3c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph new file mode 100644 index 0000000..3118dd0 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph @@ -0,0 +1,11759 @@ +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.GraphData", + "m_ObjectId": "386c36a1c4c34ea29deb680fb82cfe8b", + "m_Properties": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "ced40c943add479a86f25f7fb5ed59da" + } + ], + "m_Keywords": [], + "m_Dropdowns": [], + "m_CategoryData": [ + { + "m_Id": "469965f1c9284b7eb032d415d6295b2c" + } + ], + "m_Nodes": [ + { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + }, + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + { + "m_Id": "e591df3a1eb94e259b762f2830b407e2" + } + ], + "m_GroupDatas": [ + { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + } + ], + "m_StickyNoteDatas": [], + "m_Edges": [ + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 5 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 7 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 6 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 1 + } + } + ], + "m_VertexContext": { + "m_Position": { + "x": -2506.000244140625, + "y": -3749.0 + }, + "m_Blocks": [ + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + } + ] + }, + "m_FragmentContext": { + "m_Position": { + "x": -2506.000244140625, + "y": -3480.0 + }, + "m_Blocks": [ + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "e591df3a1eb94e259b762f2830b407e2" + } + ] + }, + "m_PreviewData": { + "serializedMesh": { + "m_SerializedMesh": "{\"mesh\":{\"fileID\":10210,\"guid\":\"0000000000000000e000000000000000\",\"type\":0}}", + "m_Guid": "" + }, + "preventRotation": false + }, + "m_Path": "TextMeshPro/SRP", + "m_GraphPrecision": 0, + "m_PreviewMode": 2, + "m_OutputNode": { + "m_Id": "" + }, + "m_ActiveTargets": [ + { + "m_Id": "7cf0e63037a74dc2a9f591225c678ff4" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "007c75c776ac4f1babe9cd7ae1fc4f14", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5722.99951171875, + "y": -3827.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1356dc7cbdfa4199a6535d3bbf4cd536" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData", + "m_ObjectId": "00996039d61e400a9e854ce591ac35a0", + "m_Distortion": false, + "m_DistortionMode": 0, + "m_DistortionDepthTest": true, + "m_AddPrecomputedVelocity": false, + "m_TransparentWritesMotionVec": false, + "m_DepthOffset": false, + "m_ConservativeDepthOffset": false, + "m_TransparencyFog": true, + "m_AlphaTestShadow": false, + "m_BackThenFrontRendering": false, + "m_TransparentDepthPrepass": false, + "m_TransparentDepthPostpass": false, + "m_TransparentPerPixelSorting": false, + "m_SupportLodCrossFade": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "013228b0fdf1424097798f0973a9a4fb", + "m_Title": "Face Texture", + "m_Position": { + "x": -4824.0, + "y": -2949.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "02559cbe5ad441a3904ccb75ded2b2c5", + "m_Id": 5, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "03182b3263304258b265266325c21f65", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "045c4f6b050549c7a0efb208e6349779", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "04dc152dd2ba4d519391577eb1156235", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4534.0, + "y": -2747.0, + "width": 150.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "3d04f5ba6e7b40d281f22eb424145acd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "04dfcc9ff13a4bf282ed46faec39d15c", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "05805bc6fcc941fd889922555c6c86d7", + "m_Guid": { + "m_GuidSerialized": "fe84e680-4cee-4ca5-be86-2e293a9ba093" + }, + "m_Name": "Ambient Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_05805bc6fcc941fd889922555c6c86d7", + "m_OverrideReferenceName": "_Ambient", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "0580d4b7e3a049049569f4508643a724", + "m_Guid": { + "m_GuidSerialized": "eefb88c5-7665-45dc-b3c2-7cf98b9990d6" + }, + "m_Name": "Softness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_D64EC33D", + "m_OverrideReferenceName": "_Softness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "068ae649e00b40e198ec5a30ad741fab", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0699eea947fc426cbfeb8744cf120222", + "m_Id": 1, + "m_DisplayName": "Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "07946387933e416db576b677f0711e5f", + "m_Guid": { + "m_GuidSerialized": "21d612fb-8153-41f8-9e2f-9de044c19fbf" + }, + "m_Name": "_FaceTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1A08AD4A", + "m_OverrideReferenceName": "_FaceTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "082e9706dffc4c188270980d4e44ce0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0848ba750e0341198cf0bbd413e0efe4", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "09b1b86c1c074337a4c439d3a308dd2e", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0a67ca5280214bd794dc0ad66b5710a9", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0b57f2d35157477ab2b29a5aac14ae8b", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0ba4932e164847878ddb7b7bcff96985", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0c4dc51f26484c26ad88a3fe4002abcd", + "m_Id": 2, + "m_DisplayName": "Color (1)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0d6a57754b824f6db9cefa6953bc06a9", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0d7878dd226d4cfb81a991dc312309fc", + "m_Id": 0, + "m_DisplayName": "Underlay Dilate", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "0f7ffb6d2de4447f9736780cbcee8e07", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0fac35636fca4474a6afaefc3c757775", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "105b1ed1aa714e41bbe1ef5472bdb11f", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4923.99951171875, + "y": -4233.0, + "width": 158.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "8a08179f99d649d289b8053d5fa0ad22" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "109f638d1f9b49d4991d6d21a86d4eb7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5098.99951171875, + "y": -3182.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "880bb02c6c6b49b18aa6ebc66dc566a0" + }, + { + "m_Id": "1b9cd8f5f4004e2eaf8afbaab803bc04" + }, + { + "m_Id": "b224a1cf80604103ad085c799995f3c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "10a99c07aad742349d258db16838c129", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1196ae398cc348349ab0c1a23fdab4bd", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1356dc7cbdfa4199a6535d3bbf4cd536", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "14ad19bf20a140dd88d58452d7df688b", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 1.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "150533bad8e2424aaa2c74e253af8592", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4955.0, + "y": -3487.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "72fb5a0d7796446b9e2b929cb32facdc" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "163beb4431c34f538340bc0af0991e6f", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3284.0, + "y": -3516.0, + "width": 119.99999237060547, + "height": 149.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c334de01ecd429baa7652fc6002536b" + }, + { + "m_Id": "e2d28f29bbac4983a401574480b5ca28" + }, + { + "m_Id": "6a7af6143e114a538663e71f56731a21" + }, + { + "m_Id": "3e25be96bb3747738c238cf3a741d5df" + }, + { + "m_Id": "4907352322c644ebacdf2ca30f2994fd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "19075add867e4757b9520d18fe8de1d0", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4291.99951171875, + "y": -3197.0, + "width": 124.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c28ee9109014fa086e5de7a3993341d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "0580d4b7e3a049049569f4508643a724" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1b9cd8f5f4004e2eaf8afbaab803bc04", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1bdde3efd3b7464b8934c555be0f8a48", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "1be90d4f96a841748b0c95219b12ad27", + "m_Guid": { + "m_GuidSerialized": "4c91c146-43bb-4de8-948a-fbf8b1da10e1" + }, + "m_Name": "Bevel Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_97690701", + "m_OverrideReferenceName": "_BevelOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": -0.5, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "1c4df61c2fea404eb3b87b270d7c59bc", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4311.0, + "y": -3221.0, + "width": 148.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "f864c900600e427ba7793f00c715e971" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1d35fa1fb5004f96a65ace54fbe4f1ad", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1db37082bf844442804487b4944352de", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1df58cfa4dad4c449d01ee1c5ea05f2e", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "1e12726617b24675958e942eb62e4b09", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4772.0, + "y": -4404.0, + "width": 145.00001525878907, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "0848ba750e0341198cf0bbd413e0efe4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1f247658c7ba45fb93c41f51e21acb0d", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1f46181633594ae0a1fb2adb76b42981", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "200245fc8bbe4826b209ab5f7ffe074c", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "204dacb5a95b424facf11cb6f65bd188", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "215a82c127204988b751de7d3a39b955", + "m_Id": 6, + "m_DisplayName": "Outline", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Outline", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "215b30ae27784ec3a13360a9029af283", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "21a7a380e66d42e780e2a2a1baa630d5", + "m_Guid": { + "m_GuidSerialized": "b2d0099f-e605-49f5-9959-e7cacae37aa3" + }, + "m_Name": "Bevel Type", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_21a7a380e66d42e780e2a2a1baa630d5", + "m_OverrideReferenceName": "_BevelType", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e", + "m_Guid": { + "m_GuidSerialized": "cd167d3a-7465-4d5a-86fc-0f22dc0ef908" + }, + "m_Name": "Outline Color 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_5550EB71", + "m_OverrideReferenceName": "_OutlineColor1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "232b1aa09e67479abae141d3c76d3c5b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "256d41e89a204d22951450de1c38051d", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "26e48352a08441bfa694dcea54c06e36", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "281bcee4777040f8a31ee0e10344e98d", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "285f6a9863d54ed2a8150727ad749456", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4181.99951171875, + "y": -2415.0, + "width": 154.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "b42e6dbfbc864097af182cbff5c0c1fb" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitSubTarget", + "m_ObjectId": "29b1a6d4abc94131be838c0bc77892fc" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.IsFrontFaceNode", + "m_ObjectId": "2a552a0b828f457c911aa19561e410ae", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Is Front Face", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4282.0, + "y": -3681.3330078125, + "width": 121.99999237060547, + "height": 77.33348846435547 + } + }, + "m_Slots": [ + { + "m_Id": "2ef1d888dc9d49e59d6a6950897ddc93" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "2ac79705aa9e415dbb74ec215233fd1b", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Composite (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3350.0, + "y": -3810.0, + "width": 213.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "a75f7ac601c446469802fe7754c1f279" + }, + { + "m_Id": "8c38a5d8327f456e9783740c05382619" + }, + { + "m_Id": "facc84930f544fd7a0205a6176b18ac0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Composite", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2b01ea3023e34c94af1754e4dcea8f2e", + "m_Id": 0, + "m_DisplayName": "Face Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2bf5f2fdd2984599b7323d10cfb1d240", + "m_Id": 1, + "m_DisplayName": "Filter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Filter", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "2c10b97b92c947ceb307a93759c0228b", + "m_Guid": { + "m_GuidSerialized": "6be0b8ff-a766-4c6b-a6e4-3a72758ac95f" + }, + "m_Name": "Bevel Amount", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B01DD93E", + "m_OverrideReferenceName": "_BevelAmount", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.25, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2c7a9460724b47daad8df1be144de7c6", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "2d0a269511e34bd1ba9056d2c939dff2", + "m_Guid": { + "m_GuidSerialized": "edbe73dc-53ab-4bc1-9d64-ab36e0e05f03" + }, + "m_Name": "_FaceUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_3A8E0F13", + "m_OverrideReferenceName": "_FaceUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "2db15d90c2204143b225ec4ef08d0755", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4387.0, + "y": -2405.0, + "width": 163.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "def8e0b9d8384982bc5b4c32d877e458" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "2e4eb1ef08bb44178c82e53872485e0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2ef1d888dc9d49e59d6a6950897ddc93", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 2, + "m_Value": true, + "m_DefaultValue": true +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData", + "m_ObjectId": "305e3be306674fcd8bb02273d27ee5b7", + "m_MaterialNeedsUpdateHash": 1, + "m_SurfaceType": 1, + "m_RenderingPass": 4, + "m_BlendMode": 0, + "m_ZTest": 4, + "m_ZWrite": false, + "m_TransparentCullMode": 2, + "m_OpaqueCullMode": 2, + "m_SortPriority": 0, + "m_AlphaTest": true, + "m_TransparentDepthPrepass": false, + "m_TransparentDepthPostpass": false, + "m_SupportLodCrossFade": false, + "m_DoubleSidedMode": 0, + "m_DOTSInstancing": false, + "m_CustomVelocity": false, + "m_Tessellation": false, + "m_TessellationMode": 0, + "m_TessellationFactorMinDistance": 20.0, + "m_TessellationFactorMaxDistance": 50.0, + "m_TessellationFactorTriangleSize": 100.0, + "m_TessellationShapeFactor": 0.75, + "m_TessellationBackFaceCullEpsilon": -0.25, + "m_TessellationMaxDisplacement": 0.009999999776482582, + "m_DebugSymbols": false, + "m_Version": 2, + "inspectorFoldoutMask": 9 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "30ca940fe2794c949f2a1d4d2caaa446", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "319916a5921343f7b7eef0e50dc93def", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4791.0, + "y": -3245.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "d219977210094c0082c517d8dc00c8bb" + }, + { + "m_Id": "f48f04ad45d046a8b88e71731ed506e7" + }, + { + "m_Id": "e6e80c6b0db545cda26b079a9a78fbb3" + }, + { + "m_Id": "c6bdb985bc16435fa72f5a3c81bb633c" + }, + { + "m_Id": "d1a17e42e7a04dc38984e3c01149445b" + }, + { + "m_Id": "fb15d0ba56d54a6192f11e107aeb5fa8" + }, + { + "m_Id": "c35312edaa2344788b1964ee2f63a236" + }, + { + "m_Id": "c88fcbaeea954a5f9c68c339fa8b604d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "34a67e0fef884f9399e674d9eeaf720c", + "m_Id": 6, + "m_DisplayName": "Color3", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color3", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "34a72a5ebb04402384a4fd3748111a37", + "m_Id": 0, + "m_DisplayName": "Alpha Clip Threshold", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AlphaClipThreshold", + "m_StageCapability": 2, + "m_Value": 0.0010000000474974514, + "m_DefaultValue": 0.5, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3535ae87c6dd4769b52b20d9eca61069", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "35cbea6373dd4e4f8d0fea36e8add392", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "36a0c473c4c04c3a930dd38f3920d410", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "36f1b4d96f2941c39e5cd95d9c1d2ce6", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6008.99951171875, + "y": -3341.0, + "width": 144.99998474121095, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "65b3dc13b2b6484283ffe5abfe87a06a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "373f1de8db6c429c9d46c781f741d7a4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3802c81c3be24823aa1d7c9997a33c29", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "3915c1927ffe49f8967304321cfbe497", + "m_Id": 4, + "m_DisplayName": "Atlas", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Atlas", + "m_StageCapability": 3, + "m_BareResource": true, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "39a382d661e2484da71f04c43f48e55f", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "39f2f84f30304d859fb07569e2695f60", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3423.000244140625, + "y": -3516.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "4b2d9ea03bf64fa19dcae1511d2581da" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "3c50439118b2496f9e390021b0964606", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.AlphaClipThreshold", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3028.0, + "y": -3054.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "34a72a5ebb04402384a4fd3748111a37" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.AlphaClipThreshold" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3d04f5ba6e7b40d281f22eb424145acd", + "m_Id": 0, + "m_DisplayName": "Face Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3db1608e927e4102a3c3a88e9fcab39a", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "3dccd64e7f324bc1a75c1479d7a67c51", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "3e231021af7b47ba97f2871e7f25d0fe", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2803.000244140625, + "y": -3520.0, + "width": 140.0, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "6ccaced3889e4503a9414d808ec33981" + }, + { + "m_Id": "7f3d71a6c96847c099da45f95aafbecb" + }, + { + "m_Id": "d8edec16956c4f15b7d51d6ec10753f4" + }, + { + "m_Id": "39a382d661e2484da71f04c43f48e55f" + }, + { + "m_Id": "8764669016f6442f8152593c18a649d7" + }, + { + "m_Id": "26e48352a08441bfa694dcea54c06e36" + }, + { + "m_Id": "3e94a0d106064bdb864c960512ef4026" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3e25be96bb3747738c238cf3a741d5df", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "3e372195f4bd4845852a37839e5b602d", + "m_Guid": { + "m_GuidSerialized": "60abd046-2a1a-48cd-a0af-2f702f7f53ab" + }, + "m_Name": "_MainTex", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_90CBF488", + "m_OverrideReferenceName": "_MainTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":28684132378477856,\"guid\":\"8f586378b4e144a9851e7b34d9b748ee\",\"type\":2}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "3e94a0d106064bdb864c960512ef4026", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "3ec4797e381747829ef4712c85fcf7a1", + "m_Guid": { + "m_GuidSerialized": "020d65cc-50a8-4b8a-a624-90d7b489f549" + }, + "m_Name": "Specular Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_3ec4797e381747829ef4712c85fcf7a1", + "m_OverrideReferenceName": "_SpecularPower", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 1.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 4.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "3fdf4b7bc5d4426492dcc057603ef4a6", + "m_Guid": { + "m_GuidSerialized": "675d2567-3fca-4da6-9462-dfa4924950f1" + }, + "m_Name": "_OutlineUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_D66D89E6", + "m_OverrideReferenceName": "_OutlineUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "400d0b6c95dd4540ad3da3e8cb7e50b2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "41986ac6400d46709d0ef043a67f6b34", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "41b9b79b3859472882bcea393703eec0", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "424dbeeb009344efa29c304c4979e3d6", + "m_Guid": { + "m_GuidSerialized": "314c37de-c6f2-4463-866d-8588f6fc119e" + }, + "m_Name": "Diffuse Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_424dbeeb009344efa29c304c4979e3d6", + "m_OverrideReferenceName": "_Diffuse", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "42a586e4f6ec40eeaba891b7fd133864", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4934.0, + "y": -4442.99951171875, + "width": 133.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "da7a06d393a44089842070d51d2aa0a6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "42cadae0923e4969b50bbc3f78185934", + "m_Title": "Face + 3 Outlines + Underlay", + "m_Position": { + "x": -5468.0, + "y": -3558.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4328cdbf78b94c038fd614c59bfe1cac", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "44317f2e371447e2a8d894f8a021a235", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Layer1 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4001.0, + "y": -4168.0, + "width": 191.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "10a99c07aad742349d258db16838c129" + }, + { + "m_Id": "b85d677872b44421bf5536f42ba0267c" + }, + { + "m_Id": "75aba700d74d4b2687bf3166cf1da3e2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer1", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "44806230fa384c1e95f9c5918a14f056", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4488af8ff6a7421298a7e827f567263b", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4109.0, + "width": 158.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "66f69ef16eac4eb48357bde804cf3c39" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "4590bfa2a0664b65b6f073bae33a071f", + "m_Id": 0, + "m_DisplayName": "Emission", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Emission", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_ColorMode": 1, + "m_DefaultColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "4648b46ad29a4008a80de4f8a5a5b813", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4613.0, + "y": -2415.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "b2baf44eae52473cb6cda7b1debece01" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "469965f1c9284b7eb032d415d6295b2c", + "m_Name": "", + "m_ChildObjectList": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "ced40c943add479a86f25f7fb5ed59da" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "46fbf3eeb0ea4470869cba7443249295", + "m_Guid": { + "m_GuidSerialized": "be87c5a3-e361-4b95-89c8-911c39a51c0d" + }, + "m_Name": "Outline Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_A0B54237", + "m_OverrideReferenceName": "_OutlineTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "47d020251e9841a5b1f0fd64396026a1", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "48390d02257d41bf98eace1deaa4c539", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "8036d0e6090b456e9b4ea87227868236" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Position" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "484b51c50485473b819c4f05087b32d7", + "m_Title": "Underlay", + "m_Position": { + "x": -5253.0, + "y": -4542.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4907352322c644ebacdf2ca30f2994fd", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "49e7c3ad55ce458797f0e60c950cb965", + "m_Guid": { + "m_GuidSerialized": "31b55db9-0da1-4ec4-af2b-d83747ed5bc4" + }, + "m_Name": "Underlay Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_CE9DEDB3", + "m_OverrideReferenceName": "_UnderlayOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4a66dcbe712a4d40bd8f355b834594b5", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "4abff6ff92fa4a05b203f10580988335", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4323.99951171875, + "y": -3498.0, + "width": 140.0, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "b015d1b7e4134c59baf6851e7649802c" + }, + { + "m_Id": "d9dc4839ee2847999110bdb234d6041a" + }, + { + "m_Id": "91d6a9a5fbc04ea49075cb51835e7264" + }, + { + "m_Id": "f42ad06b3c6a45d3ab33de904c063412" + }, + { + "m_Id": "ed6c215a65584deeaefad1d2c7743044" + }, + { + "m_Id": "edbee7a8952b46529ac5ad0365775774" + }, + { + "m_Id": "70337a74f6ad4b7bb6befc825219bab1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4b2d9ea03bf64fa19dcae1511d2581da", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4bda5c294e1949138d033640e1d385b4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4c28ee9109014fa086e5de7a3993341d", + "m_Id": 0, + "m_DisplayName": "Softness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4c334de01ecd429baa7652fc6002536b", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4d1cb1a475df49f9a148195a65f5453a", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4d9ce48719d143748f9f8e22da6f9ddc", + "m_Id": 5, + "m_DisplayName": "TextureWidth", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureWidth", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4e64dac49ddc47c3b5b1e27b17a08304", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "4eb3c00a1ca44e10be833b7ca61ff059", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4f194ff591484e908fc2bcdacbcf2570", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4310.0, + "y": -2771.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "2b01ea3023e34c94af1754e4dcea8f2e" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "509e6f38505b4b0695b263706a55028f", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "51378bae98a94c309785d14cd5cbb453", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "GetSurfaceNormal (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4067.333251953125, + "y": -3881.99951171875, + "width": 263.9999694824219, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "5b0077c23eae443887872f84227deccc" + }, + { + "m_Id": "3915c1927ffe49f8967304321cfbe497" + }, + { + "m_Id": "4d9ce48719d143748f9f8e22da6f9ddc" + }, + { + "m_Id": "ebd6d75abcb84108bcadbfe7ee5f6244" + }, + { + "m_Id": "ef9738ec7e894772a14e9dce441c16c6" + }, + { + "m_Id": "9eeec1a9713045af8845cea263d5ea48" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GetSurfaceNormal", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "51f76f8a53ad43a4ad028426548ce9ba", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "52798bdb86f6400e86489a7a368e9f8b", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6154.99951171875, + "y": -3169.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1df58cfa4dad4c449d01ee1c5ea05f2e" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "53073e5ea924459fa6681a4943e9f947", + "m_Guid": { + "m_GuidSerialized": "5fdac24e-2d58-4471-80ce-79c3ab9a2564" + }, + "m_Name": "Outline Color 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_DBAB5AEC", + "m_OverrideReferenceName": "_OutlineColor2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.009433984756469727, + "g": 0.02534518577158451, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "54d7a93ffec5490aa4591da23a21b693", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "55ffa45ec3654d5e88089fb40d2b0465", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "56c25395796e4d2fbe5c892d428d1620", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5102.99951171875, + "y": -3427.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "9eb8137a6c2e41bbafdc8b0732dd47a3" + }, + { + "m_Id": "36a0c473c4c04c3a930dd38f3920d410" + }, + { + "m_Id": "068ae649e00b40e198ec5a30ad741fab" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "57abc172afd449e2a4d567f93432507b", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "582d6e289dbe4fdca7cf0307273eaa2f", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "59bd90a849624124bae6464ee3669aa6", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4005.999755859375, + "y": -2395.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "2e4eb1ef08bb44178c82e53872485e0f" + }, + { + "m_Id": "8695190a5e614f2d90081871a8a06fc2" + }, + { + "m_Id": "81bdb47901ef48e5a588c6724b1b0142" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "5b0077c23eae443887872f84227deccc", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5b3ff4ee364f4d7a923b530ad60d8762", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5bd258837c514ff7ab0bf7027e762c18", + "m_Guid": { + "m_GuidSerialized": "2d8f3ee9-1307-4b58-a60d-526e86b07109" + }, + "m_Name": "Bevel Roundness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_AB6A015F", + "m_OverrideReferenceName": "_BevelRoundness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5da82bf481f8489ebd05e997f617f51b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": 4.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5e42524569844befad16fda5a94eb9cb", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5fbe253f3e444f2aa8ac717f9c856619", + "m_Guid": { + "m_GuidSerialized": "0a61c93f-6430-4aa6-af07-79bc3b411ccd" + }, + "m_Name": "Bevel Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B50BBFCC", + "m_OverrideReferenceName": "_BevelWidth", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.5, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61133d79a89048c195f54939b2a1d30a", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61a6ac5f29344d109411f26850ab0a96", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6271438664e74b3fbf723bd6a1f50f8b", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "62bc551cea604e88b7858cc37d96a98a", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "636180f6e0504f2baaa5cc086980cb47", + "m_Guid": { + "m_GuidSerialized": "c1223e37-093d-4d5a-b2b0-cd9cc3e4f88e" + }, + "m_Name": "Outline Offset 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_636180f6e0504f2baaa5cc086980cb47", + "m_OverrideReferenceName": "_OutlineOffset1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "63c7cd57fc3c45a9a97b514fdae32693", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5266.99951171875, + "y": -3387.0, + "width": 156.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "c422a9a9ff824176aad2241f58c44d0b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "641eda269d7b4da9acb65f8d50035ea9", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "65b3dc13b2b6484283ffe5abfe87a06a", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "65c8e64a7535466e933eed08a2f77532", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4791.0, + "y": -3499.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "256d41e89a204d22951450de1c38051d" + }, + { + "m_Id": "0a67ca5280214bd794dc0ad66b5710a9" + }, + { + "m_Id": "ebbd94a7102a4457a48ac492de3bff14" + }, + { + "m_Id": "6271438664e74b3fbf723bd6a1f50f8b" + }, + { + "m_Id": "c9b722d107ce4cd6a748c883472b9b0f" + }, + { + "m_Id": "74cf69e61bef44589521f1bf2bf3c59a" + }, + { + "m_Id": "6e532f83d1c44e839bcfc5845d3b01d6" + }, + { + "m_Id": "cb5e9f9567e84f8fa5463efc0e256e19" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "66f69ef16eac4eb48357bde804cf3c39", + "m_Id": 0, + "m_DisplayName": "_UnderlayColor", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "67a519f507384ff1861df5d8d5b486be", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4278.0, + "y": -3939.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "c3e6d7c20c184bf39fd8822130e693e7" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "68ec7c31365549d6a8ce883edfc02de2", + "m_Id": 4, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6a7af6143e114a538663e71f56731a21", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "6b2f65c1463f4f7bad16c54a95d2fe75", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5101.0, + "y": -3301.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "1d35fa1fb5004f96a65ace54fbe4f1ad" + }, + { + "m_Id": "fa6de3be9f5b4411b5081b49e645f424" + }, + { + "m_Id": "400d0b6c95dd4540ad3da3e8cb7e50b2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6ccaced3889e4503a9414d808ec33981", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "6dfc1177dd0541a7a780fbf911ad1956", + "m_Id": 0, + "m_DisplayName": "_OutlineTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6e13f3cd573c467a94379f45d96cb690", + "m_Id": 2, + "m_DisplayName": "SSR", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "6e532f83d1c44e839bcfc5845d3b01d6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "6e8946a245e842b38231d4a241bfb3ef", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BaseColor", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3026.0, + "y": -3110.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "ef0b93f78372439696f50711eaf57d90" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BaseColor" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6fbdcc5a972b4fa883dc5f21e525a376", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "70337a74f6ad4b7bb6befc825219bab1", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "712da461f71a454db59d349f752d41ee", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "71dd947935b64ce38f0d25406dde447b", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "724e17584e97443e9e285dfa7253c8e3", + "m_Id": 0, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 2, + "m_Value": 0.15000000596046449, + "m_DefaultValue": 1.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "72fb5a0d7796446b9e2b929cb32facdc", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "7444469eb9884253819add9ef96baa25", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4298.0, + "y": -3809.99951171875, + "width": 144.66648864746095, + "height": 129.33323669433595 + } + }, + "m_Slots": [ + { + "m_Id": "03182b3263304258b265266325c21f65" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "748c31bbcecc4b30bec2e42c0612175b", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "74b41464cbed4e9e8e23af5ab9be40cf", + "m_Guid": { + "m_GuidSerialized": "41afbdcb-f3ae-4340-8973-1c1998c992a2" + }, + "m_Name": "Outline Offset 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "74cf69e61bef44589521f1bf2bf3c59a", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "757174b6f25040fdbb20355a21752222", + "m_Id": 0, + "m_DisplayName": "Outline Offset 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "75aba700d74d4b2687bf3166cf1da3e2", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "75c5657544c648058b20cea090f48dbf", + "m_Id": 0, + "m_DisplayName": "_OutlineUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "767769f736d5478cba5f10a415e28e7f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "773b90134e894e429203c0c83e80b9de", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "77e28f3e930b4c249145630ec961af95", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitData", + "m_ObjectId": "77ebd01f5b3149ad810a5acbffc85921", + "m_EnableShadowMatte": false, + "m_DistortionOnly": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "79147f6986644769b58d9ed64fe771e1", + "m_Id": 0, + "m_DisplayName": "OutlineMode", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7984fd094e1147bdabb4e26fbd3d31c8", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3113.000244140625, + "y": -3468.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "082e9706dffc4c188270980d4e44ce0f" + }, + { + "m_Id": "f2a351a5375c441b8d9ab7e2c9545a77" + }, + { + "m_Id": "41986ac6400d46709d0ef043a67f6b34" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "7a046f410ce64aa88438b0bfd412c045", + "m_Guid": { + "m_GuidSerialized": "d47271f5-5a84-47bf-a09e-c825d2aeb013" + }, + "m_Name": "Outline Color 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_551702C5", + "m_OverrideReferenceName": "_OutlineColor3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "7a0f504e4175406dbd8134250f4e350b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7a80e8839f0e4a1d9a6c0814f8793ee6", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4961.99951171875, + "y": -3452.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "6fbdcc5a972b4fa883dc5f21e525a376" + }, + { + "m_Id": "0ba4932e164847878ddb7b7bcff96985" + }, + { + "m_Id": "9178663316db43d582f1c4a127d307c6" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7acfafd73b8c4dfab8c55c18a887e087", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7b3b88c5975841d6b6d5c3c5515055a0", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "7b8a19bd115e4167a25b59cb3218a817", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "7c27ccb2c2dc4ca59c5438c3358630ca", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget", + "m_ObjectId": "7cf0e63037a74dc2a9f591225c678ff4", + "m_ActiveSubTarget": { + "m_Id": "29b1a6d4abc94131be838c0bc77892fc" + }, + "m_Datas": [ + { + "m_Id": "00996039d61e400a9e854ce591ac35a0" + }, + { + "m_Id": "305e3be306674fcd8bb02273d27ee5b7" + }, + { + "m_Id": "77ebd01f5b3149ad810a5acbffc85921" + } + ], + "m_CustomEditorGUI": "TMPro.EditorUtilities.TMP_SDF_HDRPUnlitShaderGUI", + "m_SupportVFX": false, + "m_SupportLineRendering": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7d7696aa6d184b4fb9c316a9dec37aee", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4959.0, + "y": -3326.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "4d1cb1a475df49f9a148195a65f5453a" + }, + { + "m_Id": "47d020251e9841a5b1f0fd64396026a1" + }, + { + "m_Id": "62bc551cea604e88b7858cc37d96a98a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7d78a616c2754cc28d1f32cf66ade611", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4006.000244140625, + "y": -2795.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "d9bcb754db834583b6518c5ed5152114" + }, + { + "m_Id": "861d4258049a4a3e8164f7297090f88e" + }, + { + "m_Id": "a7c06457d7454693a8bc3dc95257b2c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "7e0fadb2533f496192c1ad3e78642010", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4188.0, + "width": 173.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d48c3871e3064027a10ae9f4babd3be0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "7f2e6b5f15364ed9835d67d0cf4f8f65", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Tangent", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2586.0, + "y": -3592.0, + "width": 200.0, + "height": 41.0 + } + }, + "m_Slots": [ + { + "m_Id": "85ff8667d72947edada4e9fb4ff60559" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Tangent" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7f3d71a6c96847c099da45f95aafbecb", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", + "m_ObjectId": "8036d0e6090b456e9b4ea87227868236", + "m_Id": 0, + "m_DisplayName": "Position", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Position", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "80e665a5eeb64730a51742f698bf0d48", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "8135ca333f8f4ea78163743e6ec1f55c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4081.999755859375, + "y": -3140.0, + "width": 156.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d6a6a119394e4082a11bc024a6e42ef8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "81bdb47901ef48e5a588c6724b1b0142", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "81e8ed0534534674a74263e6161a2a1a", + "m_Guid": { + "m_GuidSerialized": "78aab961-c4a8-41f3-b203-1239c3b33b13" + }, + "m_Name": "Underlay Dilate", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_D48690B9", + "m_OverrideReferenceName": "_UnderlayDilate", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "82af2db1018543d7832af96c1cfc981f", + "m_Guid": { + "m_GuidSerialized": "37906c7b-9a3a-454b-a62a-9aa097e64bde" + }, + "m_Name": "Light Angle", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_82af2db1018543d7832af96c1cfc981f", + "m_OverrideReferenceName": "_LightAngle", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 6.28000020980835 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "82d5443fe54d4a3b9420f8745d00a632", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": 8.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "84dc74cdbd8c45e1b189e4fd9a69942d", + "m_Id": 0, + "m_DisplayName": "Outline Offset 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "85a1ad8e741e41759002e8cdc8cd0b96", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "ScreenSpaceRatio (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5802.0, + "y": -3363.0, + "width": 258.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "6e13f3cd573c467a94379f45d96cb690" + }, + { + "m_Id": "8e6ed600f6504f4083092f5b511e44c4" + }, + { + "m_Id": "93b161cce4504cb79c97b6d8db178de7" + }, + { + "m_Id": "2bf5f2fdd2984599b7323d10cfb1d240" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ScreenSpaceRatio", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "85b5940eb77e4625812ded7215bab8d7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4081.999755859375, + "y": -3096.0, + "width": 156.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ada023d617104472b8ab75a81558c0a1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot", + "m_ObjectId": "85ff8667d72947edada4e9fb4ff60559", + "m_Id": 0, + "m_DisplayName": "Tangent", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tangent", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "861d4258049a4a3e8164f7297090f88e", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "867a4ae13c0d4a028c71bc1063824c14", + "m_Guid": { + "m_GuidSerialized": "d483c212-0a30-4f6d-b94d-9abbc83a6522" + }, + "m_Name": "Outline Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_C68C9E14", + "m_OverrideReferenceName": "_IsoPerimeter", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 2, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "8695190a5e614f2d90081871a8a06fc2", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8764669016f6442f8152593c18a649d7", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "880bb02c6c6b49b18aa6ebc66dc566a0", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "88253223d2c34ecfab92b0c344048f94", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "ComputeSDF (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4323.0, + "width": 227.99998474121095, + "height": 190.0 + } + }, + "m_Slots": [ + { + "m_Id": "c52a1744a9a14989b0ae452ad6de6061" + }, + { + "m_Id": "a03db80c558b4f87a330c5ae0a9443a5" + }, + { + "m_Id": "8f1b1d1e8ff24b3284993e52354e54fa" + }, + { + "m_Id": "5da82bf481f8489ebd05e997f617f51b" + }, + { + "m_Id": "82d5443fe54d4a3b9420f8745d00a632" + }, + { + "m_Id": "61133d79a89048c195f54939b2a1d30a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8a08179f99d649d289b8053d5fa0ad22", + "m_Id": 0, + "m_DisplayName": "Underlay Offset", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8a39319405ad44cb8b7aae71c41dcd01", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8b66f4e6bc9d4662b3218ac33a69839f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8c38a5d8327f456e9783740c05382619", + "m_Id": 3, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8cbd81814903479ea1d3151c1f38183e", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "8cf8aae64c1d443f9303126886b40f17", + "m_Guid": { + "m_GuidSerialized": "8d78c9a5-aaef-41fb-af68-2358e401d7ac" + }, + "m_Name": "_UnderlayColor", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_2F5FE804", + "m_OverrideReferenceName": "_UnderlayColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8e6ed600f6504f4083092f5b511e44c4", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "8ed907a2cc7949b68a283ae243ea1977", + "m_Guid": { + "m_GuidSerialized": "36803443-a9bc-4f3c-a4f2-7d66a5417ac1" + }, + "m_Name": "Outline Offset 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8f1b1d1e8ff24b3284993e52354e54fa", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9147636b0cfa466a9b37a013d8f693bf", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5421.99951171875, + "y": -3902.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a4f471e3221c4134b291bd9d2ba22db6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "9178663316db43d582f1c4a127d307c6", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "91890fe48ebe4717aea61ecaf3ad4861", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2983.000244140625, + "y": -3468.0, + "width": 119.99999237060547, + "height": 149.0 + } + }, + "m_Slots": [ + { + "m_Id": "3dccd64e7f324bc1a75c1479d7a67c51" + }, + { + "m_Id": "e444f2c81d1e48329fa2c91005277e8d" + }, + { + "m_Id": "b2c26292b7434733878a9b042f44de89" + }, + { + "m_Id": "964fea1fd4b24f4daf5bef84c4b45118" + }, + { + "m_Id": "deac82280a2b43078e0e40863e2d974c" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "91d6a9a5fbc04ea49075cb51835e7264", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "928621a3ca2d41c89a10336bbbc81ddc", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9327cb5f5e6b46f1bd79f91ef9dca3b7", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "93b161cce4504cb79c97b6d8db178de7", + "m_Id": 3, + "m_DisplayName": "TextureSize", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureSize", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "945b45993dd84a979755b98c48138f72", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "952d0fa5cd744df0b434cd38e9a90b93", + "m_Guid": { + "m_GuidSerialized": "ce395871-ddeb-47c3-a31d-07855800c197" + }, + "m_Name": "_UnderlaySoftness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_F2B9E3EF", + "m_OverrideReferenceName": "_UnderlaySoftness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "95928bcb6a284b8d88105a84c2e1d3ce", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4788.0, + "y": -2591.0, + "width": 155.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d880558893fb442b9320cf55885d1117" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "964fea1fd4b24f4daf5bef84c4b45118", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "98934a69591249d5b8b92b39045359a3", + "m_Title": "Outline1 Texture", + "m_Position": { + "x": -4670.00048828125, + "y": -2474.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "998db5e5901e45b29040eb2099370071", + "m_Guid": { + "m_GuidSerialized": "6f383614-f2ad-4269-be8f-87b0ecb03cf0" + }, + "m_Name": "Bevel Clamp", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_5BD7E808", + "m_OverrideReferenceName": "_BevelClamp", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "9c228fac287d446296b91a4acf5cec59", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4600.0, + "y": -3498.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "582d6e289dbe4fdca7cf0307273eaa2f" + }, + { + "m_Id": "1db37082bf844442804487b4944352de" + }, + { + "m_Id": "8b66f4e6bc9d4662b3218ac33a69839f" + }, + { + "m_Id": "4a66dcbe712a4d40bd8f355b834594b5" + }, + { + "m_Id": "a0285c9c381a49cba194709efa0a7c85" + }, + { + "m_Id": "b2728d0dd3ce40678867c94a7d977916" + }, + { + "m_Id": "e141833aa78b4fd59ecad949beb43a78" + }, + { + "m_Id": "51f76f8a53ad43a4ad028426548ce9ba" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9c26fdddba244d36a854298c00473247", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "9d3c3383d5934a17bf9efbb7fd9e9043", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5443.0, + "y": -3315.0, + "width": 144.99998474121095, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "232b1aa09e67479abae141d3c76d3c5b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e6e50a71d9843b49b62ebe1cf7d3d59", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4486.0, + "y": -3865.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "3535ae87c6dd4769b52b20d9eca61069" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e87ce9607e14015a3790c528ca5dfda", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4635.0, + "y": -2239.0, + "width": 167.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "75c5657544c648058b20cea090f48dbf" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "9eb8137a6c2e41bbafdc8b0732dd47a3", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "9eeec1a9713045af8845cea263d5ea48", + "m_Id": 6, + "m_DisplayName": "IsFront", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "IsFront", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "9f0de188085746d5a19073da1de85ddb", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4160.0, + "y": -2771.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "7c27ccb2c2dc4ca59c5438c3358630ca" + }, + { + "m_Id": "373f1de8db6c429c9d46c781f741d7a4" + }, + { + "m_Id": "fd0b096ed5b74f9e9ec51327be200731" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9f42c5a9bc2f45baa095a80e7b8b485a", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a0285c9c381a49cba194709efa0a7c85", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a03db80c558b4f87a330c5ae0a9443a5", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "a3f8b6e8ae7f48e2989a029904401502", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "a455bd79094c4413a7b7dd80ca8b9368", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4606.99951171875, + "y": -2689.0, + "width": 221.99998474121095, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "dcd51c93d3b64f05a938b3334f343654" + }, + { + "m_Id": "2c7a9460724b47daad8df1be144de7c6" + }, + { + "m_Id": "55ffa45ec3654d5e88089fb40d2b0465" + }, + { + "m_Id": "e495a9f7a11f4eb89334e83be154ceb9" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateShaderProperty", + "m_ObjectId": "a4ad98d8828c424384229c344ebe2ed0", + "m_Guid": { + "m_GuidSerialized": "f98fc1a2-bb81-4bd1-a207-23d3a90d518e" + }, + "m_Name": "SamplerState", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "SamplerState_a4ad98d8828c424384229c344ebe2ed0", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": false, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_filter": 0, + "m_wrap": 1, + "m_anisotropic": 0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a4f471e3221c4134b291bd9d2ba22db6", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "a535f3bcbeb14622bb177eb6f46e76f4", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4645.00048828125, + "y": -2285.0, + "width": 177.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "6dfc1177dd0541a7a780fbf911ad1956" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "a6bbb32e8d884be9bb36db91fe4b81b1", + "m_Guid": { + "m_GuidSerialized": "6aa76edf-7b80-46ac-add4-406cf1d85493" + }, + "m_Name": "_GradientScale", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_EAE27356", + "m_OverrideReferenceName": "_GradientScale", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 10.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "a6c38edd2e8743a9b057ba8452b9f129", + "m_Guid": { + "m_GuidSerialized": "9fc942ee-4a1d-4ced-a5a6-81893e3ddb63" + }, + "m_Name": "Light Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_a6c38edd2e8743a9b057ba8452b9f129", + "m_OverrideReferenceName": "_SpecularColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "a75f7ac601c446469802fe7754c1f279", + "m_Id": 0, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a7942746b5564dc7bbbae1deb2403022", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "a7c06457d7454693a8bc3dc95257b2c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "aa2794b8f0e24bf281d22e0fef0647be", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "aa3e347d733e48f7b65d8a8847370eec", + "m_Group": { + "m_Id": "" + }, + "m_Name": "EvaluateLight (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3631.0, + "y": -3810.0, + "width": 230.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "0699eea947fc426cbfeb8744cf120222" + }, + { + "m_Id": "0c4dc51f26484c26ad88a3fe4002abcd" + }, + { + "m_Id": "d5173cc3c6cd4f1998550f3187a3e9c8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "EvaluateLight", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aa87c72ac0e64469acc34f936f00b3d0", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4225.0, + "width": 193.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "0d7878dd226d4cfb81a991dc312309fc" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "abd59150589b436cadf8c9e6f43ccb8e", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "aca823a8188948c782eddaf0f45e1868", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalOS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2542.0, + "y": -3404.000244140625, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "e386b183a18245a796b024022f7f3074" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalOS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "acd0cd5a177f4a97bf23db7219305e3f", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4348.0, + "y": -3905.99951171875, + "width": 185.33299255371095, + "height": 101.33324432373047 + } + }, + "m_Slots": [ + { + "m_Id": "945b45993dd84a979755b98c48138f72" + }, + { + "m_Id": "e51a636b2621440eb94cc802c1cf4bfc" + }, + { + "m_Id": "1bdde3efd3b7464b8934c555be0f8a48" + }, + { + "m_Id": "f1fb18f75405424884a776bfd24e79e9" + }, + { + "m_Id": "9f42c5a9bc2f45baa095a80e7b8b485a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ada023d617104472b8ab75a81558c0a1", + "m_Id": 0, + "m_DisplayName": "Outline Color 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aef5c44f84e04c3185e0b93e95e34204", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5264.99951171875, + "y": -3142.0, + "width": 159.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "84dc74cdbd8c45e1b189e4fd9a69942d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b000f852aa984e9dae25b125a4607f4e", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b015d1b7e4134c59baf6851e7649802c", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "b0b352c4503a43d083a64e57352b29a0", + "m_Guid": { + "m_GuidSerialized": "01cfcc78-60aa-4f71-a1e3-8d8df6dae253" + }, + "m_Name": "Reflectivity Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_b0b352c4503a43d083a64e57352b29a0", + "m_OverrideReferenceName": "_Reflectivity", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 5.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 5.0, + "y": 15.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "b1188549725543d485436c2e921ffbb2", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4146.0, + "y": -2869.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "281bcee4777040f8a31ee0e10344e98d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "b163c9f1666644b0bba62cf0e12df7bc", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4367.0, + "y": -2713.0, + "width": 180.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "cce40479b6284b6fa3174db9f09d0ac9" + }, + { + "m_Id": "80e665a5eeb64730a51742f698bf0d48" + }, + { + "m_Id": "1f46181633594ae0a1fb2adb76b42981" + }, + { + "m_Id": "8cbd81814903479ea1d3151c1f38183e" + }, + { + "m_Id": "cfaf3f3a5a1146e194cddad30c95aada" + }, + { + "m_Id": "b43489e37a5c4df88f15844292a55ec7" + }, + { + "m_Id": "cd7281fb41aa4e61ac0fdf71d4f4bd46" + }, + { + "m_Id": "f01d52cdcb1647aab35782b4af535efd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 1, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "b224a1cf80604103ad085c799995f3c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b2728d0dd3ce40678867c94a7d977916", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b2baf44eae52473cb6cda7b1debece01", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b2c26292b7434733878a9b042f44de89", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b42e6dbfbc864097af182cbff5c0c1fb", + "m_Id": 0, + "m_DisplayName": "Outline Color 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b43489e37a5c4df88f15844292a55ec7", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "b4a40cb6acd441acb83cfe0240bf910d", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4750.99951171875, + "y": -4274.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "d0b10e52e21941b183f5f635894c76c8" + }, + { + "m_Id": "0d6a57754b824f6db9cefa6953bc06a9" + }, + { + "m_Id": "773b90134e894e429203c0c83e80b9de" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "b571db753a1948d5a6f1de4e7d0c7238", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5581.99951171875, + "y": -3867.0, + "width": 183.99998474121095, + "height": 100.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "5b3ff4ee364f4d7a923b530ad60d8762" + }, + { + "m_Id": "c183b5bd9bbe45089f93996e73110918" + }, + { + "m_Id": "1196ae398cc348349ab0c1a23fdab4bd" + }, + { + "m_Id": "9327cb5f5e6b46f1bd79f91ef9dca3b7" + }, + { + "m_Id": "d804b5a6c657409196addf2b39199a4f" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b691728a389a417d9b4f2d02541209c2", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b7f9ac55517141868bfb9d2ad6429792", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b85d677872b44421bf5536f42ba0267c", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "bc9afcb18afa4ccc82d2cdc34d3f4641", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -5392.0, + "y": -3867.0, + "width": 125.99999237060547, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "5e42524569844befad16fda5a94eb9cb" + }, + { + "m_Id": "54d7a93ffec5490aa4591da23a21b693" + }, + { + "m_Id": "aa2794b8f0e24bf281d22e0fef0647be" + }, + { + "m_Id": "200245fc8bbe4826b209ab5f7ffe074c" + }, + { + "m_Id": "fc2e62201c5847e798fd939314413fcd" + }, + { + "m_Id": "fe11fa80cc1847a5a37f6757d521cf25" + }, + { + "m_Id": "de0c6f7f7af94defa6c3dbc6433de9d4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c183b5bd9bbe45089f93996e73110918", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "c234e5216678436195ee1a5914bc79da", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4446.0, + "y": -2347.0, + "width": 222.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "f68d9dee5cbc43cdb355d8fadae602d3" + }, + { + "m_Id": "3db1608e927e4102a3c3a88e9fcab39a" + }, + { + "m_Id": "0f7ffb6d2de4447f9736780cbcee8e07" + }, + { + "m_Id": "d4954b7bbbb0412cbc997bcbe7dfa808" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "c35312edaa2344788b1964ee2f63a236", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "c3e6d7c20c184bf39fd8822130e693e7", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "c422a9a9ff824176aad2241f58c44d0b", + "m_Id": 0, + "m_DisplayName": "Outline Offset 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "c478c32c45884c57a62f7b2aa8ddc3b0", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c52a1744a9a14989b0ae452ad6de6061", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c6bdb985bc16435fa72f5a3c81bb633c", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c7d4094601ac4bc1aead609c72b1f1c1", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c7ddee91dc5b48dc828309c77fdb0b88", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4266.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a7942746b5564dc7bbbae1deb2403022" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "c88fcbaeea954a5f9c68c339fa8b604d", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c9b722d107ce4cd6a748c883472b9b0f", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c9d7f0dbae7d422985a1cc87c025e76b", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4315.0, + "y": -3165.0, + "width": 144.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "79147f6986644769b58d9ed64fe771e1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "c9ec735d1a1046769e5601b2c97c849a", + "m_Guid": { + "m_GuidSerialized": "281a9526-c332-4471-a44e-ece4a1e95ef6" + }, + "m_Name": "Face Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_75569DEA", + "m_OverrideReferenceName": "_FaceTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ca2a1083dc014f39ab8af0cdf140866b", + "m_Id": 0, + "m_DisplayName": "_FaceTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "cb3c0c3f08654b068bea44c4ffb15f4a", + "m_Guid": { + "m_GuidSerialized": "21009d12-8d94-4273-b0d0-a8ee0608ddcf" + }, + "m_Name": "OutlineMode", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_cb3c0c3f08654b068bea44c4ffb15f4a", + "m_OverrideReferenceName": "_OutlineMode", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cb5e9f9567e84f8fa5463efc0e256e19", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "cb7117ecb1d047a8b2cb00ed552cb181", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Alpha", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3032.66650390625, + "y": -3029.33349609375, + "width": 200.0, + "height": 41.33349609375 + } + }, + "m_Slots": [ + { + "m_Id": "724e17584e97443e9e285dfa7253c8e3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Alpha" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cc88101667c9488f9c5a716e851c1b21", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cce40479b6284b6fa3174db9f09d0ac9", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "cd7281fb41aa4e61ac0fdf71d4f4bd46", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cda5e3b4c1054bf3a65c0b7ec6bc778a", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "cdddee3a537c464697357f11b966f9b8", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4420.0, + "y": -4483.0, + "width": 156.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "41b9b79b3859472882bcea393703eec0" + }, + { + "m_Id": "c7d4094601ac4bc1aead609c72b1f1c1" + }, + { + "m_Id": "767769f736d5478cba5f10a415e28e7f" + }, + { + "m_Id": "b691728a389a417d9b4f2d02541209c2" + }, + { + "m_Id": "045c4f6b050549c7a0efb208e6349779" + }, + { + "m_Id": "509e6f38505b4b0695b263706a55028f" + }, + { + "m_Id": "204dacb5a95b424facf11cb6f65bd188" + }, + { + "m_Id": "35cbea6373dd4e4f8d0fea36e8add392" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "ced40c943add479a86f25f7fb5ed59da", + "m_Guid": { + "m_GuidSerialized": "af17e4ab-54fe-4482-a9c5-4e4bc9076517" + }, + "m_Name": "_ScaleRatioA", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "_ScaleRatioA", + "m_DefaultReferenceName": "_ScaleRatioA", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "cfaf3f3a5a1146e194cddad30c95aada", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d0a791a544614667962a9a9a9ce0c68a", + "m_Title": "Screen Space Ratio", + "m_Position": { + "x": -6179.99951171875, + "y": -3422.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d0b10e52e21941b183f5f635894c76c8", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d1a17e42e7a04dc38984e3c01149445b", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d219977210094c0082c517d8dc00c8bb", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d258902c6ec74942afdb9ebf8c1d07f8", + "m_Title": "Generate Normal", + "m_Position": { + "x": -4511.33349609375, + "y": -3999.3330078125 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "d30452ac6b244ecca03df4d7b4de9f81", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d48c3871e3064027a10ae9f4babd3be0", + "m_Id": 0, + "m_DisplayName": "_UnderlaySoftness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d4954b7bbbb0412cbc997bcbe7dfa808", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "d4df208fc23b42f2b52364124f1b661c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5268.0, + "y": -3261.0, + "width": 159.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "757174b6f25040fdbb20355a21752222" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "d5173cc3c6cd4f1998550f3187a3e9c8", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d6a6a119394e4082a11bc024a6e42ef8", + "m_Id": 0, + "m_DisplayName": "Outline Color 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d804b5a6c657409196addf2b39199a4f", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d880558893fb442b9320cf55885d1117", + "m_Id": 0, + "m_DisplayName": "_FaceUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d8edec16956c4f15b7d51d6ec10753f4", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d9bcb754db834583b6518c5ed5152114", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d9dc4839ee2847999110bdb234d6041a", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "da7a06d393a44089842070d51d2aa0a6", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "daaf032a109749a88c9b8ff8e1f8b541", + "m_Title": "Offset Scale", + "m_Position": { + "x": -5747.99951171875, + "y": -3961.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "dbcb748279484a4590e53518c49122b8", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4778.0, + "y": -2771.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "7a0f504e4175406dbd8134250f4e350b" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "dc75c4e3a1bc4bb0a128086c2b0679a5", + "m_Guid": { + "m_GuidSerialized": "85cd941f-2fd2-43a3-b0fa-9f728bfb4220" + }, + "m_Name": "Face Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_99AFBB3D", + "m_OverrideReferenceName": "_FaceColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "dcd51c93d3b64f05a938b3334f343654", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "de0c6f7f7af94defa6c3dbc6433de9d4", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "deac82280a2b43078e0e40863e2d974c", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "def8e0b9d8384982bc5b4c32d877e458", + "m_Id": 0, + "m_DisplayName": "Outline Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "dff7a66b353a4023b29c9d937da77960", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4602.0, + "y": -4298.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "7b8a19bd115e4167a25b59cb3218a817" + }, + { + "m_Id": "0b57f2d35157477ab2b29a5aac14ae8b" + }, + { + "m_Id": "e9e06fcb161e44ba8cc9f6f60264df78" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "e141833aa78b4fd59ecad949beb43a78", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e2d28f29bbac4983a401574480b5ca28", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "e386b183a18245a796b024022f7f3074", + "m_Id": 0, + "m_DisplayName": "Normal (Object Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalOS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e444f2c81d1e48329fa2c91005277e8d", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "e495a9f7a11f4eb89334e83be154ceb9", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e51a636b2621440eb94cc802c1cf4bfc", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "e591df3a1eb94e259b762f2830b407e2", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Emission", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "4590bfa2a0664b65b6f073bae33a071f" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Emission" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e6e80c6b0db545cda26b079a9a78fbb3", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "e818605f8f5a4f01bf61caaa33693581", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "ComputeSDF44 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4144.0, + "y": -3369.0, + "width": 244.0, + "height": 214.0 + } + }, + "m_Slots": [ + { + "m_Id": "641eda269d7b4da9acb65f8d50035ea9" + }, + { + "m_Id": "f6823778a3cf42d5bbe8a83e5f9c9fa3" + }, + { + "m_Id": "9c26fdddba244d36a854298c00473247" + }, + { + "m_Id": "f684c5678e9e4f078157a3ab7ef5057b" + }, + { + "m_Id": "14ad19bf20a140dd88d58452d7df688b" + }, + { + "m_Id": "215a82c127204988b751de7d3a39b955" + }, + { + "m_Id": "c478c32c45884c57a62f7b2aa8ddc3b0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF44", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "e9e06fcb161e44ba8cc9f6f60264df78", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebbd94a7102a4457a48ac492de3bff14", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebd6d75abcb84108bcadbfe7ee5f6244", + "m_Id": 7, + "m_DisplayName": "TextureHeight", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureHeight", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "ec184d6d9fb2494897774c9e7d279e6d", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4799.0, + "y": -2625.0, + "width": 165.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ca2a1083dc014f39ab8af0cdf140866b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "07946387933e416db576b677f0711e5f" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "ec1f2e8bc9fd4ae38b133c60ee6c49b8", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4957.99951171875, + "y": -3204.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "748c31bbcecc4b30bec2e42c0612175b" + }, + { + "m_Id": "4bda5c294e1949138d033640e1d385b4" + }, + { + "m_Id": "4e64dac49ddc47c3b5b1e27b17a08304" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "ec79eb447dfd47a9b3380344c6a60f43", + "m_Guid": { + "m_GuidSerialized": "54c77f8b-0534-4b35-a3f0-83ab2ebe6c1f" + }, + "m_Name": "_OutlineTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1774DE83", + "m_OverrideReferenceName": "_OutlineTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "ecf16c34d46f4502ac601f0c38c7576b", + "m_Title": "Vertex Color", + "m_Position": { + "x": -3448.000244140625, + "y": -3579.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ed1d1f1613334c3bb904dd08161cd7e5", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ed6c215a65584deeaefad1d2c7743044", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "edbee7a8952b46529ac5ad0365775774", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "ef0b93f78372439696f50711eaf57d90", + "m_Id": 0, + "m_DisplayName": "Base Color", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BaseColor", + "m_StageCapability": 2, + "m_Value": { + "x": 0.7353569269180298, + "y": 0.7353569269180298, + "z": 0.7353569269180298 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_ColorMode": 0, + "m_DefaultColor": { + "r": 0.5, + "g": 0.5, + "b": 0.5, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "ef9738ec7e894772a14e9dce441c16c6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "f01d52cdcb1647aab35782b4af535efd", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f1fb18f75405424884a776bfd24e79e9", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "f23a8b2b7c85478388ff7a8c8a6de740", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Layer4 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3849.999755859375, + "y": -3286.0, + "width": 193.0, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "0fac35636fca4474a6afaefc3c757775" + }, + { + "m_Id": "cc88101667c9488f9c5a716e851c1b21" + }, + { + "m_Id": "68ec7c31365549d6a8ce883edfc02de2" + }, + { + "m_Id": "02559cbe5ad441a3904ccb75ded2b2c5" + }, + { + "m_Id": "34a67e0fef884f9399e674d9eeaf720c" + }, + { + "m_Id": "3802c81c3be24823aa1d7c9997a33c29" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer4", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "f2903158b3624759bca1fcd843698078", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 2.0, + "y": 2.0, + "z": 2.0, + "w": 2.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "f2a351a5375c441b8d9ab7e2c9545a77", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "f383b24f0bc6434dafe44b3e3d338a63", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6012.99951171875, + "y": -3209.0, + "width": 183.99998474121095, + "height": 100.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "fb5e1e2a67c14602808358686bb75091" + }, + { + "m_Id": "712da461f71a454db59d349f752d41ee" + }, + { + "m_Id": "b000f852aa984e9dae25b125a4607f4e" + }, + { + "m_Id": "7b3b88c5975841d6b6d5c3c5515055a0" + }, + { + "m_Id": "8a39319405ad44cb8b7aae71c41dcd01" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "f3d31c1f18d8491a8ecf5cbc37e4b7db", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4321.99951171875, + "y": -3246.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ed1d1f1613334c3bb904dd08161cd7e5" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f42ad06b3c6a45d3ab33de904c063412", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f48f04ad45d046a8b88e71731ed506e7", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "f4ecc442a2d246759f7c2c0412953d28", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Normal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "a3f8b6e8ae7f48e2989a029904401502" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Normal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f6823778a3cf42d5bbe8a83e5f9c9fa3", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f684c5678e9e4f078157a3ab7ef5057b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": { + "x": 3.0, + "y": 2.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "f68d9dee5cbc43cdb355d8fadae602d3", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "f814deb543c24fbbafbcdb5071d96022", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4600.0, + "y": -3245.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "abd59150589b436cadf8c9e6f43ccb8e" + }, + { + "m_Id": "7acfafd73b8c4dfab8c55c18a887e087" + }, + { + "m_Id": "928621a3ca2d41c89a10336bbbc81ddc" + }, + { + "m_Id": "b7f9ac55517141868bfb9d2ad6429792" + }, + { + "m_Id": "09b1b86c1c074337a4c439d3a308dd2e" + }, + { + "m_Id": "1f247658c7ba45fb93c41f51e21acb0d" + }, + { + "m_Id": "d30452ac6b244ecca03df4d7b4de9f81" + }, + { + "m_Id": "215b30ae27784ec3a13360a9029af283" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f864c900600e427ba7793f00c715e971", + "m_Id": 0, + "m_DisplayName": "Outline Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fa6de3be9f5b4411b5081b49e645f424", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DivideNode", + "m_ObjectId": "faace8101df943d8956faa31728cb004", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Divide", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5254.99951171875, + "y": -3891.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "77e28f3e930b4c249145630ec961af95" + }, + { + "m_Id": "f2903158b3624759bca1fcd843698078" + }, + { + "m_Id": "30ca940fe2794c949f2a1d4d2caaa446" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "facc84930f544fd7a0205a6176b18ac0", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "fb15d0ba56d54a6192f11e107aeb5fa8", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "fb5e1e2a67c14602808358686bb75091", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "fc2e62201c5847e798fd939314413fcd", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fd0b096ed5b74f9e9ec51327be200731", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "fdb77c3e92ee497b88ca5dc46dc45350", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4208.0, + "y": -2371.0, + "width": 180.0, + "height": 180.0 + } + }, + "m_Slots": [ + { + "m_Id": "4328cdbf78b94c038fd614c59bfe1cac" + }, + { + "m_Id": "04dfcc9ff13a4bf282ed46faec39d15c" + }, + { + "m_Id": "71dd947935b64ce38f0d25406dde447b" + }, + { + "m_Id": "61a6ac5f29344d109411f26850ab0a96" + }, + { + "m_Id": "44806230fa384c1e95f9c5918a14f056" + }, + { + "m_Id": "4eb3c00a1ca44e10be833b7ca61ff059" + }, + { + "m_Id": "57abc172afd449e2a4d567f93432507b" + }, + { + "m_Id": "cda5e3b4c1054bf3a65c0b7ec6bc778a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "fe11fa80cc1847a5a37f6757d521cf25", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph.meta new file mode 100644 index 0000000..a2f732a --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f63d574838ccfb44f84acc05fed0af48 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader new file mode 100644 index 0000000..603df2c --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader @@ -0,0 +1,258 @@ +// Simplified SDF shader: +// - No Shading Option (bevel / bump / env map) +// - No Glow Option +// - Softness is applied on both side of the outline + +Shader "TextMeshPro/Mobile/Distance Field - Masking" { + +Properties { + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineWidth ("Outline Thickness", Range(0,1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _UnderlayColor ("Border Color", Color) = (0,0,0,.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = .5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5 + _ScaleX ("Scale X", float) = 1 + _ScaleY ("Scale Y", float) = 1 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + _MaskTex ("Mask Texture", 2D) = "white" {} + _MaskInverse ("Inverse", float) = 0 + _MaskEdgeColor ("Edge Color", Color) = (1,1,1,1) + _MaskEdgeSoftness ("Edge Softness", Range(0, 1)) = 0.01 + _MaskWipeControl ("Wipe Position", Range(0, 1)) = 0.5 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest [unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ OUTLINE_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + + struct vertex_t + { + float4 vertex : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t + { + float4 vertex : SV_POSITION; + fixed4 faceColor : COLOR; + fixed4 outlineColor : COLOR1; + float4 texcoord0 : TEXCOORD0; // Texture UV, Mask UV + half4 param : TEXCOORD1; // Scale(x), BiasIn(y), BiasOut(z), Bias(w) + half4 mask : TEXCOORD2; // Position in clip space(xy), Softness(zw) + + #if (UNDERLAY_ON | UNDERLAY_INNER) + float4 texcoord1 : TEXCOORD3; // Texture UV, alpha, reserved + half2 underlayParam : TEXCOORD4; // Scale(x), Bias(y) + #endif + }; + + float _MaskWipeControl; + float _MaskEdgeSoftness; + fixed4 _MaskEdgeColor; + bool _MaskInverse; + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + pixel_t VertShader(vertex_t input) + { + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if(UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + float layerScale = scale; + + scale /= 1 + (_OutlineSoftness * _ScaleRatioA * scale); + float bias = (0.5 - weight) * scale - 0.5; + float outline = _OutlineWidth * _ScaleRatioA * 0.5 * scale; + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + float opacity = input.color.a; + #if (UNDERLAY_ON | UNDERLAY_INNER) + opacity = 1.0; + #endif + + fixed4 faceColor = fixed4(input.color.rgb, opacity) * _FaceColor; + faceColor.rgb *= faceColor.a; + + fixed4 outlineColor = _OutlineColor; + outlineColor.a *= opacity; + outlineColor.rgb *= outlineColor.a; + outlineColor = lerp(faceColor, outlineColor, sqrt(min(1.0, (outline * 2)))); + + #if (UNDERLAY_ON | UNDERLAY_INNER) + + layerScale /= 1 + ((_UnderlaySoftness * _ScaleRatioC) * layerScale); + float layerBias = (.5 - weight) * layerScale - .5 - ((_UnderlayDilate * _ScaleRatioC) * .5 * layerScale); + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 layerOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + + // Structure for pixel shader + pixel_t output = { + vPosition, + faceColor, + outlineColor, + float4(input.texcoord0.x, input.texcoord0.y, maskUV.x, maskUV.y), + half4(scale, bias - outline, bias + outline, bias), + half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)), + #if (UNDERLAY_ON | UNDERLAY_INNER) + float4(input.texcoord0 + layerOffset, input.color.a, 0), + half2(layerScale, layerBias), + #endif + }; + + return output; + } + + + // PIXEL SHADER + fixed4 PixShader(pixel_t input) : SV_Target + { + half d = tex2D(_MainTex, input.texcoord0.xy).a * input.param.x; + half4 c = input.faceColor * saturate(d - input.param.w); + + #ifdef OUTLINE_ON + c = lerp(input.outlineColor, input.faceColor, saturate(d - input.param.z)); + c *= saturate(d - input.param.y); + #endif + + #if UNDERLAY_ON + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * saturate(d - input.underlayParam.y) * (1 - c.a); + #endif + + #if UNDERLAY_INNER + half sd = saturate(d - input.param.z); + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * (1 - saturate(d - input.underlayParam.y)) * sd * (1 - c.a); + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + //#if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + c *= m.x * m.y; + //#endif + + float a = abs(_MaskInverse - tex2D(_MaskTex, input.texcoord0.zw).a); + float t = a + (1 - _MaskWipeControl) * _MaskEdgeSoftness - _MaskWipeControl; + a = saturate(t / _MaskEdgeSoftness); + c.rgb = lerp(_MaskEdgeColor.rgb*c.a, c.rgb, a); + c *= a; + + #if (UNDERLAY_ON | UNDERLAY_INNER) + c *= input.texcoord1.z; + #endif + + #if UNITY_UI_ALPHACLIP + clip(c.a - 0.001); + #endif + + return c; + } + ENDCG + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta new file mode 100644 index 0000000..3cbdbbb --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: bc1ede39bf3643ee8e493720e4259791 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader new file mode 100644 index 0000000..3edca76 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader @@ -0,0 +1,252 @@ +// Simplified SDF shader: +// - No Shading Option (bevel / bump / env map) +// - No Glow Option +// - Softness is applied on both side of the outline + +Shader "TextMeshPro/Mobile/Distance Field Overlay" { + +Properties { + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineWidth ("Outline Thickness", Range(0,1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _UnderlayColor ("Border Color", Color) = (0,0,0,.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = .5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5 + _ScaleX ("Scale X", float) = 1 + _ScaleY ("Scale Y", float) = 1 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + Tags + { + "Queue"="Overlay" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest Always + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ OUTLINE_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + + struct vertex_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 vertex : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 vertex : SV_POSITION; + fixed4 faceColor : COLOR; + fixed4 outlineColor : COLOR1; + float4 texcoord0 : TEXCOORD0; // Texture UV, Mask UV + half4 param : TEXCOORD1; // Scale(x), BiasIn(y), BiasOut(z), Bias(w) + half4 mask : TEXCOORD2; // Position in clip space(xy), Softness(zw) + + #if (UNDERLAY_ON | UNDERLAY_INNER) + float4 texcoord1 : TEXCOORD3; // Texture UV, alpha, reserved + half2 underlayParam : TEXCOORD4; // Scale(x), Bias(y) + #endif + }; + + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input, output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if(UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + float layerScale = scale; + + scale /= 1 + (_OutlineSoftness * _ScaleRatioA * scale); + float bias = (0.5 - weight) * scale - 0.5; + float outline = _OutlineWidth * _ScaleRatioA * 0.5 * scale; + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + float opacity = input.color.a; + #if (UNDERLAY_ON | UNDERLAY_INNER) + opacity = 1.0; + #endif + + fixed4 faceColor = fixed4(input.color.rgb, opacity) * _FaceColor; + faceColor.rgb *= faceColor.a; + + fixed4 outlineColor = _OutlineColor; + outlineColor.a *= opacity; + outlineColor.rgb *= outlineColor.a; + outlineColor = lerp(faceColor, outlineColor, sqrt(min(1.0, (outline * 2)))); + + #if (UNDERLAY_ON | UNDERLAY_INNER) + layerScale /= 1 + ((_UnderlaySoftness * _ScaleRatioC) * layerScale); + float layerBias = (.5 - weight) * layerScale - .5 - ((_UnderlayDilate * _ScaleRatioC) * .5 * layerScale); + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 layerOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + // Populate structure for pixel shader + output.vertex = vPosition; + output.faceColor = faceColor; + output.outlineColor = outlineColor; + output.texcoord0 = float4(input.texcoord0.x, input.texcoord0.y, maskUV.x, maskUV.y); + output.param = half4(scale, bias - outline, bias + outline, bias); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + output.mask = half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + #if (UNDERLAY_ON || UNDERLAY_INNER) + output.texcoord1 = float4(input.texcoord0 + layerOffset, input.color.a, 0); + output.underlayParam = half2(layerScale, layerBias); + #endif + + return output; + } + + + // PIXEL SHADER + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + half d = tex2D(_MainTex, input.texcoord0.xy).a * input.param.x; + half4 c = input.faceColor * saturate(d - input.param.w); + + #ifdef OUTLINE_ON + c = lerp(input.outlineColor, input.faceColor, saturate(d - input.param.z)); + c *= saturate(d - input.param.y); + #endif + + #if UNDERLAY_ON + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * saturate(d - input.underlayParam.y) * (1 - c.a); + #endif + + #if UNDERLAY_INNER + half sd = saturate(d - input.param.z); + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * (1 - saturate(d - input.underlayParam.y)) * sd * (1 - c.a); + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + c *= m.x * m.y; + #endif + + #if (UNDERLAY_ON | UNDERLAY_INNER) + c *= input.texcoord1.z; + #endif + + #if UNITY_UI_ALPHACLIP + clip(c.a - 0.001); + #endif + + return c; + } + ENDCG + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta new file mode 100644 index 0000000..e6b149e --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a02a7d8c237544f1962732b55a9aebf1 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader new file mode 100644 index 0000000..43b317d --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader @@ -0,0 +1,106 @@ +// Simplified SDF shader: +// - No Shading Option (bevel / bump / env map) +// - No Glow Option +// - Softness is applied on both side of the outline + +Shader "TextMeshPro/Mobile/Distance Field SSD" { + +Properties { + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineWidth ("Outline Thickness", Range(0,1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _UnderlayColor ("Border Color", Color) = (0,0,0,.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = .5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5 + _ScaleX ("Scale X", float) = 1 + _ScaleY ("Scale Y", float) = 1 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + _MaskTex ("Mask Texture", 2D) = "white" {} + _MaskInverse ("Inverse", float) = 0 + _MaskEdgeColor ("Edge Color", Color) = (1,1,1,1) + _MaskEdgeSoftness ("Edge Softness", Range(0, 1)) = 0.01 + _MaskWipeControl ("Wipe Position", Range(0, 1)) = 0.5 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + Tags { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest [unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ OUTLINE_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + + #include "TMPro_Mobile.cginc" + + ENDCG + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta new file mode 100644 index 0000000..9b84c13 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: c8d12adcee749c344b8117cf7c7eb912 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader new file mode 100644 index 0000000..2c8e8da --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader @@ -0,0 +1,389 @@ +// Simplified SDF shader: +// - No Shading Option (bevel / bump / env map) +// - No Glow Option +// - Softness is applied on both side of the outline + +Shader "TextMeshPro/Mobile/Distance Field - 2 Pass" { + +Properties { + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineWidth ("Outline Thickness", Range(0,1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _UnderlayColor ("Border Color", Color) = (0,0,0,.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = .5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5 + _ScaleX ("Scale X", float) = 1 + _ScaleY ("Scale Y", float) = 1 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + + // Draw Outline and Underlay + Name "Outline" + + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest [unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ OUTLINE_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + + struct vertex_t { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 vertex : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 vertex : SV_POSITION; + fixed4 faceColor : COLOR; + fixed4 outlineColor : COLOR1; + float4 texcoord0 : TEXCOORD0; // Texture UV, Mask UV + half4 param : TEXCOORD1; // Scale(x), BiasIn(y), BiasOut(z), Bias(w) + half4 mask : TEXCOORD2; // Position in clip space(xy), Softness(zw) + #if (UNDERLAY_ON | UNDERLAY_INNER) + float4 texcoord1 : TEXCOORD3; // Texture UV, alpha, reserved + half2 underlayParam : TEXCOORD4; // Scale(x), Bias(y) + #endif + }; + + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input, output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + const float bold = step(input.texcoord0.w, 0); + + float4 vert = input.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if(UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + float layerScale = scale; + + scale /= 1 + (_OutlineSoftness * _ScaleRatioA * scale); + float bias = (0.5 - weight) * scale - 0.5; + const float outline = _OutlineWidth * _ScaleRatioA * 0.5 * scale; + + float opacity = input.color.a; + #if (UNDERLAY_ON | UNDERLAY_INNER) + opacity = 1.0; + #endif + + fixed4 faceColor = fixed4(input.color.rgb, opacity) * _FaceColor; + faceColor.rgb *= faceColor.a; + + fixed4 outlineColor = _OutlineColor; + outlineColor.a *= opacity; + outlineColor.rgb *= outlineColor.a; + //outlineColor = lerp(faceColor, outlineColor, sqrt(min(1.0, outline * 2))); + + #if (UNDERLAY_ON | UNDERLAY_INNER) + layerScale /= 1 + ((_UnderlaySoftness * _ScaleRatioC) * layerScale); + float layerBias = (.5 - weight) * layerScale - .5 - ((_UnderlayDilate * _ScaleRatioC) * .5 * layerScale); + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 layerOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + // Populate structure for pixel shader + output.vertex = vPosition; + output.faceColor = faceColor; + output.outlineColor = outlineColor; + output.texcoord0 = float4(input.texcoord0.x, input.texcoord0.y, maskUV.x, maskUV.y); + output.param = half4(scale, bias - outline, bias + outline, bias); + + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + output.mask = half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + #if (UNDERLAY_ON || UNDERLAY_INNER) + output.texcoord1 = float4(input.texcoord0 + layerOffset, input.color.a, 0); + output.underlayParam = half2(layerScale, layerBias); + #endif + + return output; + } + + + // PIXEL SHADER + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + half d = tex2D(_MainTex, input.texcoord0.xy).a * input.param.x; + half4 c = half4(0, 0, 0, 0); + + #if OUTLINE_ON + c = input.outlineColor * saturate(d - input.param.y); + #endif + + #if UNDERLAY_ON + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * saturate(d - input.underlayParam.y) * (1 - c.a); + #endif + + #if UNDERLAY_INNER + half sd = saturate(d - input.param.z); + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * (1 - saturate(d - input.underlayParam.y)) * sd * (1 - c.a); + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + c *= m.x * m.y; + #endif + + #if (UNDERLAY_ON | UNDERLAY_INNER) + c *= input.texcoord1.z; + #endif + + #if UNITY_UI_ALPHACLIP + clip(c.a - 0.001); + #endif + + return c; + } + ENDCG + } + + + // Draw face + Name "Face" + + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest [unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex VertShader + #pragma fragment PixShader + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + + struct vertex_t { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 vertex : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 vertex : SV_POSITION; + fixed4 faceColor : COLOR; + float4 texcoord0 : TEXCOORD0; // Texture UV, Mask UV + half2 param : TEXCOORD1; // Scale(x), BiasIn(y), BiasOut(z), Bias(w) + half4 mask : TEXCOORD2; // Position in clip space(xy), Softness(zw) + }; + + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input, output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + const float bold = step(input.texcoord0.w, 0); + + float4 vert = input.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if(UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + scale /= 1 + (_OutlineSoftness * _ScaleRatioA * scale); + float bias = (0.5 - weight) * scale - 0.5; + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + float opacity = input.color.a; + + fixed4 faceColor = fixed4(input.color.rgb, opacity) * _FaceColor; + faceColor.rgb *= faceColor.a; + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + // Populate structure for pixel shader + output.vertex = vPosition; + output.faceColor = faceColor; + output.texcoord0 = float4(input.texcoord0.x, input.texcoord0.y, maskUV.x, maskUV.y); + output.param = half2(scale, bias); + + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + output.mask = half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + + return output; + } + + + // PIXEL SHADER + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + half d = tex2D(_MainTex, input.texcoord0.xy).a * input.param.x; + half4 c = input.faceColor * saturate(d - input.param.y); + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + c *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(c.a - 0.001); + #endif + + return c; + } + ENDCG + } + +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader.meta new file mode 100644 index 0000000..75bd98d --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 0178fcb869bafef4690d177d31d17db8 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader new file mode 100644 index 0000000..b899d6e --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader @@ -0,0 +1,250 @@ +// Simplified SDF shader: +// - No Shading Option (bevel / bump / env map) +// - No Glow Option +// - Softness is applied on both side of the outline + +Shader "TextMeshPro/Mobile/Distance Field" { + +Properties { + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineWidth ("Outline Thickness", Range(0,1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _UnderlayColor ("Border Color", Color) = (0,0,0,.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = .5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5 + _ScaleX ("Scale X", float) = 1 + _ScaleY ("Scale Y", float) = 1 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest [unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma enable_d3d11_debug_symbols + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ OUTLINE_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + + struct vertex_t { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 vertex : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 vertex : SV_POSITION; + fixed4 faceColor : COLOR; + fixed4 outlineColor : COLOR1; + float4 texcoord0 : TEXCOORD0; // Texture UV, Mask UV + half4 param : TEXCOORD1; // Scale(x), BiasIn(y), BiasOut(z), Bias(w) + half4 mask : TEXCOORD2; // Position in clip space(xy), Softness(zw) + #if (UNDERLAY_ON | UNDERLAY_INNER) + float4 texcoord1 : TEXCOORD3; // Texture UV, alpha, reserved + half2 underlayParam : TEXCOORD4; // Scale(x), Bias(y) + #endif + }; + + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input, output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if(UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + float layerScale = scale; + + scale /= 1 + (_OutlineSoftness * _ScaleRatioA * scale); + float bias = (0.5 - weight) * scale - 0.5; + float outline = _OutlineWidth * _ScaleRatioA * 0.5 * scale; + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + float opacity = input.color.a; + #if (UNDERLAY_ON | UNDERLAY_INNER) + opacity = 1.0; + #endif + + fixed4 faceColor = fixed4(input.color.rgb, opacity) * _FaceColor; + faceColor.rgb *= faceColor.a; + + fixed4 outlineColor = _OutlineColor; + outlineColor.a *= opacity; + outlineColor.rgb *= outlineColor.a; + outlineColor = lerp(faceColor, outlineColor, sqrt(min(1.0, (outline * 2)))); + + #if (UNDERLAY_ON | UNDERLAY_INNER) + layerScale /= 1 + ((_UnderlaySoftness * _ScaleRatioC) * layerScale); + float layerBias = (.5 - weight) * layerScale - .5 - ((_UnderlayDilate * _ScaleRatioC) * .5 * layerScale); + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 layerOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + // Populate structure for pixel shader + output.vertex = vPosition; + output.faceColor = faceColor; + output.outlineColor = outlineColor; + output.texcoord0 = float4(input.texcoord0.x, input.texcoord0.y, maskUV.x, maskUV.y); + output.param = half4(scale, bias - outline, bias + outline, bias); + + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + output.mask = half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + #if (UNDERLAY_ON || UNDERLAY_INNER) + output.texcoord1 = float4(input.texcoord0 + layerOffset, input.color.a, 0); + output.underlayParam = half2(layerScale, layerBias); + #endif + + return output; + } + + + // PIXEL SHADER + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + half d = tex2D(_MainTex, input.texcoord0.xy).a * input.param.x; + half4 c = input.faceColor * saturate(d - input.param.w); + + #ifdef OUTLINE_ON + c = lerp(input.outlineColor, input.faceColor, saturate(d - input.param.z)); + c *= saturate(d - input.param.y); + #endif + + #if UNDERLAY_ON + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * saturate(d - input.underlayParam.y) * (1 - c.a); + #endif + + #if UNDERLAY_INNER + half sd = saturate(d - input.param.z); + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * (1 - saturate(d - input.underlayParam.y)) * sd * (1 - c.a); + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + c *= m.x * m.y; + #endif + + #if (UNDERLAY_ON | UNDERLAY_INNER) + c *= input.texcoord1.z; + #endif + + #if UNITY_UI_ALPHACLIP + clip(c.a - 0.001); + #endif + + return c; + } + ENDCG + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta new file mode 100644 index 0000000..2ac6e76 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: fe393ace9b354375a9cb14cdbbc28be4 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader new file mode 100644 index 0000000..68d0dfa --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader @@ -0,0 +1,139 @@ +// Simplified version of the SDF Surface shader : +// - No support for Bevel, Bump or envmap +// - Diffuse only lighting +// - Fully supports only 1 directional light. Other lights can affect it, but it will be per-vertex/SH. + +Shader "TextMeshPro/Mobile/Distance Field (Surface)" { + +Properties { + _FaceTex ("Fill Texture", 2D) = "white" {} + _FaceColor ("Fill Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineTex ("Outline Texture", 2D) = "white" {} + _OutlineWidth ("Outline Thickness", Range(0, 1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _GlowColor ("Color", Color) = (0, 1, 0, 0.5) + _GlowOffset ("Offset", Range(-1,1)) = 0 + _GlowInner ("Inner", Range(0,1)) = 0.05 + _GlowOuter ("Outer", Range(0,1)) = 0.05 + _GlowPower ("Falloff", Range(1, 0)) = 0.75 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = 0.5 + + // Should not be directly exposed to the user + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5.0 + _ScaleX ("Scale X", float) = 1.0 + _ScaleY ("Scale Y", float) = 1.0 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _CullMode ("Cull Mode", Float) = 0 + //_MaskCoord ("Mask Coords", vector) = (0,0,0,0) + //_MaskSoftness ("Mask Softness", float) = 0 +} + +SubShader { + + Tags { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + LOD 300 + Cull [_CullMode] + + CGPROGRAM + #pragma surface PixShader Lambert alpha:blend vertex:VertShader noforwardadd nolightmap nodirlightmap + #pragma target 3.0 + #pragma shader_feature __ GLOW_ON + + #include "TMPro_Properties.cginc" + #include "TMPro.cginc" + + half _FaceShininess; + half _OutlineShininess; + + struct Input + { + fixed4 color : COLOR; + float2 uv_MainTex; + float2 uv2_FaceTex; + float2 uv2_OutlineTex; + float2 param; // Weight, Scale + float3 viewDirEnv; + }; + + #include "TMPro_Surface.cginc" + + ENDCG + + // Pass to render object as a shadow caster + Pass + { + Name "Caster" + Tags { "LightMode" = "ShadowCaster" } + Offset 1, 1 + + Fog {Mode Off} + ZWrite On ZTest LEqual Cull Off + + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #pragma multi_compile_shadowcaster + #include "UnityCG.cginc" + + struct v2f + { + V2F_SHADOW_CASTER; + float2 uv : TEXCOORD1; + float2 uv2 : TEXCOORD3; + float alphaClip : TEXCOORD2; + }; + + uniform float4 _MainTex_ST; + uniform float4 _OutlineTex_ST; + float _OutlineWidth; + float _FaceDilate; + float _ScaleRatioA; + + v2f vert( appdata_base v ) + { + v2f o; + TRANSFER_SHADOW_CASTER(o) + o.uv = TRANSFORM_TEX(v.texcoord, _MainTex); + o.uv2 = TRANSFORM_TEX(v.texcoord, _OutlineTex); + o.alphaClip = o.alphaClip = (1.0 - _OutlineWidth * _ScaleRatioA - _FaceDilate * _ScaleRatioA) / 2; + return o; + } + + uniform sampler2D _MainTex; + + float4 frag(v2f i) : COLOR + { + fixed4 texcol = tex2D(_MainTex, i.uv).a; + clip(texcol.a - i.alphaClip); + SHADOW_CASTER_FRAGMENT(i) + } + ENDCG + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta new file mode 100644 index 0000000..bff8b7a --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 85187c2149c549c5b33f0cdb02836b17 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader new file mode 100644 index 0000000..281e60d --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader @@ -0,0 +1,159 @@ +Shader "TextMeshPro/Distance Field (Surface)" { + +Properties { + _FaceTex ("Fill Texture", 2D) = "white" {} + _FaceUVSpeedX ("Face UV Speed X", Range(-5, 5)) = 0.0 + _FaceUVSpeedY ("Face UV Speed Y", Range(-5, 5)) = 0.0 + _FaceColor ("Fill Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineTex ("Outline Texture", 2D) = "white" {} + _OutlineUVSpeedX ("Outline UV Speed X", Range(-5, 5)) = 0.0 + _OutlineUVSpeedY ("Outline UV Speed Y", Range(-5, 5)) = 0.0 + _OutlineWidth ("Outline Thickness", Range(0, 1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _Bevel ("Bevel", Range(0,1)) = 0.5 + _BevelOffset ("Bevel Offset", Range(-0.5,0.5)) = 0 + _BevelWidth ("Bevel Width", Range(-.5,0.5)) = 0 + _BevelClamp ("Bevel Clamp", Range(0,1)) = 0 + _BevelRoundness ("Bevel Roundness", Range(0,1)) = 0 + + _BumpMap ("Normalmap", 2D) = "bump" {} + _BumpOutline ("Bump Outline", Range(0,1)) = 0.5 + _BumpFace ("Bump Face", Range(0,1)) = 0.5 + + _ReflectFaceColor ("Face Color", Color) = (0,0,0,1) + _ReflectOutlineColor ("Outline Color", Color) = (0,0,0,1) + _Cube ("Reflection Cubemap", Cube) = "black" { /* TexGen CubeReflect */ } + _EnvMatrixRotation ("Texture Rotation", vector) = (0, 0, 0, 0) + _SpecColor ("Specular Color", Color) = (0,0,0,1) + + _FaceShininess ("Face Shininess", Range(0,1)) = 0 + _OutlineShininess ("Outline Shininess", Range(0,1)) = 0 + + _GlowColor ("Color", Color) = (0, 1, 0, 0.5) + _GlowOffset ("Offset", Range(-1,1)) = 0 + _GlowInner ("Inner", Range(0,1)) = 0.05 + _GlowOuter ("Outer", Range(0,1)) = 0.05 + _GlowPower ("Falloff", Range(1, 0)) = 0.75 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = 0.5 + + // Should not be directly exposed to the user + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5.0 + _ScaleX ("Scale X", float) = 1.0 + _ScaleY ("Scale Y", float) = 1.0 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _CullMode ("Cull Mode", Float) = 0 + //_MaskCoord ("Mask Coords", vector) = (0,0,0,0) + //_MaskSoftness ("Mask Softness", float) = 0 +} + +SubShader { + + Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" } + + LOD 300 + Cull [_CullMode] + + CGPROGRAM + #pragma surface PixShader BlinnPhong alpha:blend vertex:VertShader nolightmap nodirlightmap + #pragma target 3.0 + #pragma shader_feature __ GLOW_ON + #pragma glsl + + #include "TMPro_Properties.cginc" + #include "TMPro.cginc" + + half _FaceShininess; + half _OutlineShininess; + + struct Input + { + fixed4 color : COLOR; + float2 uv_MainTex; + float2 uv2_FaceTex; + float2 uv2_OutlineTex; + float2 param; // Weight, Scale + float3 viewDirEnv; + }; + + + #define BEVEL_ON 1 + #include "TMPro_Surface.cginc" + + ENDCG + + // Pass to render object as a shadow caster + Pass + { + Name "Caster" + Tags { "LightMode" = "ShadowCaster" } + Offset 1, 1 + + Fog {Mode Off} + ZWrite On + ZTest LEqual + Cull Off + + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #pragma multi_compile_shadowcaster + #include "UnityCG.cginc" + + struct v2f + { + V2F_SHADOW_CASTER; + float2 uv : TEXCOORD1; + float2 uv2 : TEXCOORD3; + float alphaClip : TEXCOORD2; + }; + + uniform float4 _MainTex_ST; + uniform float4 _OutlineTex_ST; + float _OutlineWidth; + float _FaceDilate; + float _ScaleRatioA; + + v2f vert( appdata_base v ) + { + v2f o; + TRANSFER_SHADOW_CASTER(o) + o.uv = TRANSFORM_TEX(v.texcoord, _MainTex); + o.uv2 = TRANSFORM_TEX(v.texcoord, _OutlineTex); + o.alphaClip = (1.0 - _OutlineWidth * _ScaleRatioA - _FaceDilate * _ScaleRatioA) / 2; + return o; + } + + uniform sampler2D _MainTex; + + float4 frag(v2f i) : COLOR + { + fixed4 texcol = tex2D(_MainTex, i.uv).a; + clip(texcol.a - i.alphaClip); + SHADOW_CASTER_FRAGMENT(i) + } + ENDCG + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} + diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta new file mode 100644 index 0000000..26e814c --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: f7ada0af4f174f0694ca6a487b8f543d +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph new file mode 100644 index 0000000..7922d39 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph @@ -0,0 +1,11932 @@ +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.GraphData", + "m_ObjectId": "386c36a1c4c34ea29deb680fb82cfe8b", + "m_Properties": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "59a09f50a7ca4cd3a0d248a0f3730b6a" + } + ], + "m_Keywords": [], + "m_Dropdowns": [], + "m_CategoryData": [ + { + "m_Id": "7c73ccc923e744b98f19148b971a6090" + } + ], + "m_Nodes": [ + { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + }, + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + { + "m_Id": "86e21b7b6b7a44238607e41b8a9fb9a4" + }, + { + "m_Id": "0c10df95ee1d4b0a8a00558af49ec45f" + }, + { + "m_Id": "e591df3a1eb94e259b762f2830b407e2" + }, + { + "m_Id": "83c51d5b2f7b4eb785248f419181cb87" + }, + { + "m_Id": "ad3e1d26f4404555a8dd29223caaf1ef" + } + ], + "m_GroupDatas": [ + { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + } + ], + "m_StickyNoteDatas": [], + "m_Edges": [ + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 5 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 7 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 6 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 1 + } + } + ], + "m_VertexContext": { + "m_Position": { + "x": -2506.000244140625, + "y": -3749.0 + }, + "m_Blocks": [ + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + } + ] + }, + "m_FragmentContext": { + "m_Position": { + "x": -2506.000244140625, + "y": -3480.0 + }, + "m_Blocks": [ + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "86e21b7b6b7a44238607e41b8a9fb9a4" + }, + { + "m_Id": "0c10df95ee1d4b0a8a00558af49ec45f" + }, + { + "m_Id": "e591df3a1eb94e259b762f2830b407e2" + }, + { + "m_Id": "83c51d5b2f7b4eb785248f419181cb87" + }, + { + "m_Id": "ad3e1d26f4404555a8dd29223caaf1ef" + } + ] + }, + "m_PreviewData": { + "serializedMesh": { + "m_SerializedMesh": "{\"mesh\":{\"fileID\":10210,\"guid\":\"0000000000000000e000000000000000\",\"type\":0}}", + "m_Guid": "" + }, + "preventRotation": false + }, + "m_Path": "TextMeshPro/SRP", + "m_GraphPrecision": 0, + "m_PreviewMode": 2, + "m_OutputNode": { + "m_Id": "" + }, + "m_ActiveTargets": [ + { + "m_Id": "94300469581b4924ac7dda496811d45d" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "007c75c776ac4f1babe9cd7ae1fc4f14", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5722.99951171875, + "y": -3827.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1356dc7cbdfa4199a6535d3bbf4cd536" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "013228b0fdf1424097798f0973a9a4fb", + "m_Title": "Face Texture", + "m_Position": { + "x": -4813.0, + "y": -2949.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "02559cbe5ad441a3904ccb75ded2b2c5", + "m_Id": 5, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "03182b3263304258b265266325c21f65", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "045c4f6b050549c7a0efb208e6349779", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "04dc152dd2ba4d519391577eb1156235", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4536.00048828125, + "y": -2723.000244140625, + "width": 151.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "3d04f5ba6e7b40d281f22eb424145acd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "04dfcc9ff13a4bf282ed46faec39d15c", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "05805bc6fcc941fd889922555c6c86d7", + "m_Guid": { + "m_GuidSerialized": "fe84e680-4cee-4ca5-be86-2e293a9ba093" + }, + "m_Name": "Ambient Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_05805bc6fcc941fd889922555c6c86d7", + "m_OverrideReferenceName": "_Ambient", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "0580d4b7e3a049049569f4508643a724", + "m_Guid": { + "m_GuidSerialized": "eefb88c5-7665-45dc-b3c2-7cf98b9990d6" + }, + "m_Name": "Softness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_D64EC33D", + "m_OverrideReferenceName": "_Softness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "068ae649e00b40e198ec5a30ad741fab", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0699eea947fc426cbfeb8744cf120222", + "m_Id": 1, + "m_DisplayName": "Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "07946387933e416db576b677f0711e5f", + "m_Guid": { + "m_GuidSerialized": "21d612fb-8153-41f8-9e2f-9de044c19fbf" + }, + "m_Name": "_FaceTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1A08AD4A", + "m_OverrideReferenceName": "_FaceTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 2.0, + "y": 2.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0801f576ce79452483b42e485405244d", + "m_Id": 0, + "m_DisplayName": "Smoothness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Smoothness", + "m_StageCapability": 2, + "m_Value": 0.5, + "m_DefaultValue": 0.5, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "082e9706dffc4c188270980d4e44ce0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0848ba750e0341198cf0bbd413e0efe4", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "09b1b86c1c074337a4c439d3a308dd2e", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0a67ca5280214bd794dc0ad66b5710a9", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0b57f2d35157477ab2b29a5aac14ae8b", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0ba4932e164847878ddb7b7bcff96985", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "0c10df95ee1d4b0a8a00558af49ec45f", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalTS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "a0206f980dc6455f84f5a8442838c726" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalTS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0c4dc51f26484c26ad88a3fe4002abcd", + "m_Id": 2, + "m_DisplayName": "Color (1)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0d6a57754b824f6db9cefa6953bc06a9", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0d7878dd226d4cfb81a991dc312309fc", + "m_Id": 0, + "m_DisplayName": "Underlay Dilate", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "0f7ffb6d2de4447f9736780cbcee8e07", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0fac35636fca4474a6afaefc3c757775", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "105b1ed1aa714e41bbe1ef5472bdb11f", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4923.99951171875, + "y": -4233.0, + "width": 158.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "8a08179f99d649d289b8053d5fa0ad22" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "109f638d1f9b49d4991d6d21a86d4eb7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5098.99951171875, + "y": -3182.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "880bb02c6c6b49b18aa6ebc66dc566a0" + }, + { + "m_Id": "1b9cd8f5f4004e2eaf8afbaab803bc04" + }, + { + "m_Id": "b224a1cf80604103ad085c799995f3c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "10a99c07aad742349d258db16838c129", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1196ae398cc348349ab0c1a23fdab4bd", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "129f271ebc77450994e18f0a30579bf5", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1356dc7cbdfa4199a6535d3bbf4cd536", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "14ad19bf20a140dd88d58452d7df688b", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 1.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "150533bad8e2424aaa2c74e253af8592", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4955.0, + "y": -3487.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "72fb5a0d7796446b9e2b929cb32facdc" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "163beb4431c34f538340bc0af0991e6f", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3284.0, + "y": -3516.0, + "width": 119.99999237060547, + "height": 149.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c334de01ecd429baa7652fc6002536b" + }, + { + "m_Id": "e2d28f29bbac4983a401574480b5ca28" + }, + { + "m_Id": "6a7af6143e114a538663e71f56731a21" + }, + { + "m_Id": "3e25be96bb3747738c238cf3a741d5df" + }, + { + "m_Id": "4907352322c644ebacdf2ca30f2994fd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "19075add867e4757b9520d18fe8de1d0", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4292.0, + "y": -3213.000244140625, + "width": 124.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c28ee9109014fa086e5de7a3993341d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "0580d4b7e3a049049569f4508643a724" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1b9cd8f5f4004e2eaf8afbaab803bc04", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1bdde3efd3b7464b8934c555be0f8a48", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "1be90d4f96a841748b0c95219b12ad27", + "m_Guid": { + "m_GuidSerialized": "4c91c146-43bb-4de8-948a-fbf8b1da10e1" + }, + "m_Name": "Bevel Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_97690701", + "m_OverrideReferenceName": "_BevelOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": -0.5, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "1c4df61c2fea404eb3b87b270d7c59bc", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4316.0, + "y": -3247.000244140625, + "width": 148.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "f864c900600e427ba7793f00c715e971" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1d35fa1fb5004f96a65ace54fbe4f1ad", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1db37082bf844442804487b4944352de", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1df58cfa4dad4c449d01ee1c5ea05f2e", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "1e12726617b24675958e942eb62e4b09", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4772.0, + "y": -4404.0, + "width": 145.00001525878907, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "0848ba750e0341198cf0bbd413e0efe4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1f247658c7ba45fb93c41f51e21acb0d", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1f46181633594ae0a1fb2adb76b42981", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "200245fc8bbe4826b209ab5f7ffe074c", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "204dacb5a95b424facf11cb6f65bd188", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "215a82c127204988b751de7d3a39b955", + "m_Id": 6, + "m_DisplayName": "Outline", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Outline", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "215b30ae27784ec3a13360a9029af283", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "21a7a380e66d42e780e2a2a1baa630d5", + "m_Guid": { + "m_GuidSerialized": "b2d0099f-e605-49f5-9959-e7cacae37aa3" + }, + "m_Name": "Bevel Type", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_21a7a380e66d42e780e2a2a1baa630d5", + "m_OverrideReferenceName": "_BevelType", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e", + "m_Guid": { + "m_GuidSerialized": "cd167d3a-7465-4d5a-86fc-0f22dc0ef908" + }, + "m_Name": "Outline Color 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_5550EB71", + "m_OverrideReferenceName": "_OutlineColor1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "232b1aa09e67479abae141d3c76d3c5b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "256d41e89a204d22951450de1c38051d", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "26e48352a08441bfa694dcea54c06e36", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "281bcee4777040f8a31ee0e10344e98d", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "285f6a9863d54ed2a8150727ad749456", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4181.99951171875, + "y": -2415.0, + "width": 154.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "b42e6dbfbc864097af182cbff5c0c1fb" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.IsFrontFaceNode", + "m_ObjectId": "2a552a0b828f457c911aa19561e410ae", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Is Front Face", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4282.0, + "y": -3681.3330078125, + "width": 121.99999237060547, + "height": 77.33348846435547 + } + }, + "m_Slots": [ + { + "m_Id": "2ef1d888dc9d49e59d6a6950897ddc93" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "2ac79705aa9e415dbb74ec215233fd1b", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Composite (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3350.0, + "y": -3810.0, + "width": 213.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "a75f7ac601c446469802fe7754c1f279" + }, + { + "m_Id": "8c38a5d8327f456e9783740c05382619" + }, + { + "m_Id": "facc84930f544fd7a0205a6176b18ac0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Composite", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2b01ea3023e34c94af1754e4dcea8f2e", + "m_Id": 0, + "m_DisplayName": "Face Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2bf5f2fdd2984599b7323d10cfb1d240", + "m_Id": 1, + "m_DisplayName": "Filter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Filter", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "2c10b97b92c947ceb307a93759c0228b", + "m_Guid": { + "m_GuidSerialized": "6be0b8ff-a766-4c6b-a6e4-3a72758ac95f" + }, + "m_Name": "Bevel Amount", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B01DD93E", + "m_OverrideReferenceName": "_BevelAmount", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2c7a9460724b47daad8df1be144de7c6", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "2d0a269511e34bd1ba9056d2c939dff2", + "m_Guid": { + "m_GuidSerialized": "edbe73dc-53ab-4bc1-9d64-ab36e0e05f03" + }, + "m_Name": "_FaceUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_3A8E0F13", + "m_OverrideReferenceName": "_FaceUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "2db15d90c2204143b225ec4ef08d0755", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4387.00048828125, + "y": -2381.0, + "width": 163.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "def8e0b9d8384982bc5b4c32d877e458" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "2e4eb1ef08bb44178c82e53872485e0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2ef1d888dc9d49e59d6a6950897ddc93", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 2, + "m_Value": true, + "m_DefaultValue": true +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "30ca940fe2794c949f2a1d4d2caaa446", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "319916a5921343f7b7eef0e50dc93def", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4791.0, + "y": -3245.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "d219977210094c0082c517d8dc00c8bb" + }, + { + "m_Id": "f48f04ad45d046a8b88e71731ed506e7" + }, + { + "m_Id": "e6e80c6b0db545cda26b079a9a78fbb3" + }, + { + "m_Id": "c6bdb985bc16435fa72f5a3c81bb633c" + }, + { + "m_Id": "d1a17e42e7a04dc38984e3c01149445b" + }, + { + "m_Id": "fb15d0ba56d54a6192f11e107aeb5fa8" + }, + { + "m_Id": "c35312edaa2344788b1964ee2f63a236" + }, + { + "m_Id": "c88fcbaeea954a5f9c68c339fa8b604d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "34a67e0fef884f9399e674d9eeaf720c", + "m_Id": 6, + "m_DisplayName": "Color3", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color3", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "34a72a5ebb04402384a4fd3748111a37", + "m_Id": 0, + "m_DisplayName": "Alpha Clip Threshold", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AlphaClipThreshold", + "m_StageCapability": 2, + "m_Value": 0.0010000000474974514, + "m_DefaultValue": 0.5, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3535ae87c6dd4769b52b20d9eca61069", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "35cbea6373dd4e4f8d0fea36e8add392", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "36a0c473c4c04c3a930dd38f3920d410", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "36f1b4d96f2941c39e5cd95d9c1d2ce6", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6008.99951171875, + "y": -3341.0, + "width": 144.99998474121095, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "65b3dc13b2b6484283ffe5abfe87a06a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "373f1de8db6c429c9d46c781f741d7a4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3802c81c3be24823aa1d7c9997a33c29", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "3915c1927ffe49f8967304321cfbe497", + "m_Id": 4, + "m_DisplayName": "Atlas", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Atlas", + "m_StageCapability": 3, + "m_BareResource": true, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "39a382d661e2484da71f04c43f48e55f", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "39f2f84f30304d859fb07569e2695f60", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3423.000244140625, + "y": -3516.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "4b2d9ea03bf64fa19dcae1511d2581da" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "3c50439118b2496f9e390021b0964606", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.AlphaClipThreshold", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3028.0, + "y": -3054.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "34a72a5ebb04402384a4fd3748111a37" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.AlphaClipThreshold" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3d04f5ba6e7b40d281f22eb424145acd", + "m_Id": 0, + "m_DisplayName": "Face Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3db1608e927e4102a3c3a88e9fcab39a", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "3dccd64e7f324bc1a75c1479d7a67c51", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "3e231021af7b47ba97f2871e7f25d0fe", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2803.000244140625, + "y": -3520.0, + "width": 140.0, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "6ccaced3889e4503a9414d808ec33981" + }, + { + "m_Id": "7f3d71a6c96847c099da45f95aafbecb" + }, + { + "m_Id": "d8edec16956c4f15b7d51d6ec10753f4" + }, + { + "m_Id": "39a382d661e2484da71f04c43f48e55f" + }, + { + "m_Id": "8764669016f6442f8152593c18a649d7" + }, + { + "m_Id": "26e48352a08441bfa694dcea54c06e36" + }, + { + "m_Id": "3e94a0d106064bdb864c960512ef4026" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3e25be96bb3747738c238cf3a741d5df", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "3e372195f4bd4845852a37839e5b602d", + "m_Guid": { + "m_GuidSerialized": "60abd046-2a1a-48cd-a0af-2f702f7f53ab" + }, + "m_Name": "_MainTex", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_90CBF488", + "m_OverrideReferenceName": "_MainTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":28684132378477856,\"guid\":\"8f586378b4e144a9851e7b34d9b748ee\",\"type\":2}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "3e94a0d106064bdb864c960512ef4026", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "3ec4797e381747829ef4712c85fcf7a1", + "m_Guid": { + "m_GuidSerialized": "020d65cc-50a8-4b8a-a624-90d7b489f549" + }, + "m_Name": "Specular Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_3ec4797e381747829ef4712c85fcf7a1", + "m_OverrideReferenceName": "_SpecularPower", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 4.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "3fdf4b7bc5d4426492dcc057603ef4a6", + "m_Guid": { + "m_GuidSerialized": "675d2567-3fca-4da6-9462-dfa4924950f1" + }, + "m_Name": "_OutlineUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_D66D89E6", + "m_OverrideReferenceName": "_OutlineUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3ffa095f304e42d2827aa230e2ae3887", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "400d0b6c95dd4540ad3da3e8cb7e50b2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "41986ac6400d46709d0ef043a67f6b34", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "41b9b79b3859472882bcea393703eec0", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "424dbeeb009344efa29c304c4979e3d6", + "m_Guid": { + "m_GuidSerialized": "314c37de-c6f2-4463-866d-8588f6fc119e" + }, + "m_Name": "Diffuse Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_424dbeeb009344efa29c304c4979e3d6", + "m_OverrideReferenceName": "_Diffuse", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "42a586e4f6ec40eeaba891b7fd133864", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4934.0, + "y": -4442.99951171875, + "width": 133.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "da7a06d393a44089842070d51d2aa0a6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "42cadae0923e4969b50bbc3f78185934", + "m_Title": "Face + 3 Outlines + Underlay", + "m_Position": { + "x": -5468.0, + "y": -3558.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4328cdbf78b94c038fd614c59bfe1cac", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "44317f2e371447e2a8d894f8a021a235", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Layer1 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4004.999755859375, + "y": -4173.0, + "width": 191.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "10a99c07aad742349d258db16838c129" + }, + { + "m_Id": "b85d677872b44421bf5536f42ba0267c" + }, + { + "m_Id": "75aba700d74d4b2687bf3166cf1da3e2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer1", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "44806230fa384c1e95f9c5918a14f056", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4488af8ff6a7421298a7e827f567263b", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4109.0, + "width": 158.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "66f69ef16eac4eb48357bde804cf3c39" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "4590bfa2a0664b65b6f073bae33a071f", + "m_Id": 0, + "m_DisplayName": "Emission", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Emission", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_ColorMode": 1, + "m_DefaultColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "4648b46ad29a4008a80de4f8a5a5b813", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4615.00048828125, + "y": -2415.000244140625, + "width": 145.0, + "height": 130.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "b2baf44eae52473cb6cda7b1debece01" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "46fbf3eeb0ea4470869cba7443249295", + "m_Guid": { + "m_GuidSerialized": "be87c5a3-e361-4b95-89c8-911c39a51c0d" + }, + "m_Name": "Outline Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_A0B54237", + "m_OverrideReferenceName": "_OutlineTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "47d020251e9841a5b1f0fd64396026a1", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "48390d02257d41bf98eace1deaa4c539", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "8036d0e6090b456e9b4ea87227868236" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Position" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "484b51c50485473b819c4f05087b32d7", + "m_Title": "Underlay", + "m_Position": { + "x": -5253.0, + "y": -4542.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4907352322c644ebacdf2ca30f2994fd", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "49e7c3ad55ce458797f0e60c950cb965", + "m_Guid": { + "m_GuidSerialized": "31b55db9-0da1-4ec4-af2b-d83747ed5bc4" + }, + "m_Name": "Underlay Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_CE9DEDB3", + "m_OverrideReferenceName": "_UnderlayOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4a66dcbe712a4d40bd8f355b834594b5", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "4abff6ff92fa4a05b203f10580988335", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4308.0, + "y": -3498.000244140625, + "width": 140.0, + "height": 166.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "b015d1b7e4134c59baf6851e7649802c" + }, + { + "m_Id": "d9dc4839ee2847999110bdb234d6041a" + }, + { + "m_Id": "91d6a9a5fbc04ea49075cb51835e7264" + }, + { + "m_Id": "f42ad06b3c6a45d3ab33de904c063412" + }, + { + "m_Id": "ed6c215a65584deeaefad1d2c7743044" + }, + { + "m_Id": "edbee7a8952b46529ac5ad0365775774" + }, + { + "m_Id": "70337a74f6ad4b7bb6befc825219bab1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4b2d9ea03bf64fa19dcae1511d2581da", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4bda5c294e1949138d033640e1d385b4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4c28ee9109014fa086e5de7a3993341d", + "m_Id": 0, + "m_DisplayName": "Softness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4c334de01ecd429baa7652fc6002536b", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4d1cb1a475df49f9a148195a65f5453a", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4d9ce48719d143748f9f8e22da6f9ddc", + "m_Id": 5, + "m_DisplayName": "TextureWidth", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureWidth", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4e64dac49ddc47c3b5b1e27b17a08304", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "4eb3c00a1ca44e10be833b7ca61ff059", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4f194ff591484e908fc2bcdacbcf2570", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4303.00048828125, + "y": -2771.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "2b01ea3023e34c94af1754e4dcea8f2e" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "509e6f38505b4b0695b263706a55028f", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "51378bae98a94c309785d14cd5cbb453", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "GetSurfaceNormal (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4067.333251953125, + "y": -3881.99951171875, + "width": 263.9999694824219, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "5b0077c23eae443887872f84227deccc" + }, + { + "m_Id": "3915c1927ffe49f8967304321cfbe497" + }, + { + "m_Id": "4d9ce48719d143748f9f8e22da6f9ddc" + }, + { + "m_Id": "ebd6d75abcb84108bcadbfe7ee5f6244" + }, + { + "m_Id": "ef9738ec7e894772a14e9dce441c16c6" + }, + { + "m_Id": "9eeec1a9713045af8845cea263d5ea48" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GetSurfaceNormal", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "51f76f8a53ad43a4ad028426548ce9ba", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "52798bdb86f6400e86489a7a368e9f8b", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6154.99951171875, + "y": -3169.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1df58cfa4dad4c449d01ee1c5ea05f2e" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "53073e5ea924459fa6681a4943e9f947", + "m_Guid": { + "m_GuidSerialized": "5fdac24e-2d58-4471-80ce-79c3ab9a2564" + }, + "m_Name": "Outline Color 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_DBAB5AEC", + "m_OverrideReferenceName": "_OutlineColor2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.009433984756469727, + "g": 0.02534518577158451, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "54d7a93ffec5490aa4591da23a21b693", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "55a3403c16184e63b4e78607a6a20cd8", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "55ffa45ec3654d5e88089fb40d2b0465", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "56c25395796e4d2fbe5c892d428d1620", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5102.99951171875, + "y": -3427.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "9eb8137a6c2e41bbafdc8b0732dd47a3" + }, + { + "m_Id": "36a0c473c4c04c3a930dd38f3920d410" + }, + { + "m_Id": "068ae649e00b40e198ec5a30ad741fab" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "57abc172afd449e2a4d567f93432507b", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "582d6e289dbe4fdca7cf0307273eaa2f", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "59a09f50a7ca4cd3a0d248a0f3730b6a", + "m_Guid": { + "m_GuidSerialized": "3f9e6596-fd53-48cc-96a5-4c4f0cfbb2ba" + }, + "m_Name": "_ScaleRatioA", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "_ScaleRatioA", + "m_DefaultReferenceName": "_ScaleRatioA", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "59bd90a849624124bae6464ee3669aa6", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4008.999755859375, + "y": -2394.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "2e4eb1ef08bb44178c82e53872485e0f" + }, + { + "m_Id": "8695190a5e614f2d90081871a8a06fc2" + }, + { + "m_Id": "81bdb47901ef48e5a588c6724b1b0142" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "5b0077c23eae443887872f84227deccc", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5b3ff4ee364f4d7a923b530ad60d8762", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5bd258837c514ff7ab0bf7027e762c18", + "m_Guid": { + "m_GuidSerialized": "2d8f3ee9-1307-4b58-a60d-526e86b07109" + }, + "m_Name": "Bevel Roundness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_AB6A015F", + "m_OverrideReferenceName": "_BevelRoundness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5da82bf481f8489ebd05e997f617f51b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": 4.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5e42524569844befad16fda5a94eb9cb", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5fbe253f3e444f2aa8ac717f9c856619", + "m_Guid": { + "m_GuidSerialized": "0a61c93f-6430-4aa6-af07-79bc3b411ccd" + }, + "m_Name": "Bevel Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B50BBFCC", + "m_OverrideReferenceName": "_BevelWidth", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.5, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61133d79a89048c195f54939b2a1d30a", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61a6ac5f29344d109411f26850ab0a96", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6271438664e74b3fbf723bd6a1f50f8b", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "62bc551cea604e88b7858cc37d96a98a", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "636180f6e0504f2baaa5cc086980cb47", + "m_Guid": { + "m_GuidSerialized": "c1223e37-093d-4d5a-b2b0-cd9cc3e4f88e" + }, + "m_Name": "Outline Offset 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_636180f6e0504f2baaa5cc086980cb47", + "m_OverrideReferenceName": "_OutlineOffset1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "63c7cd57fc3c45a9a97b514fdae32693", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5266.99951171875, + "y": -3387.0, + "width": 156.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "c422a9a9ff824176aad2241f58c44d0b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "641eda269d7b4da9acb65f8d50035ea9", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "65b3dc13b2b6484283ffe5abfe87a06a", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "65c8e64a7535466e933eed08a2f77532", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4791.0, + "y": -3499.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "256d41e89a204d22951450de1c38051d" + }, + { + "m_Id": "0a67ca5280214bd794dc0ad66b5710a9" + }, + { + "m_Id": "ebbd94a7102a4457a48ac492de3bff14" + }, + { + "m_Id": "6271438664e74b3fbf723bd6a1f50f8b" + }, + { + "m_Id": "c9b722d107ce4cd6a748c883472b9b0f" + }, + { + "m_Id": "74cf69e61bef44589521f1bf2bf3c59a" + }, + { + "m_Id": "6e532f83d1c44e839bcfc5845d3b01d6" + }, + { + "m_Id": "cb5e9f9567e84f8fa5463efc0e256e19" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "66f69ef16eac4eb48357bde804cf3c39", + "m_Id": 0, + "m_DisplayName": "_UnderlayColor", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "67a519f507384ff1861df5d8d5b486be", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4278.0, + "y": -3939.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "c3e6d7c20c184bf39fd8822130e693e7" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "68ec7c31365549d6a8ce883edfc02de2", + "m_Id": 4, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6a7af6143e114a538663e71f56731a21", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "6b2f65c1463f4f7bad16c54a95d2fe75", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5101.0, + "y": -3301.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "1d35fa1fb5004f96a65ace54fbe4f1ad" + }, + { + "m_Id": "fa6de3be9f5b4411b5081b49e645f424" + }, + { + "m_Id": "400d0b6c95dd4540ad3da3e8cb7e50b2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6ccaced3889e4503a9414d808ec33981", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "6dfc1177dd0541a7a780fbf911ad1956", + "m_Id": 0, + "m_DisplayName": "_OutlineTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6e13f3cd573c467a94379f45d96cb690", + "m_Id": 2, + "m_DisplayName": "SSR", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "6e532f83d1c44e839bcfc5845d3b01d6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "6e8946a245e842b38231d4a241bfb3ef", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BaseColor", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3026.0, + "y": -3110.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "ef0b93f78372439696f50711eaf57d90" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BaseColor" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6fbdcc5a972b4fa883dc5f21e525a376", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "7027aaab25924266a063a05df0aa39b3", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "70337a74f6ad4b7bb6befc825219bab1", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "712da461f71a454db59d349f752d41ee", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "71dd947935b64ce38f0d25406dde447b", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "724e17584e97443e9e285dfa7253c8e3", + "m_Id": 0, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 2, + "m_Value": 0.15000000596046449, + "m_DefaultValue": 1.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "72fb5a0d7796446b9e2b929cb32facdc", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "7444469eb9884253819add9ef96baa25", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4298.0, + "y": -3809.99951171875, + "width": 144.66648864746095, + "height": 129.33323669433595 + } + }, + "m_Slots": [ + { + "m_Id": "03182b3263304258b265266325c21f65" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "748c31bbcecc4b30bec2e42c0612175b", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "74b41464cbed4e9e8e23af5ab9be40cf", + "m_Guid": { + "m_GuidSerialized": "41afbdcb-f3ae-4340-8973-1c1998c992a2" + }, + "m_Name": "Outline Offset 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "74cf69e61bef44589521f1bf2bf3c59a", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "757174b6f25040fdbb20355a21752222", + "m_Id": 0, + "m_DisplayName": "Outline Offset 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "75aba700d74d4b2687bf3166cf1da3e2", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "75c5657544c648058b20cea090f48dbf", + "m_Id": 0, + "m_DisplayName": "_OutlineUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "767769f736d5478cba5f10a415e28e7f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "773b90134e894e429203c0c83e80b9de", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "77e28f3e930b4c249145630ec961af95", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "79147f6986644769b58d9ed64fe771e1", + "m_Id": 0, + "m_DisplayName": "OutlineMode", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7984fd094e1147bdabb4e26fbd3d31c8", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3113.000244140625, + "y": -3468.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "082e9706dffc4c188270980d4e44ce0f" + }, + { + "m_Id": "f2a351a5375c441b8d9ab7e2c9545a77" + }, + { + "m_Id": "41986ac6400d46709d0ef043a67f6b34" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "7a046f410ce64aa88438b0bfd412c045", + "m_Guid": { + "m_GuidSerialized": "d47271f5-5a84-47bf-a09e-c825d2aeb013" + }, + "m_Name": "Outline Color 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_551702C5", + "m_OverrideReferenceName": "_OutlineColor3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "7a0f504e4175406dbd8134250f4e350b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7a80e8839f0e4a1d9a6c0814f8793ee6", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4961.99951171875, + "y": -3452.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "6fbdcc5a972b4fa883dc5f21e525a376" + }, + { + "m_Id": "0ba4932e164847878ddb7b7bcff96985" + }, + { + "m_Id": "9178663316db43d582f1c4a127d307c6" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7acfafd73b8c4dfab8c55c18a887e087", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7b144a976914480baf430c0f6f7f4def", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "7b8a19bd115e4167a25b59cb3218a817", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "7c27ccb2c2dc4ca59c5438c3358630ca", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "7c73ccc923e744b98f19148b971a6090", + "m_Name": "", + "m_ChildObjectList": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "59a09f50a7ca4cd3a0d248a0f3730b6a" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7d7696aa6d184b4fb9c316a9dec37aee", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4959.0, + "y": -3326.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "4d1cb1a475df49f9a148195a65f5453a" + }, + { + "m_Id": "47d020251e9841a5b1f0fd64396026a1" + }, + { + "m_Id": "62bc551cea604e88b7858cc37d96a98a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7d78a616c2754cc28d1f32cf66ade611", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4006.999755859375, + "y": -2796.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "d9bcb754db834583b6518c5ed5152114" + }, + { + "m_Id": "861d4258049a4a3e8164f7297090f88e" + }, + { + "m_Id": "a7c06457d7454693a8bc3dc95257b2c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "7e0fadb2533f496192c1ad3e78642010", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4188.0, + "width": 173.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d48c3871e3064027a10ae9f4babd3be0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "7f2e6b5f15364ed9835d67d0cf4f8f65", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Tangent", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2586.0, + "y": -3592.0, + "width": 200.0, + "height": 41.0 + } + }, + "m_Slots": [ + { + "m_Id": "85ff8667d72947edada4e9fb4ff60559" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Tangent" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7f3d71a6c96847c099da45f95aafbecb", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", + "m_ObjectId": "8036d0e6090b456e9b4ea87227868236", + "m_Id": 0, + "m_DisplayName": "Position", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Position", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "80e665a5eeb64730a51742f698bf0d48", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "8135ca333f8f4ea78163743e6ec1f55c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4081.999755859375, + "y": -3140.0, + "width": 156.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d6a6a119394e4082a11bc024a6e42ef8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "81bdb47901ef48e5a588c6724b1b0142", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "81e8ed0534534674a74263e6161a2a1a", + "m_Guid": { + "m_GuidSerialized": "78aab961-c4a8-41f3-b203-1239c3b33b13" + }, + "m_Name": "Underlay Dilate", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_D48690B9", + "m_OverrideReferenceName": "_UnderlayDilate", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "82af2db1018543d7832af96c1cfc981f", + "m_Guid": { + "m_GuidSerialized": "37906c7b-9a3a-454b-a62a-9aa097e64bde" + }, + "m_Name": "Light Angle", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_82af2db1018543d7832af96c1cfc981f", + "m_OverrideReferenceName": "_LightAngle", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 6.28000020980835 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "82d5443fe54d4a3b9420f8745d00a632", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": 8.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "836f639bd89d42f9b3a0470c3094815e", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "83c51d5b2f7b4eb785248f419181cb87", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Occlusion", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "944ebbc49c8a4cddb5834e3beab965a2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Occlusion" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "84dc74cdbd8c45e1b189e4fd9a69942d", + "m_Id": 0, + "m_DisplayName": "Outline Offset 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "85a1ad8e741e41759002e8cdc8cd0b96", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "ScreenSpaceRatio (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5800.99951171875, + "y": -3363.0, + "width": 258.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "6e13f3cd573c467a94379f45d96cb690" + }, + { + "m_Id": "8e6ed600f6504f4083092f5b511e44c4" + }, + { + "m_Id": "93b161cce4504cb79c97b6d8db178de7" + }, + { + "m_Id": "2bf5f2fdd2984599b7323d10cfb1d240" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ScreenSpaceRatio", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "85b5940eb77e4625812ded7215bab8d7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4081.999755859375, + "y": -3096.0, + "width": 156.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ada023d617104472b8ab75a81558c0a1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot", + "m_ObjectId": "85ff8667d72947edada4e9fb4ff60559", + "m_Id": 0, + "m_DisplayName": "Tangent", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tangent", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "861d4258049a4a3e8164f7297090f88e", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "867a4ae13c0d4a028c71bc1063824c14", + "m_Guid": { + "m_GuidSerialized": "d483c212-0a30-4f6d-b94d-9abbc83a6522" + }, + "m_Name": "Outline Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_C68C9E14", + "m_OverrideReferenceName": "_IsoPerimeter", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 2, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "8695190a5e614f2d90081871a8a06fc2", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "86e21b7b6b7a44238607e41b8a9fb9a4", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Smoothness", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "0801f576ce79452483b42e485405244d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Smoothness" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8764669016f6442f8152593c18a649d7", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "880bb02c6c6b49b18aa6ebc66dc566a0", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "88253223d2c34ecfab92b0c344048f94", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "ComputeSDF (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4323.0, + "width": 227.99998474121095, + "height": 190.0 + } + }, + "m_Slots": [ + { + "m_Id": "c52a1744a9a14989b0ae452ad6de6061" + }, + { + "m_Id": "a03db80c558b4f87a330c5ae0a9443a5" + }, + { + "m_Id": "8f1b1d1e8ff24b3284993e52354e54fa" + }, + { + "m_Id": "5da82bf481f8489ebd05e997f617f51b" + }, + { + "m_Id": "82d5443fe54d4a3b9420f8745d00a632" + }, + { + "m_Id": "61133d79a89048c195f54939b2a1d30a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8a08179f99d649d289b8053d5fa0ad22", + "m_Id": 0, + "m_DisplayName": "Underlay Offset", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8b66f4e6bc9d4662b3218ac33a69839f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8c38a5d8327f456e9783740c05382619", + "m_Id": 3, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8cbd81814903479ea1d3151c1f38183e", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "8cf8aae64c1d443f9303126886b40f17", + "m_Guid": { + "m_GuidSerialized": "8d78c9a5-aaef-41fb-af68-2358e401d7ac" + }, + "m_Name": "_UnderlayColor", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_2F5FE804", + "m_OverrideReferenceName": "_UnderlayColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8e6aee1173864e58be589084897a3f35", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8e6ed600f6504f4083092f5b511e44c4", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "8ed907a2cc7949b68a283ae243ea1977", + "m_Guid": { + "m_GuidSerialized": "36803443-a9bc-4f3c-a4f2-7d66a5417ac1" + }, + "m_Name": "Outline Offset 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8f1b1d1e8ff24b3284993e52354e54fa", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9147636b0cfa466a9b37a013d8f693bf", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5421.99951171875, + "y": -3902.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a4f471e3221c4134b291bd9d2ba22db6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "9178663316db43d582f1c4a127d307c6", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "91890fe48ebe4717aea61ecaf3ad4861", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2983.000244140625, + "y": -3468.0, + "width": 119.99999237060547, + "height": 149.0 + } + }, + "m_Slots": [ + { + "m_Id": "3dccd64e7f324bc1a75c1479d7a67c51" + }, + { + "m_Id": "e444f2c81d1e48329fa2c91005277e8d" + }, + { + "m_Id": "b2c26292b7434733878a9b042f44de89" + }, + { + "m_Id": "964fea1fd4b24f4daf5bef84c4b45118" + }, + { + "m_Id": "deac82280a2b43078e0e40863e2d974c" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "91d6a9a5fbc04ea49075cb51835e7264", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "928621a3ca2d41c89a10336bbbc81ddc", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "93b161cce4504cb79c97b6d8db178de7", + "m_Id": 3, + "m_DisplayName": "TextureSize", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureSize", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget", + "m_ObjectId": "94300469581b4924ac7dda496811d45d", + "m_Datas": [], + "m_ActiveSubTarget": { + "m_Id": "a0b9274619da48a59f26fe58997479ee" + }, + "m_AllowMaterialOverride": false, + "m_SurfaceType": 1, + "m_ZTestMode": 4, + "m_ZWriteControl": 0, + "m_AlphaMode": 0, + "m_RenderFace": 0, + "m_AlphaClip": true, + "m_CastShadows": true, + "m_ReceiveShadows": true, + "m_AdditionalMotionVectorMode": 0, + "m_AlembicMotionVectors": false, + "m_SupportsLODCrossFade": false, + "m_CustomEditorGUI": "TMPro.EditorUtilities.TMP_SDFShaderGUI", + "m_SupportVFX": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "944ebbc49c8a4cddb5834e3beab965a2", + "m_Id": 0, + "m_DisplayName": "Ambient Occlusion", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Occlusion", + "m_StageCapability": 2, + "m_Value": 1.0, + "m_DefaultValue": 1.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "945b45993dd84a979755b98c48138f72", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "952d0fa5cd744df0b434cd38e9a90b93", + "m_Guid": { + "m_GuidSerialized": "ce395871-ddeb-47c3-a31d-07855800c197" + }, + "m_Name": "_UnderlaySoftness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_F2B9E3EF", + "m_OverrideReferenceName": "_UnderlaySoftness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "95928bcb6a284b8d88105a84c2e1d3ce", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4778.00048828125, + "y": -2581.000244140625, + "width": 155.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d880558893fb442b9320cf55885d1117" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "964fea1fd4b24f4daf5bef84c4b45118", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "98934a69591249d5b8b92b39045359a3", + "m_Title": "Outline1 Texture", + "m_Position": { + "x": -4670.00048828125, + "y": -2474.000244140625 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "998db5e5901e45b29040eb2099370071", + "m_Guid": { + "m_GuidSerialized": "6f383614-f2ad-4269-be8f-87b0ecb03cf0" + }, + "m_Name": "Bevel Clamp", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_5BD7E808", + "m_OverrideReferenceName": "_BevelClamp", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "9c228fac287d446296b91a4acf5cec59", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4600.0, + "y": -3498.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "582d6e289dbe4fdca7cf0307273eaa2f" + }, + { + "m_Id": "1db37082bf844442804487b4944352de" + }, + { + "m_Id": "8b66f4e6bc9d4662b3218ac33a69839f" + }, + { + "m_Id": "4a66dcbe712a4d40bd8f355b834594b5" + }, + { + "m_Id": "a0285c9c381a49cba194709efa0a7c85" + }, + { + "m_Id": "b2728d0dd3ce40678867c94a7d977916" + }, + { + "m_Id": "e141833aa78b4fd59ecad949beb43a78" + }, + { + "m_Id": "51f76f8a53ad43a4ad028426548ce9ba" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9c26fdddba244d36a854298c00473247", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "9d3c3383d5934a17bf9efbb7fd9e9043", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5443.0, + "y": -3315.0, + "width": 144.99998474121095, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "232b1aa09e67479abae141d3c76d3c5b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e6e50a71d9843b49b62ebe1cf7d3d59", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4486.0, + "y": -3865.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "3535ae87c6dd4769b52b20d9eca61069" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e87ce9607e14015a3790c528ca5dfda", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4635.00048828125, + "y": -2239.0, + "width": 167.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "75c5657544c648058b20cea090f48dbf" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "9eb8137a6c2e41bbafdc8b0732dd47a3", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "9eeec1a9713045af8845cea263d5ea48", + "m_Id": 6, + "m_DisplayName": "IsFront", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "IsFront", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "9f0de188085746d5a19073da1de85ddb", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4152.0, + "y": -2771.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "7c27ccb2c2dc4ca59c5438c3358630ca" + }, + { + "m_Id": "373f1de8db6c429c9d46c781f741d7a4" + }, + { + "m_Id": "fd0b096ed5b74f9e9ec51327be200731" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "a0206f980dc6455f84f5a8442838c726", + "m_Id": 0, + "m_DisplayName": "Normal (Tangent Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalTS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 3 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a0285c9c381a49cba194709efa0a7c85", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a03db80c558b4f87a330c5ae0a9443a5", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 2, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalLitSubTarget", + "m_ObjectId": "a0b9274619da48a59f26fe58997479ee", + "m_WorkflowMode": 1, + "m_NormalDropOffSpace": 0, + "m_ClearCoat": false, + "m_BlendModePreserveSpecular": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "a3f8b6e8ae7f48e2989a029904401502", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "a455bd79094c4413a7b7dd80ca8b9368", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4606.99951171875, + "y": -2689.0, + "width": 221.99998474121095, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "7027aaab25924266a063a05df0aa39b3" + }, + { + "m_Id": "2c7a9460724b47daad8df1be144de7c6" + }, + { + "m_Id": "55ffa45ec3654d5e88089fb40d2b0465" + }, + { + "m_Id": "e495a9f7a11f4eb89334e83be154ceb9" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateShaderProperty", + "m_ObjectId": "a4ad98d8828c424384229c344ebe2ed0", + "m_Guid": { + "m_GuidSerialized": "f98fc1a2-bb81-4bd1-a207-23d3a90d518e" + }, + "m_Name": "SamplerState", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "SamplerState_a4ad98d8828c424384229c344ebe2ed0", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": false, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_filter": 0, + "m_wrap": 1, + "m_anisotropic": 0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a4f471e3221c4134b291bd9d2ba22db6", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "a535f3bcbeb14622bb177eb6f46e76f4", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4628.00048828125, + "y": -2283.0, + "width": 157.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "6dfc1177dd0541a7a780fbf911ad1956" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "a6bbb32e8d884be9bb36db91fe4b81b1", + "m_Guid": { + "m_GuidSerialized": "6aa76edf-7b80-46ac-add4-406cf1d85493" + }, + "m_Name": "_GradientScale", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_EAE27356", + "m_OverrideReferenceName": "_GradientScale", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 10.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "a6c38edd2e8743a9b057ba8452b9f129", + "m_Guid": { + "m_GuidSerialized": "9fc942ee-4a1d-4ced-a5a6-81893e3ddb63" + }, + "m_Name": "Light Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_a6c38edd2e8743a9b057ba8452b9f129", + "m_OverrideReferenceName": "_SpecularColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "a75f7ac601c446469802fe7754c1f279", + "m_Id": 0, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a7942746b5564dc7bbbae1deb2403022", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "a7c06457d7454693a8bc3dc95257b2c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "aa2794b8f0e24bf281d22e0fef0647be", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "aa3e347d733e48f7b65d8a8847370eec", + "m_Group": { + "m_Id": "" + }, + "m_Name": "EvaluateLight (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3631.0, + "y": -3810.0, + "width": 230.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "0699eea947fc426cbfeb8744cf120222" + }, + { + "m_Id": "0c4dc51f26484c26ad88a3fe4002abcd" + }, + { + "m_Id": "d5173cc3c6cd4f1998550f3187a3e9c8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "EvaluateLight", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aa87c72ac0e64469acc34f936f00b3d0", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4225.0, + "width": 193.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "0d7878dd226d4cfb81a991dc312309fc" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "abd59150589b436cadf8c9e6f43ccb8e", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "aca823a8188948c782eddaf0f45e1868", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalOS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2542.0, + "y": -3404.000244140625, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "e386b183a18245a796b024022f7f3074" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalOS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "acd0cd5a177f4a97bf23db7219305e3f", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4348.0, + "y": -3905.99951171875, + "width": 185.33299255371095, + "height": 101.33324432373047 + } + }, + "m_Slots": [ + { + "m_Id": "945b45993dd84a979755b98c48138f72" + }, + { + "m_Id": "e51a636b2621440eb94cc802c1cf4bfc" + }, + { + "m_Id": "1bdde3efd3b7464b8934c555be0f8a48" + }, + { + "m_Id": "129f271ebc77450994e18f0a30579bf5" + }, + { + "m_Id": "3ffa095f304e42d2827aa230e2ae3887" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "ad3e1d26f4404555a8dd29223caaf1ef", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Metallic", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "b46afdad84944599b00e887d2ce29cc3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Metallic" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ada023d617104472b8ab75a81558c0a1", + "m_Id": 0, + "m_DisplayName": "Outline Color 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aef5c44f84e04c3185e0b93e95e34204", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5264.99951171875, + "y": -3142.0, + "width": 159.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "84dc74cdbd8c45e1b189e4fd9a69942d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b000f852aa984e9dae25b125a4607f4e", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b015d1b7e4134c59baf6851e7649802c", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "b0b352c4503a43d083a64e57352b29a0", + "m_Guid": { + "m_GuidSerialized": "01cfcc78-60aa-4f71-a1e3-8d8df6dae253" + }, + "m_Name": "Reflectivity Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_b0b352c4503a43d083a64e57352b29a0", + "m_OverrideReferenceName": "_Reflectivity", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 5.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 5.0, + "y": 15.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "b1188549725543d485436c2e921ffbb2", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4142.0, + "y": -2890.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "281bcee4777040f8a31ee0e10344e98d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "b163c9f1666644b0bba62cf0e12df7bc", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4367.0, + "y": -2713.0, + "width": 180.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "cce40479b6284b6fa3174db9f09d0ac9" + }, + { + "m_Id": "80e665a5eeb64730a51742f698bf0d48" + }, + { + "m_Id": "1f46181633594ae0a1fb2adb76b42981" + }, + { + "m_Id": "8cbd81814903479ea1d3151c1f38183e" + }, + { + "m_Id": "cfaf3f3a5a1146e194cddad30c95aada" + }, + { + "m_Id": "b43489e37a5c4df88f15844292a55ec7" + }, + { + "m_Id": "cd7281fb41aa4e61ac0fdf71d4f4bd46" + }, + { + "m_Id": "f01d52cdcb1647aab35782b4af535efd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 1, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "b224a1cf80604103ad085c799995f3c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b2728d0dd3ce40678867c94a7d977916", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b2baf44eae52473cb6cda7b1debece01", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b2c26292b7434733878a9b042f44de89", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b42e6dbfbc864097af182cbff5c0c1fb", + "m_Id": 0, + "m_DisplayName": "Outline Color 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b43489e37a5c4df88f15844292a55ec7", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b467be738d0e454995e380cbf526efe3", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b46afdad84944599b00e887d2ce29cc3", + "m_Id": 0, + "m_DisplayName": "Metallic", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Metallic", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "b4a40cb6acd441acb83cfe0240bf910d", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4750.99951171875, + "y": -4274.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "d0b10e52e21941b183f5f635894c76c8" + }, + { + "m_Id": "0d6a57754b824f6db9cefa6953bc06a9" + }, + { + "m_Id": "773b90134e894e429203c0c83e80b9de" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "b571db753a1948d5a6f1de4e7d0c7238", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5581.99951171875, + "y": -3867.0, + "width": 183.99998474121095, + "height": 100.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "5b3ff4ee364f4d7a923b530ad60d8762" + }, + { + "m_Id": "c183b5bd9bbe45089f93996e73110918" + }, + { + "m_Id": "1196ae398cc348349ab0c1a23fdab4bd" + }, + { + "m_Id": "7b144a976914480baf430c0f6f7f4def" + }, + { + "m_Id": "836f639bd89d42f9b3a0470c3094815e" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b691728a389a417d9b4f2d02541209c2", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b7f9ac55517141868bfb9d2ad6429792", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b85d677872b44421bf5536f42ba0267c", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "bc9afcb18afa4ccc82d2cdc34d3f4641", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -5392.0, + "y": -3867.0, + "width": 125.99999237060547, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "5e42524569844befad16fda5a94eb9cb" + }, + { + "m_Id": "54d7a93ffec5490aa4591da23a21b693" + }, + { + "m_Id": "aa2794b8f0e24bf281d22e0fef0647be" + }, + { + "m_Id": "200245fc8bbe4826b209ab5f7ffe074c" + }, + { + "m_Id": "fc2e62201c5847e798fd939314413fcd" + }, + { + "m_Id": "fe11fa80cc1847a5a37f6757d521cf25" + }, + { + "m_Id": "de0c6f7f7af94defa6c3dbc6433de9d4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c183b5bd9bbe45089f93996e73110918", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "c234e5216678436195ee1a5914bc79da", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4446.0, + "y": -2347.0, + "width": 221.99998474121095, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "8e6aee1173864e58be589084897a3f35" + }, + { + "m_Id": "3db1608e927e4102a3c3a88e9fcab39a" + }, + { + "m_Id": "0f7ffb6d2de4447f9736780cbcee8e07" + }, + { + "m_Id": "d4954b7bbbb0412cbc997bcbe7dfa808" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "c35312edaa2344788b1964ee2f63a236", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "c3e6d7c20c184bf39fd8822130e693e7", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "c422a9a9ff824176aad2241f58c44d0b", + "m_Id": 0, + "m_DisplayName": "Outline Offset 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "c478c32c45884c57a62f7b2aa8ddc3b0", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c52a1744a9a14989b0ae452ad6de6061", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c6bdb985bc16435fa72f5a3c81bb633c", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c7d4094601ac4bc1aead609c72b1f1c1", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c7ddee91dc5b48dc828309c77fdb0b88", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4266.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a7942746b5564dc7bbbae1deb2403022" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "c88fcbaeea954a5f9c68c339fa8b604d", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c9b722d107ce4cd6a748c883472b9b0f", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c9d7f0dbae7d422985a1cc87c025e76b", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4312.0, + "y": -3179.000244140625, + "width": 144.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "79147f6986644769b58d9ed64fe771e1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "c9ec735d1a1046769e5601b2c97c849a", + "m_Guid": { + "m_GuidSerialized": "281a9526-c332-4471-a44e-ece4a1e95ef6" + }, + "m_Name": "Face Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_75569DEA", + "m_OverrideReferenceName": "_FaceTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ca2a1083dc014f39ab8af0cdf140866b", + "m_Id": 0, + "m_DisplayName": "_FaceTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "cb3c0c3f08654b068bea44c4ffb15f4a", + "m_Guid": { + "m_GuidSerialized": "21009d12-8d94-4273-b0d0-a8ee0608ddcf" + }, + "m_Name": "OutlineMode", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_cb3c0c3f08654b068bea44c4ffb15f4a", + "m_OverrideReferenceName": "_OutlineMode", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cb5e9f9567e84f8fa5463efc0e256e19", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "cb7117ecb1d047a8b2cb00ed552cb181", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Alpha", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3032.66650390625, + "y": -3029.33349609375, + "width": 200.0, + "height": 41.33349609375 + } + }, + "m_Slots": [ + { + "m_Id": "724e17584e97443e9e285dfa7253c8e3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Alpha" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cc88101667c9488f9c5a716e851c1b21", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cce40479b6284b6fa3174db9f09d0ac9", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "cd7281fb41aa4e61ac0fdf71d4f4bd46", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cda5e3b4c1054bf3a65c0b7ec6bc778a", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "cdddee3a537c464697357f11b966f9b8", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4420.0, + "y": -4483.0, + "width": 156.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "41b9b79b3859472882bcea393703eec0" + }, + { + "m_Id": "c7d4094601ac4bc1aead609c72b1f1c1" + }, + { + "m_Id": "767769f736d5478cba5f10a415e28e7f" + }, + { + "m_Id": "b691728a389a417d9b4f2d02541209c2" + }, + { + "m_Id": "045c4f6b050549c7a0efb208e6349779" + }, + { + "m_Id": "509e6f38505b4b0695b263706a55028f" + }, + { + "m_Id": "204dacb5a95b424facf11cb6f65bd188" + }, + { + "m_Id": "35cbea6373dd4e4f8d0fea36e8add392" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "cfaf3f3a5a1146e194cddad30c95aada", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d0a791a544614667962a9a9a9ce0c68a", + "m_Title": "Screen Space Ratio", + "m_Position": { + "x": -6179.99951171875, + "y": -3422.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d0b10e52e21941b183f5f635894c76c8", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d1a17e42e7a04dc38984e3c01149445b", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d219977210094c0082c517d8dc00c8bb", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d258902c6ec74942afdb9ebf8c1d07f8", + "m_Title": "Generate Normal", + "m_Position": { + "x": -4511.33349609375, + "y": -3999.3330078125 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "d30452ac6b244ecca03df4d7b4de9f81", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d48c3871e3064027a10ae9f4babd3be0", + "m_Id": 0, + "m_DisplayName": "_UnderlaySoftness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d4954b7bbbb0412cbc997bcbe7dfa808", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "d4df208fc23b42f2b52364124f1b661c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5268.0, + "y": -3261.0, + "width": 159.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "757174b6f25040fdbb20355a21752222" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "d5173cc3c6cd4f1998550f3187a3e9c8", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d6a6a119394e4082a11bc024a6e42ef8", + "m_Id": 0, + "m_DisplayName": "Outline Color 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d880558893fb442b9320cf55885d1117", + "m_Id": 0, + "m_DisplayName": "_FaceUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d8edec16956c4f15b7d51d6ec10753f4", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d9bcb754db834583b6518c5ed5152114", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d9dc4839ee2847999110bdb234d6041a", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "da7a06d393a44089842070d51d2aa0a6", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "daaf032a109749a88c9b8ff8e1f8b541", + "m_Title": "Offset Scale", + "m_Position": { + "x": -5747.99951171875, + "y": -3961.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "dbcb748279484a4590e53518c49122b8", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4776.00048828125, + "y": -2757.000244140625, + "width": 145.0, + "height": 130.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "7a0f504e4175406dbd8134250f4e350b" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "dc75c4e3a1bc4bb0a128086c2b0679a5", + "m_Guid": { + "m_GuidSerialized": "85cd941f-2fd2-43a3-b0fa-9f728bfb4220" + }, + "m_Name": "Face Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_99AFBB3D", + "m_OverrideReferenceName": "_FaceColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "de0c6f7f7af94defa6c3dbc6433de9d4", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "deac82280a2b43078e0e40863e2d974c", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "def8e0b9d8384982bc5b4c32d877e458", + "m_Id": 0, + "m_DisplayName": "Outline Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "dff7a66b353a4023b29c9d937da77960", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4602.0, + "y": -4298.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "7b8a19bd115e4167a25b59cb3218a817" + }, + { + "m_Id": "0b57f2d35157477ab2b29a5aac14ae8b" + }, + { + "m_Id": "e9e06fcb161e44ba8cc9f6f60264df78" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "e141833aa78b4fd59ecad949beb43a78", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e2d28f29bbac4983a401574480b5ca28", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "e386b183a18245a796b024022f7f3074", + "m_Id": 0, + "m_DisplayName": "Normal (Object Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalOS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e444f2c81d1e48329fa2c91005277e8d", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "e495a9f7a11f4eb89334e83be154ceb9", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e51a636b2621440eb94cc802c1cf4bfc", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "e591df3a1eb94e259b762f2830b407e2", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Emission", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "4590bfa2a0664b65b6f073bae33a071f" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Emission" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e6e80c6b0db545cda26b079a9a78fbb3", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "e818605f8f5a4f01bf61caaa33693581", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "ComputeSDF44 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4144.0, + "y": -3369.0, + "width": 244.0, + "height": 214.0 + } + }, + "m_Slots": [ + { + "m_Id": "641eda269d7b4da9acb65f8d50035ea9" + }, + { + "m_Id": "f6823778a3cf42d5bbe8a83e5f9c9fa3" + }, + { + "m_Id": "9c26fdddba244d36a854298c00473247" + }, + { + "m_Id": "f684c5678e9e4f078157a3ab7ef5057b" + }, + { + "m_Id": "14ad19bf20a140dd88d58452d7df688b" + }, + { + "m_Id": "215a82c127204988b751de7d3a39b955" + }, + { + "m_Id": "c478c32c45884c57a62f7b2aa8ddc3b0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF44", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "e9e06fcb161e44ba8cc9f6f60264df78", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebbd94a7102a4457a48ac492de3bff14", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebd6d75abcb84108bcadbfe7ee5f6244", + "m_Id": 7, + "m_DisplayName": "TextureHeight", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureHeight", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "ec184d6d9fb2494897774c9e7d279e6d", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4778.00048828125, + "y": -2626.0, + "width": 145.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ca2a1083dc014f39ab8af0cdf140866b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "07946387933e416db576b677f0711e5f" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "ec1f2e8bc9fd4ae38b133c60ee6c49b8", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4957.99951171875, + "y": -3204.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "748c31bbcecc4b30bec2e42c0612175b" + }, + { + "m_Id": "4bda5c294e1949138d033640e1d385b4" + }, + { + "m_Id": "4e64dac49ddc47c3b5b1e27b17a08304" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "ec79eb447dfd47a9b3380344c6a60f43", + "m_Guid": { + "m_GuidSerialized": "54c77f8b-0534-4b35-a3f0-83ab2ebe6c1f" + }, + "m_Name": "_OutlineTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1774DE83", + "m_OverrideReferenceName": "_OutlineTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "ecf16c34d46f4502ac601f0c38c7576b", + "m_Title": "Vertex Color", + "m_Position": { + "x": -3448.000244140625, + "y": -3579.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ed1d1f1613334c3bb904dd08161cd7e5", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ed6c215a65584deeaefad1d2c7743044", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "edbee7a8952b46529ac5ad0365775774", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "ef0b93f78372439696f50711eaf57d90", + "m_Id": 0, + "m_DisplayName": "Base Color", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BaseColor", + "m_StageCapability": 2, + "m_Value": { + "x": 0.7353569269180298, + "y": 0.7353569269180298, + "z": 0.7353569269180298 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_ColorMode": 0, + "m_DefaultColor": { + "r": 0.5, + "g": 0.5, + "b": 0.5, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "ef9738ec7e894772a14e9dce441c16c6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "f01d52cdcb1647aab35782b4af535efd", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "f23a8b2b7c85478388ff7a8c8a6de740", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Layer4 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3849.999755859375, + "y": -3286.0, + "width": 193.0, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "0fac35636fca4474a6afaefc3c757775" + }, + { + "m_Id": "cc88101667c9488f9c5a716e851c1b21" + }, + { + "m_Id": "68ec7c31365549d6a8ce883edfc02de2" + }, + { + "m_Id": "02559cbe5ad441a3904ccb75ded2b2c5" + }, + { + "m_Id": "34a67e0fef884f9399e674d9eeaf720c" + }, + { + "m_Id": "3802c81c3be24823aa1d7c9997a33c29" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer4", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "f2903158b3624759bca1fcd843698078", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 2.0, + "y": 2.0, + "z": 2.0, + "w": 2.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "f2a351a5375c441b8d9ab7e2c9545a77", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "f383b24f0bc6434dafe44b3e3d338a63", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6012.99951171875, + "y": -3209.0, + "width": 183.99998474121095, + "height": 100.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "fb5e1e2a67c14602808358686bb75091" + }, + { + "m_Id": "712da461f71a454db59d349f752d41ee" + }, + { + "m_Id": "b000f852aa984e9dae25b125a4607f4e" + }, + { + "m_Id": "55a3403c16184e63b4e78607a6a20cd8" + }, + { + "m_Id": "b467be738d0e454995e380cbf526efe3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "f3d31c1f18d8491a8ecf5cbc37e4b7db", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4321.0, + "y": -3281.000244140625, + "width": 153.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ed1d1f1613334c3bb904dd08161cd7e5" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f42ad06b3c6a45d3ab33de904c063412", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f48f04ad45d046a8b88e71731ed506e7", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "f4ecc442a2d246759f7c2c0412953d28", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Normal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "a3f8b6e8ae7f48e2989a029904401502" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Normal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f6823778a3cf42d5bbe8a83e5f9c9fa3", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f684c5678e9e4f078157a3ab7ef5057b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": { + "x": 3.0, + "y": 2.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "f814deb543c24fbbafbcdb5071d96022", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4600.0, + "y": -3245.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "abd59150589b436cadf8c9e6f43ccb8e" + }, + { + "m_Id": "7acfafd73b8c4dfab8c55c18a887e087" + }, + { + "m_Id": "928621a3ca2d41c89a10336bbbc81ddc" + }, + { + "m_Id": "b7f9ac55517141868bfb9d2ad6429792" + }, + { + "m_Id": "09b1b86c1c074337a4c439d3a308dd2e" + }, + { + "m_Id": "1f247658c7ba45fb93c41f51e21acb0d" + }, + { + "m_Id": "d30452ac6b244ecca03df4d7b4de9f81" + }, + { + "m_Id": "215b30ae27784ec3a13360a9029af283" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f864c900600e427ba7793f00c715e971", + "m_Id": 0, + "m_DisplayName": "Outline Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fa6de3be9f5b4411b5081b49e645f424", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DivideNode", + "m_ObjectId": "faace8101df943d8956faa31728cb004", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Divide", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5254.99951171875, + "y": -3891.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "77e28f3e930b4c249145630ec961af95" + }, + { + "m_Id": "f2903158b3624759bca1fcd843698078" + }, + { + "m_Id": "30ca940fe2794c949f2a1d4d2caaa446" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "facc84930f544fd7a0205a6176b18ac0", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "fb15d0ba56d54a6192f11e107aeb5fa8", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "fb5e1e2a67c14602808358686bb75091", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "fc2e62201c5847e798fd939314413fcd", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fd0b096ed5b74f9e9ec51327be200731", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "fdb77c3e92ee497b88ca5dc46dc45350", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4208.0, + "y": -2371.0, + "width": 180.0, + "height": 180.0 + } + }, + "m_Slots": [ + { + "m_Id": "4328cdbf78b94c038fd614c59bfe1cac" + }, + { + "m_Id": "04dfcc9ff13a4bf282ed46faec39d15c" + }, + { + "m_Id": "71dd947935b64ce38f0d25406dde447b" + }, + { + "m_Id": "61a6ac5f29344d109411f26850ab0a96" + }, + { + "m_Id": "44806230fa384c1e95f9c5918a14f056" + }, + { + "m_Id": "4eb3c00a1ca44e10be833b7ca61ff059" + }, + { + "m_Id": "57abc172afd449e2a4d567f93432507b" + }, + { + "m_Id": "cda5e3b4c1054bf3a65c0b7ec6bc778a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "fe11fa80cc1847a5a37f6757d521cf25", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph.meta new file mode 100644 index 0000000..54c945e --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a3d800b099a06e0478fb790c5e79057a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph new file mode 100644 index 0000000..d7d31de --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph @@ -0,0 +1,11629 @@ +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.GraphData", + "m_ObjectId": "386c36a1c4c34ea29deb680fb82cfe8b", + "m_Properties": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "4a0041116f73406db7a62ae80ff54ef4" + } + ], + "m_Keywords": [], + "m_Dropdowns": [], + "m_CategoryData": [ + { + "m_Id": "bafc3d388c1e444e820897b9a3d6029a" + } + ], + "m_Nodes": [ + { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + }, + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + } + ], + "m_GroupDatas": [ + { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + } + ], + "m_StickyNoteDatas": [], + "m_Edges": [ + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 5 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 7 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 6 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 1 + } + } + ], + "m_VertexContext": { + "m_Position": { + "x": -2624.000244140625, + "y": -3709.000244140625 + }, + "m_Blocks": [ + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + } + ] + }, + "m_FragmentContext": { + "m_Position": { + "x": -2624.000244140625, + "y": -3424.000244140625 + }, + "m_Blocks": [ + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + } + ] + }, + "m_PreviewData": { + "serializedMesh": { + "m_SerializedMesh": "{\"mesh\":{\"fileID\":10210,\"guid\":\"0000000000000000e000000000000000\",\"type\":0}}", + "m_Guid": "" + }, + "preventRotation": false + }, + "m_Path": "TextMeshPro/SRP", + "m_GraphPrecision": 0, + "m_PreviewMode": 2, + "m_OutputNode": { + "m_Id": "" + }, + "m_ActiveTargets": [ + { + "m_Id": "94300469581b4924ac7dda496811d45d" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "007c75c776ac4f1babe9cd7ae1fc4f14", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5868.0, + "y": -3787.000244140625, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1356dc7cbdfa4199a6535d3bbf4cd536" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "013228b0fdf1424097798f0973a9a4fb", + "m_Title": "Face Texture", + "m_Position": { + "x": -4779.494140625, + "y": -2948.97265625 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "02559cbe5ad441a3904ccb75ded2b2c5", + "m_Id": 5, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "03182b3263304258b265266325c21f65", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "045c4f6b050549c7a0efb208e6349779", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "04dc152dd2ba4d519391577eb1156235", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4500.0, + "y": -2747.0, + "width": 151.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "3d04f5ba6e7b40d281f22eb424145acd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "04dfcc9ff13a4bf282ed46faec39d15c", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "05805bc6fcc941fd889922555c6c86d7", + "m_Guid": { + "m_GuidSerialized": "fe84e680-4cee-4ca5-be86-2e293a9ba093" + }, + "m_Name": "Ambient Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_05805bc6fcc941fd889922555c6c86d7", + "m_OverrideReferenceName": "_Ambient", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "0580d4b7e3a049049569f4508643a724", + "m_Guid": { + "m_GuidSerialized": "eefb88c5-7665-45dc-b3c2-7cf98b9990d6" + }, + "m_Name": "Softness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_D64EC33D", + "m_OverrideReferenceName": "_Softness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "068ae649e00b40e198ec5a30ad741fab", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0699eea947fc426cbfeb8744cf120222", + "m_Id": 1, + "m_DisplayName": "Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "07946387933e416db576b677f0711e5f", + "m_Guid": { + "m_GuidSerialized": "21d612fb-8153-41f8-9e2f-9de044c19fbf" + }, + "m_Name": "_FaceTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1A08AD4A", + "m_OverrideReferenceName": "_FaceTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "082e9706dffc4c188270980d4e44ce0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0848ba750e0341198cf0bbd413e0efe4", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "09b1b86c1c074337a4c439d3a308dd2e", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0a67ca5280214bd794dc0ad66b5710a9", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0b57f2d35157477ab2b29a5aac14ae8b", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0ba4932e164847878ddb7b7bcff96985", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0c4dc51f26484c26ad88a3fe4002abcd", + "m_Id": 2, + "m_DisplayName": "Color (1)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0d6a57754b824f6db9cefa6953bc06a9", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0d7878dd226d4cfb81a991dc312309fc", + "m_Id": 0, + "m_DisplayName": "Underlay Dilate", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 2, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget", + "m_ObjectId": "0eeb5490760e492f8c9691086fa00929" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "0f7ffb6d2de4447f9736780cbcee8e07", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0fac35636fca4474a6afaefc3c757775", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "105b1ed1aa714e41bbe1ef5472bdb11f", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4923.99951171875, + "y": -4233.0, + "width": 158.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "8a08179f99d649d289b8053d5fa0ad22" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "109f638d1f9b49d4991d6d21a86d4eb7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5068.0, + "y": -3182.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "880bb02c6c6b49b18aa6ebc66dc566a0" + }, + { + "m_Id": "1b9cd8f5f4004e2eaf8afbaab803bc04" + }, + { + "m_Id": "b224a1cf80604103ad085c799995f3c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "10a99c07aad742349d258db16838c129", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1196ae398cc348349ab0c1a23fdab4bd", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1356dc7cbdfa4199a6535d3bbf4cd536", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "14ad19bf20a140dd88d58452d7df688b", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 1.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "150533bad8e2424aaa2c74e253af8592", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4923.99951171875, + "y": -3486.666259765625, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "72fb5a0d7796446b9e2b929cb32facdc" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "163beb4431c34f538340bc0af0991e6f", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3415.000244140625, + "y": -3462.0, + "width": 120.00000762939453, + "height": 149.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "4c334de01ecd429baa7652fc6002536b" + }, + { + "m_Id": "e2d28f29bbac4983a401574480b5ca28" + }, + { + "m_Id": "6a7af6143e114a538663e71f56731a21" + }, + { + "m_Id": "3e25be96bb3747738c238cf3a741d5df" + }, + { + "m_Id": "4907352322c644ebacdf2ca30f2994fd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "19075add867e4757b9520d18fe8de1d0", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4261.33349609375, + "y": -3197.33349609375, + "width": 124.66650390625, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c28ee9109014fa086e5de7a3993341d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "0580d4b7e3a049049569f4508643a724" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1b9cd8f5f4004e2eaf8afbaab803bc04", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1bdde3efd3b7464b8934c555be0f8a48", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "1be90d4f96a841748b0c95219b12ad27", + "m_Guid": { + "m_GuidSerialized": "4c91c146-43bb-4de8-948a-fbf8b1da10e1" + }, + "m_Name": "Bevel Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_97690701", + "m_OverrideReferenceName": "_BevelOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": -0.5, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "1c4df61c2fea404eb3b87b270d7c59bc", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4280.0, + "y": -3221.33349609375, + "width": 145.3330078125, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "f864c900600e427ba7793f00c715e971" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1d35fa1fb5004f96a65ace54fbe4f1ad", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1d7d96a5770b4f8ebb162bdbde020bca", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1db37082bf844442804487b4944352de", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1df58cfa4dad4c449d01ee1c5ea05f2e", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "1e12726617b24675958e942eb62e4b09", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4772.0, + "y": -4404.0, + "width": 145.00001525878907, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "0848ba750e0341198cf0bbd413e0efe4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1f247658c7ba45fb93c41f51e21acb0d", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1f46181633594ae0a1fb2adb76b42981", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "200245fc8bbe4826b209ab5f7ffe074c", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "204dacb5a95b424facf11cb6f65bd188", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "215a82c127204988b751de7d3a39b955", + "m_Id": 6, + "m_DisplayName": "Outline", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Outline", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "215b30ae27784ec3a13360a9029af283", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "21a7a380e66d42e780e2a2a1baa630d5", + "m_Guid": { + "m_GuidSerialized": "b2d0099f-e605-49f5-9959-e7cacae37aa3" + }, + "m_Name": "Bevel Type", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_21a7a380e66d42e780e2a2a1baa630d5", + "m_OverrideReferenceName": "_BevelType", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e", + "m_Guid": { + "m_GuidSerialized": "cd167d3a-7465-4d5a-86fc-0f22dc0ef908" + }, + "m_Name": "Outline Color 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_5550EB71", + "m_OverrideReferenceName": "_OutlineColor1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "232b1aa09e67479abae141d3c76d3c5b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "256d41e89a204d22951450de1c38051d", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "26e48352a08441bfa694dcea54c06e36", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "281bcee4777040f8a31ee0e10344e98d", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "285f6a9863d54ed2a8150727ad749456", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4145.0, + "y": -2406.0, + "width": 154.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "b42e6dbfbc864097af182cbff5c0c1fb" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.IsFrontFaceNode", + "m_ObjectId": "2a552a0b828f457c911aa19561e410ae", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Is Front Face", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4282.0, + "y": -3681.3330078125, + "width": 121.99999237060547, + "height": 77.33348846435547 + } + }, + "m_Slots": [ + { + "m_Id": "2ef1d888dc9d49e59d6a6950897ddc93" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "2ac79705aa9e415dbb74ec215233fd1b", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Composite (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3277.3330078125, + "y": -3841.33349609375, + "width": 218.666748046875, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "a75f7ac601c446469802fe7754c1f279" + }, + { + "m_Id": "8c38a5d8327f456e9783740c05382619" + }, + { + "m_Id": "facc84930f544fd7a0205a6176b18ac0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Composite", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2b01ea3023e34c94af1754e4dcea8f2e", + "m_Id": 0, + "m_DisplayName": "Face Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2bf5f2fdd2984599b7323d10cfb1d240", + "m_Id": 1, + "m_DisplayName": "Filter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Filter", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "2c10b97b92c947ceb307a93759c0228b", + "m_Guid": { + "m_GuidSerialized": "6be0b8ff-a766-4c6b-a6e4-3a72758ac95f" + }, + "m_Name": "Bevel Amount", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B01DD93E", + "m_OverrideReferenceName": "_BevelAmount", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2c7a9460724b47daad8df1be144de7c6", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "2d0a269511e34bd1ba9056d2c939dff2", + "m_Guid": { + "m_GuidSerialized": "edbe73dc-53ab-4bc1-9d64-ab36e0e05f03" + }, + "m_Name": "_FaceUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_3A8E0F13", + "m_OverrideReferenceName": "_FaceUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "2db15d90c2204143b225ec4ef08d0755", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4350.0, + "y": -2396.0, + "width": 163.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "def8e0b9d8384982bc5b4c32d877e458" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "2e4eb1ef08bb44178c82e53872485e0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2ef1d888dc9d49e59d6a6950897ddc93", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 2, + "m_Value": true, + "m_DefaultValue": true +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "30ca940fe2794c949f2a1d4d2caaa446", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "319916a5921343f7b7eef0e50dc93def", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4760.0, + "y": -3245.000244140625, + "width": 184.0, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "d219977210094c0082c517d8dc00c8bb" + }, + { + "m_Id": "f48f04ad45d046a8b88e71731ed506e7" + }, + { + "m_Id": "e6e80c6b0db545cda26b079a9a78fbb3" + }, + { + "m_Id": "c6bdb985bc16435fa72f5a3c81bb633c" + }, + { + "m_Id": "d1a17e42e7a04dc38984e3c01149445b" + }, + { + "m_Id": "fb15d0ba56d54a6192f11e107aeb5fa8" + }, + { + "m_Id": "c35312edaa2344788b1964ee2f63a236" + }, + { + "m_Id": "c88fcbaeea954a5f9c68c339fa8b604d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "34a67e0fef884f9399e674d9eeaf720c", + "m_Id": 6, + "m_DisplayName": "Color3", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color3", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "34a72a5ebb04402384a4fd3748111a37", + "m_Id": 0, + "m_DisplayName": "Alpha Clip Threshold", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AlphaClipThreshold", + "m_StageCapability": 2, + "m_Value": 0.0010000000474974514, + "m_DefaultValue": 0.5, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3535ae87c6dd4769b52b20d9eca61069", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "35cbea6373dd4e4f8d0fea36e8add392", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "36a0c473c4c04c3a930dd38f3920d410", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "36f1b4d96f2941c39e5cd95d9c1d2ce6", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6314.6669921875, + "y": -3285.3330078125, + "width": 144.6669921875, + "height": 129.33348083496095 + } + }, + "m_Slots": [ + { + "m_Id": "65b3dc13b2b6484283ffe5abfe87a06a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "373f1de8db6c429c9d46c781f741d7a4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3802c81c3be24823aa1d7c9997a33c29", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "3915c1927ffe49f8967304321cfbe497", + "m_Id": 4, + "m_DisplayName": "Atlas", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Atlas", + "m_StageCapability": 3, + "m_BareResource": true, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "39a382d661e2484da71f04c43f48e55f", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "39f2f84f30304d859fb07569e2695f60", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3554.000244140625, + "y": -3462.0, + "width": 116.00000762939453, + "height": 94.00000762939453 + } + }, + "m_Slots": [ + { + "m_Id": "4b2d9ea03bf64fa19dcae1511d2581da" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "3c50439118b2496f9e390021b0964606", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.AlphaClipThreshold", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3028.0, + "y": -3054.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "34a72a5ebb04402384a4fd3748111a37" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.AlphaClipThreshold" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3d04f5ba6e7b40d281f22eb424145acd", + "m_Id": 0, + "m_DisplayName": "Face Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3db1608e927e4102a3c3a88e9fcab39a", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "3dccd64e7f324bc1a75c1479d7a67c51", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "3e231021af7b47ba97f2871e7f25d0fe", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2934.000244140625, + "y": -3466.0, + "width": 141.33349609375, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "6ccaced3889e4503a9414d808ec33981" + }, + { + "m_Id": "7f3d71a6c96847c099da45f95aafbecb" + }, + { + "m_Id": "d8edec16956c4f15b7d51d6ec10753f4" + }, + { + "m_Id": "39a382d661e2484da71f04c43f48e55f" + }, + { + "m_Id": "8764669016f6442f8152593c18a649d7" + }, + { + "m_Id": "26e48352a08441bfa694dcea54c06e36" + }, + { + "m_Id": "3e94a0d106064bdb864c960512ef4026" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3e25be96bb3747738c238cf3a741d5df", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "3e372195f4bd4845852a37839e5b602d", + "m_Guid": { + "m_GuidSerialized": "60abd046-2a1a-48cd-a0af-2f702f7f53ab" + }, + "m_Name": "_MainTex", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_90CBF488", + "m_OverrideReferenceName": "_MainTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":28684132378477856,\"guid\":\"8f586378b4e144a9851e7b34d9b748ee\",\"type\":2}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "3e94a0d106064bdb864c960512ef4026", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "3ec4797e381747829ef4712c85fcf7a1", + "m_Guid": { + "m_GuidSerialized": "020d65cc-50a8-4b8a-a624-90d7b489f549" + }, + "m_Name": "Specular Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_3ec4797e381747829ef4712c85fcf7a1", + "m_OverrideReferenceName": "_SpecularPower", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 4.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "3fdf4b7bc5d4426492dcc057603ef4a6", + "m_Guid": { + "m_GuidSerialized": "675d2567-3fca-4da6-9462-dfa4924950f1" + }, + "m_Name": "_OutlineUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_D66D89E6", + "m_OverrideReferenceName": "_OutlineUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "400d0b6c95dd4540ad3da3e8cb7e50b2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "41986ac6400d46709d0ef043a67f6b34", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "41b9b79b3859472882bcea393703eec0", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "424dbeeb009344efa29c304c4979e3d6", + "m_Guid": { + "m_GuidSerialized": "314c37de-c6f2-4463-866d-8588f6fc119e" + }, + "m_Name": "Diffuse Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_424dbeeb009344efa29c304c4979e3d6", + "m_OverrideReferenceName": "_Diffuse", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "42a586e4f6ec40eeaba891b7fd133864", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4934.0, + "y": -4442.99951171875, + "width": 133.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "da7a06d393a44089842070d51d2aa0a6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "42cadae0923e4969b50bbc3f78185934", + "m_Title": "Face + 3 Outlines + Underlay", + "m_Position": { + "x": -5437.0, + "y": -3558.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4328cdbf78b94c038fd614c59bfe1cac", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "44317f2e371447e2a8d894f8a021a235", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Layer1 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4004.999755859375, + "y": -4173.0, + "width": 191.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "10a99c07aad742349d258db16838c129" + }, + { + "m_Id": "b85d677872b44421bf5536f42ba0267c" + }, + { + "m_Id": "75aba700d74d4b2687bf3166cf1da3e2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer1", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "44806230fa384c1e95f9c5918a14f056", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4488af8ff6a7421298a7e827f567263b", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4109.0, + "width": 158.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "66f69ef16eac4eb48357bde804cf3c39" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "4648b46ad29a4008a80de4f8a5a5b813", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4576.0, + "y": -2437.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "b2baf44eae52473cb6cda7b1debece01" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "46fbf3eeb0ea4470869cba7443249295", + "m_Guid": { + "m_GuidSerialized": "be87c5a3-e361-4b95-89c8-911c39a51c0d" + }, + "m_Name": "Outline Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_A0B54237", + "m_OverrideReferenceName": "_OutlineTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "47d020251e9841a5b1f0fd64396026a1", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "48390d02257d41bf98eace1deaa4c539", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "8036d0e6090b456e9b4ea87227868236" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Position" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "484b51c50485473b819c4f05087b32d7", + "m_Title": "Underlay", + "m_Position": { + "x": -5253.0, + "y": -4542.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4907352322c644ebacdf2ca30f2994fd", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "49dabfd48a78475882e664526b483ce1", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "49e7c3ad55ce458797f0e60c950cb965", + "m_Guid": { + "m_GuidSerialized": "31b55db9-0da1-4ec4-af2b-d83747ed5bc4" + }, + "m_Name": "Underlay Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_CE9DEDB3", + "m_OverrideReferenceName": "_UnderlayOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "4a0041116f73406db7a62ae80ff54ef4", + "m_Guid": { + "m_GuidSerialized": "a2d96028-f92f-4076-8376-42249ca40935" + }, + "m_Name": "_ScaleRatioA", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "_ScaleRatioA", + "m_DefaultReferenceName": "_ScaleRatioA", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4a66dcbe712a4d40bd8f355b834594b5", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "4abff6ff92fa4a05b203f10580988335", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4293.3330078125, + "y": -3497.99951171875, + "width": 140.66648864746095, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "b015d1b7e4134c59baf6851e7649802c" + }, + { + "m_Id": "d9dc4839ee2847999110bdb234d6041a" + }, + { + "m_Id": "91d6a9a5fbc04ea49075cb51835e7264" + }, + { + "m_Id": "f42ad06b3c6a45d3ab33de904c063412" + }, + { + "m_Id": "ed6c215a65584deeaefad1d2c7743044" + }, + { + "m_Id": "edbee7a8952b46529ac5ad0365775774" + }, + { + "m_Id": "70337a74f6ad4b7bb6befc825219bab1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4b2d9ea03bf64fa19dcae1511d2581da", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4bda5c294e1949138d033640e1d385b4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4c28ee9109014fa086e5de7a3993341d", + "m_Id": 0, + "m_DisplayName": "Softness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4c334de01ecd429baa7652fc6002536b", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4d1cb1a475df49f9a148195a65f5453a", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4d9ce48719d143748f9f8e22da6f9ddc", + "m_Id": 5, + "m_DisplayName": "TextureWidth", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureWidth", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4e64dac49ddc47c3b5b1e27b17a08304", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "4e90ca54c0cc46a18ea600be7c80413a", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "4eb3c00a1ca44e10be833b7ca61ff059", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4f194ff591484e908fc2bcdacbcf2570", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4255.0, + "y": -2771.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "2b01ea3023e34c94af1754e4dcea8f2e" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "509e6f38505b4b0695b263706a55028f", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "51378bae98a94c309785d14cd5cbb453", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "GetSurfaceNormal (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4067.333251953125, + "y": -3881.99951171875, + "width": 263.9999694824219, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "5b0077c23eae443887872f84227deccc" + }, + { + "m_Id": "3915c1927ffe49f8967304321cfbe497" + }, + { + "m_Id": "4d9ce48719d143748f9f8e22da6f9ddc" + }, + { + "m_Id": "ebd6d75abcb84108bcadbfe7ee5f6244" + }, + { + "m_Id": "ef9738ec7e894772a14e9dce441c16c6" + }, + { + "m_Id": "9eeec1a9713045af8845cea263d5ea48" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GetSurfaceNormal", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "51f76f8a53ad43a4ad028426548ce9ba", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "52798bdb86f6400e86489a7a368e9f8b", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6460.6669921875, + "y": -3113.333251953125, + "width": 135.33349609375, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "1df58cfa4dad4c449d01ee1c5ea05f2e" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "53073e5ea924459fa6681a4943e9f947", + "m_Guid": { + "m_GuidSerialized": "5fdac24e-2d58-4471-80ce-79c3ab9a2564" + }, + "m_Name": "Outline Color 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_DBAB5AEC", + "m_OverrideReferenceName": "_OutlineColor2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.009433984756469727, + "g": 0.02534518577158451, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "54d7a93ffec5490aa4591da23a21b693", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "55ffa45ec3654d5e88089fb40d2b0465", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "56c25395796e4d2fbe5c892d428d1620", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5071.99951171875, + "y": -3427.0, + "width": 129.99998474121095, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "9eb8137a6c2e41bbafdc8b0732dd47a3" + }, + { + "m_Id": "36a0c473c4c04c3a930dd38f3920d410" + }, + { + "m_Id": "068ae649e00b40e198ec5a30ad741fab" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "57abc172afd449e2a4d567f93432507b", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "582d6e289dbe4fdca7cf0307273eaa2f", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "59bd90a849624124bae6464ee3669aa6", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3972.0, + "y": -2385.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "2e4eb1ef08bb44178c82e53872485e0f" + }, + { + "m_Id": "8695190a5e614f2d90081871a8a06fc2" + }, + { + "m_Id": "81bdb47901ef48e5a588c6724b1b0142" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "59cea37675824d99995b370f09cef20a", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "5b0077c23eae443887872f84227deccc", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5b3ff4ee364f4d7a923b530ad60d8762", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5bd258837c514ff7ab0bf7027e762c18", + "m_Guid": { + "m_GuidSerialized": "2d8f3ee9-1307-4b58-a60d-526e86b07109" + }, + "m_Name": "Bevel Roundness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_AB6A015F", + "m_OverrideReferenceName": "_BevelRoundness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5da82bf481f8489ebd05e997f617f51b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": 4.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5e42524569844befad16fda5a94eb9cb", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5fbe253f3e444f2aa8ac717f9c856619", + "m_Guid": { + "m_GuidSerialized": "0a61c93f-6430-4aa6-af07-79bc3b411ccd" + }, + "m_Name": "Bevel Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B50BBFCC", + "m_OverrideReferenceName": "_BevelWidth", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61133d79a89048c195f54939b2a1d30a", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61a6ac5f29344d109411f26850ab0a96", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6271438664e74b3fbf723bd6a1f50f8b", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "62bc551cea604e88b7858cc37d96a98a", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "636180f6e0504f2baaa5cc086980cb47", + "m_Guid": { + "m_GuidSerialized": "c1223e37-093d-4d5a-b2b0-cd9cc3e4f88e" + }, + "m_Name": "Outline Offset 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_636180f6e0504f2baaa5cc086980cb47", + "m_OverrideReferenceName": "_OutlineOffset1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "63c7cd57fc3c45a9a97b514fdae32693", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5235.99951171875, + "y": -3386.999755859375, + "width": 141.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "c422a9a9ff824176aad2241f58c44d0b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "641eda269d7b4da9acb65f8d50035ea9", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "65b3dc13b2b6484283ffe5abfe87a06a", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "65c8e64a7535466e933eed08a2f77532", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4759.99951171875, + "y": -3498.666259765625, + "width": 186.0, + "height": 251.33323669433595 + } + }, + "m_Slots": [ + { + "m_Id": "256d41e89a204d22951450de1c38051d" + }, + { + "m_Id": "0a67ca5280214bd794dc0ad66b5710a9" + }, + { + "m_Id": "ebbd94a7102a4457a48ac492de3bff14" + }, + { + "m_Id": "6271438664e74b3fbf723bd6a1f50f8b" + }, + { + "m_Id": "c9b722d107ce4cd6a748c883472b9b0f" + }, + { + "m_Id": "74cf69e61bef44589521f1bf2bf3c59a" + }, + { + "m_Id": "6e532f83d1c44e839bcfc5845d3b01d6" + }, + { + "m_Id": "cb5e9f9567e84f8fa5463efc0e256e19" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "66f69ef16eac4eb48357bde804cf3c39", + "m_Id": 0, + "m_DisplayName": "_UnderlayColor", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "67a519f507384ff1861df5d8d5b486be", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4278.0, + "y": -3939.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "c3e6d7c20c184bf39fd8822130e693e7" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "68ec7c31365549d6a8ce883edfc02de2", + "m_Id": 4, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6a7af6143e114a538663e71f56731a21", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "6b2f65c1463f4f7bad16c54a95d2fe75", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5070.0, + "y": -3301.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "1d35fa1fb5004f96a65ace54fbe4f1ad" + }, + { + "m_Id": "fa6de3be9f5b4411b5081b49e645f424" + }, + { + "m_Id": "400d0b6c95dd4540ad3da3e8cb7e50b2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6ccaced3889e4503a9414d808ec33981", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "6dfc1177dd0541a7a780fbf911ad1956", + "m_Id": 0, + "m_DisplayName": "_OutlineTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6e13f3cd573c467a94379f45d96cb690", + "m_Id": 2, + "m_DisplayName": "SSR", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "6e532f83d1c44e839bcfc5845d3b01d6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "6e8946a245e842b38231d4a241bfb3ef", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BaseColor", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3026.0, + "y": -3110.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "ef0b93f78372439696f50711eaf57d90" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BaseColor" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6fbdcc5a972b4fa883dc5f21e525a376", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "70337a74f6ad4b7bb6befc825219bab1", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "712da461f71a454db59d349f752d41ee", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "71dd947935b64ce38f0d25406dde447b", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "724e17584e97443e9e285dfa7253c8e3", + "m_Id": 0, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 2, + "m_Value": 0.15000000596046449, + "m_DefaultValue": 1.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "72fb5a0d7796446b9e2b929cb32facdc", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "7444469eb9884253819add9ef96baa25", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4298.0, + "y": -3809.99951171875, + "width": 144.66648864746095, + "height": 129.33323669433595 + } + }, + "m_Slots": [ + { + "m_Id": "03182b3263304258b265266325c21f65" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "748c31bbcecc4b30bec2e42c0612175b", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "74b41464cbed4e9e8e23af5ab9be40cf", + "m_Guid": { + "m_GuidSerialized": "41afbdcb-f3ae-4340-8973-1c1998c992a2" + }, + "m_Name": "Outline Offset 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "74cf69e61bef44589521f1bf2bf3c59a", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "757174b6f25040fdbb20355a21752222", + "m_Id": 0, + "m_DisplayName": "Outline Offset 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "75aba700d74d4b2687bf3166cf1da3e2", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "75c5657544c648058b20cea090f48dbf", + "m_Id": 0, + "m_DisplayName": "_OutlineUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "767769f736d5478cba5f10a415e28e7f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "773b90134e894e429203c0c83e80b9de", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "77e28f3e930b4c249145630ec961af95", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "79147f6986644769b58d9ed64fe771e1", + "m_Id": 0, + "m_DisplayName": "OutlineMode", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7984fd094e1147bdabb4e26fbd3d31c8", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3244.000244140625, + "y": -3414.0, + "width": 130.0, + "height": 118.00000762939453 + } + }, + "m_Slots": [ + { + "m_Id": "082e9706dffc4c188270980d4e44ce0f" + }, + { + "m_Id": "f2a351a5375c441b8d9ab7e2c9545a77" + }, + { + "m_Id": "41986ac6400d46709d0ef043a67f6b34" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "7a046f410ce64aa88438b0bfd412c045", + "m_Guid": { + "m_GuidSerialized": "d47271f5-5a84-47bf-a09e-c825d2aeb013" + }, + "m_Name": "Outline Color 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_551702C5", + "m_OverrideReferenceName": "_OutlineColor3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "7a0f504e4175406dbd8134250f4e350b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7a80e8839f0e4a1d9a6c0814f8793ee6", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4931.0, + "y": -3452.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "6fbdcc5a972b4fa883dc5f21e525a376" + }, + { + "m_Id": "0ba4932e164847878ddb7b7bcff96985" + }, + { + "m_Id": "9178663316db43d582f1c4a127d307c6" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7acfafd73b8c4dfab8c55c18a887e087", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "7b8a19bd115e4167a25b59cb3218a817", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "7c27ccb2c2dc4ca59c5438c3358630ca", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7d7696aa6d184b4fb9c316a9dec37aee", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4928.0, + "y": -3326.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "4d1cb1a475df49f9a148195a65f5453a" + }, + { + "m_Id": "47d020251e9841a5b1f0fd64396026a1" + }, + { + "m_Id": "62bc551cea604e88b7858cc37d96a98a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7d78a616c2754cc28d1f32cf66ade611", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3973.0, + "y": -2796.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "d9bcb754db834583b6518c5ed5152114" + }, + { + "m_Id": "861d4258049a4a3e8164f7297090f88e" + }, + { + "m_Id": "a7c06457d7454693a8bc3dc95257b2c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "7e0fadb2533f496192c1ad3e78642010", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4188.0, + "width": 173.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d48c3871e3064027a10ae9f4babd3be0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "7f2e6b5f15364ed9835d67d0cf4f8f65", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Tangent", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2586.0, + "y": -3592.0, + "width": 200.0, + "height": 41.0 + } + }, + "m_Slots": [ + { + "m_Id": "85ff8667d72947edada4e9fb4ff60559" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Tangent" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7f3d71a6c96847c099da45f95aafbecb", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", + "m_ObjectId": "8036d0e6090b456e9b4ea87227868236", + "m_Id": 0, + "m_DisplayName": "Position", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Position", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "80e665a5eeb64730a51742f698bf0d48", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "8135ca333f8f4ea78163743e6ec1f55c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4050.666259765625, + "y": -3139.99951171875, + "width": 121.99999237060547, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "d6a6a119394e4082a11bc024a6e42ef8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "81bdb47901ef48e5a588c6724b1b0142", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "81e8ed0534534674a74263e6161a2a1a", + "m_Guid": { + "m_GuidSerialized": "78aab961-c4a8-41f3-b203-1239c3b33b13" + }, + "m_Name": "Underlay Dilate", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_D48690B9", + "m_OverrideReferenceName": "_UnderlayDilate", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "82af2db1018543d7832af96c1cfc981f", + "m_Guid": { + "m_GuidSerialized": "37906c7b-9a3a-454b-a62a-9aa097e64bde" + }, + "m_Name": "Light Angle", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_82af2db1018543d7832af96c1cfc981f", + "m_OverrideReferenceName": "_LightAngle", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 6.28000020980835 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "82d5443fe54d4a3b9420f8745d00a632", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": 8.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "849275cac05e4ca8bd0b38ab7ae43bf8", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "84dc74cdbd8c45e1b189e4fd9a69942d", + "m_Id": 0, + "m_DisplayName": "Outline Offset 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "85a1ad8e741e41759002e8cdc8cd0b96", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "ScreenSpaceRatio (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6112.0, + "y": -3308.0, + "width": 258.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "6e13f3cd573c467a94379f45d96cb690" + }, + { + "m_Id": "8e6ed600f6504f4083092f5b511e44c4" + }, + { + "m_Id": "93b161cce4504cb79c97b6d8db178de7" + }, + { + "m_Id": "2bf5f2fdd2984599b7323d10cfb1d240" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ScreenSpaceRatio", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "85b5940eb77e4625812ded7215bab8d7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4050.666259765625, + "y": -3095.99951171875, + "width": 121.99999237060547, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "ada023d617104472b8ab75a81558c0a1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot", + "m_ObjectId": "85ff8667d72947edada4e9fb4ff60559", + "m_Id": 0, + "m_DisplayName": "Tangent", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tangent", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "861d4258049a4a3e8164f7297090f88e", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "867a4ae13c0d4a028c71bc1063824c14", + "m_Guid": { + "m_GuidSerialized": "d483c212-0a30-4f6d-b94d-9abbc83a6522" + }, + "m_Name": "Outline Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_C68C9E14", + "m_OverrideReferenceName": "_IsoPerimeter", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 2, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "8695190a5e614f2d90081871a8a06fc2", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8764669016f6442f8152593c18a649d7", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "880bb02c6c6b49b18aa6ebc66dc566a0", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "88253223d2c34ecfab92b0c344048f94", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "ComputeSDF (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4323.0, + "width": 227.99998474121095, + "height": 190.0 + } + }, + "m_Slots": [ + { + "m_Id": "c52a1744a9a14989b0ae452ad6de6061" + }, + { + "m_Id": "a03db80c558b4f87a330c5ae0a9443a5" + }, + { + "m_Id": "8f1b1d1e8ff24b3284993e52354e54fa" + }, + { + "m_Id": "5da82bf481f8489ebd05e997f617f51b" + }, + { + "m_Id": "82d5443fe54d4a3b9420f8745d00a632" + }, + { + "m_Id": "61133d79a89048c195f54939b2a1d30a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8902cb30b1684db8b996562e0140cb18", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8a08179f99d649d289b8053d5fa0ad22", + "m_Id": 0, + "m_DisplayName": "Underlay Offset", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8a5d204e1abd4f6894607d1a497f6e69", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8b66f4e6bc9d4662b3218ac33a69839f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8c38a5d8327f456e9783740c05382619", + "m_Id": 3, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8cbd81814903479ea1d3151c1f38183e", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "8cf8aae64c1d443f9303126886b40f17", + "m_Guid": { + "m_GuidSerialized": "8d78c9a5-aaef-41fb-af68-2358e401d7ac" + }, + "m_Name": "_UnderlayColor", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_2F5FE804", + "m_OverrideReferenceName": "_UnderlayColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8e6ed600f6504f4083092f5b511e44c4", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "8ed907a2cc7949b68a283ae243ea1977", + "m_Guid": { + "m_GuidSerialized": "36803443-a9bc-4f3c-a4f2-7d66a5417ac1" + }, + "m_Name": "Outline Offset 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8f1b1d1e8ff24b3284993e52354e54fa", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9147636b0cfa466a9b37a013d8f693bf", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5567.0, + "y": -3862.000244140625, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a4f471e3221c4134b291bd9d2ba22db6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "9178663316db43d582f1c4a127d307c6", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "91890fe48ebe4717aea61ecaf3ad4861", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3114.000244140625, + "y": -3414.0, + "width": 120.00000762939453, + "height": 149.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "3dccd64e7f324bc1a75c1479d7a67c51" + }, + { + "m_Id": "e444f2c81d1e48329fa2c91005277e8d" + }, + { + "m_Id": "b2c26292b7434733878a9b042f44de89" + }, + { + "m_Id": "964fea1fd4b24f4daf5bef84c4b45118" + }, + { + "m_Id": "deac82280a2b43078e0e40863e2d974c" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "91d6a9a5fbc04ea49075cb51835e7264", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "928621a3ca2d41c89a10336bbbc81ddc", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "93b161cce4504cb79c97b6d8db178de7", + "m_Id": 3, + "m_DisplayName": "TextureSize", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureSize", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget", + "m_ObjectId": "94300469581b4924ac7dda496811d45d", + "m_Datas": [], + "m_ActiveSubTarget": { + "m_Id": "0eeb5490760e492f8c9691086fa00929" + }, + "m_AllowMaterialOverride": false, + "m_SurfaceType": 1, + "m_ZTestMode": 4, + "m_ZWriteControl": 0, + "m_AlphaMode": 0, + "m_RenderFace": 0, + "m_AlphaClip": true, + "m_CastShadows": true, + "m_ReceiveShadows": true, + "m_AdditionalMotionVectorMode": 0, + "m_AlembicMotionVectors": false, + "m_SupportsLODCrossFade": false, + "m_CustomEditorGUI": "TMPro.EditorUtilities.TMP_SDFShaderGUI", + "m_SupportVFX": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "945b45993dd84a979755b98c48138f72", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "952d0fa5cd744df0b434cd38e9a90b93", + "m_Guid": { + "m_GuidSerialized": "ce395871-ddeb-47c3-a31d-07855800c197" + }, + "m_Name": "_UnderlaySoftness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_F2B9E3EF", + "m_OverrideReferenceName": "_UnderlaySoftness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "95928bcb6a284b8d88105a84c2e1d3ce", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4744.0, + "y": -2591.0, + "width": 155.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d880558893fb442b9320cf55885d1117" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "964fea1fd4b24f4daf5bef84c4b45118", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "98934a69591249d5b8b92b39045359a3", + "m_Title": "Outline1 Texture", + "m_Position": { + "x": -4746.0, + "y": -2497.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "998db5e5901e45b29040eb2099370071", + "m_Guid": { + "m_GuidSerialized": "6f383614-f2ad-4269-be8f-87b0ecb03cf0" + }, + "m_Name": "Bevel Clamp", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_5BD7E808", + "m_OverrideReferenceName": "_BevelClamp", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "9c228fac287d446296b91a4acf5cec59", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4569.0, + "y": -3498.000244140625, + "width": 184.0, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "582d6e289dbe4fdca7cf0307273eaa2f" + }, + { + "m_Id": "1db37082bf844442804487b4944352de" + }, + { + "m_Id": "8b66f4e6bc9d4662b3218ac33a69839f" + }, + { + "m_Id": "4a66dcbe712a4d40bd8f355b834594b5" + }, + { + "m_Id": "a0285c9c381a49cba194709efa0a7c85" + }, + { + "m_Id": "b2728d0dd3ce40678867c94a7d977916" + }, + { + "m_Id": "e141833aa78b4fd59ecad949beb43a78" + }, + { + "m_Id": "51f76f8a53ad43a4ad028426548ce9ba" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9c26fdddba244d36a854298c00473247", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "9d3c3383d5934a17bf9efbb7fd9e9043", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5412.0, + "y": -3315.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "232b1aa09e67479abae141d3c76d3c5b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e6e50a71d9843b49b62ebe1cf7d3d59", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4486.0, + "y": -3865.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "3535ae87c6dd4769b52b20d9eca61069" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e87ce9607e14015a3790c528ca5dfda", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4598.0, + "y": -2251.0, + "width": 167.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "75c5657544c648058b20cea090f48dbf" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "9eb8137a6c2e41bbafdc8b0732dd47a3", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "9eeec1a9713045af8845cea263d5ea48", + "m_Id": 6, + "m_DisplayName": "IsFront", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "IsFront", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "9f0de188085746d5a19073da1de85ddb", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4118.0, + "y": -2771.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "7c27ccb2c2dc4ca59c5438c3358630ca" + }, + { + "m_Id": "373f1de8db6c429c9d46c781f741d7a4" + }, + { + "m_Id": "fd0b096ed5b74f9e9ec51327be200731" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a0285c9c381a49cba194709efa0a7c85", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a03db80c558b4f87a330c5ae0a9443a5", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a161b772c7564eee804e3d58f6cb9944", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "a3f8b6e8ae7f48e2989a029904401502", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "a455bd79094c4413a7b7dd80ca8b9368", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4573.0, + "y": -2689.0, + "width": 222.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "4e90ca54c0cc46a18ea600be7c80413a" + }, + { + "m_Id": "2c7a9460724b47daad8df1be144de7c6" + }, + { + "m_Id": "55ffa45ec3654d5e88089fb40d2b0465" + }, + { + "m_Id": "e495a9f7a11f4eb89334e83be154ceb9" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateShaderProperty", + "m_ObjectId": "a4ad98d8828c424384229c344ebe2ed0", + "m_Guid": { + "m_GuidSerialized": "f98fc1a2-bb81-4bd1-a207-23d3a90d518e" + }, + "m_Name": "SamplerState", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "SamplerState_a4ad98d8828c424384229c344ebe2ed0", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": false, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_filter": 0, + "m_wrap": 1, + "m_anisotropic": 0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a4f471e3221c4134b291bd9d2ba22db6", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "a535f3bcbeb14622bb177eb6f46e76f4", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4608.0, + "y": -2293.0, + "width": 177.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "6dfc1177dd0541a7a780fbf911ad1956" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "a6bbb32e8d884be9bb36db91fe4b81b1", + "m_Guid": { + "m_GuidSerialized": "6aa76edf-7b80-46ac-add4-406cf1d85493" + }, + "m_Name": "_GradientScale", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_EAE27356", + "m_OverrideReferenceName": "_GradientScale", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 10.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "a6c38edd2e8743a9b057ba8452b9f129", + "m_Guid": { + "m_GuidSerialized": "9fc942ee-4a1d-4ced-a5a6-81893e3ddb63" + }, + "m_Name": "Light Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_a6c38edd2e8743a9b057ba8452b9f129", + "m_OverrideReferenceName": "_SpecularColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "a75f7ac601c446469802fe7754c1f279", + "m_Id": 0, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a7942746b5564dc7bbbae1deb2403022", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "a7c06457d7454693a8bc3dc95257b2c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "aa2794b8f0e24bf281d22e0fef0647be", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "aa3e347d733e48f7b65d8a8847370eec", + "m_Group": { + "m_Id": "" + }, + "m_Name": "EvaluateLight (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3633.000244140625, + "y": -3805.000244140625, + "width": 179.00001525878907, + "height": 118.00000762939453 + } + }, + "m_Slots": [ + { + "m_Id": "0699eea947fc426cbfeb8744cf120222" + }, + { + "m_Id": "0c4dc51f26484c26ad88a3fe4002abcd" + }, + { + "m_Id": "d5173cc3c6cd4f1998550f3187a3e9c8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "EvaluateLight", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aa87c72ac0e64469acc34f936f00b3d0", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4225.0, + "width": 193.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "0d7878dd226d4cfb81a991dc312309fc" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "abd59150589b436cadf8c9e6f43ccb8e", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "aca823a8188948c782eddaf0f45e1868", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalOS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2542.0, + "y": -3404.000244140625, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "e386b183a18245a796b024022f7f3074" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalOS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "acd0cd5a177f4a97bf23db7219305e3f", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4348.0, + "y": -3905.99951171875, + "width": 185.33299255371095, + "height": 101.33324432373047 + } + }, + "m_Slots": [ + { + "m_Id": "945b45993dd84a979755b98c48138f72" + }, + { + "m_Id": "e51a636b2621440eb94cc802c1cf4bfc" + }, + { + "m_Id": "1bdde3efd3b7464b8934c555be0f8a48" + }, + { + "m_Id": "8a5d204e1abd4f6894607d1a497f6e69" + }, + { + "m_Id": "a161b772c7564eee804e3d58f6cb9944" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ada023d617104472b8ab75a81558c0a1", + "m_Id": 0, + "m_DisplayName": "Outline Color 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aef5c44f84e04c3185e0b93e95e34204", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5233.99951171875, + "y": -3141.999755859375, + "width": 143.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "84dc74cdbd8c45e1b189e4fd9a69942d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b000f852aa984e9dae25b125a4607f4e", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b015d1b7e4134c59baf6851e7649802c", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "b0b352c4503a43d083a64e57352b29a0", + "m_Guid": { + "m_GuidSerialized": "01cfcc78-60aa-4f71-a1e3-8d8df6dae253" + }, + "m_Name": "Reflectivity Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_b0b352c4503a43d083a64e57352b29a0", + "m_OverrideReferenceName": "_Reflectivity", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 5.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 5.0, + "y": 15.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "b1188549725543d485436c2e921ffbb2", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4108.0, + "y": -2890.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "281bcee4777040f8a31ee0e10344e98d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "b163c9f1666644b0bba62cf0e12df7bc", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4333.0, + "y": -2713.0, + "width": 180.0, + "height": 180.0 + } + }, + "m_Slots": [ + { + "m_Id": "cce40479b6284b6fa3174db9f09d0ac9" + }, + { + "m_Id": "80e665a5eeb64730a51742f698bf0d48" + }, + { + "m_Id": "1f46181633594ae0a1fb2adb76b42981" + }, + { + "m_Id": "8cbd81814903479ea1d3151c1f38183e" + }, + { + "m_Id": "cfaf3f3a5a1146e194cddad30c95aada" + }, + { + "m_Id": "b43489e37a5c4df88f15844292a55ec7" + }, + { + "m_Id": "cd7281fb41aa4e61ac0fdf71d4f4bd46" + }, + { + "m_Id": "f01d52cdcb1647aab35782b4af535efd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 1, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "b224a1cf80604103ad085c799995f3c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b2728d0dd3ce40678867c94a7d977916", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b2baf44eae52473cb6cda7b1debece01", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b2c26292b7434733878a9b042f44de89", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b42e6dbfbc864097af182cbff5c0c1fb", + "m_Id": 0, + "m_DisplayName": "Outline Color 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b43489e37a5c4df88f15844292a55ec7", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "b4a40cb6acd441acb83cfe0240bf910d", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4750.99951171875, + "y": -4274.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "d0b10e52e21941b183f5f635894c76c8" + }, + { + "m_Id": "0d6a57754b824f6db9cefa6953bc06a9" + }, + { + "m_Id": "773b90134e894e429203c0c83e80b9de" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "b571db753a1948d5a6f1de4e7d0c7238", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5727.0, + "y": -3827.000244140625, + "width": 184.0, + "height": 101.0 + } + }, + "m_Slots": [ + { + "m_Id": "5b3ff4ee364f4d7a923b530ad60d8762" + }, + { + "m_Id": "c183b5bd9bbe45089f93996e73110918" + }, + { + "m_Id": "1196ae398cc348349ab0c1a23fdab4bd" + }, + { + "m_Id": "1d7d96a5770b4f8ebb162bdbde020bca" + }, + { + "m_Id": "49dabfd48a78475882e664526b483ce1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b691728a389a417d9b4f2d02541209c2", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b7f9ac55517141868bfb9d2ad6429792", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b85d677872b44421bf5536f42ba0267c", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "bafc3d388c1e444e820897b9a3d6029a", + "m_Name": "", + "m_ChildObjectList": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "4a0041116f73406db7a62ae80ff54ef4" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "bc9afcb18afa4ccc82d2cdc34d3f4641", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -5537.0, + "y": -3827.000244140625, + "width": 126.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "5e42524569844befad16fda5a94eb9cb" + }, + { + "m_Id": "54d7a93ffec5490aa4591da23a21b693" + }, + { + "m_Id": "aa2794b8f0e24bf281d22e0fef0647be" + }, + { + "m_Id": "200245fc8bbe4826b209ab5f7ffe074c" + }, + { + "m_Id": "fc2e62201c5847e798fd939314413fcd" + }, + { + "m_Id": "fe11fa80cc1847a5a37f6757d521cf25" + }, + { + "m_Id": "de0c6f7f7af94defa6c3dbc6433de9d4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c183b5bd9bbe45089f93996e73110918", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "c234e5216678436195ee1a5914bc79da", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4409.0, + "y": -2338.0, + "width": 222.0, + "height": 142.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "8902cb30b1684db8b996562e0140cb18" + }, + { + "m_Id": "3db1608e927e4102a3c3a88e9fcab39a" + }, + { + "m_Id": "0f7ffb6d2de4447f9736780cbcee8e07" + }, + { + "m_Id": "d4954b7bbbb0412cbc997bcbe7dfa808" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "c35312edaa2344788b1964ee2f63a236", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "c3e6d7c20c184bf39fd8822130e693e7", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "c422a9a9ff824176aad2241f58c44d0b", + "m_Id": 0, + "m_DisplayName": "Outline Offset 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "c478c32c45884c57a62f7b2aa8ddc3b0", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c52a1744a9a14989b0ae452ad6de6061", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c6bdb985bc16435fa72f5a3c81bb633c", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c7d4094601ac4bc1aead609c72b1f1c1", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c7ddee91dc5b48dc828309c77fdb0b88", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4266.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a7942746b5564dc7bbbae1deb2403022" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "c88fcbaeea954a5f9c68c339fa8b604d", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c9b722d107ce4cd6a748c883472b9b0f", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c9d7f0dbae7d422985a1cc87c025e76b", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4284.0, + "y": -3165.0, + "width": 144.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "79147f6986644769b58d9ed64fe771e1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "c9ec735d1a1046769e5601b2c97c849a", + "m_Guid": { + "m_GuidSerialized": "281a9526-c332-4471-a44e-ece4a1e95ef6" + }, + "m_Name": "Face Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_75569DEA", + "m_OverrideReferenceName": "_FaceTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ca2a1083dc014f39ab8af0cdf140866b", + "m_Id": 0, + "m_DisplayName": "_FaceTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "cb3c0c3f08654b068bea44c4ffb15f4a", + "m_Guid": { + "m_GuidSerialized": "21009d12-8d94-4273-b0d0-a8ee0608ddcf" + }, + "m_Name": "OutlineMode", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_cb3c0c3f08654b068bea44c4ffb15f4a", + "m_OverrideReferenceName": "_OutlineMode", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cb5e9f9567e84f8fa5463efc0e256e19", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "cb7117ecb1d047a8b2cb00ed552cb181", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Alpha", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3032.66650390625, + "y": -3029.33349609375, + "width": 200.0, + "height": 41.33349609375 + } + }, + "m_Slots": [ + { + "m_Id": "724e17584e97443e9e285dfa7253c8e3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Alpha" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cc88101667c9488f9c5a716e851c1b21", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cce40479b6284b6fa3174db9f09d0ac9", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "cd7281fb41aa4e61ac0fdf71d4f4bd46", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cda5e3b4c1054bf3a65c0b7ec6bc778a", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "cdddee3a537c464697357f11b966f9b8", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4420.0, + "y": -4483.0, + "width": 156.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "41b9b79b3859472882bcea393703eec0" + }, + { + "m_Id": "c7d4094601ac4bc1aead609c72b1f1c1" + }, + { + "m_Id": "767769f736d5478cba5f10a415e28e7f" + }, + { + "m_Id": "b691728a389a417d9b4f2d02541209c2" + }, + { + "m_Id": "045c4f6b050549c7a0efb208e6349779" + }, + { + "m_Id": "509e6f38505b4b0695b263706a55028f" + }, + { + "m_Id": "204dacb5a95b424facf11cb6f65bd188" + }, + { + "m_Id": "35cbea6373dd4e4f8d0fea36e8add392" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "cfaf3f3a5a1146e194cddad30c95aada", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d0a791a544614667962a9a9a9ce0c68a", + "m_Title": "Screen Space Ratio", + "m_Position": { + "x": -6485.591796875, + "y": -3365.3779296875 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d0b10e52e21941b183f5f635894c76c8", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d1a17e42e7a04dc38984e3c01149445b", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d219977210094c0082c517d8dc00c8bb", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d258902c6ec74942afdb9ebf8c1d07f8", + "m_Title": "Generate Normal", + "m_Position": { + "x": -4511.33349609375, + "y": -3999.3330078125 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "d30452ac6b244ecca03df4d7b4de9f81", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d48c3871e3064027a10ae9f4babd3be0", + "m_Id": 0, + "m_DisplayName": "_UnderlaySoftness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d4954b7bbbb0412cbc997bcbe7dfa808", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "d4df208fc23b42f2b52364124f1b661c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5236.99951171875, + "y": -3260.999755859375, + "width": 143.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "757174b6f25040fdbb20355a21752222" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "d5173cc3c6cd4f1998550f3187a3e9c8", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d6a6a119394e4082a11bc024a6e42ef8", + "m_Id": 0, + "m_DisplayName": "Outline Color 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d880558893fb442b9320cf55885d1117", + "m_Id": 0, + "m_DisplayName": "_FaceUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d8edec16956c4f15b7d51d6ec10753f4", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d9bcb754db834583b6518c5ed5152114", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d9dc4839ee2847999110bdb234d6041a", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "da7a06d393a44089842070d51d2aa0a6", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "daaf032a109749a88c9b8ff8e1f8b541", + "m_Title": "Offset Scale", + "m_Position": { + "x": -5893.0, + "y": -3921.000244140625 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "dbcb748279484a4590e53518c49122b8", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4744.0, + "y": -2762.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "7a0f504e4175406dbd8134250f4e350b" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "dc75c4e3a1bc4bb0a128086c2b0679a5", + "m_Guid": { + "m_GuidSerialized": "85cd941f-2fd2-43a3-b0fa-9f728bfb4220" + }, + "m_Name": "Face Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_99AFBB3D", + "m_OverrideReferenceName": "_FaceColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "de0c6f7f7af94defa6c3dbc6433de9d4", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "deac82280a2b43078e0e40863e2d974c", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "def8e0b9d8384982bc5b4c32d877e458", + "m_Id": 0, + "m_DisplayName": "Outline Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "dff7a66b353a4023b29c9d937da77960", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4602.0, + "y": -4298.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "7b8a19bd115e4167a25b59cb3218a817" + }, + { + "m_Id": "0b57f2d35157477ab2b29a5aac14ae8b" + }, + { + "m_Id": "e9e06fcb161e44ba8cc9f6f60264df78" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "e141833aa78b4fd59ecad949beb43a78", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e2d28f29bbac4983a401574480b5ca28", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "e386b183a18245a796b024022f7f3074", + "m_Id": 0, + "m_DisplayName": "Normal (Object Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalOS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e444f2c81d1e48329fa2c91005277e8d", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "e495a9f7a11f4eb89334e83be154ceb9", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e51a636b2621440eb94cc802c1cf4bfc", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e6e80c6b0db545cda26b079a9a78fbb3", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "e818605f8f5a4f01bf61caaa33693581", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "ComputeSDF44 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4113.0, + "y": -3368.999755859375, + "width": 243.99998474121095, + "height": 214.0 + } + }, + "m_Slots": [ + { + "m_Id": "641eda269d7b4da9acb65f8d50035ea9" + }, + { + "m_Id": "f6823778a3cf42d5bbe8a83e5f9c9fa3" + }, + { + "m_Id": "9c26fdddba244d36a854298c00473247" + }, + { + "m_Id": "f684c5678e9e4f078157a3ab7ef5057b" + }, + { + "m_Id": "14ad19bf20a140dd88d58452d7df688b" + }, + { + "m_Id": "215a82c127204988b751de7d3a39b955" + }, + { + "m_Id": "c478c32c45884c57a62f7b2aa8ddc3b0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF44", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "e9e06fcb161e44ba8cc9f6f60264df78", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebbd94a7102a4457a48ac492de3bff14", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebd6d75abcb84108bcadbfe7ee5f6244", + "m_Id": 7, + "m_DisplayName": "TextureHeight", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureHeight", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "ec184d6d9fb2494897774c9e7d279e6d", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4754.0, + "y": -2625.0, + "width": 145.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ca2a1083dc014f39ab8af0cdf140866b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "07946387933e416db576b677f0711e5f" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "ec1f2e8bc9fd4ae38b133c60ee6c49b8", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4927.0, + "y": -3204.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "748c31bbcecc4b30bec2e42c0612175b" + }, + { + "m_Id": "4bda5c294e1949138d033640e1d385b4" + }, + { + "m_Id": "4e64dac49ddc47c3b5b1e27b17a08304" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "ec79eb447dfd47a9b3380344c6a60f43", + "m_Guid": { + "m_GuidSerialized": "54c77f8b-0534-4b35-a3f0-83ab2ebe6c1f" + }, + "m_Name": "_OutlineTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1774DE83", + "m_OverrideReferenceName": "_OutlineTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "ecf16c34d46f4502ac601f0c38c7576b", + "m_Title": "Vertex Color", + "m_Position": { + "x": -3614.000244140625, + "y": -3549.000244140625 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ed1d1f1613334c3bb904dd08161cd7e5", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ed6c215a65584deeaefad1d2c7743044", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "edbee7a8952b46529ac5ad0365775774", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "ef0b93f78372439696f50711eaf57d90", + "m_Id": 0, + "m_DisplayName": "Base Color", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BaseColor", + "m_StageCapability": 2, + "m_Value": { + "x": 0.7353569269180298, + "y": 0.7353569269180298, + "z": 0.7353569269180298 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_ColorMode": 0, + "m_DefaultColor": { + "r": 0.5, + "g": 0.5, + "b": 0.5, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "ef9738ec7e894772a14e9dce441c16c6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "f01d52cdcb1647aab35782b4af535efd", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "f23a8b2b7c85478388ff7a8c8a6de740", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Layer4 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3819.0, + "y": -3286.0, + "width": 193.0, + "height": 190.0 + } + }, + "m_Slots": [ + { + "m_Id": "0fac35636fca4474a6afaefc3c757775" + }, + { + "m_Id": "cc88101667c9488f9c5a716e851c1b21" + }, + { + "m_Id": "68ec7c31365549d6a8ce883edfc02de2" + }, + { + "m_Id": "02559cbe5ad441a3904ccb75ded2b2c5" + }, + { + "m_Id": "34a67e0fef884f9399e674d9eeaf720c" + }, + { + "m_Id": "3802c81c3be24823aa1d7c9997a33c29" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer4", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "f2903158b3624759bca1fcd843698078", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 2.0, + "y": 2.0, + "z": 2.0, + "w": 2.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "f2a351a5375c441b8d9ab7e2c9545a77", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "f383b24f0bc6434dafe44b3e3d338a63", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6318.6669921875, + "y": -3153.3330078125, + "width": 185.33348083496095, + "height": 101.33348846435547 + } + }, + "m_Slots": [ + { + "m_Id": "fb5e1e2a67c14602808358686bb75091" + }, + { + "m_Id": "712da461f71a454db59d349f752d41ee" + }, + { + "m_Id": "b000f852aa984e9dae25b125a4607f4e" + }, + { + "m_Id": "849275cac05e4ca8bd0b38ab7ae43bf8" + }, + { + "m_Id": "59cea37675824d99995b370f09cef20a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "f3d31c1f18d8491a8ecf5cbc37e4b7db", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4291.33349609375, + "y": -3246.0, + "width": 154.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ed1d1f1613334c3bb904dd08161cd7e5" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f42ad06b3c6a45d3ab33de904c063412", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f48f04ad45d046a8b88e71731ed506e7", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "f4ecc442a2d246759f7c2c0412953d28", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Normal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "a3f8b6e8ae7f48e2989a029904401502" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Normal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f6823778a3cf42d5bbe8a83e5f9c9fa3", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f684c5678e9e4f078157a3ab7ef5057b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": { + "x": 3.0, + "y": 2.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "f814deb543c24fbbafbcdb5071d96022", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4569.0, + "y": -3245.000244140625, + "width": 184.0, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "abd59150589b436cadf8c9e6f43ccb8e" + }, + { + "m_Id": "7acfafd73b8c4dfab8c55c18a887e087" + }, + { + "m_Id": "928621a3ca2d41c89a10336bbbc81ddc" + }, + { + "m_Id": "b7f9ac55517141868bfb9d2ad6429792" + }, + { + "m_Id": "09b1b86c1c074337a4c439d3a308dd2e" + }, + { + "m_Id": "1f247658c7ba45fb93c41f51e21acb0d" + }, + { + "m_Id": "d30452ac6b244ecca03df4d7b4de9f81" + }, + { + "m_Id": "215b30ae27784ec3a13360a9029af283" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f864c900600e427ba7793f00c715e971", + "m_Id": 0, + "m_DisplayName": "Outline Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fa6de3be9f5b4411b5081b49e645f424", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DivideNode", + "m_ObjectId": "faace8101df943d8956faa31728cb004", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Divide", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5400.0, + "y": -3851.000244140625, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "77e28f3e930b4c249145630ec961af95" + }, + { + "m_Id": "f2903158b3624759bca1fcd843698078" + }, + { + "m_Id": "30ca940fe2794c949f2a1d4d2caaa446" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "facc84930f544fd7a0205a6176b18ac0", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "fb15d0ba56d54a6192f11e107aeb5fa8", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "fb5e1e2a67c14602808358686bb75091", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "fc2e62201c5847e798fd939314413fcd", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fd0b096ed5b74f9e9ec51327be200731", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "fdb77c3e92ee497b88ca5dc46dc45350", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4171.0, + "y": -2362.0, + "width": 180.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "4328cdbf78b94c038fd614c59bfe1cac" + }, + { + "m_Id": "04dfcc9ff13a4bf282ed46faec39d15c" + }, + { + "m_Id": "71dd947935b64ce38f0d25406dde447b" + }, + { + "m_Id": "61a6ac5f29344d109411f26850ab0a96" + }, + { + "m_Id": "44806230fa384c1e95f9c5918a14f056" + }, + { + "m_Id": "4eb3c00a1ca44e10be833b7ca61ff059" + }, + { + "m_Id": "57abc172afd449e2a4d567f93432507b" + }, + { + "m_Id": "cda5e3b4c1054bf3a65c0b7ec6bc778a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "fe11fa80cc1847a5a37f6757d521cf25", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph.meta new file mode 100644 index 0000000..248825c --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 124c112a6e8f1a54e8b0870e881b56d8 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF.shader new file mode 100644 index 0000000..bbcfd11 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF.shader @@ -0,0 +1,326 @@ +Shader "TextMeshPro/Distance Field" { + +Properties { + _FaceTex ("Face Texture", 2D) = "white" {} + _FaceUVSpeedX ("Face UV Speed X", Range(-5, 5)) = 0.0 + _FaceUVSpeedY ("Face UV Speed Y", Range(-5, 5)) = 0.0 + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineTex ("Outline Texture", 2D) = "white" {} + _OutlineUVSpeedX ("Outline UV Speed X", Range(-5, 5)) = 0.0 + _OutlineUVSpeedY ("Outline UV Speed Y", Range(-5, 5)) = 0.0 + _OutlineWidth ("Outline Thickness", Range(0, 1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _Bevel ("Bevel", Range(0,1)) = 0.5 + _BevelOffset ("Bevel Offset", Range(-0.5,0.5)) = 0 + _BevelWidth ("Bevel Width", Range(-.5,0.5)) = 0 + _BevelClamp ("Bevel Clamp", Range(0,1)) = 0 + _BevelRoundness ("Bevel Roundness", Range(0,1)) = 0 + + _LightAngle ("Light Angle", Range(0.0, 6.2831853)) = 3.1416 + _SpecularColor ("Specular", Color) = (1,1,1,1) + _SpecularPower ("Specular", Range(0,4)) = 2.0 + _Reflectivity ("Reflectivity", Range(5.0,15.0)) = 10 + _Diffuse ("Diffuse", Range(0,1)) = 0.5 + _Ambient ("Ambient", Range(1,0)) = 0.5 + + _BumpMap ("Normal map", 2D) = "bump" {} + _BumpOutline ("Bump Outline", Range(0,1)) = 0 + _BumpFace ("Bump Face", Range(0,1)) = 0 + + _ReflectFaceColor ("Reflection Color", Color) = (0,0,0,1) + _ReflectOutlineColor("Reflection Color", Color) = (0,0,0,1) + _Cube ("Reflection Cubemap", Cube) = "black" { /* TexGen CubeReflect */ } + _EnvMatrixRotation ("Texture Rotation", vector) = (0, 0, 0, 0) + + + _UnderlayColor ("Border Color", Color) = (0,0,0, 0.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _GlowColor ("Color", Color) = (0, 1, 0, 0.5) + _GlowOffset ("Offset", Range(-1,1)) = 0 + _GlowInner ("Inner", Range(0,1)) = 0.05 + _GlowOuter ("Outer", Range(0,1)) = 0.05 + _GlowPower ("Falloff", Range(1, 0)) = 0.75 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = 0.5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5.0 + _ScaleX ("Scale X", float) = 1.0 + _ScaleY ("Scale Y", float) = 1.0 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _MaskCoord ("Mask Coordinates", vector) = (0, 0, 32767, 32767) + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest [unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma target 3.0 + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ BEVEL_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + #pragma shader_feature __ GLOW_ON + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + #include "TMPro.cginc" + + struct vertex_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 position : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 position : SV_POSITION; + fixed4 color : COLOR; + float2 atlas : TEXCOORD0; // Atlas + float4 param : TEXCOORD1; // alphaClip, scale, bias, weight + float4 mask : TEXCOORD2; // Position in object space(xy), pixel Size(zw) + float3 viewDir : TEXCOORD3; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 texcoord2 : TEXCOORD4; // u,v, scale, bias + fixed4 underlayColor : COLOR1; + #endif + + float4 textures : TEXCOORD5; + }; + + // Used by Unity internally to handle Texture Tiling and Offset. + float4 _FaceTex_ST; + float4 _OutlineTex_ST; + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input,output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.position; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if (UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + float bias =(.5 - weight) + (.5 / scale); + + float alphaClip = (1.0 - _OutlineWidth * _ScaleRatioA - _OutlineSoftness * _ScaleRatioA); + + #if GLOW_ON + alphaClip = min(alphaClip, 1.0 - _GlowOffset * _ScaleRatioB - _GlowOuter * _ScaleRatioB); + #endif + + alphaClip = alphaClip / 2.0 - ( .5 / scale) - weight; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 underlayColor = _UnderlayColor; + underlayColor.rgb *= underlayColor.a; + + float bScale = scale; + bScale /= 1 + ((_UnderlaySoftness*_ScaleRatioC) * bScale); + float bBias = (0.5 - weight) * bScale - 0.5 - ((_UnderlayDilate * _ScaleRatioC) * 0.5 * bScale); + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 bOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + // Support for texture tiling and offset + float2 textureUV = input.texcoord1; + float2 faceUV = TRANSFORM_TEX(textureUV, _FaceTex); + float2 outlineUV = TRANSFORM_TEX(textureUV, _OutlineTex); + + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + output.position = vPosition; + output.color = input.color; + output.atlas = input.texcoord0; + output.param = float4(alphaClip, scale, bias, weight); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + output.mask = half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + output.viewDir = mul((float3x3)_EnvMatrix, _WorldSpaceCameraPos.xyz - mul(unity_ObjectToWorld, vert).xyz); + #if (UNDERLAY_ON || UNDERLAY_INNER) + output.texcoord2 = float4(input.texcoord0 + bOffset, bScale, bBias); + output.underlayColor = underlayColor; + #endif + output.textures = float4(faceUV, outlineUV); + + return output; + } + + + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + float c = tex2D(_MainTex, input.atlas).a; + + #ifndef UNDERLAY_ON + clip(c - input.param.x); + #endif + + float scale = input.param.y; + float bias = input.param.z; + float weight = input.param.w; + float sd = (bias - c) * scale; + + float outline = (_OutlineWidth * _ScaleRatioA) * scale; + float softness = (_OutlineSoftness * _ScaleRatioA) * scale; + + half4 faceColor = _FaceColor; + half4 outlineColor = _OutlineColor; + + faceColor.rgb *= input.color.rgb; + + faceColor *= tex2D(_FaceTex, input.textures.xy + float2(_FaceUVSpeedX, _FaceUVSpeedY) * _Time.y); + outlineColor *= tex2D(_OutlineTex, input.textures.zw + float2(_OutlineUVSpeedX, _OutlineUVSpeedY) * _Time.y); + + faceColor = GetColor(sd, faceColor, outlineColor, outline, softness); + + #if BEVEL_ON + float3 dxy = float3(0.5 / _TextureWidth, 0.5 / _TextureHeight, 0); + float3 n = GetSurfaceNormal(input.atlas, weight, dxy); + + float3 bump = UnpackNormal(tex2D(_BumpMap, input.textures.xy + float2(_FaceUVSpeedX, _FaceUVSpeedY) * _Time.y)).xyz; + bump *= lerp(_BumpFace, _BumpOutline, saturate(sd + outline * 0.5)); + n = normalize(n- bump); + + float3 light = normalize(float3(sin(_LightAngle), cos(_LightAngle), -1.0)); + + float3 col = GetSpecular(n, light); + faceColor.rgb += col*faceColor.a; + faceColor.rgb *= 1-(dot(n, light)*_Diffuse); + faceColor.rgb *= lerp(_Ambient, 1, n.z*n.z); + + fixed4 reflcol = texCUBE(_Cube, reflect(input.viewDir, -n)); + faceColor.rgb += reflcol.rgb * lerp(_ReflectFaceColor.rgb, _ReflectOutlineColor.rgb, saturate(sd + outline * 0.5)) * faceColor.a; + #endif + + #if UNDERLAY_ON + float d = tex2D(_MainTex, input.texcoord2.xy).a * input.texcoord2.z; + faceColor += input.underlayColor * saturate(d - input.texcoord2.w) * (1 - faceColor.a); + #endif + + #if UNDERLAY_INNER + float d = tex2D(_MainTex, input.texcoord2.xy).a * input.texcoord2.z; + faceColor += input.underlayColor * (1 - saturate(d - input.texcoord2.w)) * saturate(1 - sd) * (1 - faceColor.a); + #endif + + #if GLOW_ON + float4 glowColor = GetGlowColor(sd, scale); + faceColor.rgb += glowColor.rgb * glowColor.a; + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + faceColor *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(faceColor.a - 0.001); + #endif + + return faceColor * input.color.a; + } + ENDCG + } +} + +Fallback "TextMeshPro/Mobile/Distance Field" +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta new file mode 100644 index 0000000..e1cf3f3 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 68e6db2ebdc24f95958faec2be5558d6 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader b/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader new file mode 100644 index 0000000..4012a08 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader @@ -0,0 +1,131 @@ +Shader "TextMeshPro/Sprite" +{ + Properties + { + _MainTex ("Sprite Texture", 2D) = "white" {} + _Color ("Tint", Color) = (1,1,1,1) + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + + [Toggle(UNITY_UI_ALPHACLIP)] _UseUIAlphaClip ("Use Alpha Clip", Float) = 0 + } + + SubShader + { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + "PreviewType"="Plane" + "CanUseSpriteAtlas"="True" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + Lighting Off + ZWrite Off + ZTest [unity_GUIZTestMode] + Blend SrcAlpha OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass + { + Name "Default" + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #pragma target 2.0 + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + struct appdata_t + { + float4 vertex : POSITION; + float4 color : COLOR; + float2 texcoord : TEXCOORD0; + UNITY_VERTEX_INPUT_INSTANCE_ID + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + float2 texcoord : TEXCOORD0; + float4 worldPosition : TEXCOORD1; + float4 mask : TEXCOORD2; + UNITY_VERTEX_OUTPUT_STEREO + }; + + sampler2D _MainTex; + fixed4 _Color; + fixed4 _TextureSampleAdd; + float4 _ClipRect; + float4 _MainTex_ST; + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + v2f vert(appdata_t v) + { + v2f OUT; + UNITY_SETUP_INSTANCE_ID(v); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(OUT); + float4 vPosition = UnityObjectToClipPos(v.vertex); + OUT.worldPosition = v.vertex; + OUT.vertex = vPosition; + + float2 pixelSize = vPosition.w; + pixelSize /= abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + OUT.texcoord = TRANSFORM_TEX(v.texcoord, _MainTex); + OUT.mask = half4(v.vertex.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * half2(_UIMaskSoftnessX, _UIMaskSoftnessY) + abs(pixelSize.xy))); + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + v.color.rgb = UIGammaToLinear(v.color.rgb); + } + OUT.color = v.color * _Color; + return OUT; + } + + fixed4 frag(v2f IN) : SV_Target + { + half4 color = (tex2D(_MainTex, IN.texcoord) + _TextureSampleAdd) * IN.color; + + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(IN.mask.xy)) * IN.mask.zw); + color *= m.x * m.y; + #endif + + #ifdef UNITY_UI_ALPHACLIP + clip (color.a - 0.001); + #endif + + return color; + } + ENDCG + } + } +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta new file mode 100644 index 0000000..50ba195 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: cf81c85f95fe47e1a27f6ae460cf182c +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMPro.cginc b/Assets/TextMesh Pro/Shaders/TMPro.cginc new file mode 100644 index 0000000..5898130 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro.cginc @@ -0,0 +1,84 @@ +float2 UnpackUV(float uv) +{ + float2 output; + output.x = floor(uv / 4096); + output.y = uv - 4096 * output.x; + + return output * 0.001953125; +} + +fixed4 GetColor(half d, fixed4 faceColor, fixed4 outlineColor, half outline, half softness) +{ + half faceAlpha = 1-saturate((d - outline * 0.5 + softness * 0.5) / (1.0 + softness)); + half outlineAlpha = saturate((d + outline * 0.5)) * sqrt(min(1.0, outline)); + + faceColor.rgb *= faceColor.a; + outlineColor.rgb *= outlineColor.a; + + faceColor = lerp(faceColor, outlineColor, outlineAlpha); + + faceColor *= faceAlpha; + + return faceColor; +} + +float3 GetSurfaceNormal(float4 h, float bias) +{ + bool raisedBevel = step(1, fmod(_ShaderFlags, 2)); + + h += bias+_BevelOffset; + + float bevelWidth = max(.01, _OutlineWidth+_BevelWidth); + + // Track outline + h -= .5; + h /= bevelWidth; + h = saturate(h+.5); + + if(raisedBevel) h = 1 - abs(h*2.0 - 1.0); + h = lerp(h, sin(h*3.141592/2.0), _BevelRoundness); + h = min(h, 1.0-_BevelClamp); + h *= _Bevel * bevelWidth * _GradientScale * -2.0; + + float3 va = normalize(float3(1.0, 0.0, h.y - h.x)); + float3 vb = normalize(float3(0.0, -1.0, h.w - h.z)); + + return cross(va, vb); +} + +float3 GetSurfaceNormal(float2 uv, float bias, float3 delta) +{ + // Read "height field" + float4 h = {tex2D(_MainTex, uv - delta.xz).a, + tex2D(_MainTex, uv + delta.xz).a, + tex2D(_MainTex, uv - delta.zy).a, + tex2D(_MainTex, uv + delta.zy).a}; + + return GetSurfaceNormal(h, bias); +} + +float3 GetSpecular(float3 n, float3 l) +{ + float spec = pow(max(0.0, dot(n, l)), _Reflectivity); + return _SpecularColor.rgb * spec * _SpecularPower; +} + +float4 GetGlowColor(float d, float scale) +{ + float glow = d - (_GlowOffset*_ScaleRatioB) * 0.5 * scale; + float t = lerp(_GlowInner, (_GlowOuter * _ScaleRatioB), step(0.0, glow)) * 0.5 * scale; + glow = saturate(abs(glow/(1.0 + t))); + glow = 1.0-pow(glow, _GlowPower); + glow *= sqrt(min(1.0, t)); // Fade off glow thinner than 1 screen pixel + return float4(_GlowColor.rgb, saturate(_GlowColor.a * glow * 2)); +} + +float4 BlendARGB(float4 overlying, float4 underlying) +{ + overlying.rgb *= overlying.a; + underlying.rgb *= underlying.a; + float3 blended = overlying.rgb + ((1-overlying.a)*underlying.rgb); + float alpha = underlying.a + (1-underlying.a)*overlying.a; + return float4(blended, alpha); +} + diff --git a/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta b/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta new file mode 100644 index 0000000..f21163e --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 407bc68d299748449bbf7f48ee690f8d +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: Version 2.0 + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc b/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc new file mode 100644 index 0000000..d145a77 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc @@ -0,0 +1,165 @@ +struct vertex_t +{ + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 position : POSITION; + float3 normal : NORMAL; + float4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; +}; + +struct pixel_t +{ + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 position : SV_POSITION; + float4 faceColor : COLOR; + float4 outlineColor : COLOR1; + float4 texcoord0 : TEXCOORD0; + float4 param : TEXCOORD1; // x = weight, y = no longer used + float2 mask : TEXCOORD2; + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 texcoord2 : TEXCOORD3; + float4 underlayColor : COLOR2; + #endif +}; + +float4 SRGBToLinear(float4 rgba) +{ + return float4(lerp(rgba.rgb / 12.92f, pow((rgba.rgb + 0.055f) / 1.055f, 2.4f), step(0.04045f, rgba.rgb)), rgba.a); +} + +float _UIMaskSoftnessX; +float _UIMaskSoftnessY; + +pixel_t VertShader(vertex_t input) +{ + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input, output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.position; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + float4 vPosition = UnityObjectToClipPos(vert); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + float4 color = input.color; + #if (FORCE_LINEAR && !UNITY_COLORSPACE_GAMMA) + color = SRGBToLinear(input.color); + #endif + + float opacity = color.a; + #if (UNDERLAY_ON | UNDERLAY_INNER) + opacity = 1.0; + #endif + + float4 faceColor = float4(color.rgb, opacity) * _FaceColor; + faceColor.rgb *= faceColor.a; + + float4 outlineColor = _OutlineColor; + outlineColor.a *= opacity; + outlineColor.rgb *= outlineColor.a; + + output.position = vPosition; + output.faceColor = faceColor; + output.outlineColor = outlineColor; + output.texcoord0 = float4(input.texcoord0.xy, maskUV.xy); + output.param = float4(0.5 - weight, 0, _OutlineWidth * _ScaleRatioA * 0.5, 0); + + float2 mask = float2(0, 0); + #if UNITY_UI_CLIP_RECT + mask = vert.xy * 2 - clampedRect.xy - clampedRect.zw; + #endif + output.mask = mask; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 underlayColor = _UnderlayColor; + underlayColor.rgb *= underlayColor.a; + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + + output.texcoord2 = float4(input.texcoord0 + float2(x, y), input.color.a, 0); + output.underlayColor = underlayColor; + #endif + + return output; +} + +float4 PixShader(pixel_t input) : SV_Target +{ + UNITY_SETUP_INSTANCE_ID(input); + + float d = tex2D(_MainTex, input.texcoord0.xy).a; + + float pixelSize = abs(ddx(input.texcoord0.y)) + abs(ddy(input.texcoord0.y)); + pixelSize *= _TextureHeight * 0.75; + float scale = 1 / pixelSize * _GradientScale * (_Sharpness + 1); + + #if (UNDERLAY_ON | UNDERLAY_INNER) + float layerScale = scale; + layerScale /= 1 + ((_UnderlaySoftness * _ScaleRatioC) * layerScale); + float layerBias = input.param.x * layerScale - .5 - ((_UnderlayDilate * _ScaleRatioC) * .5 * layerScale); + #endif + + scale /= 1 + (_OutlineSoftness * _ScaleRatioA * scale); + + float4 faceColor = input.faceColor * saturate((d - input.param.x) * scale + 0.5); + + #if OUTLINE_ON + float4 outlineColor = lerp(input.faceColor, input.outlineColor, sqrt(min(1.0, input.param.z * scale * 2))); + faceColor = lerp(outlineColor, input.faceColor, saturate((d - input.param.x - input.param.z) * scale + 0.5)); + faceColor *= saturate((d - input.param.x + input.param.z) * scale + 0.5); + #endif + + #if UNDERLAY_ON + d = tex2D(_MainTex, input.texcoord2.xy).a * layerScale; + faceColor += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * saturate(d - layerBias) * (1 - faceColor.a); + #endif + + #if UNDERLAY_INNER + float bias = input.param.x * scale - 0.5; + float sd = saturate(d * scale - bias - input.param.z); + d = tex2D(_MainTex, input.texcoord2.xy).a * layerScale; + faceColor += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * (1 - saturate(d - layerBias)) * sd * (1 - faceColor.a); + #endif + + #if MASKING + float a = abs(_MaskInverse - tex2D(_MaskTex, input.texcoord0.zw).a); + float t = a + (1 - _MaskWipeControl) * _MaskEdgeSoftness - _MaskWipeControl; + a = saturate(t / _MaskEdgeSoftness); + faceColor.rgb = lerp(_MaskEdgeColor.rgb * faceColor.a, faceColor.rgb, a); + faceColor *= a; + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness + #if UNITY_UI_CLIP_RECT + half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + float2 maskZW = 0.25 / (0.25 * maskSoftness + 1 / scale); + float2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * maskZW); + faceColor *= m.x * m.y; + #endif + + #if (UNDERLAY_ON | UNDERLAY_INNER) + faceColor *= input.texcoord2.z; + #endif + + #if UNITY_UI_ALPHACLIP + clip(faceColor.a - 0.001); + #endif + + return faceColor; +} diff --git a/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta b/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta new file mode 100644 index 0000000..4415e50 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: c334973cef89a9840b0b0c507e0377ab +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc b/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc new file mode 100644 index 0000000..b806b4f --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc @@ -0,0 +1,80 @@ +// UI Editable properties +uniform sampler2D _FaceTex; // Alpha : Signed Distance +uniform float _FaceUVSpeedX; +uniform float _FaceUVSpeedY; +uniform fixed4 _FaceColor; // RGBA : Color + Opacity +uniform float _FaceDilate; // v[ 0, 1] +uniform float _OutlineSoftness; // v[ 0, 1] + +uniform sampler2D _OutlineTex; // RGBA : Color + Opacity +uniform float _OutlineUVSpeedX; +uniform float _OutlineUVSpeedY; +uniform fixed4 _OutlineColor; // RGBA : Color + Opacity +uniform float _OutlineWidth; // v[ 0, 1] + +uniform float _Bevel; // v[ 0, 1] +uniform float _BevelOffset; // v[-1, 1] +uniform float _BevelWidth; // v[-1, 1] +uniform float _BevelClamp; // v[ 0, 1] +uniform float _BevelRoundness; // v[ 0, 1] + +uniform sampler2D _BumpMap; // Normal map +uniform float _BumpOutline; // v[ 0, 1] +uniform float _BumpFace; // v[ 0, 1] + +uniform samplerCUBE _Cube; // Cube / sphere map +uniform fixed4 _ReflectFaceColor; // RGB intensity +uniform fixed4 _ReflectOutlineColor; +//uniform float _EnvTiltX; // v[-1, 1] +//uniform float _EnvTiltY; // v[-1, 1] +uniform float3 _EnvMatrixRotation; +uniform float4x4 _EnvMatrix; + +uniform fixed4 _SpecularColor; // RGB intensity +uniform float _LightAngle; // v[ 0,Tau] +uniform float _SpecularPower; // v[ 0, 1] +uniform float _Reflectivity; // v[ 5, 15] +uniform float _Diffuse; // v[ 0, 1] +uniform float _Ambient; // v[ 0, 1] + +uniform fixed4 _UnderlayColor; // RGBA : Color + Opacity +uniform float _UnderlayOffsetX; // v[-1, 1] +uniform float _UnderlayOffsetY; // v[-1, 1] +uniform float _UnderlayDilate; // v[-1, 1] +uniform float _UnderlaySoftness; // v[ 0, 1] + +uniform fixed4 _GlowColor; // RGBA : Color + Intesity +uniform float _GlowOffset; // v[-1, 1] +uniform float _GlowOuter; // v[ 0, 1] +uniform float _GlowInner; // v[ 0, 1] +uniform float _GlowPower; // v[ 1, 1/(1+4*4)] + +// API Editable properties +uniform float _ShaderFlags; +uniform float _WeightNormal; +uniform float _WeightBold; + +uniform float _ScaleRatioA; +uniform float _ScaleRatioB; +uniform float _ScaleRatioC; + +uniform float _VertexOffsetX; +uniform float _VertexOffsetY; + +//uniform float _UseClipRect; +uniform float _MaskID; +uniform sampler2D _MaskTex; +uniform float4 _MaskCoord; +uniform float4 _ClipRect; // bottom left(x,y) : top right(z,w) +uniform float _MaskSoftnessX; +uniform float _MaskSoftnessY; + +// Font Atlas properties +uniform sampler2D _MainTex; +uniform float _TextureWidth; +uniform float _TextureHeight; +uniform float _GradientScale; +uniform float _ScaleX; +uniform float _ScaleY; +uniform float _PerspectiveFilter; +uniform float _Sharpness; diff --git a/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta b/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta new file mode 100644 index 0000000..7b37f2f --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 3997e2241185407d80309a82f9148466 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc b/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc new file mode 100644 index 0000000..2153a9a --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc @@ -0,0 +1,99 @@ +void VertShader(inout appdata_full v, out Input data) +{ + v.vertex.x += _VertexOffsetX; + v.vertex.y += _VertexOffsetY; + + UNITY_INITIALIZE_OUTPUT(Input, data); + + float bold = step(v.texcoord.w, 0); + + // Generate normal for backface + float3 view = ObjSpaceViewDir(v.vertex); + v.normal *= sign(dot(v.normal, view)); + +#if USE_DERIVATIVE + data.param.y = 1; +#else + float4 vert = v.vertex; + float4 vPosition = UnityObjectToClipPos(vert); + float2 pixelSize = vPosition.w; + + pixelSize /= float2(_ScaleX, _ScaleY) * mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy); + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(v.texcoord.w) * _GradientScale * (_Sharpness + 1); + scale = lerp(scale * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(v.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + data.param.y = scale; +#endif + + data.param.x = (lerp(_WeightNormal, _WeightBold, bold) / 4.0 + _FaceDilate) * _ScaleRatioA * 0.5; // + data.viewDirEnv = mul((float3x3)_EnvMatrix, WorldSpaceViewDir(v.vertex)); +} + +void PixShader(Input input, inout SurfaceOutput o) +{ + +#if USE_DERIVATIVE + float2 pixelSize = float2(ddx(input.uv_MainTex.y), ddy(input.uv_MainTex.y)); + pixelSize *= _TextureWidth * .75; + float scale = rsqrt(dot(pixelSize, pixelSize)) * _GradientScale * (_Sharpness + 1); +#else + float scale = input.param.y; +#endif + + // Signed distance + float c = tex2D(_MainTex, input.uv_MainTex).a; + float sd = (.5 - c - input.param.x) * scale + .5; + float outline = _OutlineWidth*_ScaleRatioA * scale; + float softness = _OutlineSoftness*_ScaleRatioA * scale; + + // Color & Alpha + float4 faceColor = _FaceColor; + float4 outlineColor = _OutlineColor; + faceColor *= input.color; + outlineColor.a *= input.color.a; + faceColor *= tex2D(_FaceTex, float2(input.uv2_FaceTex.x + _FaceUVSpeedX * _Time.y, input.uv2_FaceTex.y + _FaceUVSpeedY * _Time.y)); + outlineColor *= tex2D(_OutlineTex, float2(input.uv2_OutlineTex.x + _OutlineUVSpeedX * _Time.y, input.uv2_OutlineTex.y + _OutlineUVSpeedY * _Time.y)); + faceColor = GetColor(sd, faceColor, outlineColor, outline, softness); + faceColor.rgb /= max(faceColor.a, 0.0001); + +#if BEVEL_ON + float3 delta = float3(1.0 / _TextureWidth, 1.0 / _TextureHeight, 0.0); + + float4 smp4x = {tex2D(_MainTex, input.uv_MainTex - delta.xz).a, + tex2D(_MainTex, input.uv_MainTex + delta.xz).a, + tex2D(_MainTex, input.uv_MainTex - delta.zy).a, + tex2D(_MainTex, input.uv_MainTex + delta.zy).a }; + + // Face Normal + float3 n = GetSurfaceNormal(smp4x, input.param.x); + + // Bumpmap + float3 bump = UnpackNormal(tex2D(_BumpMap, input.uv2_FaceTex.xy)).xyz; + bump *= lerp(_BumpFace, _BumpOutline, saturate(sd + outline * 0.5)); + bump = lerp(float3(0, 0, 1), bump, faceColor.a); + n = normalize(n - bump); + + // Cubemap reflection + fixed4 reflcol = texCUBE(_Cube, reflect(input.viewDirEnv, mul((float3x3)unity_ObjectToWorld, n))); + float3 emission = reflcol.rgb * lerp(_ReflectFaceColor.rgb, _ReflectOutlineColor.rgb, saturate(sd + outline * 0.5)) * faceColor.a; +#else + float3 n = float3(0, 0, -1); + float3 emission = float3(0, 0, 0); +#endif + +#if GLOW_ON + float4 glowColor = GetGlowColor(sd, scale); + glowColor.a *= input.color.a; + emission += glowColor.rgb*glowColor.a; + faceColor = BlendARGB(glowColor, faceColor); + faceColor.rgb /= max(faceColor.a, 0.0001); +#endif + + // Set Standard output structure + o.Albedo = faceColor.rgb; + o.Normal = -n; + o.Emission = emission; + o.Specular = lerp(_FaceShininess, _OutlineShininess, saturate(sd + outline * 0.5)); + o.Gloss = 1; + o.Alpha = faceColor.a; +} diff --git a/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta b/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta new file mode 100644 index 0000000..41ef4b1 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d930090c0cd643c7b55f19a38538c162 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Sprites.meta b/Assets/TextMesh Pro/Sprites.meta new file mode 100644 index 0000000..8b699e5 --- /dev/null +++ b/Assets/TextMesh Pro/Sprites.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d0603b6d5186471b96c778c3949c7ce2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt b/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt new file mode 100644 index 0000000..384180a --- /dev/null +++ b/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt @@ -0,0 +1,3 @@ +This sample of beautiful emojis are provided by EmojiOne https://www.emojione.com/ + +Please visit their website to view the complete set of their emojis and review their licensing terms. \ No newline at end of file diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta b/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta new file mode 100644 index 0000000..0d30e65 --- /dev/null +++ b/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 381dcb09d5029d14897e55f98031fca5 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne.json b/Assets/TextMesh Pro/Sprites/EmojiOne.json new file mode 100644 index 0000000..6c4e50b --- /dev/null +++ b/Assets/TextMesh Pro/Sprites/EmojiOne.json @@ -0,0 +1,156 @@ +{"frames": [ + +{ + "filename": "1f60a.png", + "frame": {"x":0,"y":0,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f60b.png", + "frame": {"x":128,"y":0,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f60d.png", + "frame": {"x":256,"y":0,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f60e.png", + "frame": {"x":384,"y":0,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f600.png", + "frame": {"x":0,"y":128,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f601.png", + "frame": {"x":128,"y":128,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f602.png", + "frame": {"x":256,"y":128,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f603.png", + "frame": {"x":384,"y":128,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f604.png", + "frame": {"x":0,"y":256,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f605.png", + "frame": {"x":128,"y":256,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f606.png", + "frame": {"x":256,"y":256,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f609.png", + "frame": {"x":384,"y":256,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f618.png", + "frame": {"x":0,"y":384,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f923.png", + "frame": {"x":128,"y":384,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "263a.png", + "frame": {"x":256,"y":384,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "2639.png", + "frame": {"x":384,"y":384,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}], +"meta": { + "app": "http://www.codeandweb.com/texturepacker", + "version": "1.0", + "image": "EmojiOne.png", + "format": "RGBA8888", + "size": {"w":512,"h":512}, + "scale": "1", + "smartupdate": "$TexturePacker:SmartUpdate:196a26a2e149d875b91ffc8fa3581e76:fc928c7e275404b7e0649307410475cb:424723c3774975ddb2053fd5c4b85f6e$" +} +} diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta b/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta new file mode 100644 index 0000000..762cf15 --- /dev/null +++ b/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f05276190cf498a8153f6cbe761d4e6 +timeCreated: 1480316860 +licenseType: Pro +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne.png b/Assets/TextMesh Pro/Sprites/EmojiOne.png new file mode 100644 index 0000000..c0de66d Binary files /dev/null and b/Assets/TextMesh Pro/Sprites/EmojiOne.png differ diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta b/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta new file mode 100644 index 0000000..c9fa1a7 --- /dev/null +++ b/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta @@ -0,0 +1,431 @@ +fileFormatVersion: 2 +guid: dffef66376be4fa480fb02b19edbe903 +TextureImporter: + fileIDToRecycleName: + 21300000: EmojiOne_0 + 21300002: EmojiOne_1 + 21300004: EmojiOne_2 + 21300006: EmojiOne_3 + 21300008: EmojiOne_4 + 21300010: EmojiOne_6 + 21300012: EmojiOne_7 + 21300014: EmojiOne_8 + 21300016: EmojiOne_9 + 21300018: EmojiOne_10 + 21300020: EmojiOne_11 + 21300022: EmojiOne_12 + 21300024: EmojiOne_13 + 21300026: EmojiOne_5 + 21300028: EmojiOne_14 + externalObjects: {} + serializedVersion: 5 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: EmojiOne_0 + rect: + serializedVersion: 2 + x: 0 + y: 384 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4bcc36da2108f2c4ba3de5c921d25c3c + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_1 + rect: + serializedVersion: 2 + x: 128 + y: 384 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e9eea8093eaeaee4d901c4553f572c22 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_2 + rect: + serializedVersion: 2 + x: 256 + y: 384 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 49451da35411dcc42a3692e39b0fde70 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_3 + rect: + serializedVersion: 2 + x: 384 + y: 384 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f65709664b924904790c850a50ca82bc + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_4 + rect: + serializedVersion: 2 + x: 0 + y: 256 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5b92c568a5ec9ad4b9ed90e271f1c9a8 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_6 + rect: + serializedVersion: 2 + x: 256 + y: 256 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b10f2b48b7281594bb8a24a6511a35af + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_7 + rect: + serializedVersion: 2 + x: 384 + y: 256 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 10a600f9329dc2246a897e89f4d283cd + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_8 + rect: + serializedVersion: 2 + x: 0 + y: 128 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 66cffa363b90ab14787d8a5b90cf4502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_9 + rect: + serializedVersion: 2 + x: 128 + y: 128 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 55cf3d409c9b89349b1e1bdc1cc224ad + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_10 + rect: + serializedVersion: 2 + x: 256 + y: 128 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2a9e58eaf96feef42bcefa1cf257193f + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_11 + rect: + serializedVersion: 2 + x: 384 + y: 128 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2489120affc155840ae6a7be2e93ce19 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_12 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 412349a150598d14da4d7140df5c0286 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_13 + rect: + serializedVersion: 2 + x: 128 + y: 0 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a937464b42bb3634782dea34c6becb6c + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_5 + rect: + serializedVersion: 2 + x: 256 + y: 0 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b0f933b217682124dbfc5e6b89abe3d0 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_14 + rect: + serializedVersion: 2 + x: 128 + y: 256 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f7235c763afe4434e8bb666750a41096 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 3e32d8f5477abfc43b19066e8ad5032e + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo.meta b/Assets/TutorialInfo.meta new file mode 100644 index 0000000..a700bca --- /dev/null +++ b/Assets/TutorialInfo.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ba062aa6c92b140379dbc06b43dd3b9b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Icons.meta b/Assets/TutorialInfo/Icons.meta new file mode 100644 index 0000000..1d19fb9 --- /dev/null +++ b/Assets/TutorialInfo/Icons.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 8a0c9218a650547d98138cd835033977 +folderAsset: yes +timeCreated: 1484670163 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Icons/URP.png b/Assets/TutorialInfo/Icons/URP.png new file mode 100644 index 0000000..6194a80 Binary files /dev/null and b/Assets/TutorialInfo/Icons/URP.png differ diff --git a/Assets/TutorialInfo/Icons/URP.png.meta b/Assets/TutorialInfo/Icons/URP.png.meta new file mode 100644 index 0000000..0f2cab0 --- /dev/null +++ b/Assets/TutorialInfo/Icons/URP.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 727a75301c3d24613a3ebcec4a24c2c8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Layout.wlt b/Assets/TutorialInfo/Layout.wlt new file mode 100644 index 0000000..7b50a25 --- /dev/null +++ b/Assets/TutorialInfo/Layout.wlt @@ -0,0 +1,654 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_PixelRect: + serializedVersion: 2 + x: 0 + y: 45 + width: 1666 + height: 958 + m_ShowMode: 4 + m_Title: + m_RootView: {fileID: 6} + m_MinSize: {x: 950, y: 542} + m_MaxSize: {x: 10000, y: 10000} +--- !u!114 &2 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 466 + width: 290 + height: 442 + m_MinSize: {x: 234, y: 271} + m_MaxSize: {x: 10004, y: 10021} + m_ActualView: {fileID: 14} + m_Panes: + - {fileID: 14} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &3 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 4} + - {fileID: 2} + m_Position: + serializedVersion: 2 + x: 973 + y: 0 + width: 290 + height: 908 + m_MinSize: {x: 234, y: 492} + m_MaxSize: {x: 10004, y: 14042} + vertical: 1 + controlID: 226 +--- !u!114 &4 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 290 + height: 466 + m_MinSize: {x: 204, y: 221} + m_MaxSize: {x: 4004, y: 4021} + m_ActualView: {fileID: 17} + m_Panes: + - {fileID: 17} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &5 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 466 + width: 973 + height: 442 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 15} + m_Panes: + - {fileID: 15} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &6 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 7} + - {fileID: 8} + - {fileID: 9} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1666 + height: 958 + m_MinSize: {x: 950, y: 542} + m_MaxSize: {x: 10000, y: 10000} +--- !u!114 &7 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12011, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1666 + height: 30 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} + m_LastLoadedLayoutName: Tutorial +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 10} + - {fileID: 3} + - {fileID: 11} + m_Position: + serializedVersion: 2 + x: 0 + y: 30 + width: 1666 + height: 908 + m_MinSize: {x: 713, y: 492} + m_MaxSize: {x: 18008, y: 14042} + vertical: 0 + controlID: 74 +--- !u!114 &9 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12042, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 938 + width: 1666 + height: 20 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} +--- !u!114 &10 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 12} + - {fileID: 5} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 973 + height: 908 + m_MinSize: {x: 202, y: 442} + m_MaxSize: {x: 4002, y: 8042} + vertical: 1 + controlID: 75 +--- !u!114 &11 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 1263 + y: 0 + width: 403 + height: 908 + m_MinSize: {x: 277, y: 71} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 13} + m_Panes: + - {fileID: 13} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &12 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 973 + height: 466 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 16} + m_Panes: + - {fileID: 16} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &13 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 0 + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Inspector + m_Image: {fileID: -6905738622615590433, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 0 + m_Pos: + serializedVersion: 2 + x: 2 + y: 19 + width: 401 + height: 887 + m_ScrollPosition: {x: 0, y: 0} + m_InspectorMode: 0 + m_PreviewResizer: + m_CachedPref: -160 + m_ControlHash: -371814159 + m_PrefName: Preview_InspectorPreview + m_PreviewWindow: {fileID: 0} +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 0 + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} + m_TitleContent: + m_Text: Project + m_Image: {fileID: -7501376956915960154, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 0 + m_Pos: + serializedVersion: 2 + x: 2 + y: 19 + width: 286 + height: 421 + m_SearchFilter: + m_NameFilter: + m_ClassNames: [] + m_AssetLabels: [] + m_AssetBundleNames: [] + m_VersionControlStates: [] + m_ReferencingInstanceIDs: + m_ScenePaths: [] + m_ShowAllHits: 0 + m_SearchArea: 0 + m_Folders: + - Assets + m_ViewMode: 0 + m_StartGridSize: 64 + m_LastFolders: + - Assets + m_LastFoldersGridSize: -1 + m_LastProjectPath: /Users/danielbrauer/Unity Projects/New Unity Project 47 + m_IsLocked: 0 + m_FolderTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: ee240000 + m_LastClickedID: 9454 + m_ExpandedIDs: ee24000000ca9a3bffffff7f + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_AssetTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 68fbffff + m_LastClickedID: 0 + m_ExpandedIDs: ee240000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_ListAreaState: + m_SelectedInstanceIDs: 68fbffff + m_LastClickedInstanceID: -1176 + m_HadKeyboardFocusLastEvent: 0 + m_ExpandedInstanceIDs: c6230000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_NewAssetIndexInList: -1 + m_ScrollPosition: {x: 0, y: 0} + m_GridSize: 64 + m_DirectoriesAreaWidth: 110 +--- !u!114 &15 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 1 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Game + m_Image: {fileID: -2087823869225018852, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 32 + m_Pos: + serializedVersion: 2 + x: 0 + y: 19 + width: 971 + height: 421 + m_MaximizeOnPlay: 0 + m_Gizmos: 0 + m_Stats: 0 + m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_TargetDisplay: 0 + m_ZoomArea: + m_HRangeLocked: 0 + m_VRangeLocked: 0 + m_HBaseRangeMin: -242.75 + m_HBaseRangeMax: 242.75 + m_VBaseRangeMin: -101 + m_VBaseRangeMax: 101 + m_HAllowExceedBaseRangeMin: 1 + m_HAllowExceedBaseRangeMax: 1 + m_VAllowExceedBaseRangeMin: 1 + m_VAllowExceedBaseRangeMax: 1 + m_ScaleWithWindow: 0 + m_HSlider: 0 + m_VSlider: 0 + m_IgnoreScrollWheelUntilClicked: 0 + m_EnableMouseInput: 1 + m_EnableSliderZoom: 0 + m_UniformScale: 1 + m_UpDirection: 1 + m_DrawArea: + serializedVersion: 2 + x: 0 + y: 17 + width: 971 + height: 404 + m_Scale: {x: 2, y: 2} + m_Translation: {x: 485.5, y: 202} + m_MarginLeft: 0 + m_MarginRight: 0 + m_MarginTop: 0 + m_MarginBottom: 0 + m_LastShownAreaInsideMargins: + serializedVersion: 2 + x: -242.75 + y: -101 + width: 485.5 + height: 202 + m_MinimalGUI: 1 + m_defaultScale: 2 + m_TargetTexture: {fileID: 0} + m_CurrentColorSpace: 0 + m_LastWindowPixelSize: {x: 1942, y: 842} + m_ClearInEditMode: 1 + m_NoCameraWarning: 1 + m_LowResolutionForAspectRatios: 01000000000100000100 +--- !u!114 &16 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 1 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Scene + m_Image: {fileID: 2318424515335265636, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 32 + m_Pos: + serializedVersion: 2 + x: 0 + y: 19 + width: 971 + height: 445 + m_SceneLighting: 1 + lastFramingTime: 0 + m_2DMode: 0 + m_isRotationLocked: 0 + m_AudioPlay: 0 + m_Position: + m_Target: {x: 0, y: 0, z: 0} + speed: 2 + m_Value: {x: 0, y: 0, z: 0} + m_RenderMode: 0 + m_ValidateTrueMetals: 0 + m_SceneViewState: + showFog: 1 + showMaterialUpdate: 0 + showSkybox: 1 + showFlares: 1 + showImageEffects: 1 + grid: + xGrid: + m_Target: 0 + speed: 2 + m_Value: 0 + yGrid: + m_Target: 1 + speed: 2 + m_Value: 1 + zGrid: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Rotation: + m_Target: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + speed: 2 + m_Value: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + m_Size: + m_Target: 10 + speed: 2 + m_Value: 10 + m_Ortho: + m_Target: 0 + speed: 2 + m_Value: 0 + m_LastSceneViewRotation: {x: 0, y: 0, z: 0, w: 0} + m_LastSceneViewOrtho: 0 + m_ReplacementShader: {fileID: 0} + m_ReplacementString: + m_LastLockedObject: {fileID: 0} + m_ViewIsLockedToObject: 0 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 0 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Hierarchy + m_Image: {fileID: -590624980919486359, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 0 + m_Pos: + serializedVersion: 2 + x: 2 + y: 19 + width: 286 + height: 445 + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 68fbffff + m_LastClickedID: -1176 + m_ExpandedIDs: 7efbffff00000000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 0 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_ExpandedScenes: + - + m_CurrenRootInstanceID: 0 + m_Locked: 0 + m_CurrentSortingName: TransformSorting diff --git a/Assets/TutorialInfo/Layout.wlt.meta b/Assets/TutorialInfo/Layout.wlt.meta new file mode 100644 index 0000000..c0c8c77 --- /dev/null +++ b/Assets/TutorialInfo/Layout.wlt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eabc9546105bf4accac1fd62a63e88e6 +timeCreated: 1487337779 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XR.meta b/Assets/XR.meta new file mode 100644 index 0000000..fcc87fb --- /dev/null +++ b/Assets/XR.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c850cf9fea6bb7348a28e31ebff2d3d5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XR/Loaders.meta b/Assets/XR/Loaders.meta new file mode 100644 index 0000000..5bcc3e6 --- /dev/null +++ b/Assets/XR/Loaders.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7c6a651c3d42f5e42ac8920e588272f7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XR/Loaders/OpenXRLoader.asset b/Assets/XR/Loaders/OpenXRLoader.asset new file mode 100644 index 0000000..861fe35 --- /dev/null +++ b/Assets/XR/Loaders/OpenXRLoader.asset @@ -0,0 +1,14 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d3552e428dc7646a88de3ed3650f87da, type: 3} + m_Name: OpenXRLoader + m_EditorClassIdentifier: diff --git a/Assets/XR/Loaders/OpenXRLoader.asset.meta b/Assets/XR/Loaders/OpenXRLoader.asset.meta new file mode 100644 index 0000000..15841d8 --- /dev/null +++ b/Assets/XR/Loaders/OpenXRLoader.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f8faa3f9814086c4ebc2f0b9d3a61306 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XR/Settings.meta b/Assets/XR/Settings.meta new file mode 100644 index 0000000..8527cf5 --- /dev/null +++ b/Assets/XR/Settings.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 06d7109270bca7a418b0cff695859cbb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XR/Settings/OpenXR Editor Settings.asset b/Assets/XR/Settings/OpenXR Editor Settings.asset new file mode 100644 index 0000000..9881aa7 --- /dev/null +++ b/Assets/XR/Settings/OpenXR Editor Settings.asset @@ -0,0 +1,22 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 975057b4fdcfb8142b3080d19a5cc712, type: 3} + m_Name: OpenXR Editor Settings + m_EditorClassIdentifier: + Keys: 0100000007000000 + Values: + - featureSets: + - com.meta.openxr.featureset.metaxr + - featureSets: + - com.meta.openxr.featureset.metaxr + m_vulkanAdditionalGraphicsQueue: 0 + m_vulkanOffscreenSwapchainNoMainDisplay: 1 diff --git a/Assets/XR/Settings/OpenXR Editor Settings.asset.meta b/Assets/XR/Settings/OpenXR Editor Settings.asset.meta new file mode 100644 index 0000000..38742b3 --- /dev/null +++ b/Assets/XR/Settings/OpenXR Editor Settings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 487a829e67c487a4ea1a1b924ad8a485 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XR/Settings/OpenXR Package Settings.asset b/Assets/XR/Settings/OpenXR Package Settings.asset new file mode 100644 index 0000000..4333975 --- /dev/null +++ b/Assets/XR/Settings/OpenXR Package Settings.asset @@ -0,0 +1,1128 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8241400713762911622 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1927c045052a06d49a9b21fdcaa26db6, type: 3} + m_Name: MetaXRFeature Android + m_EditorClassIdentifier: + m_enabled: 1 + nameUi: Meta XR Feature + version: 0.0.1 + featureIdInternal: com.meta.openxr.feature.metaxr + openxrExtensionStrings: 'XR_KHR_vulkan_enable XR_KHR_D3D11_enable XR_OCULUS_common_reference_spaces + XR_FB_display_refresh_rate XR_EXT_performance_settings XR_FB_composition_layer_image_layout + XR_KHR_android_surface_swapchain XR_FB_android_surface_swapchain_create XR_KHR_composition_layer_color_scale_bias + XR_FB_color_space XR_EXT_hand_tracking XR_FB_swapchain_update_state XR_FB_swapchain_update_state_opengl_es + XR_FB_swapchain_update_state_vulkan XR_FB_composition_layer_alpha_blend XR_KHR_composition_layer_depth + XR_KHR_composition_layer_cylinder XR_KHR_composition_layer_cube XR_KHR_composition_layer_equirect2 + XR_KHR_convert_timespec_time XR_KHR_visibility_mask XR_FB_render_model XR_FB_spatial_entity + XR_FB_spatial_entity_user XR_FB_spatial_entity_query XR_FB_spatial_entity_storage + XR_FB_spatial_entity_storage_batch XR_META_spatial_entity_mesh XR_META_performance_metrics + XR_FB_spatial_entity_sharing XR_FB_scene XR_FB_spatial_entity_container XR_FB_scene_capture + XR_FB_face_tracking XR_FB_face_tracking2 XR_FB_eye_tracking XR_FB_eye_tracking_social + XR_FB_body_tracking XR_META_body_tracking_full_body XR_META_body_tracking_calibration + XR_META_body_tracking_fidelity XR_FB_keyboard_tracking XR_META_virtual_keyboard + XR_FB_passthrough XR_FB_triangle_mesh XR_FB_passthrough_keyboard_hands XR_META_passthrough_layer_resumed_event + XR_META_passthrough_color_lut XR_META_passthrough_preferences XR_OCULUS_audio_device_guid + XR_FB_common_events XR_FB_hand_tracking_capsules XR_FB_hand_tracking_mesh XR_FB_hand_tracking_aim + XR_FB_touch_controller_pro XR_FB_touch_controller_proximity XR_FB_composition_layer_depth_test + XR_FB_haptic_amplitude_envelope XR_FB_haptic_pcm XR_META_local_dimming XR_META_hand_tracking_wide_motion_mode + XR_EXT_hand_tracking_data_source XR_EXT_hand_joints_motion_range XR_META_touch_controller_plus + XR_META_simultaneous_hands_and_controllers XR_MSFT_hand_interaction XR_EXT_hand_interaction + XR_FB_hand_tracking_confidence XR_META_detached_controllers XR_LOGITECH_mx_ink_stylus_interaction + XR_META_colocation_discovery XR_META_spatial_entity_sharing XR_META_spatial_entity_group_sharing + XR_EXT_debug_utils XR_META_dynamic_object_tracker XR_META_dynamic_object_keyboard + XR_META_hand_tracking_microgestures XR_META_spatial_entity_persistence XR_META_spatial_entity_discovery + XR_META_boundary_visibility XR_META_face_tracking_visemes XR_META_headset_id + XR_FB_composition_layer_settings XR_META_automatic_layer_filter XR_METAX1_spatial_entity_marker + XR_META_environment_raycast XR_EXT_future XR_EXTX2_stationary_reference_space + XR_META_recommended_layer_resolution XR_EXT_local_floor ' + company: Meta + priority: 0 + required: 0 +--- !u!114 &-8176086360009514695 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2b7365b139f7aec43b23d26b7a48b5a6, type: 3} + m_Name: MetaQuestTouchPlusControllerProfile Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Meta Quest Touch Plus Controller Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.metaquestplus + openxrExtensionStrings: XR_META_touch_controller_plus + company: Unity + priority: 0 + required: 0 +--- !u!114 &-7643989637297488327 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b5a1f07dc5afe854f9f12a4194aca3fb, type: 3} + m_Name: Android + m_EditorClassIdentifier: + features: + - {fileID: -2989466778921836754} + - {fileID: -1894394481695529979} + - {fileID: -4572628713534726786} + - {fileID: -703727508590034734} + - {fileID: 379011391906287503} + - {fileID: 3113534839590100352} + - {fileID: -5381447467718990463} + - {fileID: -831128995147803518} + - {fileID: -4943703780740791497} + - {fileID: 8889449102557515352} + - {fileID: 7418388120587515386} + - {fileID: -8241400713762911622} + - {fileID: -1490169145251653204} + - {fileID: 5404151696527071644} + - {fileID: -1620843228934258646} + - {fileID: -2600200292753176543} + - {fileID: 5885210020131292210} + - {fileID: -4981122253676908298} + - {fileID: 447615802005773951} + - {fileID: 3082862554722476455} + - {fileID: 710999740598723090} + - {fileID: 4122586940367640562} + m_renderMode: 1 + m_latencyOptimization: 0 + m_autoColorSubmissionMode: 1 + m_colorSubmissionModes: + m_List: 00000000 + m_depthSubmissionMode: 0 + m_spacewarpMotionVectorTextureFormat: 0 + m_optimizeBufferDiscards: 1 + m_symmetricProjection: 0 + m_foveatedRenderingApi: 0 +--- !u!114 &-7051362256218644483 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3d28f705476c80d47acb3dfade3d3142, type: 3} + m_Name: MetaXRFoveationFeature Standalone + m_EditorClassIdentifier: + m_enabled: 1 + nameUi: Meta XR Foveation + version: 1.0.0 + featureIdInternal: com.meta.openxr.feature.foveation + openxrExtensionStrings: 'XR_FB_foveation XR_FB_foveation_configuration XR_FB_foveation_vulkan ' + company: Meta + priority: 0 + required: 0 +--- !u!114 &-6774673133709458243 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7de993716e042c6499d0c18eed3a773c, type: 3} + m_Name: MockRuntime Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Mock Runtime + version: 0.0.2 + featureIdInternal: com.unity.openxr.feature.mockruntime + openxrExtensionStrings: XR_UNITY_null_gfx XR_UNITY_android_present + company: Unity + priority: 0 + required: 0 + ignoreValidationErrors: 0 +--- !u!114 &-6002298973735215866 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b213d3e3c7f3109449eb46a4c8ee42f0, type: 3} + m_Name: XrPerformanceSettingsFeature Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: XR Performance Settings + version: 1.0.0 + featureIdInternal: com.unity.openxr.feature.extension.performance_settings + openxrExtensionStrings: XR_EXT_performance_settings + company: Unity + priority: 0 + required: 0 +--- !u!114 &-5713268474307988779 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f6a75d1f5ff90154ea2a8e58222a1f59, type: 3} + m_Name: FoveatedRenderingFeature Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Foveated Rendering + version: 1 + featureIdInternal: com.unity.openxr.feature.foveatedrendering + openxrExtensionStrings: XR_UNITY_foveation XR_FB_foveation XR_FB_foveation_configuration + XR_FB_swapchain_update_state XR_FB_foveation_vulkan XR_META_foveation_eye_tracked + XR_META_vulkan_swapchain_create_info + company: Unity + priority: 0 + required: 0 +--- !u!114 &-5381447467718990463 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f6bfdbcb316ed242b30a8798c9eb853, type: 3} + m_Name: KHRSimpleControllerProfile Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Khronos Simple Controller Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.khrsimpleprofile + openxrExtensionStrings: + company: Unity + priority: 0 + required: 0 +--- !u!114 &-4981122253676908298 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9ef793c31862a37448e907829482ef80, type: 3} + m_Name: OculusQuestFeature Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Oculus Quest Support + version: 1.0.0 + featureIdInternal: com.unity.openxr.feature.oculusquest + openxrExtensionStrings: XR_OCULUS_android_initialize_loader + company: Unity + priority: 0 + required: 0 + targetQuest: 1 + targetQuest2: 1 +--- !u!114 &-4943703780740791497 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2b7365b139f7aec43b23d26b7a48b5a6, type: 3} + m_Name: MetaQuestTouchPlusControllerProfile Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Meta Quest Touch Plus Controller Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.metaquestplus + openxrExtensionStrings: XR_META_touch_controller_plus + company: Unity + priority: 0 + required: 0 +--- !u!114 &-4572628713534726786 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b3cf79659a011bd419c7a2a30eb74e9a, type: 3} + m_Name: EyeGazeInteraction Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Eye Gaze Interaction Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.eyetracking + openxrExtensionStrings: XR_EXT_eye_gaze_interaction + company: Unity + priority: 0 + required: 0 +--- !u!114 &-2989466778921836754 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 486b5e28864f9a94b979b9620ce5006d, type: 3} + m_Name: ConformanceAutomationFeature Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Conformance Automation + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.conformance + openxrExtensionStrings: XR_EXT_conformance_automation + company: Unity + priority: 0 + required: 0 +--- !u!114 &-2600200292753176543 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f928d0d73a35f294fbe357ca17aa3547, type: 3} + m_Name: MicrosoftHandInteraction Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Microsoft Hand Interaction Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.handtracking + openxrExtensionStrings: XR_MSFT_hand_interaction + company: Unity + priority: 0 + required: 0 +--- !u!114 &-2514664665311500257 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 274c02963f889a64e90bc2e596e21d13, type: 3} + m_Name: HTCViveControllerProfile Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: HTC Vive Controller Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.htcvive + openxrExtensionStrings: + company: Unity + priority: 0 + required: 0 +--- !u!114 &-2222840721098701090 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f028123e2efe1d443875bc7609b4a98b, type: 3} + m_Name: PalmPoseInteraction Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Palm Pose + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.palmpose + openxrExtensionStrings: XR_EXT_palm_pose + company: Unity + priority: 0 + required: 0 +--- !u!114 &-1894394481695529979 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c5b5af5107e35a43818d5411328bfc3, type: 3} + m_Name: DPadInteraction Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: D-Pad Binding + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.dpadinteraction + openxrExtensionStrings: XR_KHR_binding_modification XR_EXT_dpad_binding + company: Unity + priority: 0 + required: 0 + forceThresholdLeft: 0.5 + forceThresholdReleaseLeft: 0.4 + centerRegionLeft: 0.5 + wedgeAngleLeft: 1.5707964 + isStickyLeft: 0 + forceThresholdRight: 0.5 + forceThresholdReleaseRight: 0.4 + centerRegionRight: 0.5 + wedgeAngleRight: 1.5707964 + isStickyRight: 0 + extensionStrings: + - XR_KHR_binding_modification + - XR_EXT_dpad_binding +--- !u!114 &-1620843228934258646 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4710975c7840e7d499bbb3757c22b0a5, type: 3} + m_Name: MetaXRSubsampledLayout Android + m_EditorClassIdentifier: + m_enabled: 1 + nameUi: Meta XR Subsampled Layout + version: 0.0.1 + featureIdInternal: com.meta.openxr.feature.subsampledLayout + openxrExtensionStrings: XR_META_vulkan_swapchain_create_info + company: Meta + priority: 0 + required: 0 +--- !u!114 &-1490169145251653204 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3d28f705476c80d47acb3dfade3d3142, type: 3} + m_Name: MetaXRFoveationFeature Android + m_EditorClassIdentifier: + m_enabled: 1 + nameUi: Meta XR Foveation + version: 1.0.0 + featureIdInternal: com.meta.openxr.feature.foveation + openxrExtensionStrings: 'XR_FB_foveation XR_FB_foveation_configuration XR_FB_foveation_vulkan ' + company: Meta + priority: 0 + required: 0 +--- !u!114 &-1014262163700717458 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e5315f812f023cf4ebf26f7e5d2d70f2, type: 3} + m_Name: HPReverbG2ControllerProfile Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: HP Reverb G2 Controller Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.hpreverb + openxrExtensionStrings: XR_EXT_hp_mixed_reality_controller + company: Unity + priority: 0 + required: 0 +--- !u!114 &-831128995147803518 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f647cc0545697264a9878224faada6d5, type: 3} + m_Name: MetaQuestFeature Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Meta Quest Support + version: 1.0.0 + featureIdInternal: com.unity.openxr.feature.metaquest + openxrExtensionStrings: XR_OCULUS_android_initialize_loader + company: Unity + priority: 0 + required: 0 + targetDevices: + - visibleName: Quest + manifestName: quest + enabled: 1 + - visibleName: Quest 2 + manifestName: quest2 + enabled: 1 + - visibleName: Quest Pro + manifestName: cambria + enabled: 1 + - visibleName: Quest 3 + manifestName: eureka + enabled: 1 + - visibleName: Quest 3S + manifestName: quest3s + enabled: 1 + forceRemoveInternetPermission: 0 + symmetricProjection: 0 + foveatedRenderingApi: 0 + systemSplashScreen: {fileID: 0} + optimizeBufferDiscards: 1 + lateLatchingMode: 0 + lateLatchingDebug: 0 + optimizeMultiviewRenderRegions: 0 + spacewarpMotionVectorTextureFormat: 0 +--- !u!114 &-703727508590034734 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f6a75d1f5ff90154ea2a8e58222a1f59, type: 3} + m_Name: FoveatedRenderingFeature Android + m_EditorClassIdentifier: + m_enabled: 1 + nameUi: Foveated Rendering + version: 1 + featureIdInternal: com.unity.openxr.feature.foveatedrendering + openxrExtensionStrings: XR_UNITY_foveation XR_FB_foveation XR_FB_foveation_configuration + XR_FB_swapchain_update_state XR_FB_foveation_vulkan XR_META_foveation_eye_tracked + XR_META_vulkan_swapchain_create_info + company: Unity + priority: 0 + required: 0 +--- !u!114 &-699412468005535409 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2a24be4b5ebfe5f4d8ed1de9b25cb7aa, type: 3} + m_Name: HandCommonPosesInteraction Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Hand Interaction Poses + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.handinteractionposes + openxrExtensionStrings: XR_EXT_hand_interaction + company: Unity + priority: 0 + required: 0 +--- !u!114 &-696073211486422572 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4710975c7840e7d499bbb3757c22b0a5, type: 3} + m_Name: MetaXRSubsampledLayout Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Meta XR Subsampled Layout + version: 0.0.1 + featureIdInternal: com.meta.openxr.feature.subsampledLayout + openxrExtensionStrings: XR_META_vulkan_swapchain_create_info + company: Meta + priority: 0 + required: 0 +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9f0ebc320a151d3408ea1e9fce54d40e, type: 3} + m_Name: OpenXR Package Settings + m_EditorClassIdentifier: + Keys: 0100000007000000 + Values: + - {fileID: 4335772769374908395} + - {fileID: -7643989637297488327} +--- !u!114 &22307100192306418 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e573a2aed6698b047aff95224499b722, type: 3} + m_Name: MetaXREyeTrackedFoveationFeature Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Meta XR Eye Tracked Foveation + version: 0.0.1 + featureIdInternal: com.meta.openxr.feature.eyetrackedfoveation + openxrExtensionStrings: XR_META_foveation_eye_tracked XR_FB_eye_tracking_social + XR_META_vulkan_swapchain_create_info + company: Meta + priority: 0 + required: 0 +--- !u!114 &379011391906287503 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2a24be4b5ebfe5f4d8ed1de9b25cb7aa, type: 3} + m_Name: HandCommonPosesInteraction Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Hand Interaction Poses + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.handinteractionposes + openxrExtensionStrings: XR_EXT_hand_interaction + company: Unity + priority: 0 + required: 0 +--- !u!114 &447615802005773951 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: feeef8d85de8db242bdda70cc7ff5acd, type: 3} + m_Name: OculusTouchControllerProfile Android + m_EditorClassIdentifier: + m_enabled: 1 + nameUi: Oculus Touch Controller Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.oculustouch + openxrExtensionStrings: + company: Unity + priority: 0 + required: 0 +--- !u!114 &710999740598723090 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 056125dd64c0ed540b40a4af74f7b495, type: 3} + m_Name: RuntimeDebuggerOpenXRFeature Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Runtime Debugger + version: 1 + featureIdInternal: com.unity.openxr.features.runtimedebugger + openxrExtensionStrings: + company: Unity + priority: 0 + required: 0 + cacheSize: 1048576 + perThreadCacheSize: 51200 +--- !u!114 &1008920642824502274 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1927c045052a06d49a9b21fdcaa26db6, type: 3} + m_Name: MetaXRFeature Standalone + m_EditorClassIdentifier: + m_enabled: 1 + nameUi: Meta XR Feature + version: 0.0.1 + featureIdInternal: com.meta.openxr.feature.metaxr + openxrExtensionStrings: 'XR_KHR_vulkan_enable XR_KHR_D3D11_enable XR_OCULUS_common_reference_spaces + XR_FB_display_refresh_rate XR_EXT_performance_settings XR_FB_composition_layer_image_layout + XR_KHR_android_surface_swapchain XR_FB_android_surface_swapchain_create XR_KHR_composition_layer_color_scale_bias + XR_FB_color_space XR_EXT_hand_tracking XR_FB_swapchain_update_state XR_FB_swapchain_update_state_opengl_es + XR_FB_swapchain_update_state_vulkan XR_FB_composition_layer_alpha_blend XR_KHR_composition_layer_depth + XR_KHR_composition_layer_cylinder XR_KHR_composition_layer_cube XR_KHR_composition_layer_equirect2 + XR_KHR_convert_timespec_time XR_KHR_visibility_mask XR_FB_render_model XR_FB_spatial_entity + XR_FB_spatial_entity_user XR_FB_spatial_entity_query XR_FB_spatial_entity_storage + XR_FB_spatial_entity_storage_batch XR_META_spatial_entity_mesh XR_META_performance_metrics + XR_FB_spatial_entity_sharing XR_FB_scene XR_FB_spatial_entity_container XR_FB_scene_capture + XR_FB_face_tracking XR_FB_face_tracking2 XR_FB_eye_tracking XR_FB_eye_tracking_social + XR_FB_body_tracking XR_META_body_tracking_full_body XR_META_body_tracking_calibration + XR_META_body_tracking_fidelity XR_FB_keyboard_tracking XR_META_virtual_keyboard + XR_FB_passthrough XR_FB_triangle_mesh XR_FB_passthrough_keyboard_hands XR_META_passthrough_layer_resumed_event + XR_META_passthrough_color_lut XR_META_passthrough_preferences XR_OCULUS_audio_device_guid + XR_FB_common_events XR_FB_hand_tracking_capsules XR_FB_hand_tracking_mesh XR_FB_hand_tracking_aim + XR_FB_touch_controller_pro XR_FB_touch_controller_proximity XR_FB_composition_layer_depth_test + XR_FB_haptic_amplitude_envelope XR_FB_haptic_pcm XR_META_local_dimming XR_META_hand_tracking_wide_motion_mode + XR_EXT_hand_tracking_data_source XR_EXT_hand_joints_motion_range XR_META_touch_controller_plus + XR_META_simultaneous_hands_and_controllers XR_MSFT_hand_interaction XR_EXT_hand_interaction + XR_FB_hand_tracking_confidence XR_META_detached_controllers XR_LOGITECH_mx_ink_stylus_interaction + XR_META_colocation_discovery XR_META_spatial_entity_sharing XR_META_spatial_entity_group_sharing + XR_EXT_debug_utils XR_META_dynamic_object_tracker XR_META_dynamic_object_keyboard + XR_META_hand_tracking_microgestures XR_META_spatial_entity_persistence XR_META_spatial_entity_discovery + XR_META_boundary_visibility XR_META_face_tracking_visemes XR_META_headset_id + XR_FB_composition_layer_settings XR_META_automatic_layer_filter XR_METAX1_spatial_entity_marker + XR_META_environment_raycast XR_EXT_future XR_EXTX2_stationary_reference_space + XR_META_recommended_layer_resolution XR_EXT_local_floor ' + company: Meta + priority: 0 + required: 0 +--- !u!114 &1699743506344405260 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0d6ccd3d0ef0f1d458e69421dccbdae1, type: 3} + m_Name: ValveIndexControllerProfile Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Valve Index Controller Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.valveindex + openxrExtensionStrings: + company: Unity + priority: 0 + required: 0 +--- !u!114 &1726763042414104699 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 761fdd4502cb7a84e9ec7a2b24f33f37, type: 3} + m_Name: MicrosoftMotionControllerProfile Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Microsoft Motion Controller Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.microsoftmotioncontroller + openxrExtensionStrings: + company: Unity + priority: 0 + required: 0 +--- !u!114 &2534237125409310010 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f6bfdbcb316ed242b30a8798c9eb853, type: 3} + m_Name: KHRSimpleControllerProfile Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Khronos Simple Controller Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.khrsimpleprofile + openxrExtensionStrings: + company: Unity + priority: 0 + required: 0 +--- !u!114 &3082862554722476455 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f028123e2efe1d443875bc7609b4a98b, type: 3} + m_Name: PalmPoseInteraction Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Palm Pose + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.palmpose + openxrExtensionStrings: XR_EXT_palm_pose + company: Unity + priority: 0 + required: 0 +--- !u!114 &3113534839590100352 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5019471fb2174e5c852ecd4047163007, type: 3} + m_Name: HandInteractionProfile Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Hand Interaction Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.handinteraction + openxrExtensionStrings: XR_EXT_hand_interaction + company: Unity + priority: 0 + required: 0 +--- !u!114 &4122586940367640562 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b213d3e3c7f3109449eb46a4c8ee42f0, type: 3} + m_Name: XrPerformanceSettingsFeature Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: XR Performance Settings + version: 1.0.0 + featureIdInternal: com.unity.openxr.feature.extension.performance_settings + openxrExtensionStrings: XR_EXT_performance_settings + company: Unity + priority: 0 + required: 0 +--- !u!114 &4335772769374908395 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b5a1f07dc5afe854f9f12a4194aca3fb, type: 3} + m_Name: Standalone + m_EditorClassIdentifier: + features: + - {fileID: 9056994517709817667} + - {fileID: 5570720743402810280} + - {fileID: 6536408747882657334} + - {fileID: -5713268474307988779} + - {fileID: -699412468005535409} + - {fileID: 6234802264382161420} + - {fileID: -1014262163700717458} + - {fileID: -2514664665311500257} + - {fileID: 2534237125409310010} + - {fileID: -8176086360009514695} + - {fileID: 5493602656585386469} + - {fileID: 22307100192306418} + - {fileID: 1008920642824502274} + - {fileID: -7051362256218644483} + - {fileID: -696073211486422572} + - {fileID: 6694114440367677162} + - {fileID: 1726763042414104699} + - {fileID: -6774673133709458243} + - {fileID: 7288001260361270674} + - {fileID: -2222840721098701090} + - {fileID: 9171539580131891098} + - {fileID: 1699743506344405260} + - {fileID: -6002298973735215866} + m_renderMode: 1 + m_latencyOptimization: 0 + m_autoColorSubmissionMode: 1 + m_colorSubmissionModes: + m_List: 00000000 + m_depthSubmissionMode: 0 + m_spacewarpMotionVectorTextureFormat: 0 + m_optimizeBufferDiscards: 0 + m_symmetricProjection: 0 + m_foveatedRenderingApi: 0 +--- !u!114 &5404151696527071644 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 81954520b8bbd2f458104fe69f5a7680, type: 3} + m_Name: MetaXRSpaceWarp Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Meta XR Space Warp + version: 1.0.0 + featureIdInternal: com.meta.openxr.feature.spacewarp + openxrExtensionStrings: XR_FB_space_warp + company: Meta + priority: 0 + required: 0 +--- !u!114 &5493602656585386469 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c4b862ee14fb479fbfe5fffe655d3ed3, type: 3} + m_Name: MetaQuestTouchProControllerProfile Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Meta Quest Touch Pro Controller Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.metaquestpro + openxrExtensionStrings: XR_FB_touch_controller_pro + company: Unity + priority: 0 + required: 0 +--- !u!114 &5570720743402810280 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c5b5af5107e35a43818d5411328bfc3, type: 3} + m_Name: DPadInteraction Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: D-Pad Binding + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.dpadinteraction + openxrExtensionStrings: XR_KHR_binding_modification XR_EXT_dpad_binding + company: Unity + priority: 0 + required: 0 + forceThresholdLeft: 0.5 + forceThresholdReleaseLeft: 0.4 + centerRegionLeft: 0.5 + wedgeAngleLeft: 1.5707964 + isStickyLeft: 0 + forceThresholdRight: 0.5 + forceThresholdReleaseRight: 0.4 + centerRegionRight: 0.5 + wedgeAngleRight: 1.5707964 + isStickyRight: 0 + extensionStrings: + - XR_KHR_binding_modification + - XR_EXT_dpad_binding +--- !u!114 &5885210020131292210 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7de993716e042c6499d0c18eed3a773c, type: 3} + m_Name: MockRuntime Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Mock Runtime + version: 0.0.2 + featureIdInternal: com.unity.openxr.feature.mockruntime + openxrExtensionStrings: XR_UNITY_null_gfx XR_UNITY_android_present + company: Unity + priority: 0 + required: 0 + ignoreValidationErrors: 0 +--- !u!114 &6234802264382161420 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5019471fb2174e5c852ecd4047163007, type: 3} + m_Name: HandInteractionProfile Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Hand Interaction Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.handinteraction + openxrExtensionStrings: XR_EXT_hand_interaction + company: Unity + priority: 0 + required: 0 +--- !u!114 &6536408747882657334 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b3cf79659a011bd419c7a2a30eb74e9a, type: 3} + m_Name: EyeGazeInteraction Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Eye Gaze Interaction Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.eyetracking + openxrExtensionStrings: XR_EXT_eye_gaze_interaction + company: Unity + priority: 0 + required: 0 +--- !u!114 &6694114440367677162 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f928d0d73a35f294fbe357ca17aa3547, type: 3} + m_Name: MicrosoftHandInteraction Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Microsoft Hand Interaction Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.handtracking + openxrExtensionStrings: XR_MSFT_hand_interaction + company: Unity + priority: 0 + required: 0 +--- !u!114 &7288001260361270674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: feeef8d85de8db242bdda70cc7ff5acd, type: 3} + m_Name: OculusTouchControllerProfile Standalone + m_EditorClassIdentifier: + m_enabled: 1 + nameUi: Oculus Touch Controller Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.oculustouch + openxrExtensionStrings: + company: Unity + priority: 0 + required: 0 +--- !u!114 &7418388120587515386 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e573a2aed6698b047aff95224499b722, type: 3} + m_Name: MetaXREyeTrackedFoveationFeature Android + m_EditorClassIdentifier: + m_enabled: 1 + nameUi: Meta XR Eye Tracked Foveation + version: 0.0.1 + featureIdInternal: com.meta.openxr.feature.eyetrackedfoveation + openxrExtensionStrings: XR_META_foveation_eye_tracked XR_FB_eye_tracking_social + XR_META_vulkan_swapchain_create_info + company: Meta + priority: 0 + required: 0 +--- !u!114 &8889449102557515352 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c4b862ee14fb479fbfe5fffe655d3ed3, type: 3} + m_Name: MetaQuestTouchProControllerProfile Android + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Meta Quest Touch Pro Controller Profile + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.input.metaquestpro + openxrExtensionStrings: XR_FB_touch_controller_pro + company: Unity + priority: 0 + required: 0 +--- !u!114 &9056994517709817667 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 486b5e28864f9a94b979b9620ce5006d, type: 3} + m_Name: ConformanceAutomationFeature Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Conformance Automation + version: 0.0.1 + featureIdInternal: com.unity.openxr.feature.conformance + openxrExtensionStrings: XR_EXT_conformance_automation + company: Unity + priority: 0 + required: 0 +--- !u!114 &9171539580131891098 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 056125dd64c0ed540b40a4af74f7b495, type: 3} + m_Name: RuntimeDebuggerOpenXRFeature Standalone + m_EditorClassIdentifier: + m_enabled: 0 + nameUi: Runtime Debugger + version: 1 + featureIdInternal: com.unity.openxr.features.runtimedebugger + openxrExtensionStrings: + company: Unity + priority: 0 + required: 0 + cacheSize: 1048576 + perThreadCacheSize: 51200 diff --git a/Assets/XR/Settings/OpenXR Package Settings.asset.meta b/Assets/XR/Settings/OpenXR Package Settings.asset.meta new file mode 100644 index 0000000..7c1c61b --- /dev/null +++ b/Assets/XR/Settings/OpenXR Package Settings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86b9354e750756f4abbd40c5fd4029f1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XR/XRGeneralSettingsPerBuildTarget.asset b/Assets/XR/XRGeneralSettingsPerBuildTarget.asset new file mode 100644 index 0000000..447a5ba --- /dev/null +++ b/Assets/XR/XRGeneralSettingsPerBuildTarget.asset @@ -0,0 +1,80 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7357231829928813637 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4c3631f5e58749a59194e0cf6baf6d5, type: 3} + m_Name: Android Providers + m_EditorClassIdentifier: + m_RequiresSettingsUpdate: 0 + m_AutomaticLoading: 0 + m_AutomaticRunning: 0 + m_Loaders: + - {fileID: 11400000, guid: f8faa3f9814086c4ebc2f0b9d3a61306, type: 2} +--- !u!114 &-5788518018804141527 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4c3631f5e58749a59194e0cf6baf6d5, type: 3} + m_Name: Standalone Providers + m_EditorClassIdentifier: + m_RequiresSettingsUpdate: 0 + m_AutomaticLoading: 0 + m_AutomaticRunning: 0 + m_Loaders: + - {fileID: 11400000, guid: f8faa3f9814086c4ebc2f0b9d3a61306, type: 2} +--- !u!114 &-5569250660071684595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d236b7d11115f2143951f1e14045df39, type: 3} + m_Name: Android Settings + m_EditorClassIdentifier: + m_LoaderManagerInstance: {fileID: -7357231829928813637} + m_InitManagerOnStart: 1 +--- !u!114 &-1404151339854391371 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d236b7d11115f2143951f1e14045df39, type: 3} + m_Name: Standalone Settings + m_EditorClassIdentifier: + m_LoaderManagerInstance: {fileID: -5788518018804141527} + m_InitManagerOnStart: 1 +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d2dc886499c26824283350fa532d087d, type: 3} + m_Name: XRGeneralSettingsPerBuildTarget + m_EditorClassIdentifier: + Keys: 0700000001000000 + Values: + - {fileID: -5569250660071684595} + - {fileID: -1404151339854391371} diff --git a/Assets/XR/XRGeneralSettingsPerBuildTarget.asset.meta b/Assets/XR/XRGeneralSettingsPerBuildTarget.asset.meta new file mode 100644 index 0000000..bf24212 --- /dev/null +++ b/Assets/XR/XRGeneralSettingsPerBuildTarget.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ce99cd364a5764642abfbda50b25a8ba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy.meta b/Assets/ithappy.meta new file mode 100644 index 0000000..6db5abd --- /dev/null +++ b/Assets/ithappy.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ba2212c783bac534c87eddb914b035eb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE.meta b/Assets/ithappy/Creative_Characters_FREE.meta new file mode 100644 index 0000000..fed952b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1fd8c1dcf06d68943b84d80c01f8ab8c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations.meta b/Assets/ithappy/Creative_Characters_FREE/Animations.meta new file mode 100644 index 0000000..bc9d03e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6057824b341e4cf4faa66ddc9b540e0a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/AnimationController.controller b/Assets/ithappy/Creative_Characters_FREE/Animations/AnimationController.controller new file mode 100644 index 0000000..80f086e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/AnimationController.controller @@ -0,0 +1,1603 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1101 &-8662741452573447169 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 6602800781681240909} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.7580645 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &-6961649917121588981 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Dodge_Sidestep + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -2929321222268338413} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 7c5d0d143ca84dd498bf7bef80ca9802, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &-6731662497621744950 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -5756652270415274974} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.84375 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &-6682075093956836309 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Crouch_Walk_Forward + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 4368172486397411221} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 887b0da216cc9134ebbd73ab0e6cb23a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-6152465523299685430 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Dodge_Roll + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -5775749622974009441} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 69d9322ca859b704892b207598426888, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-6110457052412249932 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -3383566836505576598} + m_Position: {x: 425.6447, y: -177.2063, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8424667979175285155} + m_Position: {x: 430, y: -120, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5756652270415274974} + m_Position: {x: 430, y: -60, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5153732051920024469} + m_Position: {x: 430, y: 0, z: 0} + - serializedVersion: 1 + m_State: {fileID: -3691213384639734333} + m_Position: {x: 430, y: 60, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8592593199123773661} + m_Position: {x: 430, y: 120, z: 0} + - serializedVersion: 1 + m_State: {fileID: -6682075093956836309} + m_Position: {x: 430, y: 180, z: 0} + - serializedVersion: 1 + m_State: {fileID: -4053313195052053341} + m_Position: {x: 430, y: 240, z: 0} + - serializedVersion: 1 + m_State: {fileID: 4973900443980124034} + m_Position: {x: 430, y: 300, z: 0} + - serializedVersion: 1 + m_State: {fileID: -2752191859616859756} + m_Position: {x: 430, y: 350, z: 0} + - serializedVersion: 1 + m_State: {fileID: 4384671229823214064} + m_Position: {x: 430, y: 410, z: 0} + - serializedVersion: 1 + m_State: {fileID: -6152465523299685430} + m_Position: {x: 430, y: 470, z: 0} + - serializedVersion: 1 + m_State: {fileID: -6961649917121588981} + m_Position: {x: 430, y: 530, z: 0} + - serializedVersion: 1 + m_State: {fileID: -1393264277621406775} + m_Position: {x: 430, y: 590, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8671841436021531535} + m_Position: {x: 430, y: 650, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5169794785718691535} + m_Position: {x: 430, y: 710, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6183164609306075426} + m_Position: {x: 430, y: 770, z: 0} + - serializedVersion: 1 + m_State: {fileID: -5505193406280138001} + m_Position: {x: 430, y: 830, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2256373735707652197} + m_Position: {x: 430, y: 890, z: 0} + - serializedVersion: 1 + m_State: {fileID: 5200635752330905665} + m_Position: {x: 430, y: 950, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2048158714764223969} + m_Position: {x: 430, y: 1010, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6977593964762279356} + m_Position: {x: 430, y: 1070, z: 0} + - serializedVersion: 1 + m_State: {fileID: -4880385607258591278} + m_Position: {x: 430, y: 1130, z: 0} + - serializedVersion: 1 + m_State: {fileID: 422434569793846794} + m_Position: {x: 430, y: 1190, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8200818797398961046} + m_Position: {x: 430, y: 1250, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2537697317216126033} + m_Position: {x: 430, y: 1310, z: 0} + - serializedVersion: 1 + m_State: {fileID: -2194444966960949502} + m_Position: {x: 430, y: 1370, z: 0} + - serializedVersion: 1 + m_State: {fileID: 3610436813375427008} + m_Position: {x: 430, y: 1430, z: 0} + - serializedVersion: 1 + m_State: {fileID: 1380143506873902144} + m_Position: {x: 430, y: 1490, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6602800781681240909} + m_Position: {x: 430, y: 1550, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 210, y: -140, z: 0} + m_EntryPosition: {x: 210, y: -180, z: 0} + m_ExitPosition: {x: 660, y: -180, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -3383566836505576598} +--- !u!1101 &-5775749622974009441 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -6961649917121588981} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.8469388 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &-5756652270415274974 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Attack_Punch + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -4403841064335893038} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: e2395353b4b8ca644adba7ccf04cdf2f, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-5505193406280138001 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle_Look_Around + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 1854727262004934699} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: e45787f7fb0de3c46861bf4e29eb3448, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-5169794785718691535 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Hit_Reaction_Light + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 521888496878208093} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: e7c6802b18e6edf4cb1b602ffbbe81d0, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-5153732051920024469 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Block_With_Hands + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 4048159806450562546} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 0a3ae6dc1278dd34ea26b86bce1cf553, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-4880385607258591278 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Run_Backward + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 9221577435962608991} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 306181288ee2f4549a9887a8e1de380e, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &-4403841064335893038 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -5153732051920024469} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.7413793 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &-4066197713897256905 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 8592593199123773661} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.765625 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &-4053313195052053341 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Crouch_Walk_Left + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 525061476317879985} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 41d463fdf215b5f4c9f292a2e702327e, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-3691213384639734333 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Climb_Ladder + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -4066197713897256905} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 138dffee525b3df41866a77ec480b769, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-3383566836505576598 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: A-pose + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 1806904958422553511} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 0f1408fc5e8f3cf448b55e6a89ef75d4, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &-2929321222268338413 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -1393264277621406775} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.82558143 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &-2752191859616859756 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Death_Backward + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 2305439799324050963} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 58a2dc2a247cbd44ca251b6a2aeba681, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &-2386733209367776352 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 8671841436021531535} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.9444444 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &-2267471182674824771 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 6977593964762279356} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.84375 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &-2194444966960949502 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Strafe_Left + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 1337043848375491312} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 8c59196bf56e9204e8b003ac319dae90, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &-2075873514883413360 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 8200818797398961046} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.67391306 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &-1393264277621406775 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Fall + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -2386733209367776352} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: f5eb6237b4ff1974a9853a259c4af9e4, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &-1339941677936944867 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -2194444966960949502} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.67391306 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &-487505056129349308 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -5169794785718691535} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.8076923 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &-124676998987818566 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -6682075093956836309} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.8076923 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: AnimationController + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -6110457052412249932} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1101 &14848182033030064 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 0} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 1 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.7580645 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &240581100090805381 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -5505193406280138001} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.97359157 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &422434569793846794 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Run_Forward + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -2075873514883413360} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 31a3d1056e04d0646864510c89447e7b, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &521888496878208093 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 6183164609306075426} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.8369565 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &525061476317879985 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 4973900443980124034} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.8076923 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &746085130975873314 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 1380143506873902144} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.7580645 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &774604794512226854 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 2537697317216126033} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.67391306 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &1036362112612883447 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -6152465523299685430} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.9127907 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &1337043848375491312 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 3610436813375427008} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.7580645 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &1380143506873902144 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Walk_Backward + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -8662741452573447169} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 9e5bbc0b38e172547b9df5b65285bb88, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &1806904958422553511 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 8424667979175285155} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.9892857 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &1854727262004934699 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 2256373735707652197} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.9666667 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &2048158714764223969 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Jump_Loop + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -2267471182674824771} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 01e7c5210856d604797dba8d0f416756, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &2256373735707652197 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle_Relaxed + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 5637619206851928177} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: d7c91d687742c86458ee65714ce8dd25, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &2305439799324050963 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 4384671229823214064} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.9166667 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &2537697317216126033 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Run_Right + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -1339941677936944867} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 09bcba9e64fe5d444ad34fc4a6473d6f, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &3610436813375427008 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Strafe_Right + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 746085130975873314} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 1c8b826792c3d53499d140fcf8b41ff6, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &4048159806450562546 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -3691213384639734333} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.91071427 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &4368172486397411221 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -4053313195052053341} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.8076923 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &4384671229823214064 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Death_Forward + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 1036362112612883447} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: fa056ee7671285a4cbab58b01695a75a, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &4606062548632649363 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 2048158714764223969} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.765625 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &4973900443980124034 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Crouch_Walk_Right + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 6531170942118202466} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: f2e3645688fbd9242aea26344a2d65e8, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &5200635752330905665 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Jump_End + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 4606062548632649363} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: c3802495444247743a64026610cb08e7, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &5637619206851928177 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 5200635752330905665} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.91071427 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &5958324135989752369 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -4880385607258591278} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.67391306 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &6183164609306075426 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle_Breathing + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 240581100090805381} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 3e8b019130a71d04192187428b660fbf, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &6531170942118202466 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -2752191859616859756} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.8076923 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &6602800781681240909 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Walk_Forward + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 14848182033030064} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 2152f8e3746157f4ca3aba17d5963ca8, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &6977593964762279356 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Jump_Start + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 5958324135989752369} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 191d29dc89c35314e8a01ec91e553bd1, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8200818797398961046 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Run_Left + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 774604794512226854} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 44f4c77b25b52da4d8c0ab33a4f55a0e, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8424667979175285155 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Attack_Kick + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -6731662497621744950} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: a4f85fb4594fddb48b97104b8de67692, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8592593199123773661 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Crouch_Walk_Backward + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -124676998987818566} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: e6cd4789863bd414da074bc349f5b59d, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &8671841436021531535 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Hit_Reaction_Heavy + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -487505056129349308} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: a2622958b25d410408f58b4306cecd69, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &9221577435962608991 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 422434569793846794} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.67391306 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/AnimationController.controller.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/AnimationController.controller.meta new file mode 100644 index 0000000..63d8941 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/AnimationController.controller.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: d16a1e98254f09443afa6295c1c9948e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/AnimationController.controller + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Controllers.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Controllers.meta new file mode 100644 index 0000000..22113ea --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Controllers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8a5599cb095252943a5de946675ef5fe +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Controllers/Character_Movement.controller b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Controllers/Character_Movement.controller new file mode 100644 index 0000000..a45f604 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Controllers/Character_Movement.controller @@ -0,0 +1,486 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!206 &-9081863849493629743 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BlendTree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: -8280209622319100531, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 5599871095008294255, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_Threshold: 0.25 + m_Position: {x: 0, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 2699223227767875773, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_Threshold: 0.5 + m_Position: {x: 0, y: -1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: -2094301782565841437, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_Threshold: 0.75 + m_Position: {x: 1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 1540028457872560229, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_Threshold: 1 + m_Position: {x: -1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + m_BlendParameter: Hor + m_BlendParameterY: Vert + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 2 +--- !u!1102 &-8926119334736711676 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Jump + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -3421362426218427388} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 2341926748894873073} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!206 &-8337039692355104441 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BlendTree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 2771865946972476010, guid: c93e73bba3372ed4e98e1a42dd360121, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + m_BlendParameter: Hor + m_BlendParameterY: Vert + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 2 +--- !u!206 &-6559089894679792645 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BlendTree + m_Childs: [] + m_BlendParameter: Vert + m_BlendParameterY: Vert + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!1101 &-6109228769180805723 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: + - m_ConditionMode: 1 + m_ConditionEvent: IsJump + m_EventTreshold: 0 + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -8926119334736711676} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.85714287 + m_HasExitTime: 0 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!206 &-5166718296229995922 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BlendTree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 1396319113448604862, guid: c93e73bba3372ed4e98e1a42dd360121, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + m_BlendParameter: Hor + m_BlendParameterY: Vert + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 2 +--- !u!206 &-5058155162533351288 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BlendTree + m_Childs: [] + m_BlendParameter: Vert + m_BlendParameterY: Vert + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!1101 &-3421362426218427388 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: + - m_ConditionMode: 2 + m_ConditionEvent: IsJump + m_EventTreshold: 0 + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 3454673271203028059} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.91803277 + m_HasExitTime: 0 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!206 &-3011780169364267174 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: -9081863849493629743} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 1294274988643343837} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + m_BlendParameter: State + m_BlendParameterY: Vert + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &-809326316404406644 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BlendTree + m_Childs: [] + m_BlendParameter: State + m_BlendParameterY: Vert + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Character_Movement + serializedVersion: 5 + m_AnimatorParameters: + - m_Name: Vert + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Hor + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: State + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: IsJump + m_Type: 4 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Movement Layer + m_StateMachine: {fileID: 1634769260245420441} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!206 &956541423278959226 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BlendTree + m_Childs: [] + m_BlendParameter: Vert + m_BlendParameterY: Vert + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &1294274988643343837 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BlendTree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: -5387197434441522342, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 2216972904187992000, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_Threshold: 0.25 + m_Position: {x: 0, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 2730884403437174828, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_Threshold: 0.5 + m_Position: {x: 0, y: -1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 3304999090146950619, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_Threshold: 0.75 + m_Position: {x: 1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: -4810848800342533127, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_Threshold: 1 + m_Position: {x: -1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + m_BlendParameter: Hor + m_BlendParameterY: Vert + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 2 +--- !u!1107 &1634769260245420441 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Movement Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 3454673271203028059} + m_Position: {x: 280, y: 60, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8926119334736711676} + m_Position: {x: 280, y: -30, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 50, y: 70, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 3454673271203028059} +--- !u!206 &2341926748894873073 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 9147859612048351787, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 9147859612048351787, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + m_BlendParameter: State + m_BlendParameterY: Vert + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &3396937839142183597 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BlendTree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: -8280209622319100531, guid: f97a25e05a234654ab9d4e11eb9e2e26, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: -5387197434441522342, guid: f97a25e05a234654ab9d4e11eb9e2e26, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Vert + m_Mirror: 0 + m_BlendParameter: State + m_BlendParameterY: Vert + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!1102 &3454673271203028059 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Movement + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -6109228769180805723} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: -3011780169364267174} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Controllers/Character_Movement.controller.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Controllers/Character_Movement.controller.meta new file mode 100644 index 0000000..519a495 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Controllers/Character_Movement.controller.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: fac54571ff27f2b46b28cd6d82cd3c4c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Controllers/Character_Movement.controller + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh.meta new file mode 100644 index 0000000..37d70ee --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4f66471a32dfbc3489c16bc43fe72a91 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.fbx b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.fbx new file mode 100644 index 0000000..2c6aaec Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.fbx.meta new file mode 100644 index 0000000..c68a297 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.fbx.meta @@ -0,0 +1,1617 @@ +fileFormatVersion: 2 +guid: 5dbb2366974668d48a42568690792034 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: "\nClip 'Run_Backward' has import animation warnings + that might lower retargeting quality:\n\t'Hips' has scale animation that will + be discarded.\n\t'LeftLeg' has scale animation that will be discarded.\n\t'LeftFoot' + has scale animation that will be discarded.\n\t'LeftToeBase' has scale animation + that will be discarded.\n\t'Neck' has scale animation that will be discarded.\n\t'Head' + has scale animation that will be discarded.\n\t'LeftShoulder' has scale animation + that will be discarded.\n\t'LeftArm' has scale animation that will be discarded.\n\t'LeftForeArm' + has scale animation that will be discarded.\n\t'LeftHand' has scale animation + that will be discarded.\n\t'LeftHandIndex1' has translation animation that + will be discarded.\n\t'LeftHandIndex1' has scale animation that will be discarded.\n\t'LeftHandIndex2' + has translation animation that will be discarded.\n\t'LeftHandIndex2' has scale + animation that will be discarded.\n\t'LeftHandMiddle1' has translation animation + that will be discarded.\n\t'LeftHandMiddle1' has scale animation that will + be discarded.\n\t'LeftHandMiddle2' has scale animation that will be discarded.\n\t'LeftHandPinky1' + has translation animation that will be discarded.\n\t'LeftHandPinky1' has scale + animation that will be discarded.\n\t'LeftHandPinky2' has scale animation that + will be discarded.\n\t'LeftHandRing1' has translation animation that will be + discarded.\n\t'LeftHandRing1' has scale animation that will be discarded.\n\t'LeftHandRing2' + has scale animation that will be discarded.\n\t'LeftHandThumb1' has translation + animation that will be discarded.\n\t'LeftHandThumb1' has scale animation that + will be discarded.\n\t'LeftHandThumb2' has translation animation that will + be discarded.\n\t'LeftHandThumb2' has scale animation that will be discarded.\n\t'RightShoulder' + has scale animation that will be discarded.\n\t'RightArm' has scale animation + that will be discarded.\n\t'RightForeArm' has scale animation that will be + discarded.\n\t'RightHand' has scale animation that will be discarded.\n\t'RightHandIndex1' + has translation animation that will be discarded.\n\t'RightHandIndex1' has + scale animation that will be discarded.\n\t'RightHandIndex2' has translation + animation that will be discarded.\n\t'RightHandIndex2' has scale animation + that will be discarded.\n\t'RightHandMiddle1' has translation animation that + will be discarded.\n\t'RightHandMiddle1' has scale animation that will be discarded.\n\t'RightHandMiddle2' + has translation animation that will be discarded.\n\t'RightHandMiddle2' has + scale animation that will be discarded.\n\t'RightHandPinky1' has translation + animation that will be discarded.\n\t'RightHandPinky1' has scale animation + that will be discarded.\n\t'RightHandPinky2' has translation animation that + will be discarded.\n\t'RightHandPinky2' has scale animation that will be discarded.\n\t'RightHandRing1' + has translation animation that will be discarded.\n\t'RightHandRing1' has scale + animation that will be discarded.\n\t'RightHandRing2' has translation animation + that will be discarded.\n\t'RightHandRing2' has scale animation that will be + discarded.\n\t'RightHandThumb1' has translation animation that will be discarded.\n\t'RightHandThumb1' + has scale animation that will be discarded.\n\t'RightHandThumb2' has translation + animation that will be discarded.\n\t'RightHandThumb2' has scale animation + that will be discarded.\n\t'RightLeg' has scale animation that will be discarded.\n\t'RightFoot' + has scale animation that will be discarded.\n\t'RightToeBase' has scale animation + that will be discarded.\n" + animationRetargetingWarnings: "\nRetargeting quality report for clip 'Idle_Relaxed':\n\tRetargeting + quality is good. No significant differences with original animation were found.\n\nRetargeting + quality report for clip 'Idle_Look_Around':\n\tRetargeting quality is good. + No significant differences with original animation were found.\n\nRetargeting + quality report for clip 'Idle_Breathing':\n\tRetargeting quality is good. No + significant differences with original animation were found.\n\nRetargeting + quality report for clip 'Walk_Backward':\n\tRetargeting quality is good. No + significant differences with original animation were found.\n\nRetargeting + quality report for clip 'Walk_Forward':\n\tRetargeting quality is good. No + significant differences with original animation were found.\n\nRetargeting + quality report for clip 'Death_Backward':\n\tLeftFoot average position error + 0.1 mm and maximum position error 1.6 mm at time 2:12 (80.0%) Frame 72\n\nRetargeting + quality report for clip 'Strafe_Right':\n\tRightHand average position error + 0.3 mm and maximum position error 1.1 mm at time 0:22 (71.0%) Frame 22\n\nRetargeting + quality report for clip 'Strafe_Left':\n\tLeftHand average position error 0.3 + mm and maximum position error 1.1 mm at time 0: 6 (19.4%) Frame 6\n\nRetargeting + quality report for clip 'Run_Right':\n\tRetargeting quality is good. No significant + differences with original animation were found.\n\nRetargeting quality report + for clip 'Run_Left':\n\tRetargeting quality is good. No significant differences + with original animation were found.\n\nRetargeting quality report for clip + 'Run_Backward':\n\tRightFoot average position error 0.4 mm and maximum position + error 1.4 mm at time 0:23 (100.0%) Frame 23\n\nRetargeting quality report for + clip 'Run_Forward':\n\tRetargeting quality is good. No significant differences + with original animation were found.\n\nRetargeting quality report for clip + 'Attack_Kick':\n\tRetargeting quality is good. No significant differences with + original animation were found.\n\nRetargeting quality report for clip 'Attack_Punch':\n\tRetargeting + quality is good. No significant differences with original animation were found.\n\nRetargeting + quality report for clip 'Climb_Ladder':\n\tRetargeting quality is good. No + significant differences with original animation were found.\n\nRetargeting + quality report for clip 'Fall':\n\tRetargeting quality is good. No significant + differences with original animation were found.\n\nRetargeting quality report + for clip 'Jump_End':\n\tLeftHand average position error 0.3 mm and maximum + position error 1.5 mm at time 0:12 (37.5%) Frame 12\n\nRetargeting quality + report for clip 'Jump_Loop':\n\tRetargeting quality is good. No significant + differences with original animation were found.\n\nRetargeting quality report + for clip 'Jump_Start':\n\tRetargeting quality is good. No significant differences + with original animation were found.\n\nRetargeting quality report for clip + 'Crouch_Walk_Right':\n\tRetargeting quality is good. No significant differences + with original animation were found.\n\nRetargeting quality report for clip + 'Crouch_Walk_Left':\n\tRetargeting quality is good. No significant differences + with original animation were found.\n\nRetargeting quality report for clip + 'Crouch_Walk_Backward':\n\tRetargeting quality is good. No significant differences + with original animation were found.\n\nRetargeting quality report for clip + 'Crouch_Walk_Forward':\n\tRetargeting quality is good. No significant differences + with original animation were found.\n\nRetargeting quality report for clip + 'Hit_Reaction_Heavy':\n\tRetargeting quality is good. No significant differences + with original animation were found.\n\nRetargeting quality report for clip + 'Hit_Reaction_Light':\n\tRetargeting quality is good. No significant differences + with original animation were found.\n\nRetargeting quality report for clip + 'Dodge_Sidestep':\n\tRetargeting quality is good. No significant differences + with original animation were found.\n\nRetargeting quality report for clip + 'Dodge_Roll':\n\tRightFoot average orientation error 0.1 deg and maximum orientation + error 1.9 deg at time 1:11 (83.7%) Frame 41\n\nRetargeting quality report for + clip 'Block_With_Hands':\n\tRetargeting quality is good. No significant differences + with original animation were found.\n\nRetargeting quality report for clip + 'Death_Forward':\n\tRetargeting quality is good. No significant differences + with original animation were found.\n" + animationDoRetargetingWarnings: 1 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: + - serializedVersion: 16 + name: Idle_Relaxed + takeName: Idle_Relaxed + internalID: -8280209622319100531 + firstFrame: 0 + lastFrame: 84 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Idle_Look_Around + takeName: Idle_Look_Around + internalID: -5387197434441522342 + firstFrame: 0 + lastFrame: 225 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Idle_Breathing + takeName: Idle_Breathing + internalID: -6742189263316248174 + firstFrame: 0 + lastFrame: 284 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Walk_Backward + takeName: Walk_Backward + internalID: 2699223227767875773 + firstFrame: 0 + lastFrame: 31 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Walk_Forward + takeName: Walk_Forward + internalID: 5599871095008294255 + firstFrame: 0 + lastFrame: 31 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Death_Backward + takeName: Death_Backward + internalID: -4950758156531648292 + firstFrame: 0 + lastFrame: 90 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Strafe_Right + takeName: Strafe_Right + internalID: -2094301782565841437 + firstFrame: 0 + lastFrame: 31 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Strafe_Left + takeName: Strafe_Left + internalID: 1540028457872560229 + firstFrame: 0 + lastFrame: 31 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Run_Right + takeName: Run_Right + internalID: 3304999090146950619 + firstFrame: 0 + lastFrame: 23 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Run_Left + takeName: Run_Left + internalID: -4810848800342533127 + firstFrame: 0 + lastFrame: 23 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Run_Backward + takeName: Run_Backward + internalID: 2730884403437174828 + firstFrame: 0 + lastFrame: 23 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Run_Forward + takeName: Run_Forward + internalID: 2216972904187992000 + firstFrame: 0 + lastFrame: 23 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Attack_Kick + takeName: Attack_Kick + internalID: 2771865946972476010 + firstFrame: 0 + lastFrame: 48 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Attack_Punch + takeName: Attack_Punch + internalID: -7394484345467444417 + firstFrame: 0 + lastFrame: 29 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Climb_Ladder + takeName: Climb_Ladder + internalID: -6200094899576005654 + firstFrame: 0 + lastFrame: 32 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Fall + takeName: Fall + internalID: 5917537482288442099 + firstFrame: 0 + lastFrame: 135 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Jump_End + takeName: Jump_End + internalID: -7313218633983591571 + firstFrame: 0 + lastFrame: 32 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Jump_Loop + takeName: Jump_Loop + internalID: 9147859612048351787 + firstFrame: 0 + lastFrame: 48 + wrapMode: 0 + orientationOffsetY: 0 + level: 1.23 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Jump_Start + takeName: Jump_Start + internalID: -6402709644054655732 + firstFrame: 0 + lastFrame: 23 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Crouch_Walk_Right + takeName: Crouch_Walk_Right + internalID: -7624677252082611786 + firstFrame: 0 + lastFrame: 39 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Crouch_Walk_Left + takeName: Crouch_Walk_Left + internalID: -7504226609968954862 + firstFrame: 0 + lastFrame: 39 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Crouch_Walk_Backward + takeName: Crouch_Walk_Backward + internalID: 439784503820603027 + firstFrame: 0 + lastFrame: 39 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Crouch_Walk_Forward + takeName: Crouch_Walk_Forward + internalID: 9198153334671162169 + firstFrame: 0 + lastFrame: 39 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Hit_Reaction_Heavy + takeName: Hit_Reaction_Heavy + internalID: 4298968129520807213 + firstFrame: 0 + lastFrame: 39 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Hit_Reaction_Light + takeName: Hit_Reaction_Light + internalID: 732519596084210561 + firstFrame: 0 + lastFrame: 46 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Dodge_Sidestep + takeName: Dodge_Sidestep + internalID: 2737883252764492063 + firstFrame: 0 + lastFrame: 43 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Dodge_Roll + takeName: Dodge_Roll + internalID: 1396319113448604862 + firstFrame: 0 + lastFrame: 49 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Block_With_Hands + takeName: Block_With_Hands + internalID: -4478515264891265488 + firstFrame: 0 + lastFrame: 84 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: Death_Forward + takeName: Death_Forward + internalID: 6182763086745782283 + firstFrame: 0 + lastFrame: 86 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 1 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 1 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Aminset_Basic(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: body + parentName: Aminset_Basic(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Skeleton + parentName: Aminset_Basic(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: 0.002193, y: -0.00000055340877, z: 0.0014029999} + rotation: {x: -0.000000067179414, y: 1.11022296e-16, z: -1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -0.0044939998, y: 0.77253515, z: -0.0009859989} + rotation: {x: -0.24775834, y: -0.0000009708203, z: 0.0000002482695, w: 0.9688219} + scale: {x: 0.99999994, y: 1.0000002, z: 1.000001} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797774, y: 0.014953421, z: -0.028238196} + rotation: {x: -0.6905526, y: -0.14536524, z: 0.6942846, w: 0.14133324} + scale: {x: 0.9999984, y: 0.99999934, z: 1.0000026} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000009071082, y: 0.33968976, z: 0.0000008014031} + rotation: {x: -0.0065636327, y: -0.006816595, z: 0.10785362, w: -0.99412173} + scale: {x: 1, y: 1.0000008, z: 1.0000002} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000011343509, y: 0.3595283, z: 0.00000066962093} + rotation: {x: -0.37091208, y: 0.60024893, z: -0.37896234, w: -0.59875965} + scale: {x: 0.99999934, y: 0.9999999, z: 0.99999994} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.00000045634806, y: 0.13862504, z: -0.00000014901161} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000104308114, w: -0.00000539422} + scale: {x: 1.0000002, y: 1.0000004, z: 0.99999887} + - name: Spine + parentName: Hips + position: {x: 0.00000020465814, y: 0.10254848, z: 0.056476247} + rotation: {x: 0.23109378, y: 0.0000009749383, z: -0.00000023157057, w: 0.9729315} + scale: {x: 1.0000001, y: 0.99999917, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: -0.00000012631062, y: 0.2146181, z: 0.00000035355333} + rotation: {x: -0.005668342, y: 1.7053026e-13, z: -7.1054274e-14, w: 0.99998397} + scale: {x: 0.9999998, y: 0.9999999, z: 0.9999993} + - name: Neck + parentName: Spine1 + position: {x: -0.00000048428774, y: 0.29899046, z: -0.0016208831} + rotation: {x: 0.11318156, y: -1.6125502e-13, z: -2.4702696e-14, w: 0.9935743} + scale: {x: 1.0000002, y: 0.9999989, z: 1.0000006} + - name: Head + parentName: Neck + position: {x: -0.00000006845221, y: 0.09232388, z: -0.00000039977022} + rotation: {x: 0.00000012665986, y: 1.0997076e-13, z: -4.0483645e-14, w: 1} + scale: {x: 1, y: 1.0000012, z: 1} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.03218404, y: 0.24856418, z: 0.0008109156} + rotation: {x: -0.5233107, y: 0.45552135, z: 0.5451747, w: 0.47056437} + scale: {x: 1.0000008, y: 0.9999994, z: 1.0000002} + - name: LeftArm + parentName: LeftShoulder + position: {x: -0.0000001238659, y: 0.12703086, z: -0.00000029895455} + rotation: {x: -0.041993897, y: 0.008905097, z: 0.012639312, w: -0.9989982} + scale: {x: 0.99999976, y: 1.0000005, z: 1.0000004} + - name: LeftForeArm + parentName: LeftArm + position: {x: -0.000000029802322, y: 0.29205778, z: 0.0000016577542} + rotation: {x: -0.040148806, y: 0.7114474, z: -0.016866365, w: -0.7013887} + scale: {x: 1.0000005, y: 1.0000002, z: 1.0000001} + - name: LeftHand + parentName: LeftForeArm + position: {x: -0.0000003054738, y: 0.23034066, z: -0.00000079348683} + rotation: {x: -0.061748806, y: 0.060721114, z: 0.1438463, w: 0.98580337} + scale: {x: 1.0000001, y: 1.0000011, z: 0.99999976} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.011883098, y: 0.10574147, z: 0.038882606} + rotation: {x: 0.01359236, y: -0.78539985, z: 0.0036573766, w: 0.6188288} + scale: {x: 0.99999946, y: 1.0000001, z: 1} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: 0.00000017846469, y: 0.039015356, z: -0.0000006366172} + rotation: {x: 0.000000052154054, y: 0.008823989, z: 0.000000052154054, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999996, z: 1.0000001} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650866, y: 0.10666989, z: 0.0053766984} + rotation: {x: 0.00032717735, y: -0.7618012, z: 0.01422422, w: 0.6476547} + scale: {x: 0.9999995, y: 0.99999994, z: 1.0000013} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: -0.0000006277114, y: 0.041122027, z: 0.00000021513551} + rotation: {x: -0.000000118277924, y: -0.067407854, z: 0.000000018626444, w: 0.99772555} + scale: {x: 1.000001, y: 0.99999946, z: 0.99999887} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944333, y: 0.08885806, z: -0.05634225} + rotation: {x: -0.028196365, y: -0.7184835, z: 0.015442945, w: 0.6948007} + scale: {x: 1, y: 0.9999991, z: 1.0000001} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.00000010058284, y: 0.035424113, z: 0.0000010952353} + rotation: {x: 0.0000001583248, y: -0.0142329, z: -0.000000141561, w: 0.9998988} + scale: {x: 0.9999999, y: 1.0000007, z: 1.0000002} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.031584572, y: 0.09564265, z: -0.0061334018} + rotation: {x: 0.08764763, y: -0.68366635, z: 0.13569641, w: 0.7116915} + scale: {x: 1, y: 0.9999996, z: 1.0000001} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764516, y: 0.094920024, z: -0.026632408} + rotation: {x: -0.009345645, y: -0.74743724, z: 0.0146074295, w: 0.6641061} + scale: {x: 1.0000002, y: 1.0000007, z: 1.0000001} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.00000033155084, y: 0.047299005, z: -0.00000010617077} + rotation: {x: -0.000000061467276, y: -0.017695155, z: 0.000000030733638, w: 0.9998435} + scale: {x: 0.99999964, y: 0.9999996, z: 1.0000014} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.021662375, y: 0.04344485, z: 0.044852056} + rotation: {x: 0.102045886, y: -0.9211671, z: -0.34122396, w: 0.15685688} + scale: {x: 0.99999934, y: 1.0000011, z: 0.9999998} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.0000010678777, y: 0.052411906, z: 0.00000010617077} + rotation: {x: -0.00000015273686, y: 0.056428194, z: -0.00000017881389, w: 0.9984067} + scale: {x: 1.000001, y: 0.9999998, z: 1.0000005} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184158, y: 0.24856453, z: 0.0008111292} + rotation: {x: 0.52331066, y: 0.45552123, z: 0.5451747, w: -0.47056437} + scale: {x: 1.0000013, y: 0.99999976, z: 1.0000005} + - name: RightArm + parentName: RightShoulder + position: {x: 0.00000010430813, y: 0.12703036, z: -0.0000008465722} + rotation: {x: 0.041994262, y: 0.008905126, z: 0.012636346, w: 0.9989983} + scale: {x: 0.9999992, y: 1, z: 1.0000001} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000006277114, y: 0.29205766, z: 0.0000014817342} + rotation: {x: 0.040145468, y: 0.7114473, z: -0.016864108, w: 0.70138913} + scale: {x: 1.0000008, y: 1.0000012, z: 1.0000004} + - name: RightHand + parentName: RightForeArm + position: {x: -0.00000028619252, y: 0.2303404, z: 0.00000067800283} + rotation: {x: -0.061748654, y: -0.06072142, z: -0.1438429, w: 0.9858039} + scale: {x: 1.0000004, y: 0.99999946, z: 0.9999996} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883918, y: 0.105741784, z: 0.038881794} + rotation: {x: -0.01359417, y: -0.78539973, z: 0.0036656652, w: -0.6188288} + scale: {x: 0.9999996, y: 1.0000014, z: 1.0000005} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.00000032782555, y: 0.039015196, z: -0.00000090897083} + rotation: {x: 0.000000048428763, y: -0.0088239, z: -0.000000096857526, w: 0.9999611} + scale: {x: 0.9999996, y: 0.99999994, z: 1.0000005} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136503335, y: 0.106670596, z: 0.0053754337} + rotation: {x: -0.0003326981, y: -0.7618004, z: 0.014246709, w: -0.64765507} + scale: {x: 1.0000001, y: 1.0000006, z: 1.000001} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000003799796, y: 0.041121077, z: -0.00000070780516} + rotation: {x: -0.00000017601991, y: 0.06740794, z: -0.0000000027939668, w: 0.9977255} + scale: {x: 0.9999999, y: 1.0000012, z: 0.9999998} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.0119449925, y: 0.08885844, z: -0.05634297} + rotation: {x: -0.028202744, y: 0.718482, z: -0.015457967, w: 0.69480157} + scale: {x: 0.99999976, y: 1.0000007, z: 1.0000006} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0.0000006146729, y: 0.03542433, z: 0.0000012656674} + rotation: {x: 0.000000026077029, y: 0.014233081, z: 0.00000010244547, w: 0.9998988} + scale: {x: 1.0000002, y: 0.9999997, z: 1.0000005} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031584248, y: 0.095642954, z: -0.0061340556} + rotation: {x: 0.08764764, y: 0.6836663, z: -0.13569649, w: 0.71169156} + scale: {x: 0.9999997, y: 1.0000013, z: 1.0000011} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015764749, y: 0.09492019, z: -0.026633512} + rotation: {x: 0.009348172, y: -0.74743724, z: 0.014610515, w: -0.66410595} + scale: {x: 0.9999999, y: 1.000001, z: 1.0000001} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: -0.00000042840838, y: 0.047298916, z: 0.00000023283064} + rotation: {x: -0.000000010244545, y: 0.017694945, z: -0.00000007636842, w: 0.9998435} + scale: {x: 1, y: 1.0000008, z: 1.0000008} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.02166128, y: 0.04344486, z: 0.044850953} + rotation: {x: -0.10204463, y: -0.9211705, z: -0.34121454, w: -0.15685846} + scale: {x: 0.9999998, y: 1.000003, z: 0.99999976} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.00000059232116, y: 0.052412868, z: -0.00000031664968} + rotation: {x: -0.000000104308114, y: -0.0564282, z: 0.00000004470348, w: 0.99840665} + scale: {x: 1.0000006, y: 0.99999875, z: 1.0000006} + - name: RightUpLeg + parentName: Hips + position: {x: 0.097977474, y: 0.014952619, z: -0.028238185} + rotation: {x: 0.69055396, y: -0.14536554, z: 0.69428325, w: -0.1413329} + scale: {x: 0.9999981, y: 0.99999994, z: 1.0000037} + - name: RightLeg + parentName: RightUpLeg + position: {x: -0.000000086613, y: 0.33968914, z: 0.00000059674494} + rotation: {x: 0.0065637087, y: -0.006816674, z: 0.10785366, w: 0.99412173} + scale: {x: 0.9999998, y: 0.9999998, z: 0.9999997} + - name: RightFoot + parentName: RightLeg + position: {x: -0.00000036880374, y: 0.3595289, z: 0.00000067427754} + rotation: {x: 0.37091202, y: 0.60024893, z: -0.37896243, w: 0.59875953} + scale: {x: 1.0000006, y: 0.9999996, z: 1.0000011} + - name: RightToeBase + parentName: RightFoot + position: {x: -0.0000000100353645, y: 0.13862458, z: 0.000000010244548} + rotation: {x: -0.000000014901159, y: -1, z: -0.000000029802319, w: 0.000005424022} + scale: {x: 1.0000002, y: 1.0000002, z: 0.99999994} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 1 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.prefab b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.prefab new file mode 100644 index 0000000..9e8f145 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.prefab @@ -0,0 +1,96 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3256530961187149017 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 63733128196499578} + m_Layer: 0 + m_Name: Aminset_Basic + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &63733128196499578 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3256530961187149017} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2161632564579464225} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1906447747491402698 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 63733128196499578} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 5dbb2366974668d48a42568690792034, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5dbb2366974668d48a42568690792034, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5dbb2366974668d48a42568690792034, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5dbb2366974668d48a42568690792034, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5dbb2366974668d48a42568690792034, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5dbb2366974668d48a42568690792034, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5dbb2366974668d48a42568690792034, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5dbb2366974668d48a42568690792034, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5dbb2366974668d48a42568690792034, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5dbb2366974668d48a42568690792034, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5dbb2366974668d48a42568690792034, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 5dbb2366974668d48a42568690792034, type: 3} + propertyPath: m_Name + value: Aminset_Basic + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5dbb2366974668d48a42568690792034, type: 3} +--- !u!4 &2161632564579464225 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 5dbb2366974668d48a42568690792034, type: 3} + m_PrefabInstance: {fileID: 1906447747491402698} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.prefab.meta new file mode 100644 index 0000000..c66237c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 54e8acb99b4df6f48bf6b2a4cbbd9638 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Animation_Mesh/Aminset_Basic.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations.meta new file mode 100644 index 0000000..3cdcffc --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 68c77b4a4577fae44920f58c9d7ea91c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Breathing.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Breathing.anim new file mode 100644 index 0000000..fcd05eb --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Breathing.anim @@ -0,0 +1,33510 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle_Breathing + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.011320471 + inSlope: -0.0011774896 + outSlope: -0.0011774896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.011414106 + inSlope: -0.003460036 + outSlope: -0.003460036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.011784675 + inSlope: -0.0050829807 + outSlope: -0.0050829807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.011965938 + inSlope: -0.008711493 + outSlope: -0.008711493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.012365441 + inSlope: -0.0087017575 + outSlope: -0.0087017575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.012734196 + inSlope: -0.00905166 + outSlope: -0.00905166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.013149499 + inSlope: -0.009061998 + outSlope: -0.009061998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.013911973 + inSlope: -0.007765726 + outSlope: -0.007765726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0142361075 + inSlope: -0.004922347 + outSlope: -0.004922347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.014259892 + inSlope: -0.0003331106 + outSlope: -0.0003331106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.014243742 + inSlope: -0.0019338307 + outSlope: -0.0019338307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0145886615 + inSlope: -0.003690218 + outSlope: -0.003690218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.01611468 + inSlope: -0.0051224837 + outSlope: -0.0051224837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.016903508 + inSlope: -0.0047442177 + outSlope: -0.0047442177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.0185014 + inSlope: -0.005011174 + outSlope: -0.005011174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.019113446 + inSlope: -0.0028149253 + outSlope: -0.0028149253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.01987083 + inSlope: 0.0010312265 + outSlope: 0.0010312265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.019710265 + inSlope: 0.0010712083 + outSlope: 0.0010712083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.019530384 + inSlope: 0.0016062194 + outSlope: 0.0016062194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.01849769 + inSlope: 0.0030210083 + outSlope: 0.0030210083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.017469645 + inSlope: 0.001703372 + outSlope: 0.001703372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.016375704 + inSlope: 0.0019135624 + outSlope: 0.0019135624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.016102294 + inSlope: 0.0014424329 + outSlope: 0.0014424329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.01536875 + inSlope: 0.0014157887 + outSlope: 0.0014157887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.014829898 + inSlope: 0.0019324077 + outSlope: 0.0019324077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.014439222 + inSlope: 0.003339591 + outSlope: 0.003339591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.013925535 + inSlope: 0.00318155 + outSlope: 0.00318155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.013847762 + inSlope: 0.0058220616 + outSlope: 0.0058220616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.013537398 + inSlope: 0.0067738136 + outSlope: 0.0067738136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.0127239395 + inSlope: 0.011197969 + outSlope: 0.011197969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.012231564 + inSlope: 0.011394063 + outSlope: 0.011394063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.011680092 + inSlope: 0.012411809 + outSlope: 0.012411809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.011136883 + inSlope: 0.012031982 + outSlope: 0.012031982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.010599581 + inSlope: 0.012316491 + outSlope: 0.012316491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.010056862 + inSlope: 0.012063358 + outSlope: 0.012063358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.009191186 + inSlope: 0.008497135 + outSlope: 0.008497135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.008832722 + inSlope: 0.0079317605 + outSlope: 0.0079317605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.008516848 + inSlope: 0.005856612 + outSlope: 0.005856612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.008271959 + inSlope: 0.004858201 + outSlope: 0.004858201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.008097064 + inSlope: 0.00025543873 + outSlope: 0.00025543873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: -0.008062315 + inSlope: -0.00087801914 + outSlope: -0.00087801914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.008190725 + inSlope: -0.0015628055 + outSlope: -0.0015628055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.008340328 + inSlope: -0.0030742616 + outSlope: -0.0030742616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.566667 + value: -0.008584664 + inSlope: -0.002590653 + outSlope: -0.002590653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.666667 + value: -0.008982222 + inSlope: -0.0029786518 + outSlope: -0.0029786518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8 + value: -0.009537715 + inSlope: -0.0034181608 + outSlope: -0.0034181608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: -0.009780429 + inSlope: -0.005229754 + outSlope: -0.005229754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: -0.010091843 + inSlope: -0.0025762501 + outSlope: -0.0025762501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: -0.0104288645 + inSlope: -0.002573112 + outSlope: -0.002573112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.166667 + value: -0.0109771425 + inSlope: -0.0029020014 + outSlope: -0.0029020014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: -0.011405866 + inSlope: -0.001407499 + outSlope: -0.001407499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: -0.011609132 + inSlope: -0.0004630324 + outSlope: -0.0004630324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.8 + value: -0.012215659 + inSlope: -0.0012758803 + outSlope: -0.0012758803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: -0.012531742 + inSlope: -0.001908442 + outSlope: -0.001908442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.3 + value: -0.011958213 + inSlope: 0.00330247 + outSlope: 0.00330247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.400001 + value: -0.01159399 + inSlope: 0.0039787274 + outSlope: 0.0039787274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: -0.01145806 + inSlope: -0.000008281553 + outSlope: -0.000008281553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.011594546 + inSlope: -0.004094533 + outSlope: -0.004094533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.975341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.975341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.034854427 + inSlope: -0.00022910534 + outSlope: -0.00022910534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.03528772 + inSlope: -0.00023351985 + outSlope: -0.00023351985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.034946285 + inSlope: -0.0005743848 + outSlope: -0.0005743848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.03481364 + inSlope: -0.0007511869 + outSlope: -0.0007511869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.03591072 + inSlope: -0.002039766 + outSlope: -0.002039766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.03753726 + inSlope: -0.0023754337 + outSlope: -0.0023754337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.039365202 + inSlope: -0.0022964678 + outSlope: -0.0022964678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.040957846 + inSlope: -0.0021614155 + outSlope: -0.0021614155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.040579975 + inSlope: 0.0014096699 + outSlope: 0.0014096699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.03873012 + inSlope: 0.0029880395 + outSlope: 0.0029880395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.03693354 + inSlope: 0.0055153714 + outSlope: 0.0055153714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.03505576 + inSlope: 0.0027425613 + outSlope: 0.0027425613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.033917338 + inSlope: 0.0014930419 + outSlope: 0.0014930419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.033031322 + inSlope: 0.002383201 + outSlope: 0.002383201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: -0.032240476 + inSlope: 0.0028510233 + outSlope: 0.0028510233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.031153485 + inSlope: 0.002441511 + outSlope: 0.002441511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.03148921 + inSlope: -0.003202586 + outSlope: -0.003202586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: -0.033469886 + inSlope: -0.0074676685 + outSlope: -0.0074676685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: -0.03572737 + inSlope: -0.0033969868 + outSlope: -0.0033969868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.1 + value: -0.035957195 + inSlope: 0.003299952 + outSlope: 0.003299952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.400001 + value: -0.03509694 + inSlope: 0.0026163335 + outSlope: 0.0026163335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.03442516 + inSlope: 0.017275877 + outSlope: 0.017275877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.029149845 + inSlope: 0.003083646 + outSlope: 0.003083646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.028052136 + inSlope: 0.0055506085 + outSlope: 0.0055506085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.02799654 + inSlope: -0.0005082786 + outSlope: -0.0005082786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.02882281 + inSlope: -0.0013605496 + outSlope: -0.0013605496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.029141426 + inSlope: -0.000640825 + outSlope: -0.000640825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.029909015 + inSlope: -0.0014886274 + outSlope: -0.0014886274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.030361578 + inSlope: 0.00043295365 + outSlope: 0.00043295365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.029179364 + inSlope: 0.002910423 + outSlope: 0.002910423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.027870253 + inSlope: 0.002784359 + outSlope: 0.002784359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.025423288 + inSlope: 0.004040975 + outSlope: 0.004040975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.024987936 + inSlope: -0.00019691903 + outSlope: -0.00019691903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.024528384 + inSlope: 0.0010605911 + outSlope: 0.0010605911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.024515688 + inSlope: -0.000950844 + outSlope: -0.000950844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: -0.025402352 + inSlope: -0.0046523293 + outSlope: -0.0046523293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.700001 + value: -0.027362764 + inSlope: -0.0029379157 + outSlope: -0.0029379157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.029149845 + inSlope: -0.0018802034 + outSlope: -0.0018802034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04156736 + inSlope: 0.0005776807 + outSlope: 0.0005776807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.03887914 + inSlope: -0.0020562483 + outSlope: -0.0020562483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.038570937 + inSlope: 0.008920644 + outSlope: 0.008920644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.037443094 + inSlope: 0.016036328 + outSlope: 0.016036328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.03556872 + inSlope: 0.024087153 + outSlope: 0.024087153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.034532376 + inSlope: 0.022449639 + outSlope: 0.022449639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.033697013 + inSlope: 0.013681738 + outSlope: 0.013681738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.033241373 + inSlope: -0.0027755862 + outSlope: -0.0027755862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.033931144 + inSlope: -0.0010314732 + outSlope: -0.0010314732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.033012692 + inSlope: 0.0062647318 + outSlope: 0.0062647318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.03188228 + inSlope: 0.01147601 + outSlope: 0.01147601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.03146916 + inSlope: 0.019799722 + outSlope: 0.019799722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.030562298 + inSlope: 0.020647775 + outSlope: 0.020647775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.029241491 + inSlope: 0.0006727322 + outSlope: 0.0006727322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.028861212 + inSlope: -0.0011574023 + outSlope: -0.0011574023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.030204767 + inSlope: -0.003422055 + outSlope: -0.003422055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.030341653 + inSlope: -0.00007814735 + outSlope: -0.00007814735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.029570717 + inSlope: 0.0021309531 + outSlope: 0.0021309531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.029278269 + inSlope: -0.0044714985 + outSlope: -0.0044714985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: -0.02930267 + inSlope: 0.002697026 + outSlope: 0.002697026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: -0.029602394 + inSlope: -0.003193117 + outSlope: -0.003193117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.030209526 + inSlope: -0.0010804764 + outSlope: -0.0010804764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.031444483 + inSlope: -0.003519285 + outSlope: -0.003519285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.032409668 + inSlope: -0.011572453 + outSlope: -0.011572453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.032979287 + inSlope: -0.0125442 + outSlope: -0.0125442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.03377961 + inSlope: -0.0074514076 + outSlope: -0.0074514076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.035131566 + inSlope: -0.0059856903 + outSlope: -0.0059856903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.03614804 + inSlope: -0.003735706 + outSlope: -0.003735706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.037749313 + inSlope: -0.014592572 + outSlope: -0.014592572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.03906063 + inSlope: -0.003450721 + outSlope: -0.003450721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.03969516 + inSlope: 0.0001530537 + outSlope: 0.0001530537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: -0.039193716 + inSlope: -0.0040822863 + outSlope: -0.0040822863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.766667 + value: -0.039365683 + inSlope: 0.0036054512 + outSlope: 0.0036054512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: -0.040475514 + inSlope: -0.0029317145 + outSlope: -0.0029317145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: -0.041640155 + inSlope: -0.002404177 + outSlope: -0.002404177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.04156736 + inSlope: 0.0005447047 + outSlope: 0.0005447047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.023337677 + inSlope: 0.00021915881 + outSlope: 0.00021915881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.02352023 + inSlope: 0.0017943125 + outSlope: 0.0017943125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.024550768 + inSlope: 0.0017368126 + outSlope: 0.0017368126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.025215449 + inSlope: 0.0036682317 + outSlope: 0.0036682317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.026775684 + inSlope: 0.003957268 + outSlope: 0.003957268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.027657282 + inSlope: -0.0016307808 + outSlope: -0.0016307808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.027642854 + inSlope: 0.000556978 + outSlope: 0.000556978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.027954213 + inSlope: 0.0023679922 + outSlope: 0.0023679922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.027704217 + inSlope: -0.0012513031 + outSlope: -0.0012513031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.026880048 + inSlope: -0.0034907586 + outSlope: -0.0034907586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.026491953 + inSlope: -0.00063099025 + outSlope: -0.00063099025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.026455604 + inSlope: -0.0006059563 + outSlope: -0.0006059563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.026033036 + inSlope: -0.001427216 + outSlope: -0.001427216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.024649078 + inSlope: -0.0029113512 + outSlope: -0.0029113512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: 0.023355672 + inSlope: -0.0020621736 + outSlope: -0.0020621736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6333337 + value: 0.023088064 + inSlope: 0.004215654 + outSlope: 0.004215654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: 0.023424761 + inSlope: -0.00062333466 + outSlope: -0.00062333466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.1 + value: 0.022936568 + inSlope: 0.0015880654 + outSlope: 0.0015880654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.023337677 + inSlope: -0.000042355987 + outSlope: -0.000042355987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9984378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.9984378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1717373 + inSlope: 0.0025163589 + outSlope: 0.0025163589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.16864496 + inSlope: -0.0030957153 + outSlope: -0.0030957153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.16758944 + inSlope: 0.0036717241 + outSlope: 0.0036717241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.16968575 + inSlope: -0.0044540293 + outSlope: -0.0044540293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.17160243 + inSlope: 0.0023295009 + outSlope: 0.0023295009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.16817951 + inSlope: -0.0023932033 + outSlope: -0.0023932033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.17191888 + inSlope: -0.010112384 + outSlope: -0.010112384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.169678 + inSlope: 0.0025648647 + outSlope: 0.0025648647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: -0.17047599 + inSlope: -0.004302938 + outSlope: -0.004302938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.17297202 + inSlope: 0.0018104928 + outSlope: 0.0018104928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.17425585 + inSlope: -0.02625617 + outSlope: -0.02625617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.17379333 + inSlope: -0.011120673 + outSlope: -0.011120673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.766667 + value: -0.17242792 + inSlope: 0.0011991721 + outSlope: 0.0011991721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: -0.16972168 + inSlope: 0.004966044 + outSlope: 0.004966044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.200001 + value: -0.1683288 + inSlope: 0.0014579892 + outSlope: 0.0014579892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.1717384 + inSlope: -0.026776135 + outSlope: -0.026776135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.946155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.946155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.099593416 + inSlope: -0.0017803161 + outSlope: -0.0017803161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09842398 + inSlope: 0.0020725636 + outSlope: 0.0020725636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.097831294 + inSlope: -0.0068907063 + outSlope: -0.0068907063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.09899926 + inSlope: -0.0040648733 + outSlope: -0.0040648733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.099112675 + inSlope: -0.0050731795 + outSlope: -0.0050731795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.10043927 + inSlope: -0.0054944893 + outSlope: -0.0054944893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.1010505 + inSlope: -0.0005460536 + outSlope: -0.0005460536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: -0.09919798 + inSlope: 0.005099108 + outSlope: 0.005099108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.09556682 + inSlope: 0.0008409851 + outSlope: 0.0008409851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.09562654 + inSlope: -0.0044597355 + outSlope: -0.0044597355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.094511874 + inSlope: 0.004462306 + outSlope: 0.004462306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: -0.09437422 + inSlope: -0.0036510783 + outSlope: -0.0036510783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.866667 + value: -0.09511634 + inSlope: 0.000054755743 + outSlope: 0.000054755743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: -0.09499995 + inSlope: -0.011483546 + outSlope: -0.011483546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: -0.09566148 + inSlope: 0.011666559 + outSlope: 0.011666559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.133334 + value: -0.09152414 + inSlope: 0.03463063 + outSlope: 0.03463063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.3 + value: -0.09254926 + inSlope: -0.049546994 + outSlope: -0.049546994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.09959439 + inSlope: -0.029775923 + outSlope: -0.029775923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4283553 + inSlope: -0.0028493998 + outSlope: -0.0028493998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.42388716 + inSlope: -0.009551803 + outSlope: -0.009551803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.41919717 + inSlope: -0.005072509 + outSlope: -0.005072509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.41746008 + inSlope: -0.00036209857 + outSlope: -0.00036209857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.42329612 + inSlope: 0.0025579357 + outSlope: 0.0025579357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.42707926 + inSlope: 0.0035320255 + outSlope: 0.0035320255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.4299142 + inSlope: -0.004870002 + outSlope: -0.004870002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: 0.42991945 + inSlope: -0.003988957 + outSlope: -0.003988957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.333334 + value: 0.43078393 + inSlope: -0.026066154 + outSlope: -0.026066154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.4283553 + inSlope: -0.0031640704 + outSlope: -0.0031640704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.47164828 + inSlope: 0.007011294 + outSlope: 0.007011294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.4675792 + inSlope: 0.007444929 + outSlope: 0.007444929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.4678535 + inSlope: -0.0014819219 + outSlope: -0.0014819219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: -0.46909255 + inSlope: -0.0013379655 + outSlope: -0.0013379655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.4687103 + inSlope: -0.002140852 + outSlope: -0.002140852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8 + value: -0.46921104 + inSlope: -0.005904396 + outSlope: -0.005904396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: -0.47078156 + inSlope: 0.0034564268 + outSlope: 0.0034564268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: -0.47182146 + inSlope: -0.00213291 + outSlope: -0.00213291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.47164828 + inSlope: 0.0051953695 + outSlope: 0.0051953695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5306337 + inSlope: 0.0010550022 + outSlope: 0.0010550022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.5367969 + inSlope: 0.0057971533 + outSlope: 0.0057971533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.53675693 + inSlope: 0.005386775 + outSlope: 0.005386775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.53623354 + inSlope: 0.003561083 + outSlope: 0.003561083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.534731 + inSlope: 0.000950397 + outSlope: 0.000950397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: 0.5324769 + inSlope: -0.0045874426 + outSlope: -0.0045874426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.5306337 + inSlope: 0.0027143592 + outSlope: 0.0027143592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.55900615 + inSlope: -0.0070971246 + outSlope: -0.0070971246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.56162745 + inSlope: -0.00030397857 + outSlope: -0.00030397857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.5631036 + inSlope: 0.0011158001 + outSlope: 0.0011158001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.56284225 + inSlope: 0.001267792 + outSlope: 0.001267792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.5572264 + inSlope: 0.0042691864 + outSlope: 0.0042691864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: -0.5578656 + inSlope: -0.003370646 + outSlope: -0.003370646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.55900615 + inSlope: -0.0042360458 + outSlope: -0.0042360458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13754064 + inSlope: 0.00420928 + outSlope: 0.00420928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.14018153 + inSlope: -0.0022727256 + outSlope: -0.0022727256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14099485 + inSlope: -0.013838635 + outSlope: -0.013838635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.14145224 + inSlope: 0.0004774325 + outSlope: 0.0004774325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.14069533 + inSlope: -0.015626295 + outSlope: -0.015626295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.14161184 + inSlope: -0.010538166 + outSlope: -0.010538166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.13902338 + inSlope: 0.004409098 + outSlope: 0.004409098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.14006805 + inSlope: 0.0005207961 + outSlope: 0.0005207961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.1380871 + inSlope: -0.00061556755 + outSlope: -0.00061556755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.1359812 + inSlope: -0.0027088101 + outSlope: -0.0027088101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.13756956 + inSlope: 0.003017488 + outSlope: 0.003017488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.13591698 + inSlope: -0.0013943029 + outSlope: -0.0013943029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.13539462 + inSlope: 0.0025843107 + outSlope: 0.0025843107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.13322943 + inSlope: 0.0025476539 + outSlope: 0.0025476539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: 0.1362689 + inSlope: 0.007927223 + outSlope: 0.007927223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.700001 + value: 0.13906853 + inSlope: 0.0004117182 + outSlope: 0.0004117182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.366667 + value: 0.13786022 + inSlope: -0.0059399754 + outSlope: -0.0059399754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.13753965 + inSlope: -0.0012919134 + outSlope: -0.0012919134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.95854753 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.95854753 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12532796 + inSlope: -0.0037685034 + outSlope: -0.0037685034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.12172742 + inSlope: -0.0041167447 + outSlope: -0.0041167447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.12166355 + inSlope: 0.0020787101 + outSlope: 0.0020787101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.121345274 + inSlope: -0.001571442 + outSlope: -0.001571442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.11922627 + inSlope: 0.0014006732 + outSlope: 0.0014006732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.118034795 + inSlope: 0.00043932395 + outSlope: 0.00043932395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.117628925 + inSlope: -0.0035495718 + outSlope: -0.0035495718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.118345894 + inSlope: -0.0037943237 + outSlope: -0.0037943237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.11694111 + inSlope: -0.00015869751 + outSlope: -0.00015869751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.11749924 + inSlope: 0.0034182551 + outSlope: 0.0034182551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.117729396 + inSlope: 0.0031265647 + outSlope: 0.0031265647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.118088044 + inSlope: 0.00090021733 + outSlope: 0.00090021733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.11711234 + inSlope: -0.0060281586 + outSlope: -0.0060281586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.12008777 + inSlope: -0.003239106 + outSlope: -0.003239106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: -0.11925451 + inSlope: -0.00305278 + outSlope: -0.00305278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: -0.12015186 + inSlope: -0.004960552 + outSlope: -0.004960552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.900001 + value: -0.12287334 + inSlope: -0.00062584586 + outSlope: -0.00062584586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.133334 + value: -0.122673124 + inSlope: -0.011257591 + outSlope: -0.011257591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.12532775 + inSlope: -0.0086862175 + outSlope: -0.0086862175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.534639 + inSlope: 0.008327365 + outSlope: 0.008327365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.52981395 + inSlope: 0.016850539 + outSlope: 0.016850539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.52660185 + inSlope: 0.007365353 + outSlope: 0.007365353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.526322 + inSlope: 0.004120756 + outSlope: 0.004120756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.5269691 + inSlope: -0.0008055576 + outSlope: -0.0008055576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.5335918 + inSlope: -0.0038936771 + outSlope: -0.0038936771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: -0.5348219 + inSlope: 0.0073716114 + outSlope: 0.0073716114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.166667 + value: -0.5350593 + inSlope: -0.0015045498 + outSlope: -0.0015045498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.534639 + inSlope: 0.008007181 + outSlope: 0.008007181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6136331 + inSlope: 0.0030291078 + outSlope: 0.0030291078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.61277914 + inSlope: 0.002660754 + outSlope: 0.002660754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.61130214 + inSlope: 0.0028860597 + outSlope: 0.0028860597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.6115881 + inSlope: -0.002382698 + outSlope: -0.002382698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.6119747 + inSlope: -0.005780166 + outSlope: -0.005780166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.6134891 + inSlope: -0.0008359559 + outSlope: -0.0008359559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.6136331 + inSlope: 0.0061278716 + outSlope: 0.0061278716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.39380825 + inSlope: 0.0035360453 + outSlope: 0.0035360453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.39586607 + inSlope: 0.0025655262 + outSlope: 0.0025655262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.39919758 + inSlope: 0.0025248535 + outSlope: 0.0025248535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.40239576 + inSlope: 0.0040662345 + outSlope: 0.0040662345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.40226135 + inSlope: 0.0030930368 + outSlope: 0.0030930368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.40048915 + inSlope: 0.0015467419 + outSlope: 0.0015467419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: -0.3977818 + inSlope: 0.0003218654 + outSlope: 0.0003218654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: -0.39442047 + inSlope: 0.00029056869 + outSlope: 0.00029056869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.39380825 + inSlope: 0.0071345805 + outSlope: 0.0071345805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.42723665 + inSlope: 0.009314417 + outSlope: 0.009314417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.43053955 + inSlope: 0.0074628023 + outSlope: 0.0074628023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.43122786 + inSlope: -0.0021694622 + outSlope: -0.0021694622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.4313791 + inSlope: 0.0025083148 + outSlope: 0.0025083148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.42675474 + inSlope: -0.0037380815 + outSlope: -0.0037380815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: 0.42433226 + inSlope: -0.0011935842 + outSlope: -0.0011935842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.066668 + value: 0.42616922 + inSlope: 0.0045736297 + outSlope: 0.0045736297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.42723665 + inSlope: 0.007816747 + outSlope: 0.007816747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2778214 + inSlope: -0.015637279 + outSlope: -0.015637279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.2753197 + inSlope: 0.033722524 + outSlope: 0.033722524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.27751696 + inSlope: 0.011344394 + outSlope: 0.011344394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.27196872 + inSlope: 0.015500054 + outSlope: 0.015500054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.27372372 + inSlope: -0.005717134 + outSlope: -0.005717134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.28067192 + inSlope: -0.0070063835 + outSlope: -0.0070063835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.2786411 + inSlope: 0.0040684678 + outSlope: 0.0040684678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.2733909 + inSlope: 0.006923235 + outSlope: 0.006923235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: -0.2754472 + inSlope: 0.0013455763 + outSlope: 0.0013455763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: -0.2816133 + inSlope: -0.0047202446 + outSlope: -0.0047202446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: -0.2794591 + inSlope: 0.010899015 + outSlope: 0.010899015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.2778226 + inSlope: 0.022611614 + outSlope: 0.022611614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08515865 + inSlope: 0.003153607 + outSlope: 0.003153607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.081596345 + inSlope: 0.025712565 + outSlope: 0.025712565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.080425225 + inSlope: -0.0006394839 + outSlope: -0.0006394839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.08005643 + inSlope: 0.015784351 + outSlope: 0.015784351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.07673397 + inSlope: 0.013891828 + outSlope: 0.013891828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.07308938 + inSlope: 0.011684496 + outSlope: 0.011684496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.07114094 + inSlope: 0.00515644 + outSlope: 0.00515644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.073557414 + inSlope: -0.008342683 + outSlope: -0.008342683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.07663226 + inSlope: -0.0049730437 + outSlope: -0.0049730437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.07925943 + inSlope: -0.013450062 + outSlope: -0.013450062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.07934788 + inSlope: -0.00014416888 + outSlope: -0.00014416888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.07997082 + inSlope: -0.0002398325 + outSlope: -0.0002398325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.08043017 + inSlope: -0.0003429794 + outSlope: -0.0003429794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.07757087 + inSlope: 0.0065738773 + outSlope: 0.0065738773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.07398465 + inSlope: 0.006057998 + outSlope: 0.006057998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.07167695 + inSlope: 0.0019412506 + outSlope: 0.0019412506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.06959792 + inSlope: 0.020501148 + outSlope: 0.020501148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.06833263 + inSlope: 0.004554172 + outSlope: 0.004554172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.07000619 + inSlope: -0.008217737 + outSlope: -0.008217737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: -0.073773414 + inSlope: -0.0057511805 + outSlope: -0.0057511805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.366667 + value: -0.07790212 + inSlope: -0.009775818 + outSlope: -0.009775818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.633334 + value: -0.07951335 + inSlope: -0.0038290375 + outSlope: -0.0038290375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: -0.08194457 + inSlope: -0.018172394 + outSlope: -0.018172394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.085159495 + inSlope: -0.0010348718 + outSlope: -0.0010348718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0023633009 + inSlope: 0.010874275 + outSlope: 0.010874275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0027257768 + inSlope: 0.010931807 + outSlope: 0.010931807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.003092088 + inSlope: 0.029119663 + outSlope: 0.029119663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.004667088 + inSlope: 0.108131714 + outSlope: 0.108131714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.010300869 + inSlope: 0.1417486 + outSlope: 0.1417486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.014116995 + inSlope: 0.12626742 + outSlope: 0.12626742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.018718699 + inSlope: 0.22606164 + outSlope: 0.22606164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.029187772 + inSlope: 0.2382054 + outSlope: 0.2382054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.03459906 + inSlope: 0.16473022 + outSlope: 0.16473022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.040169787 + inSlope: 0.2541359 + outSlope: 0.2541359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.05154145 + inSlope: 0.25495642 + outSlope: 0.25495642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.05716688 + inSlope: 0.15211411 + outSlope: 0.15211411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.070152275 + inSlope: 0.14880222 + outSlope: 0.14880222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.07582219 + inSlope: 0.10601773 + outSlope: 0.10601773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.07755893 + inSlope: 0.0049570533 + outSlope: 0.0049570533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.07767934 + inSlope: -0.007900786 + outSlope: -0.007900786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.073257744 + inSlope: -0.008355983 + outSlope: -0.008355983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.070913464 + inSlope: -0.0052678636 + outSlope: -0.0052678636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.06883074 + inSlope: -0.01109751 + outSlope: -0.01109751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.07051806 + inSlope: 0.0058397334 + outSlope: 0.0058397334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.07080742 + inSlope: 0.005832113 + outSlope: 0.005832113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.07394101 + inSlope: 0.002078602 + outSlope: 0.002078602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.07581235 + inSlope: 0.0076711 + outSlope: 0.0076711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.0768085 + inSlope: 0.0050677033 + outSlope: 0.0050677033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.07663216 + inSlope: 0.0033697516 + outSlope: 0.0033697516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.075746335 + inSlope: -0.0011855375 + outSlope: -0.0011855375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.0776828 + inSlope: 0.0048860954 + outSlope: 0.0048860954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.07635892 + inSlope: -0.0006281963 + outSlope: -0.0006281963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.073925264 + inSlope: -0.019681957 + outSlope: -0.019681957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.070716895 + inSlope: -0.018661488 + outSlope: -0.018661488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.06687009 + inSlope: -0.0015357897 + outSlope: -0.0015357897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.06730939 + inSlope: -0.0018776599 + outSlope: -0.0018776599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.06653913 + inSlope: -0.008324243 + outSlope: -0.008324243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.06705156 + inSlope: -0.0070202416 + outSlope: -0.0070202416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: 0.067941725 + inSlope: 0.0026702534 + outSlope: 0.0026702534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: 0.07184673 + inSlope: 0.0143539235 + outSlope: 0.0143539235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.400001 + value: 0.07481708 + inSlope: 0.0060705068 + outSlope: 0.0060705068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.0765812 + inSlope: 0.0036677977 + outSlope: 0.0036677977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.07429299 + inSlope: -0.058189232 + outSlope: -0.058189232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: 0.071810886 + inSlope: -0.10963288 + outSlope: -0.10963288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: 0.06167596 + inSlope: -0.16780832 + outSlope: -0.16780832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.3 + value: 0.014705384 + inSlope: -0.13651258 + outSlope: -0.13651258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.400001 + value: 0.004346195 + inSlope: -0.061905675 + outSlope: -0.061905675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: 0.0028197945 + inSlope: -0.029759234 + outSlope: -0.029759234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.0023622634 + inSlope: -0.013725749 + outSlope: -0.013725749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20941916 + inSlope: 0.0058516855 + outSlope: 0.0058516855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.21088198 + inSlope: 0.08692839 + outSlope: 0.08692839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.21914408 + inSlope: 0.12238023 + outSlope: 0.12238023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.22379789 + inSlope: 0.2531312 + outSlope: 0.2531312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.23601949 + inSlope: 0.2890094 + outSlope: 0.2890094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.25085798 + inSlope: 0.37894028 + outSlope: 0.37894028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.26832786 + inSlope: 0.40458488 + outSlope: 0.40458488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.29362664 + inSlope: 0.23906039 + outSlope: 0.23906039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.30177176 + inSlope: 0.29777455 + outSlope: 0.29777455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.31347826 + inSlope: 0.22341114 + outSlope: 0.22341114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.3174144 + inSlope: -0.0025954852 + outSlope: -0.0025954852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.32054123 + inSlope: 0.010077506 + outSlope: 0.010077506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.32519826 + inSlope: 0.008911648 + outSlope: 0.008911648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.3315029 + inSlope: 0.0006043912 + outSlope: 0.0006043912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.3275736 + inSlope: -0.008140871 + outSlope: -0.008140871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.32375836 + inSlope: -0.0089974785 + outSlope: -0.0089974785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.31152943 + inSlope: -0.0063590766 + outSlope: -0.0063590766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.31433427 + inSlope: 0.000536402 + outSlope: 0.000536402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.3180506 + inSlope: 0.005843645 + outSlope: 0.005843645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.31906605 + inSlope: 0.00000043373439 + outSlope: 0.00000043373439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: 0.30106872 + inSlope: -0.2777139 + outSlope: -0.2777139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: 0.20975637 + inSlope: -0.030153487 + outSlope: -0.030153487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.20941916 + inSlope: -0.010116263 + outSlope: -0.010116263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.060472712 + inSlope: 0.0045344974 + outSlope: 0.0045344974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.060321562 + inSlope: 0.022201257 + outSlope: 0.022201257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.058992628 + inSlope: 0.11318037 + outSlope: 0.11318037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.052776203 + inSlope: 0.4026744 + outSlope: 0.4026744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.03214767 + inSlope: 0.5159725 + outSlope: 0.5159725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.01837804 + inSlope: 0.45351046 + outSlope: 0.45351046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0019136332 + inSlope: 0.7979994 + outSlope: 0.7979994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.034821924 + inSlope: 0.8449105 + outSlope: 0.8449105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.054413732 + inSlope: 0.5941373 + outSlope: 0.5941373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.07443108 + inSlope: 0.8847084 + outSlope: 0.8847084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.11339429 + inSlope: 0.87935936 + outSlope: 0.87935936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.13305503 + inSlope: 0.5211964 + outSlope: 0.5211964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.17569225 + inSlope: 0.47034037 + outSlope: 0.47034037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.19334096 + inSlope: 0.3443594 + outSlope: 0.3443594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.19981515 + inSlope: 0.011432225 + outSlope: 0.011432225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.19760782 + inSlope: -0.00497527 + outSlope: -0.00497527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.18935634 + inSlope: -0.014715706 + outSlope: -0.014715706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.18081401 + inSlope: -0.0059350636 + outSlope: -0.0059350636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.17681701 + inSlope: 0.014021931 + outSlope: 0.014021931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.17796025 + inSlope: -0.0030078767 + outSlope: -0.0030078767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.17552726 + inSlope: -0.012114655 + outSlope: -0.012114655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.17765911 + inSlope: 0.0037246845 + outSlope: 0.0037246845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.1816494 + inSlope: 0.006228319 + outSlope: 0.006228319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.18806496 + inSlope: 0.005970156 + outSlope: 0.005970156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.18817742 + inSlope: -0.008199744 + outSlope: -0.008199744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.18697739 + inSlope: -0.027864458 + outSlope: -0.027864458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.1869432 + inSlope: 0.008043282 + outSlope: 0.008043282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.1895296 + inSlope: 0.0005979097 + outSlope: 0.0005979097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.18933782 + inSlope: -0.0018990057 + outSlope: -0.0018990057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.19102019 + inSlope: -0.0051616924 + outSlope: -0.0051616924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: 0.19321884 + inSlope: -0.008827158 + outSlope: -0.008827158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.19231823 + inSlope: 0.0038907714 + outSlope: 0.0038907714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 0.19530548 + inSlope: 0.010147517 + outSlope: 0.010147517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.19560666 + inSlope: 0.005874708 + outSlope: 0.005874708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.19007435 + inSlope: -0.12503316 + outSlope: -0.12503316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: 0.18504803 + inSlope: -0.30127263 + outSlope: -0.30127263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: 0.16998968 + inSlope: -0.4870757 + outSlope: -0.4870757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.266667 + value: 0.0066700764 + inSlope: -0.570346 + outSlope: -0.570346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.3 + value: -0.011502575 + inSlope: -0.5122568 + outSlope: -0.5122568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: -0.057886396 + inSlope: -0.13924405 + outSlope: -0.13924405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.060472712 + inSlope: -0.077588454 + outSlope: -0.077588454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6948257 + inSlope: 0.012014507 + outSlope: 0.012014507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.7258749 + inSlope: 0.012141461 + outSlope: 0.012141461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.7240079 + inSlope: 0.0059849056 + outSlope: 0.0059849056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.72268 + inSlope: 0.0063291253 + outSlope: 0.0063291253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.72011715 + inSlope: -0.0011971612 + outSlope: -0.0011971612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.73397183 + inSlope: -0.008431084 + outSlope: -0.008431084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.72699845 + inSlope: -0.005399292 + outSlope: -0.005399292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.066668 + value: 0.724437 + inSlope: -0.029526796 + outSlope: -0.029526796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.6948257 + inSlope: -0.026465897 + outSlope: -0.026465897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6853499 + inSlope: 0.0135827055 + outSlope: 0.0135827055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.65444076 + inSlope: 0.2833182 + outSlope: 0.2833182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.6397465 + inSlope: 0.34490618 + outSlope: 0.34490618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.6156212 + inSlope: 0.24825087 + outSlope: 0.24825087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.59233594 + inSlope: 0.2895214 + outSlope: 0.2895214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.57825416 + inSlope: 0.047113854 + outSlope: 0.047113854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.57986563 + inSlope: -0.0138849 + outSlope: -0.0138849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.58209026 + inSlope: 0.0020223875 + outSlope: 0.0020223875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.58117133 + inSlope: -0.0045678066 + outSlope: -0.0045678066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.5743158 + inSlope: 0.0083291605 + outSlope: 0.0083291605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.5731683 + inSlope: -0.011027466 + outSlope: -0.011027466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: -0.57585734 + inSlope: 0.0042083915 + outSlope: 0.0042083915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.900001 + value: -0.5798957 + inSlope: -0.06605399 + outSlope: -0.06605399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.266667 + value: -0.6658055 + inSlope: -0.18565354 + outSlope: -0.18565354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.6853499 + inSlope: -0.023263382 + outSlope: -0.023263382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27203402 + inSlope: -0.006740391 + outSlope: -0.006740391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.2686713 + inSlope: -0.007160155 + outSlope: -0.007160155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.26290467 + inSlope: -0.008186551 + outSlope: -0.008186551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.24678311 + inSlope: -0.020397324 + outSlope: -0.020397324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.24668084 + inSlope: 0.0030890026 + outSlope: 0.0030890026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.256927 + inSlope: 0.0036942856 + outSlope: 0.0036942856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.25847232 + inSlope: -0.0014220192 + outSlope: -0.0014220192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.25440747 + inSlope: -0.0066120736 + outSlope: -0.0066120736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.24576926 + inSlope: -0.015139296 + outSlope: -0.015139296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.24709679 + inSlope: 0.012445909 + outSlope: 0.012445909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.1 + value: 0.25870365 + inSlope: 0.0063864104 + outSlope: 0.0063864104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.26140475 + inSlope: 0.016544634 + outSlope: 0.016544634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.2720328 + inSlope: 0.019256216 + outSlope: 0.019256216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.076927185 + inSlope: 0.000034868717 + outSlope: 0.000034868717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.07935094 + inSlope: -0.00877753 + outSlope: -0.00877753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.079956524 + inSlope: 0.010552373 + outSlope: 0.010552373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.076259665 + inSlope: 0.012117449 + outSlope: 0.012117449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.074359745 + inSlope: -0.0011022772 + outSlope: -0.0011022772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.07416821 + inSlope: 0.008626978 + outSlope: 0.008626978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.07225598 + inSlope: -0.00069983373 + outSlope: -0.00069983373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.07554774 + inSlope: -0.008802907 + outSlope: -0.008802907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.07884835 + inSlope: -0.0073566358 + outSlope: -0.0073566358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.08104101 + inSlope: -0.0039717965 + outSlope: -0.0039717965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.08394352 + inSlope: -0.00025201612 + outSlope: -0.00025201612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.08317822 + inSlope: 0.006304507 + outSlope: 0.006304507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.07895941 + inSlope: 0.009079583 + outSlope: 0.009079583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.07748363 + inSlope: 0.007040658 + outSlope: 0.007040658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.07349497 + inSlope: 0.005812688 + outSlope: 0.005812688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.07482127 + inSlope: -0.0048508914 + outSlope: -0.0048508914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: -0.077367164 + inSlope: -0.003538821 + outSlope: -0.003538821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: -0.07997861 + inSlope: -0.004585799 + outSlope: -0.004585799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.866667 + value: -0.082076654 + inSlope: 0.0011177104 + outSlope: 0.0011177104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.076927565 + inSlope: 0.012221769 + outSlope: 0.012221769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.039510947 + inSlope: 0.0061240415 + outSlope: 0.0061240415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.03978454 + inSlope: 0.011205991 + outSlope: 0.011205991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.040849138 + inSlope: 0.014578139 + outSlope: 0.014578139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.041388445 + inSlope: 0.026923232 + outSlope: 0.026923232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.04264402 + inSlope: 0.02773058 + outSlope: 0.02773058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.04385999 + inSlope: 0.030819815 + outSlope: 0.030819815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.045291804 + inSlope: 0.031542335 + outSlope: 0.031542335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.047537334 + inSlope: 0.019997109 + outSlope: 0.019997109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.04853985 + inSlope: -0.00725192 + outSlope: -0.00725192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.047677193 + inSlope: -0.007216594 + outSlope: -0.007216594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.046789702 + inSlope: -0.001974945 + outSlope: -0.001974945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.04535205 + inSlope: -0.014585587 + outSlope: -0.014585587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.044646602 + inSlope: -0.019827502 + outSlope: -0.019827502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.043230966 + inSlope: -0.013114987 + outSlope: -0.013114987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.041892778 + inSlope: -0.024151973 + outSlope: -0.024151973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.040793184 + inSlope: -0.024246661 + outSlope: -0.024246661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.039749734 + inSlope: -0.025005868 + outSlope: -0.025005868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.038609277 + inSlope: -0.025623472 + outSlope: -0.025623472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.03675323 + inSlope: -0.022625517 + outSlope: -0.022625517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.03573053 + inSlope: -0.02196262 + outSlope: -0.02196262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.03484341 + inSlope: -0.021977093 + outSlope: -0.021977093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.03382391 + inSlope: -0.021230154 + outSlope: -0.021230154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.033069216 + inSlope: -0.013992371 + outSlope: -0.013992371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.032313984 + inSlope: -0.003568002 + outSlope: -0.003568002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.03263824 + inSlope: -0.0025673157 + outSlope: -0.0025673157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.03311434 + inSlope: 0.007917888 + outSlope: 0.007917888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.033582855 + inSlope: 0.004302994 + outSlope: 0.004302994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.03431763 + inSlope: 0.005179574 + outSlope: 0.005179574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.034603897 + inSlope: 0.0056219157 + outSlope: 0.0056219157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.03702765 + inSlope: 0.0032375283 + outSlope: 0.0032375283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.03840362 + inSlope: 0.00073285843 + outSlope: 0.00073285843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.040063437 + inSlope: 0.0042440966 + outSlope: 0.0042440966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.04168303 + inSlope: 0.0014075465 + outSlope: 0.0014075465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.04200992 + inSlope: 0.0070846705 + outSlope: 0.0070846705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.041778684 + inSlope: -0.0039181523 + outSlope: -0.0039181523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.041004654 + inSlope: -0.00359679 + outSlope: -0.00359679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.039203037 + inSlope: -0.013342433 + outSlope: -0.013342433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.03716584 + inSlope: -0.00394056 + outSlope: -0.00394056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.03590852 + inSlope: -0.010571714 + outSlope: -0.010571714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.03551639 + inSlope: -0.020041764 + outSlope: -0.020041764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.034572404 + inSlope: -0.021355042 + outSlope: -0.021355042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.033583872 + inSlope: -0.023534004 + outSlope: -0.023534004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.03252379 + inSlope: -0.023225438 + outSlope: -0.023225438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.03159384 + inSlope: -0.018983074 + outSlope: -0.018983074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.030769974 + inSlope: -0.017208427 + outSlope: -0.017208427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.030044334 + inSlope: -0.0010646539 + outSlope: -0.0010646539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: 0.030781318 + inSlope: 0.008748033 + outSlope: 0.008748033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.032006916 + inSlope: 0.00844226 + outSlope: 0.00844226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.032946475 + inSlope: 0.0053398362 + outSlope: 0.0053398362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.03309848 + inSlope: 0.0122643 + outSlope: 0.0122643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.033764094 + inSlope: 0.012941447 + outSlope: 0.012941447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: 0.034451857 + inSlope: 0.010212129 + outSlope: 0.010212129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.03507148 + inSlope: 0.0016155854 + outSlope: 0.0016155854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.03595088 + inSlope: 0.0006266876 + outSlope: 0.0006266876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.666667 + value: 0.036622897 + inSlope: 0.0048412243 + outSlope: 0.0048412243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8 + value: 0.0381506 + inSlope: 0.008979533 + outSlope: 0.008979533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.03981025 + inSlope: 0.009604329 + outSlope: 0.009604329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: 0.040994786 + inSlope: 0.007615472 + outSlope: 0.007615472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: 0.042497307 + inSlope: 0.003289043 + outSlope: 0.003289043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.666667 + value: 0.044267543 + inSlope: 0.009142594 + outSlope: 0.009142594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.900001 + value: 0.046284482 + inSlope: -0.008643867 + outSlope: -0.008643867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: 0.045481157 + inSlope: -0.02514257 + outSlope: -0.02514257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.133334 + value: 0.040490516 + inSlope: -0.023447532 + outSlope: -0.023447532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.0395099 + inSlope: 0.013233619 + outSlope: 0.013233619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09822604 + inSlope: -0.012136771 + outSlope: -0.012136771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.099877164 + inSlope: -0.08924926 + outSlope: -0.08924926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.10458055 + inSlope: -0.31153813 + outSlope: -0.31153813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.12064637 + inSlope: -0.40966812 + outSlope: -0.40966812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.13189176 + inSlope: -0.37339696 + outSlope: -0.37339696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1455395 + inSlope: -0.6729231 + outSlope: -0.6729231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.1767533 + inSlope: -0.7232293 + outSlope: -0.7232293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.21085939 + inSlope: -0.7507376 + outSlope: -0.7507376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.24380396 + inSlope: -0.7300633 + outSlope: -0.7300633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.27102467 + inSlope: -0.32491285 + outSlope: -0.32491285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.2905153 + inSlope: -0.2965626 + outSlope: -0.2965626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.30096197 + inSlope: -0.189888 + outSlope: -0.189888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.30395615 + inSlope: -0.036435142 + outSlope: -0.036435142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.32296476 + inSlope: -0.026316518 + outSlope: -0.026316518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.32834092 + inSlope: -0.027627602 + outSlope: -0.027627602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.3311952 + inSlope: -0.03087218 + outSlope: -0.03087218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.33720666 + inSlope: 0.010124008 + outSlope: 0.010124008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.32816482 + inSlope: 0.024641478 + outSlope: 0.024641478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.31850263 + inSlope: 0.020914096 + outSlope: 0.020914096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.31173643 + inSlope: 0.009731511 + outSlope: 0.009731511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.30638084 + inSlope: 0.0041650278 + outSlope: 0.0041650278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.3027656 + inSlope: 0.0038100812 + outSlope: 0.0038100812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.30563688 + inSlope: -0.023783617 + outSlope: -0.023783617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.3094668 + inSlope: 0.009600529 + outSlope: 0.009600529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.31144062 + inSlope: -0.0037725307 + outSlope: -0.0037725307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.566667 + value: -0.30327216 + inSlope: 0.017692314 + outSlope: 0.017692314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: -0.29520297 + inSlope: 0.003715769 + outSlope: 0.003715769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: -0.29422772 + inSlope: -0.003938822 + outSlope: -0.003938822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: -0.27448693 + inSlope: 0.30495742 + outSlope: 0.30495742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: -0.10887232 + inSlope: 0.33152464 + outSlope: 0.33152464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.09822604 + inSlope: 0.319384 + outSlope: 0.319384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.25684524 + inSlope: -0.0024613736 + outSlope: -0.0024613736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.25535676 + inSlope: 0.1073069 + outSlope: 0.1073069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.24977349 + inSlope: 0.37274256 + outSlope: 0.37274256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.23050725 + inSlope: 0.49630952 + outSlope: 0.49630952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.21668619 + inSlope: 0.46462828 + outSlope: 0.46462828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.19953203 + inSlope: 0.84573984 + outSlope: 0.84573984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.16030353 + inSlope: 0.90390676 + outSlope: 0.90390676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.11883591 + inSlope: 0.84339595 + outSlope: 0.84339595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.08304519 + inSlope: 0.76448685 + outSlope: 0.76448685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.067870125 + inSlope: 0.37614328 + outSlope: 0.37614328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.057968967 + inSlope: 0.26586965 + outSlope: 0.26586965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.04407604 + inSlope: 0.16949607 + outSlope: 0.16949607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.03884574 + inSlope: 0.0858297 + outSlope: 0.0858297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.038354065 + inSlope: 0.009979318 + outSlope: 0.009979318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.03878489 + inSlope: -0.0054299086 + outSlope: -0.0054299086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.040828116 + inSlope: -0.006340687 + outSlope: -0.006340687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.04066243 + inSlope: 0.0026138118 + outSlope: 0.0026138118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.039326794 + inSlope: 0.011772094 + outSlope: 0.011772094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.037471026 + inSlope: 0.016867282 + outSlope: 0.016867282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.03553992 + inSlope: 0.030763332 + outSlope: 0.030763332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.034212217 + inSlope: 0.03043342 + outSlope: 0.03043342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.032939278 + inSlope: 0.023007233 + outSlope: 0.023007233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.031977206 + inSlope: 0.021704515 + outSlope: 0.021704515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.030918201 + inSlope: 0.01931388 + outSlope: 0.01931388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.030083973 + inSlope: 0.00061732123 + outSlope: 0.00061732123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.031391814 + inSlope: 0.0032923482 + outSlope: 0.0032923482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.03157179 + inSlope: -0.0051909736 + outSlope: -0.0051909736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.033094242 + inSlope: -0.009214962 + outSlope: -0.009214962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.0339933 + inSlope: -0.002659189 + outSlope: -0.002659189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.033466913 + inSlope: 0.008231316 + outSlope: 0.008231316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.033173855 + inSlope: 0.016766058 + outSlope: 0.016766058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.032349177 + inSlope: 0.016873427 + outSlope: 0.016873427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.031562828 + inSlope: 0.02021742 + outSlope: 0.02021742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.030212725 + inSlope: 0.013241576 + outSlope: 0.013241576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.02758708 + inSlope: 0.011122853 + outSlope: 0.011122853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.025890386 + inSlope: 0.014134249 + outSlope: 0.014134249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.023539962 + inSlope: 0.0014638647 + outSlope: 0.0014638647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.022571791 + inSlope: 0.009937637 + outSlope: 0.009937637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.021158604 + inSlope: 0.0043728775 + outSlope: 0.0043728775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.020391274 + inSlope: 0.005450394 + outSlope: 0.005450394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.020184102 + inSlope: 0.013018573 + outSlope: 0.013018573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.019523367 + inSlope: 0.015899284 + outSlope: 0.015899284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.018733108 + inSlope: 0.016271163 + outSlope: 0.016271163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.018039407 + inSlope: 0.013292287 + outSlope: 0.013292287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.01771552 + inSlope: 0.0007930126 + outSlope: 0.0007930126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.017560009 + inSlope: 0.0012402155 + outSlope: 0.0012402155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.0175111 + inSlope: -0.0044869212 + outSlope: -0.0044869212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.017859137 + inSlope: -0.0075954087 + outSlope: -0.0075954087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.0187378 + inSlope: -0.005178009 + outSlope: -0.005178009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.01956329 + inSlope: -0.020979142 + outSlope: -0.020979142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.021340955 + inSlope: 0.0024229032 + outSlope: 0.0024229032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: -0.020921906 + inSlope: 0.006371314 + outSlope: 0.006371314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.020743636 + inSlope: 0.0045200293 + outSlope: 0.0045200293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.020472046 + inSlope: 0.0014886642 + outSlope: 0.0014886642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.020644395 + inSlope: 0.00632648 + outSlope: 0.00632648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.020050284 + inSlope: 0.0041580144 + outSlope: 0.0041580144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: -0.020367194 + inSlope: -0.0049178908 + outSlope: -0.0049178908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.02023295 + inSlope: -0.00055538537 + outSlope: -0.00055538537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: -0.020609586 + inSlope: -0.008254869 + outSlope: -0.008254869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.020965492 + inSlope: -0.017055262 + outSlope: -0.017055262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.021746602 + inSlope: -0.015725164 + outSlope: -0.015725164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.022409718 + inSlope: -0.004857485 + outSlope: -0.004857485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.02277882 + inSlope: -0.0026747368 + outSlope: -0.0026747368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.023770751 + inSlope: -0.01483358 + outSlope: -0.01483358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.024310218 + inSlope: -0.024042841 + outSlope: -0.024042841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.025373606 + inSlope: -0.025665216 + outSlope: -0.025665216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.027991982 + inSlope: -0.03196034 + outSlope: -0.03196034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.03053189 + inSlope: -0.03295365 + outSlope: -0.03295365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.031574212 + inSlope: -0.038796067 + outSlope: -0.038796067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.033118293 + inSlope: -0.035118584 + outSlope: -0.035118584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.034919865 + inSlope: -0.012772357 + outSlope: -0.012772357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.03604726 + inSlope: -0.012782527 + outSlope: -0.012782527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.037866965 + inSlope: -0.0218375 + outSlope: -0.0218375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: -0.03935261 + inSlope: -0.017141344 + outSlope: -0.017141344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.041290186 + inSlope: -0.013680955 + outSlope: -0.013680955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.04359798 + inSlope: -0.015595943 + outSlope: -0.015595943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.04863502 + inSlope: -0.012606618 + outSlope: -0.012606618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: -0.051316794 + inSlope: -0.021014513 + outSlope: -0.021014513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: -0.05393924 + inSlope: -0.014058532 + outSlope: -0.014058532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.054292507 + inSlope: 0.0009163664 + outSlope: 0.0009163664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.666667 + value: -0.050681975 + inSlope: 0.013139484 + outSlope: 0.013139484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: -0.0488218 + inSlope: 0.01715918 + outSlope: 0.01715918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: -0.047609366 + inSlope: 0.01085889 + outSlope: 0.01085889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.045485474 + inSlope: 0.022368653 + outSlope: 0.022368653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: -0.043984085 + inSlope: 0.016006263 + outSlope: 0.016006263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.400001 + value: -0.041851833 + inSlope: 0.016375333 + outSlope: 0.016375333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: -0.040165856 + inSlope: 0.026654929 + outSlope: 0.026654929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: -0.039029606 + inSlope: 0.025432926 + outSlope: 0.025432926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.6 + value: -0.037975438 + inSlope: 0.019022185 + outSlope: 0.019022185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.666667 + value: -0.03704241 + inSlope: 0.0020276797 + outSlope: 0.0020276797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: -0.03779117 + inSlope: -0.010023342 + outSlope: -0.010023342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.900001 + value: -0.037840836 + inSlope: 0.0012151864 + outSlope: 0.0012151864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: -0.037984096 + inSlope: -0.021097478 + outSlope: -0.021097478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: -0.03924735 + inSlope: -0.14760941 + outSlope: -0.14760941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: -0.04782461 + inSlope: -0.27570984 + outSlope: -0.27570984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.400001 + value: -0.22317037 + inSlope: -0.511498 + outSlope: -0.511498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.25684524 + inSlope: -0.5017546 + outSlope: -0.5017546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6608471 + inSlope: -0.00010728835 + outSlope: -0.00010728835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.6498309 + inSlope: 0.1797107 + outSlope: 0.1797107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.6436519 + inSlope: -0.120896064 + outSlope: -0.120896064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.6657308 + inSlope: 0.023665166 + outSlope: 0.023665166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.641395 + inSlope: -0.006390816 + outSlope: -0.006390816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.63748735 + inSlope: 0.012398076 + outSlope: 0.012398076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.6646723 + inSlope: -0.011470925 + outSlope: -0.011470925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.6776536 + inSlope: 0.014614478 + outSlope: 0.014614478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.6592308 + inSlope: -0.0069299405 + outSlope: -0.0069299405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.6634398 + inSlope: 0.021802703 + outSlope: 0.021802703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6333337 + value: -0.65780365 + inSlope: -0.030289322 + outSlope: -0.030289322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.733334 + value: -0.6751453 + inSlope: -0.02300814 + outSlope: -0.02300814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.1 + value: -0.6760313 + inSlope: -0.037601892 + outSlope: -0.037601892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.6608471 + inSlope: 0.13710196 + outSlope: 0.13710196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.69832915 + inSlope: -0.0027179716 + outSlope: -0.0027179716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.7028948 + inSlope: 0.22384554 + outSlope: 0.22384554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.7345576 + inSlope: -0.13659598 + outSlope: -0.13659598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.69777626 + inSlope: -0.3189095 + outSlope: -0.3189095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6812362 + inSlope: -0.06435419 + outSlope: -0.06435419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6870268 + inSlope: 0.021959241 + outSlope: 0.021959241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.690072 + inSlope: -0.0056675207 + outSlope: -0.0056675207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.68637294 + inSlope: -0.018594785 + outSlope: -0.018594785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.67162997 + inSlope: -0.005908912 + outSlope: -0.005908912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.6813396 + inSlope: 0.028582541 + outSlope: 0.028582541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.6818665 + inSlope: 0.019767005 + outSlope: 0.019767005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: 0.68575543 + inSlope: -0.013629211 + outSlope: -0.013629211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.6747948 + inSlope: -0.0014376201 + outSlope: -0.0014376201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.200001 + value: 0.69556916 + inSlope: 0.02737461 + outSlope: 0.02737461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.69832915 + inSlope: -0.0009780992 + outSlope: -0.0009780992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.026841437 + inSlope: -0.0004960969 + outSlope: -0.0004960969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.027633572 + inSlope: -0.0004895036 + outSlope: -0.0004895036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.028295124 + inSlope: -0.0005279188 + outSlope: -0.0005279188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.029747257 + inSlope: 0.00065918145 + outSlope: 0.00065918145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.028680194 + inSlope: 0.00067270425 + outSlope: 0.00067270425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.028348843 + inSlope: 0.0023043829 + outSlope: 0.0023043829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.026427256 + inSlope: 0.0028690444 + outSlope: 0.0028690444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.025468562 + inSlope: 0.0006634283 + outSlope: 0.0006634283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.026033653 + inSlope: -0.0015455575 + outSlope: -0.0015455575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.533334 + value: -0.027007086 + inSlope: -0.0028792145 + outSlope: -0.0028792145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: -0.028558938 + inSlope: -0.0016018392 + outSlope: -0.0016018392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.0282097 + inSlope: 0.001058859 + outSlope: 0.001058859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.333334 + value: -0.027105188 + inSlope: 0.001451447 + outSlope: 0.001451447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.026841437 + inSlope: 0.0020163236 + outSlope: 0.0020163236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03772621 + inSlope: 0.0004975498 + outSlope: 0.0004975498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.035035547 + inSlope: 0.00039350247 + outSlope: 0.00039350247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.034405183 + inSlope: 0.0030745352 + outSlope: 0.0030745352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.032481957 + inSlope: 0.003972177 + outSlope: 0.003972177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.032400504 + inSlope: -0.00061874953 + outSlope: -0.00061874953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.032883294 + inSlope: -0.00005437067 + outSlope: -0.00005437067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.032606624 + inSlope: -0.00017166152 + outSlope: -0.00017166152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.033192836 + inSlope: -0.0021169146 + outSlope: -0.0021169146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.03330713 + inSlope: 0.00231134 + outSlope: 0.00231134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.033326782 + inSlope: -0.0007125742 + outSlope: -0.0007125742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: -0.03479564 + inSlope: -0.0015764699 + outSlope: -0.0015764699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.666667 + value: -0.036091186 + inSlope: -0.000005420303 + outSlope: -0.000005420303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.733334 + value: -0.035087567 + inSlope: 0.00080685056 + outSlope: 0.00080685056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.166667 + value: -0.03650268 + inSlope: -0.006344214 + outSlope: -0.006344214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.03772621 + inSlope: -0.00020831545 + outSlope: -0.00020831545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.004536224 + inSlope: -0.0005827797 + outSlope: -0.0005827797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.004387389 + inSlope: -0.0041979784 + outSlope: -0.0041979784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0013289321 + inSlope: -0.0057534613 + outSlope: -0.0057534613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0011652429 + inSlope: -0.0036413847 + outSlope: -0.0036413847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0010861732 + inSlope: -0.001841183 + outSlope: -0.001841183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0010424972 + inSlope: 0.0012539106 + outSlope: 0.0012539106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0011697671 + inSlope: 0.0031130135 + outSlope: 0.0031130135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0012500314 + inSlope: 0.0022715237 + outSlope: 0.0022715237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.001321202 + inSlope: 0.003932096 + outSlope: 0.003932096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0015121712 + inSlope: 0.0045001414 + outSlope: 0.0045001414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0017086484 + inSlope: 0.0027210885 + outSlope: 0.0027210885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0018026176 + inSlope: 0.0030950862 + outSlope: 0.0030950862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0019149875 + inSlope: 0.0050515328 + outSlope: 0.0050515328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0021393865 + inSlope: 0.0051514343 + outSlope: 0.0051514343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0023831683 + inSlope: 0.005771372 + outSlope: 0.005771372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0026431745 + inSlope: 0.005950682 + outSlope: 0.005950682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0029165004 + inSlope: 0.00587574 + outSlope: 0.00587574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0031715962 + inSlope: 0.005599735 + outSlope: 0.005599735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.003383614 + inSlope: 0.0025251084 + outSlope: 0.0025251084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0035489665 + inSlope: 0.004107559 + outSlope: 0.004107559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0037319935 + inSlope: 0.0044527166 + outSlope: 0.0044527166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0039744494 + inSlope: 0.006714613 + outSlope: 0.006714613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.004293455 + inSlope: 0.0077469433 + outSlope: 0.0077469433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.004859527 + inSlope: 0.006068427 + outSlope: 0.006068427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.005080379 + inSlope: 0.009206377 + outSlope: 0.009206377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.0054732864 + inSlope: 0.00861592 + outSlope: 0.00861592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.005814789 + inSlope: 0.006945752 + outSlope: 0.006945752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.0061178254 + inSlope: 0.006767085 + outSlope: 0.006767085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.006417318 + inSlope: 0.0064993547 + outSlope: 0.0064993547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.0066992184 + inSlope: 0.0066613546 + outSlope: 0.0066613546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.0073061395 + inSlope: 0.007294697 + outSlope: 0.007294697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.007622878 + inSlope: 0.007335077 + outSlope: 0.007335077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.007965662 + inSlope: 0.007233901 + outSlope: 0.007233901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.008277406 + inSlope: 0.0069130845 + outSlope: 0.0069130845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.008576087 + inSlope: 0.0059486264 + outSlope: 0.0059486264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.0089311255 + inSlope: 0.0027934397 + outSlope: 0.0027934397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.009156261 + inSlope: -0.0022022633 + outSlope: -0.0022022633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.009283285 + inSlope: 0.0015197103 + outSlope: 0.0015197103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.009213977 + inSlope: -0.0016245401 + outSlope: -0.0016245401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.009260145 + inSlope: 0.00088446937 + outSlope: 0.00088446937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.009055572 + inSlope: -0.00035547686 + outSlope: -0.00035547686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.008780489 + inSlope: -0.0014287666 + outSlope: -0.0014287666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.008473176 + inSlope: -0.002289424 + outSlope: -0.002289424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.008223115 + inSlope: -0.0010227328 + outSlope: -0.0010227328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.007964008 + inSlope: -0.0027851136 + outSlope: -0.0027851136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.007534641 + inSlope: -0.003295523 + outSlope: -0.003295523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.007135713 + inSlope: -0.002505905 + outSlope: -0.002505905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.0069167814 + inSlope: -0.0034940345 + outSlope: -0.0034940345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.0066837603 + inSlope: -0.0022068315 + outSlope: -0.0022068315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.0064577414 + inSlope: -0.0008805477 + outSlope: -0.0008805477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.0063413037 + inSlope: 0.00061852916 + outSlope: 0.00061852916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.0061664637 + inSlope: -0.0012276846 + outSlope: -0.0012276846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.0060067847 + inSlope: -0.0013378282 + outSlope: -0.0013378282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.0057717543 + inSlope: -0.0022440052 + outSlope: -0.0022440052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.005484425 + inSlope: -0.0021043974 + outSlope: -0.0021043974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.0052678348 + inSlope: -0.0038495325 + outSlope: -0.0038495325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.005096546 + inSlope: -0.004188944 + outSlope: -0.004188944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.0048679607 + inSlope: -0.0057271854 + outSlope: -0.0057271854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.00460676 + inSlope: -0.00610434 + outSlope: -0.00610434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.004102757 + inSlope: -0.004227955 + outSlope: -0.004227955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.003940992 + inSlope: -0.0034652185 + outSlope: -0.0034652185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.0038185888 + inSlope: -0.0022093914 + outSlope: -0.0022093914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.0036908924 + inSlope: -0.00079283444 + outSlope: -0.00079283444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.0034746497 + inSlope: -0.0019506572 + outSlope: -0.0019506572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.003399637 + inSlope: -0.003311499 + outSlope: -0.003311499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.0032538823 + inSlope: -0.0029817112 + outSlope: -0.0029817112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.0031607249 + inSlope: -0.0012058672 + outSlope: -0.0012058672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.0031004879 + inSlope: -0.0009861807 + outSlope: -0.0009861807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.003001185 + inSlope: -0.0012750144 + outSlope: -0.0012750144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.002845826 + inSlope: -0.0030860626 + outSlope: -0.0030860626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.0027036152 + inSlope: -0.003096959 + outSlope: -0.003096959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.0025831794 + inSlope: -0.0026512146 + outSlope: -0.0026512146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.0024626132 + inSlope: -0.0026627502 + outSlope: -0.0026627502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.002351868 + inSlope: -0.0027831786 + outSlope: -0.0027831786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.002220116 + inSlope: -0.0029701756 + outSlope: -0.0029701756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.0019933735 + inSlope: -0.002362433 + outSlope: -0.002362433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.0018939403 + inSlope: -0.001988439 + outSlope: -0.001988439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: 0.0018214053 + inSlope: -0.0016804126 + outSlope: -0.0016804126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: 0.0017487836 + inSlope: -0.0015420849 + outSlope: -0.0015420849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: 0.001689013 + inSlope: -0.0013826177 + outSlope: -0.0013826177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.0015864632 + inSlope: -0.0009586811 + outSlope: -0.0009586811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.0015011192 + inSlope: -0.0012686406 + outSlope: -0.0012686406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.533334 + value: 0.001446514 + inSlope: -0.0012532651 + outSlope: -0.0012532651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.666667 + value: 0.0013695825 + inSlope: -0.00020491504 + outSlope: -0.00020491504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8 + value: 0.0012864597 + inSlope: -0.0007703912 + outSlope: -0.0007703912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: 0.0012585811 + inSlope: -0.00035028456 + outSlope: -0.00035028456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: 0.0012686581 + inSlope: 0.00012296613 + outSlope: 0.00012296613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: 0.0012633627 + inSlope: -0.00048735575 + outSlope: -0.00048735575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.066668 + value: 0.0012470533 + inSlope: -0.0014960301 + outSlope: -0.0014960301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.1 + value: 0.0011636284 + inSlope: -0.0020755925 + outSlope: -0.0020755925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.166667 + value: 0.0010725614 + inSlope: -0.0010675762 + outSlope: -0.0010675762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.200001 + value: 0.0010375093 + inSlope: -0.00059302413 + outSlope: -0.00059302413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: 0.0010285857 + inSlope: -0.0001069563 + outSlope: -0.0001069563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.333334 + value: 0.0010256391 + inSlope: -0.00025297658 + outSlope: -0.00025297658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: 0.000979614 + inSlope: -0.00047199102 + outSlope: -0.00047199102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 0.00094601314 + inSlope: -0.0009209181 + outSlope: -0.0009209181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: 0.00090131204 + inSlope: -0.00073903386 + outSlope: -0.00073903386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.6 + value: 0.0008915774 + inSlope: -0.000349027 + outSlope: -0.000349027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.633334 + value: 0.0008734749 + inSlope: -0.00022606782 + outSlope: -0.00022606782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.666667 + value: 0.0008765059 + inSlope: 0.0000877281 + outSlope: 0.0000877281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.700001 + value: 0.00087932346 + inSlope: 0.000505279 + outSlope: 0.000505279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.733334 + value: 0.00091019075 + inSlope: 0.00080498826 + outSlope: 0.00080498826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.00096897985 + inSlope: 0.00038872423 + outSlope: 0.00038872423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.866667 + value: 0.0009819586 + inSlope: 0.0016445471 + outSlope: 0.0016445471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.0012515706 + inSlope: 0.0059468383 + outSlope: 0.0059468383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: 0.0014750736 + inSlope: 0.006529632 + outSlope: 0.006529632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.1 + value: 0.0023717806 + inSlope: 0.007050986 + outSlope: 0.007050986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: 0.004418345 + inSlope: 0.0039033424 + outSlope: 0.0039033424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.004536224 + inSlope: 0.0035363196 + outSlope: 0.0035363196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.19208843 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.19208843 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.004739906 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.004739906 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0039536664 + inSlope: 0.00006290618 + outSlope: 0.00006290618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.0039161015 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.0039181123 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.003919867 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.003922006 + inSlope: 0.0000006426132 + outSlope: 0.0000006426132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.0039237603 + inSlope: 0.000000642604 + outSlope: 0.000000642604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.0039536664 + inSlope: -0.00003208829 + outSlope: -0.00003208829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06672238 + inSlope: 0.0030691174 + outSlope: 0.0030691174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.069259726 + inSlope: 0.030012239 + outSlope: 0.030012239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.079476856 + inSlope: 0.027614102 + outSlope: 0.027614102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.08315373 + inSlope: 0.014460792 + outSlope: 0.014460792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.09394887 + inSlope: 0.0033686343 + outSlope: 0.0033686343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.09283645 + inSlope: -0.014086925 + outSlope: -0.014086925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.08983354 + inSlope: -0.03111086 + outSlope: -0.03111086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.08697475 + inSlope: -0.03188494 + outSlope: -0.03188494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.08556992 + inSlope: -0.032000124 + outSlope: -0.032000124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.08203634 + inSlope: -0.020551104 + outSlope: -0.020551104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.07961037 + inSlope: -0.015073024 + outSlope: -0.015073024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.07761481 + inSlope: -0.017054059 + outSlope: -0.017054059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.074267946 + inSlope: -0.018197466 + outSlope: -0.018197466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.07166389 + inSlope: -0.013111544 + outSlope: -0.013111544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.06730109 + inSlope: -0.010245936 + outSlope: -0.010245936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.06361518 + inSlope: -0.008270793 + outSlope: -0.008270793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.061728545 + inSlope: 0.0011646945 + outSlope: 0.0011646945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.063943796 + inSlope: 0.008701765 + outSlope: 0.008701765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.066337325 + inSlope: 0.028251622 + outSlope: 0.028251622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.06902723 + inSlope: 0.018427577 + outSlope: 0.018427577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.072096154 + inSlope: 0.018204153 + outSlope: 0.018204153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.074784026 + inSlope: 0.022617526 + outSlope: 0.022617526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.078751355 + inSlope: 0.021485968 + outSlope: 0.021485968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.08249607 + inSlope: 0.021863265 + outSlope: 0.021863265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.08601827 + inSlope: 0.018284302 + outSlope: 0.018284302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.09109207 + inSlope: 0.014188563 + outSlope: 0.014188563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.09371568 + inSlope: 0.012306899 + outSlope: 0.012306899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.097374596 + inSlope: 0.005828781 + outSlope: 0.005828781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: 0.09829813 + inSlope: -0.0064462484 + outSlope: -0.0064462484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.09382408 + inSlope: -0.022496268 + outSlope: -0.022496268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.0899708 + inSlope: -0.021629578 + outSlope: -0.021629578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.566667 + value: 0.085995 + inSlope: -0.023628384 + outSlope: -0.023628384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7000003 + value: 0.0822555 + inSlope: -0.017006004 + outSlope: -0.017006004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: 0.078963116 + inSlope: -0.007945603 + outSlope: -0.007945603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.075711586 + inSlope: 0.00045016425 + outSlope: 0.00045016425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.866667 + value: 0.07572595 + inSlope: -0.035309017 + outSlope: -0.035309017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.900001 + value: 0.07335762 + inSlope: -0.042674363 + outSlope: -0.042674363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: 0.072395004 + inSlope: -0.0128202755 + outSlope: -0.0128202755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.06672238 + inSlope: -0.012370854 + outSlope: -0.012370854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.009534893 + inSlope: -0.000028973443 + outSlope: -0.000028973443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.009535858 + inSlope: 0.011998652 + outSlope: 0.011998652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.008734982 + inSlope: 0.05842803 + outSlope: 0.05842803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0056406558 + inSlope: 0.10996476 + outSlope: 0.10996476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0014039986 + inSlope: 0.13315624 + outSlope: 0.13315624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.003236427 + inSlope: 0.13956475 + outSlope: 0.13956475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00790032 + inSlope: 0.13263641 + outSlope: 0.13263641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.012078856 + inSlope: 0.13438189 + outSlope: 0.13438189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.02172732 + inSlope: 0.13941619 + outSlope: 0.13941619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.026153523 + inSlope: 0.14257903 + outSlope: 0.14257903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.041968733 + inSlope: 0.1647095 + outSlope: 0.1647095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.047517113 + inSlope: 0.2471944 + outSlope: 0.2471944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.05844835 + inSlope: 0.21325037 + outSlope: 0.21325037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.061733797 + inSlope: 0.06276637 + outSlope: 0.06276637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.063167125 + inSlope: 0.012846444 + outSlope: 0.012846444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.066092156 + inSlope: 0.016261118 + outSlope: 0.016261118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.068588465 + inSlope: 0.019707419 + outSlope: 0.019707419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.07132153 + inSlope: 0.021250676 + outSlope: 0.021250676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.07516126 + inSlope: 0.022990871 + outSlope: 0.022990871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0768587 + inSlope: 0.04102979 + outSlope: 0.04102979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.07961411 + inSlope: 0.029445603 + outSlope: 0.029445603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.083977394 + inSlope: 0.03436644 + outSlope: 0.03436644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.08741074 + inSlope: 0.053434562 + outSlope: 0.053434562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.09079374 + inSlope: 0.032218613 + outSlope: 0.032218613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.09489861 + inSlope: 0.030614987 + outSlope: 0.030614987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.10003081 + inSlope: 0.027798329 + outSlope: 0.027798329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.10465374 + inSlope: 0.023775905 + outSlope: 0.023775905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.10873088 + inSlope: 0.00023603463 + outSlope: 0.00023603463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.104813315 + inSlope: -0.010493446 + outSlope: -0.010493446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.09961455 + inSlope: -0.016861388 + outSlope: -0.016861388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.0985681 + inSlope: -0.0012322508 + outSlope: -0.0012322508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.09759344 + inSlope: -0.0041274764 + outSlope: -0.0041274764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.09228066 + inSlope: -0.011670526 + outSlope: -0.011670526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.08726079 + inSlope: -0.0058509833 + outSlope: -0.0058509833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.08484263 + inSlope: -0.011672761 + outSlope: -0.011672761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.080100164 + inSlope: -0.020073231 + outSlope: -0.020073231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.07716127 + inSlope: -0.023747407 + outSlope: -0.023747407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.07492146 + inSlope: -0.025916535 + outSlope: -0.025916535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.072609 + inSlope: -0.026013542 + outSlope: -0.026013542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.06962157 + inSlope: -0.02101032 + outSlope: -0.02101032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.06490211 + inSlope: -0.0068509686 + outSlope: -0.0068509686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.062170327 + inSlope: -0.0003538843 + outSlope: -0.0003538843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.06283146 + inSlope: 0.0031510142 + outSlope: 0.0031510142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.666667 + value: 0.06397387 + inSlope: -0.0009320685 + outSlope: -0.0009320685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.06387457 + inSlope: -0.0015857413 + outSlope: -0.0015857413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.866667 + value: 0.0638323 + inSlope: -0.049827814 + outSlope: -0.049827814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.900001 + value: 0.060552675 + inSlope: -0.10795736 + outSlope: -0.10795736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.233334 + value: 0.010634039 + inSlope: -0.14687309 + outSlope: -0.14687309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.3 + value: 0.0016306501 + inSlope: -0.120127946 + outSlope: -0.120127946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.333334 + value: -0.0021002193 + inSlope: -0.10223776 + outSlope: -0.10223776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: -0.009002048 + inSlope: -0.030246854 + outSlope: -0.030246854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.009534893 + inSlope: -0.015985137 + outSlope: -0.015985137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010181571 + inSlope: -0.0000036321578 + outSlope: -0.0000036321578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.01018145 + inSlope: -0.008174744 + outSlope: -0.008174744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.009636588 + inSlope: -0.04198273 + outSlope: -0.04198273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0073826015 + inSlope: -0.13063946 + outSlope: -0.13063946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00092729117 + inSlope: -0.1609723 + outSlope: -0.1609723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.003348884 + inSlope: -0.13778843 + outSlope: -0.13778843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.008258606 + inSlope: -0.2157882 + outSlope: -0.2157882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.017734766 + inSlope: -0.2274453 + outSlope: -0.2274453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.023421627 + inSlope: -0.17271851 + outSlope: -0.17271851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.029249333 + inSlope: -0.24149448 + outSlope: -0.24149448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.03952126 + inSlope: -0.2431778 + outSlope: -0.2431778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.045461185 + inSlope: -0.16355613 + outSlope: -0.16355613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.055156283 + inSlope: -0.14255378 + outSlope: -0.14255378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.05992859 + inSlope: -0.17559573 + outSlope: -0.17559573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.06686266 + inSlope: -0.13821866 + outSlope: -0.13821866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.06992036 + inSlope: -0.0123245185 + outSlope: -0.0123245185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.06952116 + inSlope: 0.0016247467 + outSlope: 0.0016247467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.06471841 + inSlope: 0.012463454 + outSlope: 0.012463454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.06310119 + inSlope: 0.013763187 + outSlope: 0.013763187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.06003695 + inSlope: 0.020230915 + outSlope: 0.020230915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.05854302 + inSlope: 0.033487726 + outSlope: 0.033487726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.056471657 + inSlope: 0.018387679 + outSlope: 0.018387679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.05445537 + inSlope: 0.013072597 + outSlope: 0.013072597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.052213803 + inSlope: 0.013931071 + outSlope: 0.013931071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.05114374 + inSlope: 0.026313048 + outSlope: 0.026313048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.04937262 + inSlope: 0.018608514 + outSlope: 0.018608514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.046876315 + inSlope: 0.017344944 + outSlope: 0.017344944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.045070183 + inSlope: 0.008650747 + outSlope: 0.008650747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.045363583 + inSlope: -0.011552341 + outSlope: -0.011552341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.04538021 + inSlope: -0.0016111151 + outSlope: -0.0016111151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.046413038 + inSlope: -0.007996958 + outSlope: -0.007996958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.04767478 + inSlope: -0.011313344 + outSlope: -0.011313344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.049813498 + inSlope: -0.009624738 + outSlope: -0.009624738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.053073052 + inSlope: -0.011027354 + outSlope: -0.011027354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.054861378 + inSlope: -0.012762521 + outSlope: -0.012762521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.056418203 + inSlope: -0.01976952 + outSlope: -0.01976952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.05827268 + inSlope: -0.020101024 + outSlope: -0.020101024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.06023389 + inSlope: -0.01289043 + outSlope: -0.01289043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: -0.061961137 + inSlope: -0.0012004573 + outSlope: -0.0012004573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.06418486 + inSlope: -0.012021113 + outSlope: -0.012021113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.065940656 + inSlope: -0.016261354 + outSlope: -0.016261354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.06788066 + inSlope: -0.02495785 + outSlope: -0.02495785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.07073961 + inSlope: -0.016337238 + outSlope: -0.016337238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.07212134 + inSlope: -0.005613725 + outSlope: -0.005613725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.07286062 + inSlope: -0.007755056 + outSlope: -0.007755056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: -0.077793896 + inSlope: -0.0017759594 + outSlope: -0.0017759594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: -0.07947864 + inSlope: 0.003841288 + outSlope: 0.003841288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: -0.07609338 + inSlope: 0.052038737 + outSlope: 0.052038737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: -0.07416667 + inSlope: 0.09431289 + outSlope: 0.09431289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: -0.064845584 + inSlope: 0.15627408 + outSlope: 0.15627408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.366667 + value: -0.003558682 + inSlope: 0.16212565 + outSlope: 0.16212565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: 0.0062267794 + inSlope: 0.12850165 + outSlope: 0.12850165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.010181571 + inSlope: 0.11864217 + outSlope: 0.11864217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.18177108 + inSlope: 0.000106394284 + outSlope: 0.000106394284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.16987205 + inSlope: -0.10640523 + outSlope: -0.10640523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.13460822 + inSlope: 0.0017772014 + outSlope: 0.0017772014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.13812236 + inSlope: 0.015185329 + outSlope: 0.015185329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.14649196 + inSlope: 0.018618125 + outSlope: 0.018618125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.1522611 + inSlope: 0.01536192 + outSlope: 0.01536192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.16072975 + inSlope: 0.0034721228 + outSlope: 0.0034721228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.15859543 + inSlope: -0.021628406 + outSlope: -0.021628406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.14829054 + inSlope: -0.024633817 + outSlope: -0.024633817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.14210707 + inSlope: -0.016994044 + outSlope: -0.016994044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.13478485 + inSlope: -0.0042421413 + outSlope: -0.0042421413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.13431601 + inSlope: 0.0054059974 + outSlope: 0.0054059974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.14285178 + inSlope: 0.01825625 + outSlope: 0.01825625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.14890854 + inSlope: 0.017238572 + outSlope: 0.017238572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.15562838 + inSlope: 0.011163057 + outSlope: 0.011163057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.16013223 + inSlope: -0.008688801 + outSlope: -0.008688801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: 0.14948545 + inSlope: -0.016673187 + outSlope: -0.016673187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.200001 + value: 0.14278853 + inSlope: -0.011820296 + outSlope: -0.011820296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.13604982 + inSlope: -0.005440419 + outSlope: -0.005440419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: 0.14162575 + inSlope: 0.0932298 + outSlope: 0.0932298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.18177108 + inSlope: 0.010788147 + outSlope: 0.010788147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23446158 + inSlope: 0.0012347101 + outSlope: 0.0012347101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.23220806 + inSlope: 0.11002667 + outSlope: 0.11002667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.22266755 + inSlope: 0.12975429 + outSlope: 0.12975429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.21797125 + inSlope: 0.21853162 + outSlope: 0.21853162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.20809877 + inSlope: 0.23177394 + outSlope: 0.23177394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.19673817 + inSlope: 0.24940053 + outSlope: 0.24940053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.18589295 + inSlope: 0.25095397 + outSlope: 0.25095397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.17091917 + inSlope: 0.12996623 + outSlope: 0.12996623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.15930262 + inSlope: 0.033219576 + outSlope: 0.033219576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.16164686 + inSlope: -0.014773386 + outSlope: -0.014773386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.17078938 + inSlope: -0.018206406 + outSlope: -0.018206406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.17683718 + inSlope: -0.018266309 + outSlope: -0.018266309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.18761791 + inSlope: -0.0024837279 + outSlope: -0.0024837279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.1780564 + inSlope: 0.003043863 + outSlope: 0.003043863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.17029795 + inSlope: 0.007434644 + outSlope: 0.007434644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.16081457 + inSlope: 0.00667446 + outSlope: 0.00667446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: -0.15721154 + inSlope: 0.004426096 + outSlope: 0.004426096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: -0.15477592 + inSlope: 0.00035762828 + outSlope: 0.00035762828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: -0.16580239 + inSlope: -0.1610164 + outSlope: -0.1610164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: -0.23361851 + inSlope: -0.042295814 + outSlope: -0.042295814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.23446158 + inSlope: -0.025291553 + outSlope: -0.025291553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14387299 + inSlope: -0.003975928 + outSlope: -0.003975928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.14761758 + inSlope: 0.03193148 + outSlope: 0.03193148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15045425 + inSlope: 0.034005273 + outSlope: 0.034005273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.15306203 + inSlope: 0.015082964 + outSlope: 0.015082964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.1529007 + inSlope: -0.001508964 + outSlope: -0.001508964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.14809872 + inSlope: -0.00692881 + outSlope: -0.00692881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.1444979 + inSlope: -0.0031325994 + outSlope: -0.0031325994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.14273252 + inSlope: 0.0014099493 + outSlope: 0.0014099493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.14933302 + inSlope: 0.005227854 + outSlope: 0.005227854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.1542113 + inSlope: -0.00018730777 + outSlope: -0.00018730777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.15380551 + inSlope: 0.0016041859 + outSlope: 0.0016041859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.333334 + value: 0.14350763 + inSlope: -0.013539085 + outSlope: -0.013539085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.14387299 + inSlope: 0.016986202 + outSlope: 0.016986202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49589217 + inSlope: 0.005458295 + outSlope: 0.005458295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.5010155 + inSlope: 0.009221444 + outSlope: 0.009221444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.4970972 + inSlope: -0.00036254426 + outSlope: -0.00036254426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.4951532 + inSlope: 0.002141746 + outSlope: 0.002141746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.49658543 + inSlope: 0.00092983333 + outSlope: 0.00092983333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.49957007 + inSlope: -0.0011305521 + outSlope: -0.0011305521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: 0.4948395 + inSlope: 0.0037019881 + outSlope: 0.0037019881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.133334 + value: 0.48891 + inSlope: -0.06834087 + outSlope: -0.06834087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.49589223 + inSlope: 0.033004142 + outSlope: 0.033004142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.087240525 + inSlope: -0.0028527526 + outSlope: -0.0028527526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08599876 + inSlope: -0.023043754 + outSlope: -0.023043754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.08470872 + inSlope: -0.038679466 + outSlope: -0.038679466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08191815 + inSlope: -0.02879955 + outSlope: -0.02879955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.080921635 + inSlope: -0.049999397 + outSlope: -0.049999397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.07858486 + inSlope: -0.05303421 + outSlope: -0.05303421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.07416684 + inSlope: -0.055692308 + outSlope: -0.055692308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.071847044 + inSlope: -0.046876766 + outSlope: -0.046876766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.06995303 + inSlope: -0.047296748 + outSlope: -0.047296748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.06788861 + inSlope: -0.045954864 + outSlope: -0.045954864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.065913185 + inSlope: -0.046150412 + outSlope: -0.046150412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.06381268 + inSlope: -0.047407363 + outSlope: -0.047407363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.060032863 + inSlope: -0.04509195 + outSlope: -0.04509195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.058041446 + inSlope: -0.042673264 + outSlope: -0.042673264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.056338616 + inSlope: -0.039593108 + outSlope: -0.039593108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.05454844 + inSlope: -0.038112607 + outSlope: -0.038112607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.05310518 + inSlope: -0.03271378 + outSlope: -0.03271378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.05161686 + inSlope: -0.032317128 + outSlope: -0.032317128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.04983999 + inSlope: -0.0019796363 + outSlope: -0.0019796363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.049776446 + inSlope: 0.002857673 + outSlope: 0.002857673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.050122887 + inSlope: 0.017803874 + outSlope: 0.017803874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.052452885 + inSlope: -0.0011946459 + outSlope: -0.0011946459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.053296775 + inSlope: 0.0028608034 + outSlope: 0.0028608034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.053273868 + inSlope: 0.013640047 + outSlope: 0.013640047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.056070637 + inSlope: 0.012611871 + outSlope: 0.012611871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.055796567 + inSlope: -0.0027346264 + outSlope: -0.0027346264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.05451278 + inSlope: -0.024906961 + outSlope: -0.024906961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.052571576 + inSlope: -0.008428652 + outSlope: -0.008428652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.050268296 + inSlope: -0.009009493 + outSlope: -0.009009493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.050170615 + inSlope: 0.0022064466 + outSlope: 0.0022064466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.05112607 + inSlope: 0.0021191707 + outSlope: 0.0021191707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.054739676 + inSlope: 0.014036963 + outSlope: 0.014036963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.056851357 + inSlope: -0.006400483 + outSlope: -0.006400483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.05345156 + inSlope: -0.008508641 + outSlope: -0.008508641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.051355064 + inSlope: -0.0051865587 + outSlope: -0.0051865587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.051508915 + inSlope: 0.00049967365 + outSlope: 0.00049967365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.051703442 + inSlope: 0.0038375184 + outSlope: 0.0038375184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.053381253 + inSlope: 0.0072135287 + outSlope: 0.0072135287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.054498266 + inSlope: 0.026281014 + outSlope: 0.026281014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.05578491 + inSlope: 0.010700068 + outSlope: 0.010700068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.05704843 + inSlope: -0.0025034533 + outSlope: -0.0025034533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.056307975 + inSlope: -0.0024130964 + outSlope: -0.0024130964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.0562262 + inSlope: 0.018445177 + outSlope: 0.018445177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.0601615 + inSlope: 0.012141813 + outSlope: 0.012141813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.059158117 + inSlope: -0.015048832 + outSlope: -0.015048832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.057447657 + inSlope: 0.010882403 + outSlope: 0.010882403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.060298145 + inSlope: -0.004572053 + outSlope: -0.004572053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.056145705 + inSlope: -0.00876787 + outSlope: -0.00876787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: 0.054371074 + inSlope: -0.0034153177 + outSlope: -0.0034153177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.400001 + value: 0.052140035 + inSlope: -0.01068839 + outSlope: -0.01068839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.633334 + value: 0.05041349 + inSlope: -0.0030048033 + outSlope: -0.0030048033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.049520344 + inSlope: -0.0029668054 + outSlope: -0.0029668054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.066668 + value: 0.05239149 + inSlope: 0.05079695 + outSlope: 0.05079695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: 0.084901586 + inSlope: 0.075500645 + outSlope: 0.075500645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.08724065 + inSlope: 0.07017101 + outSlope: 0.07017101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.029926747 + inSlope: -0.0029056703 + outSlope: -0.0029056703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.029729294 + inSlope: -0.0030109747 + outSlope: -0.0030109747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.02962916 + inSlope: -0.02360252 + outSlope: -0.02360252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.028155793 + inSlope: -0.034562305 + outSlope: -0.034562305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.026237784 + inSlope: -0.06521654 + outSlope: -0.06521654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.022977237 + inSlope: -0.072841845 + outSlope: -0.072841845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.021381661 + inSlope: -0.05150881 + outSlope: -0.05150881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.019543316 + inSlope: -0.098852545 + outSlope: -0.098852545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.014791492 + inSlope: -0.10988481 + outSlope: -0.10988481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.012217662 + inSlope: -0.07302951 + outSlope: -0.07302951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.009922856 + inSlope: -0.06450717 + outSlope: -0.06450717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0079171825 + inSlope: -0.085236385 + outSlope: -0.085236385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.004240431 + inSlope: -0.15374018 + outSlope: -0.15374018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0023321568 + inSlope: -0.14354306 + outSlope: -0.14354306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.005329103 + inSlope: -0.10385332 + outSlope: -0.10385332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0092557175 + inSlope: -0.16676266 + outSlope: -0.16676266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.01644661 + inSlope: -0.16373004 + outSlope: -0.16373004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.02017105 + inSlope: -0.11348952 + outSlope: -0.11348952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.024012579 + inSlope: -0.16935593 + outSlope: -0.16935593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.031461447 + inSlope: -0.17166595 + outSlope: -0.17166595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.035456978 + inSlope: -0.109860614 + outSlope: -0.109860614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.042051654 + inSlope: -0.104483284 + outSlope: -0.104483284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.04575104 + inSlope: -0.1503194 + outSlope: -0.1503194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.05207295 + inSlope: -0.14219639 + outSlope: -0.14219639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.058190413 + inSlope: -0.12254843 + outSlope: -0.12254843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.06340069 + inSlope: -0.11660993 + outSlope: -0.11660993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0683181 + inSlope: -0.09328887 + outSlope: -0.09328887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.07218366 + inSlope: -0.085107245 + outSlope: -0.085107245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.075333945 + inSlope: -0.04250259 + outSlope: -0.04250259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.07702815 + inSlope: -0.0025102147 + outSlope: -0.0025102147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.0770788 + inSlope: -0.001035332 + outSlope: -0.001035332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.07711562 + inSlope: 0.015233061 + outSlope: 0.015233061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.07606326 + inSlope: 0.0153908655 + outSlope: 0.0153908655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.07616267 + inSlope: -0.0029604824 + outSlope: -0.0029604824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.07931755 + inSlope: 0.003227818 + outSlope: 0.003227818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.07741342 + inSlope: 0.0004652519 + outSlope: 0.0004652519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.07746755 + inSlope: -0.017830895 + outSlope: -0.017830895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.07860214 + inSlope: -0.01788074 + outSlope: -0.01788074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.07880042 + inSlope: -0.0014093905 + outSlope: -0.0014093905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.08030046 + inSlope: -0.0013495994 + outSlope: -0.0013495994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.07903721 + inSlope: -0.0015299782 + outSlope: -0.0015299782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.08222023 + inSlope: -0.0095955 + outSlope: -0.0095955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.08464629 + inSlope: -0.0008551785 + outSlope: -0.0008551785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.08648624 + inSlope: 0.0012016235 + outSlope: 0.0012016235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: -0.08322909 + inSlope: 0.0028625494 + outSlope: 0.0028625494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: -0.082508914 + inSlope: 0.0016476582 + outSlope: 0.0016476582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: -0.07808943 + inSlope: 0.13572893 + outSlope: 0.13572893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.3 + value: -0.0019742313 + inSlope: 0.30031103 + outSlope: 0.30031103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.333334 + value: 0.0076106065 + inSlope: 0.26810408 + outSlope: 0.26810408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: 0.027362628 + inSlope: 0.11020763 + outSlope: 0.11020763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.02992675 + inSlope: 0.07692266 + outSlope: 0.07692266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7944729 + inSlope: 0.0027215478 + outSlope: 0.0027215478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.80067647 + inSlope: -0.0035011733 + outSlope: -0.0035011733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.7952173 + inSlope: -0.0011363637 + outSlope: -0.0011363637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.7932897 + inSlope: 0.0025910165 + outSlope: 0.0025910165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.80272037 + inSlope: 0.0065052193 + outSlope: 0.0065052193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.533334 + value: 0.8093284 + inSlope: -0.0014939918 + outSlope: -0.0014939918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.1 + value: 0.8026771 + inSlope: -0.015982404 + outSlope: -0.015982404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.7944729 + inSlope: -0.020023316 + outSlope: -0.020023316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.078314036 + inSlope: 0.013861432 + outSlope: 0.013861432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08090456 + inSlope: 0.031905103 + outSlope: 0.031905103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.082879305 + inSlope: 0.058744065 + outSlope: 0.058744065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.087931134 + inSlope: 0.06287613 + outSlope: 0.06287613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0899406 + inSlope: 0.09537813 + outSlope: 0.09537813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.094289675 + inSlope: 0.10168289 + outSlope: 0.10168289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.10399759 + inSlope: 0.11582133 + outSlope: 0.11582133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.10916703 + inSlope: 0.11608705 + outSlope: 0.11608705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.11433983 + inSlope: 0.11801064 + outSlope: 0.11801064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.119604096 + inSlope: 0.11857514 + outSlope: 0.11857514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.124884725 + inSlope: 0.11850265 + outSlope: 0.11850265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.13014501 + inSlope: 0.121325895 + outSlope: 0.121325895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.14043029 + inSlope: 0.11504574 + outSlope: 0.11504574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.14536351 + inSlope: 0.10939923 + outSlope: 0.10939923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.15008508 + inSlope: 0.10244746 + outSlope: 0.10244746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.1545534 + inSlope: 0.09831133 + outSlope: 0.09831133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.15872554 + inSlope: 0.08899276 + outSlope: 0.08899276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.1643139 + inSlope: 0.05227621 + outSlope: 0.05227621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.17122617 + inSlope: -0.008929753 + outSlope: -0.008929753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.17251006 + inSlope: 0.002707469 + outSlope: 0.002707469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.17409006 + inSlope: -0.0004776572 + outSlope: -0.0004776572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.1735483 + inSlope: -0.00093855057 + outSlope: -0.00093855057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.17030396 + inSlope: -0.0060680127 + outSlope: -0.0060680127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.533334 + value: 0.16572805 + inSlope: -0.0009021172 + outSlope: -0.0009021172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: 0.16381444 + inSlope: -0.0036169635 + outSlope: -0.0036169635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.066668 + value: 0.15595445 + inSlope: -0.16113393 + outSlope: -0.16113393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.400001 + value: 0.084173374 + inSlope: -0.13025528 + outSlope: -0.13025528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.078314014 + inSlope: -0.0653744 + outSlope: -0.0653744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16680813 + inSlope: 0.0049504633 + outSlope: 0.0049504633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.15954438 + inSlope: 0.0357201 + outSlope: 0.0357201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.15582919 + inSlope: 0.0046833595 + outSlope: 0.0046833595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.15613796 + inSlope: -0.002172815 + outSlope: -0.002172815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.15621036 + inSlope: -0.029407322 + outSlope: -0.029407322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.15809844 + inSlope: -0.0085458215 + outSlope: -0.0085458215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.15546276 + inSlope: 0.012679037 + outSlope: 0.012679037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.15939242 + inSlope: -0.008288705 + outSlope: -0.008288705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.15901357 + inSlope: 0.00056348793 + outSlope: 0.00056348793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.15564407 + inSlope: 0.0563479 + outSlope: 0.0563479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.15184094 + inSlope: 0.0010199086 + outSlope: 0.0010199086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.15068994 + inSlope: 0.00064373075 + outSlope: 0.00064373075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.15031962 + inSlope: -0.0067620785 + outSlope: -0.0067620785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.155647 + inSlope: 0.003314096 + outSlope: 0.003314096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.1546863 + inSlope: 0.007681854 + outSlope: 0.007681854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.15236923 + inSlope: 0.021735301 + outSlope: 0.021735301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: -0.15319192 + inSlope: -0.013066393 + outSlope: -0.013066393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.15196285 + inSlope: -0.00047117518 + outSlope: -0.00047117518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.15061127 + inSlope: 0.042020645 + outSlope: 0.042020645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.14792982 + inSlope: -0.0036352908 + outSlope: -0.0036352908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: -0.15035848 + inSlope: -0.0036109274 + outSlope: -0.0036109274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: -0.1458983 + inSlope: 0.008164487 + outSlope: 0.008164487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: -0.14519796 + inSlope: -0.0011803797 + outSlope: -0.0011803797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.866667 + value: -0.14502165 + inSlope: 0.00051654916 + outSlope: 0.00051654916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.066668 + value: -0.14875756 + inSlope: -0.019217419 + outSlope: -0.019217419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.166808 + inSlope: -0.06044143 + outSlope: -0.06044143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2230746 + inSlope: -0.027667431 + outSlope: -0.027667431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.22420812 + inSlope: 0.018996518 + outSlope: 0.018996518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.22446878 + inSlope: -0.021051096 + outSlope: -0.021051096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.23870449 + inSlope: -0.08106488 + outSlope: -0.08106488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.24596296 + inSlope: -0.08278413 + outSlope: -0.08278413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.25599632 + inSlope: -0.06935654 + outSlope: -0.06935654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.26919973 + inSlope: -0.023853354 + outSlope: -0.023853354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.271027 + inSlope: -0.009334956 + outSlope: -0.009334956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.26976213 + inSlope: 0.0012472263 + outSlope: 0.0012472263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.26740348 + inSlope: 0.01988681 + outSlope: 0.01988681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.26739836 + inSlope: 0.00017032045 + outSlope: 0.00017032045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.26721928 + inSlope: 0.00006213751 + outSlope: 0.00006213751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.2760444 + inSlope: -0.0054855696 + outSlope: -0.0054855696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.28085816 + inSlope: -0.018443333 + outSlope: -0.018443333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.28560704 + inSlope: 0.004865979 + outSlope: 0.004865979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.133334 + value: -0.27697423 + inSlope: 0.009907195 + outSlope: 0.009907195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.900001 + value: -0.2707561 + inSlope: 0.0032516476 + outSlope: 0.0032516476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.200001 + value: -0.25562692 + inSlope: 0.1553941 + outSlope: 0.1553941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: -0.22107512 + inSlope: -0.011562992 + outSlope: -0.011562992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.22307464 + inSlope: -0.059985016 + outSlope: -0.059985016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.002455897 + inSlope: 0.00010860152 + outSlope: 0.00010860152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.002459517 + inSlope: 0.0020280608 + outSlope: 0.0020280608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0028018465 + inSlope: 0.0054090023 + outSlope: 0.0054090023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0029517012 + inSlope: 0.001586485 + outSlope: 0.001586485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0029076121 + inSlope: -0.0030904976 + outSlope: -0.0030904976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.002745668 + inSlope: -0.009346782 + outSlope: -0.009346782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0022844933 + inSlope: -0.0096905045 + outSlope: -0.0096905045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0020996344 + inSlope: -0.0044239163 + outSlope: -0.0044239163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0019775103 + inSlope: 0.00043645274 + outSlope: 0.00043645274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0020517549 + inSlope: 0.00026740326 + outSlope: 0.00026740326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0019775103 + inSlope: -0.0030100727 + outSlope: -0.0030100727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0018358179 + inSlope: -0.0027047526 + outSlope: -0.0027047526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0017971935 + inSlope: -0.0006869453 + outSlope: -0.0006869453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0017900215 + inSlope: 0.0009123415 + outSlope: 0.0009123415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0018580162 + inSlope: 0.0020695548 + outSlope: 0.0020695548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0020038069 + inSlope: 0.0026366217 + outSlope: 0.0026366217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0021037667 + inSlope: 0.001438438 + outSlope: 0.001438438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0020535304 + inSlope: -0.0022616503 + outSlope: -0.0022616503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0018071994 + inSlope: -0.004900831 + outSlope: -0.004900831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.001622204 + inSlope: -0.0023845825 + outSlope: -0.0023845825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0016482271 + inSlope: 0.0018221202 + outSlope: 0.0018221202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0017436787 + inSlope: 0.00520153 + outSlope: 0.00520153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0019949956 + inSlope: -0.007509798 + outSlope: -0.007509798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.001243026 + inSlope: -0.032120965 + outSlope: -0.032120965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.00014640509 + inSlope: -0.05102661 + outSlope: -0.05102661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0021587496 + inSlope: -0.026069665 + outSlope: -0.026069665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.0018843812 + inSlope: 0.01317849 + outSlope: 0.01317849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.000457486 + inSlope: 0.026118837 + outSlope: 0.026118837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00046107185 + inSlope: 0.025996916 + outSlope: 0.025996916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0012756401 + inSlope: 0.014784462 + outSlope: 0.014784462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0014467023 + inSlope: 0.0042205416 + outSlope: 0.0042205416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0015570099 + inSlope: 0.008391924 + outSlope: 0.008391924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0020061634 + inSlope: 0.009879019 + outSlope: 0.009879019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.0022156113 + inSlope: 0.0044192956 + outSlope: 0.0044192956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.0022838104 + inSlope: -0.0010670451 + outSlope: -0.0010670451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0022296472 + inSlope: -0.0052635027 + outSlope: -0.0052635027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.0019329095 + inSlope: -0.006655335 + outSlope: -0.006655335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.0017859576 + inSlope: -0.003770271 + outSlope: -0.003770271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.0016508909 + inSlope: 0.00029096918 + outSlope: 0.00029096918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.0017567585 + inSlope: 0.00065671926 + outSlope: 0.00065671926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.0017447374 + inSlope: -0.0034224256 + outSlope: -0.0034224256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.0015285963 + inSlope: -0.015852528 + outSlope: -0.015852528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.00068790244 + inSlope: -0.04118454 + outSlope: -0.04118454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.0012170371 + inSlope: -0.06208803 + outSlope: -0.06208803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.0034512957 + inSlope: -0.056784507 + outSlope: -0.056784507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.005002673 + inSlope: -0.019717518 + outSlope: -0.019717518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.004765801 + inSlope: 0.0131841805 + outSlope: 0.0131841805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.0041237283 + inSlope: 0.03252722 + outSlope: 0.03252722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.0025973164 + inSlope: 0.032134853 + outSlope: 0.032134853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.0019814037 + inSlope: 0.016635781 + outSlope: 0.016635781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.0014882641 + inSlope: 0.019139178 + outSlope: 0.019139178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.00070545607 + inSlope: 0.017060462 + outSlope: 0.017060462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.00035090093 + inSlope: 0.008655736 + outSlope: 0.008655736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.00012840754 + inSlope: 0.0049233753 + outSlope: 0.0049233753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.000022676228 + inSlope: 0.0027821092 + outSlope: 0.0027821092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.000057066223 + inSlope: 0.0048198984 + outSlope: 0.0048198984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.00029865003 + inSlope: 0.0055934032 + outSlope: 0.0055934032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.00042996035 + inSlope: 0.0041493285 + outSlope: 0.0041493285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.0005752726 + inSlope: 0.006314687 + outSlope: 0.006314687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.0008509391 + inSlope: 0.005799859 + outSlope: 0.005799859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.0009619295 + inSlope: 0.0026719717 + outSlope: 0.0026719717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0010290704 + inSlope: 0.0018287871 + outSlope: 0.0018287871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.0010838485 + inSlope: 0.000051739044 + outSlope: 0.000051739044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.0010325196 + inSlope: -0.0023405284 + outSlope: -0.0023405284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.0007579461 + inSlope: -0.00610773 + outSlope: -0.00610773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.0005206311 + inSlope: -0.009497387 + outSlope: -0.009497387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.00012478753 + inSlope: -0.005798323 + outSlope: -0.005798323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.0001340766 + inSlope: 0.001353916 + outSlope: 0.001353916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.00021504851 + inSlope: 0.009446673 + outSlope: 0.009446673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.0007638542 + inSlope: 0.012868568 + outSlope: 0.012868568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.0010729544 + inSlope: 0.008874439 + outSlope: 0.008874439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.0013554851 + inSlope: 0.009957399 + outSlope: 0.009957399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.0017367804 + inSlope: 0.009144948 + outSlope: 0.009144948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.0019651477 + inSlope: 0.0072454745 + outSlope: 0.0072454745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.0025876176 + inSlope: 0.01300282 + outSlope: 0.01300282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.0030866654 + inSlope: 0.021524763 + outSlope: 0.021524763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.004022607 + inSlope: 0.019352255 + outSlope: 0.019352255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.004376821 + inSlope: 0.0071204966 + outSlope: 0.0071204966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.0044973064 + inSlope: -0.00081859145 + outSlope: -0.00081859145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.0043222485 + inSlope: -0.0061225947 + outSlope: -0.0061225947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.0038508282 + inSlope: -0.0068346523 + outSlope: -0.0068346523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.0036334908 + inSlope: -0.0015076214 + outSlope: -0.0015076214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.003750321 + inSlope: 0.0056702527 + outSlope: 0.0056702527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.004011508 + inSlope: 0.010950701 + outSlope: 0.010950701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.004480367 + inSlope: 0.011446059 + outSlope: 0.011446059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.004774578 + inSlope: -0.017859614 + outSlope: -0.017859614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.0032897273 + inSlope: -0.05775788 + outSlope: -0.05775788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.0009240561 + inSlope: -0.0712048 + outSlope: -0.0712048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.0014572549 + inSlope: -0.06525125 + outSlope: -0.06525125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.0034260233 + inSlope: -0.029104335 + outSlope: -0.029104335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.0033975418 + inSlope: 0.0076486203 + outSlope: 0.0076486203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.0029161156 + inSlope: 0.037895307 + outSlope: 0.037895307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.00087119045 + inSlope: 0.051078938 + outSlope: 0.051078938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.00048914395 + inSlope: 0.03814374 + outSlope: 0.03814374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.001671723 + inSlope: 0.03520335 + outSlope: 0.03520335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.0038905798 + inSlope: 0.028250832 + outSlope: 0.028250832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.0047194245 + inSlope: 0.01048906 + outSlope: 0.01048906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.0045898557 + inSlope: -0.0063710557 + outSlope: -0.0063710557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.004294688 + inSlope: -0.013808116 + outSlope: -0.013808116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.0036693155 + inSlope: -0.010025534 + outSlope: -0.010025534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.0036263196 + inSlope: -0.0008759796 + outSlope: -0.0008759796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: 0.003610917 + inSlope: 0.002719099 + outSlope: 0.002719099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.004142853 + inSlope: 0.009046582 + outSlope: 0.009046582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.0044107 + inSlope: 0.0037902566 + outSlope: 0.0037902566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.0043955366 + inSlope: -0.0013892519 + outSlope: -0.0013892519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.0043180822 + inSlope: -0.0069811377 + outSlope: -0.0069811377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.003930127 + inSlope: -0.010279631 + outSlope: -0.010279631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.0033096373 + inSlope: -0.01228719 + outSlope: -0.01228719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.0028136289 + inSlope: -0.009318104 + outSlope: -0.009318104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.002688431 + inSlope: -0.0023702509 + outSlope: -0.0023702509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.0026487135 + inSlope: -0.0006065256 + outSlope: -0.0006065256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.0026151773 + inSlope: -0.0044802716 + outSlope: -0.0044802716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.002350029 + inSlope: -0.006902773 + outSlope: -0.006902773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.0019779543 + inSlope: -0.00512572 + outSlope: -0.00512572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.0018132785 + inSlope: -0.0018492731 + outSlope: -0.0018492731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.0018546695 + inSlope: 0.0023779306 + outSlope: 0.0023779306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.001971807 + inSlope: 0.0062972056 + outSlope: 0.0062972056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.0022744872 + inSlope: 0.0070000393 + outSlope: 0.0070000393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.002561014 + inSlope: 0.0033322847 + outSlope: 0.0033322847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.002771008 + inSlope: -0.0010742188 + outSlope: -0.0010742188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.002712883 + inSlope: -0.003667816 + outSlope: -0.003667816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.0025264872 + inSlope: -0.004667247 + outSlope: -0.004667247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.0022618854 + inSlope: -0.0063566947 + outSlope: -0.0063566947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.0019779543 + inSlope: -0.0057496573 + outSlope: -0.0057496573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.0018785753 + inSlope: -0.0018907705 + outSlope: -0.0018907705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.0018849955 + inSlope: 0.0016530734 + outSlope: 0.0016530734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.0019621083 + inSlope: 0.0035013338 + outSlope: 0.0035013338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.0021184175 + inSlope: 0.003027997 + outSlope: 0.003027997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.0022084054 + inSlope: 0.002895835 + outSlope: 0.002895835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.00235703 + inSlope: 0.0041549765 + outSlope: 0.0041549765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.0026247054 + inSlope: 0.0053337105 + outSlope: 0.0053337105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.002840984 + inSlope: 0.0035966118 + outSlope: 0.0035966118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.0028644793 + inSlope: 0.0005337706 + outSlope: 0.0005337706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.0028095646 + inSlope: -0.0017283815 + outSlope: -0.0017283815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.002738667 + inSlope: -0.0012857821 + outSlope: -0.0012857821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.0027224112 + inSlope: -0.00039136887 + outSlope: -0.00039136887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.0026973786 + inSlope: -0.0048286095 + outSlope: -0.0048286095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.0024005042 + inSlope: -0.010883583 + outSlope: -0.010883583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.001971807 + inSlope: -0.022298884 + outSlope: -0.022298884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.00091391336 + inSlope: -0.057779867 + outSlope: -0.057779867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.0018801803 + inSlope: -0.089205824 + outSlope: -0.089205824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.005033136 + inSlope: -0.07918349 + outSlope: -0.07918349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.0071590743 + inSlope: -0.027807858 + outSlope: -0.027807858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.006886991 + inSlope: 0.015423855 + outSlope: 0.015423855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.0061308183 + inSlope: 0.036632143 + outSlope: 0.036632143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.0044448506 + inSlope: 0.03312555 + outSlope: 0.03312555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.003922443 + inSlope: 0.010475216 + outSlope: 0.010475216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.0037172977 + inSlope: 0.00087032875 + outSlope: 0.00087032875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.0036884742 + inSlope: 0.004863964 + outSlope: 0.004863964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.0033930338 + inSlope: 0.009112176 + outSlope: 0.009112176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.0030809965 + inSlope: 0.01014797 + outSlope: 0.01014797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.002716503 + inSlope: 0.014791139 + outSlope: 0.014791139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.0020949214 + inSlope: 0.012082279 + outSlope: 0.012082279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.0019110186 + inSlope: 0.0059514903 + outSlope: 0.0059514903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.0016981558 + inSlope: 0.015148694 + outSlope: 0.015148694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.0009011066 + inSlope: 0.025009274 + outSlope: 0.025009274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.000030872452 + inSlope: 0.021063808 + outSlope: 0.021063808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.00050314586 + inSlope: 0.00746933 + outSlope: 0.00746933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.00046708243 + inSlope: -0.0018436216 + outSlope: -0.0018436216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.00038023663 + inSlope: -0.002193498 + outSlope: -0.002193498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.00032084814 + inSlope: -0.0046416307 + outSlope: -0.0046416307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.0000707949 + inSlope: -0.019689405 + outSlope: -0.019689405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.0009917775 + inSlope: -0.08688837 + outSlope: -0.08688837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.0057217577 + inSlope: -0.097211115 + outSlope: -0.097211115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.0074725123 + inSlope: -0.03398993 + outSlope: -0.03398993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.007987751 + inSlope: 0.0012289351 + outSlope: 0.0012289351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.0073905834 + inSlope: 0.021562349 + outSlope: 0.021562349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.0057107606 + inSlope: 0.022615528 + outSlope: 0.022615528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.004370094 + inSlope: 0.024383847 + outSlope: 0.024383847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.0034169736 + inSlope: 0.021165263 + outSlope: 0.021165263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.0029590777 + inSlope: 0.01387316 + outSlope: 0.01387316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.0024920972 + inSlope: 0.022119384 + outSlope: 0.022119384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.0014844391 + inSlope: 0.021578426 + outSlope: 0.021578426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.0010535225 + inSlope: 0.012333796 + outSlope: 0.012333796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.0006621868 + inSlope: 0.017351428 + outSlope: 0.017351428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.00010323831 + inSlope: 0.021139625 + outSlope: 0.021139625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.0007471202 + inSlope: 0.02056025 + outSlope: 0.02056025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.0014739204 + inSlope: 0.030098116 + outSlope: 0.030098116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: 0.0027536594 + inSlope: 0.03259029 + outSlope: 0.03259029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.0036466043 + inSlope: 0.0074847075 + outSlope: 0.0074847075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.0032526394 + inSlope: -0.007548728 + outSlope: -0.007548728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.0031433562 + inSlope: -0.0058531445 + outSlope: -0.0058531445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: 0.0028624302 + inSlope: -0.047139633 + outSlope: -0.047139633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: 0.00000071716977 + inSlope: -0.07119558 + outSlope: -0.07119558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.0018839372 + inSlope: -0.05187091 + outSlope: -0.05187091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: -0.0034573402 + inSlope: -0.039280772 + outSlope: -0.039280772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.0045026676 + inSlope: -0.010858266 + outSlope: -0.010858266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: -0.004181239 + inSlope: 0.013357319 + outSlope: 0.013357319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.0036121805 + inSlope: 0.016252637 + outSlope: 0.016252637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.0030977307 + inSlope: 0.01530033 + outSlope: 0.01530033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.533334 + value: -0.0022410876 + inSlope: 0.006018603 + outSlope: 0.006018603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.566667 + value: -0.0021909196 + inSlope: 0.0018272497 + outSlope: 0.0018272497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: -0.002119271 + inSlope: 0.008486687 + outSlope: 0.008486687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6333337 + value: -0.001625141 + inSlope: 0.012866042 + outSlope: 0.012866042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7000003 + value: -0.0008917494 + inSlope: 0.013439262 + outSlope: 0.013439262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: -0.00036558585 + inSlope: 0.009545538 + outSlope: 0.009545538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.766667 + value: -0.0002553808 + inSlope: 0.0023748588 + outSlope: 0.0023748588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8 + value: -0.00020726207 + inSlope: 0.0015972292 + outSlope: 0.0015972292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: -0.0001488981 + inSlope: 0.0038388986 + outSlope: 0.0038388986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: 0.000048665093 + inSlope: 0.016211636 + outSlope: 0.016211636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: 0.00093187665 + inSlope: 0.023074448 + outSlope: 0.023074448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.0015869603 + inSlope: 0.019213516 + outSlope: 0.019213516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: 0.0022127766 + inSlope: 0.02000972 + outSlope: 0.02000972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: 0.0029209303 + inSlope: 0.008971471 + outSlope: 0.008971471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: 0.0028108624 + inSlope: -0.0064196037 + outSlope: -0.0064196037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.066668 + value: 0.002492951 + inSlope: -0.017248582 + outSlope: -0.017248582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.1 + value: 0.0016609654 + inSlope: -0.016445357 + outSlope: -0.016445357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.133334 + value: 0.001396603 + inSlope: -0.0050401324 + outSlope: -0.0050401324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.200001 + value: 0.0013490305 + inSlope: 0.00071922207 + outSlope: 0.00071922207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.0013729022 + inSlope: -0.0013825732 + outSlope: -0.0013825732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: 0.0012568571 + inSlope: -0.0024153145 + outSlope: -0.0024153145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: 0.0012118804 + inSlope: -0.000918496 + outSlope: -0.000918496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.333334 + value: 0.0011956245 + inSlope: 0.005173444 + outSlope: 0.005173444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.366667 + value: 0.0015567709 + inSlope: 0.005662137 + outSlope: 0.005662137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.400001 + value: 0.001573095 + inSlope: 0.00036575517 + outSlope: 0.00036575517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 0.0016496272 + inSlope: 0.0015864796 + outSlope: 0.0015864796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: 0.0017138652 + inSlope: 0.0015905567 + outSlope: 0.0015905567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.6 + value: 0.0018234553 + inSlope: 0.0033399495 + outSlope: 0.0033399495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.633334 + value: 0.00197833 + inSlope: 0.0034336955 + outSlope: 0.0034336955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.700001 + value: 0.0021058498 + inSlope: 0.0013226615 + outSlope: 0.0013226615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.766667 + value: 0.0021208762 + inSlope: -0.0008175714 + outSlope: -0.0008175714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.001935539 + inSlope: -0.00035448105 + outSlope: -0.00035448105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.233334 + value: 0.0022119228 + inSlope: 0.0016069734 + outSlope: 0.0016069734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.002455897 + inSlope: 0.00019362636 + outSlope: 0.00019362636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.59368914 + inSlope: 0.0066590304 + outSlope: 0.0066590304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.6085219 + inSlope: 0.017798262 + outSlope: 0.017798262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.60881084 + inSlope: -0.018527824 + outSlope: -0.018527824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.60109156 + inSlope: -0.003903512 + outSlope: -0.003903512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.6037828 + inSlope: 0.011236679 + outSlope: 0.011236679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.5976258 + inSlope: -0.010933589 + outSlope: -0.010933589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.6 + value: 0.5981255 + inSlope: 0.0021055364 + outSlope: 0.0021055364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.59368914 + inSlope: -0.013856106 + outSlope: -0.013856106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10250703 + inSlope: 0.0045197452 + outSlope: 0.0045197452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.10456946 + inSlope: 0.011821167 + outSlope: 0.011821167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.10621046 + inSlope: 0.022056133 + outSlope: 0.022056133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10671775 + inSlope: -0.015324914 + outSlope: -0.015324914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.10620656 + inSlope: 0.009914777 + outSlope: 0.009914777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.10746021 + inSlope: 0.0023144113 + outSlope: 0.0023144113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.10811972 + inSlope: 0.0016264261 + outSlope: 0.0016264261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.10650001 + inSlope: 0.008989209 + outSlope: 0.008989209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.10844258 + inSlope: 0.0067308145 + outSlope: 0.0067308145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.10636134 + inSlope: -0.016479705 + outSlope: -0.016479705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.10142948 + inSlope: 0.00054437685 + outSlope: 0.00054437685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.10344363 + inSlope: 0.0030544803 + outSlope: 0.0030544803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.10041749 + inSlope: 0.003092814 + outSlope: 0.003092814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.10090758 + inSlope: -0.00017400848 + outSlope: -0.00017400848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.09741003 + inSlope: -0.0012804209 + outSlope: -0.0012804209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.098327234 + inSlope: -0.013388259 + outSlope: -0.013388259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.096674584 + inSlope: -0.002788494 + outSlope: -0.002788494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.09684121 + inSlope: 0.004649055 + outSlope: 0.004649055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.09465081 + inSlope: 0.004987684 + outSlope: 0.004987684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: 0.10021171 + inSlope: 0.0055209985 + outSlope: 0.0055209985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.6 + value: 0.10445352 + inSlope: 0.0011297711 + outSlope: 0.0011297711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.166667 + value: 0.10531853 + inSlope: 0.002290385 + outSlope: 0.002290385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: 0.10264518 + inSlope: -0.004146252 + outSlope: -0.004146252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.10250709 + inSlope: -0.0041426164 + outSlope: -0.0041426164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1036256 + inSlope: -0.0051657106 + outSlope: -0.0051657106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10180908 + inSlope: 0.00018339278 + outSlope: 0.00018339278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.1025215 + inSlope: 0.022348408 + outSlope: 0.022348408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.103980765 + inSlope: 0.006121243 + outSlope: 0.006121243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.10469618 + inSlope: -0.004887333 + outSlope: -0.004887333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.10483682 + inSlope: 0.020400882 + outSlope: 0.020400882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.10607566 + inSlope: -0.0025450815 + outSlope: -0.0025450815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.1067867 + inSlope: -0.0026762884 + outSlope: -0.0026762884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.105229825 + inSlope: -0.010369542 + outSlope: -0.010369542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.10551355 + inSlope: 0.0038699768 + outSlope: 0.0038699768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.10480281 + inSlope: 0.0031501458 + outSlope: 0.0031501458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.105664976 + inSlope: -0.01248229 + outSlope: -0.01248229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.10483419 + inSlope: 0.004455824 + outSlope: 0.004455824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.10525252 + inSlope: 0.00014137488 + outSlope: 0.00014137488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.105028726 + inSlope: 0.012637128 + outSlope: 0.012637128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.10603676 + inSlope: 0.00035315583 + outSlope: 0.00035315583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.10641021 + inSlope: 0.000507385 + outSlope: 0.000507385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.10538019 + inSlope: 0.0005975744 + outSlope: 0.0005975744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.10575878 + inSlope: 0.0021798497 + outSlope: 0.0021798497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.106954545 + inSlope: 0.0002434107 + outSlope: 0.0002434107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.10690891 + inSlope: -0.00012438756 + outSlope: -0.00012438756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.10708636 + inSlope: 0.0031735033 + outSlope: 0.0031735033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.10624557 + inSlope: 0.0016664249 + outSlope: 0.0016664249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.10837884 + inSlope: 0.0011598245 + outSlope: 0.0011598245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.10853205 + inSlope: -0.0027634602 + outSlope: -0.0027634602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: 0.10742623 + inSlope: -0.001533756 + outSlope: -0.001533756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: 0.106897175 + inSlope: -0.0034010443 + outSlope: -0.0034010443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.6 + value: 0.10760867 + inSlope: -0.0011277625 + outSlope: -0.0011277625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.103625536 + inSlope: -0.009765793 + outSlope: -0.009765793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8692941 + inSlope: 0.004688501 + outSlope: 0.004688501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8864771 + inSlope: 0.0064328257 + outSlope: 0.0064328257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.9029888 + inSlope: -0.011833023 + outSlope: -0.011833023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.8962594 + inSlope: -0.0022923804 + outSlope: -0.0022923804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.8976663 + inSlope: 0.0058919247 + outSlope: 0.0058919247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: 0.8839009 + inSlope: -0.0020438451 + outSlope: -0.0020438451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.8845951 + inSlope: -0.0003433232 + outSlope: -0.0003433232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.8692941 + inSlope: -0.033757832 + outSlope: -0.033757832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11646016 + inSlope: -0.005568042 + outSlope: -0.005568042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.11324828 + inSlope: -0.008802899 + outSlope: -0.008802899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.11095029 + inSlope: 0.0043926863 + outSlope: 0.0043926863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.10883322 + inSlope: -0.01978242 + outSlope: -0.01978242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.105747595 + inSlope: -0.01615226 + outSlope: -0.01615226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.10462315 + inSlope: -0.0017158301 + outSlope: -0.0017158301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.105240636 + inSlope: 0.0005758932 + outSlope: 0.0005758932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.10607364 + inSlope: 0.011999613 + outSlope: 0.011999613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.10565512 + inSlope: -0.0032289356 + outSlope: -0.0032289356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.10374636 + inSlope: -0.024479205 + outSlope: -0.024479205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.10194919 + inSlope: -0.0063412786 + outSlope: -0.0063412786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.10136763 + inSlope: 0.0014838218 + outSlope: 0.0014838218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.102481335 + inSlope: -0.00037249216 + outSlope: -0.00037249216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.10139157 + inSlope: -0.0010109665 + outSlope: -0.0010109665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.10400617 + inSlope: 0.0064888285 + outSlope: 0.0064888285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.10605054 + inSlope: 0.009030112 + outSlope: 0.009030112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.11132732 + inSlope: 0.006078003 + outSlope: 0.006078003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: 0.11357224 + inSlope: 0.0011847552 + outSlope: 0.0011847552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: 0.113874465 + inSlope: 0.0012481317 + outSlope: 0.0012481317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.666667 + value: 0.113529995 + inSlope: 0.0021371641 + outSlope: 0.0021371641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.11646016 + inSlope: 0.0049103885 + outSlope: 0.0049103885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08223733 + inSlope: 0.028423144 + outSlope: 0.028423144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.076541476 + inSlope: 0.028523836 + outSlope: 0.028523836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.07558945 + inSlope: 0.05707473 + outSlope: 0.05707473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.069883816 + inSlope: 0.06906633 + outSlope: 0.06906633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.066051885 + inSlope: 0.011991263 + outSlope: 0.011991263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.06372855 + inSlope: 0.025454054 + outSlope: 0.025454054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.063075244 + inSlope: 0.0051002204 + outSlope: 0.0051002204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.06134273 + inSlope: 0.018078689 + outSlope: 0.018078689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.05857292 + inSlope: 0.024461616 + outSlope: 0.024461616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.057757992 + inSlope: 0.07440243 + outSlope: 0.07440243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.05361276 + inSlope: 0.070618406 + outSlope: 0.070618406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.0530501 + inSlope: 0.016880076 + outSlope: 0.016880076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.0422889 + inSlope: 0.016943052 + outSlope: 0.016943052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.041724265 + inSlope: -0.00049347524 + outSlope: -0.00049347524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.042920116 + inSlope: -0.017917173 + outSlope: -0.017917173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.04470978 + inSlope: -0.017863976 + outSlope: -0.017863976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.045125533 + inSlope: 0.00533937 + outSlope: 0.00533937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.044768557 + inSlope: 0.02443545 + outSlope: 0.02443545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.04331882 + inSlope: 0.04348949 + outSlope: 0.04348949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.04186926 + inSlope: -0.010471968 + outSlope: -0.010471968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.04401695 + inSlope: -0.034002114 + outSlope: -0.034002114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.044136066 + inSlope: -0.003577778 + outSlope: -0.003577778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.04425547 + inSlope: 0.0323752 + outSlope: 0.0323752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.041977722 + inSlope: 0.025106564 + outSlope: 0.025106564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.0425817 + inSlope: -0.018129123 + outSlope: -0.018129123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.050436262 + inSlope: -0.01810476 + outSlope: -0.01810476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.051039796 + inSlope: 0.01213969 + outSlope: 0.01213969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.04962695 + inSlope: 0.04235687 + outSlope: 0.04235687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.046806872 + inSlope: 0.0422412 + outSlope: 0.0422412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.04539993 + inSlope: 0.025248019 + outSlope: 0.025248019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.04488261 + inSlope: 0.007239345 + outSlope: 0.007239345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.042973578 + inSlope: 0.008052558 + outSlope: 0.008052558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.042644784 + inSlope: -0.0035339259 + outSlope: -0.0035339259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.044340387 + inSlope: -0.016961245 + outSlope: -0.016961245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.049997766 + inSlope: -0.017004222 + outSlope: -0.017004222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.05049887 + inSlope: 0.00035081094 + outSlope: 0.00035081094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.050000615 + inSlope: 0.0010651174 + outSlope: 0.0010651174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.04996559 + inSlope: -0.012795378 + outSlope: -0.012795378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.05085364 + inSlope: -0.015732009 + outSlope: -0.015732009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: -0.051500548 + inSlope: -0.004902971 + outSlope: -0.004902971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.052191906 + inSlope: -0.007315732 + outSlope: -0.007315732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.053017344 + inSlope: -0.0015732289 + outSlope: -0.0015732289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.053713325 + inSlope: -0.0193136 + outSlope: -0.0193136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.05396703 + inSlope: 0.011705898 + outSlope: 0.011705898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.054464586 + inSlope: -0.0044259843 + outSlope: -0.0044259843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.055739485 + inSlope: -0.0022707158 + outSlope: -0.0022707158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.05609672 + inSlope: -0.021606332 + outSlope: -0.021606332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.057813108 + inSlope: -0.019538347 + outSlope: -0.019538347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.058257516 + inSlope: -0.03456024 + outSlope: -0.03456024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.06197669 + inSlope: -0.03861809 + outSlope: -0.03861809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.06412183 + inSlope: -0.021447634 + outSlope: -0.021447634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.06572883 + inSlope: -0.028628698 + outSlope: -0.028628698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.06833166 + inSlope: -0.049472835 + outSlope: -0.049472835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.07043083 + inSlope: -0.013500912 + outSlope: -0.013500912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.07205781 + inSlope: -0.010893467 + outSlope: -0.010893467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.07242106 + inSlope: 0.016652845 + outSlope: 0.016652845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.06947482 + inSlope: 0.018046275 + outSlope: 0.018046275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.07001459 + inSlope: -0.008080274 + outSlope: -0.008080274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.07179027 + inSlope: 0.0011029477 + outSlope: 0.0011029477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7000003 + value: -0.071347326 + inSlope: 0.001077355 + outSlope: 0.001077355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: -0.064808786 + inSlope: 0.03527111 + outSlope: 0.03527111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: -0.06371109 + inSlope: -0.0023346082 + outSlope: -0.0023346082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.133334 + value: -0.066035405 + inSlope: -0.0019728784 + outSlope: -0.0019728784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.166667 + value: -0.06610134 + inSlope: -0.048327535 + outSlope: -0.048327535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.200001 + value: -0.06925728 + inSlope: -0.09468263 + outSlope: -0.09468263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.3 + value: -0.07748715 + inSlope: -0.057544503 + outSlope: -0.057544503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.366667 + value: -0.08132511 + inSlope: -0.033349402 + outSlope: -0.033349402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.08223733 + inSlope: -0.009126541 + outSlope: -0.009126541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.28463027 + inSlope: 0.003992021 + outSlope: 0.003992021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.28544834 + inSlope: 0.0034135613 + outSlope: 0.0034135613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.28676155 + inSlope: 0.0071257423 + outSlope: 0.0071257423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.28662622 + inSlope: -0.014975181 + outSlope: -0.014975181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.28684804 + inSlope: 0.0069420105 + outSlope: 0.0069420105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.28266641 + inSlope: 0.0004819053 + outSlope: 0.0004819053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.28239912 + inSlope: -0.004662578 + outSlope: -0.004662578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.2805576 + inSlope: -0.0033004615 + outSlope: -0.0033004615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.2758951 + inSlope: 0.0046674954 + outSlope: 0.0046674954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: -0.28029466 + inSlope: -0.0014752164 + outSlope: -0.0014752164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.28463027 + inSlope: 0.00063478097 + outSlope: 0.00063478097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05511202 + inSlope: 0.0007244199 + outSlope: 0.0007244199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.054958228 + inSlope: 0.0005523111 + outSlope: 0.0005523111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.054763548 + inSlope: 0.00281771 + outSlope: 0.00281771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.054614946 + inSlope: 0.00061327434 + outSlope: 0.00061327434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.054772973 + inSlope: -0.00029761373 + outSlope: -0.00029761373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.0550999 + inSlope: -0.0011576941 + outSlope: -0.0011576941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.055410586 + inSlope: -0.0010807078 + outSlope: -0.0010807078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.055924296 + inSlope: -0.001898 + outSlope: -0.001898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: -0.055485398 + inSlope: 0.0003633279 + outSlope: 0.0003633279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: -0.05515096 + inSlope: -0.0005391168 + outSlope: -0.0005391168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.05511202 + inSlope: 0.00006247228 + outSlope: 0.00006247228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000001472037 + inSlope: 0.0000016950434 + outSlope: 0.0000016950434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000013590341 + inSlope: 0.0000016950434 + outSlope: 0.0000016950434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0000013590341 + inSlope: -0.000019636796 + outSlope: -0.000019636796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0000026681537 + inSlope: -0.000019636796 + outSlope: -0.000019636796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0000026681537 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0000026681537 + inSlope: 0.000019636796 + outSlope: 0.000019636796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0000013590341 + inSlope: 0.0000017133862 + outSlope: 0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000002553928 + inSlope: -0.00001792341 + outSlope: -0.00001792341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.000002553928 + inSlope: 0.00001792341 + outSlope: 0.00001792341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000013590341 + inSlope: -0.000029040812 + outSlope: -0.000029040812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.000004489982 + inSlope: -0.000017923434 + outSlope: -0.000017923434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.000002553928 + inSlope: 0.000045269153 + outSlope: 0.000045269153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.000001472037 + inSlope: -0.0000017133843 + outSlope: -0.0000017133843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0000026681537 + inSlope: -0.000017941751 + outSlope: -0.000017941751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0000026681537 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0000026681537 + inSlope: 0.000019636778 + outSlope: 0.000019636778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0000013590341 + inSlope: 0.0000017133516 + outSlope: 0.0000017133516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.000002553928 + inSlope: -0.000017923427 + outSlope: -0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.000002553928 + inSlope: -0.0000017133873 + outSlope: -0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000026681537 + inSlope: 0.00001792339 + outSlope: 0.00001792339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0000013590341 + inSlope: -3.45608e-11 + outSlope: -3.45608e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0000026681537 + inSlope: -0.000019636813 + outSlope: -0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0000026681537 + inSlope: 0.000019636778 + outSlope: 0.000019636778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0000013590341 + inSlope: -3.45608e-11 + outSlope: -3.45608e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0000026681537 + inSlope: -0.000019636813 + outSlope: -0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0000026681537 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0000026681537 + inSlope: 0.0000017133842 + outSlope: 0.0000017133842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.000002553928 + inSlope: 0.000017941766 + outSlope: 0.000017941766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.000001472037 + inSlope: -0.0000051476673 + outSlope: -0.0000051476673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000028971056 + inSlope: -7.6397555e-11 + outSlope: -7.6397555e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.000001472037 + inSlope: 0.000023071017 + outSlope: 0.000023071017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0000013590341 + inSlope: 0.00000083460145 + outSlope: 0.00000083460145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.0000014163969 + inSlope: -0.000019636745 + outSlope: -0.000019636745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.0000026681537 + inSlope: -0.000018776302 + outSlope: -0.000018776302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.0000026681537 + inSlope: 0.000017941768 + outSlope: 0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.0000026681537 + inSlope: -0.000017941768 + outSlope: -0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.0000026681537 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.0000026681537 + inSlope: 0.000017941768 + outSlope: 0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.000001472037 + inSlope: 6.366463e-11 + outSlope: 6.366463e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.0000026681537 + inSlope: 0.000001695109 + outSlope: 0.000001695109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.0000026681537 + inSlope: -0.00001539379 + outSlope: -0.00001539379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0000023852858 + inSlope: 0.000019636758 + outSlope: 0.000019636758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.0000013590341 + inSlope: -0.0000025296904 + outSlope: -0.0000025296904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.000002553928 + inSlope: -0.0000016950453 + outSlope: -0.0000016950453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.000001472037 + inSlope: -0.0000017133225 + outSlope: -0.0000017133225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.0000026681537 + inSlope: -0.000016228316 + outSlope: -0.000016228316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.000002553928 + inSlope: 0.00001794177 + outSlope: 0.00001794177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.000001472037 + inSlope: -0.0000017133862 + outSlope: -0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.0000026681537 + inSlope: -0.000016228387 + outSlope: -0.000016228387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.000002553928 + inSlope: -0.000027327458 + outSlope: -0.000027327458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.000004489982 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.000002553928 + inSlope: 0.000029040839 + outSlope: 0.000029040839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.000002553928 + inSlope: -0.0000017133812 + outSlope: -0.0000017133812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.0000026681537 + inSlope: -0.0000017133812 + outSlope: -0.0000017133812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.0000026681537 + inSlope: 0.000019636813 + outSlope: 0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.0000013590341 + inSlope: 0.000017941773 + outSlope: 0.000017941773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.000001472037 + inSlope: -0.00001792348 + outSlope: -0.00001792348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.000002553928 + inSlope: -0.000045269073 + outSlope: -0.000045269073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.000004489982 + inSlope: 2.0736479e-10 + outSlope: 2.0736479e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.000002553928 + inSlope: 0.000029040839 + outSlope: 0.000029040839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.000002553928 + inSlope: 0.000017062983 + outSlope: 0.000017062983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.0000014163969 + inSlope: -0.0000017133862 + outSlope: -0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0000026681537 + inSlope: 0.00000086044383 + outSlope: 0.00000086044383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.0000013590341 + inSlope: 0.0000017133862 + outSlope: 0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.000002553928 + inSlope: 0.000005134987 + outSlope: 0.000005134987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.0000010166908 + inSlope: 0.00001792326 + outSlope: 0.00001792326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.0000013590341 + inSlope: -0.0000051351535 + outSlope: -0.0000051351535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.0000013590341 + inSlope: -0.000017923427 + outSlope: -0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.000002553928 + inSlope: -0.0000016950453 + outSlope: -0.0000016950453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.000001472037 + inSlope: -0.0000017133862 + outSlope: -0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.0000026681537 + inSlope: 0.0000016950453 + outSlope: 0.0000016950453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.0000013590341 + inSlope: 0.0000017135153 + outSlope: 0.0000017135153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.000002553928 + inSlope: 0.0000051352818 + outSlope: 0.0000051352818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.0000010166908 + inSlope: -0.000001713388 + outSlope: -0.000001713388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.0000026681537 + inSlope: -0.0000068301997 + outSlope: -0.0000068301997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.000001472037 + inSlope: -0.000024766132 + outSlope: -0.000024766132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.0000043192276 + inSlope: -0.000017941768 + outSlope: -0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.0000026681537 + inSlope: -0.0000025613208 + outSlope: -0.0000025613208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.000004489982 + inSlope: 0.000019636478 + outSlope: 0.000019636478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.0000013590341 + inSlope: 0.000029040504 + outSlope: 0.000029040504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.000002553928 + inSlope: -0.000019636815 + outSlope: -0.000019636815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.0000026681537 + inSlope: 0.000017923425 + outSlope: 0.000017923425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.0000026681537 + inSlope: -0.000019636813 + outSlope: -0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.0000026681537 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.0000026681537 + inSlope: 0.000019636673 + outSlope: 0.000019636673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.0000013590341 + inSlope: 0.0000017132461 + outSlope: 0.0000017132461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.000002553928 + inSlope: -0.000017923427 + outSlope: -0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.000002553928 + inSlope: 0.000016228381 + outSlope: 0.000016228381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.000001472037 + inSlope: -0.0000017133862 + outSlope: -0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.0000026681537 + inSlope: 0.0000068301997 + outSlope: 0.0000068301997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.0000010166908 + inSlope: 0.000019636813 + outSlope: 0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.0000013590341 + inSlope: -0.000020528834 + outSlope: -0.000020528834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.0000023852858 + inSlope: -0.0000016949352 + outSlope: -0.0000016949352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.000001472037 + inSlope: 0.000013698746 + outSlope: 0.000013698746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.000001472037 + inSlope: 0.0000016950451 + outSlope: 0.0000016950451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: -0.0000013590341 + inSlope: -0.000017941768 + outSlope: -0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.0000026681537 + inSlope: -0.000017923425 + outSlope: -0.000017923425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.000002553928 + inSlope: 0.000004243022 + outSlope: 0.000004243022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.0000023852858 + inSlope: -0.00002904084 + outSlope: -0.00002904084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.000004489982 + inSlope: -0.000031570475 + outSlope: -0.000031570475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.000004489982 + inSlope: 0.000027327453 + outSlope: 0.000027327453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.0000026681537 + inSlope: 0.000027327453 + outSlope: 0.000027327453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.0000026681537 + inSlope: 0.000019636813 + outSlope: 0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: -0.0000026681537 + inSlope: -0.000044402943 + outSlope: -0.000044402943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.0000043192276 + inSlope: 0.000017941768 + outSlope: 0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.000001472037 + inSlope: 0.000044402932 + outSlope: 0.000044402932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.0000013590341 + inSlope: -0.00001794178 + outSlope: -0.00001794178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.0000026681537 + inSlope: -0.000019636813 + outSlope: -0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.0000026681537 + inSlope: 0.000024771967 + outSlope: 0.000024771967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0000010166908 + inSlope: 0.000004243022 + outSlope: 0.000004243022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.0000023852858 + inSlope: -0.0000051351544 + outSlope: -0.0000051351544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.0000013590341 + inSlope: -0.000004243022 + outSlope: -0.000004243022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.0000026681537 + inSlope: -0.0000016951726 + outSlope: -0.0000016951726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.000001472037 + inSlope: 0.0000042428937 + outSlope: 0.0000042428937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.0000023852858 + inSlope: 0.0000016951553 + outSlope: 0.0000016951553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.0000013590341 + inSlope: -0.000029008408 + outSlope: -0.000029008408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.0000043192276 + inSlope: -0.0000016944105 + outSlope: -0.0000016944105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.000001472037 + inSlope: 0.000024766132 + outSlope: 0.000024766132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.0000026681537 + inSlope: -0.0000427079 + outSlope: -0.0000427079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.0000043192276 + inSlope: 0.000019636815 + outSlope: 0.000019636815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.0000013590341 + inSlope: 0.000044402947 + outSlope: 0.000044402947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.0000013590341 + inSlope: -0.000017923427 + outSlope: -0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.000002553928 + inSlope: -0.000046964265 + outSlope: -0.000046964265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.000004489982 + inSlope: -0.00002647952 + outSlope: -0.00002647952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: -0.0000043192276 + inSlope: 0.000046964265 + outSlope: 0.000046964265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.0000013590341 + inSlope: 0.00002647952 + outSlope: 0.00002647952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.000002553928 + inSlope: -0.0000016950453 + outSlope: -0.0000016950453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.000001472037 + inSlope: 0.000016228381 + outSlope: 0.000016228381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.000001472037 + inSlope: -0.000016228381 + outSlope: -0.000016228381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: -0.000002553928 + inSlope: -0.00001794177 + outSlope: -0.00001794177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: -0.0000026681537 + inSlope: 0.000017923145 + outSlope: 0.000017923145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.0000013590341 + inSlope: 0.000024771685 + outSlope: 0.000024771685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.0000010166908 + inSlope: -0.00001539379 + outSlope: -0.00001539379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.0000023852858 + inSlope: -0.0000051351544 + outSlope: -0.0000051351544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.0000013590341 + inSlope: -0.0000025296358 + outSlope: -0.0000025296358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.0000013590341 + inSlope: 0.000017923427 + outSlope: 0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.0000013590341 + inSlope: -0.000019636813 + outSlope: -0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.0000026681537 + inSlope: -0.000044402943 + outSlope: -0.000044402943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.0000043192276 + inSlope: 0.000019636815 + outSlope: 0.000019636815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: -0.0000013590341 + inSlope: 0.000042707903 + outSlope: 0.000042707903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.000001472037 + inSlope: -0.0000016950451 + outSlope: -0.0000016950451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.000001472037 + inSlope: 0.0000016950451 + outSlope: 0.0000016950451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.0000013590341 + inSlope: -0.000016228381 + outSlope: -0.000016228381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.000002553928 + inSlope: -0.00001963679 + outSlope: -0.00001963679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.0000026681537 + inSlope: 0.00001792345 + outSlope: 0.00001792345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.0000013590341 + inSlope: 0.0000017133862 + outSlope: 0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: -0.000002553928 + inSlope: -0.000019636815 + outSlope: -0.000019636815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.0000026681537 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.000002553928 + inSlope: 0.00001794177 + outSlope: 0.00001794177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.000001472037 + inSlope: -0.0000017133862 + outSlope: -0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: -0.0000026681537 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.0000026681537 + inSlope: -0.000017941768 + outSlope: -0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.0000026681537 + inSlope: 0.000017941768 + outSlope: 0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.000001472037 + inSlope: 0.000017941768 + outSlope: 0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.000001472037 + inSlope: -0.000016228381 + outSlope: -0.000016228381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: -0.000002553928 + inSlope: 0.000006830198 + outSlope: 0.000006830198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.0000010166908 + inSlope: -0.0000017130333 + outSlope: -0.0000017130333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.0000026681537 + inSlope: -0.000006829845 + outSlope: -0.000006829845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.000001472037 + inSlope: 0.000017941768 + outSlope: 0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.000001472037 + inSlope: -0.000037572747 + outSlope: -0.000037572747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.0000039768843 + inSlope: -0.00001794177 + outSlope: -0.00001794177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.0000026681537 + inSlope: 0.000021344365 + outSlope: 0.000021344365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.0000026681537 + inSlope: 0.00001622838 + outSlope: 0.00001622838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.000001472037 + inSlope: 0.000019636813 + outSlope: 0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.0000013590341 + inSlope: 0.0000016950451 + outSlope: 0.0000016950451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.0000013590341 + inSlope: -0.000017923427 + outSlope: -0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.000002553928 + inSlope: -0.000044402947 + outSlope: -0.000044402947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.0000043192276 + inSlope: -0.000001713388 + outSlope: -0.000001713388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.0000026681537 + inSlope: 0.000024766132 + outSlope: 0.000024766132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.0000026681537 + inSlope: 0.000019636813 + outSlope: 0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.0000013590341 + inSlope: 0.000019636813 + outSlope: 0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.0000013590341 + inSlope: -0.000046964265 + outSlope: -0.000046964265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.000004489982 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.0000013590341 + inSlope: 0.000046964265 + outSlope: 0.000046964265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.0000013590341 + inSlope: -0.000023071094 + outSlope: -0.000023071094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.0000028971056 + inSlope: -0.000017923425 + outSlope: -0.000017923425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.000002553928 + inSlope: 0.0000051476686 + outSlope: 0.0000051476686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.000002553928 + inSlope: 0.000016228381 + outSlope: 0.000016228381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.000001472037 + inSlope: 0.000017923427 + outSlope: 0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.0000013590341 + inSlope: 0.0000016950451 + outSlope: 0.0000016950451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.0000013590341 + inSlope: -0.000019636813 + outSlope: -0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.0000026681537 + inSlope: -0.000019636813 + outSlope: -0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.0000026681537 + inSlope: 0.000019636813 + outSlope: 0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: -0.0000026681537 + inSlope: -0.000044402943 + outSlope: -0.000044402943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.0000043192276 + inSlope: 0.000001713388 + outSlope: 0.000001713388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.000002553928 + inSlope: 0.000024766132 + outSlope: 0.000024766132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.0000026681537 + inSlope: -0.00002904084 + outSlope: -0.00002904084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.000004489982 + inSlope: 0.0000017133862 + outSlope: 0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.000002553928 + inSlope: 0.000029040839 + outSlope: 0.000029040839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.000002553928 + inSlope: -0.0000051476686 + outSlope: -0.0000051476686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.0000028971056 + inSlope: -0.0000017133873 + outSlope: -0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: -0.0000026681537 + inSlope: 0.000021376049 + outSlope: 0.000021376049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.000001472037 + inSlope: -0.000024766132 + outSlope: -0.000024766132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.0000043192276 + inSlope: -0.00001622838 + outSlope: -0.00001622838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.000002553928 + inSlope: 0.000024766132 + outSlope: 0.000024766132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.0000026681537 + inSlope: -2.444267e-11 + outSlope: -2.444267e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.000002553928 + inSlope: -2.444267e-11 + outSlope: -2.444267e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.0000026681537 + inSlope: 0.000017923425 + outSlope: 0.000017923425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.0000013590341 + inSlope: 0.000017941768 + outSlope: 0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: -0.000001472037 + inSlope: -0.000019636813 + outSlope: -0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.0000026681537 + inSlope: -0.00001622838 + outSlope: -0.00001622838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.0000026681537 + inSlope: -0.0000017133873 + outSlope: -0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.0000026681537 + inSlope: 0.0000017133873 + outSlope: 0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: -0.000002553928 + inSlope: 0.00001794177 + outSlope: 0.00001794177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: -0.000001472037 + inSlope: -0.0000017133862 + outSlope: -0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: -0.0000026681537 + inSlope: 0.0000016950453 + outSlope: 0.0000016950453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: -0.0000013590341 + inSlope: -0.000024766134 + outSlope: -0.000024766134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.0000043192276 + inSlope: -0.000019636815 + outSlope: -0.000019636815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: -0.0000026681537 + inSlope: 0.000024766132 + outSlope: 0.000024766132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.0000026681537 + inSlope: 0.0000017133873 + outSlope: 0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: -0.000002553928 + inSlope: 0.0000017133873 + outSlope: 0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.000002553928 + inSlope: 0.000017923427 + outSlope: 0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.533334 + value: -0.0000013590341 + inSlope: 0.000016228381 + outSlope: 0.000016228381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.566667 + value: -0.000001472037 + inSlope: -0.000019636813 + outSlope: -0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: -0.0000026681537 + inSlope: -0.00001622838 + outSlope: -0.00001622838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6333337 + value: -0.000002553928 + inSlope: 0.00001794177 + outSlope: 0.00001794177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.666667 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7000003 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.766667 + value: -0.000002553928 + inSlope: -0.00001794177 + outSlope: -0.00001794177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8 + value: -0.0000026681537 + inSlope: -2.444267e-11 + outSlope: -2.444267e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: -0.000002553928 + inSlope: -2.444267e-11 + outSlope: -2.444267e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: -0.0000026681537 + inSlope: 0.00001622838 + outSlope: 0.00001622838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: -0.000001472037 + inSlope: 0.000019636813 + outSlope: 0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: -0.0000013590341 + inSlope: 0.0000016950451 + outSlope: 0.0000016950451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: -0.0000013590341 + inSlope: -0.00004696494 + outSlope: -0.00004696494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: -0.000004489982 + inSlope: -0.000019637877 + outSlope: -0.000019637877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: -0.0000026681537 + inSlope: 0.000029040424 + outSlope: 0.000029040424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.066668 + value: -0.000002553928 + inSlope: 0.000024772271 + outSlope: 0.000024772271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.1 + value: -0.0000010166908 + inSlope: -0.000001712704 + outSlope: -0.000001712704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.133334 + value: -0.0000026681537 + inSlope: -0.000024771613 + outSlope: -0.000024771613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.166667 + value: -0.0000026681537 + inSlope: 0.000019636533 + outSlope: 0.000019636533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.200001 + value: -0.0000013590341 + inSlope: 0.0000017128514 + outSlope: 0.0000017128514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.000002553928 + inSlope: -0.0000016955328 + outSlope: -0.0000016955328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: -0.000001472037 + inSlope: 0.000016228149 + outSlope: 0.000016228149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: -0.000001472037 + inSlope: -0.000017941511 + outSlope: -0.000017941511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.333334 + value: -0.0000026681537 + inSlope: -0.000021375841 + outSlope: -0.000021375841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.366667 + value: -0.0000028971056 + inSlope: 0.000017941413 + outSlope: 0.000017941413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.400001 + value: -0.000001472037 + inSlope: 0.000023070812 + outSlope: 0.000023070812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: -0.0000013590341 + inSlope: -0.000045268524 + outSlope: -0.000045268524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: -0.000004489982 + inSlope: -0.000044402237 + outSlope: -0.000044402237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: -0.0000043192276 + inSlope: 0.000045268644 + outSlope: 0.000045268644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: -0.000001472037 + inSlope: 0.00004440231 + outSlope: 0.00004440231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.0000013590341 + inSlope: -0.000021376403 + outSlope: -0.000021376403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.6 + value: -0.0000028971056 + inSlope: -0.0000016956819 + outSlope: -0.0000016956819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.633334 + value: -0.000001472037 + inSlope: 0.000003433719 + outSlope: 0.000003433719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.666667 + value: -0.0000026681537 + inSlope: 0.0000016945087 + outSlope: 0.0000016945087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.700001 + value: -0.0000013590341 + inSlope: 0.000019636533 + outSlope: 0.000019636533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.733334 + value: -0.0000013590341 + inSlope: -0.0000016950208 + outSlope: -0.0000016950208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.766667 + value: -0.000001472037 + inSlope: -0.0000016950208 + outSlope: -0.0000016950208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.8 + value: -0.000001472037 + inSlope: -0.000017941511 + outSlope: -0.000017941511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: -0.0000026681537 + inSlope: 0.000006830809 + outSlope: 0.000006830809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.866667 + value: -0.0000010166908 + inSlope: 0.0000017140701 + outSlope: 0.0000017140701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.900001 + value: -0.000002553928 + inSlope: -0.0000068296376 + outSlope: -0.0000068296376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: -0.000001472037 + inSlope: -0.0000017128987 + outSlope: -0.0000017128987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: -0.0000026681537 + inSlope: -0.0000162281 + outSlope: -0.0000162281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: -0.000002553928 + inSlope: 0.00001794156 + outSlope: 0.00001794156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: -0.000001472037 + inSlope: 0.000016228149 + outSlope: 0.000016228149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.066668 + value: -0.000001472037 + inSlope: -0.000016228612 + outSlope: -0.000016228612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.1 + value: -0.000002553928 + inSlope: -0.000016228612 + outSlope: -0.000016228612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.133334 + value: -0.000002553928 + inSlope: 0.000016228612 + outSlope: 0.000016228612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.166667 + value: -0.000001472037 + inSlope: 0.000017923634 + outSlope: 0.000017923634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.200001 + value: -0.0000013590341 + inSlope: -0.00001622866 + outSlope: -0.00001622866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.233334 + value: -0.000002553928 + inSlope: -0.000046964105 + outSlope: -0.000046964105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.266667 + value: -0.000004489982 + inSlope: 8.3127816e-10 + outSlope: 8.3127816e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.3 + value: -0.000002553928 + inSlope: 0.000029041255 + outSlope: 0.000029041255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.333334 + value: -0.000002553928 + inSlope: 0.000016228612 + outSlope: 0.000016228612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.366667 + value: -0.000001472037 + inSlope: 4.638423e-10 + outSlope: 4.638423e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.400001 + value: -0.000002553928 + inSlope: -0.000016228149 + outSlope: -0.000016228149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: -0.000002553928 + inSlope: 0.000016228149 + outSlope: 0.000016228149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.000001472037 + inSlope: 0.000032456297 + outSlope: 0.000032456297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000010067413 + inSlope: -0.0000065633835 + outSlope: -0.0000065633835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000056918236 + inSlope: -0.0000065633835 + outSlope: -0.0000065633835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.00000056918236 + inSlope: -0.00000045356703 + outSlope: -0.00000045356703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000053894456 + inSlope: -0.00000045356703 + outSlope: -0.00000045356703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00000053894456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000053894456 + inSlope: 0.00000045356703 + outSlope: 0.00000045356703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.00000056918236 + inSlope: 0.00001016524 + outSlope: 0.00001016524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000012166272 + inSlope: 0.000009711674 + outSlope: 0.000009711674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0000012166272 + inSlope: -0.000009711674 + outSlope: -0.000009711674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000056918236 + inSlope: -0.000010658828 + outSlope: -0.000010658828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00000050603876 + inSlope: 0.000009711664 + outSlope: 0.000009711664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0000012166272 + inSlope: 0.000007510529 + outSlope: 0.000007510529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000010067413 + inSlope: -0.00001016524 + outSlope: -0.00001016524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.00000053894456 + inSlope: -0.0000070169513 + outSlope: -0.0000070169513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00000053894456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00000053894456 + inSlope: 0.00000045356663 + outSlope: 0.00000045356663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.00000056918236 + inSlope: 0.000010165249 + outSlope: 0.000010165249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000012166272 + inSlope: 0.000009711682 + outSlope: 0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000012166272 + inSlope: -0.0000101652495 + outSlope: -0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000053894456 + inSlope: -0.000009711683 + outSlope: -0.000009711683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00000056918236 + inSlope: -7.9580786e-13 + outSlope: -7.9580786e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000053894456 + inSlope: -0.00000045356742 + outSlope: -0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.00000053894456 + inSlope: 0.00000045356663 + outSlope: 0.00000045356663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.00000056918236 + inSlope: -7.9580786e-13 + outSlope: -7.9580786e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.00000053894456 + inSlope: -0.00000045356742 + outSlope: -0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.00000053894456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.00000053894456 + inSlope: 0.000010165231 + outSlope: 0.000010165231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0000012166272 + inSlope: 0.00000701694 + outSlope: 0.00000701694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0000010067413 + inSlope: -0.000037152524 + outSlope: -0.000037152524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000012602054 + inSlope: -1.200533e-10 + outSlope: -1.200533e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0000010067413 + inSlope: 0.000027440721 + outSlope: 0.000027440721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.00000056918236 + inSlope: 0.000024212506 + outSlope: 0.000024212506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.000002620907 + inSlope: -0.0000004534595 + outSlope: -0.0000004534595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.00000053894456 + inSlope: -0.000031229356 + outSlope: -0.000031229356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.00000053894456 + inSlope: 0.0000070169576 + outSlope: 0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.00000053894456 + inSlope: -0.0000070169576 + outSlope: -0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.00000053894456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.00000053894456 + inSlope: 0.0000070169576 + outSlope: 0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0000010067413 + inSlope: 2.5011104e-11 + outSlope: 2.5011104e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.00000053894456 + inSlope: -0.0000065633653 + outSlope: -0.0000065633653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.00000053894456 + inSlope: 0.000023972392 + outSlope: 0.000023972392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0000021673402 + inSlope: 0.00000045365414 + outSlope: 0.00000045365414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.00000056918236 + inSlope: -0.000014260623 + outSlope: -0.000014260623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.0000012166272 + inSlope: 0.0000065633903 + outSlope: 0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.0000010067413 + inSlope: -0.000010165224 + outSlope: -0.000010165224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.00000053894456 + inSlope: 0.0000031483169 + outSlope: 0.0000031483169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0000012166272 + inSlope: 0.000007016958 + outSlope: 0.000007016958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.0000010067413 + inSlope: -0.0000101652495 + outSlope: -0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.00000053894456 + inSlope: 0.0000031482555 + outSlope: 0.0000031482555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.0000012166272 + inSlope: -0.0000004936237 + outSlope: -0.0000004936237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.00000050603876 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.0000012166272 + inSlope: 0.000010658837 + outSlope: 0.000010658837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.0000012166272 + inSlope: -0.000010165213 + outSlope: -0.000010165213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.00000053894456 + inSlope: -0.000010165213 + outSlope: -0.000010165213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.00000053894456 + inSlope: 0.00000045356742 + outSlope: 0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.00000056918236 + inSlope: 0.000007016934 + outSlope: 0.000007016934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.0000010067413 + inSlope: 0.00000971167 + outSlope: 0.00000971167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0000012166272 + inSlope: -0.000007510457 + outSlope: -0.000007510457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.00000050603876 + inSlope: 7.6397555e-11 + outSlope: 7.6397555e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.0000012166272 + inSlope: 0.000010658837 + outSlope: 0.000010658837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.0000012166272 + inSlope: 0.000021064217 + outSlope: 0.000021064217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.000002620907 + inSlope: -0.000010165251 + outSlope: -0.000010165251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.00000053894456 + inSlope: -0.0000307759 + outSlope: -0.0000307759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.00000056918236 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0000012166272 + inSlope: -0.000023958804 + outSlope: -0.000023958804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.0000010280856 + inSlope: -0.000009711444 + outSlope: -0.000009711444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.00000056918236 + inSlope: 0.000023959043 + outSlope: 0.000023959043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.00000056918236 + inSlope: 0.000009711682 + outSlope: 0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.0000012166272 + inSlope: 0.0000065633903 + outSlope: 0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0000010067413 + inSlope: -0.0000101652495 + outSlope: -0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.00000053894456 + inSlope: -0.0000065633903 + outSlope: -0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.00000056918236 + inSlope: 0.00001016518 + outSlope: 0.00001016518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.0000012166272 + inSlope: -0.000023959114 + outSlope: -0.000023959114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.0000010280856 + inSlope: -0.000010165251 + outSlope: -0.000010165251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.00000053894456 + inSlope: 0.000030522435 + outSlope: 0.000030522435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.0000010067413 + inSlope: 0.000013193488 + outSlope: 0.000013193488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.0000014185096 + inSlope: -0.0000070169576 + outSlope: -0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.00000053894456 + inSlope: -0.000013687075 + outSlope: -0.000013687075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.00000050603876 + inSlope: 0.0000004535607 + outSlope: 0.0000004535607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.00000056918236 + inSlope: 0.0000106588295 + outSlope: 0.0000106588295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.0000012166272 + inSlope: -0.00000045356774 + outSlope: -0.00000045356774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.00000053894456 + inSlope: -0.000009711682 + outSlope: -0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.00000053894456 + inSlope: -0.00000045356742 + outSlope: -0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.00000053894456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.00000053894456 + inSlope: 0.00000045356418 + outSlope: 0.00000045356418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.00000056918236 + inSlope: 0.000010165246 + outSlope: 0.000010165246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.0000012166272 + inSlope: 0.000009711682 + outSlope: 0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.0000012166272 + inSlope: -0.0000031482916 + outSlope: -0.0000031482916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.0000010067413 + inSlope: -0.0000101652495 + outSlope: -0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.00000053894456 + inSlope: -0.000030522435 + outSlope: -0.000030522435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.0000010280856 + inSlope: 0.00000045356683 + outSlope: 0.00000045356683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.00000056918236 + inSlope: 0.000047931262 + outSlope: 0.000047931262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.0000021673402 + inSlope: 0.0000065632194 + outSlope: 0.0000065632194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.0000010067413 + inSlope: -0.000017409 + outSlope: -0.000017409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.0000010067413 + inSlope: -0.0000065633903 + outSlope: -0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.00000056918236 + inSlope: -0.0000070169576 + outSlope: -0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.00000053894456 + inSlope: 0.000009711682 + outSlope: 0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.0000012166272 + inSlope: 0.000024425957 + outSlope: 0.000024425957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.0000021673402 + inSlope: -0.000010658837 + outSlope: -0.000010658837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.00000050603876 + inSlope: -0.000024919545 + outSlope: -0.000024919545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.00000050603876 + inSlope: 0.0000004935875 + outSlope: 0.0000004935875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.00000053894456 + inSlope: 0.0000004935875 + outSlope: 0.0000004935875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.00000053894456 + inSlope: 0.00000045356742 + outSlope: 0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.00000053894456 + inSlope: 0.00001273992 + outSlope: 0.00001273992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.0000014185096 + inSlope: 0.0000070169576 + outSlope: 0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.0000010067413 + inSlope: -0.000012739873 + outSlope: -0.000012739873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.00000056918236 + inSlope: -0.0000070169103 + outSlope: -0.0000070169103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.00000053894456 + inSlope: -0.00000045356742 + outSlope: -0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.00000053894456 + inSlope: -0.000023505476 + outSlope: -0.000023505476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0000010280856 + inSlope: 0.00002442596 + outSlope: 0.00002442596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.0000021673402 + inSlope: 0.000023959046 + outSlope: 0.000023959046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: 0.00000056918236 + inSlope: -0.000024425957 + outSlope: -0.000024425957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.00000053894456 + inSlope: 0.00000656334 + outSlope: 0.00000656334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.0000010067413 + inSlope: 0.000024425906 + outSlope: 0.000024425906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.0000021673402 + inSlope: -0.0000065635613 + outSlope: -0.0000065635613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.00000056918236 + inSlope: -0.000011232823 + outSlope: -0.000011232823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.0000014185096 + inSlope: 0.000006563208 + outSlope: 0.000006563208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.0000010067413 + inSlope: -0.000013193488 + outSlope: -0.000013193488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.00000053894456 + inSlope: 0.00000617653 + outSlope: 0.00000617653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.0000014185096 + inSlope: 0.00000045356774 + outSlope: 0.00000045356774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.00000056918236 + inSlope: -0.00001273992 + outSlope: -0.00001273992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.00000056918236 + inSlope: 0.000009711682 + outSlope: 0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.0000012166272 + inSlope: -0.00000094715506 + outSlope: -0.00000094715506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.00000050603876 + inSlope: 0.000003028238 + outSlope: 0.000003028238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.0000014185096 + inSlope: 0.00000094715506 + outSlope: 0.00000094715506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.00000056918236 + inSlope: -0.000003028238 + outSlope: -0.000003028238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.0000012166272 + inSlope: 0.0000065633903 + outSlope: 0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.0000010067413 + inSlope: -0.0000031482916 + outSlope: -0.0000031482916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.0000010067413 + inSlope: 0.0000031482916 + outSlope: 0.0000031482916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.0000012166272 + inSlope: -0.000007016958 + outSlope: -0.000007016958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.00000053894456 + inSlope: -0.000009711688 + outSlope: -0.000009711688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.00000056918236 + inSlope: -0.000023505481 + outSlope: -0.000023505481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.0000010280856 + inSlope: 0.000023972394 + outSlope: 0.000023972394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.0000021673402 + inSlope: 0.000023959046 + outSlope: 0.000023959046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.00000056918236 + inSlope: -0.000014260709 + outSlope: -0.000014260709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.00000056918236 + inSlope: -0.000009711682 + outSlope: -0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.00000056918236 + inSlope: -0.00000045356742 + outSlope: -0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.00000053894456 + inSlope: 0.00001273992 + outSlope: 0.00001273992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.0000014185096 + inSlope: 0.00000045356774 + outSlope: 0.00000045356774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.00000056918236 + inSlope: -0.0000061765295 + outSlope: -0.0000061765295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.0000010067413 + inSlope: 0.0000065633903 + outSlope: 0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.0000010067413 + inSlope: -0.0000065633903 + outSlope: -0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.00000056918236 + inSlope: 0.0000031482914 + outSlope: 0.0000031482914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.0000012166272 + inSlope: -0.00000045342222 + outSlope: -0.00000045342222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.00000053894456 + inSlope: -0.000009711536 + outSlope: -0.000009711536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.00000056918236 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.0000012166272 + inSlope: -0.00000045356774 + outSlope: -0.00000045356774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.00000053894456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.0000012166272 + inSlope: 0.000007016958 + outSlope: 0.000007016958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.0000010067413 + inSlope: -0.0000101652495 + outSlope: -0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.00000053894456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.00000053894456 + inSlope: -0.0000070169576 + outSlope: -0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.00000053894456 + inSlope: 0.0000070169576 + outSlope: 0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.0000010067413 + inSlope: 0.0000070169576 + outSlope: 0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.0000010067413 + inSlope: 0.0000031482916 + outSlope: 0.0000031482916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.0000012166272 + inSlope: -0.000030522435 + outSlope: -0.000030522435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.0000010280856 + inSlope: -0.000010165588 + outSlope: -0.000010165588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.00000053894456 + inSlope: 0.000030522096 + outSlope: 0.000030522096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.0000010067413 + inSlope: 0.0000070169576 + outSlope: 0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.0000010067413 + inSlope: 0.000019690173 + outSlope: 0.000019690173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.0000023194182 + inSlope: -0.000007016957 + outSlope: -0.000007016957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.00000053894456 + inSlope: -0.00001654188 + outSlope: -0.00001654188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.00000053894456 + inSlope: -0.0000031482919 + outSlope: -0.0000031482919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.0000010067413 + inSlope: 0.00000045356728 + outSlope: 0.00000045356728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.00000056918236 + inSlope: -0.0000065633903 + outSlope: -0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.00000056918236 + inSlope: 0.000009711682 + outSlope: 0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.0000012166272 + inSlope: 0.00001273992 + outSlope: 0.00001273992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.0000014185096 + inSlope: -0.0000101652495 + outSlope: -0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.00000053894456 + inSlope: -0.000013193488 + outSlope: -0.000013193488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.00000053894456 + inSlope: 0.00000045356742 + outSlope: 0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.00000056918236 + inSlope: 0.00000045356742 + outSlope: 0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.00000056918236 + inSlope: -0.00000094715494 + outSlope: -0.00000094715494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.00000050603876 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.00000056918236 + inSlope: 0.00000094715494 + outSlope: 0.00000094715494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.00000056918236 + inSlope: -0.000027440843 + outSlope: -0.000027440843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.0000012602054 + inSlope: 0.000009711681 + outSlope: 0.000009711681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.0000012166272 + inSlope: 0.000037152524 + outSlope: 0.000037152524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.0000012166272 + inSlope: -0.0000031482916 + outSlope: -0.0000031482916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.0000010067413 + inSlope: -0.000009711682 + outSlope: -0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.00000056918236 + inSlope: -0.0000065633903 + outSlope: -0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.00000056918236 + inSlope: -0.00000045356742 + outSlope: -0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.00000053894456 + inSlope: -0.00000045356742 + outSlope: -0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.00000053894456 + inSlope: 0.00000045356742 + outSlope: 0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.00000053894456 + inSlope: 0.00001273992 + outSlope: 0.00001273992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.0000014185096 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.0000012166272 + inSlope: -0.000013193488 + outSlope: -0.000013193488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.00000053894456 + inSlope: -0.000010658837 + outSlope: -0.000010658837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.00000050603876 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.0000012166272 + inSlope: 0.000010658837 + outSlope: 0.000010658837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.0000012166272 + inSlope: -0.000037152524 + outSlope: -0.000037152524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.0000012602054 + inSlope: -0.0000101652495 + outSlope: -0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: 0.00000053894456 + inSlope: 0.00003400423 + outSlope: 0.00003400423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.0000010067413 + inSlope: 0.000013193488 + outSlope: 0.000013193488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.0000014185096 + inSlope: 0.0000031482916 + outSlope: 0.0000031482916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.0000012166272 + inSlope: -0.000013193488 + outSlope: -0.000013193488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.00000053894456 + inSlope: -1.4551915e-10 + outSlope: -1.4551915e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.0000012166272 + inSlope: -1.4551915e-10 + outSlope: -1.4551915e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.00000053894456 + inSlope: -0.000009711682 + outSlope: -0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.00000056918236 + inSlope: 0.0000070169576 + outSlope: 0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.0000010067413 + inSlope: -0.00000045356728 + outSlope: -0.00000045356728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.00000053894456 + inSlope: 0.0000031482919 + outSlope: 0.0000031482919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: 0.00000053894456 + inSlope: -0.0000101652495 + outSlope: -0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.00000053894456 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.0000012166272 + inSlope: 0.000007016958 + outSlope: 0.000007016958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.0000010067413 + inSlope: -0.0000101652495 + outSlope: -0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: 0.00000053894456 + inSlope: -0.0000065633903 + outSlope: -0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: 0.00000056918236 + inSlope: 0.000013193488 + outSlope: 0.000013193488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.0000014185096 + inSlope: -0.00000045356774 + outSlope: -0.00000045356774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: 0.00000053894456 + inSlope: -0.000013193488 + outSlope: -0.000013193488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: 0.00000053894456 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.0000012166272 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.0000012166272 + inSlope: -0.000009711682 + outSlope: -0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.533334 + value: 0.00000056918236 + inSlope: -0.0000031482914 + outSlope: -0.0000031482914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.566667 + value: 0.0000010067413 + inSlope: -0.00000045356728 + outSlope: -0.00000045356728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: 0.00000053894456 + inSlope: 0.0000031482919 + outSlope: 0.0000031482919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6333337 + value: 0.0000012166272 + inSlope: 0.000007016958 + outSlope: 0.000007016958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.666667 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7000003 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.766667 + value: 0.0000012166272 + inSlope: -0.000007016958 + outSlope: -0.000007016958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8 + value: 0.00000053894456 + inSlope: -1.4551915e-10 + outSlope: -1.4551915e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: 0.0000012166272 + inSlope: -1.4551915e-10 + outSlope: -1.4551915e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: 0.00000053894456 + inSlope: -0.0000031482919 + outSlope: -0.0000031482919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: 0.0000010067413 + inSlope: 0.00000045356728 + outSlope: 0.00000045356728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.00000056918236 + inSlope: -0.0000065633903 + outSlope: -0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: 0.00000056918236 + inSlope: -0.0000009471685 + outSlope: -0.0000009471685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: 0.00000050603876 + inSlope: -0.00000045358803 + outSlope: -0.00000045358803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: 0.00000053894456 + inSlope: 0.000010658684 + outSlope: 0.000010658684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.066668 + value: 0.0000012166272 + inSlope: -0.000023506103 + outSlope: -0.000023506103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.1 + value: -0.0000010280856 + inSlope: -0.000010166068 + outSlope: -0.000010166068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.133334 + value: 0.00000053894456 + inSlope: 0.00002350514 + outSlope: 0.00002350514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.166667 + value: 0.00000053894456 + inSlope: 0.00000045356094 + outSlope: 0.00000045356094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.200001 + value: 0.00000056918236 + inSlope: 0.000010165382 + outSlope: 0.000010165382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.0000012166272 + inSlope: 0.000006563574 + outSlope: 0.000006563574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: 0.0000010067413 + inSlope: -0.0000031482466 + outSlope: -0.0000031482466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: 0.0000010067413 + inSlope: -0.000007016857 + outSlope: -0.000007016857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.333334 + value: 0.00000053894456 + inSlope: -0.000034004515 + outSlope: -0.000034004515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.366667 + value: -0.0000012602054 + inSlope: 0.0000070160877 + outSlope: 0.0000070160877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.400001 + value: 0.0000010067413 + inSlope: 0.000027440263 + outSlope: 0.000027440263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: 0.00000056918236 + inSlope: -0.0000075106254 + outSlope: -0.0000075106254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: 0.00000050603876 + inSlope: 0.000012740129 + outSlope: 0.000012740129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 0.0000014185096 + inSlope: 0.0000075108287 + outSlope: 0.0000075108287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: 0.0000010067413 + inSlope: -0.000012739738 + outSlope: -0.000012739738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.00000056918236 + inSlope: -0.000034004534 + outSlope: -0.000034004534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.6 + value: -0.0000012602054 + inSlope: 0.0000065625118 + outSlope: 0.0000065625118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.633334 + value: 0.0000010067413 + inSlope: 0.00002698669 + outSlope: 0.00002698669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.666667 + value: 0.00000053894456 + inSlope: -0.000006563497 + outSlope: -0.000006563497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.700001 + value: 0.00000056918236 + inSlope: 0.00000045356094 + outSlope: 0.00000045356094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.733334 + value: 0.00000056918236 + inSlope: 0.000006563296 + outSlope: 0.000006563296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.766667 + value: 0.0000010067413 + inSlope: 0.000006563296 + outSlope: 0.000006563296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.8 + value: 0.0000010067413 + inSlope: -0.000007016857 + outSlope: -0.000007016857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.00000053894456 + inSlope: -0.00003052267 + outSlope: -0.00003052267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.866667 + value: -0.0000010280856 + inSlope: 0.000010164431 + outSlope: 0.000010164431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.900001 + value: 0.0000012166272 + inSlope: 0.000030521907 + outSlope: 0.000030521907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.0000010067413 + inSlope: -0.000010165194 + outSlope: -0.000010165194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: 0.00000053894456 + inSlope: 0.0000031485379 + outSlope: 0.0000031485379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: 0.0000012166272 + inSlope: 0.000007017148 + outSlope: 0.000007017148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: 0.0000010067413 + inSlope: -0.0000031482466 + outSlope: -0.0000031482466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.066668 + value: 0.0000010067413 + inSlope: 0.0000031483366 + outSlope: 0.0000031483366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.1 + value: 0.0000012166272 + inSlope: 0.0000031483366 + outSlope: 0.0000031483366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.166667 + value: 0.0000010067413 + inSlope: -0.000009711633 + outSlope: -0.000009711633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.200001 + value: 0.00000056918236 + inSlope: 0.0000031485247 + outSlope: 0.0000031485247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.233334 + value: 0.0000012166272 + inSlope: -0.0000009468631 + outSlope: -0.0000009468631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.266667 + value: 0.00000050603876 + inSlope: 3.0559022e-10 + outSlope: 3.0559022e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.3 + value: 0.0000012166272 + inSlope: 0.00001065899 + outSlope: 0.00001065899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.333334 + value: 0.0000012166272 + inSlope: -0.0000031483366 + outSlope: -0.0000031483366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.366667 + value: 0.0000010067413 + inSlope: -9.0039975e-11 + outSlope: -9.0039975e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.400001 + value: 0.0000012166272 + inSlope: 0.0000031482466 + outSlope: 0.0000031482466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: 0.0000012166272 + inSlope: -0.0000031482466 + outSlope: -0.0000031482466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.0000010067413 + inSlope: -0.000006296493 + outSlope: -0.000006296493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.60435414 + inSlope: 0.029556153 + outSlope: 0.029556153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.5834454 + inSlope: 0.08596481 + outSlope: 0.08596481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.57484007 + inSlope: -0.006652767 + outSlope: -0.006652767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.5842468 + inSlope: -0.028124776 + outSlope: -0.028124776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.57413095 + inSlope: 0.010056487 + outSlope: 0.010056487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.56101656 + inSlope: 0.0018283693 + outSlope: 0.0018283693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.57047224 + inSlope: -0.0034028324 + outSlope: -0.0034028324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: -0.5793612 + inSlope: 0.006049281 + outSlope: 0.006049281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: -0.5730706 + inSlope: -0.004046563 + outSlope: -0.004046563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.8 + value: -0.5685158 + inSlope: -0.021355767 + outSlope: -0.021355767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.604354 + inSlope: -0.04427016 + outSlope: -0.04427016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33024642 + inSlope: -0.0078472495 + outSlope: -0.0078472495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.32797447 + inSlope: -0.1276432 + outSlope: -0.1276432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.31686908 + inSlope: -0.14479813 + outSlope: -0.14479813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.31156075 + inSlope: -0.2693255 + outSlope: -0.2693255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.29891405 + inSlope: -0.28594854 + outSlope: -0.28594854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.28589475 + inSlope: -0.3060423 + outSlope: -0.3060423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2720947 + inSlope: -0.30752423 + outSlope: -0.30752423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.2555399 + inSlope: -0.14240699 + outSlope: -0.14240699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.24289274 + inSlope: -0.034387007 + outSlope: -0.034387007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.24202156 + inSlope: -0.0023426868 + outSlope: -0.0023426868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.24618594 + inSlope: 0.10291746 + outSlope: 0.10291746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.26564372 + inSlope: 0.0508668 + outSlope: 0.0508668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.2774327 + inSlope: 0.030076027 + outSlope: 0.030076027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.29425725 + inSlope: -0.0015856341 + outSlope: -0.0015856341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.2875513 + inSlope: -0.046301678 + outSlope: -0.046301678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.2717608 + inSlope: -0.05268822 + outSlope: -0.05268822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.26131406 + inSlope: -0.024996871 + outSlope: -0.024996871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.25161606 + inSlope: -0.042409655 + outSlope: -0.042409655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.25002658 + inSlope: -0.095734164 + outSlope: -0.095734164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.24523379 + inSlope: -0.072341256 + outSlope: -0.072341256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.2451382 + inSlope: -0.00097408984 + outSlope: -0.00097408984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.2426329 + inSlope: -0.0058215167 + outSlope: -0.0058215167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.24425337 + inSlope: 0.007035623 + outSlope: 0.007035623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.26140058 + inSlope: 0.055328213 + outSlope: 0.055328213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.27908796 + inSlope: 0.03361839 + outSlope: 0.03361839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.2952869 + inSlope: 0.0055454727 + outSlope: 0.0055454727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.30159616 + inSlope: 0.06515494 + outSlope: 0.06515494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.30565557 + inSlope: 0.0014872863 + outSlope: 0.0014872863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.666667 + value: 0.28873122 + inSlope: -0.037434734 + outSlope: -0.037434734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: 0.2807606 + inSlope: -0.03725388 + outSlope: -0.03725388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.200001 + value: 0.26427457 + inSlope: -0.03680983 + outSlope: -0.03680983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: 0.25209397 + inSlope: -0.027103767 + outSlope: -0.027103767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.700001 + value: 0.24522543 + inSlope: -0.0067263646 + outSlope: -0.0067263646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: 0.25486866 + inSlope: 0.17347348 + outSlope: 0.17347348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.33024666 + inSlope: 0.031166853 + outSlope: 0.031166853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.19797781 + inSlope: 0.012980997 + outSlope: 0.012980997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.19253394 + inSlope: 0.08034424 + outSlope: 0.08034424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.18790342 + inSlope: 0.11192723 + outSlope: 0.11192723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.179967 + inSlope: 0.09169445 + outSlope: 0.09169445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.16807729 + inSlope: 0.08474839 + outSlope: 0.08474839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.15922692 + inSlope: -0.0104764905 + outSlope: -0.0104764905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.16266999 + inSlope: 0.01077219 + outSlope: 0.01077219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.15255307 + inSlope: 0.027366593 + outSlope: 0.027366593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.15084046 + inSlope: -0.0016685531 + outSlope: -0.0016685531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.14950454 + inSlope: 0.0011142371 + outSlope: 0.0011142371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.14693613 + inSlope: -0.011242695 + outSlope: -0.011242695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.14836374 + inSlope: -0.0007803 + outSlope: -0.0007803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.15008608 + inSlope: -0.019226935 + outSlope: -0.019226935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.149838 + inSlope: -0.012490792 + outSlope: -0.012490792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.15459557 + inSlope: -0.034126583 + outSlope: -0.034126583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.15732019 + inSlope: -0.04693401 + outSlope: -0.04693401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.16191988 + inSlope: -0.029864013 + outSlope: -0.029864013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.16415274 + inSlope: -0.027902152 + outSlope: -0.027902152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.16631807 + inSlope: -0.021682955 + outSlope: -0.021682955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.16995874 + inSlope: -0.03837686 + outSlope: -0.03837686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.17105508 + inSlope: -0.032975554 + outSlope: -0.032975554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.1731623 + inSlope: -0.014013184 + outSlope: -0.014013184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.1738208 + inSlope: -0.08732342 + outSlope: -0.08732342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.17898385 + inSlope: -0.08663566 + outSlope: -0.08663566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.1792635 + inSlope: 0.0011707854 + outSlope: 0.0011707854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.17582835 + inSlope: 0.004122559 + outSlope: 0.004122559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.17549956 + inSlope: -0.008363582 + outSlope: -0.008363582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.17626245 + inSlope: -0.0002362039 + outSlope: -0.0002362039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.17602599 + inSlope: 0.08004367 + outSlope: 0.08004367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.17092621 + inSlope: 0.1303365 + outSlope: 0.1303365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.16369289 + inSlope: 0.12622868 + outSlope: 0.12622868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.15892166 + inSlope: 0.09010286 + outSlope: 0.09010286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.15697037 + inSlope: 0.032684088 + outSlope: 0.032684088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.15192126 + inSlope: 0.01894692 + outSlope: 0.01894692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.14852507 + inSlope: 0.010596076 + outSlope: 0.010596076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.14610268 + inSlope: 0.008325808 + outSlope: 0.008325808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.14354119 + inSlope: 0.008668461 + outSlope: 0.008668461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.14072645 + inSlope: 0.018442519 + outSlope: 0.018442519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.13837132 + inSlope: -0.011220809 + outSlope: -0.011220809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: -0.13859311 + inSlope: 0.011866104 + outSlope: 0.011866104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.13483912 + inSlope: 0.029588146 + outSlope: 0.029588146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.13187908 + inSlope: 0.0011296582 + outSlope: 0.0011296582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: -0.12961766 + inSlope: 0.011964899 + outSlope: 0.011964899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.13387291 + inSlope: -0.022264145 + outSlope: -0.022264145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.566667 + value: -0.13608123 + inSlope: -0.0061570164 + outSlope: -0.0061570164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.666667 + value: -0.13827041 + inSlope: -0.012307328 + outSlope: -0.012307328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: -0.14148407 + inSlope: -0.00909957 + outSlope: -0.00909957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: -0.14407952 + inSlope: -0.0066343555 + outSlope: -0.0066343555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.166667 + value: -0.14665033 + inSlope: -0.011378166 + outSlope: -0.011378166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: -0.15106638 + inSlope: -0.021264995 + outSlope: -0.021264995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: -0.1546202 + inSlope: -0.00520173 + outSlope: -0.00520173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: -0.15685949 + inSlope: -0.06287528 + outSlope: -0.06287528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.700001 + value: -0.16258784 + inSlope: -0.0036149146 + outSlope: -0.0036149146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: -0.16302086 + inSlope: -0.018327095 + outSlope: -0.018327095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.233334 + value: -0.1896724 + inSlope: -0.08804412 + outSlope: -0.08804412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.19797795 + inSlope: 0.028760497 + outSlope: 0.028760497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7336934 + inSlope: 0.0007528066 + outSlope: 0.0007528066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7360132 + inSlope: -0.00062674284 + outSlope: -0.00062674284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.7130926 + inSlope: -0.111224964 + outSlope: -0.111224964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.68431085 + inSlope: -0.10700773 + outSlope: -0.10700773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.6575238 + inSlope: -0.055195443 + outSlope: -0.055195443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.6296498 + inSlope: 0.001152457 + outSlope: 0.001152457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.6342452 + inSlope: 0.084161535 + outSlope: 0.084161535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.67218614 + inSlope: 0.13832545 + outSlope: 0.13832545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.71893275 + inSlope: 0.13067973 + outSlope: 0.13067973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.72533685 + inSlope: 0.21410933 + outSlope: 0.21410933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.737293 + inSlope: 0.008824476 + outSlope: 0.008824476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.7362829 + inSlope: 0.0016030684 + outSlope: 0.0016030684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.7364509 + inSlope: -0.0023684434 + outSlope: -0.0023684434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.69788074 + inSlope: -0.096535474 + outSlope: -0.096535474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.667645 + inSlope: -0.0662685 + outSlope: -0.0662685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.62808853 + inSlope: -0.008019812 + outSlope: -0.008019812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.61235 + inSlope: -0.16784921 + outSlope: -0.16784921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.6025455 + inSlope: -0.038393177 + outSlope: -0.038393177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.6186927 + inSlope: 0.08051999 + outSlope: 0.08051999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: 0.66091275 + inSlope: 0.07227706 + outSlope: 0.07227706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.200001 + value: 0.6937572 + inSlope: 0.08642187 + outSlope: 0.08642187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: 0.7214898 + inSlope: 0.05868683 + outSlope: 0.05868683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.733334 + value: 0.736196 + inSlope: 0.0047358917 + outSlope: 0.0047358917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.7336934 + inSlope: -0.043576375 + outSlope: -0.043576375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13824472 + inSlope: -0.008070767 + outSlope: -0.008070767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1387297 + inSlope: 0.07535308 + outSlope: 0.07535308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.14299923 + inSlope: 0.28269634 + outSlope: 0.28269634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.15757613 + inSlope: 0.35794082 + outSlope: 0.35794082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.17760187 + inSlope: 0.5004852 + outSlope: 0.5004852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.20022763 + inSlope: 0.504241 + outSlope: 0.504241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.22164755 + inSlope: 0.4371782 + outSlope: 0.4371782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.24036315 + inSlope: 0.40335307 + outSlope: 0.40335307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.2542526 + inSlope: 0.1578542 + outSlope: 0.1578542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.26341605 + inSlope: 0.1556147 + outSlope: 0.1556147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.27122706 + inSlope: 0.03438142 + outSlope: 0.03438142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.27275044 + inSlope: 0.0094977 + outSlope: 0.0094977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.26677132 + inSlope: -0.15195027 + outSlope: -0.15195027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.25889084 + inSlope: -0.06029831 + outSlope: -0.06029831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.25237983 + inSlope: -0.036405593 + outSlope: -0.036405593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.24496119 + inSlope: -0.039946333 + outSlope: -0.039946333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.23664232 + inSlope: -0.042085163 + outSlope: -0.042085163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.22953266 + inSlope: -0.030861303 + outSlope: -0.030861303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.22408295 + inSlope: -0.028154446 + outSlope: -0.028154446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.2155448 + inSlope: -0.004789983 + outSlope: -0.004789983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.22336128 + inSlope: 0.020314768 + outSlope: 0.020314768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.22939236 + inSlope: 0.029521538 + outSlope: 0.029521538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.23995206 + inSlope: 0.019067582 + outSlope: 0.019067582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.24970953 + inSlope: 0.036935512 + outSlope: 0.036935512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.25118482 + inSlope: 0.122112826 + outSlope: 0.122112826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.25785038 + inSlope: 0.11493679 + outSlope: 0.11493679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.25901654 + inSlope: 0.0072397357 + outSlope: 0.0072397357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.26729348 + inSlope: 0.009220103 + outSlope: 0.009220103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.27182454 + inSlope: -0.00026106858 + outSlope: -0.00026106858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.27132928 + inSlope: -0.0023178814 + outSlope: -0.0023178814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.27115807 + inSlope: -0.089787476 + outSlope: -0.089787476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.26109776 + inSlope: -0.12765002 + outSlope: -0.12765002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.2497189 + inSlope: -0.04353386 + outSlope: -0.04353386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.23817702 + inSlope: -0.018019099 + outSlope: -0.018019099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.22894107 + inSlope: -0.049269546 + outSlope: -0.049269546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.22298443 + inSlope: -0.008093797 + outSlope: -0.008093797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.2179674 + inSlope: -0.054757573 + outSlope: -0.054757573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.21383078 + inSlope: -0.0075671896 + outSlope: -0.0075671896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.21817328 + inSlope: 0.02634133 + outSlope: 0.02634133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.666667 + value: 0.22619438 + inSlope: 0.029059527 + outSlope: 0.029059527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: 0.23323636 + inSlope: 0.029135324 + outSlope: 0.029135324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.200001 + value: 0.24557588 + inSlope: 0.04648116 + outSlope: 0.04648116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: 0.25184107 + inSlope: 0.040656492 + outSlope: 0.040656492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: 0.25885996 + inSlope: 0.02813375 + outSlope: 0.02813375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.6 + value: 0.2678903 + inSlope: 0.055227168 + outSlope: 0.055227168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.27031907 + inSlope: 0.003396127 + outSlope: 0.003396127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: 0.25767374 + inSlope: -0.2033579 + outSlope: -0.2033579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.233334 + value: 0.1973722 + inSlope: -0.36579978 + outSlope: -0.36579978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: 0.1416579 + inSlope: -0.13631785 + outSlope: -0.13631785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.1382449 + inSlope: -0.10238884 + outSlope: -0.10238884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08188503 + inSlope: 0.000029504297 + outSlope: 0.000029504297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.08080766 + inSlope: 0.084410556 + outSlope: 0.084410556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.07625668 + inSlope: 0.2939943 + outSlope: 0.2939943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.061208043 + inSlope: 0.37447762 + outSlope: 0.37447762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.051291503 + inSlope: 0.32369226 + outSlope: 0.32369226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.039628554 + inSlope: 0.5531901 + outSlope: 0.5531901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.014412157 + inSlope: 0.5746406 + outSlope: 0.5746406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0013191844 + inSlope: 0.39356476 + outSlope: 0.39356476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.011825491 + inSlope: 0.5736412 + outSlope: 0.5736412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.036923558 + inSlope: 0.56453145 + outSlope: 0.56453145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.049460918 + inSlope: 0.333536 + outSlope: 0.333536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.06810961 + inSlope: 0.26813033 + outSlope: 0.26813033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.07703465 + inSlope: 0.31361097 + outSlope: 0.31361097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.089017 + inSlope: 0.23314746 + outSlope: 0.23314746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.09257781 + inSlope: 0.06593345 + outSlope: 0.06593345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.093530945 + inSlope: 0.0018593298 + outSlope: 0.0018593298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.09508691 + inSlope: 0.024648938 + outSlope: 0.024648938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.100407 + inSlope: 0.021382678 + outSlope: 0.021382678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.10191556 + inSlope: 0.0027222212 + outSlope: 0.0027222212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.10461234 + inSlope: -0.0032618986 + outSlope: -0.0032618986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.10289343 + inSlope: -0.005550278 + outSlope: -0.005550278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.099109955 + inSlope: -0.008958892 + outSlope: -0.008958892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.09321696 + inSlope: -0.016156077 + outSlope: -0.016156077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.09058346 + inSlope: -0.009488212 + outSlope: -0.009488212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.088488124 + inSlope: -0.025711458 + outSlope: -0.025711458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.08677467 + inSlope: -0.008893431 + outSlope: -0.008893431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.08534406 + inSlope: 0.0097389985 + outSlope: 0.0097389985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.08739699 + inSlope: 0.0065074926 + outSlope: 0.0065074926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.08629535 + inSlope: -0.00033125305 + outSlope: -0.00033125305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.0884643 + inSlope: 0.005009924 + outSlope: 0.005009924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.0889169 + inSlope: 0.00074006163 + outSlope: 0.00074006163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.09219761 + inSlope: 0.01704255 + outSlope: 0.01704255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.09620361 + inSlope: 0.021957926 + outSlope: 0.021957926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.09886222 + inSlope: 0.020112354 + outSlope: 0.020112354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.10344177 + inSlope: 0.04832954 + outSlope: 0.04832954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.109106585 + inSlope: 0.03587983 + outSlope: 0.03587983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.11211554 + inSlope: 0.04780606 + outSlope: 0.04780606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.115113646 + inSlope: 0.028399702 + outSlope: 0.028399702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.1198188 + inSlope: 0.016361602 + outSlope: 0.016361602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.11979663 + inSlope: -0.0029773354 + outSlope: -0.0029773354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.11987599 + inSlope: -0.0043384773 + outSlope: -0.0043384773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.11665504 + inSlope: -0.038266666 + outSlope: -0.038266666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.11145397 + inSlope: -0.02303785 + outSlope: -0.02303785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.533334 + value: 0.10540731 + inSlope: -0.027085643 + outSlope: -0.027085643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: 0.099713266 + inSlope: -0.013434552 + outSlope: -0.013434552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.1 + value: 0.09494507 + inSlope: -0.005149329 + outSlope: -0.005149329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.366667 + value: 0.0931907 + inSlope: -0.012591373 + outSlope: -0.012591373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.633334 + value: 0.09102429 + inSlope: -0.006171941 + outSlope: -0.006171941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.0906916 + inSlope: 0.000081919265 + outSlope: 0.000081919265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.866667 + value: 0.090694465 + inSlope: -0.034018226 + outSlope: -0.034018226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.085817836 + inSlope: -0.09783462 + outSlope: -0.09783462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: 0.08190137 + inSlope: -0.2222814 + outSlope: -0.2222814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: 0.07099919 + inSlope: -0.34618133 + outSlope: -0.34618133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.166667 + value: 0.002974919 + inSlope: -0.43157846 + outSlope: -0.43157846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.233334 + value: -0.025175227 + inSlope: -0.40155503 + outSlope: -0.40155503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: -0.080375105 + inSlope: -0.08629258 + outSlope: -0.08629258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.08188503 + inSlope: -0.045297213 + outSlope: -0.045297213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04796836 + inSlope: -0.0000378862 + outSlope: -0.0000378862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.047969624 + inSlope: -0.027147138 + outSlope: -0.027147138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04977817 + inSlope: -0.14435552 + outSlope: -0.14435552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.057593327 + inSlope: -0.53410727 + outSlope: -0.53410727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08538532 + inSlope: -0.716229 + outSlope: -0.716229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.105341926 + inSlope: -0.6771685 + outSlope: -0.6771685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1305299 + inSlope: -1.2936124 + outSlope: -1.2936124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.19158275 + inSlope: -1.4461782 + outSlope: -1.4461782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.22694176 + inSlope: -1.1014194 + outSlope: -1.1014194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.2650107 + inSlope: -1.7684605 + outSlope: -1.7684605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.34483913 + inSlope: -1.8466094 + outSlope: -1.8466094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.388118 + inSlope: -1.1731795 + outSlope: -1.1731795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.49043164 + inSlope: -1.2168229 + outSlope: -1.2168229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.53745615 + inSlope: -0.9184939 + outSlope: -0.9184939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.5550308 + inSlope: -0.03504837 + outSlope: -0.03504837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.55120605 + inSlope: 0.019636445 + outSlope: 0.019636445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.5393402 + inSlope: 0.25615898 + outSlope: 0.25615898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.52457523 + inSlope: 0.12709112 + outSlope: 0.12709112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.509875 + inSlope: 0.099604644 + outSlope: 0.099604644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.48927802 + inSlope: 0.11143024 + outSlope: 0.11143024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.4740411 + inSlope: 0.10764723 + outSlope: 0.10764723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.45605272 + inSlope: 0.07556237 + outSlope: 0.07556237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.42558146 + inSlope: 0.010327855 + outSlope: 0.010327855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.4227404 + inSlope: -0.014496907 + outSlope: -0.014496907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.44240123 + inSlope: -0.064359665 + outSlope: -0.064359665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.47151992 + inSlope: -0.10484184 + outSlope: -0.10484184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.4857602 + inSlope: -0.10378996 + outSlope: -0.10378996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.5065915 + inSlope: -0.04874544 + outSlope: -0.04874544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.5293701 + inSlope: -0.09944358 + outSlope: -0.09944358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.53310895 + inSlope: -0.2204465 + outSlope: -0.2204465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.54406655 + inSlope: -0.1808374 + outSlope: -0.1808374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.54665846 + inSlope: -0.024533182 + outSlope: -0.024533182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.5501966 + inSlope: -0.0054180673 + outSlope: -0.0054180673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.55429286 + inSlope: 0.0034171375 + outSlope: 0.0034171375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.54952943 + inSlope: 0.02431693 + outSlope: 0.02431693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.54276764 + inSlope: 0.079076536 + outSlope: 0.079076536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.5188809 + inSlope: 0.24687612 + outSlope: 0.24687612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.4955608 + inSlope: 0.12003568 + outSlope: 0.12003568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.46590656 + inSlope: 0.056779735 + outSlope: 0.056779735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.43601218 + inSlope: 0.05402381 + outSlope: 0.05402381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.42399323 + inSlope: 0.032791376 + outSlope: 0.032791376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.40769434 + inSlope: -0.0061740037 + outSlope: -0.0061740037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: -0.42502156 + inSlope: -0.074577555 + outSlope: -0.074577555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.533334 + value: -0.4398765 + inSlope: -0.1510045 + outSlope: -0.1510045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6333337 + value: -0.4540237 + inSlope: -0.15557677 + outSlope: -0.15557677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: -0.46652615 + inSlope: -0.1415041 + outSlope: -0.1415041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: -0.48190063 + inSlope: -0.09277144 + outSlope: -0.09277144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.133334 + value: -0.50255764 + inSlope: -0.08405551 + outSlope: -0.08405551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: -0.53806245 + inSlope: -0.07475238 + outSlope: -0.07475238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.700001 + value: -0.5531336 + inSlope: -0.0044167084 + outSlope: -0.0044167084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: -0.5537143 + inSlope: -0.0046679424 + outSlope: -0.0046679424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: -0.5372475 + inSlope: 0.3297493 + outSlope: 0.3297493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: -0.52409506 + inSlope: 0.7545251 + outSlope: 0.7545251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: -0.4869462 + inSlope: 1.162308 + outSlope: 1.162308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.266667 + value: -0.1616969 + inSlope: 0.98714674 + outSlope: 0.98714674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: -0.053449307 + inSlope: 0.25376672 + outSlope: 0.25376672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.047969002 + inSlope: 0.16440694 + outSlope: 0.16440694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000011411439 + inSlope: 0.00003773195 + outSlope: 0.00003773195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000013718461 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000011411439 + inSlope: -0.000018865974 + outSlope: -0.000018865974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.00000011411439 + inSlope: -0.0000019326635 + outSlope: -0.0000019326635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.000000014729832 + inSlope: -0.0000019326635 + outSlope: -0.0000019326635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.000000014729832 + inSlope: 0.0000073675496 + outSlope: 0.0000073675496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000047644014 + inSlope: 0.0000073675496 + outSlope: 0.0000073675496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.00000047644014 + inSlope: -0.0000073675496 + outSlope: -0.0000073675496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000000014729832 + inSlope: -0.0000073675496 + outSlope: -0.0000073675496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.000000014729832 + inSlope: 0.0000037994562 + outSlope: 0.0000037994562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.00000023856745 + inSlope: 0.00000193266 + outSlope: 0.00000193266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.00000011411439 + inSlope: 0.0000035680905 + outSlope: 0.0000035680905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.00000047644014 + inSlope: -0.0000019326694 + outSlope: -0.0000019326694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.000000014729832 + inSlope: 0.000003185794 + outSlope: 0.000003185794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000006888274 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.000000014729832 + inSlope: -0.0000034596846 + outSlope: -0.0000034596846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00000045818072 + inSlope: 0.000003799469 + outSlope: 0.000003799469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00000023856745 + inSlope: 0.00001051919 + outSlope: 0.00001051919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.000001159459 + inSlope: 0.0000035681132 + outSlope: 0.0000035681132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00000047644014 + inSlope: -0.000010519165 + outSlope: -0.000010519165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000045818072 + inSlope: -4.8316906e-13 + outSlope: -4.8316906e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.00000047644014 + inSlope: -0.000030693303 + outSlope: -0.000030693303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0000015880412 + inSlope: -0.0000073675037 + outSlope: -0.0000073675037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.000000014729832 + inSlope: 0.000023599692 + outSlope: 0.000023599692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.000000014729832 + inSlope: 0.000017612849 + outSlope: 0.000017612849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.000001159459 + inSlope: -0.00002359962 + outSlope: -0.00002359962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0000015880412 + inSlope: -0.000010245218 + outSlope: -0.000010245218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.00000047644014 + inSlope: 0.00003415306 + outSlope: 0.00003415306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000006888274 + inSlope: 1.1368684e-11 + outSlope: 1.1368684e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.00000047644014 + inSlope: -0.0000031858008 + outSlope: -0.0000031858008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.00000047644014 + inSlope: -0.000007367556 + outSlope: -0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.000000014729832 + inSlope: -0.000026965945 + outSlope: -0.000026965945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.0000013212925 + inSlope: 7.094059e-11 + outSlope: 7.094059e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.000000014729832 + inSlope: 0.000026966016 + outSlope: 0.000026966016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00000047644014 + inSlope: 0.0000070936644 + outSlope: 0.0000070936644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.00000045818072 + inSlope: -9.663381e-13 + outSlope: -9.663381e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.00000047644014 + inSlope: 0.0000002738905 + outSlope: 0.0000002738905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.00000047644014 + inSlope: -0.0000054348916 + outSlope: -0.0000054348916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00000011411439 + inSlope: -0.00000736755 + outSlope: -0.00000736755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.000000014729832 + inSlope: 0.0000054348975 + outSlope: 0.0000054348975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.00000047644014 + inSlope: 0.0000070936644 + outSlope: 0.0000070936644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.00000045818072 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00000047644014 + inSlope: -0.0000051609804 + outSlope: -0.0000051609804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.00000011411439 + inSlope: -0.000005434872 + outSlope: -0.000005434872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.00000011411439 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.00000011411439 + inSlope: 0.000005434872 + outSlope: 0.000005434872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.00000047644014 + inSlope: -1.9554136e-11 + outSlope: -1.9554136e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.00000011411439 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.00000047644014 + inSlope: 0.000014087276 + outSlope: 0.000014087276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.0000010532652 + inSlope: -0.000005434841 + outSlope: -0.000005434841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.00000011411439 + inSlope: -0.00001601989 + outSlope: -0.00001601989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.000000014729832 + inSlope: -0.000001932665 + outSlope: -0.000001932665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.000000014729832 + inSlope: -0.000023599609 + outSlope: -0.000023599609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.0000015880412 + inSlope: 0.000017612936 + outSlope: 0.000017612936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.000001159459 + inSlope: 0.000030967254 + outSlope: 0.000030967254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.00000047644014 + inSlope: -0.000010245292 + outSlope: -0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.00000047644014 + inSlope: -0.00000027389245 + outSlope: -0.00000027389245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.00000045818072 + inSlope: -0.0000035680712 + outSlope: -0.0000035680712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.00000023856745 + inSlope: 0.00000027391502 + outSlope: 0.00000027391502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.00000047644014 + inSlope: -0.0000037994623 + outSlope: -0.0000037994623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.00000047644014 + inSlope: 0.000007367556 + outSlope: 0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.00000047644014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.00000047644014 + inSlope: -0.00001717929 + outSlope: -0.00001717929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.00000066884485 + inSlope: -0.0000073676265 + outSlope: -0.0000073676265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.000000014729832 + inSlope: -7.003109e-11 + outSlope: -7.003109e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.00000066884485 + inSlope: 0.0000073675565 + outSlope: 0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.00000047644014 + inSlope: 0.000027424583 + outSlope: 0.000027424583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.000001159459 + inSlope: -0.0000035680941 + outSlope: -0.0000035680941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.00000023856745 + inSlope: -0.000017612849 + outSlope: -0.000017612849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.000000014729832 + inSlope: 0.000003568093 + outSlope: 0.000003568093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.00000047644014 + inSlope: 0.0000037994878 + outSlope: 0.0000037994878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.00000023856745 + inSlope: 2.5465852e-11 + outSlope: 2.5465852e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.00000047644014 + inSlope: 0.0000035680937 + outSlope: 0.0000035680937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.00000047644014 + inSlope: -0.00000027389146 + outSlope: -0.00000027389146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.00000045818072 + inSlope: -0.000007367557 + outSlope: -0.000007367557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.000000014729832 + inSlope: -0.0000051610004 + outSlope: -0.0000051610004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.00000011411439 + inSlope: 0.0000073675565 + outSlope: 0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.00000047644014 + inSlope: -0.000011744276 + outSlope: -0.000011744276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.00000066884485 + inSlope: -0.000026965892 + outSlope: -0.000026965892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.0000013212925 + inSlope: 0.000020365103 + outSlope: 0.000020365103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.0000006888274 + inSlope: 0.000026966016 + outSlope: 0.000026966016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.00000047644014 + inSlope: 0.00000705948 + outSlope: 0.00000705948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.000001159459 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.00000047644014 + inSlope: -0.000010519184 + outSlope: -0.000010519184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.00000045818072 + inSlope: -0.00000027389146 + outSlope: -0.00000027389146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.00000045818072 + inSlope: -0.0000070936653 + outSlope: -0.0000070936653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.000000014729832 + inSlope: 0.000010519183 + outSlope: 0.000010519183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.000001159459 + inSlope: 0.0000073675565 + outSlope: 0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.00000047644014 + inSlope: -0.000016635677 + outSlope: -0.000016635677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.000000050414897 + inSlope: -0.0000073675565 + outSlope: -0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.000000014729832 + inSlope: 0.0000061164933 + outSlope: 0.0000061164933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.00000045818072 + inSlope: 0.0000019327022 + outSlope: 0.0000019327022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.00000011411439 + inSlope: -0.0000070936285 + outSlope: -0.0000070936285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.000000014729832 + inSlope: 0.0000018667979 + outSlope: 0.0000018667979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.00000023856745 + inSlope: 0.000007093665 + outSlope: 0.000007093665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.00000045818072 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.00000023856745 + inSlope: 0.0000002738916 + outSlope: 0.0000002738916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.00000047644014 + inSlope: 0.000006753906 + outSlope: 0.000006753906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.0000006888274 + inSlope: -0.0000054348907 + outSlope: -0.0000054348907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.00000011411439 + inSlope: -0.0000031858503 + outSlope: -0.0000031858503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.00000047644014 + inSlope: -0.000025532398 + outSlope: -0.000025532398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.0000015880412 + inSlope: -0.0000073675583 + outSlope: -0.0000073675583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.000000014729832 + inSlope: 0.000023599692 + outSlope: 0.000023599692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.000000014729832 + inSlope: 0.0000070936653 + outSlope: 0.0000070936653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.00000045818072 + inSlope: 0.000007367557 + outSlope: 0.000007367557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.00000047644014 + inSlope: -0.0000070936644 + outSlope: -0.0000070936644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.000000014729832 + inSlope: 0.0000086522705 + outSlope: 0.0000086522705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.0000010532652 + inSlope: -0.000019598576 + outSlope: -0.000019598576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.0000013212925 + inSlope: -0.000014087278 + outSlope: -0.000014087278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.00000011411439 + inSlope: 0.000026966016 + outSlope: 0.000026966016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.00000047644014 + inSlope: 0.0000018667979 + outSlope: 0.0000018667979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.00000023856745 + inSlope: -0.0000073675565 + outSlope: -0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.000000014729832 + inSlope: -0.000023397923 + outSlope: -0.000023397923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.0000013212925 + inSlope: 0.0000019325107 + outSlope: 0.0000019325107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.00000011411439 + inSlope: -1.546141e-10 + outSlope: -1.546141e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.0000013212925 + inSlope: -0.0000019325253 + outSlope: -0.0000019325253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.000000014729832 + inSlope: 0.0000195986 + outSlope: 0.0000195986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.000000014729832 + inSlope: 0.000007367556 + outSlope: 0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.00000047644014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.000000014729832 + inSlope: -0.000007367556 + outSlope: -0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.000000014729832 + inSlope: -0.00001959846 + outSlope: -0.00001959846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.0000013212925 + inSlope: 0.0000073675565 + outSlope: 0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.00000047644014 + inSlope: 0.000021531125 + outSlope: 0.000021531125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.00000011411439 + inSlope: -0.0000073675565 + outSlope: -0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.000000014729832 + inSlope: 0.000005434891 + outSlope: 0.000005434891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.00000047644014 + inSlope: 0.000017612849 + outSlope: 0.000017612849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.000001159459 + inSlope: -0.0000073675565 + outSlope: -0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.000000014729832 + inSlope: -0.000010245292 + outSlope: -0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.00000047644014 + inSlope: 0.000007367556 + outSlope: 0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.00000047644014 + inSlope: -0.000017179045 + outSlope: -0.000017179045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.00000066884485 + inSlope: 0.000010245538 + outSlope: 0.000010245538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.000001159459 + inSlope: 0.000009811734 + outSlope: 0.000009811734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.000000014729832 + inSlope: -0.000010519183 + outSlope: -0.000010519183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.00000045818072 + inSlope: 0.000007367557 + outSlope: 0.000007367557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.00000047644014 + inSlope: -0.0000070936644 + outSlope: -0.0000070936644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.00000047644014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.00000047644014 + inSlope: 0.0000070936644 + outSlope: 0.0000070936644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.00000045818072 + inSlope: 0.000008652385 + outSlope: 0.000008652385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.0000010532652 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.00000045818072 + inSlope: -0.000016019942 + outSlope: -0.000016019942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.000000014729832 + inSlope: -0.0000070936653 + outSlope: -0.0000070936653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.000000014729832 + inSlope: 0.0000019326376 + outSlope: 0.0000019326376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.00000011411439 + inSlope: -2.7512215e-11 + outSlope: -2.7512215e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.000000014729832 + inSlope: -0.0000117444 + outSlope: -0.0000117444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: -0.00000066884485 + inSlope: 0.0000073675565 + outSlope: 0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.00000047644014 + inSlope: -0.000009786725 + outSlope: -0.000009786725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.0000013212925 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.00000047644014 + inSlope: 0.000026966016 + outSlope: 0.000026966016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.00000047644014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.00000047644014 + inSlope: -0.0000054348916 + outSlope: -0.0000054348916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.00000011411439 + inSlope: -0.0000073675565 + outSlope: -0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.000000014729832 + inSlope: 0.000005434891 + outSlope: 0.000005434891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.00000047644014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.000000014729832 + inSlope: -0.000007367556 + outSlope: -0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: -0.000000014729832 + inSlope: 0.000007367556 + outSlope: 0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.00000047644014 + inSlope: 0.000017612701 + outSlope: 0.000017612701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.000001159459 + inSlope: -1.4733814e-10 + outSlope: -1.4733814e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.00000047644014 + inSlope: -0.000010245292 + outSlope: -0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.00000047644014 + inSlope: -0.00000027389146 + outSlope: -0.00000027389146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.00000045818072 + inSlope: -0.000026966014 + outSlope: -0.000026966014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.0000013212925 + inSlope: 0.0000002738925 + outSlope: 0.0000002738925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.00000047644014 + inSlope: 0.000037211306 + outSlope: 0.000037211306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.000001159459 + inSlope: -0.0000073675565 + outSlope: -0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.000000014729832 + inSlope: -0.000010519183 + outSlope: -0.000010519183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.00000045818072 + inSlope: 0.0000019326653 + outSlope: 0.0000019326653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.00000011411439 + inSlope: 0.0000002738916 + outSlope: 0.0000002738916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.00000047644014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.00000011411439 + inSlope: 0.000010245292 + outSlope: 0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.000001159459 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.00000011411439 + inSlope: -0.000017612821 + outSlope: -0.000017612821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.000000014729832 + inSlope: 2.7512215e-11 + outSlope: 2.7512215e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.00000011411439 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.000000014729832 + inSlope: 0.0000018667979 + outSlope: 0.0000018667979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.00000023856745 + inSlope: 0.000010553369 + outSlope: 0.000010553369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.0000006888274 + inSlope: -0.0000037994632 + outSlope: -0.0000037994632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.000000014729832 + inSlope: -0.000010553369 + outSlope: -0.000010553369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.000000014729832 + inSlope: -0.00001959846 + outSlope: -0.00001959846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.0000013212925 + inSlope: 0.000007093664 + outSlope: 0.000007093664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.00000045818072 + inSlope: 0.000021531123 + outSlope: 0.000021531123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.00000011411439 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.00000045818072 + inSlope: 0.000005161 + outSlope: 0.000005161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.00000045818072 + inSlope: 0.0000034597037 + outSlope: 0.0000034597037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.0000006888274 + inSlope: -0.000005160999 + outSlope: -0.000005160999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.00000011411439 + inSlope: -0.00001055334 + outSlope: -0.00001055334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.000000014729832 + inSlope: 0.0000054349184 + outSlope: 0.0000054349184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.00000047644014 + inSlope: 0.000017612849 + outSlope: 0.000017612849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.000001159459 + inSlope: -0.0000073675565 + outSlope: -0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.000000014729832 + inSlope: -0.000015680183 + outSlope: -0.000015680183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.00000011411439 + inSlope: 0.0000037994628 + outSlope: 0.0000037994628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.00000023856745 + inSlope: 0.0000018667978 + outSlope: 0.0000018667978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.00000023856745 + inSlope: -0.000003799463 + outSlope: -0.000003799463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.000000014729832 + inSlope: -0.000023397923 + outSlope: -0.000023397923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.0000013212925 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.000000014729832 + inSlope: 0.000026966016 + outSlope: 0.000026966016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: 0.00000047644014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.00000047644014 + inSlope: 0.0000019326644 + outSlope: 0.0000019326644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.00000011411439 + inSlope: -0.0000073675565 + outSlope: -0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.000000014729832 + inSlope: 0.000007367556 + outSlope: 0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.00000047644014 + inSlope: 0.00000732295 + outSlope: 0.00000732295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.0000004734664 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.00000047644014 + inSlope: 0.00000869699 + outSlope: 0.00000869699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.0000010532652 + inSlope: -0.000005434892 + outSlope: -0.000005434892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: 0.00000011411439 + inSlope: -0.000008926276 + outSlope: -0.000008926276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.00000045818072 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.00000011411439 + inSlope: 0.0000002738916 + outSlope: 0.0000002738916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.00000047644014 + inSlope: 0.000005161 + outSlope: 0.000005161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: 0.00000045818072 + inSlope: -0.000007367557 + outSlope: -0.000007367557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: -0.000000014729832 + inSlope: -0.0000070936653 + outSlope: -0.0000070936653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.000000014729832 + inSlope: 0.000001932665 + outSlope: 0.000001932665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: 0.00000011411439 + inSlope: 0.000001932665 + outSlope: 0.000001932665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: 0.00000011411439 + inSlope: -0.000021531125 + outSlope: -0.000021531125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: -0.0000013212925 + inSlope: 0.000008620704 + outSlope: 0.000008620704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.0000006888274 + inSlope: 0.000026692125 + outSlope: 0.000026692125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.00000045818072 + inSlope: -0.0000031858124 + outSlope: -0.0000031858124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.00000047644014 + inSlope: -0.0000070936644 + outSlope: -0.0000070936644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.533334 + value: -0.000000014729832 + inSlope: -0.0000002738907 + outSlope: -0.0000002738907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.566667 + value: 0.00000045818072 + inSlope: 0.000017612849 + outSlope: 0.000017612849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: 0.000001159459 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6333337 + value: 0.00000045818072 + inSlope: -0.000015680183 + outSlope: -0.000015680183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.666667 + value: 0.00000011411439 + inSlope: -0.000005161 + outSlope: -0.000005161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7000003 + value: 0.00000011411439 + inSlope: -0.000001932665 + outSlope: -0.000001932665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: -0.000000014729832 + inSlope: 0.000005434891 + outSlope: 0.000005434891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.766667 + value: 0.00000047644014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8 + value: -0.000000014729832 + inSlope: -0.000007367556 + outSlope: -0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: -0.000000014729832 + inSlope: 0.000007367556 + outSlope: 0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: 0.00000047644014 + inSlope: 0.000007367556 + outSlope: 0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.00000047644014 + inSlope: -0.000007367556 + outSlope: -0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: -0.000000014729832 + inSlope: 0.000003185964 + outSlope: 0.000003185964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: 0.0000006888274 + inSlope: 3.0195224e-10 + outSlope: 3.0195224e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: -0.000000014729832 + inSlope: -0.0000031857671 + outSlope: -0.0000031857671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.066668 + value: 0.00000047644014 + inSlope: 0.0000070935557 + outSlope: 0.0000070935557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.1 + value: 0.00000045818072 + inSlope: -0.000026965638 + outSlope: -0.000026965638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.133334 + value: -0.0000013212925 + inSlope: 7.6397555e-10 + outSlope: 7.6397555e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.166667 + value: 0.00000045818072 + inSlope: 0.000026966392 + outSlope: 0.000026966392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.200001 + value: 0.00000047644014 + inSlope: -0.000003294257 + outSlope: -0.000003294257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.00000023856745 + inSlope: -0.00003096691 + outSlope: -0.00003096691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: -0.0000015880412 + inSlope: -0.0000018660412 + outSlope: -0.0000018660412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: 0.00000011411439 + inSlope: 0.00003069365 + outSlope: 0.00003069365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.333334 + value: 0.00000045818072 + inSlope: 0.0000051609263 + outSlope: 0.0000051609263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.366667 + value: 0.00000045818072 + inSlope: 0.00000027388754 + outSlope: 0.00000027388754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.400001 + value: 0.00000047644014 + inSlope: -0.000007093774 + outSlope: -0.000007093774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: -0.000000014729832 + inSlope: -0.00000027409806 + outSlope: -0.00000027409806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: 0.00000045818072 + inSlope: -2.0327207e-10 + outSlope: -2.0327207e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: -0.000000014729832 + inSlope: 0.000008925946 + outSlope: 0.000008925946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: 0.0000010532652 + inSlope: 0.000001932638 + outSlope: 0.000001932638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.00000011411439 + inSlope: -0.000016019767 + outSlope: -0.000016019767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.6 + value: -0.000000014729832 + inSlope: -0.0000019326928 + outSlope: -0.0000019326928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.633334 + value: -0.000000014729832 + inSlope: -0.00001959874 + outSlope: -0.00001959874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.666667 + value: -0.0000013212925 + inSlope: 0.0000073668907 + outSlope: 0.0000073668907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.700001 + value: 0.00000047644014 + inSlope: 0.00002696563 + outSlope: 0.00002696563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.733334 + value: 0.00000047644014 + inSlope: -0.000007367451 + outSlope: -0.000007367451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.766667 + value: -0.000000014729832 + inSlope: -0.00000027368424 + outSlope: -0.00000027368424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.8 + value: 0.00000045818072 + inSlope: 0.0000037996117 + outSlope: 0.0000037996117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.00000023856745 + inSlope: -0.000007093672 + outSlope: -0.000007093672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.866667 + value: -0.000000014729832 + inSlope: -0.000027398873 + outSlope: -0.000027398873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.900001 + value: -0.0000015880412 + inSlope: 0.0000073683386 + outSlope: 0.0000073683386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.00000047644014 + inSlope: 0.000004002064 + outSlope: 0.000004002064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: -0.0000013212925 + inSlope: 0.000010246207 + outSlope: 0.000010246207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: 0.000001159459 + inSlope: 0.00001959924 + outSlope: 0.00001959924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: -0.000000014729832 + inSlope: -0.000017612598 + outSlope: -0.000017612598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.066668 + value: -0.000000014729832 + inSlope: 0.0000037995173 + outSlope: 0.0000037995173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.1 + value: 0.00000023856745 + inSlope: 1.0868462e-10 + outSlope: 1.0868462e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.133334 + value: -0.000000014729832 + inSlope: -0.0000018667158 + outSlope: -0.0000018667158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.166667 + value: 0.00000011411439 + inSlope: 0.0000073675064 + outSlope: 0.0000073675064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.200001 + value: 0.00000047644014 + inSlope: -0.0000019328477 + outSlope: -0.0000019328477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.233334 + value: -0.000000014729832 + inSlope: -0.000005435024 + outSlope: -0.000005435024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.266667 + value: 0.00000011411439 + inSlope: -5.5251803e-11 + outSlope: -5.5251803e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.3 + value: -0.000000014729832 + inSlope: 0.0000054347584 + outSlope: 0.0000054347584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.333334 + value: 0.00000047644014 + inSlope: -0.000023600243 + outSlope: -0.000023600243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.366667 + value: -0.0000015880412 + inSlope: -0.00000027477654 + outSlope: -0.00000027477654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.400001 + value: 0.00000045818072 + inSlope: 0.00002359915 + outSlope: 0.00002359915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: -0.000000014729832 + inSlope: -0.000005161129 + outSlope: -0.000005161129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.00000011411439 + inSlope: 0.000003865275 + outSlope: 0.000003865275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000038419813 + inSlope: 0.00006408637 + outSlope: 0.00006408637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000025204106 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000038419813 + inSlope: -0.000032043186 + outSlope: -0.000032043186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.00000038419813 + inSlope: 0.000010378686 + outSlope: 0.000010378686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000010761105 + inSlope: 0.000010378686 + outSlope: 0.000010378686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0000010761105 + inSlope: 0.00000056028915 + outSlope: 0.00000056028915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000011134631 + inSlope: 0.00000056028915 + outSlope: 0.00000056028915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0000011134631 + inSlope: -0.00000056028915 + outSlope: -0.00000056028915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000010761105 + inSlope: -0.00000056028915 + outSlope: -0.00000056028915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0000010761105 + inSlope: 0.00001406057 + outSlope: 0.00001406057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0000020134826 + inSlope: -0.000010378699 + outSlope: -0.000010378699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.00000038419813 + inSlope: -0.000013500294 + outSlope: -0.000013500294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0000011134631 + inSlope: 0.000010378685 + outSlope: 0.000010378685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0000010761105 + inSlope: 0.000020117022 + outSlope: 0.000020117022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.000002454599 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0000010761105 + inSlope: -0.000034017536 + outSlope: -0.000034017536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00000018676297 + inSlope: 0.000014060547 + outSlope: 0.000014060547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000020134826 + inSlope: 0.000014167271 + outSlope: 0.000014167271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000113125 + inSlope: -0.000013500305 + outSlope: -0.000013500305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0000011134631 + inSlope: -0.000014167318 + outSlope: -0.000014167318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000018676297 + inSlope: -2.4556357e-11 + outSlope: -2.4556357e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000011134631 + inSlope: -0.0000005869688 + outSlope: -0.0000005869688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.00000014763172 + inSlope: -0.0000005602651 + outSlope: -0.0000005602651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0000010761105 + inSlope: 0.000013927194 + outSlope: 0.000013927194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0000010761105 + inSlope: 0.000000827093 + outSlope: 0.000000827093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.00000113125 + inSlope: -0.00001392717 + outSlope: -0.00001392717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.00000014763172 + inSlope: -0.00000026677753 + outSlope: -0.00000026677753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0000011134631 + inSlope: 0.00003460454 + outSlope: 0.00003460454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000002454599 + inSlope: 7.094059e-11 + outSlope: 7.094059e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0000011134631 + inSlope: -0.000020116988 + outSlope: -0.000020116988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000011134631 + inSlope: -0.0000005602896 + outSlope: -0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.0000010761105 + inSlope: -0.0000022144698 + outSlope: -0.0000022144698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.0000009658315 + inSlope: 5.9117156e-12 + outSlope: 5.9117156e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0000010761105 + inSlope: 0.0000022144757 + outSlope: 0.0000022144757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0000011134631 + inSlope: -0.000013340225 + outSlope: -0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.00000018676297 + inSlope: -5.002221e-11 + outSlope: -5.002221e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0000011134631 + inSlope: 0.000013900465 + outSlope: 0.000013900465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0000011134631 + inSlope: -0.000010938985 + outSlope: -0.000010938985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00000038419813 + inSlope: -0.00000056032695 + outSlope: -0.00000056032695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.0000010761105 + inSlope: 0.0000109389475 + outSlope: 0.0000109389475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.0000011134631 + inSlope: -0.000013340225 + outSlope: -0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.00000018676297 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0000011134631 + inSlope: 0.0000029615694 + outSlope: 0.0000029615694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.00000038419813 + inSlope: -0.000010938946 + outSlope: -0.000010938946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.00000038419813 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.00000038419813 + inSlope: 0.000010938946 + outSlope: 0.000010938946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.0000011134631 + inSlope: -3.9108272e-11 + outSlope: -3.9108272e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.00000038419813 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.0000011134631 + inSlope: 0.00000090713456 + outSlope: 0.00000090713456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.00000044467373 + inSlope: -0.000010938982 + outSlope: -0.000010938982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.00000038419813 + inSlope: 0.000009471563 + outSlope: 0.000009471563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.0000010761105 + inSlope: 0.000010378695 + outSlope: 0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.0000010761105 + inSlope: -0.000013927145 + outSlope: -0.000013927145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.00000014763172 + inSlope: 0.0000008271436 + outSlope: 0.0000008271436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.00000113125 + inSlope: 0.000014487486 + outSlope: 0.000014487486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.0000011134631 + inSlope: -0.00000026680337 + outSlope: -0.00000026680337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.0000011134631 + inSlope: -0.000013900565 + outSlope: -0.000013900565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.00000018676297 + inSlope: 0.00001350006 + outSlope: 0.00001350006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0000020134826 + inSlope: 0.0000139003205 + outSlope: 0.0000139003205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.0000011134631 + inSlope: -0.000014060594 + outSlope: -0.000014060594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.0000011134631 + inSlope: 0.0000005602896 + outSlope: 0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.0000011134631 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.0000011134631 + inSlope: 0.000018462873 + outSlope: 0.000018462873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0000023443201 + inSlope: -0.00000056015415 + outSlope: -0.00000056015415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.0000010761105 + inSlope: 1.3460522e-10 + outSlope: 1.3460522e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.0000023443201 + inSlope: 0.00000056028875 + outSlope: 0.00000056028875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.0000011134631 + inSlope: -0.00001819607 + outSlope: -0.00001819607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.00000113125 + inSlope: 0.000013500305 + outSlope: 0.000013500305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0000020134826 + inSlope: -0.00000082709266 + outSlope: -0.00000082709266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.0000010761105 + inSlope: -0.000013500305 + outSlope: -0.000013500305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.0000011134631 + inSlope: 0.000014060498 + outSlope: 0.000014060498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.0000020134826 + inSlope: -9.640644e-11 + outSlope: -9.640644e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.0000011134631 + inSlope: -0.000013500305 + outSlope: -0.000013500305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.0000011134631 + inSlope: -0.000013900515 + outSlope: -0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.00000018676297 + inSlope: -0.00000056028966 + outSlope: -0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.0000010761105 + inSlope: 0.0000029615303 + outSlope: 0.0000029615303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.00000038419813 + inSlope: 0.00000056028966 + outSlope: 0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.0000011134631 + inSlope: 0.000029401726 + outSlope: 0.000029401726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.0000023443201 + inSlope: -0.0000022146087 + outSlope: -0.0000022146087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.0000009658315 + inSlope: 0.0000016541853 + outSlope: 0.0000016541853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.000002454599 + inSlope: 0.000002214476 + outSlope: 0.000002214476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.0000011134631 + inSlope: -0.000019850255 + outSlope: -0.000019850255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.00000113125 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.0000011134631 + inSlope: -0.000014167318 + outSlope: -0.000014167318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.00000018676297 + inSlope: -0.000013900515 + outSlope: -0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.00000018676297 + inSlope: 0.000013340225 + outSlope: 0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.0000010761105 + inSlope: 0.000014167318 + outSlope: 0.000014167318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.00000113125 + inSlope: 0.00000056028966 + outSlope: 0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.0000011134631 + inSlope: -0.000040180752 + outSlope: -0.000040180752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.0000015474644 + inSlope: -0.00000056028875 + outSlope: -0.00000056028875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.0000010761105 + inSlope: 0.000026013437 + outSlope: 0.000026013437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.00000018676297 + inSlope: -0.000010378717 + outSlope: -0.000010378717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.00000038419813 + inSlope: 0.0000133402045 + outSlope: 0.0000133402045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.0000010761105 + inSlope: 0.00002443929 + outSlope: 0.00002443929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.0000020134826 + inSlope: -0.000013340227 + outSlope: -0.000013340227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.00000018676297 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.0000020134826 + inSlope: 0.000013900517 + outSlope: 0.000013900517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.0000011134631 + inSlope: 0.000006616754 + outSlope: 0.000006616754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.000002454599 + inSlope: -0.0000109389875 + outSlope: -0.0000109389875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.00000038419813 + inSlope: -0.000020117139 + outSlope: -0.000020117139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.0000011134631 + inSlope: -0.0000035485782 + outSlope: -0.0000035485782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.00000014763172 + inSlope: -0.0000005602906 + outSlope: -0.0000005602906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.0000010761105 + inSlope: 0.000013927194 + outSlope: 0.000013927194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.0000010761105 + inSlope: -0.000013340225 + outSlope: -0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.00000018676297 + inSlope: 0.00000056028966 + outSlope: 0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.0000011134631 + inSlope: 0.000013340225 + outSlope: 0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.0000010761105 + inSlope: -0.000010031782 + outSlope: -0.000010031782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.00000044467373 + inSlope: -0.000001654118 + outSlope: -0.000001654118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.0000009658315 + inSlope: -0.00000090713456 + outSlope: -0.00000090713456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.00000038419813 + inSlope: 0.000002214476 + outSlope: 0.000002214476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.0000011134631 + inSlope: 0.00002443929 + outSlope: 0.00002443929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.0000020134826 + inSlope: -0.00000056028966 + outSlope: -0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: 0.0000010761105 + inSlope: -0.00001571478 + outSlope: -0.00001571478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.0000009658315 + inSlope: -0.000010378633 + outSlope: -0.000010378633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.00000038419813 + inSlope: 6.184564e-11 + outSlope: 6.184564e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.0000009658315 + inSlope: 0.000010378707 + outSlope: 0.000010378707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.0000010761105 + inSlope: 0.0000016541978 + outSlope: 0.0000016541978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.0000010761105 + inSlope: 0.0000005602896 + outSlope: 0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.0000011134631 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.0000010761105 + inSlope: -0.0000005602896 + outSlope: -0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.0000010761105 + inSlope: -0.000001654186 + outSlope: -0.000001654186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.0000009658315 + inSlope: 0.00000056028966 + outSlope: 0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.0000011134631 + inSlope: -0.000008724509 + outSlope: -0.000008724509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.00000038419813 + inSlope: -0.00000056028966 + outSlope: -0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.0000010761105 + inSlope: 0.000010938985 + outSlope: 0.000010938985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.0000011134631 + inSlope: 0.000000827093 + outSlope: 0.000000827093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.00000113125 + inSlope: -0.00000056028966 + outSlope: -0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.0000010761105 + inSlope: -0.0000002668034 + outSlope: -0.0000002668034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.0000011134631 + inSlope: 0.0000005602896 + outSlope: 0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.0000011134631 + inSlope: 0.00001846261 + outSlope: 0.00001846261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.0000023443201 + inSlope: 0.00000026654016 + outSlope: 0.00000026654016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.00000113125 + inSlope: -0.000019023162 + outSlope: -0.000019023162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.0000010761105 + inSlope: -0.000014167318 + outSlope: -0.000014167318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.00000018676297 + inSlope: 0.00000056028966 + outSlope: 0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.0000011134631 + inSlope: 0.000013340225 + outSlope: 0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.0000011134631 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.0000011134631 + inSlope: -0.000013340225 + outSlope: -0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.00000018676297 + inSlope: -0.00001003185 + outSlope: -0.00001003185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.00000044467373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.00000018676297 + inSlope: 0.000009471561 + outSlope: 0.000009471561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.0000010761105 + inSlope: 0.000013340225 + outSlope: 0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.0000010761105 + inSlope: -0.000010378547 + outSlope: -0.000010378547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.00000038419813 + inSlope: 1.4824764e-10 + outSlope: 1.4824764e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.0000010761105 + inSlope: 0.000029401857 + outSlope: 0.000029401857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.0000023443201 + inSlope: 0.00000056028875 + outSlope: 0.00000056028875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.0000011134631 + inSlope: -0.00002067735 + outSlope: -0.00002067735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.0000009658315 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.0000011134631 + inSlope: 0.0000022144757 + outSlope: 0.0000022144757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.0000011134631 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.0000011134631 + inSlope: -0.000010938985 + outSlope: -0.000010938985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.00000038419813 + inSlope: -0.00000056028966 + outSlope: -0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.0000010761105 + inSlope: 0.000010938985 + outSlope: 0.000010938985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.0000011134631 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.0000010761105 + inSlope: -0.0000005602896 + outSlope: -0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.0000010761105 + inSlope: 0.0000005602896 + outSlope: 0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.00000113125 + inSlope: -3.808509e-12 + outSlope: -3.808509e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.0000011134631 + inSlope: -0.00000026680337 + outSlope: -0.00000026680337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.0000011134631 + inSlope: -0.000013900515 + outSlope: -0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.00000018676297 + inSlope: -0.000002214476 + outSlope: -0.000002214476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.0000009658315 + inSlope: 0.000013900515 + outSlope: 0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.0000011134631 + inSlope: 0.0000024812791 + outSlope: 0.0000024812791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.00000113125 + inSlope: -0.00000056028966 + outSlope: -0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.0000010761105 + inSlope: -0.000014167318 + outSlope: -0.000014167318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.00000018676297 + inSlope: -0.000010378695 + outSlope: -0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.00000038419813 + inSlope: 0.000013900515 + outSlope: 0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.0000011134631 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.00000038419813 + inSlope: 0.0000002668039 + outSlope: 0.0000002668039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.00000113125 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.00000038419813 + inSlope: -0.0000008272418 + outSlope: -0.0000008272418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.0000010761105 + inSlope: -1.4824764e-10 + outSlope: -1.4824764e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.00000038419813 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.0000010761105 + inSlope: 0.00002443929 + outSlope: 0.00002443929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.0000020134826 + inSlope: 0.000020677347 + outSlope: 0.000020677347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.000002454599 + inSlope: -0.000014060595 + outSlope: -0.000014060595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: 0.0000010761105 + inSlope: -0.00002067735 + outSlope: -0.00002067735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.0000010761105 + inSlope: -0.000001654186 + outSlope: -0.000001654186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.0000009658315 + inSlope: -0.000013340225 + outSlope: -0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.00000018676297 + inSlope: -0.000008724509 + outSlope: -0.000008724509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.00000038419813 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.00000018676297 + inSlope: -0.00000296153 + outSlope: -0.00000296153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.00000018676297 + inSlope: 0.000034017576 + outSlope: 0.000034017576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.000002454599 + inSlope: 0.0000029615294 + outSlope: 0.0000029615294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.00000038419813 + inSlope: -0.0000206775 + outSlope: -0.0000206775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.0000010761105 + inSlope: 0.000010938837 + outSlope: 0.000010938837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.0000011134631 + inSlope: 0.000000827093 + outSlope: 0.000000827093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.00000113125 + inSlope: -0.00000056028966 + outSlope: -0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.0000010761105 + inSlope: -0.000011205788 + outSlope: -0.000011205788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.00000038419813 + inSlope: 0.000014060595 + outSlope: 0.000014060595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.0000020134826 + inSlope: 0.00002443929 + outSlope: 0.00002443929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.0000020134826 + inSlope: -0.000014060594 + outSlope: -0.000014060594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.0000010761105 + inSlope: -0.00001571478 + outSlope: -0.00001571478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.0000009658315 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.0000010761105 + inSlope: 0.0000022144757 + outSlope: 0.0000022144757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: 0.0000011134631 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.0000011134631 + inSlope: -0.000010378695 + outSlope: -0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.00000038419813 + inSlope: -0.00000056028966 + outSlope: -0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.0000010761105 + inSlope: 0.000010378695 + outSlope: 0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.0000010761105 + inSlope: 0.0000005602896 + outSlope: 0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.0000011134631 + inSlope: -0.000033990895 + outSlope: -0.000033990895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: -0.0000011899469 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.0000011134631 + inSlope: 0.000024519333 + outSlope: 0.000024519333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.00000044467373 + inSlope: -0.000010938985 + outSlope: -0.000010938985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: 0.00000038419813 + inSlope: -0.000003868665 + outSlope: -0.000003868665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.00000018676297 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.00000038419813 + inSlope: 0.000013900515 + outSlope: 0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.0000011134631 + inSlope: -0.0000029615303 + outSlope: -0.0000029615303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: 0.00000018676297 + inSlope: -0.00000056028966 + outSlope: -0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: 0.0000010761105 + inSlope: 0.000013340225 + outSlope: 0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.0000010761105 + inSlope: -0.000010378695 + outSlope: -0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: 0.00000038419813 + inSlope: -0.000010378695 + outSlope: -0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: 0.00000038419813 + inSlope: 0.000008724509 + outSlope: 0.000008724509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.0000009658315 + inSlope: 0.000031056043 + outSlope: 0.000031056043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.000002454599 + inSlope: -0.000011686041 + outSlope: -0.000011686041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.00000018676297 + inSlope: -0.00002011706 + outSlope: -0.00002011706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.0000011134631 + inSlope: 0.000013340225 + outSlope: 0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.533334 + value: 0.0000010761105 + inSlope: -0.000013900515 + outSlope: -0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.566667 + value: 0.00000018676297 + inSlope: 0.00000082709266 + outSlope: 0.00000082709266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: 0.00000113125 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6333337 + value: 0.00000018676297 + inSlope: -0.000011205788 + outSlope: -0.000011205788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.666667 + value: 0.00000038419813 + inSlope: 0.00000296153 + outSlope: 0.00000296153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7000003 + value: 0.00000038419813 + inSlope: 0.000010378695 + outSlope: 0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: 0.0000010761105 + inSlope: 0.000010938985 + outSlope: 0.000010938985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.766667 + value: 0.0000011134631 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8 + value: 0.0000010761105 + inSlope: -0.0000005602896 + outSlope: -0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: 0.0000010761105 + inSlope: 0.0000005602896 + outSlope: 0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: 0.0000011134631 + inSlope: 0.0000005602896 + outSlope: 0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.0000011134631 + inSlope: -0.0000005602896 + outSlope: -0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: 0.0000010761105 + inSlope: 0.000020117355 + outSlope: 0.000020117355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: 0.000002454599 + inSlope: 5.9117156e-10 + outSlope: 5.9117156e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: 0.0000010761105 + inSlope: -0.000020116771 + outSlope: -0.000020116771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.066668 + value: 0.0000011134631 + inSlope: -0.000013340433 + outSlope: -0.000013340433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.1 + value: 0.00000018676297 + inSlope: -0.0000022148415 + outSlope: -0.0000022148415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.133334 + value: 0.0000009658315 + inSlope: -3.3378456e-10 + outSlope: -3.3378456e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.166667 + value: 0.00000018676297 + inSlope: 0.0000022141094 + outSlope: 0.0000022141094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.200001 + value: 0.0000011134631 + inSlope: 0.000027400814 + outSlope: 0.000027400814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.0000020134826 + inSlope: -0.000014486891 + outSlope: -0.000014486891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: 0.00000014763172 + inSlope: -0.00002443884 + outSlope: -0.00002443884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.3 + value: 0.00000038419813 + inSlope: 0.00000058706246 + outSlope: 0.00000058706246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.333334 + value: 0.00000018676297 + inSlope: -0.0000029614878 + outSlope: -0.0000029614878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.366667 + value: 0.00000018676297 + inSlope: 0.000013900316 + outSlope: 0.000013900316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.400001 + value: 0.0000011134631 + inSlope: 0.000013340018 + outSlope: 0.000013340018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: 0.0000010761105 + inSlope: -0.000013900332 + outSlope: -0.000013900332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: 0.00000018676297 + inSlope: 3.8198777e-10 + outSlope: 3.8198777e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 0.0000010761105 + inSlope: 0.0000038689914 + outSlope: 0.0000038689914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: 0.00000044467373 + inSlope: -0.000010378547 + outSlope: -0.000010378547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.00000038419813 + inSlope: 0.000009471722 + outSlope: 0.000009471722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.6 + value: 0.0000010761105 + inSlope: 0.000010378843 + outSlope: 0.000010378843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.633334 + value: 0.0000010761105 + inSlope: -0.0000016542097 + outSlope: -0.0000016542097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.666667 + value: 0.0000009658315 + inSlope: 0.0000005602342 + outSlope: 0.0000005602342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.700001 + value: 0.0000011134631 + inSlope: 0.0000022144438 + outSlope: 0.0000022144438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.733334 + value: 0.0000011134631 + inSlope: -0.0000005602816 + outSlope: -0.0000005602816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.766667 + value: 0.0000010761105 + inSlope: -0.000013900698 + outSlope: -0.000013900698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.8 + value: 0.00000018676297 + inSlope: 0.000014060012 + outSlope: 0.000014060012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: 0.0000020134826 + inSlope: 0.000013339633 + outSlope: 0.000013339633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.866667 + value: 0.0000010761105 + inSlope: -0.00002798779 + outSlope: -0.00002798779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.900001 + value: 0.00000014763172 + inSlope: 0.0000005606971 + outSlope: 0.0000005606971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.0000011134631 + inSlope: 0.000012273248 + outSlope: 0.000012273248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: 0.0000009658315 + inSlope: 0.00000026687076 + outSlope: 0.00000026687076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: 0.00000113125 + inSlope: 0.0000016542334 + outSlope: 0.0000016542334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: 0.0000010761105 + inSlope: -0.0000008270812 + outSlope: -0.0000008270812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.066668 + value: 0.0000010761105 + inSlope: 0.000014060795 + outSlope: 0.000014060795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.1 + value: 0.0000020134826 + inSlope: 4.0199666e-10 + outSlope: 4.0199666e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.133334 + value: 0.0000010761105 + inSlope: -0.000024439236 + outSlope: -0.000024439236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.166667 + value: 0.00000038419813 + inSlope: 0.000000559985 + outSlope: 0.000000559985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.200001 + value: 0.0000011134631 + inSlope: 0.0000103785305 + outSlope: 0.0000103785305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.233334 + value: 0.0000010761105 + inSlope: -0.000010938845 + outSlope: -0.000010938845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.266667 + value: 0.00000038419813 + inSlope: 2.9649527e-10 + outSlope: 2.9649527e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.3 + value: 0.0000010761105 + inSlope: 0.000010939125 + outSlope: 0.000010939125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.333334 + value: 0.0000011134631 + inSlope: -0.000013927411 + outSlope: -0.000013927411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.366667 + value: 0.00000014763172 + inSlope: -0.000013900732 + outSlope: -0.000013900732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.400001 + value: 0.00000018676297 + inSlope: 0.000013927377 + outSlope: 0.000013927377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: 0.0000010761105 + inSlope: 0.0000029618695 + outSlope: 0.0000029618695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.00000038419813 + inSlope: -0.000020757094 + outSlope: -0.000020757094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7261668 + inSlope: -0.016767383 + outSlope: -0.016767383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.7155623 + inSlope: 0.036468197 + outSlope: 0.036468197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.72758126 + inSlope: -0.031025086 + outSlope: -0.031025086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.760517 + inSlope: -0.060273767 + outSlope: -0.060273767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.7778736 + inSlope: 0.024372362 + outSlope: 0.024372362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.73944384 + inSlope: 0.021209987 + outSlope: 0.021209987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: -0.72692174 + inSlope: 0.006273693 + outSlope: 0.006273693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.76056594 + inSlope: -0.038581826 + outSlope: -0.038581826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: -0.77764887 + inSlope: 0.004626815 + outSlope: 0.004626815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: -0.7419571 + inSlope: 0.0416163 + outSlope: 0.0416163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: -0.719409 + inSlope: 0.023316428 + outSlope: 0.023316428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.72616684 + inSlope: 0.020983536 + outSlope: 0.020983536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3059772 + inSlope: -0.006951391 + outSlope: -0.006951391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.29067373 + inSlope: -0.078030385 + outSlope: -0.078030385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.28165188 + inSlope: -0.046433095 + outSlope: -0.046433095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.29060435 + inSlope: 0.03773109 + outSlope: 0.03773109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.30849364 + inSlope: 0.067079425 + outSlope: 0.067079425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.31970745 + inSlope: 0.045301154 + outSlope: 0.045301154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.328171 + inSlope: 0.02586941 + outSlope: 0.02586941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.33506456 + inSlope: 0.013250126 + outSlope: 0.013250126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.32894817 + inSlope: -0.026887294 + outSlope: -0.026887294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.30940866 + inSlope: -0.029053267 + outSlope: -0.029053267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.29787955 + inSlope: -0.02243223 + outSlope: -0.02243223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.28510076 + inSlope: -0.02067225 + outSlope: -0.02067225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.28048772 + inSlope: -0.013668103 + outSlope: -0.013668103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.27584407 + inSlope: 0.008446284 + outSlope: 0.008446284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.29900962 + inSlope: 0.041995835 + outSlope: 0.041995835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.3109026 + inSlope: 0.03080967 + outSlope: 0.03080967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.32868364 + inSlope: 0.014855429 + outSlope: 0.014855429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.33054462 + inSlope: -0.008783349 + outSlope: -0.008783349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.566667 + value: 0.32081655 + inSlope: -0.029969243 + outSlope: -0.029969243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.833334 + value: 0.31000966 + inSlope: -0.030934641 + outSlope: -0.030934641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.200001 + value: 0.29576194 + inSlope: -0.021336116 + outSlope: -0.021336116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.733334 + value: 0.27923378 + inSlope: -0.03287383 + outSlope: -0.03287383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.133334 + value: 0.2894661 + inSlope: 0.06328946 + outSlope: 0.06328946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.3059776 + inSlope: 0.02549048 + outSlope: 0.02549048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14358743 + inSlope: 0.021649001 + outSlope: 0.021649001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.14412639 + inSlope: -0.05384825 + outSlope: -0.05384825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.13944452 + inSlope: -0.05835525 + outSlope: -0.05835525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.13729456 + inSlope: -0.097543895 + outSlope: -0.097543895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.13294159 + inSlope: -0.09277762 + outSlope: -0.09277762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.1292322 + inSlope: -0.09976008 + outSlope: -0.09976008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.124458715 + inSlope: -0.112909496 + outSlope: -0.112909496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.11659692 + inSlope: -0.07765928 + outSlope: -0.07765928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.112932146 + inSlope: -0.08247494 + outSlope: -0.08247494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.110372275 + inSlope: 0.026130011 + outSlope: 0.026130011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.11284059 + inSlope: 0.05350104 + outSlope: 0.05350104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.11508625 + inSlope: 0.05764222 + outSlope: 0.05764222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.11902203 + inSlope: 0.025270222 + outSlope: 0.025270222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.12069252 + inSlope: 0.044789523 + outSlope: 0.044789523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.12292031 + inSlope: 0.04145911 + outSlope: 0.04145911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.12483796 + inSlope: 0.050056513 + outSlope: 0.050056513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.12737097 + inSlope: 0.016261552 + outSlope: 0.016261552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.13006279 + inSlope: 0.0074055702 + outSlope: 0.0074055702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.13502637 + inSlope: 0.026083104 + outSlope: 0.026083104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.13750751 + inSlope: 0.034833565 + outSlope: 0.034833565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.14266549 + inSlope: 0.014773564 + outSlope: 0.014773564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.14768611 + inSlope: 0.009498792 + outSlope: 0.009498792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.14654884 + inSlope: -0.010607029 + outSlope: -0.010607029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.14359444 + inSlope: -0.010658821 + outSlope: -0.010658821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.14108151 + inSlope: -0.013004479 + outSlope: -0.013004479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.1384557 + inSlope: -0.010926659 + outSlope: -0.010926659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.13529375 + inSlope: -0.012030389 + outSlope: -0.012030389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.13064589 + inSlope: -0.013573108 + outSlope: -0.013573108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.12879021 + inSlope: -0.0047217887 + outSlope: -0.0047217887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.12707895 + inSlope: -0.011701595 + outSlope: -0.011701595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.124869555 + inSlope: -0.01012356 + outSlope: -0.01012356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.123927005 + inSlope: 0.0014265978 + outSlope: 0.0014265978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.11977366 + inSlope: -0.017290875 + outSlope: -0.017290875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.116321504 + inSlope: -0.008095138 + outSlope: -0.008095138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.10937009 + inSlope: 0.0041311644 + outSlope: 0.0041311644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.10539893 + inSlope: -0.012359798 + outSlope: -0.012359798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.10697446 + inSlope: 0.04143827 + outSlope: 0.04143827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.11079275 + inSlope: 0.025417307 + outSlope: 0.025417307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.11527108 + inSlope: 0.027415369 + outSlope: 0.027415369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.11622553 + inSlope: 0.059229266 + outSlope: 0.059229266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.11921969 + inSlope: 0.047866747 + outSlope: 0.047866747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.119681895 + inSlope: 0.026667442 + outSlope: 0.026667442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.121586345 + inSlope: 0.007368594 + outSlope: 0.007368594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.12219446 + inSlope: 0.027564306 + outSlope: 0.027564306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.12392619 + inSlope: 0.0056447145 + outSlope: 0.0056447145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.12523353 + inSlope: -0.00594104 + outSlope: -0.00594104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.12399643 + inSlope: -0.0016764916 + outSlope: -0.0016764916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: 0.1255694 + inSlope: 0.0037479436 + outSlope: 0.0037479436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.12750101 + inSlope: 0.0056798067 + outSlope: 0.0056798067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: 0.12860398 + inSlope: -0.03326635 + outSlope: -0.03326635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.12620099 + inSlope: -0.017331332 + outSlope: -0.017331332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.12255007 + inSlope: -0.010178098 + outSlope: -0.010178098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6333337 + value: 0.11946426 + inSlope: -0.022310972 + outSlope: -0.022310972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.766667 + value: 0.11836045 + inSlope: -0.0032619045 + outSlope: -0.0032619045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: 0.11590256 + inSlope: -0.036197722 + outSlope: -0.036197722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.1 + value: 0.11300817 + inSlope: -0.01762524 + outSlope: -0.01762524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: 0.11226302 + inSlope: -0.012937421 + outSlope: -0.012937421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: 0.1104439 + inSlope: -0.008698564 + outSlope: -0.008698564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.633334 + value: 0.10631059 + inSlope: -0.016214775 + outSlope: -0.016214775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.766667 + value: 0.104893155 + inSlope: -0.02198291 + outSlope: -0.02198291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.10404737 + inSlope: 0.007674951 + outSlope: 0.007674951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: 0.106273375 + inSlope: 0.072249904 + outSlope: 0.072249904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.133334 + value: 0.11896259 + inSlope: 0.08994712 + outSlope: 0.08994712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.3 + value: 0.13520607 + inSlope: 0.0836439 + outSlope: 0.0836439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.14358722 + inSlope: 0.01321328 + outSlope: 0.01321328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.66521066 + inSlope: -0.009046196 + outSlope: -0.009046196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6955081 + inSlope: 0.011957278 + outSlope: 0.011957278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.67118335 + inSlope: -0.086112246 + outSlope: -0.086112246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.6282459 + inSlope: -0.05521422 + outSlope: -0.05521422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.60690314 + inSlope: -0.015987752 + outSlope: -0.015987752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.5889066 + inSlope: -0.011492383 + outSlope: -0.011492383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.6017417 + inSlope: 0.086828336 + outSlope: 0.086828336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.65392715 + inSlope: 0.080317035 + outSlope: 0.080317035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.67867535 + inSlope: 0.044026718 + outSlope: 0.044026718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.69839674 + inSlope: 0.04499034 + outSlope: 0.04499034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.7124702 + inSlope: 0.010554503 + outSlope: 0.010554503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.71822906 + inSlope: -0.0030800728 + outSlope: -0.0030800728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.7150558 + inSlope: -0.08406856 + outSlope: -0.08406856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.68262315 + inSlope: -0.1424308 + outSlope: -0.1424308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.66248614 + inSlope: -0.14682159 + outSlope: -0.14682159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.63080156 + inSlope: -0.044877872 + outSlope: -0.044877872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.6007539 + inSlope: -0.02170267 + outSlope: -0.02170267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: 0.6100711 + inSlope: 0.08477408 + outSlope: 0.08477408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6333337 + value: 0.631423 + inSlope: 0.11753451 + outSlope: 0.11753451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: 0.6607309 + inSlope: 0.10636005 + outSlope: 0.10636005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.366667 + value: 0.68472284 + inSlope: 0.07881623 + outSlope: 0.07881623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.266667 + value: 0.6861828 + inSlope: -0.1136328 + outSlope: -0.1136328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.6652106 + inSlope: -0.08813085 + outSlope: -0.08813085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.050941385 + inSlope: -0.008779094 + outSlope: -0.008779094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.05123402 + inSlope: 0.021669509 + outSlope: 0.021669509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04949675 + inSlope: 0.15652795 + outSlope: 0.15652795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.040798824 + inSlope: 0.5958865 + outSlope: 0.5958865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.009770981 + inSlope: 0.7953264 + outSlope: 0.7953264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.012222936 + inSlope: 0.7429956 + outSlope: 0.7429956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.03976207 + inSlope: 1.3728576 + outSlope: 1.3728576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.10374678 + inSlope: 1.4803776 + outSlope: 1.4803776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.1384539 + inSlope: 1.0509219 + outSlope: 1.0509219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.17380823 + inSlope: 1.547267 + outSlope: 1.547267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.24160503 + inSlope: 1.4997857 + outSlope: 1.4997857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.27379394 + inSlope: 0.83064926 + outSlope: 0.83064926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.33463934 + inSlope: 0.5895221 + outSlope: 0.5895221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.35608456 + inSlope: 0.40174463 + outSlope: 0.40174463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.36322907 + inSlope: -0.008094516 + outSlope: -0.008094516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.35538548 + inSlope: -0.013943899 + outSlope: -0.013943899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.34421685 + inSlope: 0.007957659 + outSlope: 0.007957659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.33639297 + inSlope: 0.01155005 + outSlope: 0.01155005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.34483206 + inSlope: 0.015635505 + outSlope: 0.015635505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.3548736 + inSlope: 0.03464255 + outSlope: 0.03464255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.36318713 + inSlope: 0.015467867 + outSlope: 0.015467867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.3729742 + inSlope: 0.038250126 + outSlope: 0.038250126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.37879598 + inSlope: 0.0063617583 + outSlope: 0.0063617583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.3816275 + inSlope: 0.020214487 + outSlope: 0.020214487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.36796638 + inSlope: -0.029074077 + outSlope: -0.029074077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.35710967 + inSlope: -0.028624114 + outSlope: -0.028624114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.3431676 + inSlope: -0.030149398 + outSlope: -0.030149398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.3329418 + inSlope: -0.036877282 + outSlope: -0.036877282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.31681126 + inSlope: -0.016931461 + outSlope: -0.016931461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.566667 + value: 0.32327485 + inSlope: 0.01706244 + outSlope: 0.01706244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: 0.33132672 + inSlope: 0.031617016 + outSlope: 0.031617016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.200001 + value: 0.34060222 + inSlope: 0.019105878 + outSlope: 0.019105878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: 0.3495766 + inSlope: 0.02934613 + outSlope: 0.02934613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.8 + value: 0.36210918 + inSlope: 0.018149214 + outSlope: 0.018149214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: 0.35621697 + inSlope: -0.163346 + outSlope: -0.163346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: 0.34915817 + inSlope: -0.39214683 + outSlope: -0.39214683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.033334 + value: 0.30849624 + inSlope: -0.68012714 + outSlope: -0.68012714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.400001 + value: 0.0004515243 + inSlope: -0.81420887 + outSlope: -0.81420887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.433333 + value: -0.026092513 + inSlope: -0.7708932 + outSlope: -0.7708932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.05094128 + inSlope: -0.7454531 + outSlope: -0.7454531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11305987 + inSlope: 0.000095888965 + outSlope: 0.000095888965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.11096811 + inSlope: 0.14525321 + outSlope: 0.14525321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.103373125 + inSlope: 0.4698752 + outSlope: 0.4698752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0796431 + inSlope: 0.56922513 + outSlope: 0.56922513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.065424785 + inSlope: 0.42800045 + outSlope: 0.42800045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.05110973 + inSlope: 0.5866703 + outSlope: 0.5866703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.02631343 + inSlope: 0.523247 + outSlope: 0.523247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.016226599 + inSlope: 0.2225425 + outSlope: 0.2225425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.011477265 + inSlope: 0.09974127 + outSlope: 0.09974127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.009577181 + inSlope: -0.031207295 + outSlope: -0.031207295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.013557751 + inSlope: -0.15008819 + outSlope: -0.15008819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.019583065 + inSlope: -0.20128208 + outSlope: -0.20128208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.026976561 + inSlope: -0.25310823 + outSlope: -0.25310823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.036456946 + inSlope: -0.37853432 + outSlope: -0.37853432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.052212168 + inSlope: -0.31340253 + outSlope: -0.31340253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.057350438 + inSlope: -0.089438744 + outSlope: -0.089438744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.058174755 + inSlope: 0.04504978 + outSlope: 0.04504978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.054347124 + inSlope: 0.08805818 + outSlope: 0.08805818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.050075673 + inSlope: 0.10745972 + outSlope: 0.10745972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.04514023 + inSlope: 0.11586007 + outSlope: 0.11586007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.040043026 + inSlope: 0.06671559 + outSlope: 0.06671559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.03559171 + inSlope: 0.09091541 + outSlope: 0.09091541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.03184293 + inSlope: 0.08451597 + outSlope: 0.08451597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.029957311 + inSlope: 0.05516927 + outSlope: 0.05516927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.028164977 + inSlope: 0.09644538 + outSlope: 0.09644538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.023527622 + inSlope: 0.10494634 + outSlope: 0.10494634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.019066392 + inSlope: 0.08017734 + outSlope: 0.08017734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.015823403 + inSlope: 0.07017496 + outSlope: 0.07017496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.014388065 + inSlope: 0.03663812 + outSlope: 0.03663812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.012350328 + inSlope: 0.03380964 + outSlope: 0.03380964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.011126887 + inSlope: 0.049727395 + outSlope: 0.049727395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.009035172 + inSlope: 0.04466699 + outSlope: 0.04466699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.008149087 + inSlope: 0.023545839 + outSlope: 0.023545839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.0074654478 + inSlope: 0.023416188 + outSlope: 0.023416188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0065880097 + inSlope: 0.017923316 + outSlope: 0.017923316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.00627056 + inSlope: 0.009593688 + outSlope: 0.009593688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.0056056837 + inSlope: 0.013254721 + outSlope: 0.013254721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0050647827 + inSlope: 0.027257204 + outSlope: 0.027257204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.0037885339 + inSlope: 0.027791664 + outSlope: 0.027791664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.0032120023 + inSlope: 0.009037384 + outSlope: 0.009037384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.0031860422 + inSlope: 0.0007916002 + outSlope: 0.0007916002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.003159229 + inSlope: 0.00026614172 + outSlope: 0.00026614172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.0031682993 + inSlope: -0.006736486 + outSlope: -0.006736486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.0036083276 + inSlope: -0.014151655 + outSlope: -0.014151655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.004111742 + inSlope: -0.003359831 + outSlope: -0.003359831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.003832315 + inSlope: 0.008410366 + outSlope: 0.008410366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.0035510506 + inSlope: 0.013381404 + outSlope: 0.013381404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.0029402224 + inSlope: 0.022801565 + outSlope: 0.022801565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.0020309477 + inSlope: 0.040466595 + outSlope: 0.040466595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.00024244555 + inSlope: 0.040882263 + outSlope: 0.040882263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.00069454033 + inSlope: 0.023974776 + outSlope: 0.023974776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.0013558714 + inSlope: 0.039489422 + outSlope: 0.039489422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.003327173 + inSlope: 0.04323011 + outSlope: 0.04323011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0042378795 + inSlope: 0.024597077 + outSlope: 0.024597077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0049669784 + inSlope: 0.02263808 + outSlope: 0.02263808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.0057470887 + inSlope: 0.010275818 + outSlope: 0.010275818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.0056520323 + inSlope: -0.0028533703 + outSlope: -0.0028533703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.004992904 + inSlope: -0.0027189942 + outSlope: -0.0027189942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.004484757 + inSlope: -0.022352 + outSlope: -0.022352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.0034117964 + inSlope: -0.027096875 + outSlope: -0.027096875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.0026783003 + inSlope: -0.02181615 + outSlope: -0.02181615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.0019573828 + inSlope: -0.022486918 + outSlope: -0.022486918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.0011791687 + inSlope: -0.026760612 + outSlope: -0.026760612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.0001733437 + inSlope: -0.046951037 + outSlope: -0.046951037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.0019508974 + inSlope: -0.048522238 + outSlope: -0.048522238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.003061469 + inSlope: -0.03403738 + outSlope: -0.03403738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.004220054 + inSlope: -0.047269944 + outSlope: -0.047269944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.0062127956 + inSlope: -0.048497096 + outSlope: -0.048497096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.0074531995 + inSlope: -0.039081763 + outSlope: -0.039081763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.008818253 + inSlope: -0.066621654 + outSlope: -0.066621654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.011894639 + inSlope: -0.07428542 + outSlope: -0.07428542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.013770609 + inSlope: -0.05339431 + outSlope: -0.05339431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.017175274 + inSlope: -0.056406226 + outSlope: -0.056406226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.019214667 + inSlope: -0.08511286 + outSlope: -0.08511286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.022849485 + inSlope: -0.08027664 + outSlope: -0.08027664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.026199857 + inSlope: -0.071529776 + outSlope: -0.071529776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.029335111 + inSlope: -0.069995165 + outSlope: -0.069995165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.03233393 + inSlope: -0.063238025 + outSlope: -0.063238025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.03508206 + inSlope: -0.062197544 + outSlope: -0.062197544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.03764439 + inSlope: -0.035236884 + outSlope: -0.035236884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.03882956 + inSlope: -0.03593275 + outSlope: -0.03593275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: -0.040039904 + inSlope: -0.061406605 + outSlope: -0.061406605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.04292333 + inSlope: -0.065714575 + outSlope: -0.065714575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.045945562 + inSlope: -0.064244896 + outSlope: -0.064244896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.04870386 + inSlope: -0.058729973 + outSlope: -0.058729973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.050797433 + inSlope: -0.035881452 + outSlope: -0.035881452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.05297007 + inSlope: -0.020490084 + outSlope: -0.020490084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.055407092 + inSlope: -0.047788173 + outSlope: -0.047788173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.05759028 + inSlope: -0.0493799 + outSlope: -0.0493799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.059721563 + inSlope: -0.040657632 + outSlope: -0.040657632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.061409604 + inSlope: -0.03553254 + outSlope: -0.03553254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.06370298 + inSlope: -0.02967201 + outSlope: -0.02967201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.065700255 + inSlope: -0.023424517 + outSlope: -0.023424517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.06932563 + inSlope: -0.023602456 + outSlope: -0.023602456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.07125528 + inSlope: -0.0035754996 + outSlope: -0.0035754996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.07190425 + inSlope: -0.010038735 + outSlope: -0.010038735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: -0.07435214 + inSlope: -0.016866082 + outSlope: -0.016866082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.077958606 + inSlope: -0.004951139 + outSlope: -0.004951139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.078618765 + inSlope: -0.02840898 + outSlope: -0.02840898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.08107967 + inSlope: -0.010194008 + outSlope: -0.010194008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: -0.08059239 + inSlope: 0.023919404 + outSlope: 0.023919404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.079069406 + inSlope: 0.034184337 + outSlope: 0.034184337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: -0.076996684 + inSlope: 0.018555988 + outSlope: 0.018555988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.0733255 + inSlope: 0.028182779 + outSlope: 0.028182779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: -0.07097181 + inSlope: 0.062374383 + outSlope: 0.062374383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.0681595 + inSlope: 0.06367126 + outSlope: 0.06367126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.06525246 + inSlope: 0.06511097 + outSlope: 0.06511097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.062386315 + inSlope: 0.06915133 + outSlope: 0.06915133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.058656786 + inSlope: 0.0977494 + outSlope: 0.0977494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.054125756 + inSlope: 0.10801087 + outSlope: 0.10801087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.049135037 + inSlope: 0.06952712 + outSlope: 0.06952712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.044205505 + inSlope: 0.10398437 + outSlope: 0.10398437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.039888646 + inSlope: 0.09069071 + outSlope: 0.09069071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.036647756 + inSlope: 0.057326797 + outSlope: 0.057326797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.03433768 + inSlope: 0.052085005 + outSlope: 0.052085005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.032441296 + inSlope: 0.0205178 + outSlope: 0.0205178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.031825244 + inSlope: -0.021265803 + outSlope: -0.021265803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.033225276 + inSlope: -0.041294605 + outSlope: -0.041294605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.036108788 + inSlope: -0.058760326 + outSlope: -0.058760326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.038495567 + inSlope: -0.03841212 + outSlope: -0.03841212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.038669594 + inSlope: -0.0055136774 + outSlope: -0.0055136774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.038863145 + inSlope: 0.018459316 + outSlope: 0.018459316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.037438974 + inSlope: 0.037069447 + outSlope: 0.037069447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.034523536 + inSlope: 0.029904023 + outSlope: 0.029904023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.033433598 + inSlope: 0.046631247 + outSlope: 0.046631247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.031414773 + inSlope: 0.04647848 + outSlope: 0.04647848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.029211199 + inSlope: 0.05197967 + outSlope: 0.05197967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.026869727 + inSlope: 0.051637266 + outSlope: 0.051637266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.024764668 + inSlope: 0.041545726 + outSlope: 0.041545726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.022999005 + inSlope: 0.03923894 + outSlope: 0.03923894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.021437466 + inSlope: 0.02203149 + outSlope: 0.02203149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.019712072 + inSlope: 0.044008415 + outSlope: 0.044008415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.017746085 + inSlope: 0.044005007 + outSlope: 0.044005007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.01589517 + inSlope: 0.03521025 + outSlope: 0.03521025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.014431039 + inSlope: 0.030311681 + outSlope: 0.030311681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.013505284 + inSlope: 0.01090685 + outSlope: 0.01090685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.012760303 + inSlope: 0.0015483346 + outSlope: 0.0015483346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.012786339 + inSlope: 0.006981629 + outSlope: 0.006981629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: -0.0122948615 + inSlope: 0.004172948 + outSlope: 0.004172948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: -0.012508143 + inSlope: -0.006433019 + outSlope: -0.006433019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: -0.012723729 + inSlope: -0.022924738 + outSlope: -0.022924738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: -0.014036457 + inSlope: -0.036249153 + outSlope: -0.036249153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.015140337 + inSlope: -0.034738228 + outSlope: -0.034738228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: -0.016352337 + inSlope: -0.05193676 + outSlope: -0.05193676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.018602816 + inSlope: -0.04947752 + outSlope: -0.04947752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.02048615 + inSlope: -0.024976838 + outSlope: -0.024976838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.021315988 + inSlope: -0.02840501 + outSlope: -0.02840501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.022379816 + inSlope: -0.05373241 + outSlope: -0.05373241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.533334 + value: -0.024898145 + inSlope: -0.060479037 + outSlope: -0.060479037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: -0.028023276 + inSlope: -0.07070924 + outSlope: -0.07070924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6333337 + value: -0.031125693 + inSlope: -0.0669832 + outSlope: -0.0669832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7000003 + value: -0.033690546 + inSlope: -0.046728484 + outSlope: -0.046728484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: -0.03560405 + inSlope: -0.043638743 + outSlope: -0.043638743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: -0.039857566 + inSlope: -0.055806205 + outSlope: -0.055806205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: -0.042281102 + inSlope: -0.05188213 + outSlope: -0.05188213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.966667 + value: -0.044076305 + inSlope: -0.039640024 + outSlope: -0.039640024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: -0.04595901 + inSlope: -0.04525371 + outSlope: -0.04525371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.066668 + value: -0.04826534 + inSlope: -0.056780607 + outSlope: -0.056780607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.1 + value: -0.050878555 + inSlope: -0.05817869 + outSlope: -0.05817869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.05419451 + inSlope: -0.021828076 + outSlope: -0.021828076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.333334 + value: -0.056138143 + inSlope: -0.033861402 + outSlope: -0.033861402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.400001 + value: -0.058800127 + inSlope: -0.029329848 + outSlope: -0.029329848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: -0.06165805 + inSlope: -0.03829516 + outSlope: -0.03829516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.533334 + value: -0.06319801 + inSlope: -0.030116279 + outSlope: -0.030116279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.6 + value: -0.06452504 + inSlope: -0.046810996 + outSlope: -0.046810996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.633334 + value: -0.06678658 + inSlope: -0.05610421 + outSlope: -0.05610421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.700001 + value: -0.06981525 + inSlope: -0.064376235 + outSlope: -0.064376235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.733334 + value: -0.072557054 + inSlope: -0.05647489 + outSlope: -0.05647489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: -0.07418698 + inSlope: -0.0038514694 + outSlope: -0.0038514694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: -0.070801035 + inSlope: 0.12262106 + outSlope: 0.12262106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: -0.06557683 + inSlope: 0.037722267 + outSlope: 0.037722267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: -0.068286106 + inSlope: -0.0954359 + outSlope: -0.0954359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.333334 + value: -0.11279343 + inSlope: -0.068282075 + outSlope: -0.068282075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.113059655 + inSlope: 0.05131802 + outSlope: 0.05131802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.25099513 + inSlope: 0.000018775461 + outSlope: 0.000018775461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.24952812 + inSlope: 0.123198986 + outSlope: 0.123198986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.24278124 + inSlope: 0.4340223 + outSlope: 0.4340223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.2205933 + inSlope: 0.5500245 + outSlope: 0.5500245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.18939218 + inSlope: 0.74529976 + outSlope: 0.74529976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.15642628 + inSlope: 0.7119723 + outSlope: 0.7119723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.14192736 + inSlope: 0.4025274 + outSlope: 0.4025274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.12959112 + inSlope: 0.4190023 + outSlope: 0.4190023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.113993876 + inSlope: 0.28741413 + outSlope: 0.28741413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.11043018 + inSlope: 0.065520324 + outSlope: 0.065520324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.11234054 + inSlope: -0.098832875 + outSlope: -0.098832875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.11692579 + inSlope: -0.09598323 + outSlope: -0.09598323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.12057447 + inSlope: -0.011592733 + outSlope: -0.011592733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.124513395 + inSlope: -0.0073399805 + outSlope: -0.0073399805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.12691885 + inSlope: 0.0031721555 + outSlope: 0.0031721555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.12724894 + inSlope: 0.002942386 + outSlope: 0.002942386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.12693416 + inSlope: 0.0007767286 + outSlope: 0.0007767286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.12722167 + inSlope: 0.008955904 + outSlope: 0.008955904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.12420788 + inSlope: 0.006118236 + outSlope: 0.006118236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.12021334 + inSlope: 0.009831628 + outSlope: 0.009831628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.118905514 + inSlope: 0.012875925 + outSlope: 0.012875925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.11735045 + inSlope: 0.009537274 + outSlope: 0.009537274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.11549165 + inSlope: 0.0041264705 + outSlope: 0.0041264705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.11553329 + inSlope: 0.011844534 + outSlope: 0.011844534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.114897616 + inSlope: 0.0005646065 + outSlope: 0.0005646065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.11679862 + inSlope: -0.0049195113 + outSlope: -0.0049195113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.12124317 + inSlope: 0.0041742814 + outSlope: 0.0041742814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.11813369 + inSlope: 0.014961824 + outSlope: 0.014961824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.11907699 + inSlope: 0.0010282808 + outSlope: 0.0010282808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: -0.12106134 + inSlope: -0.0043030498 + outSlope: -0.0043030498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.121443346 + inSlope: 0.004220572 + outSlope: 0.004220572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6333337 + value: -0.11992801 + inSlope: 0.0074451487 + outSlope: 0.0074451487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: -0.11852262 + inSlope: 0.008021265 + outSlope: 0.008021265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.133334 + value: -0.11743964 + inSlope: 0.007007229 + outSlope: 0.007007229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.466667 + value: -0.117678314 + inSlope: 0.002766362 + outSlope: 0.002766362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.733334 + value: -0.116439 + inSlope: 0.014885236 + outSlope: 0.014885236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.833334 + value: -0.116132386 + inSlope: -0.0023494258 + outSlope: -0.0023494258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.866667 + value: -0.11628543 + inSlope: 0.07067318 + outSlope: 0.07067318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.900001 + value: -0.11142077 + inSlope: 0.12278919 + outSlope: 0.12278919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.933333 + value: -0.10809947 + inSlope: 0.0993613 + outSlope: 0.0993613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.966667 + value: -0.10479669 + inSlope: 0.022301154 + outSlope: 0.022301154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9 + value: -0.10661265 + inSlope: -0.05650746 + outSlope: -0.05650746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.233334 + value: -0.14127418 + inSlope: -0.30417135 + outSlope: -0.30417135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.25099587 + inSlope: -0.5831366 + outSlope: -0.5831366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3385053 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -1.3385053 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23385438 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.23385438 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5763953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.5763953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.809624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.809624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3384516 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -1.3384516 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45863363 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.45863363 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5297126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.5297126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9042923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: -0.9042923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12709586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.12709586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865395 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.80865395 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 9.466667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 9.466667 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Breathing.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Breathing.anim.meta new file mode 100644 index 0000000..9390a82 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Breathing.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 3e8b019130a71d04192187428b660fbf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Breathing.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Look_Around.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Look_Around.anim new file mode 100644 index 0000000..24b0361 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Look_Around.anim @@ -0,0 +1,46857 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle_Look_Around + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.011594548 + inSlope: 0.017183153 + outSlope: 0.017183153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.01001533 + inSlope: 0.04009071 + outSlope: 0.04009071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0035455541 + inSlope: 0.084184155 + outSlope: 0.084184155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00053903327 + inSlope: 0.09449421 + outSlope: 0.09449421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.021068696 + inSlope: 0.10690856 + outSlope: 0.10690856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.033007286 + inSlope: 0.06255716 + outSlope: 0.06255716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.035348613 + inSlope: -0.01917781 + outSlope: -0.01917781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.034230184 + inSlope: -0.027838208 + outSlope: -0.027838208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.031449594 + inSlope: -0.036749974 + outSlope: -0.036749974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.024650846 + inSlope: -0.024606917 + outSlope: -0.024606917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0221614 + inSlope: -0.032018986 + outSlope: -0.032018986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.019092489 + inSlope: -0.018861312 + outSlope: -0.018861312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.01842708 + inSlope: 0.0018308328 + outSlope: 0.0018308328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.019235829 + inSlope: 0.0036735649 + outSlope: 0.0036735649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.021556683 + inSlope: 0.008880286 + outSlope: 0.008880286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.024169862 + inSlope: 0.0066600135 + outSlope: 0.0066600135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.025040029 + inSlope: 0.003445217 + outSlope: 0.003445217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.021913545 + inSlope: -0.020612434 + outSlope: -0.020612434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.019266954 + inSlope: 0.0002894724 + outSlope: 0.0002894724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.020144664 + inSlope: 0.0053554266 + outSlope: 0.0053554266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.02066661 + inSlope: 0.012728686 + outSlope: 0.012728686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.0214909 + inSlope: 0.006169869 + outSlope: 0.006169869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.022078354 + inSlope: 0.015526596 + outSlope: 0.015526596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.023796767 + inSlope: 0.0071112695 + outSlope: 0.0071112695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.025534544 + inSlope: 0.00215552 + outSlope: 0.00215552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.024869788 + inSlope: -0.011082742 + outSlope: -0.011082742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.024455978 + inSlope: 0.015200065 + outSlope: 0.015200065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.028612345 + inSlope: 0.04327122 + outSlope: 0.04327122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.040443514 + inSlope: 0.05879845 + outSlope: 0.05879845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.048936043 + inSlope: 0.076015376 + outSlope: 0.076015376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.055272475 + inSlope: 0.03697015 + outSlope: 0.03697015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.057747975 + inSlope: -0.00042870687 + outSlope: -0.00042870687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.055301208 + inSlope: -0.013218442 + outSlope: -0.013218442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.05111159 + inSlope: -0.0113067515 + outSlope: -0.0113067515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.04877985 + inSlope: 0.000054650067 + outSlope: 0.000054650067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.047498904 + inSlope: -0.017165206 + outSlope: -0.017165206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.04445319 + inSlope: -0.020054504 + outSlope: -0.020054504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.039370343 + inSlope: -0.013581671 + outSlope: -0.013581671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.034120366 + inSlope: -0.010034097 + outSlope: -0.010034097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.033910017 + inSlope: 0.009624141 + outSlope: 0.009624141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.03673235 + inSlope: 0.012063246 + outSlope: 0.012063246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.037989467 + inSlope: 0.0017931568 + outSlope: 0.0017931568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.03657266 + inSlope: -0.04681901 + outSlope: -0.04681901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.0014301103 + inSlope: -0.10958725 + outSlope: -0.10958725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: -0.002070563 + inSlope: -0.098559365 + outSlope: -0.098559365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.009647168 + inSlope: -0.047802173 + outSlope: -0.047802173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.010878865 + inSlope: 0.0096014235 + outSlope: 0.0096014235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.009007074 + inSlope: 0.056153774 + outSlope: 0.056153774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9726012 + inSlope: 0.06995916 + outSlope: 0.06995916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9581883 + inSlope: 0.0059607634 + outSlope: 0.0059607634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.9599621 + inSlope: -0.024840733 + outSlope: -0.024840733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.96222377 + inSlope: 0.001623632 + outSlope: 0.001623632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.9562504 + inSlope: -0.05560135 + outSlope: -0.05560135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.9576042 + inSlope: 0.008313067 + outSlope: 0.008313067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.9510805 + inSlope: -0.009067664 + outSlope: -0.009067664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: 0.97064686 + inSlope: 0.0011381519 + outSlope: 0.0011381519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.97534186 + inSlope: 0.0021618626 + outSlope: 0.0021618626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03442516 + inSlope: -0.00036165115 + outSlope: -0.00036165115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.033526532 + inSlope: 0.035686675 + outSlope: 0.035686675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0003112603 + inSlope: 0.10596317 + outSlope: 0.10596317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0031590776 + inSlope: 0.09988101 + outSlope: 0.09988101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.009287013 + inSlope: 0.08457386 + outSlope: 0.08457386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.011985732 + inSlope: 0.07026582 + outSlope: 0.07026582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.015377734 + inSlope: 0.036687337 + outSlope: 0.036687337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.016417224 + inSlope: 0.036503464 + outSlope: 0.036503464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.01892915 + inSlope: 0.027721671 + outSlope: 0.027721671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.02004793 + inSlope: 0.0018463405 + outSlope: 0.0018463405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.019310454 + inSlope: -0.014669895 + outSlope: -0.014669895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.018515687 + inSlope: 0.0033808718 + outSlope: 0.0033808718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.020988869 + inSlope: -0.0063712024 + outSlope: -0.0063712024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.020416906 + inSlope: -0.0013667408 + outSlope: -0.0013667408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.020772107 + inSlope: 0.001918368 + outSlope: 0.001918368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.020935591 + inSlope: 0.0043833936 + outSlope: 0.0043833936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.021292266 + inSlope: 0.0028078565 + outSlope: 0.0028078565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.02273178 + inSlope: 0.008546209 + outSlope: 0.008546209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.024063945 + inSlope: -0.00052836776 + outSlope: -0.00052836776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.022980534 + inSlope: -0.025377857 + outSlope: -0.025377857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.016809413 + inSlope: -0.0120580215 + outSlope: -0.0120580215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.015064029 + inSlope: -0.013629546 + outSlope: -0.013629546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.013432455 + inSlope: -0.004558282 + outSlope: -0.004558282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.013678277 + inSlope: 0.0043718093 + outSlope: 0.0043718093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.014134062 + inSlope: 0.0068225125 + outSlope: 0.0068225125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.015238611 + inSlope: 0.011098293 + outSlope: 0.011098293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.01612581 + inSlope: -0.0013661956 + outSlope: -0.0013661956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.015562378 + inSlope: -0.0062660514 + outSlope: -0.0062660514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.015374473 + inSlope: 0.009226207 + outSlope: 0.009226207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.016310848 + inSlope: 0.0153440945 + outSlope: 0.0153440945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.022182632 + inSlope: 0.052395392 + outSlope: 0.052395392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.026208786 + inSlope: 0.063115895 + outSlope: 0.063115895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.030907933 + inSlope: 0.08021841 + outSlope: 0.08021841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.04062798 + inSlope: 0.05650861 + outSlope: 0.05650861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.048434608 + inSlope: 0.06644078 + outSlope: 0.06644078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.057234935 + inSlope: 0.017375756 + outSlope: 0.017375756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.061121162 + inSlope: -0.008928747 + outSlope: -0.008928747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.054803554 + inSlope: -0.028802536 + outSlope: -0.028802536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.050132144 + inSlope: -0.043006025 + outSlope: -0.043006025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.03984194 + inSlope: -0.06011227 + outSlope: -0.06011227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.032790374 + inSlope: -0.04871656 + outSlope: -0.04871656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.030034825 + inSlope: -0.033327486 + outSlope: -0.033327486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.027597822 + inSlope: -0.04011727 + outSlope: -0.04011727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.025427902 + inSlope: -0.021476636 + outSlope: -0.021476636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.0239608 + inSlope: -0.028020758 + outSlope: -0.028020758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.021276763 + inSlope: -0.017284786 + outSlope: -0.017284786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.01989069 + inSlope: -0.0071403864 + outSlope: -0.0071403864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.01901357 + inSlope: -0.008121289 + outSlope: -0.008121289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.01818097 + inSlope: -0.0012303249 + outSlope: -0.0012303249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.018372405 + inSlope: 0.008296528 + outSlope: 0.008296528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.019184178 + inSlope: -0.0026178106 + outSlope: -0.0026178106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.018838624 + inSlope: -0.02654677 + outSlope: -0.02654677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: -0.00032104139 + inSlope: -0.13964327 + outSlope: -0.13964327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.03275987 + inSlope: -0.059545964 + outSlope: -0.059545964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.03431979 + inSlope: -0.0089636715 + outSlope: -0.0089636715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.03335745 + inSlope: 0.028870208 + outSlope: 0.028870208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.029149845 + inSlope: 0.015245675 + outSlope: 0.015245675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.02465117 + inSlope: 0.05685792 + outSlope: 0.05685792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0030421168 + inSlope: 0.07906903 + outSlope: 0.07906903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.00053200126 + inSlope: 0.07192501 + outSlope: 0.07192501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0017528832 + inSlope: 0.062286735 + outSlope: 0.062286735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0051337928 + inSlope: 0.04021455 + outSlope: 0.04021455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.006301418 + inSlope: 0.020552192 + outSlope: 0.020552192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0065039396 + inSlope: 0.004211964 + outSlope: 0.004211964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0068580806 + inSlope: 0.015443483 + outSlope: 0.015443483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0076117814 + inSlope: 0.019365994 + outSlope: 0.019365994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.008276433 + inSlope: -0.008096241 + outSlope: -0.008096241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.007609397 + inSlope: -0.02001509 + outSlope: -0.02001509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0069420934 + inSlope: -0.025519203 + outSlope: -0.025519203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0059081167 + inSlope: -0.029106662 + outSlope: -0.029106662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0050016493 + inSlope: -0.034014206 + outSlope: -0.034014206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0036405027 + inSlope: -0.03251552 + outSlope: -0.03251552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0028339475 + inSlope: -0.023391344 + outSlope: -0.023391344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0020810813 + inSlope: -0.011714782 + outSlope: -0.011714782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0020529628 + inSlope: 0.006261401 + outSlope: 0.006261401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0024985075 + inSlope: 0.012553421 + outSlope: 0.012553421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.0032150298 + inSlope: 0.007828465 + outSlope: 0.007828465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0037653 + inSlope: 0.0168767 + outSlope: 0.0168767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.004536867 + inSlope: 0.026634755 + outSlope: 0.026634755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.005540952 + inSlope: 0.025998622 + outSlope: 0.025998622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0062701106 + inSlope: 0.0157229 + outSlope: 0.0157229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.0068484396 + inSlope: 0.009788717 + outSlope: 0.009788717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00817588 + inSlope: 0.01194901 + outSlope: 0.01194901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.008534178 + inSlope: 0.004218206 + outSlope: 0.004218206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.008457094 + inSlope: -0.0004329536 + outSlope: -0.0004329536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.009469107 + inSlope: 0.0051639187 + outSlope: 0.0051639187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.01013042 + inSlope: 0.009243553 + outSlope: 0.009243553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.010991991 + inSlope: 0.0067886654 + outSlope: 0.0067886654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.011487544 + inSlope: 0.012676532 + outSlope: 0.012676532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.012551472 + inSlope: 0.014498471 + outSlope: 0.014498471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.015638351 + inSlope: 0.03951367 + outSlope: 0.03951367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.029445589 + inSlope: 0.10157245 + outSlope: 0.10157245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.05224468 + inSlope: 0.06184107 + outSlope: 0.06184107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.057097584 + inSlope: -0.00073090266 + outSlope: -0.00073090266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.056410313 + inSlope: -0.02018163 + outSlope: -0.02018163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.051833093 + inSlope: -0.02300287 + outSlope: -0.02300287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.049026787 + inSlope: -0.018452946 + outSlope: -0.018452946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.04783471 + inSlope: 0.004993384 + outSlope: 0.004993384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.046490714 + inSlope: -0.027506206 + outSlope: -0.027506206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.04091662 + inSlope: -0.077042505 + outSlope: -0.077042505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.031911805 + inSlope: -0.09149662 + outSlope: -0.09149662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.02124688 + inSlope: -0.12740979 + outSlope: -0.12740979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.01671891 + inSlope: -0.12033318 + outSlope: -0.12033318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.013224676 + inSlope: -0.08061722 + outSlope: -0.08061722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.010124758 + inSlope: -0.036217008 + outSlope: -0.036217008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.007906795 + inSlope: -0.02793635 + outSlope: -0.02793635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.0063070357 + inSlope: -0.023313336 + outSlope: -0.023313336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.0055133253 + inSlope: -0.035516057 + outSlope: -0.035516057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.003939301 + inSlope: -0.037949495 + outSlope: -0.037949495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.0029833615 + inSlope: -0.026049417 + outSlope: -0.026049417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.0022026747 + inSlope: -0.021604767 + outSlope: -0.021604767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.001543045 + inSlope: -0.015591472 + outSlope: -0.015591472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.0011632442 + inSlope: -0.011379201 + outSlope: -0.011379201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.0007844269 + inSlope: -0.009926337 + outSlope: -0.009926337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.0005014837 + inSlope: -0.006119019 + outSlope: -0.006119019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.00037649274 + inSlope: -0.007128201 + outSlope: -0.007128201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.000026270747 + inSlope: -0.013766004 + outSlope: -0.013766004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.00054124 + inSlope: -0.020385701 + outSlope: -0.020385701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.0013327748 + inSlope: -0.02173083 + outSlope: -0.02173083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.0019899607 + inSlope: -0.013932077 + outSlope: -0.013932077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.002261579 + inSlope: -0.0062871035 + outSlope: -0.0062871035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.0025267303 + inSlope: -0.002369734 + outSlope: -0.002369734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.0026215166 + inSlope: 0.0017029808 + outSlope: 0.0017029808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.0024131984 + inSlope: 0.0056988057 + outSlope: 0.0056988057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.0019040108 + inSlope: 0.0055651423 + outSlope: 0.0055651423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: -0.0017155856 + inSlope: 0.009296546 + outSlope: 0.009296546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.0012842417 + inSlope: 0.01343341 + outSlope: 0.01343341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.0008200258 + inSlope: 0.0072524766 + outSlope: 0.0072524766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.0008007437 + inSlope: 0.00034399363 + outSlope: 0.00034399363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: -0.0007970929 + inSlope: -0.0015386954 + outSlope: -0.0015386954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.0009033233 + inSlope: -0.0030586151 + outSlope: -0.0030586151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.0010010004 + inSlope: -0.0013487054 + outSlope: -0.0013487054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.0009932369 + inSlope: 0.0026357197 + outSlope: 0.0026357197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.0008252859 + inSlope: 0.0043489826 + outSlope: 0.0043489826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.000703305 + inSlope: 0.0036290323 + outSlope: 0.0036290323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: -0.00058335066 + inSlope: 0.00650034 + outSlope: 0.00650034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.00026994944 + inSlope: 0.012028273 + outSlope: 0.012028273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.00021854043 + inSlope: 0.015304594 + outSlope: 0.015304594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.0007503629 + inSlope: 0.008632698 + outSlope: 0.008632698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.0007940531 + inSlope: -0.0003017488 + outSlope: -0.0003017488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.0007302463 + inSlope: -0.011828106 + outSlope: -0.011828106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.0000055134296 + inSlope: -0.034324486 + outSlope: -0.034324486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.0015580505 + inSlope: -0.044858202 + outSlope: -0.044858202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.0029850304 + inSlope: -0.041506104 + outSlope: -0.041506104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.0043251216 + inSlope: -0.0371759 + outSlope: -0.0371759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.0054634213 + inSlope: -0.023000859 + outSlope: -0.023000859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.0058585107 + inSlope: -0.013873069 + outSlope: -0.013873069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.0063882917 + inSlope: -0.020543952 + outSlope: -0.020543952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.0072281063 + inSlope: -0.019062925 + outSlope: -0.019062925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.007962391 + inSlope: -0.009306535 + outSlope: -0.009306535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.0091558695 + inSlope: -0.014275847 + outSlope: -0.014275847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.009626225 + inSlope: -0.023480304 + outSlope: -0.023480304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.012403637 + inSlope: -0.056523584 + outSlope: -0.056523584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.014489457 + inSlope: -0.05943356 + outSlope: -0.05943356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.01636587 + inSlope: -0.033000365 + outSlope: -0.033000365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.01668948 + inSlope: -0.008132912 + outSlope: -0.008132912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.014836967 + inSlope: 0.012683955 + outSlope: 0.012683955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.011911958 + inSlope: 0.010111267 + outSlope: 0.010111267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.011593804 + inSlope: 0.0132955 + outSlope: 0.0132955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.011025593 + inSlope: 0.015985651 + outSlope: 0.015985651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.009953573 + inSlope: 0.01635255 + outSlope: 0.01635255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.009437919 + inSlope: 0.0054685827 + outSlope: 0.0054685827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.010085806 + inSlope: -0.019929502 + outSlope: -0.019929502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.01356703 + inSlope: -0.048490807 + outSlope: -0.048490807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.028965846 + inSlope: -0.013036219 + outSlope: -0.013036219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.029149845 + inSlope: -0.0055199913 + outSlope: -0.0055199913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04156736 + inSlope: 0.021143852 + outSlope: 0.021143852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.03884111 + inSlope: 0.07889404 + outSlope: 0.07889404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.004972824 + inSlope: 0.2390203 + outSlope: 0.2390203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.011978941 + inSlope: 0.2662229 + outSlope: 0.2662229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.058388684 + inSlope: 0.2763317 + outSlope: 0.2763317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.067511015 + inSlope: 0.25769126 + outSlope: 0.25769126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.10019672 + inSlope: 0.5525714 + outSlope: 0.5525714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.12216992 + inSlope: 0.66846865 + outSlope: 0.66846865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.28641695 + inSlope: 0.59134495 + outSlope: 0.59134495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.35114276 + inSlope: 0.38434705 + outSlope: 0.38434705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.3987881 + inSlope: 0.0023505115 + outSlope: 0.0023505115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.4091605 + inSlope: 0.051206548 + outSlope: 0.051206548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.4081906 + inSlope: -0.013874142 + outSlope: -0.013874142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.31340873 + inSlope: -0.5744505 + outSlope: -0.5744505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.14167137 + inSlope: -0.881896 + outSlope: -0.881896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.05091322 + inSlope: -0.896547 + outSlope: -0.896547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.0072982023 + inSlope: -0.86022705 + outSlope: -0.86022705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.063449696 + inSlope: -0.8191029 + outSlope: -0.8191029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.090403825 + inSlope: -0.7301694 + outSlope: -0.7301694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.12770753 + inSlope: -0.4080186 + outSlope: -0.4080186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.15139209 + inSlope: -0.4041838 + outSlope: -0.4041838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.19371222 + inSlope: -0.36415404 + outSlope: -0.36415404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.27225098 + inSlope: -0.035138313 + outSlope: -0.035138313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.2532407 + inSlope: 0.12894553 + outSlope: 0.12894553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.22168177 + inSlope: 0.3069883 + outSlope: 0.3069883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.07546383 + inSlope: 0.75038576 + outSlope: 0.75038576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.023579877 + inSlope: 0.8021829 + outSlope: 0.8021829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.003560786 + inSlope: 0.80537665 + outSlope: 0.80537665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.05532631 + inSlope: 0.73569274 + outSlope: 0.73569274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.1748042 + inSlope: 0.42495596 + outSlope: 0.42495596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.2205985 + inSlope: -0.01548882 + outSlope: -0.01548882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.2094312 + inSlope: -0.11937451 + outSlope: -0.11937451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.15084879 + inSlope: -0.21967044 + outSlope: -0.21967044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.13151866 + inSlope: -0.14418077 + outSlope: -0.14418077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.121788904 + inSlope: -0.22232562 + outSlope: -0.22232562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.0903662 + inSlope: -0.35571748 + outSlope: -0.35571748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: 0.0035604434 + inSlope: -0.33379567 + outSlope: -0.33379567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.025146581 + inSlope: -0.22845289 + outSlope: -0.22845289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.040428516 + inSlope: -0.065842986 + outSlope: -0.065842986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.04156736 + inSlope: -0.03416534 + outSlope: -0.03416534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.023337677 + inSlope: 0.0008521601 + outSlope: 0.0008521601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.023184469 + inSlope: -0.0051694834 + outSlope: -0.0051694834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.022517037 + inSlope: -0.000118263764 + outSlope: -0.000118263764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.023449892 + inSlope: 0.03186024 + outSlope: 0.03186024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.024813749 + inSlope: 0.03480572 + outSlope: 0.03480572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.026806721 + inSlope: 0.032551344 + outSlope: 0.032551344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.028960316 + inSlope: 0.020034976 + outSlope: 0.020034976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.02852511 + inSlope: -0.004928452 + outSlope: -0.004928452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.028249867 + inSlope: -0.0068210764 + outSlope: -0.0068210764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.028176263 + inSlope: 0.009175375 + outSlope: 0.009175375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.028987773 + inSlope: 0.002134705 + outSlope: 0.002134705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.027481861 + inSlope: -0.02812216 + outSlope: -0.02812216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.025333675 + inSlope: -0.00952194 + outSlope: -0.00952194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.025115404 + inSlope: 0.0052354718 + outSlope: 0.0052354718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.02465917 + inSlope: -0.009512883 + outSlope: -0.009512883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.023066567 + inSlope: -0.015205346 + outSlope: -0.015205346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.020181544 + inSlope: -0.0012777944 + outSlope: -0.0012777944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.02150696 + inSlope: 0.0040992294 + outSlope: 0.0040992294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.020754896 + inSlope: -0.026659535 + outSlope: -0.026659535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.01816369 + inSlope: -0.044251252 + outSlope: -0.044251252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.01664715 + inSlope: -0.050747387 + outSlope: -0.050747387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.013044429 + inSlope: -0.046964016 + outSlope: -0.046964016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.010249433 + inSlope: -0.009061921 + outSlope: -0.009061921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.010412669 + inSlope: 0.007979426 + outSlope: 0.007979426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.010874717 + inSlope: 0.008766389 + outSlope: 0.008766389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.012240725 + inSlope: 0.00712373 + outSlope: 0.00712373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.012783251 + inSlope: 0.0060810912 + outSlope: 0.0060810912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.013222022 + inSlope: 0.0017961457 + outSlope: 0.0017961457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.013072083 + inSlope: -0.00625176 + outSlope: -0.00625176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.012212984 + inSlope: -0.027369216 + outSlope: -0.027369216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.0051079346 + inSlope: -0.06650739 + outSlope: -0.06650739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.0028539384 + inSlope: -0.06468458 + outSlope: -0.06468458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.00079561886 + inSlope: -0.057898458 + outSlope: -0.057898458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.0010059699 + inSlope: -0.05883711 + outSlope: -0.05883711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.0031268513 + inSlope: -0.06958349 + outSlope: -0.06958349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.005644865 + inSlope: -0.07629281 + outSlope: -0.07629281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.008213034 + inSlope: -0.06764919 + outSlope: -0.06764919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.011481404 + inSlope: -0.030353326 + outSlope: -0.030353326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.012647879 + inSlope: -0.020809911 + outSlope: -0.020809911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.013565685 + inSlope: -0.035176355 + outSlope: -0.035176355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.014992981 + inSlope: -0.06078569 + outSlope: -0.06078569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.01761808 + inSlope: -0.059392866 + outSlope: -0.059392866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.018952502 + inSlope: -0.012138013 + outSlope: -0.012138013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.01842728 + inSlope: 0.021203833 + outSlope: 0.021203833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.017538914 + inSlope: 0.036818102 + outSlope: 0.036818102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.015972743 + inSlope: 0.03909744 + outSlope: 0.03909744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.014624382 + inSlope: 0.000010044314 + outSlope: 0.000010044314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.015112376 + inSlope: -0.0009435797 + outSlope: -0.0009435797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.014462367 + inSlope: 0.022009837 + outSlope: 0.022009837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: -0.012518171 + inSlope: 0.023187678 + outSlope: 0.023187678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.010924902 + inSlope: 0.024255728 + outSlope: 0.024255728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.008540073 + inSlope: 0.042547375 + outSlope: 0.042547375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.0070635937 + inSlope: 0.03941162 + outSlope: 0.03941162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.00429491 + inSlope: 0.019460108 + outSlope: 0.019460108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.0037061009 + inSlope: 0.01938736 + outSlope: 0.01938736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.002294538 + inSlope: 0.020628579 + outSlope: 0.020628579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.0016271833 + inSlope: 0.020011049 + outSlope: 0.020011049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.0009604695 + inSlope: 0.01852139 + outSlope: 0.01852139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.0003924251 + inSlope: 0.016081586 + outSlope: 0.016081586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.00011164253 + inSlope: 0.015741756 + outSlope: 0.015741756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.00065703155 + inSlope: 0.01584886 + outSlope: 0.01584886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.0022606128 + inSlope: 0.018251214 + outSlope: 0.018251214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.0029058894 + inSlope: 0.018630333 + outSlope: 0.018630333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.003502634 + inSlope: 0.012710407 + outSlope: 0.012710407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.003753249 + inSlope: 0.008880851 + outSlope: 0.008880851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.00409469 + inSlope: 0.015343681 + outSlope: 0.015343681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.00477616 + inSlope: 0.02434649 + outSlope: 0.02434649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.005717788 + inSlope: 0.025071722 + outSlope: 0.025071722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.0064476067 + inSlope: 0.021801539 + outSlope: 0.021801539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.0071712225 + inSlope: 0.03153778 + outSlope: 0.03153778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.008550123 + inSlope: 0.05411443 + outSlope: 0.05411443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.01077888 + inSlope: 0.07338512 + outSlope: 0.07338512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.013442492 + inSlope: 0.06570067 + outSlope: 0.06570067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.015158921 + inSlope: 0.048226833 + outSlope: 0.048226833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.022921037 + inSlope: 0.061119944 + outSlope: 0.061119944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.035354428 + inSlope: 0.030454457 + outSlope: 0.030454457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.03691331 + inSlope: 0.004607425 + outSlope: 0.004607425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.035932407 + inSlope: -0.029767632 + outSlope: -0.029767632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.031847257 + inSlope: -0.02838716 + outSlope: -0.02838716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.027076889 + inSlope: -0.015031282 + outSlope: -0.015031282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.024630722 + inSlope: -0.009435238 + outSlope: -0.009435238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.024098085 + inSlope: 0.0023438954 + outSlope: 0.0023438954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.025369104 + inSlope: 0.004495079 + outSlope: 0.004495079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.023784887 + inSlope: -0.0077811237 + outSlope: -0.0077811237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.023337677 + inSlope: -0.0017665715 + outSlope: -0.0017665715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9984378 + inSlope: 0.0012910365 + outSlope: 0.0012910365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.9638464 + inSlope: -0.18253328 + outSlope: -0.18253328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.915323 + inSlope: 0.016969457 + outSlope: 0.016969457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.9105911 + inSlope: 0.008705565 + outSlope: 0.008705565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.95499533 + inSlope: 0.19424844 + outSlope: 0.19424844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.9935503 + inSlope: -0.060874578 + outSlope: -0.060874578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.96853375 + inSlope: 0.02992186 + outSlope: 0.02992186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.99162906 + inSlope: -0.07528074 + outSlope: -0.07528074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.9856797 + inSlope: 0.04100118 + outSlope: 0.04100118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.9984378 + inSlope: -0.001521708 + outSlope: -0.001521708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1717384 + inSlope: -0.00830546 + outSlope: -0.00830546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.19534224 + inSlope: -0.0016035121 + outSlope: -0.0016035121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.17730919 + inSlope: 0.18630001 + outSlope: 0.18630001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.13670726 + inSlope: 0.30081445 + outSlope: 0.30081445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.11133108 + inSlope: 0.17183375 + outSlope: 0.17183375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.101084225 + inSlope: 0.17228599 + outSlope: 0.17228599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.08438524 + inSlope: 0.12719 + outSlope: 0.12719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.076990135 + inSlope: 0.102048315 + outSlope: 0.102048315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.07379413 + inSlope: 0.050539672 + outSlope: 0.050539672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.073620826 + inSlope: 0.028603429 + outSlope: 0.028603429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.06841552 + inSlope: 0.10398491 + outSlope: 0.10398491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.0649549 + inSlope: 0.053924225 + outSlope: 0.053924225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.064820565 + inSlope: 0.0034018266 + outSlope: 0.0034018266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.06410183 + inSlope: -0.00046856888 + outSlope: -0.00046856888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.06557529 + inSlope: -0.018839967 + outSlope: -0.018839967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.06601535 + inSlope: -0.025782242 + outSlope: -0.025782242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.067294106 + inSlope: -0.01618652 + outSlope: -0.01618652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.06636231 + inSlope: -0.018617263 + outSlope: -0.018617263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.06984809 + inSlope: -0.001678953 + outSlope: -0.001678953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.069124475 + inSlope: 0.006616025 + outSlope: 0.006616025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.06905195 + inSlope: 0.011012491 + outSlope: 0.011012491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.06788827 + inSlope: -0.013230791 + outSlope: -0.013230791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.07568213 + inSlope: -0.049373142 + outSlope: -0.049373142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.07992548 + inSlope: -0.04147146 + outSlope: -0.04147146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.08139731 + inSlope: 0.009256983 + outSlope: 0.009256983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.08109327 + inSlope: -0.023672305 + outSlope: -0.023672305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.08297546 + inSlope: -0.01909433 + outSlope: -0.01909433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.08236622 + inSlope: -0.0021704687 + outSlope: -0.0021704687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.08506564 + inSlope: -0.04694608 + outSlope: -0.04694608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.08745772 + inSlope: -0.002280774 + outSlope: -0.002280774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.087159015 + inSlope: -0.009875232 + outSlope: -0.009875232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.088116065 + inSlope: -0.01504419 + outSlope: -0.01504419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.088378154 + inSlope: 0.0027454672 + outSlope: 0.0027454672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.089536436 + inSlope: -0.013785338 + outSlope: -0.013785338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.094902195 + inSlope: -0.080503225 + outSlope: -0.080503225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.103608266 + inSlope: -0.0757109 + outSlope: -0.0757109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.12167071 + inSlope: -0.20871481 + outSlope: -0.20871481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.14173107 + inSlope: -0.14124402 + outSlope: -0.14124402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.1512777 + inSlope: -0.20498355 + outSlope: -0.20498355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.18364637 + inSlope: -0.15730321 + outSlope: -0.15730321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.1955459 + inSlope: -0.11429462 + outSlope: -0.11429462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.21192847 + inSlope: -0.065577574 + outSlope: -0.065577574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.22998562 + inSlope: -0.036809556 + outSlope: -0.036809556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.23602581 + inSlope: -0.06383708 + outSlope: -0.06383708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.23648685 + inSlope: -0.021682998 + outSlope: -0.021682998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.24318212 + inSlope: -0.07550494 + outSlope: -0.07550494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.24190211 + inSlope: 0.068999894 + outSlope: 0.068999894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.18746439 + inSlope: 0.21835795 + outSlope: 0.21835795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.15315935 + inSlope: 0.08806773 + outSlope: 0.08806773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.14829884 + inSlope: -0.009867532 + outSlope: -0.009867532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.14953505 + inSlope: -0.008462153 + outSlope: -0.008462153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.15002011 + inSlope: -0.04048016 + outSlope: -0.04048016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.1784745 + inSlope: -0.026125768 + outSlope: -0.026125768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.18656507 + inSlope: -0.013585849 + outSlope: -0.013585849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.1717032 + inSlope: 0.009351084 + outSlope: 0.009351084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.94615453 + inSlope: 0.002877116 + outSlope: 0.002877116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.94282305 + inSlope: -0.044843823 + outSlope: -0.044843823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.9495747 + inSlope: -0.046702668 + outSlope: -0.046702668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.9549631 + inSlope: -0.019612331 + outSlope: -0.019612331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.94812965 + inSlope: 0.056175344 + outSlope: 0.056175344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.92199373 + inSlope: 0.061237574 + outSlope: 0.061237574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.94013035 + inSlope: -0.014464273 + outSlope: -0.014464273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.94615793 + inSlope: -0.00033438238 + outSlope: -0.00033438238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09959439 + inSlope: -0.009409859 + outSlope: -0.009409859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.10586466 + inSlope: -0.039827902 + outSlope: -0.039827902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.11722753 + inSlope: -0.07067928 + outSlope: -0.07067928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.12959918 + inSlope: -0.2031567 + outSlope: -0.2031567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.19414148 + inSlope: -0.0728663 + outSlope: -0.0728663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.20056722 + inSlope: -0.010952364 + outSlope: -0.010952364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.19442493 + inSlope: 0.009433115 + outSlope: 0.009433115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.19033314 + inSlope: -0.013329921 + outSlope: -0.013329921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.18255025 + inSlope: 0.07330194 + outSlope: 0.07330194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.13654529 + inSlope: 0.22253203 + outSlope: 0.22253203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.104140304 + inSlope: 0.13448083 + outSlope: 0.13448083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.09279858 + inSlope: 0.0046442505 + outSlope: 0.0046442505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.0948793 + inSlope: -0.023220353 + outSlope: -0.023220353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.09657481 + inSlope: -0.053735986 + outSlope: -0.053735986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.10029957 + inSlope: -0.03877324 + outSlope: -0.03877324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.1081293 + inSlope: -0.0321092 + outSlope: -0.0321092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.11461378 + inSlope: -0.013549974 + outSlope: -0.013549974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.109651946 + inSlope: 0.078087784 + outSlope: 0.078087784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: -0.105111 + inSlope: 0.07959753 + outSlope: 0.07959753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.09750837 + inSlope: 0.057871632 + outSlope: 0.057871632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.09184884 + inSlope: -0.010843734 + outSlope: -0.010843734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.092522025 + inSlope: -0.013329292 + outSlope: -0.013329292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.09303867 + inSlope: -0.03680855 + outSlope: -0.03680855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.09497593 + inSlope: -0.0070360005 + outSlope: -0.0070360005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.09062072 + inSlope: 0.13173369 + outSlope: 0.13173369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.078455634 + inSlope: 0.1678985 + outSlope: 0.1678985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.07012071 + inSlope: 0.0645396 + outSlope: 0.0645396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.06822522 + inSlope: 0.031978555 + outSlope: 0.031978555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.064434454 + inSlope: 0.087124266 + outSlope: 0.087124266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: -0.056271806 + inSlope: 0.056962393 + outSlope: 0.056962393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.05464297 + inSlope: 0.07374304 + outSlope: 0.07374304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.048378576 + inSlope: 0.07535545 + outSlope: 0.07535545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.04501786 + inSlope: 0.0066500967 + outSlope: 0.0066500967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.044110052 + inSlope: 0.02781459 + outSlope: 0.02781459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.04293665 + inSlope: 0.027616441 + outSlope: 0.027616441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: -0.042268958 + inSlope: 0.03002177 + outSlope: 0.03002177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.039816596 + inSlope: 0.027055245 + outSlope: 0.027055245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.038338292 + inSlope: 0.03373777 + outSlope: 0.03373777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.033390306 + inSlope: 0.01902325 + outSlope: 0.01902325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.035592142 + inSlope: -0.045660965 + outSlope: -0.045660965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.03723471 + inSlope: -0.033247635 + outSlope: -0.033247635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.037828345 + inSlope: -0.005412703 + outSlope: -0.005412703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.03993151 + inSlope: -0.037014328 + outSlope: -0.037014328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.04435266 + inSlope: -0.11861924 + outSlope: -0.11861924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.056103703 + inSlope: -0.23662537 + outSlope: -0.23662537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.074745625 + inSlope: -0.29199216 + outSlope: -0.29199216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.13682553 + inSlope: -0.3139978 + outSlope: -0.3139978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.20187347 + inSlope: -0.20349112 + outSlope: -0.20349112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.21458134 + inSlope: 0.0011663153 + outSlope: 0.0011663153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: -0.18790023 + inSlope: 0.092995405 + outSlope: 0.092995405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.1755091 + inSlope: 0.081418365 + outSlope: 0.081418365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: -0.14632845 + inSlope: 0.1825189 + outSlope: 0.1825189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.105266206 + inSlope: 0.08184357 + outSlope: 0.08184357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.09959185 + inSlope: 0.010524104 + outSlope: 0.010524104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4283553 + inSlope: -0.015936792 + outSlope: -0.015936792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.3809968 + inSlope: -0.07023232 + outSlope: -0.07023232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.37051028 + inSlope: -0.3324483 + outSlope: -0.3324483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.3275534 + inSlope: -0.4642707 + outSlope: -0.4642707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.22588634 + inSlope: -0.2518789 + outSlope: -0.2518789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.20224738 + inSlope: -0.2655517 + outSlope: -0.2655517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.17368501 + inSlope: -0.12918559 + outSlope: -0.12918559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.16131495 + inSlope: 0.009122409 + outSlope: 0.009122409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.17109625 + inSlope: 0.027666274 + outSlope: 0.027666274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.17750716 + inSlope: -0.00895434 + outSlope: -0.00895434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.18935497 + inSlope: 0.051868387 + outSlope: 0.051868387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.19629216 + inSlope: -0.008245789 + outSlope: -0.008245789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.19505534 + inSlope: -0.000062808394 + outSlope: -0.000062808394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.19788162 + inSlope: 0.028427642 + outSlope: 0.028427642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.22998856 + inSlope: 0.28842983 + outSlope: 0.28842983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.37396833 + inSlope: 0.4962266 + outSlope: 0.4962266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.4229996 + inSlope: 0.4221989 + outSlope: 0.4221989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.5110366 + inSlope: 0.188479 + outSlope: 0.188479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.56112176 + inSlope: 0.021722337 + outSlope: 0.021722337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.553027 + inSlope: -0.055562012 + outSlope: -0.055562012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.49687937 + inSlope: -0.35612977 + outSlope: -0.35612977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.28163865 + inSlope: -0.07845737 + outSlope: -0.07845737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: 0.3228202 + inSlope: 0.15534744 + outSlope: 0.15534744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.36216402 + inSlope: 0.19053224 + outSlope: 0.19053224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.42347285 + inSlope: 0.094326675 + outSlope: 0.094326675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.42835426 + inSlope: 0.017555969 + outSlope: 0.017555969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.47164828 + inSlope: 0.019699035 + outSlope: 0.019699035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.41197795 + inSlope: 0.22308694 + outSlope: 0.22308694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.377646 + inSlope: 0.22531268 + outSlope: 0.22531268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.3103417 + inSlope: 0.46890563 + outSlope: 0.46890563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.22783789 + inSlope: 0.24196522 + outSlope: 0.24196522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.20317103 + inSlope: 0.2894741 + outSlope: 0.2894741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.15446757 + inSlope: 0.058698956 + outSlope: 0.058698956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.15319294 + inSlope: -0.00058114587 + outSlope: -0.00058114587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.15658705 + inSlope: -0.042037126 + outSlope: -0.042037126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.15626661 + inSlope: 0.0387517 + outSlope: 0.0387517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.13388899 + inSlope: 0.12565449 + outSlope: 0.12565449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.11993766 + inSlope: 0.032962367 + outSlope: 0.032962367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.1158862 + inSlope: -0.02970706 + outSlope: -0.02970706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.122232735 + inSlope: -0.016188487 + outSlope: -0.016188487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.13137257 + inSlope: -0.03977921 + outSlope: -0.03977921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.13576178 + inSlope: -0.09157857 + outSlope: -0.09157857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.19427246 + inSlope: -0.39870536 + outSlope: -0.39870536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.3336677 + inSlope: -0.63909334 + outSlope: -0.63909334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.44385758 + inSlope: -0.47807872 + outSlope: -0.47807872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: -0.48789364 + inSlope: -0.20757769 + outSlope: -0.20757769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.5437088 + inSlope: -0.09695211 + outSlope: -0.09695211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.56319594 + inSlope: 0.025611544 + outSlope: 0.025611544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.545393 + inSlope: 0.11915993 + outSlope: 0.11915993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.42408428 + inSlope: 0.446573 + outSlope: 0.446573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.31146044 + inSlope: 0.10998587 + outSlope: 0.10998587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.30667004 + inSlope: 0.027852906 + outSlope: 0.027852906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.31140542 + inSlope: -0.067299366 + outSlope: -0.067299366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.35910517 + inSlope: -0.08490892 + outSlope: -0.08490892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.39201432 + inSlope: -0.25672567 + outSlope: -0.25672567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.4716488 + inSlope: -0.026974108 + outSlope: -0.026974108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5306337 + inSlope: 0.01536548 + outSlope: 0.01536548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.59700847 + inSlope: 0.06948798 + outSlope: 0.06948798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.66793555 + inSlope: 0.13819012 + outSlope: 0.13819012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.69516283 + inSlope: 0.04539364 + outSlope: 0.04539364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.693841 + inSlope: -0.011822294 + outSlope: -0.011822294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.7041645 + inSlope: 0.04444067 + outSlope: 0.04444067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.70994747 + inSlope: 0.011982333 + outSlope: 0.011982333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.70579106 + inSlope: -0.024324976 + outSlope: -0.024324976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.5831196 + inSlope: -0.42075366 + outSlope: -0.42075366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.48292994 + inSlope: -0.21361983 + outSlope: -0.21361983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.41529647 + inSlope: -0.049189523 + outSlope: -0.049189523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.41160974 + inSlope: 0.030997872 + outSlope: 0.030997872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.43126374 + inSlope: 0.084286265 + outSlope: 0.084286265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.48015118 + inSlope: 0.28190133 + outSlope: 0.28190133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.6065139 + inSlope: 0.24925166 + outSlope: 0.24925166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.6359493 + inSlope: -0.036986805 + outSlope: -0.036986805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.6066142 + inSlope: 0.003548566 + outSlope: 0.003548566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.5314254 + inSlope: -0.04504953 + outSlope: -0.04504953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.5306339 + inSlope: -0.023744725 + outSlope: -0.023744725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.55900615 + inSlope: -0.014208554 + outSlope: -0.014208554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.59617287 + inSlope: -0.12873977 + outSlope: -0.12873977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.667197 + inSlope: -0.0774827 + outSlope: -0.0774827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.68122387 + inSlope: 0.015629247 + outSlope: 0.015629247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.6730385 + inSlope: 0.03539804 + outSlope: 0.03539804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.6666704 + inSlope: 0.011431585 + outSlope: 0.011431585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.66793597 + inSlope: 0.011546921 + outSlope: 0.011546921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.6055628 + inSlope: 0.2734069 + outSlope: 0.2734069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.5552588 + inSlope: 0.37406123 + outSlope: 0.37406123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: -0.51858073 + inSlope: 0.15739754 + outSlope: 0.15739754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.46498993 + inSlope: 0.11377047 + outSlope: 0.11377047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.45133495 + inSlope: -0.04864593 + outSlope: -0.04864593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.48186228 + inSlope: -0.2657267 + outSlope: -0.2657267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.6280745 + inSlope: -0.17246173 + outSlope: -0.17246173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.6183876 + inSlope: 0.05304227 + outSlope: 0.05304227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.5909029 + inSlope: 0.08949557 + outSlope: 0.08949557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.5590062 + inSlope: 0.013618482 + outSlope: 0.013618482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13753964 + inSlope: -0.034398884 + outSlope: -0.034398884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.1325621 + inSlope: -0.043549232 + outSlope: -0.043549232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.119411364 + inSlope: -0.053380657 + outSlope: -0.053380657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.117737465 + inSlope: -0.0011511093 + outSlope: -0.0011511093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.116996855 + inSlope: -0.036935605 + outSlope: -0.036935605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.11503085 + inSlope: -0.013463724 + outSlope: -0.013463724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11995835 + inSlope: 0.05707618 + outSlope: 0.05707618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.12964849 + inSlope: 0.078742735 + outSlope: 0.078742735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.13819817 + inSlope: -0.012921758 + outSlope: -0.012921758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.14000829 + inSlope: -0.0033997032 + outSlope: -0.0033997032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.14018016 + inSlope: -0.018480338 + outSlope: -0.018480338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.13831729 + inSlope: -0.031177929 + outSlope: -0.031177929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.13893777 + inSlope: 0.0113280695 + outSlope: 0.0113280695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.14113316 + inSlope: 0.009144067 + outSlope: 0.009144067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.13829957 + inSlope: -0.06907516 + outSlope: -0.06907516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.12327496 + inSlope: -0.023999117 + outSlope: -0.023999117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.12166694 + inSlope: 0.0025743642 + outSlope: 0.0025743642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.118842795 + inSlope: -0.011382636 + outSlope: -0.011382636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.11881193 + inSlope: 0.021363256 + outSlope: 0.021363256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.120925024 + inSlope: 0.02604841 + outSlope: 0.02604841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.13461104 + inSlope: 0.12760979 + outSlope: 0.12760979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.15893176 + inSlope: 0.13445592 + outSlope: 0.13445592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.17621748 + inSlope: -0.05267317 + outSlope: -0.05267317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.1670361 + inSlope: -0.09562124 + outSlope: -0.09562124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.1508146 + inSlope: -0.28627512 + outSlope: -0.28627512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.118584774 + inSlope: -0.24691948 + outSlope: -0.24691948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.10430981 + inSlope: -0.16011953 + outSlope: -0.16011953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.07723514 + inSlope: -0.17326863 + outSlope: -0.17326863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.05403744 + inSlope: -0.14251986 + outSlope: -0.14251986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.045079652 + inSlope: -0.11025588 + outSlope: -0.11025588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.041783523 + inSlope: -0.100584105 + outSlope: -0.100584105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.03837405 + inSlope: -0.07528426 + outSlope: -0.07528426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.035551712 + inSlope: -0.05672039 + outSlope: -0.05672039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.03298322 + inSlope: -0.065309815 + outSlope: -0.065309815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.030076306 + inSlope: -0.03353192 + outSlope: -0.03353192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.028493343 + inSlope: 0.0007544728 + outSlope: 0.0007544728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.02901256 + inSlope: 0.002227102 + outSlope: 0.002227102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.028641816 + inSlope: 0.000362881 + outSlope: 0.000362881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.029036753 + inSlope: 0.010838677 + outSlope: 0.010838677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.029364394 + inSlope: 0.017866826 + outSlope: 0.017866826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.030227873 + inSlope: 0.008188847 + outSlope: 0.008188847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.029910317 + inSlope: 0.0078641325 + outSlope: 0.0078641325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.030752148 + inSlope: 0.0194873 + outSlope: 0.0194873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.031209469 + inSlope: 0.0315665 + outSlope: 0.0315665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.03417841 + inSlope: 0.02849045 + outSlope: 0.02849045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.034504455 + inSlope: -0.017294979 + outSlope: -0.017294979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.034129627 + inSlope: 0.028438538 + outSlope: 0.028438538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.046237417 + inSlope: 0.12089594 + outSlope: 0.12089594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.06255178 + inSlope: 0.09629491 + outSlope: 0.09629491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.06521138 + inSlope: 0.118710995 + outSlope: 0.118710995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.07046584 + inSlope: 0.14842755 + outSlope: 0.14842755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.08957816 + inSlope: 0.14910907 + outSlope: 0.14910907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.11492174 + inSlope: 0.122828305 + outSlope: 0.122828305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.13081743 + inSlope: -0.039295293 + outSlope: -0.039295293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.12926228 + inSlope: -0.02390834 + outSlope: -0.02390834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.12922354 + inSlope: -0.029356806 + outSlope: -0.029356806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: 0.12615168 + inSlope: -0.034423504 + outSlope: -0.034423504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.120998226 + inSlope: -0.020374406 + outSlope: -0.020374406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.11868556 + inSlope: 0.006148188 + outSlope: 0.006148188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.13684374 + inSlope: 0.020380113 + outSlope: 0.020380113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.13757573 + inSlope: 0.006989396 + outSlope: 0.006989396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.958547 + inSlope: -0.0038069484 + outSlope: -0.0038069484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.95090276 + inSlope: -0.019504111 + outSlope: -0.019504111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.9485261 + inSlope: 0.028034352 + outSlope: 0.028034352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.9470748 + inSlope: 0.002442599 + outSlope: 0.002442599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: -0.94366354 + inSlope: 0.018787868 + outSlope: 0.018787868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.93644863 + inSlope: -0.016103998 + outSlope: -0.016103998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.93857574 + inSlope: 0.022544883 + outSlope: 0.022544883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.9547861 + inSlope: -0.010201344 + outSlope: -0.010201344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.9585513 + inSlope: -0.00047743367 + outSlope: -0.00047743367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12532783 + inSlope: 0.0341253 + outSlope: 0.0341253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.11735838 + inSlope: 0.086454175 + outSlope: 0.086454175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.07282352 + inSlope: 0.08226167 + outSlope: 0.08226167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.06704075 + inSlope: 0.12948117 + outSlope: 0.12948117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.047955684 + inSlope: 0.2074391 + outSlope: 0.2074391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.028430007 + inSlope: 0.20281792 + outSlope: 0.20281792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.021281764 + inSlope: 0.19890301 + outSlope: 0.19890301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.015169807 + inSlope: 0.16048393 + outSlope: 0.16048393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.010582837 + inSlope: 0.094707474 + outSlope: 0.094707474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.008855973 + inSlope: 0.09730284 + outSlope: 0.09730284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.004095988 + inSlope: 0.14538372 + outSlope: 0.14538372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0008362829 + inSlope: 0.15706013 + outSlope: 0.15706013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.006374695 + inSlope: 0.16297153 + outSlope: 0.16297153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.020320086 + inSlope: 0.101900816 + outSlope: 0.101900816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.026140621 + inSlope: 0.09908788 + outSlope: 0.09908788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.029815186 + inSlope: 0.12672746 + outSlope: 0.12672746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.034589123 + inSlope: 0.111772835 + outSlope: 0.111772835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.038555037 + inSlope: 0.038089737 + outSlope: 0.038089737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.041477963 + inSlope: -0.013067344 + outSlope: -0.013067344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.040265884 + inSlope: -0.00830845 + outSlope: -0.00830845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.040365998 + inSlope: -0.003423452 + outSlope: -0.003423452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.040037654 + inSlope: -0.001852067 + outSlope: -0.001852067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.040242527 + inSlope: -0.014985061 + outSlope: -0.014985061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.039038647 + inSlope: -0.029551985 + outSlope: -0.029551985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.037214573 + inSlope: 0.008417961 + outSlope: 0.008417961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.041063547 + inSlope: 0.043659028 + outSlope: 0.043659028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.048228685 + inSlope: 0.11252515 + outSlope: 0.11252515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.08123441 + inSlope: 0.22220011 + outSlope: 0.22220011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.13966341 + inSlope: 0.06306673 + outSlope: 0.06306673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.13479288 + inSlope: -0.03626328 + outSlope: -0.03626328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.12503067 + inSlope: -0.058811065 + outSlope: -0.058811065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.11868418 + inSlope: -0.0535869 + outSlope: -0.0535869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.11270577 + inSlope: -0.016818361 + outSlope: -0.016818361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.10696587 + inSlope: -0.059501957 + outSlope: -0.059501957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.09484213 + inSlope: -0.19603568 + outSlope: -0.19603568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.057012245 + inSlope: -0.36167222 + outSlope: -0.36167222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.044226445 + inSlope: -0.42593485 + outSlope: -0.42593485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: 0.028616615 + inSlope: -0.48262927 + outSlope: -0.48262927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.012051191 + inSlope: -0.5102727 + outSlope: -0.5102727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.005401655 + inSlope: -0.5267745 + outSlope: -0.5267745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.0230672 + inSlope: -0.54822814 + outSlope: -0.54822814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.061287887 + inSlope: -0.5843369 + outSlope: -0.5843369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.09848225 + inSlope: -0.47457296 + outSlope: -0.47457296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.14231578 + inSlope: -0.27801302 + outSlope: -0.27801302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.15119722 + inSlope: -0.20185944 + outSlope: -0.20185944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.16085266 + inSlope: -0.18757287 + outSlope: -0.18757287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.17982832 + inSlope: -0.12899627 + outSlope: -0.12899627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.19266212 + inSlope: -0.027156275 + outSlope: -0.027156275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.20210649 + inSlope: 0.004439954 + outSlope: 0.004439954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.19904074 + inSlope: 0.038859658 + outSlope: 0.038859658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.19226587 + inSlope: 0.021176731 + outSlope: 0.021176731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.18184601 + inSlope: 0.06658596 + outSlope: 0.06658596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.1690767 + inSlope: 0.099438965 + outSlope: 0.099438965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.16013484 + inSlope: 0.098282486 + outSlope: 0.098282486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.108934075 + inSlope: 0.1685048 + outSlope: 0.1685048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.09490534 + inSlope: 0.045957573 + outSlope: 0.045957573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.09350562 + inSlope: 0.07094025 + outSlope: 0.07094025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.08673447 + inSlope: 0.08884424 + outSlope: 0.08884424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.08010027 + inSlope: 0.022673517 + outSlope: 0.022673517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.08160013 + inSlope: -0.019026715 + outSlope: -0.019026715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.08911263 + inSlope: -0.059019607 + outSlope: -0.059019607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.0936953 + inSlope: -0.054001525 + outSlope: -0.054001525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.09562028 + inSlope: -0.030604258 + outSlope: -0.030604258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.09661826 + inSlope: -0.02060456 + outSlope: -0.02060456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: -0.112711534 + inSlope: -0.07311172 + outSlope: -0.07311172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.12532745 + inSlope: -0.009291628 + outSlope: -0.009291628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.534639 + inSlope: 0.0096559515 + outSlope: 0.0096559515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.5022986 + inSlope: 0.16277033 + outSlope: 0.16277033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.37477624 + inSlope: 0.30026928 + outSlope: 0.30026928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.34587675 + inSlope: 0.23810036 + outSlope: 0.23810036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.3131165 + inSlope: 0.034598295 + outSlope: 0.034598295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.31546876 + inSlope: -0.046017364 + outSlope: -0.046017364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.32723925 + inSlope: -0.04276683 + outSlope: -0.04276683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.34008205 + inSlope: 0.004173074 + outSlope: 0.004173074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.3379607 + inSlope: -0.0011493276 + outSlope: -0.0011493276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: -0.3720206 + inSlope: -0.26565874 + outSlope: -0.26565874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.5750066 + inSlope: -0.3105411 + outSlope: -0.3105411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.6029913 + inSlope: -0.12322348 + outSlope: -0.12322348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.6369225 + inSlope: -0.003487769 + outSlope: -0.003487769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.63587797 + inSlope: -0.0039578658 + outSlope: -0.0039578658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: -0.62779313 + inSlope: 0.066198766 + outSlope: 0.066198766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.51972145 + inSlope: 0.37624007 + outSlope: 0.37624007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.4141748 + inSlope: 0.0057256278 + outSlope: 0.0057256278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.43669462 + inSlope: -0.14627755 + outSlope: -0.14627755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.4689374 + inSlope: -0.085107066 + outSlope: -0.085107066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.47444004 + inSlope: -0.11022414 + outSlope: -0.11022414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.5341053 + inSlope: -0.030659467 + outSlope: -0.030659467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.53464013 + inSlope: -0.01604499 + outSlope: -0.01604499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6136331 + inSlope: -0.011706947 + outSlope: -0.011706947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.54473275 + inSlope: -0.13852626 + outSlope: -0.13852626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.43244737 + inSlope: -0.35380623 + outSlope: -0.35380623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.391949 + inSlope: -0.25690848 + outSlope: -0.25690848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.35213044 + inSlope: 0.023635648 + outSlope: 0.023635648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.3458784 + inSlope: -0.03562234 + outSlope: -0.03562234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.31628716 + inSlope: -0.006927265 + outSlope: -0.006927265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.32364386 + inSlope: 0.01666005 + outSlope: 0.01666005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.36266434 + inSlope: 0.24848992 + outSlope: 0.24848992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.51460826 + inSlope: 0.48089883 + outSlope: 0.48089883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.60619223 + inSlope: 0.2770805 + outSlope: 0.2770805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.6329923 + inSlope: 0.16482458 + outSlope: 0.16482458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.6728744 + inSlope: 0.029023318 + outSlope: 0.029023318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.66467285 + inSlope: -0.029156579 + outSlope: -0.029156579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.5680037 + inSlope: -0.33595526 + outSlope: -0.33595526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.4817028 + inSlope: 0.017648496 + outSlope: 0.017648496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.5296274 + inSlope: 0.06646967 + outSlope: 0.06646967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.61363375 + inSlope: 0.023372792 + outSlope: 0.023372792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.39380825 + inSlope: -0.035964843 + outSlope: -0.035964843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.43134007 + inSlope: -0.18951775 + outSlope: -0.18951775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.4818028 + inSlope: -0.21984011 + outSlope: -0.21984011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.58365965 + inSlope: -0.1564872 + outSlope: -0.1564872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.6255919 + inSlope: -0.008583923 + outSlope: -0.008583923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.63490635 + inSlope: -0.07121182 + outSlope: -0.07121182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.64089215 + inSlope: 0.021193942 + outSlope: 0.021193942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.53971803 + inSlope: 0.44358236 + outSlope: 0.44358236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.35829166 + inSlope: 0.3589474 + outSlope: 0.3589474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.3224898 + inSlope: 0.2890892 + outSlope: 0.2890892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.26687303 + inSlope: 0.07498883 + outSlope: 0.07498883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: -0.2590771 + inSlope: 0.029134631 + outSlope: 0.029134631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.26050097 + inSlope: -0.050861884 + outSlope: -0.050861884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.2864116 + inSlope: -0.121205434 + outSlope: -0.121205434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.37479872 + inSlope: -0.43182218 + outSlope: -0.43182218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.514036 + inSlope: -0.19179243 + outSlope: -0.19179243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.49205303 + inSlope: 0.07078908 + outSlope: 0.07078908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.4870356 + inSlope: 0.12292799 + outSlope: 0.12292799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.39380616 + inSlope: 0.03410879 + outSlope: 0.03410879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.42723665 + inSlope: -0.004323721 + outSlope: -0.004323721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.47443688 + inSlope: 0.14435919 + outSlope: 0.14435919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.59450066 + inSlope: 0.13460296 + outSlope: 0.13460296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.62603563 + inSlope: -0.015176797 + outSlope: -0.015176797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.6133495 + inSlope: -0.031975538 + outSlope: -0.031975538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.6061998 + inSlope: -0.00884504 + outSlope: -0.00884504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.4962012 + inSlope: -0.40908882 + outSlope: -0.40908882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.41019037 + inSlope: -0.5083618 + outSlope: -0.5083618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.3798977 + inSlope: -0.29628244 + outSlope: -0.29628244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.3573943 + inSlope: -0.25018328 + outSlope: -0.25018328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.30492902 + inSlope: -0.16925693 + outSlope: -0.16925693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.2765274 + inSlope: -0.020869393 + outSlope: -0.020869393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.27701217 + inSlope: 0.049430028 + outSlope: 0.049430028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.29373035 + inSlope: 0.09159951 + outSlope: 0.09159951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.35120556 + inSlope: 0.39042628 + outSlope: 0.39042628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: 0.5218402 + inSlope: 0.27259943 + outSlope: 0.27259943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.5070286 + inSlope: -0.07895537 + outSlope: -0.07895537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.43007946 + inSlope: -0.08084498 + outSlope: -0.08084498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.4272359 + inSlope: -0.022116622 + outSlope: -0.022116622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.27782255 + inSlope: 0.02343267 + outSlope: 0.02343267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.23886614 + inSlope: 0.057839163 + outSlope: 0.057839163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.23114882 + inSlope: -0.013420661 + outSlope: -0.013420661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.23308757 + inSlope: 0.009162658 + outSlope: 0.009162658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.20267914 + inSlope: 0.0016160255 + outSlope: 0.0016160255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.21495785 + inSlope: 0.023951255 + outSlope: 0.023951255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.2063836 + inSlope: -0.010655756 + outSlope: -0.010655756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.210941 + inSlope: -0.03492731 + outSlope: -0.03492731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.2207994 + inSlope: -0.047972076 + outSlope: -0.047972076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.24817026 + inSlope: -0.12164411 + outSlope: -0.12164411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.28249124 + inSlope: -0.101214595 + outSlope: -0.101214595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.29270542 + inSlope: 0.016510352 + outSlope: 0.016510352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.25700495 + inSlope: 0.016522871 + outSlope: 0.016522871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.25602615 + inSlope: -0.002217742 + outSlope: -0.002217742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.23537539 + inSlope: 0.033661753 + outSlope: 0.033661753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.23729661 + inSlope: -0.025075326 + outSlope: -0.025075326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.23528606 + inSlope: 0.033852413 + outSlope: 0.033852413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: -0.23980528 + inSlope: -0.08835563 + outSlope: -0.08835563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.27778703 + inSlope: -0.021880588 + outSlope: -0.021880588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08515854 + inSlope: -0.0007735937 + outSlope: -0.0007735937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.07506216 + inSlope: 0.020542143 + outSlope: 0.020542143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.07191016 + inSlope: 0.031849418 + outSlope: 0.031849418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.06348983 + inSlope: 0.03397116 + outSlope: 0.03397116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.05834918 + inSlope: 0.040692154 + outSlope: 0.040692154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.051152 + inSlope: 0.010711952 + outSlope: 0.010711952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.05315236 + inSlope: -0.030828502 + outSlope: -0.030828502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.062082555 + inSlope: -0.018264242 + outSlope: -0.018264242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.07047465 + inSlope: -0.030162368 + outSlope: -0.030162368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.07843169 + inSlope: 0.0029362298 + outSlope: 0.0029362298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.07203856 + inSlope: 0.035211403 + outSlope: 0.035211403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.05870666 + inSlope: 0.043058015 + outSlope: 0.043058015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.056728248 + inSlope: -0.021998046 + outSlope: -0.021998046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.06294637 + inSlope: -0.022875074 + outSlope: -0.022875074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.07251232 + inSlope: -0.016344614 + outSlope: -0.016344614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.07892588 + inSlope: 0.0064007626 + outSlope: 0.0064007626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.07789426 + inSlope: -0.0047420384 + outSlope: -0.0047420384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.07269815 + inSlope: 0.052378215 + outSlope: 0.052378215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.05910704 + inSlope: 0.034264244 + outSlope: 0.034264244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.052714434 + inSlope: 0.020614527 + outSlope: 0.020614527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.049968816 + inSlope: 0.016942302 + outSlope: 0.016942302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.05072565 + inSlope: -0.023373295 + outSlope: -0.023373295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.053499274 + inSlope: -0.05540125 + outSlope: -0.05540125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: -0.06432126 + inSlope: -0.0852451 + outSlope: -0.0852451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.08508956 + inSlope: -0.006765208 + outSlope: -0.006765208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.08516271 + inSlope: -0.002194496 + outSlope: -0.002194496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0023623132 + inSlope: -0.009823282 + outSlope: -0.009823282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0020348704 + inSlope: -0.014134686 + outSlope: -0.014134686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0014200007 + inSlope: -0.023504578 + outSlope: -0.023504578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.00046789844 + inSlope: -0.029358491 + outSlope: -0.029358491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0005372321 + inSlope: -0.03616523 + outSlope: -0.03616523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0019431169 + inSlope: -0.04209361 + outSlope: -0.04209361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0033434732 + inSlope: -0.04426858 + outSlope: -0.04426858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.004894356 + inSlope: -0.04562252 + outSlope: -0.04562252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.010453561 + inSlope: 0.032808557 + outSlope: 0.032808557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0091166 + inSlope: 0.047107495 + outSlope: 0.047107495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0073130624 + inSlope: 0.0023472458 + outSlope: 0.0023472458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.00896012 + inSlope: -0.10666053 + outSlope: -0.10666053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.014423761 + inSlope: -0.13991925 + outSlope: -0.13991925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.018288068 + inSlope: -0.1086299 + outSlope: -0.1086299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.027309382 + inSlope: -0.016939256 + outSlope: -0.016939256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.026758267 + inSlope: 0.034480173 + outSlope: 0.034480173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.022928476 + inSlope: 0.055663295 + outSlope: 0.055663295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.019234015 + inSlope: 0.090005174 + outSlope: 0.090005174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.004431733 + inSlope: 0.17027375 + outSlope: 0.17027375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0011960818 + inSlope: 0.17190132 + outSlope: 0.17190132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0070283446 + inSlope: 0.1727519 + outSlope: 0.1727519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.012712864 + inSlope: 0.16850966 + outSlope: 0.16850966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.01826233 + inSlope: 0.15299228 + outSlope: 0.15299228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.022912359 + inSlope: 0.13785577 + outSlope: 0.13785577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.03517114 + inSlope: 0.092348546 + outSlope: 0.092348546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.04378275 + inSlope: -0.002592598 + outSlope: -0.002592598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.02890049 + inSlope: -0.115777306 + outSlope: -0.115777306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.020696845 + inSlope: -0.12807778 + outSlope: -0.12807778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.016332963 + inSlope: -0.123812534 + outSlope: -0.123812534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.01244267 + inSlope: -0.118560985 + outSlope: -0.118560985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0049256976 + inSlope: -0.090397045 + outSlope: -0.090397045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.0024024174 + inSlope: -0.0674443 + outSlope: -0.0674443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.00042941514 + inSlope: -0.061716642 + outSlope: -0.061716642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.0017120213 + inSlope: -0.074303105 + outSlope: -0.074303105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.00452412 + inSlope: -0.086476594 + outSlope: -0.086476594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.0074771224 + inSlope: -0.07843401 + outSlope: -0.07843401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.011720065 + inSlope: -0.056181155 + outSlope: -0.056181155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.016326183 + inSlope: -0.035627343 + outSlope: -0.035627343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.017367702 + inSlope: -0.034035727 + outSlope: -0.034035727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.019550923 + inSlope: -0.023919392 + outSlope: -0.023919392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.020666415 + inSlope: -0.019909665 + outSlope: -0.019909665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.023421036 + inSlope: -0.03145273 + outSlope: -0.03145273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.028522242 + inSlope: -0.0381779 + outSlope: -0.0381779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.032241397 + inSlope: -0.024657682 + outSlope: -0.024657682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.038881756 + inSlope: -0.03899416 + outSlope: -0.03899416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.04486883 + inSlope: -0.045087583 + outSlope: -0.045087583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.048561845 + inSlope: -0.020525344 + outSlope: -0.020525344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.0414253 + inSlope: 0.085196204 + outSlope: 0.085196204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.031693608 + inSlope: 0.10925757 + outSlope: 0.10925757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.01458775 + inSlope: 0.13242203 + outSlope: 0.13242203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.010229905 + inSlope: 0.13564146 + outSlope: 0.13564146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.005544964 + inSlope: 0.13643342 + outSlope: 0.13643342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.0011343834 + inSlope: 0.13765207 + outSlope: 0.13765207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.0036318684 + inSlope: 0.15023682 + outSlope: 0.15023682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.008881464 + inSlope: 0.17088708 + outSlope: 0.17088708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.01502433 + inSlope: 0.1839832 + outSlope: 0.1839832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.02814662 + inSlope: 0.242088 + outSlope: 0.242088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.037286185 + inSlope: 0.26787567 + outSlope: 0.26787567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.053285502 + inSlope: 0.20266992 + outSlope: 0.20266992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.06629023 + inSlope: 0.23633191 + outSlope: 0.23633191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.08928561 + inSlope: 0.09807372 + outSlope: 0.09807372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.087294035 + inSlope: -0.08145907 + outSlope: -0.08145907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.08453773 + inSlope: -0.13292065 + outSlope: -0.13292065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.06176524 + inSlope: -0.2500198 + outSlope: -0.2500198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.035633583 + inSlope: -0.12188712 + outSlope: -0.12188712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.02842127 + inSlope: -0.040216744 + outSlope: -0.040216744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.027181005 + inSlope: -0.019460563 + outSlope: -0.019460563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.0271239 + inSlope: -0.001188555 + outSlope: -0.001188555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.030422343 + inSlope: 0.051124826 + outSlope: 0.051124826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.046547614 + inSlope: 0.082947955 + outSlope: 0.082947955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.052988477 + inSlope: 0.037345957 + outSlope: 0.037345957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.05474016 + inSlope: -0.0013102042 + outSlope: -0.0013102042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.05413104 + inSlope: -0.014739981 + outSlope: -0.014739981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.052229982 + inSlope: -0.0766228 + outSlope: -0.0766228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.019554451 + inSlope: -0.30079067 + outSlope: -0.30079067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.0019260254 + inSlope: -0.327973 + outSlope: -0.327973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.023079209 + inSlope: -0.29004163 + outSlope: -0.29004163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.051837232 + inSlope: -0.03414947 + outSlope: -0.03414947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.043759163 + inSlope: 0.12091287 + outSlope: 0.12091287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.01673698 + inSlope: 0.18072772 + outSlope: 0.18072772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.010644221 + inSlope: 0.16678195 + outSlope: 0.16678195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.0056181075 + inSlope: 0.13268669 + outSlope: 0.13268669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: -0.0017984499 + inSlope: 0.09786827 + outSlope: 0.09786827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.00090643764 + inSlope: 0.0861179 + outSlope: 0.0861179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.003942738 + inSlope: 0.10193975 + outSlope: 0.10193975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.007702415 + inSlope: 0.11244914 + outSlope: 0.11244914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.01457552 + inSlope: 0.081680186 + outSlope: 0.081680186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.018568235 + inSlope: 0.04382379 + outSlope: 0.04382379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.019944219 + inSlope: -0.022675082 + outSlope: -0.022675082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.017275466 + inSlope: -0.041550405 + outSlope: -0.041550405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.016045272 + inSlope: -0.06328245 + outSlope: -0.06328245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.013056622 + inSlope: -0.10774484 + outSlope: -0.10774484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.00886229 + inSlope: -0.12018594 + outSlope: -0.12018594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.0050442335 + inSlope: -0.10248025 + outSlope: -0.10248025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.0020302795 + inSlope: -0.08019961 + outSlope: -0.08019961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: -0.00030240172 + inSlope: -0.059590448 + outSlope: -0.059590448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: -0.0031878464 + inSlope: 0.0135625545 + outSlope: 0.0135625545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: -0.0025991108 + inSlope: 0.0202447 + outSlope: 0.0202447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.001838201 + inSlope: 0.025475506 + outSlope: 0.025475506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: -0.00090074545 + inSlope: 0.02742982 + outSlope: 0.02742982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.000009535325 + inSlope: 0.027044736 + outSlope: 0.027044736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.000902248 + inSlope: 0.023284279 + outSlope: 0.023284279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.0015427484 + inSlope: 0.015693452 + outSlope: 0.015693452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.0019484771 + inSlope: 0.01232158 + outSlope: 0.01232158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.0023641863 + inSlope: 0.012471288 + outSlope: 0.012471288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20941916 + inSlope: 0.00511229 + outSlope: 0.00511229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.24798454 + inSlope: 0.14534184 + outSlope: 0.14534184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.25580218 + inSlope: -0.12950116 + outSlope: -0.12950116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.24858448 + inSlope: -0.16957825 + outSlope: -0.16957825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.2535732 + inSlope: 0.23936075 + outSlope: 0.23936075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.27741492 + inSlope: 0.21541157 + outSlope: 0.21541157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.33606112 + inSlope: 0.22858521 + outSlope: 0.22858521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.3938275 + inSlope: 0.20163399 + outSlope: 0.20163399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.4083836 + inSlope: -0.19326004 + outSlope: -0.19326004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.3332923 + inSlope: -0.18845174 + outSlope: -0.18845174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.30666497 + inSlope: -0.20269383 + outSlope: -0.20269383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.29550415 + inSlope: 0.00024184608 + outSlope: 0.00024184608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.27727666 + inSlope: -0.059234854 + outSlope: -0.059234854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.2707195 + inSlope: 0.023361616 + outSlope: 0.023361616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.30555266 + inSlope: 0.30352575 + outSlope: 0.30352575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.39349854 + inSlope: 0.14565332 + outSlope: 0.14565332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.4023417 + inSlope: 0.024539553 + outSlope: 0.024539553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.36370593 + inSlope: -0.5363019 + outSlope: -0.5363019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.23843022 + inSlope: -0.25651398 + outSlope: -0.25651398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.25178158 + inSlope: 0.1238148 + outSlope: 0.1238148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.27895907 + inSlope: 0.16652288 + outSlope: 0.16652288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.29854262 + inSlope: 0.11083837 + outSlope: 0.11083837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.3006201 + inSlope: -0.21252191 + outSlope: -0.21252191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.23198038 + inSlope: -0.060124397 + outSlope: -0.060124397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.2678029 + inSlope: 0.19797045 + outSlope: 0.19797045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.31387374 + inSlope: 0.25288817 + outSlope: 0.25288817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.34798518 + inSlope: 0.25269115 + outSlope: 0.25269115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.38228855 + inSlope: -0.041975714 + outSlope: -0.041975714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.36464596 + inSlope: -0.3312348 + outSlope: -0.3312348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.23456739 + inSlope: -0.26451367 + outSlope: -0.26451367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.20941916 + inSlope: -0.017075853 + outSlope: -0.017075853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.060472712 + inSlope: -0.00617668 + outSlope: -0.00617668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.08037862 + inSlope: -0.059233934 + outSlope: -0.059233934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.086076304 + inSlope: -0.058045134 + outSlope: -0.058045134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.088126935 + inSlope: -0.12795651 + outSlope: -0.12795651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.09460674 + inSlope: -0.268264 + outSlope: -0.268264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.1060112 + inSlope: -0.32275385 + outSlope: -0.32275385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.14763287 + inSlope: -0.3097196 + outSlope: -0.3097196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.17824456 + inSlope: -0.059638433 + outSlope: -0.059638433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.17684244 + inSlope: 0.107482605 + outSlope: 0.107482605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.13591397 + inSlope: 0.4255767 + outSlope: 0.4255767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.059735537 + inSlope: 0.38263607 + outSlope: 0.38263607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.027084038 + inSlope: 0.10044782 + outSlope: 0.10044782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.027356476 + inSlope: -0.08214232 + outSlope: -0.08214232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.035581335 + inSlope: -0.16278721 + outSlope: -0.16278721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.04730393 + inSlope: -0.17340645 + outSlope: -0.17340645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.07670191 + inSlope: -0.1579889 + outSlope: -0.1579889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.09904833 + inSlope: -0.19829507 + outSlope: -0.19829507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.111439764 + inSlope: -0.15867987 + outSlope: -0.15867987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.12209976 + inSlope: -0.19712088 + outSlope: -0.19712088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.14275776 + inSlope: -0.1287767 + outSlope: -0.1287767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.13520262 + inSlope: 0.19894588 + outSlope: 0.19894588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.094272986 + inSlope: 0.11006187 + outSlope: 0.11006187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.09297712 + inSlope: -0.077226445 + outSlope: -0.077226445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.10689838 + inSlope: -0.057106964 + outSlope: -0.057106964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: -0.11572263 + inSlope: -0.04268203 + outSlope: -0.04268203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.12591027 + inSlope: -0.06641647 + outSlope: -0.06641647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.13506337 + inSlope: 0.14135702 + outSlope: 0.14135702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.08165182 + inSlope: 0.18391079 + outSlope: 0.18391079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.06557744 + inSlope: 0.15434003 + outSlope: 0.15434003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.06021948 + inSlope: 0.21575537 + outSlope: 0.21575537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.040950537 + inSlope: 0.30414295 + outSlope: 0.30414295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.030917585 + inSlope: 0.30944586 + outSlope: 0.30944586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: -0.020320833 + inSlope: 0.3687017 + outSlope: 0.3687017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.0063374937 + inSlope: 0.52973443 + outSlope: 0.52973443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.014994763 + inSlope: 0.6637157 + outSlope: 0.6637157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.06017121 + inSlope: 0.61127245 + outSlope: 0.61127245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.10358805 + inSlope: 0.22810987 + outSlope: 0.22810987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.090182886 + inSlope: -0.22158219 + outSlope: -0.22158219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.07130119 + inSlope: -0.16744712 + outSlope: -0.16744712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.060787678 + inSlope: -0.10615881 + outSlope: -0.10615881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.056937367 + inSlope: -0.03174652 + outSlope: -0.03174652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.063700184 + inSlope: -0.012153547 + outSlope: -0.012153547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.059301168 + inSlope: -0.016115844 + outSlope: -0.016115844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.0587817 + inSlope: 0.016909331 + outSlope: 0.016909331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.052166358 + inSlope: -0.18317929 + outSlope: -0.18317929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.008363243 + inSlope: -0.46211028 + outSlope: -0.46211028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.00809983 + inSlope: -0.5232388 + outSlope: -0.5232388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.045660794 + inSlope: -0.5741842 + outSlope: -0.5741842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.123706885 + inSlope: -0.26319927 + outSlope: -0.26319927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.13260603 + inSlope: 0.07523917 + outSlope: 0.07523917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.115060344 + inSlope: 0.25882584 + outSlope: 0.25882584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.08651711 + inSlope: 0.27916378 + outSlope: 0.27916378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: -0.07172385 + inSlope: 0.16966017 + outSlope: 0.16966017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.06059298 + inSlope: 0.20141107 + outSlope: 0.20141107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.04589984 + inSlope: 0.208589 + outSlope: 0.208589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.027391247 + inSlope: 0.17948924 + outSlope: 0.17948924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.015949376 + inSlope: 0.15498567 + outSlope: 0.15498567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.0067799687 + inSlope: 0.11536181 + outSlope: 0.11536181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.0033951998 + inSlope: 0.1093612 + outSlope: 0.1093612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.0005108267 + inSlope: 0.03857987 + outSlope: 0.03857987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.00082315505 + inSlope: -0.07774111 + outSlope: -0.07774111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.004671909 + inSlope: -0.15688848 + outSlope: -0.15688848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: -0.011282377 + inSlope: -0.20189515 + outSlope: -0.20189515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: -0.025152054 + inSlope: -0.21194556 + outSlope: -0.21194556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: -0.04946252 + inSlope: -0.13040248 + outSlope: -0.13040248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.06066753 + inSlope: 0.001768751 + outSlope: 0.001768751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.060472712 + inSlope: 0.005844539 + outSlope: 0.005844539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6948257 + inSlope: -0.013112425 + outSlope: -0.013112425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6908347 + inSlope: -0.024536844 + outSlope: -0.024536844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.6683527 + inSlope: 0.054296814 + outSlope: 0.054296814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.6600951 + inSlope: -0.14504863 + outSlope: -0.14504863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.6378326 + inSlope: 0.0791966 + outSlope: 0.0791966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.6875109 + inSlope: -0.0271109 + outSlope: -0.0271109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.6753659 + inSlope: -0.024296314 + outSlope: -0.024296314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.6226903 + inSlope: -0.1782842 + outSlope: -0.1782842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.6233689 + inSlope: 0.22588691 + outSlope: 0.22588691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.6780026 + inSlope: 0.39233693 + outSlope: 0.39233693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.7359458 + inSlope: -0.18409091 + outSlope: -0.18409091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.6865759 + inSlope: -0.062415063 + outSlope: -0.062415063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.68312293 + inSlope: 0.06676829 + outSlope: 0.06676829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.6641144 + inSlope: -0.13671589 + outSlope: -0.13671589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.664982 + inSlope: -0.050181497 + outSlope: -0.050181497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.64563286 + inSlope: 0.12522262 + outSlope: 0.12522262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.6948257 + inSlope: 0.019923467 + outSlope: 0.019923467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6853499 + inSlope: -0.011166929 + outSlope: -0.011166929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.66955537 + inSlope: 0.048294097 + outSlope: 0.048294097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.6716478 + inSlope: 0.044448674 + outSlope: 0.044448674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.63498205 + inSlope: -0.028375117 + outSlope: -0.028375117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.6720562 + inSlope: 0.028142657 + outSlope: 0.028142657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.6555204 + inSlope: -0.019074101 + outSlope: -0.019074101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.6646691 + inSlope: 0.053195238 + outSlope: 0.053195238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.681488 + inSlope: -0.047092013 + outSlope: -0.047092013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.64222604 + inSlope: 0.24687076 + outSlope: 0.24687076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.5972656 + inSlope: 0.002123952 + outSlope: 0.002123952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.6295177 + inSlope: -0.29772997 + outSlope: -0.29772997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: -0.6782645 + inSlope: -0.027233388 + outSlope: -0.027233388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.66579 + inSlope: 0.022097846 + outSlope: 0.022097846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.70286113 + inSlope: 0.09081343 + outSlope: 0.09081343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.6686454 + inSlope: 0.0010854016 + outSlope: 0.0010854016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.6801918 + inSlope: -0.0762061 + outSlope: -0.0762061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.6853499 + inSlope: 0.014437451 + outSlope: 0.014437451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2720328 + inSlope: 0.016633272 + outSlope: 0.016633272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2737798 + inSlope: -0.050011132 + outSlope: -0.050011132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.23203193 + inSlope: -0.13934992 + outSlope: -0.13934992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.20705014 + inSlope: -0.022420833 + outSlope: -0.022420833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.2187208 + inSlope: 0.12708654 + outSlope: 0.12708654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.25731295 + inSlope: 0.046260014 + outSlope: 0.046260014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.25912312 + inSlope: -0.007848598 + outSlope: -0.007848598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.23725432 + inSlope: -0.048816472 + outSlope: -0.048816472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.2457058 + inSlope: 0.043762967 + outSlope: 0.043762967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.2556484 + inSlope: -0.0036670626 + outSlope: -0.0036670626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.24907959 + inSlope: 0.009305446 + outSlope: 0.009305446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.2566227 + inSlope: 0.04709293 + outSlope: 0.04709293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.262847 + inSlope: 0.035336353 + outSlope: 0.035336353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.258058 + inSlope: -0.029570488 + outSlope: -0.029570488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.25094435 + inSlope: -0.008442708 + outSlope: -0.008442708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.2423395 + inSlope: -0.10374481 + outSlope: -0.10374481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.20355625 + inSlope: 0.0049176114 + outSlope: 0.0049176114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.21295364 + inSlope: 0.05653543 + outSlope: 0.05653543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: 0.23092198 + inSlope: 0.05918814 + outSlope: 0.05918814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.2530477 + inSlope: 0.105488256 + outSlope: 0.105488256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: 0.27128825 + inSlope: 0.009403348 + outSlope: 0.009403348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.27206853 + inSlope: 0.0068396395 + outSlope: 0.0068396395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.076927565 + inSlope: 0.00603117 + outSlope: 0.00603117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.06457712 + inSlope: 0.02879811 + outSlope: 0.02879811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.055202253 + inSlope: 0.03957142 + outSlope: 0.03957142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.05190376 + inSlope: 0.00009499141 + outSlope: 0.00009499141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.056735877 + inSlope: -0.033022434 + outSlope: -0.033022434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.07133821 + inSlope: -0.013195569 + outSlope: -0.013195569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.0690058 + inSlope: 0.0062166955 + outSlope: 0.0062166955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.066737175 + inSlope: 0.008196688 + outSlope: 0.008196688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.07577944 + inSlope: -0.010526786 + outSlope: -0.010526786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.075410284 + inSlope: 0.0089169005 + outSlope: 0.0089169005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.07235497 + inSlope: 0.02183622 + outSlope: 0.02183622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: -0.06786712 + inSlope: 0.01232532 + outSlope: 0.01232532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.056381922 + inSlope: 0.015077885 + outSlope: 0.015077885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.0569253 + inSlope: -0.020264963 + outSlope: -0.020264963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: -0.064214006 + inSlope: -0.0047016935 + outSlope: -0.0047016935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.06427469 + inSlope: 0.012323756 + outSlope: 0.012323756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.057135183 + inSlope: -0.014869064 + outSlope: -0.014869064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.06488225 + inSlope: -0.014441133 + outSlope: -0.014441133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.06727852 + inSlope: -0.010847311 + outSlope: -0.010847311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.06817743 + inSlope: -0.0020099822 + outSlope: -0.0020099822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.075531065 + inSlope: -0.019636877 + outSlope: -0.019636877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.076931365 + inSlope: -0.0023357593 + outSlope: -0.0023357593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0395099 + inSlope: -0.00018686055 + outSlope: -0.00018686055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.054040406 + inSlope: 0.09414035 + outSlope: 0.09414035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.07877883 + inSlope: 0.15124327 + outSlope: 0.15124327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11153444 + inSlope: 0.21781193 + outSlope: 0.21781193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.13815252 + inSlope: 0.06895422 + outSlope: 0.06895422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.089373834 + inSlope: -0.08085266 + outSlope: -0.08085266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.08248263 + inSlope: 0.034803517 + outSlope: 0.034803517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.09425629 + inSlope: 0.03270767 + outSlope: 0.03270767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.10257658 + inSlope: -0.000178508 + outSlope: -0.000178508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.087317854 + inSlope: -0.11118891 + outSlope: -0.11118891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.061507747 + inSlope: -0.06621514 + outSlope: -0.06621514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.05310767 + inSlope: -0.027289353 + outSlope: -0.027289353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.049553715 + inSlope: -0.019481238 + outSlope: -0.019481238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.05084593 + inSlope: 0.011749763 + outSlope: 0.011749763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.041207805 + inSlope: -0.112369075 + outSlope: -0.112369075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.010394227 + inSlope: -0.17670923 + outSlope: -0.17670923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.000908681 + inSlope: -0.1492113 + outSlope: -0.1492113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.0054558665 + inSlope: -0.11539264 + outSlope: -0.11539264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.008601582 + inSlope: -0.07903819 + outSlope: -0.07903819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.011622209 + inSlope: -0.0053787287 + outSlope: -0.0053787287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.011083655 + inSlope: 0.049132403 + outSlope: 0.049132403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.008346719 + inSlope: 0.09413366 + outSlope: 0.09413366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.004808084 + inSlope: 0.103940204 + outSlope: 0.103940204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.0014173782 + inSlope: 0.101190664 + outSlope: 0.101190664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.0019379538 + inSlope: 0.115228556 + outSlope: 0.115228556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.006264518 + inSlope: 0.16695173 + outSlope: 0.16695173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.0130680585 + inSlope: 0.21799386 + outSlope: 0.21799386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.028685197 + inSlope: 0.2362307 + outSlope: 0.2362307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.077541225 + inSlope: 0.14937192 + outSlope: 0.14937192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.09245904 + inSlope: -0.0358339 + outSlope: -0.0358339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.07276838 + inSlope: -0.09002921 + outSlope: -0.09002921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.05831725 + inSlope: -0.088156976 + outSlope: -0.088156976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.050446525 + inSlope: -0.04320857 + outSlope: -0.04320857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.04962021 + inSlope: 0.0432724 + outSlope: 0.0432724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.09202197 + inSlope: 0.09661037 + outSlope: 0.09661037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: 0.10335322 + inSlope: 0.050190434 + outSlope: 0.050190434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.102341175 + inSlope: -0.057846583 + outSlope: -0.057846583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.09359246 + inSlope: -0.053461842 + outSlope: -0.053461842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.08414683 + inSlope: -0.09196991 + outSlope: -0.09196991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.06670629 + inSlope: -0.017977115 + outSlope: -0.017977115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.06525069 + inSlope: -0.051516347 + outSlope: -0.051516347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.05836755 + inSlope: -0.06787051 + outSlope: -0.06787051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.0396426 + inSlope: -0.007233813 + outSlope: -0.007233813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.039512973 + inSlope: -0.0038887598 + outSlope: -0.0038887598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09822604 + inSlope: -0.31386828 + outSlope: -0.31386828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.10868832 + inSlope: -0.06068006 + outSlope: -0.06068006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.10227138 + inSlope: 0.23692329 + outSlope: 0.23692329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.04474122 + inSlope: 0.3122968 + outSlope: 0.3122968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0205274 + inSlope: 0.052391052 + outSlope: 0.052391052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.029021809 + inSlope: -0.08918296 + outSlope: -0.08918296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.03465336 + inSlope: -0.090782434 + outSlope: -0.090782434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.037994117 + inSlope: -0.14647666 + outSlope: -0.14647666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.044418465 + inSlope: -0.24008763 + outSlope: -0.24008763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.05399996 + inSlope: -0.30276886 + outSlope: -0.30276886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.08869697 + inSlope: -0.3600763 + outSlope: -0.3600763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.12606479 + inSlope: -0.16187789 + outSlope: -0.16187789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.1375639 + inSlope: -0.051185086 + outSlope: -0.051185086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.1187474 + inSlope: 0.04359946 + outSlope: 0.04359946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.11154597 + inSlope: 0.05198922 + outSlope: 0.05198922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.104703 + inSlope: -0.0003044259 + outSlope: -0.0003044259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.10277871 + inSlope: 0.026321884 + outSlope: 0.026321884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.090942934 + inSlope: 0.052346263 + outSlope: 0.052346263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.09127315 + inSlope: -0.08394254 + outSlope: -0.08394254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.11085142 + inSlope: 0.04207629 + outSlope: 0.04207629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.09897244 + inSlope: 0.19839314 + outSlope: 0.19839314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.059717808 + inSlope: 0.106342256 + outSlope: 0.106342256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.05786066 + inSlope: -0.025180396 + outSlope: -0.025180396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.057390414 + inSlope: 0.049356494 + outSlope: 0.049356494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.049289778 + inSlope: 0.037500113 + outSlope: 0.037500113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.0339554 + inSlope: 0.11245698 + outSlope: 0.11245698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.024451768 + inSlope: 0.17580655 + outSlope: 0.17580655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.0035892855 + inSlope: 0.23561168 + outSlope: 0.23561168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.004474967 + inSlope: 0.23599553 + outSlope: 0.23599553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.018831164 + inSlope: 0.18107043 + outSlope: 0.18107043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.028163906 + inSlope: 0.089381434 + outSlope: 0.089381434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.030662933 + inSlope: 0.005664831 + outSlope: 0.005664831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.027980514 + inSlope: -0.06656277 + outSlope: -0.06656277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.025138084 + inSlope: -0.10920136 + outSlope: -0.10920136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.02070043 + inSlope: -0.14505526 + outSlope: -0.14505526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.008985716 + inSlope: -0.21520191 + outSlope: -0.21520191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.007738516 + inSlope: -0.27544093 + outSlope: -0.27544093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.036039643 + inSlope: -0.26439333 + outSlope: -0.26439333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.05091012 + inSlope: -0.16471612 + outSlope: -0.16471612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.05948508 + inSlope: -0.0032011634 + outSlope: -0.0032011634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.036973678 + inSlope: 0.16412368 + outSlope: 0.16412368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.015570084 + inSlope: 0.14129785 + outSlope: 0.14129785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.006900891 + inSlope: 0.11920227 + outSlope: 0.11920227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.0030758334 + inSlope: 0.11507004 + outSlope: 0.11507004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.00077043736 + inSlope: 0.10878634 + outSlope: 0.10878634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.004176582 + inSlope: 0.08860031 + outSlope: 0.08860031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.006677119 + inSlope: 0.07004969 + outSlope: 0.07004969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.008846557 + inSlope: 0.07707302 + outSlope: 0.07707302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.011815316 + inSlope: 0.1024784 + outSlope: 0.1024784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.019963719 + inSlope: 0.1197734 + outSlope: 0.1197734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.023663385 + inSlope: 0.10710124 + outSlope: 0.10710124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.03036378 + inSlope: -0.0021445397 + outSlope: -0.0021445397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.027003724 + inSlope: -0.09216713 + outSlope: -0.09216713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.023298172 + inSlope: -0.14044973 + outSlope: -0.14044973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.017640417 + inSlope: -0.16621393 + outSlope: -0.16621393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.012217254 + inSlope: -0.16783886 + outSlope: -0.16783886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.0064511714 + inSlope: -0.16622591 + outSlope: -0.16622591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.0011355383 + inSlope: -0.15105945 + outSlope: -0.15105945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.0036194492 + inSlope: -0.14002487 + outSlope: -0.14002487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.008199509 + inSlope: -0.12739559 + outSlope: -0.12739559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.015894597 + inSlope: -0.11818443 + outSlope: -0.11818443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.024235906 + inSlope: -0.12324846 + outSlope: -0.12324846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.028208056 + inSlope: -0.12343188 + outSlope: -0.12343188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.03246469 + inSlope: -0.11435779 + outSlope: -0.11435779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.040854853 + inSlope: 0.026507122 + outSlope: 0.026507122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.03257322 + inSlope: 0.050521016 + outSlope: 0.050521016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.03013596 + inSlope: 0.009218371 + outSlope: 0.009218371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.030344479 + inSlope: -0.02132023 + outSlope: -0.02132023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.040620238 + inSlope: -0.04808356 + outSlope: -0.04808356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.042132553 + inSlope: -0.032179195 + outSlope: -0.032179195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.042765524 + inSlope: -0.0302513 + outSlope: -0.0302513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.0458336 + inSlope: -0.027056698 + outSlope: -0.027056698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.040885836 + inSlope: 0.052591242 + outSlope: 0.052591242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: -0.04534156 + inSlope: -0.16462353 + outSlope: -0.16462353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.08302568 + inSlope: -0.3275854 + outSlope: -0.3275854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.10896537 + inSlope: -0.12800688 + outSlope: -0.12800688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.11131331 + inSlope: -0.07043845 + outSlope: -0.07043845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.25684524 + inSlope: -0.42756644 + outSlope: -0.42756644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.27109745 + inSlope: -0.20009367 + outSlope: -0.20009367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.27018481 + inSlope: 0.039077993 + outSlope: 0.039077993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.24726532 + inSlope: 0.011131168 + outSlope: 0.011131168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.29742625 + inSlope: -0.3997444 + outSlope: -0.3997444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.32979047 + inSlope: -0.21410064 + outSlope: -0.21410064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.3481213 + inSlope: 0.03860504 + outSlope: 0.03860504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.31271333 + inSlope: 0.21107888 + outSlope: 0.21107888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.21582761 + inSlope: 0.22610648 + outSlope: 0.22610648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.192324 + inSlope: -0.072425365 + outSlope: -0.072425365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.22233325 + inSlope: -0.09662041 + outSlope: -0.09662041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.2899562 + inSlope: -0.2845384 + outSlope: -0.2845384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.3198291 + inSlope: 0.06310886 + outSlope: 0.06310886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.29724798 + inSlope: 0.064829946 + outSlope: 0.064829946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.28153077 + inSlope: 0.04957755 + outSlope: 0.04957755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.2863429 + inSlope: -0.06846523 + outSlope: -0.06846523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.2544547 + inSlope: 0.24575406 + outSlope: 0.24575406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.21359992 + inSlope: 0.08070317 + outSlope: 0.08070317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.21760313 + inSlope: -0.049531955 + outSlope: -0.049531955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.23391007 + inSlope: -0.24345183 + outSlope: -0.24345183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.32649177 + inSlope: -0.16675934 + outSlope: -0.16675934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.31136537 + inSlope: 0.10367106 + outSlope: 0.10367106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.29206973 + inSlope: -0.082985386 + outSlope: -0.082985386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.357842 + inSlope: -0.23885274 + outSlope: -0.23885274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.37448815 + inSlope: 0.18408465 + outSlope: 0.18408465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.30220884 + inSlope: 0.16001448 + outSlope: 0.16001448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.2834593 + inSlope: 0.19931157 + outSlope: 0.19931157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.23007649 + inSlope: 0.056249365 + outSlope: 0.056249365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.22594072 + inSlope: 0.1343323 + outSlope: 0.1343323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.20782878 + inSlope: -0.01566948 + outSlope: -0.01566948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.26812503 + inSlope: -0.09756455 + outSlope: -0.09756455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.27128014 + inSlope: -0.022161325 + outSlope: -0.022161325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6608471 + inSlope: 0.5834269 + outSlope: 0.5834269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.64139956 + inSlope: 0.2925485 + outSlope: 0.2925485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.64130735 + inSlope: 0.0066751246 + outSlope: 0.0066751246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.6681791 + inSlope: -0.10908544 + outSlope: -0.10908544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.65956867 + inSlope: 0.13855028 + outSlope: 0.13855028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.6438571 + inSlope: 0.0011247421 + outSlope: 0.0011247421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.6507897 + inSlope: -0.012281847 + outSlope: -0.012281847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.6497886 + inSlope: 0.06818003 + outSlope: 0.06818003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.62946653 + inSlope: -0.02970362 + outSlope: -0.02970362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.63987345 + inSlope: 0.103285715 + outSlope: 0.103285715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.61771256 + inSlope: 0.07844575 + outSlope: 0.07844575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.58143055 + inSlope: -0.08467563 + outSlope: -0.08467563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.6260949 + inSlope: -0.047836892 + outSlope: -0.047836892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.65986586 + inSlope: -0.123533726 + outSlope: -0.123533726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.658737 + inSlope: -0.011102479 + outSlope: -0.011102479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.6470844 + inSlope: 0.035216544 + outSlope: 0.035216544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.6415287 + inSlope: 0.008361348 + outSlope: 0.008361348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.69832915 + inSlope: 0.3332108 + outSlope: 0.3332108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.72113276 + inSlope: 0.08010326 + outSlope: 0.08010326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.6998557 + inSlope: -0.20754665 + outSlope: -0.20754665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.64895487 + inSlope: 0.17607558 + outSlope: 0.17607558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.7182499 + inSlope: 0.106016204 + outSlope: 0.106016204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.72172296 + inSlope: -0.06324476 + outSlope: -0.06324476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.6788858 + inSlope: 0.021325286 + outSlope: 0.021325286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.71678 + inSlope: 0.02614441 + outSlope: 0.02614441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.7445247 + inSlope: 0.08892426 + outSlope: 0.08892426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.742373 + inSlope: -0.0097105 + outSlope: -0.0097105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.72426665 + inSlope: -0.0504949 + outSlope: -0.0504949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.6566787 + inSlope: -0.23874901 + outSlope: -0.23874901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.6460804 + inSlope: 0.16669318 + outSlope: 0.16669318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.6908553 + inSlope: 0.042412918 + outSlope: 0.042412918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.7191771 + inSlope: 0.07214076 + outSlope: 0.07214076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.7229372 + inSlope: -0.09815106 + outSlope: -0.09815106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.70884246 + inSlope: -0.01184107 + outSlope: -0.01184107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.026841437 + inSlope: -0.014417543 + outSlope: -0.014417543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.028272152 + inSlope: -0.014146585 + outSlope: -0.014146585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.030740561 + inSlope: -0.032733228 + outSlope: -0.032733228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.040520594 + inSlope: -0.017763153 + outSlope: -0.017763153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.04170726 + inSlope: -0.0010323003 + outSlope: -0.0010323003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.04065203 + inSlope: 0.01609046 + outSlope: 0.01609046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.038707335 + inSlope: 0.0438729 + outSlope: 0.0438729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.03458754 + inSlope: 0.033159703 + outSlope: 0.033159703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.033484634 + inSlope: 0.012498219 + outSlope: 0.012498219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.033754326 + inSlope: -0.008143801 + outSlope: -0.008143801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.03514656 + inSlope: -0.00837547 + outSlope: -0.00837547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.0339727 + inSlope: 0.008578926 + outSlope: 0.008578926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.033687305 + inSlope: 0.019567221 + outSlope: 0.019567221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.031651787 + inSlope: 0.028781563 + outSlope: 0.028781563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.029324511 + inSlope: 0.015729606 + outSlope: 0.015729606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.028275719 + inSlope: 0.005525747 + outSlope: 0.005525747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.028587027 + inSlope: -0.004664721 + outSlope: -0.004664721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.030451644 + inSlope: -0.0046850136 + outSlope: -0.0046850136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.030608848 + inSlope: -0.023930714 + outSlope: -0.023930714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.032047033 + inSlope: -0.04245104 + outSlope: -0.04245104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.04024662 + inSlope: -0.108448684 + outSlope: -0.108448684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.065101355 + inSlope: -0.1055381 + outSlope: -0.1055381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.0842083 + inSlope: -0.033159517 + outSlope: -0.033159517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.08722275 + inSlope: 0.00783203 + outSlope: 0.00783203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.084974505 + inSlope: 0.011900594 + outSlope: 0.011900594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.08622436 + inSlope: -0.007030051 + outSlope: -0.007030051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.09209361 + inSlope: 0.013563449 + outSlope: 0.013563449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.08866254 + inSlope: 0.056046262 + outSlope: 0.056046262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.060118586 + inSlope: 0.12188411 + outSlope: 0.12188411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.050150286 + inSlope: 0.06522004 + outSlope: 0.06522004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.044083342 + inSlope: 0.066278115 + outSlope: 0.066278115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.03339547 + inSlope: 0.032908052 + outSlope: 0.032908052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.03033421 + inSlope: 0.016534967 + outSlope: 0.016534967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.02978418 + inSlope: 0.0070008514 + outSlope: 0.0070008514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.030034956 + inSlope: -0.0024703727 + outSlope: -0.0024703727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.03107209 + inSlope: -0.002896062 + outSlope: -0.002896062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.034072783 + inSlope: -0.02060315 + outSlope: -0.02060315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.034760524 + inSlope: -0.007831834 + outSlope: -0.007831834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.034430023 + inSlope: 0.0049291225 + outSlope: 0.0049291225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.03347792 + inSlope: 0.004522488 + outSlope: 0.004522488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.032576494 + inSlope: 0.022556953 + outSlope: 0.022556953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.030933216 + inSlope: 0.013444015 + outSlope: 0.013444015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.030483378 + inSlope: 0.0022410997 + outSlope: 0.0022410997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.031078711 + inSlope: -0.008770273 + outSlope: -0.008770273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.034872577 + inSlope: -0.004948904 + outSlope: -0.004948904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: -0.03399643 + inSlope: 0.003692567 + outSlope: 0.003692567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.033639196 + inSlope: 0.012437695 + outSlope: 0.012437695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: -0.03151058 + inSlope: 0.02174033 + outSlope: 0.02174033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.027009727 + inSlope: 0.004931246 + outSlope: 0.004931246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.026841437 + inSlope: 0.0050487043 + outSlope: 0.0050487043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03772621 + inSlope: 0.0060453634 + outSlope: 0.0060453634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.032951288 + inSlope: 0.052356347 + outSlope: 0.052356347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.006724705 + inSlope: 0.068042696 + outSlope: 0.068042696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0027372402 + inSlope: 0.041655794 + outSlope: 0.041655794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0017288594 + inSlope: 0.01975148 + outSlope: 0.01975148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0014204743 + inSlope: 0.015917208 + outSlope: 0.015917208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0006677118 + inSlope: 0.022949997 + outSlope: 0.022949997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.000109525405 + inSlope: 0.022620566 + outSlope: 0.022620566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.001458604 + inSlope: 0.015574496 + outSlope: 0.015574496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0018786257 + inSlope: 0.011825283 + outSlope: 0.011825283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0030793096 + inSlope: 0.015804926 + outSlope: 0.015804926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.004360851 + inSlope: 0.023528138 + outSlope: 0.023528138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.005236961 + inSlope: 0.0323441 + outSlope: 0.0323441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.007887101 + inSlope: 0.039165266 + outSlope: 0.039165266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.010817073 + inSlope: 0.016550656 + outSlope: 0.016550656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.011444624 + inSlope: 0.0030784663 + outSlope: 0.0030784663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.012536847 + inSlope: 0.0051339124 + outSlope: 0.0051339124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.013191389 + inSlope: 0.0019954648 + outSlope: 0.0019954648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.012976246 + inSlope: -0.009631586 + outSlope: -0.009631586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.010825254 + inSlope: -0.018213138 + outSlope: -0.018213138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.008727682 + inSlope: -0.012688537 + outSlope: -0.012688537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.0063994313 + inSlope: -0.018096946 + outSlope: -0.018096946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0032335685 + inSlope: -0.00564513 + outSlope: -0.00564513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.003162201 + inSlope: 0.0015405468 + outSlope: 0.0015405468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.0034137103 + inSlope: 0.0058333282 + outSlope: 0.0058333282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.004092916 + inSlope: 0.0070621585 + outSlope: 0.0070621585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.0051092487 + inSlope: 0.0072127464 + outSlope: 0.0072127464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.006142319 + inSlope: 0.006713224 + outSlope: 0.006713224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.008055515 + inSlope: 0.014264944 + outSlope: 0.014264944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.012977389 + inSlope: 0.05007506 + outSlope: 0.05007506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.024627868 + inSlope: 0.08346245 + outSlope: 0.08346245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.034465097 + inSlope: 0.05401901 + outSlope: 0.05401901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.039004665 + inSlope: 0.009298946 + outSlope: 0.009298946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.0333337 + inSlope: -0.048170283 + outSlope: -0.048170283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.026458928 + inSlope: -0.0486575 + outSlope: -0.0486575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.023082368 + inSlope: -0.06221035 + outSlope: -0.06221035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.015938222 + inSlope: -0.06699351 + outSlope: -0.06699351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.0080332365 + inSlope: -0.04656417 + outSlope: -0.04656417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.0056630783 + inSlope: -0.02490509 + outSlope: -0.02490509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.0040897587 + inSlope: -0.011643354 + outSlope: -0.011643354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.0022944817 + inSlope: -0.018571027 + outSlope: -0.018571027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.0008103584 + inSlope: -0.024570707 + outSlope: -0.024570707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.00003420739 + inSlope: -0.02516304 + outSlope: -0.02516304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.0008671879 + inSlope: -0.023213267 + outSlope: -0.023213267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.0029766925 + inSlope: -0.008049596 + outSlope: -0.008049596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: -0.0033751486 + inSlope: -0.0070127295 + outSlope: -0.0070127295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.0044374107 + inSlope: -0.013261385 + outSlope: -0.013261385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: -0.005689767 + inSlope: -0.011233891 + outSlope: -0.011233891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.007176441 + inSlope: -0.0054944893 + outSlope: -0.0054944893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.0073260977 + inSlope: 0.0028271137 + outSlope: 0.0028271137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.0064458805 + inSlope: 0.01604548 + outSlope: 0.01604548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.005833775 + inSlope: 0.018612899 + outSlope: 0.018612899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.0035143693 + inSlope: 0.031114642 + outSlope: 0.031114642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.002373089 + inSlope: 0.037621267 + outSlope: 0.037621267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.000506475 + inSlope: 0.04660418 + outSlope: 0.04660418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.0021006549 + inSlope: 0.047016256 + outSlope: 0.047016256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.0050481725 + inSlope: 0.040013276 + outSlope: 0.040013276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.010226535 + inSlope: 0.009708111 + outSlope: 0.009708111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.011035667 + inSlope: 0.0055372305 + outSlope: 0.0055372305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.010924953 + inSlope: -0.0149948895 + outSlope: -0.0149948895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.008083369 + inSlope: -0.019340765 + outSlope: -0.019340765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.007510618 + inSlope: -0.011040877 + outSlope: -0.011040877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.0073473086 + inSlope: -0.016536783 + outSlope: -0.016536783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.0064081643 + inSlope: -0.045215912 + outSlope: -0.045215912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.0043329173 + inSlope: -0.07120158 + outSlope: -0.07120158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.0016613966 + inSlope: -0.08411317 + outSlope: -0.08411317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.011251351 + inSlope: -0.10444376 + outSlope: -0.10444376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.037411336 + inSlope: -0.01905309 + outSlope: -0.01905309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.03772621 + inSlope: -0.009446191 + outSlope: -0.009446191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.004536224 + inSlope: 0.0015140091 + outSlope: 0.0015140091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0049254936 + inSlope: 0.0072899507 + outSlope: 0.0072899507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.011530943 + inSlope: 0.02188522 + outSlope: 0.02188522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.012269891 + inSlope: 0.020105207 + outSlope: 0.020105207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.014030037 + inSlope: 0.06052073 + outSlope: 0.06052073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.016906008 + inSlope: 0.11514956 + outSlope: 0.11514956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.021706672 + inSlope: 0.13165751 + outSlope: 0.13165751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.029354999 + inSlope: 0.103922956 + outSlope: 0.103922956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.042988867 + inSlope: 0.020123571 + outSlope: 0.020123571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.049179256 + inSlope: -0.00093866227 + outSlope: -0.00093866227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0489044 + inSlope: -0.0011549654 + outSlope: -0.0011549654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.045218922 + inSlope: -0.041714877 + outSlope: -0.041714877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.034122314 + inSlope: -0.01907234 + outSlope: -0.01907234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.033321984 + inSlope: 0.000017377053 + outSlope: 0.000017377053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.035116214 + inSlope: 0.016172562 + outSlope: 0.016172562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.038173977 + inSlope: 0.006855313 + outSlope: 0.006855313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.036081128 + inSlope: -0.052058764 + outSlope: -0.052058764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.018263716 + inSlope: -0.11685991 + outSlope: -0.11685991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.0022484898 + inSlope: -0.116527006 + outSlope: -0.116527006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.0015781906 + inSlope: -0.11323792 + outSlope: -0.11323792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.0053006974 + inSlope: -0.11335978 + outSlope: -0.11335978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.009135502 + inSlope: -0.107632115 + outSlope: -0.107632115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.015137794 + inSlope: -0.074116714 + outSlope: -0.074116714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.02003617 + inSlope: -0.09455626 + outSlope: -0.09455626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.027694918 + inSlope: -0.1176891 + outSlope: -0.1176891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.04772345 + inSlope: -0.04263884 + outSlope: -0.04263884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.05206615 + inSlope: -0.008328378 + outSlope: -0.008328378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.051908206 + inSlope: 0.016077511 + outSlope: 0.016077511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.046478894 + inSlope: 0.028876577 + outSlope: 0.028876577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.031540666 + inSlope: 0.088209696 + outSlope: 0.088209696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.0030829543 + inSlope: 0.09282482 + outSlope: 0.09282482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.00016799064 + inSlope: 0.081680685 + outSlope: 0.081680685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.0023624192 + inSlope: 0.06962918 + outSlope: 0.06962918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.010792886 + inSlope: 0.024194546 + outSlope: 0.024194546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.012510767 + inSlope: 0.010140171 + outSlope: 0.010140171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.013394635 + inSlope: 0.00054655643 + outSlope: 0.00054655643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.010855084 + inSlope: -0.0313416 + outSlope: -0.0313416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.007049639 + inSlope: -0.046337154 + outSlope: -0.046337154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.0053623184 + inSlope: -0.04109171 + outSlope: -0.04109171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.0043101697 + inSlope: -0.022529382 + outSlope: -0.022529382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.003860361 + inSlope: -0.010362152 + outSlope: -0.010362152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.003449872 + inSlope: -0.0040529473 + outSlope: -0.0040529473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.004514489 + inSlope: 0.0013675997 + outSlope: 0.0013675997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.004536224 + inSlope: 0.0006520568 + outSlope: 0.0006520568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.19208843 + inSlope: -0.051717456 + outSlope: -0.051717456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.17786191 + inSlope: -0.2646274 + outSlope: -0.2646274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.014223193 + inSlope: -0.2648656 + outSlope: -0.2648656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.006557166 + inSlope: -0.19851896 + outSlope: -0.19851896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0009885846 + inSlope: -0.09835871 + outSlope: -0.09835871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.000000085377366 + inSlope: -0.014833905 + outSlope: -0.014833905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.00000034150946 + inSlope: -0.0000038419785 + outSlope: -0.0000038419785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00000034150946 + inSlope: 0.0000038419785 + outSlope: 0.0000038419785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.000000085377366 + inSlope: -6.8212103e-12 + outSlope: -6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000034150946 + inSlope: -6.8212103e-12 + outSlope: -6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.00000034150946 + inSlope: 6.8212103e-12 + outSlope: 6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.000000085377366 + inSlope: 6.8212103e-12 + outSlope: 6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.00000034150946 + inSlope: 6.8212103e-12 + outSlope: 6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.00000034150946 + inSlope: 0.000003841971 + outSlope: 0.000003841971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.000000085377366 + inSlope: 0.000003841971 + outSlope: 0.000003841971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000000085377366 + inSlope: -0.000011525914 + outSlope: -0.000011525914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.0000008537736 + inSlope: 4.092726e-11 + outSlope: 4.092726e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.000000085377366 + inSlope: 0.0000115259545 + outSlope: 0.0000115259545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.000000085377366 + inSlope: -0.000003841971 + outSlope: -0.000003841971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.00000034150946 + inSlope: 1.4097168e-11 + outSlope: 1.4097168e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.00000034150946 + inSlope: 0.000003841971 + outSlope: 0.000003841971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.000000085377366 + inSlope: 0.000003841971 + outSlope: 0.000003841971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.000000085377366 + inSlope: 1.4097168e-11 + outSlope: 1.4097168e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.00000034150946 + inSlope: 2.7739588e-11 + outSlope: 2.7739588e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.000000085377366 + inSlope: 0.000003841999 + outSlope: 0.000003841999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.00000034150946 + inSlope: -2.7739588e-11 + outSlope: -2.7739588e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.000000085377366 + inSlope: 0.0000038419576 + outSlope: 0.0000038419576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.00000034150946 + inSlope: -2.7739588e-11 + outSlope: -2.7739588e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.000000085377366 + inSlope: 0.0000038419576 + outSlope: 0.0000038419576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.000000085377366 + inSlope: -0.0000038419576 + outSlope: -0.0000038419576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.00000034150946 + inSlope: 2.7739588e-11 + outSlope: 2.7739588e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.000000085377366 + inSlope: -0.0000038419576 + outSlope: -0.0000038419576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.00000034150946 + inSlope: -0.0000038419576 + outSlope: -0.0000038419576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.000000085377366 + inSlope: 2.7739588e-11 + outSlope: 2.7739588e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.00000034150946 + inSlope: -0.0000038419576 + outSlope: -0.0000038419576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.00000034150946 + inSlope: 2.7284841e-11 + outSlope: 2.7284841e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.000000085377366 + inSlope: 0.0000038420126 + outSlope: 0.0000038420126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.00000034150946 + inSlope: -5.502443e-11 + outSlope: -5.502443e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.000000085377366 + inSlope: 0.0000025612687 + outSlope: 0.0000025612687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.00000017075472 + inSlope: -0.000003841985 + outSlope: -0.000003841985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: -0.00000034150946 + inSlope: -0.0000025613235 + outSlope: -0.0000025613235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.000000085377366 + inSlope: -0.0000038419303 + outSlope: -0.0000038419303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.00000034150946 + inSlope: -0.0000038419303 + outSlope: -0.0000038419303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.00000034150946 + inSlope: 0.020976605 + outSlope: 0.020976605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.0013980974 + inSlope: 0.10998028 + outSlope: 0.10998028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.00733167 + inSlope: 0.21581897 + outSlope: 0.21581897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.015786014 + inSlope: 0.29368836 + outSlope: 0.29368836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.19016135 + inSlope: 0.110290974 + outSlope: 0.110290974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.19208843 + inSlope: 0.05781239 + outSlope: 0.05781239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.004739906 + inSlope: 0.0011279945 + outSlope: 0.0011279945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0042002546 + inSlope: 0.007477992 + outSlope: 0.007477992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.00097240513 + inSlope: 0.010113782 + outSlope: 0.010113782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0003855595 + inSlope: 0.007129453 + outSlope: 0.007129453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.00017862488 + inSlope: 0.0053794375 + outSlope: 0.0053794375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.000026930062 + inSlope: 0.002680012 + outSlope: 0.002680012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.000000042688683 + inSlope: 0.0004058723 + outSlope: 0.0004058723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00000012806605 + inSlope: 0.0000012806594 + outSlope: 0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000012806605 + inSlope: -0.0000012806594 + outSlope: -0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.000000042688683 + inSlope: 2.2737368e-12 + outSlope: 2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000012806605 + inSlope: 2.2737368e-12 + outSlope: 2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.00000012806605 + inSlope: -2.2737368e-12 + outSlope: -2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.000000042688683 + inSlope: -2.2737368e-12 + outSlope: -2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.00000012806605 + inSlope: -2.2737368e-12 + outSlope: -2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.00000012806605 + inSlope: -0.0000012806571 + outSlope: -0.0000012806571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.000000042688683 + inSlope: -0.0000012806571 + outSlope: -0.0000012806571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.000000042688683 + inSlope: -0.000002561313 + outSlope: -0.000002561313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.00000012806596 + inSlope: 9.094947e-12 + outSlope: 9.094947e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.000000042688683 + inSlope: 0.0000025613222 + outSlope: 0.0000025613222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.000000042688683 + inSlope: 0.0000012806571 + outSlope: 0.0000012806571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.00000012806605 + inSlope: -4.5474735e-12 + outSlope: -4.5474735e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.00000012806605 + inSlope: -0.0000012806571 + outSlope: -0.0000012806571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.000000042688683 + inSlope: -0.0000012806571 + outSlope: -0.0000012806571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.000000042688683 + inSlope: -4.5474735e-12 + outSlope: -4.5474735e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.00000012806605 + inSlope: -9.208634e-12 + outSlope: -9.208634e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.000000042688683 + inSlope: -0.0000012806663 + outSlope: -0.0000012806663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.00000012806605 + inSlope: 9.094947e-12 + outSlope: 9.094947e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.000000042688683 + inSlope: -0.0000012806526 + outSlope: -0.0000012806526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.00000012806605 + inSlope: 9.094947e-12 + outSlope: 9.094947e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.000000042688683 + inSlope: -0.0000012806526 + outSlope: -0.0000012806526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.000000042688683 + inSlope: 0.0000012806526 + outSlope: 0.0000012806526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.00000012806605 + inSlope: -9.094947e-12 + outSlope: -9.094947e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.000000042688683 + inSlope: 0.0000012806526 + outSlope: 0.0000012806526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.00000012806605 + inSlope: 0.0000012806526 + outSlope: 0.0000012806526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.000000042688683 + inSlope: -9.094947e-12 + outSlope: -9.094947e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.00000012806605 + inSlope: 0.0000012806526 + outSlope: 0.0000012806526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.00000012806605 + inSlope: -9.208634e-12 + outSlope: -9.208634e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.000000042688683 + inSlope: -0.0000012806709 + outSlope: -0.0000012806709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.00000012806605 + inSlope: 1.8303581e-11 + outSlope: 1.8303581e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.000000042688683 + inSlope: -0.0000025613049 + outSlope: -0.0000025613049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.00000004268866 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.00000012806605 + inSlope: 0.000002561323 + outSlope: 0.000002561323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.000000042688683 + inSlope: 0.0000012806433 + outSlope: 0.0000012806433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.00000012806605 + inSlope: 0.0000012806433 + outSlope: 0.0000012806433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.00000012806605 + inSlope: -0.0005735434 + outSlope: -0.0005735434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.000038108123 + inSlope: -0.0029972263 + outSlope: -0.0029972263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: -0.00019968682 + inSlope: -0.0058576385 + outSlope: -0.0058576385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.00042861697 + inSlope: -0.007884722 + outSlope: -0.007884722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: -0.003112852 + inSlope: -0.011746351 + outSlope: -0.011746351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.0046982546 + inSlope: -0.0024247682 + outSlope: -0.0024247682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.004739906 + inSlope: -0.0012495473 + outSlope: -0.0012495473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0039536664 + inSlope: 0.001195832 + outSlope: 0.001195832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.003636104 + inSlope: 0.00585105 + outSlope: 0.00585105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.00095709687 + inSlope: 0.008361515 + outSlope: 0.008361515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0002684297 + inSlope: 0.0050460454 + outSlope: 0.0050460454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.00012401094 + inSlope: 0.0037440564 + outSlope: 0.0037440564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.000018825707 + inSlope: 0.0018608032 + outSlope: 0.0018608032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.000000042688683 + inSlope: 0.00028174554 + outSlope: 0.00028174554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.000000042688683 + inSlope: -0.0000012806594 + outSlope: -0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.000000042688683 + inSlope: 0.0000012806594 + outSlope: 0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.000000042688683 + inSlope: 0.0000012806571 + outSlope: 0.0000012806571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.000000042688683 + inSlope: 0.0000012806571 + outSlope: 0.0000012806571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.000000042688683 + inSlope: 0.000002561314 + outSlope: 0.000002561314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.0000002134434 + inSlope: -9.322321e-12 + outSlope: -9.322321e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.000000042688683 + inSlope: -0.0000025613233 + outSlope: -0.0000025613233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.000000042688683 + inSlope: 0.0000012806571 + outSlope: 0.0000012806571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.000000042688683 + inSlope: -0.0000012806526 + outSlope: -0.0000012806526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: -0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.000000042688683 + inSlope: 0.0000012806709 + outSlope: 0.0000012806709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.000000042688683 + inSlope: 0.000005122628 + outSlope: 0.000005122628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.00000029882074 + inSlope: -0.0000012806613 + outSlope: -0.0000012806613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: -0.000000042688683 + inSlope: -0.000005122646 + outSlope: -0.000005122646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.000000042688683 + inSlope: -0.0000012806433 + outSlope: -0.0000012806433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.000000042688683 + inSlope: -0.0000012806433 + outSlope: -0.0000012806433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.000000042688683 + inSlope: -0.0003950842 + outSlope: -0.0003950842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.00002638161 + inSlope: -0.0020682754 + outSlope: -0.0020682754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: -0.00013792758 + inSlope: -0.0040924223 + outSlope: -0.0040924223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.000765611 + inSlope: -0.0081975255 + outSlope: -0.0081975255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: -0.0036001792 + inSlope: -0.0064780964 + outSlope: -0.0064780964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.0039536664 + inSlope: -0.0013375854 + outSlope: -0.0013375854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06672238 + inSlope: -0.032470375 + outSlope: -0.032470375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.062569775 + inSlope: -0.1184708 + outSlope: -0.1184708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.006212976 + inSlope: -0.2999866 + outSlope: -0.2999866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0037782716 + inSlope: -0.2956236 + outSlope: -0.2956236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.04920245 + inSlope: -0.114606336 + outSlope: -0.114606336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.049922157 + inSlope: 0.12544791 + outSlope: 0.12544791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.04409645 + inSlope: 0.18823156 + outSlope: 0.18823156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.016917774 + inSlope: 0.16389152 + outSlope: 0.16389152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.009133477 + inSlope: 0.06966934 + outSlope: 0.06966934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0075633964 + inSlope: 0.019567845 + outSlope: 0.019567845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.007828956 + inSlope: -0.007878514 + outSlope: -0.007878514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.008734574 + inSlope: -0.0042279754 + outSlope: -0.0042279754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.008863833 + inSlope: 0.015699368 + outSlope: 0.015699368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.007687946 + inSlope: 0.04109684 + outSlope: 0.04109684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.006124042 + inSlope: 0.0636501 + outSlope: 0.0636501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0034446102 + inSlope: 0.09264608 + outSlope: 0.09264608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.000052357507 + inSlope: 0.11170551 + outSlope: 0.11170551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0040024314 + inSlope: 0.12087993 + outSlope: 0.12087993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.01930274 + inSlope: 0.09258958 + outSlope: 0.09258958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.02811622 + inSlope: 0.016916467 + outSlope: 0.016916467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.02849884 + inSlope: -0.0075423233 + outSlope: -0.0075423233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.02662919 + inSlope: -0.027017834 + outSlope: -0.027017834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.019688059 + inSlope: -0.10208732 + outSlope: -0.10208732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.015604308 + inSlope: -0.1529723 + outSlope: -0.1529723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.009489923 + inSlope: -0.20101313 + outSlope: -0.20101313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0022034151 + inSlope: -0.21104932 + outSlope: -0.21104932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.0045800703 + inSlope: -0.20967008 + outSlope: -0.20967008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.011774577 + inSlope: -0.25575158 + outSlope: -0.25575158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.021630159 + inSlope: -0.37472117 + outSlope: -0.37472117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.076272346 + inSlope: -0.6298311 + outSlope: -0.6298311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.19533879 + inSlope: -0.4454087 + outSlope: -0.4454087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.26248452 + inSlope: -0.098285235 + outSlope: -0.098285235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.25981602 + inSlope: 0.069665074 + outSlope: 0.069665074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.26450393 + inSlope: -0.10674442 + outSlope: -0.10674442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.2721277 + inSlope: 0.14189301 + outSlope: 0.14189301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.1908848 + inSlope: 0.45807233 + outSlope: 0.45807233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.14272423 + inSlope: 0.4540524 + outSlope: 0.4540524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.118669555 + inSlope: 0.27262747 + outSlope: 0.27262747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.102459125 + inSlope: 0.2786659 + outSlope: 0.2786659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.07352464 + inSlope: 0.24295405 + outSlope: 0.24295405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.038598504 + inSlope: 0.11513963 + outSlope: 0.11513963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.023740625 + inSlope: 0.017583461 + outSlope: 0.017583461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.022745037 + inSlope: 0.0068746256 + outSlope: 0.0068746256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: -0.022830425 + inSlope: -0.0014521382 + outSlope: -0.0014521382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.022948334 + inSlope: -0.00238267 + outSlope: -0.00238267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.023038039 + inSlope: -0.014910665 + outSlope: -0.014910665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.03174341 + inSlope: -0.040822506 + outSlope: -0.040822506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.03686226 + inSlope: -0.0708714 + outSlope: -0.0708714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.049377177 + inSlope: -0.015235968 + outSlope: -0.015235968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.049245633 + inSlope: 0.004868326 + outSlope: 0.004868326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.049052622 + inSlope: 0.030355763 + outSlope: 0.030355763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.0262196 + inSlope: 0.08195531 + outSlope: 0.08195531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.022381954 + inSlope: 0.02443643 + outSlope: 0.02443643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.02225533 + inSlope: 0.0037017595 + outSlope: 0.0037017595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.02213517 + inSlope: -0.008013023 + outSlope: -0.008013023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.024204304 + inSlope: -0.004935772 + outSlope: -0.004935772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.023691352 + inSlope: 0.0075751524 + outSlope: 0.0075751524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.022956269 + inSlope: 0.0070450027 + outSlope: 0.0070450027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.022903765 + inSlope: -0.0057448223 + outSlope: -0.0057448223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.023576219 + inSlope: -0.007544223 + outSlope: -0.007544223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.024587628 + inSlope: -0.023629531 + outSlope: -0.023629531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.028569743 + inSlope: -0.020865679 + outSlope: -0.020865679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.030741632 + inSlope: -0.031309046 + outSlope: -0.031309046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.031903133 + inSlope: 0.053541217 + outSlope: 0.053541217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.004525139 + inSlope: 0.23916703 + outSlope: 0.23916703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.003756927 + inSlope: 0.25411236 + outSlope: 0.25411236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.06571852 + inSlope: 0.057281088 + outSlope: 0.057281088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.06672238 + inSlope: 0.03011587 + outSlope: 0.03011587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.009534893 + inSlope: 0.0000037997959 + outSlope: 0.0000037997959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0071921507 + inSlope: 0.02482041 + outSlope: 0.02482041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0010693416 + inSlope: 0.045922957 + outSlope: 0.045922957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0004982792 + inSlope: 0.047558006 + outSlope: 0.047558006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.002101192 + inSlope: 0.045410566 + outSlope: 0.045410566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.003525653 + inSlope: 0.051214386 + outSlope: 0.051214386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0055154837 + inSlope: 0.093677744 + outSlope: 0.093677744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.009770838 + inSlope: 0.16524746 + outSlope: 0.16524746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.016531978 + inSlope: 0.1913286 + outSlope: 0.1913286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.032062814 + inSlope: 0.112153485 + outSlope: 0.112153485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.036710612 + inSlope: 0.027461255 + outSlope: 0.027461255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.03476766 + inSlope: -0.023148492 + outSlope: -0.023148492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.035295222 + inSlope: 0.05298792 + outSlope: 0.05298792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.04994449 + inSlope: 0.048720084 + outSlope: 0.048720084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.057215627 + inSlope: 0.028796725 + outSlope: 0.028796725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.06306032 + inSlope: -0.0071265227 + outSlope: -0.0071265227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.05767758 + inSlope: -0.044950616 + outSlope: -0.044950616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.05139573 + inSlope: -0.06650862 + outSlope: -0.06650862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.02843055 + inSlope: -0.12937528 + outSlope: -0.12937528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.0023512146 + inSlope: -0.07946991 + outSlope: -0.07946991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0002433878 + inSlope: -0.045836333 + outSlope: -0.045836333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.000704538 + inSlope: -0.010096548 + outSlope: -0.010096548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.00042971276 + inSlope: 0.013023553 + outSlope: 0.013023553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.0001637 + inSlope: 0.03252759 + outSlope: 0.03252759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.0017387911 + inSlope: 0.050522286 + outSlope: 0.050522286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.0035318492 + inSlope: 0.05303774 + outSlope: 0.05303774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.008627604 + inSlope: 0.047549017 + outSlope: 0.047549017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.010174371 + inSlope: 0.04207696 + outSlope: 0.04207696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.013907237 + inSlope: 0.039873965 + outSlope: 0.039873965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.017771065 + inSlope: 0.032180786 + outSlope: 0.032180786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.022166084 + inSlope: 0.06797442 + outSlope: 0.06797442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.048880775 + inSlope: 0.22757283 + outSlope: 0.22757283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.12660441 + inSlope: 0.3822311 + outSlope: 0.3822311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.1936098 + inSlope: -0.105232686 + outSlope: -0.105232686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.16726054 + inSlope: -0.29677153 + outSlope: -0.29677153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.13784792 + inSlope: -0.24274394 + outSlope: -0.24274394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.12135413 + inSlope: -0.32014596 + outSlope: -0.32014596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.08284743 + inSlope: -0.36333686 + outSlope: -0.36333686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.03737432 + inSlope: -0.18528354 + outSlope: -0.18528354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.017459018 + inSlope: -0.13291273 + outSlope: -0.13291273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.00024350523 + inSlope: -0.120804444 + outSlope: -0.120804444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.0108280005 + inSlope: -0.102335125 + outSlope: -0.102335125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.02422257 + inSlope: -0.10002475 + outSlope: -0.10002475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.041738342 + inSlope: -0.032037675 + outSlope: -0.032037675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.04517255 + inSlope: -0.041498862 + outSlope: -0.041498862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.0541677 + inSlope: 0.030162923 + outSlope: 0.030162923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.041226067 + inSlope: 0.16183649 + outSlope: 0.16183649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.029048136 + inSlope: 0.19083774 + outSlope: 0.19083774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.022598762 + inSlope: 0.2047371 + outSlope: 0.2047371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.008351905 + inSlope: 0.20129499 + outSlope: 0.20129499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.0019792635 + inSlope: 0.1811263 + outSlope: 0.1811263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.0037231701 + inSlope: 0.16549528 + outSlope: 0.16549528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.013540115 + inSlope: 0.11535536 + outSlope: 0.11535536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.02081235 + inSlope: 0.04163122 + outSlope: 0.04163122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.023837041 + inSlope: 0.014421008 + outSlope: 0.014421008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.024312094 + inSlope: -0.018166786 + outSlope: -0.018166786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.019187342 + inSlope: -0.023899231 + outSlope: -0.023899231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.0171139 + inSlope: -0.04629945 + outSlope: -0.04629945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.015315061 + inSlope: -0.05085633 + outSlope: -0.05085633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.01062042 + inSlope: -0.050754778 + outSlope: -0.050754778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: -0.0005514518 + inSlope: -0.05270182 + outSlope: -0.05270182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.009399624 + inSlope: -0.007815462 + outSlope: -0.007815462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.009534893 + inSlope: -0.004058074 + outSlope: -0.004058074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010181571 + inSlope: 0.036038633 + outSlope: 0.036038633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.011382859 + inSlope: 0.06980676 + outSlope: 0.06980676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.1765729 + inSlope: 0.44544768 + outSlope: 0.44544768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.2381637 + inSlope: 0.631374 + outSlope: 0.631374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.2792508 + inSlope: 0.46704406 + outSlope: 0.46704406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.30553383 + inSlope: -0.045967214 + outSlope: -0.045967214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.30129078 + inSlope: 0.006787766 + outSlope: 0.006787766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.29638585 + inSlope: 0.018207263 + outSlope: 0.018207263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.30066475 + inSlope: -0.040971674 + outSlope: -0.040971674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.24947551 + inSlope: -0.28595147 + outSlope: -0.28595147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.19883934 + inSlope: -0.05354365 + outSlope: -0.05354365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.19951546 + inSlope: 0.008889521 + outSlope: 0.008889521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.21088313 + inSlope: -0.03304803 + outSlope: -0.03304803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.1584061 + inSlope: -0.4798333 + outSlope: -0.4798333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.017665008 + inSlope: -0.57890666 + outSlope: -0.57890666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.0009827926 + inSlope: -0.52315736 + outSlope: -0.52315736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.017212251 + inSlope: -0.46271777 + outSlope: -0.46271777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.05490254 + inSlope: -0.2804806 + outSlope: -0.2804806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: -0.08670558 + inSlope: -0.0788397 + outSlope: -0.0788397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.10718043 + inSlope: -0.20469633 + outSlope: -0.20469633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.14308262 + inSlope: -0.11401142 + outSlope: -0.11401142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.15990849 + inSlope: -0.036137216 + outSlope: -0.036137216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.15425742 + inSlope: 0.12413342 + outSlope: 0.12413342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: -0.14164913 + inSlope: 0.14974117 + outSlope: 0.14974117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.040306304 + inSlope: 0.51473486 + outSlope: 0.51473486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.010498483 + inSlope: 0.48314965 + outSlope: 0.48314965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.04095349 + inSlope: 0.43136665 + outSlope: 0.43136665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.06711235 + inSlope: 0.34477732 + outSlope: 0.34477732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.08908128 + inSlope: 0.31725287 + outSlope: 0.31725287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.14591573 + inSlope: 0.1519019 + outSlope: 0.1519019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.17433311 + inSlope: 0.01194657 + outSlope: 0.01194657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.1684339 + inSlope: -0.10318066 + outSlope: -0.10318066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.13210054 + inSlope: -0.16085336 + outSlope: -0.16085336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.105099335 + inSlope: -0.25868478 + outSlope: -0.25868478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.011170257 + inSlope: -0.057021067 + outSlope: -0.057021067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.010181571 + inSlope: -0.029660594 + outSlope: -0.029660594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.18177108 + inSlope: -0.01092866 + outSlope: -0.01092866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.14646278 + inSlope: -0.06817834 + outSlope: -0.06817834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.14434339 + inSlope: -0.0472661 + outSlope: -0.0472661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.14331171 + inSlope: 0.09861175 + outSlope: 0.09861175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.15091752 + inSlope: 0.35086325 + outSlope: 0.35086325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.16670258 + inSlope: 0.41138634 + outSlope: 0.41138634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.19032359 + inSlope: 0.3485104 + outSlope: 0.3485104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.25011644 + inSlope: 0.32688355 + outSlope: 0.32688355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.2818677 + inSlope: 0.059363104 + outSlope: 0.059363104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.27053696 + inSlope: -0.038187012 + outSlope: -0.038187012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.2679412 + inSlope: -0.057992406 + outSlope: -0.057992406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.2492147 + inSlope: -0.19136752 + outSlope: -0.19136752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.21542902 + inSlope: -0.59106016 + outSlope: -0.59106016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.069995426 + inSlope: -1.0114517 + outSlope: -1.0114517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.004543927 + inSlope: -0.91065633 + outSlope: -0.91065633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.049145583 + inSlope: -0.67239034 + outSlope: -0.67239034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.102167755 + inSlope: -0.16355991 + outSlope: -0.16355991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.10831329 + inSlope: -0.0015449481 + outSlope: -0.0015449481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.103358075 + inSlope: 0.06674874 + outSlope: 0.06674874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.0942547 + inSlope: 0.045960218 + outSlope: 0.045960218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.08766831 + inSlope: 0.0006235024 + outSlope: 0.0006235024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.07539619 + inSlope: 0.1733292 + outSlope: 0.1733292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.018291347 + inSlope: 0.3577628 + outSlope: 0.3577628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.006101897 + inSlope: 0.3738494 + outSlope: 0.3738494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.006631923 + inSlope: 0.3911391 + outSlope: 0.3911391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.034244195 + inSlope: 0.43705213 + outSlope: 0.43705213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.12492682 + inSlope: 0.41752535 + outSlope: 0.41752535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.15680371 + inSlope: 0.19662623 + outSlope: 0.19662623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.17416343 + inSlope: 0.17656976 + outSlope: 0.17656976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.17405844 + inSlope: -0.024221264 + outSlope: -0.024221264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.17153966 + inSlope: -0.026175033 + outSlope: -0.026175033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.1772801 + inSlope: 0.103246145 + outSlope: 0.103246145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.21109156 + inSlope: 0.06686937 + outSlope: 0.06686937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.22566092 + inSlope: 0.020617936 + outSlope: 0.020617936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.22028463 + inSlope: -0.04283581 + outSlope: -0.04283581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: 0.19231679 + inSlope: -0.07382408 + outSlope: -0.07382408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.18177108 + inSlope: -0.005516862 + outSlope: -0.005516862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23446158 + inSlope: 0.08650436 + outSlope: 0.08650436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.22332965 + inSlope: 0.32081497 + outSlope: 0.32081497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.021497328 + inSlope: 1.032737 + outSlope: 1.032737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.048863675 + inSlope: 1.0629777 + outSlope: 1.0629777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.21597035 + inSlope: 0.85596335 + outSlope: 0.85596335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.25881216 + inSlope: 0.2914909 + outSlope: 0.2914909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.2619815 + inSlope: 0.048878834 + outSlope: 0.048878834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.23438822 + inSlope: -0.37570396 + outSlope: -0.37570396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.19294597 + inSlope: -0.17420721 + outSlope: -0.17420721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.17974626 + inSlope: -0.106749564 + outSlope: -0.106749564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.14492826 + inSlope: -0.0015393663 + outSlope: -0.0015393663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.14862657 + inSlope: -0.038612157 + outSlope: -0.038612157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.14152186 + inSlope: -0.061256453 + outSlope: -0.061256453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.13970096 + inSlope: 0.057071008 + outSlope: 0.057071008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.1497866 + inSlope: 0.10342272 + outSlope: 0.10342272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.15827537 + inSlope: 0.0024069324 + outSlope: 0.0024069324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.12920567 + inSlope: -0.11318518 + outSlope: -0.11318518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.1178135 + inSlope: -0.027754761 + outSlope: -0.027754761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.1199161 + inSlope: 0.051749833 + outSlope: 0.051749833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.13448358 + inSlope: 0.033984616 + outSlope: 0.033984616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.11025881 + inSlope: -0.37759876 + outSlope: -0.37759876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.033621926 + inSlope: -0.73465276 + outSlope: -0.73465276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.008213159 + inSlope: -0.7750904 + outSlope: -0.7750904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.018050719 + inSlope: -0.7826135 + outSlope: -0.7826135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.108958155 + inSlope: -0.5025906 + outSlope: -0.5025906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.14149822 + inSlope: -0.15550733 + outSlope: -0.15550733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.14236143 + inSlope: 0.121734336 + outSlope: 0.121734336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.11981071 + inSlope: 0.33998317 + outSlope: 0.33998317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.080675274 + inSlope: 0.39728582 + outSlope: 0.39728582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.057291854 + inSlope: 0.25976533 + outSlope: 0.25976533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.040853485 + inSlope: 0.13321361 + outSlope: 0.13321361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.033505015 + inSlope: 0.063610375 + outSlope: 0.063610375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.0334249 + inSlope: -0.016785521 + outSlope: -0.016785521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.03198012 + inSlope: 0.04288932 + outSlope: 0.04288932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: -0.022306835 + inSlope: 0.05319404 + outSlope: 0.05319404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.019209566 + inSlope: 0.03077036 + outSlope: 0.03077036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.018264497 + inSlope: 0.0057580797 + outSlope: 0.0057580797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.018762859 + inSlope: -0.025566757 + outSlope: -0.025566757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: -0.028396534 + inSlope: -0.077128336 + outSlope: -0.077128336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.032629285 + inSlope: -0.027965156 + outSlope: -0.027965156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.032891873 + inSlope: -0.012907025 + outSlope: -0.012907025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.033113584 + inSlope: 0.03502823 + outSlope: 0.03502823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.020658672 + inSlope: 0.24861526 + outSlope: 0.24861526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.0106564155 + inSlope: 0.34391898 + outSlope: 0.34391898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.0022692361 + inSlope: 0.4342083 + outSlope: 0.4342083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.05870902 + inSlope: 0.67657346 + outSlope: 0.67657346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.22145964 + inSlope: 0.20055084 + outSlope: 0.20055084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.22745365 + inSlope: 0.009327391 + outSlope: 0.009327391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.19243696 + inSlope: -0.2809773 + outSlope: -0.2809773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.14353347 + inSlope: -0.023696892 + outSlope: -0.023696892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.14273418 + inSlope: 0.0071362476 + outSlope: 0.0071362476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.13840285 + inSlope: -0.046096265 + outSlope: -0.046096265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.13665663 + inSlope: -0.033454247 + outSlope: -0.033454247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.12847108 + inSlope: -0.28140163 + outSlope: -0.28140163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.022634877 + inSlope: -0.87918234 + outSlope: -0.87918234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: -0.039121356 + inSlope: -0.94823766 + outSlope: -0.94823766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.23087499 + inSlope: -0.20541069 + outSlope: -0.20541069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.23446158 + inSlope: -0.10759781 + outSlope: -0.10759781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14387299 + inSlope: 0.09428903 + outSlope: 0.09428903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.14701596 + inSlope: 0.1821781 + outSlope: 0.1821781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6050067 + inSlope: 1.0321122 + outSlope: 1.0321122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.71767753 + inSlope: 1.3754119 + outSlope: 1.3754119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.789912 + inSlope: 0.43724275 + outSlope: 0.43724275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.6749523 + inSlope: -1.0638652 + outSlope: -1.0638652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.54500586 + inSlope: -0.8028101 + outSlope: -0.8028101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.41755894 + inSlope: 0.073119774 + outSlope: 0.073119774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.45944858 + inSlope: 0.0063805347 + outSlope: 0.0063805347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.40847903 + inSlope: -0.38563764 + outSlope: -0.38563764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.3519023 + inSlope: -0.06558588 + outSlope: -0.06558588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.3795442 + inSlope: 0.13160896 + outSlope: 0.13160896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.39247608 + inSlope: -0.007907607 + outSlope: -0.007907607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.2727167 + inSlope: -1.4560597 + outSlope: -1.4560597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.07419255 + inSlope: -2.4484508 + outSlope: -2.4484508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.10215584 + inSlope: -2.7288268 + outSlope: -2.7288268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.4927171 + inSlope: -1.5319103 + outSlope: -1.5319103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.57666165 + inSlope: -0.111522496 + outSlope: -0.111522496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.41618568 + inSlope: 1.3723147 + outSlope: 1.3723147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.32732084 + inSlope: 1.0992007 + outSlope: 1.0992007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.2423214 + inSlope: 0.93771815 + outSlope: 0.93771815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.17315134 + inSlope: 0.9551816 + outSlope: 0.9551816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.038751643 + inSlope: 0.08126207 + outSlope: 0.08126207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.03196014 + inSlope: 0.0020546855 + outSlope: 0.0020546855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.038820226 + inSlope: -0.11783017 + outSlope: -0.11783017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.061895188 + inSlope: -0.19607693 + outSlope: -0.19607693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: -0.068224445 + inSlope: -0.18035868 + outSlope: -0.18035868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.07391909 + inSlope: -0.108238414 + outSlope: -0.108238414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.07544033 + inSlope: -0.017041096 + outSlope: -0.017041096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.07505516 + inSlope: 0.09003 + outSlope: 0.09003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.06943834 + inSlope: 0.19405349 + outSlope: 0.19405349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.062118273 + inSlope: 0.25553018 + outSlope: 0.25553018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.03505835 + inSlope: 0.69702435 + outSlope: 0.69702435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.005934348 + inSlope: 1.0742973 + outSlope: 1.0742973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.03656182 + inSlope: 1.4276396 + outSlope: 1.4276396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.22226815 + inSlope: 2.2043738 + outSlope: 2.2043738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.6432804 + inSlope: 1.4092464 + outSlope: 1.4092464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.717626 + inSlope: -0.38576642 + outSlope: -0.38576642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.53331125 + inSlope: -0.6648899 + outSlope: -0.6648899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.4760568 + inSlope: 0.06712279 + outSlope: 0.06712279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.48098984 + inSlope: -0.051766064 + outSlope: -0.051766064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.42074645 + inSlope: -0.66883045 + outSlope: -0.66883045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.14695187 + inSlope: -0.17642 + outSlope: -0.17642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.14387299 + inSlope: -0.09236643 + outSlope: -0.09236643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49589223 + inSlope: 0.020787118 + outSlope: 0.020787118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5254467 + inSlope: 0.09856495 + outSlope: 0.09856495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.57358897 + inSlope: 0.41190594 + outSlope: 0.41190594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.67495906 + inSlope: 0.3220576 + outSlope: 0.3220576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.74127275 + inSlope: 0.13338347 + outSlope: 0.13338347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.7685821 + inSlope: 0.11032651 + outSlope: 0.11032651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.76426256 + inSlope: -0.16509071 + outSlope: -0.16509071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.7058141 + inSlope: -0.16362742 + outSlope: -0.16362742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.6031764 + inSlope: -0.39264 + outSlope: -0.39264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.5526695 + inSlope: -0.015965417 + outSlope: -0.015965417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.5682065 + inSlope: 0.15573815 + outSlope: 0.15573815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.60120314 + inSlope: 0.016193405 + outSlope: 0.016193405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.59494054 + inSlope: -0.064401686 + outSlope: -0.064401686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.57880896 + inSlope: 0.16675936 + outSlope: 0.16675936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.60259855 + inSlope: 0.07985961 + outSlope: 0.07985961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.61069334 + inSlope: 0.22855018 + outSlope: 0.22855018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.62112755 + inSlope: -0.17757761 + outSlope: -0.17757761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.5475061 + inSlope: -0.28856486 + outSlope: -0.28856486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.48216447 + inSlope: -0.45514315 + outSlope: -0.45514315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.43078694 + inSlope: -0.16942279 + outSlope: -0.16942279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.4230701 + inSlope: -0.0036603247 + outSlope: -0.0036603247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.43489128 + inSlope: 0.008121736 + outSlope: 0.008121736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.5279396 + inSlope: 0.34975055 + outSlope: 0.34975055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.642015 + inSlope: 0.5181836 + outSlope: 0.5181836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.7179149 + inSlope: 0.20851977 + outSlope: 0.20851977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.737582 + inSlope: 0.02723607 + outSlope: 0.02723607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.66743755 + inSlope: -0.46892747 + outSlope: -0.46892747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.4973663 + inSlope: -0.08472704 + outSlope: -0.08472704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.49592587 + inSlope: -0.04321311 + outSlope: -0.04321311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08724065 + inSlope: 0.022724567 + outSlope: 0.022724567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.09317678 + inSlope: 0.12501675 + outSlope: 0.12501675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.10345019 + inSlope: 0.15994143 + outSlope: 0.15994143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.17683129 + inSlope: 0.09116134 + outSlope: 0.09116134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.17504324 + inSlope: -0.17691153 + outSlope: -0.17691153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.1523648 + inSlope: -0.19298097 + outSlope: -0.19298097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.13107647 + inSlope: -0.2918624 + outSlope: -0.2918624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.10922578 + inSlope: -0.29013488 + outSlope: -0.29013488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.08665413 + inSlope: -0.22115892 + outSlope: -0.22115892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.07226245 + inSlope: -0.17320299 + outSlope: -0.17320299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.063312136 + inSlope: -0.14899886 + outSlope: -0.14899886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0574928 + inSlope: -0.18968153 + outSlope: -0.18968153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.050666712 + inSlope: -0.15448508 + outSlope: -0.15448508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.04719379 + inSlope: -0.15259261 + outSlope: -0.15259261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.04049387 + inSlope: -0.2344258 + outSlope: -0.2344258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.03156542 + inSlope: -0.25456956 + outSlope: -0.25456956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.023522552 + inSlope: -0.15097402 + outSlope: -0.15097402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.021500466 + inSlope: -0.045070514 + outSlope: -0.045070514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.020517854 + inSlope: -0.047099132 + outSlope: -0.047099132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.018360527 + inSlope: -0.03344793 + outSlope: -0.03344793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.018287994 + inSlope: 0.0039643403 + outSlope: 0.0039643403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.018624816 + inSlope: 0.0049885223 + outSlope: 0.0049885223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.018620562 + inSlope: 0.01555462 + outSlope: 0.01555462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.019661793 + inSlope: 0.006544401 + outSlope: 0.006544401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.019056858 + inSlope: -0.018134208 + outSlope: -0.018134208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.018452847 + inSlope: -0.0076426542 + outSlope: -0.0076426542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.018547349 + inSlope: 0.049086787 + outSlope: 0.049086787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.021725308 + inSlope: 0.09550528 + outSlope: 0.09550528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.027407503 + inSlope: 0.04254102 + outSlope: 0.04254102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.027750438 + inSlope: 0.034454327 + outSlope: 0.034454327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.029704463 + inSlope: 0.051280428 + outSlope: 0.051280428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.033024084 + inSlope: 0.06429541 + outSlope: 0.06429541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.035455503 + inSlope: 0.06767492 + outSlope: 0.06767492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.043961287 + inSlope: 0.068467975 + outSlope: 0.068467975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.050492104 + inSlope: 0.13457471 + outSlope: 0.13457471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.06632879 + inSlope: 0.18472865 + outSlope: 0.18472865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.08946779 + inSlope: 0.13127202 + outSlope: 0.13127202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.09069739 + inSlope: -0.08257568 + outSlope: -0.08257568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.08788579 + inSlope: -0.03866721 + outSlope: -0.03866721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.08811958 + inSlope: -0.03435399 + outSlope: -0.03435399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.085595526 + inSlope: -0.04069541 + outSlope: -0.04069541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.08813773 + inSlope: 0.08205801 + outSlope: 0.08205801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.09180021 + inSlope: 0.07001757 + outSlope: 0.07001757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.09238034 + inSlope: 0.0055306084 + outSlope: 0.0055306084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.09283975 + inSlope: -0.013271971 + outSlope: -0.013271971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.08665681 + inSlope: -0.049942106 + outSlope: -0.049942106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.08155418 + inSlope: -0.037190765 + outSlope: -0.037190765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.07068869 + inSlope: -0.056709997 + outSlope: -0.056709997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.06518611 + inSlope: -0.025341373 + outSlope: -0.025341373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.06472256 + inSlope: 0.013405183 + outSlope: 0.013405183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.067462906 + inSlope: 0.026865255 + outSlope: 0.026865255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.0704536 + inSlope: 0.11651462 + outSlope: 0.11651462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.08243071 + inSlope: 0.18991157 + outSlope: 0.18991157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.09400256 + inSlope: 0.14783765 + outSlope: 0.14783765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.10238676 + inSlope: 0.17375758 + outSlope: 0.17375758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.13016683 + inSlope: 0.09451309 + outSlope: 0.09451309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.12941101 + inSlope: -0.024682606 + outSlope: -0.024682606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.12815624 + inSlope: -0.029157434 + outSlope: -0.029157434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.12730569 + inSlope: 0.02476799 + outSlope: 0.02476799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.1263683 + inSlope: 0.00083394424 + outSlope: 0.00083394424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.12706861 + inSlope: 0.017170848 + outSlope: 0.017170848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.12785916 + inSlope: 0.069473304 + outSlope: 0.069473304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.13400422 + inSlope: 0.033673614 + outSlope: 0.033673614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.13383913 + inSlope: -0.0016068682 + outSlope: -0.0016068682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.13378456 + inSlope: -0.021554252 + outSlope: -0.021554252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.13240218 + inSlope: 0.008864708 + outSlope: 0.008864708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.13656521 + inSlope: 0.053211723 + outSlope: 0.053211723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.14184596 + inSlope: 0.08181639 + outSlope: 0.08181639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.15006058 + inSlope: 0.11545289 + outSlope: 0.11545289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.16305797 + inSlope: 0.27954063 + outSlope: 0.27954063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.18259272 + inSlope: 0.25880456 + outSlope: 0.25880456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.2113078 + inSlope: 0.10565119 + outSlope: 0.10565119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.2142212 + inSlope: -0.054094397 + outSlope: -0.054094397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.18491423 + inSlope: -0.1757488 + outSlope: -0.1757488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: 0.17351772 + inSlope: -0.22656327 + outSlope: -0.22656327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.14860818 + inSlope: -0.19136462 + outSlope: -0.19136462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.12664679 + inSlope: -0.07537661 + outSlope: -0.07537661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.12447062 + inSlope: -0.015721316 + outSlope: -0.015721316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.12559867 + inSlope: -0.016139982 + outSlope: -0.016139982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.12339462 + inSlope: -0.03677256 + outSlope: -0.03677256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.12777449 + inSlope: 0.09491598 + outSlope: 0.09491598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.14299595 + inSlope: 0.059652165 + outSlope: 0.059652165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.15014039 + inSlope: 0.02134737 + outSlope: 0.02134737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.15173303 + inSlope: 0.028130366 + outSlope: 0.028130366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.15051638 + inSlope: -0.093590856 + outSlope: -0.093590856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.10814553 + inSlope: -0.17928416 + outSlope: -0.17928416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.087998316 + inSlope: -0.02596146 + outSlope: -0.02596146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.08839342 + inSlope: 0.01185314 + outSlope: 0.01185314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.02992675 + inSlope: -0.003371313 + outSlope: -0.003371313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.029476874 + inSlope: -0.03136044 + outSlope: -0.03136044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.027723677 + inSlope: 0.009518914 + outSlope: 0.009518914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.030111467 + inSlope: 0.011996627 + outSlope: 0.011996627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.028523453 + inSlope: -0.037670642 + outSlope: -0.037670642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.027600091 + inSlope: -0.008538611 + outSlope: -0.008538611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.02905057 + inSlope: 0.027254768 + outSlope: 0.027254768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.029771196 + inSlope: 0.050456434 + outSlope: 0.050456434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.03598111 + inSlope: 0.1204332 + outSlope: 0.1204332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.07307259 + inSlope: 0.23472092 + outSlope: 0.23472092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.09060025 + inSlope: 0.25858742 + outSlope: 0.25858742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.09849695 + inSlope: 0.17660274 + outSlope: 0.17660274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10774669 + inSlope: 0.25392342 + outSlope: 0.25392342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.119302 + inSlope: 0.46783632 + outSlope: 0.46783632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.20313574 + inSlope: 0.46192902 + outSlope: 0.46192902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.24401625 + inSlope: 0.3467788 + outSlope: 0.3467788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.30356368 + inSlope: 0.14421223 + outSlope: 0.14421223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.30654365 + inSlope: 0.09612802 + outSlope: 0.09612802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.31499767 + inSlope: -0.01132334 + outSlope: -0.01132334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.31007487 + inSlope: -0.048588626 + outSlope: -0.048588626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.31130868 + inSlope: 0.042062443 + outSlope: 0.042062443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.32117128 + inSlope: 0.07420126 + outSlope: 0.07420126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.34539035 + inSlope: 0.07690705 + outSlope: 0.07690705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.35701233 + inSlope: 0.014402135 + outSlope: 0.014402135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.35109958 + inSlope: -0.07533662 + outSlope: -0.07533662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.33414027 + inSlope: -0.06871156 + outSlope: -0.06871156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.32084253 + inSlope: -0.1093104 + outSlope: -0.1093104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.29888403 + inSlope: -0.2920825 + outSlope: -0.2920825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.25098735 + inSlope: -0.40522027 + outSlope: -0.40522027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.18681629 + inSlope: -0.4398597 + outSlope: -0.4398597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.15819708 + inSlope: -0.5422924 + outSlope: -0.5422924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: 0.1369487 + inSlope: -0.6381205 + outSlope: -0.6381205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.0937096 + inSlope: -0.62624824 + outSlope: -0.62624824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.07390575 + inSlope: -0.62774587 + outSlope: -0.62774587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.051860075 + inSlope: -0.5127257 + outSlope: -0.5127257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.039724052 + inSlope: -0.27458698 + outSlope: -0.27458698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.03355412 + inSlope: -0.35151047 + outSlope: -0.35151047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.016290043 + inSlope: -0.5574918 + outSlope: -0.5574918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.003611961 + inSlope: -0.69753224 + outSlope: -0.69753224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.030212063 + inSlope: -0.780571 + outSlope: -0.780571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.07800539 + inSlope: -0.5812462 + outSlope: -0.5812462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.12059894 + inSlope: -0.47733074 + outSlope: -0.47733074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.17565224 + inSlope: -0.47430822 + outSlope: -0.47430822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.22404303 + inSlope: -0.270533 + outSlope: -0.270533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.23674329 + inSlope: -0.19203606 + outSlope: -0.19203606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.25419948 + inSlope: -0.08670271 + outSlope: -0.08670271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: -0.26057598 + inSlope: -0.087791026 + outSlope: -0.087791026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.26013988 + inSlope: 0.033613924 + outSlope: 0.033613924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.23597646 + inSlope: 0.1833808 + outSlope: 0.1833808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.2026194 + inSlope: 0.44198084 + outSlope: 0.44198084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.1425568 + inSlope: 0.76339114 + outSlope: 0.76339114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.09311769 + inSlope: 0.54548854 + outSlope: 0.54548854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.07945983 + inSlope: 0.37672174 + outSlope: 0.37672174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.06800293 + inSlope: 0.28672814 + outSlope: 0.28672814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.054551188 + inSlope: 0.19878435 + outSlope: 0.19878435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.047092363 + inSlope: 0.22148162 + outSlope: 0.22148162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.03978576 + inSlope: 0.30300993 + outSlope: 0.30300993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.026891721 + inSlope: 0.39353874 + outSlope: 0.39353874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.01354987 + inSlope: 0.37025422 + outSlope: 0.37025422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.0022079668 + inSlope: 0.2860464 + outSlope: 0.2860464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.0055200323 + inSlope: 0.2761017 + outSlope: 0.2761017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.016198797 + inSlope: 0.32236087 + outSlope: 0.32236087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.027010737 + inSlope: 0.3522967 + outSlope: 0.3522967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: 0.05198524 + inSlope: 0.3094274 + outSlope: 0.3094274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.068698086 + inSlope: 0.30460384 + outSlope: 0.30460384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.09146875 + inSlope: 0.2837221 + outSlope: 0.2837221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.109840475 + inSlope: 0.061864547 + outSlope: 0.061864547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.11195725 + inSlope: -0.07734537 + outSlope: -0.07734537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.102523744 + inSlope: -0.15902475 + outSlope: -0.15902475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.09678626 + inSlope: -0.14252701 + outSlope: -0.14252701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.08806192 + inSlope: -0.060711302 + outSlope: -0.060711302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.08611375 + inSlope: -0.08652166 + outSlope: -0.08652166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: 0.082293816 + inSlope: -0.10605028 + outSlope: -0.10605028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.07904374 + inSlope: -0.12721696 + outSlope: -0.12721696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.0695431 + inSlope: -0.091974825 + outSlope: -0.091974825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.06472177 + inSlope: -0.10548021 + outSlope: -0.10548021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.059756838 + inSlope: -0.12183902 + outSlope: -0.12183902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.053461608 + inSlope: -0.08909005 + outSlope: -0.08909005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: 0.047795378 + inSlope: -0.06585383 + outSlope: -0.06585383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.046269596 + inSlope: -0.063144736 + outSlope: -0.063144736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.041176114 + inSlope: -0.060250517 + outSlope: -0.060250517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: 0.03742361 + inSlope: -0.07909657 + outSlope: -0.07909657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.034295935 + inSlope: -0.06851391 + outSlope: -0.06851391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: 0.03285602 + inSlope: -0.046484746 + outSlope: -0.046484746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: 0.031196931 + inSlope: -0.023070855 + outSlope: -0.023070855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.03131794 + inSlope: -0.010129623 + outSlope: -0.010129623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.030521624 + inSlope: -0.018616337 + outSlope: -0.018616337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.030076854 + inSlope: 0.04984957 + outSlope: 0.04984957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.033844925 + inSlope: 0.11304225 + outSlope: 0.11304225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7944729 + inSlope: -0.01888275 + outSlope: -0.01888275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.71320873 + inSlope: 0.1380104 + outSlope: 0.1380104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.752299 + inSlope: 0.26397747 + outSlope: 0.26397747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.8277739 + inSlope: 0.39489418 + outSlope: 0.39489418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.87299067 + inSlope: 0.077373624 + outSlope: 0.077373624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.80386686 + inSlope: -0.3157853 + outSlope: -0.3157853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.7545676 + inSlope: -0.2302438 + outSlope: -0.2302438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.71894807 + inSlope: 0.1601325 + outSlope: 0.1601325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.7461813 + inSlope: -0.063182175 + outSlope: -0.063182175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.7465194 + inSlope: 0.09604731 + outSlope: 0.09604731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.76372725 + inSlope: 0.004525772 + outSlope: 0.004525772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.7737285 + inSlope: 0.02239289 + outSlope: 0.02239289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.78705466 + inSlope: 0.26500607 + outSlope: 0.26500607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.8364935 + inSlope: 0.24286443 + outSlope: 0.24286443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.85869074 + inSlope: 0.18695462 + outSlope: 0.18695462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.8267513 + inSlope: -0.1658769 + outSlope: -0.1658769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.7598105 + inSlope: -0.5677911 + outSlope: -0.5677911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.729933 + inSlope: 0.055789106 + outSlope: 0.055789106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.7426652 + inSlope: 0.081137866 + outSlope: 0.081137866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.7478072 + inSlope: -0.19193906 + outSlope: -0.19193906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.6912151 + inSlope: -0.23277159 + outSlope: -0.23277159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.68589514 + inSlope: 0.26071543 + outSlope: 0.26071543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.7564791 + inSlope: 0.25634164 + outSlope: 0.25634164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.79901683 + inSlope: 0.23734355 + outSlope: 0.23734355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.82550913 + inSlope: -0.11086479 + outSlope: -0.11086479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.79448557 + inSlope: -0.0031989843 + outSlope: -0.0031989843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.078314014 + inSlope: 0.034978017 + outSlope: 0.034978017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.081963934 + inSlope: 0.10542053 + outSlope: 0.10542053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.08650798 + inSlope: 0.10278627 + outSlope: 0.10278627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08881635 + inSlope: 0.13791707 + outSlope: 0.13791707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.095702454 + inSlope: 0.20854652 + outSlope: 0.20854652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.13255773 + inSlope: 0.2296436 + outSlope: 0.2296436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.16950418 + inSlope: 0.0780981 + outSlope: 0.0780981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.18335739 + inSlope: 0.55260813 + outSlope: 0.55260813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.23884542 + inSlope: 0.89654964 + outSlope: 0.89654964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.31763637 + inSlope: 0.6166765 + outSlope: 0.6166765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.375221 + inSlope: 0.59795654 + outSlope: 0.59795654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.44099426 + inSlope: 0.3260519 + outSlope: 0.3260519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.4898824 + inSlope: 0.26499844 + outSlope: 0.26499844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.49919 + inSlope: -0.047024477 + outSlope: -0.047024477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.48578504 + inSlope: -0.019751359 + outSlope: -0.019751359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.4672752 + inSlope: -0.038611777 + outSlope: -0.038611777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.46584994 + inSlope: -0.01386882 + outSlope: -0.01386882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.47375515 + inSlope: 0.012768221 + outSlope: 0.012768221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.47612283 + inSlope: -0.091008775 + outSlope: -0.091008775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.43249243 + inSlope: -0.38671798 + outSlope: -0.38671798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: 0.31877977 + inSlope: -0.6505181 + outSlope: -0.6505181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.18607357 + inSlope: -0.9091365 + outSlope: -0.9091365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.12699106 + inSlope: -0.7929876 + outSlope: -0.7929876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.10193227 + inSlope: -0.67151326 + outSlope: -0.67151326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.08222356 + inSlope: -0.5767545 + outSlope: -0.5767545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.06348201 + inSlope: -0.48514313 + outSlope: -0.48514313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.040242776 + inSlope: -0.24636292 + outSlope: -0.24636292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.02724635 + inSlope: -0.19460507 + outSlope: -0.19460507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.020482875 + inSlope: -0.18478075 + outSlope: -0.18478075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.014927645 + inSlope: -0.16273975 + outSlope: -0.16273975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.004467262 + inSlope: -0.15102674 + outSlope: -0.15102674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: -0.00043487156 + inSlope: -0.136816 + outSlope: -0.136816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.004653856 + inSlope: -0.12839936 + outSlope: -0.12839936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.008994881 + inSlope: -0.1357672 + outSlope: -0.1357672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.018448813 + inSlope: -0.13253747 + outSlope: -0.13253747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.030967804 + inSlope: -0.13583058 + outSlope: -0.13583058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.03981149 + inSlope: -0.09223449 + outSlope: -0.09223449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.04421509 + inSlope: -0.0324789 + outSlope: -0.0324789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.045281816 + inSlope: 0.028018884 + outSlope: 0.028018884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.041587707 + inSlope: 0.031571083 + outSlope: 0.031571083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.03782893 + inSlope: 0.05097677 + outSlope: 0.05097677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.033447746 + inSlope: 0.012368181 + outSlope: 0.012368181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.036593385 + inSlope: -0.030710395 + outSlope: -0.030710395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.037451625 + inSlope: -0.00995961 + outSlope: -0.00995961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.03725736 + inSlope: 0.0031047158 + outSlope: 0.0031047158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.037244644 + inSlope: 0.005608225 + outSlope: 0.005608225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.036883477 + inSlope: 0.06042542 + outSlope: 0.06042542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.033216286 + inSlope: 0.25684398 + outSlope: 0.25684398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.01976056 + inSlope: 0.5081636 + outSlope: 0.5081636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.0006612519 + inSlope: 0.66158867 + outSlope: 0.66158867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.024345312 + inSlope: 0.76390785 + outSlope: 0.76390785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.08017959 + inSlope: 0.8667103 + outSlope: 0.8667103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.109369025 + inSlope: 0.82758296 + outSlope: 0.82758296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.18778664 + inSlope: 0.8153703 + outSlope: 0.8153703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.26290387 + inSlope: 0.61014926 + outSlope: 0.61014926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.31505206 + inSlope: 0.4860498 + outSlope: 0.4860498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.35417306 + inSlope: -0.023345456 + outSlope: -0.023345456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.34453416 + inSlope: -0.07092259 + outSlope: -0.07092259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.326051 + inSlope: -0.26006544 + outSlope: -0.26006544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.2798407 + inSlope: -0.20718743 + outSlope: -0.20718743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.24976829 + inSlope: -0.13030341 + outSlope: -0.13030341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.23876883 + inSlope: -0.2580207 + outSlope: -0.2580207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.16162485 + inSlope: -0.44668323 + outSlope: -0.44668323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: 0.13269569 + inSlope: -0.37628478 + outSlope: -0.37628478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: 0.09945347 + inSlope: -0.28674632 + outSlope: -0.28674632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.08381969 + inSlope: -0.15708171 + outSlope: -0.15708171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.07539536 + inSlope: -0.1306807 + outSlope: -0.1306807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.166808 + inSlope: -0.017927883 + outSlope: -0.017927883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.19484127 + inSlope: -0.21721044 + outSlope: -0.21721044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.30461472 + inSlope: -0.04161896 + outSlope: -0.04161896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.30519834 + inSlope: 0.03609223 + outSlope: 0.03609223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.27676857 + inSlope: 0.07267974 + outSlope: 0.07267974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.254491 + inSlope: 0.234183 + outSlope: 0.234183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.23725475 + inSlope: 0.16292332 + outSlope: 0.16292332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.23518029 + inSlope: 0.12222257 + outSlope: 0.12222257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.21626136 + inSlope: 0.092997976 + outSlope: 0.092997976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.21620151 + inSlope: 0.00060439087 + outSlope: 0.00060439087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.21775183 + inSlope: -0.02461376 + outSlope: -0.02461376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.21861151 + inSlope: -0.1142129 + outSlope: -0.1142129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.22536604 + inSlope: -0.16994882 + outSlope: -0.16994882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.2472402 + inSlope: -0.17050506 + outSlope: -0.17050506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.27636704 + inSlope: -0.08502387 + outSlope: -0.08502387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.2990208 + inSlope: -0.016634181 + outSlope: -0.016634181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.3009866 + inSlope: -0.014273389 + outSlope: -0.014273389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.2957596 + inSlope: 0.20189841 + outSlope: 0.20189841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.2705376 + inSlope: 0.19322652 + outSlope: 0.19322652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.263613 + inSlope: 0.077010766 + outSlope: 0.077010766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.26677752 + inSlope: -0.041399788 + outSlope: -0.041399788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.2701849 + inSlope: 0.007946471 + outSlope: 0.007946471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.2661678 + inSlope: 0.004652743 + outSlope: 0.004652743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.24802886 + inSlope: 0.13047864 + outSlope: 0.13047864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.24427052 + inSlope: 0.02568128 + outSlope: 0.02568128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.24653728 + inSlope: 0.015332192 + outSlope: 0.015332192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.24341466 + inSlope: 0.033227015 + outSlope: 0.033227015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.22117966 + inSlope: 0.12923297 + outSlope: 0.12923297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.20180549 + inSlope: 0.16970576 + outSlope: 0.16970576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.19113253 + inSlope: 0.149618 + outSlope: 0.149618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.18601117 + inSlope: 0.23917593 + outSlope: 0.23917593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.17518748 + inSlope: 0.23424268 + outSlope: 0.23424268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.18194139 + inSlope: -0.14704375 + outSlope: -0.14704375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.20532696 + inSlope: -0.06852208 + outSlope: -0.06852208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.22818618 + inSlope: -0.398584 + outSlope: -0.398584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.25805116 + inSlope: -0.34717026 + outSlope: -0.34717026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.27405918 + inSlope: 0.03578383 + outSlope: 0.03578383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: -0.2568221 + inSlope: -0.000097453594 + outSlope: -0.000097453594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.25110307 + inSlope: 0.019647647 + outSlope: 0.019647647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.24567144 + inSlope: 0.10661833 + outSlope: 0.10661833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.24037285 + inSlope: -0.028480617 + outSlope: -0.028480617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.2436922 + inSlope: -0.060431793 + outSlope: -0.060431793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.24440163 + inSlope: -0.13377911 + outSlope: -0.13377911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.2613362 + inSlope: -0.27676892 + outSlope: -0.27676892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.29806322 + inSlope: -0.24580994 + outSlope: -0.24580994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.33351326 + inSlope: -0.16309895 + outSlope: -0.16309895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.3384797 + inSlope: 0.17970371 + outSlope: 0.17970371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.32180572 + inSlope: 0.122211844 + outSlope: 0.122211844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.31827456 + inSlope: 0.21135202 + outSlope: 0.21135202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.300911 + inSlope: 0.09327001 + outSlope: 0.09327001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.3014976 + inSlope: 0.11000209 + outSlope: 0.11000209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.29357755 + inSlope: 0.18436047 + outSlope: 0.18436047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.2822636 + inSlope: 0.21794578 + outSlope: 0.21794578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.27211195 + inSlope: 0.2566729 + outSlope: 0.2566729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: -0.24018759 + inSlope: 0.16486034 + outSlope: 0.16486034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.23193073 + inSlope: -0.035524998 + outSlope: -0.035524998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.23929664 + inSlope: -0.037231334 + outSlope: -0.037231334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: -0.2390261 + inSlope: 0.13520001 + outSlope: 0.13520001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.2254777 + inSlope: 0.27550337 + outSlope: 0.27550337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: -0.2150168 + inSlope: 0.2514542 + outSlope: 0.2514542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: -0.1959326 + inSlope: 0.19691926 + outSlope: 0.19691926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.16695957 + inSlope: 0.019735266 + outSlope: 0.019735266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22307464 + inSlope: -0.07662713 + outSlope: -0.07662713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.23754579 + inSlope: -0.20115763 + outSlope: -0.20115763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.2437551 + inSlope: -0.2846651 + outSlope: -0.2846651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.26952434 + inSlope: -0.42065838 + outSlope: -0.42065838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.47333908 + inSlope: -0.50900507 + outSlope: -0.50900507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.5274685 + inSlope: -0.73168063 + outSlope: -0.73168063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.6235496 + inSlope: -0.486702 + outSlope: -0.486702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.6670886 + inSlope: -0.43010122 + outSlope: -0.43010122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.69066983 + inSlope: -0.003008539 + outSlope: -0.003008539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.6717992 + inSlope: 0.31458437 + outSlope: 0.31458437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.642405 + inSlope: 0.2072613 + outSlope: 0.2072613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.6308677 + inSlope: 0.07096328 + outSlope: 0.07096328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.65395373 + inSlope: -0.19370544 + outSlope: -0.19370544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.7068717 + inSlope: -0.097949 + outSlope: -0.097949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.71500134 + inSlope: 0.019005258 + outSlope: 0.019005258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.66865087 + inSlope: 0.27976987 + outSlope: 0.27976987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.66820437 + inSlope: -0.03069523 + outSlope: -0.03069523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.67410946 + inSlope: 0.0004461412 + outSlope: 0.0004461412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.6503604 + inSlope: 0.3915689 + outSlope: 0.3915689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.54036796 + inSlope: 0.5987948 + outSlope: 0.5987948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.4327266 + inSlope: 0.45016283 + outSlope: 0.45016283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.3964402 + inSlope: 0.12032223 + outSlope: 0.12032223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.39442134 + inSlope: 0.068475075 + outSlope: 0.068475075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.3890662 + inSlope: -0.046898916 + outSlope: -0.046898916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.38967258 + inSlope: -0.06288847 + outSlope: -0.06288847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.38564524 + inSlope: 0.14514475 + outSlope: 0.14514475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.375208 + inSlope: 0.020679265 + outSlope: 0.020679265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.38069424 + inSlope: 0.028181996 + outSlope: 0.028181996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.37250873 + inSlope: 0.08471497 + outSlope: 0.08471497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.372664 + inSlope: -0.10704036 + outSlope: -0.10704036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.39074552 + inSlope: -0.55879587 + outSlope: -0.55879587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.44089603 + inSlope: -0.68740255 + outSlope: -0.68740255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.46083966 + inSlope: -0.6958922 + outSlope: -0.6958922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.6581896 + inSlope: -0.45727146 + outSlope: -0.45727146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.69096166 + inSlope: 0.03694925 + outSlope: 0.03694925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.67036885 + inSlope: 0.20327285 + outSlope: 0.20327285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: -0.6401071 + inSlope: 0.18720764 + outSlope: 0.18720764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.6163806 + inSlope: 0.37288642 + outSlope: 0.37288642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.5336157 + inSlope: 0.06091903 + outSlope: 0.06091903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.5152202 + inSlope: 0.41032964 + outSlope: 0.41032964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: -0.27543452 + inSlope: 0.55531025 + outSlope: 0.55531025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.2255101 + inSlope: 0.1719025 + outSlope: 0.1719025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.2209614 + inSlope: 0.1364611 + outSlope: 0.1364611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.002455897 + inSlope: -0.0031760356 + outSlope: -0.0031760356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.002350029 + inSlope: -0.0054120687 + outSlope: -0.0054120687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0011795054 + inSlope: -0.017823208 + outSlope: -0.017823208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0005141083 + inSlope: -0.021556584 + outSlope: -0.021556584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00025760054 + inSlope: -0.02465988 + outSlope: -0.02465988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.009940449 + inSlope: -0.034098674 + outSlope: -0.034098674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.01109063 + inSlope: -0.032225333 + outSlope: -0.032225333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.014846234 + inSlope: -0.059981346 + outSlope: -0.059981346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.020018272 + inSlope: -0.08872765 + outSlope: -0.08872765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.035696518 + inSlope: -0.15640086 + outSlope: -0.15640086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.059332516 + inSlope: -0.17388235 + outSlope: -0.17388235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.076978914 + inSlope: -0.17311172 + outSlope: -0.17311172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.0953664 + inSlope: -0.094127685 + outSlope: -0.094127685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.10041455 + inSlope: -0.027698975 + outSlope: -0.027698975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.09772474 + inSlope: 0.027262062 + outSlope: 0.027262062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.088651076 + inSlope: 0.006034845 + outSlope: 0.006034845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.091199845 + inSlope: -0.012057211 + outSlope: -0.012057211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.09454758 + inSlope: -0.07208935 + outSlope: -0.07208935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.107002996 + inSlope: -0.020402465 + outSlope: -0.020402465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.09439807 + inSlope: 0.056859866 + outSlope: 0.056859866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.088432245 + inSlope: -0.0005843869 + outSlope: -0.0005843869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.090923056 + inSlope: -0.015783988 + outSlope: -0.015783988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.09714994 + inSlope: -0.01971686 + outSlope: -0.01971686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.097304165 + inSlope: 0.044746444 + outSlope: 0.044746444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.07961448 + inSlope: 0.07243737 + outSlope: 0.07243737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.06970394 + inSlope: 0.04665847 + outSlope: 0.04665847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.055166367 + inSlope: 0.052476853 + outSlope: 0.052476853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.04534868 + inSlope: 0.06391498 + outSlope: 0.06391498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.034221947 + inSlope: 0.015888136 + outSlope: 0.015888136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.031087017 + inSlope: 0.03697557 + outSlope: 0.03697557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.025029177 + inSlope: 0.052928306 + outSlope: 0.052928306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.020260345 + inSlope: 0.03294171 + outSlope: 0.03294171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.017347306 + inSlope: 0.027295303 + outSlope: 0.027295303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.013698127 + inSlope: 0.03998962 + outSlope: 0.03998962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.011404653 + inSlope: 0.027803008 + outSlope: 0.027803008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.0098116975 + inSlope: 0.020449782 + outSlope: 0.020449782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: -0.009186116 + inSlope: 0.029796086 + outSlope: 0.029796086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.007825294 + inSlope: 0.053983804 + outSlope: 0.053983804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.005587167 + inSlope: 0.076395296 + outSlope: 0.076395296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.0027322466 + inSlope: 0.07206648 + outSlope: 0.07206648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.00078273966 + inSlope: 0.041109245 + outSlope: 0.041109245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.000008366982 + inSlope: 0.01187327 + outSlope: 0.01187327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.000008810943 + inSlope: 0.0000066594175 + outSlope: 0.0000066594175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.000008810943 + inSlope: 0.0000030735857 + outSlope: 0.0000030735857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.000009015848 + inSlope: 0.0000030735857 + outSlope: 0.0000030735857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.000009015848 + inSlope: -0.045967054 + outSlope: -0.045967054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.0030554514 + inSlope: -0.108133085 + outSlope: -0.108133085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.017308647 + inSlope: -0.15810697 + outSlope: -0.15810697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.046367098 + inSlope: -0.11594687 + outSlope: -0.11594687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.05833143 + inSlope: -0.03754873 + outSlope: -0.03754873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.05513583 + inSlope: 0.023860563 + outSlope: 0.023860563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.051140808 + inSlope: 0.015796997 + outSlope: 0.015796997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.046511553 + inSlope: 0.019556496 + outSlope: 0.019556496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.044517357 + inSlope: 0.06024214 + outSlope: 0.06024214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.03549139 + inSlope: 0.10219365 + outSlope: 0.10219365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.0022702524 + inSlope: 0.06570259 + outSlope: 0.06570259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: -0.00029188814 + inSlope: 0.051853478 + outSlope: 0.051853478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.0011866428 + inSlope: 0.036292925 + outSlope: 0.036292925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.002127638 + inSlope: -0.01780017 + outSlope: -0.01780017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.000000034150947 + inSlope: -0.06383023 + outSlope: -0.06383023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.59368914 + inSlope: -0.053349134 + outSlope: -0.053349134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.5280388 + inSlope: -0.320389 + outSlope: -0.320389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.43625203 + inSlope: -0.27583483 + outSlope: -0.27583483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.38800147 + inSlope: -0.31821254 + outSlope: -0.31821254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.34477505 + inSlope: -0.29490536 + outSlope: -0.29490536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.33169308 + inSlope: -0.05795356 + outSlope: -0.05795356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.32168102 + inSlope: -0.037626453 + outSlope: -0.037626453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.32443392 + inSlope: 0.15095901 + outSlope: 0.15095901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.33195665 + inSlope: 0.055110507 + outSlope: 0.055110507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.3518668 + inSlope: 0.04549957 + outSlope: 0.04549957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.30669636 + inSlope: -0.27239114 + outSlope: -0.27239114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.2786256 + inSlope: -0.13613878 + outSlope: -0.13613878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.23113997 + inSlope: -0.25642836 + outSlope: -0.25642836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.1992968 + inSlope: -0.13652757 + outSlope: -0.13652757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.19101132 + inSlope: 0.013904138 + outSlope: 0.013904138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.19193946 + inSlope: -0.009912113 + outSlope: -0.009912113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.19892423 + inSlope: 0.14090034 + outSlope: 0.14090034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.22092392 + inSlope: 0.034578625 + outSlope: 0.034578625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.23767272 + inSlope: 0.085670635 + outSlope: 0.085670635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.24673672 + inSlope: 0.17223218 + outSlope: 0.17223218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.26247692 + inSlope: 0.2101732 + outSlope: 0.2101732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.33091876 + inSlope: 0.6733786 + outSlope: 0.6733786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.5435876 + inSlope: 1.056761 + outSlope: 1.056761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.6389796 + inSlope: 0.93595773 + outSlope: 0.93595773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.71113825 + inSlope: 0.3126359 + outSlope: 0.3126359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.7371151 + inSlope: 0.34620467 + outSlope: 0.34620467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.77477634 + inSlope: -0.23717456 + outSlope: -0.23717456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.7693574 + inSlope: -0.055484228 + outSlope: -0.055484228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.73943436 + inSlope: -0.107905366 + outSlope: -0.107905366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.6223847 + inSlope: -0.5749347 + outSlope: -0.5749347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: 0.45621225 + inSlope: -0.13263178 + outSlope: -0.13263178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.44823277 + inSlope: -0.02602684 + outSlope: -0.02602684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.460773 + inSlope: 0.23085767 + outSlope: 0.23085767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.50843143 + inSlope: 0.32033205 + outSlope: 0.32033205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.57020366 + inSlope: 0.0073635075 + outSlope: 0.0073635075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.5936874 + inSlope: 0.006911165 + outSlope: 0.006911165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10250709 + inSlope: -0.056537386 + outSlope: -0.056537386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.09690992 + inSlope: -0.05099293 + outSlope: -0.05099293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0951276 + inSlope: -0.08420785 + outSlope: -0.08420785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.08753226 + inSlope: -0.12396621 + outSlope: -0.12396621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.054573957 + inSlope: -0.1255261 + outSlope: -0.1255261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.05056268 + inSlope: -0.084820755 + outSlope: -0.084820755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.048919242 + inSlope: -0.055198297 + outSlope: -0.055198297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.04410833 + inSlope: -0.10459976 + outSlope: -0.10459976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.03990948 + inSlope: -0.07289903 + outSlope: -0.07289903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0392484 + inSlope: -0.014525779 + outSlope: -0.014525779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.03783804 + inSlope: -0.042864818 + outSlope: -0.042864818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.03278969 + inSlope: -0.020895934 + outSlope: -0.020895934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.032676905 + inSlope: 0.024638966 + outSlope: 0.024638966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.036342286 + inSlope: 0.032560267 + outSlope: 0.032560267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.035656165 + inSlope: -0.034213718 + outSlope: -0.034213718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.032240476 + inSlope: -0.070828184 + outSlope: -0.070828184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.026816633 + inSlope: 0.007862511 + outSlope: 0.007862511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.028170953 + inSlope: 0.046732813 + outSlope: 0.046732813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.032491084 + inSlope: 0.007430397 + outSlope: 0.007430397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.031457804 + inSlope: -0.016821653 + outSlope: -0.016821653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.030918838 + inSlope: -0.020082416 + outSlope: -0.020082416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.030118978 + inSlope: 0.007130241 + outSlope: 0.007130241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.031394187 + inSlope: -0.014910264 + outSlope: -0.014910264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.029124953 + inSlope: -0.04305183 + outSlope: -0.04305183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.02852406 + inSlope: -0.013251187 + outSlope: -0.013251187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.028724719 + inSlope: 0.0075300466 + outSlope: 0.0075300466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.028920593 + inSlope: 0.0020021766 + outSlope: 0.0020021766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.028858198 + inSlope: 0.016001321 + outSlope: 0.016001321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.029987346 + inSlope: 0.0015630033 + outSlope: 0.0015630033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.028962398 + inSlope: -0.018918604 + outSlope: -0.018918604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.02825608 + inSlope: -0.017428983 + outSlope: -0.017428983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.025270598 + inSlope: -0.022649799 + outSlope: -0.022649799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.023690637 + inSlope: -0.030309577 + outSlope: -0.030309577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.022501627 + inSlope: -0.052374538 + outSlope: -0.052374538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.017073253 + inSlope: -0.091560125 + outSlope: -0.091560125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.014095002 + inSlope: -0.096730545 + outSlope: -0.096730545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.010624532 + inSlope: -0.08981462 + outSlope: -0.08981462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.008107342 + inSlope: -0.052995786 + outSlope: -0.052995786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.0070914826 + inSlope: -0.052587453 + outSlope: -0.052587453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.004601515 + inSlope: -0.07669482 + outSlope: -0.07669482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0019784998 + inSlope: -0.06120833 + outSlope: -0.06120833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.00052096345 + inSlope: -0.028647305 + outSlope: -0.028647305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.000068681264 + inSlope: -0.01784158 + outSlope: -0.01784158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.00066847936 + inSlope: -0.02063868 + outSlope: -0.02063868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.0013072348 + inSlope: -0.001712665 + outSlope: -0.001712665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.00078265695 + inSlope: 0.026753318 + outSlope: 0.026753318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.00047631797 + inSlope: 0.035538565 + outSlope: 0.035538565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.0015865784 + inSlope: 0.030848248 + outSlope: 0.030848248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0025328659 + inSlope: 0.016068736 + outSlope: 0.016068736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.002288966 + inSlope: -0.013796876 + outSlope: -0.013796876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.001738033 + inSlope: -0.016819786 + outSlope: -0.016819786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.001167648 + inSlope: -0.020479579 + outSlope: -0.020479579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.00037272912 + inSlope: -0.023734681 + outSlope: -0.023734681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.0004146625 + inSlope: -0.017960573 + outSlope: -0.017960573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.0008246412 + inSlope: -0.00976572 + outSlope: -0.00976572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.0010657099 + inSlope: -0.009823196 + outSlope: -0.009823196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.0014795233 + inSlope: -0.008989005 + outSlope: -0.008989005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.0016649793 + inSlope: 0.0056337947 + outSlope: 0.0056337947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.0011039373 + inSlope: 0.019957125 + outSlope: 0.019957125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.00033450554 + inSlope: 0.0183439 + outSlope: 0.0183439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.000118988224 + inSlope: 0.023569506 + outSlope: 0.023569506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.0012367934 + inSlope: 0.024118187 + outSlope: 0.024118187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.0017268658 + inSlope: 0.0036614374 + outSlope: 0.0036614374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.0014808872 + inSlope: 0.0009914073 + outSlope: 0.0009914073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.0017929578 + inSlope: 0.014163617 + outSlope: 0.014163617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.0024251274 + inSlope: 0.045448996 + outSlope: 0.045448996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.004822888 + inSlope: 0.067357555 + outSlope: 0.067357555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.0069156266 + inSlope: 0.06749191 + outSlope: 0.06749191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.01530381 + inSlope: 0.099558875 + outSlope: 0.099558875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.03323257 + inSlope: 0.18848762 + outSlope: 0.18848762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.047503117 + inSlope: 0.21417633 + outSlope: 0.21417633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.054466862 + inSlope: 0.22114202 + outSlope: 0.22114202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.06224596 + inSlope: 0.21983194 + outSlope: 0.21983194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.08410641 + inSlope: 0.23193118 + outSlope: 0.23193118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.104371496 + inSlope: 0.14033277 + outSlope: 0.14033277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.11662687 + inSlope: 0.09567276 + outSlope: 0.09567276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.12002991 + inSlope: -0.08290794 + outSlope: -0.08290794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.11463894 + inSlope: -0.27262524 + outSlope: -0.27262524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.073420845 + inSlope: -0.2862712 + outSlope: -0.2862712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.066924885 + inSlope: -0.12537439 + outSlope: -0.12537439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.06506256 + inSlope: -0.07089907 + outSlope: -0.07089907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.062198285 + inSlope: -0.14109199 + outSlope: -0.14109199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.03930739 + inSlope: -0.23642784 + outSlope: -0.23642784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.031947996 + inSlope: -0.18113548 + outSlope: -0.18113548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.02349778 + inSlope: -0.11325072 + outSlope: -0.11325072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.01547578 + inSlope: -0.13319468 + outSlope: -0.13319468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.010801971 + inSlope: -0.12243195 + outSlope: -0.12243195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.0073136576 + inSlope: -0.03753311 + outSlope: -0.03753311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.008299766 + inSlope: 0.03673353 + outSlope: 0.03673353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.009762557 + inSlope: 0.032004848 + outSlope: 0.032004848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.0102727115 + inSlope: -0.012599312 + outSlope: -0.012599312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.009593467 + inSlope: -0.044864208 + outSlope: -0.044864208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.007281767 + inSlope: -0.058799267 + outSlope: -0.058799267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.00567352 + inSlope: -0.05329283 + outSlope: -0.05329283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.0037289152 + inSlope: -0.056562804 + outSlope: -0.056562804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.0019026697 + inSlope: -0.04090239 + outSlope: -0.04090239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.0010020788 + inSlope: -0.006003995 + outSlope: -0.006003995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.0015023908 + inSlope: 0.00056798244 + outSlope: 0.00056798244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.0010399442 + inSlope: 0.0012726216 + outSlope: 0.0012726216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.0015872322 + inSlope: 0.013274038 + outSlope: 0.013274038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.0019248793 + inSlope: 0.012005676 + outSlope: 0.012005676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.0023876098 + inSlope: -0.02138913 + outSlope: -0.02138913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.00049893855 + inSlope: -0.020002924 + outSlope: -0.020002924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.0010540828 + inSlope: 0.0055918237 + outSlope: 0.0055918237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.0008717264 + inSlope: 0.012480467 + outSlope: 0.012480467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.0018861131 + inSlope: 0.020393677 + outSlope: 0.020393677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.0022313036 + inSlope: -0.0046959566 + outSlope: -0.0046959566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.0015730496 + inSlope: -0.028612282 + outSlope: -0.028612282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.00032382007 + inSlope: -0.064752795 + outSlope: -0.064752795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.0027437992 + inSlope: -0.13452323 + outSlope: -0.13452323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.008644471 + inSlope: -0.17617336 + outSlope: -0.17617336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.014488763 + inSlope: -0.09518611 + outSlope: -0.09518611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.014990205 + inSlope: 0.02521237 + outSlope: 0.02521237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.01280794 + inSlope: 0.117106125 + outSlope: 0.117106125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.007183137 + inSlope: 0.19721857 + outSlope: 0.19721857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.00033995215 + inSlope: 0.21460132 + outSlope: 0.21460132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.007123604 + inSlope: 0.1889633 + outSlope: 0.1889633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.012937494 + inSlope: 0.16813499 + outSlope: 0.16813499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.018332593 + inSlope: 0.15031517 + outSlope: 0.15031517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.022958495 + inSlope: 0.107625335 + outSlope: 0.107625335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.025507608 + inSlope: 0.12009166 + outSlope: 0.12009166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.030964598 + inSlope: 0.15015611 + outSlope: 0.15015611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.035518005 + inSlope: 0.14725336 + outSlope: 0.14725336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.046063304 + inSlope: 0.1620734 + outSlope: 0.1620734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.051586438 + inSlope: 0.10819689 + outSlope: 0.10819689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.053141393 + inSlope: -0.0049188966 + outSlope: -0.0049188966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.052948497 + inSlope: 0.03529958 + outSlope: 0.03529958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.05942533 + inSlope: 0.13519107 + outSlope: 0.13519107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.064507425 + inSlope: 0.09534234 + outSlope: 0.09534234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.06578148 + inSlope: 0.032934204 + outSlope: 0.032934204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.07268962 + inSlope: -0.031345554 + outSlope: -0.031345554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.06883567 + inSlope: -0.08023959 + outSlope: -0.08023959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.065852314 + inSlope: -0.051960472 + outSlope: -0.051960472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.06537164 + inSlope: -0.04776717 + outSlope: -0.04776717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.06266784 + inSlope: -0.06280588 + outSlope: -0.06280588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.059717394 + inSlope: -0.041003026 + outSlope: -0.041003026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.05666674 + inSlope: -0.011743616 + outSlope: -0.011743616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.056285355 + inSlope: 0.013135908 + outSlope: 0.013135908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.061844457 + inSlope: 0.08252578 + outSlope: 0.08252578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.10205976 + inSlope: 0.029350547 + outSlope: 0.029350547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.10249727 + inSlope: 0.013125402 + outSlope: 0.013125402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.103625536 + inSlope: -0.0097133955 + outSlope: -0.0097133955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0995459 + inSlope: -0.07950816 + outSlope: -0.07950816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.09354439 + inSlope: -0.07611583 + outSlope: -0.07611583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.083167806 + inSlope: -0.003198877 + outSlope: -0.003198877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.08371394 + inSlope: 0.00017903 + outSlope: 0.00017903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.08317974 + inSlope: 0.0035597384 + outSlope: 0.0035597384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.08395126 + inSlope: -0.009284598 + outSlope: -0.009284598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.08256077 + inSlope: -0.037482984 + outSlope: -0.037482984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.08145239 + inSlope: -0.05149267 + outSlope: -0.05149267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.07912792 + inSlope: -0.051024877 + outSlope: -0.051024877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.07805073 + inSlope: -0.09759268 + outSlope: -0.09759268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.05336346 + inSlope: -0.30560538 + outSlope: -0.30560538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.031520847 + inSlope: -0.36556134 + outSlope: -0.36556134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.01857123 + inSlope: -0.4043655 + outSlope: -0.4043655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0045631495 + inSlope: -0.39467967 + outSlope: -0.39467967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.007740745 + inSlope: -0.31005558 + outSlope: -0.31005558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.016107226 + inSlope: -0.21702722 + outSlope: -0.21702722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.022209223 + inSlope: -0.19214098 + outSlope: -0.19214098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.035667848 + inSlope: -0.21174854 + outSlope: -0.21174854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.043033205 + inSlope: -0.25582057 + outSlope: -0.25582057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.060928587 + inSlope: -0.19527072 + outSlope: -0.19527072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.06707768 + inSlope: 0.007560484 + outSlope: 0.007560484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.06523658 + inSlope: 0.04619573 + outSlope: 0.04619573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.064508446 + inSlope: -0.036080077 + outSlope: -0.036080077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.06640331 + inSlope: -0.12519881 + outSlope: -0.12519881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.07949461 + inSlope: -0.16662365 + outSlope: -0.16662365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.086273625 + inSlope: -0.0046153096 + outSlope: -0.0046153096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.08616027 + inSlope: -0.01779849 + outSlope: -0.01779849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.0890387 + inSlope: -0.018229842 + outSlope: -0.018229842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.08963562 + inSlope: -0.03193944 + outSlope: -0.03193944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.091167994 + inSlope: -0.017287748 + outSlope: -0.017287748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.091128156 + inSlope: -0.011106461 + outSlope: -0.011106461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.09629714 + inSlope: -0.068406 + outSlope: -0.068406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.10783412 + inSlope: -0.009930553 + outSlope: -0.009930553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.10948854 + inSlope: -0.047325276 + outSlope: -0.047325276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.10482547 + inSlope: 0.15866801 + outSlope: 0.15866801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.09829478 + inSlope: 0.14528155 + outSlope: 0.14528155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.09321825 + inSlope: 0.09448034 + outSlope: 0.09448034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.08884136 + inSlope: 0.07330618 + outSlope: 0.07330618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.089837216 + inSlope: -0.040432837 + outSlope: -0.040432837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.09241299 + inSlope: 0.046575263 + outSlope: 0.046575263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.0850273 + inSlope: 0.027952667 + outSlope: 0.027952667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.08256106 + inSlope: 0.04580178 + outSlope: 0.04580178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.08051034 + inSlope: 0.03168015 + outSlope: 0.03168015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.080852434 + inSlope: 0.007573448 + outSlope: 0.007573448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.07858532 + inSlope: 0.0048359158 + outSlope: 0.0048359158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.080043204 + inSlope: 0.003256714 + outSlope: 0.003256714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.079248495 + inSlope: 0.0256482 + outSlope: 0.0256482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.078333326 + inSlope: 0.066147245 + outSlope: 0.066147245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.07080581 + inSlope: 0.12529124 + outSlope: 0.12529124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.060929034 + inSlope: 0.17841154 + outSlope: 0.17841154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.0434127 + inSlope: 0.12997578 + outSlope: 0.12997578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.03702711 + inSlope: 0.12017509 + outSlope: 0.12017509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.026646722 + inSlope: 0.13540058 + outSlope: 0.13540058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.023061762 + inSlope: 0.13084748 + outSlope: 0.13084748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.017923528 + inSlope: 0.18665573 + outSlope: 0.18665573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.010618022 + inSlope: 0.21780285 + outSlope: 0.21780285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.003403352 + inSlope: 0.2083581 + outSlope: 0.2083581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.003272505 + inSlope: 0.20831919 + outSlope: 0.20831919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.01048458 + inSlope: 0.26043028 + outSlope: 0.26043028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: 0.020634506 + inSlope: 0.373772 + outSlope: 0.373772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.03540269 + inSlope: 0.5154492 + outSlope: 0.5154492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.07801931 + inSlope: 0.7264541 + outSlope: 0.7264541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.12799183 + inSlope: 0.7284643 + outSlope: 0.7284643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.17804454 + inSlope: 0.80166495 + outSlope: 0.80166495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.23051639 + inSlope: 0.75682825 + outSlope: 0.75682825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.27524123 + inSlope: 0.4938537 + outSlope: 0.4938537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.32160002 + inSlope: 0.32484576 + outSlope: 0.32484576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.3792013 + inSlope: 0.37309527 + outSlope: 0.37309527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.42539188 + inSlope: 0.19680682 + outSlope: 0.19680682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.4630913 + inSlope: -0.053452455 + outSlope: -0.053452455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.42287037 + inSlope: -0.20679718 + outSlope: -0.20679718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.35987243 + inSlope: -0.24076603 + outSlope: -0.24076603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.33874822 + inSlope: -0.43611866 + outSlope: -0.43611866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.294881 + inSlope: -0.4042084 + outSlope: -0.4042084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.2654108 + inSlope: -0.50477207 + outSlope: -0.50477207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.21991658 + inSlope: -0.37916905 + outSlope: -0.37916905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.20809817 + inSlope: -0.46865702 + outSlope: -0.46865702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.16895364 + inSlope: -0.52624387 + outSlope: -0.52624387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.15358992 + inSlope: -0.35932404 + outSlope: -0.35932404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.13837527 + inSlope: -0.16614088 + outSlope: -0.16614088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.13392268 + inSlope: -0.224175 + outSlope: -0.224175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.12343028 + inSlope: -0.29090664 + outSlope: -0.29090664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.097490184 + inSlope: -0.018763404 + outSlope: -0.018763404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.10446876 + inSlope: 0.059375558 + outSlope: 0.059375558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.114952095 + inSlope: 0.10687619 + outSlope: 0.10687619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.12418122 + inSlope: 0.0940351 + outSlope: 0.0940351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.12818822 + inSlope: -0.0849177 + outSlope: -0.0849177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.11570069 + inSlope: -0.08582105 + outSlope: -0.08582105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: 0.104973085 + inSlope: -0.024705926 + outSlope: -0.024705926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.10381979 + inSlope: -0.024603479 + outSlope: -0.024603479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.103585914 + inSlope: -0.0067535853 + outSlope: -0.0067535853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8692941 + inSlope: -0.035532117 + outSlope: -0.035532117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.70287114 + inSlope: -0.06299524 + outSlope: -0.06299524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.6988766 + inSlope: -0.047159515 + outSlope: -0.047159515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.7451717 + inSlope: 0.1462914 + outSlope: 0.1462914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.7910246 + inSlope: 0.15154943 + outSlope: 0.15154943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.7956756 + inSlope: -0.17482835 + outSlope: -0.17482835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.7325242 + inSlope: -0.19699326 + outSlope: -0.19699326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.72304446 + inSlope: 0.08995423 + outSlope: 0.08995423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.7929283 + inSlope: -0.06042397 + outSlope: -0.06042397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.78182524 + inSlope: 0.0573777 + outSlope: 0.0573777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.78061825 + inSlope: 0.043866575 + outSlope: 0.043866575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.7800315 + inSlope: -0.16092822 + outSlope: -0.16092822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.76782197 + inSlope: 0.16968475 + outSlope: 0.16968475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.7996206 + inSlope: 0.57286406 + outSlope: 0.57286406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.83673877 + inSlope: 0.22286496 + outSlope: 0.22286496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.8412991 + inSlope: 0.09000787 + outSlope: 0.09000787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.85216266 + inSlope: -0.14816001 + outSlope: -0.14816001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.7991172 + inSlope: -0.045641407 + outSlope: -0.045641407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.81939954 + inSlope: 0.031025141 + outSlope: 0.031025141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.8279075 + inSlope: 0.19089355 + outSlope: 0.19089355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.8159419 + inSlope: -0.3608907 + outSlope: -0.3608907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.715797 + inSlope: -0.43816942 + outSlope: -0.43816942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.66552854 + inSlope: 0.08572973 + outSlope: 0.08572973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.7091263 + inSlope: 0.21975628 + outSlope: 0.21975628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.7568929 + inSlope: 0.29439867 + outSlope: 0.29439867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.7970483 + inSlope: -0.01386501 + outSlope: -0.01386501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: 0.835208 + inSlope: 0.19501197 + outSlope: 0.19501197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.8692918 + inSlope: 0.022507332 + outSlope: 0.022507332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11646016 + inSlope: -0.013391151 + outSlope: -0.013391151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.10831312 + inSlope: -0.11885995 + outSlope: -0.11885995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.06705137 + inSlope: -0.29845777 + outSlope: -0.29845777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.05636046 + inSlope: -0.3163444 + outSlope: -0.3163444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.045961738 + inSlope: -0.33159694 + outSlope: -0.33159694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.034254 + inSlope: -0.33832043 + outSlope: -0.33832043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.023407053 + inSlope: -0.33144128 + outSlope: -0.33144128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.012157914 + inSlope: -0.32468486 + outSlope: -0.32468486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.001761378 + inSlope: -0.33932638 + outSlope: -0.33932638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.01046384 + inSlope: -0.41658857 + outSlope: -0.41658857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.026011195 + inSlope: -0.54733956 + outSlope: -0.54733956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.046953138 + inSlope: -0.64477706 + outSlope: -0.64477706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.06899633 + inSlope: -0.6908306 + outSlope: -0.6908306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.11615097 + inSlope: -0.68489254 + outSlope: -0.68489254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.18183424 + inSlope: -0.7031331 + outSlope: -0.7031331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.22726338 + inSlope: -0.4957582 + outSlope: -0.4957582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.25847933 + inSlope: -0.2983059 + outSlope: -0.2983059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.31187424 + inSlope: -0.3093721 + outSlope: -0.3093721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.33148524 + inSlope: 0.03667559 + outSlope: 0.03667559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.3181662 + inSlope: 0.092520654 + outSlope: 0.092520654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.30000713 + inSlope: 0.0652363 + outSlope: 0.0652363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.2981235 + inSlope: 0.0277667 + outSlope: 0.0277667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.30126223 + inSlope: -0.12897548 + outSlope: -0.12897548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.32243568 + inSlope: 0.01798691 + outSlope: 0.01798691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.31751108 + inSlope: 0.0060175415 + outSlope: 0.0060175415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.31898862 + inSlope: 0.0008466847 + outSlope: 0.0008466847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.3221997 + inSlope: 0.055495374 + outSlope: 0.055495374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: -0.29159406 + inSlope: 0.3202945 + outSlope: 0.3202945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.13279426 + inSlope: 0.7383489 + outSlope: 0.7383489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.063516326 + inSlope: 0.6455843 + outSlope: 0.6455843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.042476926 + inSlope: 0.63559484 + outSlope: 0.63559484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.021143222 + inSlope: 0.6222184 + outSlope: 0.6222184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.0009954361 + inSlope: 0.5930109 + outSlope: 0.5930109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.0183908 + inSlope: 0.5842282 + outSlope: 0.5842282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.037953075 + inSlope: 0.6249691 + outSlope: 0.6249691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.060055368 + inSlope: 0.6696488 + outSlope: 0.6696488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.08259629 + inSlope: 0.5947958 + outSlope: 0.5947958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.099708386 + inSlope: 0.42171395 + outSlope: 0.42171395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.12838647 + inSlope: 0.33260864 + outSlope: 0.33260864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.16486192 + inSlope: 0.2838209 + outSlope: 0.2838209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.18991819 + inSlope: 0.1316472 + outSlope: 0.1316472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.1980832 + inSlope: 0.069377415 + outSlope: 0.069377415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.19950174 + inSlope: 0.0012639919 + outSlope: 0.0012639919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.19881216 + inSlope: -0.04848969 + outSlope: -0.04848969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.19061318 + inSlope: -0.07379368 + outSlope: -0.07379368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.18078895 + inSlope: -0.03758002 + outSlope: -0.03758002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.17773288 + inSlope: 0.012442566 + outSlope: 0.012442566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.17127712 + inSlope: -0.25842237 + outSlope: -0.25842237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.14381254 + inSlope: -0.54143333 + outSlope: -0.54143333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.124288626 + inSlope: -0.5675541 + outSlope: -0.5675541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.0875892 + inSlope: -0.6011456 + outSlope: -0.6011456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.018123183 + inSlope: -0.7271482 + outSlope: -0.7271482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.006042007 + inSlope: -0.73468924 + outSlope: -0.73468924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.07962323 + inSlope: -0.71149445 + outSlope: -0.71149445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.10305458 + inSlope: -0.5915611 + outSlope: -0.5915611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.13357867 + inSlope: -0.43860382 + outSlope: -0.43860382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.1806717 + inSlope: -0.4720574 + outSlope: -0.4720574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.19604574 + inSlope: -0.3428689 + outSlope: -0.3428689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.20904963 + inSlope: -0.1427768 + outSlope: -0.1427768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.20794927 + inSlope: 0.12055759 + outSlope: 0.12055759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.187187 + inSlope: 0.27144563 + outSlope: 0.27144563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.14759105 + inSlope: 0.25462884 + outSlope: 0.25462884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.12396689 + inSlope: 0.19196543 + outSlope: 0.19196543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.11200344 + inSlope: 0.19784999 + outSlope: 0.19784999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.1010512 + inSlope: 0.07553667 + outSlope: 0.07553667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.10027941 + inSlope: 0.13188545 + outSlope: 0.13188545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: -0.09225884 + inSlope: 0.27588075 + outSlope: 0.27588075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.08188738 + inSlope: 0.3670838 + outSlope: 0.3670838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.05218151 + inSlope: 0.49422073 + outSlope: 0.49422073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.0027952779 + inSlope: 0.5740638 + outSlope: 0.5740638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: 0.07454793 + inSlope: 0.44749805 + outSlope: 0.44749805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.10013253 + inSlope: 0.31669074 + outSlope: 0.31669074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.11435738 + inSlope: 0.1084645 + outSlope: 0.1084645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.11649245 + inSlope: 0.064052105 + outSlope: 0.064052105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08223733 + inSlope: -0.04390463 + outSlope: -0.04390463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.087780006 + inSlope: -0.158121 + outSlope: -0.158121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.216738 + inSlope: -0.24353531 + outSlope: -0.24353531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.23227006 + inSlope: 0.10104959 + outSlope: 0.10104959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.19217175 + inSlope: 0.33714473 + outSlope: 0.33714473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.15277721 + inSlope: 0.25528395 + outSlope: 0.25528395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.11358307 + inSlope: 0.34148756 + outSlope: 0.34148756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.08354271 + inSlope: 0.23423329 + outSlope: 0.23423329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.06984858 + inSlope: 0.205587 + outSlope: 0.205587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.06289625 + inSlope: 0.18712491 + outSlope: 0.18712491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.057373576 + inSlope: 0.21681881 + outSlope: 0.21681881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.04844168 + inSlope: 0.22416842 + outSlope: 0.22416842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.03920137 + inSlope: 0.07676651 + outSlope: 0.07676651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.037311245 + inSlope: 0.07419109 + outSlope: 0.07419109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.03106483 + inSlope: 0.06666938 + outSlope: 0.06666938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.029975371 + inSlope: -0.009091249 + outSlope: -0.009091249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.03179769 + inSlope: -0.049009956 + outSlope: -0.049009956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.033684082 + inSlope: -0.06555034 + outSlope: -0.06555034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.036167707 + inSlope: -0.11101882 + outSlope: -0.11101882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.041085348 + inSlope: -0.15168092 + outSlope: -0.15168092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.07441073 + inSlope: -0.18286997 + outSlope: -0.18286997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.086274475 + inSlope: -0.16755864 + outSlope: -0.16755864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.09146575 + inSlope: -0.114399895 + outSlope: -0.114399895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.09418641 + inSlope: 0.04820113 + outSlope: 0.04820113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.08759227 + inSlope: 0.15924975 + outSlope: 0.15924975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.05190691 + inSlope: 0.23828956 + outSlope: 0.23828956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.02567358 + inSlope: 0.30123198 + outSlope: 0.30123198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.01508619 + inSlope: 0.30778617 + outSlope: 0.30778617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.005154519 + inSlope: 0.28701293 + outSlope: 0.28701293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.0040479894 + inSlope: 0.25988942 + outSlope: 0.25988942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.012171427 + inSlope: 0.23547843 + outSlope: 0.23547843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.019746536 + inSlope: 0.18798876 + outSlope: 0.18798876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.024703998 + inSlope: 0.094155096 + outSlope: 0.094155096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.026023546 + inSlope: 0.016769856 + outSlope: 0.016769856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.025821997 + inSlope: -0.042590644 + outSlope: -0.042590644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.023184173 + inSlope: -0.0846585 + outSlope: -0.0846585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.017042724 + inSlope: -0.09451598 + outSlope: -0.09451598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.013877043 + inSlope: -0.06811015 + outSlope: -0.06811015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.012502052 + inSlope: -0.030540023 + outSlope: -0.030540023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.011841038 + inSlope: -0.017326638 + outSlope: -0.017326638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.011346939 + inSlope: -0.046360083 + outSlope: -0.046360083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.008750369 + inSlope: -0.08384864 + outSlope: -0.08384864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.0057570348 + inSlope: -0.07823264 + outSlope: -0.07823264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.0035348644 + inSlope: -0.049914576 + outSlope: -0.049914576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.0024293996 + inSlope: -0.027428038 + outSlope: -0.027428038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.0017063303 + inSlope: -0.017379874 + outSlope: -0.017379874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.0012707394 + inSlope: -0.023953333 + outSlope: -0.023953333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.00010943987 + inSlope: -0.044859752 + outSlope: -0.044859752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.0017199081 + inSlope: -0.064660765 + outSlope: -0.064660765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: -0.004201274 + inSlope: -0.06974511 + outSlope: -0.06974511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.0063695777 + inSlope: -0.049242795 + outSlope: -0.049242795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.0074841236 + inSlope: -0.018795619 + outSlope: -0.018795619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.0076226178 + inSlope: 0.0014242751 + outSlope: 0.0014242751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.007389172 + inSlope: 0.016555509 + outSlope: 0.016555509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.006518912 + inSlope: -0.011283138 + outSlope: -0.011283138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.008141374 + inSlope: -0.051998116 + outSlope: -0.051998116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.00998545 + inSlope: -0.052597526 + outSlope: -0.052597526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.011647873 + inSlope: -0.12114285 + outSlope: -0.12114285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: -0.018061632 + inSlope: -0.26436245 + outSlope: -0.26436245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.029272018 + inSlope: -0.34494418 + outSlope: -0.34494418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.054598145 + inSlope: -0.44024193 + outSlope: -0.44024193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.08654735 + inSlope: -0.47400936 + outSlope: -0.47400936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.11736234 + inSlope: -0.49568903 + outSlope: -0.49568903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.16865756 + inSlope: -0.48372304 + outSlope: -0.48372304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.2478194 + inSlope: -0.32585293 + outSlope: -0.32585293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.25923723 + inSlope: 0.0042955615 + outSlope: 0.0042955615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.25640583 + inSlope: -0.17167138 + outSlope: -0.17167138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.27482337 + inSlope: -0.2475659 + outSlope: -0.2475659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.30509055 + inSlope: -0.11451881 + outSlope: -0.11451881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.3333278 + inSlope: -0.4980697 + outSlope: -0.4980697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.3511593 + inSlope: -0.35305238 + outSlope: -0.35305238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.3605218 + inSlope: -0.10956566 + outSlope: -0.10956566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.3630943 + inSlope: 0.10044167 + outSlope: 0.10044167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.34955737 + inSlope: -0.01701583 + outSlope: -0.01701583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.3452851 + inSlope: 0.029360382 + outSlope: 0.029360382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.3454716 + inSlope: 0.10272826 + outSlope: 0.10272826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.33843654 + inSlope: 0.11727926 + outSlope: 0.11727926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.336078 + inSlope: 0.030789554 + outSlope: 0.030789554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.33210513 + inSlope: 0.03933776 + outSlope: 0.03933776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.32427037 + inSlope: 0.27483568 + outSlope: 0.27483568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.30438542 + inSlope: 0.22324672 + outSlope: 0.22324672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.2966153 + inSlope: -0.05804574 + outSlope: -0.05804574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.29508835 + inSlope: 0.085252754 + outSlope: 0.085252754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.28976032 + inSlope: 0.092541575 + outSlope: 0.092541575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.265704 + inSlope: 0.22765896 + outSlope: 0.22765896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.23340647 + inSlope: 0.21673946 + outSlope: 0.21673946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.22710153 + inSlope: 0.12316403 + outSlope: 0.12316403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.22113134 + inSlope: 0.15689328 + outSlope: 0.15689328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: -0.20269015 + inSlope: 0.079407096 + outSlope: 0.079407096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.18683182 + inSlope: 0.10596368 + outSlope: 0.10596368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.17577599 + inSlope: 0.04383427 + outSlope: 0.04383427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.18583702 + inSlope: -0.016705707 + outSlope: -0.016705707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: -0.14442275 + inSlope: 0.2991437 + outSlope: 0.2991437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.08381311 + inSlope: 0.08870811 + outSlope: 0.08870811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.08223716 + inSlope: 0.04727845 + outSlope: 0.04727845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.28463027 + inSlope: 0.034347475 + outSlope: 0.034347475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2409298 + inSlope: 0.3384816 + outSlope: 0.3384816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.13148949 + inSlope: 0.40248436 + outSlope: 0.40248436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.068203725 + inSlope: 0.42725474 + outSlope: 0.42725474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.05357575 + inSlope: 0.44914192 + outSlope: 0.44914192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.038260933 + inSlope: 0.42896178 + outSlope: 0.42896178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.013507221 + inSlope: 0.31052065 + outSlope: 0.31052065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0042769243 + inSlope: 0.2749356 + outSlope: 0.2749356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0048218183 + inSlope: 0.32835412 + outSlope: 0.32835412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.017613348 + inSlope: 0.3034728 + outSlope: 0.3034728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.025053332 + inSlope: 0.1197523 + outSlope: 0.1197523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.02559684 + inSlope: 0.0052675 + outSlope: 0.0052675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.025404498 + inSlope: -0.01046247 + outSlope: -0.01046247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.024899341 + inSlope: -0.058654103 + outSlope: -0.058654103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.021494227 + inSlope: -0.11234505 + outSlope: -0.11234505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.013931766 + inSlope: -0.07283214 + outSlope: -0.07283214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.012554195 + inSlope: -0.024707291 + outSlope: -0.024707291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0117300935 + inSlope: -0.042923477 + outSlope: -0.042923477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0094230445 + inSlope: -0.11155566 + outSlope: -0.11155566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0042930483 + inSlope: -0.204794 + outSlope: -0.204794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0042298767 + inSlope: -0.2449224 + outSlope: -0.2449224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.012035125 + inSlope: -0.17651796 + outSlope: -0.17651796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.015997758 + inSlope: -0.10266292 + outSlope: -0.10266292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.018879313 + inSlope: -0.09199418 + outSlope: -0.09199418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.022130698 + inSlope: -0.09877995 + outSlope: -0.09877995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.025464648 + inSlope: -0.076300554 + outSlope: -0.076300554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.02830237 + inSlope: -0.029019248 + outSlope: -0.029019248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.029665843 + inSlope: 0.014558234 + outSlope: 0.014558234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.026323007 + inSlope: 0.07960012 + outSlope: 0.07960012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.020483661 + inSlope: 0.08074798 + outSlope: 0.08074798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.012178859 + inSlope: 0.09852248 + outSlope: 0.09852248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.0048105503 + inSlope: 0.11644778 + outSlope: 0.11644778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.00090669614 + inSlope: 0.1070158 + outSlope: 0.1070158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0023238389 + inSlope: 0.084705785 + outSlope: 0.084705785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.004740374 + inSlope: 0.061774053 + outSlope: 0.061774053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.006442105 + inSlope: 0.03454771 + outSlope: 0.03454771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.0070435526 + inSlope: 0.002228974 + outSlope: 0.002228974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.006590703 + inSlope: -0.02081204 + outSlope: -0.02081204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.0056560845 + inSlope: -0.03231166 + outSlope: -0.03231166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0044365944 + inSlope: -0.021503778 + outSlope: -0.021503778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.004222499 + inSlope: 0.005601822 + outSlope: 0.005601822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.0048100473 + inSlope: 0.02248577 + outSlope: 0.02248577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.005721549 + inSlope: -0.008598709 + outSlope: -0.008598709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.0042368006 + inSlope: -0.0725633 + outSlope: -0.0725633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.00088400044 + inSlope: -0.09984043 + outSlope: -0.09984043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.0024192221 + inSlope: -0.11736415 + outSlope: -0.11736415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.006940269 + inSlope: -0.17540388 + outSlope: -0.17540388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.014112854 + inSlope: -0.23154359 + outSlope: -0.23154359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.038546167 + inSlope: -0.20903966 + outSlope: -0.20903966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.051934697 + inSlope: -0.036662195 + outSlope: -0.036662195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.05070333 + inSlope: 0.07072684 + outSlope: 0.07072684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.047270596 + inSlope: 0.1042342 + outSlope: 0.1042342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.04010145 + inSlope: 0.11057031 + outSlope: 0.11057031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.03425314 + inSlope: 0.03656516 + outSlope: 0.03656516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.033779837 + inSlope: 0.03298355 + outSlope: 0.03298355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.029368078 + inSlope: 0.060804844 + outSlope: 0.060804844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.027692813 + inSlope: 0.035114534 + outSlope: 0.035114534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.027027112 + inSlope: 0.02002799 + outSlope: 0.02002799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.026357615 + inSlope: 0.010469646 + outSlope: 0.010469646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.025632873 + inSlope: 0.035461854 + outSlope: 0.035461854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.019769171 + inSlope: 0.044637505 + outSlope: 0.044637505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.018563695 + inSlope: 0.00044711912 + outSlope: 0.00044711912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.019436179 + inSlope: -0.03883885 + outSlope: -0.03883885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.021303417 + inSlope: -0.115360156 + outSlope: -0.115360156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.027126849 + inSlope: -0.14648451 + outSlope: -0.14648451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.031069042 + inSlope: -0.0652025 + outSlope: -0.0652025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.03140702 + inSlope: -0.026928622 + outSlope: -0.026928622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.03639892 + inSlope: -0.0844249 + outSlope: -0.0844249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.04278762 + inSlope: -0.15459205 + outSlope: -0.15459205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.076168895 + inSlope: -0.27352104 + outSlope: -0.27352104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.11611807 + inSlope: -0.37926316 + outSlope: -0.37926316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.16879424 + inSlope: -0.3765977 + outSlope: -0.3765977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.18035759 + inSlope: -0.3854859 + outSlope: -0.3854859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.19449328 + inSlope: -0.29010108 + outSlope: -0.29010108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.19969764 + inSlope: -0.20845008 + outSlope: -0.20845008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.24918592 + inSlope: -0.23527464 + outSlope: -0.23527464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.27637744 + inSlope: -0.15016228 + outSlope: -0.15016228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.29989538 + inSlope: -0.2857123 + outSlope: -0.2857123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.31738517 + inSlope: 0.083214715 + outSlope: 0.083214715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.3090566 + inSlope: 0.025551014 + outSlope: 0.025551014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.28946683 + inSlope: 0.07278002 + outSlope: 0.07278002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.2746958 + inSlope: 0.102360345 + outSlope: 0.102360345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.25185758 + inSlope: 0.3079903 + outSlope: 0.3079903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.18436438 + inSlope: 0.46414217 + outSlope: 0.46414217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.14897561 + inSlope: 0.61266226 + outSlope: 0.61266226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.036550917 + inSlope: 0.6692146 + outSlope: 0.6692146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.014531163 + inSlope: 0.65416586 + outSlope: 0.65416586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.007060416 + inSlope: 0.5292676 + outSlope: 0.5292676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.020753313 + inSlope: 0.37946028 + outSlope: 0.37946028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.043347172 + inSlope: 0.34342754 + outSlope: 0.34342754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.06592407 + inSlope: 0.2732034 + outSlope: 0.2732034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.073466435 + inSlope: 0.110697776 + outSlope: 0.110697776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.073303916 + inSlope: -0.0047280686 + outSlope: -0.0047280686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.06378925 + inSlope: -0.15143439 + outSlope: -0.15143439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.0518856 + inSlope: -0.16421874 + outSlope: -0.16421874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.037520666 + inSlope: -0.19762759 + outSlope: -0.19762759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.020806963 + inSlope: -0.26163065 + outSlope: -0.26163065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.012215405 + inSlope: -0.26045185 + outSlope: -0.26045185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.003443521 + inSlope: -0.23338056 + outSlope: -0.23338056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.0033432848 + inSlope: -0.19731712 + outSlope: -0.19731712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: -0.009710941 + inSlope: -0.18635151 + outSlope: -0.18635151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.02513335 + inSlope: -0.10255056 + outSlope: -0.10255056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.027936945 + inSlope: -0.062184945 + outSlope: -0.062184945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.029279029 + inSlope: -0.10451351 + outSlope: -0.10451351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.034904525 + inSlope: -0.25727352 + outSlope: -0.25727352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: -0.06199058 + inSlope: -0.48042354 + outSlope: -0.48042354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.13655849 + inSlope: -0.6084144 + outSlope: -0.6084144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.2784672 + inSlope: -0.18369931 + outSlope: -0.18369931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.2846452 + inSlope: -0.051841784 + outSlope: -0.051841784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000001472037 + inSlope: -0.0000358835 + outSlope: -0.0000358835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000026681537 + inSlope: -0.00001794175 + outSlope: -0.00001794175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000026681537 + inSlope: 0.0000017133855 + outSlope: 0.0000017133855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.000002553928 + inSlope: 0.000017941753 + outSlope: 0.000017941753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.000001472037 + inSlope: -0.0000017133843 + outSlope: -0.0000017133843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0000026681537 + inSlope: -0.000045269167 + outSlope: -0.000045269167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.000004489982 + inSlope: 1.2732926e-11 + outSlope: 1.2732926e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0000026681537 + inSlope: 0.00002389315 + outSlope: 0.00002389315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0000028971056 + inSlope: 0.000018776354 + outSlope: 0.000018776354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0000014163969 + inSlope: 0.000023071074 + outSlope: 0.000023071074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000013590341 + inSlope: 0.000005995592 + outSlope: 0.000005995592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0000010166908 + inSlope: -0.00004012732 + outSlope: -0.00004012732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0000040341915 + inSlope: -0.000023058516 + outSlope: -0.000023058516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.000002553928 + inSlope: 0.00003843232 + outSlope: 0.00003843232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.000001472037 + inSlope: 0.000016228367 + outSlope: 0.000016228367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.000001472037 + inSlope: 0.0000068301865 + outSlope: 0.0000068301865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0000010166908 + inSlope: -0.000017941735 + outSlope: -0.000017941735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0000026681537 + inSlope: -0.000023058534 + outSlope: -0.000023058534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.000002553928 + inSlope: 0.000019636782 + outSlope: 0.000019636782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0000013590341 + inSlope: 0.000016228349 + outSlope: 0.000016228349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.000001472037 + inSlope: -0.000017923398 + outSlope: -0.000017923398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.000002553928 + inSlope: 2.910383e-11 + outSlope: 2.910383e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.000001472037 + inSlope: 2.910383e-11 + outSlope: 2.910383e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.000001472037 + inSlope: 0.000016228352 + outSlope: 0.000016228352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.000001472037 + inSlope: -0.000017941768 + outSlope: -0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0000026681537 + inSlope: -0.000017941768 + outSlope: -0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0000026681537 + inSlope: 0.0000017133873 + outSlope: 0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.000002553928 + inSlope: 0.000019636815 + outSlope: 0.000019636815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000013590341 + inSlope: 6.548362e-11 + outSlope: 6.548362e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.000002553928 + inSlope: -0.000017923361 + outSlope: -0.000017923361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.000002553928 + inSlope: -0.0000051476504 + outSlope: -0.0000051476504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.0000028971056 + inSlope: 0.000016228398 + outSlope: 0.000016228398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.000001472037 + inSlope: 0.000003434281 + outSlope: 0.000003434281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0000026681537 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.000001472037 + inSlope: 0.0000017134444 + outSlope: 0.0000017134444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.000002553928 + inSlope: -0.000016228323 + outSlope: -0.000016228323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.000002553928 + inSlope: -0.0000017133873 + outSlope: -0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0000026681537 + inSlope: 0.000017923356 + outSlope: 0.000017923356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.0000013590341 + inSlope: -0.0000034343502 + outSlope: -0.0000034343502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.0000028971056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.0000013590341 + inSlope: 0.000023071094 + outSlope: 0.000023071094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0000013590341 + inSlope: -0.000017923361 + outSlope: -0.000017923361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.000002553928 + inSlope: -0.00001963675 + outSlope: -0.00001963675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.0000026681537 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.000002553928 + inSlope: 0.0000017133873 + outSlope: 0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.000002553928 + inSlope: 0.000017923427 + outSlope: 0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.0000013590341 + inSlope: -0.0000017133862 + outSlope: -0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.0000026681537 + inSlope: -0.000046964265 + outSlope: -0.000046964265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.000004489982 + inSlope: -0.0000034343684 + outSlope: -0.0000034343684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.0000028971056 + inSlope: 0.00004526913 + outSlope: 0.00004526913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.000001472037 + inSlope: 0.0000051476673 + outSlope: 0.0000051476673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.000002553928 + inSlope: -0.00001794177 + outSlope: -0.00001794177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.0000026681537 + inSlope: 0.000017923356 + outSlope: 0.000017923356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.0000013590341 + inSlope: 0.000017941698 + outSlope: 0.000017941698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.0000013590341 + inSlope: -0.000021375967 + outSlope: -0.000021375967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.0000028971056 + inSlope: -0.000023071012 + outSlope: -0.000023071012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.0000028971056 + inSlope: 0.000005147632 + outSlope: 0.000005147632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.000002553928 + inSlope: -0.000023893208 + outSlope: -0.000023893208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.000004489982 + inSlope: -0.00002647952 + outSlope: -0.00002647952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.0000043192276 + inSlope: 0.000029040839 + outSlope: 0.000029040839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.000002553928 + inSlope: 0.000044402947 + outSlope: 0.000044402947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0000013590341 + inSlope: 0.000017923427 + outSlope: 0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.0000013590341 + inSlope: -0.0000016950451 + outSlope: -0.0000016950451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.000001472037 + inSlope: -1.2050805e-11 + outSlope: -1.2050805e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.0000013590341 + inSlope: 0.0000068301865 + outSlope: 0.0000068301865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.0000010166908 + inSlope: -0.000046964265 + outSlope: -0.000046964265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.000004489982 + inSlope: -0.0000051351526 + outSlope: -0.0000051351526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.0000013590341 + inSlope: 0.000046964265 + outSlope: 0.000046964265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.0000013590341 + inSlope: -0.000019636813 + outSlope: -0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.0000026681537 + inSlope: -0.000023071094 + outSlope: -0.000023071094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.0000028971056 + inSlope: 0.000019636649 + outSlope: 0.000019636649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.0000013590341 + inSlope: 0.0000034341174 + outSlope: 0.0000034341174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.0000026681537 + inSlope: -0.000046964265 + outSlope: -0.000046964265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.000004489982 + inSlope: 0.0000017133862 + outSlope: 0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.000002553928 + inSlope: 0.000007696473 + outSlope: 0.000007696473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.0000039768843 + inSlope: 0.000002529634 + outSlope: 0.000002529634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.0000023852858 + inSlope: 0.000038407346 + outSlope: 0.000038407346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.0000014163969 + inSlope: -0.0000042428865 + outSlope: -0.0000042428865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.0000026681537 + inSlope: -0.000014533212 + outSlope: -0.000014533212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.0000023852858 + inSlope: 0.000019636813 + outSlope: 0.000019636813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.0000013590341 + inSlope: -0.000029009156 + outSlope: -0.000029009156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.0000043192276 + inSlope: -0.000017923427 + outSlope: -0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.000002553928 + inSlope: 0.000024766132 + outSlope: 0.000024766132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.0000026681537 + inSlope: 0.00002305858 + outSlope: 0.00002305858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.0000010166908 + inSlope: 0.0000017135535 + outSlope: 0.0000017135535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.000002553928 + inSlope: -0.000023058414 + outSlope: -0.000023058414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.000002553928 + inSlope: -0.0000051476686 + outSlope: -0.0000051476686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.0000028971056 + inSlope: 0.000017923425 + outSlope: 0.000017923425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.0000028971056 + inSlope: -0.00001539379 + outSlope: -0.00001539379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.0000023852858 + inSlope: -0.000021331643 + outSlope: -0.000021331643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.0000043192276 + inSlope: 0.0000145335525 + outSlope: 0.0000145335525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.0000014163969 + inSlope: 0.0000427079 + outSlope: 0.0000427079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.000001472037 + inSlope: -0.00004610382 + outSlope: -0.00004610382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: -0.000004489982 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.000001472037 + inSlope: 0.000052099418 + outSlope: 0.000052099418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.0000010166908 + inSlope: 0.00000083460145 + outSlope: 0.00000083460145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.0000014163969 + inSlope: -0.0000059955973 + outSlope: -0.0000059955973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.0000014163969 + inSlope: -0.000018776234 + outSlope: -0.000018776234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.0000026681537 + inSlope: -0.00000083446685 + outSlope: -0.00000083446685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.0000026681537 + inSlope: -0.000038432354 + outSlope: -0.000038432354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.0000040341915 + inSlope: 0.000001713388 + outSlope: 0.000001713388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: -0.000002553928 + inSlope: 0.000022203974 + outSlope: 0.000022203974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.000002553928 + inSlope: 0.000016228381 + outSlope: 0.000016228381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.000001472037 + inSlope: 0.000017923414 + outSlope: 0.000017923414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.0000013590341 + inSlope: 0.000001695033 + outSlope: 0.000001695033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.0000013590341 + inSlope: -0.000017923427 + outSlope: -0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.000002553928 + inSlope: -0.00000086044383 + outSlope: -0.00000086044383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0000014163969 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.000002553928 + inSlope: 0.00000086044383 + outSlope: 0.00000086044383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.0000013590341 + inSlope: 0.00002305858 + outSlope: 0.00002305858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.0000010166908 + inSlope: 3.6834535e-11 + outSlope: 3.6834535e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.0000013590341 + inSlope: -0.0000068301615 + outSlope: -0.0000068301615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.000001472037 + inSlope: 1.2164492e-11 + outSlope: 1.2164492e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.0000013590341 + inSlope: -0.000016228112 + outSlope: -0.000016228112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: -0.000002553928 + inSlope: -0.000019636558 + outSlope: -0.000019636558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.0000026681537 + inSlope: -0.00002647952 + outSlope: -0.00002647952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: -0.0000043192276 + inSlope: -0.000003434281 + outSlope: -0.000003434281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.0000028971056 + inSlope: 0.000024766132 + outSlope: 0.000024766132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.0000026681537 + inSlope: -0.000023893172 + outSlope: -0.000023893172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.000004489982 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.0000026681537 + inSlope: 0.00004526922 + outSlope: 0.00004526922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.000001472037 + inSlope: 0.000018776369 + outSlope: 0.000018776369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: -0.0000014163969 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.000001472037 + inSlope: -0.000018776369 + outSlope: -0.000018776369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.0000026681537 + inSlope: -0.0000427079 + outSlope: -0.0000427079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.0000043192276 + inSlope: 0.000001713388 + outSlope: 0.000001713388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.000002553928 + inSlope: 0.000043542503 + outSlope: 0.000043542503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: -0.0000014163969 + inSlope: -0.0000017133862 + outSlope: -0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: -0.0000026681537 + inSlope: 0.0000008601637 + outSlope: 0.0000008601637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.0000013590341 + inSlope: 0.000001713106 + outSlope: 0.000001713106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.000002553928 + inSlope: -0.000017923427 + outSlope: -0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.000002553928 + inSlope: 0.000017062983 + outSlope: 0.000017062983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.0000014163969 + inSlope: -0.0000017133862 + outSlope: -0.0000017133862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.0000026681537 + inSlope: -0.000017062981 + outSlope: -0.000017062981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.000002553928 + inSlope: 0.00001877637 + outSlope: 0.00001877637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.0000014163969 + inSlope: -0.0000051476673 + outSlope: -0.0000051476673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.0000028971056 + inSlope: 0.00000086044383 + outSlope: 0.00000086044383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.0000013590341 + inSlope: 0.000003434281 + outSlope: 0.000003434281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: -0.0000026681537 + inSlope: -0.0000401274 + outSlope: -0.0000401274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.0000040341915 + inSlope: 0.000017941768 + outSlope: 0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: -0.000001472037 + inSlope: -0.0000042755455 + outSlope: -0.0000042755455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.0000043192276 + inSlope: -0.000021376049 + outSlope: -0.000021376049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.0000028971056 + inSlope: 0.000044402615 + outSlope: 0.000044402615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.0000013590341 + inSlope: -3.2923708e-10 + outSlope: -3.2923708e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.0000028971056 + inSlope: -0.0000016950453 + outSlope: -0.0000016950453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: -0.000001472037 + inSlope: 0.000023071094 + outSlope: 0.000023071094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.0000013590341 + inSlope: -0.000016228381 + outSlope: -0.000016228381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.000002553928 + inSlope: -0.000017923427 + outSlope: -0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: -0.000002553928 + inSlope: -0.00002647952 + outSlope: -0.00002647952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: -0.0000043192276 + inSlope: 0.000017923427 + outSlope: 0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.0000043192276 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.0000013590341 + inSlope: 0.00002647952 + outSlope: 0.00002647952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: -0.000002553928 + inSlope: -0.000017923427 + outSlope: -0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: -0.000002553928 + inSlope: -0.0000017133873 + outSlope: -0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.0000026681537 + inSlope: 0.000017923145 + outSlope: 0.000017923145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.0000013590341 + inSlope: -0.000020490868 + outSlope: -0.000020490868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.0000040341915 + inSlope: -0.0000016950471 + outSlope: -0.0000016950471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.000001472037 + inSlope: 0.000038432354 + outSlope: 0.000038432354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.000001472037 + inSlope: 0.000006830199 + outSlope: 0.000006830199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.0000010166908 + inSlope: -0.00001794177 + outSlope: -0.00001794177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.0000026681537 + inSlope: -0.0000051351544 + outSlope: -0.0000051351544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.0000026681537 + inSlope: -0.000017923425 + outSlope: -0.000017923425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.000002553928 + inSlope: 0.0000017133873 + outSlope: 0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.000002553928 + inSlope: -0.00002647952 + outSlope: -0.00002647952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.0000043192276 + inSlope: -0.000005147669 + outSlope: -0.000005147669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.0000028971056 + inSlope: 0.0000427079 + outSlope: 0.0000427079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.000001472037 + inSlope: 0.000003434281 + outSlope: 0.000003434281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.0000026681537 + inSlope: -0.00004526883 + outSlope: -0.00004526883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.000004489982 + inSlope: 3.9108272e-10 + outSlope: 3.9108272e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.0000026681537 + inSlope: 0.00002904084 + outSlope: 0.00002904084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.000002553928 + inSlope: 0.0000017133873 + outSlope: 0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.000002553928 + inSlope: 0.000017923427 + outSlope: 0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.000002553928 + inSlope: -0.0000016950453 + outSlope: -0.0000016950453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.000002553928 + inSlope: -0.000016228381 + outSlope: -0.000016228381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.000002553928 + inSlope: 0.000016228381 + outSlope: 0.000016228381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.000001472037 + inSlope: -0.000029040837 + outSlope: -0.000029040837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.000004489982 + inSlope: -0.0000427079 + outSlope: -0.0000427079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.0000043192276 + inSlope: 0.000046103818 + outSlope: 0.000046103818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.0000014163969 + inSlope: 0.000026479516 + outSlope: 0.000026479516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.000002553928 + inSlope: -0.000017062983 + outSlope: -0.000017062983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.000002553928 + inSlope: -0.0000051476686 + outSlope: -0.0000051476686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.0000028971056 + inSlope: 0.000017923425 + outSlope: 0.000017923425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: -0.0000013590341 + inSlope: 0.000028206246 + outSlope: 0.000028206246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.0000010166908 + inSlope: -0.0000016950453 + outSlope: -0.0000016950453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.000001472037 + inSlope: -0.000028206246 + outSlope: -0.000028206246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.0000028971056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.000001472037 + inSlope: 0.000003434281 + outSlope: 0.000003434281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.0000026681537 + inSlope: -0.000038432354 + outSlope: -0.000038432354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.0000040341915 + inSlope: 0.000001713388 + outSlope: 0.000001713388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.000002553928 + inSlope: 0.0000401274 + outSlope: 0.0000401274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: -0.0000013590341 + inSlope: 0.000017923427 + outSlope: 0.000017923427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.0000013590341 + inSlope: -0.000046964265 + outSlope: -0.000046964265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.000004489982 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.0000013590341 + inSlope: 0.000007696475 + outSlope: 0.000007696475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.0000039768843 + inSlope: -0.000019637093 + outSlope: -0.000019637093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.0000026681537 + inSlope: 0.000044402666 + outSlope: 0.000044402666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.0000010166908 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.0000026681537 + inSlope: -0.000024771967 + outSlope: -0.000024771967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: -0.0000026681537 + inSlope: 0.000017941768 + outSlope: 0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.000001472037 + inSlope: -0.00002732745 + outSlope: -0.00002732745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: -0.000004489982 + inSlope: -0.000038432354 + outSlope: -0.000038432354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.0000040341915 + inSlope: 0.000046964265 + outSlope: 0.000046964265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.0000013590341 + inSlope: 0.000020490588 + outSlope: 0.000020490588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: -0.0000026681537 + inSlope: -0.0000016950453 + outSlope: -0.0000016950453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: -0.000001472037 + inSlope: 0.000024771965 + outSlope: 0.000024771965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: -0.0000010166908 + inSlope: -0.00001622838 + outSlope: -0.00001622838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: -0.000002553928 + inSlope: -0.00002305858 + outSlope: -0.00002305858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.000002553928 + inSlope: -0.00002647952 + outSlope: -0.00002647952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: -0.0000043192276 + inSlope: -0.0000017137409 + outSlope: -0.0000017137409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.0000026681537 + inSlope: 0.000024765779 + outSlope: 0.000024765779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: -0.0000026681537 + inSlope: 0.0000017133873 + outSlope: 0.0000017133873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.000002553928 + inSlope: 0.00001794177 + outSlope: 0.00001794177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.000001472037 + inSlope: 0.000016228381 + outSlope: 0.000016228381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000010067413 + inSlope: -0.000014033901 + outSlope: -0.000014033901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000053894456 + inSlope: -0.0000070169503 + outSlope: -0.0000070169503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000053894456 + inSlope: 0.000010165238 + outSlope: 0.000010165238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0000012166272 + inSlope: 0.000007016949 + outSlope: 0.000007016949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000010067413 + inSlope: -0.00001016524 + outSlope: -0.00001016524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00000053894456 + inSlope: -0.000007510538 + outSlope: -0.000007510538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000050603876 + inSlope: 2.2737368e-13 + outSlope: 2.2737368e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.00000053894456 + inSlope: -0.000026493664 + outSlope: -0.000026493664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0000012602054 + inSlope: 0.000031229436 + outSlope: 0.000031229436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.000002620907 + inSlope: 0.000027440816 + outSlope: 0.000027440816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000056918236 + inSlope: -0.00005473489 + outSlope: -0.00005473489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0000010280856 + inSlope: -0.000028147846 + outSlope: -0.000028147846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0000013073409 + inSlope: 0.0000336707 + outSlope: 0.0000336707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000012166272 + inSlope: 0.000034711236 + outSlope: 0.000034711236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0000010067413 + inSlope: -0.000003148289 + outSlope: -0.000003148289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0000010067413 + inSlope: -0.00003052238 + outSlope: -0.00003052238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0000010280856 + inSlope: -0.0000070169463 + outSlope: -0.0000070169463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.00000053894456 + inSlope: 0.000033670683 + outSlope: 0.000033670683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000012166272 + inSlope: 0.00000045358502 + outSlope: 0.00000045358502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00000056918236 + inSlope: -0.0000031482741 + outSlope: -0.0000031482741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000010067413 + inSlope: 0.000009711676 + outSlope: 0.000009711676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0000012166272 + inSlope: -5.684342e-12 + outSlope: -5.684342e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000010067413 + inSlope: -5.684342e-12 + outSlope: -5.684342e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0000010067413 + inSlope: -0.000003148286 + outSlope: -0.000003148286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0000010067413 + inSlope: -0.0000070169576 + outSlope: -0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.00000053894456 + inSlope: -0.0000070169576 + outSlope: -0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.00000053894456 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0000012166272 + inSlope: 0.00000045356774 + outSlope: 0.00000045356774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000056918236 + inSlope: -3.45608e-11 + outSlope: -3.45608e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0000012166272 + inSlope: 0.000009711647 + outSlope: 0.000009711647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.0000012166272 + inSlope: -0.000037152393 + outSlope: -0.000037152393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.0000012602054 + inSlope: -0.0000031481613 + outSlope: -0.0000031481613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0000010067413 + inSlope: 0.000026987274 + outSlope: 0.000026987274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00000053894456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0000010067413 + inSlope: 0.000010165239 + outSlope: 0.000010165239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0000012166272 + inSlope: 0.0000031482805 + outSlope: 0.0000031482805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0000012166272 + inSlope: -0.0000101652495 + outSlope: -0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00000053894456 + inSlope: -0.000009711684 + outSlope: -0.000009711684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.00000056918236 + inSlope: -0.000026987278 + outSlope: -0.000026987278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.0000012602054 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.00000056918236 + inSlope: 0.000027440843 + outSlope: 0.000027440843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00000056918236 + inSlope: 0.000009711647 + outSlope: 0.000009711647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.0000012166272 + inSlope: -0.0000004536023 + outSlope: -0.0000004536023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.00000053894456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.0000012166272 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.0000012166272 + inSlope: -0.000009711682 + outSlope: -0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.00000056918236 + inSlope: -0.0000101652495 + outSlope: -0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.00000053894456 + inSlope: -0.00000094715494 + outSlope: -0.00000094715494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.00000050603876 + inSlope: -0.000026987182 + outSlope: -0.000026987182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.0000012602054 + inSlope: 0.000007510638 + outSlope: 0.000007510638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.0000010067413 + inSlope: 0.000037152524 + outSlope: 0.000037152524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.0000012166272 + inSlope: -0.000007016958 + outSlope: -0.000007016958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.00000053894456 + inSlope: -0.000009711684 + outSlope: -0.000009711684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.00000056918236 + inSlope: 0.0000070169563 + outSlope: 0.0000070169563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.00000056918236 + inSlope: -0.000034004137 + outSlope: -0.000034004137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.0000012602054 + inSlope: -0.000027440745 + outSlope: -0.000027440745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.0000012602054 + inSlope: 0.00003715226 + outSlope: 0.00003715226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0000012166272 + inSlope: 0.00002649342 + outSlope: 0.00002649342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.00000050603876 + inSlope: 0.000003028238 + outSlope: 0.000003028238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.0000014185096 + inSlope: 0.000010658837 + outSlope: 0.000010658837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.0000012166272 + inSlope: -0.00001273992 + outSlope: -0.00001273992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.00000056918236 + inSlope: -0.000009711682 + outSlope: -0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.00000056918236 + inSlope: 0.0000065633903 + outSlope: 0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0000010067413 + inSlope: 4.7293724e-11 + outSlope: 4.7293724e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.00000056918236 + inSlope: -0.000030522388 + outSlope: -0.000030522388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.0000010280856 + inSlope: -0.00000094715506 + outSlope: -0.00000094715506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.00000050603876 + inSlope: 0.000023959043 + outSlope: 0.000023959043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.00000056918236 + inSlope: 0.00000094715494 + outSlope: 0.00000094715494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.00000056918236 + inSlope: -0.00000045356742 + outSlope: -0.00000045356742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.00000053894456 + inSlope: -0.000027440841 + outSlope: -0.000027440841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.0000012602054 + inSlope: 0.0000004533722 + outSlope: 0.0000004533722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.00000056918236 + inSlope: 0.00002698708 + outSlope: 0.00002698708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.00000053894456 + inSlope: -0.00000094715494 + outSlope: -0.00000094715494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.00000050603876 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.0000012166272 + inSlope: 0.000027200716 + outSlope: 0.000027200716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.0000023194182 + inSlope: 0.000014260709 + outSlope: 0.000014260709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0000021673402 + inSlope: 0.000004522337 + outSlope: 0.000004522337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.000002620907 + inSlope: -0.000024425735 + outSlope: -0.000024425735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.00000053894456 + inSlope: -0.000006803284 + outSlope: -0.000006803284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.0000021673402 + inSlope: 0.00000045356865 + outSlope: 0.00000045356865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.00000056918236 + inSlope: -0.000011232471 + outSlope: -0.000011232471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.0000014185096 + inSlope: 0.000009711682 + outSlope: 0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.0000012166272 + inSlope: -0.000013193488 + outSlope: -0.000013193488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.00000053894456 + inSlope: -0.000033670723 + outSlope: -0.000033670723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.0000010280856 + inSlope: 0.000010165011 + outSlope: 0.000010165011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.0000012166272 + inSlope: 0.000033670487 + outSlope: 0.000033670487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.0000012166272 + inSlope: -0.000037152524 + outSlope: -0.000037152524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.0000012602054 + inSlope: -0.000009711681 + outSlope: -0.000009711681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.0000012602054 + inSlope: 0.00002397239 + outSlope: 0.00002397239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.0000021673402 + inSlope: 0.000040180843 + outSlope: 0.000040180843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.0000014185096 + inSlope: 0.000006803589 + outSlope: 0.000006803589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.000002620907 + inSlope: -0.0000061765313 + outSlope: -0.0000061765313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.0000010067413 + inSlope: -0.000031723055 + outSlope: -0.000031723055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.00000050603876 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.0000010067413 + inSlope: -0.00002301189 + outSlope: -0.00002301189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.0000010280856 + inSlope: 0.00002421251 + outSlope: 0.00002421251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.000002620907 + inSlope: 0.000054734945 + outSlope: 0.000054734945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.000002620907 + inSlope: -0.000031229243 + outSlope: -0.000031229243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.00000053894456 + inSlope: -0.000024212286 + outSlope: -0.000024212286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.00000053894456 + inSlope: -0.000034711265 + outSlope: -0.000034711265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.0000013073409 + inSlope: 0.000010165251 + outSlope: 0.000010165251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.0000012166272 + inSlope: 0.000037859558 + outSlope: 0.000037859558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.0000012166272 + inSlope: -0.0000031482916 + outSlope: -0.0000031482916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.0000010067413 + inSlope: -0.000009711634 + outSlope: -0.000009711634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.00000056918236 + inSlope: -0.000006563343 + outSlope: -0.000006563343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.00000056918236 + inSlope: 0.000009711682 + outSlope: 0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.0000012166272 + inSlope: 0.0000307759 + outSlope: 0.0000307759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.000002620907 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.0000012166272 + inSlope: -0.0000307759 + outSlope: -0.0000307759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: 0.00000056918236 + inSlope: -0.000033670723 + outSlope: -0.000033670723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.0000010280856 + inSlope: -1.70985e-10 + outSlope: -1.70985e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.00000056918236 + inSlope: 0.000030522264 + outSlope: 0.000030522264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.0000010067413 + inSlope: -4.6838977e-11 + outSlope: -4.6838977e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.00000056918236 + inSlope: 0.0000031481054 + outSlope: 0.0000031481054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.0000012166272 + inSlope: -0.0000004537069 + outSlope: -0.0000004537069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.00000053894456 + inSlope: 0.000003028238 + outSlope: 0.000003028238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.0000014185096 + inSlope: -0.000026987276 + outSlope: -0.000026987276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.0000012602054 + inSlope: -0.0000131934885 + outSlope: -0.0000131934885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.00000053894456 + inSlope: 0.000026493686 + outSlope: 0.000026493686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.00000050603876 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.00000053894456 + inSlope: 0.000007510545 + outSlope: 0.000007510545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.0000010067413 + inSlope: 0.00003122947 + outSlope: 0.00003122947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.000002620907 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.0000010067413 + inSlope: -0.00003122947 + outSlope: -0.00003122947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.00000053894456 + inSlope: 0.00000617653 + outSlope: 0.00000617653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.0000014185096 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.0000012166272 + inSlope: 0.000018035978 + outSlope: 0.000018035978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.000002620907 + inSlope: -0.000010165251 + outSlope: -0.000010165251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.00000053894456 + inSlope: -0.000030775907 + outSlope: -0.000030775907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.00000056918236 + inSlope: 0.000010165243 + outSlope: 0.000010165243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.0000012166272 + inSlope: 0.000009711682 + outSlope: 0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.0000012166272 + inSlope: 0.000021064217 + outSlope: 0.000021064217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.000002620907 + inSlope: -0.000010165251 + outSlope: -0.000010165251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.00000053894456 + inSlope: -0.00002106422 + outSlope: -0.00002106422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.0000012166272 + inSlope: 0.000031229465 + outSlope: 0.000031229465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.000002620907 + inSlope: -0.00003715252 + outSlope: -0.00003715252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.0000012602054 + inSlope: -0.000030775896 + outSlope: -0.000030775896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.00000056918236 + inSlope: 0.000026987276 + outSlope: 0.000026987276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.00000053894456 + inSlope: -0.000028147873 + outSlope: -0.000028147873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.0000013073409 + inSlope: 0.000007016959 + outSlope: 0.000007016959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.0000010067413 + inSlope: 0.000040887797 + outSlope: 0.000040887797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.0000014185096 + inSlope: -0.00003400423 + outSlope: -0.00003400423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.0000012602054 + inSlope: -0.000012740313 + outSlope: -0.000012740313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.00000056918236 + inSlope: -3.929017e-10 + outSlope: -3.929017e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: -0.0000012602054 + inSlope: 0.0000065633885 + outSlope: 0.0000065633885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.0000010067413 + inSlope: 0.000027440841 + outSlope: 0.000027440841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.00000056918236 + inSlope: 0.0000031482914 + outSlope: 0.0000031482914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.0000012166272 + inSlope: 0.000009711682 + outSlope: 0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.0000012166272 + inSlope: 0.0000030282383 + outSlope: 0.0000030282383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.0000014185096 + inSlope: -0.000009711682 + outSlope: -0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.0000014185096 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.00000056918236 + inSlope: -0.000003028238 + outSlope: -0.000003028238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.0000012166272 + inSlope: 0.000009711682 + outSlope: 0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.0000012166272 + inSlope: -0.0000101652495 + outSlope: -0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.00000053894456 + inSlope: -0.000009711688 + outSlope: -0.000009711688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.00000056918236 + inSlope: -0.000027694314 + outSlope: -0.000027694314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.0000013073409 + inSlope: 0.0000065633903 + outSlope: 0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.0000010067413 + inSlope: 0.000034711265 + outSlope: 0.000034711265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.0000010067413 + inSlope: -0.000030522435 + outSlope: -0.000030522435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.0000010280856 + inSlope: -0.000007016959 + outSlope: -0.000007016959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.00000053894456 + inSlope: 0.000023959043 + outSlope: 0.000023959043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.00000053894456 + inSlope: 0.000009711682 + outSlope: 0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.0000012166272 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.0000012166272 + inSlope: 0.0000030282383 + outSlope: 0.0000030282383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.0000014185096 + inSlope: -0.000037152524 + outSlope: -0.000037152524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.0000012602054 + inSlope: -0.0000061765313 + outSlope: -0.0000061765313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.0000010067413 + inSlope: 0.000026987274 + outSlope: 0.000026987274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.00000053894456 + inSlope: -0.000007510538 + outSlope: -0.000007510538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.00000050603876 + inSlope: 7.048584e-12 + outSlope: 7.048584e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.00000053894456 + inSlope: 0.000010658837 + outSlope: 0.000010658837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.0000012166272 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.0000012166272 + inSlope: -0.000009711682 + outSlope: -0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: 0.0000012166272 + inSlope: 0.0000065633903 + outSlope: 0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.0000012166272 + inSlope: 0.0000031482916 + outSlope: 0.0000031482916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.0000012166272 + inSlope: -0.0000031482916 + outSlope: -0.0000031482916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.0000010067413 + inSlope: -0.000010658837 + outSlope: -0.000010658837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.00000050603876 + inSlope: 0.00000617653 + outSlope: 0.00000617653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.0000014185096 + inSlope: 0.00003172305 + outSlope: 0.00003172305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.000002620907 + inSlope: -0.000003028239 + outSlope: -0.000003028239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.0000012166272 + inSlope: -0.000021064217 + outSlope: -0.000021064217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.0000012166272 + inSlope: -0.000037152524 + outSlope: -0.000037152524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.0000012602054 + inSlope: -0.000009711681 + outSlope: -0.000009711681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.00000056918236 + inSlope: 0.0000034818004 + outSlope: 0.0000034818004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.0000010280856 + inSlope: 0.000006563392 + outSlope: 0.000006563392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.0000010067413 + inSlope: -0.0000034817967 + outSlope: -0.0000034817967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.0000012602054 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.0000010067413 + inSlope: 0.000026987274 + outSlope: 0.000026987274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.00000053894456 + inSlope: -0.000034711265 + outSlope: -0.000034711265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.0000013073409 + inSlope: 0.000010165251 + outSlope: 0.000010165251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.0000012166272 + inSlope: 0.000028147875 + outSlope: 0.000028147875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: 0.00000056918236 + inSlope: -0.000009711682 + outSlope: -0.000009711682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.00000056918236 + inSlope: -0.00000094715494 + outSlope: -0.00000094715494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.00000050603876 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.00000056918236 + inSlope: 0.000027200716 + outSlope: 0.000027200716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.0000023194182 + inSlope: -0.00000045318666 + outSlope: -0.00000045318666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.00000053894456 + inSlope: -0.000050212224 + outSlope: -0.000050212224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.0000010280856 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.00000053894456 + inSlope: 0.000023505476 + outSlope: 0.000023505476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.00000053894456 + inSlope: 0.0000070169576 + outSlope: 0.0000070169576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.0000010067413 + inSlope: -0.0000004935873 + outSlope: -0.0000004935873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.00000050603876 + inSlope: -0.000034711265 + outSlope: -0.000034711265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.0000013073409 + inSlope: 0.00000094715506 + outSlope: 0.00000094715506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.00000056918236 + inSlope: 0.000027694308 + outSlope: 0.000027694308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.00000053894456 + inSlope: 0.0000065633903 + outSlope: 0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.0000010067413 + inSlope: -0.000023505478 + outSlope: -0.000023505478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: -0.0000010280856 + inSlope: 0.0000031482923 + outSlope: 0.0000031482923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: 0.0000012166272 + inSlope: 0.000033670727 + outSlope: 0.000033670727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.0000012166272 + inSlope: 0.0000030282383 + outSlope: 0.0000030282383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: 0.0000014185096 + inSlope: -0.00001016506 + outSlope: -0.00001016506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: 0.00000053894456 + inSlope: -0.000013193298 + outSlope: -0.000013193298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.00000053894456 + inSlope: 0.0000101652495 + outSlope: 0.0000101652495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.0000012166272 + inSlope: 0.000007016958 + outSlope: 0.000007016958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.0000010067413 + inSlope: -0.0000031482916 + outSlope: -0.0000031482916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.60435414 + inSlope: -0.032054186 + outSlope: -0.032054186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.6493777 + inSlope: -0.03152132 + outSlope: -0.03152132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.64012575 + inSlope: 0.13967693 + outSlope: 0.13967693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.6169631 + inSlope: 0.21661541 + outSlope: 0.21661541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.6091736 + inSlope: -0.15845343 + outSlope: -0.15845343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.6566423 + inSlope: -0.07221215 + outSlope: -0.07221215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.6472042 + inSlope: -0.06250447 + outSlope: -0.06250447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.6826351 + inSlope: -0.0286924 + outSlope: -0.0286924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.6814127 + inSlope: 0.071922354 + outSlope: 0.071922354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.62090147 + inSlope: 0.1558029 + outSlope: 0.1558029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.589013 + inSlope: 0.0247434 + outSlope: 0.0247434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.5738724 + inSlope: 0.099093415 + outSlope: 0.099093415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.5813923 + inSlope: -0.15100405 + outSlope: -0.15100405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.6385973 + inSlope: -0.068417855 + outSlope: -0.068417855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.6528994 + inSlope: -0.2666458 + outSlope: -0.2666458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.69022304 + inSlope: 0.07419444 + outSlope: 0.07419444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.65860647 + inSlope: 0.08411237 + outSlope: 0.08411237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.6730332 + inSlope: -0.116968565 + outSlope: -0.116968565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: -0.6560449 + inSlope: 0.2100279 + outSlope: 0.2100279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.604354 + inSlope: 0.03920857 + outSlope: 0.03920857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33024672 + inSlope: -0.00049620867 + outSlope: -0.00049620867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.3331966 + inSlope: -0.012270659 + outSlope: -0.012270659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.34260234 + inSlope: 0.18566075 + outSlope: 0.18566075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.3805165 + inSlope: 0.0149578 + outSlope: 0.0149578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.36173308 + inSlope: -0.15678242 + outSlope: -0.15678242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.32632464 + inSlope: 0.031917803 + outSlope: 0.031917803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.34854826 + inSlope: 0.022127353 + outSlope: 0.022127353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.3349047 + inSlope: -0.08786166 + outSlope: -0.08786166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.33517194 + inSlope: 0.050982587 + outSlope: 0.050982587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.34470496 + inSlope: -0.022345427 + outSlope: -0.022345427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.35261947 + inSlope: 0.027343018 + outSlope: 0.027343018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.32263622 + inSlope: -0.3835138 + outSlope: -0.3835138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.28687093 + inSlope: -0.34710455 + outSlope: -0.34710455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.24184577 + inSlope: -0.4399073 + outSlope: -0.4399073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.22258168 + inSlope: -0.10967988 + outSlope: -0.10967988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.23346314 + inSlope: 0.25148752 + outSlope: 0.25148752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.27622175 + inSlope: 0.09620869 + outSlope: 0.09620869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.25946528 + inSlope: -0.09089479 + outSlope: -0.09089479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.24372928 + inSlope: -0.041199267 + outSlope: -0.041199267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.26759225 + inSlope: 0.3208189 + outSlope: 0.3208189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.41113582 + inSlope: 0.25264958 + outSlope: 0.25264958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.3964159 + inSlope: -0.07032982 + outSlope: -0.07032982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.37867394 + inSlope: -0.002360346 + outSlope: -0.002360346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.36475244 + inSlope: -0.11733424 + outSlope: -0.11733424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.33024672 + inSlope: -0.018681604 + outSlope: -0.018681604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.19797798 + inSlope: 0.008770376 + outSlope: 0.008770376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.18239631 + inSlope: 0.17027889 + outSlope: 0.17027889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.1354688 + inSlope: 0.08068133 + outSlope: 0.08068133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.13047928 + inSlope: -0.014141083 + outSlope: -0.014141083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.13863695 + inSlope: -0.28251404 + outSlope: -0.28251404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.15081482 + inSlope: -0.3404765 + outSlope: -0.3404765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.19394505 + inSlope: -0.16553412 + outSlope: -0.16553412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.21657407 + inSlope: -0.10849504 + outSlope: -0.10849504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.22857541 + inSlope: 0.055631973 + outSlope: 0.055631973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.18905157 + inSlope: 0.18029031 + outSlope: 0.18029031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.2004299 + inSlope: -0.08155331 + outSlope: -0.08155331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.23328148 + inSlope: -0.051204536 + outSlope: -0.051204536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.2127102 + inSlope: 0.18992248 + outSlope: 0.18992248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.19354112 + inSlope: -0.06253688 + outSlope: -0.06253688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.21128118 + inSlope: -0.02667951 + outSlope: -0.02667951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.21185882 + inSlope: -0.045536354 + outSlope: -0.045536354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.23073886 + inSlope: -0.116886534 + outSlope: -0.116886534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.25489554 + inSlope: -0.050331254 + outSlope: -0.050331254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.24709547 + inSlope: 0.15224546 + outSlope: 0.15224546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.2159069 + inSlope: 0.22929052 + outSlope: 0.22929052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.15055871 + inSlope: 0.6037153 + outSlope: 0.6037153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.107002065 + inSlope: 0.5592016 + outSlope: 0.5592016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.05953581 + inSlope: 0.5659479 + outSlope: 0.5659479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.03809772 + inSlope: 0.62114555 + outSlope: 0.62114555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.018126145 + inSlope: 0.56380296 + outSlope: 0.56380296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.000510896 + inSlope: 0.45959568 + outSlope: 0.45959568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.021946877 + inSlope: 0.24761307 + outSlope: 0.24761307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.037873395 + inSlope: 0.0066001965 + outSlope: 0.0066001965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.03366179 + inSlope: -0.069461204 + outSlope: -0.069461204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.021781595 + inSlope: -0.10588312 + outSlope: -0.10588312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.018061668 + inSlope: -0.1004801 + outSlope: -0.1004801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.015082928 + inSlope: -0.08571947 + outSlope: -0.08571947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.010090972 + inSlope: -0.05461746 + outSlope: -0.05461746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.008058246 + inSlope: -0.006209725 + outSlope: -0.006209725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.008291868 + inSlope: 0.008196434 + outSlope: 0.008196434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.008604675 + inSlope: 0.011526455 + outSlope: 0.011526455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.008801554 + inSlope: -0.027025545 + outSlope: -0.027025545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.007419614 + inSlope: -0.045400187 + outSlope: -0.045400187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.005774878 + inSlope: -0.052982576 + outSlope: -0.052982576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.0038874457 + inSlope: -0.05071868 + outSlope: -0.05071868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.002393636 + inSlope: -0.041986875 + outSlope: -0.041986875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.0010883234 + inSlope: -0.04034102 + outSlope: -0.04034102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: -0.00029576276 + inSlope: -0.042240266 + outSlope: -0.042240266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.0017277121 + inSlope: -0.039542302 + outSlope: -0.039542302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.0029319343 + inSlope: -0.025273308 + outSlope: -0.025273308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: -0.0034125978 + inSlope: 0.0050649615 + outSlope: 0.0050649615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.0025942705 + inSlope: 0.030778788 + outSlope: 0.030778788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.0013606806 + inSlope: 0.03817673 + outSlope: 0.03817673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: -0.000049157497 + inSlope: 0.038114384 + outSlope: 0.038114384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.0011802758 + inSlope: 0.027969684 + outSlope: 0.027969684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.0018154864 + inSlope: -0.0040682787 + outSlope: -0.0040682787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.00090905745 + inSlope: -0.056567848 + outSlope: -0.056567848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.0019556999 + inSlope: -0.110800676 + outSlope: -0.110800676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.006477647 + inSlope: -0.19227014 + outSlope: -0.19227014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.02588087 + inSlope: -0.36698347 + outSlope: -0.36698347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.03923924 + inSlope: -0.45084277 + outSlope: -0.45084277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.11151648 + inSlope: -0.50216556 + outSlope: -0.50216556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.15652633 + inSlope: -0.11967425 + outSlope: -0.11967425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.12809779 + inSlope: 0.105794914 + outSlope: 0.105794914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.120615296 + inSlope: 0.10286896 + outSlope: 0.10286896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.113885894 + inSlope: 0.078356564 + outSlope: 0.078356564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.09114025 + inSlope: 0.1666809 + outSlope: 0.1666809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.085297115 + inSlope: 0.16115832 + outSlope: 0.16115832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.08039637 + inSlope: 0.17573625 + outSlope: 0.17573625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.07358128 + inSlope: 0.13729067 + outSlope: 0.13729067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.07124357 + inSlope: 0.049935628 + outSlope: 0.049935628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.07025224 + inSlope: -0.01995476 + outSlope: -0.01995476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.07618493 + inSlope: -0.13051787 + outSlope: -0.13051787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: -0.08127507 + inSlope: -0.1917122 + outSlope: -0.1917122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: -0.097054236 + inSlope: -0.25942618 + outSlope: -0.25942618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: -0.12816024 + inSlope: -0.3328523 + outSlope: -0.3328523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.19680955 + inSlope: -0.10227787 + outSlope: -0.10227787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.19797795 + inSlope: -0.035052035 + outSlope: -0.035052035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7336934 + inSlope: -0.02937734 + outSlope: -0.02937734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5883878 + inSlope: -0.25898695 + outSlope: -0.25898695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.55531746 + inSlope: -0.25889376 + outSlope: -0.25889376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.48385063 + inSlope: -0.22520477 + outSlope: -0.22520477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.43619007 + inSlope: -0.149578 + outSlope: -0.149578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.4086412 + inSlope: -0.045520633 + outSlope: -0.045520633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.43293253 + inSlope: 0.18017578 + outSlope: 0.18017578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.46556672 + inSlope: 0.105753794 + outSlope: 0.105753794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.54114926 + inSlope: 0.1895045 + outSlope: 0.1895045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.58435214 + inSlope: 0.04733567 + outSlope: 0.04733567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.52277243 + inSlope: -0.29377103 + outSlope: -0.29377103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.49124703 + inSlope: 0.38398853 + outSlope: 0.38398853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.5485989 + inSlope: 0.4180781 + outSlope: 0.4180781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.65717983 + inSlope: 0.35985672 + outSlope: 0.35985672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.6626267 + inSlope: -0.014446391 + outSlope: -0.014446391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.6598283 + inSlope: -0.032051533 + outSlope: -0.032051533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.6291951 + inSlope: -0.31703472 + outSlope: -0.31703472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.47918537 + inSlope: -0.27640367 + outSlope: -0.27640367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.42126265 + inSlope: -0.10165537 + outSlope: -0.10165537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.41932485 + inSlope: 0.1398228 + outSlope: 0.1398228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.4529065 + inSlope: 0.53698236 + outSlope: 0.53698236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.7315979 + inSlope: 0.120888166 + outSlope: 0.120888166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.7336934 + inSlope: 0.062865674 + outSlope: 0.062865674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1382449 + inSlope: -0.016406178 + outSlope: -0.016406178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.13032213 + inSlope: -0.15766895 + outSlope: -0.15766895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.083825156 + inSlope: -0.26768404 + outSlope: -0.26768404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.056456577 + inSlope: -0.25645888 + outSlope: -0.25645888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.032439955 + inSlope: -0.22947595 + outSlope: -0.22947595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.018190984 + inSlope: -0.16475554 + outSlope: -0.16475554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.013707073 + inSlope: -0.07092854 + outSlope: -0.07092854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.013462419 + inSlope: 0.057922814 + outSlope: 0.057922814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.01756859 + inSlope: 0.08504766 + outSlope: 0.08504766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.01913226 + inSlope: 0.026495513 + outSlope: 0.026495513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.01751644 + inSlope: -0.10102585 + outSlope: -0.10102585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.012599897 + inSlope: -0.18902984 + outSlope: -0.18902984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0049144533 + inSlope: -0.25149098 + outSlope: -0.25149098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.004166169 + inSlope: -0.27390903 + outSlope: -0.27390903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.013346149 + inSlope: -0.24484733 + outSlope: -0.24484733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.020489322 + inSlope: -0.1687951 + outSlope: -0.1687951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.027278833 + inSlope: -0.06958465 + outSlope: -0.06958465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.029238136 + inSlope: -0.0252145 + outSlope: -0.0252145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.026308678 + inSlope: 0.10425004 + outSlope: 0.10425004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.017135506 + inSlope: 0.1432111 + outSlope: 0.1432111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.00848533 + inSlope: 0.105439514 + outSlope: 0.105439514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.003457391 + inSlope: 0.042839922 + outSlope: 0.042839922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0025770995 + inSlope: 0.010527638 + outSlope: 0.010527638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.0027555497 + inSlope: -0.03399339 + outSlope: -0.03399339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.004843324 + inSlope: -0.064064056 + outSlope: -0.064064056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.007026483 + inSlope: -0.08075307 + outSlope: -0.08075307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.014382604 + inSlope: -0.13670313 + outSlope: -0.13670313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.03920594 + inSlope: -0.11209811 + outSlope: -0.11209811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.043036975 + inSlope: 0.08164412 + outSlope: 0.08164412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.03913168 + inSlope: 0.12897965 + outSlope: 0.12897965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.022395357 + inSlope: 0.19451234 + outSlope: 0.19451234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.009483287 + inSlope: 0.17139125 + outSlope: 0.17139125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.004339745 + inSlope: 0.12530999 + outSlope: 0.12530999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.0011292588 + inSlope: 0.08089344 + outSlope: 0.08089344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.0010531463 + inSlope: 0.061068565 + outSlope: 0.061068565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.002941975 + inSlope: 0.055281173 + outSlope: 0.055281173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.0047385544 + inSlope: 0.047600195 + outSlope: 0.047600195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0070490777 + inSlope: 0.019649792 + outSlope: 0.019649792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.007425306 + inSlope: 0.014597274 + outSlope: 0.014597274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.008022231 + inSlope: 0.012166337 + outSlope: 0.012166337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.008448644 + inSlope: 0.009068208 + outSlope: 0.009068208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.009325641 + inSlope: 0.01706194 + outSlope: 0.01706194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.009978402 + inSlope: 0.02482337 + outSlope: 0.02482337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.010980538 + inSlope: 0.050246224 + outSlope: 0.050246224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.013328155 + inSlope: 0.06516871 + outSlope: 0.06516871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.015325114 + inSlope: 0.065446004 + outSlope: 0.065446004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.027040076 + inSlope: 0.046477493 + outSlope: 0.046477493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.028225547 + inSlope: 0.034843966 + outSlope: 0.034843966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.029959545 + inSlope: 0.011485677 + outSlope: 0.011485677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.032016482 + inSlope: 0.034088477 + outSlope: 0.034088477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.03839634 + inSlope: 0.043646306 + outSlope: 0.043646306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.043754034 + inSlope: 0.07009904 + outSlope: 0.07009904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.051059514 + inSlope: 0.014651469 + outSlope: 0.014651469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.04733335 + inSlope: -0.10731149 + outSlope: -0.10731149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.029521724 + inSlope: -0.24839789 + outSlope: -0.24839789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.010523822 + inSlope: -0.30719802 + outSlope: -0.30719802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.000057430912 + inSlope: -0.31125462 + outSlope: -0.31125462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.019748349 + inSlope: -0.2666964 + outSlope: -0.2666964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.028006285 + inSlope: -0.23728582 + outSlope: -0.23728582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.035567388 + inSlope: -0.18261424 + outSlope: -0.18261424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.04219536 + inSlope: 0.03549666 + outSlope: 0.03549666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.039537586 + inSlope: -0.032468844 + outSlope: -0.032468844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.05168437 + inSlope: -0.17478018 + outSlope: -0.17478018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.062167447 + inSlope: -0.08799414 + outSlope: -0.08799414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.06367778 + inSlope: -0.022049736 + outSlope: -0.022049736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.060052842 + inSlope: 0.1828367 + outSlope: 0.1828367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.039426252 + inSlope: 0.4116227 + outSlope: 0.4116227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.024006838 + inSlope: 0.5028975 + outSlope: 0.5028975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: -0.005899786 + inSlope: 0.5581322 + outSlope: 0.5581322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.013201937 + inSlope: 0.54874915 + outSlope: 0.54874915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.030683704 + inSlope: 0.49585235 + outSlope: 0.49585235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.04625898 + inSlope: 0.4070496 + outSlope: 0.4070496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.06677297 + inSlope: 0.23013939 + outSlope: 0.23013939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.07607023 + inSlope: 0.03281261 + outSlope: 0.03281261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.07535043 + inSlope: -0.041227493 + outSlope: -0.041227493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.064279646 + inSlope: -0.15046062 + outSlope: -0.15046062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.04777373 + inSlope: -0.07006632 + outSlope: -0.07006632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.045338094 + inSlope: 0.0094615575 + outSlope: 0.0094615575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.041370336 + inSlope: -0.07858534 + outSlope: -0.07858534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.03546571 + inSlope: -0.07257344 + outSlope: -0.07257344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.030115403 + inSlope: -0.05179358 + outSlope: -0.05179358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.024880605 + inSlope: -0.01599931 + outSlope: -0.01599931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.024500113 + inSlope: -0.026825413 + outSlope: -0.026825413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.023092246 + inSlope: -0.043447692 + outSlope: -0.043447692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.021603603 + inSlope: -0.04565032 + outSlope: -0.04565032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.020048894 + inSlope: -0.060732424 + outSlope: -0.060732424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.017554779 + inSlope: -0.08223875 + outSlope: -0.08223875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.014566316 + inSlope: -0.1062221 + outSlope: -0.1062221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.010473312 + inSlope: -0.11241861 + outSlope: -0.11241861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.0070717493 + inSlope: -0.12051365 + outSlope: -0.12051365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.0024390765 + inSlope: -0.16697282 + outSlope: -0.16697282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: -0.0040597613 + inSlope: -0.18814968 + outSlope: -0.18814968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.01010431 + inSlope: -0.18394531 + outSlope: -0.18394531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.02894956 + inSlope: -0.19105738 + outSlope: -0.19105738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.035445686 + inSlope: -0.17011958 + outSlope: -0.17011958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.04770625 + inSlope: -0.090883665 + outSlope: -0.090883665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.0577962 + inSlope: -0.016406287 + outSlope: -0.016406287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.059288554 + inSlope: -0.017682591 + outSlope: -0.017682591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: -0.059937708 + inSlope: -0.03916476 + outSlope: -0.03916476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.061899535 + inSlope: -0.051642407 + outSlope: -0.051642407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.071531005 + inSlope: -0.0010479623 + outSlope: -0.0010479623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.07119556 + inSlope: -0.014238804 + outSlope: -0.014238804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.072480276 + inSlope: -0.0038137175 + outSlope: -0.0038137175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.067995355 + inSlope: 0.15401466 + outSlope: 0.15401466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.05248344 + inSlope: 0.2910442 + outSlope: 0.2910442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: -0.04177926 + inSlope: 0.36310846 + outSlope: 0.36310846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.028276233 + inSlope: 0.42070472 + outSlope: 0.42070472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.0022584621 + inSlope: 0.50833565 + outSlope: 0.50833565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.020156708 + inSlope: 0.5363038 + outSlope: 0.5363038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: 0.055932544 + inSlope: 0.54582024 + outSlope: 0.54582024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.0744 + inSlope: 0.5237957 + outSlope: 0.5237957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: 0.09085222 + inSlope: 0.4843041 + outSlope: 0.4843041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.11923148 + inSlope: 0.33927977 + outSlope: 0.33927977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.13634317 + inSlope: 0.13408712 + outSlope: 0.13408712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.1382449 + inSlope: 0.057051983 + outSlope: 0.057051983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08188503 + inSlope: 0.0051467116 + outSlope: 0.0051467116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0706428 + inSlope: 0.06911562 + outSlope: 0.06911562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.054705437 + inSlope: 0.08643106 + outSlope: 0.08643106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.051919978 + inSlope: 0.07170064 + outSlope: 0.07170064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.04992539 + inSlope: 0.09750449 + outSlope: 0.09750449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.04541968 + inSlope: 0.11367775 + outSlope: 0.11367775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.04070312 + inSlope: 0.04043515 + outSlope: 0.04043515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0399286 + inSlope: -0.016423384 + outSlope: -0.016423384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.040746093 + inSlope: -0.09418552 + outSlope: -0.09418552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.04620764 + inSlope: -0.13502893 + outSlope: -0.13502893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.049748022 + inSlope: -0.1453999 + outSlope: -0.1453999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.06181099 + inSlope: -0.1157224 + outSlope: -0.1157224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.063818485 + inSlope: 0.009610029 + outSlope: 0.009610029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.059595007 + inSlope: 0.14656872 + outSlope: 0.14656872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.023798766 + inSlope: 0.32191786 + outSlope: 0.32191786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.013189185 + inSlope: 0.30054536 + outSlope: 0.30054536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.0037624266 + inSlope: 0.2814267 + outSlope: 0.2814267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0055726096 + inSlope: 0.26021877 + outSlope: 0.26021877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.020195257 + inSlope: 0.17620023 + outSlope: 0.17620023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.025332196 + inSlope: 0.12239388 + outSlope: 0.12239388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.028354859 + inSlope: 0.072934255 + outSlope: 0.072934255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.029008465 + inSlope: -0.06260651 + outSlope: -0.06260651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.022521399 + inSlope: -0.12222199 + outSlope: -0.12222199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.012600469 + inSlope: -0.18581939 + outSlope: -0.18581939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.0056673535 + inSlope: -0.16344835 + outSlope: -0.16344835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.0017039233 + inSlope: -0.10916534 + outSlope: -0.10916534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.0016103409 + inSlope: -0.13031743 + outSlope: -0.13031743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.0069839098 + inSlope: -0.14368027 + outSlope: -0.14368027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.011189017 + inSlope: -0.10000315 + outSlope: -0.10000315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.013650781 + inSlope: -0.069553405 + outSlope: -0.069553405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.017289786 + inSlope: -0.034366366 + outSlope: -0.034366366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.017998703 + inSlope: 0.006911165 + outSlope: 0.006911165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.01650581 + inSlope: 0.031766005 + outSlope: 0.031766005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.015185663 + inSlope: 0.04078813 + outSlope: 0.04078813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.013786604 + inSlope: 0.07524854 + outSlope: 0.07524854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.010169072 + inSlope: 0.08915472 + outSlope: 0.08915472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.007842936 + inSlope: 0.10207738 + outSlope: 0.10207738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.0033639192 + inSlope: 0.14018637 + outSlope: 0.14018637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.001502813 + inSlope: 0.13189863 + outSlope: 0.13189863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0054293135 + inSlope: 0.12017664 + outSlope: 0.12017664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.009514581 + inSlope: 0.1271868 + outSlope: 0.1271868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.013908425 + inSlope: 0.12766017 + outSlope: 0.12766017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.01802528 + inSlope: 0.12519225 + outSlope: 0.12519225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.022254597 + inSlope: 0.114405714 + outSlope: 0.114405714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.03269917 + inSlope: 0.0051977667 + outSlope: 0.0051977667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.032405965 + inSlope: -0.010332853 + outSlope: -0.010332853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.032010313 + inSlope: -0.028146261 + outSlope: -0.028146261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.028789368 + inSlope: -0.05603908 + outSlope: -0.05603908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.019584274 + inSlope: -0.03533523 + outSlope: -0.03533523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.018089773 + inSlope: -0.009085684 + outSlope: -0.009085684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.018286375 + inSlope: 0.007891681 + outSlope: 0.007891681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.01966169 + inSlope: 0.012981066 + outSlope: 0.012981066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.020405822 + inSlope: 0.0009245208 + outSlope: 0.0009245208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.019917686 + inSlope: -0.020666998 + outSlope: -0.020666998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.00013762545 + inSlope: -0.1802108 + outSlope: -0.1802108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.006454436 + inSlope: -0.21549374 + outSlope: -0.21549374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.01422861 + inSlope: -0.2561927 + outSlope: -0.2561927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.023533935 + inSlope: -0.28864592 + outSlope: -0.28864592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.07846128 + inSlope: -0.33869994 + outSlope: -0.33869994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.12103128 + inSlope: 0.02520977 + outSlope: 0.02520977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: -0.10801112 + inSlope: 0.20935857 + outSlope: 0.20935857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.09992363 + inSlope: 0.32409263 + outSlope: 0.32409263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.06998434 + inSlope: 0.48577297 + outSlope: 0.48577297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: -0.03906832 + inSlope: 0.43903142 + outSlope: 0.43903142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: -0.024751395 + inSlope: 0.31812653 + outSlope: 0.31812653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.017859805 + inSlope: 0.13339186 + outSlope: 0.13339186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.015858514 + inSlope: 0.0982237 + outSlope: 0.0982237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.011311565 + inSlope: 0.037744008 + outSlope: 0.037744008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: -0.013342249 + inSlope: -0.15799685 + outSlope: -0.15799685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.021844678 + inSlope: -0.28773046 + outSlope: -0.28773046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.03252426 + inSlope: -0.374395 + outSlope: -0.374395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: -0.04680432 + inSlope: -0.46097767 + outSlope: -0.46097767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.06325608 + inSlope: -0.41082245 + outSlope: -0.41082245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.07419246 + inSlope: -0.27574855 + outSlope: -0.27574855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: -0.0816393 + inSlope: -0.33827236 + outSlope: -0.33827236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.09674393 + inSlope: -0.36132163 + outSlope: -0.36132163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.110759646 + inSlope: -0.030590514 + outSlope: -0.030590514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.10905651 + inSlope: 0.0018078107 + outSlope: 0.0018078107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.11041409 + inSlope: 0.010009343 + outSlope: 0.010009343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.103714764 + inSlope: 0.089548096 + outSlope: 0.089548096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.09842166 + inSlope: 0.04358896 + outSlope: 0.04358896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: -0.09740378 + inSlope: 0.073733106 + outSlope: 0.073733106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.09052179 + inSlope: 0.042931367 + outSlope: 0.042931367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.09128 + inSlope: -0.027210254 + outSlope: -0.027210254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.09973878 + inSlope: -0.1041667 + outSlope: -0.1041667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.11025537 + inSlope: 0.053547334 + outSlope: 0.053547334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: -0.09816498 + inSlope: 0.18722329 + outSlope: 0.18722329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.09108277 + inSlope: 0.17225699 + outSlope: 0.17225699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.08323757 + inSlope: 0.13517888 + outSlope: 0.13517888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.07766928 + inSlope: 0.13213435 + outSlope: 0.13213435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.07260112 + inSlope: -0.021083301 + outSlope: -0.021083301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.076855734 + inSlope: -0.02247928 + outSlope: -0.02247928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.083769634 + inSlope: -0.06868924 + outSlope: -0.06868924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.088512085 + inSlope: -0.02403865 + outSlope: -0.02403865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: -0.08859535 + inSlope: -0.011591401 + outSlope: -0.011591401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.08509264 + inSlope: 0.02756263 + outSlope: 0.02756263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.08188504 + inSlope: 0.004889448 + outSlope: 0.004889448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.047969013 + inSlope: 0.02349626 + outSlope: 0.02349626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.044947054 + inSlope: 0.08859286 + outSlope: 0.08859286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0021390193 + inSlope: 0.28709525 + outSlope: 0.28709525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.06598913 + inSlope: 0.32941812 + outSlope: 0.32941812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.07693045 + inSlope: 0.31209755 + outSlope: 0.31209755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.11663308 + inSlope: 0.65113074 + outSlope: 0.65113074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.14207721 + inSlope: 0.7491072 + outSlope: 0.7491072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.2174845 + inSlope: 0.7349045 + outSlope: 0.7349045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.27961558 + inSlope: 0.457056 + outSlope: 0.457056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.29533774 + inSlope: 0.013131134 + outSlope: 0.013131134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.29029518 + inSlope: -0.102172375 + outSlope: -0.102172375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.27520624 + inSlope: -0.40032053 + outSlope: -0.40032053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.20366196 + inSlope: -0.59215343 + outSlope: -0.59215343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.041865017 + inSlope: -0.31731004 + outSlope: -0.31731004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.020830804 + inSlope: 0.006792253 + outSlope: 0.006792253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.02647396 + inSlope: 0.14926174 + outSlope: 0.14926174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.03239679 + inSlope: 0.2138811 + outSlope: 0.2138811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.06188664 + inSlope: 0.35554504 + outSlope: 0.35554504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.11990968 + inSlope: 0.54444396 + outSlope: 0.54444396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.15808482 + inSlope: 0.50509685 + outSlope: 0.50509685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.20180051 + inSlope: 0.5267868 + outSlope: 0.5267868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.25756186 + inSlope: 0.38300917 + outSlope: 0.38300917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.2702911 + inSlope: -0.1075692 + outSlope: -0.1075692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.14682905 + inSlope: -0.5493916 + outSlope: -0.5493916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.09673528 + inSlope: -0.044565078 + outSlope: -0.044565078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.09670863 + inSlope: -0.00085909 + outSlope: -0.00085909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.098529786 + inSlope: 0.07488981 + outSlope: 0.07488981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.11304579 + inSlope: 0.0026113559 + outSlope: 0.0026113559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.10430651 + inSlope: -0.0723541 + outSlope: -0.0723541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.08878025 + inSlope: -0.021183325 + outSlope: -0.021183325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.056734115 + inSlope: -0.38565403 + outSlope: -0.38565403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.024643859 + inSlope: -0.57394135 + outSlope: -0.57394135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.0040658484 + inSlope: -0.64840615 + outSlope: -0.64840615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.018583179 + inSlope: -0.70209396 + outSlope: -0.70209396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.11066198 + inSlope: -0.5643108 + outSlope: -0.5643108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.1518521 + inSlope: -0.2885691 + outSlope: -0.2885691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.17975195 + inSlope: -0.37544906 + outSlope: -0.37544906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: -0.22479291 + inSlope: -0.4239173 + outSlope: -0.4239173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.2532568 + inSlope: -0.52029496 + outSlope: -0.52029496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.3072303 + inSlope: -0.28620628 + outSlope: -0.28620628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.27840716 + inSlope: 0.6286026 + outSlope: 0.6286026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.18608394 + inSlope: 0.53028977 + outSlope: 0.53028977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.15877877 + inSlope: -0.0007825345 + outSlope: -0.0007825345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.2011031 + inSlope: -0.20978257 + outSlope: -0.20978257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.2238935 + inSlope: -0.121585995 + outSlope: -0.121585995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.24953842 + inSlope: -0.22691 + outSlope: -0.22691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.25492913 + inSlope: 0.37879288 + outSlope: 0.37879288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.12574214 + inSlope: 1.0201108 + outSlope: 1.0201108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.024540622 + inSlope: 0.9476027 + outSlope: 0.9476027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.124196574 + inSlope: 0.26379773 + outSlope: 0.26379773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.1017481 + inSlope: -0.44384515 + outSlope: -0.44384515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.06942048 + inSlope: -0.43931347 + outSlope: -0.43931347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.056013536 + inSlope: -0.37783355 + outSlope: -0.37783355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.030219052 + inSlope: -0.49696535 + outSlope: -0.49696535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.011100609 + inSlope: -0.6003047 + outSlope: -0.6003047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.009801222 + inSlope: -0.62257063 + outSlope: -0.62257063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.13448726 + inSlope: -0.3972808 + outSlope: -0.3972808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.1469521 + inSlope: -0.38210037 + outSlope: -0.38210037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.15996078 + inSlope: -0.25690055 + outSlope: -0.25690055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.16407897 + inSlope: -0.05306331 + outSlope: -0.05306331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.16349833 + inSlope: 0.13831696 + outSlope: 0.13831696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: -0.14292257 + inSlope: 0.39972126 + outSlope: 0.39972126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: -0.06782886 + inSlope: 0.35205844 + outSlope: 0.35205844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.045335542 + inSlope: 0.099647954 + outSlope: 0.099647954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.047418356 + inSlope: -0.030002603 + outSlope: -0.030002603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.04796904 + inSlope: -0.016520523 + outSlope: -0.016520523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000011411439 + inSlope: 0.000010869772 + outSlope: 0.000010869772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000047644014 + inSlope: 0.000005434886 + outSlope: 0.000005434886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000047644014 + inSlope: -0.00000027389115 + outSlope: -0.00000027389115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.00000045818072 + inSlope: -0.0000054348866 + outSlope: -0.0000054348866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000011411439 + inSlope: 0.000013704981 + outSlope: 0.000013704981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000013718461 + inSlope: 0.000005434892 + outSlope: 0.000005434892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000047644014 + inSlope: -0.000013431084 + outSlope: -0.000013431084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.00000047644014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000047644014 + inSlope: -0.0000073675496 + outSlope: -0.0000073675496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000047644014 + inSlope: 0.000001932663 + outSlope: 0.000001932663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00000011411439 + inSlope: -0.000017179265 + outSlope: -0.000017179265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.00000066884485 + inSlope: -0.000021531094 + outSlope: -0.000021531094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0000013212925 + inSlope: 0.000017179276 + outSlope: 0.000017179276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.00000047644014 + inSlope: 0.000037211285 + outSlope: 0.000037211285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.000001159459 + inSlope: -0.000005434864 + outSlope: -0.000005434864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00000011411439 + inSlope: -0.000017612818 + outSlope: -0.000017612818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.000000014729832 + inSlope: -0.0000019326617 + outSlope: -0.0000019326617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.000000014729832 + inSlope: -0.000019598425 + outSlope: -0.000019598425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0000013212925 + inSlope: 3.45608e-11 + outSlope: 3.45608e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.000000014729832 + inSlope: 0.000037211277 + outSlope: 0.000037211277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.000001159459 + inSlope: 0.000007093634 + outSlope: 0.000007093634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000045818072 + inSlope: -0.000017612836 + outSlope: -0.000017612836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.000000014729832 + inSlope: -0.000026692078 + outSlope: -0.000026692078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0000013212925 + inSlope: 3.45608e-11 + outSlope: 3.45608e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.000000014729832 + inSlope: 0.000023397915 + outSlope: 0.000023397915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.00000023856745 + inSlope: -6.8212103e-12 + outSlope: -6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.000000014729832 + inSlope: -0.000003799463 + outSlope: -0.000003799463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.000000014729832 + inSlope: 0.000017612849 + outSlope: 0.000017612849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000001159459 + inSlope: 0.000020798647 + outSlope: 0.000020798647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0000013718461 + inSlope: -0.000010245303 + outSlope: -0.000010245303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.00000047644014 + inSlope: -0.000018865994 + outSlope: -0.000018865994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.00000011411439 + inSlope: -0.0000054348916 + outSlope: -0.0000054348916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.00000011411439 + inSlope: 0.0000068748013 + outSlope: 0.0000068748013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.00000057243403 + inSlope: -0.0000009554933 + outSlope: -0.0000009554933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.000000050414897 + inSlope: -0.0000068748013 + outSlope: -0.0000068748013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.00000011411439 + inSlope: 0.000006345759 + outSlope: 0.000006345759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0000004734664 + inSlope: 0.000014087257 + outSlope: 0.000014087257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0000010532652 + inSlope: 0.000013475708 + outSlope: 0.000013475708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0000013718461 + inSlope: -0.0000122204165 + outSlope: -0.0000122204165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.00000023856745 + inSlope: -0.000018865932 + outSlope: -0.000018865932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.00000011411439 + inSlope: 0.0000035680937 + outSlope: 0.0000035680937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.00000047644014 + inSlope: -0.0000019326644 + outSlope: -0.0000019326644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000000014729832 + inSlope: 0.0000031857749 + outSlope: 0.0000031857749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.0000006888274 + inSlope: 0.000007093627 + outSlope: 0.000007093627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.00000045818072 + inSlope: -0.0000031858124 + outSlope: -0.0000031858124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.00000047644014 + inSlope: -0.0000051609804 + outSlope: -0.0000051609804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.00000011411439 + inSlope: -0.0000035680741 + outSlope: -0.0000035680741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.00000023856745 + inSlope: -0.0000019326653 + outSlope: -0.0000019326653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.000000014729832 + inSlope: 0.000006753906 + outSlope: 0.000006753906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.0000006888274 + inSlope: 3.8198777e-11 + outSlope: 3.8198777e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.000000014729832 + inSlope: -0.000010553331 + outSlope: -0.000010553331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.000000014729832 + inSlope: 0.000001932665 + outSlope: 0.000001932665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.00000011411439 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.000000014729832 + inSlope: -6.8212103e-12 + outSlope: -6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.00000011411439 + inSlope: 0.0000019326583 + outSlope: 0.0000019326583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.00000011411439 + inSlope: -0.000001932665 + outSlope: -0.000001932665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.000000014729832 + inSlope: -0.000021531054 + outSlope: -0.000021531054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.0000013212925 + inSlope: 0.000007367724 + outSlope: 0.000007367724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.00000047644014 + inSlope: 0.000026692223 + outSlope: 0.000026692223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.00000045818072 + inSlope: 0.0000031858142 + outSlope: 0.0000031858142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.0000006888274 + inSlope: 0.0000002738916 + outSlope: 0.0000002738916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.00000047644014 + inSlope: -0.0000031858121 + outSlope: -0.0000031858121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.00000047644014 + inSlope: -0.00000027389146 + outSlope: -0.00000027389146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.00000045818072 + inSlope: 0.0000031858124 + outSlope: 0.0000031858124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.0000006888274 + inSlope: -0.0000070936653 + outSlope: -0.0000070936653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.000000014729832 + inSlope: -0.0000034597547 + outSlope: -0.0000034597547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.00000045818072 + inSlope: -5.0931703e-11 + outSlope: -5.0931703e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.000000014729832 + inSlope: -0.0000070936653 + outSlope: -0.0000070936653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.000000014729832 + inSlope: 0.000007367556 + outSlope: 0.000007367556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.00000047644014 + inSlope: 0.0000070936644 + outSlope: 0.0000070936644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.00000045818072 + inSlope: -0.0000035680935 + outSlope: -0.0000035680935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.00000023856745 + inSlope: -0.000026692125 + outSlope: -0.000026692125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.0000013212925 + inSlope: -0.000027399128 + outSlope: -0.000027399128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.0000015880412 + inSlope: 0.00003721134 + outSlope: 0.00003721134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.000001159459 + inSlope: 0.000025532361 + outSlope: 0.000025532361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.00000011411439 + inSlope: -0.0000138133855 + outSlope: -0.0000138133855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.00000023856745 + inSlope: 0.000005161 + outSlope: 0.000005161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.00000045818072 + inSlope: -0.0000037994632 + outSlope: -0.0000037994632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.000000014729832 + inSlope: 0.0000002738907 + outSlope: 0.0000002738907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.00000047644014 + inSlope: -0.000023599472 + outSlope: -0.000023599472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.0000015880412 + inSlope: 2.2191671e-10 + outSlope: 2.2191671e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.00000047644014 + inSlope: 0.00003415306 + outSlope: 0.00003415306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.0000006888274 + inSlope: -0.0000002738916 + outSlope: -0.0000002738916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.00000045818072 + inSlope: -0.000030151827 + outSlope: -0.000030151827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.0000013212925 + inSlope: 0.0000002738925 + outSlope: 0.0000002738925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.00000047644014 + inSlope: 0.00001959846 + outSlope: 0.00001959846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.000000014729832 + inSlope: -0.00000027394162 + outSlope: -0.00000027394162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.00000045818072 + inSlope: 0.000007367506 + outSlope: 0.000007367506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.00000047644014 + inSlope: 0.00000027389146 + outSlope: 0.00000027389146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.00000047644014 + inSlope: -0.0000035680937 + outSlope: -0.0000035680937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.00000023856745 + inSlope: -0.0000054348916 + outSlope: -0.0000054348916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.00000011411439 + inSlope: -0.0000018667978 + outSlope: -0.0000018667978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.00000011411439 + inSlope: 0.0000018667978 + outSlope: 0.0000018667978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.00000023856745 + inSlope: 0.000005434866 + outSlope: 0.000005434866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.00000047644014 + inSlope: -0.0000037994878 + outSlope: -0.0000037994878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.000000014729832 + inSlope: -0.0000002738907 + outSlope: -0.0000002738907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.00000045818072 + inSlope: 0.000010553369 + outSlope: 0.000010553369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.0000006888274 + inSlope: -0.0000169054 + outSlope: -0.0000169054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.00000066884485 + inSlope: -0.0000031858126 + outSlope: -0.0000031858126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.00000047644014 + inSlope: 0.000009811734 + outSlope: 0.000009811734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.00000047644014 + inSlope: 5.2750693e-11 + outSlope: 5.2750693e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.000000014729832 + inSlope: 5.2750693e-11 + outSlope: 5.2750693e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.00000047644014 + inSlope: -0.000023599694 + outSlope: -0.000023599694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.0000015880412 + inSlope: 0.0000031858108 + outSlope: 0.0000031858108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.0000006888274 + inSlope: 0.000025532358 + outSlope: 0.000025532358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.00000011411439 + inSlope: -0.000010553368 + outSlope: -0.000010553368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.000000014729832 + inSlope: -0.000021531125 + outSlope: -0.000021531125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.0000013212925 + inSlope: 0.000007093473 + outSlope: 0.000007093473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.00000045818072 + inSlope: 0.000026965823 + outSlope: 0.000026965823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.00000047644014 + inSlope: -0.0000070936644 + outSlope: -0.0000070936644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.000000014729832 + inSlope: -0.000005434891 + outSlope: -0.000005434891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.00000011411439 + inSlope: -0.00001959846 + outSlope: -0.00001959846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.0000013212925 + inSlope: -0.000025532358 + outSlope: -0.000025532358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.0000015880412 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.0000013212925 + inSlope: 0.000023599554 + outSlope: 0.000023599554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.000000014729832 + inSlope: 0.000030151688 + outSlope: 0.000030151688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.0000006888274 + inSlope: -7.548806e-11 + outSlope: -7.548806e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: -0.000000014729832 + inSlope: -0.0000031859936 + outSlope: -0.0000031859936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.00000047644014 + inSlope: 0.000010553264 + outSlope: 0.000010553264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.0000006888274 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.00000047644014 + inSlope: -0.000008620704 + outSlope: -0.000008620704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.00000011411439 + inSlope: -0.0000054348916 + outSlope: -0.0000054348916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.00000011411439 + inSlope: -0.000025532358 + outSlope: -0.000025532358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.0000015880412 + inSlope: 0.0000051610004 + outSlope: 0.0000051610004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.00000045818072 + inSlope: 0.00003096725 + outSlope: 0.00003096725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.00000047644014 + inSlope: 0.00000027389146 + outSlope: 0.00000027389146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.00000047644014 + inSlope: -0.0000035680937 + outSlope: -0.0000035680937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.00000023856745 + inSlope: -0.0000073675565 + outSlope: -0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: -0.000000014729832 + inSlope: -0.000003799463 + outSlope: -0.000003799463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: -0.000000014729832 + inSlope: 0.000010553369 + outSlope: 0.000010553369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.0000006888274 + inSlope: 0.000007367557 + outSlope: 0.000007367557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.00000047644014 + inSlope: -0.0000031858121 + outSlope: -0.0000031858121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.00000047644014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.00000047644014 + inSlope: 0.000013431102 + outSlope: 0.000013431102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.0000013718461 + inSlope: -0.000005434892 + outSlope: -0.000005434892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.00000011411439 + inSlope: -0.000013704994 + outSlope: -0.000013704994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.00000045818072 + inSlope: -0.0000019326653 + outSlope: -0.0000019326653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.00000045818072 + inSlope: -0.000023599692 + outSlope: -0.000023599692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: -0.0000015880412 + inSlope: 0.0000002738925 + outSlope: 0.0000002738925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.00000047644014 + inSlope: 0.00003415306 + outSlope: 0.00003415306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.0000006888274 + inSlope: -0.0000054348907 + outSlope: -0.0000054348907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.00000011411439 + inSlope: -0.000006753905 + outSlope: -0.000006753905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.00000023856745 + inSlope: -0.000021531125 + outSlope: -0.000021531125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.0000013212925 + inSlope: -0.0000136111985 + outSlope: -0.0000136111985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.00000066884485 + inSlope: 0.000035618028 + outSlope: 0.000035618028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.0000010532652 + inSlope: 0.000011744029 + outSlope: 0.000011744029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.00000011411439 + inSlope: -0.000008652385 + outSlope: -0.000008652385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.00000047644014 + inSlope: -0.000021531125 + outSlope: -0.000021531125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.0000013212925 + inSlope: -0.0000073675565 + outSlope: -0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.000000014729832 + inSlope: -0.000004001233 + outSlope: -0.000004001233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: -0.0000015880412 + inSlope: -0.000019598458 + outSlope: -0.000019598458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: -0.0000013212925 + inSlope: 0.000030693358 + outSlope: 0.000030693358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.00000045818072 + inSlope: 0.000019598458 + outSlope: 0.000019598458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.000000014729832 + inSlope: -0.000026692125 + outSlope: -0.000026692125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.0000013212925 + inSlope: 0.0000073675565 + outSlope: 0.0000073675565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.00000047644014 + inSlope: 0.000026692125 + outSlope: 0.000026692125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.00000045818072 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.00000047644014 + inSlope: -0.000005161 + outSlope: -0.000005161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.00000011411439 + inSlope: 0.0000031856885 + outSlope: 0.0000031856885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.0000006888274 + inSlope: -1.2278178e-10 + outSlope: -1.2278178e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.00000011411439 + inSlope: -0.0000031858112 + outSlope: -0.0000031858112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.00000047644014 + inSlope: -0.00002553236 + outSlope: -0.00002553236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: -0.0000015880412 + inSlope: 0.000008652383 + outSlope: 0.000008652383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.0000010532652 + inSlope: 0.00003096725 + outSlope: 0.00003096725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.00000047644014 + inSlope: -0.00001601994 + outSlope: -0.00001601994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: -0.000000014729832 + inSlope: -0.000005434891 + outSlope: -0.000005434891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.00000011411439 + inSlope: -0.000023599692 + outSlope: -0.000023599692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: -0.0000015880412 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.00000011411439 + inSlope: 0.00003415306 + outSlope: 0.00003415306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.0000006888274 + inSlope: -0.0000009554942 + outSlope: -0.0000009554942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.000000050414897 + inSlope: -0.0000031858126 + outSlope: -0.0000031858126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.00000047644014 + inSlope: 0.0000009554929 + outSlope: 0.0000009554929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.00000011411439 + inSlope: -0.000007367529 + outSlope: -0.000007367529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.000000014729832 + inSlope: -0.0000019326376 + outSlope: -0.0000019326376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: -0.000000014729832 + inSlope: -0.000009811734 + outSlope: -0.000009811734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.00000066884485 + inSlope: -0.000019598458 + outSlope: -0.000019598458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.0000013212925 + inSlope: -0.000009786724 + outSlope: -0.000009786724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.0000013212925 + inSlope: 0.00001959846 + outSlope: 0.00001959846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.000000014729832 + inSlope: 0.000026966016 + outSlope: 0.000026966016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.00000047644014 + inSlope: 0.0000070936644 + outSlope: 0.0000070936644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.00000045818072 + inSlope: -0.000026966014 + outSlope: -0.000026966014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.0000013212925 + inSlope: 0.0000002738925 + outSlope: 0.0000002738925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.00000047644014 + inSlope: 0.00001959846 + outSlope: 0.00001959846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.000000014729832 + inSlope: -0.00001717929 + outSlope: -0.00001717929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.00000066884485 + inSlope: 0.0000037994632 + outSlope: 0.0000037994632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.00000023856745 + inSlope: 0.0000169054 + outSlope: 0.0000169054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.00000045818072 + inSlope: 0.0000067538563 + outSlope: 0.0000067538563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.0000006888274 + inSlope: -0.000026692174 + outSlope: -0.000026692174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.0000013212925 + inSlope: -0.000006753906 + outSlope: -0.000006753906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.00000023856745 + inSlope: 0.000021531125 + outSlope: 0.000021531125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.00000011411439 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.00000023856745 + inSlope: 0.000008620704 + outSlope: 0.000008620704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.0000006888274 + inSlope: -0.000013611198 + outSlope: -0.000013611198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: -0.00000066884485 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.0000006888274 + inSlope: 0.00001717929 + outSlope: 0.00001717929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.00000047644014 + inSlope: -0.000010553368 + outSlope: -0.000010553368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: 0.00000047644014 + inSlope: -0.00001959846 + outSlope: -0.00001959846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.0000013212925 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.00000047644014 + inSlope: 0.000030151828 + outSlope: 0.000030151828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.0000006888274 + inSlope: -0.000007367557 + outSlope: -0.000007367557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.000000014729832 + inSlope: -0.000003185918 + outSlope: -0.000003185918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.00000047644014 + inSlope: 0.000020798554 + outSlope: 0.000020798554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.0000013718461 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.00000047644014 + inSlope: -0.000020798658 + outSlope: -0.000020798658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: -0.000000014729832 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.00000047644014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: -0.000000014729832 + inSlope: -0.000005434891 + outSlope: -0.000005434891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: 0.00000011411439 + inSlope: 0.000001932665 + outSlope: 0.000001932665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.00000011411439 + inSlope: -0.000001932665 + outSlope: -0.000001932665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: -0.000000014729832 + inSlope: -0.000001932665 + outSlope: -0.000001932665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: -0.000000014729832 + inSlope: 0.000001932665 + outSlope: 0.000001932665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: 0.00000011411439 + inSlope: 0.000016019942 + outSlope: 0.000016019942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: 0.0000010532652 + inSlope: 0.0000018667979 + outSlope: 0.0000018667979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.00000023856745 + inSlope: -0.000039619634 + outSlope: -0.000039619634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: -0.0000015880412 + inSlope: -0.0000018671635 + outSlope: -0.0000018671635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: 0.00000011411439 + inSlope: 0.000030966887 + outSlope: 0.000030966887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.00000047644014 + inSlope: 0.000008620704 + outSlope: 0.000008620704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.0000006888274 + inSlope: -0.000007367557 + outSlope: -0.000007367557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.000000014729832 + inSlope: -0.000008620704 + outSlope: -0.000008620704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.00000011411439 + inSlope: 0.00000386533 + outSlope: 0.00000386533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000038419813 + inSlope: 0.000021877948 + outSlope: 0.000021877948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000011134631 + inSlope: 0.000010938974 + outSlope: 0.000010938974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0000011134631 + inSlope: -0.0000139005 + outSlope: -0.0000139005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.00000018676297 + inSlope: -0.000010938972 + outSlope: -0.000010938972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000038419813 + inSlope: 0.00003500472 + outSlope: 0.00003500472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000025204106 + inSlope: 0.000010938986 + outSlope: 0.000010938986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0000011134631 + inSlope: -0.000021104204 + outSlope: -0.000021104204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0000011134631 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000011134631 + inSlope: -0.00000056028915 + outSlope: -0.00000056028915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000011134631 + inSlope: -0.000010378686 + outSlope: -0.000010378686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00000038419813 + inSlope: 0.000018462832 + outSlope: 0.000018462832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0000023443201 + inSlope: 0.000008724475 + outSlope: 0.000008724475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000009658315 + inSlope: -0.000018462857 + outSlope: -0.000018462857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0000011134631 + inSlope: 0.000002481277 + outSlope: 0.000002481277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00000113125 + inSlope: -0.000010938966 + outSlope: -0.000010938966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00000038419813 + inSlope: -0.00000082709175 + outSlope: -0.00000082709175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0000010761105 + inSlope: 0.000010378677 + outSlope: 0.000010378677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000010761105 + inSlope: -0.000001654183 + outSlope: -0.000001654183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000009658315 + inSlope: 2.9558578e-12 + outSlope: 2.9558578e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000010761105 + inSlope: 0.0000024812775 + outSlope: 0.0000024812775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00000113125 + inSlope: -0.000013340226 + outSlope: -0.000013340226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000018676297 + inSlope: -0.0000008271163 + outSlope: -0.0000008271163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000010761105 + inSlope: 0.000011686019 + outSlope: 0.000011686019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0000009658315 + inSlope: 2.9558578e-12 + outSlope: 2.9558578e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0000010761105 + inSlope: 0.000015714755 + outSlope: 0.000015714755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0000020134826 + inSlope: -2.4556357e-11 + outSlope: -2.4556357e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0000010761105 + inSlope: -0.000014060594 + outSlope: -0.000014060594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0000010761105 + inSlope: 0.000000827093 + outSlope: 0.000000827093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000113125 + inSlope: 0.000021664448 + outSlope: 0.000021664448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0000025204106 + inSlope: -0.0000002668785 + outSlope: -0.0000002668785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000011134631 + inSlope: -0.00003204322 + outSlope: -0.00003204322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.00000038419813 + inSlope: -0.000010938985 + outSlope: -0.000010938985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.00000038419813 + inSlope: 0.000034871347 + outSlope: 0.000034871347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0000027089523 + inSlope: -0.000028974962 + outSlope: -0.000028974962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0000015474644 + inSlope: -0.000034871344 + outSlope: -0.000034871344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.00000038419813 + inSlope: 0.000005362852 + outSlope: 0.000005362852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.0000011899469 + inSlope: 0.00000090722097 + outSlope: 0.00000090722097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.00000044467373 + inSlope: 0.000055655415 + outSlope: 0.000055655415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0000025204106 + inSlope: 0.000023532182 + outSlope: 0.000023532182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.0000020134826 + inSlope: -0.00003204319 + outSlope: -0.00003204319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.00000038419813 + inSlope: -0.000013500306 + outSlope: -0.000013500306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.0000011134631 + inSlope: 0.000010378695 + outSlope: 0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0000010761105 + inSlope: 0.000020116986 + outSlope: 0.000020116986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.000002454599 + inSlope: -0.000013340301 + outSlope: -0.000013340301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.00000018676297 + inSlope: -0.00002011706 + outSlope: -0.00002011706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.0000011134631 + inSlope: 0.0000029615694 + outSlope: 0.0000029615694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.00000038419813 + inSlope: 0.000013500345 + outSlope: 0.000013500345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0000020134826 + inSlope: 0.000010378696 + outSlope: 0.000010378696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.0000010761105 + inSlope: 0.000006616755 + outSlope: 0.000006616755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.000002454599 + inSlope: 7.4578566e-11 + outSlope: 7.4578566e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.0000010761105 + inSlope: -0.000020677275 + outSlope: -0.000020677275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.0000010761105 + inSlope: -0.000010378695 + outSlope: -0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.00000038419813 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.0000010761105 + inSlope: 3.7289283e-11 + outSlope: 3.7289283e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.00000038419813 + inSlope: -0.000010378658 + outSlope: -0.000010378658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.00000038419813 + inSlope: 0.000010378695 + outSlope: 0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.0000010761105 + inSlope: 0.000008724515 + outSlope: 0.000008724515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.0000009658315 + inSlope: 0.00000056030353 + outSlope: 0.00000056030353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0000011134631 + inSlope: -0.000011685932 + outSlope: -0.000011685932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.00000018676297 + inSlope: 0.00002011716 + outSlope: 0.00002011716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.000002454599 + inSlope: 0.000013900517 + outSlope: 0.000013900517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.0000011134631 + inSlope: -0.000020117059 + outSlope: -0.000020117059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.0000011134631 + inSlope: -0.000013900515 + outSlope: -0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.00000018676297 + inSlope: 0.00002011706 + outSlope: 0.00002011706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.000002454599 + inSlope: 0.000013340226 + outSlope: 0.000013340226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0000010761105 + inSlope: -0.00003401748 + outSlope: -0.00003401748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.00000018676297 + inSlope: 9.5496944e-11 + outSlope: 9.5496944e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.0000010761105 + inSlope: 0.000013340225 + outSlope: 0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.0000010761105 + inSlope: 0.0000005602896 + outSlope: 0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.0000011134631 + inSlope: -0.000013340225 + outSlope: -0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.00000018676297 + inSlope: 0.0000135003065 + outSlope: 0.0000135003065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.0000020134826 + inSlope: 0.000011686041 + outSlope: 0.000011686041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.0000009658315 + inSlope: -0.000027987702 + outSlope: -0.000027987702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.00000014763172 + inSlope: 0.000002481368 + outSlope: 0.000002481368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.00000113125 + inSlope: 0.0000035485 + outSlope: 0.0000035485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.00000038419813 + inSlope: 0.000013233502 + outSlope: 0.000013233502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.0000020134826 + inSlope: -0.0000029615312 + outSlope: -0.0000029615312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.00000018676297 + inSlope: -0.000014060596 + outSlope: -0.000014060596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0000010761105 + inSlope: 0.000013900515 + outSlope: 0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.0000011134631 + inSlope: -0.0000139270915 + outSlope: -0.0000139270915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.00000014763172 + inSlope: 1.03682396e-10 + outSlope: 1.03682396e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.0000011134631 + inSlope: 0.00003460454 + outSlope: 0.00003460454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.000002454599 + inSlope: -0.000013900517 + outSlope: -0.000013900517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.00000018676297 + inSlope: -0.000022331536 + outSlope: -0.000022331536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.0000009658315 + inSlope: 0.000013900515 + outSlope: 0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.0000011134631 + inSlope: 0.000001654186 + outSlope: 0.000001654186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.0000010761105 + inSlope: -0.00001390042 + outSlope: -0.00001390042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.00000018676297 + inSlope: 0.00000056038516 + outSlope: 0.00000056038516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.0000011134631 + inSlope: 0.000013900515 + outSlope: 0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.0000011134631 + inSlope: 0.000013500305 + outSlope: 0.000013500305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.0000020134826 + inSlope: -0.000010938986 + outSlope: -0.000010938986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.00000038419813 + inSlope: -0.00002443929 + outSlope: -0.00002443929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.00000038419813 + inSlope: 0.00002443929 + outSlope: 0.00002443929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.0000020134826 + inSlope: 0.000010939082 + outSlope: 0.000010939082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.0000011134631 + inSlope: -0.000014060498 + outSlope: -0.000014060498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.0000010761105 + inSlope: -0.000013900515 + outSlope: -0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.00000018676297 + inSlope: 0.000020677351 + outSlope: 0.000020677351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.000002454599 + inSlope: 0.00003236339 + outSlope: 0.00003236339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.0000023443201 + inSlope: -0.000020117059 + outSlope: -0.000020117059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.0000011134631 + inSlope: -0.000019023162 + outSlope: -0.000019023162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.0000011134631 + inSlope: 3.9790393e-12 + outSlope: 3.9790393e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.0000010761105 + inSlope: 3.9790393e-12 + outSlope: 3.9790393e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.0000011134631 + inSlope: -0.000013927195 + outSlope: -0.000013927195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.00000014763172 + inSlope: 0.00002011706 + outSlope: 0.00002011706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.000002454599 + inSlope: 0.000003548499 + outSlope: 0.000003548499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.00000038419813 + inSlope: -0.000020677351 + outSlope: -0.000020677351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.0000010761105 + inSlope: 0.000008724509 + outSlope: 0.000008724509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.0000009658315 + inSlope: -0.000013340142 + outSlope: -0.000013340142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.00000018676297 + inSlope: 0.0000022145596 + outSlope: 0.0000022145596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.0000011134631 + inSlope: 0.000013340225 + outSlope: 0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.0000010761105 + inSlope: -0.000010938985 + outSlope: -0.000010938985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.00000038419813 + inSlope: -0.0000016541862 + outSlope: -0.0000016541862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.0000009658315 + inSlope: -0.0000035485 + outSlope: -0.0000035485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: 0.00000014763172 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.0000009658315 + inSlope: 0.000013927183 + outSlope: 0.000013927183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.0000010761105 + inSlope: 0.000022331524 + outSlope: 0.000022331524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.000002454599 + inSlope: -1.4733814e-10 + outSlope: -1.4733814e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.0000010761105 + inSlope: -0.000020117215 + outSlope: -0.000020117215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.0000011134631 + inSlope: 0.00002067734 + outSlope: 0.00002067734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.000002454599 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1000004 + value: 0.0000011134631 + inSlope: -0.000031056043 + outSlope: -0.000031056043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.00000038419813 + inSlope: -0.000010938985 + outSlope: -0.000010938985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.00000038419813 + inSlope: -0.0000035484995 + outSlope: -0.0000035484995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.00000014763172 + inSlope: -0.0000029615303 + outSlope: -0.0000029615303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.00000018676297 + inSlope: 0.000014487485 + outSlope: 0.000014487485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.266667 + value: 0.0000011134631 + inSlope: 0.000013900515 + outSlope: 0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.0000011134631 + inSlope: 0.000013500305 + outSlope: 0.000013500305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.0000020134826 + inSlope: -0.00000056028966 + outSlope: -0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.0000010761105 + inSlope: -0.000014060594 + outSlope: -0.000014060594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.0000010761105 + inSlope: 0.00002067735 + outSlope: 0.00002067735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.000002454599 + inSlope: 0.0000005602906 + outSlope: 0.0000005602906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.0000011134631 + inSlope: -0.000020117059 + outSlope: -0.000020117059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.0000011134631 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.0000011134631 + inSlope: 0.000021104233 + outSlope: 0.000021104233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.0000025204106 + inSlope: -0.000010938986 + outSlope: -0.000010938986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.00000038419813 + inSlope: -0.00003500475 + outSlope: -0.00003500475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.00000018676297 + inSlope: 0.000010378695 + outSlope: 0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.00000018676297 + inSlope: -0.000013927195 + outSlope: -0.000013927195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.00000014763172 + inSlope: 0.000013900515 + outSlope: 0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.0000011134631 + inSlope: 0.00003460454 + outSlope: 0.00003460454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.000002454599 + inSlope: -0.0000109389875 + outSlope: -0.0000109389875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.00000038419813 + inSlope: -0.000006616756 + outSlope: -0.000006616756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.0000020134826 + inSlope: 0.00000872451 + outSlope: 0.00000872451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.0000009658315 + inSlope: 0.0000049625687 + outSlope: 0.0000049625687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.0000023443201 + inSlope: -0.000007816965 + outSlope: -0.000007816965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.00000044467373 + inSlope: -0.00002940145 + outSlope: -0.00002940145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.00000038419813 + inSlope: 0.00001003185 + outSlope: 0.00001003185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.0000011134631 + inSlope: 0.000008724509 + outSlope: 0.000008724509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: 0.0000009658315 + inSlope: -0.00000056028966 + outSlope: -0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.0000010761105 + inSlope: -0.000012273008 + outSlope: -0.000012273008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.166667 + value: 0.00000014763172 + inSlope: -0.0000016541853 + outSlope: -0.0000016541853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.0000009658315 + inSlope: 0.0000005869697 + outSlope: 0.0000005869697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2333336 + value: 0.00000018676297 + inSlope: 0.0000016541862 + outSlope: 0.0000016541862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.0000010761105 + inSlope: 0.000011686039 + outSlope: 0.000011686039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.0000009658315 + inSlope: 0.00000056028966 + outSlope: 0.00000056028966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.0000011134631 + inSlope: -0.000011686039 + outSlope: -0.000011686039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.00000018676297 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4 + value: 0.0000011134631 + inSlope: 0.0000029615303 + outSlope: 0.0000029615303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.00000038419813 + inSlope: 0.000020116619 + outSlope: 0.000020116619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.000002454599 + inSlope: -4.4383341e-10 + outSlope: -4.4383341e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.00000038419813 + inSlope: -0.000020117062 + outSlope: -0.000020117062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.0000011134631 + inSlope: -0.0000035485 + outSlope: -0.0000035485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.566667 + value: 0.00000014763172 + inSlope: -0.00001003185 + outSlope: -0.00001003185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.00000044467373 + inSlope: 0.000014487485 + outSlope: 0.000014487485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.0000011134631 + inSlope: 0.000009471561 + outSlope: 0.000009471561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.666667 + value: 0.0000010761105 + inSlope: -0.000010938985 + outSlope: -0.000010938985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.00000038419813 + inSlope: -0.000013927194 + outSlope: -0.000013927194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.00000014763172 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.00000038419813 + inSlope: 0.000034604545 + outSlope: 0.000034604545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.000002454599 + inSlope: -0.000028974966 + outSlope: -0.000028974966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.0000015474644 + inSlope: -0.000020117062 + outSlope: -0.000020117062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.0000011134631 + inSlope: 0.000028974966 + outSlope: 0.000028974966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9 + value: 0.00000038419813 + inSlope: -0.0000005604379 + outSlope: -0.0000005604379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.0000010761105 + inSlope: 0.000010378547 + outSlope: 0.000010378547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.0000010761105 + inSlope: 0.000019023162 + outSlope: 0.000019023162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: 0.0000023443201 + inSlope: -0.0000016541871 + outSlope: -0.0000016541871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.0000009658315 + inSlope: -0.00002067735 + outSlope: -0.00002067735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.0000009658315 + inSlope: 0.000001654186 + outSlope: 0.000001654186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: 0.0000010761105 + inSlope: 0.0000022144757 + outSlope: 0.0000022144757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.0000011134631 + inSlope: -0.000013340225 + outSlope: -0.000013340225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.00000018676297 + inSlope: -0.000002214476 + outSlope: -0.000002214476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.0000009658315 + inSlope: 0.000013900515 + outSlope: 0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.0000011134631 + inSlope: 0.000001654186 + outSlope: 0.000001654186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.0000010761105 + inSlope: 0.000018462873 + outSlope: 0.000018462873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.0000023443201 + inSlope: 0.0000140605935 + outSlope: 0.0000140605935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.0000020134826 + inSlope: -0.00003236339 + outSlope: -0.00003236339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.00000018676297 + inSlope: 0.0000066162665 + outSlope: 0.0000066162665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.000002454599 + inSlope: 0.0000116855535 + outSlope: 0.0000116855535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.0000009658315 + inSlope: -0.000006616754 + outSlope: -0.000006616754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.0000020134826 + inSlope: -0.00000872451 + outSlope: -0.00000872451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.00000038419813 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.0000020134826 + inSlope: 0.000031056043 + outSlope: 0.000031056043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.000002454599 + inSlope: 0.000004962568 + outSlope: 0.000004962568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.0000023443201 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: 0.000002454599 + inSlope: -0.000018462873 + outSlope: -0.000018462873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.0000011134631 + inSlope: -0.000020677347 + outSlope: -0.000020677347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7333336 + value: 0.0000011134631 + inSlope: -0.000001654186 + outSlope: -0.000001654186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.0000009658315 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.0000011134631 + inSlope: 0.000022331535 + outSlope: 0.000022331535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.000002454599 + inSlope: -0.0000005602906 + outSlope: -0.0000005602906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.0000010761105 + inSlope: -0.000020117068 + outSlope: -0.000020117068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.0000011134631 + inSlope: 0.000021664515 + outSlope: 0.000021664515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.0000025204106 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.0000011134631 + inSlope: -0.000021664522 + outSlope: -0.000021664522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0000005 + value: 0.0000010761105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.0000011134631 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.0000010761105 + inSlope: -0.000010938985 + outSlope: -0.000010938985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: 0.00000038419813 + inSlope: -0.000010378695 + outSlope: -0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.00000038419813 + inSlope: 0.000010378695 + outSlope: 0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.0000010761105 + inSlope: 0.000010378695 + outSlope: 0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.0000010761105 + inSlope: -0.000010378695 + outSlope: -0.000010378695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: 0.00000038419813 + inSlope: -0.000009471561 + outSlope: -0.000009471561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: 0.00000044467373 + inSlope: 0.00002443929 + outSlope: 0.00002443929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.0000020134826 + inSlope: -0.0000044556346 + outSlope: -0.0000044556346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3333335 + value: 0.00000014763172 + inSlope: -0.000024439341 + outSlope: -0.000024439341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: 0.00000038419813 + inSlope: 0.000014487434 + outSlope: 0.000014487434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4000006 + value: 0.0000011134631 + inSlope: 0.000031056043 + outSlope: 0.000031056043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.000002454599 + inSlope: -0.0000005602906 + outSlope: -0.0000005602906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: 0.0000010761105 + inSlope: -0.000031056043 + outSlope: -0.000031056043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.00000038419813 + inSlope: -0.00002075739 + outSlope: -0.00002075739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.72616684 + inSlope: 0.05246758 + outSlope: 0.05246758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.6316323 + inSlope: 0.07253492 + outSlope: 0.07253492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.65732086 + inSlope: -0.24504998 + outSlope: -0.24504998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.6848217 + inSlope: 0.09200612 + outSlope: 0.09200612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.64229935 + inSlope: 0.008731496 + outSlope: 0.008731496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.6466623 + inSlope: 0.021801885 + outSlope: 0.021801885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.6304859 + inSlope: 0.039365925 + outSlope: 0.039365925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.6437346 + inSlope: 0.02282732 + outSlope: 0.02282732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.63418615 + inSlope: 0.011916946 + outSlope: 0.011916946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: -0.65937704 + inSlope: -0.04421279 + outSlope: -0.04421279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: -0.64418817 + inSlope: 0.06475127 + outSlope: 0.06475127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.5989019 + inSlope: 0.006178027 + outSlope: 0.006178027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: -0.6313724 + inSlope: -0.06211108 + outSlope: -0.06211108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.6343937 + inSlope: -0.09623596 + outSlope: -0.09623596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.6857163 + inSlope: 0.002360346 + outSlope: 0.002360346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.6803694 + inSlope: 0.04896868 + outSlope: 0.04896868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.72438234 + inSlope: -0.05640065 + outSlope: -0.05640065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.7261674 + inSlope: -0.011191974 + outSlope: -0.011191974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3059776 + inSlope: 0.0012499093 + outSlope: 0.0012499093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.2631382 + inSlope: -0.19475217 + outSlope: -0.19475217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.21675928 + inSlope: -0.29904842 + outSlope: -0.29904842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.16308829 + inSlope: -0.09628709 + outSlope: -0.09628709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.15865271 + inSlope: 0.015721336 + outSlope: 0.015721336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.21196488 + inSlope: 0.0010228166 + outSlope: 0.0010228166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.19582553 + inSlope: -0.044209108 + outSlope: -0.044209108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.17575347 + inSlope: -0.06581789 + outSlope: -0.06581789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.17853722 + inSlope: 0.09630957 + outSlope: 0.09630957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.21328133 + inSlope: 0.08165993 + outSlope: 0.08165993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.22888014 + inSlope: 0.0014819218 + outSlope: 0.0014819218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.26329046 + inSlope: 0.2546572 + outSlope: 0.2546572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.35575554 + inSlope: -0.0121691935 + outSlope: -0.0121691935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.32849425 + inSlope: -0.20475824 + outSlope: -0.20475824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.26172763 + inSlope: 0.02370181 + outSlope: 0.02370181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.2000003 + value: 0.28310078 + inSlope: 0.074524805 + outSlope: 0.074524805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.2895235 + inSlope: -0.13426703 + outSlope: -0.13426703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.24545342 + inSlope: -0.083893105 + outSlope: -0.083893105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.22827587 + inSlope: -0.07906869 + outSlope: -0.07906869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.22853686 + inSlope: 0.08972584 + outSlope: 0.08972584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6000004 + value: 0.24697156 + inSlope: 0.11869658 + outSlope: 0.11869658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.27015445 + inSlope: 0.027347669 + outSlope: 0.027347669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.30016863 + inSlope: 0.051909734 + outSlope: 0.051909734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.30597717 + inSlope: 0.0068262285 + outSlope: 0.0068262285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14358722 + inSlope: -0.060027387 + outSlope: -0.060027387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.11508336 + inSlope: -0.31714946 + outSlope: -0.31714946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.04794998 + inSlope: -0.4454491 + outSlope: -0.4454491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.03325981 + inSlope: -0.45476127 + outSlope: -0.45476127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.01763255 + inSlope: -0.45888793 + outSlope: -0.45888793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0026672676 + inSlope: -0.44048828 + outSlope: -0.44048828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.025242863 + inSlope: -0.38955766 + outSlope: -0.38955766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.037703842 + inSlope: -0.3581177 + outSlope: -0.3581177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.056512106 + inSlope: -0.13934022 + outSlope: -0.13934022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.05840674 + inSlope: 0.09277837 + outSlope: 0.09277837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.05032689 + inSlope: 0.27365723 + outSlope: 0.27365723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.040162925 + inSlope: 0.3226543 + outSlope: 0.3226543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.028816607 + inSlope: 0.37230828 + outSlope: 0.37230828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.015342372 + inSlope: 0.4232994 + outSlope: 0.4232994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0005966226 + inSlope: 0.434372 + outSlope: 0.434372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.013615761 + inSlope: 0.40862125 + outSlope: 0.40862125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.02664479 + inSlope: 0.36961606 + outSlope: 0.36961606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.03825683 + inSlope: 0.28768304 + outSlope: 0.28768304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.045823656 + inSlope: 0.1988954 + outSlope: 0.1988954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.051516525 + inSlope: 0.1413896 + outSlope: 0.1413896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.059096474 + inSlope: 0.12688532 + outSlope: 0.12688532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.07165938 + inSlope: 0.10816692 + outSlope: 0.10816692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.09104295 + inSlope: 0.06740798 + outSlope: 0.06740798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.098430365 + inSlope: -0.0012615402 + outSlope: -0.0012615402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.09621636 + inSlope: 0.013108836 + outSlope: 0.013108836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.09405373 + inSlope: -0.06778746 + outSlope: -0.06778746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.08530885 + inSlope: -0.12026109 + outSlope: -0.12026109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.07299843 + inSlope: -0.25973678 + outSlope: -0.25973678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.008632701 + inSlope: -0.26691654 + outSlope: -0.26691654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0005826553 + inSlope: -0.21289305 + outSlope: -0.21289305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.005560155 + inSlope: -0.15113391 + outSlope: -0.15113391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.009492929 + inSlope: -0.082827896 + outSlope: -0.082827896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.011082021 + inSlope: -0.040826317 + outSlope: -0.040826317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.012214692 + inSlope: -0.0071254903 + outSlope: -0.0071254903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.011557053 + inSlope: 0.017108947 + outSlope: 0.017108947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.011074097 + inSlope: -0.00024736393 + outSlope: -0.00024736393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.011573544 + inSlope: -0.008071459 + outSlope: -0.008071459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.011612194 + inSlope: -0.008950136 + outSlope: -0.008950136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.01696803 + inSlope: -0.066939004 + outSlope: -0.066939004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.021618146 + inSlope: -0.06303818 + outSlope: -0.06303818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.025477061 + inSlope: -0.05268274 + outSlope: -0.05268274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.027639136 + inSlope: -0.0043343976 + outSlope: -0.0043343976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.024305815 + inSlope: 0.060869105 + outSlope: 0.060869105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.022164138 + inSlope: 0.058087535 + outSlope: 0.058087535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.017038783 + inSlope: 0.06134856 + outSlope: 0.06134856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: -0.0124980705 + inSlope: 0.06487679 + outSlope: 0.06487679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.0085491575 + inSlope: 0.05105097 + outSlope: 0.05105097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.0070354203 + inSlope: 0.046081938 + outSlope: 0.046081938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.005477031 + inSlope: 0.04402772 + outSlope: 0.04402772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.004100232 + inSlope: 0.03929078 + outSlope: 0.03929078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.0028576385 + inSlope: 0.03186218 + outSlope: 0.03186218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.0019760886 + inSlope: 0.019674497 + outSlope: 0.019674497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.0015460066 + inSlope: 0.00776392 + outSlope: 0.00776392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: -0.0014584945 + inSlope: -0.0032178364 + outSlope: -0.0032178364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.0017605289 + inSlope: -0.012802402 + outSlope: -0.012802402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.002311987 + inSlope: -0.022589613 + outSlope: -0.022589613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.0045747934 + inSlope: -0.04551874 + outSlope: -0.04551874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.011892564 + inSlope: -0.11328611 + outSlope: -0.11328611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.016228313 + inSlope: -0.14366089 + outSlope: -0.14366089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.021469947 + inSlope: -0.18813786 + outSlope: -0.18813786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: -0.09087792 + inSlope: -0.14797515 + outSlope: -0.14797515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: -0.096469715 + inSlope: 0.026851509 + outSlope: 0.026851509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: -0.08908396 + inSlope: 0.024929082 + outSlope: 0.024929082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.082564466 + inSlope: 0.08211903 + outSlope: 0.08211903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.071006164 + inSlope: -0.021021834 + outSlope: -0.021021834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1000004 + value: -0.09225263 + inSlope: -0.07362962 + outSlope: -0.07362962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: -0.10145977 + inSlope: -0.054277457 + outSlope: -0.054277457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: -0.11318143 + inSlope: -0.16381696 + outSlope: -0.16381696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: -0.15008391 + inSlope: -0.056178026 + outSlope: -0.056178026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.12907906 + inSlope: 0.22871627 + outSlope: 0.22871627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: -0.10164096 + inSlope: 0.32556057 + outSlope: 0.32556057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.03863496 + inSlope: 0.24804851 + outSlope: 0.24804851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.024434347 + inSlope: 0.1604609 + outSlope: 0.1604609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.020139877 + inSlope: 0.11729239 + outSlope: 0.11729239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: -0.0116553465 + inSlope: 0.05433145 + outSlope: 0.05433145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.0075172554 + inSlope: 0.020315168 + outSlope: 0.020315168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.0065820334 + inSlope: -0.0012922115 + outSlope: -0.0012922115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.0069339396 + inSlope: -0.010108991 + outSlope: -0.010108991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.0071392795 + inSlope: 0.016241461 + outSlope: 0.016241461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.0063265143 + inSlope: 0.034167632 + outSlope: 0.034167632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.0048614396 + inSlope: 0.051144186 + outSlope: 0.051144186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.002916905 + inSlope: 0.046483215 + outSlope: 0.046483215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.0017625451 + inSlope: 0.0767277 + outSlope: 0.0767277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.0021982868 + inSlope: 0.17160161 + outSlope: 0.17160161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.009677552 + inSlope: 0.24796355 + outSlope: 0.24796355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.03965974 + inSlope: 0.32654178 + outSlope: 0.32654178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.06214404 + inSlope: 0.32915658 + outSlope: 0.32915658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.0838894 + inSlope: 0.32986242 + outSlope: 0.32986242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: 0.1301872 + inSlope: 0.1753329 + outSlope: 0.1753329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.14358743 + inSlope: 0.04164223 + outSlope: 0.04164223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6652106 + inSlope: -0.02789676 + outSlope: -0.02789676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.52982384 + inSlope: -0.23001105 + outSlope: -0.23001105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.5139859 + inSlope: 0.016260464 + outSlope: 0.016260464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.5360001 + inSlope: 0.14972083 + outSlope: 0.14972083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.62005186 + inSlope: 0.12861452 + outSlope: 0.12861452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.62695384 + inSlope: -0.066196874 + outSlope: -0.066196874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.5987043 + inSlope: 0.013536227 + outSlope: 0.013536227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.6344708 + inSlope: 0.026772048 + outSlope: 0.026772048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.6093264 + inSlope: -0.09413937 + outSlope: -0.09413937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.5620859 + inSlope: -0.13214183 + outSlope: -0.13214183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.5266879 + inSlope: -0.1687433 + outSlope: -0.1687433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.5011095 + inSlope: 0.06089425 + outSlope: 0.06089425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.51150995 + inSlope: -0.0789956 + outSlope: -0.0789956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: 0.47667366 + inSlope: 0.15162855 + outSlope: 0.15162855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.5317182 + inSlope: 0.10385821 + outSlope: 0.10385821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.7000003 + value: 0.5451518 + inSlope: 0.0583533 + outSlope: 0.0583533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.066667 + value: 0.576991 + inSlope: 0.22650293 + outSlope: 0.22650293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.66521066 + inSlope: 0.028951792 + outSlope: 0.028951792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05094128 + inSlope: -0.12793767 + outSlope: -0.12793767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.05520587 + inSlope: -0.08570121 + outSlope: -0.08570121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.056654695 + inSlope: -0.048228793 + outSlope: -0.048228793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.06012033 + inSlope: 0.043223392 + outSlope: 0.043223392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.04464323 + inSlope: 0.2690039 + outSlope: 0.2690039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0224016 + inSlope: 0.36776772 + outSlope: 0.36776772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.009931868 + inSlope: 0.389354 + outSlope: 0.389354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0035553456 + inSlope: 0.3951632 + outSlope: 0.3951632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.027883843 + inSlope: 0.31446815 + outSlope: 0.31446815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.044480372 + inSlope: 0.1776697 + outSlope: 0.1776697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.04922155 + inSlope: 0.07352628 + outSlope: 0.07352628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.049382128 + inSlope: -0.025099864 + outSlope: -0.025099864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.047548223 + inSlope: -0.09003778 + outSlope: -0.09003778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.043379612 + inSlope: -0.099643484 + outSlope: -0.099643484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.03830632 + inSlope: -0.01917817 + outSlope: -0.01917817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.038583357 + inSlope: 0.014199 + outSlope: 0.014199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.039011102 + inSlope: 0.0238764 + outSlope: 0.0238764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.040175118 + inSlope: 0.020623885 + outSlope: 0.020623885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.04014228 + inSlope: -0.00956358 + outSlope: -0.00956358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.034806266 + inSlope: -0.0366228 + outSlope: -0.0366228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.03331214 + inSlope: 0.013209837 + outSlope: 0.013209837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.034569602 + inSlope: 0.04585935 + outSlope: 0.04585935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.03952988 + inSlope: 0.10984472 + outSlope: 0.10984472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.054475125 + inSlope: 0.17574373 + outSlope: 0.17574373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.07781278 + inSlope: 0.026922457 + outSlope: 0.026922457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.06569016 + inSlope: -0.06845977 + outSlope: -0.06845977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.06648765 + inSlope: 0.086057976 + outSlope: 0.086057976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.076097496 + inSlope: 0.07439351 + outSlope: 0.07439351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.081277765 + inSlope: -0.0065852767 + outSlope: -0.0065852767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.08474777 + inSlope: 0.09003994 + outSlope: 0.09003994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.09339017 + inSlope: 0.043847255 + outSlope: 0.043847255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.0914469 + inSlope: -0.09647256 + outSlope: -0.09647256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.06415983 + inSlope: -0.096517086 + outSlope: -0.096517086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.05658694 + inSlope: -0.023797978 + outSlope: -0.023797978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.046709664 + inSlope: -0.12811142 + outSlope: -0.12811142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: 0.021373224 + inSlope: -0.059358038 + outSlope: -0.059358038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: 0.019818172 + inSlope: -0.006002957 + outSlope: -0.006002957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.020191371 + inSlope: 0.025378007 + outSlope: 0.025378007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.02299322 + inSlope: 0.057734214 + outSlope: 0.057734214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: 0.032121327 + inSlope: 0.12657186 + outSlope: 0.12657186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: 0.03675436 + inSlope: 0.12746881 + outSlope: 0.12746881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.04061924 + inSlope: 0.12219032 + outSlope: 0.12219032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.051230773 + inSlope: 0.05515143 + outSlope: 0.05515143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.05083069 + inSlope: -0.010243199 + outSlope: -0.010243199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.051116996 + inSlope: -0.021897072 + outSlope: -0.021897072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.0500851 + inSlope: -0.020654986 + outSlope: -0.020654986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4666667 + value: 0.049739998 + inSlope: -0.023185428 + outSlope: -0.023185428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.533334 + value: 0.047880124 + inSlope: -0.0154335275 + outSlope: -0.0154335275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.044278596 + inSlope: -0.05162637 + outSlope: -0.05162637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.038724687 + inSlope: 0.022865461 + outSlope: 0.022865461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.033334 + value: 0.04710554 + inSlope: 0.032274716 + outSlope: 0.032274716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.045353495 + inSlope: -0.017068028 + outSlope: -0.017068028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.04345586 + inSlope: -0.00037545373 + outSlope: -0.00037545373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6333337 + value: 0.045829862 + inSlope: 0.04412674 + outSlope: 0.04412674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.050799146 + inSlope: -0.077137165 + outSlope: -0.077137165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.02801527 + inSlope: -0.22111481 + outSlope: -0.22111481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.007997474 + inSlope: -0.14520024 + outSlope: -0.14520024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: 0.0015572242 + inSlope: -0.04987786 + outSlope: -0.04987786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.166667 + value: 0.0006543324 + inSlope: -0.008140693 + outSlope: -0.008140693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.0010145118 + inSlope: 0.021218274 + outSlope: 0.021218274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.0020688826 + inSlope: 0.036954388 + outSlope: 0.036954388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.0034781352 + inSlope: 0.04065939 + outSlope: 0.04065939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.004779506 + inSlope: 0.044441298 + outSlope: 0.044441298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.0064408854 + inSlope: 0.032985017 + outSlope: 0.032985017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.006978505 + inSlope: 0.01240305 + outSlope: 0.01240305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.433334 + value: 0.007616457 + inSlope: 0.012544166 + outSlope: 0.012544166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.466667 + value: 0.008104036 + inSlope: 0.017674189 + outSlope: 0.017674189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.533334 + value: 0.010407489 + inSlope: 0.068981074 + outSlope: 0.068981074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.028697828 + inSlope: 0.17932492 + outSlope: 0.17932492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.05661704 + inSlope: 0.04549053 + outSlope: 0.04549053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.057843044 + inSlope: -0.008628171 + outSlope: -0.008628171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: 0.056841195 + inSlope: -0.0833338 + outSlope: -0.0833338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: 0.021582425 + inSlope: -0.40100116 + outSlope: -0.40100116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1333337 + value: 0.007453716 + inSlope: -0.4204896 + outSlope: -0.4204896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: -0.0064501893 + inSlope: -0.42215306 + outSlope: -0.42215306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: -0.020689795 + inSlope: -0.4058118 + outSlope: -0.4058118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.051729742 + inSlope: -0.18749988 + outSlope: -0.18749988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3666673 + value: -0.058415044 + inSlope: -0.014949011 + outSlope: -0.014949011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.056329153 + inSlope: 0.035634633 + outSlope: 0.035634633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.054775625 + inSlope: 0.01080853 + outSlope: 0.01080853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.113059655 + inSlope: 1.0039244 + outSlope: 1.0039244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.079595506 + inSlope: 0.5128838 + outSlope: 0.5128838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0788674 + inSlope: 0.027553882 + outSlope: 0.027553882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.06154543 + inSlope: 0.14564145 + outSlope: 0.14564145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.03863781 + inSlope: 0.17316014 + outSlope: 0.17316014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.02476046 + inSlope: 0.091723904 + outSlope: 0.091723904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.022277152 + inSlope: 0.036415596 + outSlope: 0.036415596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.025349746 + inSlope: -0.14833143 + outSlope: -0.14833143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.03222151 + inSlope: -0.2085248 + outSlope: -0.2085248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.047067557 + inSlope: -0.2412327 + outSlope: -0.2412327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.08026813 + inSlope: -0.071992874 + outSlope: -0.071992874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.07978808 + inSlope: 0.05653061 + outSlope: 0.05653061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.07301483 + inSlope: 0.1538569 + outSlope: 0.1538569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.055915635 + inSlope: 0.12198855 + outSlope: 0.12198855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.052768417 + inSlope: 0.120718464 + outSlope: 0.120718464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.043560516 + inSlope: 0.0782496 + outSlope: 0.0782496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.042651094 + inSlope: 0.038558412 + outSlope: 0.038558412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.040989958 + inSlope: 0.042908 + outSlope: 0.042908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.03505279 + inSlope: 0.035045546 + outSlope: 0.035045546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.029235868 + inSlope: 0.01709617 + outSlope: 0.01709617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.028943362 + inSlope: -0.004269047 + outSlope: -0.004269047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.029852413 + inSlope: -0.028319206 + outSlope: -0.028319206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.034088396 + inSlope: -0.0076761106 + outSlope: -0.0076761106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.03378887 + inSlope: 0.0050436035 + outSlope: 0.0050436035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.03270365 + inSlope: 0.031603213 + outSlope: 0.031603213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.028283158 + inSlope: 0.045715783 + outSlope: 0.045715783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.026412463 + inSlope: 0.004075625 + outSlope: 0.004075625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.026616842 + inSlope: -0.0014198121 + outSlope: -0.0014198121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.026507117 + inSlope: -0.0034821257 + outSlope: -0.0034821257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.027427528 + inSlope: 0.009557027 + outSlope: 0.009557027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.026421066 + inSlope: 0.01031383 + outSlope: 0.01031383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.025771838 + inSlope: 0.016267922 + outSlope: 0.016267922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.025129955 + inSlope: 0.00913444 + outSlope: 0.00913444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.026349872 + inSlope: -0.0011318933 + outSlope: -0.0011318933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.026333347 + inSlope: 0.014064791 + outSlope: 0.014064791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.016902374 + inSlope: 0.0833849 + outSlope: 0.0833849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.0073152515 + inSlope: 0.04288271 + outSlope: 0.04288271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.005526634 + inSlope: 0.02056409 + outSlope: 0.02056409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.0048750304 + inSlope: 0.016948588 + outSlope: 0.016948588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.004396729 + inSlope: 0.014767028 + outSlope: 0.014767028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: -0.0038905628 + inSlope: 0.006983215 + outSlope: 0.006983215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.003931182 + inSlope: -0.0019006892 + outSlope: -0.0019006892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.0040172753 + inSlope: -0.0036188764 + outSlope: -0.0036188764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.00417244 + inSlope: -0.010774534 + outSlope: -0.010774534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.004735577 + inSlope: -0.010440061 + outSlope: -0.010440061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.0048684445 + inSlope: -0.006024219 + outSlope: -0.006024219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.005137192 + inSlope: -0.009589192 + outSlope: -0.009589192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5333335 + value: -0.0055077234 + inSlope: -0.0021951734 + outSlope: -0.0021951734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6000001 + value: -0.004715207 + inSlope: 0.020986 + outSlope: 0.020986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.002924385 + inSlope: 0.027460089 + outSlope: 0.027460089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.0020537945 + inSlope: 0.021175344 + outSlope: 0.021175344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.0014354197 + inSlope: -0.0059074 + outSlope: -0.0059074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0019065168 + inSlope: -0.014649561 + outSlope: -0.014649561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.002412056 + inSlope: -0.0159112 + outSlope: -0.0159112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.0029672624 + inSlope: -0.01324695 + outSlope: -0.01324695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.0032951853 + inSlope: 0.010671532 + outSlope: 0.010671532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: -0.0022558202 + inSlope: 0.053420275 + outSlope: 0.053420275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.966667 + value: 0.00026617033 + inSlope: 0.10279758 + outSlope: 0.10279758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.004597314 + inSlope: 0.1528431 + outSlope: 0.1528431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.033334 + value: 0.010455754 + inSlope: 0.19730964 + outSlope: 0.19730964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.048347473 + inSlope: 0.17385173 + outSlope: 0.17385173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.059663557 + inSlope: 0.03570208 + outSlope: 0.03570208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.366667 + value: 0.060447145 + inSlope: 0.045557477 + outSlope: 0.045557477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4333334 + value: 0.06510042 + inSlope: 0.043261725 + outSlope: 0.043261725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.06717399 + inSlope: 0.08138519 + outSlope: 0.08138519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.08024033 + inSlope: 0.14932576 + outSlope: 0.14932576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.100903265 + inSlope: 0.0025960454 + outSlope: 0.0025960454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.0714384 + inSlope: -0.11250514 + outSlope: -0.11250514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.053653724 + inSlope: -0.09915069 + outSlope: -0.09915069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.366667 + value: 0.048475396 + inSlope: -0.056873 + outSlope: -0.056873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.4333334 + value: 0.044342514 + inSlope: -0.076515764 + outSlope: -0.076515764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.03951241 + inSlope: -0.057358086 + outSlope: -0.057358086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.533334 + value: 0.03783458 + inSlope: -0.06676522 + outSlope: -0.06676522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.6000004 + value: 0.032366157 + inSlope: -0.07816736 + outSlope: -0.07816736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.022479305 + inSlope: -0.15604028 + outSlope: -0.15604028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7333336 + value: 0.016467432 + inSlope: -0.14290932 + outSlope: -0.14290932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.012952027 + inSlope: -0.17725754 + outSlope: -0.17725754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.004650273 + inSlope: -0.24392828 + outSlope: -0.24392828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.0033098431 + inSlope: -0.25283575 + outSlope: -0.25283575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.012205427 + inSlope: -0.26837945 + outSlope: -0.26837945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0000005 + value: -0.042748943 + inSlope: -0.13758862 + outSlope: -0.13758862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1000004 + value: -0.04673222 + inSlope: 0.06516064 + outSlope: 0.06516064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1333337 + value: -0.043355975 + inSlope: 0.08370042 + outSlope: 0.08370042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: -0.038534906 + inSlope: 0.09170738 + outSlope: 0.09170738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.032497473 + inSlope: 0.05446756 + outSlope: 0.05446756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.03140721 + inSlope: 0.025046911 + outSlope: 0.025046911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.03082768 + inSlope: -0.00073637906 + outSlope: -0.00073637906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: -0.032069672 + inSlope: -0.01666607 + outSlope: -0.01666607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: -0.03314206 + inSlope: 0.0035920963 + outSlope: 0.0035920963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6333337 + value: -0.026295677 + inSlope: 0.09185041 + outSlope: 0.09185041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.013725642 + inSlope: 0.07336989 + outSlope: 0.07336989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.011550816 + inSlope: 0.057498835 + outSlope: 0.057498835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.00989239 + inSlope: 0.028316401 + outSlope: 0.028316401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.0096630575 + inSlope: -0.009311603 + outSlope: -0.009311603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: -0.010513175 + inSlope: -0.013951243 + outSlope: -0.013951243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.010593152 + inSlope: -0.015874026 + outSlope: -0.015874026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.966667 + value: -0.011571443 + inSlope: -0.05759109 + outSlope: -0.05759109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1000004 + value: -0.03140569 + inSlope: -0.21083708 + outSlope: -0.21083708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.266667 + value: -0.06437841 + inSlope: -0.14498058 + outSlope: -0.14498058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.07985878 + inSlope: -0.0113674365 + outSlope: -0.0113674365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.25099587 + inSlope: -1.390938 + outSlope: -1.390938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.29736048 + inSlope: -0.4253889 + outSlope: -0.4253889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.27935514 + inSlope: 0.69156325 + outSlope: 0.69156325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.03280897 + inSlope: 1.3170114 + outSlope: 1.3170114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.009119926 + inSlope: 1.1690459 + outSlope: 1.1690459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.07381913 + inSlope: 0.74217814 + outSlope: 0.74217814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.11385631 + inSlope: -0.060267393 + outSlope: -0.060267393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.09286828 + inSlope: -0.25684234 + outSlope: -0.25684234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.07726084 + inSlope: -0.26722947 + outSlope: -0.26722947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.029699136 + inSlope: -0.40041003 + outSlope: -0.40041003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0029551794 + inSlope: -0.39380163 + outSlope: -0.39380163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.010025666 + inSlope: -0.35430598 + outSlope: -0.35430598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.020665215 + inSlope: -0.273126 + outSlope: -0.273126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.038870513 + inSlope: -0.1537855 + outSlope: -0.1537855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.04771333 + inSlope: -0.072539456 + outSlope: -0.072539456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.038655117 + inSlope: 0.16741002 + outSlope: 0.16741002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.009466754 + inSlope: 0.23138484 + outSlope: 0.23138484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.0018611712 + inSlope: 0.22846043 + outSlope: 0.22846043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.0057639265 + inSlope: 0.22643933 + outSlope: 0.22643933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.01323477 + inSlope: 0.2133027 + outSlope: 0.2133027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.026540032 + inSlope: 0.19930634 + outSlope: 0.19930634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.03988952 + inSlope: 0.1863977 + outSlope: 0.1863977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.051491495 + inSlope: 0.17300545 + outSlope: 0.17300545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.06958971 + inSlope: 0.08314197 + outSlope: 0.08314197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.0734445 + inSlope: -0.01618083 + outSlope: -0.01618083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.07192341 + inSlope: -0.008787158 + outSlope: -0.008787158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.06986028 + inSlope: -0.043827448 + outSlope: -0.043827448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.05160967 + inSlope: -0.26345208 + outSlope: -0.26345208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.041667785 + inSlope: -0.31090534 + outSlope: -0.31090534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.030882666 + inSlope: -0.35541898 + outSlope: -0.35541898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.017973209 + inSlope: -0.41619566 + outSlope: -0.41619566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0031363147 + inSlope: -0.4591549 + outSlope: -0.4591549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.012637087 + inSlope: -0.4785086 + outSlope: -0.4785086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.09962117 + inSlope: -0.101517126 + outSlope: -0.101517126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.09141229 + inSlope: 0.18474145 + outSlope: 0.18474145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.065695815 + inSlope: 0.1435851 + outSlope: 0.1435851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.058626935 + inSlope: -0.045974895 + outSlope: -0.045974895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.06759874 + inSlope: -0.0996048 + outSlope: -0.0996048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.081201 + inSlope: -0.18951088 + outSlope: -0.18951088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.10222677 + inSlope: -0.045863695 + outSlope: -0.045863695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: -0.10035457 + inSlope: 0.090342194 + outSlope: 0.090342194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.064425096 + inSlope: 0.25428802 + outSlope: 0.25428802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8333335 + value: -0.015387115 + inSlope: 0.29971695 + outSlope: 0.29971695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8666668 + value: -0.0047736415 + inSlope: 0.32900327 + outSlope: 0.32900327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.0065464163 + inSlope: 0.34434116 + outSlope: 0.34434116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9333336 + value: 0.018182497 + inSlope: 0.3324025 + outSlope: 0.3324025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4 + value: 0.038173012 + inSlope: 0.2821094 + outSlope: 0.2821094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.055983182 + inSlope: 0.25644732 + outSlope: 0.25644732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.08488223 + inSlope: 0.35986125 + outSlope: 0.35986125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.110253975 + inSlope: 0.33053967 + outSlope: 0.33053967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3333335 + value: 0.13603838 + inSlope: 0.24438033 + outSlope: 0.24438033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.4 + value: 0.1485789 + inSlope: 0.049780056 + outSlope: 0.049780056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.5 + value: 0.1274829 + inSlope: -0.45378646 + outSlope: -0.45378646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6333337 + value: 0.053435624 + inSlope: -0.4666476 + outSlope: -0.4666476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7000003 + value: 0.03152808 + inSlope: -0.15295188 + outSlope: -0.15295188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7333336 + value: 0.029556282 + inSlope: -0.019876752 + outSlope: -0.019876752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.766667 + value: 0.030202966 + inSlope: 0.09016746 + outSlope: 0.09016746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.03556744 + inSlope: 0.17776296 + outSlope: 0.17776296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9 + value: 0.056109797 + inSlope: 0.19039886 + outSlope: 0.19039886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.066667 + value: 0.08555061 + inSlope: 0.20171058 + outSlope: 0.20171058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.266667 + value: 0.12152039 + inSlope: 0.09085198 + outSlope: 0.09085198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.466667 + value: 0.12630986 + inSlope: 0.0076726396 + outSlope: 0.0076726396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7000003 + value: 0.11407855 + inSlope: -0.22677127 + outSlope: -0.22677127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.07183854 + inSlope: -0.34966362 + outSlope: -0.34966362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.060315177 + inSlope: -0.30869427 + outSlope: -0.30869427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.043337148 + inSlope: -0.22663641 + outSlope: -0.22663641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.966667 + value: 0.03614975 + inSlope: -0.18432924 + outSlope: -0.18432924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.033334 + value: 0.027358938 + inSlope: -0.0847642 + outSlope: -0.0847642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2000003 + value: 0.035922177 + inSlope: 0.18752769 + outSlope: 0.18752769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4000006 + value: 0.089567006 + inSlope: 0.25673836 + outSlope: 0.25673836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5000005 + value: 0.10698918 + inSlope: 0.12067181 + outSlope: 0.12067181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.12685315 + inSlope: 0.07240451 + outSlope: 0.07240451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9000006 + value: 0.13089414 + inSlope: -0.020335408 + outSlope: -0.020335408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.033334 + value: 0.12801501 + inSlope: -0.11265825 + outSlope: -0.11265825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.166667 + value: 0.068905756 + inSlope: -0.88821185 + outSlope: -0.88821185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2000003 + value: 0.035181962 + inSlope: -1.1241453 + outSlope: -1.1241453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2333336 + value: -0.0060371924 + inSlope: -1.3235979 + outSlope: -1.3235979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.27528486 + inSlope: -0.80065805 + outSlope: -0.80065805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.466667 + value: -0.2962555 + inSlope: -0.42689943 + outSlope: -0.42689943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.3037448 + inSlope: -0.22467902 + outSlope: -0.22467902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3385053 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -1.3385053 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23385438 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.23385438 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5763953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.5763953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.809624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.809624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3384516 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -1.3384516 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45863363 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.45863363 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5297126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.5297126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9042923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.9042923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12709586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.12709586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865395 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.80865395 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 7.5000005 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Look_Around.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Look_Around.anim.meta new file mode 100644 index 0000000..3346d8b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Look_Around.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: e45787f7fb0de3c46861bf4e29eb3448 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Look_Around.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Relaxed.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Relaxed.anim new file mode 100644 index 0000000..3599509 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Relaxed.anim @@ -0,0 +1,22026 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle_Relaxed + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00900707 + inSlope: 0.015138219 + outSlope: 0.015138219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.008502463 + inSlope: 0.026946127 + outSlope: 0.026946127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0072106617 + inSlope: 0.038759656 + outSlope: 0.038759656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0059184856 + inSlope: 0.06688586 + outSlope: 0.06688586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0027516047 + inSlope: 0.071484804 + outSlope: 0.071484804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0011528321 + inSlope: 0.049452346 + outSlope: 0.049452346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.000545219 + inSlope: 0.08060591 + outSlope: 0.08060591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0042208955 + inSlope: 0.113654695 + outSlope: 0.113654695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.008122198 + inSlope: 0.09017277 + outSlope: 0.09017277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.010232413 + inSlope: 0.06485083 + outSlope: 0.06485083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.012445587 + inSlope: 0.09601669 + outSlope: 0.09601669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.016633525 + inSlope: 0.09518399 + outSlope: 0.09518399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.020902243 + inSlope: 0.088191286 + outSlope: 0.088191286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.024670606 + inSlope: 0.08290515 + outSlope: 0.08290515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.02642925 + inSlope: 0.056260064 + outSlope: 0.056260064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.028421277 + inSlope: 0.077993214 + outSlope: 0.077993214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.034709048 + inSlope: 0.0709349 + outSlope: 0.0709349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.038014367 + inSlope: 0.06756355 + outSlope: 0.06756355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.04086203 + inSlope: 0.06382879 + outSlope: 0.06382879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.043682303 + inSlope: 0.06556029 + outSlope: 0.06556029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.04975751 + inSlope: 0.07138596 + outSlope: 0.07138596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.052829962 + inSlope: 0.060053363 + outSlope: 0.060053363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.05540293 + inSlope: 0.057819583 + outSlope: 0.057819583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.057859704 + inSlope: 0.053226687 + outSlope: 0.053226687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.06258158 + inSlope: 0.0519441 + outSlope: 0.0519441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.06472546 + inSlope: 0.035577916 + outSlope: 0.035577916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.06606785 + inSlope: 0.02220614 + outSlope: 0.02220614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.06493761 + inSlope: -0.017720222 + outSlope: -0.017720222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.062110458 + inSlope: -0.027597219 + outSlope: -0.027597219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.061124217 + inSlope: -0.04648446 + outSlope: -0.04648446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.05901149 + inSlope: -0.049352802 + outSlope: -0.049352802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.056546103 + inSlope: -0.06112723 + outSlope: -0.06112723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0505713 + inSlope: -0.07369879 + outSlope: -0.07369879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.04700279 + inSlope: -0.08302129 + outSlope: -0.08302129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.043310862 + inSlope: -0.08438738 + outSlope: -0.08438738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.03940193 + inSlope: -0.087762855 + outSlope: -0.087762855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.0317211 + inSlope: -0.08597298 + outSlope: -0.08597298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.027872376 + inSlope: -0.08686718 + outSlope: -0.08686718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.02400341 + inSlope: -0.086882874 + outSlope: -0.086882874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.020150026 + inSlope: -0.08419539 + outSlope: -0.08419539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.01284599 + inSlope: -0.08128262 + outSlope: -0.08128262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.011048312 + inSlope: -0.053089265 + outSlope: -0.053089265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.009306709 + inSlope: -0.072108656 + outSlope: -0.072108656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.006241073 + inSlope: -0.06913589 + outSlope: -0.06913589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0046976544 + inSlope: -0.04498547 + outSlope: -0.04498547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.003242034 + inSlope: -0.06296016 + outSlope: -0.06296016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.0005003036 + inSlope: -0.07719074 + outSlope: -0.07719074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.0019040105 + inSlope: -0.053684905 + outSlope: -0.053684905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.0030786868 + inSlope: -0.034649476 + outSlope: -0.034649476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.0042139734 + inSlope: -0.05155667 + outSlope: -0.05155667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.006515795 + inSlope: -0.051701926 + outSlope: -0.051701926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.007660765 + inSlope: -0.032127485 + outSlope: -0.032127485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.008657632 + inSlope: -0.037124343 + outSlope: -0.037124343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.010135726 + inSlope: -0.03168505 + outSlope: -0.03168505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.011229178 + inSlope: -0.017325789 + outSlope: -0.017325789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.012301455 + inSlope: -0.0051881657 + outSlope: -0.0051881657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.0114710415 + inSlope: 0.0071882154 + outSlope: 0.0071882154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9753419 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.9753419 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03335746 + inSlope: -0.0471843 + outSlope: -0.0471843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.03493027 + inSlope: -0.024919229 + outSlope: -0.024919229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.035018742 + inSlope: -0.002714898 + outSlope: -0.002714898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.03529632 + inSlope: -0.001390614 + outSlope: -0.001390614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.03547692 + inSlope: -0.0070059868 + outSlope: -0.0070059868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.03561558 + inSlope: 0.0016520211 + outSlope: 0.0016520211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.034850113 + inSlope: 0.0012941111 + outSlope: 0.0012941111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.033312738 + inSlope: 0.0061093513 + outSlope: 0.0061093513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.03163451 + inSlope: 0.010936307 + outSlope: 0.010936307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.029941557 + inSlope: 0.004329844 + outSlope: 0.004329844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.028829293 + inSlope: 0.0046141585 + outSlope: 0.0046141585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.028480666 + inSlope: -0.00136583 + outSlope: -0.00136583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.028627127 + inSlope: -0.011775573 + outSlope: -0.011775573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.029277097 + inSlope: -0.012373967 + outSlope: -0.012373967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.029780233 + inSlope: -0.0043151476 + outSlope: -0.0043151476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.030715073 + inSlope: -0.0050986605 + outSlope: -0.0050986605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.030993784 + inSlope: -0.011217861 + outSlope: -0.011217861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.031923123 + inSlope: -0.00914852 + outSlope: -0.00914852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.034326375 + inSlope: -0.009212411 + outSlope: -0.009212411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.034790535 + inSlope: -0.0055402196 + outSlope: -0.0055402196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.029149845 + inSlope: -0.024075506 + outSlope: -0.024075506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.03132382 + inSlope: -0.01587242 + outSlope: -0.01587242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.03296925 + inSlope: -0.02637841 + outSlope: -0.02637841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.034264892 + inSlope: -0.010795892 + outSlope: -0.010795892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.03590198 + inSlope: -0.0066733365 + outSlope: -0.0066733365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.036544383 + inSlope: -0.0121689625 + outSlope: -0.0121689625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.037048668 + inSlope: -0.00033751162 + outSlope: -0.00033751162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.037357315 + inSlope: -0.0028290602 + outSlope: -0.0028290602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.038321227 + inSlope: -0.0005943326 + outSlope: -0.0005943326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.037572414 + inSlope: 0.022039928 + outSlope: 0.022039928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.036156505 + inSlope: 0.016098602 + outSlope: 0.016098602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.03556271 + inSlope: 0.029794868 + outSlope: 0.029794868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.03417018 + inSlope: 0.032015994 + outSlope: 0.032015994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.03285785 + inSlope: 0.026887316 + outSlope: 0.026887316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.030638516 + inSlope: 0.023984559 + outSlope: 0.023984559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.029393047 + inSlope: 0.024667371 + outSlope: 0.024667371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.02839236 + inSlope: 0.01911411 + outSlope: 0.01911411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.028278738 + inSlope: -0.008700851 + outSlope: -0.008700851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.028136954 + inSlope: 0.0145360045 + outSlope: 0.0145360045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.027073443 + inSlope: 0.012244296 + outSlope: 0.012244296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.025529474 + inSlope: 0.010195756 + outSlope: 0.010195756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.024967015 + inSlope: 0.0127831735 + outSlope: 0.0127831735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.024383709 + inSlope: -0.01890976 + outSlope: -0.01890976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.025433987 + inSlope: -0.020565819 + outSlope: -0.020565819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.025964513 + inSlope: -0.010805267 + outSlope: -0.010805267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.026475117 + inSlope: -0.008326703 + outSlope: -0.008326703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.026592478 + inSlope: -0.0032608986 + outSlope: -0.0032608986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.026329055 + inSlope: 0.013125179 + outSlope: 0.013125179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.025590211 + inSlope: 0.0073083565 + outSlope: 0.0073083565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.025313362 + inSlope: 0.018255355 + outSlope: 0.018255355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.024373189 + inSlope: 0.020958353 + outSlope: 0.020958353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.0234496 + inSlope: 0.008623484 + outSlope: 0.008623484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.02346158 + inSlope: -0.006106055 + outSlope: -0.006106055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.02469182 + inSlope: -0.035147924 + outSlope: -0.035147924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.026091501 + inSlope: -0.03367606 + outSlope: -0.03367606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.028451696 + inSlope: -0.018780176 + outSlope: -0.018780176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.02895403 + inSlope: -0.015070005 + outSlope: -0.015070005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04156736 + inSlope: -0.044927444 + outSlope: -0.044927444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04383594 + inSlope: -0.024879832 + outSlope: -0.024879832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.044723596 + inSlope: -0.041748136 + outSlope: -0.041748136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.04661915 + inSlope: -0.043785 + outSlope: -0.043785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.048744667 + inSlope: -0.050430223 + outSlope: -0.050430223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.05325498 + inSlope: -0.049953967 + outSlope: -0.049953967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.055318788 + inSlope: -0.04047303 + outSlope: -0.04047303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.057033077 + inSlope: -0.037079073 + outSlope: -0.037079073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.058473606 + inSlope: 0.007453912 + outSlope: 0.007453912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.055790655 + inSlope: 0.015085528 + outSlope: 0.015085528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.055239648 + inSlope: 0.029712997 + outSlope: 0.029712997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.052946117 + inSlope: 0.026130639 + outSlope: 0.026130639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.049498484 + inSlope: 0.020557914 + outSlope: 0.020557914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.04878062 + inSlope: 0.018326972 + outSlope: 0.018326972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.04749252 + inSlope: 0.012048885 + outSlope: 0.012048885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.04563185 + inSlope: 0.014548844 + outSlope: 0.014548844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.045054357 + inSlope: 0.0335688 + outSlope: 0.0335688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.04339393 + inSlope: 0.040286765 + outSlope: 0.040286765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.041480534 + inSlope: 0.037229568 + outSlope: 0.037229568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.038511246 + inSlope: 0.032486446 + outSlope: 0.032486446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.036747325 + inSlope: 0.05142325 + outSlope: 0.05142325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.034292623 + inSlope: 0.05741162 + outSlope: 0.05741162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.031559628 + inSlope: 0.05652547 + outSlope: 0.05652547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.029151518 + inSlope: 0.05076056 + outSlope: 0.05076056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.02732822 + inSlope: 0.034324408 + outSlope: 0.034324408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.024575723 + inSlope: 0.028822906 + outSlope: 0.028822906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.023391046 + inSlope: 0.023940668 + outSlope: 0.023940668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.022369716 + inSlope: 0.02266765 + outSlope: 0.02266765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.021377264 + inSlope: 0.023309425 + outSlope: 0.023309425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.01941543 + inSlope: 0.018684685 + outSlope: 0.018684685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.019267745 + inSlope: -0.0063028447 + outSlope: -0.0063028447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.019988548 + inSlope: -0.020311886 + outSlope: -0.020311886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.020869464 + inSlope: -0.021380216 + outSlope: -0.021380216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.022019418 + inSlope: -0.027701322 + outSlope: -0.027701322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.023260647 + inSlope: -0.027447548 + outSlope: -0.027447548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.024401028 + inSlope: -0.022456143 + outSlope: -0.022456143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.026074506 + inSlope: -0.015834156 + outSlope: -0.015834156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.026706288 + inSlope: -0.0167142 + outSlope: -0.0167142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.02751622 + inSlope: -0.020055985 + outSlope: -0.020055985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.028679468 + inSlope: -0.03077437 + outSlope: -0.03077437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.03009498 + inSlope: -0.03224683 + outSlope: -0.03224683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.03159479 + inSlope: -0.035634242 + outSlope: -0.035634242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.034971416 + inSlope: -0.05015065 + outSlope: -0.05015065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.04110119 + inSlope: -0.03569677 + outSlope: -0.03569677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.023337677 + inSlope: -0.006575882 + outSlope: -0.006575882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.022808071 + inSlope: -0.009696856 + outSlope: -0.009696856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.02204148 + inSlope: -0.01002414 + outSlope: -0.01002414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.020859355 + inSlope: -0.02700694 + outSlope: -0.02700694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.019878652 + inSlope: -0.02279034 + outSlope: -0.02279034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.018655742 + inSlope: -0.033495344 + outSlope: -0.033495344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.017106976 + inSlope: -0.035540573 + outSlope: -0.035540573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.015361379 + inSlope: -0.038482912 + outSlope: -0.038482912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.013720842 + inSlope: -0.03565547 + outSlope: -0.03565547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.012311919 + inSlope: -0.028665818 + outSlope: -0.028665818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0098283 + inSlope: -0.028659973 + outSlope: -0.028659973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.008483151 + inSlope: -0.032435805 + outSlope: -0.032435805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0070002405 + inSlope: -0.03426661 + outSlope: -0.03426661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00619871 + inSlope: -0.02492509 + outSlope: -0.02492509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.005338568 + inSlope: -0.043120965 + outSlope: -0.043120965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0033239764 + inSlope: -0.06546878 + outSlope: -0.06546878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.000973983 + inSlope: -0.053510822 + outSlope: -0.053510822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.00024341047 + inSlope: -0.036653034 + outSlope: -0.036653034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0014695524 + inSlope: -0.05327156 + outSlope: -0.05327156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0037948487 + inSlope: -0.05159132 + outSlope: -0.05159132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.0049089747 + inSlope: -0.033601772 + outSlope: -0.033601772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0060349647 + inSlope: -0.051568933 + outSlope: -0.051568933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.010782609 + inSlope: -0.056369092 + outSlope: -0.056369092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.01316783 + inSlope: -0.044706807 + outSlope: -0.044706807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.0150852995 + inSlope: -0.03837999 + outSlope: -0.03837999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.015726494 + inSlope: -0.016500533 + outSlope: -0.016500533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.016491089 + inSlope: -0.0032745446 + outSlope: -0.0032745446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.016311456 + inSlope: 0.002898599 + outSlope: 0.002898599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.016088376 + inSlope: -0.0021859119 + outSlope: -0.0021859119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.015866486 + inSlope: 0.015844 + outSlope: 0.015844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.015162112 + inSlope: 0.01680319 + outSlope: 0.01680319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.014274973 + inSlope: 0.022260498 + outSlope: 0.022260498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.013262239 + inSlope: 0.023729444 + outSlope: 0.023729444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.012075619 + inSlope: 0.028840117 + outSlope: 0.028840117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.0093573965 + inSlope: 0.032372624 + outSlope: 0.032372624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.007818454 + inSlope: 0.035155706 + outSlope: 0.035155706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.0062684407 + inSlope: 0.037540425 + outSlope: 0.037540425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.005315759 + inSlope: 0.029753616 + outSlope: 0.029753616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.0042848643 + inSlope: 0.044351816 + outSlope: 0.044351816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.0023589667 + inSlope: 0.06326378 + outSlope: 0.06326378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.000067282934 + inSlope: 0.052341346 + outSlope: 0.052341346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.0011304528 + inSlope: 0.036146913 + outSlope: 0.036146913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.0023425089 + inSlope: 0.05382719 + outSlope: 0.05382719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.0047189286 + inSlope: 0.052955575 + outSlope: 0.052955575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0058728773 + inSlope: 0.033594392 + outSlope: 0.033594392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.0069585606 + inSlope: 0.045855056 + outSlope: 0.045855056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.008929886 + inSlope: 0.05490949 + outSlope: 0.05490949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.01061919 + inSlope: 0.037397098 + outSlope: 0.037397098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.012271535 + inSlope: 0.04172166 + outSlope: 0.04172166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.014204465 + inSlope: 0.044817857 + outSlope: 0.044817857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.016287088 + inSlope: 0.041785926 + outSlope: 0.041785926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.018045122 + inSlope: 0.036902063 + outSlope: 0.036902063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.01935922 + inSlope: 0.024360515 + outSlope: 0.024360515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.020371256 + inSlope: 0.025196025 + outSlope: 0.025196025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.022177123 + inSlope: 0.017691411 + outSlope: 0.017691411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.023174917 + inSlope: 0.012830527 + outSlope: 0.012830527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9984378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.9984378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.171703 + inSlope: -0.00847131 + outSlope: -0.00847131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.18047921 + inSlope: -0.03583453 + outSlope: -0.03583453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.18777862 + inSlope: -0.03236443 + outSlope: -0.03236443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.19292605 + inSlope: -0.034077033 + outSlope: -0.034077033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.19385672 + inSlope: 0.03406758 + outSlope: 0.03406758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.19065487 + inSlope: 0.014774486 + outSlope: 0.014774486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.19465356 + inSlope: -0.019123513 + outSlope: -0.019123513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.19390416 + inSlope: -0.014538672 + outSlope: -0.014538672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.1873515 + inSlope: 0.031499 + outSlope: 0.031499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.18017605 + inSlope: 0.037365608 + outSlope: 0.037365608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.17402492 + inSlope: 0.01786619 + outSlope: 0.01786619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.17191368 + inSlope: 0.004136841 + outSlope: 0.004136841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.168765 + inSlope: 0.032910734 + outSlope: 0.032910734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.1634855 + inSlope: 0.037205853 + outSlope: 0.037205853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.15691172 + inSlope: 0.023294784 + outSlope: 0.023294784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.15283689 + inSlope: 0.025332594 + outSlope: 0.025332594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.1482175 + inSlope: -0.0030098637 + outSlope: -0.0030098637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.14904809 + inSlope: 0.020935569 + outSlope: 0.020935569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.14737387 + inSlope: -0.014855653 + outSlope: -0.014855653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.1492475 + inSlope: -0.005350565 + outSlope: -0.005350565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.15291557 + inSlope: -0.058831632 + outSlope: -0.058831632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.15702488 + inSlope: -0.03720317 + outSlope: -0.03720317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.16815035 + inSlope: -0.05242945 + outSlope: -0.05242945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.17120332 + inSlope: -0.03897298 + outSlope: -0.03897298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9461571 + inSlope: -0.0024569032 + outSlope: -0.0024569032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.9577794 + inSlope: 0.0018167513 + outSlope: 0.0018167513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.9462742 + inSlope: 0.009711394 + outSlope: 0.009711394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09959244 + inSlope: -0.007287785 + outSlope: -0.007287785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.101547964 + inSlope: -0.004736558 + outSlope: -0.004736558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.104540475 + inSlope: -0.021955112 + outSlope: -0.021955112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.10444576 + inSlope: -0.0020091978 + outSlope: -0.0020091978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.104811095 + inSlope: -0.019760393 + outSlope: -0.019760393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.10667926 + inSlope: -0.023518503 + outSlope: -0.023518503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.10935304 + inSlope: -0.034865245 + outSlope: -0.034865245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.11154427 + inSlope: 0.008450612 + outSlope: 0.008450612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.10566992 + inSlope: 0.009863386 + outSlope: 0.009863386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.10550738 + inSlope: 0.023489524 + outSlope: 0.023489524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.103278354 + inSlope: 0.015061177 + outSlope: 0.015061177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.104208305 + inSlope: -0.021904504 + outSlope: -0.021904504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.10446995 + inSlope: -0.017145865 + outSlope: -0.017145865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.10563557 + inSlope: 0.00042513054 + outSlope: 0.00042513054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.10635831 + inSlope: 0.009211608 + outSlope: 0.009211608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.103264764 + inSlope: -0.002144408 + outSlope: -0.002144408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.10315411 + inSlope: 0.010980974 + outSlope: 0.010980974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.10290912 + inSlope: -0.022972822 + outSlope: -0.022972822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.104685634 + inSlope: -0.032485083 + outSlope: -0.032485083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.10601455 + inSlope: -0.0146572795 + outSlope: -0.0146572795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.10515744 + inSlope: 0.02201578 + outSlope: 0.02201578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.10155885 + inSlope: 0.029646596 + outSlope: 0.029646596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.09672723 + inSlope: 0.018661156 + outSlope: 0.018661156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.099451974 + inSlope: -0.011455949 + outSlope: -0.011455949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.42835426 + inSlope: 0.038539764 + outSlope: 0.038539764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.4353418 + inSlope: 0.033954524 + outSlope: 0.033954524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.4410629 + inSlope: 0.038562156 + outSlope: 0.038562156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.43552873 + inSlope: -0.008092216 + outSlope: -0.008092216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.42799523 + inSlope: 0.0015181317 + outSlope: 0.0015181317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.42829373 + inSlope: -0.0010040412 + outSlope: -0.0010040412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4716488 + inSlope: -0.022788046 + outSlope: -0.022788046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.47892106 + inSlope: 0.027851142 + outSlope: 0.027851142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.45774207 + inSlope: 0.05400946 + outSlope: 0.05400946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.44731194 + inSlope: 0.038818203 + outSlope: 0.038818203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.4425782 + inSlope: -0.005398398 + outSlope: -0.005398398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.45687705 + inSlope: -0.02001511 + outSlope: -0.02001511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.47121578 + inSlope: -0.040339567 + outSlope: -0.040339567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5306339 + inSlope: -0.055521723 + outSlope: -0.055521723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.51711446 + inSlope: -0.038415484 + outSlope: -0.038415484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.5062548 + inSlope: -0.025193073 + outSlope: -0.025193073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.517735 + inSlope: 0.025117123 + outSlope: 0.025117123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.5293713 + inSlope: 0.025565898 + outSlope: 0.025565898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.5308393 + inSlope: -0.012719047 + outSlope: -0.012719047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5590062 + inSlope: -0.0037944315 + outSlope: -0.0037944315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.5710611 + inSlope: -0.040603284 + outSlope: -0.040603284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.5842677 + inSlope: -0.014069987 + outSlope: -0.014069987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.57176113 + inSlope: 0.038113333 + outSlope: 0.038113333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.55922276 + inSlope: 0.021078607 + outSlope: 0.021078607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13757567 + inSlope: -0.055328604 + outSlope: -0.055328604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.124726094 + inSlope: -0.0794324 + outSlope: -0.0794324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.117999665 + inSlope: -0.03336053 + outSlope: -0.03336053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.11581733 + inSlope: -0.019682257 + outSlope: -0.019682257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.11372281 + inSlope: 0.008739208 + outSlope: 0.008739208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11361453 + inSlope: -0.019916069 + outSlope: -0.019916069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.11345456 + inSlope: 0.041914016 + outSlope: 0.041914016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.11799782 + inSlope: 0.039750766 + outSlope: 0.039750766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.119994685 + inSlope: 0.050363176 + outSlope: 0.050363176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.12509665 + inSlope: 0.06842992 + outSlope: 0.06842992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.12902892 + inSlope: 0.076750174 + outSlope: 0.076750174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.13475025 + inSlope: 0.021905845 + outSlope: 0.021905845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.13408606 + inSlope: 0.0039464273 + outSlope: 0.0039464273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.13768585 + inSlope: 0.017155169 + outSlope: 0.017155169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.14225699 + inSlope: 0.06009972 + outSlope: 0.06009972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.14637488 + inSlope: 0.03995847 + outSlope: 0.03995847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.1531865 + inSlope: 0.027740996 + outSlope: 0.027740996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.15703249 + inSlope: 0.025730902 + outSlope: 0.025730902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.16216011 + inSlope: 0.011419499 + outSlope: 0.011419499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.16350365 + inSlope: -0.005397971 + outSlope: -0.005397971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.16213112 + inSlope: 0.00009208926 + outSlope: 0.00009208926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.15490243 + inSlope: -0.0142441075 + outSlope: -0.0142441075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.14585255 + inSlope: -0.034554034 + outSlope: -0.034554034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.1381016 + inSlope: -0.049038876 + outSlope: -0.049038876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9585505 + inSlope: 0.010905861 + outSlope: 0.010905861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.94658333 + inSlope: -0.008025177 + outSlope: -0.008025177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.95858043 + inSlope: 0.0022083542 + outSlope: 0.0022083542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12532671 + inSlope: -0.040609982 + outSlope: -0.040609982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.12954232 + inSlope: -0.040171895 + outSlope: -0.040171895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.13430162 + inSlope: -0.07233203 + outSlope: -0.07233203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.13809514 + inSlope: -0.034094457 + outSlope: -0.034094457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.13916163 + inSlope: 0.016206572 + outSlope: 0.016206572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.13843565 + inSlope: 0.012757931 + outSlope: 0.012757931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.14021376 + inSlope: 0.0038440423 + outSlope: 0.0038440423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.13984904 + inSlope: -0.01821063 + outSlope: -0.01821063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.14015785 + inSlope: 0.019960295 + outSlope: 0.019960295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.13672969 + inSlope: 0.021553993 + outSlope: 0.021553993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.13330783 + inSlope: 0.06962999 + outSlope: 0.06962999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.12878706 + inSlope: 0.055619594 + outSlope: 0.055619594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.122799516 + inSlope: -0.002277868 + outSlope: -0.002277868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.1209416 + inSlope: 0.0045355083 + outSlope: 0.0045355083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.11894244 + inSlope: 0.011245508 + outSlope: 0.011245508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.11644013 + inSlope: 0.05949828 + outSlope: 0.05949828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.11586735 + inSlope: -0.030363262 + outSlope: -0.030363262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.11781001 + inSlope: -0.030530386 + outSlope: -0.030530386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.12015249 + inSlope: 0.008332295 + outSlope: 0.008332295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.11431122 + inSlope: 0.008335715 + outSlope: 0.008335715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.11577954 + inSlope: -0.06242255 + outSlope: -0.06242255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.12489485 + inSlope: -0.035318244 + outSlope: -0.035318244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.53464013 + inSlope: -0.020447372 + outSlope: -0.020447372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.54494303 + inSlope: 0.0009754292 + outSlope: 0.0009754292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.5543684 + inSlope: 0.017337816 + outSlope: 0.017337816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.53617066 + inSlope: 0.0040384782 + outSlope: 0.0040384782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.53463906 + inSlope: 0.006895072 + outSlope: 0.006895072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.61363375 + inSlope: 0.01091659 + outSlope: 0.01091659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6090703 + inSlope: -0.046495207 + outSlope: -0.046495207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.58485997 + inSlope: 0.012950612 + outSlope: 0.012950612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.603512 + inSlope: 0.014525964 + outSlope: 0.014525964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.61327213 + inSlope: 0.035265718 + outSlope: 0.035265718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.39380616 + inSlope: 0.041182633 + outSlope: 0.041182633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.38279903 + inSlope: 0.04969866 + outSlope: 0.04969866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.37421387 + inSlope: -0.0013379566 + outSlope: -0.0013379566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.3723042 + inSlope: 0.008296067 + outSlope: 0.008296067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.37691343 + inSlope: -0.036479417 + outSlope: -0.036479417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.39450294 + inSlope: -0.03409439 + outSlope: -0.03409439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.39978462 + inSlope: -0.019342322 + outSlope: -0.019342322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.39643592 + inSlope: 0.051515713 + outSlope: 0.051515713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.39410922 + inSlope: 0.017971711 + outSlope: 0.017971711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4272359 + inSlope: -0.0033885238 + outSlope: -0.0033885238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.43025678 + inSlope: 0.030646032 + outSlope: 0.030646032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.4469393 + inSlope: 0.005763167 + outSlope: 0.005763167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.45191818 + inSlope: -0.011211624 + outSlope: -0.011211624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.42897633 + inSlope: -0.01673964 + outSlope: -0.01673964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.42747694 + inSlope: -0.02531829 + outSlope: -0.02531829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2777869 + inSlope: 0.043998953 + outSlope: 0.043998953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.26702458 + inSlope: 0.026737578 + outSlope: 0.026737578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.26276284 + inSlope: -0.0124973 + outSlope: -0.0124973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.26016316 + inSlope: 0.03076139 + outSlope: 0.03076139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.27094522 + inSlope: -0.021602532 + outSlope: -0.021602532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.2741241 + inSlope: 0.01699047 + outSlope: 0.01699047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.27132794 + inSlope: 0.00050514983 + outSlope: 0.00050514983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.2775967 + inSlope: -0.012935412 + outSlope: -0.012935412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08516163 + inSlope: -0.01585789 + outSlope: -0.01585789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.088133834 + inSlope: -0.014370384 + outSlope: -0.014370384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.08984105 + inSlope: -0.0118933655 + outSlope: -0.0118933655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.088031225 + inSlope: 0.013578026 + outSlope: 0.013578026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.08629787 + inSlope: 0.012663141 + outSlope: 0.012663141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.081645496 + inSlope: 0.0041165287 + outSlope: 0.0041165287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.082279004 + inSlope: -0.01011529 + outSlope: -0.01011529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.084387094 + inSlope: -0.007608652 + outSlope: -0.007608652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.08512661 + inSlope: -0.0024191313 + outSlope: -0.0024191313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.002364269 + inSlope: -0.0010548905 + outSlope: -0.0010548905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.002329106 + inSlope: -0.007561058 + outSlope: -0.007561058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0018601984 + inSlope: -0.012893543 + outSlope: -0.012893543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0014695363 + inSlope: -0.016496032 + outSlope: -0.016496032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00076046295 + inSlope: -0.015320111 + outSlope: -0.015320111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00044819567 + inSlope: -0.0058373264 + outSlope: -0.0058373264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00037130786 + inSlope: -0.00024084782 + outSlope: -0.00024084782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.00043213912 + inSlope: 0.009544026 + outSlope: 0.009544026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0010075762 + inSlope: 0.015980355 + outSlope: 0.015980355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0014974962 + inSlope: 0.014356996 + outSlope: 0.014356996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0019647093 + inSlope: 0.0120379925 + outSlope: 0.0120379925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.002300029 + inSlope: -0.002668627 + outSlope: -0.002668627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0017868003 + inSlope: -0.010964031 + outSlope: -0.010964031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0015690931 + inSlope: -0.010291205 + outSlope: -0.010291205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.00110072 + inSlope: -0.01623074 + outSlope: -0.01623074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00048704437 + inSlope: -0.013672724 + outSlope: -0.013672724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00018920543 + inSlope: -0.009293038 + outSlope: -0.009293038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.00013249202 + inSlope: -0.0061913654 + outSlope: -0.0061913654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00022355244 + inSlope: -0.003941505 + outSlope: -0.003941505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0003952591 + inSlope: -0.004807709 + outSlope: -0.004807709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00054406637 + inSlope: -0.008790513 + outSlope: -0.008790513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0009812935 + inSlope: -0.010187049 + outSlope: -0.010187049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0012232031 + inSlope: -0.0063079195 + outSlope: -0.0063079195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0014018214 + inSlope: -0.0002951685 + outSlope: -0.0002951685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0012428811 + inSlope: 0.010610718 + outSlope: 0.010610718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.00069444056 + inSlope: 0.011293951 + outSlope: 0.011293951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0004899513 + inSlope: 0.0129849985 + outSlope: 0.0129849985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.00017122556 + inSlope: 0.030437868 + outSlope: 0.030437868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0015392404 + inSlope: 0.033738848 + outSlope: 0.033738848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0024204825 + inSlope: 0.024422731 + outSlope: 0.024422731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0031674209 + inSlope: 0.029744685 + outSlope: 0.029744685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.004403464 + inSlope: 0.03040691 + outSlope: 0.03040691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.005194551 + inSlope: 0.01522878 + outSlope: 0.01522878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.0056212414 + inSlope: 0.012084017 + outSlope: 0.012084017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.006224316 + inSlope: 0.009082311 + outSlope: 0.009082311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.006226728 + inSlope: 0.0059753945 + outSlope: 0.0059753945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0066226753 + inSlope: 0.007931984 + outSlope: 0.007931984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0066428417 + inSlope: -0.0069072396 + outSlope: -0.0069072396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.006295045 + inSlope: -0.010352634 + outSlope: -0.010352634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.0059526656 + inSlope: -0.022028 + outSlope: -0.022028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.0048265117 + inSlope: -0.024009125 + outSlope: -0.024009125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.0043520587 + inSlope: -0.016012853 + outSlope: -0.016012853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0037589893 + inSlope: -0.019551601 + outSlope: -0.019551601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.0030486174 + inSlope: -0.01100106 + outSlope: -0.01100106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.0030255835 + inSlope: -0.00016354155 + outSlope: -0.00016354155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.0030377146 + inSlope: 0.0037775154 + outSlope: 0.0037775154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.0032774184 + inSlope: 0.010766031 + outSlope: 0.010766031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0037554502 + inSlope: 0.012538336 + outSlope: 0.012538336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.0046846927 + inSlope: 0.02293308 + outSlope: 0.02293308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.005642181 + inSlope: 0.023517545 + outSlope: 0.023517545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.006252531 + inSlope: 0.01559706 + outSlope: 0.01559706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.006681984 + inSlope: 0.021552045 + outSlope: 0.021552045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.008751892 + inSlope: 0.024611693 + outSlope: 0.024611693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.009330114 + inSlope: 0.0059989616 + outSlope: 0.0059989616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.009151822 + inSlope: 0.006786911 + outSlope: 0.006786911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.009782577 + inSlope: 0.016660087 + outSlope: 0.016660087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.010262494 + inSlope: 0.00900734 + outSlope: 0.00900734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.010383065 + inSlope: 0.00523375 + outSlope: 0.00523375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.010611411 + inSlope: -0.006528405 + outSlope: -0.006528405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.009947838 + inSlope: -0.013657807 + outSlope: -0.013657807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.009507626 + inSlope: -0.010434432 + outSlope: -0.010434432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.009005263 + inSlope: -0.010047522 + outSlope: -0.010047522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.008623776 + inSlope: -0.013562413 + outSlope: -0.013562413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.0070830695 + inSlope: -0.02059117 + outSlope: -0.02059117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.006560887 + inSlope: -0.013853706 + outSlope: -0.013853706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.00615949 + inSlope: -0.018891025 + outSlope: -0.018891025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.0053014867 + inSlope: -0.017067507 + outSlope: -0.017067507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.0050216573 + inSlope: -0.008972816 + outSlope: -0.008972816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.0047032973 + inSlope: -0.020598033 + outSlope: -0.020598033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.003648454 + inSlope: -0.023374956 + outSlope: -0.023374956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.0031449683 + inSlope: -0.012344187 + outSlope: -0.012344187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.002825509 + inSlope: -0.003607061 + outSlope: -0.003607061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.0029044978 + inSlope: 0.0066890763 + outSlope: 0.0066890763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.003271447 + inSlope: 0.0027660204 + outSlope: 0.0027660204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.003088899 + inSlope: -0.004455745 + outSlope: -0.004455745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.0029743968 + inSlope: -0.0073868055 + outSlope: -0.0073868055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.002596445 + inSlope: -0.007731562 + outSlope: -0.007731562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.0024589598 + inSlope: -0.0041245567 + outSlope: -0.0041245567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20941916 + inSlope: -0.04147276 + outSlope: -0.04147276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.20230445 + inSlope: -0.069173954 + outSlope: -0.069173954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.18657386 + inSlope: -0.071585916 + outSlope: -0.071585916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.18376753 + inSlope: -0.037028126 + outSlope: -0.037028126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.18658568 + inSlope: 0.084114686 + outSlope: 0.084114686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.19668049 + inSlope: 0.037861355 + outSlope: 0.037861355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.21021539 + inSlope: 0.026475154 + outSlope: 0.026475154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.2194394 + inSlope: 0.07284267 + outSlope: 0.07284267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.22669455 + inSlope: 0.099810965 + outSlope: 0.099810965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.23209052 + inSlope: 0.0031994218 + outSlope: 0.0031994218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.22546224 + inSlope: 0.013461126 + outSlope: 0.013461126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.22197647 + inSlope: -0.092642695 + outSlope: -0.092642695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.21000329 + inSlope: -0.041810762 + outSlope: -0.041810762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.060472712 + inSlope: 0.040958446 + outSlope: 0.040958446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.058779232 + inSlope: 0.008989199 + outSlope: 0.008989199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.058409415 + inSlope: -0.008234381 + outSlope: -0.008234381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.057506084 + inSlope: 0.022600798 + outSlope: 0.022600798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.055881277 + inSlope: 0.02191336 + outSlope: 0.02191336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.05499218 + inSlope: 0.047694206 + outSlope: 0.047694206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.052701663 + inSlope: 0.052296393 + outSlope: 0.052296393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.049785286 + inSlope: 0.070230514 + outSlope: 0.070230514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.04477362 + inSlope: 0.039698504 + outSlope: 0.039698504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.04411383 + inSlope: -0.005867612 + outSlope: -0.005867612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.04366486 + inSlope: 0.020489456 + outSlope: 0.020489456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.042837333 + inSlope: 0.013168875 + outSlope: 0.013168875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.042569496 + inSlope: 0.002802858 + outSlope: 0.002802858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.042201005 + inSlope: 0.004143057 + outSlope: 0.004143057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.04003173 + inSlope: 0.032615684 + outSlope: 0.032615684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.038852107 + inSlope: 0.062211372 + outSlope: 0.062211372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.035884306 + inSlope: 0.06191349 + outSlope: 0.06191349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.034724545 + inSlope: 0.03416752 + outSlope: 0.03416752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.03435607 + inSlope: -0.07602831 + outSlope: -0.07602831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.038675025 + inSlope: -0.11674845 + outSlope: -0.11674845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.04213929 + inSlope: -0.10681921 + outSlope: -0.10681921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.045796312 + inSlope: -0.16556993 + outSlope: -0.16556993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.05317729 + inSlope: -0.15553619 + outSlope: -0.15553619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.058397867 + inSlope: -0.082521304 + outSlope: -0.082521304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.06166681 + inSlope: -0.07011507 + outSlope: -0.07011507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.064371474 + inSlope: -0.060809277 + outSlope: -0.060809277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.06964093 + inSlope: -0.053985097 + outSlope: -0.053985097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.071447186 + inSlope: -0.023572348 + outSlope: -0.023572348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.07228327 + inSlope: -0.009216638 + outSlope: -0.009216638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.07206767 + inSlope: 0.02357576 + outSlope: 0.02357576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.069382355 + inSlope: 0.051952206 + outSlope: 0.051952206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.06688243 + inSlope: 0.05967474 + outSlope: 0.05967474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.06376438 + inSlope: 0.06789818 + outSlope: 0.06789818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.060877502 + inSlope: 0.060979016 + outSlope: 0.060979016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.05886039 + inSlope: 0.027115226 + outSlope: 0.027115226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.057570603 + inSlope: 0.0031737827 + outSlope: 0.0031737827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.055797987 + inSlope: -0.0028281044 + outSlope: -0.0028281044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.05696351 + inSlope: -0.030871585 + outSlope: -0.030871585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.062864006 + inSlope: -0.024139456 + outSlope: -0.024139456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.061425254 + inSlope: 0.019659102 + outSlope: 0.019659102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.060732447 + inSlope: 0.020784235 + outSlope: 0.020784235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6948257 + inSlope: -0.0056844945 + outSlope: -0.0056844945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.69718146 + inSlope: 0.0053527933 + outSlope: 0.0053527933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.6827892 + inSlope: 0.0019043698 + outSlope: 0.0019043698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.6911483 + inSlope: 0.0039902413 + outSlope: 0.0039902413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.68703187 + inSlope: 0.0044086617 + outSlope: 0.0044086617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.6944565 + inSlope: 0.022879265 + outSlope: 0.022879265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6853499 + inSlope: -0.021949409 + outSlope: -0.021949409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.6949753 + inSlope: 0.009654166 + outSlope: 0.009654166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.6980234 + inSlope: -0.009908075 + outSlope: -0.009908075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.68049115 + inSlope: -0.017715113 + outSlope: -0.017715113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.68552214 + inSlope: 0.0084579075 + outSlope: 0.0084579075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2720686 + inSlope: 0.029080508 + outSlope: 0.029080508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.28081447 + inSlope: 0.007994318 + outSlope: 0.007994318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.28590408 + inSlope: 0.0027774295 + outSlope: 0.0027774295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.28348744 + inSlope: -0.009174926 + outSlope: -0.009174926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.29338506 + inSlope: 0.018873334 + outSlope: 0.018873334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.27845812 + inSlope: -0.06333417 + outSlope: -0.06333417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.27291536 + inSlope: 0.012065431 + outSlope: 0.012065431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.27409807 + inSlope: -0.025589194 + outSlope: -0.025589194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.27218676 + inSlope: -0.012509835 + outSlope: -0.012509835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07693028 + inSlope: 0.009779557 + outSlope: 0.009779557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.07355591 + inSlope: 0.004356912 + outSlope: 0.004356912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.07247933 + inSlope: 0.004601214 + outSlope: 0.004601214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.07391435 + inSlope: -0.0008510434 + outSlope: -0.0008510434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.07456517 + inSlope: 0.007804891 + outSlope: 0.007804891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.074458085 + inSlope: -0.006844875 + outSlope: -0.006844875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.07591131 + inSlope: -0.015204418 + outSlope: -0.015204418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.07922428 + inSlope: 0.00252955 + outSlope: 0.00252955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.07650923 + inSlope: -0.007851392 + outSlope: -0.007851392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.0769295 + inSlope: -0.0006810582 + outSlope: -0.0006810582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.039513 + inSlope: 0.05372576 + outSlope: 0.05372576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04130386 + inSlope: 0.040500626 + outSlope: 0.040500626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.04319712 + inSlope: 0.031460803 + outSlope: 0.031460803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.044864733 + inSlope: 0.01633711 + outSlope: 0.01633711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.046447538 + inSlope: 0.03170841 + outSlope: 0.03170841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.048687875 + inSlope: 0.010120755 + outSlope: 0.010120755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.051101163 + inSlope: 0.020843673 + outSlope: 0.020843673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.05173711 + inSlope: 0.038589075 + outSlope: 0.038589075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.05547835 + inSlope: 0.035497714 + outSlope: 0.035497714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.054120876 + inSlope: -0.019223668 + outSlope: -0.019223668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.052730702 + inSlope: -0.022377387 + outSlope: -0.022377387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.049680293 + inSlope: -0.028836902 + outSlope: -0.028836902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.048146185 + inSlope: -0.0054889787 + outSlope: -0.0054889787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.047172055 + inSlope: -0.0068008592 + outSlope: -0.0068008592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.04641876 + inSlope: -0.022780137 + outSlope: -0.022780137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.0449224 + inSlope: -0.01806017 + outSlope: -0.01806017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.04203186 + inSlope: -0.01056512 + outSlope: -0.01056512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.040048786 + inSlope: -0.0045939526 + outSlope: -0.0045939526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.03950647 + inSlope: -0.0051851613 + outSlope: -0.0051851613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.038692106 + inSlope: -0.028685672 + outSlope: -0.028685672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.035520867 + inSlope: -0.008327597 + outSlope: -0.008327597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.03537746 + inSlope: 0.0014362488 + outSlope: 0.0014362488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.037875712 + inSlope: 0.018864553 + outSlope: 0.018864553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.03845811 + inSlope: 0.026303388 + outSlope: 0.026303388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.03962927 + inSlope: 0.023384023 + outSlope: 0.023384023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.040017042 + inSlope: 0.019659283 + outSlope: 0.019659283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.042046618 + inSlope: 0.022507554 + outSlope: 0.022507554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.042727478 + inSlope: 0.0067919185 + outSlope: 0.0067919185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.039716575 + inSlope: -0.014911643 + outSlope: -0.014911643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11131331 + inSlope: 0.025932936 + outSlope: 0.025932936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.110795945 + inSlope: 0.02533313 + outSlope: 0.02533313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.108790666 + inSlope: 0.05443924 + outSlope: 0.05443924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.10520512 + inSlope: 0.031995833 + outSlope: 0.031995833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.09974827 + inSlope: -0.014757849 + outSlope: -0.014757849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.10338572 + inSlope: -0.027305536 + outSlope: -0.027305536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.10680037 + inSlope: -0.009992563 + outSlope: -0.009992563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.10884097 + inSlope: -0.018855613 + outSlope: -0.018855613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.10807568 + inSlope: -0.0042979787 + outSlope: -0.0042979787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.10884556 + inSlope: -0.06637229 + outSlope: -0.06637229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.112500496 + inSlope: -0.0978093 + outSlope: -0.0978093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.118568815 + inSlope: -0.1446383 + outSlope: -0.1446383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.12500873 + inSlope: -0.13827616 + outSlope: -0.13827616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.12993851 + inSlope: -0.0783944 + outSlope: -0.0783944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.13423687 + inSlope: -0.031138018 + outSlope: -0.031138018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.14007108 + inSlope: -0.021693727 + outSlope: -0.021693727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.14333066 + inSlope: -0.018158749 + outSlope: -0.018158749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.13930659 + inSlope: 0.022526555 + outSlope: 0.022526555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.13494998 + inSlope: 0.047060072 + outSlope: 0.047060072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.13256228 + inSlope: 0.011288088 + outSlope: 0.011288088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.12631312 + inSlope: 0.10812509 + outSlope: 0.10812509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.112396866 + inSlope: 0.08099966 + outSlope: 0.08099966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.27128014 + inSlope: -0.0754559 + outSlope: -0.0754559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.27772397 + inSlope: 0.008556695 + outSlope: 0.008556695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.28356254 + inSlope: 0.008400693 + outSlope: 0.008400693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.2835367 + inSlope: -0.0037202209 + outSlope: -0.0037202209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.27315047 + inSlope: 0.0059978403 + outSlope: 0.0059978403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.27106127 + inSlope: 0.06502798 + outSlope: 0.06502798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.25875452 + inSlope: 0.027760442 + outSlope: 0.027760442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.25163838 + inSlope: 0.011635404 + outSlope: 0.011635404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.24582325 + inSlope: 0.007906266 + outSlope: 0.007906266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.24671397 + inSlope: -0.09022558 + outSlope: -0.09022558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.2648411 + inSlope: -0.0074373255 + outSlope: -0.0074373255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.2708794 + inSlope: -0.030537874 + outSlope: -0.030537874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6415287 + inSlope: 0.049731728 + outSlope: 0.049731728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.6305016 + inSlope: 0.01717687 + outSlope: 0.01717687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.61931247 + inSlope: 0.04185859 + outSlope: 0.04185859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.6351522 + inSlope: 0.028342847 + outSlope: 0.028342847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.64115685 + inSlope: -0.030875832 + outSlope: -0.030875832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.70884246 + inSlope: 0.019984243 + outSlope: 0.019984243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7159495 + inSlope: 0.008989877 + outSlope: 0.008989877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.72084844 + inSlope: 0.03295446 + outSlope: 0.03295446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.7222644 + inSlope: -0.041583218 + outSlope: -0.041583218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.70916116 + inSlope: -0.026521709 + outSlope: -0.026521709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.026841437 + inSlope: 0.011263601 + outSlope: 0.011263601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.025366748 + inSlope: 0.010848419 + outSlope: 0.010848419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.024130119 + inSlope: 0.044151086 + outSlope: 0.044151086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.019816382 + inSlope: 0.049453683 + outSlope: 0.049453683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.017702121 + inSlope: 0.048922755 + outSlope: 0.048922755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.015501092 + inSlope: 0.052729674 + outSlope: 0.052729674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.014186809 + inSlope: 0.043781154 + outSlope: 0.043781154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.012582348 + inSlope: 0.08414378 + outSlope: 0.08414378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.008577224 + inSlope: 0.094654694 + outSlope: 0.094654694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0062720375 + inSlope: 0.06897037 + outSlope: 0.06897037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0039791996 + inSlope: 0.09297815 + outSlope: 0.09297815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.00007348878 + inSlope: 0.088162355 + outSlope: 0.088162355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0018982922 + inSlope: 0.027858377 + outSlope: 0.027858377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0017837343 + inSlope: -0.0035026912 + outSlope: -0.0035026912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0016647795 + inSlope: -0.024612242 + outSlope: -0.024612242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00014291708 + inSlope: -0.033338644 + outSlope: -0.033338644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0005577972 + inSlope: -0.020998798 + outSlope: -0.020998798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0012570026 + inSlope: -0.0051573175 + outSlope: -0.0051573175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0009016186 + inSlope: 0.01069426 + outSlope: 0.01069426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.00018723031 + inSlope: 0.010726633 + outSlope: 0.010726633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.00017105676 + inSlope: 0.010827363 + outSlope: 0.010827363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0005345938 + inSlope: 0.008697098 + outSlope: 0.008697098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0007508634 + inSlope: 0.0064946627 + outSlope: 0.0064946627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.0018620677 + inSlope: 0.0070082312 + outSlope: 0.0070082312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.002103202 + inSlope: 0.006955907 + outSlope: 0.006955907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0023257944 + inSlope: 0.01605082 + outSlope: 0.01605082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0031732556 + inSlope: 0.025463443 + outSlope: 0.025463443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0040233587 + inSlope: -0.00046199 + outSlope: -0.00046199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0031424593 + inSlope: -0.026494134 + outSlope: -0.026494134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0022570847 + inSlope: -0.033062104 + outSlope: -0.033062104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.00093831646 + inSlope: -0.05872892 + outSlope: -0.05872892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.0016581776 + inSlope: -0.050086472 + outSlope: -0.050086472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.0024007785 + inSlope: -0.022278763 + outSlope: -0.022278763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.003143427 + inSlope: -0.005300012 + outSlope: -0.005300012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.0027541108 + inSlope: 0.0115133375 + outSlope: 0.0115133375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.0020004604 + inSlope: 0.011296048 + outSlope: 0.011296048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.0016228 + inSlope: 0.0028493826 + outSlope: 0.0028493826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.0018105004 + inSlope: -0.0056613768 + outSlope: -0.0056613768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.0029234844 + inSlope: -0.0057276357 + outSlope: -0.0057276357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.003118851 + inSlope: -0.014615022 + outSlope: -0.014615022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.003897819 + inSlope: -0.023382839 + outSlope: -0.023382839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.0046777055 + inSlope: -0.031792507 + outSlope: -0.031792507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.006017322 + inSlope: -0.04254791 + outSlope: -0.04254791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.0075142295 + inSlope: -0.044962607 + outSlope: -0.044962607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.009014832 + inSlope: -0.035785355 + outSlope: -0.035785355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.009899928 + inSlope: -0.026789412 + outSlope: -0.026789412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.010800791 + inSlope: -0.017914282 + outSlope: -0.017914282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.0110942125 + inSlope: -0.008863815 + outSlope: -0.008863815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.012019999 + inSlope: -0.00912418 + outSlope: -0.00912418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.012324209 + inSlope: -0.02358302 + outSlope: -0.02358302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.013592201 + inSlope: -0.037769534 + outSlope: -0.037769534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.014842176 + inSlope: -0.03173066 + outSlope: -0.03173066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.015707577 + inSlope: -0.025911517 + outSlope: -0.025911517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.016569609 + inSlope: -0.044755604 + outSlope: -0.044755604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.01869128 + inSlope: -0.04840967 + outSlope: -0.04840967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.020907255 + inSlope: -0.044488635 + outSlope: -0.044488635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.022762831 + inSlope: -0.03913053 + outSlope: -0.03913053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.024267577 + inSlope: -0.035460178 + outSlope: -0.035460178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.025879964 + inSlope: -0.0507007 + outSlope: -0.0507007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.02764762 + inSlope: -0.023882776 + outSlope: -0.023882776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.027472148 + inSlope: 0.0052863685 + outSlope: 0.0052863685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.02693258 + inSlope: 0.0054845638 + outSlope: 0.0054845638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03772621 + inSlope: -0.0029310954 + outSlope: -0.0029310954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.03830563 + inSlope: -0.018397607 + outSlope: -0.018397607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.03989619 + inSlope: -0.020625122 + outSlope: -0.020625122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.04062091 + inSlope: -0.0345925 + outSlope: -0.0345925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.043663383 + inSlope: -0.032467585 + outSlope: -0.032467585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.043518346 + inSlope: 0.03308778 + outSlope: 0.03308778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.042012963 + inSlope: 0.07891903 + outSlope: 0.07891903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.038257077 + inSlope: 0.08705482 + outSlope: 0.08705482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.034362447 + inSlope: 0.06428641 + outSlope: 0.06428641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.031923547 + inSlope: 0.041693572 + outSlope: 0.041693572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.031885874 + inSlope: -0.013655801 + outSlope: -0.013655801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.033379465 + inSlope: -0.014257328 + outSlope: -0.014257328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.03225082 + inSlope: 0.036147412 + outSlope: 0.036147412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.030827101 + inSlope: 0.033392925 + outSlope: 0.033392925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.029055592 + inSlope: 0.046265297 + outSlope: 0.046265297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.026940273 + inSlope: 0.046939846 + outSlope: 0.046939846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.02499918 + inSlope: 0.03433668 + outSlope: 0.03433668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.022006335 + inSlope: 0.046497285 + outSlope: 0.046497285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.020537337 + inSlope: 0.053569354 + outSlope: 0.053569354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.01843504 + inSlope: 0.119703546 + outSlope: 0.119703546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.012557101 + inSlope: 0.13639638 + outSlope: 0.13639638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.009341958 + inSlope: 0.09727086 + outSlope: 0.09727086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.0060723834 + inSlope: 0.12089285 + outSlope: 0.12089285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.0012824245 + inSlope: 0.104487516 + outSlope: 0.104487516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0008934618 + inSlope: 0.03744668 + outSlope: 0.03744668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0012140186 + inSlope: 0.004030173 + outSlope: 0.004030173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.0011621396 + inSlope: -0.001954741 + outSlope: -0.001954741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.0010837024 + inSlope: 0.00056974986 + outSlope: 0.00056974986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.0012001229 + inSlope: 0.0046629375 + outSlope: 0.0046629375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0013945646 + inSlope: 0.008152265 + outSlope: 0.008152265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.0017436079 + inSlope: 0.0057648816 + outSlope: 0.0057648816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.001778891 + inSlope: -0.00097456825 + outSlope: -0.00097456825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.0016786368 + inSlope: -0.0066386075 + outSlope: -0.0066386075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.0013363163 + inSlope: -0.0075391196 + outSlope: -0.0075391196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.001176028 + inSlope: -0.0017318111 + outSlope: -0.0017318111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.0012208624 + inSlope: 0.002113911 + outSlope: 0.002113911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.0013169553 + inSlope: 0.0035599596 + outSlope: 0.0035599596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.0014581933 + inSlope: 0.002574444 + outSlope: 0.002574444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.0011251298 + inSlope: -0.011406807 + outSlope: -0.011406807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.0006378561 + inSlope: -0.011665916 + outSlope: -0.011665916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.00034740104 + inSlope: -0.0112451045 + outSlope: -0.0112451045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.00011181686 + inSlope: -0.01881592 + outSlope: -0.01881592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.0009069952 + inSlope: -0.025357764 + outSlope: -0.025357764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.0027653608 + inSlope: -0.02970287 + outSlope: -0.02970287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.003782529 + inSlope: -0.036293574 + outSlope: -0.036293574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.00518493 + inSlope: -0.03496953 + outSlope: -0.03496953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.0061138286 + inSlope: -0.03248668 + outSlope: -0.03248668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0073507065 + inSlope: -0.06752871 + outSlope: -0.06752871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.010615738 + inSlope: -0.07759452 + outSlope: -0.07759452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.0144298235 + inSlope: -0.07699925 + outSlope: -0.07699925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.017656961 + inSlope: -0.07424575 + outSlope: -0.07424575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.019379536 + inSlope: -0.03038982 + outSlope: -0.03038982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.019833313 + inSlope: -0.012885372 + outSlope: -0.012885372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.021456594 + inSlope: -0.034873545 + outSlope: -0.034873545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.022866882 + inSlope: -0.07705892 + outSlope: -0.07705892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.02659386 + inSlope: -0.08485777 + outSlope: -0.08485777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.030183962 + inSlope: -0.055168368 + outSlope: -0.055168368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.03220195 + inSlope: -0.040167265 + outSlope: -0.040167265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.032861777 + inSlope: -0.026577812 + outSlope: -0.026577812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.037382297 + inSlope: -0.027320895 + outSlope: -0.027320895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.004536224 + inSlope: -0.026926953 + outSlope: -0.026926953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.003638659 + inSlope: -0.01407061 + outSlope: -0.01407061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0035981834 + inSlope: -0.0013538378 + outSlope: -0.0013538378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.003548403 + inSlope: 0.005927878 + outSlope: 0.005927878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.003993375 + inSlope: 0.0103225205 + outSlope: 0.0103225205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.004236571 + inSlope: 0.003904179 + outSlope: 0.003904179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.003749439 + inSlope: -0.026990911 + outSlope: -0.026990911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00245426 + inSlope: -0.031807613 + outSlope: -0.031807613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0016289316 + inSlope: -0.02530107 + outSlope: -0.02530107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0007675219 + inSlope: -0.039061714 + outSlope: -0.039061714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0009751827 + inSlope: -0.039877944 + outSlope: -0.039877944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0018910085 + inSlope: -0.027641557 + outSlope: -0.027641557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.002817954 + inSlope: -0.045600627 + outSlope: -0.045600627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.00493105 + inSlope: -0.048827805 + outSlope: -0.048827805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0060731396 + inSlope: -0.032999083 + outSlope: -0.032999083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0071309884 + inSlope: -0.040242963 + outSlope: -0.040242963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.008756006 + inSlope: -0.031236678 + outSlope: -0.031236678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.009024493 + inSlope: 0.010583611 + outSlope: 0.010583611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.008507861 + inSlope: 0.027229931 + outSlope: 0.027229931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.007209164 + inSlope: 0.029965285 + outSlope: 0.029965285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.005788808 + inSlope: 0.03266198 + outSlope: 0.03266198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0043327077 + inSlope: 0.048265368 + outSlope: 0.048265368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0025711176 + inSlope: 0.04224421 + outSlope: 0.04224421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.001516428 + inSlope: 0.033587307 + outSlope: 0.033587307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.00033196423 + inSlope: 0.05553148 + outSlope: 0.05553148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0021856718 + inSlope: 0.05574308 + outSlope: 0.05574308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.003384242 + inSlope: 0.031872857 + outSlope: 0.031872857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.004310527 + inSlope: 0.02773203 + outSlope: 0.02773203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0052330457 + inSlope: 0.0051055616 + outSlope: 0.0051055616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0046509006 + inSlope: -0.019152828 + outSlope: -0.019152828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.0039561917 + inSlope: -0.021380397 + outSlope: -0.021380397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.0032255396 + inSlope: -0.024265863 + outSlope: -0.024265863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0023384665 + inSlope: -0.0084000155 + outSlope: -0.0084000155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.002665539 + inSlope: 0.013379514 + outSlope: 0.013379514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0032304332 + inSlope: 0.053586513 + outSlope: 0.053586513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0062379804 + inSlope: 0.10941604 + outSlope: 0.10941604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.010524839 + inSlope: 0.09775152 + outSlope: 0.09775152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.012754742 + inSlope: 0.06650845 + outSlope: 0.06650845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.014958739 + inSlope: 0.093679786 + outSlope: 0.093679786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.019000063 + inSlope: 0.08784944 + outSlope: 0.08784944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.022379529 + inSlope: 0.061549887 + outSlope: 0.061549887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.024918694 + inSlope: 0.051557865 + outSlope: 0.051557865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.02647518 + inSlope: 0.02457884 + outSlope: 0.02457884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.028745169 + inSlope: 0.033581793 + outSlope: 0.033581793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.030876476 + inSlope: 0.0567675 + outSlope: 0.0567675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.033478606 + inSlope: 0.056772225 + outSlope: 0.056772225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.035632834 + inSlope: 0.032548692 + outSlope: 0.032548692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.037360124 + inSlope: 0.011970794 + outSlope: 0.011970794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.038207795 + inSlope: -0.00045475375 + outSlope: -0.00045475375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.038111407 + inSlope: -0.0214877 + outSlope: -0.0214877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.036775284 + inSlope: -0.033702716 + outSlope: -0.033702716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.034728438 + inSlope: -0.056935698 + outSlope: -0.056935698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.032068852 + inSlope: -0.06245292 + outSlope: -0.06245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.028988965 + inSlope: -0.07024874 + outSlope: -0.07024874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.025881657 + inSlope: -0.08468027 + outSlope: -0.08468027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.023343619 + inSlope: -0.052168988 + outSlope: -0.052168988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.021768821 + inSlope: -0.021094477 + outSlope: -0.021094477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.020997431 + inSlope: -0.014967831 + outSlope: -0.014967831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.020482332 + inSlope: -0.016825007 + outSlope: -0.016825007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.019649299 + inSlope: -0.021205565 + outSlope: -0.021205565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.01837113 + inSlope: -0.034399476 + outSlope: -0.034399476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.014740712 + inSlope: -0.06596399 + outSlope: -0.06596399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.012377737 + inSlope: -0.0758657 + outSlope: -0.0758657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.007151389 + inSlope: -0.06614673 + outSlope: -0.06614673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.005273206 + inSlope: -0.05634554 + outSlope: -0.05634554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.19208843 + inSlope: 0.00028699634 + outSlope: 0.00028699634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.1956261 + inSlope: 0.0549797 + outSlope: 0.0549797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.19385326 + inSlope: 0.0071559106 + outSlope: 0.0071559106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.20033129 + inSlope: 0.04882202 + outSlope: 0.04882202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.20836438 + inSlope: 0.0213405 + outSlope: 0.0213405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.2049635 + inSlope: -0.0453676 + outSlope: -0.0453676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.19334401 + inSlope: -0.04702804 + outSlope: -0.04702804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.19443613 + inSlope: 0.061000954 + outSlope: 0.061000954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.19996297 + inSlope: 0.058460005 + outSlope: 0.058460005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.19876043 + inSlope: -0.03913682 + outSlope: -0.03913682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.18771154 + inSlope: -0.01072729 + outSlope: -0.01072729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.1881968 + inSlope: 0.0048487503 + outSlope: 0.0048487503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.19778574 + inSlope: 0.024852406 + outSlope: 0.024852406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.19342251 + inSlope: -0.07908791 + outSlope: -0.07908791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.1892482 + inSlope: -0.09261295 + outSlope: -0.09261295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.18362528 + inSlope: -0.03912855 + outSlope: -0.03912855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.18548338 + inSlope: 0.06313299 + outSlope: 0.06313299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.19146027 + inSlope: 0.047630712 + outSlope: 0.047630712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.004739906 + inSlope: -0.061984856 + outSlope: -0.061984856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.006806068 + inSlope: -0.047341496 + outSlope: -0.047341496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.007896006 + inSlope: -0.033896998 + outSlope: -0.033896998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.009065868 + inSlope: -0.055827424 + outSlope: -0.055827424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.011617835 + inSlope: -0.058890752 + outSlope: -0.058890752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.014422228 + inSlope: -0.064771205 + outSlope: -0.064771205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.020100554 + inSlope: -0.06179665 + outSlope: -0.06179665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.022612829 + inSlope: -0.046357684 + outSlope: -0.046357684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.024520287 + inSlope: -0.03888015 + outSlope: -0.03888015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.025090845 + inSlope: 0.010932607 + outSlope: 0.010932607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.024208177 + inSlope: 0.013247419 + outSlope: 0.013247419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.023777246 + inSlope: -0.003130991 + outSlope: -0.003130991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.024416909 + inSlope: -0.019023988 + outSlope: -0.019023988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.025733178 + inSlope: -0.024764247 + outSlope: -0.024764247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.026696462 + inSlope: -0.015487287 + outSlope: -0.015487287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.026765665 + inSlope: 0.0014754912 + outSlope: 0.0014754912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.026598096 + inSlope: 0.018844124 + outSlope: 0.018844124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.023902657 + inSlope: 0.037304983 + outSlope: 0.037304983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.022099175 + inSlope: 0.04195284 + outSlope: 0.04195284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.020225534 + inSlope: 0.04186684 + outSlope: 0.04186684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.018420272 + inSlope: 0.03875074 + outSlope: 0.03875074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.01476499 + inSlope: 0.048374414 + outSlope: 0.048374414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.013499707 + inSlope: 0.04295194 + outSlope: 0.04295194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.011901524 + inSlope: 0.083326645 + outSlope: 0.083326645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.007944597 + inSlope: 0.09205214 + outSlope: 0.09205214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0057647205 + inSlope: 0.06557067 + outSlope: 0.06557067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.0035732235 + inSlope: 0.08940594 + outSlope: 0.08940594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.00019568292 + inSlope: 0.09800494 + outSlope: 0.09800494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0029604465 + inSlope: 0.058808956 + outSlope: 0.058808956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0041162763 + inSlope: 0.034001872 + outSlope: 0.034001872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.00522724 + inSlope: 0.054159828 + outSlope: 0.054159828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.007726932 + inSlope: 0.05889557 + outSlope: 0.05889557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.009153607 + inSlope: 0.04429136 + outSlope: 0.04429136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.010679686 + inSlope: 0.069262095 + outSlope: 0.069262095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.013771087 + inSlope: 0.06891826 + outSlope: 0.06891826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.016687965 + inSlope: 0.06230302 + outSlope: 0.06230302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.022115491 + inSlope: 0.06036697 + outSlope: 0.06036697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.024711108 + inSlope: 0.053332165 + outSlope: 0.053332165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.027007727 + inSlope: 0.049283337 + outSlope: 0.049283337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.028813634 + inSlope: 0.031147461 + outSlope: 0.031147461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.030832877 + inSlope: 0.015260961 + outSlope: 0.015260961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.030611692 + inSlope: -0.0095121255 + outSlope: -0.0095121255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.030264206 + inSlope: -0.019785948 + outSlope: -0.019785948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.02929263 + inSlope: -0.024584677 + outSlope: -0.024584677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.027773159 + inSlope: -0.043929484 + outSlope: -0.043929484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.0256966 + inSlope: -0.048640538 + outSlope: -0.048640538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.023359332 + inSlope: -0.0491243 + outSlope: -0.0491243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.0212555 + inSlope: -0.05452992 + outSlope: -0.05452992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.019724008 + inSlope: -0.03156974 + outSlope: -0.03156974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.018618962 + inSlope: -0.027357552 + outSlope: -0.027357552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.017327018 + inSlope: -0.03300322 + outSlope: -0.03300322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.01641875 + inSlope: -0.031197278 + outSlope: -0.031197278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.015247193 + inSlope: -0.060638785 + outSlope: -0.060638785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.012376159 + inSlope: -0.06609245 + outSlope: -0.06609245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.009360218 + inSlope: -0.060417164 + outSlope: -0.060417164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.006813227 + inSlope: -0.07093139 + outSlope: -0.07093139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.0024197646 + inSlope: -0.070373535 + outSlope: -0.070373535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.0000601181 + inSlope: -0.071871944 + outSlope: -0.071871944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.0023717114 + inSlope: -0.06023051 + outSlope: -0.06023051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.0040754816 + inSlope: -0.05111315 + outSlope: -0.05111315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0039536664 + inSlope: -0.0010886556 + outSlope: -0.0010886556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.003844667 + inSlope: 0.0047783484 + outSlope: 0.0047783484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0036204038 + inSlope: 0.0045473087 + outSlope: 0.0045473087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.003541513 + inSlope: 0.0011419262 + outSlope: 0.0011419262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0038088372 + inSlope: -0.012809347 + outSlope: -0.012809347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.004398232 + inSlope: -0.014098918 + outSlope: -0.014098918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0051043797 + inSlope: -0.0146268625 + outSlope: -0.0146268625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.005723889 + inSlope: -0.013469388 + outSlope: -0.013469388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0062512932 + inSlope: -0.01219032 + outSlope: -0.01219032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.006815027 + inSlope: -0.013305822 + outSlope: -0.013305822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.007445566 + inSlope: -0.011774615 + outSlope: -0.011774615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.007923323 + inSlope: -0.00746973 + outSlope: -0.00746973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0077648233 + inSlope: 0.007854287 + outSlope: 0.007854287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0074199294 + inSlope: 0.018079488 + outSlope: 0.018079488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0065595238 + inSlope: 0.019874472 + outSlope: 0.019874472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.005636941 + inSlope: 0.020573903 + outSlope: 0.020573903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0047233696 + inSlope: 0.029676503 + outSlope: 0.029676503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.003658508 + inSlope: 0.025649764 + outSlope: 0.025649764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.003013386 + inSlope: 0.020589478 + outSlope: 0.020589478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0022858763 + inSlope: 0.034335144 + outSlope: 0.034335144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.00072437566 + inSlope: 0.034524392 + outSlope: 0.034524392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.00001575054 + inSlope: 0.019898873 + outSlope: 0.019898873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00060221466 + inSlope: 0.018472087 + outSlope: 0.018472087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0012472242 + inSlope: 0.007971134 + outSlope: 0.007971134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0011336254 + inSlope: -0.005041283 + outSlope: -0.005041283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.00091113895 + inSlope: -0.0063627483 + outSlope: -0.0063627483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.00070944184 + inSlope: -0.0029791186 + outSlope: -0.0029791186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0007125305 + inSlope: 0.0061036237 + outSlope: 0.0061036237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0011163497 + inSlope: 0.014092455 + outSlope: 0.014092455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0016520267 + inSlope: 0.035360817 + outSlope: 0.035360817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0034737417 + inSlope: 0.060703516 + outSlope: 0.060703516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0056989305 + inSlope: 0.049997345 + outSlope: 0.049997345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0068068947 + inSlope: 0.0325118 + outSlope: 0.0325118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.007866385 + inSlope: 0.044509284 + outSlope: 0.044509284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.009774181 + inSlope: 0.04141019 + outSlope: 0.04141019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.011342096 + inSlope: 0.026954018 + outSlope: 0.026954018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.012423999 + inSlope: 0.020216454 + outSlope: 0.020216454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.012689862 + inSlope: 0.00776056 + outSlope: 0.00776056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.013790686 + inSlope: 0.012144411 + outSlope: 0.012144411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.014280708 + inSlope: 0.02415074 + outSlope: 0.02415074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.0154007375 + inSlope: 0.024909206 + outSlope: 0.024909206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.016389659 + inSlope: 0.015192969 + outSlope: 0.015192969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.016954187 + inSlope: 0.011416432 + outSlope: 0.011416432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.017187918 + inSlope: -0.000905243 + outSlope: -0.000905243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.016676888 + inSlope: -0.009116221 + outSlope: -0.009116221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.016339662 + inSlope: -0.01919477 + outSlope: -0.01919477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.015397238 + inSlope: -0.023285452 + outSlope: -0.023285452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.01404542 + inSlope: -0.037385657 + outSlope: -0.037385657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.012294925 + inSlope: -0.04110766 + outSlope: -0.04110766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.0102817025 + inSlope: -0.044560783 + outSlope: -0.044560783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.008334189 + inSlope: -0.051471062 + outSlope: -0.051471062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.0068503018 + inSlope: -0.029928733 + outSlope: -0.029928733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.006338942 + inSlope: -0.012688649 + outSlope: -0.012688649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0060043926 + inSlope: -0.0114422375 + outSlope: -0.0114422375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.0055761267 + inSlope: -0.009393761 + outSlope: -0.009393761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.0051304917 + inSlope: -0.014475415 + outSlope: -0.014475415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.004413114 + inSlope: -0.017229801 + outSlope: -0.017229801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.0035174543 + inSlope: -0.020560056 + outSlope: -0.020560056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.0026111703 + inSlope: -0.028880369 + outSlope: -0.028880369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0015920982 + inSlope: -0.034369785 + outSlope: -0.034369785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.00031985354 + inSlope: -0.04100019 + outSlope: -0.04100019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.0011412557 + inSlope: -0.042626947 + outSlope: -0.042626947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.0025219508 + inSlope: -0.036119357 + outSlope: -0.036119357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.0035492105 + inSlope: -0.030817822 + outSlope: -0.030817822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06672238 + inSlope: 0.0053811814 + outSlope: 0.0053811814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.067285165 + inSlope: 0.0020023808 + outSlope: 0.0020023808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.06860665 + inSlope: 0.005516411 + outSlope: 0.005516411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.071437314 + inSlope: 0.010376918 + outSlope: 0.010376918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.071099326 + inSlope: -0.0029316572 + outSlope: -0.0029316572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.06931664 + inSlope: -0.0011123355 + outSlope: -0.0011123355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.06894403 + inSlope: -0.0011112139 + outSlope: -0.0011112139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.06683215 + inSlope: -0.0010390216 + outSlope: -0.0010390216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.06669387 + inSlope: -0.0010219226 + outSlope: -0.0010219226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.009534893 + inSlope: -0.008836761 + outSlope: -0.008836761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.009973705 + inSlope: -0.004366957 + outSlope: -0.004366957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.010120582 + inSlope: -0.006797402 + outSlope: -0.006797402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.010426865 + inSlope: -0.0070441663 + outSlope: -0.0070441663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.01076706 + inSlope: -0.008460287 + outSlope: -0.008460287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.011575564 + inSlope: -0.009622579 + outSlope: -0.009622579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.012006158 + inSlope: -0.008868767 + outSlope: -0.008868767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.012386968 + inSlope: -0.008062594 + outSlope: -0.008062594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.012760397 + inSlope: -0.001585926 + outSlope: -0.001585926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.012548924 + inSlope: 0.0063973777 + outSlope: 0.0063973777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.012131643 + inSlope: 0.0048238277 + outSlope: 0.0048238277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.011526594 + inSlope: 0.0031581903 + outSlope: 0.0031581903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.011599 + inSlope: -0.00038119534 + outSlope: -0.00038119534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.011760834 + inSlope: 0.0054838234 + outSlope: 0.0054838234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.011508579 + inSlope: 0.013895413 + outSlope: 0.013895413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.010034212 + inSlope: 0.017646983 + outSlope: 0.017646983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.009321864 + inSlope: 0.013401387 + outSlope: 0.013401387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.008764581 + inSlope: 0.011933942 + outSlope: 0.011933942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.0083110165 + inSlope: 0.009630583 + outSlope: 0.009630583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.007884229 + inSlope: 0.009482301 + outSlope: 0.009482301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.007483955 + inSlope: 0.008231423 + outSlope: 0.008231423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.006820906 + inSlope: 0.006849139 + outSlope: 0.006849139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.0065280707 + inSlope: 0.006446562 + outSlope: 0.006446562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.0062437197 + inSlope: 0.006247938 + outSlope: 0.006247938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.005995835 + inSlope: 0.0045032864 + outSlope: 0.0045032864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.005687839 + inSlope: 0.002656137 + outSlope: 0.002656137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.0055398326 + inSlope: 0.0004766562 + outSlope: 0.0004766562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.0056690327 + inSlope: -0.0015073125 + outSlope: -0.0015073125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.0058926623 + inSlope: -0.0053615803 + outSlope: -0.0053615803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.0061787087 + inSlope: -0.0026112515 + outSlope: -0.0026112515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.006431454 + inSlope: -0.0014158534 + outSlope: -0.0014158534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.006739292 + inSlope: -0.004272651 + outSlope: -0.004272651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.0069094277 + inSlope: -0.009663764 + outSlope: -0.009663764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.0079886755 + inSlope: -0.014966866 + outSlope: -0.014966866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.008792593 + inSlope: -0.01174997 + outSlope: -0.01174997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.009431764 + inSlope: -0.008012939 + outSlope: -0.008012939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010181571 + inSlope: -0.0045534964 + outSlope: -0.0045534964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.009851243 + inSlope: -0.004282566 + outSlope: -0.004282566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00956098 + inSlope: -0.0028574043 + outSlope: -0.0028574043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.009091657 + inSlope: -0.0017556596 + outSlope: -0.0017556596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.008647818 + inSlope: -0.0019677759 + outSlope: -0.0019677759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.008421317 + inSlope: -0.0015699166 + outSlope: -0.0015699166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.008083058 + inSlope: -0.0003655909 + outSlope: -0.0003655909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.008299112 + inSlope: 0.0036408885 + outSlope: 0.0036408885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.008546364 + inSlope: 0.0021439532 + outSlope: 0.0021439532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.008734695 + inSlope: -0.00007068745 + outSlope: -0.00007068745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.009070396 + inSlope: 0.0017541524 + outSlope: 0.0017541524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.009338629 + inSlope: 0.0010936998 + outSlope: 0.0010936998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.009741067 + inSlope: 0.002516529 + outSlope: 0.002516529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.009896781 + inSlope: 0.00006845061 + outSlope: 0.00006845061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.0101758 + inSlope: 0.00018194254 + outSlope: 0.00018194254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.010180243 + inSlope: 0.000000027939704 + outSlope: 0.000000027939704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.18177108 + inSlope: -0.07115811 + outSlope: -0.07115811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.17267132 + inSlope: -0.048033003 + outSlope: -0.048033003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.15949325 + inSlope: -0.045793347 + outSlope: -0.045793347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.16704643 + inSlope: 0.064786516 + outSlope: 0.064786516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.1719657 + inSlope: 0.05057707 + outSlope: 0.05057707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.17954871 + inSlope: 0.13111141 + outSlope: 0.13111141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.19077948 + inSlope: 0.072024085 + outSlope: 0.072024085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.200733 + inSlope: 0.22425602 + outSlope: 0.22425602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.20957552 + inSlope: 0.20925452 + outSlope: 0.20925452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.21984847 + inSlope: 0.21702641 + outSlope: 0.21702641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.22915173 + inSlope: 0.19490737 + outSlope: 0.19490737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.23545176 + inSlope: 0.08187771 + outSlope: 0.08187771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.24291772 + inSlope: 0.07125635 + outSlope: 0.07125635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.2431803 + inSlope: -0.11407851 + outSlope: -0.11407851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.22404481 + inSlope: -0.04646641 + outSlope: -0.04646641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.21131541 + inSlope: -0.0782343 + outSlope: -0.0782343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.20745589 + inSlope: -0.09125555 + outSlope: -0.09125555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.20130634 + inSlope: -0.061799943 + outSlope: -0.061799943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.18889879 + inSlope: -0.075749174 + outSlope: -0.075749174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.18239568 + inSlope: -0.049088944 + outSlope: -0.049088944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23446158 + inSlope: -0.4834306 + outSlope: -0.4834306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.25057593 + inSlope: -0.3462517 + outSlope: -0.3462517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.26345915 + inSlope: -0.2353929 + outSlope: -0.2353929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.27323788 + inSlope: -0.20954403 + outSlope: -0.20954403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.2812794 + inSlope: -0.17410217 + outSlope: -0.17410217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.29696965 + inSlope: -0.17808126 + outSlope: -0.17808126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.30462888 + inSlope: -0.15560658 + outSlope: -0.15560658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.31411397 + inSlope: -0.076716065 + outSlope: -0.076716065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.31911352 + inSlope: 0.047735263 + outSlope: 0.047735263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.30640897 + inSlope: 0.07316218 + outSlope: 0.07316218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.29391038 + inSlope: 0.10608281 + outSlope: 0.10608281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.28302652 + inSlope: 0.24282739 + outSlope: 0.24282739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.2681682 + inSlope: 0.21740529 + outSlope: 0.21740529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.25961587 + inSlope: 0.49654776 + outSlope: 0.49654776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.23506503 + inSlope: 0.6148297 + outSlope: 0.6148297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.21862726 + inSlope: 0.54249674 + outSlope: 0.54249674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.19889861 + inSlope: 0.9598503 + outSlope: 0.9598503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.15463714 + inSlope: 1.3392539 + outSlope: 1.3392539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.10961495 + inSlope: 0.9855021 + outSlope: 0.9855021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.08893707 + inSlope: 0.57960016 + outSlope: 0.57960016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.070974916 + inSlope: 0.70288354 + outSlope: 0.70288354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.042078145 + inSlope: 0.60257405 + outSlope: 0.60257405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.03080335 + inSlope: 0.30432573 + outSlope: 0.30432573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.021789782 + inSlope: 0.36273193 + outSlope: 0.36273193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.0066211903 + inSlope: 0.3298943 + outSlope: 0.3298943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.00020320452 + inSlope: 0.19804466 + outSlope: 0.19804466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.0065817744 + inSlope: 0.28712773 + outSlope: 0.28712773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.01934508 + inSlope: 0.3795814 + outSlope: 0.3795814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.031887222 + inSlope: 0.28012338 + outSlope: 0.28012338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.038019955 + inSlope: 0.17982793 + outSlope: 0.17982793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.04387574 + inSlope: 0.25104973 + outSlope: 0.25104973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.054756626 + inSlope: 0.23642194 + outSlope: 0.23642194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.06375263 + inSlope: 0.15596625 + outSlope: 0.15596625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.070034966 + inSlope: 0.1413649 + outSlope: 0.1413649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.07345225 + inSlope: -0.012062755 + outSlope: -0.012062755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.06745532 + inSlope: -0.09035367 + outSlope: -0.09035367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.06439727 + inSlope: -0.1265355 + outSlope: -0.1265355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.05901963 + inSlope: -0.12854645 + outSlope: -0.12854645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.052136093 + inSlope: -0.18088135 + outSlope: -0.18088135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.043768767 + inSlope: -0.19451371 + outSlope: -0.19451371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.039168525 + inSlope: -0.14464995 + outSlope: -0.14464995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.03412541 + inSlope: -0.24109751 + outSlope: -0.24109751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.023095338 + inSlope: -0.36417192 + outSlope: -0.36417192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.009847306 + inSlope: -0.31441396 + outSlope: -0.31441396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.0021344265 + inSlope: -0.25068223 + outSlope: -0.25068223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.006864828 + inSlope: -0.44951743 + outSlope: -0.44951743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.027833374 + inSlope: -0.49298823 + outSlope: -0.49298823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.03973068 + inSlope: -0.3734002 + outSlope: -0.3734002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.05272679 + inSlope: -0.6083941 + outSlope: -0.6083941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.08029034 + inSlope: -0.62790954 + outSlope: -0.62790954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.10909982 + inSlope: -0.6507631 + outSlope: -0.6507631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.13797155 + inSlope: -0.8506198 + outSlope: -0.8506198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.16580775 + inSlope: -0.6788362 + outSlope: -0.6788362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.18322726 + inSlope: -0.5359198 + outSlope: -0.5359198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.21800171 + inSlope: -0.4253183 + outSlope: -0.4253183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.22989036 + inSlope: -0.35665992 + outSlope: -0.35665992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14387299 + inSlope: -0.14679505 + outSlope: -0.14679505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.13635595 + inSlope: -0.08139117 + outSlope: -0.08139117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.13355374 + inSlope: -0.13142489 + outSlope: -0.13142489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.12759429 + inSlope: -0.13606054 + outSlope: -0.13606054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.12129765 + inSlope: -0.14371744 + outSlope: -0.14371744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.108532876 + inSlope: -0.1430687 + outSlope: -0.1430687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.10221411 + inSlope: -0.14087152 + outSlope: -0.14087152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.09597253 + inSlope: -0.13979927 + outSlope: -0.13979927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.08989041 + inSlope: -0.13189596 + outSlope: -0.13189596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.084101096 + inSlope: -0.12829547 + outSlope: -0.12829547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.07872226 + inSlope: -0.112605855 + outSlope: -0.112605855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.069609724 + inSlope: -0.0928304 + outSlope: -0.0928304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.06615913 + inSlope: -0.051689852 + outSlope: -0.051689852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.06419564 + inSlope: -0.03247896 + outSlope: -0.03247896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.063993864 + inSlope: -0.0020736866 + outSlope: -0.0020736866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0655505 + inSlope: 0.05422612 + outSlope: 0.05422612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.06767247 + inSlope: 0.044357497 + outSlope: 0.044357497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.06822649 + inSlope: -0.0066247266 + outSlope: -0.0066247266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.06821161 + inSlope: 0.038933307 + outSlope: 0.038933307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.07082204 + inSlope: 0.076899454 + outSlope: 0.076899454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.07333823 + inSlope: 0.092491955 + outSlope: 0.092491955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.076988176 + inSlope: 0.19653025 + outSlope: 0.19653025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.08644025 + inSlope: 0.22530007 + outSlope: 0.22530007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.09798629 + inSlope: 0.26974657 + outSlope: 0.26974657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.120853305 + inSlope: 0.23273459 + outSlope: 0.23273459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.12950899 + inSlope: 0.15504703 + outSlope: 0.15504703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.1358434 + inSlope: 0.13391253 + outSlope: 0.13391253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.14060788 + inSlope: 0.0965985 + outSlope: 0.0965985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.14487639 + inSlope: 0.09706006 + outSlope: 0.09706006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.14935471 + inSlope: 0.104941055 + outSlope: 0.104941055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.15869446 + inSlope: 0.10227563 + outSlope: 0.10227563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.16303378 + inSlope: 0.09627887 + outSlope: 0.09627887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.16953644 + inSlope: 0.06745941 + outSlope: 0.06745941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.17636298 + inSlope: 0.12676938 + outSlope: 0.12676938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.18318005 + inSlope: 0.0062558115 + outSlope: 0.0062558115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.18052314 + inSlope: -0.07505946 + outSlope: -0.07505946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.17144649 + inSlope: -0.06872832 + outSlope: -0.06872832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.16845831 + inSlope: -0.06674936 + outSlope: -0.06674936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.16400462 + inSlope: -0.045200184 + outSlope: -0.045200184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.14470814 + inSlope: -0.06468019 + outSlope: -0.06468019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49592596 + inSlope: 0.049478706 + outSlope: 0.049478706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.51988465 + inSlope: 0.09260685 + outSlope: 0.09260685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.5381198 + inSlope: 0.119439706 + outSlope: 0.119439706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.56591207 + inSlope: 0.18987715 + outSlope: 0.18987715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.5851026 + inSlope: 0.09536764 + outSlope: 0.09536764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.58497566 + inSlope: -0.06110525 + outSlope: -0.06110525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.56520396 + inSlope: -0.06790363 + outSlope: -0.06790363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.5375537 + inSlope: -0.104613155 + outSlope: -0.104613155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.52323353 + inSlope: -0.038726613 + outSlope: -0.038726613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.50957304 + inSlope: -0.065351054 + outSlope: -0.065351054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.4920574 + inSlope: 0.014563962 + outSlope: 0.014563962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.49578768 + inSlope: 0.0072562764 + outSlope: 0.0072562764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.088393375 + inSlope: -0.018337144 + outSlope: -0.018337144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.08778214 + inSlope: 0.024947003 + outSlope: 0.024947003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.09410271 + inSlope: 0.08761223 + outSlope: 0.08761223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0989415 + inSlope: 0.044928223 + outSlope: 0.044928223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.100416966 + inSlope: -0.055984635 + outSlope: -0.055984635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09159923 + inSlope: -0.11561172 + outSlope: -0.11561172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.08744439 + inSlope: -0.015174353 + outSlope: -0.015174353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.08806999 + inSlope: 0.09276588 + outSlope: 0.09276588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.09781094 + inSlope: 0.04550252 + outSlope: 0.04550252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.096662275 + inSlope: 0.09964432 + outSlope: 0.09964432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.1044539 + inSlope: 0.19469404 + outSlope: 0.19469404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.10964188 + inSlope: 0.081782416 + outSlope: 0.081782416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.11011803 + inSlope: 0.046906102 + outSlope: 0.046906102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11303313 + inSlope: 0.05695624 + outSlope: 0.05695624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.10933998 + inSlope: -0.08551531 + outSlope: -0.08551531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.10520257 + inSlope: 0.016174406 + outSlope: 0.016174406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.10764144 + inSlope: -0.0019617113 + outSlope: -0.0019617113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.10959976 + inSlope: 0.06804427 + outSlope: 0.06804427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.114452705 + inSlope: 0.05100717 + outSlope: 0.05100717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.11590178 + inSlope: 0.059903815 + outSlope: 0.059903815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.1184463 + inSlope: 0.019449696 + outSlope: 0.019449696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.11719844 + inSlope: -0.0026064403 + outSlope: -0.0026064403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.1187254 + inSlope: 0.0052672806 + outSlope: 0.0052672806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.11935433 + inSlope: -0.013716765 + outSlope: -0.013716765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.11797354 + inSlope: -0.009164335 + outSlope: -0.009164335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.115370005 + inSlope: -0.06856436 + outSlope: -0.06856436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.11180516 + inSlope: -0.034476142 + outSlope: -0.034476142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.11065948 + inSlope: -0.07393205 + outSlope: -0.07393205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.10687635 + inSlope: -0.0788243 + outSlope: -0.0788243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.10443346 + inSlope: -0.042658005 + outSlope: -0.042658005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.10029276 + inSlope: -0.01935361 + outSlope: -0.01935361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.099141605 + inSlope: -0.014799214 + outSlope: -0.014799214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0986514 + inSlope: -0.057553668 + outSlope: -0.057553668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.095304675 + inSlope: -0.07237521 + outSlope: -0.07237521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.09242876 + inSlope: -0.012863216 + outSlope: -0.012863216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.09211023 + inSlope: -0.061362404 + outSlope: -0.061362404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.088337936 + inSlope: -0.06902571 + outSlope: -0.06902571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.08750852 + inSlope: -0.024897093 + outSlope: -0.024897093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.08727672 + inSlope: 0.0076199397 + outSlope: 0.0076199397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.08787392 + inSlope: -0.024878696 + outSlope: -0.024878696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.08577636 + inSlope: 0.016268652 + outSlope: 0.016268652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.08809625 + inSlope: 0.021545982 + outSlope: 0.021545982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0338451 + inSlope: -0.067606084 + outSlope: -0.067606084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.031591564 + inSlope: -0.081377156 + outSlope: -0.081377156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.028419957 + inSlope: -0.0673228 + outSlope: -0.0673228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.027103378 + inSlope: -0.03186218 + outSlope: -0.03186218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.026295811 + inSlope: 0.0022578891 + outSlope: 0.0022578891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.027253903 + inSlope: 0.022994574 + outSlope: 0.022994574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.027828783 + inSlope: -0.03502703 + outSlope: -0.03502703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.024918769 + inSlope: -0.1693483 + outSlope: -0.1693483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.016538898 + inSlope: -0.37527424 + outSlope: -0.37527424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.00009951114 + inSlope: -0.5892886 + outSlope: -0.5892886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.022747008 + inSlope: -0.624937 + outSlope: -0.624937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.041761976 + inSlope: -0.45827398 + outSlope: -0.45827398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.057392664 + inSlope: -0.028705783 + outSlope: -0.028705783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.055212334 + inSlope: 0.095713526 + outSlope: 0.095713526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.043751135 + inSlope: 0.25026834 + outSlope: 0.25026834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.026223658 + inSlope: 0.18956044 + outSlope: 0.18956044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.017610505 + inSlope: 0.15802574 + outSlope: 0.15802574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.011154789 + inSlope: 0.15979871 + outSlope: 0.15979871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.006957257 + inSlope: 0.064152084 + outSlope: 0.064152084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0068779867 + inSlope: -0.08015543 + outSlope: -0.08015543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.012300957 + inSlope: -0.23202635 + outSlope: -0.23202635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.022346405 + inSlope: -0.30936408 + outSlope: -0.30936408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.03292523 + inSlope: -0.227079 + outSlope: -0.227079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.03748501 + inSlope: -0.018780988 + outSlope: -0.018780988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.03417729 + inSlope: 0.1567267 + outSlope: 0.1567267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.027036568 + inSlope: 0.23361643 + outSlope: 0.23361643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.00946079 + inSlope: 0.26989627 + outSlope: 0.26989627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0006097742 + inSlope: 0.24253169 + outSlope: 0.24253169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.006707974 + inSlope: 0.24422061 + outSlope: 0.24422061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.015671616 + inSlope: 0.3056407 + outSlope: 0.3056407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.027084034 + inSlope: 0.2610978 + outSlope: 0.2610978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.03307812 + inSlope: 0.08696853 + outSlope: 0.08696853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.03288193 + inSlope: -0.07322356 + outSlope: -0.07322356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.028196536 + inSlope: -0.12766774 + outSlope: -0.12766774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.02437074 + inSlope: -0.038222462 + outSlope: -0.038222462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.025648374 + inSlope: 0.07599149 + outSlope: 0.07599149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.029436847 + inSlope: 0.16033044 + outSlope: 0.16033044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.036337074 + inSlope: 0.19678232 + outSlope: 0.19678232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.04911501 + inSlope: 0.21959028 + outSlope: 0.21959028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.057195023 + inSlope: 0.21778643 + outSlope: 0.21778643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.069068044 + inSlope: 0.16550657 + outSlope: 0.16550657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.0746679 + inSlope: 0.1009578 + outSlope: 0.1009578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.07490948 + inSlope: -0.037560128 + outSlope: -0.037560128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.069504686 + inSlope: -0.007945046 + outSlope: -0.007945046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.0726234 + inSlope: 0.07806663 + outSlope: 0.07806663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.07533214 + inSlope: 0.05411157 + outSlope: 0.05411157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.07623085 + inSlope: 0.017634759 + outSlope: 0.017634759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.07650779 + inSlope: -0.030214656 + outSlope: -0.030214656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.07421653 + inSlope: -0.053652115 + outSlope: -0.053652115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.07203348 + inSlope: -0.059658997 + outSlope: -0.059658997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.06587444 + inSlope: -0.0680723 + outSlope: -0.0680723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.06300118 + inSlope: -0.047146015 + outSlope: -0.047146015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.060524177 + inSlope: -0.022387948 + outSlope: -0.022387948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.055872153 + inSlope: -0.029756008 + outSlope: -0.029756008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.05488193 + inSlope: -0.058788937 + outSlope: -0.058788937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.051952895 + inSlope: -0.052191813 + outSlope: -0.052191813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.05140248 + inSlope: -0.03369946 + outSlope: -0.03369946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.047379714 + inSlope: -0.052114703 + outSlope: -0.052114703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.04508221 + inSlope: -0.055838563 + outSlope: -0.055838563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.039673667 + inSlope: -0.065262735 + outSlope: -0.065262735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.038158532 + inSlope: -0.046075758 + outSlope: -0.046075758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.034212697 + inSlope: -0.030158898 + outSlope: -0.030158898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7944855 + inSlope: 0.056489106 + outSlope: 0.056489106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.816237 + inSlope: 0.13632329 + outSlope: 0.13632329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.85705173 + inSlope: 0.14148389 + outSlope: 0.14148389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.8893054 + inSlope: 0.14887339 + outSlope: 0.14887339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.91771996 + inSlope: 0.1383145 + outSlope: 0.1383145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.9038975 + inSlope: -0.15864655 + outSlope: -0.15864655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.8641286 + inSlope: -0.10010259 + outSlope: -0.10010259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.8176676 + inSlope: -0.06027542 + outSlope: -0.06027542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.7944545 + inSlope: -0.0031524927 + outSlope: -0.0031524927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07539513 + inSlope: -0.023622436 + outSlope: -0.023622436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.074607715 + inSlope: -0.002876334 + outSlope: -0.002876334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.074141234 + inSlope: -0.06252218 + outSlope: -0.06252218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.06839191 + inSlope: -0.07461335 + outSlope: -0.07461335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.066061005 + inSlope: -0.056958817 + outSlope: -0.056958817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.06762684 + inSlope: 0.21059455 + outSlope: 0.21059455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.07863429 + inSlope: 0.3989452 + outSlope: 0.3989452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09422319 + inSlope: 0.4063964 + outSlope: 0.4063964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.11560656 + inSlope: -0.000009387732 + outSlope: -0.000009387732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.11321803 + inSlope: -0.07970926 + outSlope: -0.07970926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.105740376 + inSlope: -0.1585724 + outSlope: -0.1585724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.09434841 + inSlope: -0.1098516 + outSlope: -0.1098516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.092397675 + inSlope: -0.074550234 + outSlope: -0.074550234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.08434332 + inSlope: 0.09591214 + outSlope: 0.09591214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.098141514 + inSlope: 0.24327973 + outSlope: 0.24327973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.109584436 + inSlope: 0.02148099 + outSlope: 0.02148099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.09703786 + inSlope: -0.16271117 + outSlope: -0.16271117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.091867074 + inSlope: -0.12868631 + outSlope: -0.12868631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.08845876 + inSlope: -0.13763265 + outSlope: -0.13763265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.08269157 + inSlope: -0.16669078 + outSlope: -0.16669078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.077346034 + inSlope: -0.16570452 + outSlope: -0.16570452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.06845945 + inSlope: -0.039009973 + outSlope: -0.039009973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.07465566 + inSlope: 0.02271822 + outSlope: 0.02271822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.06824383 + inSlope: -0.09647691 + outSlope: -0.09647691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.05474499 + inSlope: -0.09270276 + outSlope: -0.09270276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.050612524 + inSlope: -0.0027501434 + outSlope: -0.0027501434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.05179773 + inSlope: 0.04085584 + outSlope: 0.04085584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.055129733 + inSlope: 0.07028502 + outSlope: 0.07028502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.058021918 + inSlope: 0.06310831 + outSlope: 0.06310831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.059312858 + inSlope: -0.0037875525 + outSlope: -0.0037875525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.05895706 + inSlope: -0.0042183925 + outSlope: -0.0042183925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.058852427 + inSlope: 0.022002824 + outSlope: 0.022002824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.060423918 + inSlope: 0.036710054 + outSlope: 0.036710054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.062361132 + inSlope: 0.04566856 + outSlope: 0.04566856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.066185355 + inSlope: 0.041002966 + outSlope: 0.041002966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.06793017 + inSlope: 0.034958046 + outSlope: 0.034958046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.070141844 + inSlope: 0.02153406 + outSlope: 0.02153406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.073982134 + inSlope: 0.018303748 + outSlope: 0.018303748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.07569683 + inSlope: 0.012411935 + outSlope: 0.012411935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.075859316 + inSlope: 0.016594794 + outSlope: 0.016594794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.07555609 + inSlope: -0.011481207 + outSlope: -0.011481207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16695957 + inSlope: 0.08052885 + outSlope: 0.08052885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.16110946 + inSlope: 0.079059675 + outSlope: 0.079059675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.15544263 + inSlope: 0.0641126 + outSlope: 0.0641126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.14829683 + inSlope: 0.16670646 + outSlope: 0.16670646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.14207974 + inSlope: 0.14947237 + outSlope: 0.14947237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.1341584 + inSlope: 0.17322378 + outSlope: 0.17322378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.12678376 + inSlope: 0.16702625 + outSlope: 0.16702625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.11986414 + inSlope: 0.12465501 + outSlope: 0.12465501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.11471298 + inSlope: 0.11033572 + outSlope: 0.11033572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.11046975 + inSlope: 0.105180845 + outSlope: 0.105180845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.10052732 + inSlope: 0.11913549 + outSlope: 0.11913549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.09160449 + inSlope: 0.12556049 + outSlope: 0.12556049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08650325 + inSlope: 0.081748545 + outSlope: 0.081748545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.086154595 + inSlope: 0.09503416 + outSlope: 0.09503416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.08016764 + inSlope: 0.15296324 + outSlope: 0.15296324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.075957045 + inSlope: 0.14267117 + outSlope: 0.14267117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.070656225 + inSlope: 0.12975855 + outSlope: 0.12975855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.067306474 + inSlope: 0.09972096 + outSlope: 0.09972096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.06400816 + inSlope: 0.07718496 + outSlope: 0.07718496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.06014172 + inSlope: 0.10914108 + outSlope: 0.10914108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.048989296 + inSlope: 0.11537393 + outSlope: 0.11537393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.047193136 + inSlope: 0.04369557 + outSlope: 0.04369557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.04598847 + inSlope: -0.019191168 + outSlope: -0.019191168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.047355667 + inSlope: -0.050576452 + outSlope: -0.050576452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.04936023 + inSlope: -0.10709697 + outSlope: -0.10709697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.060018055 + inSlope: -0.12444031 + outSlope: -0.12444031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.065673254 + inSlope: -0.1314119 + outSlope: -0.1314119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.071552284 + inSlope: -0.13436002 + outSlope: -0.13436002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.077524506 + inSlope: -0.12271917 + outSlope: -0.12271917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.08281187 + inSlope: -0.11602783 + outSlope: -0.11602783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.087488346 + inSlope: -0.109083265 + outSlope: -0.109083265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.09684359 + inSlope: -0.100927815 + outSlope: -0.100927815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.101715274 + inSlope: -0.10719332 + outSlope: -0.10719332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.10640668 + inSlope: -0.10517575 + outSlope: -0.10517575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.11104699 + inSlope: -0.10472505 + outSlope: -0.10472505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.120494604 + inSlope: -0.110088214 + outSlope: -0.110088214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.12554203 + inSlope: -0.11477625 + outSlope: -0.11477625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.13069965 + inSlope: -0.11655805 + outSlope: -0.11655805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.13591534 + inSlope: -0.11565289 + outSlope: -0.11565289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.14566615 + inSlope: -0.09977827 + outSlope: -0.09977827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.14940585 + inSlope: -0.07050752 + outSlope: -0.07050752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.15373284 + inSlope: -0.038525146 + outSlope: -0.038525146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.16128433 + inSlope: -0.038091876 + outSlope: -0.038091876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.16611758 + inSlope: -0.010363566 + outSlope: -0.010363566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.1662116 + inSlope: -0.029899508 + outSlope: -0.029899508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.1682579 + inSlope: 0.003955815 + outSlope: 0.003955815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.16594788 + inSlope: 0.006771244 + outSlope: 0.006771244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.16780649 + inSlope: -0.024481686 + outSlope: -0.024481686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.16706084 + inSlope: 0.0071829627 + outSlope: 0.0071829627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22096124 + inSlope: -0.13990715 + outSlope: -0.13990715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.24251641 + inSlope: -0.074754715 + outSlope: -0.074754715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.25291115 + inSlope: -0.2834456 + outSlope: -0.2834456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.29033455 + inSlope: -0.45443776 + outSlope: -0.45443776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.31474286 + inSlope: -0.21932414 + outSlope: -0.21932414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.33738014 + inSlope: -0.058464102 + outSlope: -0.058464102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.3530208 + inSlope: -0.2411038 + outSlope: -0.2411038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.37142125 + inSlope: -0.014997573 + outSlope: -0.014997573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.36883864 + inSlope: 0.03081141 + outSlope: 0.03081141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.3489223 + inSlope: 0.09795374 + outSlope: 0.09795374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.32804933 + inSlope: 0.22032583 + outSlope: 0.22032583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.31481475 + inSlope: 0.15341675 + outSlope: 0.15341675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.30352762 + inSlope: 0.1235449 + outSlope: 0.1235449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.29058465 + inSlope: 0.2601705 + outSlope: 0.2601705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.27774704 + inSlope: 0.12541887 + outSlope: 0.12541887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.2637012 + inSlope: 0.09619507 + outSlope: 0.09619507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.24581861 + inSlope: 0.09947585 + outSlope: 0.09947585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.2206129 + inSlope: 0.06965368 + outSlope: 0.06965368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.22035244 + inSlope: -0.005304073 + outSlope: -0.005304073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.22045082 + inSlope: -0.0003500286 + outSlope: -0.0003500286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000000034150947 + inSlope: 0.011868135 + outSlope: 0.011868135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.00079117494 + inSlope: -0.020553067 + outSlope: -0.020553067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0013702383 + inSlope: -0.13173613 + outSlope: -0.13173613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.007991233 + inSlope: -0.20340115 + outSlope: -0.20340115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.014930316 + inSlope: -0.12221874 + outSlope: -0.12221874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.016139152 + inSlope: 0.078587055 + outSlope: 0.078587055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00969118 + inSlope: 0.2064757 + outSlope: 0.2064757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0023741054 + inSlope: 0.1453672 + outSlope: 0.1453672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000000034150947 + inSlope: 0.03561107 + outSlope: 0.03561107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.000000034150947 + inSlope: -0.029069996 + outSlope: -0.029069996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.001938032 + inSlope: -0.0923234 + outSlope: -0.0923234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.006154929 + inSlope: -0.13010645 + outSlope: -0.13010645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.010611795 + inSlope: -0.0679329 + outSlope: -0.0679329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.010683784 + inSlope: 0.09203655 + outSlope: 0.09203655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0044760304 + inSlope: 0.14838713 + outSlope: 0.14838713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.00079131156 + inSlope: 0.06713989 + outSlope: 0.06713989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.000000034150947 + inSlope: 0.011869151 + outSlope: 0.011869151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.000000034150947 + inSlope: 0.0000035858523 + outSlope: 0.0000035858523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.00000020490565 + inSlope: 0.0000035858523 + outSlope: 0.0000035858523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.00000020490565 + inSlope: -0.0000035858523 + outSlope: -0.0000035858523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.000000034150947 + inSlope: -0.0000035858523 + outSlope: -0.0000035858523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.000000034150947 + inSlope: 0.0000035858395 + outSlope: 0.0000035858395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.00000020490565 + inSlope: 0.0000035858395 + outSlope: 0.0000035858395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.00000020490565 + inSlope: -0.0000035858523 + outSlope: -0.0000035858523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.000000034150947 + inSlope: -0.0000035858523 + outSlope: -0.0000035858523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.000000034150947 + inSlope: -0.050359726 + outSlope: -0.050359726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.0033573462 + inSlope: -0.10346736 + outSlope: -0.10346736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.006897852 + inSlope: -0.08444756 + outSlope: -0.08444756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.008987186 + inSlope: -0.0033598412 + outSlope: -0.0033598412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.0071218484 + inSlope: 0.077883 + outSlope: 0.077883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.0037949907 + inSlope: 0.09496583 + outSlope: 0.09496583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.0007907992 + inSlope: 0.056924358 + outSlope: 0.056924358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.000000034150947 + inSlope: 0.011861444 + outSlope: 0.011861444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.59368736 + inSlope: -0.0135952225 + outSlope: -0.0135952225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.57453454 + inSlope: -0.065495074 + outSlope: -0.065495074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5468291 + inSlope: -0.10362073 + outSlope: -0.10362073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.5333896 + inSlope: -0.076543055 + outSlope: -0.076543055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.5130643 + inSlope: 0.006119019 + outSlope: 0.006119019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.5298864 + inSlope: 0.07771619 + outSlope: 0.07771619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.5682444 + inSlope: 0.031854726 + outSlope: 0.031854726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.5829716 + inSlope: 0.06041503 + outSlope: 0.06041503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.5934842 + inSlope: 0.020590445 + outSlope: 0.020590445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10249719 + inSlope: -0.026468484 + outSlope: -0.026468484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.09682071 + inSlope: -0.03351531 + outSlope: -0.03351531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.095178224 + inSlope: 0.0018340724 + outSlope: 0.0018340724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.09387406 + inSlope: -0.013522474 + outSlope: -0.013522474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.094092004 + inSlope: -0.05054981 + outSlope: -0.05054981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.09075864 + inSlope: -0.078022026 + outSlope: -0.078022026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0866654 + inSlope: -0.09372893 + outSlope: -0.09372893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.08030627 + inSlope: -0.030698255 + outSlope: -0.030698255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08237522 + inSlope: 0.015101319 + outSlope: 0.015101319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08061207 + inSlope: -0.029456915 + outSlope: -0.029456915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.07963835 + inSlope: -0.03367935 + outSlope: -0.03367935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.07836678 + inSlope: 0.0043394063 + outSlope: 0.0043394063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.08249782 + inSlope: 0.049378663 + outSlope: 0.049378663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.083952256 + inSlope: 0.0373234 + outSlope: 0.0373234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.085707776 + inSlope: 0.029336575 + outSlope: 0.029336575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.086273424 + inSlope: 0.015065851 + outSlope: 0.015065851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.086912416 + inSlope: 0.007105961 + outSlope: 0.007105961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.086747155 + inSlope: 0.030362183 + outSlope: 0.030362183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.08893657 + inSlope: -0.014143642 + outSlope: -0.014143642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.08076804 + inSlope: -0.12880506 + outSlope: -0.12880506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.07721726 + inSlope: -0.1287232 + outSlope: -0.1287232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.072186485 + inSlope: -0.12732163 + outSlope: -0.12732163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.06482604 + inSlope: -0.009494521 + outSlope: -0.009494521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.06556244 + inSlope: 0.01135302 + outSlope: 0.01135302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.066071644 + inSlope: 0.046139155 + outSlope: 0.046139155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.0709839 + inSlope: 0.073533386 + outSlope: 0.073533386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.07354061 + inSlope: 0.09714022 + outSlope: 0.09714022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.08024454 + inSlope: 0.050742637 + outSlope: 0.050742637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.08122445 + inSlope: 0.036983676 + outSlope: 0.036983676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.08330835 + inSlope: 0.044631332 + outSlope: 0.044631332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.08642156 + inSlope: 0.05372739 + outSlope: 0.05372739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.093850896 + inSlope: 0.08592019 + outSlope: 0.08592019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.096863165 + inSlope: 0.036415607 + outSlope: 0.036415607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.096278585 + inSlope: 0.01509309 + outSlope: 0.01509309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.09973437 + inSlope: 0.028968778 + outSlope: 0.028968778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.09989778 + inSlope: 0.024561347 + outSlope: 0.024561347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.1016874 + inSlope: 0.0074385284 + outSlope: 0.0074385284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.104470655 + inSlope: -0.0045073447 + outSlope: -0.0045073447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.10333345 + inSlope: 0.028966771 + outSlope: 0.028966771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.105296075 + inSlope: 0.020243768 + outSlope: 0.020243768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.104799025 + inSlope: 0.014041155 + outSlope: 0.014041155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.104962185 + inSlope: -0.018811502 + outSlope: -0.018811502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.102798894 + inSlope: -0.03210987 + outSlope: -0.03210987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10358596 + inSlope: 0.13949275 + outSlope: 0.13949275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.12338419 + inSlope: 0.07590908 + outSlope: 0.07590908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.13103895 + inSlope: 0.15034498 + outSlope: 0.15034498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.14089595 + inSlope: 0.11850113 + outSlope: 0.11850113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.15256518 + inSlope: 0.14093685 + outSlope: 0.14093685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.1612011 + inSlope: -0.0048947847 + outSlope: -0.0048947847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.15699503 + inSlope: -0.010811113 + outSlope: -0.010811113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.15636036 + inSlope: -0.03988087 + outSlope: -0.03988087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.15317364 + inSlope: -0.089632645 + outSlope: -0.089632645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.14646903 + inSlope: 0.04306447 + outSlope: 0.04306447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.15019472 + inSlope: 0.0096952785 + outSlope: 0.0096952785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.14807779 + inSlope: -0.11166509 + outSlope: -0.11166509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.13696902 + inSlope: -0.14500013 + outSlope: -0.14500013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.12837824 + inSlope: -0.15356185 + outSlope: -0.15356185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.122643374 + inSlope: -0.15470582 + outSlope: -0.15470582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.111012004 + inSlope: -0.23467495 + outSlope: -0.23467495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.09328067 + inSlope: -0.28100324 + outSlope: -0.28100324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.08368599 + inSlope: -0.23543337 + outSlope: -0.23543337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.069331534 + inSlope: -0.098890126 + outSlope: -0.098890126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.06624381 + inSlope: -0.08739066 + outSlope: -0.08739066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.063505486 + inSlope: -0.011752745 + outSlope: -0.011752745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.06546029 + inSlope: 0.061216563 + outSlope: 0.061216563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0689922 + inSlope: -0.023660794 + outSlope: -0.023660794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.063019365 + inSlope: -0.04139782 + outSlope: -0.04139782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.062155902 + inSlope: -0.04756807 + outSlope: -0.04756807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.056383867 + inSlope: -0.09303493 + outSlope: -0.09303493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.05364583 + inSlope: -0.038897283 + outSlope: -0.038897283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.056068446 + inSlope: 0.118022874 + outSlope: 0.118022874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.06165891 + inSlope: 0.12419881 + outSlope: 0.12419881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.06596457 + inSlope: 0.06896362 + outSlope: 0.06896362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.07193175 + inSlope: 0.07019448 + outSlope: 0.07019448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.07522612 + inSlope: 0.060754437 + outSlope: 0.060754437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.07767587 + inSlope: 0.051016893 + outSlope: 0.051016893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.080708206 + inSlope: 0.033226006 + outSlope: 0.033226006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.08273105 + inSlope: 0.028930223 + outSlope: 0.028930223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.08370276 + inSlope: 0.05781306 + outSlope: 0.05781306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.08658525 + inSlope: 0.06718527 + outSlope: 0.06718527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.0897758 + inSlope: 0.058129836 + outSlope: 0.058129836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.09328958 + inSlope: 0.03442227 + outSlope: 0.03442227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.10105649 + inSlope: 0.037255663 + outSlope: 0.037255663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.103238486 + inSlope: 0.031391487 + outSlope: 0.031391487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8692918 + inSlope: -0.08959829 + outSlope: -0.08959829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.8340505 + inSlope: -0.018713757 + outSlope: -0.018713757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.80402255 + inSlope: -0.046321794 + outSlope: -0.046321794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.79258066 + inSlope: -0.020593125 + outSlope: -0.020593125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.8057145 + inSlope: 0.10809198 + outSlope: 0.10809198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.843693 + inSlope: 0.13334793 + outSlope: 0.13334793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.87439996 + inSlope: 0.0076094344 + outSlope: 0.0076094344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.86950874 + inSlope: -0.016624348 + outSlope: -0.016624348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11649264 + inSlope: -0.040392723 + outSlope: -0.040392723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.112806596 + inSlope: 0.008674041 + outSlope: 0.008674041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.11272859 + inSlope: -0.00480976 + outSlope: -0.00480976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.109427124 + inSlope: -0.017578753 + outSlope: -0.017578753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10916754 + inSlope: -0.042772595 + outSlope: -0.042772595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.103520945 + inSlope: -0.061621413 + outSlope: -0.061621413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.103607506 + inSlope: 0.030605339 + outSlope: 0.030605339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.10306032 + inSlope: -0.0002490013 + outSlope: -0.0002490013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.103507005 + inSlope: 0.04248403 + outSlope: 0.04248403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.10690879 + inSlope: 0.011333025 + outSlope: 0.011333025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.103983834 + inSlope: -0.010165342 + outSlope: -0.010165342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.10517621 + inSlope: 0.070046335 + outSlope: 0.070046335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.111392274 + inSlope: 0.0739726 + outSlope: 0.0739726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.120420836 + inSlope: 0.13648076 + outSlope: 0.13648076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.126559 + inSlope: 0.15865582 + outSlope: 0.15865582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.1309979 + inSlope: 0.17060742 + outSlope: 0.17060742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.14873366 + inSlope: 0.07632771 + outSlope: 0.07632771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.15102257 + inSlope: 0.027076926 + outSlope: 0.027076926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.144404 + inSlope: -0.105807446 + outSlope: -0.105807446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.13794816 + inSlope: -0.02807739 + outSlope: -0.02807739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.13970469 + inSlope: 0.017417166 + outSlope: 0.017417166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.14086007 + inSlope: 0.022531249 + outSlope: 0.022531249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.1380839 + inSlope: -0.102466494 + outSlope: -0.102466494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.13347301 + inSlope: -0.10302049 + outSlope: -0.10302049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.12793636 + inSlope: -0.061917514 + outSlope: -0.061917514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.12327243 + inSlope: -0.015393995 + outSlope: -0.015393995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.12315726 + inSlope: -0.03146861 + outSlope: -0.03146861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.118740104 + inSlope: -0.025974315 + outSlope: -0.025974315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.11634709 + inSlope: 0.010360043 + outSlope: 0.010360043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08223729 + inSlope: -0.12686826 + outSlope: -0.12686826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.08646623 + inSlope: -0.09887762 + outSlope: -0.09887762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0913838 + inSlope: -0.121940374 + outSlope: -0.121940374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09695849 + inSlope: -0.12953115 + outSlope: -0.12953115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.10333463 + inSlope: -0.14442812 + outSlope: -0.14442812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.11597361 + inSlope: -0.13977964 + outSlope: -0.13977964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.12174162 + inSlope: -0.116049916 + outSlope: -0.116049916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.12670305 + inSlope: -0.108703874 + outSlope: -0.108703874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.13085823 + inSlope: -0.062639646 + outSlope: -0.062639646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.13388656 + inSlope: -0.018948693 + outSlope: -0.018948693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.13875955 + inSlope: -0.074354425 + outSlope: -0.074354425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.143014 + inSlope: -0.100332245 + outSlope: -0.100332245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.14754796 + inSlope: -0.09882529 + outSlope: -0.09882529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.15467684 + inSlope: -0.10223822 + outSlope: -0.10223822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.16219741 + inSlope: -0.08473387 + outSlope: -0.08473387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.16743737 + inSlope: -0.04551691 + outSlope: -0.04551691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.17452787 + inSlope: 0.010312437 + outSlope: 0.010312437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.16945256 + inSlope: 0.00066541997 + outSlope: 0.00066541997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.16817822 + inSlope: 0.029242072 + outSlope: 0.029242072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.1637689 + inSlope: 0.09885008 + outSlope: 0.09885008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.15740563 + inSlope: 0.07555187 + outSlope: 0.07555187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.15488529 + inSlope: 0.119531795 + outSlope: 0.119531795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.14943683 + inSlope: 0.12540181 + outSlope: 0.12540181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.14348029 + inSlope: 0.1344758 + outSlope: 0.1344758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.13203804 + inSlope: 0.120153844 + outSlope: 0.120153844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.12722647 + inSlope: 0.097827405 + outSlope: 0.097827405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.12302801 + inSlope: 0.09332487 + outSlope: 0.09332487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.11888619 + inSlope: 0.099419296 + outSlope: 0.099419296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.10930101 + inSlope: 0.11580046 + outSlope: 0.11580046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.104132466 + inSlope: 0.107376866 + outSlope: 0.107376866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.099498376 + inSlope: 0.10001151 + outSlope: 0.10001151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.09609532 + inSlope: 0.0677476 + outSlope: 0.0677476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.08955031 + inSlope: 0.08047506 + outSlope: 0.08047506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.08542582 + inSlope: 0.099870026 + outSlope: 0.099870026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.08092553 + inSlope: 0.09431103 + outSlope: 0.09431103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.07735199 + inSlope: 0.050762117 + outSlope: 0.050762117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.07575427 + inSlope: -0.01873849 + outSlope: -0.01873849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.07860122 + inSlope: -0.085400164 + outSlope: -0.085400164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.08429419 + inSlope: -0.053601652 + outSlope: -0.053601652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.08502105 + inSlope: -0.021825379 + outSlope: -0.021825379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.08574922 + inSlope: 0.02241724 + outSlope: 0.02241724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.08080858 + inSlope: 0.025487602 + outSlope: 0.025487602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.08182738 + inSlope: -0.030564025 + outSlope: -0.030564025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.28464562 + inSlope: 0.20466952 + outSlope: 0.20466952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.2601736 + inSlope: 0.10720877 + outSlope: 0.10720877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.24890018 + inSlope: 0.23580016 + outSlope: 0.23580016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.23540252 + inSlope: 0.15054235 + outSlope: 0.15054235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.23062102 + inSlope: 0.19920701 + outSlope: 0.19920701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.2158654 + inSlope: 0.1814127 + outSlope: 0.1814127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.21002787 + inSlope: 0.22763216 + outSlope: 0.22763216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.20068993 + inSlope: 0.20570226 + outSlope: 0.20570226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.19201203 + inSlope: 0.17284587 + outSlope: 0.17284587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.17810895 + inSlope: 0.16620693 + outSlope: 0.16620693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.15415879 + inSlope: 0.08767113 + outSlope: 0.08767113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.14089091 + inSlope: 0.021504633 + outSlope: 0.021504633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.14056963 + inSlope: 0.015779868 + outSlope: 0.015779868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.13999087 + inSlope: -0.037276737 + outSlope: -0.037276737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.14875227 + inSlope: -0.052624304 + outSlope: -0.052624304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.14907119 + inSlope: -0.1090169 + outSlope: -0.1090169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.15602006 + inSlope: -0.19113998 + outSlope: -0.19113998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.17940381 + inSlope: -0.1291212 + outSlope: -0.1291212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.1855266 + inSlope: -0.056396626 + outSlope: -0.056396626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.20045799 + inSlope: -0.13859613 + outSlope: -0.13859613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.20511618 + inSlope: -0.18787128 + outSlope: -0.18787128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.21298276 + inSlope: -0.1824407 + outSlope: -0.1824407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.2216464 + inSlope: -0.18351513 + outSlope: -0.18351513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.23665401 + inSlope: -0.15707998 + outSlope: -0.15707998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.25018412 + inSlope: -0.107324935 + outSlope: -0.107324935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.28271887 + inSlope: -0.034435127 + outSlope: -0.034435127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.28503355 + inSlope: -0.003370646 + outSlope: -0.003370646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000001472037 + inSlope: -0.00003245673 + outSlope: -0.00003245673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000002553928 + inSlope: -0.000017941751 + outSlope: -0.000017941751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000026681537 + inSlope: -0.0000017133856 + outSlope: -0.0000017133856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0000026681537 + inSlope: 0.0000017133858 + outSlope: 0.0000017133858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.000002553928 + inSlope: 0.000019636796 + outSlope: 0.000019636796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0000013590341 + inSlope: -0.0000017133771 + outSlope: -0.0000017133771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0000026681537 + inSlope: 9.094947e-12 + outSlope: 9.094947e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0000013590341 + inSlope: 0.000017941753 + outSlope: 0.000017941753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0000013590341 + inSlope: -0.000017941753 + outSlope: -0.000017941753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000026681537 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0000013590341 + inSlope: 0.0000017134025 + outSlope: 0.0000017134025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.000002553928 + inSlope: -0.000017923394 + outSlope: -0.000017923394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.000002553928 + inSlope: 0.0000025296301 + outSlope: 0.0000025296301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0000023852858 + inSlope: 0.000017923394 + outSlope: 0.000017923394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0000013590341 + inSlope: 0.000020528918 + outSlope: 0.000020528918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0000010166908 + inSlope: 9.094947e-12 + outSlope: 9.094947e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0000013590341 + inSlope: -0.0000068301897 + outSlope: -0.0000068301897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.000001472037 + inSlope: -2.9558578e-12 + outSlope: -2.9558578e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0000013590341 + inSlope: -0.000016228385 + outSlope: -0.000016228385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.000002553928 + inSlope: -0.0000016950744 + outSlope: -0.0000016950744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.000001472037 + inSlope: 0.000016228352 + outSlope: 0.000016228352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.000001472037 + inSlope: 0.0000016950421 + outSlope: 0.0000016950421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0000013590341 + inSlope: -2.9558578e-12 + outSlope: -2.9558578e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.000001472037 + inSlope: -2.9558578e-12 + outSlope: -2.9558578e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0000013590341 + inSlope: -2.9558578e-12 + outSlope: -2.9558578e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0000013590341 + inSlope: 6.0254024e-12 + outSlope: 6.0254024e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.000001472037 + inSlope: 0.000020864949 + outSlope: 0.000020864949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000000031960926 + inSlope: 0.00000083460145 + outSlope: 0.00000083460145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.0000014163969 + inSlope: -0.000020864947 + outSlope: -0.000020864947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.0000013590341 + inSlope: -0.0000008346045 + outSlope: -0.0000008346045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0000013590341 + inSlope: 0.0000016950451 + outSlope: 0.0000016950451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.0000013590341 + inSlope: -0.000001695039 + outSlope: -0.000001695039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.000001472037 + inSlope: 6.0254024e-12 + outSlope: 6.0254024e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.0000013590341 + inSlope: 0.0000016950451 + outSlope: 0.0000016950451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.0000013590341 + inSlope: -0.0000016950451 + outSlope: -0.0000016950451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.000001472037 + inSlope: 0.000018776365 + outSlope: 0.000018776365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.00000010727754 + inSlope: -0.000016228247 + outSlope: -0.000016228247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.000002553928 + inSlope: -0.00001877623 + outSlope: -0.00001877623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.0000013590341 + inSlope: 0.00003878837 + outSlope: 0.00003878837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.000000031960926 + inSlope: 7.4578566e-11 + outSlope: 7.4578566e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.0000013590341 + inSlope: -0.000020864869 + outSlope: -0.000020864869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.0000013590341 + inSlope: -0.0000016950451 + outSlope: -0.0000016950451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.000001472037 + inSlope: -0.00001539379 + outSlope: -0.00001539379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.0000023852858 + inSlope: 0.0000016949898 + outSlope: 0.0000016949898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.0000013590341 + inSlope: 0.000013698691 + outSlope: 0.000013698691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.000001472037 + inSlope: 0.000018776365 + outSlope: 0.000018776365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.00000010727754 + inSlope: 0.0000016950453 + outSlope: 0.0000016950453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.0000013590341 + inSlope: -0.000018776365 + outSlope: -0.000018776365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.0000013590341 + inSlope: 0.00002769514 + outSlope: 0.00002769514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.00000048730686 + inSlope: 0.000020864944 + outSlope: 0.000020864944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.000000031960926 + inSlope: -0.000029390105 + outSlope: -0.000029390105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.000001472037 + inSlope: -0.000020864858 + outSlope: -0.000020864858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.0000013590341 + inSlope: 1.8189894e-11 + outSlope: 1.8189894e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.000001472037 + inSlope: -0.000001695033 + outSlope: -0.000001695033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.000001472037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.000001472037 + inSlope: 0.00002047141 + outSlope: 0.00002047141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.00000010727754 + inSlope: 0.00002047141 + outSlope: 0.00002047141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.00000010727754 + inSlope: -0.00002047141 + outSlope: -0.00002047141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.000001472037 + inSlope: 0.0000042196807 + outSlope: 0.0000042196807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.00000017403418 + inSlope: 0.0000016952108 + outSlope: 0.0000016952108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.0000013590341 + inSlope: -0.000024690926 + outSlope: -0.000024690926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.000001472037 + inSlope: -0.0000008604436 + outSlope: -0.0000008604436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.0000014163969 + inSlope: 0.00002047141 + outSlope: 0.00002047141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.00000010727754 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.0000014163969 + inSlope: 0.0000020885782 + outSlope: 0.0000020885782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.000000031960926 + inSlope: 0.00001963681 + outSlope: 0.00001963681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.00000010727754 + inSlope: -1.5006663e-11 + outSlope: -1.5006663e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.000000031960926 + inSlope: 0.000002088564 + outSlope: 0.000002088564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.000000031960926 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.000000031960926 + inSlope: -0.000020864944 + outSlope: -0.000020864944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.0000013590341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.000000031960926 + inSlope: 0.000020864944 + outSlope: 0.000020864944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.000000031960926 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.000000031960926 + inSlope: -0.000021725233 + outSlope: -0.000021725233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.0000014163969 + inSlope: 1.546141e-10 + outSlope: 1.546141e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.000000031960926 + inSlope: 0.000021725387 + outSlope: 0.000021725387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.000000031960926 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000010067413 + inSlope: 0.000006296577 + outSlope: 0.000006296577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000012166272 + inSlope: -0.00000701695 + outSlope: -0.00000701695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000053894456 + inSlope: -0.000010165239 + outSlope: -0.000010165239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.00000053894456 + inSlope: 0.00001016524 + outSlope: 0.00001016524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000012166272 + inSlope: 0.00000045356683 + outSlope: 0.00000045356683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00000056918236 + inSlope: -0.00001016524 + outSlope: -0.00001016524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000053894456 + inSlope: 1.9895197e-13 + outSlope: 1.9895197e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.00000056918236 + inSlope: 0.0000070169513 + outSlope: 0.0000070169513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.00000056918236 + inSlope: -0.0000070169513 + outSlope: -0.0000070169513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000053894456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00000056918236 + inSlope: 0.000010165231 + outSlope: 0.000010165231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0000012166272 + inSlope: 0.0000097116645 + outSlope: 0.0000097116645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0000012166272 + inSlope: 0.000014260683 + outSlope: 0.000014260683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000021673402 + inSlope: -0.000009711664 + outSlope: -0.000009711664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.00000056918236 + inSlope: -0.00004793139 + outSlope: -0.00004793139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0000010280856 + inSlope: -4.1836756e-11 + outSlope: -4.1836756e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00000056918236 + inSlope: 0.00003052239 + outSlope: 0.00003052239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000010067413 + inSlope: 1.1823431e-11 + outSlope: 1.1823431e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00000056918236 + inSlope: 0.0000031483032 + outSlope: 0.0000031483032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000012166272 + inSlope: 0.000006563396 + outSlope: 0.000006563396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000010067413 + inSlope: -0.000003148286 + outSlope: -0.000003148286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0000010067413 + inSlope: -0.0000065633785 + outSlope: -0.0000065633785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.00000056918236 + inSlope: 1.1823431e-11 + outSlope: 1.1823431e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0000010067413 + inSlope: 1.1823431e-11 + outSlope: 1.1823431e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.00000056918236 + inSlope: 1.1823431e-11 + outSlope: 1.1823431e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000056918236 + inSlope: -2.3646862e-11 + outSlope: -2.3646862e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0000010067413 + inSlope: -0.000009725047 + outSlope: -0.000009725047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00000007915193 + inSlope: 0.00002421251 + outSlope: 0.00002421251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.000002620907 + inSlope: 0.000009725136 + outSlope: 0.000009725136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.00000056918236 + inSlope: -0.000024212397 + outSlope: -0.000024212397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00000056918236 + inSlope: -0.0000065633903 + outSlope: -0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.00000056918236 + inSlope: 0.0000065633667 + outSlope: 0.0000065633667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0000010067413 + inSlope: -2.3646862e-11 + outSlope: -2.3646862e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.00000056918236 + inSlope: -0.0000065633903 + outSlope: -0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.00000056918236 + inSlope: 0.0000065633903 + outSlope: 0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.0000010067413 + inSlope: 0.0000074038257 + outSlope: 0.0000074038257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0000010627703 + inSlope: 0.0000031482832 + outSlope: 0.0000031482832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.0000012166272 + inSlope: -0.0000074038335 + outSlope: -0.0000074038335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.00000056918236 + inSlope: -0.000019436706 + outSlope: -0.000019436706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.00000007915193 + inSlope: -3.45608e-11 + outSlope: -3.45608e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.00000056918236 + inSlope: 0.0000097249895 + outSlope: 0.0000097249895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.00000056918236 + inSlope: 0.0000065633903 + outSlope: 0.0000065633903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.0000010067413 + inSlope: 0.00002397239 + outSlope: 0.00002397239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.0000021673402 + inSlope: -0.000006563305 + outSlope: -0.000006563305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.00000056918236 + inSlope: -0.000017408915 + outSlope: -0.000017408915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.0000010067413 + inSlope: 0.0000074038257 + outSlope: 0.0000074038257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.0000010627703 + inSlope: -0.00000656339 + outSlope: -0.00000656339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.00000056918236 + inSlope: -0.0000074038253 + outSlope: -0.0000074038253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.00000056918236 + inSlope: -0.0000060031007 + outSlope: -0.0000060031007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.00000016897603 + inSlope: -0.000009725023 + outSlope: -0.000009725023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.00000007915193 + inSlope: 0.000012566433 + outSlope: 0.000012566433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.0000010067413 + inSlope: 0.000009724941 + outSlope: 0.000009724941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.00000056918236 + inSlope: -7.048584e-11 + outSlope: -7.048584e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0000010067413 + inSlope: 0.000006563343 + outSlope: 0.000006563343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.0000010067413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.0000010067413 + inSlope: 0.0000008404353 + outSlope: 0.0000008404353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.0000010627703 + inSlope: 0.0000008404353 + outSlope: 0.0000008404353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.0000010627703 + inSlope: -0.0000008404353 + outSlope: -0.0000008404353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.0000010067413 + inSlope: 0.000023972385 + outSlope: 0.000023972385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0000026609277 + inSlope: -0.0000065631684 + outSlope: -0.0000065631684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.00000056918236 + inSlope: -0.000024812598 + outSlope: -0.000024812598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.0000010067413 + inSlope: 0.0000307759 + outSlope: 0.0000307759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.000002620907 + inSlope: 0.00000084043495 + outSlope: 0.00000084043495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.0000010627703 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.000002620907 + inSlope: -0.000017128848 + outSlope: -0.000017128848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.00000007915193 + inSlope: -0.000023372073 + outSlope: -0.000023372073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.0000010627703 + inSlope: 1.2369128e-10 + outSlope: 1.2369128e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.00000007915193 + inSlope: -0.000017128727 + outSlope: -0.000017128727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.00000007915193 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.00000007915193 + inSlope: 0.000009725024 + outSlope: 0.000009725024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.00000056918236 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.00000007915193 + inSlope: -0.000009725024 + outSlope: -0.000009725024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.00000007915193 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.00000007915193 + inSlope: 0.000040500632 + outSlope: 0.000040500632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.000002620907 + inSlope: -2.910383e-10 + outSlope: -2.910383e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.00000007915193 + inSlope: -0.000040500923 + outSlope: -0.000040500923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.00000007915193 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.60435414 + inSlope: -0.0644052 + outSlope: -0.0644052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.6261319 + inSlope: -0.10513544 + outSlope: -0.10513544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.64305013 + inSlope: 0.013566563 + outSlope: 0.013566563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.6506885 + inSlope: -0.10491807 + outSlope: -0.10491807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.63762426 + inSlope: 0.0835634 + outSlope: 0.0835634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.61969894 + inSlope: 0.028976826 + outSlope: 0.028976826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.60488987 + inSlope: 0.04150633 + outSlope: 0.04150633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33024672 + inSlope: -0.016851425 + outSlope: -0.016851425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.33239424 + inSlope: -0.017270746 + outSlope: -0.017270746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.33213547 + inSlope: -0.028612923 + outSlope: -0.028612923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.33046907 + inSlope: -0.0051927576 + outSlope: -0.0051927576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.32584828 + inSlope: -0.07400969 + outSlope: -0.07400969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.33114448 + inSlope: -0.0018167513 + outSlope: -0.0018167513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.32448313 + inSlope: -0.026330376 + outSlope: -0.026330376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.3317479 + inSlope: -0.00038132112 + outSlope: -0.00038132112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.3264298 + inSlope: -0.0039629675 + outSlope: -0.0039629675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.3299105 + inSlope: 0.023902975 + outSlope: 0.023902975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.19797798 + inSlope: 0.02516493 + outSlope: 0.02516493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.19410026 + inSlope: 0.073188104 + outSlope: 0.073188104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.1848029 + inSlope: 0.0366564 + outSlope: 0.0366564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.17909294 + inSlope: 0.053385563 + outSlope: 0.053385563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.16729732 + inSlope: 0.05083099 + outSlope: 0.05083099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.16198981 + inSlope: 0.03224507 + outSlope: 0.03224507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.15845811 + inSlope: -0.0071167834 + outSlope: -0.0071167834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.16245595 + inSlope: -0.075869575 + outSlope: -0.075869575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.16651231 + inSlope: -0.022000529 + outSlope: -0.022000529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.17485985 + inSlope: -0.08219199 + outSlope: -0.08219199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.17753132 + inSlope: -0.116238415 + outSlope: -0.116238415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.18260908 + inSlope: -0.10427545 + outSlope: -0.10427545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.18759125 + inSlope: -0.04053885 + outSlope: -0.04053885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.19226815 + inSlope: -0.09123774 + outSlope: -0.09123774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.2094279 + inSlope: -0.08445355 + outSlope: -0.08445355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.21467672 + inSlope: 0.006944916 + outSlope: 0.006944916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.21013336 + inSlope: -0.019334946 + outSlope: -0.019334946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.20444924 + inSlope: 0.066609114 + outSlope: 0.066609114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.19857058 + inSlope: 0.04746352 + outSlope: 0.04746352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7336934 + inSlope: 0.031882524 + outSlope: 0.031882524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7405736 + inSlope: 0.035442714 + outSlope: 0.035442714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7452899 + inSlope: 0.078813165 + outSlope: 0.078813165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7526999 + inSlope: -0.05618503 + outSlope: -0.05618503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.73939174 + inSlope: 0.035208497 + outSlope: 0.035208497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.72552305 + inSlope: 0.005596908 + outSlope: 0.005596908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.7167173 + inSlope: 0.015193834 + outSlope: 0.015193834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.73028797 + inSlope: 0.083772615 + outSlope: 0.083772615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.733544 + inSlope: 0.0060689505 + outSlope: 0.0060689505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13824494 + inSlope: 0.046697255 + outSlope: 0.046697255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.13981262 + inSlope: 0.0032074735 + outSlope: 0.0032074735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.14192304 + inSlope: 0.018210843 + outSlope: 0.018210843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.14014596 + inSlope: -0.06250707 + outSlope: -0.06250707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.13590707 + inSlope: -0.03240355 + outSlope: -0.03240355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.13650092 + inSlope: 0.041141517 + outSlope: 0.041141517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.1413508 + inSlope: 0.025368132 + outSlope: 0.025368132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.14562301 + inSlope: 0.0340307 + outSlope: 0.0340307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.14398275 + inSlope: -0.089642316 + outSlope: -0.089642316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.13986257 + inSlope: -0.094424576 + outSlope: -0.094424576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.13576442 + inSlope: -0.07444507 + outSlope: -0.07444507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.13147058 + inSlope: -0.031038105 + outSlope: -0.031038105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.12894127 + inSlope: 0.009786926 + outSlope: 0.009786926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.13495326 + inSlope: 0.01742073 + outSlope: 0.01742073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.1424431 + inSlope: 0.041536953 + outSlope: 0.041536953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.14309433 + inSlope: 0.015423136 + outSlope: 0.015423136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.14175192 + inSlope: -0.04139748 + outSlope: -0.04139748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.13841227 + inSlope: -0.014203205 + outSlope: -0.014203205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08188503 + inSlope: 0.0217849 + outSlope: 0.0217849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.08326453 + inSlope: -0.012838841 + outSlope: -0.012838841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.08513505 + inSlope: -0.029941157 + outSlope: -0.029941157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.086736076 + inSlope: -0.034753498 + outSlope: -0.034753498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.08882228 + inSlope: 0.0224082 + outSlope: 0.0224082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.08625198 + inSlope: 0.034758527 + outSlope: 0.034758527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.08502071 + inSlope: 0.052755013 + outSlope: 0.052755013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.08273498 + inSlope: 0.041894406 + outSlope: 0.041894406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.08116537 + inSlope: 0.027790233 + outSlope: 0.027790233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.07964948 + inSlope: 0.002871978 + outSlope: 0.002871978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.082217 + inSlope: -0.0030710204 + outSlope: -0.0030710204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.084299155 + inSlope: -0.012325992 + outSlope: -0.012325992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.083244585 + inSlope: 0.045859583 + outSlope: 0.045859583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.08074582 + inSlope: 0.030365316 + outSlope: 0.030365316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.07373699 + inSlope: 0.03534473 + outSlope: 0.03534473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.07023566 + inSlope: 0.017806755 + outSlope: 0.017806755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.06749338 + inSlope: -0.0022703803 + outSlope: -0.0022703803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.06856323 + inSlope: -0.01452507 + outSlope: -0.01452507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.07177736 + inSlope: -0.037784316 + outSlope: -0.037784316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.07410908 + inSlope: -0.007076009 + outSlope: -0.007076009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.077719375 + inSlope: -0.05707556 + outSlope: -0.05707556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.081431575 + inSlope: -0.013218274 + outSlope: -0.013218274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.081845716 + inSlope: -0.012424228 + outSlope: -0.012424228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04796894 + inSlope: 0.017305948 + outSlope: 0.017305948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.04561695 + inSlope: 0.029862981 + outSlope: 0.029862981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.044314183 + inSlope: 0.07241036 + outSlope: 0.07241036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.040789593 + inSlope: 0.11851504 + outSlope: 0.11851504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.03641318 + inSlope: 0.09766343 + outSlope: 0.09766343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.03247555 + inSlope: 0.0628198 + outSlope: 0.0628198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.030090712 + inSlope: 0.04053628 + outSlope: 0.04053628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.029773131 + inSlope: 0.010375842 + outSlope: 0.010375842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.029398989 + inSlope: 0.0026778786 + outSlope: 0.0026778786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.029731521 + inSlope: -0.006232754 + outSlope: -0.006232754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.030925142 + inSlope: -0.045685805 + outSlope: -0.045685805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.033055842 + inSlope: -0.058040302 + outSlope: -0.058040302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.03687058 + inSlope: -0.08734729 + outSlope: -0.08734729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.04061765 + inSlope: -0.07871493 + outSlope: -0.07871493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.042756107 + inSlope: -0.00678168 + outSlope: -0.00678168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.042570356 + inSlope: 0.030492438 + outSlope: 0.030492438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.04072328 + inSlope: 0.04472987 + outSlope: 0.04472987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.03852153 + inSlope: 0.039102636 + outSlope: 0.039102636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.036981523 + inSlope: 0.029365482 + outSlope: 0.029365482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0365323 + inSlope: -0.012574664 + outSlope: -0.012574664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.03740214 + inSlope: -0.05081479 + outSlope: -0.05081479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.039919954 + inSlope: -0.06608874 + outSlope: -0.06608874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.044110723 + inSlope: -0.11081087 + outSlope: -0.11081087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.049195446 + inSlope: -0.112236306 + outSlope: -0.112236306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.05357854 + inSlope: -0.06149473 + outSlope: -0.06149473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.05569279 + inSlope: -0.023454264 + outSlope: -0.023454264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.054176375 + inSlope: 0.034471545 + outSlope: 0.034471545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.05284406 + inSlope: 0.061403688 + outSlope: 0.061403688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.050082795 + inSlope: 0.06000426 + outSlope: 0.06000426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.047478877 + inSlope: 0.06243687 + outSlope: 0.06243687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.044681314 + inSlope: 0.06544945 + outSlope: 0.06544945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.041168433 + inSlope: 0.08705751 + outSlope: 0.08705751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.033794448 + inSlope: 0.0719344 + outSlope: 0.0719344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.03251611 + inSlope: 0.02612558 + outSlope: 0.02612558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.032052744 + inSlope: -0.00727366 + outSlope: -0.00727366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.034469374 + inSlope: -0.056006983 + outSlope: -0.056006983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.03673482 + inSlope: -0.111201584 + outSlope: -0.111201584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.04652157 + inSlope: -0.09414521 + outSlope: -0.09414521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.048159163 + inSlope: -0.042196386 + outSlope: -0.042196386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.051632155 + inSlope: -0.020576809 + outSlope: -0.020576809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.05247298 + inSlope: -0.04633716 + outSlope: -0.04633716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.054721296 + inSlope: -0.05237672 + outSlope: -0.05237672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.057021048 + inSlope: -0.035421006 + outSlope: -0.035421006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.05849879 + inSlope: -0.0012025908 + outSlope: -0.0012025908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.058920383 + inSlope: -0.030580733 + outSlope: -0.030580733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.060171753 + inSlope: -0.042727854 + outSlope: -0.042727854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.061768904 + inSlope: -0.09146219 + outSlope: -0.09146219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.06626923 + inSlope: -0.102866724 + outSlope: -0.102866724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.070485726 + inSlope: -0.04970185 + outSlope: -0.04970185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.06933309 + inSlope: 0.12017693 + outSlope: 0.12017693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.05683805 + inSlope: 0.13927552 + outSlope: 0.13927552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.054158024 + inSlope: 0.07644635 + outSlope: 0.07644635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.04845154 + inSlope: 0.03951624 + outSlope: 0.03951624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000011411439 + inSlope: -0.000023488778 + outSlope: -0.000023488778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000066884485 + inSlope: 0.000005160995 + outSlope: 0.000005160995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000045818072 + inSlope: -0.000013787938 + outSlope: -0.000013787938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0000015880412 + inSlope: 0.0000002738998 + outSlope: 0.0000002738998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000047644014 + inSlope: 0.00004439831 + outSlope: 0.00004439831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000013718461 + inSlope: 6.366463e-12 + outSlope: 6.366463e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000047644014 + inSlope: -0.000020798634 + outSlope: -0.000020798634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.000000014729832 + inSlope: -0.00000356809 + outSlope: -0.00000356809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000023856745 + inSlope: 0.0000037994596 + outSlope: 0.0000037994596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.00000023856745 + inSlope: -0.0000018667961 + outSlope: -0.0000018667961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000011411439 + inSlope: 0.000020433452 + outSlope: 0.000020433452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0000016007975 + inSlope: 0.000005434902 + outSlope: 0.000005434902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.00000047644014 + inSlope: -0.000016865346 + outSlope: -0.000016865346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.00000047644014 + inSlope: -0.0000073675496 + outSlope: -0.0000073675496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.000000014729832 + inSlope: -0.0000035680866 + outSlope: -0.0000035680866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00000023856745 + inSlope: 0.000008807458 + outSlope: 0.000008807458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00000057243403 + inSlope: -0.000003799456 + outSlope: -0.000003799456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.000000014729832 + inSlope: 0.000011991209 + outSlope: 0.000011991209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000013718461 + inSlope: 0.000017612856 + outSlope: 0.000017612856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.000001159459 + inSlope: -0.000013431097 + outSlope: -0.000013431097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000047644014 + inSlope: -0.000010519183 + outSlope: -0.000010519183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00000045818072 + inSlope: -0.000003568093 + outSlope: -0.000003568093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000023856745 + inSlope: -0.000005160997 + outSlope: -0.000005160997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.00000011411439 + inSlope: 0.000013813362 + outSlope: 0.000013813362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.000001159459 + inSlope: 0.000005434864 + outSlope: 0.000005434864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.00000047644014 + inSlope: -0.0000015929236 + outSlope: -0.0000015929236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0000010532652 + inSlope: 0.000010245276 + outSlope: 0.000010245276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.000001159459 + inSlope: 0.0000015929076 + outSlope: 0.0000015929076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.000001159459 + inSlope: -0.0000015929076 + outSlope: -0.0000015929076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0000010532652 + inSlope: -0.000015680183 + outSlope: -0.000015680183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000011411439 + inSlope: -5.0931703e-11 + outSlope: -5.0931703e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0000010532652 + inSlope: 0.0000051609486 + outSlope: 0.0000051609486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.00000045818072 + inSlope: -0.000008652385 + outSlope: -0.000008652385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.00000047644014 + inSlope: 0.00000027389146 + outSlope: 0.00000027389146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.00000047644014 + inSlope: 0.000010245292 + outSlope: 0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.000001159459 + inSlope: 0.000010245292 + outSlope: 0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.000001159459 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.000001159459 + inSlope: -0.000010245255 + outSlope: -0.000010245255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.00000047644014 + inSlope: 0.0000068302297 + outSlope: 0.0000068302297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0000016148048 + inSlope: -0.000005434893 + outSlope: -0.000005434893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00000011411439 + inSlope: -0.0000036444526 + outSlope: -0.0000036444526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.0000013718461 + inSlope: 0.000018865925 + outSlope: 0.000018865925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.0000013718461 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.0000013718461 + inSlope: -0.0000102452905 + outSlope: -0.0000102452905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0000006888274 + inSlope: -0.0000031858353 + outSlope: -0.0000031858353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.000001159459 + inSlope: 0.000007059455 + outSlope: 0.000007059455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.000001159459 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.000001159459 + inSlope: -0.000010245255 + outSlope: -0.000010245255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.00000047644014 + inSlope: 0.0000031858472 + outSlope: 0.0000031858472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0000013718461 + inSlope: 0.000010245292 + outSlope: 0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.000001159459 + inSlope: -0.000013431102 + outSlope: -0.000013431102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.00000047644014 + inSlope: -3.7289283e-11 + outSlope: -3.7289283e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.000001159459 + inSlope: 0.000016865339 + outSlope: 0.000016865339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.0000016007975 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.000001159459 + inSlope: -0.000016865377 + outSlope: -0.000016865377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.00000047644014 + inSlope: 0.0000068301324 + outSlope: 0.0000068301324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.0000016148048 + inSlope: 0.000010245231 + outSlope: 0.000010245231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.000001159459 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.0000016148048 + inSlope: 0.000003185823 + outSlope: 0.000003185823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.0000013718461 + inSlope: -0.0000068301915 + outSlope: -0.0000068301915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.000001159459 + inSlope: 0.0000034342158 + outSlope: 0.0000034342158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0000016007975 + inSlope: -4.7293724e-11 + outSlope: -4.7293724e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.000001159459 + inSlope: -0.0000034342745 + outSlope: -0.0000034342745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.0000013718461 + inSlope: 0.00000318581 + outSlope: 0.00000318581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.0000013718461 + inSlope: 0.0000036443835 + outSlope: 0.0000036443835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.0000016148048 + inSlope: -0.0000102452905 + outSlope: -0.0000102452905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.0000006888274 + inSlope: -0.0000036443835 + outSlope: -0.0000036443835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0000013718461 + inSlope: 0.000013889648 + outSlope: 0.000013889648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.0000016148048 + inSlope: -0.000003185836 + outSlope: -0.000003185836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.000001159459 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.0000016148048 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.000001159459 + inSlope: -0.0000068301933 + outSlope: -0.0000068301933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.000001159459 + inSlope: -0.0000015929076 + outSlope: -0.0000015929076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.0000010532652 + inSlope: 0.000001879721 + outSlope: 0.000001879721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.0000012847736 + inSlope: 0.0000034726286 + outSlope: 0.0000034726286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.0000012847736 + inSlope: -0.00001949257 + outSlope: -0.00001949257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.000000014729832 + inSlope: 0.000001306089 + outSlope: 0.000001306089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.0000013718461 + inSlope: 0.000016019942 + outSlope: 0.000016019942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.0000010532652 + inSlope: 0.0000034342743 + outSlope: 0.0000034342743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.0000016007975 + inSlope: 0.000008423101 + outSlope: 0.000008423101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0000016148048 + inSlope: 0.0000019368333 + outSlope: 0.0000019368333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.0000017299196 + inSlope: -0.000006830133 + outSlope: -0.000006830133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.000001159459 + inSlope: -0.0000019367726 + outSlope: -0.0000019367726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.0000016007975 + inSlope: 0.0000068301933 + outSlope: 0.0000068301933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.0000016148048 + inSlope: 0.00000042021765 + outSlope: 0.00000042021765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000038419813 + inSlope: 0.00005880366 + outSlope: 0.00005880366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000023443201 + inSlope: -0.0000029615276 + outSlope: -0.0000029615276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000018676297 + inSlope: -0.000032950327 + outSlope: -0.000032950327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.00000014763172 + inSlope: 0.000013900503 + outSlope: 0.000013900503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000011134631 + inSlope: 0.000035591685 + outSlope: 0.000035591685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000025204106 + inSlope: 9.094947e-12 + outSlope: 9.094947e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0000011134631 + inSlope: -0.000021664493 + outSlope: -0.000021664493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0000010761105 + inSlope: 0.000013500293 + outSlope: 0.000013500293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000020134826 + inSlope: 0.000014060582 + outSlope: 0.000014060582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0000020134826 + inSlope: -0.000024439269 + outSlope: -0.000024439269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000038419813 + inSlope: 0.0000057896523 + outSlope: 0.0000057896523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0000023994594 + inSlope: 0.000010938993 + outSlope: 0.000010938993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0000011134631 + inSlope: -0.000019289928 + outSlope: -0.000019289928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000011134631 + inSlope: -0.00000056028915 + outSlope: -0.00000056028915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0000010761105 + inSlope: 0.000013500306 + outSlope: 0.000013500306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0000020134826 + inSlope: 0.00002449263 + outSlope: 0.00002449263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000027089523 + inSlope: -0.000014060571 + outSlope: -0.000014060571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0000010761105 + inSlope: -0.0000028280847 + outSlope: -0.0000028280847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000025204106 + inSlope: 0.00000082713086 + outSlope: 0.00000082713086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00000113125 + inSlope: -0.000021104195 + outSlope: -0.000021104195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000011134631 + inSlope: -0.000014167294 + outSlope: -0.000014167294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00000018676297 + inSlope: 0.000013500331 + outSlope: 0.000013500331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000020134826 + inSlope: 0.0000029615749 + outSlope: 0.0000029615749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.00000038419813 + inSlope: -0.000013233478 + outSlope: -0.000013233478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.00000113125 + inSlope: 0.000010938966 + outSlope: 0.000010938966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0000011134631 + inSlope: -0.000010298635 + outSlope: -0.000010298635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.00000044467373 + inSlope: 0.0000002668212 + outSlope: 0.0000002668212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.00000113125 + inSlope: 0.000010298653 + outSlope: 0.000010298653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.00000113125 + inSlope: -0.000010298653 + outSlope: -0.000010298653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.00000044467373 + inSlope: -0.000011205788 + outSlope: -0.000011205788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000038419813 + inSlope: -3.2400749e-12 + outSlope: -3.2400749e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.00000044467373 + inSlope: -0.0000029615333 + outSlope: -0.0000029615333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.00000018676297 + inSlope: 0.00001003185 + outSlope: 0.00001003185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.0000011134631 + inSlope: 0.000013900515 + outSlope: 0.000013900515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.0000011134631 + inSlope: 0.00000026680337 + outSlope: 0.00000026680337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.00000113125 + inSlope: 0.00000026680337 + outSlope: 0.00000026680337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.00000113125 + inSlope: -0.0000002668024 + outSlope: -0.0000002668024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0000011134631 + inSlope: 0.0000005602906 + outSlope: 0.0000005602906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0000011686026 + inSlope: -0.000010938986 + outSlope: -0.000010938986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00000038419813 + inSlope: 0.000020277024 + outSlope: 0.000020277024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.0000025204106 + inSlope: 0.000032043103 + outSlope: 0.000032043103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.0000025204106 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.0000025204106 + inSlope: -0.0000009871733 + outSlope: -0.0000009871733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.000002454599 + inSlope: -0.000020837359 + outSlope: -0.000020837359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.00000113125 + inSlope: -0.000019850186 + outSlope: -0.000019850186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.00000113125 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.00000113125 + inSlope: -0.0000002668024 + outSlope: -0.0000002668024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.0000011134631 + inSlope: 0.000020837431 + outSlope: 0.000020837431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0000025204106 + inSlope: 0.0000002668039 + outSlope: 0.0000002668039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.00000113125 + inSlope: -0.000021104233 + outSlope: -0.000021104233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.0000011134631 + inSlope: -9.663381e-13 + outSlope: -9.663381e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.00000113125 + inSlope: 0.00001928996 + outSlope: 0.00001928996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.0000023994594 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.00000113125 + inSlope: -0.000019289962 + outSlope: -0.000019289962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.0000011134631 + inSlope: 0.0000005602867 + outSlope: 0.0000005602867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.0000011686026 + inSlope: 0.00000026680044 + outSlope: 0.00000026680044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.00000113125 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.0000011686026 + inSlope: 0.000020837355 + outSlope: 0.000020837355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.0000025204106 + inSlope: -0.0000005604379 + outSlope: -0.0000005604379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.00000113125 + inSlope: -0.0000018144801 + outSlope: -0.0000018144801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0000023994594 + inSlope: -1.3460522e-10 + outSlope: -1.3460522e-10 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.00000113125 + inSlope: 0.000001814271 + outSlope: 0.000001814271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.0000025204106 + inSlope: 0.00002083743 + outSlope: 0.00002083743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.0000025204106 + inSlope: -0.000020277139 + outSlope: -0.000020277139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.0000011686026 + inSlope: -0.0000009871728 + outSlope: -0.0000009871728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.000002454599 + inSlope: 0.000020277139 + outSlope: 0.000020277139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0000025204106 + inSlope: -0.000019289822 + outSlope: -0.000019289822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.0000011686026 + inSlope: -0.000020837284 + outSlope: -0.000020837284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.00000113125 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.0000011686026 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.00000113125 + inSlope: -0.0000005602896 + outSlope: -0.0000005602896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.00000113125 + inSlope: -0.000010298653 + outSlope: -0.000010298653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.00000044467373 + inSlope: -0.000015287897 + outSlope: -0.000015287897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.0000001120578 + inSlope: -0.0000049892437 + outSlope: -0.0000049892437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.0000001120578 + inSlope: 0.000014460804 + outSlope: 0.000014460804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.0000010761105 + inSlope: 0.000036125326 + outSlope: 0.000036125326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.0000025204106 + inSlope: -0.00000947156 + outSlope: -0.00000947156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.00000044467373 + inSlope: -0.0000018142691 + outSlope: -0.0000018142691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.0000023994594 + inSlope: 0.000010858943 + outSlope: 0.000010858943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0000011686026 + inSlope: -0.000020357184 + outSlope: -0.000020357184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.0000010423151 + inSlope: -0.0000005602992 + outSlope: -0.0000005602992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.00000113125 + inSlope: 0.000020357173 + outSlope: 0.000020357173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.0000023994594 + inSlope: 0.00000056028875 + outSlope: 0.00000056028875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.0000011686026 + inSlope: -0.00003692574 + outSlope: -0.00003692574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7261673 + inSlope: 0.07147729 + outSlope: 0.07147729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.7071917 + inSlope: 0.10528204 + outSlope: 0.10528204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.70371634 + inSlope: -0.0046974467 + outSlope: -0.0046974467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.69044477 + inSlope: 0.17501932 + outSlope: 0.17501932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.67411387 + inSlope: 0.0030040774 + outSlope: 0.0030040774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.6999931 + inSlope: -0.1640521 + outSlope: -0.1640521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.7113957 + inSlope: 0.01988234 + outSlope: 0.01988234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.7254243 + inSlope: -0.06447679 + outSlope: -0.06447679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.30597717 + inSlope: -0.06304711 + outSlope: -0.06304711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.30228323 + inSlope: -0.0017139318 + outSlope: -0.0017139318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.2991677 + inSlope: -0.088042185 + outSlope: -0.088042185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.3002932 + inSlope: 0.07096632 + outSlope: 0.07096632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.30769613 + inSlope: 0.05599732 + outSlope: 0.05599732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.30542368 + inSlope: -0.019861758 + outSlope: -0.019861758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.31645304 + inSlope: -0.0040022936 + outSlope: -0.0040022936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.310562 + inSlope: -0.030618338 + outSlope: -0.030618338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.3132762 + inSlope: -0.0108419005 + outSlope: -0.0108419005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.30286404 + inSlope: -0.06271815 + outSlope: -0.06271815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.3042614 + inSlope: 0.044388365 + outSlope: 0.044388365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.3054713 + inSlope: 0.036297474 + outSlope: 0.036297474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14358743 + inSlope: -0.03868952 + outSlope: -0.03868952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.14131299 + inSlope: -0.012585596 + outSlope: -0.012585596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.13679592 + inSlope: -0.050476696 + outSlope: -0.050476696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.13504697 + inSlope: -0.08053758 + outSlope: -0.08053758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.13142675 + inSlope: -0.07973875 + outSlope: -0.07973875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.1281418 + inSlope: 0.021510877 + outSlope: 0.021510877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12872148 + inSlope: 0.0060816803 + outSlope: 0.0060816803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.13277663 + inSlope: 0.034079026 + outSlope: 0.034079026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.13624506 + inSlope: 0.009384807 + outSlope: 0.009384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.1367049 + inSlope: -0.021150133 + outSlope: -0.021150133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.13601655 + inSlope: 0.056474827 + outSlope: 0.056474827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.14172854 + inSlope: 0.07636957 + outSlope: 0.07636957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.14434619 + inSlope: 0.113801405 + outSlope: 0.113801405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.1493153 + inSlope: 0.104588374 + outSlope: 0.104588374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.15294564 + inSlope: 0.06470329 + outSlope: 0.06470329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.15706447 + inSlope: 0.04224394 + outSlope: 0.04224394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.15844856 + inSlope: 0.08424223 + outSlope: 0.08424223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.16576847 + inSlope: 0.060099646 + outSlope: 0.060099646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.16868411 + inSlope: 0.028691549 + outSlope: 0.028691549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.17380072 + inSlope: 0.017324181 + outSlope: 0.017324181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.17256674 + inSlope: -0.06482972 + outSlope: -0.06482972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.1682394 + inSlope: -0.04740943 + outSlope: -0.04740943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.16170062 + inSlope: -0.034566026 + outSlope: -0.034566026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.15362689 + inSlope: -0.07382341 + outSlope: -0.07382341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.14432132 + inSlope: -0.05360266 + outSlope: -0.05360266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.66521066 + inSlope: 0.031487346 + outSlope: 0.031487346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.66254747 + inSlope: 0.034495 + outSlope: 0.034495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.66399527 + inSlope: 0.110119894 + outSlope: 0.110119894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.6632404 + inSlope: 0.051664717 + outSlope: 0.051664717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.6627381 + inSlope: 0.04372532 + outSlope: 0.04372532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.65305275 + inSlope: -0.0020867607 + outSlope: -0.0020867607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.657577 + inSlope: -0.012748551 + outSlope: -0.012748551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.65863484 + inSlope: -0.038436987 + outSlope: -0.038436987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.6652535 + inSlope: -0.0033420357 + outSlope: -0.0033420357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.054775625 + inSlope: -0.026860757 + outSlope: -0.026860757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.056766022 + inSlope: 0.0069994484 + outSlope: 0.0069994484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.056230962 + inSlope: 0.0063782344 + outSlope: 0.0063782344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.053193834 + inSlope: 0.016335264 + outSlope: 0.016335264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.052819315 + inSlope: -0.012434388 + outSlope: -0.012434388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.053735718 + inSlope: -0.010850299 + outSlope: -0.010850299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.055012062 + inSlope: -0.0040447223 + outSlope: -0.0040447223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.05552603 + inSlope: 0.0015970895 + outSlope: 0.0015970895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.054196063 + inSlope: 0.055383086 + outSlope: 0.055383086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.051552337 + inSlope: 0.06680657 + outSlope: 0.06680657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.047637273 + inSlope: 0.09019831 + outSlope: 0.09019831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.043729074 + inSlope: 0.081874564 + outSlope: 0.081874564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.041148428 + inSlope: 0.029461026 + outSlope: 0.029461026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.04015789 + inSlope: -0.010561114 + outSlope: -0.010561114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.040861346 + inSlope: -0.0027534757 + outSlope: -0.0027534757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.04034146 + inSlope: 0.012420651 + outSlope: 0.012420651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.038968883 + inSlope: 0.0061663482 + outSlope: 0.0061663482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.038757965 + inSlope: 0.025588801 + outSlope: 0.025588801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.037262965 + inSlope: 0.035796244 + outSlope: 0.035796244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.03586075 + inSlope: -0.017740477 + outSlope: -0.017740477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.038256213 + inSlope: -0.03963323 + outSlope: -0.03963323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.041024722 + inSlope: -0.05174087 + outSlope: -0.05174087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.043076955 + inSlope: -0.041858763 + outSlope: -0.041858763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.04430855 + inSlope: -0.021218138 + outSlope: -0.021218138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.045229845 + inSlope: -0.017135197 + outSlope: -0.017135197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.045790814 + inSlope: -0.018556565 + outSlope: -0.018556565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.047989056 + inSlope: -0.00750304 + outSlope: -0.00750304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.047131937 + inSlope: 0.017747471 + outSlope: 0.017747471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.0466435 + inSlope: 0.034310464 + outSlope: 0.034310464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.04484457 + inSlope: 0.03827449 + outSlope: 0.03827449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.043429315 + inSlope: 0.010887711 + outSlope: 0.010887711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.043366022 + inSlope: -0.023134243 + outSlope: -0.023134243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.05229236 + inSlope: -0.06285533 + outSlope: -0.06285533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.054080963 + inSlope: -0.05365809 + outSlope: -0.05365809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07985878 + inSlope: 0.046772134 + outSlope: 0.046772134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.07734013 + inSlope: -0.015452655 + outSlope: -0.015452655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.078282 + inSlope: -0.0012714784 + outSlope: -0.0012714784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.07484721 + inSlope: 0.03923189 + outSlope: 0.03923189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.07209801 + inSlope: 0.002341122 + outSlope: 0.002341122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.07114653 + inSlope: 0.0046436824 + outSlope: 0.0046436824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.0709969 + inSlope: 0.020626757 + outSlope: 0.020626757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.06977142 + inSlope: 0.024060108 + outSlope: 0.024060108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.06811431 + inSlope: 0.022242201 + outSlope: 0.022242201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.06561619 + inSlope: 0.00061713223 + outSlope: 0.00061713223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.06706428 + inSlope: -0.02142126 + outSlope: -0.02142126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.069735184 + inSlope: -0.051816203 + outSlope: -0.051816203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.072764695 + inSlope: -0.030293275 + outSlope: -0.030293275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.0749338 + inSlope: -0.003980849 + outSlope: -0.003980849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.0770604 + inSlope: -0.025183843 + outSlope: -0.025183843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.07960601 + inSlope: 0.002195949 + outSlope: 0.002195949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.07591866 + inSlope: -0.021497143 + outSlope: -0.021497143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.07956763 + inSlope: -0.022220334 + outSlope: -0.022220334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3037448 + inSlope: -0.034106076 + outSlope: -0.034106076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.3019478 + inSlope: 0.10098607 + outSlope: 0.10098607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.28024873 + inSlope: 0.047507275 + outSlope: 0.047507275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.2855934 + inSlope: 0.032224063 + outSlope: 0.032224063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.28206146 + inSlope: -0.029606251 + outSlope: -0.029606251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.2853913 + inSlope: -0.015428938 + outSlope: -0.015428938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.2897909 + inSlope: 0.008644321 + outSlope: 0.008644321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.29461694 + inSlope: -0.08435511 + outSlope: -0.08435511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.30612254 + inSlope: 0.010443638 + outSlope: 0.010443638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.3038923 + inSlope: 0.010985444 + outSlope: 0.010985444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3385053 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -1.3385053 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23385438 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.23385438 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5763953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.5763953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.809624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.809624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3384522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -1.3384522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9042923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.9042923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152078 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.47152078 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12709647 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.12709647 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4657373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.4657373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0114043495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.0114043495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 2.8000002 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Relaxed.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Relaxed.anim.meta new file mode 100644 index 0000000..8b35750 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Relaxed.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: d7c91d687742c86458ee65714ce8dd25 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Idle_Relaxed.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_End.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_End.anim new file mode 100644 index 0000000..0ad94ad --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_End.anim @@ -0,0 +1,17265 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Jump_End + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14715289 + inSlope: -0.13139248 + outSlope: -0.13139248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.14277314 + inSlope: -0.07263668 + outSlope: -0.07263668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.14096831 + inSlope: -0.19191653 + outSlope: -0.19191653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.13017273 + inSlope: 0.2792904 + outSlope: 0.2792904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.15012488 + inSlope: 0.5645559 + outSlope: 0.5645559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.18046063 + inSlope: 0.25239247 + outSlope: 0.25239247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.18257338 + inSlope: -0.051360954 + outSlope: -0.051360954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.17687283 + inSlope: -0.17722291 + outSlope: -0.17722291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.16276014 + inSlope: -0.21396834 + outSlope: -0.21396834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.13382992 + inSlope: -0.40333247 + outSlope: -0.40333247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10282689 + inSlope: -0.45001638 + outSlope: -0.45001638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.07545237 + inSlope: -0.38654834 + outSlope: -0.38654834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.06294437 + inSlope: -0.31275666 + outSlope: -0.31275666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.046684764 + inSlope: -0.10026724 + outSlope: -0.10026724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.040086813 + inSlope: -0.07614034 + outSlope: -0.07614034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0364542 + inSlope: -0.049660478 + outSlope: -0.049660478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.0592792 + inSlope: -5.444705 + outSlope: -5.444705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.877789 + inSlope: -4.064349 + outSlope: -4.064349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.7883226 + inSlope: -2.9152908 + outSlope: -2.9152908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 1.5435069 + inSlope: -5.1827593 + outSlope: -5.1827593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 1.337919 + inSlope: -4.8357344 + outSlope: -4.8357344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 1.2211245 + inSlope: -3.7970738 + outSlope: -3.7970738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.83041924 + inSlope: -3.1129766 + outSlope: -3.1129766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.6017389 + inSlope: -0.63353425 + outSlope: -0.63353425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6142421 + inSlope: 0.8678155 + outSlope: 0.8678155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8725667 + inSlope: 0.9628828 + outSlope: 0.9628828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9339412 + inSlope: -0.0067788297 + outSlope: -0.0067788297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9335408 + inSlope: -0.0046795653 + outSlope: -0.0046795653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11676732 + inSlope: 0.06488979 + outSlope: 0.06488979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.114604324 + inSlope: 0.28465724 + outSlope: 0.28465724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.09779017 + inSlope: 0.5941187 + outSlope: 0.5941187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.04551058 + inSlope: 0.9632267 + outSlope: 0.9632267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.010781301 + inSlope: 0.97009563 + outSlope: 0.97009563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.019162472 + inSlope: 0.7579802 + outSlope: 0.7579802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.03975072 + inSlope: 0.6116779 + outSlope: 0.6116779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.059940994 + inSlope: 0.6950995 + outSlope: 0.6950995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.086090684 + inSlope: 0.6180324 + outSlope: 0.6180324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.10114315 + inSlope: 0.35340643 + outSlope: 0.35340643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.11157922 + inSlope: -0.04737466 + outSlope: -0.04737466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.1064928 + inSlope: -0.16314483 + outSlope: -0.16314483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.09484009 + inSlope: -0.22435144 + outSlope: -0.22435144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.08574613 + inSlope: -0.26339483 + outSlope: -0.26339483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.07728042 + inSlope: -0.248162 + outSlope: -0.248162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.069202 + inSlope: -0.30531386 + outSlope: -0.30531386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.04223491 + inSlope: -0.4475046 + outSlope: -0.4475046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.01206032 + inSlope: -0.42895082 + outSlope: -0.42895082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0015041993 + inSlope: -0.38099557 + outSlope: -0.38099557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.013339405 + inSlope: -0.34257436 + outSlope: -0.34257436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.024342488 + inSlope: -0.27113518 + outSlope: -0.27113518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.03141508 + inSlope: -0.16175953 + outSlope: -0.16175953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.037403822 + inSlope: -0.07249755 + outSlope: -0.07249755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.042109188 + inSlope: -0.051676422 + outSlope: -0.051676422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.04432762 + inSlope: -0.027686905 + outSlope: -0.027686905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03166762 + inSlope: -1.3663082 + outSlope: -1.3663082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.07721123 + inSlope: -0.43515617 + outSlope: -0.43515617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.060678035 + inSlope: 0.6295609 + outSlope: 0.6295609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0352405 + inSlope: 0.83841336 + outSlope: 0.83841336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.004783809 + inSlope: 0.81788695 + outSlope: 0.81788695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.019285291 + inSlope: 0.44191405 + outSlope: 0.44191405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.024677128 + inSlope: -0.018775947 + outSlope: -0.018775947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.018033564 + inSlope: 0.07729948 + outSlope: 0.07729948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.029830426 + inSlope: 0.83133245 + outSlope: 0.83133245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.07345572 + inSlope: 1.2673593 + outSlope: 1.2673593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.11432104 + inSlope: 1.2018464 + outSlope: 1.2018464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.18174893 + inSlope: 0.61143047 + outSlope: 0.61143047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.19434085 + inSlope: 0.30556712 + outSlope: 0.30556712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.20232412 + inSlope: -0.14109011 + outSlope: -0.14109011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.19271405 + inSlope: -0.2974165 + outSlope: -0.2974165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.1714408 + inSlope: -0.4174954 + outSlope: -0.4174954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.13751751 + inSlope: -0.49442104 + outSlope: -0.49442104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.08649157 + inSlope: -0.57440466 + outSlope: -0.57440466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.066504076 + inSlope: -0.61151886 + outSlope: -0.61151886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.045723647 + inSlope: -0.53208846 + outSlope: -0.53208846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.03103152 + inSlope: -0.3387551 + outSlope: -0.3387551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.023139969 + inSlope: -0.18765143 + outSlope: -0.18765143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.018521428 + inSlope: -0.14776917 + outSlope: -0.14776917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.008713022 + inSlope: -0.11093813 + outSlope: -0.11093813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.005892813 + inSlope: -0.08730472 + outSlope: -0.08730472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0028927028 + inSlope: -0.0900034 + outSlope: -0.0900034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.31470668 + inSlope: -1.1070514 + outSlope: -1.1070514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.27780497 + inSlope: -0.7110773 + outSlope: -0.7110773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.26730153 + inSlope: -0.2824178 + outSlope: -0.2824178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.25897712 + inSlope: -0.23246078 + outSlope: -0.23246078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.23297055 + inSlope: -0.8195461 + outSlope: -0.8195461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.19716772 + inSlope: -1.0711054 + outSlope: -1.0711054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.12629245 + inSlope: -0.96101004 + outSlope: -0.96101004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.09749618 + inSlope: -0.3534576 + outSlope: -0.3534576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.10272861 + inSlope: 0.2911235 + outSlope: 0.2911235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.116904415 + inSlope: 0.37045842 + outSlope: 0.37045842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.12742585 + inSlope: 0.4412225 + outSlope: 0.4412225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.1682326 + inSlope: 0.5732377 + outSlope: 0.5732377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.20059349 + inSlope: 0.46074635 + outSlope: 0.46074635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.24498896 + inSlope: 0.52307683 + outSlope: 0.52307683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.3367532 + inSlope: 0.13533396 + outSlope: 0.13533396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.3444962 + inSlope: 0.008896896 + outSlope: 0.008896896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09468027 + inSlope: 0.81831044 + outSlope: 0.81831044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06740326 + inSlope: 0.37301794 + outSlope: 0.37301794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.06981241 + inSlope: -0.09829445 + outSlope: -0.09829445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.07395622 + inSlope: -0.035751708 + outSlope: -0.035751708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07219586 + inSlope: 0.17031157 + outSlope: 0.17031157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.06260212 + inSlope: 0.33614886 + outSlope: 0.33614886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.04978593 + inSlope: 0.46634704 + outSlope: 0.46634704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.031512313 + inSlope: 0.45665258 + outSlope: 0.45665258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.019342428 + inSlope: -0.054723993 + outSlope: -0.054723993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.03516058 + inSlope: -0.78638786 + outSlope: -0.78638786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.071768284 + inSlope: -1.1277816 + outSlope: -1.1277816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.11034601 + inSlope: -1.0049648 + outSlope: -1.0049648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.13876596 + inSlope: -0.6805868 + outSlope: -0.6805868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.15571849 + inSlope: -0.46638143 + outSlope: -0.46638143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.16985805 + inSlope: -0.2685227 + outSlope: -0.2685227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.13715726 + inSlope: 0.5275893 + outSlope: 0.5275893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.053807445 + inSlope: 0.49288166 + outSlope: 0.49288166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.022588372 + inSlope: 0.35851637 + outSlope: 0.35851637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.013268864 + inSlope: 0.2185304 + outSlope: 0.2185304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.008019676 + inSlope: 0.12885505 + outSlope: 0.12885505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0046785297 + inSlope: 0.10139958 + outSlope: 0.10139958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.001259705 + inSlope: 0.09456678 + outSlope: 0.09456678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.001625916 + inSlope: 0.06980823 + outSlope: 0.06980823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0033941786 + inSlope: 0.050006546 + outSlope: 0.050006546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.004959689 + inSlope: 0.046965357 + outSlope: 0.046965357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9439241 + inSlope: 0.33691046 + outSlope: 0.33691046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.97879386 + inSlope: 0.23878542 + outSlope: 0.23878542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.9749721 + inSlope: -0.30569303 + outSlope: -0.30569303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.948478 + inSlope: 0.042197414 + outSlope: 0.042197414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.93877023 + inSlope: -0.003052357 + outSlope: -0.003052357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07261961 + inSlope: -0.6963354 + outSlope: -0.6963354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09583079 + inSlope: -0.39028808 + outSlope: -0.39028808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.09863882 + inSlope: -0.08848137 + outSlope: -0.08848137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.11095749 + inSlope: -0.47828048 + outSlope: -0.47828048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.16088735 + inSlope: -0.6810939 + outSlope: -0.6810939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.18400002 + inSlope: 0.03298402 + outSlope: 0.03298402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.17682225 + inSlope: 0.48529947 + outSlope: 0.48529947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.15164672 + inSlope: 0.7260579 + outSlope: 0.7260579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.1130423 + inSlope: 0.32364523 + outSlope: 0.32364523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.106842026 + inSlope: 0.15678765 + outSlope: 0.15678765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.108444095 + inSlope: -0.25547177 + outSlope: -0.25547177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.13211386 + inSlope: -0.3818822 + outSlope: -0.3818822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.19068813 + inSlope: -0.48498276 + outSlope: -0.48498276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.21905014 + inSlope: -0.28581628 + outSlope: -0.28581628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.23495953 + inSlope: -0.14419982 + outSlope: -0.14419982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.24837969 + inSlope: -0.035795454 + outSlope: -0.035795454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.66221964 + inSlope: 1.2428765 + outSlope: 1.2428765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.6207904 + inSlope: 0.14701274 + outSlope: 0.14701274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.6524188 + inSlope: -1.219054 + outSlope: -1.219054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.76631254 + inSlope: -2.117444 + outSlope: -2.117444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.94336224 + inSlope: -0.16099516 + outSlope: -0.16099516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.9182114 + inSlope: 2.2094536 + outSlope: 2.2094536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.79606533 + inSlope: 3.215942 + outSlope: 3.215942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.58957523 + inSlope: 1.2122077 + outSlope: 1.2122077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.5668541 + inSlope: -0.8040755 + outSlope: -0.8040755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.8218653 + inSlope: -1.0420723 + outSlope: -1.0420723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.90286905 + inSlope: -0.08434118 + outSlope: -0.08434118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.91209185 + inSlope: -0.026441243 + outSlope: -0.026441243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.061588217 + inSlope: -2.6437778 + outSlope: -2.6437778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.026537715 + inSlope: -1.243086 + outSlope: -1.243086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.021284182 + inSlope: 0.424626 + outSlope: 0.424626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.001770688 + inSlope: 0.9449609 + outSlope: 0.9449609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.04171321 + inSlope: 1.3560513 + outSlope: 1.3560513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.092174105 + inSlope: 1.3598197 + outSlope: 1.3598197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.13236786 + inSlope: 0.75069857 + outSlope: 0.75069857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.14222069 + inSlope: 0.2763822 + outSlope: 0.2763822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.15079334 + inSlope: 0.7782448 + outSlope: 0.7782448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.19410367 + inSlope: 1.0819634 + outSlope: 1.0819634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.22292423 + inSlope: 0.82201064 + outSlope: 0.82201064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.26555806 + inSlope: 0.31840527 + outSlope: 0.31840527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.2737109 + inSlope: 0.1046746 + outSlope: 0.1046746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.2833201 + inSlope: 0.11988133 + outSlope: 0.11988133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.28567725 + inSlope: -0.07250863 + outSlope: -0.07250863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.24912009 + inSlope: -0.6855372 + outSlope: -0.6855372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.19203185 + inSlope: -0.7868704 + outSlope: -0.7868704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.15567598 + inSlope: -0.39203754 + outSlope: -0.39203754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.14363715 + inSlope: -0.39245796 + outSlope: -0.39245796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.115993515 + inSlope: -0.34209156 + outSlope: -0.34209156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.10088595 + inSlope: -0.17460169 + outSlope: -0.17460169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.35909805 + inSlope: -1.967815 + outSlope: -1.967815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.2935042 + inSlope: -0.5579294 + outSlope: -0.5579294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.32190275 + inSlope: 1.0932746 + outSlope: 1.0932746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.3663892 + inSlope: 1.3167455 + outSlope: 1.3167455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.4096858 + inSlope: 1.5381101 + outSlope: 1.5381101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.5290716 + inSlope: 1.6085469 + outSlope: 1.6085469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.57616633 + inSlope: 1.5788968 + outSlope: 1.5788968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6343314 + inSlope: 1.3146276 + outSlope: 1.3146276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.66380817 + inSlope: 0.89508986 + outSlope: 0.89508986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.73798996 + inSlope: 0.34013966 + outSlope: 0.34013966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.61634237 + inSlope: -0.612334 + outSlope: -0.612334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.5358315 + inSlope: -0.17536196 + outSlope: -0.17536196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.5166213 + inSlope: -0.053132825 + outSlope: -0.053132825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.37058735 + inSlope: -2.2929337 + outSlope: -2.2929337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.44701847 + inSlope: -1.5397962 + outSlope: -1.5397962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.47324044 + inSlope: -0.63223636 + outSlope: -0.63223636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.48916757 + inSlope: -0.26103836 + outSlope: -0.26103836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.5020127 + inSlope: -0.95035154 + outSlope: -0.95035154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.59831256 + inSlope: -0.5673749 + outSlope: -0.5673749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.59182477 + inSlope: 0.27483168 + outSlope: 0.27483168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.57999045 + inSlope: 0.77496713 + outSlope: 0.77496713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.4941093 + inSlope: 1.2176094 + outSlope: 1.2176094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.43420777 + inSlope: 0.7097515 + outSlope: 0.7097515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.40197358 + inSlope: 0.11174099 + outSlope: 0.11174099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.43410355 + inSlope: -0.31363964 + outSlope: -0.31363964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.48427203 + inSlope: -0.33274636 + outSlope: -0.33274636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.5195217 + inSlope: -0.051857878 + outSlope: -0.051857878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.35089558 + inSlope: -0.76642954 + outSlope: -0.76642954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.32534793 + inSlope: -0.5824443 + outSlope: -0.5824443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.3086174 + inSlope: 0.19383925 + outSlope: 0.19383925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.32498857 + inSlope: 0.47608408 + outSlope: 0.47608408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.34035635 + inSlope: -0.20913075 + outSlope: -0.20913075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.3110465 + inSlope: -1.0745353 + outSlope: -1.0745353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.26872066 + inSlope: 0.43558043 + outSlope: 0.43558043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3400852 + inSlope: 1.2555417 + outSlope: 1.2555417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.35242343 + inSlope: 0.46865034 + outSlope: 0.46865034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.39236313 + inSlope: 0.5333227 + outSlope: 0.5333227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.4337725 + inSlope: 0.32909155 + outSlope: 0.32909155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.46195248 + inSlope: 0.1801801 + outSlope: 0.1801801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.47769785 + inSlope: -0.09319694 + outSlope: -0.09319694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.48464558 + inSlope: 0.0077891424 + outSlope: 0.0077891424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.78140026 + inSlope: 0.046255585 + outSlope: 0.046255585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.7798584 + inSlope: 0.34632322 + outSlope: 0.34632322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.728855 + inSlope: 0.9196749 + outSlope: 0.9196749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.6420638 + inSlope: 2.0173516 + outSlope: 2.0173516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.56251025 + inSlope: 2.3155704 + outSlope: 2.3155704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.48769242 + inSlope: 2.9938855 + outSlope: 2.9938855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.3629179 + inSlope: 2.6012883 + outSlope: 2.6012883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.3142732 + inSlope: 0.9763635 + outSlope: 0.9763635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.297827 + inSlope: 0.38862306 + outSlope: 0.38862306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.288365 + inSlope: 0.24740465 + outSlope: 0.24740465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.28133336 + inSlope: 0.0115638 + outSlope: 0.0115638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.29827377 + inSlope: -0.31638193 + outSlope: -0.31638193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.3370905 + inSlope: -0.37914276 + outSlope: -0.37914276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.36652482 + inSlope: -0.54773486 + outSlope: -0.54773486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.45087582 + inSlope: -0.4775839 + outSlope: -0.4775839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.48163843 + inSlope: -0.06875313 + outSlope: -0.06875313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.47782692 + inSlope: 0.0066438382 + outSlope: 0.0066438382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07105562 + inSlope: -0.77349 + outSlope: -0.77349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04527262 + inSlope: -0.40255293 + outSlope: -0.40255293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.044218756 + inSlope: 0.053604104 + outSlope: 0.053604104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.048846226 + inSlope: 0.09080953 + outSlope: 0.09080953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.050272726 + inSlope: 0.11734855 + outSlope: 0.11734855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.056669462 + inSlope: 0.5014288 + outSlope: 0.5014288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.08370132 + inSlope: 0.8432239 + outSlope: 0.8432239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.1128844 + inSlope: 0.36593914 + outSlope: 0.36593914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.10809726 + inSlope: -0.28373113 + outSlope: -0.28373113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.093968995 + inSlope: 0.2452126 + outSlope: 0.2452126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.12444477 + inSlope: 1.0188009 + outSlope: 1.0188009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.16188905 + inSlope: 0.95866233 + outSlope: 0.95866233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.21063656 + inSlope: 0.6571285 + outSlope: 0.6571285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.24604823 + inSlope: 0.33436337 + outSlope: 0.33436337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.25770178 + inSlope: 0.007235624 + outSlope: 0.007235624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.252088 + inSlope: -0.09951444 + outSlope: -0.09951444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.23957434 + inSlope: -0.2791478 + outSlope: -0.2791478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.20459193 + inSlope: -0.13986406 + outSlope: -0.13986406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.19657512 + inSlope: -0.012675445 + outSlope: -0.012675445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.19622304 + inSlope: -0.0014072671 + outSlope: -0.0014072671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6157927 + inSlope: 2.5550883 + outSlope: 2.5550883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.5306231 + inSlope: 0.9134736 + outSlope: 0.9134736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.55489445 + inSlope: -0.9857904 + outSlope: -0.9857904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.65809953 + inSlope: -2.2386093 + outSlope: -2.2386093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.8315797 + inSlope: -2.0311785 + outSlope: -2.0311785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.880995 + inSlope: -0.89400446 + outSlope: -0.89400446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.89118 + inSlope: 1.0249991 + outSlope: 1.0249991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.8126617 + inSlope: 2.2508903 + outSlope: 2.2508903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.69153273 + inSlope: 1.3694415 + outSlope: 1.3694415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.60519886 + inSlope: -0.60491896 + outSlope: -0.60491896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.7158015 + inSlope: -1.4217534 + outSlope: -1.4217534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.9080409 + inSlope: -0.68037844 + outSlope: -0.68037844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.92558795 + inSlope: 0.0393802 + outSlope: 0.0393802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.9202219 + inSlope: 0.03608111 + outSlope: 0.03608111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.032566264 + inSlope: -1.8837354 + outSlope: -1.8837354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09535745 + inSlope: -0.9212459 + outSlope: -0.9212459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.09398266 + inSlope: 0.06532709 + outSlope: 0.06532709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.09100231 + inSlope: 0.13925952 + outSlope: 0.13925952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08469869 + inSlope: 0.10036212 + outSlope: 0.10036212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0843115 + inSlope: -0.6006836 + outSlope: -0.6006836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.12474428 + inSlope: -1.8089368 + outSlope: -1.8089368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2049073 + inSlope: -1.8042353 + outSlope: -1.8042353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.24502663 + inSlope: -0.26447856 + outSlope: -0.26447856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.2225392 + inSlope: 0.83014375 + outSlope: 0.83014375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.18968372 + inSlope: 1.0542519 + outSlope: 1.0542519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.15225574 + inSlope: 0.9537165 + outSlope: 0.9537165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.1261026 + inSlope: 0.65034807 + outSlope: 0.65034807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.10889918 + inSlope: 0.5256314 + outSlope: 0.5256314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.091060504 + inSlope: 0.47410312 + outSlope: 0.47410312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.06581995 + inSlope: 0.3735355 + outSlope: 0.3735355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.039506946 + inSlope: 0.3359291 + outSlope: 0.3359291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.029994667 + inSlope: 0.16380121 + outSlope: 0.16380121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.028586859 + inSlope: -0.15071802 + outSlope: -0.15071802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.040042546 + inSlope: -0.46679032 + outSlope: -0.46679032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.059706204 + inSlope: -0.5829152 + outSlope: -0.5829152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.078903556 + inSlope: -0.5786433 + outSlope: -0.5786433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.09828246 + inSlope: -0.6462181 + outSlope: -0.6462181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.12198476 + inSlope: -0.6253956 + outSlope: -0.6253956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.13997549 + inSlope: -0.41727376 + outSlope: -0.41727376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.15541668 + inSlope: -0.18199864 + outSlope: -0.18199864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.16744351 + inSlope: -0.13483213 + outSlope: -0.13483213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.17558588 + inSlope: -0.13982458 + outSlope: -0.13982458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.104760885 + inSlope: 4.55528 + outSlope: 4.55528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.047081802 + inSlope: 1.8013933 + outSlope: 1.8013933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0153320115 + inSlope: -1.1662743 + outSlope: -1.1662743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.030669827 + inSlope: -1.8946683 + outSlope: -1.8946683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.11097922 + inSlope: -3.1704648 + outSlope: -3.1704648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.24203412 + inSlope: -3.9139428 + outSlope: -3.9139428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.37190878 + inSlope: -3.3541756 + outSlope: -3.3541756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.46564588 + inSlope: -2.7507458 + outSlope: -2.7507458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.55529183 + inSlope: -1.6462984 + outSlope: -1.6462984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.5753991 + inSlope: -0.774217 + outSlope: -0.774217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.65697813 + inSlope: -0.4548139 + outSlope: -0.4548139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.6378884 + inSlope: 0.49298555 + outSlope: 0.49298555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.6240959 + inSlope: -0.42496896 + outSlope: -0.42496896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.67168164 + inSlope: -0.34903887 + outSlope: -0.34903887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.64118004 + inSlope: 0.37035504 + outSlope: 0.37035504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.6130082 + inSlope: 0.0509799 + outSlope: 0.0509799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8578892 + inSlope: 0.8274811 + outSlope: 0.8274811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.908031 + inSlope: 0.26492715 + outSlope: 0.26492715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.9053375 + inSlope: -0.966888 + outSlope: -0.966888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.86153996 + inSlope: -1.6998411 + outSlope: -1.6998411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7920148 + inSlope: -1.1977682 + outSlope: -1.1977682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.78168875 + inSlope: -0.6013504 + outSlope: -0.6013504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.6904625 + inSlope: -0.688107 + outSlope: -0.688107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.649928 + inSlope: 0.1352467 + outSlope: 0.1352467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.66655725 + inSlope: 0.30324075 + outSlope: 0.30324075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6639082 + inSlope: -0.7462913 + outSlope: -0.7462913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.5890252 + inSlope: -0.7380942 + outSlope: -0.7380942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.599274 + inSlope: 0.25079912 + outSlope: 0.25079912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.61927223 + inSlope: 0.044996783 + outSlope: 0.044996783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.27049476 + inSlope: 2.4621372 + outSlope: 2.4621372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.18842351 + inSlope: 1.161614 + outSlope: 1.161614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.19305383 + inSlope: -0.41134375 + outSlope: -0.41134375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.23051389 + inSlope: 0.099008605 + outSlope: 0.099008605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.20924586 + inSlope: 1.0054057 + outSlope: 1.0054057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.16348682 + inSlope: 1.2769842 + outSlope: 1.2769842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.12411356 + inSlope: 0.08299625 + outSlope: 0.08299625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.15795374 + inSlope: -0.85587376 + outSlope: -0.85587376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.1811718 + inSlope: -0.84733963 + outSlope: -0.84733963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.24928597 + inSlope: -0.896755 + outSlope: -0.896755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.29243547 + inSlope: -0.5167598 + outSlope: -0.5167598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.3170947 + inSlope: -0.15208179 + outSlope: -0.15208179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.31994304 + inSlope: -0.021547962 + outSlope: -0.021547962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.3202527 + inSlope: 0.03373187 + outSlope: 0.03373187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.32530275 + inSlope: -0.43292224 + outSlope: -0.43292224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.36819845 + inSlope: -0.45836067 + outSlope: -0.45836067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.36192137 + inSlope: 0.111643344 + outSlope: 0.111643344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.34950233 + inSlope: 0.07972248 + outSlope: 0.07972248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.42412764 + inSlope: -0.05900323 + outSlope: -0.05900323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.42216086 + inSlope: -0.49690244 + outSlope: -0.49690244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.3910008 + inSlope: -0.96690357 + outSlope: -0.96690357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.30469307 + inSlope: -2.3594625 + outSlope: -2.3594625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.20040312 + inSlope: -2.7137804 + outSlope: -2.7137804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.12377436 + inSlope: -0.60985637 + outSlope: -0.60985637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.159746 + inSlope: 1.1213515 + outSlope: 1.1213515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.19853112 + inSlope: -0.021840155 + outSlope: -0.021840155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.15829 + inSlope: -0.84140146 + outSlope: -0.84140146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1424377 + inSlope: -0.36256227 + outSlope: -0.36256227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.13411918 + inSlope: -0.2132085 + outSlope: -0.2132085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.12822379 + inSlope: 0.04614705 + outSlope: 0.04614705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.1511084 + inSlope: 0.40596795 + outSlope: 0.40596795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.16426016 + inSlope: 0.46733958 + outSlope: 0.46733958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.19916901 + inSlope: 0.49149826 + outSlope: 0.49149826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.21503092 + inSlope: 0.56331074 + outSlope: 0.56331074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.2528014 + inSlope: 0.29505435 + outSlope: 0.29505435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.2575333 + inSlope: 0.18293324 + outSlope: 0.18293324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.32161778 + inSlope: 0.2880182 + outSlope: 0.2880182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.33535546 + inSlope: 0.119294934 + outSlope: 0.119294934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.3443419 + inSlope: 0.091686934 + outSlope: 0.091686934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6693992 + inSlope: -0.69451326 + outSlope: -0.69451326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.69254965 + inSlope: -0.17127602 + outSlope: -0.17127602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.6808176 + inSlope: 0.43449903 + outSlope: 0.43449903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.5198666 + inSlope: 1.4923553 + outSlope: 1.4923553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.4304433 + inSlope: 0.84402734 + outSlope: 0.84402734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.41243032 + inSlope: 0.47402012 + outSlope: 0.47402012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.39739352 + inSlope: -0.30840045 + outSlope: -0.30840045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.44808114 + inSlope: -0.87209165 + outSlope: -0.87209165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.5259409 + inSlope: 0.24196582 + outSlope: 0.24196582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.44913438 + inSlope: 0.60598963 + outSlope: 0.60598963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.35827866 + inSlope: 0.06971157 + outSlope: 0.06971157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2763328 + inSlope: 2.3868449 + outSlope: 2.3868449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3558943 + inSlope: 1.9182804 + outSlope: 1.9182804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.40421817 + inSlope: 1.5814052 + outSlope: 1.5814052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5268906 + inSlope: 2.0529168 + outSlope: 2.0529168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6956056 + inSlope: 0.50190485 + outSlope: 0.50190485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.69079494 + inSlope: -1.0789572 + outSlope: -1.0789572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.39217043 + inSlope: -3.5200994 + outSlope: -3.5200994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.18155892 + inSlope: -2.5160313 + outSlope: -2.5160313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.11112701 + inSlope: -1.8446381 + outSlope: -1.8446381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.058583107 + inSlope: -1.368998 + outSlope: -1.368998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.019860491 + inSlope: -0.8770031 + outSlope: -0.8770031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.000116184696 + inSlope: -0.39030135 + outSlope: -0.39030135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0061596073 + inSlope: -0.15447572 + outSlope: -0.15447572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0101821935 + inSlope: -0.06424544 + outSlope: -0.06424544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.01044264 + inSlope: 0.06036356 + outSlope: 0.06036356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0061579524 + inSlope: 0.12780613 + outSlope: 0.12780613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0019222322 + inSlope: 0.111538045 + outSlope: 0.111538045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.001277916 + inSlope: 0.08581287 + outSlope: 0.08581287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0037986299 + inSlope: 0.05097249 + outSlope: 0.05097249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.004676083 + inSlope: -0.011704295 + outSlope: -0.011704295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0030183413 + inSlope: -0.06527611 + outSlope: -0.06527611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.00032434362 + inSlope: -0.077500865 + outSlope: -0.077500865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0021483828 + inSlope: -0.062019132 + outSlope: -0.062019132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.0038102658 + inSlope: -0.037454285 + outSlope: -0.037454285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0049017523 + inSlope: -0.00028578145 + outSlope: -0.00028578145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0046643857 + inSlope: 0.0071210065 + outSlope: 0.0071210065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16628501 + inSlope: 5.194894 + outSlope: 5.194894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0068781283 + inSlope: 3.1923842 + outSlope: 3.1923842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.046540618 + inSlope: 1.1623642 + outSlope: 1.1623642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.08436909 + inSlope: 1.1631985 + outSlope: 1.1631985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.12408719 + inSlope: 1.2148626 + outSlope: 1.2148626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.16535993 + inSlope: 1.4003656 + outSlope: 1.4003656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.27547872 + inSlope: 1.7891004 + outSlope: 1.7891004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.33671826 + inSlope: 1.7000128 + outSlope: 1.7000128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.3888129 + inSlope: 1.4723742 + outSlope: 1.4723742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.45854396 + inSlope: 0.31359902 + outSlope: 0.31359902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.38328376 + inSlope: -1.4503303 + outSlope: -1.4503303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.32961848 + inSlope: -1.7488056 + outSlope: -1.7488056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.26669672 + inSlope: -1.8032508 + outSlope: -1.8032508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.1560203 + inSlope: -1.5616952 + outSlope: -1.5616952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.10528866 + inSlope: -1.3437496 + outSlope: -1.3437496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.06643698 + inSlope: -0.9726823 + outSlope: -0.9726823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.04044319 + inSlope: -0.65998614 + outSlope: -0.65998614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0224379 + inSlope: -0.43645287 + outSlope: -0.43645287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.011346337 + inSlope: -0.22447452 + outSlope: -0.22447452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.007472919 + inSlope: -0.05051731 + outSlope: -0.05051731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.007978513 + inSlope: -0.018122882 + outSlope: -0.018122882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.006264725 + inSlope: -0.075409 + outSlope: -0.075409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0029512476 + inSlope: -0.10244926 + outSlope: -0.10244926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.00056522584 + inSlope: -0.08252631 + outSlope: -0.08252631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.0025505077 + inSlope: -0.051925838 + outSlope: -0.051925838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.004026945 + inSlope: -0.05009323 + outSlope: -0.05009323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0058900598 + inSlope: -0.047714897 + outSlope: -0.047714897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0072079417 + inSlope: -0.0395365 + outSlope: -0.0395365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17466632 + inSlope: -3.3887913 + outSlope: -3.3887913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.28762603 + inSlope: -2.433226 + outSlope: -2.433226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.3368814 + inSlope: -1.4280379 + outSlope: -1.4280379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.38282856 + inSlope: -1.1345806 + outSlope: -1.1345806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.43214953 + inSlope: -0.6664238 + outSlope: -0.6664238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.530581 + inSlope: -1.6693842 + outSlope: -1.6693842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.6583132 + inSlope: -1.6518359 + outSlope: -1.6518359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.73595345 + inSlope: -0.43590063 + outSlope: -0.43590063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.6987205 + inSlope: 0.71158016 + outSlope: 0.71158016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.6098576 + inSlope: 1.1571773 + outSlope: 1.1571773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.49227223 + inSlope: 1.0168201 + outSlope: 1.0168201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.32908258 + inSlope: 0.3727681 + outSlope: 0.3727681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.29564038 + inSlope: 0.07720657 + outSlope: 0.07720657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.33797055 + inSlope: 4.561319 + outSlope: 4.561319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.18592659 + inSlope: 2.4531963 + outSlope: 2.4531963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.17442413 + inSlope: 0.070536956 + outSlope: 0.070536956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.18122412 + inSlope: -0.4586262 + outSlope: -0.4586262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.22322753 + inSlope: -0.11402482 + outSlope: -0.11402482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.18637556 + inSlope: 0.7471727 + outSlope: 0.7471727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.16278934 + inSlope: 0.6635562 + outSlope: 0.6635562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.14213848 + inSlope: 0.9110143 + outSlope: 0.9110143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.044099677 + inSlope: 2.014757 + outSlope: 2.014757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.032262128 + inSlope: 2.2045674 + outSlope: 2.2045674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.10287154 + inSlope: 1.8022172 + outSlope: 1.8022172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.15240994 + inSlope: 1.4534969 + outSlope: 1.4534969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.19977129 + inSlope: 1.4023082 + outSlope: 1.4023082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.24589714 + inSlope: 1.0910833 + outSlope: 1.0910833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.2789618 + inSlope: -0.13107301 + outSlope: -0.13107301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.19596703 + inSlope: -1.1320801 + outSlope: -1.1320801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11552829 + inSlope: -1.3264978 + outSlope: -1.3264978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.06896966 + inSlope: -1.3827701 + outSlope: -1.3827701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.023343623 + inSlope: -1.1671137 + outSlope: -1.1671137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.008837901 + inSlope: -0.74005437 + outSlope: -0.74005437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.025993347 + inSlope: -0.39424014 + outSlope: -0.39424014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.03512057 + inSlope: -0.24404559 + outSlope: -0.24404559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.042263053 + inSlope: -0.20244394 + outSlope: -0.20244394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0524171 + inSlope: -0.064273074 + outSlope: -0.064273074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0529017 + inSlope: -0.014538034 + outSlope: -0.014538034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.8933845 + inSlope: -0.032638907 + outSlope: -0.032638907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.8944725 + inSlope: 0.31307545 + outSlope: 0.31307545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.81598544 + inSlope: 0.9361956 + outSlope: 0.9361956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.69940233 + inSlope: 0.6852866 + outSlope: 0.6852866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.6700618 + inSlope: 0.2825187 + outSlope: 0.2825187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.6577686 + inSlope: 0.112370096 + outSlope: 0.112370096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.68688834 + inSlope: -0.2933175 + outSlope: -0.2933175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.7268163 + inSlope: -0.7487082 + outSlope: -0.7487082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.80494595 + inSlope: -0.62476426 + outSlope: -0.62476426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.8806912 + inSlope: -0.029591044 + outSlope: -0.029591044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.8817734 + inSlope: 0.0011605036 + outSlope: 0.0011605036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23902316 + inSlope: -1.4525176 + outSlope: -1.4525176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.28744042 + inSlope: -1.0333055 + outSlope: -1.0333055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.32283154 + inSlope: -0.61998415 + outSlope: -0.61998415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.42027226 + inSlope: -0.97171855 + outSlope: -0.97171855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.45035583 + inSlope: 0.7312069 + outSlope: 0.7312069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.4017709 + inSlope: 2.0496092 + outSlope: 2.0496092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.31371522 + inSlope: 2.6687818 + outSlope: 2.6687818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.22385211 + inSlope: 2.3496168 + outSlope: 2.3496168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.15707405 + inSlope: 1.8914224 + outSlope: 1.8914224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.097757235 + inSlope: 1.6744254 + outSlope: 1.6744254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.045445703 + inSlope: 1.5878887 + outSlope: 1.5878887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.008101955 + inSlope: 1.6402628 + outSlope: 1.6402628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.06390515 + inSlope: 1.516051 + outSlope: 1.516051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.109172106 + inSlope: 1.2658911 + outSlope: 1.2658911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.14829789 + inSlope: 1.2556427 + outSlope: 1.2556427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.23503721 + inSlope: 1.1128546 + outSlope: 1.1128546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.31489563 + inSlope: 0.22951752 + outSlope: 0.22951752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.36156416 + inSlope: 0.08178939 + outSlope: 0.08178939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.3636948 + inSlope: 0.06391889 + outSlope: 0.06391889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6477677 + inSlope: 0.17720102 + outSlope: 0.17720102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.6593499 + inSlope: 0.188393 + outSlope: 0.188393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.6546868 + inSlope: -0.86306775 + outSlope: -0.86306775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.47195175 + inSlope: -0.7689715 + outSlope: -0.7689715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.45638216 + inSlope: -0.5403786 + outSlope: -0.5403786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.35231704 + inSlope: -0.3923465 + outSlope: -0.3923465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.3408054 + inSlope: 0.27806234 + outSlope: 0.27806234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.38354835 + inSlope: 0.16325805 + outSlope: 0.16325805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.3915699 + inSlope: -0.07754184 + outSlope: -0.07754184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49958566 + inSlope: 0.1714137 + outSlope: 0.1714137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.4004921 + inSlope: -2.1366835 + outSlope: -2.1366835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.21827765 + inSlope: -2.7280092 + outSlope: -2.7280092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.13359621 + inSlope: -2.5342875 + outSlope: -2.5342875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.04932515 + inSlope: -2.2763348 + outSlope: -2.2763348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.018159425 + inSlope: -1.6341598 + outSlope: -1.6341598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.059618838 + inSlope: -1.1363027 + outSlope: -1.1363027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09391297 + inSlope: -0.9725951 + outSlope: -0.9725951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1607603 + inSlope: -0.1835896 + outSlope: -0.1835896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.14826673 + inSlope: 0.3848727 + outSlope: 0.3848727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.095475346 + inSlope: 0.6324761 + outSlope: 0.6324761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.052655824 + inSlope: 0.5718407 + outSlope: 0.5718407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.03568849 + inSlope: 0.44030726 + outSlope: 0.44030726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.023301983 + inSlope: 0.33534592 + outSlope: 0.33534592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.013332094 + inSlope: 0.2513678 + outSlope: 0.2513678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.006544134 + inSlope: 0.17656453 + outSlope: 0.17656453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0015611241 + inSlope: 0.13357507 + outSlope: 0.13357507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.002360869 + inSlope: 0.10467921 + outSlope: 0.10467921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0054174904 + inSlope: 0.072834946 + outSlope: 0.072834946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0072165276 + inSlope: 0.03814066 + outSlope: 0.03814066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.008249341 + inSlope: 0.0086741885 + outSlope: 0.0086741885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.085831575 + inSlope: 1.1288414 + outSlope: 1.1288414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.048203528 + inSlope: 0.3215829 + outSlope: 0.3215829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.064392716 + inSlope: -0.5822793 + outSlope: -0.5822793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.087022156 + inSlope: -0.5229381 + outSlope: -0.5229381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09925526 + inSlope: 0.069184914 + outSlope: 0.069184914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.04241507 + inSlope: 1.4381446 + outSlope: 1.4381446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.013466487 + inSlope: 1.5374506 + outSlope: 1.5374506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.060081627 + inSlope: 0.9758742 + outSlope: 0.9758742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.07852477 + inSlope: 0.34090504 + outSlope: 0.34090504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08280863 + inSlope: -0.0728716 + outSlope: -0.0728716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.07366666 + inSlope: -0.27487603 + outSlope: -0.27487603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.06448355 + inSlope: -0.44694006 + outSlope: -0.44694006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.011560967 + inSlope: -1.1450756 + outSlope: -1.1450756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.03246768 + inSlope: -1.3562498 + outSlope: -1.3562498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.07885568 + inSlope: -1.1417814 + outSlope: -1.1417814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.119030535 + inSlope: 0.2987331 + outSlope: 0.2987331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.1061204 + inSlope: 0.40626162 + outSlope: 0.40626162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.07622753 + inSlope: 0.49806815 + outSlope: 0.49806815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.05874186 + inSlope: 0.5216569 + outSlope: 0.5216569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.041450407 + inSlope: 0.3865768 + outSlope: 0.3865768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.032970082 + inSlope: 0.14857033 + outSlope: 0.14857033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.031545714 + inSlope: 0.0060394183 + outSlope: 0.0060394183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.032567456 + inSlope: -0.013376553 + outSlope: -0.013376553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.032437485 + inSlope: -0.00449181 + outSlope: -0.00449181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.03286691 + inSlope: -0.024572512 + outSlope: -0.024572512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.034075655 + inSlope: -0.009717922 + outSlope: -0.009717922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.033514775 + inSlope: 0.016826408 + outSlope: 0.016826408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.27616096 + inSlope: 8.544291 + outSlope: 8.544291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.008648761 + inSlope: 5.5598984 + outSlope: 5.5598984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.094498955 + inSlope: 2.3842351 + outSlope: 2.3842351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.16759779 + inSlope: 1.4290351 + outSlope: 1.4290351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.18976797 + inSlope: -0.31343558 + outSlope: -0.31343558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.14670208 + inSlope: -1.9066885 + outSlope: -1.9066885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.062655374 + inSlope: -2.8569422 + outSlope: -2.8569422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.04376077 + inSlope: -2.829638 + outSlope: -2.829638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.12598716 + inSlope: -1.5022261 + outSlope: -1.5022261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.14390917 + inSlope: 0.59128964 + outSlope: 0.59128964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.08656785 + inSlope: 1.9384143 + outSlope: 1.9384143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.014681555 + inSlope: 1.7423127 + outSlope: 1.7423127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.02958636 + inSlope: 1.1433388 + outSlope: 1.1433388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.061541066 + inSlope: 0.95067704 + outSlope: 0.95067704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.09296483 + inSlope: 0.94400394 + outSlope: 0.94400394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.1487562 + inSlope: 0.4751355 + outSlope: 0.4751355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.15343499 + inSlope: -0.13003367 + outSlope: -0.13003367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.14748144 + inSlope: -0.28783333 + outSlope: -0.28783333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11701661 + inSlope: -0.501688 + outSlope: -0.501688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.08301115 + inSlope: -0.57727695 + outSlope: -0.57727695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.062315088 + inSlope: -0.5819761 + outSlope: -0.5819761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.044212744 + inSlope: -0.38771677 + outSlope: -0.38771677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.036467314 + inSlope: -0.11683956 + outSlope: -0.11683956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.039842486 + inSlope: 0.080344774 + outSlope: 0.080344774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.042949647 + inSlope: 0.024496278 + outSlope: 0.024496278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.043412838 + inSlope: -0.023780681 + outSlope: -0.023780681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.04136427 + inSlope: -0.061457068 + outSlope: -0.061457068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22300309 + inSlope: -0.1669076 + outSlope: -0.1669076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.22856668 + inSlope: 0.4080337 + outSlope: 0.4080337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.19580084 + inSlope: 0.99299836 + outSlope: 0.99299836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.16236678 + inSlope: 0.6153787 + outSlope: 0.6153787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.15477559 + inSlope: -0.23412737 + outSlope: -0.23412737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.21428266 + inSlope: -1.0629472 + outSlope: -1.0629472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.24883842 + inSlope: -0.9987925 + outSlope: -0.9987925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.28086883 + inSlope: -1.1432537 + outSlope: -1.1432537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.32505533 + inSlope: -1.5560269 + outSlope: -1.5560269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.38460395 + inSlope: -1.5315888 + outSlope: -1.5315888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.46140617 + inSlope: -0.86145043 + outSlope: -0.86145043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.48320383 + inSlope: 0.50739324 + outSlope: 0.50739324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.40185255 + inSlope: 0.5595157 + outSlope: 0.5595157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.3953718 + inSlope: -0.06909722 + outSlope: -0.06909722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.3961472 + inSlope: 0.08205764 + outSlope: 0.08205764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.39465237 + inSlope: -0.04025642 + outSlope: -0.04025642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4244429 + inSlope: 0.1628199 + outSlope: 0.1628199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.42987022 + inSlope: -0.04457117 + outSlope: -0.04457117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.41376477 + inSlope: -0.23892714 + outSlope: -0.23892714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.34972018 + inSlope: -1.6756389 + outSlope: -1.6756389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.17530763 + inSlope: -3.652864 + outSlope: -3.652864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.03443543 + inSlope: -4.3257318 + outSlope: -4.3257318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11307446 + inSlope: -3.5312881 + outSlope: -3.5312881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.20098376 + inSlope: -2.0004969 + outSlope: -2.0004969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.24644095 + inSlope: -1.2751793 + outSlope: -1.2751793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.330185 + inSlope: -1.4551532 + outSlope: -1.4551532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.433978 + inSlope: -1.3625808 + outSlope: -1.3625808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.590768 + inSlope: -0.34870774 + outSlope: -0.34870774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.63955486 + inSlope: -0.060485635 + outSlope: -0.060485635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.6487592 + inSlope: -0.06539589 + outSlope: -0.06539589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8329785 + inSlope: 1.213796 + outSlope: 1.213796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.87343836 + inSlope: 0.71123505 + outSlope: 0.71123505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.8806632 + inSlope: 0.17454834 + outSlope: 0.17454834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.93404686 + inSlope: -0.3468016 + outSlope: -0.3468016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.8517606 + inSlope: -0.8558935 + outSlope: -0.8558935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.76142627 + inSlope: -0.34188035 + outSlope: -0.34188035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.7328089 + inSlope: -0.3910527 + outSlope: -0.3910527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6664709 + inSlope: -0.29452628 + outSlope: -0.29452628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.649346 + inSlope: -0.08545526 + outSlope: -0.08545526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3179013 + inSlope: -1.2333958 + outSlope: -1.2333958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3590145 + inSlope: -0.21368933 + outSlope: -0.21368933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.33214727 + inSlope: 0.99543023 + outSlope: 0.99543023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.24425101 + inSlope: 1.4428043 + outSlope: 1.4428043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.19646554 + inSlope: 1.2430575 + outSlope: 1.2430575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1613805 + inSlope: 0.8947246 + outSlope: 0.8947246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.13681722 + inSlope: 0.44468123 + outSlope: 0.44468123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.14410119 + inSlope: -0.5876303 + outSlope: -0.5876303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.17091043 + inSlope: -0.86749756 + outSlope: -0.86749756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.23726721 + inSlope: -1.0553396 + outSlope: -1.0553396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.27229035 + inSlope: -0.8998823 + outSlope: -0.8998823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.31744578 + inSlope: -0.5092336 + outSlope: -0.5092336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.33120826 + inSlope: -0.15863644 + outSlope: -0.15863644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.29365453 + inSlope: 0.6364114 + outSlope: 0.6364114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.24844557 + inSlope: 0.6175952 + outSlope: 0.6175952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.21125829 + inSlope: 0.570937 + outSlope: 0.570937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.17331262 + inSlope: 0.44689614 + outSlope: 0.44689614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.14901555 + inSlope: 0.09327637 + outSlope: 0.09327637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.14352615 + inSlope: 0.028041627 + outSlope: 0.028041627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09704983 + inSlope: 0.89991415 + outSlope: 0.89991415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06705269 + inSlope: 0.53676486 + outSlope: 0.53676486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.061265506 + inSlope: 0.18899368 + outSlope: 0.18899368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.046248145 + inSlope: 0.24376453 + outSlope: 0.24376453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.038202144 + inSlope: 0.266357 + outSlope: 0.266357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.028491009 + inSlope: 0.30181158 + outSlope: 0.30181158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.018081369 + inSlope: 0.34569246 + outSlope: 0.34569246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0054448447 + inSlope: 0.32204753 + outSlope: 0.32204753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0033884665 + inSlope: -0.017679363 + outSlope: -0.017679363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0066234693 + inSlope: -0.33177444 + outSlope: -0.33177444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.018729828 + inSlope: -0.14434628 + outSlope: -0.14434628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.016246552 + inSlope: 0.18297717 + outSlope: 0.18297717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0065313485 + inSlope: 0.3211149 + outSlope: 0.3211149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0051611084 + inSlope: 0.37093925 + outSlope: 0.37093925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.018197922 + inSlope: 0.3257621 + outSlope: 0.3257621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.026878577 + inSlope: 0.19335032 + outSlope: 0.19335032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.031087954 + inSlope: 0.10216616 + outSlope: 0.10216616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.033689655 + inSlope: -0.015404988 + outSlope: -0.015404988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.030060949 + inSlope: -0.14549989 + outSlope: -0.14549989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.023989666 + inSlope: -0.15237089 + outSlope: -0.15237089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.019902892 + inSlope: -0.13034871 + outSlope: -0.13034871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.010568935 + inSlope: -0.14455739 + outSlope: -0.14455739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0056625856 + inSlope: -0.17782679 + outSlope: -0.17782679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0012861815 + inSlope: -0.20306899 + outSlope: -0.20306899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.007875346 + inSlope: -0.17236963 + outSlope: -0.17236963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.016525533 + inSlope: -0.10064926 + outSlope: -0.10064926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.022648009 + inSlope: -0.014106421 + outSlope: -0.014106421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.022527302 + inSlope: 0.0036212092 + outSlope: 0.0036212092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.011407949 + inSlope: 0.33644384 + outSlope: 0.33644384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0001931532 + inSlope: 0.24825326 + outSlope: 0.24825326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.005142269 + inSlope: 0.19855547 + outSlope: 0.19855547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.01304388 + inSlope: 0.22678533 + outSlope: 0.22678533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.020261293 + inSlope: 0.07404953 + outSlope: 0.07404953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.017980516 + inSlope: -0.114066675 + outSlope: -0.114066675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.012656846 + inSlope: -0.12537478 + outSlope: -0.12537478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.009622196 + inSlope: -0.104832426 + outSlope: -0.104832426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0056680185 + inSlope: -0.17844105 + outSlope: -0.17844105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.002273873 + inSlope: -0.31879032 + outSlope: -0.31879032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.015584667 + inSlope: -0.250051 + outSlope: -0.250051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.018943937 + inSlope: -0.09546639 + outSlope: -0.09546639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.021949096 + inSlope: -0.12043278 + outSlope: -0.12043278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.026972791 + inSlope: -0.11581206 + outSlope: -0.11581206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0296699 + inSlope: -0.11666094 + outSlope: -0.11666094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.034750182 + inSlope: -0.18010122 + outSlope: -0.18010122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.041676648 + inSlope: -0.1811791 + outSlope: -0.1811791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0468288 + inSlope: -0.17544891 + outSlope: -0.17544891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.060646426 + inSlope: -0.21321338 + outSlope: -0.21321338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.07617579 + inSlope: -0.2814297 + outSlope: -0.2814297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0957471 + inSlope: -0.24762547 + outSlope: -0.24762547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.115955174 + inSlope: -0.05310161 + outSlope: -0.05310161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.11786911 + inSlope: 0.011407223 + outSlope: 0.011407223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000085377366 + inSlope: -0.000003841981 + outSlope: -0.000003841981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000034150946 + inSlope: -4.5474735e-13 + outSlope: -4.5474735e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.000000085377366 + inSlope: -9.094947e-13 + outSlope: -9.094947e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.000000085377366 + inSlope: 1.8189894e-12 + outSlope: 1.8189894e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00000034150946 + inSlope: 1.8189894e-12 + outSlope: 1.8189894e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00000034150946 + inSlope: -0.0000038419817 + outSlope: -0.0000038419817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00000034150946 + inSlope: 0.0000038419817 + outSlope: 0.0000038419817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.000000085377366 + inSlope: 3.1832315e-12 + outSlope: 3.1832315e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.00000034150946 + inSlope: -0.0000038419785 + outSlope: -0.0000038419785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.000000085377366 + inSlope: -0.0000038419785 + outSlope: -0.0000038419785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.00000034150946 + inSlope: 6.8212103e-12 + outSlope: 6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.000000085377366 + inSlope: 6.8212103e-12 + outSlope: 6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.00000034150946 + inSlope: -0.0000038419785 + outSlope: -0.0000038419785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.00000034150946 + inSlope: -0.0000025613188 + outSlope: -0.0000025613188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0000005122642 + inSlope: 0.0000025613278 + outSlope: 0.0000025613278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.00000017075472 + inSlope: 0.0000064033056 + outSlope: 0.0000064033056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.000000085377366 + inSlope: 0.0000012806591 + outSlope: 0.0000012806591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.000000085377366 + inSlope: -0.000006403297 + outSlope: -0.000006403297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0000005122642 + inSlope: -0.000006403297 + outSlope: -0.000006403297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.0000005122642 + inSlope: 0.0000025613233 + outSlope: 0.0000025613233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00000034150946 + inSlope: 0.0000064032947 + outSlope: 0.0000064032947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.000000085377366 + inSlope: 0.000003841971 + outSlope: 0.000003841971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000042688683 + inSlope: 0.0000012806604 + outSlope: 0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000012806605 + inSlope: 1.1368684e-13 + outSlope: 1.1368684e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.000000042688683 + inSlope: 2.2737368e-13 + outSlope: 2.2737368e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.000000042688683 + inSlope: -5.684342e-13 + outSlope: -5.684342e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000012806605 + inSlope: -5.684342e-13 + outSlope: -5.684342e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000012806605 + inSlope: 0.0000012806605 + outSlope: 0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000012806605 + inSlope: -0.0000012806605 + outSlope: -0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.000000042688683 + inSlope: -1.1368684e-12 + outSlope: -1.1368684e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.00000012806605 + inSlope: 0.0000012806594 + outSlope: 0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.000000042688683 + inSlope: 0.0000012806594 + outSlope: 0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00000012806605 + inSlope: -2.2737368e-12 + outSlope: -2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.000000042688683 + inSlope: -2.2737368e-12 + outSlope: -2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00000012806605 + inSlope: 0.0000012806594 + outSlope: 0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.00000012806605 + inSlope: -0.0000012806611 + outSlope: -0.0000012806611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.00000004268857 + inSlope: -0.0000012806601 + outSlope: -0.0000012806601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.00000004268857 + inSlope: 0.0000012806634 + outSlope: 0.0000012806634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.00000012806605 + inSlope: 6.252776e-12 + outSlope: 6.252776e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.000000042688683 + inSlope: -0.0000012806571 + outSlope: -0.0000012806571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.000000042688683 + inSlope: -0.000008964616 + outSlope: -0.000008964616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.00000064033026 + inSlope: -0.0000089646155 + outSlope: -0.0000089646155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0000006403302 + inSlope: 0.000010245275 + outSlope: 0.000010245275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.000000042688683 + inSlope: 0.000010245274 + outSlope: 0.000010245274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.000000042688683 + inSlope: -0.000010245275 + outSlope: -0.000010245275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.00000064033026 + inSlope: -0.000010245275 + outSlope: -0.000010245275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.00000064033026 + inSlope: 0.000008964633 + outSlope: 0.000008964633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000042688683 + inSlope: 0.00001024529 + outSlope: 0.00001024529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.000000042688683 + inSlope: 0.0000012806571 + outSlope: 0.0000012806571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.338477 + inSlope: -0.86570525 + outSlope: -0.86570525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.36733383 + inSlope: 1.2901245 + outSlope: 1.2901245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.25246868 + inSlope: 4.1446285 + outSlope: 4.1446285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.09102525 + inSlope: 5.2663803 + outSlope: 5.2663803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.09862336 + inSlope: 5.5999737 + outSlope: 5.5999737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.28230634 + inSlope: 4.695574 + outSlope: 4.695574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.41166165 + inSlope: 3.2759032 + outSlope: 3.2759032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.50069994 + inSlope: 1.8164085 + outSlope: 1.8164085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.53275555 + inSlope: 0.5288253 + outSlope: 0.5288253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.5098178 + inSlope: -1.1901267 + outSlope: -1.1901267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.45661318 + inSlope: -2.475472 + outSlope: -2.475472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.34478623 + inSlope: -4.113216 + outSlope: -4.113216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.1823987 + inSlope: -4.8565254 + outSlope: -4.8565254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.021017892 + inSlope: -4.881844 + outSlope: -4.881844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1430574 + inSlope: -4.808981 + outSlope: -4.808981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.2995808 + inSlope: -4.0233545 + outSlope: -4.0233545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.49547482 + inSlope: -2.2134688 + outSlope: -2.2134688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.5878323 + inSlope: -0.4559196 + outSlope: -0.4559196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.53716785 + inSlope: 1.4223068 + outSlope: 1.4223068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.42159012 + inSlope: 1.2660885 + outSlope: 1.2660885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.39477593 + inSlope: 0.35248882 + outSlope: 0.35248882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.4138402 + inSlope: -0.40745836 + outSlope: -0.40745836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.44152004 + inSlope: -0.09171197 + outSlope: -0.09171197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4681737 + inSlope: -0.6604367 + outSlope: -0.6604367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.49018827 + inSlope: 0.6816423 + outSlope: 0.6816423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.4227309 + inSlope: 1.9713662 + outSlope: 1.9713662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.35876384 + inSlope: 1.6385136 + outSlope: 1.6385136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.2663046 + inSlope: 1.7320594 + outSlope: 1.7320594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.198026 + inSlope: 2.1437383 + outSlope: 2.1437383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.12338871 + inSlope: 1.6161666 + outSlope: 1.6161666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.09028157 + inSlope: 0.35728055 + outSlope: 0.35728055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.099570006 + inSlope: -0.37526643 + outSlope: -0.37526643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11529933 + inSlope: -0.014670685 + outSlope: -0.014670685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.10054805 + inSlope: 1.4120188 + outSlope: 1.4120188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.021164678 + inSlope: 2.4975061 + outSlope: 2.4975061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.06595241 + inSlope: 2.1823783 + outSlope: 2.1823783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.124327205 + inSlope: 1.5457178 + outSlope: 1.5457178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.21237484 + inSlope: 0.24828926 + outSlope: 0.24828926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.21432543 + inSlope: -0.47372526 + outSlope: -0.47372526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.12966248 + inSlope: -1.521282 + outSlope: -1.521282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.079374336 + inSlope: -1.5287042 + outSlope: -1.5287042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.027748877 + inSlope: -1.4841387 + outSlope: -1.4841387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.01956823 + inSlope: -1.3047309 + outSlope: -1.3047309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.05923326 + inSlope: -1.1735742 + outSlope: -1.1735742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.16484259 + inSlope: -0.8631998 + outSlope: -0.8631998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.23469764 + inSlope: -0.098421335 + outSlope: -0.098421335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.23375256 + inSlope: 0.028352318 + outSlope: 0.028352318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17067435 + inSlope: 0.5116886 + outSlope: 0.5116886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.15361807 + inSlope: 0.6556872 + outSlope: 0.6556872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.12696187 + inSlope: 0.9850899 + outSlope: 0.9850899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0879454 + inSlope: 1.1678942 + outSlope: 1.1678942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.049102254 + inSlope: 0.7238914 + outSlope: 0.7238914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.03968598 + inSlope: 0.08667304 + outSlope: 0.08667304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.043324053 + inSlope: -0.019000128 + outSlope: -0.019000128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.040952656 + inSlope: 0.34071067 + outSlope: 0.34071067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.02061001 + inSlope: 0.5853792 + outSlope: 0.5853792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0019273807 + inSlope: 0.13862501 + outSlope: 0.13862501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.011368344 + inSlope: 0.07350916 + outSlope: 0.07350916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0029732294 + inSlope: 0.5089424 + outSlope: 0.5089424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.022561165 + inSlope: 0.6609191 + outSlope: 0.6609191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.047034513 + inSlope: 0.9064814 + outSlope: 0.9064814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.082993254 + inSlope: 0.9010396 + outSlope: 0.9010396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.107103795 + inSlope: 0.46874836 + outSlope: 0.46874836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.11424313 + inSlope: 0.016828947 + outSlope: 0.016828947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.108225726 + inSlope: -0.6493865 + outSlope: -0.6493865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.070950724 + inSlope: -1.4891739 + outSlope: -1.4891739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.008947449 + inSlope: -1.9177196 + outSlope: -1.9177196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.056897238 + inSlope: -1.945526 + outSlope: -1.945526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.18332219 + inSlope: -1.8672811 + outSlope: -1.8672811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.38289914 + inSlope: -0.7363413 + outSlope: -0.7363413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.41163883 + inSlope: -0.13935654 + outSlope: -0.13935654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.41665393 + inSlope: 0.028317 + outSlope: 0.028317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06215729 + inSlope: -4.3033686 + outSlope: -4.3033686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.08128834 + inSlope: -2.2565358 + outSlope: -2.2565358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.08827844 + inSlope: -0.5882756 + outSlope: -0.5882756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.12050672 + inSlope: -1.6542642 + outSlope: -1.6542642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.19856273 + inSlope: -2.9763937 + outSlope: -2.9763937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.31893295 + inSlope: -3.8316875 + outSlope: -3.8316875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.4540086 + inSlope: -3.5555212 + outSlope: -3.5555212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.5533183 + inSlope: 2.6611342 + outSlope: 2.6611342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.3785588 + inSlope: 7.6005454 + outSlope: 7.6005454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.046615332 + inSlope: 10.546022 + outSlope: 10.546022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.32450926 + inSlope: 9.573744 + outSlope: 9.573744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.59163445 + inSlope: 5.665203 + outSlope: 5.665203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6399353 + inSlope: -1.8249669 + outSlope: -1.8249669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5752733 + inSlope: -1.8719434 + outSlope: -1.8719434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.44433826 + inSlope: -2.4170265 + outSlope: -2.4170265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.26482052 + inSlope: -2.177418 + outSlope: -2.177418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.20884271 + inSlope: -1.0653635 + outSlope: -1.0653635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.20290017 + inSlope: 0.3685428 + outSlope: 0.3685428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.23036213 + inSlope: 0.20822741 + outSlope: 0.20822741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.22201055 + inSlope: -0.4088298 + outSlope: -0.4088298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.18832068 + inSlope: -0.44928432 + outSlope: -0.44928432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.16537954 + inSlope: -0.22425471 + outSlope: -0.22425471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.16008969 + inSlope: -0.15869573 + outSlope: -0.15869573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.065972924 + inSlope: 3.8837526 + outSlope: 3.8837526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0634855 + inSlope: 1.6564293 + outSlope: 1.6564293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.044455703 + inSlope: -0.7445251 + outSlope: -0.7445251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.013850492 + inSlope: -0.7761779 + outSlope: -0.7761779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0072894897 + inSlope: -0.3559283 + outSlope: -0.3559283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.009878057 + inSlope: 0.18307298 + outSlope: 0.18307298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0049153813 + inSlope: 0.7869384 + outSlope: 0.7869384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.04258451 + inSlope: 1.3382862 + outSlope: 1.3382862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.09413445 + inSlope: 0.96810246 + outSlope: 0.96810246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.10712467 + inSlope: -0.5585586 + outSlope: -0.5585586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.05689721 + inSlope: -2.0467362 + outSlope: -2.0467362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.029324412 + inSlope: -2.393927 + outSlope: -2.393927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.10269798 + inSlope: -1.5556211 + outSlope: -1.5556211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.13303255 + inSlope: -0.42036498 + outSlope: -0.42036498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.13072231 + inSlope: 0.19038233 + outSlope: 0.19038233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1203404 + inSlope: 0.28784007 + outSlope: 0.28784007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.10451561 + inSlope: 0.18217115 + outSlope: 0.18217115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.09368005 + inSlope: 0.18887895 + outSlope: 0.18887895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.069051914 + inSlope: 0.34070438 + outSlope: 0.34070438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.05616043 + inSlope: 0.41224295 + outSlope: 0.41224295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.028967442 + inSlope: 0.3161894 + outSlope: 0.3161894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.014990499 + inSlope: 0.14555797 + outSlope: 0.14555797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.010785876 + inSlope: 0.10970255 + outSlope: 0.10970255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0061347154 + inSlope: 0.018138047 + outSlope: 0.018138047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0064677945 + inSlope: -0.041357595 + outSlope: -0.041357595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.008891887 + inSlope: -0.072722845 + outSlope: -0.072722845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2225789 + inSlope: 0.42940062 + outSlope: 0.42940062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.20826554 + inSlope: -0.24017414 + outSlope: -0.24017414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.23859051 + inSlope: -1.0131798 + outSlope: -1.0131798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.30869022 + inSlope: 1.6807871 + outSlope: 1.6807871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.22898361 + inSlope: 3.0728068 + outSlope: 3.0728068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.103836454 + inSlope: 3.9884748 + outSlope: 3.9884748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.03691469 + inSlope: 3.692769 + outSlope: 3.692769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.14234814 + inSlope: 2.01457 + outSlope: 2.01457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.17121938 + inSlope: -0.08755934 + outSlope: -0.08755934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.13651088 + inSlope: -1.2458684 + outSlope: -1.2458684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.08816149 + inSlope: -1.265446 + outSlope: -1.265446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.052147854 + inSlope: -1.0094004 + outSlope: -1.0094004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.020868141 + inSlope: -1.0745806 + outSlope: -1.0745806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.01949091 + inSlope: -1.4626935 + outSlope: -1.4626935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.07664473 + inSlope: -1.9477352 + outSlope: -1.9477352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.22348258 + inSlope: -2.0227988 + outSlope: -2.0227988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.37714535 + inSlope: -1.3655262 + outSlope: -1.3655262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.4843117 + inSlope: -0.49402028 + outSlope: -0.49402028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.50219494 + inSlope: -0.11389698 + outSlope: -0.11389698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.5104578 + inSlope: -0.05682176 + outSlope: -0.05682176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4371605 + inSlope: 0.30716208 + outSlope: 0.30716208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.42692176 + inSlope: 0.7323306 + outSlope: 0.7323306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.38833845 + inSlope: 1.2358978 + outSlope: 1.2358978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.34452856 + inSlope: 1.50713 + outSlope: 1.50713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.2878631 + inSlope: 2.2244287 + outSlope: 2.2244287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.079859816 + inSlope: 3.7748919 + outSlope: 3.7748919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.055426173 + inSlope: 0.6928545 + outSlope: 0.6928545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.033669516 + inSlope: -5.549507 + outSlope: -5.549507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.31454098 + inSlope: -7.160424 + outSlope: -7.160424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.65091395 + inSlope: -3.7135048 + outSlope: -3.7135048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.83636636 + inSlope: 0.9873135 + outSlope: 0.9873135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.6160875 + inSlope: 2.8699932 + outSlope: 2.8699932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.31278977 + inSlope: 2.8567734 + outSlope: 2.8567734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.14160988 + inSlope: 2.1213083 + outSlope: 2.1213083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.079214856 + inSlope: 1.6369941 + outSlope: 1.6369941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.032476928 + inSlope: 1.0767163 + outSlope: 1.0767163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.007433794 + inSlope: 0.66018665 + outSlope: 0.66018665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.011535521 + inSlope: 0.6119732 + outSlope: 0.6119732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.033364423 + inSlope: 0.71228385 + outSlope: 0.71228385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.08295923 + inSlope: 0.61081326 + outSlope: 0.61081326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.09974201 + inSlope: 0.4109175 + outSlope: 0.4109175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.11035376 + inSlope: 0.31835282 + outSlope: 0.31835282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33691004 + inSlope: 0.00035673377 + outSlope: 0.00035673377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.33692193 + inSlope: -0.5256146 + outSlope: -0.5256146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.30186906 + inSlope: -1.1023449 + outSlope: -1.1023449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.26343226 + inSlope: -1.0959052 + outSlope: -1.0959052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.22880872 + inSlope: -1.4012351 + outSlope: -1.4012351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.1700166 + inSlope: -2.2064137 + outSlope: -2.2064137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.081714444 + inSlope: -2.1307178 + outSlope: -2.1307178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.027968729 + inSlope: -1.2050538 + outSlope: -1.2050538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0013775241 + inSlope: -1.3837188 + outSlope: -1.3837188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.06427919 + inSlope: -1.7573042 + outSlope: -1.7573042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.115776084 + inSlope: -1.2126651 + outSlope: -1.2126651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.14512353 + inSlope: -0.6183303 + outSlope: -0.6183303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.15699811 + inSlope: -0.05851581 + outSlope: -0.05851581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.14902459 + inSlope: 0.2255738 + outSlope: 0.2255738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.14195986 + inSlope: 0.350632 + outSlope: 0.350632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.12564914 + inSlope: 0.9879445 + outSlope: 0.9879445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.07609687 + inSlope: 1.2501752 + outSlope: 1.2501752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.042304054 + inSlope: 1.2434022 + outSlope: 1.2434022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.006796595 + inSlope: 1.6812577 + outSlope: 1.6812577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.069779806 + inSlope: 1.6911702 + outSlope: 1.6911702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.11954129 + inSlope: 1.1891359 + outSlope: 1.1891359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.16813292 + inSlope: 0.57373285 + outSlope: 0.57373285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.18730436 + inSlope: 0.5921378 + outSlope: 0.5921378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.2209928 + inSlope: 0.27837452 + outSlope: 0.27837452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.22990069 + inSlope: 0.043404393 + outSlope: 0.043404393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.23274875 + inSlope: -0.012166511 + outSlope: -0.012166511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3282703 + inSlope: -4.378952 + outSlope: -4.378952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.18230522 + inSlope: -2.1579065 + outSlope: -2.1579065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.18440986 + inSlope: 0.20164107 + outSlope: 0.20164107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.19574796 + inSlope: 0.2541252 + outSlope: 0.2541252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.20135154 + inSlope: -0.5016437 + outSlope: -0.5016437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.16230504 + inSlope: -2.571915 + outSlope: -2.571915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.029890487 + inSlope: -4.7493258 + outSlope: -4.7493258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.15431671 + inSlope: -3.4650156 + outSlope: -3.4650156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.20111053 + inSlope: -0.94036734 + outSlope: -0.94036734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.21700786 + inSlope: 0.24220528 + outSlope: 0.24220528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.18496351 + inSlope: 1.1489211 + outSlope: 1.1489211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.14041312 + inSlope: 1.1503948 + outSlope: 1.1503948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.108270496 + inSlope: 0.72088706 + outSlope: 0.72088706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.092353955 + inSlope: 0.31035754 + outSlope: 0.31035754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.087579995 + inSlope: 0.12063107 + outSlope: 0.12063107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.08431189 + inSlope: 0.33705637 + outSlope: 0.33705637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.06510956 + inSlope: 0.323562 + outSlope: 0.323562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.06274107 + inSlope: 0.18322387 + outSlope: 0.18322387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.05289464 + inSlope: 0.6464467 + outSlope: 0.6464467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.019644605 + inSlope: 1.0371432 + outSlope: 1.0371432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.016248237 + inSlope: 0.80095613 + outSlope: 0.80095613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.03375245 + inSlope: 0.3829738 + outSlope: 0.3829738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.04177983 + inSlope: 0.24859245 + outSlope: 0.24859245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.05032528 + inSlope: 0.2839202 + outSlope: 0.2839202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.06070786 + inSlope: 0.25303838 + outSlope: 0.25303838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.06719451 + inSlope: 0.10443424 + outSlope: 0.10443424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.064517155 + inSlope: -0.11563918 + outSlope: -0.11563918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.059960857 + inSlope: -0.18556751 + outSlope: -0.18556751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.05214599 + inSlope: -0.21733263 + outSlope: -0.21733263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.040463123 + inSlope: -0.14128315 + outSlope: -0.14128315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.036053143 + inSlope: -0.13229953 + outSlope: -0.13229953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.35442513 + inSlope: -4.319455 + outSlope: -4.319455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.49840698 + inSlope: -0.99781835 + outSlope: -0.99781835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.42094636 + inSlope: 3.0891962 + outSlope: 3.0891962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.29246053 + inSlope: 4.7064114 + outSlope: 4.7064114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.107185565 + inSlope: 6.716491 + outSlope: 6.716491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.15530555 + inSlope: 8.309454 + outSlope: 8.309454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.44677818 + inSlope: 7.5954313 + outSlope: 7.5954313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.66166776 + inSlope: 0.9080789 + outSlope: 0.9080789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.50731677 + inSlope: -8.304897 + outSlope: -8.304897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.10800801 + inSlope: -9.208666 + outSlope: -9.208666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.10659427 + inSlope: -4.801957 + outSlope: -4.801957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.21212241 + inSlope: -2.652956 + outSlope: -2.652956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.32874355 + inSlope: -0.95194507 + outSlope: -0.95194507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.30102494 + inSlope: 1.5866375 + outSlope: 1.5866375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.02698376 + inSlope: 3.6161485 + outSlope: 3.6161485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.10112951 + inSlope: 3.9073157 + outSlope: 3.9073157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4565641 + inSlope: 2.5141368 + outSlope: 2.5141368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.5630476 + inSlope: 0.74317616 + outSlope: 0.74317616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.57681656 + inSlope: 0.05350294 + outSlope: 0.05350294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.5801999 + inSlope: 0.010864745 + outSlope: 0.010864745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05259393 + inSlope: -1.5160462 + outSlope: -1.5160462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0020590583 + inSlope: -1.3975056 + outSlope: -1.3975056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.040573116 + inSlope: -1.2759832 + outSlope: -1.2759832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0830065 + inSlope: -1.0444255 + outSlope: -1.0444255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.11020149 + inSlope: -0.9948043 + outSlope: -0.9948043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.14932679 + inSlope: -1.273932 + outSlope: -1.273932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1951303 + inSlope: -0.7788531 + outSlope: -0.7788531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.20125034 + inSlope: -0.7257839 + outSlope: -0.7257839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.2435159 + inSlope: -1.4759437 + outSlope: -1.4759437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.2996466 + inSlope: -0.9186506 + outSlope: -0.9186506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.2862111 + inSlope: 0.54012966 + outSlope: 0.54012966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.24502307 + inSlope: 0.78005457 + outSlope: 0.78005457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.21674697 + inSlope: 0.6765352 + outSlope: 0.6765352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.19992074 + inSlope: 0.28396457 + outSlope: 0.28396457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.19781601 + inSlope: 0.12013805 + outSlope: 0.12013805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.19191153 + inSlope: 0.033264183 + outSlope: 0.033264183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.205719 + inSlope: 0.08134098 + outSlope: 0.08134098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.17237799 + inSlope: 0.24955699 + outSlope: 0.24955699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.16716865 + inSlope: 0.16338253 + outSlope: 0.16338253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.15088345 + inSlope: 0.12874068 + outSlope: 0.12874068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.14100409 + inSlope: 0.15866645 + outSlope: 0.15866645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.13096675 + inSlope: 0.0709132 + outSlope: 0.0709132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.050313383 + inSlope: -1.6991162 + outSlope: -1.6991162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0063238256 + inSlope: -0.67803854 + outSlope: -0.67803854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0051108142 + inSlope: 0.59227717 + outSlope: 0.59227717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.033161324 + inSlope: 1.1681895 + outSlope: 1.1681895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08299012 + inSlope: 1.6358852 + outSlope: 1.6358852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.14222033 + inSlope: 2.3822203 + outSlope: 2.3822203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.24180484 + inSlope: 1.742618 + outSlope: 1.742618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.2583949 + inSlope: -5.8582067 + outSlope: -5.8582067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.14874227 + inSlope: -9.562148 + outSlope: -9.562148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.37908164 + inSlope: -4.7335134 + outSlope: -4.7335134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.4643098 + inSlope: -1.5152801 + outSlope: -1.5152801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.46643293 + inSlope: 0.46186775 + outSlope: 0.46186775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.4493091 + inSlope: 0.3634027 + outSlope: 0.3634027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.42990527 + inSlope: 0.21395963 + outSlope: 0.21395963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.40128806 + inSlope: 0.9958646 + outSlope: 0.9958646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.22450466 + inSlope: 2.1023705 + outSlope: 2.1023705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.09629899 + inSlope: 1.521945 + outSlope: 1.521945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.05345586 + inSlope: 1.0078826 + outSlope: 1.0078826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.02910681 + inSlope: 0.46029946 + outSlope: 0.46029946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.022769246 + inSlope: 0.009639144 + outSlope: 0.009639144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.02846419 + inSlope: -0.32296985 + outSlope: -0.32296985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.06540343 + inSlope: -0.6299609 + outSlope: -0.6299609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.10232452 + inSlope: -0.35469 + outSlope: -0.35469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.10994396 + inSlope: -0.22858344 + outSlope: -0.22858344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.43157613 + inSlope: 2.0626025 + outSlope: 2.0626025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.30045623 + inSlope: 1.584226 + outSlope: 1.584226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.25964436 + inSlope: -1.1704588 + outSlope: -1.1704588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.33523822 + inSlope: -3.554058 + outSlope: -3.554058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.4965816 + inSlope: -4.9450836 + outSlope: -4.9450836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.6649105 + inSlope: 3.849091 + outSlope: 3.849091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.23997556 + inSlope: 8.94985 + outSlope: 8.94985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.068253875 + inSlope: 2.7708285 + outSlope: 2.7708285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.05525367 + inSlope: -0.63996226 + outSlope: -0.63996226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.11091802 + inSlope: -1.7085235 + outSlope: -1.7085235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.2313449 + inSlope: -1.8539915 + outSlope: -1.8539915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.2927547 + inSlope: -1.1824104 + outSlope: -1.1824104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.31017223 + inSlope: 0.2473267 + outSlope: 0.2473267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.27626622 + inSlope: 0.7928585 + outSlope: 0.7928585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.25731495 + inSlope: 0.8006271 + outSlope: 0.8006271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.22289109 + inSlope: 1.0618756 + outSlope: 1.0618756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.18652324 + inSlope: 0.7282139 + outSlope: 0.7282139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.17434348 + inSlope: -0.11148605 + outSlope: -0.11148605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.22823805 + inSlope: -0.93840873 + outSlope: -0.93840873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.25651625 + inSlope: -0.6674788 + outSlope: -0.6674788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.28632566 + inSlope: -0.071825534 + outSlope: -0.071825534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.28843498 + inSlope: 0.09710254 + outSlope: 0.09710254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.26954016 + inSlope: 0.32769608 + outSlope: 0.32769608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.24861448 + inSlope: 0.19233797 + outSlope: 0.19233797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.24518321 + inSlope: 0.102937914 + outSlope: 0.102937914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.021420639 + inSlope: -0.2683636 + outSlope: -0.2683636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.030366093 + inSlope: -0.20883304 + outSlope: -0.20883304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.034031127 + inSlope: 0.18406034 + outSlope: 0.18406034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.023072153 + inSlope: 0.36048523 + outSlope: 0.36048523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.009998779 + inSlope: 0.23070534 + outSlope: 0.23070534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.007691797 + inSlope: 0.16919927 + outSlope: 0.16919927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0012811726 + inSlope: -0.9792603 + outSlope: -0.9792603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.072975814 + inSlope: -0.6369492 + outSlope: -0.6369492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.041182104 + inSlope: 0.5349404 + outSlope: 0.5349404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.037313122 + inSlope: 0.13812824 + outSlope: 0.13812824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.02772499 + inSlope: 0.07772858 + outSlope: 0.07772858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.026791647 + inSlope: 0.014159969 + outSlope: 0.014159969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.030962592 + inSlope: -0.065874055 + outSlope: -0.065874055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.03338772 + inSlope: -0.096419394 + outSlope: -0.096419394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.037390552 + inSlope: -0.28084025 + outSlope: -0.28084025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.052110393 + inSlope: -0.36149022 + outSlope: -0.36149022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.061489895 + inSlope: 0.041713953 + outSlope: 0.041713953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.049329482 + inSlope: 0.22115225 + outSlope: 0.22115225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.048732456 + inSlope: -0.051472537 + outSlope: -0.051472537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.050945245 + inSlope: -0.00032899808 + outSlope: -0.00032899808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.049348913 + inSlope: 0.024417154 + outSlope: 0.024417154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.046345986 + inSlope: 0.028326055 + outSlope: 0.028326055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.399686 + inSlope: 0.41114953 + outSlope: 0.41114953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.38598102 + inSlope: 0.7466568 + outSlope: 0.7466568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.3499089 + inSlope: 1.3393068 + outSlope: 1.3393068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.2966939 + inSlope: 2.1291728 + outSlope: 2.1291728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.20796403 + inSlope: 3.7395172 + outSlope: 3.7395172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.04739276 + inSlope: 7.243796 + outSlope: 7.243796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.2749558 + inSlope: 9.246689 + outSlope: 9.246689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5690533 + inSlope: 6.0804033 + outSlope: 6.0804033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.68031603 + inSlope: -2.0624862 + outSlope: -2.0624862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.43155423 + inSlope: -8.102709 + outSlope: -8.102709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.14013542 + inSlope: -7.8267384 + outSlope: -7.8267384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0902283 + inSlope: -5.499382 + outSlope: -5.499382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.22649015 + inSlope: -3.6763358 + outSlope: -3.6763358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.33531746 + inSlope: -2.8815923 + outSlope: -2.8815923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.4185963 + inSlope: -1.6326472 + outSlope: -1.6326472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.4256034 + inSlope: 0.87608874 + outSlope: 0.87608874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.3276661 + inSlope: 1.8287516 + outSlope: 1.8287516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.26383784 + inSlope: 2.3481143 + outSlope: 2.3481143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.17112519 + inSlope: 3.2794242 + outSlope: 3.2794242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.04520956 + inSlope: 4.6986775 + outSlope: 4.6986775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1421199 + inSlope: 5.2104235 + outSlope: 5.2104235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.30215195 + inSlope: 3.7933068 + outSlope: 3.7933068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.39500722 + inSlope: 2.4089615 + outSlope: 2.4089615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.4627494 + inSlope: 1.5327909 + outSlope: 1.5327909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.5220726 + inSlope: 0.28069228 + outSlope: 0.28069228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.5530986 + inSlope: 0.21663329 + outSlope: 0.21663329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.59711367 + inSlope: -5.8233743 + outSlope: -5.8233743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.4030012 + inSlope: -2.6682549 + outSlope: -2.6682549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.41923 + inSlope: 0.9470405 + outSlope: 0.9470405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.53262997 + inSlope: 2.1529593 + outSlope: 2.1529593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.60966784 + inSlope: 1.3482704 + outSlope: 1.3482704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.62251467 + inSlope: -0.8309637 + outSlope: -0.8309637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.55427027 + inSlope: -1.8448012 + outSlope: -1.8448012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.49952793 + inSlope: 1.3278911 + outSlope: 1.3278911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.64279634 + inSlope: 4.207096 + outSlope: 4.207096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.780001 + inSlope: 3.3482466 + outSlope: 3.3482466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.86601275 + inSlope: 2.1480045 + outSlope: 2.1480045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9232013 + inSlope: 0.7034882 + outSlope: 0.7034882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.8626553 + inSlope: -1.7782001 + outSlope: -1.7782001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.63902575 + inSlope: -2.0319521 + outSlope: -2.0319521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.4621989 + inSlope: -1.7547522 + outSlope: -1.7547522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.40077806 + inSlope: -1.8276868 + outSlope: -1.8276868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.34035313 + inSlope: -1.3418981 + outSlope: -1.3418981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.31131822 + inSlope: -0.70466447 + outSlope: -0.70466447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.2815149 + inSlope: -0.023068767 + outSlope: -0.023068767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.27611026 + inSlope: -0.059483405 + outSlope: -0.059483405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.285155 + inSlope: -2.2018034 + outSlope: -2.2018034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.21176155 + inSlope: -1.0698364 + outSlope: -1.0698364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.21383257 + inSlope: 0.27577865 + outSlope: 0.27577865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.2301468 + inSlope: 1.3708407 + outSlope: 1.3708407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.30522195 + inSlope: 3.1959052 + outSlope: 3.1959052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.44320711 + inSlope: 3.825438 + outSlope: 3.825438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.5602512 + inSlope: 2.2595026 + outSlope: 2.2595026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.59384066 + inSlope: 0.88533115 + outSlope: 0.88533115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.61927325 + inSlope: -0.90625954 + outSlope: -0.90625954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.53342336 + inSlope: -3.5445273 + outSlope: -3.5445273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.38297144 + inSlope: -4.559587 + outSlope: -4.559587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.22945091 + inSlope: -4.26182 + outSlope: -4.26182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.09885 + inSlope: -4.0149326 + outSlope: -4.0149326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.03821139 + inSlope: -3.7749784 + outSlope: -3.7749784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.15281522 + inSlope: -2.4751673 + outSlope: -2.4751673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.20055091 + inSlope: 0.76016647 + outSlope: 0.76016647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.15254469 + inSlope: 1.8326025 + outSlope: 1.8326025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.07837744 + inSlope: 1.9816571 + outSlope: 1.9816571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.020434236 + inSlope: 1.7152977 + outSlope: 1.7152977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.03597574 + inSlope: 1.7045867 + outSlope: 1.7045867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.09320487 + inSlope: 1.3997982 + outSlope: 1.3997982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.12929563 + inSlope: 1.141541 + outSlope: 1.141541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.1693076 + inSlope: 0.9397522 + outSlope: 0.9397522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.19194584 + inSlope: 0.41401148 + outSlope: 0.41401148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.19288324 + inSlope: -0.1261271 + outSlope: -0.1261271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.17945248 + inSlope: -0.18345858 + outSlope: -0.18345858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.17273839 + inSlope: -0.16711004 + outSlope: -0.16711004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.16265567 + inSlope: -0.1696843 + outSlope: -0.1696843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.45100403 + inSlope: -4.578806 + outSlope: -4.578806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.6036309 + inSlope: -1.5015471 + outSlope: -1.5015471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.55110717 + inSlope: 2.1233163 + outSlope: 2.1233163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.32536307 + inSlope: 5.212159 + outSlope: 5.212159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.1145992 + inSlope: 7.0191593 + outSlope: 7.0191593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.14258096 + inSlope: 7.2761407 + outSlope: 7.2761407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.37047693 + inSlope: 4.123961 + outSlope: 4.123961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.41751167 + inSlope: -4.4607687 + outSlope: -4.4607687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.073092364 + inSlope: -8.889182 + outSlope: -8.889182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.17510046 + inSlope: -5.973161 + outSlope: -5.973161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.32511836 + inSlope: -3.7878728 + outSlope: -3.7878728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.518491 + inSlope: -0.32995144 + outSlope: -0.32995144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.40469906 + inSlope: 2.5004258 + outSlope: 2.5004258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.30740237 + inSlope: 3.1738899 + outSlope: 3.1738899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.050344072 + inSlope: 4.7665563 + outSlope: 4.7665563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.12466401 + inSlope: 5.326317 + outSlope: 5.326317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.30474368 + inSlope: 4.7657824 + outSlope: 4.7657824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.44238278 + inSlope: 3.2489781 + outSlope: 3.2489781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.5213424 + inSlope: 1.85531 + outSlope: 1.85531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.5832976 + inSlope: 0.06538425 + outSlope: 0.06538425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.5847965 + inSlope: 0.0030380515 + outSlope: 0.0030380515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.15548798 + inSlope: 1.0674677 + outSlope: 1.0674677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.119905725 + inSlope: 0.6883217 + outSlope: 0.6883217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.109599866 + inSlope: -0.041647866 + outSlope: -0.041647866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.12268225 + inSlope: 0.124065965 + outSlope: 0.124065965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.101328805 + inSlope: 1.3743789 + outSlope: 1.3743789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.031057002 + inSlope: 2.0006993 + outSlope: 2.0006993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.03205116 + inSlope: 1.3902776 + outSlope: 1.3902776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.061628196 + inSlope: -0.044621617 + outSlope: -0.044621617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.029076388 + inSlope: -0.95488983 + outSlope: -0.95488983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0020311212 + inSlope: -1.0068338 + outSlope: -1.0068338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.038045857 + inSlope: -0.9015287 + outSlope: -0.9015287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.06213303 + inSlope: -0.83036315 + outSlope: -0.83036315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09340343 + inSlope: -0.63273716 + outSlope: -0.63273716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.06521761 + inSlope: 1.1714671 + outSlope: 1.1714671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.016475482 + inSlope: 1.5160813 + outSlope: 1.5160813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.03585457 + inSlope: 1.4397122 + outSlope: 1.4397122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.07950533 + inSlope: 1.1080892 + outSlope: 1.1080892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.13270058 + inSlope: 0.6302981 + outSlope: 0.6302981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.15174703 + inSlope: 0.46734828 + outSlope: 0.46734828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.16385713 + inSlope: -0.13191663 + outSlope: -0.13191663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.14295256 + inSlope: -0.6524011 + outSlope: -0.6524011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.12036369 + inSlope: -0.5390457 + outSlope: -0.5390457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0968358 + inSlope: 0.0019426094 + outSlope: 0.0019426094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.10051377 + inSlope: 0.07676053 + outSlope: 0.07676053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.106515504 + inSlope: 0.113076895 + outSlope: 0.113076895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49803796 + inSlope: 2.0908883 + outSlope: 2.0908883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.56773424 + inSlope: 0.28758782 + outSlope: 0.28758782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5172105 + inSlope: -1.7927489 + outSlope: -1.7927489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.36893338 + inSlope: -2.4915152 + outSlope: -2.4915152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.28211662 + inSlope: -2.1533916 + outSlope: -2.1533916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.22537392 + inSlope: -1.8574002 + outSlope: -1.8574002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.15828992 + inSlope: -5.8470645 + outSlope: -5.8470645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.16443035 + inSlope: -10.035794 + outSlope: -10.035794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.510763 + inSlope: -8.681529 + outSlope: -8.681529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.74319893 + inSlope: -5.0840487 + outSlope: -5.0840487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.84969956 + inSlope: -2.3433945 + outSlope: -2.3433945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.86723876 + inSlope: 1.2433119 + outSlope: 1.2433119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.556408 + inSlope: 3.1136196 + outSlope: 3.1136196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.44732603 + inSlope: 1.9462823 + outSlope: 1.9462823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.42665577 + inSlope: -0.820858 + outSlope: -0.820858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.50205 + inSlope: -2.0992308 + outSlope: -2.0992308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.5666045 + inSlope: -0.7188394 + outSlope: -0.7188394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.54997253 + inSlope: 1.2629452 + outSlope: 1.2629452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.48240808 + inSlope: 1.6395724 + outSlope: 1.6395724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.41807693 + inSlope: 0.058389 + outSlope: 0.058389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.41405314 + inSlope: 0.066084325 + outSlope: 0.066084325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.39241385 + inSlope: -10.62848 + outSlope: -10.62848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.74669653 + inSlope: -6.434682 + outSlope: -6.434682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.82139266 + inSlope: -1.8665822 + outSlope: -1.8665822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.87113535 + inSlope: -0.66639024 + outSlope: -0.66639024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.8658187 + inSlope: -0.22909287 + outSlope: -0.22909287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.8864082 + inSlope: -0.9644524 + outSlope: -0.9644524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.9301155 + inSlope: 1.0400581 + outSlope: 1.0400581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.817071 + inSlope: 3.4796128 + outSlope: 3.4796128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.69814134 + inSlope: -0.32722878 + outSlope: -0.32722878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.83888626 + inSlope: -3.8814716 + outSlope: -3.8814716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -1.0564357 + inSlope: -2.4496949 + outSlope: -2.4496949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -1.1202191 + inSlope: -2.1849108 + outSlope: -2.1849108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -1.3556752 + inSlope: 0.4659351 + outSlope: 0.4659351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.9824142 + inSlope: 3.3025703 + outSlope: 3.3025703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.88082075 + inSlope: 2.7661219 + outSlope: 2.7661219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.79800606 + inSlope: 2.8104498 + outSlope: 2.8104498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6934574 + inSlope: 2.7226312 + outSlope: 2.7226312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.57618815 + inSlope: 0.8325554 + outSlope: 0.8325554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.56302965 + inSlope: -0.03687322 + outSlope: -0.03687322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.56973016 + inSlope: -0.045554683 + outSlope: -0.045554683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000018248855 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0000018248855 + inSlope: -0.000000003335572 + outSlope: -0.000000003335572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000018246632 + inSlope: -0.000020493902 + outSlope: -0.000020493902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000004586254 + inSlope: -0.000020060344 + outSlope: -0.000020060344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000048730686 + inSlope: -1.9895197e-13 + outSlope: -1.9895197e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0000004586254 + inSlope: -0.00000043022186 + outSlope: -0.00000043022186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000004586254 + inSlope: -0.000008488545 + outSlope: -0.000008488545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.00000010727754 + inSlope: -0.000006399968 + outSlope: -0.000006399968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.000000031960926 + inSlope: 0.000004219676 + outSlope: 0.000004219676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00000017403418 + inSlope: -0.000022559947 + outSlope: -0.000022559947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.000001472037 + inSlope: -0.000024691046 + outSlope: -0.000024691046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.000001472037 + inSlope: 0.0000008346007 + outSlope: 0.0000008346007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0000014163969 + inSlope: -0.000017941768 + outSlope: -0.000017941768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0000026681537 + inSlope: -0.000017062985 + outSlope: -0.000017062985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.000002553928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0000026681537 + inSlope: -0.000029040837 + outSlope: -0.000029040837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.000004489982 + inSlope: -0.000024766137 + outSlope: -0.000024766137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0000043192276 + inSlope: 0.0000025613147 + outSlope: 0.0000025613147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000043192276 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0000043192276 + inSlope: -0.000019617642 + outSlope: -0.000019617642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.000005627069 + inSlope: -0.000023051914 + outSlope: -0.000023051914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.000005856021 + inSlope: -0.000029040773 + outSlope: -0.000029040773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0000075631224 + inSlope: -0.000025606501 + outSlope: -0.000025606501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0000075631224 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0000075631224 + inSlope: 0.000025606561 + outSlope: 0.000025606561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.00000585602 + inSlope: 4.5474735e-11 + outSlope: 4.5474735e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0000075631224 + inSlope: -0.00003926108 + outSlope: -0.00003926108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.000008473426 + inSlope: -0.000014508332 + outSlope: -0.000014508332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000008530344 + inSlope: 0.0000016950361 + outSlope: 0.0000016950361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.000008360423 + inSlope: -0.00004354252 + outSlope: -0.00004354252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.000011433175 + inSlope: -0.00009218266 + outSlope: -0.00009218266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000011392542 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0000011392542 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0000011392542 + inSlope: 0.000013727079 + outSlope: 0.000013727079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000020543928 + inSlope: -0.00000080041355 + outSlope: -0.00000080041355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000010858934 + inSlope: -0.000028281247 + outSlope: -0.000028281247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000016897603 + inSlope: 6.366463e-12 + outSlope: 6.366463e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0000010858934 + inSlope: 0.000013753761 + outSlope: 0.000013753761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000010858934 + inSlope: -0.00000034684663 + outSlope: -0.00000034684663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0000010627703 + inSlope: -0.00001747568 + outSlope: -0.00001747568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00000007915193 + inSlope: 0.000023972363 + outSlope: 0.000023972363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0000026609277 + inSlope: 0.00001628842 + outSlope: 0.00001628842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0000010067413 + inSlope: -0.000024812776 + outSlope: -0.000024812776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000010067413 + inSlope: 0.000024212488 + outSlope: 0.000024212488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.000002620907 + inSlope: -0.000007016981 + outSlope: -0.000007016981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00000053894456 + inSlope: -0.000021064237 + outSlope: -0.000021064237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000012166272 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.00000053894456 + inSlope: -0.000010658819 + outSlope: -0.000010658819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00000050603876 + inSlope: 0.000013193463 + outSlope: 0.000013193463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000014185096 + inSlope: 0.00001368705 + outSlope: 0.00001368705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000014185096 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0000014185096 + inSlope: -0.00001783589 + outSlope: -0.00001783589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000022945147 + inSlope: -0.000044796434 + outSlope: -0.000044796434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0000015679198 + inSlope: -0.0000004135436 + outSlope: -0.0000004135436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.00000020188182 + inSlope: 0.000026547 + outSlope: 0.000026547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.00000020188182 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.00000020188182 + inSlope: 0.000007523889 + outSlope: 0.000007523889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0000007034739 + inSlope: 1.36424205e-11 + outSlope: 1.36424205e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.00000020188182 + inSlope: -0.0000113658625 + outSlope: -0.0000113658625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.00000005425039 + inSlope: 0.000013180138 + outSlope: 0.000013180138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000010805569 + inSlope: -0.000023545348 + outSlope: -0.000023545348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0000016239484 + inSlope: -0.00003505797 + outSlope: -0.00003505797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0000012566484 + inSlope: 0.00001101901 + outSlope: 0.00001101901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20921099 + inSlope: 6.7869253 + outSlope: 6.7869253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.43544185 + inSlope: 4.0510783 + outSlope: 4.0510783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.4792829 + inSlope: 1.3289683 + outSlope: 1.3289683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.57418454 + inSlope: 1.5736406 + outSlope: 1.5736406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.67144305 + inSlope: -1.2878314 + outSlope: -1.2878314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.6054271 + inSlope: -2.6262126 + outSlope: -2.6262126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.37507358 + inSlope: -3.3690848 + outSlope: -3.3690848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.27175647 + inSlope: -2.669907 + outSlope: -2.669907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.19707969 + inSlope: -1.8142982 + outSlope: -1.8142982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.11880264 + inSlope: -0.8677021 + outSlope: -0.8677021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.09295647 + inSlope: -0.6455101 + outSlope: -0.6455101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0757686 + inSlope: -0.4459445 + outSlope: -0.4459445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.063226834 + inSlope: -0.543167 + outSlope: -0.543167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.039557457 + inSlope: -0.8926214 + outSlope: -0.8926214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0037187552 + inSlope: -1.5900822 + outSlope: -1.5900822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.06644805 + inSlope: -2.30062 + outSlope: -2.30062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.1496559 + inSlope: -2.5299878 + outSlope: -2.5299878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.31768844 + inSlope: -2.427687 + outSlope: -2.427687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.46124932 + inSlope: -1.633124 + outSlope: -1.633124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.5641169 + inSlope: -0.71742725 + outSlope: -0.71742725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.60688156 + inSlope: -0.20515163 + outSlope: -0.20515163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.63446194 + inSlope: -6.2899146 + outSlope: -6.2899146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.4247981 + inSlope: -3.6609592 + outSlope: -3.6609592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.39039797 + inSlope: -1.1192303 + outSlope: -1.1192303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.29155892 + inSlope: -2.0218892 + outSlope: -2.0218892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.21539013 + inSlope: -2.680281 + outSlope: -2.680281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.11287349 + inSlope: -3.4080725 + outSlope: -3.4080725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.011814739 + inSlope: -4.163509 + outSlope: -4.163509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.16469377 + inSlope: -4.458909 + outSlope: -4.458909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.30907536 + inSlope: -3.3648183 + outSlope: -3.3648183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.38343596 + inSlope: 1.4341519 + outSlope: 1.4341519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.31666958 + inSlope: 2.130289 + outSlope: 2.130289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.16101219 + inSlope: 2.4476767 + outSlope: 2.4476767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.07823828 + inSlope: 2.363278 + outSlope: 2.363278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0034601963 + inSlope: 2.2500973 + outSlope: 2.2500973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0717682 + inSlope: 2.288019 + outSlope: 2.288019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.14907439 + inSlope: 2.1926222 + outSlope: 2.1926222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.38346076 + inSlope: 0.5376357 + outSlope: 0.5376357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.4085801 + inSlope: 0.16093569 + outSlope: 0.16093569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.42991912 + inSlope: 0.11844646 + outSlope: 0.11844646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.36753854 + inSlope: -7.602235 + outSlope: -7.602235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.11413069 + inSlope: -3.5405488 + outSlope: -3.5405488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.13150193 + inSlope: 0.7203822 + outSlope: 0.7203822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.16215618 + inSlope: 0.80216503 + outSlope: 0.80216503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.1849796 + inSlope: 0.373978 + outSlope: 0.373978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.18708804 + inSlope: -0.2938249 + outSlope: -0.2938249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.16539127 + inSlope: -0.74006224 + outSlope: -0.74006224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.13775055 + inSlope: -1.2665471 + outSlope: -1.2665471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0809548 + inSlope: -2.568077 + outSlope: -2.568077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.033454575 + inSlope: -4.2977114 + outSlope: -4.2977114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.2055593 + inSlope: -5.2296586 + outSlope: -5.2296586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.38209847 + inSlope: -4.223811 + outSlope: -4.223811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.54418737 + inSlope: -1.0514323 + outSlope: -1.0514323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.5575313 + inSlope: 0.029746559 + outSlope: 0.029746559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.5268575 + inSlope: 1.2786765 + outSlope: 1.2786765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2031228 + inSlope: 2.6940546 + outSlope: 2.6940546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.035963736 + inSlope: 2.3452582 + outSlope: 2.3452582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.039753027 + inSlope: 2.1822493 + outSlope: 2.1822493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.10951955 + inSlope: 1.7853606 + outSlope: 1.7853606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.15877704 + inSlope: 1.1420051 + outSlope: 1.1420051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.1999302 + inSlope: 0.3767656 + outSlope: 0.3767656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.22544317 + inSlope: 0.08476923 + outSlope: 0.08476923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.22574833 + inSlope: 0.009154835 + outSlope: 0.009154835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4356134 + inSlope: 3.832392 + outSlope: 3.832392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5633598 + inSlope: 1.479924 + outSlope: 1.479924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.534275 + inSlope: -0.7763009 + outSlope: -0.7763009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5085603 + inSlope: 0.16456605 + outSlope: 0.16456605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.5439662 + inSlope: 0.7725476 + outSlope: 0.7725476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6271024 + inSlope: 2.0115972 + outSlope: 2.0115972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.85551715 + inSlope: 1.1031853 + outSlope: 1.1031853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.8702169 + inSlope: -0.09846211 + outSlope: -0.09846211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7323222 + inSlope: -1.6731815 + outSlope: -1.6731815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.47895047 + inSlope: -1.6975923 + outSlope: -1.6975923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.31822357 + inSlope: -0.5359477 + outSlope: -0.5359477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.2907314 + inSlope: -0.21374634 + outSlope: -0.21374634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.27332905 + inSlope: -0.13823225 + outSlope: -0.13823225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.30222178 + inSlope: -3.8441656 + outSlope: -3.8441656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.17408292 + inSlope: -2.681078 + outSlope: -2.681078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.12348324 + inSlope: -1.2121634 + outSlope: -1.2121634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.093272015 + inSlope: -0.6451444 + outSlope: -0.6451444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08047361 + inSlope: -0.43084437 + outSlope: -0.43084437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.06454906 + inSlope: -0.9592558 + outSlope: -0.9592558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.016523205 + inSlope: -1.8847303 + outSlope: -1.8847303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.061099645 + inSlope: -2.0896354 + outSlope: -2.0896354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.122785814 + inSlope: -0.78869563 + outSlope: -0.78869563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.11367935 + inSlope: 1.3215473 + outSlope: 1.3215473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.03468267 + inSlope: 2.478532 + outSlope: 2.478532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.05155612 + inSlope: 1.3867013 + outSlope: 1.3867013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.05776409 + inSlope: -0.13062485 + outSlope: -0.13062485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.042847805 + inSlope: -0.5572654 + outSlope: -0.5572654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.020613065 + inSlope: -0.7331632 + outSlope: -0.7331632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0060297134 + inSlope: -0.82381773 + outSlope: -0.82381773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.034308117 + inSlope: -0.97461295 + outSlope: -0.97461295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.10956809 + inSlope: -1.0863984 + outSlope: -1.0863984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.17430565 + inSlope: -0.9321314 + outSlope: -0.9321314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.2507703 + inSlope: -0.3951378 + outSlope: -0.3951378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.26406798 + inSlope: 0.003329957 + outSlope: 0.003329957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.26129088 + inSlope: 0.025980795 + outSlope: 0.025980795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3629517 + inSlope: 1.666865 + outSlope: 1.666865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.41851386 + inSlope: 0.35789922 + outSlope: 0.35789922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.38681164 + inSlope: -1.2363417 + outSlope: -1.2363417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.33609107 + inSlope: -1.2123597 + outSlope: -1.2123597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.30598766 + inSlope: -0.5977205 + outSlope: -0.5977205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.29624304 + inSlope: -0.28040436 + outSlope: -0.28040436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.28729403 + inSlope: -0.31972376 + outSlope: -0.31972376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.26694533 + inSlope: -0.093690015 + outSlope: -0.093690015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.27251568 + inSlope: 0.03355041 + outSlope: 0.03355041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.27099752 + inSlope: 0.071068265 + outSlope: 0.071068265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.27876523 + inSlope: -0.023621384 + outSlope: -0.023621384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.2518455 + inSlope: -0.41329765 + outSlope: -0.41329765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.21314214 + inSlope: -0.7360407 + outSlope: -0.7360407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.16459149 + inSlope: -0.57301325 + outSlope: -0.57301325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.13994598 + inSlope: -0.18551774 + outSlope: -0.18551774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.1337808 + inSlope: -0.08727327 + outSlope: -0.08727327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.12688318 + inSlope: -0.016025962 + outSlope: -0.016025962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.12690377 + inSlope: -0.0076612905 + outSlope: -0.0076612905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.45131856 + inSlope: 5.7904534 + outSlope: 5.7904534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.25830343 + inSlope: 3.339086 + outSlope: 3.339086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.22871281 + inSlope: 0.68824005 + outSlope: 0.68824005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.21242076 + inSlope: 0.9007904 + outSlope: 0.9007904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.16866012 + inSlope: 1.5305651 + outSlope: 1.5305651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.11038309 + inSlope: 1.6638415 + outSlope: 1.6638415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.057737336 + inSlope: 1.2626524 + outSlope: 1.2626524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.026206251 + inSlope: 0.24724346 + outSlope: 0.24724346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.04125444 + inSlope: -1.3072162 + outSlope: -1.3072162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.11335399 + inSlope: -2.6301575 + outSlope: -2.6301575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.21659826 + inSlope: -2.8945885 + outSlope: -2.8945885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.30632654 + inSlope: -2.0567873 + outSlope: -2.0567873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.35371745 + inSlope: -0.8464827 + outSlope: -0.8464827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.3583948 + inSlope: 0.13795055 + outSlope: 0.13795055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.31252813 + inSlope: 1.2138703 + outSlope: 1.2138703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.128766 + inSlope: 1.8005881 + outSlope: 1.8005881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.027520785 + inSlope: 1.3610066 + outSlope: 1.3610066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.01638924 + inSlope: 1.2174191 + outSlope: 1.2174191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.053640552 + inSlope: 0.9032015 + outSlope: 0.9032015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.07660268 + inSlope: 0.49657667 + outSlope: 0.49657667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.09078822 + inSlope: 0.11617509 + outSlope: 0.11617509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.113245085 + inSlope: 0.13764775 + outSlope: 0.13764775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000004637836 + inSlope: -0.000022159751 + outSlope: -0.000022159751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000038991775 + inSlope: -0.000011079876 + outSlope: -0.000011079876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0000038991775 + inSlope: 0.000011079875 + outSlope: 0.000011079875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.000004637836 + inSlope: 0.000010035172 + outSlope: 0.000010035172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.000004568189 + inSlope: -0.0000092130895 + outSlope: -0.0000092130895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00000402363 + inSlope: -0.000010035174 + outSlope: -0.000010035174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0000038991775 + inSlope: 0.0000092130895 + outSlope: 0.0000092130895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.000004637836 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000038991775 + inSlope: -0.000009213089 + outSlope: -0.000009213089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.00000402363 + inSlope: 0.0000100351745 + outSlope: 0.0000100351745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.000004568189 + inSlope: -0.0000060210205 + outSlope: -0.0000060210205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0000036222286 + inSlope: -0.000010035177 + outSlope: -0.000010035177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0000038991775 + inSlope: 0.000014189403 + outSlope: 0.000014189403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.000004568189 + inSlope: 0.000011079877 + outSlope: 0.000011079877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.000004637836 + inSlope: -9.094947e-13 + outSlope: -9.094947e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.000004568189 + inSlope: -0.000009213083 + outSlope: -0.000009213083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00000402363 + inSlope: 0.0000010447011 + outSlope: 0.0000010447011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.000004637836 + inSlope: 0.000008939188 + outSlope: 0.000008939188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000046195764 + inSlope: 0.000006403296 + outSlope: 0.000006403296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000050647227 + inSlope: -0.000010806007 + outSlope: -0.000010806007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000038991775 + inSlope: 0.0000005798465 + outSlope: 0.0000005798465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.000005103381 + inSlope: 0.0000018667579 + outSlope: 0.0000018667579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000402363 + inSlope: -0.00000057990655 + outSlope: -0.00000057990655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000050647227 + inSlope: 0.000008168379 + outSlope: 0.000008168379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.000004568189 + inSlope: -0.0000064032947 + outSlope: -0.0000064032947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.000004637836 + inSlope: 0.0000010447035 + outSlope: 0.0000010447035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.000004637836 + inSlope: -0.0000010447035 + outSlope: -0.0000010447035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.000004568189 + inSlope: 0.0000069831726 + outSlope: 0.0000069831726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.000005103381 + inSlope: -1.36424205e-11 + outSlope: -1.36424205e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.000004568189 + inSlope: -0.00000802789 + outSlope: -0.00000802789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000004568189 + inSlope: 0.00000077080836 + outSlope: 0.00000077080836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000004637836 + inSlope: 0.0000005477846 + outSlope: 0.0000005477846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000007203715 + inSlope: -0.0000040020686 + outSlope: -0.0000040020686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000005869692 + inSlope: -0.0000020010343 + outSlope: -0.0000020010343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0000005869692 + inSlope: 0.000002001034 + outSlope: 0.000002001034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0000007203715 + inSlope: 0.000019209909 + outSlope: 0.000019209909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000018676297 + inSlope: 0.000021957987 + outSlope: 0.000021957987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000021842372 + inSlope: -0.0000192099 + outSlope: -0.0000192099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0000005869692 + inSlope: -0.000021957978 + outSlope: -0.000021957978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0000007203715 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000005869692 + inSlope: 0.000021957987 + outSlope: 0.000021957987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0000021842372 + inSlope: 0.000019209909 + outSlope: 0.000019209909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000018676297 + inSlope: -0.00003457783 + outSlope: -0.00003457783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.00000012095123 + inSlope: -0.00001920992 + outSlope: -0.00001920992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0000005869692 + inSlope: 0.000029828709 + outSlope: 0.000029828709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000018676297 + inSlope: 0.0000020010357 + outSlope: 0.0000020010357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0000007203715 + inSlope: 1.4551915e-11 + outSlope: 1.4551915e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0000018676297 + inSlope: 0.000021957998 + outSlope: 0.000021957998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000021842372 + inSlope: -0.00001720886 + outSlope: -0.00001720886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0000007203715 + inSlope: -0.00003561836 + outSlope: -0.00003561836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00000019032035 + inSlope: 0.00000029345938 + outSlope: 0.00000029345938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000007399371 + inSlope: 0.000011659329 + outSlope: 0.000011659329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000005869692 + inSlope: -0.000013633689 + outSlope: -0.000013633689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.00000016897602 + inSlope: 0.000023959063 + outSlope: 0.000023959063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000021842372 + inSlope: 0.000013633748 + outSlope: 0.000013633748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000007399371 + inSlope: -0.0000047491067 + outSlope: -0.0000047491067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0000018676297 + inSlope: -0.00000029351213 + outSlope: -0.00000029351213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0000007203715 + inSlope: -0.00001720889 + outSlope: -0.00001720889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0000007203715 + inSlope: 0.00001720889 + outSlope: 0.00001720889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0000018676297 + inSlope: -0.000013340172 + outSlope: -0.000013340172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.00000016897602 + inSlope: 5.4569682e-11 + outSlope: 5.4569682e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0000018676297 + inSlope: 0.000030549116 + outSlope: 0.000030549116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000018676297 + inSlope: -0.00003086917 + outSlope: -0.00003086917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.00000019032035 + inSlope: -0.00001720878 + outSlope: -0.00001720878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000007203715 + inSlope: 0.00002732078 + outSlope: 0.00002732078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.48199382 + inSlope: 2.3076322 + outSlope: 2.3076322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5589149 + inSlope: 0.98450077 + outSlope: 0.98450077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5476272 + inSlope: -0.48684144 + outSlope: -0.48684144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.40516502 + inSlope: -2.9820294 + outSlope: -2.9820294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.28500727 + inSlope: -4.0837517 + outSlope: -4.0837517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.13291487 + inSlope: -4.194026 + outSlope: -4.194026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0054055587 + inSlope: -3.4739642 + outSlope: -3.4739642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.09868273 + inSlope: -1.7570302 + outSlope: -1.7570302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.111729786 + inSlope: 0.048414424 + outSlope: 0.048414424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0954551 + inSlope: -0.0912032 + outSlope: -0.0912032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.11781002 + inSlope: -1.1117346 + outSlope: -1.1117346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.16957076 + inSlope: -1.6150229 + outSlope: -1.6150229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.2254782 + inSlope: -1.7708349 + outSlope: -1.7708349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.34190562 + inSlope: -1.4538379 + outSlope: -1.4538379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.38454896 + inSlope: -1.2621126 + outSlope: -1.2621126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.42604646 + inSlope: -1.0188167 + outSlope: -1.0188167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.46696308 + inSlope: -0.26732656 + outSlope: -0.26732656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.47029182 + inSlope: 0.23474456 + outSlope: 0.23474456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.38834754 + inSlope: 0.8385725 + outSlope: 0.8385725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.3161458 + inSlope: 0.16600743 + outSlope: 0.16600743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.31689686 + inSlope: -0.13802125 + outSlope: -0.13802125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5716549 + inSlope: -0.67156607 + outSlope: -0.67156607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5492694 + inSlope: -0.061689883 + outSlope: -0.061689883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.587227 + inSlope: 0.3229826 + outSlope: 0.3229826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.58907443 + inSlope: -0.37028703 + outSlope: -0.37028703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.52175206 + inSlope: -1.4902307 + outSlope: -1.4902307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.38889635 + inSlope: -2.268106 + outSlope: -2.268106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.3119854 + inSlope: -2.0764654 + outSlope: -2.0764654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.20816721 + inSlope: -0.9886097 + outSlope: -0.9886097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.184558 + inSlope: -0.30651206 + outSlope: -0.30651206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.25652653 + inSlope: 1.539495 + outSlope: 1.539495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.3146217 + inSlope: 1.6167743 + outSlope: 1.6167743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.39932567 + inSlope: 0.9064764 + outSlope: 0.9064764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.46722323 + inSlope: 0.28218815 + outSlope: 0.28218815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.47224805 + inSlope: 0.10844356 + outSlope: 0.10844356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.49187085 + inSlope: 0.097772256 + outSlope: 0.097772256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.4972484 + inSlope: 0.06747729 + outSlope: 0.06747729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4152977 + inSlope: -5.0710397 + outSlope: -5.0710397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.24626303 + inSlope: -2.4500084 + outSlope: -2.4500084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.2519638 + inSlope: -0.23102933 + outSlope: -0.23102933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.23086107 + inSlope: -0.89164335 + outSlope: -0.89164335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.15594222 + inSlope: -0.75034124 + outSlope: -0.75034124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.14249815 + inSlope: 0.2831133 + outSlope: 0.2831133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.17481643 + inSlope: 1.0436993 + outSlope: 1.0436993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.2120781 + inSlope: 0.11219013 + outSlope: 0.11219013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.18229577 + inSlope: -2.659872 + outSlope: -2.659872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.034753308 + inSlope: -4.964989 + outSlope: -4.964989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.14870349 + inSlope: -4.6452265 + outSlope: -4.6452265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.27492854 + inSlope: -2.8116307 + outSlope: -2.8116307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.33614564 + inSlope: -1.2640058 + outSlope: -1.2640058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.35568795 + inSlope: 0.5160227 + outSlope: 0.5160227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.32479405 + inSlope: 1.2995752 + outSlope: 1.2995752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.26904953 + inSlope: 1.6764567 + outSlope: 1.6764567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.21303028 + inSlope: 1.5049696 + outSlope: 1.5049696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.16871823 + inSlope: 1.1870147 + outSlope: 1.1870147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.11387685 + inSlope: 0.284141 + outSlope: 0.284141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.124685444 + inSlope: -0.23363397 + outSlope: -0.23363397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.13052882 + inSlope: -0.03618813 + outSlope: -0.03618813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.127098 + inSlope: 0.069266066 + outSlope: 0.069266066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.12591109 + inSlope: 0.041858226 + outSlope: 0.041858226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.124895625 + inSlope: -0.029999292 + outSlope: -0.029999292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.12824593 + inSlope: 0.007910736 + outSlope: 0.007910736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47057062 + inSlope: 0.012331902 + outSlope: 0.012331902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.47251007 + inSlope: 0.28028187 + outSlope: 0.28028187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.49980646 + inSlope: -0.7368611 + outSlope: -0.7368611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.45739213 + inSlope: -1.4880362 + outSlope: -1.4880362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.40060404 + inSlope: -1.0745735 + outSlope: -1.0745735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3857539 + inSlope: 0.84867287 + outSlope: 0.84867287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.45718223 + inSlope: 3.0314484 + outSlope: 3.0314484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.58785045 + inSlope: 3.6442978 + outSlope: 3.6442978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.7001354 + inSlope: 2.4652507 + outSlope: 2.4652507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.7502479 + inSlope: -0.5562414 + outSlope: -0.5562414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.5853909 + inSlope: -1.4037601 + outSlope: -1.4037601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.37918246 + inSlope: -0.77918553 + outSlope: -0.77918553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.31669098 + inSlope: -0.060997065 + outSlope: -0.060997065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.31604192 + inSlope: -0.106832914 + outSlope: -0.106832914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.3092438 + inSlope: -0.20394374 + outSlope: -0.20394374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14924423 + inSlope: -7.703173 + outSlope: -7.703173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.10752822 + inSlope: -5.4453516 + outSlope: -5.4453516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.21377923 + inSlope: -2.7011728 + outSlope: -2.7011728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.28760642 + inSlope: -1.2851899 + outSlope: -1.2851899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.29945856 + inSlope: 0.43501723 + outSlope: 0.43501723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.25860527 + inSlope: 1.3198916 + outSlope: 1.3198916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.21146578 + inSlope: 0.9673078 + outSlope: 0.9673078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.19411807 + inSlope: 0.29428217 + outSlope: 0.29428217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.19184697 + inSlope: 0.4905772 + outSlope: 0.4905772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.16141292 + inSlope: 1.6557378 + outSlope: 1.6557378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.081464455 + inSlope: 2.7182386 + outSlope: 2.7182386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.019802976 + inSlope: 2.4015055 + outSlope: 2.4015055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.07863596 + inSlope: 0.9472226 + outSlope: 0.9472226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.082951196 + inSlope: -0.30960605 + outSlope: -0.30960605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.057995558 + inSlope: -1.0199487 + outSlope: -1.0199487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.014954652 + inSlope: -1.3947327 + outSlope: -1.3947327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.034986623 + inSlope: -1.4180543 + outSlope: -1.4180543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.079582386 + inSlope: -1.1881433 + outSlope: -1.1881433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.14958824 + inSlope: -0.11888488 + outSlope: -0.11888488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.14630185 + inSlope: 0.37518734 + outSlope: 0.37518734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.08906917 + inSlope: 1.1320574 + outSlope: 1.1320574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.049105216 + inSlope: 1.0607225 + outSlope: 1.0607225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.018354341 + inSlope: 0.71934646 + outSlope: 0.71934646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0011488013 + inSlope: 0.32546452 + outSlope: 0.32546452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0033433023 + inSlope: 0.067449585 + outSlope: 0.067449585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0033478334 + inSlope: 0.017955855 + outSlope: 0.017955855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.004540358 + inSlope: 0.0490713 + outSlope: 0.0490713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0066192504 + inSlope: 0.05871786 + outSlope: 0.05871786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.008454885 + inSlope: 0.027373603 + outSlope: 0.027373603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.008444162 + inSlope: -0.00032169776 + outSlope: -0.00032169776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.36859143 + inSlope: -0.7361599 + outSlope: -0.7361599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.34405276 + inSlope: -0.8236201 + outSlope: -0.8236201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.31368342 + inSlope: -0.2245854 + outSlope: -0.2245854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.3290804 + inSlope: 1.1486694 + outSlope: 1.1486694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.476813 + inSlope: 2.5539227 + outSlope: 2.5539227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.60613465 + inSlope: 0.35341504 + outSlope: 0.35341504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5840839 + inSlope: -1.6169997 + outSlope: -1.6169997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.39951676 + inSlope: -2.3216157 + outSlope: -2.3216157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.3435603 + inSlope: -1.0080907 + outSlope: -1.0080907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.3323107 + inSlope: -0.1950197 + outSlope: -0.1950197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.330559 + inSlope: -0.24711506 + outSlope: -0.24711506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.2428764 + inSlope: -1.4839128 + outSlope: -1.4839128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.06602316 + inSlope: -1.7663829 + outSlope: -1.7663829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.009561839 + inSlope: -1.501332 + outSlope: -1.501332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.034065615 + inSlope: -1.0983717 + outSlope: -1.0983717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.063662946 + inSlope: -0.84772897 + outSlope: -0.84772897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.09058087 + inSlope: -0.8806924 + outSlope: -0.8806924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.12237582 + inSlope: -0.98383534 + outSlope: -0.98383534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.18232831 + inSlope: -0.61568195 + outSlope: -0.61568195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.21152213 + inSlope: -0.17219687 + outSlope: -0.17219687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.22163796 + inSlope: -0.04630749 + outSlope: -0.04630749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.18183902 + inSlope: 5.603308 + outSlope: 5.603308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.004937925 + inSlope: 3.5995698 + outSlope: 3.5995698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.058132302 + inSlope: 1.4348116 + outSlope: 1.4348116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.10059204 + inSlope: 1.1502649 + outSlope: 1.1502649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.13481663 + inSlope: 1.0500284 + outSlope: 1.0500284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.17059393 + inSlope: 1.0125663 + outSlope: 1.0125663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.20232107 + inSlope: 0.42734367 + outSlope: 0.42734367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.19908352 + inSlope: -1.0646918 + outSlope: -1.0646918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.13134162 + inSlope: -2.9413056 + outSlope: -2.9413056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0029964924 + inSlope: -4.1827955 + outSlope: -4.1827955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.14751141 + inSlope: -4.1879625 + outSlope: -4.1879625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.27620098 + inSlope: -3.161429 + outSlope: -3.161429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.38368398 + inSlope: 0.8206051 + outSlope: 0.8206051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.253347 + inSlope: 0.97479224 + outSlope: 0.97479224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.22328013 + inSlope: -0.08033402 + outSlope: -0.08033402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.26937562 + inSlope: -0.22753131 + outSlope: -0.22753131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.28056479 + inSlope: 0.03521386 + outSlope: 0.03521386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3385047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -1.3385047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2338543 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.2338543 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.62292284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.62292284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.458623 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.458623 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57639545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.57639545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4715211 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.4715211 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12716144 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.12716144 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46572566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.46572566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011479414 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.011479414 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3384522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -1.3384522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57643634 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.57643634 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9042955 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.9042955 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12709314 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.12709314 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.0666667 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_End.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_End.anim.meta new file mode 100644 index 0000000..5003eaf --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_End.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c3802495444247743a64026610cb08e7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_End.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Loop.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Loop.anim new file mode 100644 index 0000000..90c83b6 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Loop.anim @@ -0,0 +1,10227 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Jump_Loop + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14715289 + inSlope: 0.016429424 + outSlope: 0.016429424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.15525384 + inSlope: -0.008524289 + outSlope: -0.008524289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.15005346 + inSlope: -0.05048941 + outSlope: -0.05048941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.14048399 + inSlope: -0.018943757 + outSlope: -0.018943757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.14170972 + inSlope: 0.056450166 + outSlope: 0.056450166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.14715289 + inSlope: 0.017124072 + outSlope: 0.017124072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.0592792 + inSlope: 0.08128881 + outSlope: 0.08128881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 2.0488803 + inSlope: 0.038312644 + outSlope: 0.038312644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 2.0592792 + inSlope: 0.017516566 + outSlope: 0.017516566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11676732 + inSlope: -0.06797388 + outSlope: -0.06797388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.13110605 + inSlope: -0.018450907 + outSlope: -0.018450907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.11915365 + inSlope: -0.0014415778 + outSlope: -0.0014415778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.11779104 + inSlope: 0.028459104 + outSlope: 0.028459104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.11676732 + inSlope: 0.03071166 + outSlope: 0.03071166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03166762 + inSlope: -0.19176362 + outSlope: -0.19176362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.043581545 + inSlope: -0.15439105 + outSlope: -0.15439105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.07103965 + inSlope: -0.08817629 + outSlope: -0.08817629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.082782805 + inSlope: -0.016532227 + outSlope: -0.016532227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.083150685 + inSlope: 0.029052354 + outSlope: 0.029052354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.05308187 + inSlope: 0.07347683 + outSlope: 0.07347683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.035544693 + inSlope: 0.032906264 + outSlope: 0.032906264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.031974107 + inSlope: 0.014506725 + outSlope: 0.014506725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.03166762 + inSlope: 0.009194588 + outSlope: 0.009194588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.31470668 + inSlope: -0.056920942 + outSlope: -0.056920942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.29242384 + inSlope: -0.037703335 + outSlope: -0.037703335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.3064358 + inSlope: 0.056541465 + outSlope: 0.056541465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.31470668 + inSlope: 0.016028838 + outSlope: 0.016028838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09468027 + inSlope: 0.054688003 + outSlope: 0.054688003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07962823 + inSlope: 0.031553857 + outSlope: 0.031553857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.07724519 + inSlope: -0.018052034 + outSlope: -0.018052034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.084611416 + inSlope: -0.016072677 + outSlope: -0.016072677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.09177212 + inSlope: -0.02961385 + outSlope: -0.02961385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.09468027 + inSlope: -0.0051471456 + outSlope: -0.0051471456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9439241 + inSlope: 0.017266273 + outSlope: 0.017266273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.9439241 + inSlope: -0.0055432175 + outSlope: -0.0055432175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07261961 + inSlope: -0.014167204 + outSlope: -0.014167204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.08667218 + inSlope: -0.025690312 + outSlope: -0.025690312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.089958966 + inSlope: 0.0051871664 + outSlope: 0.0051871664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.077208646 + inSlope: 0.021269452 + outSlope: 0.021269452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.07261961 + inSlope: 0.004872667 + outSlope: 0.004872667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.66221964 + inSlope: 0.22184907 + outSlope: 0.22184907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.61346066 + inSlope: 0.0639126 + outSlope: 0.0639126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.64453065 + inSlope: -0.09720871 + outSlope: -0.09720871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.66221964 + inSlope: -0.017309144 + outSlope: -0.017309144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.061588217 + inSlope: -0.19302292 + outSlope: -0.19302292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.05515412 + inSlope: -0.16637976 + outSlope: -0.16637976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.03939789 + inSlope: -0.05597888 + outSlope: -0.05597888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.03103335 + inSlope: -0.0977616 + outSlope: -0.0977616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.027784254 + inSlope: -0.109507084 + outSlope: -0.109507084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.023732882 + inSlope: -0.112422094 + outSlope: -0.112422094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.020289449 + inSlope: -0.095103905 + outSlope: -0.095103905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.017392617 + inSlope: -0.06649519 + outSlope: -0.06649519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.015856436 + inSlope: -0.042129576 + outSlope: -0.042129576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.014583979 + inSlope: -0.019746685 + outSlope: -0.019746685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0145286545 + inSlope: -0.010870361 + outSlope: -0.010870361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.013815299 + inSlope: -0.020779368 + outSlope: -0.020779368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.012283145 + inSlope: -0.024815742 + outSlope: -0.024815742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.011488981 + inSlope: -0.0106064305 + outSlope: -0.0106064305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.011576051 + inSlope: 0.0009176773 + outSlope: 0.0009176773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.011550159 + inSlope: 0.007514383 + outSlope: 0.007514383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.016539976 + inSlope: 0.06561407 + outSlope: 0.06561407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0454114 + inSlope: 0.10368468 + outSlope: 0.10368468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.060473625 + inSlope: 0.029217107 + outSlope: 0.029217107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.061588217 + inSlope: 0.014393366 + outSlope: 0.014393366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.35909805 + inSlope: 0.13826072 + outSlope: 0.13826072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.34576428 + inSlope: 0.060835607 + outSlope: 0.060835607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.33293915 + inSlope: 0.008958576 + outSlope: 0.008958576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.3315284 + inSlope: -0.042624738 + outSlope: -0.042624738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.35909805 + inSlope: -0.012112824 + outSlope: -0.012112824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.37058735 + inSlope: 0.015690923 + outSlope: 0.015690923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.37387124 + inSlope: 0.12117645 + outSlope: 0.12117645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.39116678 + inSlope: 0.011000636 + outSlope: 0.011000636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.38419768 + inSlope: -0.044142947 + outSlope: -0.044142947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.37058735 + inSlope: 0.0053679803 + outSlope: 0.0053679803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.35089558 + inSlope: 0.06331533 + outSlope: 0.06331533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.35239676 + inSlope: 0.03948525 + outSlope: 0.03948525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.3390875 + inSlope: 0.027466718 + outSlope: 0.027466718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.35089558 + inSlope: 0.004566896 + outSlope: 0.004566896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.78140026 + inSlope: 0.08387982 + outSlope: 0.08387982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.78676045 + inSlope: -0.01631497 + outSlope: -0.01631497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.7844465 + inSlope: -0.021574777 + outSlope: -0.021574777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.78140026 + inSlope: -0.0060492596 + outSlope: -0.0060492596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07105562 + inSlope: -0.037026998 + outSlope: -0.037026998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.06901824 + inSlope: 0.010574498 + outSlope: 0.010574498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.07178715 + inSlope: 0.0052767945 + outSlope: 0.0052767945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.069999985 + inSlope: -0.02299659 + outSlope: -0.02299659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0647062 + inSlope: -0.012822401 + outSlope: -0.012822401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.06956893 + inSlope: 0.025860604 + outSlope: 0.025860604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.07105562 + inSlope: 0.019870646 + outSlope: 0.019870646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6157927 + inSlope: 0.32168087 + outSlope: 0.32168087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.54935485 + inSlope: 0.113073 + outSlope: 0.113073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.537311 + inSlope: -0.011799954 + outSlope: -0.011799954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.61484516 + inSlope: -0.023923488 + outSlope: -0.023923488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.6157927 + inSlope: -0.028425977 + outSlope: -0.028425977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.032566264 + inSlope: -0.21607372 + outSlope: -0.21607372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.039768722 + inSlope: -0.193074 + outSlope: -0.193074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06528475 + inSlope: -0.06893971 + outSlope: -0.06893971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.08294033 + inSlope: -0.025539193 + outSlope: -0.025539193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.08307967 + inSlope: -0.013839094 + outSlope: -0.013839094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.08837375 + inSlope: -0.002931547 + outSlope: -0.002931547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.06550897 + inSlope: 0.13422662 + outSlope: 0.13422662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.040691245 + inSlope: 0.107671395 + outSlope: 0.107671395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.035012785 + inSlope: 0.054272987 + outSlope: 0.054272987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.032566264 + inSlope: 0.033986963 + outSlope: 0.033986963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.104760885 + inSlope: 0.4992639 + outSlope: 0.4992639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.088118754 + inSlope: 0.4515217 + outSlope: 0.4515217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.042115048 + inSlope: 0.15090054 + outSlope: 0.15090054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.029422414 + inSlope: 0.11799999 + outSlope: 0.11799999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.025494754 + inSlope: 0.13218497 + outSlope: 0.13218497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.020610083 + inSlope: 0.14410627 + outSlope: 0.14410627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0081517305 + inSlope: 0.08879225 + outSlope: 0.08879225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.003907116 + inSlope: 0.045554698 + outSlope: 0.045554698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0026494088 + inSlope: -0.006545022 + outSlope: -0.006545022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.004343448 + inSlope: -0.029940516 + outSlope: -0.029940516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0046454417 + inSlope: -0.0057296287 + outSlope: -0.0057296287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0047254236 + inSlope: -0.0028790578 + outSlope: -0.0028790578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.004837379 + inSlope: 0.008489691 + outSlope: 0.008489691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.003065518 + inSlope: 0.035459235 + outSlope: 0.035459235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.001795494 + inSlope: 0.041171886 + outSlope: 0.041171886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.00032072607 + inSlope: 0.04375295 + outSlope: 0.04375295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0011213692 + inSlope: 0.02187283 + outSlope: 0.02187283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0011374638 + inSlope: -0.00810361 + outSlope: -0.00810361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.00058112806 + inSlope: -0.022980867 + outSlope: -0.022980867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.00039459346 + inSlope: -0.03777374 + outSlope: -0.03777374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0019371188 + inSlope: -0.0786841 + outSlope: -0.0786841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0056402083 + inSlope: -0.11784811 + outSlope: -0.11784811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.014586963 + inSlope: -0.15244699 + outSlope: -0.15244699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.031867854 + inSlope: -0.18874797 + outSlope: -0.18874797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.04534339 + inSlope: -0.23055448 + outSlope: -0.23055448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.06993691 + inSlope: -0.22772354 + outSlope: -0.22772354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.096816145 + inSlope: -0.1518997 + outSlope: -0.1518997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.1010394 + inSlope: -0.08269057 + outSlope: -0.08269057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.102328844 + inSlope: -0.055822168 + outSlope: -0.055822168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.104760885 + inSlope: -0.07296103 + outSlope: -0.07296103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8578892 + inSlope: 0.07372498 + outSlope: 0.07372498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.8758271 + inSlope: 0.09722473 + outSlope: 0.09722473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.8898552 + inSlope: -0.002381804 + outSlope: -0.002381804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.8578892 + inSlope: -0.022274794 + outSlope: -0.022274794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.27049476 + inSlope: 0.1518595 + outSlope: 0.1518595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.24598888 + inSlope: 0.07745438 + outSlope: 0.07745438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.2262282 + inSlope: 0.22832887 + outSlope: 0.22832887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.19772732 + inSlope: 0.02699064 + outSlope: 0.02699064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.19554973 + inSlope: 0.05177334 + outSlope: 0.05177334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.19236296 + inSlope: -0.08611919 + outSlope: -0.08611919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.22932284 + inSlope: -0.21877864 + outSlope: -0.21877864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.27049476 + inSlope: -0.034442157 + outSlope: -0.034442157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.42412764 + inSlope: 0.059986707 + outSlope: 0.059986707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.43395352 + inSlope: -0.09350137 + outSlope: -0.09350137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.41782004 + inSlope: -0.033042584 + outSlope: -0.033042584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.42394936 + inSlope: 0.0015208045 + outSlope: 0.0015208045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.42412764 + inSlope: 0.005348311 + outSlope: 0.005348311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6693992 + inSlope: -0.14400063 + outSlope: -0.14400063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.69792855 + inSlope: -0.031751998 + outSlope: -0.031751998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.6767682 + inSlope: 0.063014984 + outSlope: 0.063014984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.6693992 + inSlope: 0.0042915232 + outSlope: 0.0042915232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2763328 + inSlope: 0.0200209 + outSlope: 0.0200209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.28872406 + inSlope: 0.09131935 + outSlope: 0.09131935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.31269518 + inSlope: 0.018570706 + outSlope: 0.018570706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.2925186 + inSlope: -0.075582355 + outSlope: -0.075582355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.2763328 + inSlope: -0.011670261 + outSlope: -0.011670261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16628501 + inSlope: 0.29106525 + outSlope: 0.29106525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.13094229 + inSlope: 0.13908616 + outSlope: 0.13908616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09621152 + inSlope: 0.24971214 + outSlope: 0.24971214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.044012938 + inSlope: 0.10802468 + outSlope: 0.10802468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.042172443 + inSlope: -0.0015243333 + outSlope: -0.0015243333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0432133 + inSlope: -0.01780622 + outSlope: -0.01780622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.04500982 + inSlope: -0.047224253 + outSlope: -0.047224253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.067024246 + inSlope: -0.17992653 + outSlope: -0.17992653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.16539629 + inSlope: -0.037097618 + outSlope: -0.037097618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.16628501 + inSlope: -0.026661534 + outSlope: -0.026661534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17466632 + inSlope: 0.22974817 + outSlope: 0.22974817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.21075892 + inSlope: 0.0988821 + outSlope: 0.0988821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.24305424 + inSlope: 0.13543235 + outSlope: 0.13543235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.25092393 + inSlope: -0.03160067 + outSlope: -0.03160067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.19063792 + inSlope: -0.13168585 + outSlope: -0.13168585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.17579344 + inSlope: -0.03242922 + outSlope: -0.03242922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.17466632 + inSlope: -0.033813626 + outSlope: -0.033813626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33797055 + inSlope: -0.26097178 + outSlope: -0.26097178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2853289 + inSlope: -0.16985 + outSlope: -0.16985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.2212911 + inSlope: -0.08884687 + outSlope: -0.08884687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.22017336 + inSlope: 0.007156357 + outSlope: 0.007156357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.24532905 + inSlope: 0.186872 + outSlope: 0.186872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.3370078 + inSlope: 0.049335655 + outSlope: 0.049335655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.33797055 + inSlope: 0.028882844 + outSlope: 0.028882844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8933845 + inSlope: 0.09601235 + outSlope: 0.09601235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.9090582 + inSlope: 0.003992916 + outSlope: 0.003992916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.8933845 + inSlope: -0.0026625325 + outSlope: -0.0026625325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.23902316 + inSlope: -0.16880794 + outSlope: -0.16880794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.22333127 + inSlope: 0.034492742 + outSlope: 0.034492742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.2496224 + inSlope: 0.020436848 + outSlope: 0.020436848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.24923494 + inSlope: 0.008518695 + outSlope: 0.008518695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.23922423 + inSlope: -0.005835364 + outSlope: -0.005835364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.23902316 + inSlope: -0.006031825 + outSlope: -0.006031825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6477677 + inSlope: 0.05177557 + outSlope: 0.05177557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.6512132 + inSlope: -0.007442232 + outSlope: -0.007442232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.6477677 + inSlope: -0.0028216764 + outSlope: -0.0028216764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49958566 + inSlope: -0.052729543 + outSlope: -0.052729543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.4946218 + inSlope: 0.03170103 + outSlope: 0.03170103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.5011889 + inSlope: 0.010017166 + outSlope: 0.010017166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.49958566 + inSlope: -0.001593228 + outSlope: -0.001593228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.085831575 + inSlope: 0.07418073 + outSlope: 0.07418073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.06524991 + inSlope: 0.07991008 + outSlope: 0.07991008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.050665718 + inSlope: 0.030548977 + outSlope: 0.030548977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.049558602 + inSlope: 0.0054240413 + outSlope: 0.0054240413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.05673641 + inSlope: -0.055235844 + outSlope: -0.055235844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.08559286 + inSlope: -0.013069175 + outSlope: -0.013069175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.085831575 + inSlope: -0.0071614794 + outSlope: -0.0071614794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.27616096 + inSlope: 0.33674237 + outSlope: 0.33674237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.25130606 + inSlope: 0.19685268 + outSlope: 0.19685268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.19677007 + inSlope: 0.4691338 + outSlope: 0.4691338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.16497204 + inSlope: 0.42556557 + outSlope: 0.42556557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.14975879 + inSlope: -0.14396381 + outSlope: -0.14396381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.17407158 + inSlope: -0.09866499 + outSlope: -0.09866499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.16837779 + inSlope: 0.50620073 + outSlope: 0.50620073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.14032485 + inSlope: 0.9638051 + outSlope: 0.9638051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.10412406 + inSlope: 0.9484827 + outSlope: 0.9484827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.07709266 + inSlope: 0.55369204 + outSlope: 0.55369204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.06721128 + inSlope: 0.14221863 + outSlope: 0.14221863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.06761141 + inSlope: -0.014644859 + outSlope: -0.014644859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.07775165 + inSlope: -0.1557125 + outSlope: -0.1557125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.1429685 + inSlope: -0.6881522 + outSlope: -0.6881522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.26207826 + inSlope: -0.4222221 + outSlope: -0.4222221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.26310176 + inSlope: 0.003170821 + outSlope: 0.003170821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.27496052 + inSlope: -0.046204604 + outSlope: -0.046204604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.27616096 + inSlope: -0.036013033 + outSlope: -0.036013033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22300309 + inSlope: -0.12110799 + outSlope: -0.12110799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.2229082 + inSlope: 0.15616514 + outSlope: 0.15616514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.19962192 + inSlope: -0.19187988 + outSlope: -0.19187988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.22359383 + inSlope: -0.5168371 + outSlope: -0.5168371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.25658455 + inSlope: -0.10955886 + outSlope: -0.10955886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.25063482 + inSlope: 0.3849518 + outSlope: 0.3849518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.21608764 + inSlope: 0.20246415 + outSlope: 0.20246415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.22890952 + inSlope: -0.2765146 + outSlope: -0.2765146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2358533 + inSlope: 0.016526442 + outSlope: 0.016526442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.21139415 + inSlope: 0.24221554 + outSlope: 0.24221554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.18285204 + inSlope: -0.09506406 + outSlope: -0.09506406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.23059672 + inSlope: -0.45079392 + outSlope: -0.45079392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.26075262 + inSlope: 0.052816566 + outSlope: 0.052816566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.23074305 + inSlope: 0.15069705 + outSlope: 0.15069705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.22300309 + inSlope: 0.027138967 + outSlope: 0.027138967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4244429 + inSlope: -0.003556609 + outSlope: -0.003556609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.42692795 + inSlope: 0.073893525 + outSlope: 0.073893525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.4270112 + inSlope: -0.14814155 + outSlope: -0.14814155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.4233459 + inSlope: 0.13498741 + outSlope: 0.13498741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.43584597 + inSlope: 0.02624853 + outSlope: 0.02624853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.41757807 + inSlope: -0.14035496 + outSlope: -0.14035496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.4066644 + inSlope: 0.07170356 + outSlope: 0.07170356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.42594674 + inSlope: 0.008260765 + outSlope: 0.008260765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.4244429 + inSlope: -0.0076925554 + outSlope: -0.0076925554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8329785 + inSlope: 0.078349106 + outSlope: 0.078349106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.85564053 + inSlope: -0.13165706 + outSlope: -0.13165706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.8677629 + inSlope: -0.0671071 + outSlope: -0.0671071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.8741699 + inSlope: -0.07036507 + outSlope: -0.07036507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.82649326 + inSlope: 0.006273646 + outSlope: 0.006273646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.8329785 + inSlope: -0.0007116776 + outSlope: -0.0007116776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3179013 + inSlope: -0.20821719 + outSlope: -0.20821719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.36168206 + inSlope: -0.069432564 + outSlope: -0.069432564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.36503848 + inSlope: 0.044129055 + outSlope: 0.044129055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.3179013 + inSlope: 0.01618977 + outSlope: 0.01618977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09704983 + inSlope: 0.029867066 + outSlope: 0.029867066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.08527111 + inSlope: 0.027849268 + outSlope: 0.027849268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.08071304 + inSlope: -0.0014842688 + outSlope: -0.0014842688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.09704983 + inSlope: -0.0039157914 + outSlope: -0.0039157914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.011407949 + inSlope: 0.009682466 + outSlope: 0.009682466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.009400504 + inSlope: 0.005786503 + outSlope: 0.005786503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.008174691 + inSlope: 0.012026116 + outSlope: 0.012026116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.006710927 + inSlope: 0.002060899 + outSlope: 0.002060899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.006769854 + inSlope: -0.0012234285 + outSlope: -0.0012234285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.007147641 + inSlope: -0.002302425 + outSlope: -0.002302425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.009909256 + inSlope: -0.008969216 + outSlope: -0.008969216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.011407949 + inSlope: -0.0012066556 + outSlope: -0.0012066556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000085377366 + inSlope: -0.000007683962 + outSlope: -0.000007683962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000034150946 + inSlope: -0.000003841981 + outSlope: -0.000003841981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00000034150946 + inSlope: 0.0000038419817 + outSlope: 0.0000038419817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.000000085377366 + inSlope: 0.0000038419817 + outSlope: 0.0000038419817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.000000085377366 + inSlope: -0.0000038419817 + outSlope: -0.0000038419817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.00000034150946 + inSlope: -0.0000038419817 + outSlope: -0.0000038419817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00000034150946 + inSlope: -0.000002561321 + outSlope: -0.000002561321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0000005122642 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00000034150946 + inSlope: 0.000006403303 + outSlope: 0.000006403303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.000000085377366 + inSlope: 3.1832315e-12 + outSlope: 3.1832315e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.00000034150946 + inSlope: -0.0000038419785 + outSlope: -0.0000038419785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.00000034150946 + inSlope: 0.0000038419785 + outSlope: 0.0000038419785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.00000034150946 + inSlope: 6.8212103e-12 + outSlope: 6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.000000085377366 + inSlope: 6.8212103e-12 + outSlope: 6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.00000034150946 + inSlope: -0.0000038419785 + outSlope: -0.0000038419785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00000034150946 + inSlope: 0.000002561319 + outSlope: 0.000002561319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.00000017075472 + inSlope: -0.0000025613276 + outSlope: -0.0000025613276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0000005122642 + inSlope: 0.0000012806504 + outSlope: 0.0000012806504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.000000085377366 + inSlope: 0.000006403297 + outSlope: 0.000006403297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.00000034150946 + inSlope: -6.8212103e-12 + outSlope: -6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.000000085377366 + inSlope: -6.8212103e-12 + outSlope: -6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.00000034150946 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.000000085377366 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.000000085377366 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000042688683 + inSlope: 0.0000025613208 + outSlope: 0.0000025613208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000012806605 + inSlope: 0.0000012806604 + outSlope: 0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000012806605 + inSlope: -0.0000012806605 + outSlope: -0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.000000042688683 + inSlope: -0.0000012806605 + outSlope: -0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.000000042688683 + inSlope: 0.0000012806605 + outSlope: 0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.00000012806605 + inSlope: 0.0000012806605 + outSlope: 0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000012806605 + inSlope: -0.0000012806622 + outSlope: -0.0000012806622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.00000004268857 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000012806605 + inSlope: 1.7053026e-12 + outSlope: 1.7053026e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.000000042688683 + inSlope: -1.1368684e-12 + outSlope: -1.1368684e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.00000012806605 + inSlope: 0.0000012806594 + outSlope: 0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00000012806605 + inSlope: -0.0000012806594 + outSlope: -0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.00000012806605 + inSlope: -2.2737368e-12 + outSlope: -2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.000000042688683 + inSlope: -2.2737368e-12 + outSlope: -2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00000012806605 + inSlope: 0.0000012806594 + outSlope: 0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000012806605 + inSlope: -0.0000012806601 + outSlope: -0.0000012806601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00000004268864 + inSlope: -0.0000012806611 + outSlope: -0.0000012806611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.00000012806605 + inSlope: 2.2737368e-12 + outSlope: 2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.000000042688683 + inSlope: 2.2737368e-12 + outSlope: 2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.00000012806605 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.000000042688683 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.000000042688683 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000042688683 + inSlope: -0.0000025613208 + outSlope: -0.0000025613208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.000000042688683 + inSlope: 0.0000012806605 + outSlope: 0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.000000042688683 + inSlope: -0.0000012806605 + outSlope: -0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.000000042688683 + inSlope: -0.0000012806605 + outSlope: -0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000000042688683 + inSlope: -0.000008964625 + outSlope: -0.000008964625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.00000064033026 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000000042688683 + inSlope: 0.000010245285 + outSlope: 0.000010245285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.000000042688683 + inSlope: 1.1368684e-12 + outSlope: 1.1368684e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.000000042688683 + inSlope: -0.0000012806594 + outSlope: -0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.000000042688683 + inSlope: -0.0000089646155 + outSlope: -0.0000089646155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0000006403302 + inSlope: -0.000008964616 + outSlope: -0.000008964616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000064033026 + inSlope: 0.000010245274 + outSlope: 0.000010245274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.000000042688683 + inSlope: 0.000010245275 + outSlope: 0.000010245275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.338477 + inSlope: -0.14812587 + outSlope: -0.14812587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.41225976 + inSlope: -0.09836457 + outSlope: -0.09836457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.41482338 + inSlope: 0.010358691 + outSlope: 0.010358691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.3392982 + inSlope: 0.024413444 + outSlope: 0.024413444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.338477 + inSlope: 0.024636025 + outSlope: 0.024636025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4681737 + inSlope: -0.15799908 + outSlope: -0.15799908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.516196 + inSlope: -0.077932484 + outSlope: -0.077932484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.51762754 + inSlope: 0.05753254 + outSlope: 0.05753254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.4681737 + inSlope: 0.016415076 + outSlope: 0.016415076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17067435 + inSlope: -0.006795823 + outSlope: -0.006795823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.17685297 + inSlope: -0.025302166 + outSlope: -0.025302166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.17091078 + inSlope: 0.003726256 + outSlope: 0.003726256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.1703219 + inSlope: -0.0075636003 + outSlope: -0.0075636003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.17067435 + inSlope: -0.0051864847 + outSlope: -0.0051864847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06215729 + inSlope: -0.40583295 + outSlope: -0.40583295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.048629522 + inSlope: -0.37185517 + outSlope: -0.37185517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0031155853 + inSlope: -0.14833865 + outSlope: -0.14833865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0017237343 + inSlope: -0.14721124 + outSlope: -0.14721124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.018399252 + inSlope: -0.2026884 + outSlope: -0.2026884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.06500511 + inSlope: -0.074198596 + outSlope: -0.074198596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.06618228 + inSlope: 0.0066781444 + outSlope: 0.0066781444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.046360523 + inSlope: 0.15852025 + outSlope: 0.15852025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0041273115 + inSlope: 0.24027565 + outSlope: 0.24027565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0039233183 + inSlope: 0.24089646 + outSlope: 0.24089646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.061468184 + inSlope: 0.040207207 + outSlope: 0.040207207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.06215729 + inSlope: 0.020673072 + outSlope: 0.020673072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.065972924 + inSlope: 0.2924562 + outSlope: 0.2924562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04799773 + inSlope: 0.22715682 + outSlope: 0.22715682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.008127319 + inSlope: 0.16027205 + outSlope: 0.16027205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0023794798 + inSlope: 0.19175237 + outSlope: 0.19175237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0046561784 + inSlope: 0.22722231 + outSlope: 0.22722231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.047801543 + inSlope: 0.086923 + outSlope: 0.086923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.04935037 + inSlope: -0.0050111515 + outSlope: -0.0050111515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.031224873 + inSlope: -0.14524287 + outSlope: -0.14524287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.000020790952 + inSlope: -0.21335977 + outSlope: -0.21335977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.06537798 + inSlope: -0.035099834 + outSlope: -0.035099834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.065972924 + inSlope: -0.017848266 + outSlope: -0.017848266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2225789 + inSlope: 0.25192246 + outSlope: 0.25192246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.18850048 + inSlope: 0.034856204 + outSlope: 0.034856204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.1858349 + inSlope: -0.020345673 + outSlope: -0.020345673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.20202759 + inSlope: -0.059992805 + outSlope: -0.059992805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.2225789 + inSlope: -0.0073782904 + outSlope: -0.0073782904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4371605 + inSlope: -0.19954382 + outSlope: -0.19954382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.50332856 + inSlope: 0.014383781 + outSlope: 0.014383781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.47378492 + inSlope: 0.10036237 + outSlope: 0.10036237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.4371605 + inSlope: 0.009857092 + outSlope: 0.009857092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33691004 + inSlope: 0.18502413 + outSlope: 0.18502413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.3903862 + inSlope: 0.101182714 + outSlope: 0.101182714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.39505655 + inSlope: -0.029722903 + outSlope: -0.029722903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.3427395 + inSlope: -0.07391001 + outSlope: -0.07391001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.33691004 + inSlope: -0.03560176 + outSlope: -0.03560176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3282703 + inSlope: -0.17984031 + outSlope: -0.17984031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.25566593 + inSlope: -0.14352778 + outSlope: -0.14352778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.24078204 + inSlope: -0.03086219 + outSlope: -0.03086219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.24612089 + inSlope: 0.05630336 + outSlope: 0.05630336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.3278784 + inSlope: 0.022848846 + outSlope: 0.022848846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.3282703 + inSlope: 0.011756985 + outSlope: 0.011756985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.35442513 + inSlope: -0.6777441 + outSlope: -0.6777441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.43283296 + inSlope: -0.27090755 + outSlope: -0.27090755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.48407805 + inSlope: -0.25191522 + outSlope: -0.25191522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.5194368 + inSlope: 0.021768808 + outSlope: 0.021768808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.47904938 + inSlope: 0.25774848 + outSlope: 0.25774848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.35613993 + inSlope: 0.052220333 + outSlope: 0.052220333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.35442513 + inSlope: 0.05144374 + outSlope: 0.05144374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05259393 + inSlope: 0.017233863 + outSlope: 0.017233863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.053338904 + inSlope: -0.011603292 + outSlope: -0.011603292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.05273505 + inSlope: 0.0010797568 + outSlope: 0.0010797568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.053410888 + inSlope: -0.01945975 + outSlope: -0.01945975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.049233183 + inSlope: -0.06321107 + outSlope: -0.06321107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.042286906 + inSlope: -0.058740407 + outSlope: -0.058740407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0268318 + inSlope: -0.09403129 + outSlope: -0.09403129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.021752438 + inSlope: -0.04329174 + outSlope: -0.04329174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.020963356 + inSlope: 0.0007094437 + outSlope: 0.0007094437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.02268535 + inSlope: 0.018161075 + outSlope: 0.018161075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.024435371 + inSlope: 0.028755516 + outSlope: 0.028755516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.026724609 + inSlope: 0.043460377 + outSlope: 0.043460377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.035612125 + inSlope: 0.06395024 + outSlope: 0.06395024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.037918564 + inSlope: 0.07363358 + outSlope: 0.07363358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.040521026 + inSlope: 0.048751116 + outSlope: 0.048751116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.041168638 + inSlope: 0.036905017 + outSlope: 0.036905017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.044711854 + inSlope: 0.050153747 + outSlope: 0.050153747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.05259393 + inSlope: 0.0025682084 + outSlope: 0.0025682084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.050313383 + inSlope: -0.20394778 + outSlope: -0.20394778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.043515123 + inSlope: -0.20311931 + outSlope: -0.20311931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.036772095 + inSlope: -0.16900262 + outSlope: -0.16900262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.03224828 + inSlope: -0.13569717 + outSlope: -0.13569717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.027725616 + inSlope: -0.10872863 + outSlope: -0.10872863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.024999706 + inSlope: -0.08660801 + outSlope: -0.08660801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.016023917 + inSlope: -0.08346033 + outSlope: -0.08346033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.010662145 + inSlope: -0.087530896 + outSlope: -0.087530896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.007490121 + inSlope: -0.062280707 + outSlope: -0.062280707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.006510097 + inSlope: -0.029407937 + outSlope: -0.029407937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.005529591 + inSlope: -0.029418707 + outSlope: -0.029418707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.00454885 + inSlope: -0.0465706 + outSlope: -0.0465706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0024248865 + inSlope: -0.063416965 + outSlope: -0.063416965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00032105244 + inSlope: -0.059083175 + outSlope: -0.059083175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0015139953 + inSlope: -0.054919183 + outSlope: -0.054919183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0033402264 + inSlope: -0.018591847 + outSlope: -0.018591847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0027534496 + inSlope: 0.017762095 + outSlope: 0.017762095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.00036240346 + inSlope: 0.018078394 + outSlope: 0.018078394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0002427412 + inSlope: 0.018169701 + outSlope: 0.018169701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0008489098 + inSlope: 0.017866751 + outSlope: 0.017866751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0020353592 + inSlope: 0.018083274 + outSlope: 0.018083274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0038193453 + inSlope: 0.01799237 + outSlope: 0.01799237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0044183894 + inSlope: 0.03755583 + outSlope: 0.03755583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.006323067 + inSlope: 0.0787772 + outSlope: 0.0787772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.009670198 + inSlope: 0.100421675 + outSlope: 0.100421675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.01636549 + inSlope: 0.10805679 + outSlope: 0.10805679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.02415104 + inSlope: 0.10576083 + outSlope: 0.10576083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.027272357 + inSlope: 0.10156055 + outSlope: 0.10156055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.030921748 + inSlope: 0.102124564 + outSlope: 0.102124564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.04286653 + inSlope: 0.08520794 + outSlope: 0.08520794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.045733415 + inSlope: 0.060168818 + outSlope: 0.060168818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.048023805 + inSlope: 0.034374777 + outSlope: 0.034374777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.050313383 + inSlope: 0.034318328 + outSlope: 0.034318328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.43157613 + inSlope: -0.2571863 + outSlope: -0.2571863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.5046473 + inSlope: 0.013506711 + outSlope: 0.013506711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.49347568 + inSlope: 0.26369706 + outSlope: 0.26369706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.4545174 + inSlope: 0.09210259 + outSlope: 0.09210259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.44360152 + inSlope: 0.016683774 + outSlope: 0.016683774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.4325378 + inSlope: 0.014474555 + outSlope: 0.014474555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.43157613 + inSlope: 0.014606378 + outSlope: 0.014606378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.021420639 + inSlope: -0.044446994 + outSlope: -0.044446994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.029806789 + inSlope: -0.0037982317 + outSlope: -0.0037982317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.028593995 + inSlope: 0.005058032 + outSlope: 0.005058032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.024552131 + inSlope: 0.011530213 + outSlope: 0.011530213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.021420639 + inSlope: 0.0013318809 + outSlope: 0.0013318809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.399686 + inSlope: -0.19214986 + outSlope: -0.19214986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.4470619 + inSlope: 0.018466562 + outSlope: 0.018466562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.4313726 + inSlope: 0.12503967 + outSlope: 0.12503967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.3861017 + inSlope: -0.032829374 + outSlope: -0.032829374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.399686 + inSlope: -0.032360766 + outSlope: -0.032360766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.59711367 + inSlope: -0.30699846 + outSlope: -0.30699846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.4868434 + inSlope: -0.0046357475 + outSlope: -0.0046357475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.5024281 + inSlope: 0.105394274 + outSlope: 0.105394274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.55885965 + inSlope: 0.10518992 + outSlope: 0.10518992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.59711367 + inSlope: 0.042933114 + outSlope: 0.042933114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.285155 + inSlope: -0.45890447 + outSlope: -0.45890447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.21755406 + inSlope: -0.22638443 + outSlope: -0.22638443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.1726998 + inSlope: -0.25897098 + outSlope: -0.25897098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.14862566 + inSlope: -0.17828222 + outSlope: -0.17828222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.13661456 + inSlope: 0.014107775 + outSlope: 0.014107775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1409838 + inSlope: 0.045925897 + outSlope: 0.045925897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.17311543 + inSlope: 0.20200571 + outSlope: 0.20200571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.23250516 + inSlope: 0.2866863 + outSlope: 0.2866863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.285155 + inSlope: 0.006414933 + outSlope: 0.006414933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.45100403 + inSlope: -0.7008424 + outSlope: -0.7008424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.54910415 + inSlope: -0.21481277 + outSlope: -0.21481277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.6121622 + inSlope: -0.13162126 + outSlope: -0.13162126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.61253816 + inSlope: 0.010151267 + outSlope: 0.010151267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.5366751 + inSlope: 0.31474054 + outSlope: 0.31474054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.4528591 + inSlope: 0.051281996 + outSlope: 0.051281996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.45100403 + inSlope: 0.055652115 + outSlope: 0.055652115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.15548798 + inSlope: -0.08936047 + outSlope: -0.08936047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.16768187 + inSlope: -0.011942759 + outSlope: -0.011942759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.16675274 + inSlope: 0.039191984 + outSlope: 0.039191984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.1487371 + inSlope: 0.009267021 + outSlope: 0.009267021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.14879838 + inSlope: 0.0015152295 + outSlope: 0.0015152295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.15022278 + inSlope: 0.0030778088 + outSlope: 0.0030778088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.15525155 + inSlope: -0.0043482995 + outSlope: -0.0043482995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.15548798 + inSlope: -0.007093083 + outSlope: -0.007093083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49803796 + inSlope: 0.2627787 + outSlope: 0.2627787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.5511335 + inSlope: 0.163157 + outSlope: 0.163157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5697313 + inSlope: -0.005645157 + outSlope: -0.005645157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.56708705 + inSlope: -0.053854164 + outSlope: -0.053854164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.50666606 + inSlope: -0.09801516 + outSlope: -0.09801516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.49803796 + inSlope: -0.035380926 + outSlope: -0.035380926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.39241385 + inSlope: -0.9582808 + outSlope: -0.9582808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.5142791 + inSlope: -0.4886479 + outSlope: -0.4886479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.61527914 + inSlope: -0.46945524 + outSlope: -0.46945524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.69398546 + inSlope: -0.047939043 + outSlope: -0.047939043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.68735456 + inSlope: 0.039143264 + outSlope: 0.039143264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.5663681 + inSlope: 0.5581173 + outSlope: 0.5581173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.39559487 + inSlope: 0.09370021 + outSlope: 0.09370021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.39241385 + inSlope: 0.09543006 + outSlope: 0.09543006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.013266349 + inSlope: 0.191931 + outSlope: 0.191931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.01966405 + inSlope: 0.17655152 + outSlope: 0.17655152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.047057163 + inSlope: 0.06153798 + outSlope: 0.06153798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.054156654 + inSlope: 0.03299113 + outSlope: 0.03299113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.056265026 + inSlope: -0.0034727878 + outSlope: -0.0034727878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.045591034 + inSlope: -0.067699805 + outSlope: -0.067699805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.013496734 + inSlope: -0.013290388 + outSlope: -0.013290388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.013266349 + inSlope: -0.0069115316 + outSlope: -0.0069115316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000018248855 + inSlope: 0.000010232773 + outSlope: 0.000010232773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000002165978 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0000018248855 + inSlope: -0.0000051163865 + outSlope: -0.0000051163865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0000018248855 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000018248855 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000018248855 + inSlope: -0.0000064032997 + outSlope: -0.0000064032997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0000013979987 + inSlope: 0.0000034117625 + outSlope: 0.0000034117625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0000020523362 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000013979987 + inSlope: 0.0000017046277 + outSlope: 0.0000017046277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.000002165978 + inSlope: 0.000006403303 + outSlope: 0.000006403303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000018248855 + inSlope: -0.0000012777423 + outSlope: -0.0000012777423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0000020807952 + inSlope: 0.000005116386 + outSlope: 0.000005116386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.000002165978 + inSlope: -0.0000038386456 + outSlope: -0.0000038386456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000018248855 + inSlope: -0.000005116387 + outSlope: -0.000005116387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0000018248855 + inSlope: 0.0000038386484 + outSlope: 0.0000038386484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0000020807952 + inSlope: 6.8212103e-12 + outSlope: 6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000018248855 + inSlope: -0.0000038386415 + outSlope: -0.0000038386415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0000018248855 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000018248855 + inSlope: -0.0000064032965 + outSlope: -0.0000064032965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000013979987 + inSlope: 1.1368684e-11 + outSlope: 1.1368684e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000018248855 + inSlope: 0.000006403308 + outSlope: 0.000006403308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0000018248855 + inSlope: 0.0000038386484 + outSlope: 0.0000038386484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000020807952 + inSlope: 6.8212103e-12 + outSlope: 6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000018248855 + inSlope: -0.0000038386415 + outSlope: -0.0000038386415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0000018248855 + inSlope: -0.000006403308 + outSlope: -0.000006403308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0000013979987 + inSlope: 0.00000383863 + outSlope: 0.00000383863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0000020807952 + inSlope: 0.0000064032897 + outSlope: 0.0000064032897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0000018248855 + inSlope: -0.0000038386484 + outSlope: -0.0000038386484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0000018248855 + inSlope: 0.000003411763 + outSlope: 0.000003411763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0000020523362 + inSlope: -0.0000000033355718 + outSlope: -0.0000000033355718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000018246632 + inSlope: -0.000003411763 + outSlope: -0.000003411763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0000018248855 + inSlope: 0.0000000033355632 + outSlope: 0.0000000033355632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000018248855 + inSlope: 0.0000038386484 + outSlope: 0.0000038386484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.0000020807952 + inSlope: -0.0000064032715 + outSlope: -0.0000064032715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.0000013979987 + inSlope: 3.6379788e-11 + outSlope: 3.6379788e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0000020807952 + inSlope: 0.000006403308 + outSlope: 0.000006403308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0000018248855 + inSlope: -0.0000038386484 + outSlope: -0.0000038386484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0000018248855 + inSlope: 0.0000038386347 + outSlope: 0.0000038386347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0000020807952 + inSlope: -0.0000064033215 + outSlope: -0.0000064033215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0000013979987 + inSlope: 0.0000012777436 + outSlope: 0.0000012777436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.000002165978 + inSlope: 0.0000115197 + outSlope: 0.0000115197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.000002165978 + inSlope: 0.0000000029228915 + outSlope: 0.0000000029228915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.0000021661729 + inSlope: -0.0000051163915 + outSlope: -0.0000051163915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.0000018248855 + inSlope: -0.0000012806663 + outSlope: -0.0000012806663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0000020807952 + inSlope: -0.00000981544 + outSlope: -0.00000981544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.0000011705202 + inSlope: -0.000003841935 + outSlope: -0.000003841935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.0000018246632 + inSlope: 0.0000034121813 + outSlope: 0.0000034121813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.0000013979987 + inSlope: 0.0000000033128345 + outSlope: 0.0000000033128345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.0000018248855 + inSlope: 0.00001280657 + outSlope: 0.00001280657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000011392542 + inSlope: 0.000021371017 + outSlope: 0.000021371017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000018516215 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0000011392542 + inSlope: -0.000010685509 + outSlope: -0.000010685509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0000011392542 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000011392542 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000011392542 + inSlope: -0.0000037219177 + outSlope: -0.0000037219177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000089112626 + inSlope: 0.000024092426 + outSlope: 0.000024092426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0000027454157 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000089112626 + inSlope: -0.000013406913 + outSlope: -0.000013406913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0000018516215 + inSlope: 0.0000037219197 + outSlope: 0.0000037219197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000011392542 + inSlope: -0.000013833801 + outSlope: -0.000013833801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0000009293682 + inSlope: 0.000010685498 + outSlope: 0.000010685498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0000018516215 + inSlope: 0.0000031482778 + outSlope: 0.0000031482778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000011392542 + inSlope: -0.0000106855105 + outSlope: -0.0000106855105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0000011392542 + inSlope: -0.0000031482934 + outSlope: -0.0000031482934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0000009293682 + inSlope: -5.684342e-12 + outSlope: -5.684342e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000011392542 + inSlope: 0.0000031482878 + outSlope: 0.0000031482878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0000011392542 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000011392542 + inSlope: -0.000003721916 + outSlope: -0.000003721916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00000089112626 + inSlope: 6.5938366e-12 + outSlope: 6.5938366e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000011392542 + inSlope: 0.0000037219227 + outSlope: 0.0000037219227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0000011392542 + inSlope: -0.0000031482934 + outSlope: -0.0000031482934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000009293682 + inSlope: -5.684342e-12 + outSlope: -5.684342e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000011392542 + inSlope: 0.0000031482878 + outSlope: 0.0000031482878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0000011392542 + inSlope: -0.0000037219227 + outSlope: -0.0000037219227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.00000089112626 + inSlope: -0.0000031482944 + outSlope: -0.0000031482944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0000009293682 + inSlope: 0.0000037219218 + outSlope: 0.0000037219218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0000011392542 + inSlope: 0.0000031482934 + outSlope: 0.0000031482934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0000011392542 + inSlope: 0.000024092446 + outSlope: 0.000024092446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0000027454157 + inSlope: 0.000013727092 + outSlope: 0.000013727092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000020543928 + inSlope: -0.000024092396 + outSlope: -0.000024092396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0000011392542 + inSlope: -0.000013727043 + outSlope: -0.000013727043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000011392542 + inSlope: -0.0000031482934 + outSlope: -0.0000031482934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.0000009293682 + inSlope: -0.000013940497 + outSlope: -0.000013940497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.00000020988603 + inSlope: 3.8198777e-11 + outSlope: 3.8198777e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0000009293682 + inSlope: 0.000013940536 + outSlope: 0.000013940536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0000011392542 + inSlope: 0.0000031482934 + outSlope: 0.0000031482934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0000011392542 + inSlope: -0.000003148282 + outSlope: -0.000003148282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0000009293682 + inSlope: -0.0000037219115 + outSlope: -0.0000037219115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.00000089112626 + inSlope: 0.000013833814 + outSlope: 0.000013833814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0000018516215 + inSlope: 0.000014407443 + outSlope: 0.000014407443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.0000018516215 + inSlope: -0.00003421768 + outSlope: -0.00003421768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.000000429555 + inSlope: -0.000010685519 + outSlope: -0.000010685519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.0000011392542 + inSlope: 0.000020383866 + outSlope: 0.000020383866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0000009293682 + inSlope: -0.0000074171503 + outSlope: -0.0000074171503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.000000644777 + inSlope: 0.000016875401 + outSlope: 0.000016875401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.0000020543928 + inSlope: 0.0000036952442 + outSlope: 0.0000036952442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.00000089112626 + inSlope: -0.0000137271045 + outSlope: -0.0000137271045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.0000011392542 + inSlope: 0.000007443819 + outSlope: 0.000007443819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20921099 + inSlope: 0.5200986 + outSlope: 0.5200986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.26150754 + inSlope: 0.2631243 + outSlope: 0.2631243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.33313644 + inSlope: 0.35534534 + outSlope: 0.35534534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.38475397 + inSlope: 0.030426504 + outSlope: 0.030426504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.32949585 + inSlope: -0.29257023 + outSlope: -0.29257023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.210356 + inSlope: -0.066010505 + outSlope: -0.066010505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.20921099 + inSlope: -0.034350067 + outSlope: -0.034350067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.63446194 + inSlope: -0.42842028 + outSlope: -0.42842028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.55276483 + inSlope: -0.20942421 + outSlope: -0.20942421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.47239032 + inSlope: -0.032602668 + outSlope: -0.032602668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.5272697 + inSlope: 0.28997964 + outSlope: 0.28997964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.63446194 + inSlope: 0.022137107 + outSlope: 0.022137107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.36753854 + inSlope: -0.6405463 + outSlope: -0.6405463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.28986955 + inSlope: -0.31911397 + outSlope: -0.31911397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.21990624 + inSlope: -0.40952265 + outSlope: -0.40952265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.14244753 + inSlope: -0.14718944 + outSlope: -0.14718944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.14035231 + inSlope: -0.0028632584 + outSlope: -0.0028632584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.16009364 + inSlope: 0.21152641 + outSlope: 0.21152641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.27968234 + inSlope: 0.4275111 + outSlope: 0.4275111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.36753854 + inSlope: 0.02430075 + outSlope: 0.02430075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4356134 + inSlope: 0.5537045 + outSlope: 0.5537045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.52413625 + inSlope: 0.16768278 + outSlope: 0.16768278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5735534 + inSlope: 0.013067709 + outSlope: 0.013067709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.52245384 + inSlope: -0.24673441 + outSlope: -0.24673441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.4356134 + inSlope: 0.0011604994 + outSlope: 0.0011604994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.30222178 + inSlope: -0.11265098 + outSlope: -0.11265098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2840314 + inSlope: -0.09302751 + outSlope: -0.09302751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.25823078 + inSlope: -0.25714308 + outSlope: -0.25714308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.23263286 + inSlope: -0.024962839 + outSlope: -0.024962839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.23409532 + inSlope: -0.009154153 + outSlope: -0.009154153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.23612738 + inSlope: 0.09162171 + outSlope: 0.09162171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.29241025 + inSlope: 0.13097575 + outSlope: 0.13097575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.30222178 + inSlope: 0.040491413 + outSlope: 0.040491413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3629517 + inSlope: -0.12909919 + outSlope: -0.12909919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.35868508 + inSlope: 0.07691588 + outSlope: 0.07691588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.39776975 + inSlope: 0.020356162 + outSlope: 0.020356162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.3963702 + inSlope: -0.026756812 + outSlope: -0.026756812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.3629517 + inSlope: -0.008597352 + outSlope: -0.008597352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.45131856 + inSlope: -0.013566612 + outSlope: -0.013566612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.44713524 + inSlope: 0.06078423 + outSlope: 0.06078423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.4108913 + inSlope: 0.49857998 + outSlope: 0.49857998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.34711963 + inSlope: 0.05685876 + outSlope: 0.05685876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.34783185 + inSlope: -0.013118687 + outSlope: -0.013118687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.37230232 + inSlope: -0.22671887 + outSlope: -0.22671887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.44663534 + inSlope: -0.07740851 + outSlope: -0.07740851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.45131856 + inSlope: -0.012414125 + outSlope: -0.012414125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000004637836 + inSlope: -0.000022159751 + outSlope: -0.000022159751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000038991775 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.000004637836 + inSlope: 9.094947e-13 + outSlope: 9.094947e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0000038991775 + inSlope: -0.000011079875 + outSlope: -0.000011079875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000038991775 + inSlope: 0.000001866788 + outSlope: 0.000001866788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00000402363 + inSlope: 0.000001866788 + outSlope: 0.000001866788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000402363 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.00000402363 + inSlope: -0.000001866788 + outSlope: -0.000001866788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000038991775 + inSlope: 0.000009213089 + outSlope: 0.000009213089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.000004637836 + inSlope: 0.0000018667879 + outSlope: 0.0000018667879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000402363 + inSlope: -0.0000002738916 + outSlope: -0.0000002738916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0000046195764 + inSlope: 0.0000081683875 + outSlope: 0.0000081683875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.000004568189 + inSlope: 0.0000002738928 + outSlope: 0.0000002738928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.000004637836 + inSlope: -0.0000136795525 + outSlope: -0.0000136795525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.000003656219 + inSlope: -0.00000027387978 + outSlope: -0.00000027387978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0000046195764 + inSlope: 0.000014724267 + outSlope: 0.000014724267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.000004637836 + inSlope: -0.000010805975 + outSlope: -0.000010805975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0000038991775 + inSlope: -0.000011079866 + outSlope: -0.000011079866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000038991775 + inSlope: 0.000011079866 + outSlope: 0.000011079866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.000004637836 + inSlope: -2.0008883e-11 + outSlope: -2.0008883e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000038991775 + inSlope: -0.0000110798865 + outSlope: -0.0000110798865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0000038991775 + inSlope: 0.0000018667897 + outSlope: 0.0000018667897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000402363 + inSlope: 3.4106051e-12 + outSlope: 3.4106051e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000038991775 + inSlope: -0.0000066004804 + outSlope: -0.0000066004804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0000035835976 + inSlope: -0.0000021281737 + outSlope: -0.0000021281737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0000037572988 + inSlope: 4.774847e-12 + outSlope: 4.774847e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0000035835976 + inSlope: 0.0000021281867 + outSlope: 0.0000021281867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0000038991775 + inSlope: 0.0000047337026 + outSlope: 0.0000047337026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0000038991775 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0000038991775 + inSlope: 0.0000110798865 + outSlope: 0.0000110798865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000004637836 + inSlope: 0.000010035186 + outSlope: 0.000010035186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.000004568189 + inSlope: -0.0000010446997 + outSlope: -0.0000010446997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.000004568189 + inSlope: -0.00001418942 + outSlope: -0.00001418942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.0000036222286 + inSlope: -0.000010035197 + outSlope: -0.000010035197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.0000038991775 + inSlope: 0.000015234109 + outSlope: 0.000015234109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.000004637836 + inSlope: 0.0000110798865 + outSlope: 0.0000110798865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.000004637836 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.000004637836 + inSlope: -0.0000010446997 + outSlope: -0.0000010446997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.000004568189 + inSlope: -0.0000010446997 + outSlope: -0.0000010446997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.000004568189 + inSlope: -0.000010035184 + outSlope: -0.000010035184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0000038991775 + inSlope: -0.000010035184 + outSlope: -0.000010035184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.0000038991775 + inSlope: -0.0000047337026 + outSlope: -0.0000047337026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.0000035835976 + inSlope: 0.0000018667897 + outSlope: 0.0000018667897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.00000402363 + inSlope: 0.000015813588 + outSlope: 0.000015813588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.000004637836 + inSlope: 0.000008939205 + outSlope: 0.000008939205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.0000046195764 + inSlope: -0.000009213096 + outSlope: -0.000009213096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.00000402363 + inSlope: -0.000008556923 + outSlope: -0.000008556923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.0000040491154 + inSlope: 0.000009213066 + outSlope: 0.000009213066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.000004637836 + inSlope: 0.000017661569 + outSlope: 0.000017661569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000007203715 + inSlope: -0.0000040020686 + outSlope: -0.0000040020686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000005869692 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0000007203715 + inSlope: 2.2737368e-13 + outSlope: 2.2737368e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0000005869692 + inSlope: -0.000002001034 + outSlope: -0.000002001034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000005869692 + inSlope: 0.00002395902 + outSlope: 0.00002395902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000021842372 + inSlope: 0.00002395902 + outSlope: 0.00002395902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0000021842372 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0000021842372 + inSlope: -0.00002395902 + outSlope: -0.00002395902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000005869692 + inSlope: -0.000021957987 + outSlope: -0.000021957987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0000007203715 + inSlope: 0.000023959023 + outSlope: 0.000023959023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000021842372 + inSlope: -0.000013660378 + outSlope: -0.000013660378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.00000019032035 + inSlope: -0.000004749141 + outSlope: -0.000004749141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0000018676297 + inSlope: 0.00001366035 + outSlope: 0.00001366035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000007203715 + inSlope: 0.0000010672193 + outSlope: 0.0000010672193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0000019387776 + inSlope: -0.000013660405 + outSlope: -0.000013660405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.00000019032035 + inSlope: -0.000018276132 + outSlope: -0.000018276132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000007203715 + inSlope: 0.000011659333 + outSlope: 0.000011659333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0000005869692 + inSlope: -0.0000020010327 + outSlope: -0.0000020010327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000005869692 + inSlope: 0.0000020010327 + outSlope: 0.0000020010327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000007203715 + inSlope: -3.637979e-12 + outSlope: -3.637979e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000005869692 + inSlope: -0.0000020010364 + outSlope: -0.0000020010364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0000005869692 + inSlope: 0.000023959043 + outSlope: 0.000023959043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000021842372 + inSlope: 4.1836756e-11 + outSlope: 4.1836756e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000005869692 + inSlope: -0.000020757354 + outSlope: -0.000020757354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0000008004125 + inSlope: 0.00003740599 + outSlope: 0.00003740599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0000030806998 + inSlope: 5.820766e-11 + outSlope: 5.820766e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0000008004125 + inSlope: -0.00003740594 + outSlope: -0.00003740594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0000005869692 + inSlope: -0.0000032016533 + outSlope: -0.0000032016533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0000005869692 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0000005869692 + inSlope: 0.0000020010364 + outSlope: 0.0000020010364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0000007203715 + inSlope: 0.000019209863 + outSlope: 0.000019209863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0000018676297 + inSlope: 0.000017208828 + outSlope: 0.000017208828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0000018676297 + inSlope: -0.000029828745 + outSlope: -0.000029828745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.00000012095123 + inSlope: -0.000019209965 + outSlope: -0.000019209965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.0000005869692 + inSlope: 0.000012619816 + outSlope: 0.000012619816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0000007203715 + inSlope: 0.0000020010364 + outSlope: 0.0000020010364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0000007203715 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0000007203715 + inSlope: 0.000017208828 + outSlope: 0.000017208828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.0000018676297 + inSlope: 0.000017208828 + outSlope: 0.000017208828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.0000018676297 + inSlope: -0.000019209927 + outSlope: -0.000019209927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0000005869692 + inSlope: -0.000019209927 + outSlope: -0.000019209927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.0000005869692 + inSlope: 0.0000032016533 + outSlope: 0.0000032016533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.0000008004125 + inSlope: 0.000023959044 + outSlope: 0.000023959044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.0000021842372 + inSlope: -0.0000012006185 + outSlope: -0.0000012006185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0000007203715 + inSlope: -0.000035618352 + outSlope: -0.000035618352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.00000019032035 + inSlope: 0.000021958058 + outSlope: 0.000021958058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.0000021842372 + inSlope: 0.0000015741425 + outSlope: 0.0000015741425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.00000008537759 + inSlope: -0.00002195805 + outSlope: -0.00002195805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.0000007203715 + inSlope: 0.00002417241 + outSlope: 0.00002417241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.48199382 + inSlope: 0.21331696 + outSlope: 0.21331696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5406202 + inSlope: 0.1389233 + outSlope: 0.1389233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.545044 + inSlope: -0.0862374 + outSlope: -0.0862374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.48199382 + inSlope: -0.012591151 + outSlope: -0.012591151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5716549 + inSlope: -0.02572417 + outSlope: -0.02572417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.551049 + inSlope: -0.053404525 + outSlope: -0.053404525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.5716549 + inSlope: 0.0022888123 + outSlope: 0.0022888123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4152977 + inSlope: -0.6346508 + outSlope: -0.6346508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.3477227 + inSlope: -0.34958932 + outSlope: -0.34958932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.27797672 + inSlope: -0.28539544 + outSlope: -0.28539544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.24047221 + inSlope: -0.0064627565 + outSlope: -0.0064627565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.24609247 + inSlope: 0.04983656 + outSlope: 0.04983656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.30334142 + inSlope: 0.29332215 + outSlope: 0.29332215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.3788574 + inSlope: 0.27270174 + outSlope: 0.27270174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.4152977 + inSlope: 0.025471978 + outSlope: 0.025471978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47057062 + inSlope: 0.15122204 + outSlope: 0.15122204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.48145774 + inSlope: -0.01033187 + outSlope: -0.01033187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.47057062 + inSlope: -0.0007903555 + outSlope: -0.0007903555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14924423 + inSlope: 0.056181993 + outSlope: 0.056181993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.15111697 + inSlope: 0.10540321 + outSlope: 0.10540321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.15627111 + inSlope: 0.09027756 + outSlope: 0.09027756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.14056398 + inSlope: -0.3399675 + outSlope: -0.3399675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.09632621 + inSlope: -0.43193012 + outSlope: -0.43193012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0832484 + inSlope: -0.3101167 + outSlope: -0.3101167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.075651765 + inSlope: -0.0055792034 + outSlope: -0.0055792034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.08287646 + inSlope: 0.49466008 + outSlope: 0.49466008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.10862911 + inSlope: 0.68330306 + outSlope: 0.68330306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.12843 + inSlope: 0.15667252 + outSlope: 0.15667252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.11907395 + inSlope: -0.70463663 + outSlope: -0.70463663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.081454195 + inSlope: -1.2433643 + outSlope: -1.2433643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.036182925 + inSlope: -1.1606209 + outSlope: -1.1606209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.004079466 + inSlope: -0.6407971 + outSlope: -0.6407971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0065368563 + inSlope: -0.16345184 + outSlope: -0.16345184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0068173306 + inSlope: -0.0061271386 + outSlope: -0.0061271386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.005498402 + inSlope: 0.04685212 + outSlope: 0.04685212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.003439638 + inSlope: 0.083250664 + outSlope: 0.083250664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.000051640855 + inSlope: 0.13538815 + outSlope: 0.13538815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0055862404 + inSlope: 0.19772807 + outSlope: 0.19772807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.01323351 + inSlope: 0.28594363 + outSlope: 0.28594363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.040552825 + inSlope: 0.55973685 + outSlope: 0.55973685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.08855253 + inSlope: 0.851961 + outSlope: 0.851961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.14866142 + inSlope: 0.8721443 + outSlope: 0.8721443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.19723956 + inSlope: 0.4545352 + outSlope: 0.4545352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.19288813 + inSlope: -0.36547768 + outSlope: -0.36547768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.15816878 + inSlope: -0.22970527 + outSlope: -0.22970527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.14846519 + inSlope: 0.012321368 + outSlope: 0.012321368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.14924423 + inSlope: 0.023371367 + outSlope: 0.023371367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.36859143 + inSlope: 0.16970067 + outSlope: 0.16970067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.3973042 + inSlope: 0.030535612 + outSlope: 0.030535612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.39429066 + inSlope: -0.11396295 + outSlope: -0.11396295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.38527238 + inSlope: -0.022437572 + outSlope: -0.022437572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.3871779 + inSlope: -0.0053143105 + outSlope: -0.0053143105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.3725955 + inSlope: -0.026932951 + outSlope: -0.026932951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.36859143 + inSlope: -0.003784587 + outSlope: -0.003784587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.18183902 + inSlope: -0.30579504 + outSlope: -0.30579504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.19203219 + inSlope: -0.13510844 + outSlope: -0.13510844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.19084625 + inSlope: 0.25762278 + outSlope: 0.25762278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.12299941 + inSlope: 0.83225405 + outSlope: 0.83225405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.05888395 + inSlope: 0.18504068 + outSlope: 0.18504068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.059788384 + inSlope: -0.28878844 + outSlope: -0.28878844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.11424119 + inSlope: -1.3558825 + outSlope: -1.3558825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.16852872 + inSlope: -1.3553445 + outSlope: -1.3553445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.20459753 + inSlope: -0.13975716 + outSlope: -0.13975716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.17784587 + inSlope: 1.565571 + outSlope: 1.565571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.10022621 + inSlope: 2.1955292 + outSlope: 2.1955292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.031477265 + inSlope: 1.2787768 + outSlope: 1.2787768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.014974352 + inSlope: -0.09063533 + outSlope: -0.09063533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.037519585 + inSlope: -0.58164567 + outSlope: -0.58164567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.053750724 + inSlope: -0.2391028 + outSlope: -0.2391028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.053459786 + inSlope: 0.025332725 + outSlope: 0.025332725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.033307 + inSlope: 0.33688578 + outSlope: 0.33688578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0034722711 + inSlope: 0.5485632 + outSlope: 0.5485632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.016346347 + inSlope: 0.61554253 + outSlope: 0.61554253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.037563898 + inSlope: 0.6142024 + outSlope: 0.6142024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0731507 + inSlope: -0.1884585 + outSlope: -0.1884585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.058545683 + inSlope: -0.7155043 + outSlope: -0.7155043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.025450462 + inSlope: -1.2368786 + outSlope: -1.2368786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.023912994 + inSlope: -1.6334606 + outSlope: -1.6334606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.14462468 + inSlope: -1.7289934 + outSlope: -1.7289934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.23899117 + inSlope: -0.95200706 + outSlope: -0.95200706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.24770522 + inSlope: 0.47912836 + outSlope: 0.47912836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.19957522 + inSlope: 0.355802 + outSlope: 0.355802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.18183902 + inSlope: 0.058869418 + outSlope: 0.058869418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3385047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -1.3385047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2338543 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.2338543 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.62292284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.62292284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.458623 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.458623 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57639545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.57639545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4715211 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.4715211 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12716144 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.12716144 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46572566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.46572566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011479414 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.011479414 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3384522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -1.3384522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57643634 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.57643634 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9042955 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.9042955 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12709314 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.12709314 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.6000001 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Loop.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Loop.anim.meta new file mode 100644 index 0000000..3798853 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Loop.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 01e7c5210856d604797dba8d0f416756 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Loop.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Start.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Start.anim new file mode 100644 index 0000000..1acff4d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Start.anim @@ -0,0 +1,16365 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Jump_Start + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.036488395 + inSlope: -0.042760666 + outSlope: -0.042760666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.03506304 + inSlope: -0.07232844 + outSlope: -0.07232844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0316665 + inSlope: -0.10623491 + outSlope: -0.10623491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.023886919 + inSlope: -0.13090521 + outSlope: -0.13090521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.019253697 + inSlope: -0.11125989 + outSlope: -0.11125989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.016469592 + inSlope: -0.06600661 + outSlope: -0.06600661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.014853256 + inSlope: -0.021623356 + outSlope: -0.021623356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.015028035 + inSlope: -0.018001061 + outSlope: -0.018001061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.013653185 + inSlope: -0.056351945 + outSlope: -0.056351945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.011271239 + inSlope: 0.06301194 + outSlope: 0.06301194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.01785398 + inSlope: 0.32582718 + outSlope: 0.32582718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.032993063 + inSlope: 0.45747402 + outSlope: 0.45747402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.04835226 + inSlope: 0.4675371 + outSlope: 0.4675371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.08303131 + inSlope: 0.67077035 + outSlope: 0.67077035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.10888023 + inSlope: 0.67945755 + outSlope: 0.67945755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.12832852 + inSlope: 0.44552836 + outSlope: 0.44552836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.14555024 + inSlope: 0.21000111 + outSlope: 0.21000111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.1525822 + inSlope: 0.11641467 + outSlope: 0.11641467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.15331121 + inSlope: -0.075051874 + outSlope: -0.075051874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14757875 + inSlope: -0.09237558 + outSlope: -0.09237558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.14715284 + inSlope: -0.012777139 + outSlope: -0.012777139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9335406 + inSlope: -0.003646016 + outSlope: -0.003646016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.8703467 + inSlope: -1.3249506 + outSlope: -1.3249506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6812067 + inSlope: -1.9535477 + outSlope: -1.9535477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.576339 + inSlope: 0.17319919 + outSlope: 0.17319919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.82703656 + inSlope: 3.4545834 + outSlope: 3.4545834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9549435 + inSlope: 3.7382083 + outSlope: 3.7382083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 1.2131702 + inSlope: 4.371542 + outSlope: 4.371542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 1.3676865 + inSlope: 6.040695 + outSlope: 6.040695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 1.6158832 + inSlope: 6.56997 + outSlope: 6.56997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 2.0364044 + inSlope: 1.7050903 + outSlope: 1.7050903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 2.059279 + inSlope: 0.6862372 + outSlope: 0.6862372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.044303328 + inSlope: 0.08557375 + outSlope: 0.08557375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.03709541 + inSlope: 0.19863497 + outSlope: 0.19863497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.01731286 + inSlope: 0.32190058 + outSlope: 0.32190058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0067484993 + inSlope: 0.28637296 + outSlope: 0.28637296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0017786723 + inSlope: 0.149721 + outSlope: 0.149721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0032329033 + inSlope: -0.040759362 + outSlope: -0.040759362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00093861856 + inSlope: -0.14889225 + outSlope: -0.14889225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.006693247 + inSlope: -0.21637204 + outSlope: -0.21637204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.01536342 + inSlope: -0.2865821 + outSlope: -0.2865821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0379236 + inSlope: -0.40136543 + outSlope: -0.40136543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.052556425 + inSlope: -0.48592764 + outSlope: -0.48592764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07031877 + inSlope: -0.4648612 + outSlope: -0.4648612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.08354716 + inSlope: -0.28953004 + outSlope: -0.28953004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.08962077 + inSlope: -0.17629653 + outSlope: -0.17629653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.09530027 + inSlope: -0.1425214 + outSlope: -0.1425214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0991222 + inSlope: 0.04105923 + outSlope: 0.04105923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.09256298 + inSlope: 0.06795779 + outSlope: 0.06795779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.099681996 + inSlope: -0.1471014 + outSlope: -0.1471014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10439843 + inSlope: -0.25627995 + outSlope: -0.25627995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.11676733 + inSlope: -0.37106678 + outSlope: -0.37106678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0028877556 + inSlope: 0.2515693 + outSlope: 0.2515693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.011273399 + inSlope: 0.41879475 + outSlope: 0.41879475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.030807406 + inSlope: 0.8135021 + outSlope: 0.8135021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.10969359 + inSlope: 1.3586686 + outSlope: 1.3586686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.15608478 + inSlope: 1.2995968 + outSlope: 1.2995968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.19633338 + inSlope: 0.8866174 + outSlope: 0.8866174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.19228497 + inSlope: -0.8691015 + outSlope: -0.8691015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10927449 + inSlope: -1.2799623 + outSlope: -1.2799623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.068727896 + inSlope: -1.2292984 + outSlope: -1.2292984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.027321234 + inSlope: -1.4129205 + outSlope: -1.4129205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0254668 + inSlope: -1.4225918 + outSlope: -1.4225918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.067518175 + inSlope: -0.75940335 + outSlope: -0.75940335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.07609366 + inSlope: 0.022851959 + outSlope: 0.022851959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.06599471 + inSlope: 0.46257013 + outSlope: 0.46257013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.04525566 + inSlope: 0.9118396 + outSlope: 0.9118396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.005205393 + inSlope: 0.9543396 + outSlope: 0.9543396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.018366992 + inSlope: 0.4122634 + outSlope: 0.4122634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.022278816 + inSlope: -0.20980628 + outSlope: -0.20980628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.004379928 + inSlope: -0.8091959 + outSlope: -0.8091959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.03166759 + inSlope: -1.0814246 + outSlope: -1.0814246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.34446394 + inSlope: 0.06662518 + outSlope: 0.06662518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.35431093 + inSlope: 0.3626717 + outSlope: 0.3626717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.41487056 + inSlope: 0.61533445 + outSlope: 0.61533445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.4372511 + inSlope: 0.057077862 + outSlope: 0.057077862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.41520545 + inSlope: -0.5722445 + outSlope: -0.5722445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.34179696 + inSlope: -0.58225644 + outSlope: -0.58225644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.32644007 + inSlope: -0.13791993 + outSlope: -0.13791993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.33260232 + inSlope: 0.04693102 + outSlope: 0.04693102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.3295688 + inSlope: -0.25277242 + outSlope: -0.25277242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.31575084 + inSlope: -0.1983603 + outSlope: -0.1983603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.3163448 + inSlope: 0.016314983 + outSlope: 0.016314983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.32159138 + inSlope: 0.10715243 + outSlope: 0.10715243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.323982 + inSlope: -0.10326937 + outSlope: -0.10326937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.31470674 + inSlope: -0.2782575 + outSlope: -0.2782575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00495143 + inSlope: -0.04429433 + outSlope: -0.04429433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0034749522 + inSlope: -0.14857063 + outSlope: -0.14857063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0049532787 + inSlope: -0.3162251 + outSlope: -0.3162251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.017606724 + inSlope: -0.4022367 + outSlope: -0.4022367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.03176906 + inSlope: -0.40007234 + outSlope: -0.40007234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.044278212 + inSlope: -0.36867517 + outSlope: -0.36867517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.056347407 + inSlope: -0.4369414 + outSlope: -0.4369414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.07340764 + inSlope: -0.519114 + outSlope: -0.519114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.090955004 + inSlope: -0.28868574 + outSlope: -0.28868574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.09265336 + inSlope: 0.20354077 + outSlope: 0.20354077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.07738562 + inSlope: 0.5056771 + outSlope: 0.5056771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.05894155 + inSlope: 0.52748823 + outSlope: 0.52748823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.042219725 + inSlope: 0.52654505 + outSlope: 0.52654505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.023838533 + inSlope: 0.50478613 + outSlope: 0.50478613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.008567319 + inSlope: 0.36806095 + outSlope: 0.36806095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00069885235 + inSlope: 0.1528893 + outSlope: 0.1528893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0016252925 + inSlope: -0.25668907 + outSlope: -0.25668907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.016413767 + inSlope: -0.6934335 + outSlope: -0.6934335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.044603597 + inSlope: -0.8720047 + outSlope: -0.8720047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.07454741 + inSlope: -0.8553935 + outSlope: -0.8553935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.10162983 + inSlope: -0.52888745 + outSlope: -0.52888745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.10980655 + inSlope: -0.001536794 + outSlope: -0.001536794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.1017323 + inSlope: 0.22689447 + outSlope: 0.22689447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.09468026 + inSlope: 0.21156107 + outSlope: 0.21156107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.93878204 + inSlope: -0.026232002 + outSlope: -0.026232002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.89529854 + inSlope: -0.5234384 + outSlope: -0.5234384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8865648 + inSlope: 0.40127906 + outSlope: 0.40127906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.94280326 + inSlope: 0.009016775 + outSlope: 0.009016775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.94022626 + inSlope: -0.034089945 + outSlope: -0.034089945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9439241 + inSlope: 0.1006972 + outSlope: 0.1006972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.24836828 + inSlope: -0.01672402 + outSlope: -0.01672402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.24892575 + inSlope: 0.07887214 + outSlope: 0.07887214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.24027047 + inSlope: 0.007578347 + outSlope: 0.007578347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.24260491 + inSlope: -0.15832634 + outSlope: -0.15832634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.25591862 + inSlope: 0.12399231 + outSlope: 0.12399231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.22269933 + inSlope: 0.43738896 + outSlope: 0.43738896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.21593574 + inSlope: -0.19997622 + outSlope: -0.19997622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.22534923 + inSlope: -0.3540761 + outSlope: -0.3540761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.24830946 + inSlope: -0.09898065 + outSlope: -0.09898065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.24613953 + inSlope: -0.3622704 + outSlope: -0.3622704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.27246085 + inSlope: -0.09708783 + outSlope: -0.09708783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.25261205 + inSlope: 1.2542249 + outSlope: 1.2542249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.1888459 + inSlope: 1.6653376 + outSlope: 1.6653376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.14158957 + inSlope: 1.4099786 + outSlope: 1.4099786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.09484734 + inSlope: 1.0104288 + outSlope: 1.0104288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.074227676 + inSlope: 0.31310406 + outSlope: 0.31310406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.073973715 + inSlope: 0.024121428 + outSlope: 0.024121428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.07261958 + inSlope: 0.040624034 + outSlope: 0.040624034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9120989 + inSlope: 0.07867991 + outSlope: 0.07867991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.8092023 + inSlope: 2.0048227 + outSlope: 2.0048227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.5679864 + inSlope: 1.8904397 + outSlope: 1.8904397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.5080598 + inSlope: -0.7717275 + outSlope: -0.7717275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.70465076 + inSlope: -3.0929127 + outSlope: -3.0929127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.9218046 + inSlope: -2.019683 + outSlope: -2.019683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.9555653 + inSlope: -0.63684887 + outSlope: -0.63684887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.84188795 + inSlope: 1.8362198 + outSlope: 1.8362198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.66221964 + inSlope: 1.6084908 + outSlope: 1.6084908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10084451 + inSlope: 0.38736305 + outSlope: 0.38736305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.11375661 + inSlope: 0.6906971 + outSlope: 0.6906971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.14689098 + inSlope: 1.2570264 + outSlope: 1.2570264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.29620987 + inSlope: 0.9623385 + outSlope: 0.9623385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.23861735 + inSlope: -1.0457786 + outSlope: -1.0457786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.20279115 + inSlope: -1.0025606 + outSlope: -1.0025606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.17177995 + inSlope: -1.0231924 + outSlope: -1.0231924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.1345783 + inSlope: -1.5501375 + outSlope: -1.5501375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.06843745 + inSlope: -2.00133 + outSlope: -2.00133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0011563911 + inSlope: -1.2665303 + outSlope: -1.2665303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.01599785 + inSlope: -0.30928922 + outSlope: -0.30928922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.019462906 + inSlope: 0.26097822 + outSlope: 0.26097822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0014006773 + inSlope: 1.3576995 + outSlope: 1.3576995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.071050435 + inSlope: 1.8797698 + outSlope: 1.8797698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.12671867 + inSlope: 1.0159689 + outSlope: 1.0159689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.13878165 + inSlope: -0.24855171 + outSlope: -0.24855171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.110148594 + inSlope: -1.1579003 + outSlope: -1.1579003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.061588287 + inSlope: -1.456808 + outSlope: -1.456808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5166276 + inSlope: -0.04154205 + outSlope: -0.04154205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.5429546 + inSlope: -0.08559911 + outSlope: -0.08559911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.555531 + inSlope: -0.30367795 + outSlope: -0.30367795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.5650806 + inSlope: 0.1743892 + outSlope: 0.1743892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.54347 + inSlope: 0.24110013 + outSlope: 0.24110013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.53077185 + inSlope: 0.2916259 + outSlope: 0.2916259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.5188009 + inSlope: 1.9062687 + outSlope: 1.9062687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.4036874 + inSlope: 2.812406 + outSlope: 2.812406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.33130723 + inSlope: 0.7560091 + outSlope: 0.7560091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.35328674 + inSlope: -0.87252593 + outSlope: -0.87252593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.3894756 + inSlope: -1.5709883 + outSlope: -1.5709883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.45801932 + inSlope: -1.4332988 + outSlope: -1.4332988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.4850289 + inSlope: -0.028666377 + outSlope: -0.028666377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.4115872 + inSlope: 1.5124874 + outSlope: 1.5124874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.35909787 + inSlope: 1.5746789 + outSlope: 1.5746789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5195198 + inSlope: -0.11067151 + outSlope: -0.11067151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5000127 + inSlope: -0.6533601 + outSlope: -0.6533601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.34026974 + inSlope: -0.50146765 + outSlope: -0.50146765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.33723146 + inSlope: 0.5657441 + outSlope: 0.5657441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.4049255 + inSlope: 1.1459398 + outSlope: 1.1459398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.4827683 + inSlope: 1.1385965 + outSlope: 1.1385965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.51955897 + inSlope: 1.3767698 + outSlope: 1.3767698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6313305 + inSlope: 1.5530343 + outSlope: 1.5530343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.6780886 + inSlope: -0.04321438 + outSlope: -0.04321438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.6284496 + inSlope: -1.8106062 + outSlope: -1.8106062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5573815 + inSlope: -2.3509235 + outSlope: -2.3509235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.40380853 + inSlope: -1.4233232 + outSlope: -1.4233232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.3705871 + inSlope: -0.18738165 + outSlope: -0.18738165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4846379 + inSlope: -0.20991682 + outSlope: -0.20991682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.50539947 + inSlope: -0.62120533 + outSlope: -0.62120533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.60503393 + inSlope: -1.0043254 + outSlope: -1.0043254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.64329773 + inSlope: -0.013626523 + outSlope: -0.013626523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.5039115 + inSlope: 1.1727026 + outSlope: 1.1727026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.46090004 + inSlope: 2.0135508 + outSlope: 2.0135508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.36967486 + inSlope: 2.1866493 + outSlope: 2.1866493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.31512347 + inSlope: 2.4555812 + outSlope: 2.4555812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.20596932 + inSlope: 2.995316 + outSlope: 2.995316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.11543573 + inSlope: 0.61986846 + outSlope: 0.61986846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.16464488 + inSlope: -2.3802893 + outSlope: -2.3802893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.2741216 + inSlope: -2.5321817 + outSlope: -2.5321817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3556959 + inSlope: -0.2615779 + outSlope: -0.2615779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.35089543 + inSlope: 0.14401394 + outSlope: 0.14401394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47782952 + inSlope: -0.14019549 + outSlope: -0.14019549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.4418087 + inSlope: -0.47506797 + outSlope: -0.47506797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.40220642 + inSlope: -0.0093224645 + outSlope: -0.0093224645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.46158242 + inSlope: 0.4432971 + outSlope: 0.4432971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.48092544 + inSlope: 0.3958856 + outSlope: 0.3958856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.49847314 + inSlope: 1.9135468 + outSlope: 1.9135468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6084951 + inSlope: 1.9186342 + outSlope: 1.9186342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.626382 + inSlope: 0.03315921 + outSlope: 0.03315921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.61070573 + inSlope: 0.55453515 + outSlope: 0.55453515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.66335094 + inSlope: 0.92892206 + outSlope: 0.92892206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.68343514 + inSlope: 0.66675127 + outSlope: 0.66675127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7497156 + inSlope: 0.9647496 + outSlope: 0.9647496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.78140056 + inSlope: 0.9505473 + outSlope: 0.9505473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.196121 + inSlope: 0.028216837 + outSlope: 0.028216837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.19706157 + inSlope: 0.16419901 + outSlope: 0.16419901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.22795996 + inSlope: 0.1694403 + outSlope: 0.1694403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.23280156 + inSlope: 0.28306895 + outSlope: 0.28306895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.27127257 + inSlope: 0.46803588 + outSlope: 0.46803588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.24562334 + inSlope: -0.75306815 + outSlope: -0.75306815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.21711107 + inSlope: -0.7688365 + outSlope: -0.7688365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.18084547 + inSlope: -0.18353237 + outSlope: -0.18353237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.1821321 + inSlope: 0.6899501 + outSlope: 0.6899501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.22684218 + inSlope: 0.873297 + outSlope: 0.873297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.23250376 + inSlope: -0.4914462 + outSlope: -0.4914462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.20758885 + inSlope: -1.1783028 + outSlope: -1.1783028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.15395021 + inSlope: -1.6434462 + outSlope: -1.6434462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.09802578 + inSlope: -1.2434318 + outSlope: -1.2434318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.071054794 + inSlope: -0.8091288 + outSlope: -0.8091288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.92016286 + inSlope: -0.0999999 + outSlope: -0.0999999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.87589514 + inSlope: 1.3089726 + outSlope: 1.3089726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.67406917 + inSlope: 2.1206386 + outSlope: 2.1206386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.5738328 + inSlope: 0.5826331 + outSlope: 0.5826331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.7968716 + inSlope: -2.7366147 + outSlope: -2.7366147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.8959049 + inSlope: -2.1972513 + outSlope: -2.1972513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.93661106 + inSlope: 0.7230822 + outSlope: 0.7230822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6157927 + inSlope: 2.4784305 + outSlope: 2.4784305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17522718 + inSlope: 0.45494285 + outSlope: 0.45494285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.16006242 + inSlope: 0.846372 + outSlope: 0.846372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.118802376 + inSlope: 1.665622 + outSlope: 1.665622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.049020942 + inSlope: 2.2923546 + outSlope: 2.2923546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.034021266 + inSlope: 2.4099424 + outSlope: 2.4099424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.11164188 + inSlope: 1.941298 + outSlope: 1.941298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.16344115 + inSlope: 0.92075276 + outSlope: 0.92075276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.1527346 + inSlope: -0.82730776 + outSlope: -0.82730776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.11787157 + inSlope: -1.2870445 + outSlope: -1.2870445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.066931635 + inSlope: -1.663198 + outSlope: -1.663198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0069917087 + inSlope: -1.8235452 + outSlope: -1.8235452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.05463809 + inSlope: -1.9175172 + outSlope: -1.9175172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.12084282 + inSlope: -2.3243966 + outSlope: -2.3243966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.20959786 + inSlope: -2.8657112 + outSlope: -2.8657112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.31189013 + inSlope: -1.9093996 + outSlope: -1.9093996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.33689108 + inSlope: 0.42064422 + outSlope: 0.42064422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.28384715 + inSlope: 1.8940346 + outSlope: 1.8940346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.21062213 + inSlope: 2.9666605 + outSlope: 2.9666605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.08606976 + inSlope: 3.2000299 + outSlope: 3.2000299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0027132148 + inSlope: 1.8170906 + outSlope: 1.8170906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.03506955 + inSlope: 0.19209445 + outSlope: 0.19209445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.015519555 + inSlope: -1.0145514 + outSlope: -1.0145514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.032567233 + inSlope: -1.4426024 + outSlope: -1.4426024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6138288 + inSlope: -0.033429265 + outSlope: -0.033429265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.6271825 + inSlope: 0.030835565 + outSlope: 0.030835565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.63408184 + inSlope: -0.29370102 + outSlope: -0.29370102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.64815545 + inSlope: 0.04994363 + outSlope: 0.04994363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.63359094 + inSlope: 0.118471354 + outSlope: 0.118471354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.62835604 + inSlope: 0.19184859 + outSlope: 0.19184859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.62080103 + inSlope: 0.80805725 + outSlope: 0.80805725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.5744856 + inSlope: 3.3086715 + outSlope: 3.3086715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.40022284 + inSlope: 2.765362 + outSlope: 2.765362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.390128 + inSlope: -0.29285216 + outSlope: -0.29285216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.41974628 + inSlope: -1.3164037 + outSlope: -1.3164037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.47788826 + inSlope: -0.94809675 + outSlope: -0.94809675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.48295277 + inSlope: 1.1435543 + outSlope: 1.1435543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.40165123 + inSlope: 3.4347863 + outSlope: 3.4347863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2539671 + inSlope: 4.453366 + outSlope: 4.453366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.1047602 + inSlope: 4.4762034 + outSlope: 4.4762034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6198003 + inSlope: -0.084845416 + outSlope: -0.084845416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.5853042 + inSlope: -0.7027173 + outSlope: -0.7027173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.47533113 + inSlope: 0.42907166 + outSlope: 0.42907166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.52911747 + inSlope: 0.89228565 + outSlope: 0.89228565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.58863956 + inSlope: 0.8301974 + outSlope: 0.8301974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.6142556 + inSlope: 1.0058308 + outSlope: 1.0058308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6556949 + inSlope: 2.1584473 + outSlope: 2.1584473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.7581521 + inSlope: 1.6351734 + outSlope: 1.6351734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.76470655 + inSlope: -0.010977574 + outSlope: -0.010977574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7574203 + inSlope: -0.36654788 + outSlope: -0.36654788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.74027 + inSlope: -0.1014542 + outSlope: -0.1014542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.7895688 + inSlope: 1.2580358 + outSlope: 1.2580358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8345257 + inSlope: 1.0248116 + outSlope: 1.0248116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.85788953 + inSlope: 0.70091426 + outSlope: 0.70091426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.34803438 + inSlope: -0.21422444 + outSlope: -0.21422444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.3728206 + inSlope: -0.7659807 + outSlope: -0.7659807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.49374855 + inSlope: -1.2369622 + outSlope: -1.2369622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.531037 + inSlope: -0.7620359 + outSlope: -0.7620359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.52573216 + inSlope: 0.6314323 + outSlope: 0.6314323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.4188226 + inSlope: 1.2735231 + outSlope: 1.2735231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.32492724 + inSlope: 1.6017387 + outSlope: 1.6017387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.2686341 + inSlope: 1.3768153 + outSlope: 1.3768153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.23313957 + inSlope: 0.7569845 + outSlope: 0.7569845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.21816844 + inSlope: 0.47741205 + outSlope: 0.47741205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.20131211 + inSlope: -0.12255627 + outSlope: -0.12255627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.2263389 + inSlope: -0.6427406 + outSlope: -0.6427406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.24416149 + inSlope: -0.616891 + outSlope: -0.616891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.28258398 + inSlope: -0.045441017 + outSlope: -0.045441017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.27049434 + inSlope: 0.3626889 + outSlope: 0.3626889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.34341496 + inSlope: -0.12713134 + outSlope: -0.12713134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.3192313 + inSlope: -0.426068 + outSlope: -0.426068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.2699991 + inSlope: -0.37827408 + outSlope: -0.37827408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.2646458 + inSlope: 0.26246357 + outSlope: 0.26246357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.32143858 + inSlope: 0.48619586 + outSlope: 0.48619586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.3431247 + inSlope: 0.4516183 + outSlope: 0.4516183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.36293066 + inSlope: 0.9988589 + outSlope: 0.9988589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.40971524 + inSlope: 1.4409096 + outSlope: 1.4409096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.4589913 + inSlope: 0.816386 + outSlope: 0.816386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.464141 + inSlope: -0.017535992 + outSlope: -0.017535992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.45782223 + inSlope: -0.7340616 + outSlope: -0.7340616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3790205 + inSlope: -0.54148084 + outSlope: -0.54148084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.3990166 + inSlope: 0.6753355 + outSlope: 0.6753355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.42412722 + inSlope: 0.7533183 + outSlope: 0.7533183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3582997 + inSlope: -0.27837217 + outSlope: -0.27837217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.36757877 + inSlope: -0.37154227 + outSlope: -0.37154227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.38327947 + inSlope: 0.55230486 + outSlope: 0.55230486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.31938925 + inSlope: 0.8406077 + outSlope: 0.8406077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.29002944 + inSlope: 0.03647805 + outSlope: 0.03647805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.29628688 + inSlope: -0.6031824 + outSlope: -0.6031824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.3302416 + inSlope: -1.3819895 + outSlope: -1.3819895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.3884195 + inSlope: -1.7868328 + outSlope: -1.7868328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.44936383 + inSlope: -1.2995112 + outSlope: -1.2995112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.48999774 + inSlope: -0.6489542 + outSlope: -0.6489542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.54110426 + inSlope: -0.58746314 + outSlope: -0.58746314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.5620597 + inSlope: -0.06120898 + outSlope: -0.06120898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.5722044 + inSlope: -0.50586355 + outSlope: -0.50586355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6693995 + inSlope: -1.1287549 + outSlope: -1.1287549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0046637594 + inSlope: 0.2938048 + outSlope: 0.2938048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0051297345 + inSlope: 0.44097048 + outSlope: 0.44097048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.024734275 + inSlope: 0.6455916 + outSlope: 0.6455916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.04816918 + inSlope: 0.61343277 + outSlope: 0.61343277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.065629795 + inSlope: 0.2959097 + outSlope: 0.2959097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.06789649 + inSlope: -0.28240794 + outSlope: -0.28240794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.04680259 + inSlope: -1.1898781 + outSlope: -1.1898781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.011428718 + inSlope: -2.2750015 + outSlope: -2.2750015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.104864165 + inSlope: -2.491796 + outSlope: -2.491796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.17754844 + inSlope: -1.2147866 + outSlope: -1.2147866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.18584993 + inSlope: 0.78544384 + outSlope: 0.78544384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.12518552 + inSlope: 3.1000423 + outSlope: 3.1000423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.020819673 + inSlope: 5.0592837 + outSlope: 5.0592837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.21210018 + inSlope: 5.5080934 + outSlope: 5.5080934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.38802588 + inSlope: 5.1320577 + outSlope: 5.1320577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6736101 + inSlope: 2.33033 + outSlope: 2.33033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.67441773 + inSlope: -1.9423871 + outSlope: -1.9423871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5801001 + inSlope: -3.3199577 + outSlope: -3.3199577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.45308727 + inSlope: -3.4720025 + outSlope: -3.4720025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.34863332 + inSlope: -2.4129603 + outSlope: -2.4129603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.29222322 + inSlope: -1.0845089 + outSlope: -1.0845089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.27633277 + inSlope: -0.4767131 + outSlope: -0.4767131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.007293541 + inSlope: 0.06191657 + outSlope: 0.06191657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.005229655 + inSlope: 0.06635569 + outSlope: 0.06635569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0028698281 + inSlope: -0.01069418 + outSlope: -0.01069418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.005942601 + inSlope: -0.2510765 + outSlope: -0.2510765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.019608261 + inSlope: -0.4646021 + outSlope: -0.4646021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.036916073 + inSlope: -0.34698063 + outSlope: -0.34698063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.042740304 + inSlope: -0.059954204 + outSlope: -0.059954204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.040913023 + inSlope: 0.07144226 + outSlope: 0.07144226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.037977487 + inSlope: 0.19748634 + outSlope: 0.19748634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.027747268 + inSlope: 0.6974536 + outSlope: 0.6974536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.008519415 + inSlope: 1.8337693 + outSlope: 1.8337693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.094504 + inSlope: 3.0505128 + outSlope: 3.0505128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.21188703 + inSlope: 3.114547 + outSlope: 3.114547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.34513187 + inSlope: 0.41090888 + outSlope: 0.41090888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.3295345 + inSlope: -1.7057568 + outSlope: -1.7057568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.23141469 + inSlope: -3.5050392 + outSlope: -3.5050392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.09586501 + inSlope: -4.133122 + outSlope: -4.133122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.04412676 + inSlope: -3.9453523 + outSlope: -3.9453523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.16715845 + inSlope: -2.8962393 + outSlope: -2.8962393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.23720942 + inSlope: -1.1937568 + outSlope: -1.1937568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.21677087 + inSlope: 1.2068536 + outSlope: 1.2068536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.16628526 + inSlope: 1.514567 + outSlope: 1.514567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2956181 + inSlope: 0.25848 + outSlope: 0.25848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.3241912 + inSlope: 0.82712436 + outSlope: 0.82712436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.35937572 + inSlope: 1.239502 + outSlope: 1.239502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.45466506 + inSlope: -0.39009923 + outSlope: -0.39009923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.41968676 + inSlope: -1.5943946 + outSlope: -1.5943946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3483721 + inSlope: -1.6016692 + outSlope: -1.6016692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.31290883 + inSlope: 0.071885884 + outSlope: 0.071885884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.44667205 + inSlope: 3.0888028 + outSlope: 3.0888028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.64838654 + inSlope: 1.6127363 + outSlope: 1.6127363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.6666005 + inSlope: -0.88501835 + outSlope: -0.88501835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5893854 + inSlope: -2.793301 + outSlope: -2.793301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.48038045 + inSlope: -2.4882493 + outSlope: -2.4882493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.36343658 + inSlope: -2.5347214 + outSlope: -2.5347214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.2545205 + inSlope: -3.250187 + outSlope: -3.250187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.14675747 + inSlope: -2.2711558 + outSlope: -2.2711558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.10311018 + inSlope: -0.34023795 + outSlope: -0.34023795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.124074884 + inSlope: 1.0733366 + outSlope: 1.0733366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.17466597 + inSlope: 1.5177314 + outSlope: 1.5177314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.052873082 + inSlope: 0.21653561 + outSlope: 0.21653561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.060090937 + inSlope: 0.5138816 + outSlope: 0.5138816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.08713186 + inSlope: 1.2244918 + outSlope: 1.2244918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.20722839 + inSlope: 1.8383648 + outSlope: 1.8383648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.32118684 + inSlope: 1.7743578 + outSlope: 1.7743578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.38257194 + inSlope: 0.8799488 + outSlope: 0.8799488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3798501 + inSlope: -1.7666559 + outSlope: -1.7666559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.2647949 + inSlope: -3.8567955 + outSlope: -3.8567955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.122730404 + inSlope: -3.029981 + outSlope: -3.029981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.062796175 + inSlope: -0.73391706 + outSlope: -0.73391706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.07380261 + inSlope: -0.053412274 + outSlope: -0.053412274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.059235368 + inSlope: -1.6859444 + outSlope: -1.6859444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.03859368 + inSlope: -3.2687168 + outSlope: -3.2687168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.15867898 + inSlope: -2.302384 + outSlope: -2.302384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.19208585 + inSlope: 1.0018389 + outSlope: 1.0018389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.091889665 + inSlope: 4.299782 + outSlope: 4.299782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.09456618 + inSlope: 5.05574 + outSlope: 5.05574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.2451596 + inSlope: 3.4167945 + outSlope: 3.4167945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.32235253 + inSlope: 1.7196186 + outSlope: 1.7196186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.3658138 + inSlope: -0.32745302 + outSlope: -0.32745302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.33797055 + inSlope: -0.8352964 + outSlope: -0.8352964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8817773 + inSlope: 0.0049674506 + outSlope: 0.0049674506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.8793586 + inSlope: -0.4877383 + outSlope: -0.4877383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.8296654 + inSlope: -0.5257325 + outSlope: -0.5257325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.80246603 + inSlope: -0.67962444 + outSlope: -0.67962444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7568511 + inSlope: -0.17026666 + outSlope: -0.17026666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.7774569 + inSlope: -0.12271485 + outSlope: -0.12271485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.73877096 + inSlope: 0.040748373 + outSlope: 0.040748373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.7887262 + inSlope: 0.5078705 + outSlope: 0.5078705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.7919199 + inSlope: -0.3635345 + outSlope: -0.3635345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7644906 + inSlope: -0.41868427 + outSlope: -0.41868427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.7640076 + inSlope: 0.67481315 + outSlope: 0.67481315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.8094781 + inSlope: 1.2692769 + outSlope: 1.2692769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8933845 + inSlope: 0.57234716 + outSlope: 0.57234716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.36370757 + inSlope: 0.26195973 + outSlope: 0.26195973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.32198176 + inSlope: 1.5697525 + outSlope: 1.5697525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.2503254 + inSlope: 2.8017457 + outSlope: 2.8017457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.13519871 + inSlope: 3.6151605 + outSlope: 3.6151605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.009314731 + inSlope: 2.6598132 + outSlope: 2.6598132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.042122178 + inSlope: -0.8992277 + outSlope: -0.8992277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.06926322 + inSlope: -5.141806 + outSlope: -5.141806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.30066487 + inSlope: -6.178793 + outSlope: -6.178793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.48118272 + inSlope: -3.5313272 + outSlope: -3.5313272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.5360867 + inSlope: 0.2857197 + outSlope: 0.2857197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.46213475 + inSlope: 3.864438 + outSlope: 3.864438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.2784573 + inSlope: 5.815586 + outSlope: 5.815586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.074428864 + inSlope: 5.549322 + outSlope: 5.549322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.09149747 + inSlope: 4.5627975 + outSlope: 4.5627975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.22975749 + inSlope: 3.608097 + outSlope: 3.608097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.33203724 + inSlope: 3.006524 + outSlope: 3.006524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.4301926 + inSlope: 2.8787162 + outSlope: 2.8787162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.52395165 + inSlope: 1.6444527 + outSlope: 1.6444527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5398227 + inSlope: -0.8349094 + outSlope: -0.8349094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.4682911 + inSlope: -2.4899502 + outSlope: -2.4899502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.373826 + inSlope: -2.6159368 + outSlope: -2.6159368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.2938953 + inSlope: -2.022047 + outSlope: -2.022047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.23902288 + inSlope: -1.6461713 + outSlope: -1.6461713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3915437 + inSlope: 0.041345354 + outSlope: 0.041345354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.39610064 + inSlope: 0.017019512 + outSlope: 0.017019512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.37632522 + inSlope: -0.74823 + outSlope: -0.74823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.28882632 + inSlope: -0.24559024 + outSlope: -0.24559024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.31204385 + inSlope: 0.5622022 + outSlope: 0.5622022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.3306929 + inSlope: 0.70254886 + outSlope: 0.70254886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.4210362 + inSlope: 0.84253466 + outSlope: 0.84253466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.47038868 + inSlope: 0.44579634 + outSlope: 0.44579634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.4858081 + inSlope: 0.40330827 + outSlope: 0.40330827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.52907676 + inSlope: 0.70065117 + outSlope: 0.70065117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.55121166 + inSlope: 0.854625 + outSlope: 0.854625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.624585 + inSlope: 0.92573607 + outSlope: 0.92573607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6477675 + inSlope: 0.69547474 + outSlope: 0.69547474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.008224625 + inSlope: 0.047623206 + outSlope: 0.047623206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.009812065 + inSlope: 0.19124936 + outSlope: 0.19124936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.020974582 + inSlope: 0.45777315 + outSlope: 0.45777315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.04033028 + inSlope: 0.48330474 + outSlope: 0.48330474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0531949 + inSlope: 0.06501038 + outSlope: 0.06501038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.044664305 + inSlope: -0.53027475 + outSlope: -0.53027475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.017843237 + inSlope: -0.95035666 + outSlope: -0.95035666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.018692818 + inSlope: -1.1815721 + outSlope: -1.1815721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.060928233 + inSlope: -1.1995095 + outSlope: -1.1995095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.09866011 + inSlope: -0.73574275 + outSlope: -0.73574275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.109977745 + inSlope: 0.50695115 + outSlope: 0.50695115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.06486337 + inSlope: 2.332751 + outSlope: 2.332751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.045539077 + inSlope: 3.6677153 + outSlope: 3.6677153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.17965107 + inSlope: 4.0076857 + outSlope: 4.0076857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.3127181 + inSlope: 4.3888526 + outSlope: 4.3888526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6114776 + inSlope: 3.3010066 + outSlope: 3.3010066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.69230837 + inSlope: 1.8541212 + outSlope: 1.8541212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.72516567 + inSlope: -0.97980446 + outSlope: -0.97980446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.5341006 + inSlope: -1.4608035 + outSlope: -1.4608035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.49958637 + inSlope: -1.0354257 + outSlope: -1.0354257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03354959 + inSlope: 0.2932748 + outSlope: 0.2932748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.023773761 + inSlope: 0.40171492 + outSlope: 0.40171492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.006768592 + inSlope: 0.51578164 + outSlope: 0.51578164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.010611684 + inSlope: 0.21198203 + outSlope: 0.21198203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.007363546 + inSlope: -0.39965117 + outSlope: -0.39965117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.016031725 + inSlope: -0.6709487 + outSlope: -0.6709487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.03736637 + inSlope: -0.4137327 + outSlope: -0.4137327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.036416076 + inSlope: 0.37943444 + outSlope: 0.37943444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.018318288 + inSlope: 0.80448204 + outSlope: 0.80448204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.017216058 + inSlope: 1.6647112 + outSlope: 1.6647112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.09266246 + inSlope: 2.5175397 + outSlope: 2.5175397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.18505211 + inSlope: 2.4289489 + outSlope: 2.4289489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.25459245 + inSlope: 2.0320375 + outSlope: 2.0320375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.32052127 + inSlope: 1.8690102 + outSlope: 1.8690102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.37919307 + inSlope: 0.8696741 + outSlope: 0.8696741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.3207116 + inSlope: -2.548643 + outSlope: -2.548643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.20858999 + inSlope: -3.893064 + outSlope: -3.893064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.061174 + inSlope: -3.9043846 + outSlope: -3.9043846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.051702343 + inSlope: -2.443934 + outSlope: -2.443934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.101754874 + inSlope: -0.74037933 + outSlope: -0.74037933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10106101 + inSlope: 0.2388436 + outSlope: 0.2388436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.085831955 + inSlope: 0.45687124 + outSlope: 0.45687124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04129821 + inSlope: 0.16623023 + outSlope: 0.16623023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04683922 + inSlope: 0.28244 + outSlope: 0.28244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.060127545 + inSlope: 0.30425385 + outSlope: 0.30425385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.06712281 + inSlope: -0.3385036 + outSlope: -0.3385036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.03756064 + inSlope: -1.5429727 + outSlope: -1.5429727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.03574203 + inSlope: -2.5332415 + outSlope: -2.5332415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.13132216 + inSlope: -2.9054446 + outSlope: -2.9054446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.22943838 + inSlope: -2.8556433 + outSlope: -2.8556433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.36632073 + inSlope: 0.029502928 + outSlope: 0.029502928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.3197315 + inSlope: 2.136759 + outSlope: 2.136759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.22387013 + inSlope: 2.454329 + outSlope: 2.454329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.15610951 + inSlope: 1.6118151 + outSlope: 1.6118151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.11641574 + inSlope: 1.7388693 + outSlope: 1.7388693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0401849 + inSlope: 2.4710064 + outSlope: 2.4710064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.048317924 + inSlope: 1.8070316 + outSlope: 1.8070316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.08028382 + inSlope: -0.6653781 + outSlope: -0.6653781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0039593503 + inSlope: -4.236212 + outSlope: -4.236212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.20213017 + inSlope: -6.693499 + outSlope: -6.693499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.4422739 + inSlope: -5.404081 + outSlope: -5.404081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.5624023 + inSlope: -1.5371159 + outSlope: -1.5371159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.5447482 + inSlope: 2.0208926 + outSlope: 2.0208926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.42767623 + inSlope: 4.0288067 + outSlope: 4.0288067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.27616104 + inSlope: 4.5454516 + outSlope: 4.5454516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.39465475 + inSlope: -0.42729107 + outSlope: -0.42729107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.45001826 + inSlope: -1.869161 + outSlope: -1.869161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.53350854 + inSlope: -2.7986279 + outSlope: -2.7986279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.7143488 + inSlope: -1.3392253 + outSlope: -1.3392253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.72587514 + inSlope: 0.89467067 + outSlope: 0.89467067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.6547041 + inSlope: 3.1124215 + outSlope: 3.1124215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.5183804 + inSlope: 3.852579 + outSlope: 3.852579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.3978655 + inSlope: 1.9067692 + outSlope: 1.9067692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.39126247 + inSlope: -1.5787451 + outSlope: -1.5787451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.5031152 + inSlope: -3.8663123 + outSlope: -3.8663123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.64901674 + inSlope: -3.749442 + outSlope: -3.749442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.7976316 + inSlope: -0.44358894 + outSlope: -0.44358894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.7826507 + inSlope: 1.023273 + outSlope: 1.023273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.7294134 + inSlope: 1.2322397 + outSlope: 1.2322397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.7005013 + inSlope: 0.5045 + outSlope: 0.5045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.69578004 + inSlope: 1.2308041 + outSlope: 1.2308041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.61844766 + inSlope: 3.2802258 + outSlope: 3.2802258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.4770984 + inSlope: 4.098105 + outSlope: 4.098105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.34524068 + inSlope: 3.2549353 + outSlope: 3.2549353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2601027 + inSlope: 1.8335649 + outSlope: 1.8335649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.22300307 + inSlope: 1.1129875 + outSlope: 1.1129875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.64876395 + inSlope: 0.2278751 + outSlope: 0.2278751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.6056031 + inSlope: 1.8032051 + outSlope: 1.8032051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.52095443 + inSlope: 3.1817737 + outSlope: 3.1817737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.26175556 + inSlope: 3.4655309 + outSlope: 3.4655309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.16244943 + inSlope: 1.9719543 + outSlope: 1.9719543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.1302919 + inSlope: -0.48575857 + outSlope: -0.48575857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.19483334 + inSlope: -3.2326064 + outSlope: -3.2326064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.34579897 + inSlope: -4.591547 + outSlope: -4.591547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.50093645 + inSlope: -2.9849198 + outSlope: -2.9849198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.5447936 + inSlope: 0.7325914 + outSlope: 0.7325914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.45209694 + inSlope: 3.4704747 + outSlope: 3.4704747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.31342855 + inSlope: 3.901175 + outSlope: 3.901175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.19201861 + inSlope: 3.7544453 + outSlope: 3.7544453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.06313233 + inSlope: 3.0842752 + outSlope: 3.0842752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.013599675 + inSlope: 1.6913364 + outSlope: 1.6913364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.049623527 + inSlope: 2.1556258 + outSlope: 2.1556258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.157308 + inSlope: 3.9667249 + outSlope: 3.9667249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.3140719 + inSlope: 3.999704 + outSlope: 3.999704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.42395496 + inSlope: 2.1487844 + outSlope: 2.1487844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.45732412 + inSlope: 0.19445091 + outSlope: 0.19445091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.4369184 + inSlope: -0.49321726 + outSlope: -0.49321726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.42444298 + inSlope: -0.37426263 + outSlope: -0.37426263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.64934397 + inSlope: -0.049386617 + outSlope: -0.049386617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.653539 + inSlope: 0.22841153 + outSlope: 0.22841153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6621992 + inSlope: -0.2237794 + outSlope: -0.2237794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.6553397 + inSlope: 0.9049952 + outSlope: 0.9049952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.7083396 + inSlope: 1.6899822 + outSlope: 1.6899822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7680052 + inSlope: 0.87644583 + outSlope: 0.87644583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.7667693 + inSlope: -0.9799943 + outSlope: -0.9799943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.632422 + inSlope: -1.6657677 + outSlope: -1.6657677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.59162104 + inSlope: -0.9867002 + outSlope: -0.9867002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5703491 + inSlope: 0.7608271 + outSlope: 0.7608271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6792095 + inSlope: 1.4182365 + outSlope: 1.4182365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.7119129 + inSlope: -0.12261909 + outSlope: -0.12261909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.67103493 + inSlope: -2.1500974 + outSlope: -2.1500974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.568573 + inSlope: -2.1802695 + outSlope: -2.1802695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.5256836 + inSlope: 0.6559263 + outSlope: 0.6559263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.6123015 + inSlope: 3.3251014 + outSlope: 3.3251014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.74735695 + inSlope: 3.3101554 + outSlope: 3.3101554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8329785 + inSlope: 2.568644 + outSlope: 2.568644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.14352283 + inSlope: -0.008174479 + outSlope: -0.008174479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.14379531 + inSlope: -0.058048364 + outSlope: -0.058048364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.15155551 + inSlope: -0.17235763 + outSlope: -0.17235763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.16935314 + inSlope: -0.34347403 + outSlope: -0.34347403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1817815 + inSlope: -0.4549227 + outSlope: -0.4549227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.21463302 + inSlope: -0.34277114 + outSlope: -0.34277114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.22253273 + inSlope: -0.2140727 + outSlope: -0.2140727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.22890453 + inSlope: 0.006954074 + outSlope: 0.006954074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.22206913 + inSlope: 0.41859803 + outSlope: 0.41859803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.20099798 + inSlope: 0.54832685 + outSlope: 0.54832685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.18551399 + inSlope: 0.37100118 + outSlope: 0.37100118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.17626457 + inSlope: 0.480384 + outSlope: 0.480384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.15348841 + inSlope: 0.72422576 + outSlope: 0.72422576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.12798285 + inSlope: 0.4029837 + outSlope: 0.4029837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.14043462 + inSlope: -0.4691751 + outSlope: -0.4691751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2166876 + inSlope: -1.246798 + outSlope: -1.246798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.3179013 + inSlope: -1.5670964 + outSlope: -1.5670964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0225332 + inSlope: 0.002297256 + outSlope: 0.002297256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.022456625 + inSlope: -0.0058137435 + outSlope: -0.0058137435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.022920784 + inSlope: -0.0028777868 + outSlope: -0.0028777868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.022648478 + inSlope: 0.07025248 + outSlope: 0.07025248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.018237285 + inSlope: 0.16797341 + outSlope: 0.16797341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.011450251 + inSlope: 0.16392468 + outSlope: 0.16392468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0073089716 + inSlope: 0.04390613 + outSlope: 0.04390613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.008523174 + inSlope: -0.099504076 + outSlope: -0.099504076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.013942576 + inSlope: -0.13862258 + outSlope: -0.13862258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.017764678 + inSlope: -0.023064524 + outSlope: -0.023064524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.015480211 + inSlope: 0.055033065 + outSlope: 0.055033065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.014095807 + inSlope: 0.041417092 + outSlope: 0.041417092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.012719071 + inSlope: 0.10140902 + outSlope: 0.10140902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.007335205 + inSlope: 0.04346021 + outSlope: 0.04346021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.009821723 + inSlope: -0.19700113 + outSlope: -0.19700113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.020468604 + inSlope: -0.30254292 + outSlope: -0.30254292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.029991249 + inSlope: -0.3889565 + outSlope: -0.3889565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.046399057 + inSlope: -0.5991259 + outSlope: -0.5991259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.06993297 + inSlope: -0.62495637 + outSlope: -0.62495637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.08806281 + inSlope: -0.46136382 + outSlope: -0.46136382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.10069056 + inSlope: -0.23234572 + outSlope: -0.23234572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10156146 + inSlope: 0.09754018 + outSlope: 0.09754018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.09704983 + inSlope: 0.13534862 + outSlope: 0.13534862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11788527 + inSlope: 0.23201911 + outSlope: 0.23201911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.1101513 + inSlope: 0.28004763 + outSlope: 0.28004763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.099215426 + inSlope: 0.279885 + outSlope: 0.279885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08379165 + inSlope: 0.2679385 + outSlope: 0.2679385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.07362973 + inSlope: 0.41298282 + outSlope: 0.41298282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.056259457 + inSlope: 0.58706486 + outSlope: 0.58706486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.034492064 + inSlope: 0.53961945 + outSlope: 0.53961945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.020284832 + inSlope: 0.30293012 + outSlope: 0.30293012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.014296724 + inSlope: 0.12273474 + outSlope: 0.12273474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.012102516 + inSlope: -0.08648366 + outSlope: -0.08648366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.020062301 + inSlope: -0.20804816 + outSlope: -0.20804816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.025972398 + inSlope: -0.103055954 + outSlope: -0.103055954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.026932703 + inSlope: -0.13787274 + outSlope: -0.13787274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.035163913 + inSlope: -0.24261412 + outSlope: -0.24261412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.04310697 + inSlope: -0.1788868 + outSlope: -0.1788868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.047089696 + inSlope: -0.15071097 + outSlope: -0.15071097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.056252953 + inSlope: 0.04424862 + outSlope: 0.04424862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.05020446 + inSlope: 0.31128016 + outSlope: 0.31128016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.03550095 + inSlope: 0.46410513 + outSlope: 0.46410513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.019264117 + inSlope: 0.35359135 + outSlope: 0.35359135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.011928188 + inSlope: 0.117842615 + outSlope: 0.117842615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.011407949 + inSlope: 0.015607147 + outSlope: 0.015607147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000034150946 + inSlope: 0.000007683962 + outSlope: 0.000007683962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000034150946 + inSlope: -0.000003841981 + outSlope: -0.000003841981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00000034150946 + inSlope: 0.0000038419817 + outSlope: 0.0000038419817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.000000085377366 + inSlope: 0.0000038419817 + outSlope: 0.0000038419817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000000085377366 + inSlope: -0.0000038419817 + outSlope: -0.0000038419817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.00000034150946 + inSlope: -0.0000038419817 + outSlope: -0.0000038419817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.00000034150946 + inSlope: 0.0000038419817 + outSlope: 0.0000038419817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.000000085377366 + inSlope: 0.0000038419817 + outSlope: 0.0000038419817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.000000085377366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.000000085377366 + inSlope: -0.0000038419785 + outSlope: -0.0000038419785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.000000085377366 + inSlope: -6.8212103e-12 + outSlope: -6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00000034150946 + inSlope: -0.0000038419853 + outSlope: -0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.00000034150946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00000034150946 + inSlope: 0.0000038419785 + outSlope: 0.0000038419785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.000000085377366 + inSlope: -6.8212103e-12 + outSlope: -6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000034150946 + inSlope: -6.8212103e-12 + outSlope: -6.8212103e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.000000085377366 + inSlope: 0.000007683957 + outSlope: 0.000007683957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000012806605 + inSlope: -0.0000025613208 + outSlope: -0.0000025613208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000012806605 + inSlope: 0.0000012806604 + outSlope: 0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000012806605 + inSlope: -0.0000012806605 + outSlope: -0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.000000042688683 + inSlope: -0.0000012806605 + outSlope: -0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.000000042688683 + inSlope: 0.0000012806605 + outSlope: 0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00000012806605 + inSlope: 0.0000012806605 + outSlope: 0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.00000012806605 + inSlope: -0.0000012806605 + outSlope: -0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.000000042688683 + inSlope: -0.0000012806605 + outSlope: -0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.000000042688683 + inSlope: 0.0000012806594 + outSlope: 0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.000000042688683 + inSlope: 2.2737368e-12 + outSlope: 2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00000012806605 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00000012806605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000012806605 + inSlope: -0.0000012806594 + outSlope: -0.0000012806594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.000000042688683 + inSlope: 2.2737368e-12 + outSlope: 2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000012806605 + inSlope: 2.2737368e-12 + outSlope: 2.2737368e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.000000042688683 + inSlope: -0.0000025613188 + outSlope: -0.0000025613188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000042688683 + inSlope: 0.0000025613208 + outSlope: 0.0000025613208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.000000042688683 + inSlope: -0.0000012806605 + outSlope: -0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.000000042688683 + inSlope: 0.0000012806605 + outSlope: 0.0000012806605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.000000042688683 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.000000042688683 + inSlope: 0.0000025613188 + outSlope: 0.0000025613188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.441687 + inSlope: 0.57835484 + outSlope: 0.57835484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.4224085 + inSlope: 1.0057666 + outSlope: 1.0057666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.37463588 + inSlope: 1.865166 + outSlope: 1.865166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.22708865 + inSlope: 1.6918671 + outSlope: 1.6918671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.18353026 + inSlope: -0.75426006 + outSlope: -0.75426006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.23555695 + inSlope: -1.5466421 + outSlope: -1.5466421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.28663972 + inSlope: -0.9720838 + outSlope: -0.9720838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.30036253 + inSlope: -0.10194362 + outSlope: -0.10194362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.29343596 + inSlope: 0.97742456 + outSlope: 0.97742456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.2352009 + inSlope: 2.1188724 + outSlope: 2.1188724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.15217774 + inSlope: 1.3286206 + outSlope: 1.3286206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.14662613 + inSlope: -1.1708496 + outSlope: -1.1708496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.23023437 + inSlope: -2.1864808 + outSlope: -2.1864808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.29239145 + inSlope: -1.1994826 + outSlope: -1.1994826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.31019983 + inSlope: -1.0259002 + outSlope: -1.0259002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.41743538 + inSlope: -1.2636129 + outSlope: -1.2636129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.43544814 + inSlope: 1.0213761 + outSlope: 1.0213761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.3769339 + inSlope: 1.5565999 + outSlope: 1.5565999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3316748 + inSlope: 0.57685447 + outSlope: 0.57685447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.338477 + inSlope: -0.20406498 + outSlope: -0.20406498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23372184 + inSlope: 0.5231792 + outSlope: 0.5231792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.21628253 + inSlope: 0.7458584 + outSlope: 0.7458584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.18399794 + inSlope: 0.9369695 + outSlope: 0.9369695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.15381789 + inSlope: 0.85286397 + outSlope: 0.85286397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.12714034 + inSlope: 0.54807884 + outSlope: 0.54807884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.117279306 + inSlope: -0.07439186 + outSlope: -0.07439186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1320998 + inSlope: -0.4913265 + outSlope: -0.4913265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.15003441 + inSlope: -0.32103676 + outSlope: -0.32103676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.13133024 + inSlope: 1.1264458 + outSlope: 1.1264458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.07840587 + inSlope: 1.4752356 + outSlope: 1.4752356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.032981202 + inSlope: 1.206869 + outSlope: 1.206869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0020520866 + inSlope: 1.1563718 + outSlope: 1.1563718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.044110276 + inSlope: 0.84707797 + outSlope: 0.84707797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.05852395 + inSlope: 0.017818138 + outSlope: 0.017818138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.045298163 + inSlope: -0.62197655 + outSlope: -0.62197655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.017058834 + inSlope: -1.3312007 + outSlope: -1.3312007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.043448623 + inSlope: -2.3651934 + outSlope: -2.3651934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.14062068 + inSlope: -2.8661072 + outSlope: -2.8661072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.23452243 + inSlope: -2.7492836 + outSlope: -2.7492836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.32390624 + inSlope: -2.1511672 + outSlope: -2.1511672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.4203086 + inSlope: -1.3536026 + outSlope: -1.3536026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.4681737 + inSlope: -1.4359524 + outSlope: -1.4359524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.41670963 + inSlope: 0.52079916 + outSlope: 0.52079916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.39934966 + inSlope: 0.5359635 + outSlope: 0.5359635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.38097873 + inSlope: 0.16795637 + outSlope: 0.16795637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.40709174 + inSlope: -0.3432593 + outSlope: -0.3432593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.41103652 + inSlope: 0.5371014 + outSlope: 0.5371014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.37128496 + inSlope: 1.5913057 + outSlope: 1.5913057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.30494946 + inSlope: 1.7301612 + outSlope: 1.7301612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.2222651 + inSlope: 0.886248 + outSlope: 0.886248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.19685769 + inSlope: 0.13812685 + outSlope: 0.13812685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.21305664 + inSlope: -0.39279646 + outSlope: -0.39279646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.22304413 + inSlope: -0.01731509 + outSlope: -0.01731509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.21421099 + inSlope: -0.10797568 + outSlope: -0.10797568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.2302425 + inSlope: -0.4975364 + outSlope: -0.4975364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.24738006 + inSlope: -0.33583218 + outSlope: -0.33583218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.2526313 + inSlope: -0.19746429 + outSlope: -0.19746429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.26054436 + inSlope: -0.29456338 + outSlope: -0.29456338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.27226886 + inSlope: -0.24138373 + outSlope: -0.24138373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.2766366 + inSlope: 0.33852986 + outSlope: 0.33852986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.24970023 + inSlope: 1.1599216 + outSlope: 1.1599216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.19930847 + inSlope: 1.198997 + outSlope: 1.198997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.16976708 + inSlope: 0.42951217 + outSlope: 0.42951217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.17067435 + inSlope: -0.02721814 + outSlope: -0.02721814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16008973 + inSlope: -0.5120833 + outSlope: -0.5120833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.14302029 + inSlope: -0.09268038 + outSlope: -0.09268038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.15391104 + inSlope: 0.9743241 + outSlope: 0.9743241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.20797524 + inSlope: 2.282615 + outSlope: 2.282615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.43992418 + inSlope: 4.2944775 + outSlope: 4.2944775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.7238576 + inSlope: 2.9863253 + outSlope: 2.9863253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.7882859 + inSlope: -0.8909709 + outSlope: -0.8909709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.3397091 + inSlope: -5.158201 + outSlope: -5.158201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.15612042 + inSlope: -5.468398 + outSlope: -5.468398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.024850579 + inSlope: -4.307767 + outSlope: -4.307767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.13106395 + inSlope: -1.1387391 + outSlope: -1.1387391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.100766584 + inSlope: 2.5628476 + outSlope: 2.5628476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.039792445 + inSlope: 4.391638 + outSlope: 4.391638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.19200929 + inSlope: 3.3931339 + outSlope: 3.3931339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.26600143 + inSlope: 0.7416997 + outSlope: 0.7416997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.24145584 + inSlope: -1.6174607 + outSlope: -1.6174607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.15817077 + inSlope: -2.689477 + outSlope: -2.689477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.06215736 + inSlope: -2.8804 + outSlope: -2.8804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.008890364 + inSlope: -0.21167545 + outSlope: -0.21167545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.015946213 + inSlope: -0.6489923 + outSlope: -0.6489923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.052156523 + inSlope: -1.3266997 + outSlope: -1.3266997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.10439288 + inSlope: -1.4132111 + outSlope: -1.4132111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.1463706 + inSlope: -0.7781005 + outSlope: -0.7781005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.15626624 + inSlope: 0.11547905 + outSlope: 0.11547905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.138672 + inSlope: 0.56065786 + outSlope: 0.56065786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.11888905 + inSlope: 0.4131352 + outSlope: 0.4131352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.10880035 + inSlope: 0.091777824 + outSlope: 0.091777824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.096644685 + inSlope: 0.32765436 + outSlope: 0.32765436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.08316749 + inSlope: 0.28875095 + outSlope: 0.28875095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.07739461 + inSlope: -0.25164354 + outSlope: -0.25164354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.09994373 + inSlope: -1.2299271 + outSlope: -1.2299271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.15938969 + inSlope: -2.0835142 + outSlope: -2.0835142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.23884468 + inSlope: -2.1086793 + outSlope: -2.1086793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.29996842 + inSlope: -1.1211139 + outSlope: -1.1211139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.31358564 + inSlope: 0.2659722 + outSlope: 0.2659722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.22985856 + inSlope: 1.5717824 + outSlope: 1.5717824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.17745142 + inSlope: 1.5636554 + outSlope: 1.5636554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.12561488 + inSlope: 1.6721787 + outSlope: 1.6721787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.065972835 + inSlope: 1.7892599 + outSlope: 1.7892599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5104584 + inSlope: -0.35840032 + outSlope: -0.35840032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.5440185 + inSlope: -0.86803603 + outSlope: -0.86803603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.65760624 + inSlope: 0.5586094 + outSlope: 0.5586094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.52819735 + inSlope: 0.9338863 + outSlope: 0.9338863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.50318336 + inSlope: 0.10725883 + outSlope: 0.10725883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.48035997 + inSlope: 0.8720975 + outSlope: 0.8720975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.40991297 + inSlope: 0.6509756 + outSlope: 0.6509756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.4057511 + inSlope: -0.48002717 + outSlope: -0.48002717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.43087506 + inSlope: -0.84172904 + outSlope: -0.84172904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.46186638 + inSlope: -0.3933911 + outSlope: -0.3933911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.45710117 + inSlope: 1.018257 + outSlope: 1.018257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.39398253 + inSlope: 2.3471222 + outSlope: 2.3471222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3006264 + inSlope: 2.5710578 + outSlope: 2.5710578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.22257869 + inSlope: 2.3414292 + outSlope: 2.3414292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11033314 + inSlope: -0.8493941 + outSlope: -0.8493941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.08202 + inSlope: -1.8248826 + outSlope: -1.8248826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0113257095 + inSlope: -2.9965806 + outSlope: -2.9965806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.11775207 + inSlope: -3.841301 + outSlope: -3.841301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.44644445 + inSlope: -5.5661926 + outSlope: -5.5661926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.9363355 + inSlope: -2.769356 + outSlope: -2.769356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.96985775 + inSlope: 2.0617971 + outSlope: 2.0617971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.6874921 + inSlope: 5.755231 + outSlope: 5.755231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.4741822 + inSlope: 7.381562 + outSlope: 7.381562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.19538796 + inSlope: 8.905778 + outSlope: 8.905778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.11953602 + inSlope: 8.13785 + outSlope: 8.13785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.34713528 + inSlope: 4.2948737 + outSlope: 4.2948737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.40586117 + inSlope: -1.5746102 + outSlope: -1.5746102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.24216145 + inSlope: -6.8107786 + outSlope: -6.8107786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.04819083 + inSlope: -6.7662625 + outSlope: -6.7662625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.20892279 + inSlope: -4.091628 + outSlope: -4.091628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.39132127 + inSlope: -1.7429204 + outSlope: -1.7429204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.43716064 + inSlope: -1.3751799 + outSlope: -1.3751799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.23271169 + inSlope: -0.18602459 + outSlope: -0.18602459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.22651087 + inSlope: -0.26150396 + outSlope: -0.26150396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.21527809 + inSlope: 0.22082198 + outSlope: 0.22082198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.29008472 + inSlope: 1.5307376 + outSlope: 1.5307376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.3787999 + inSlope: 0.5174717 + outSlope: 0.5174717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.37777963 + inSlope: -0.13981955 + outSlope: -0.13981955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.36947858 + inSlope: -0.39177063 + outSlope: -0.39177063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.3516616 + inSlope: -1.2778616 + outSlope: -1.2778616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2842878 + inSlope: -1.8382304 + outSlope: -1.8382304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.22911291 + inSlope: -1.142407 + outSlope: -1.142407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.20812733 + inSlope: -0.1900188 + outSlope: -0.1900188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.21644497 + inSlope: 0.27367586 + outSlope: 0.27367586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.22637239 + inSlope: 0.02315697 + outSlope: 0.02315697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.21798877 + inSlope: -0.10191626 + outSlope: -0.10191626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.21957798 + inSlope: -0.6307495 + outSlope: -0.6307495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.17593877 + inSlope: -1.4815775 + outSlope: -1.4815775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.120806165 + inSlope: -1.22196 + outSlope: -1.22196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.09447481 + inSlope: -0.5273026 + outSlope: -0.5273026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08565264 + inSlope: 1.1113815 + outSlope: 1.1113815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.16856699 + inSlope: 3.0158176 + outSlope: 3.0158176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.2867071 + inSlope: 2.5251503 + outSlope: 2.5251503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.33691028 + inSlope: 1.506094 + outSlope: 1.506094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.036001343 + inSlope: -0.36423513 + outSlope: -0.36423513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.023860171 + inSlope: -0.26835203 + outSlope: -0.26835203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.018111207 + inSlope: 0.55484813 + outSlope: 0.55484813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.060850054 + inSlope: 1.1305767 + outSlope: 1.1305767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.09348299 + inSlope: 0.322753 + outSlope: 0.322753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.08236692 + inSlope: -0.84744084 + outSlope: -0.84744084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.03698692 + inSlope: -1.2454741 + outSlope: -1.2454741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.00066470425 + inSlope: -0.81206965 + outSlope: -0.81206965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.017151052 + inSlope: -0.71062243 + outSlope: -0.71062243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.04803953 + inSlope: -1.3503654 + outSlope: -1.3503654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.10717541 + inSlope: -1.4502182 + outSlope: -1.4502182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.14472073 + inSlope: -0.5667439 + outSlope: -0.5667439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.14495833 + inSlope: 0.32940122 + outSlope: 0.32940122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.12276065 + inSlope: 1.0203729 + outSlope: 1.0203729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07693347 + inSlope: 1.4794791 + outSlope: 1.4794791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.024128767 + inSlope: 0.11320263 + outSlope: 0.11320263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.06938672 + inSlope: -0.3044418 + outSlope: -0.3044418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.044424903 + inSlope: 2.1358542 + outSlope: 2.1358542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.073003456 + inSlope: 2.5418751 + outSlope: 2.5418751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.12503336 + inSlope: 1.8527157 + outSlope: 1.8527157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.19651781 + inSlope: 2.5580845 + outSlope: 2.5580845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.29557234 + inSlope: 2.3009632 + outSlope: 2.3009632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.3499154 + inSlope: 0.4904805 + outSlope: 0.4904805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.32827097 + inSlope: -0.64933187 + outSlope: -0.64933187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5801942 + inSlope: -0.0742793 + outSlope: -0.0742793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5777182 + inSlope: -0.63105756 + outSlope: -0.63105756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.44862023 + inSlope: -3.3921485 + outSlope: -3.3921485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.14681034 + inSlope: -5.061955 + outSlope: -5.061955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.025483295 + inSlope: -4.9358253 + outSlope: -4.9358253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.18224473 + inSlope: -4.1984725 + outSlope: -4.1984725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.30538145 + inSlope: -3.0341253 + outSlope: -3.0341253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.42255 + inSlope: -0.34048188 + outSlope: -0.34048188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.40721855 + inSlope: 1.5913267 + outSlope: 1.5913267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.31646147 + inSlope: 3.875556 + outSlope: 3.875556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.14884807 + inSlope: 6.5456796 + outSlope: 6.5456796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.119917125 + inSlope: 9.627388 + outSlope: 9.627388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.4929774 + inSlope: 9.217915 + outSlope: 9.217915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.8045841 + inSlope: -1.0655749 + outSlope: -1.0655749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.6634065 + inSlope: -5.6907644 + outSlope: -5.6907644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.42519975 + inSlope: -6.802058 + outSlope: -6.802058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.20993596 + inSlope: -6.1787124 + outSlope: -6.1787124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0132856285 + inSlope: -5.872427 + outSlope: -5.872427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.18155913 + inSlope: -5.515672 + outSlope: -5.515672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.35442582 + inSlope: -5.185996 + outSlope: -5.185996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13092582 + inSlope: 0.33102235 + outSlope: 0.33102235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.11989174 + inSlope: 0.38634157 + outSlope: 0.38634157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.10516971 + inSlope: 0.039751247 + outSlope: 0.039751247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.11724166 + inSlope: -0.27139115 + outSlope: -0.27139115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.12326246 + inSlope: 0.14760855 + outSlope: 0.14760855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.10740109 + inSlope: 0.5582485 + outSlope: 0.5582485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.08604588 + inSlope: 0.4814346 + outSlope: 0.4814346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.07530544 + inSlope: 0.22690451 + outSlope: 0.22690451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.07411575 + inSlope: -0.186685 + outSlope: -0.186685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.08336458 + inSlope: -0.33797455 + outSlope: -0.33797455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.09664739 + inSlope: -0.5166805 + outSlope: -0.5166805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.117809966 + inSlope: -0.699011 + outSlope: -0.699011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.14324814 + inSlope: -0.62834215 + outSlope: -0.62834215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.15969944 + inSlope: 0.62018937 + outSlope: 0.62018937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.10190224 + inSlope: 1.2072564 + outSlope: 1.2072564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.07921571 + inSlope: -1.4757077 + outSlope: -1.4757077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.20028283 + inSlope: -2.7444844 + outSlope: -2.7444844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.26218137 + inSlope: -0.28814375 + outSlope: -0.28814375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.21949232 + inSlope: 2.4102643 + outSlope: 2.4102643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.101497166 + inSlope: 2.8967314 + outSlope: 2.8967314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.026376948 + inSlope: 1.6876075 + outSlope: 1.6876075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.011010035 + inSlope: 1.1845708 + outSlope: 1.1845708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.05259444 + inSlope: 1.247531 + outSlope: 1.247531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10993774 + inSlope: 0.13703853 + outSlope: 0.13703853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.110197954 + inSlope: -0.42193377 + outSlope: -0.42193377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.13349871 + inSlope: -0.9533877 + outSlope: -0.9533877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.17375714 + inSlope: -1.2637163 + outSlope: -1.2637163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.24423854 + inSlope: -0.24837662 + outSlope: -0.24837662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.23430492 + inSlope: 0.61532384 + outSlope: 0.61532384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.20321696 + inSlope: 0.83267665 + outSlope: 0.83267665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.17879315 + inSlope: 0.17407672 + outSlope: 0.17407672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.19161184 + inSlope: -1.3378406 + outSlope: -1.3378406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.2679825 + inSlope: -2.417273 + outSlope: -2.417273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.35276344 + inSlope: -1.7670543 + outSlope: -1.7670543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.3857862 + inSlope: 0.173745 + outSlope: 0.173745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.34118044 + inSlope: 9.103804 + outSlope: 9.103804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.2211335 + inSlope: 14.026062 + outSlope: 14.026062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.59389013 + inSlope: 7.8412933 + outSlope: 7.8412933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.7438868 + inSlope: 2.7059155 + outSlope: 2.7059155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7742846 + inSlope: -2.8807762 + outSlope: -2.8807762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5518349 + inSlope: -6.9257126 + outSlope: -6.9257126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.31257048 + inSlope: -5.495672 + outSlope: -5.495672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.18545686 + inSlope: -3.1221938 + outSlope: -3.1221938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1044242 + inSlope: -2.0271544 + outSlope: -2.0271544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.050313257 + inSlope: -1.623327 + outSlope: -1.623327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.24524832 + inSlope: -0.0016522406 + outSlope: -0.0016522406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.24530339 + inSlope: -0.003679767 + outSlope: -0.003679767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.24549364 + inSlope: 0.7779565 + outSlope: 0.7779565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.19343962 + inSlope: 1.6135281 + outSlope: 1.6135281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.13792509 + inSlope: 1.0258974 + outSlope: 1.0258974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.12504646 + inSlope: -0.23210208 + outSlope: -0.23210208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.15339857 + inSlope: -0.86232734 + outSlope: -0.86232734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.257454 + inSlope: -1.436615 + outSlope: -1.436615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.31160918 + inSlope: -1.5340288 + outSlope: -1.5340288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.35972258 + inSlope: -0.79404026 + outSlope: -0.79404026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.3645452 + inSlope: 0.47678602 + outSlope: 0.47678602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.32793686 + inSlope: 0.9191623 + outSlope: 0.9191623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.30326772 + inSlope: -1.6639574 + outSlope: -1.6639574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.4388672 + inSlope: -2.5442772 + outSlope: -2.5442772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.4728861 + inSlope: -2.913058 + outSlope: -2.913058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.63307124 + inSlope: -6.277705 + outSlope: -6.277705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.8913997 + inSlope: -2.9158812 + outSlope: -2.9158812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.82746303 + inSlope: 4.2014985 + outSlope: 4.2014985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.61129993 + inSlope: 5.156482 + outSlope: 5.156482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.48369765 + inSlope: 3.246765 + outSlope: 3.246765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3948489 + inSlope: 0.7818236 + outSlope: 0.7818236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.4315762 + inSlope: -1.1018175 + outSlope: -1.1018175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04634305 + inSlope: -0.039064135 + outSlope: -0.039064135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.04764519 + inSlope: 0.1685181 + outSlope: 0.1685181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.03510851 + inSlope: 0.3235982 + outSlope: 0.3235982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.026071973 + inSlope: 0.2865408 + outSlope: 0.2865408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.016005788 + inSlope: 0.26381806 + outSlope: 0.26381806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.008484104 + inSlope: 0.17631859 + outSlope: 0.17631859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.004251214 + inSlope: 0.093497686 + outSlope: 0.093497686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.002250923 + inSlope: 0.052051198 + outSlope: 0.052051198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0007811346 + inSlope: -0.010252977 + outSlope: -0.010252977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0029344547 + inSlope: -0.04452602 + outSlope: -0.04452602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0037495354 + inSlope: 0.010155133 + outSlope: 0.010155133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0022574458 + inSlope: 0.11069972 + outSlope: 0.11069972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0036304512 + inSlope: -0.55091155 + outSlope: -0.55091155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.038984876 + inSlope: -2.3788562 + outSlope: -2.3788562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.15495996 + inSlope: -2.7500708 + outSlope: -2.7500708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.22232287 + inSlope: 2.5298076 + outSlope: 2.5298076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.013694129 + inSlope: 3.9933965 + outSlope: 3.9933965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.043903794 + inSlope: 0.24289887 + outSlope: 0.24289887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.029887427 + inSlope: -0.34682927 + outSlope: -0.34682927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.020781849 + inSlope: -0.12696229 + outSlope: -0.12696229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.021423265 + inSlope: -0.22093014 + outSlope: -0.22093014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0060531595 + inSlope: -0.4902376 + outSlope: -0.4902376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0112592345 + inSlope: -0.4121071 + outSlope: -0.4121071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.021420639 + inSlope: -0.30484188 + outSlope: -0.30484188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5517318 + inSlope: -0.8937531 + outSlope: -0.8937531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.52194005 + inSlope: -2.2670271 + outSlope: -2.2670271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.40059668 + inSlope: -5.0927186 + outSlope: -5.0927186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.18242544 + inSlope: -6.87954 + outSlope: -6.87954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.05803933 + inSlope: -6.3097134 + outSlope: -6.3097134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.23822206 + inSlope: -5.4327097 + outSlope: -5.4327097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.58167034 + inSlope: -4.225285 + outSlope: -4.225285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.70190567 + inSlope: -2.3820424 + outSlope: -2.3820424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.74047315 + inSlope: 0.24529696 + outSlope: 0.24529696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.5619606 + inSlope: 4.459207 + outSlope: 4.459207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.38827193 + inSlope: 5.8730087 + outSlope: 5.8730087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.17042653 + inSlope: 8.254035 + outSlope: 8.254035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.16199702 + inSlope: 13.096969 + outSlope: 13.096969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.70270413 + inSlope: 12.523991 + outSlope: 12.523991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9969294 + inSlope: 2.647069 + outSlope: 2.647069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.87917554 + inSlope: -6.488946 + outSlope: -6.488946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.5643332 + inSlope: -11.110613 + outSlope: -11.110613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.13846798 + inSlope: -10.2390585 + outSlope: -10.2390585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.11827076 + inSlope: -5.8230896 + outSlope: -5.8230896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.24973783 + inSlope: -3.2961493 + outSlope: -3.2961493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.39968497 + inSlope: -1.8501254 + outSlope: -1.8501254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27606842 + inSlope: -0.15703706 + outSlope: -0.15703706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.27083385 + inSlope: 0.09312316 + outSlope: 0.09312316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.30138987 + inSlope: 0.5973078 + outSlope: 0.5973078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.32209715 + inSlope: 0.32661217 + outSlope: 0.32661217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.32316402 + inSlope: -0.13792583 + outSlope: -0.13792583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.3129021 + inSlope: 0.21355131 + outSlope: 0.21355131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.33740076 + inSlope: 0.52248317 + outSlope: 0.52248317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3477343 + inSlope: -0.3788339 + outSlope: -0.3788339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.31214517 + inSlope: -0.51539767 + outSlope: -0.51539767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.31337446 + inSlope: 0.8599471 + outSlope: 0.8599471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.36947498 + inSlope: 1.8115534 + outSlope: 1.8115534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.43414474 + inSlope: 0.9529934 + outSlope: 0.9529934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.43300793 + inSlope: -0.6030885 + outSlope: -0.6030885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.39393884 + inSlope: -1.7882473 + outSlope: -1.7882473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.3137915 + inSlope: -2.3387523 + outSlope: -2.3387523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.23802203 + inSlope: 0.0031363964 + outSlope: 0.0031363964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.3140006 + inSlope: 3.4482841 + outSlope: 3.4482841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.46790755 + inSlope: 4.0264196 + outSlope: 4.0264196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5824285 + inSlope: 3.0014203 + outSlope: 3.0014203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.66800225 + inSlope: 1.6424739 + outSlope: 1.6424739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.65868974 + inSlope: -1.4222016 + outSlope: -1.4222016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.59711325 + inSlope: -1.847293 + outSlope: -1.847293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1629682 + inSlope: -0.18682255 + outSlope: -0.18682255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.15674078 + inSlope: -0.37021366 + outSlope: -0.37021366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.13828729 + inSlope: -0.5312965 + outSlope: -0.5312965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.121321015 + inSlope: -0.46973702 + outSlope: -0.46973702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.10697149 + inSlope: -0.8127971 + outSlope: -0.8127971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.067134544 + inSlope: -1.6632713 + outSlope: -1.6632713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.003913289 + inSlope: -2.5764072 + outSlope: -2.5764072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.104625955 + inSlope: -3.7610497 + outSlope: -3.7610497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.2546499 + inSlope: -4.3466825 + outSlope: -4.3466825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.39440477 + inSlope: -2.802879 + outSlope: -2.802879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.4415085 + inSlope: 0.4291218 + outSlope: 0.4291218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.36579666 + inSlope: 3.714555 + outSlope: 3.714555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.19387136 + inSlope: 5.1513605 + outSlope: 5.1513605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0223725 + inSlope: 4.4088035 + outSlope: 4.4088035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.10004885 + inSlope: 3.3143992 + outSlope: 3.3143992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.19858734 + inSlope: 0.9958509 + outSlope: 0.9958509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.16643879 + inSlope: -1.3823755 + outSlope: -1.3823755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.1064289 + inSlope: 1.5389531 + outSlope: 1.5389531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.26903546 + inSlope: 3.339856 + outSlope: 3.339856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.32908586 + inSlope: 1.4196764 + outSlope: 1.4196764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.36368057 + inSlope: 0.88628566 + outSlope: 0.88628566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.38817155 + inSlope: 0.024515659 + outSlope: 0.024515659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.365315 + inSlope: -1.5452495 + outSlope: -1.5452495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.28515488 + inSlope: -2.4048014 + outSlope: -2.4048014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.58390915 + inSlope: -0.08124768 + outSlope: -0.08124768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5812009 + inSlope: -0.84738487 + outSlope: -0.84738487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.42627394 + inSlope: -3.6091235 + outSlope: -3.6091235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.12496421 + inSlope: -5.0490065 + outSlope: -5.0490065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.049791895 + inSlope: -5.2751436 + outSlope: -5.2751436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.22671211 + inSlope: -4.8279934 + outSlope: -4.8279934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.3716581 + inSlope: -3.5301032 + outSlope: -3.5301032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.50747794 + inSlope: -0.5576559 + outSlope: -0.5576559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.4200111 + inSlope: 3.6787744 + outSlope: 3.6787744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.2539777 + inSlope: 6.663626 + outSlope: 6.663626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.024230622 + inSlope: 11.23257 + outSlope: 11.23257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.49485984 + inSlope: 13.010263 + outSlope: 13.010263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.8915814 + inSlope: 5.638803 + outSlope: 5.638803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.87078035 + inSlope: -4.045384 + outSlope: -4.045384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.62188935 + inSlope: -7.8729296 + outSlope: -7.8729296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.3459184 + inSlope: -7.4974504 + outSlope: -7.4974504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.122059315 + inSlope: -6.285107 + outSlope: -6.285107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.073088706 + inSlope: -5.8418856 + outSlope: -5.8418856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2673997 + inSlope: -5.6687303 + outSlope: -5.6687303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.45100403 + inSlope: -5.5081253 + outSlope: -5.5081253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1089416 + inSlope: 0.16642435 + outSlope: 0.16642435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.11448908 + inSlope: 0.04449002 + outSlope: 0.04449002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1119076 + inSlope: -0.39491165 + outSlope: -0.39491165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.08816163 + inSlope: -0.8919294 + outSlope: -0.8919294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.052445643 + inSlope: -0.83604187 + outSlope: -0.83604187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.03242551 + inSlope: -0.3830956 + outSlope: -0.3830956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.026905935 + inSlope: -0.36443114 + outSlope: -0.36443114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0081301015 + inSlope: -0.7516196 + outSlope: -0.7516196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.023202032 + inSlope: -0.813874 + outSlope: -0.813874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.04612816 + inSlope: -0.5887938 + outSlope: -0.5887938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06245495 + inSlope: -0.23339847 + outSlope: -0.23339847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.061688058 + inSlope: 0.43995646 + outSlope: 0.43995646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.033124495 + inSlope: 1.2078931 + outSlope: 1.2078931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.018838167 + inSlope: 1.5055152 + outSlope: 1.5055152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.06724318 + inSlope: 1.0135429 + outSlope: 1.0135429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.08640768 + inSlope: 0.087038666 + outSlope: 0.087038666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.07304573 + inSlope: -0.024595946 + outSlope: -0.024595946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.084767945 + inSlope: -1.9762741 + outSlope: -1.9762741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.058705743 + inSlope: -2.5737803 + outSlope: -2.5737803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.08681731 + inSlope: -0.38736117 + outSlope: -0.38736117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.08452985 + inSlope: -0.14107262 + outSlope: -0.14107262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.09622216 + inSlope: -0.48329654 + outSlope: -0.48329654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.11674961 + inSlope: -0.8889829 + outSlope: -0.8889829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.1554877 + inSlope: -1.1621418 + outSlope: -1.1621418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.41288257 + inSlope: 0.22888629 + outSlope: 0.22888629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.40525302 + inSlope: -0.069722675 + outSlope: -0.069722675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.44983715 + inSlope: -1.1848323 + outSlope: -1.1848323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.54358315 + inSlope: -1.4494727 + outSlope: -1.4494727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.6438208 + inSlope: -1.3539524 + outSlope: -1.3539524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.72546375 + inSlope: -1.7885213 + outSlope: -1.7885213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.8026493 + inSlope: -2.7226677 + outSlope: -2.7226677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.9838677 + inSlope: -1.0773135 + outSlope: -1.0773135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.9787959 + inSlope: 1.81879 + outSlope: 1.81879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.86261505 + inSlope: 8.019943 + outSlope: 8.019943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.44413343 + inSlope: 17.56869 + outSlope: 17.56869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.30863112 + inSlope: 13.425123 + outSlope: 13.425123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.45087555 + inSlope: 0.71211886 + outSlope: 0.71211886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.35610592 + inSlope: -3.7281752 + outSlope: -3.7281752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.2023305 + inSlope: -2.7419076 + outSlope: -2.7419076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.17331198 + inSlope: 0.8197759 + outSlope: 0.8197759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.25698233 + inSlope: 3.2930331 + outSlope: 3.2930331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.39284748 + inSlope: 3.6158385 + outSlope: 3.6158385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4980382 + inSlope: 3.155719 + outSlope: 3.155719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5707955 + inSlope: -0.20612954 + outSlope: -0.20612954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.57766646 + inSlope: -0.33017632 + outSlope: -0.33017632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.59280723 + inSlope: -0.2663335 + outSlope: -0.2663335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.595422 + inSlope: 0.04614742 + outSlope: 0.04614742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.62179554 + inSlope: -1.9008094 + outSlope: -1.9008094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.8409263 + inSlope: -3.9886873 + outSlope: -3.9886873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.9823639 + inSlope: -4.1788244 + outSlope: -4.1788244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -1.1729901 + inSlope: 0.4640419 + outSlope: 0.4640419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -1.0885785 + inSlope: 3.940464 + outSlope: 3.940464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.9102923 + inSlope: 4.8325815 + outSlope: 4.8325815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.76640624 + inSlope: 3.8394654 + outSlope: 3.8394654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.654328 + inSlope: 4.504258 + outSlope: 4.504258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.46612254 + inSlope: 1.203766 + outSlope: 1.203766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.5740772 + inSlope: -2.461718 + outSlope: -2.461718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.6302372 + inSlope: 2.5676532 + outSlope: 2.5676532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.40290058 + inSlope: 6.6518154 + outSlope: 6.6518154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.18678291 + inSlope: 5.04386 + outSlope: 5.04386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.06664317 + inSlope: 2.207153 + outSlope: 2.207153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.03963946 + inSlope: -1.6292384 + outSlope: -1.6292384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.1752589 + inSlope: -5.291651 + outSlope: -5.291651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.39241624 + inSlope: -6.5147147 + outSlope: -6.5147147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03572528 + inSlope: 0.1371662 + outSlope: 0.1371662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.031153074 + inSlope: 0.10485246 + outSlope: 0.10485246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.028735116 + inSlope: 0.053511463 + outSlope: 0.053511463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.027585642 + inSlope: 0.11805263 + outSlope: 0.11805263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.020864941 + inSlope: 0.16925791 + outSlope: 0.16925791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.016301783 + inSlope: -0.0015532449 + outSlope: -0.0015532449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.020968493 + inSlope: -0.30311242 + outSlope: -0.30311242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.03650928 + inSlope: -0.1908717 + outSlope: -0.1908717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.033693273 + inSlope: 0.08968967 + outSlope: 0.08968967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.030529968 + inSlope: 0.027212242 + outSlope: 0.027212242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.031879123 + inSlope: -0.15004139 + outSlope: -0.15004139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.040532727 + inSlope: -0.8648057 + outSlope: -0.8648057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.089532875 + inSlope: -1.2887516 + outSlope: -1.2887516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.12644954 + inSlope: -1.0381092 + outSlope: -1.0381092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.15874015 + inSlope: -1.4124506 + outSlope: -1.4124506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.22061285 + inSlope: -3.158637 + outSlope: -3.158637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.369316 + inSlope: -0.30008626 + outSlope: -0.30008626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.24061862 + inSlope: 2.0638332 + outSlope: 2.0638332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.23172702 + inSlope: 0.54052794 + outSlope: 0.54052794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.2045834 + inSlope: 1.2043302 + outSlope: 1.2043302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.08975826 + inSlope: 1.7618004 + outSlope: 1.7618004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.033985015 + inSlope: 1.5453672 + outSlope: 1.5453672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.013266211 + inSlope: 1.4175355 + outSlope: 1.4175355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000011433175 + inSlope: 0.000042652042 + outSlope: 0.000042652042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00001001144 + inSlope: 0.000046091285 + outSlope: 0.000046091285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.000008360423 + inSlope: 0.000023070219 + outSlope: 0.000023070219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.000008473426 + inSlope: 0.000011959506 + outSlope: 0.000011959506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0000075631224 + inSlope: 0.00003327217 + outSlope: 0.00003327217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0000062552813 + inSlope: 0.000025606536 + outSlope: 0.000025606536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00000585602 + inSlope: 0.000005988918 + outSlope: 0.000005988918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.00000585602 + inSlope: 0.000023051885 + outSlope: 0.000023051885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0000043192276 + inSlope: -1.4551915e-11 + outSlope: -1.4551915e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.000005856021 + inSlope: -0.0000025613172 + outSlope: -0.0000025613172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000004489982 + inSlope: 0.000020490583 + outSlope: 0.000020490583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.000004489982 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.000004489982 + inSlope: 0.00004526918 + outSlope: 0.00004526918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.000001472037 + inSlope: 0.000046964222 + outSlope: 0.000046964222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0000013590341 + inSlope: 0.000020471409 + outSlope: 0.000020471409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.00000010727754 + inSlope: 0.00002257874 + outSlope: 0.00002257874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000001462143 + inSlope: 0.0000020885755 + outSlope: 0.0000020885755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.000000031960926 + inSlope: 0.000014931467 + outSlope: 0.000014931467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000011416442 + inSlope: 0.0000063999933 + outSlope: 0.0000063999933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000004586254 + inSlope: 0.00000043315958 + outSlope: 0.00000043315958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000011705202 + inSlope: 0.000020493904 + outSlope: 0.000020493904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0000018248855 + inSlope: 0.0000098154715 + outSlope: 0.0000098154715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000018248855 + inSlope: 0.0000038386415 + outSlope: 0.0000038386415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000020807952 + inSlope: 0.000007677283 + outSlope: 0.000007677283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000012566484 + inSlope: 0.00006307253 + outSlope: 0.00006307253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000008457696 + inSlope: -0.0000055095006 + outSlope: -0.0000055095006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000016239484 + inSlope: -0.000013500301 + outSlope: -0.000013500301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.00000005425039 + inSlope: 0.00002738745 + outSlope: 0.00002738745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000020188182 + inSlope: 0.000035311547 + outSlope: 0.000035311547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000022998527 + inSlope: 0.000007523893 + outSlope: 0.000007523893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0000007034739 + inSlope: -0.000023945671 + outSlope: -0.000023945671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0000007034739 + inSlope: 0.0000107255355 + outSlope: 0.0000107255355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000014185096 + inSlope: -0.000034070905 + outSlope: -0.000034070905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0000015679198 + inSlope: -0.000013687062 + outSlope: -0.000013687062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00000050603876 + inSlope: 0.00003110938 + outSlope: 0.00003110938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00000050603876 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.00000050603876 + inSlope: 0.000007510538 + outSlope: 0.000007510538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000010067413 + inSlope: 0.0000009471537 + outSlope: 0.0000009471537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.00000056918236 + inSlope: 0.00000084044086 + outSlope: 0.00000084044086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0000010627703 + inSlope: -0.000030295585 + outSlope: -0.000030295585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0000014505258 + inSlope: -0.00001712882 + outSlope: -0.00001712882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.00000007915193 + inSlope: 0.0000623255 + outSlope: 0.0000623255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000027045057 + inSlope: 0.00001747574 + outSlope: 0.00001747574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000010858934 + inSlope: -0.000058136655 + outSlope: -0.000058136655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000011712707 + inSlope: 0.00000080035534 + outSlope: 0.00000080035534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0000011392542 + inSlope: 0.000034657845 + outSlope: 0.000034657845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000011392542 + inSlope: -0.0000031482878 + outSlope: -0.0000031482878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000009293682 + inSlope: -0.0000062965755 + outSlope: -0.0000062965755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6068481 + inSlope: 0.4518449 + outSlope: 0.4518449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.6600711 + inSlope: -2.6577125 + outSlope: -2.6577125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.77536786 + inSlope: -3.4552212 + outSlope: -3.4552212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.8904192 + inSlope: -1.9586468 + outSlope: -1.9586468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.90594435 + inSlope: 1.6025448 + outSlope: 1.6025448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.6067524 + inSlope: 5.0663342 + outSlope: 5.0663342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.44582728 + inSlope: 5.1886606 + outSlope: 5.1886606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.26084173 + inSlope: 6.761215 + outSlope: 6.761215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0049206167 + inSlope: 7.2624865 + outSlope: 7.2624865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.22332428 + inSlope: 6.796753 + outSlope: 6.796753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6767209 + inSlope: 5.686882 + outSlope: 5.686882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.8792209 + inSlope: -0.9963641 + outSlope: -0.9963641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7707387 + inSlope: -5.6046295 + outSlope: -5.6046295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5055788 + inSlope: -8.568565 + outSlope: -8.568565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.19950111 + inSlope: -6.5831857 + outSlope: -6.5831857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.06669996 + inSlope: -1.3984735 + outSlope: -1.3984735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10626938 + inSlope: 2.137662 + outSlope: 2.137662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.2092108 + inSlope: 3.08824 + outSlope: 3.08824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.42996433 + inSlope: 0.17367391 + outSlope: 0.17367391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.4543878 + inSlope: 0.447198 + outSlope: 0.447198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.49368078 + inSlope: 0.3213671 + outSlope: 0.3213671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.4952439 + inSlope: -0.04082547 + outSlope: -0.04082547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.44615567 + inSlope: -2.3519864 + outSlope: -2.3519864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.33416 + inSlope: -3.2124147 + outSlope: -3.2124147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2319947 + inSlope: -2.4768872 + outSlope: -2.4768872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.1690342 + inSlope: -1.9517057 + outSlope: -1.9517057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.101880945 + inSlope: -2.303 + outSlope: -2.303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.015500814 + inSlope: -2.4837456 + outSlope: -2.4837456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.06370208 + inSlope: -1.3649241 + outSlope: -1.3649241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0754941 + inSlope: 2.4027572 + outSlope: 2.4027572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0964819 + inSlope: 7.8610325 + outSlope: 7.8610325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.44857517 + inSlope: 10.0308 + outSlope: 10.0308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.76520187 + inSlope: 7.04161 + outSlope: 7.04161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.91801566 + inSlope: 2.3658986 + outSlope: 2.3658986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.8362529 + inSlope: -2.8761206 + outSlope: -2.8761206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7311872 + inSlope: -3.026865 + outSlope: -3.026865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.63446194 + inSlope: -2.901756 + outSlope: -2.901756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2257481 + inSlope: 0.31351534 + outSlope: 0.31351534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.23619862 + inSlope: 0.7412639 + outSlope: 0.7412639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.2751657 + inSlope: 1.5352209 + outSlope: 1.5352209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.3385467 + inSlope: 1.8980808 + outSlope: 1.8980808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.4546574 + inSlope: 1.0694284 + outSlope: 1.0694284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.47299966 + inSlope: -0.7210615 + outSlope: -0.7210615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.40658665 + inSlope: -3.3985705 + outSlope: -3.3985705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.24642831 + inSlope: -5.496519 + outSlope: -5.496519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.04015209 + inSlope: -6.0429306 + outSlope: -6.0429306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.15643369 + inSlope: -2.912023 + outSlope: -2.912023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.15398277 + inSlope: 1.3716187 + outSlope: 1.3716187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.06499236 + inSlope: 0.8476626 + outSlope: 0.8476626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.097471856 + inSlope: -2.9017136 + outSlope: -2.9017136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.25843993 + inSlope: -4.8073854 + outSlope: -4.8073854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.41796404 + inSlope: -1.8153481 + outSlope: -1.8153481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.37946296 + inSlope: 4.644441 + outSlope: 4.644441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.10833438 + inSlope: 9.154354 + outSlope: 9.154354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.2308272 + inSlope: 8.65761 + outSlope: 8.65761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.46883953 + inSlope: 4.9426847 + outSlope: 4.9426847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.5603396 + inSlope: 1.3765931 + outSlope: 1.3765931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.48912174 + inSlope: -2.8960996 + outSlope: -2.8960996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.367539 + inSlope: -3.6474793 + outSlope: -3.6474793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27332923 + inSlope: -0.87672335 + outSlope: -0.87672335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.24410512 + inSlope: -1.493963 + outSlope: -1.493963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.17373168 + inSlope: -2.6671722 + outSlope: -2.6671722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.06629361 + inSlope: -3.568552 + outSlope: -3.568552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.06417179 + inSlope: -3.8474703 + outSlope: -3.8474703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.19020438 + inSlope: -2.8356593 + outSlope: -2.8356593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.25321576 + inSlope: 0.35255563 + outSlope: 0.35255563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.1667007 + inSlope: 5.437566 + outSlope: 5.437566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.109288625 + inSlope: 9.308423 + outSlope: 9.308423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.45386082 + inSlope: 7.9125357 + outSlope: 7.9125357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.636791 + inSlope: 2.0499697 + outSlope: 2.0499697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.59052545 + inSlope: -2.7078676 + outSlope: -2.7078676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.45626637 + inSlope: -3.0173368 + outSlope: -3.0173368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.38936955 + inSlope: -0.37149173 + outSlope: -0.37149173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.43150026 + inSlope: 1.6956186 + outSlope: 1.6956186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5024107 + inSlope: 1.0590776 + outSlope: 1.0590776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.50210536 + inSlope: -1.6419231 + outSlope: -1.6419231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.39294907 + inSlope: -4.1841373 + outSlope: -4.1841373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.22316292 + inSlope: -4.550247 + outSlope: -4.550247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.08959929 + inSlope: -2.4577024 + outSlope: -2.4577024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.059316017 + inSlope: 0.7372371 + outSlope: 0.7372371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.13874853 + inSlope: 3.3949318 + outSlope: 3.3949318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.28564474 + inSlope: 4.4529743 + outSlope: 4.4529743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.43561348 + inSlope: 4.4990587 + outSlope: 4.4990587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.26128232 + inSlope: 0.008794963 + outSlope: 0.008794963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3155468 + inSlope: -1.2366791 + outSlope: -1.2366791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.36690593 + inSlope: -0.97533166 + outSlope: -0.97533166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.38056892 + inSlope: 1.6163516 + outSlope: 1.6163516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.25914916 + inSlope: 5.012118 + outSlope: 5.012118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.046427764 + inSlope: 5.6377635 + outSlope: 5.6377635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.1167017 + inSlope: 3.5697303 + outSlope: 3.5697303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.19155425 + inSlope: -0.20796418 + outSlope: -0.20796418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10283742 + inSlope: -3.016699 + outSlope: -3.016699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.009559112 + inSlope: -1.6940428 + outSlope: -1.6940428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.01009886 + inSlope: 1.0305994 + outSlope: 1.0305994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.05914751 + inSlope: 1.9622215 + outSlope: 1.9622215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.12071585 + inSlope: 0.94245213 + outSlope: 0.94245213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.1219776 + inSlope: -0.07481446 + outSlope: -0.07481446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.115728214 + inSlope: 1.0675704 + outSlope: 1.0675704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.19314888 + inSlope: 2.828951 + outSlope: 2.828951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.30432495 + inSlope: 2.3216822 + outSlope: 2.3216822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.34792775 + inSlope: 0.3715172 + outSlope: 0.3715172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.3290927 + inSlope: -0.57136554 + outSlope: -0.57136554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.30983672 + inSlope: -0.403066 + outSlope: -0.403066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.30222166 + inSlope: -0.2284516 + outSlope: -0.2284516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12686017 + inSlope: -0.460512 + outSlope: -0.460512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.11150977 + inSlope: -0.46228516 + outSlope: -0.46228516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.09604116 + inSlope: 0.0380224 + outSlope: 0.0380224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.1140446 + inSlope: 1.4497868 + outSlope: 1.4497868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.1926936 + inSlope: 2.930881 + outSlope: 2.930881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.30943665 + inSlope: 3.030218 + outSlope: 3.030218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.39470816 + inSlope: 1.2742697 + outSlope: 1.2742697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.394388 + inSlope: -1.2450993 + outSlope: -1.2450993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.31170154 + inSlope: -2.8826036 + outSlope: -2.8826036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.20221442 + inSlope: -2.7950537 + outSlope: -2.7950537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.12536463 + inSlope: -1.6490276 + outSlope: -1.6490276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.095424145 + inSlope: 0.50959176 + outSlope: 0.50959176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.12625204 + inSlope: 0.86499524 + outSlope: 0.86499524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.15309049 + inSlope: 0.3921828 + outSlope: 0.3921828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.15239756 + inSlope: 0.2554203 + outSlope: 0.2554203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.17011853 + inSlope: 1.8927335 + outSlope: 1.8927335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.2785799 + inSlope: 4.1428766 + outSlope: 4.1428766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.44631022 + inSlope: 4.2115097 + outSlope: 4.2115097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.55934715 + inSlope: 1.79522 + outSlope: 1.79522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.42190555 + inSlope: -2.0987556 + outSlope: -2.0987556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.36295098 + inSlope: -1.7686355 + outSlope: -1.7686355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1132285 + inSlope: 0.040516775 + outSlope: 0.040516775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.11457906 + inSlope: -0.08874669 + outSlope: -0.08874669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.10731205 + inSlope: -0.9053876 + outSlope: -0.9053876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.05421988 + inSlope: -2.5726988 + outSlope: -2.5726988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0642012 + inSlope: -3.9639091 + outSlope: -3.9639091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.21004072 + inSlope: -3.831148 + outSlope: -3.831148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.3196111 + inSlope: -2.5925946 + outSlope: -2.5925946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.3828804 + inSlope: -1.6337483 + outSlope: -1.6337483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.42852765 + inSlope: -0.95403326 + outSlope: -0.95403326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.4464826 + inSlope: 0.65655696 + outSlope: 0.65655696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.3847572 + inSlope: 3.1179328 + outSlope: 3.1179328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.23862043 + inSlope: 4.3951564 + outSlope: 4.3951564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09174666 + inSlope: 3.0672295 + outSlope: 3.0672295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.03413834 + inSlope: 0.21638423 + outSlope: 0.21638423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.077321045 + inSlope: -1.9741746 + outSlope: -1.9741746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1657499 + inSlope: -2.3632193 + outSlope: -2.3632193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.23486896 + inSlope: -1.2742245 + outSlope: -1.2742245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.25069827 + inSlope: 0.04052639 + outSlope: 0.04052639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.23216723 + inSlope: 0.4642319 + outSlope: 0.4642319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.27093777 + inSlope: -2.0459075 + outSlope: -2.0459075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.36402673 + inSlope: -2.7056913 + outSlope: -2.7056913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.4513172 + inSlope: -2.6187117 + outSlope: -2.6187117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000066884485 + inSlope: 0.00005484911 + outSlope: 0.00005484911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000001159459 + inSlope: 0.000013611184 + outSlope: 0.000013611184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000023856745 + inSlope: -0.000010245282 + outSlope: -0.000010245282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.00000047644014 + inSlope: 0.00002064356 + outSlope: 0.00002064356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000016148048 + inSlope: 0.000008652377 + outSlope: 0.000008652377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0000010532652 + inSlope: -0.00000021011238 + outSlope: -0.00000021011238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0000016007975 + inSlope: 0.00000842309 + outSlope: 0.00000842309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0000016148048 + inSlope: -0.000004740359 + outSlope: -0.000004740359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000012847736 + inSlope: 0.000001726723 + outSlope: 0.000001726723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0000017299196 + inSlope: 0.000013698734 + outSlope: 0.000013698734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000021980225 + inSlope: 0.0000014970256 + outSlope: 0.0000014970256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0000018297213 + inSlope: -0.0000055245173 + outSlope: -0.0000055245173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0000018297213 + inSlope: 0.0000055245173 + outSlope: 0.0000055245173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000021980225 + inSlope: 0.00001897437 + outSlope: 0.00001897437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0000030946792 + inSlope: 0.000015195756 + outSlope: 0.000015195756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0000032110727 + inSlope: 0.0000017459041 + outSlope: 0.0000017459041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0000032110727 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000032110727 + inSlope: 0.0000055878695 + outSlope: 0.0000055878695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000035835976 + inSlope: 0.000010321572 + outSlope: 0.000010321572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000038991775 + inSlope: 0.0000005794732 + outSlope: 0.0000005794732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0000036222286 + inSlope: -0.0000047336953 + outSlope: -0.0000047336953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000035835976 + inSlope: 0.0000060210145 + outSlope: 0.0000060210145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.00000402363 + inSlope: 0.000013200961 + outSlope: 0.000013200961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000023443201 + inSlope: -0.000036392103 + outSlope: -0.000036392103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000113125 + inSlope: -0.0000049625633 + outSlope: -0.0000049625633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0000020134826 + inSlope: -0.0000002668021 + outSlope: -0.0000002668021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0000011134631 + inSlope: -0.0000126731975 + outSlope: -0.0000126731975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000011686026 + inSlope: -0.000010031841 + outSlope: -0.000010031841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00000044467373 + inSlope: 0.000018462839 + outSlope: 0.000018462839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0000023994594 + inSlope: 0.000010858919 + outSlope: 0.000010858919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0000011686026 + inSlope: -0.000034311026 + outSlope: -0.000034311026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0000001120578 + inSlope: -0.0000018943119 + outSlope: -0.0000018943119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0000010423151 + inSlope: -0.0000029882049 + outSlope: -0.0000029882049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00000008715591 + inSlope: 0.000018809706 + outSlope: 0.000018809706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0000022962954 + inSlope: 0.00003575177 + outSlope: 0.00003575177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0000022962954 + inSlope: -0.00003575177 + outSlope: -0.00003575177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.00000008715591 + inSlope: -0.000016168338 + outSlope: -0.000016168338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0000012184062 + inSlope: 0.000016461818 + outSlope: 0.000016461818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0000010102987 + inSlope: -0.0000031216157 + outSlope: -0.0000031216157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000010102987 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0000010102987 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000010102987 + inSlope: -0.0000031482894 + outSlope: -0.0000031482894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000008004125 + inSlope: -0.000006349943 + outSlope: -0.000006349943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000005869692 + inSlope: -0.000013820451 + outSlope: -0.000013820451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.00000012095123 + inSlope: 0.0000032016706 + outSlope: 0.0000032016706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000008004125 + inSlope: 0.000034577824 + outSlope: 0.000034577824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000021842372 + inSlope: 0.000041514708 + outSlope: 0.000041514708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.31701264 + inSlope: 0.83362246 + outSlope: 0.83362246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.28922522 + inSlope: 1.0219414 + outSlope: 1.0219414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.2488832 + inSlope: 1.2243669 + outSlope: 1.2243669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.20760076 + inSlope: 0.6885963 + outSlope: 0.6885963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.20297678 + inSlope: -1.0562752 + outSlope: -1.0562752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.2780191 + inSlope: -3.6220245 + outSlope: -3.6220245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.44444513 + inSlope: -5.1622543 + outSlope: -5.1622543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.62216944 + inSlope: -3.7858515 + outSlope: -3.7858515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.6968352 + inSlope: -0.525477 + outSlope: -0.525477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.65720123 + inSlope: 1.9964185 + outSlope: 1.9964185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.40329883 + inSlope: 6.1968365 + outSlope: 6.1968365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.15061803 + inSlope: 7.755871 + outSlope: 7.755871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.113759436 + inSlope: 7.443968 + outSlope: 7.443968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.34564644 + inSlope: 6.529751 + outSlope: 6.529751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.54907596 + inSlope: 5.0941706 + outSlope: 5.0941706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.75497115 + inSlope: 1.3527393 + outSlope: 1.3527393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7754404 + inSlope: -0.6429772 + outSlope: -0.6429772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.71210593 + inSlope: -2.7192583 + outSlope: -2.7192583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.49051747 + inSlope: -2.0816827 + outSlope: -2.0816827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.45537767 + inSlope: -0.127855 + outSlope: -0.127855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.48199385 + inSlope: 0.7984849 + outSlope: 0.7984849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49722564 + inSlope: -0.39832142 + outSlope: -0.39832142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.47384506 + inSlope: 0.34880477 + outSlope: 0.34880477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.5370044 + inSlope: 1.0360577 + outSlope: 1.0360577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5607517 + inSlope: -0.78693247 + outSlope: -0.78693247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.44084445 + inSlope: -2.282611 + outSlope: -2.282611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.27426097 + inSlope: -2.5837069 + outSlope: -2.5837069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.18940203 + inSlope: -2.2574089 + outSlope: -2.2574089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.12376698 + inSlope: -2.2945864 + outSlope: -2.2945864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.036429614 + inSlope: -3.0942702 + outSlope: -3.0942702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.08251758 + inSlope: -2.7576435 + outSlope: -2.7576435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.14741322 + inSlope: 0.026107728 + outSlope: 0.026107728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.080777064 + inSlope: 4.193722 + outSlope: 4.193722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.13216808 + inSlope: 6.8390923 + outSlope: 6.8390923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.37516242 + inSlope: 5.6919823 + outSlope: 5.6919823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.51163363 + inSlope: 2.8047352 + outSlope: 2.8047352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.57229763 + inSlope: 0.14264809 + outSlope: 0.14264809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.57165456 + inSlope: -0.019292219 + outSlope: -0.019292219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12816058 + inSlope: -0.53028613 + outSlope: -0.53028613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.14583679 + inSlope: -0.09090857 + outSlope: -0.09090857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.13422115 + inSlope: 0.6123155 + outSlope: 0.6123155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.10501575 + inSlope: 0.78394747 + outSlope: 0.78394747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08195798 + inSlope: 0.6451653 + outSlope: 0.6451653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.06200473 + inSlope: 1.1389928 + outSlope: 1.1389928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.006025111 + inSlope: 2.2686307 + outSlope: 2.2686307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.08923734 + inSlope: 2.6515837 + outSlope: 2.6515837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.17074713 + inSlope: 1.5430762 + outSlope: 1.5430762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.19210908 + inSlope: 0.01150915 + outSlope: 0.01150915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1715144 + inSlope: -0.59998137 + outSlope: -0.59998137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.15211032 + inSlope: -0.6476891 + outSlope: -0.6476891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.12833512 + inSlope: -1.6558305 + outSlope: -1.6558305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.04172161 + inSlope: -4.0099115 + outSlope: -4.0099115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.13899231 + inSlope: -5.077242 + outSlope: -5.077242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.29676104 + inSlope: -2.9656947 + outSlope: -2.9656947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.33670518 + inSlope: 1.3167099 + outSlope: 1.3167099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.2089803 + inSlope: 6.4277205 + outSlope: 6.4277205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.091809355 + inSlope: 9.667215 + outSlope: 9.667215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.43550074 + inSlope: 8.500784 + outSlope: 8.500784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6585283 + inSlope: 3.9496584 + outSlope: 3.9496584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.6988111 + inSlope: -1.1290135 + outSlope: -1.1290135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.5832609 + inSlope: -4.2527013 + outSlope: -4.2527013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.41529766 + inSlope: -5.0388927 + outSlope: -5.0388927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3092444 + inSlope: -0.31390604 + outSlope: -0.31390604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.29878086 + inSlope: -1.0010575 + outSlope: -1.0010575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.24250722 + inSlope: -2.4794455 + outSlope: -2.4794455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.13348447 + inSlope: -3.659646 + outSlope: -3.659646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0014691855 + inSlope: -3.697745 + outSlope: -3.697745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.113031864 + inSlope: -2.4750342 + outSlope: -2.4750342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.16647148 + inSlope: -0.47174013 + outSlope: -0.47174013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.14448123 + inSlope: 1.900557 + outSlope: 1.900557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.03976769 + inSlope: 3.9133024 + outSlope: 3.9133024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.116405584 + inSlope: 4.1208262 + outSlope: 4.1208262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.23495406 + inSlope: 1.9493299 + outSlope: 1.9493299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.2463609 + inSlope: -0.71329206 + outSlope: -0.71329206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.1874012 + inSlope: -1.2148957 + outSlope: -1.2148957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.1653678 + inSlope: 0.9876699 + outSlope: 0.9876699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.25324586 + inSlope: 3.9280214 + outSlope: 3.9280214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.42723572 + inSlope: 4.9788685 + outSlope: 4.9788685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5851704 + inSlope: 3.1572006 + outSlope: 3.1572006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.63771594 + inSlope: -0.09741217 + outSlope: -0.09741217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.57867634 + inSlope: -2.484457 + outSlope: -2.484457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.47208545 + inSlope: -2.7826867 + outSlope: -2.7826867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3931639 + inSlope: -1.3794575 + outSlope: -1.3794575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.38012168 + inSlope: 0.41935295 + outSlope: 0.41935295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.4211207 + inSlope: 1.356735 + outSlope: 1.356735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.47057068 + inSlope: 1.4834982 + outSlope: 1.4834982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00844384 + inSlope: 0.14949872 + outSlope: 0.14949872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.013427131 + inSlope: -0.47076195 + outSlope: -0.47076195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.022940295 + inSlope: -1.816462 + outSlope: -1.816462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.10767035 + inSlope: -2.9407887 + outSlope: -2.9407887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.21899289 + inSlope: -3.4212604 + outSlope: -3.4212604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.33575436 + inSlope: -2.9841633 + outSlope: -2.9841633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.41793713 + inSlope: -0.7539979 + outSlope: -0.7539979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.38602093 + inSlope: 3.193166 + outSlope: 3.193166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.20505941 + inSlope: 5.9292316 + outSlope: 5.9292316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0092611695 + inSlope: 4.4310846 + outSlope: 4.4310846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.090346195 + inSlope: 0.62138754 + outSlope: 0.62138754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.050687004 + inSlope: -0.991717 + outSlope: -0.991717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.02423171 + inSlope: 0.4784284 + outSlope: 0.4784284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.082582206 + inSlope: 2.4570374 + outSlope: 2.4570374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.18803419 + inSlope: 2.9089036 + outSlope: 2.9089036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.27650902 + inSlope: 2.1590803 + outSlope: 2.1590803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.33197284 + inSlope: 1.3026199 + outSlope: 1.3026199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.36335042 + inSlope: 1.1361911 + outSlope: 1.1361911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.4077189 + inSlope: 1.6518083 + outSlope: 1.6518083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.473471 + inSlope: 0.96577454 + outSlope: 0.96577454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.47210392 + inSlope: -1.4902948 + outSlope: -1.4902948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.3741179 + inSlope: -3.3811488 + outSlope: -3.3811488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.24669404 + inSlope: -3.373107 + outSlope: -3.373107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.14924414 + inSlope: -2.9234946 + outSlope: -2.9234946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22163858 + inSlope: 0.2743636 + outSlope: 0.2743636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.21249312 + inSlope: 0.29558367 + outSlope: 0.29558367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.201933 + inSlope: 0.88007534 + outSlope: 0.88007534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.15382142 + inSlope: 2.571461 + outSlope: 2.571461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.030502265 + inSlope: 4.5197554 + outSlope: 4.5197554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.14749557 + inSlope: 5.062667 + outSlope: 5.062667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.3070089 + inSlope: 3.715335 + outSlope: 3.715335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3770318 + inSlope: -2.5825112 + outSlope: -2.5825112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.22301722 + inSlope: -5.8297815 + outSlope: -5.8297815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.011620273 + inSlope: -6.3336782 + outSlope: -6.3336782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.19922797 + inSlope: -3.692077 + outSlope: -3.692077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.25775877 + inSlope: 0.15121305 + outSlope: 0.15121305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.18914716 + inSlope: 2.5878572 + outSlope: 2.5878572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.08523496 + inSlope: 1.6417872 + outSlope: 1.6417872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.079694696 + inSlope: -1.5892427 + outSlope: -1.5892427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.19118458 + inSlope: -2.7525635 + outSlope: -2.7525635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.2631991 + inSlope: 0.2873814 + outSlope: 0.2873814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.17202596 + inSlope: 4.3126163 + outSlope: 4.3126163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.024308743 + inSlope: 5.466771 + outSlope: 5.466771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.19242543 + inSlope: 3.8116314 + outSlope: 3.8116314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.32274196 + inSlope: 1.3526175 + outSlope: 1.3526175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.3685919 + inSlope: 1.3754973 + outSlope: 1.3754973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.28056702 + inSlope: 0.45711097 + outSlope: 0.45711097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.26533 + inSlope: 0.8688381 + outSlope: 0.8688381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.22264448 + inSlope: 0.84691054 + outSlope: 0.84691054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.20886928 + inSlope: -0.75414205 + outSlope: -0.75414205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.2729206 + inSlope: -2.6247168 + outSlope: -2.6247168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.3838504 + inSlope: -2.9718523 + outSlope: -2.9718523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.47104412 + inSlope: -1.8886752 + outSlope: -1.8886752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.5097621 + inSlope: -0.55317795 + outSlope: -0.55317795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.50792265 + inSlope: 0.9119703 + outSlope: 0.9119703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.4489641 + inSlope: 2.4951448 + outSlope: 2.4951448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.34157968 + inSlope: 2.6854968 + outSlope: 2.6854968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.269931 + inSlope: 0.9753113 + outSlope: 0.9753113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.27655894 + inSlope: -1.4074646 + outSlope: -1.4074646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.36376196 + inSlope: -3.2900877 + outSlope: -3.2900877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.4958981 + inSlope: -3.5162373 + outSlope: -3.5162373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.5981777 + inSlope: -1.8761103 + outSlope: -1.8761103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.62097204 + inSlope: 0.025850236 + outSlope: 0.025850236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.5964543 + inSlope: 0.40973666 + outSlope: 0.40973666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.59365624 + inSlope: 0.021658001 + outSlope: 0.021658001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.59501046 + inSlope: 0.9773121 + outSlope: 0.9773121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.52850217 + inSlope: 2.933386 + outSlope: 2.933386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.39945135 + inSlope: 3.8318317 + outSlope: 3.8318317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.27304673 + inSlope: 3.2641943 + outSlope: 3.2641943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.18183844 + inSlope: 2.7362466 + outSlope: 2.7362466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3385047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.3385047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2338543 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.2338543 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5763953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5763953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152153 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.47152153 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12715933 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12715933 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060639 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8060639 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3384516 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.3384516 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9042923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.9042923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12709314 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12709314 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.7666667 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Start.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Start.anim.meta new file mode 100644 index 0000000..f433f01 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Start.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 191d29dc89c35314e8a01ec91e553bd1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Jump_Start.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Backward.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Backward.anim new file mode 100644 index 0000000..9517f6b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Backward.anim @@ -0,0 +1,13521 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Run_Backward + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00072667503 + inSlope: 0.016881302 + outSlope: 0.016881302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0012893851 + inSlope: 0.027758684 + outSlope: 0.027758684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.002577254 + inSlope: 0.043814037 + outSlope: 0.043814037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.004210321 + inSlope: 0.035711516 + outSlope: 0.035711516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0046054595 + inSlope: -0.027962059 + outSlope: -0.027962059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.003093884 + inSlope: -0.047890343 + outSlope: -0.047890343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0014127695 + inSlope: -0.045310088 + outSlope: -0.045310088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.000073211675 + inSlope: -0.041526657 + outSlope: -0.041526657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0013556742 + inSlope: -0.040000863 + outSlope: -0.040000863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0025935126 + inSlope: -0.045252092 + outSlope: -0.045252092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0043724803 + inSlope: -0.051842164 + outSlope: -0.051842164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0072355266 + inSlope: -0.022210633 + outSlope: -0.022210633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.007530367 + inSlope: 0.0037349556 + outSlope: 0.0037349556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.00698653 + inSlope: 0.019227093 + outSlope: 0.019227093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0062485607 + inSlope: 0.020763312 + outSlope: 0.020763312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.005602308 + inSlope: 0.030035205 + outSlope: 0.030035205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0042462144 + inSlope: 0.045683093 + outSlope: 0.045683093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0025567682 + inSlope: 0.042521995 + outSlope: 0.042521995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0014114145 + inSlope: 0.02590045 + outSlope: 0.02590045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.00083007227 + inSlope: 0.016331188 + outSlope: 0.016331188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00032266858 + inSlope: 0.02348536 + outSlope: 0.02348536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0007356189 + inSlope: 0.031748597 + outSlope: 0.031748597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9106058 + inSlope: -0.022541283 + outSlope: -0.022541283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.95044583 + inSlope: 0.35204077 + outSlope: 0.35204077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9340796 + inSlope: -0.379369 + outSlope: -0.379369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.92428505 + inSlope: 0.27207166 + outSlope: 0.27207166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9304904 + inSlope: -0.266169 + outSlope: -0.266169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9112789 + inSlope: -0.08299463 + outSlope: -0.08299463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.044452805 + inSlope: -2.2261906 + outSlope: -2.2261906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.17950502 + inSlope: -2.2697973 + outSlope: -2.2697973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.71594083 + inSlope: -2.368042 + outSlope: -2.368042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.7104429 + inSlope: -2.3241358 + outSlope: -2.3241358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.070977926 + inSlope: -0.35359827 + outSlope: -0.35359827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.059191316 + inSlope: -0.36874023 + outSlope: -0.36874023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.029409885 + inSlope: -0.08223296 + outSlope: -0.08223296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.036922753 + inSlope: 0.26298788 + outSlope: 0.26298788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.058791816 + inSlope: 0.28559092 + outSlope: 0.28559092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.07038136 + inSlope: -0.058559954 + outSlope: -0.058559954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.053541213 + inSlope: -0.032906953 + outSlope: -0.032906953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.05805084 + inSlope: 0.15332226 + outSlope: 0.15332226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.075063944 + inSlope: 0.089928694 + outSlope: 0.089928694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.07530704 + inSlope: -0.08388047 + outSlope: -0.08388047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.071138546 + inSlope: -0.12505476 + outSlope: -0.12505476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.018134799 + inSlope: 0.7971955 + outSlope: 0.7971955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.044707984 + inSlope: 0.81577015 + outSlope: 0.81577015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.12316471 + inSlope: 0.65122414 + outSlope: 0.65122414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15767702 + inSlope: -0.45803887 + outSlope: -0.45803887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.01997231 + inSlope: -0.9070735 + outSlope: -0.9070735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.00923904 + inSlope: -0.8200531 + outSlope: -0.8200531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.034697942 + inSlope: -0.65956175 + outSlope: -0.65956175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.062364213 + inSlope: -0.072677635 + outSlope: -0.072677635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.042247448 + inSlope: 0.6414044 + outSlope: 0.6414044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0152947325 + inSlope: 0.90519667 + outSlope: 0.90519667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.018098997 + inSlope: 1.001811 + outSlope: 1.001811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.02054831 + inSlope: 0.06990557 + outSlope: 0.06990557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.018218124 + inSlope: 0.031646237 + outSlope: 0.031646237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.01843856 + inSlope: -0.040209018 + outSlope: -0.040209018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.027985485 + inSlope: -0.09206508 + outSlope: -0.09206508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.032929 + inSlope: -0.0014087709 + outSlope: -0.0014087709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.03506712 + inSlope: -0.026190609 + outSlope: -0.026190609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.035448074 + inSlope: 0.017240107 + outSlope: 0.017240107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.033637654 + inSlope: 0.028578378 + outSlope: 0.028578378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.028159522 + inSlope: 0.09785561 + outSlope: 0.09785561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.020566802 + inSlope: 0.114484854 + outSlope: 0.114484854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9971015 + inSlope: -0.0006830692 + outSlope: -0.0006830692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9908422 + inSlope: 0.10158862 + outSlope: 0.10158862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9970903 + inSlope: 0.010356895 + outSlope: 0.010356895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10883821 + inSlope: 0.45743218 + outSlope: 0.45743218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09359047 + inSlope: 0.69340026 + outSlope: 0.69340026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.022304311 + inSlope: 1.2542415 + outSlope: 1.2542415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.021004576 + inSlope: 1.2020228 + outSlope: 1.2020228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.083645046 + inSlope: 0.526778 + outSlope: 0.526778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08758007 + inSlope: -0.35582566 + outSlope: -0.35582566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.06922737 + inSlope: -0.6741283 + outSlope: -0.6741283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.042638186 + inSlope: -0.7970518 + outSlope: -0.7970518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.016090583 + inSlope: -0.7128131 + outSlope: -0.7128131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0048827007 + inSlope: -0.5169677 + outSlope: -0.5169677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.018373948 + inSlope: -0.28722477 + outSlope: -0.28722477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.024031017 + inSlope: -0.062562235 + outSlope: -0.062562235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.022544764 + inSlope: 0.0762825 + outSlope: 0.0762825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.018945515 + inSlope: 0.04789843 + outSlope: 0.04789843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.019351533 + inSlope: -0.010105332 + outSlope: -0.010105332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.019619204 + inSlope: -0.13414797 + outSlope: -0.13414797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.028294738 + inSlope: -0.47008044 + outSlope: -0.47008044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.050957885 + inSlope: -0.7559308 + outSlope: -0.7559308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.07869013 + inSlope: -0.7647004 + outSlope: -0.7647004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10193791 + inSlope: -0.45552942 + outSlope: -0.45552942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.10905874 + inSlope: -0.21362458 + outSlope: -0.21362458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7661457 + inSlope: 1.0285681 + outSlope: 1.0285681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.6909742 + inSlope: 0.019584551 + outSlope: 0.019584551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.7816946 + inSlope: -1.4911041 + outSlope: -1.4911041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.92453146 + inSlope: -0.0803125 + outSlope: -0.0803125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.90284044 + inSlope: 0.16261072 + outSlope: 0.16261072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.8896477 + inSlope: 0.48226222 + outSlope: 0.48226222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.8100436 + inSlope: 0.55580115 + outSlope: 0.55580115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.76725125 + inSlope: 0.70857286 + outSlope: 0.70857286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.02448652 + inSlope: -3.6598332 + outSlope: -3.6598332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.14648096 + inSlope: -3.3579378 + outSlope: -3.3579378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3718329 + inSlope: -1.0084431 + outSlope: -1.0084431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.37864724 + inSlope: 0.7793207 + outSlope: 0.7793207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.21433114 + inSlope: 1.9761409 + outSlope: 1.9761409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.024160355 + inSlope: 1.7940528 + outSlope: 1.7940528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.03437808 + inSlope: 1.8050196 + outSlope: 1.8050196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.09617428 + inSlope: 1.9429498 + outSlope: 1.9429498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.2357173 + inSlope: 2.126217 + outSlope: 2.126217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.3466249 + inSlope: 0.49487135 + outSlope: 0.49487135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.3386473 + inSlope: -0.968326 + outSlope: -0.968326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.19351187 + inSlope: -2.956088 + outSlope: -2.956088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08499737 + inSlope: -3.2527778 + outSlope: -3.2527778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.02333997 + inSlope: -3.2501175 + outSlope: -3.2501175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.28612667 + inSlope: -2.3276634 + outSlope: -2.3276634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.20853789 + inSlope: -1.8351092 + outSlope: -1.8351092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.16378605 + inSlope: -0.7300829 + outSlope: -0.7300829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.18415646 + inSlope: 0.9330067 + outSlope: 0.9330067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.22206613 + inSlope: 1.0940266 + outSlope: 1.0940266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.28804678 + inSlope: 0.98590505 + outSlope: 0.98590505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.3657617 + inSlope: 1.3583808 + outSlope: 1.3583808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.49892232 + inSlope: 0.87867063 + outSlope: 0.87867063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5344701 + inSlope: 0.4475447 + outSlope: 0.4475447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5706434 + inSlope: 0.2809721 + outSlope: 0.2809721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.54095536 + inSlope: -1.388933 + outSlope: -1.388933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.39029562 + inSlope: -2.9049172 + outSlope: -2.9049172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.28687617 + inSlope: -3.102581 + outSlope: -3.102581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.53126144 + inSlope: -0.5696726 + outSlope: -0.5696726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.55025053 + inSlope: -0.22815406 + outSlope: -0.22815406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.46900812 + inSlope: 0.66742516 + outSlope: 0.66742516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.44392273 + inSlope: -0.06655232 + outSlope: -0.06655232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.44607487 + inSlope: 0.27327734 + outSlope: 0.27327734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.41364738 + inSlope: 0.012174383 + outSlope: 0.012174383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.44301778 + inSlope: -0.5484463 + outSlope: -0.5484463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.48756924 + inSlope: -0.08966702 + outSlope: -0.08966702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.4919387 + inSlope: -0.3185109 + outSlope: -0.3185109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.53159916 + inSlope: -0.2992252 + outSlope: -0.2992252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.41951153 + inSlope: -2.2990034 + outSlope: -2.2990034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.34287807 + inSlope: -2.3140469 + outSlope: -2.3140469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.2652417 + inSlope: -2.0299149 + outSlope: -2.0299149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.17741594 + inSlope: -0.4109236 + outSlope: -0.4109236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.20649815 + inSlope: 1.0583464 + outSlope: 1.0583464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.30797857 + inSlope: 1.9189692 + outSlope: 1.9189692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.37864318 + inSlope: 2.693381 + outSlope: 2.693381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.4875373 + inSlope: 2.2499056 + outSlope: 2.2499056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.5286369 + inSlope: 0.9418937 + outSlope: 0.9418937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5503302 + inSlope: 0.1590422 + outSlope: 0.1590422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.5392397 + inSlope: -0.43605036 + outSlope: -0.43605036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.4996875 + inSlope: -0.66366565 + outSlope: -0.66366565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.47701582 + inSlope: -0.36864918 + outSlope: -0.36864918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.48380446 + inSlope: 0.026044628 + outSlope: 0.026044628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.45426127 + inSlope: -0.8082272 + outSlope: -0.8082272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.41992614 + inSlope: -1.0300533 + outSlope: -1.0300533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6781617 + inSlope: -1.6222643 + outSlope: -1.6222643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.8302882 + inSlope: -0.3824446 + outSlope: -0.3824446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.7783916 + inSlope: 1.2929304 + outSlope: 1.2929304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.72510713 + inSlope: 2.2790723 + outSlope: 2.2790723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.62645346 + inSlope: 2.2985191 + outSlope: 2.2985191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.57187253 + inSlope: 1.5006266 + outSlope: 1.5006266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.52641165 + inSlope: 0.94433904 + outSlope: 0.94433904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.49635172 + inSlope: 0.34984428 + outSlope: 0.34984428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.4783202 + inSlope: 0.39512482 + outSlope: 0.39512482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.45022336 + inSlope: -0.5567698 + outSlope: -0.5567698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6773232 + inSlope: -2.0905585 + outSlope: -2.0905585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.083852045 + inSlope: -0.1353123 + outSlope: -0.1353123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.065698914 + inSlope: -0.27728787 + outSlope: -0.27728787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.05495233 + inSlope: -0.4434473 + outSlope: -0.4434473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.036135763 + inSlope: -0.60953194 + outSlope: -0.60953194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.014316861 + inSlope: -0.40171796 + outSlope: -0.40171796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.009354559 + inSlope: 0.14764678 + outSlope: 0.14764678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.02415998 + inSlope: 0.73483413 + outSlope: 0.73483413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0583435 + inSlope: 1.1227849 + outSlope: 1.1227849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0990123 + inSlope: 1.137891 + outSlope: 1.137891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.1342029 + inSlope: 0.82790226 + outSlope: 0.82790226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.15807322 + inSlope: -0.06622419 + outSlope: -0.06622419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.11205465 + inSlope: -0.65068346 + outSlope: -0.65068346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.07219915 + inSlope: -0.3938938 + outSlope: -0.3938938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0636018 + inSlope: -0.10549372 + outSlope: -0.10549372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.072833374 + inSlope: 0.24170528 + outSlope: 0.24170528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08127991 + inSlope: 0.16464113 + outSlope: 0.16464113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.08380944 + inSlope: 0.07588589 + outSlope: 0.07588589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.91454667 + inSlope: 0.27264655 + outSlope: 0.27264655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.9125281 + inSlope: -0.29228568 + outSlope: -0.29228568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.92165583 + inSlope: 0.24207823 + outSlope: 0.24207823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.77082103 + inSlope: 1.218291 + outSlope: 1.218291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.68795836 + inSlope: -0.044247687 + outSlope: -0.044247687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.8413325 + inSlope: -1.5265303 + outSlope: -1.5265303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.9192411 + inSlope: -0.4954679 + outSlope: -0.4954679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.9157853 + inSlope: 0.056898545 + outSlope: 0.056898545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.048041254 + inSlope: 1.4082104 + outSlope: 1.4082104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.001100907 + inSlope: 1.421378 + outSlope: 1.421378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.046717286 + inSlope: 1.5117605 + outSlope: 1.5117605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.099683136 + inSlope: 1.7166979 + outSlope: 1.7166979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.16116382 + inSlope: 1.9502372 + outSlope: 1.9502372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.22969894 + inSlope: 1.9666027 + outSlope: 1.9666027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.2922707 + inSlope: 1.0726653 + outSlope: 1.0726653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.26143956 + inSlope: -1.8378627 + outSlope: -1.8378627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.07106716 + inSlope: -3.3686323 + outSlope: -3.3686323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.04588967 + inSlope: -3.4108493 + outSlope: -3.4108493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.25112408 + inSlope: -2.543875 + outSlope: -2.543875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.40869552 + inSlope: 0.4473567 + outSlope: 0.4473567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.32389915 + inSlope: 1.8777595 + outSlope: 1.8777595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.25288013 + inSlope: 2.1374588 + outSlope: 2.1374588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.11316925 + inSlope: 2.0087857 + outSlope: 2.0087857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.04748288 + inSlope: 1.9705896 + outSlope: 1.9705896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.56762487 + inSlope: -0.60283 + outSlope: -0.60283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.50853217 + inSlope: -0.6051868 + outSlope: -0.6051868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.48818535 + inSlope: -0.8228401 + outSlope: -0.8228401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.45367616 + inSlope: -0.94688404 + outSlope: -0.94688404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.39841846 + inSlope: -0.61155397 + outSlope: -0.61155397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.38428947 + inSlope: -0.13336256 + outSlope: -0.13336256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.3992112 + inSlope: -0.3644511 + outSlope: -0.3644511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.2617665 + inSlope: 0.0986149 + outSlope: 0.0986149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.27814838 + inSlope: 0.94533163 + outSlope: 0.94533163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.46407726 + inSlope: 2.2321196 + outSlope: 2.2321196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5384868 + inSlope: 1.5332141 + outSlope: 1.5332141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5674141 + inSlope: 0.033676 + outSlope: 0.033676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4798444 + inSlope: 0.2033606 + outSlope: 0.2033606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.4529864 + inSlope: 0.39600623 + outSlope: 0.39600623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.43799707 + inSlope: 0.24411009 + outSlope: 0.24411009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.43671238 + inSlope: 0.036208473 + outSlope: 0.036208473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.43558317 + inSlope: -0.22355992 + outSlope: -0.22355992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.63812405 + inSlope: -0.96088314 + outSlope: -0.96088314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.7034854 + inSlope: 0.39932358 + outSlope: 0.39932358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.6465445 + inSlope: 1.567834 + outSlope: 1.567834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.5800368 + inSlope: 1.843451 + outSlope: 1.843451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.4799251 + inSlope: 1.3116796 + outSlope: 1.3116796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5005478 + inSlope: 0.30087945 + outSlope: 0.30087945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.52684635 + inSlope: 0.32074928 + outSlope: 0.32074928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5390965 + inSlope: 0.5889747 + outSlope: 0.5889747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6036809 + inSlope: -0.10994911 + outSlope: -0.10994911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.53059566 + inSlope: -2.267869 + outSlope: -2.267869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.3178499 + inSlope: -3.470222 + outSlope: -3.470222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.20489171 + inSlope: -2.8664498 + outSlope: -2.8664498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.12675315 + inSlope: -1.6088219 + outSlope: -1.6088219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.09763692 + inSlope: -0.26185477 + outSlope: -0.26185477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.10929616 + inSlope: 0.697126 + outSlope: 0.697126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.144112 + inSlope: 1.1089783 + outSlope: 1.1089783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.2227404 + inSlope: 1.2401551 + outSlope: 1.2401551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.32293904 + inSlope: 1.917923 + outSlope: 1.917923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.39376664 + inSlope: 1.9174361 + outSlope: 1.9174361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5004611 + inSlope: 1.4907885 + outSlope: 1.4907885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.44385087 + inSlope: -0.6185102 + outSlope: -0.6185102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.50855803 + inSlope: -0.6242045 + outSlope: -0.6242045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.5319569 + inSlope: 0.04781123 + outSlope: 0.04781123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.52549374 + inSlope: -0.33766153 + outSlope: -0.33766153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.6396382 + inSlope: -0.5660844 + outSlope: -0.5660844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.6367033 + inSlope: 0.42381817 + outSlope: 0.42381817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.51217484 + inSlope: 1.3235929 + outSlope: 1.3235929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.46747985 + inSlope: 0.9423728 + outSlope: 0.9423728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.4441309 + inSlope: 0.15657203 + outSlope: 0.15657203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2172681 + inSlope: 0.28391495 + outSlope: 0.28391495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.20780426 + inSlope: 0.44593108 + outSlope: 0.44593108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.17005068 + inSlope: 0.29859287 + outSlope: 0.29859287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.16763316 + inSlope: -0.2163897 + outSlope: -0.2163897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.21137485 + inSlope: -0.9189278 + outSlope: -0.9189278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.3223466 + inSlope: -1.0343131 + outSlope: -1.0343131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.3646812 + inSlope: -0.04971844 + outSlope: -0.04971844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.33023268 + inSlope: 0.94232446 + outSlope: 0.94232446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.2588076 + inSlope: 0.74626935 + outSlope: 0.74626935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.24357878 + inSlope: 0.18704793 + outSlope: 0.18704793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.25485328 + inSlope: -0.21854487 + outSlope: -0.21854487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.25525832 + inSlope: 0.33757985 + outSlope: 0.33757985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.21729755 + inSlope: 0.64713246 + outSlope: 0.64713246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05034148 + inSlope: 0.656847 + outSlope: 0.656847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.07223638 + inSlope: 0.8073828 + outSlope: 0.8073828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.14664711 + inSlope: 1.4235086 + outSlope: 1.4235086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.29057366 + inSlope: 0.79748577 + outSlope: 0.79748577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.2887896 + inSlope: -0.92008334 + outSlope: -0.92008334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.24308713 + inSlope: -1.6904913 + outSlope: -1.6904913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10642484 + inSlope: -1.8514841 + outSlope: -1.8514841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.05265787 + inSlope: -1.2651048 + outSlope: -1.2651048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.022084476 + inSlope: -0.5544339 + outSlope: -0.5544339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.015695613 + inSlope: 0.1278021 + outSlope: 0.1278021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.030604603 + inSlope: 0.6626692 + outSlope: 0.6626692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.05987357 + inSlope: 0.91397095 + outSlope: 0.91397095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.09153605 + inSlope: 0.7452438 + outSlope: 0.7452438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.109556496 + inSlope: 0.21474992 + outSlope: 0.21474992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.10585269 + inSlope: -0.36257386 + outSlope: -0.36257386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08538492 + inSlope: -0.645864 + outSlope: -0.645864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.062795095 + inSlope: -0.553184 + outSlope: -0.553184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.048505984 + inSlope: -0.19261849 + outSlope: -0.19261849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.049953878 + inSlope: 0.043436773 + outSlope: 0.043436773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055073116 + inSlope: 2.158107 + outSlope: 2.158107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.12701002 + inSlope: 1.9922652 + outSlope: 1.9922652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.23715886 + inSlope: 1.2975078 + outSlope: 1.2975078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.2913579 + inSlope: 0.21530856 + outSlope: 0.21530856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.27393112 + inSlope: -0.5156319 + outSlope: -0.5156319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.18988293 + inSlope: -1.4570154 + outSlope: -1.4570154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.06494486 + inSlope: -2.030651 + outSlope: -2.030651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0032229158 + inSlope: -1.9692568 + outSlope: -1.9692568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1210622 + inSlope: -1.4803941 + outSlope: -1.4803941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.16503184 + inSlope: -1.1273127 + outSlope: -1.1273127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.19621643 + inSlope: -0.5818015 + outSlope: -0.5818015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.18553236 + inSlope: 0.89943063 + outSlope: 0.89943063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.1438566 + inSlope: 1.4650671 + outSlope: 1.4650671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.08786121 + inSlope: 1.8670726 + outSlope: 1.8670726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.019385116 + inSlope: 2.1449022 + outSlope: 2.1449022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.05513226 + inSlope: 2.2355194 + outSlope: 2.2355194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6165061 + inSlope: -2.3570893 + outSlope: -2.3570893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.7579468 + inSlope: -1.7207576 + outSlope: -1.7207576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.77692926 + inSlope: 2.2529476 + outSlope: 2.2529476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.49665445 + inSlope: 2.5735936 + outSlope: 2.5735936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.29152402 + inSlope: 0.5165398 + outSlope: 0.5165398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.3307888 + inSlope: -1.4305154 + outSlope: -1.4305154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.5386499 + inSlope: -2.3295474 + outSlope: -2.3295474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6164242 + inSlope: -2.3332267 + outSlope: -2.3332267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4836867 + inSlope: 0.22374271 + outSlope: 0.22374271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.4762286 + inSlope: 0.41264844 + outSlope: 0.41264844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.41014498 + inSlope: 0.5505239 + outSlope: 0.5505239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.38770095 + inSlope: -0.021394253 + outSlope: -0.021394253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.4229706 + inSlope: 0.42597952 + outSlope: 0.42597952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.33367768 + inSlope: 0.7644819 + outSlope: 0.7644819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.3075624 + inSlope: 0.06870311 + outSlope: 0.06870311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.30918252 + inSlope: -0.046269856 + outSlope: -0.046269856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.32197323 + inSlope: -0.6332371 + outSlope: -0.6332371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.43344268 + inSlope: -1.0654882 + outSlope: -1.0654882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.4838126 + inSlope: -0.5601002 + outSlope: -0.5601002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.46369448 + inSlope: 2.1052773 + outSlope: 2.1052773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.32055873 + inSlope: 2.0906038 + outSlope: 2.0906038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.20793617 + inSlope: 0.89662164 + outSlope: 0.89662164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.25843072 + inSlope: -1.8950455 + outSlope: -1.8950455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.33654076 + inSlope: -2.7412372 + outSlope: -2.7412372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.6424011 + inSlope: -2.2114701 + outSlope: -2.2114701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.7164485 + inSlope: 0.26110432 + outSlope: 0.26110432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.70317626 + inSlope: -0.22829692 + outSlope: -0.22829692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.7153444 + inSlope: 0.77867424 + outSlope: 0.77867424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.4642868 + inSlope: 2.3864112 + outSlope: 2.3864112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.41346753 + inSlope: -1.3723692 + outSlope: -1.3723692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3677219 + inSlope: -1.1227467 + outSlope: -1.1227467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.305225 + inSlope: -1.2777543 + outSlope: -1.2777543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.25343412 + inSlope: -1.7200098 + outSlope: -1.7200098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.1354046 + inSlope: -1.2917893 + outSlope: -1.2917893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.1044384 + inSlope: -0.493172 + outSlope: -0.493172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.10252647 + inSlope: 0.5154691 + outSlope: 0.5154691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.28169903 + inSlope: 2.3998058 + outSlope: 2.3998058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.508823 + inSlope: 1.7593887 + outSlope: 1.7593887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5700556 + inSlope: -0.039468676 + outSlope: -0.039468676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.5285989 + inSlope: -0.7535649 + outSlope: -0.7535649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.4446839 + inSlope: -0.8024212 + outSlope: -0.8024212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.41277674 + inSlope: -0.95721436 + outSlope: -0.95721436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20077464 + inSlope: 1.3402153 + outSlope: 1.3402153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.30998197 + inSlope: 0.4435014 + outSlope: 0.4435014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.31114697 + inSlope: -0.017302025 + outSlope: -0.017302025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.29937607 + inSlope: -0.50994253 + outSlope: -0.50994253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.1896833 + inSlope: -0.7811056 + outSlope: -0.7811056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.14403133 + inSlope: -0.60914004 + outSlope: -0.60914004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.11163128 + inSlope: -0.28633255 + outSlope: -0.28633255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.10626766 + inSlope: 0.11310963 + outSlope: 0.11310963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.15802385 + inSlope: 1.070176 + outSlope: 1.070176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.20045707 + inSlope: 1.2729955 + outSlope: 1.2729955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.079334565 + inSlope: -0.7651514 + outSlope: -0.7651514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.053829517 + inSlope: -0.25030565 + outSlope: -0.25030565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.06264752 + inSlope: 0.62436926 + outSlope: 0.62436926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.13925318 + inSlope: 1.2676809 + outSlope: 1.2676809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.2076348 + inSlope: 0.44879934 + outSlope: 0.44879934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.20988616 + inSlope: -0.26454854 + outSlope: -0.26454854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1441105 + inSlope: -0.2425837 + outSlope: -0.2425837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.14587776 + inSlope: 0.37004644 + outSlope: 0.37004644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.2888692 + inSlope: 1.13918 + outSlope: 1.13918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.3384567 + inSlope: 0.11133416 + outSlope: 0.11133416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.20501333 + inSlope: -1.8128352 + outSlope: -1.8128352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1402849 + inSlope: -1.8884315 + outSlope: -1.8884315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.07911791 + inSlope: -1.835008 + outSlope: -1.835008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.117036365 + inSlope: -1.6508785 + outSlope: -1.6508785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.062007077 + inSlope: -1.6791495 + outSlope: -1.6791495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0050930604 + inSlope: -1.6875491 + outSlope: -1.6875491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.050496213 + inSlope: -1.574346 + outSlope: -1.574346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.13530493 + inSlope: -0.7814261 + outSlope: -0.7814261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.15195842 + inSlope: -0.07863869 + outSlope: -0.07863869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.10353083 + inSlope: 1.4387534 + outSlope: 1.4387534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.044630624 + inSlope: 1.9138732 + outSlope: 1.9138732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.02406071 + inSlope: 2.0576077 + outSlope: 2.0576077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.15485138 + inSlope: 1.658796 + outSlope: 1.658796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.2517325 + inSlope: -0.2604056 + outSlope: -0.2604056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.19418293 + inSlope: -0.45761943 + outSlope: -0.45761943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.17258808 + inSlope: -0.42828858 + outSlope: -0.42828858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.15428093 + inSlope: -0.8343346 + outSlope: -0.8343346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11696576 + inSlope: -1.1194541 + outSlope: -1.1194541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.38785374 + inSlope: 0.65270835 + outSlope: 0.65270835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.28200018 + inSlope: 0.3733715 + outSlope: 0.3733715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.27308398 + inSlope: -0.03241411 + outSlope: -0.03241411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.3134671 + inSlope: -1.0053787 + outSlope: -1.0053787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.38358605 + inSlope: -0.77542806 + outSlope: -0.77542806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.41523284 + inSlope: 0.005750209 + outSlope: 0.005750209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.38211384 + inSlope: 0.667228 + outSlope: 0.667228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.32608864 + inSlope: -0.08192075 + outSlope: -0.08192075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.38056818 + inSlope: -0.41453785 + outSlope: -0.41453785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.38840082 + inSlope: -0.2349792 + outSlope: -0.2349792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7536868 + inSlope: 1.8875884 + outSlope: 1.8875884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.64447016 + inSlope: 1.2053381 + outSlope: 1.2053381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.562317 + inSlope: 0.37567288 + outSlope: 0.37567288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.57910115 + inSlope: -1.0180379 + outSlope: -1.0180379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.7334498 + inSlope: -1.5574123 + outSlope: -1.5574123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.90933836 + inSlope: -0.42045698 + outSlope: -0.42045698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.92728806 + inSlope: 0.13796316 + outSlope: 0.13796316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.83014137 + inSlope: 1.9867523 + outSlope: 1.9867523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.7538127 + inSlope: 2.2898588 + outSlope: 2.2898588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.46185893 + inSlope: -1.3047837 + outSlope: -1.3047837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.5053517 + inSlope: -0.89634144 + outSlope: -0.89634144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.5323286 + inSlope: -0.3752768 + outSlope: -0.3752768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.5539253 + inSlope: 0.38304 + outSlope: 0.38304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.4512678 + inSlope: 1.3929535 + outSlope: 1.3929535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.2832332 + inSlope: 1.8664589 + outSlope: 1.8664589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.16383633 + inSlope: 1.6626613 + outSlope: 1.6626613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.11037356 + inSlope: 1.4614275 + outSlope: 1.4614275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.066407844 + inSlope: 0.9990972 + outSlope: 0.9990972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.043767024 + inSlope: 0.14148562 + outSlope: 0.14148562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.106516756 + inSlope: -2.0161614 + outSlope: -2.0161614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.19138616 + inSlope: -2.7567766 + outSlope: -2.7567766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.38592386 + inSlope: -2.5557559 + outSlope: -2.5557559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.46068555 + inSlope: -2.2428489 + outSlope: -2.2428489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2611751 + inSlope: 3.1233284 + outSlope: 3.1233284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.36528605 + inSlope: 2.7242458 + outSlope: 2.7242458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.54249746 + inSlope: 0.48263574 + outSlope: 0.48263574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5492766 + inSlope: -0.58749413 + outSlope: -0.58749413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.39150473 + inSlope: -2.054398 + outSlope: -2.054398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.17652287 + inSlope: -2.2490368 + outSlope: -2.2490368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.09967905 + inSlope: -2.4120493 + outSlope: -2.4120493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.015719667 + inSlope: -2.5419583 + outSlope: -2.5419583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.06978482 + inSlope: -2.3013437 + outSlope: -2.3013437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.13770337 + inSlope: -1.4387941 + outSlope: -1.4387941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.14985767 + inSlope: 1.1990774 + outSlope: 1.1990774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.08576602 + inSlope: 2.4066055 + outSlope: 2.4066055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.010582715 + inSlope: 3.2477772 + outSlope: 3.2477772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.13075243 + inSlope: 3.772304 + outSlope: 3.772304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.26206964 + inSlope: 3.9395132 + outSlope: 3.9395132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12813826 + inSlope: -0.3061795 + outSlope: -0.3061795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.13834424 + inSlope: -0.20617111 + outSlope: -0.20617111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.12755616 + inSlope: 0.35613805 + outSlope: 0.35613805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.10102165 + inSlope: 0.319866 + outSlope: 0.319866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.08943221 + inSlope: 0.029317887 + outSlope: 0.029317887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.09605675 + inSlope: -0.06547092 + outSlope: -0.06547092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.10019447 + inSlope: -0.08627494 + outSlope: -0.08627494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.10598449 + inSlope: 0.10593476 + outSlope: 0.10593476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.09965113 + inSlope: 0.25298837 + outSlope: 0.25298837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.080379255 + inSlope: 0.13603896 + outSlope: 0.13603896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.089162864 + inSlope: -0.4018107 + outSlope: -0.4018107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.12848546 + inSlope: -0.64946216 + outSlope: -0.64946216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.014853409 + inSlope: -1.2859683 + outSlope: -1.2859683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.057719022 + inSlope: -0.9664588 + outSlope: -0.9664588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.092672534 + inSlope: -0.21359271 + outSlope: -0.21359271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.10954868 + inSlope: -0.09461231 + outSlope: -0.09461231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.10816979 + inSlope: 0.20691568 + outSlope: 0.20691568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0957543 + inSlope: 0.4735457 + outSlope: 0.4735457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.05889224 + inSlope: 0.4025171 + outSlope: 0.4025171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0497656 + inSlope: 0.12276193 + outSlope: 0.12276193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.05070811 + inSlope: -0.056608014 + outSlope: -0.056608014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.05353947 + inSlope: 0.0023259223 + outSlope: 0.0023259223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.05055305 + inSlope: 0.2610389 + outSlope: 0.2610389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.03613689 + inSlope: 0.57040715 + outSlope: 0.57040715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.012525903 + inSlope: 0.6975133 + outSlope: 0.6975133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.010364032 + inSlope: 0.5225437 + outSlope: 0.5225437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.022310352 + inSlope: 0.18409921 + outSlope: 0.18409921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.022637302 + inSlope: -0.11798318 + outSlope: -0.11798318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.014444815 + inSlope: -0.2984346 + outSlope: -0.2984346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.002741662 + inSlope: -0.32283714 + outSlope: -0.32283714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.007077661 + inSlope: -0.2638611 + outSlope: -0.2638611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.014849073 + inSlope: -0.23314218 + outSlope: -0.23314218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.038190797 + inSlope: 0.8606976 + outSlope: 0.8606976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.009500874 + inSlope: 1.1948792 + outSlope: 1.1948792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.041467816 + inSlope: 1.8151181 + outSlope: 1.8151181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.111507006 + inSlope: 2.1715899 + outSlope: 2.1715899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.18624048 + inSlope: 1.9637446 + outSlope: 1.9637446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.2644444 + inSlope: 0.020797908 + outSlope: 0.020797908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.14378932 + inSlope: -1.4921405 + outSlope: -1.4921405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.097583175 + inSlope: -1.2899156 + outSlope: -1.2899156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.057794955 + inSlope: -1.2808814 + outSlope: -1.2808814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.012191043 + inSlope: -1.6356983 + outSlope: -1.6356983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.051251624 + inSlope: -2.1777678 + outSlope: -2.1777678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.13299346 + inSlope: -2.4919877 + outSlope: -2.4919877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.21738406 + inSlope: -2.235241 + outSlope: -2.235241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.31115773 + inSlope: -0.22263485 + outSlope: -0.22263485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.13382766 + inSlope: 1.674643 + outSlope: 1.674643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08173799 + inSlope: 1.4375994 + outSlope: 1.4375994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.037987705 + inSlope: 1.3125074 + outSlope: 1.3125074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.15621142 + inSlope: -0.23922129 + outSlope: -0.23922129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.16418546 + inSlope: -0.10301291 + outSlope: -0.10301291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.13142924 + inSlope: 0.39012098 + outSlope: 0.39012098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.10199577 + inSlope: 0.05976756 + outSlope: 0.05976756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.13111767 + inSlope: -0.2558852 + outSlope: -0.2558852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1476256 + inSlope: -0.00357569 + outSlope: -0.00357569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.13486582 + inSlope: 0.365821 + outSlope: 0.365821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.109102614 + inSlope: 0.17288455 + outSlope: 0.17288455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.11953484 + inSlope: -0.43656966 + outSlope: -0.43656966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.13798286 + inSlope: -0.56009436 + outSlope: -0.56009436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.15687446 + inSlope: -0.5667476 + outSlope: -0.5667476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0033590253 + inSlope: -0.23057659 + outSlope: -0.23057659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.011044912 + inSlope: -0.12827823 + outSlope: -0.12827823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.011910907 + inSlope: 0.036307618 + outSlope: 0.036307618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.008624404 + inSlope: 0.10118267 + outSlope: 0.10118267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0051653953 + inSlope: 0.056683343 + outSlope: 0.056683343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0048455144 + inSlope: -0.037883062 + outSlope: -0.037883062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.007690934 + inSlope: -0.10242779 + outSlope: -0.10242779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.011674034 + inSlope: -0.09606914 + outSlope: -0.09606914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.014095543 + inSlope: -0.028083121 + outSlope: -0.028083121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.013546242 + inSlope: 0.044166416 + outSlope: 0.044166416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.011151115 + inSlope: 0.060366094 + outSlope: 0.060366094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.009521836 + inSlope: 0.005392598 + outSlope: 0.005392598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.01079161 + inSlope: -0.07557422 + outSlope: -0.07557422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.014560118 + inSlope: -0.103165016 + outSlope: -0.103165016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.017669277 + inSlope: -0.029208543 + outSlope: -0.029208543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.016507355 + inSlope: 0.11711763 + outSlope: 0.11711763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.009861431 + inSlope: 0.23551652 + outSlope: 0.23551652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0008062413 + inSlope: 0.24175103 + outSlope: 0.24175103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.006255305 + inSlope: 0.1420233 + outSlope: 0.1420233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.008661973 + inSlope: -0.0027708076 + outSlope: -0.0027708076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0060705887 + inSlope: -0.1064467 + outSlope: -0.1064467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0015655254 + inSlope: -0.1259832 + outSlope: -0.1259832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.002328291 + inSlope: -0.0738465 + outSlope: -0.0738465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0033575713 + inSlope: -0.030878382 + outSlope: -0.030878382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.025369087 + inSlope: 0.6006819 + outSlope: 0.6006819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.005346357 + inSlope: 0.8316605 + outSlope: 0.8316605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.030074948 + inSlope: 1.2104094 + outSlope: 1.2104094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.07534761 + inSlope: 1.3389587 + outSlope: 1.3389587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.11933886 + inSlope: 1.0699508 + outSlope: 1.0699508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.15128474 + inSlope: -0.20676148 + outSlope: -0.20676148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.1043768 + inSlope: -0.8211845 + outSlope: -0.8211845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.07814793 + inSlope: -0.6794565 + outSlope: -0.6794565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.059079707 + inSlope: -0.5407692 + outSlope: -0.5407692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.042096656 + inSlope: -0.63461304 + outSlope: -0.63461304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.016772151 + inSlope: -0.99641985 + outSlope: -0.99641985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.024331354 + inSlope: -1.432981 + outSlope: -1.432981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07875991 + inSlope: -1.6362747 + outSlope: -1.6362747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.13341628 + inSlope: -1.4062915 + outSlope: -1.4062915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.18739301 + inSlope: -0.0507361 + outSlope: -0.0507361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.14898543 + inSlope: 0.90398955 + outSlope: 0.90398955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.11562912 + inSlope: 0.98446953 + outSlope: 0.98446953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.08335413 + inSlope: 0.92555517 + outSlope: 0.92555517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.025231568 + inSlope: 0.8608155 + outSlope: 0.8608155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11474217 + inSlope: -0.22306299 + outSlope: -0.22306299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.107306734 + inSlope: -0.29447177 + outSlope: -0.29447177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.06836663 + inSlope: -0.29813007 + outSlope: -0.29813007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.060081623 + inSlope: 0.061345875 + outSlope: 0.061345875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0836079 + inSlope: 0.28758892 + outSlope: 0.28758892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.10845583 + inSlope: 0.010221565 + outSlope: 0.010221565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.09736005 + inSlope: 0.021337591 + outSlope: 0.021337591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.11939822 + inSlope: -0.07237788 + outSlope: -0.07237788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11410053 + inSlope: -0.15893058 + outSlope: -0.15893058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.021407774 + inSlope: -0.012054964 + outSlope: -0.012054964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.021809606 + inSlope: -0.038610313 + outSlope: -0.038610313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.028087491 + inSlope: -0.14328276 + outSlope: -0.14328276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.039575413 + inSlope: -0.17147416 + outSlope: -0.17147416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0460879 + inSlope: 0.13433163 + outSlope: 0.13433163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.038724184 + inSlope: 0.2877092 + outSlope: 0.2877092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.026907286 + inSlope: 0.37465927 + outSlope: 0.37465927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0137469005 + inSlope: 0.3623362 + outSlope: 0.3623362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.002751531 + inSlope: 0.268685 + outSlope: 0.268685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.004165442 + inSlope: 0.1580826 + outSlope: 0.1580826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.007787309 + inSlope: 0.09977427 + outSlope: 0.09977427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.010817057 + inSlope: 0.10986804 + outSlope: 0.10986804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.015111846 + inSlope: 0.13435854 + outSlope: 0.13435854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.019774301 + inSlope: 0.09417491 + outSlope: 0.09417491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.021390175 + inSlope: -0.035820242 + outSlope: -0.035820242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.01738628 + inSlope: -0.21425226 + outSlope: -0.21425226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.007106698 + inSlope: -0.34133235 + outSlope: -0.34133235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0053692097 + inSlope: -0.34607682 + outSlope: -0.34607682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.01596509 + inSlope: -0.24051312 + outSlope: -0.24051312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.021403411 + inSlope: -0.16314954 + outSlope: -0.16314954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.026652172 + inSlope: -0.23241508 + outSlope: -0.23241508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.03439934 + inSlope: -0.24828565 + outSlope: -0.24828565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.07278809 + inSlope: -0.09212547 + outSlope: -0.09212547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06572027 + inSlope: 0.16544598 + outSlope: 0.16544598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.040892463 + inSlope: 0.3305475 + outSlope: 0.3305475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.016726678 + inSlope: 0.3555819 + outSlope: 0.3555819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.005365357 + inSlope: 0.30273125 + outSlope: 0.30273125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.003455422 + inSlope: 0.20104674 + outSlope: 0.20104674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.008204464 + inSlope: -0.06719747 + outSlope: -0.06719747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0035579363 + inSlope: -0.18837363 + outSlope: -0.18837363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.00435378 + inSlope: -0.27598107 + outSlope: -0.27598107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.014840798 + inSlope: -0.3317575 + outSlope: -0.3317575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.026470946 + inSlope: -0.34890413 + outSlope: -0.34890413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1819605 + inSlope: -0.6423287 + outSlope: -0.6423287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.16054954 + inSlope: -0.7018934 + outSlope: -0.7018934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.09759775 + inSlope: -0.23459217 + outSlope: -0.23459217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.14071634 + inSlope: 0.53968203 + outSlope: 0.53968203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.17986156 + inSlope: 0.6780596 + outSlope: 0.6780596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.2401072 + inSlope: 0.13930702 + outSlope: 0.13930702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.21804331 + inSlope: -0.66196734 + outSlope: -0.66196734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.16992572 + inSlope: -0.5171649 + outSlope: -0.5171649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.15587647 + inSlope: 0.06320346 + outSlope: 0.06320346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1788535 + inSlope: 0.18551505 + outSlope: 0.18551505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.18335165 + inSlope: 0.1349445 + outSlope: 0.1349445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.048400067 + inSlope: 0.30887568 + outSlope: 0.30887568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.03810421 + inSlope: 0.029391423 + outSlope: 0.029391423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04644064 + inSlope: -0.43850875 + outSlope: -0.43850875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.06733813 + inSlope: -0.6522411 + outSlope: -0.6522411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08992338 + inSlope: -0.5269494 + outSlope: -0.5269494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.10246809 + inSlope: -0.1818633 + outSlope: -0.1818633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1020476 + inSlope: 0.1534218 + outSlope: 0.1534218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.09223997 + inSlope: 0.29984853 + outSlope: 0.29984853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0820577 + inSlope: 0.23150639 + outSlope: 0.23150639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.07680621 + inSlope: 0.11042075 + outSlope: 0.11042075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.07030383 + inSlope: 0.21365047 + outSlope: 0.21365047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.060452946 + inSlope: 0.35305047 + outSlope: 0.35305047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.033814337 + inSlope: 0.3186114 + outSlope: 0.3186114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.02552637 + inSlope: 0.15860556 + outSlope: 0.15860556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.025321687 + inSlope: -0.11040441 + outSlope: -0.11040441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.037063282 + inSlope: -0.18837073 + outSlope: -0.18837073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.047549408 + inSlope: -0.09085538 + outSlope: -0.09085538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.049216006 + inSlope: -0.012858377 + outSlope: -0.012858377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.04840663 + inSlope: 0.024281235 + outSlope: 0.024281235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0070818905 + inSlope: -1.9443135 + outSlope: -1.9443135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.057728563 + inSlope: -2.119722 + outSlope: -2.119722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.21524245 + inSlope: -2.364194 + outSlope: -2.364194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.3525062 + inSlope: -1.5279577 + outSlope: -1.5279577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.40067887 + inSlope: 0.6437324 + outSlope: 0.6437324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.2566607 + inSlope: 2.309499 + outSlope: 2.309499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07131953 + inSlope: 3.0024076 + outSlope: 3.0024076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.02982311 + inSlope: 2.8990593 + outSlope: 2.8990593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.19622545 + inSlope: 1.8208282 + outSlope: 1.8208282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.2612921 + inSlope: -0.016710877 + outSlope: -0.016710877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.19177319 + inSlope: -1.9796722 + outSlope: -1.9796722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.11024751 + inSlope: -2.769858 + outSlope: -2.769858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.007115994 + inSlope: -3.0939426 + outSlope: -3.0939426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.15838744 + inSlope: 3.4722776 + outSlope: 3.4722776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.042644843 + inSlope: 4.720542 + outSlope: 4.720542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.15631537 + inSlope: 6.1548014 + outSlope: 6.1548014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.36767527 + inSlope: 5.6315937 + outSlope: 5.6315937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.531755 + inSlope: 3.895235 + outSlope: 3.895235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.66354376 + inSlope: 0.26691082 + outSlope: 0.26691082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5936284 + inSlope: -1.8755822 + outSlope: -1.8755822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.42339987 + inSlope: -3.4894238 + outSlope: -3.4894238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.28748465 + inSlope: -3.6668646 + outSlope: -3.6668646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.17894214 + inSlope: -3.2754412 + outSlope: -3.2754412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.06912181 + inSlope: -2.777513 + outSlope: -2.777513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0062253946 + inSlope: -1.5384603 + outSlope: -1.5384603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.033442184 + inSlope: -0.7502088 + outSlope: -0.7502088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.056239307 + inSlope: -0.8083681 + outSlope: -0.8083681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.1320822 + inSlope: -1.6372414 + outSlope: -1.6372414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.19648287 + inSlope: -1.7002788 + outSlope: -1.7002788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.25948521 + inSlope: 0.2874968 + outSlope: 0.2874968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.22626771 + inSlope: 1.4910933 + outSlope: 1.4910933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.16007897 + inSlope: 1.9856604 + outSlope: 1.9856604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.100866154 + inSlope: 0.678473 + outSlope: 0.678473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.12348192 + inSlope: 0.15245552 + outSlope: 0.15245552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.111029856 + inSlope: -0.8878294 + outSlope: -0.8878294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.06429329 + inSlope: -1.7269804 + outSlope: -1.7269804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.004102171 + inSlope: -2.178359 + outSlope: -2.178359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.080930635 + inSlope: -2.1654382 + outSlope: -2.1654382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.14846474 + inSlope: -1.6457696 + outSlope: -1.6457696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.20400558 + inSlope: -0.0035300106 + outSlope: -0.0035300106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.19088396 + inSlope: 0.49450752 + outSlope: 0.49450752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.17103842 + inSlope: 0.7955247 + outSlope: 0.7955247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.13784899 + inSlope: 0.7664074 + outSlope: 0.7664074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.11994458 + inSlope: 0.5289782 + outSlope: 0.5289782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.08103063 + inSlope: 0.7657492 + outSlope: 0.7657492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.05153384 + inSlope: 0.9623105 + outSlope: 0.9623105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.016876597 + inSlope: 0.9683292 + outSlope: 0.9683292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.013021493 + inSlope: 0.503899 + outSlope: 0.503899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.016716689 + inSlope: -0.14776084 + outSlope: -0.14776084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.003170756 + inSlope: -0.3246092 + outSlope: -0.3246092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.004923927 + inSlope: 0.09178917 + outSlope: 0.09178917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0092900535 + inSlope: 0.8379557 + outSlope: 0.8379557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.05093976 + inSlope: 1.3726692 + outSlope: 1.3726692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.10080134 + inSlope: 1.4958462 + outSlope: 1.4958462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07966351 + inSlope: 1.643694 + outSlope: 1.643694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.13445331 + inSlope: 1.2464194 + outSlope: 1.2464194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.17068104 + inSlope: 0.07648964 + outSlope: 0.07648964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.16480772 + inSlope: 0.037605878 + outSlope: 0.037605878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.17036451 + inSlope: 0.33991098 + outSlope: 0.33991098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.20450479 + inSlope: 0.372471 + outSlope: 0.372471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.21229985 + inSlope: 0.121714406 + outSlope: 0.121714406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.21261908 + inSlope: -0.24563383 + outSlope: -0.24563383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.17624162 + inSlope: -0.5322998 + outSlope: -0.5322998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.14797878 + inSlope: -0.4038772 + outSlope: -0.4038772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.13351247 + inSlope: -0.59258425 + outSlope: -0.59258425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.10847316 + inSlope: -0.90532035 + outSlope: -0.90532035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.07315773 + inSlope: -1.0231354 + outSlope: -1.0231354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.04026413 + inSlope: -0.84482753 + outSlope: -0.84482753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.016835904 + inSlope: -0.44707972 + outSlope: -0.44707972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.010458801 + inSlope: 0.07865471 + outSlope: 0.07865471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.022079566 + inSlope: 0.55000806 + outSlope: 0.55000806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.047125988 + inSlope: 0.8953147 + outSlope: 0.8953147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.08176722 + inSlope: 1.039236 + outSlope: 1.039236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.007573298 + inSlope: -1.7396747 + outSlope: -1.7396747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06556246 + inSlope: -0.8651675 + outSlope: -0.8651675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.065251134 + inSlope: 0.923871 + outSlope: 0.923871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0039710496 + inSlope: 2.3963678 + outSlope: 2.3963678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.094506726 + inSlope: 3.2720778 + outSlope: 3.2720778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.3356226 + inSlope: 3.415955 + outSlope: 3.415955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5608176 + inSlope: 0.28590384 + outSlope: 0.28590384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.54054344 + inSlope: -1.3038639 + outSlope: -1.3038639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.47389334 + inSlope: -1.4581473 + outSlope: -1.4581473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.4433336 + inSlope: -0.8085471 + outSlope: -0.8085471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.41999018 + inSlope: -0.12721004 + outSlope: -0.12721004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.43485293 + inSlope: 1.1054492 + outSlope: 1.1054492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.575722 + inSlope: 2.2791471 + outSlope: 2.2791471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.654284 + inSlope: -1.4668808 + outSlope: -1.4668808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.38326898 + inSlope: -4.9403114 + outSlope: -4.9403114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.21848376 + inSlope: -4.4648547 + outSlope: -4.4648547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08561199 + inSlope: -3.4433813 + outSlope: -3.4433813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.011074934 + inSlope: -2.9006054 + outSlope: -2.9006054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.111385904 + inSlope: -1.1467663 + outSlope: -1.1467663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.07316036 + inSlope: -1.2443671 + outSlope: -1.2443671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.028428083 + inSlope: -1.2932003 + outSlope: -1.2932003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.01305301 + inSlope: -1.0289019 + outSlope: -1.0289019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.040165387 + inSlope: -0.41590458 + outSlope: -0.41590458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.04077998 + inSlope: 0.35161212 + outSlope: 0.35161212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.01672457 + inSlope: 0.8833697 + outSlope: 0.8833697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.018111333 + inSlope: 0.9284284 + outSlope: 0.9284284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.04517065 + inSlope: 0.54804635 + outSlope: 0.54804635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.054647755 + inSlope: 0.20315494 + outSlope: 0.20315494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.05871431 + inSlope: -0.010891113 + outSlope: -0.010891113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.05392168 + inSlope: -0.07695615 + outSlope: -0.07695615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0535839 + inSlope: 0.048866168 + outSlope: 0.048866168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.05997371 + inSlope: -0.008222077 + outSlope: -0.008222077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.050058797 + inSlope: -0.21901035 + outSlope: -0.21901035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.042030588 + inSlope: -0.17512652 + outSlope: -0.17512652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.04060768 + inSlope: 0.19400235 + outSlope: 0.19400235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.06842568 + inSlope: 0.57092845 + outSlope: 0.57092845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11065388 + inSlope: 0.63824385 + outSlope: 0.63824385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0018689511 + inSlope: -0.31572592 + outSlope: -0.31572592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.01239315 + inSlope: -0.36484438 + outSlope: -0.36484438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.02619191 + inSlope: -0.3999231 + outSlope: -0.3999231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.03905469 + inSlope: -0.36205032 + outSlope: -0.36205032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0503286 + inSlope: -0.090076454 + outSlope: -0.090076454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.04505979 + inSlope: 0.5293162 + outSlope: 0.5293162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.015040843 + inSlope: 1.0002433 + outSlope: 1.0002433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.02162311 + inSlope: 0.5352146 + outSlope: 0.5352146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.020640131 + inSlope: -1.2033587 + outSlope: -1.2033587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.058600802 + inSlope: -4.94977 + outSlope: -4.94977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.30934453 + inSlope: -5.995755 + outSlope: -5.995755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.4583178 + inSlope: -3.2469401 + outSlope: -3.2469401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.52580726 + inSlope: -0.08300543 + outSlope: -0.08300543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.46385154 + inSlope: 2.747086 + outSlope: 2.747086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.17473374 + inSlope: 5.578289 + outSlope: 5.578289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.029217752 + inSlope: 5.222603 + outSlope: 5.222603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.17344005 + inSlope: 2.9621363 + outSlope: 2.9621363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.22669357 + inSlope: -0.054036796 + outSlope: -0.054036796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.1698375 + inSlope: -2.2043014 + outSlope: -2.2043014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0797402 + inSlope: -2.3989196 + outSlope: -2.3989196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.009909557 + inSlope: -1.4172645 + outSlope: -1.4172645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.014744132 + inSlope: -0.25042334 + outSlope: -0.25042334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0067853034 + inSlope: 0.23876466 + outSlope: 0.23876466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12838256 + inSlope: 0.23332222 + outSlope: 0.23332222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.120605156 + inSlope: -0.40764013 + outSlope: -0.40764013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.15555857 + inSlope: -1.591804 + outSlope: -1.591804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.30958423 + inSlope: -2.2368839 + outSlope: -2.2368839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.40053636 + inSlope: 0.19078529 + outSlope: 0.19078529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.2728718 + inSlope: 3.3373442 + outSlope: 3.3373442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.1406424 + inSlope: 5.8713913 + outSlope: 5.8713913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.118554294 + inSlope: 3.9527218 + outSlope: 3.9527218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.12287237 + inSlope: 0.035166584 + outSlope: 0.035166584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.12089873 + inSlope: -0.40812 + outSlope: -0.40812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.09566437 + inSlope: -0.6669586 + outSlope: -0.6669586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.07643483 + inSlope: -0.66137767 + outSlope: -0.66137767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.051572546 + inSlope: -0.9684719 + outSlope: -0.9684719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.011870028 + inSlope: -0.7644272 + outSlope: -0.7644272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0006106938 + inSlope: -0.24127959 + outSlope: -0.24127959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.004215283 + inSlope: -0.3174743 + outSlope: -0.3174743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.02055427 + inSlope: -0.68455684 + outSlope: -0.68455684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.049852394 + inSlope: -0.93103015 + outSlope: -0.93103015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.082622945 + inSlope: -0.89085305 + outSlope: -0.89085305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.109242596 + inSlope: -0.59681064 + outSlope: -0.59681064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.122410305 + inSlope: -0.39503095 + outSlope: -0.39503095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0035388926 + inSlope: -0.3529103 + outSlope: -0.3529103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.015302571 + inSlope: -0.021988451 + outSlope: -0.021988451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00500479 + inSlope: 0.34214205 + outSlope: 0.34214205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0075069023 + inSlope: 0.23651296 + outSlope: 0.23651296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.010762743 + inSlope: -0.032979697 + outSlope: -0.032979697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.005308256 + inSlope: -0.19897676 + outSlope: -0.19897676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0025023767 + inSlope: -0.60470974 + outSlope: -0.60470974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.03500573 + inSlope: -3.8114872 + outSlope: -3.8114872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.2566015 + inSlope: -7.594654 + outSlope: -7.594654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.541316 + inSlope: -4.2882714 + outSlope: -4.2882714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.54248625 + inSlope: 2.6605213 + outSlope: 2.6605213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.3639479 + inSlope: 5.230509 + outSlope: 5.230509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.19378556 + inSlope: 3.4650235 + outSlope: 3.4650235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.1329462 + inSlope: 0.8567868 + outSlope: 0.8567868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.13666645 + inSlope: -0.64199895 + outSlope: -0.64199895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.17574608 + inSlope: -0.4851052 + outSlope: -0.4851052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.16900675 + inSlope: 1.4308755 + outSlope: 1.4308755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0803543 + inSlope: 2.2308655 + outSlope: 2.2308655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.020282373 + inSlope: 1.1578406 + outSlope: 1.1578406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0031649736 + inSlope: 0.2070843 + outSlope: 0.2070843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.006476735 + inSlope: -0.25815067 + outSlope: -0.25815067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.020375026 + inSlope: -0.1727343 + outSlope: -0.1727343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.01799237 + inSlope: 0.29376322 + outSlope: 0.29376322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0007907992 + inSlope: 0.5160467 + outSlope: 0.5160467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21008721 + inSlope: -2.9385395 + outSlope: -2.9385395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.11213589 + inSlope: -2.393634 + outSlope: -2.393634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.050511595 + inSlope: -1.4801955 + outSlope: -1.4801955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.013456175 + inSlope: -0.7838626 + outSlope: -0.7838626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.001745919 + inSlope: -0.7750025 + outSlope: -0.7750025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.038210653 + inSlope: -1.1270096 + outSlope: -1.1270096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.07687991 + inSlope: -1.2804062 + outSlope: -1.2804062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.12357108 + inSlope: -1.5266175 + outSlope: -1.5266175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1786544 + inSlope: -1.279851 + outSlope: -1.279851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.20889448 + inSlope: -0.29736733 + outSlope: -0.29736733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.19847889 + inSlope: 0.9461627 + outSlope: 0.9461627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.14581697 + inSlope: 2.078968 + outSlope: 2.078968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.05988096 + inSlope: 3.3489094 + outSlope: 3.3489094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.077443734 + inSlope: 4.837298 + outSlope: 4.837298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.26260555 + inSlope: 5.186326 + outSlope: 5.186326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5429819 + inSlope: 2.9061697 + outSlope: 2.9061697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.53273827 + inSlope: -2.9953136 + outSlope: -2.9953136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.4091336 + inSlope: -3.5382113 + outSlope: -3.5382113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.2968575 + inSlope: -3.021686 + outSlope: -3.021686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.2076879 + inSlope: -2.675086 + outSlope: -2.675086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.027877767 + inSlope: 0.20935959 + outSlope: 0.20935959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.020899113 + inSlope: 0.329487 + outSlope: 0.329487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.005911966 + inSlope: 0.5928177 + outSlope: 0.5928177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.018622072 + inSlope: 0.76853204 + outSlope: 0.76853204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.045323506 + inSlope: 0.6642324 + outSlope: 0.6642324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.06290423 + inSlope: 0.20092526 + outSlope: 0.20092526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.039713643 + inSlope: -0.7020929 + outSlope: -0.7020929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.011912334 + inSlope: -0.71222234 + outSlope: -0.71222234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0077678408 + inSlope: -0.1547545 + outSlope: -0.1547545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0015953684 + inSlope: 0.77788585 + outSlope: 0.77788585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.04409121 + inSlope: 1.4300532 + outSlope: 1.4300532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.096932285 + inSlope: 1.3586402 + outSlope: 1.3586402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.13466726 + inSlope: 0.7301035 + outSlope: 0.7301035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.1326627 + inSlope: -0.6212717 + outSlope: -0.6212717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.07043803 + inSlope: -0.98555565 + outSlope: -0.98555565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.038484015 + inSlope: -0.8387183 + outSlope: -0.8387183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0145234885 + inSlope: -0.5468867 + outSlope: -0.5468867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.002024896 + inSlope: -0.26018727 + outSlope: -0.26018727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0028223214 + inSlope: -0.19622885 + outSlope: -0.19622885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.011057024 + inSlope: -0.37401384 + outSlope: -0.37401384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.027756585 + inSlope: -0.5009864 + outSlope: -0.5009864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.017811898 + inSlope: -0.5091594 + outSlope: -0.5091594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0008399161 + inSlope: -0.14681318 + outSlope: -0.14681318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00802435 + inSlope: 0.4501684 + outSlope: 0.4501684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.030851146 + inSlope: 0.7265959 + outSlope: 0.7265959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.056464076 + inSlope: 0.48242015 + outSlope: 0.48242015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.06301249 + inSlope: -0.14857818 + outSlope: -0.14857818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.046558857 + inSlope: -0.7979368 + outSlope: -0.7979368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.009816695 + inSlope: -1.1655183 + outSlope: -1.1655183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.03114236 + inSlope: -1.0820174 + outSlope: -1.0820174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.062317796 + inSlope: -0.64285743 + outSlope: -0.64285743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.07399952 + inSlope: -0.16259731 + outSlope: -0.16259731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.073157616 + inSlope: -0.078996345 + outSlope: -0.078996345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.079265945 + inSlope: -0.384296 + outSlope: -0.384296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.098777354 + inSlope: -0.7339864 + outSlope: -0.7339864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.15225472 + inSlope: -0.37090695 + outSlope: -0.37090695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.15292548 + inSlope: 0.4545986 + outSlope: 0.4545986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.121948116 + inSlope: 1.3202829 + outSlope: 1.3202829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.06490664 + inSlope: 1.7449439 + outSlope: 1.7449439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0056185275 + inSlope: 1.5300248 + outSlope: 1.5300248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.037095014 + inSlope: 0.88498414 + outSlope: 0.88498414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.053380385 + inSlope: 0.08352314 + outSlope: 0.08352314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.042663246 + inSlope: -0.5227461 + outSlope: -0.5227461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.018530637 + inSlope: -0.7239777 + outSlope: -0.7239777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40169415 + inSlope: -1.05302 + outSlope: -1.05302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.36659348 + inSlope: -0.35821348 + outSlope: -0.35821348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.4307389 + inSlope: 2.2402143 + outSlope: 2.2402143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5271609 + inSlope: 2.5252118 + outSlope: 2.5252118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.59908634 + inSlope: 2.0772142 + outSlope: 2.0772142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.66564184 + inSlope: 0.36694098 + outSlope: 0.36694098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6235491 + inSlope: -2.8729777 + outSlope: -2.8729777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.28492832 + inSlope: -5.4118633 + outSlope: -5.4118633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.11331916 + inSlope: -4.45575 + outSlope: -4.45575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.012121653 + inSlope: -2.9092994 + outSlope: -2.9092994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.080634184 + inSlope: -1.1641908 + outSlope: -1.1641908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.08973443 + inSlope: 0.57219696 + outSlope: 0.57219696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.042487726 + inSlope: 2.0455127 + outSlope: 2.0455127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.046632994 + inSlope: 3.0989518 + outSlope: 3.0989518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.16410907 + inSlope: 3.6594682 + outSlope: 3.6594682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.4868866 + inSlope: 1.6103253 + outSlope: 1.6103253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.5131245 + inSlope: -0.4768688 + outSlope: -0.4768688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.45509526 + inSlope: -1.4989555 + outSlope: -1.4989555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.41319415 + inSlope: -0.85008943 + outSlope: -0.85008943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.39842266 + inSlope: -0.44314438 + outSlope: -0.44314438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.065977745 + inSlope: -0.30975187 + outSlope: -0.30975187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.05565268 + inSlope: -0.4192358 + outSlope: -0.4192358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.03802869 + inSlope: -0.6735902 + outSlope: -0.6735902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.010746663 + inSlope: -0.93965966 + outSlope: -0.93965966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.024615292 + inSlope: -0.9885204 + outSlope: -0.9885204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.055154692 + inSlope: -0.64534086 + outSlope: -0.64534086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.06763802 + inSlope: -0.08985934 + outSlope: -0.08985934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.06114532 + inSlope: 0.38926893 + outSlope: 0.38926893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.041686755 + inSlope: 0.8025589 + outSlope: 0.8025589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.007641394 + inSlope: 1.1351883 + outSlope: 1.1351883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.03399246 + inSlope: 1.2140021 + outSlope: 1.2140021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.073292084 + inSlope: 0.962399 + outSlope: 0.962399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.098152414 + inSlope: 0.39929298 + outSlope: 0.39929298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.09991164 + inSlope: -0.31302768 + outSlope: -0.31302768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.077283904 + inSlope: -0.8265036 + outSlope: -0.8265036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.04481143 + inSlope: -0.9101567 + outSlope: -0.9101567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.016606797 + inSlope: -0.5707171 + outSlope: -0.5707171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.006763593 + inSlope: 0.043790504 + outSlope: 0.043790504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.019526143 + inSlope: 0.58383393 + outSlope: 0.58383393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.04568586 + inSlope: 0.77426636 + outSlope: 0.77426636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.071143895 + inSlope: 0.5984569 + outSlope: 0.5984569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.08558298 + inSlope: 0.14246249 + outSlope: 0.14246249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08064141 + inSlope: -0.31654826 + outSlope: -0.31654826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.06447975 + inSlope: -0.48484933 + outSlope: -0.48484933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6132055 + inSlope: 2.3303852 + outSlope: 2.3303852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.535526 + inSlope: 2.8217409 + outSlope: 2.8217409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.283065 + inSlope: 4.8145866 + outSlope: 4.8145866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.104116976 + inSlope: 5.307678 + outSlope: 5.307678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.070780195 + inSlope: 4.782713 + outSlope: 4.782713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.21473059 + inSlope: 2.654728 + outSlope: 2.654728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.2477621 + inSlope: -0.6160158 + outSlope: -0.6160158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.17366287 + inSlope: -2.7620983 + outSlope: -2.7620983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.063622214 + inSlope: -3.021474 + outSlope: -3.021474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.027768716 + inSlope: -2.1420996 + outSlope: -2.1420996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.07918441 + inSlope: -1.0976926 + outSlope: -1.0976926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.10094824 + inSlope: -0.42762232 + outSlope: -0.42762232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.107692584 + inSlope: -0.05529687 + outSlope: -0.05529687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.09006744 + inSlope: 0.66076183 + outSlope: 0.66076183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.060583893 + inSlope: 0.95428014 + outSlope: 0.95428014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.02644871 + inSlope: 0.6291263 + outSlope: 0.6291263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.01864212 + inSlope: -0.57994235 + outSlope: -0.57994235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.06511158 + inSlope: -2.7263389 + outSlope: -2.7263389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.20039795 + inSlope: -5.948655 + outSlope: -5.948655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.4616887 + inSlope: -5.776089 + outSlope: -5.776089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.5854707 + inSlope: -2.2990532 + outSlope: -2.2990532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6149588 + inSlope: -0.8846437 + outSlope: -0.8846437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04138043 + inSlope: 1.3138547 + outSlope: 1.3138547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.08517559 + inSlope: 1.4625355 + outSlope: 1.4625355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1388828 + inSlope: 1.4699396 + outSlope: 1.4699396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.18317157 + inSlope: 1.0257946 + outSlope: 1.0257946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.20726912 + inSlope: -1.3964646 + outSlope: -1.3964646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.090073936 + inSlope: -3.930746 + outSlope: -3.930746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.054780666 + inSlope: -4.1747813 + outSlope: -4.1747813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.18824486 + inSlope: -3.1365657 + outSlope: -3.1365657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.26388502 + inSlope: -0.8330289 + outSlope: -0.8330289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.24378012 + inSlope: 1.5238864 + outSlope: 1.5238864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.1622926 + inSlope: 2.6257555 + outSlope: 2.6257555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.068729766 + inSlope: 2.1897583 + outSlope: 2.1897583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.016308675 + inSlope: 0.853046 + outSlope: 0.853046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.011859992 + inSlope: -0.23409398 + outSlope: -0.23409398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.03191494 + inSlope: -0.55642056 + outSlope: -0.55642056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.048954677 + inSlope: -0.23701628 + outSlope: -0.23701628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.047716007 + inSlope: 0.23998705 + outSlope: 0.23998705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.032955527 + inSlope: 0.47212082 + outSlope: 0.47212082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.016241288 + inSlope: 0.38245255 + outSlope: 0.38245255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0074586975 + inSlope: 0.008434869 + outSlope: 0.008434869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.015678948 + inSlope: -0.12822275 + outSlope: -0.12822275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.016006874 + inSlope: 0.42776743 + outSlope: 0.42776743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.012838852 + inSlope: 0.90740764 + outSlope: 0.90740764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.044486966 + inSlope: 0.9494426 + outSlope: 0.9494426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08684956 + inSlope: 0.023369862 + outSlope: 0.023369862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.08607057 + inSlope: 0.038534846 + outSlope: 0.038534846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.08428057 + inSlope: -0.013035083 + outSlope: -0.013035083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.08693957 + inSlope: -0.16530924 + outSlope: -0.16530924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09530119 + inSlope: 1.1221386 + outSlope: 1.1221386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.012130336 + inSlope: 2.862135 + outSlope: 2.862135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.09550785 + inSlope: 1.7102414 + outSlope: 1.7102414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.1018858 + inSlope: -0.15070462 + outSlope: -0.15070462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08546088 + inSlope: -0.75229675 + outSlope: -0.75229675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.05173269 + inSlope: -1.0102065 + outSlope: -1.0102065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.01811378 + inSlope: -0.7190676 + outSlope: -0.7190676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.003794854 + inSlope: -0.023862615 + outSlope: -0.023862615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.016522951 + inSlope: 0.34681553 + outSlope: 0.34681553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.026915899 + inSlope: -0.15902218 + outSlope: -0.15902218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.005921473 + inSlope: -0.78429747 + outSlope: -0.78429747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.025370572 + inSlope: -0.5426632 + outSlope: -0.5426632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.030256052 + inSlope: 0.05832638 + outSlope: 0.05832638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.021482144 + inSlope: -0.20607269 + outSlope: -0.20607269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.043994203 + inSlope: -5.786151 + outSlope: -5.786151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.40722582 + inSlope: -8.162142 + outSlope: -8.162142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.58813715 + inSlope: -0.68867993 + outSlope: -0.68867993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.45313752 + inSlope: 5.1743546 + outSlope: 5.1743546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.24318025 + inSlope: 5.4669185 + outSlope: 5.4669185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.08867637 + inSlope: 4.635113 + outSlope: 4.635113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.49068385 + inSlope: 0.2427247 + outSlope: 0.2427247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.46721697 + inSlope: 0.5474245 + outSlope: 0.5474245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.43630597 + inSlope: -1.0282431 + outSlope: -1.0282431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.6379363 + inSlope: -2.0217268 + outSlope: -2.0217268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.7146848 + inSlope: 0.14077088 + outSlope: 0.14077088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.6095888 + inSlope: 2.91751 + outSlope: 2.91751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.3551934 + inSlope: 3.9097586 + outSlope: 3.9097586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.1535424 + inSlope: 1.217925 + outSlope: 1.217925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.14999837 + inSlope: -0.8226658 + outSlope: -0.8226658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.20838684 + inSlope: -2.3300822 + outSlope: -2.3300822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.30533713 + inSlope: -2.871747 + outSlope: -2.871747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.39983663 + inSlope: -2.3949325 + outSlope: -2.3949325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.46499932 + inSlope: -1.3708012 + outSlope: -1.3708012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.49122334 + inSlope: -0.78671986 + outSlope: -0.78671986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08103991 + inSlope: -1.7398862 + outSlope: -1.7398862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.023043703 + inSlope: -1.9146924 + outSlope: -1.9146924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.046606254 + inSlope: -1.982873 + outSlope: -1.982873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.10914784 + inSlope: -1.5074825 + outSlope: -1.5074825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.1471051 + inSlope: -0.484131 + outSlope: -0.484131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.14142324 + inSlope: 0.6843276 + outSlope: 0.6843276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.10148324 + inSlope: 1.431438 + outSlope: 1.431438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.045994025 + inSlope: 1.5504432 + outSlope: 1.5504432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0018796322 + inSlope: 1.2087549 + outSlope: 1.2087549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.034589633 + inSlope: 0.8872422 + outSlope: 0.8872422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.06102911 + inSlope: 0.89860654 + outSlope: 0.89860654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.094496734 + inSlope: 1.2695503 + outSlope: 1.2695503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.20144746 + inSlope: 1.4909681 + outSlope: 1.4909681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.26644763 + inSlope: 0.2911195 + outSlope: 0.2911195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.21318111 + inSlope: -1.1104972 + outSlope: -1.1104972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.12938374 + inSlope: -1.102111 + outSlope: -1.102111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.098376155 + inSlope: -0.7357917 + outSlope: -0.7357917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08033095 + inSlope: -0.22515307 + outSlope: -0.22515307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.08336597 + inSlope: 0.091050416 + outSlope: 0.091050416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2712134 + inSlope: 2.0602722 + outSlope: 2.0602722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.20253767 + inSlope: 1.9499701 + outSlope: 1.9499701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.1412154 + inSlope: 2.0002174 + outSlope: 2.0002174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.06918983 + inSlope: 2.391004 + outSlope: 2.391004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.018184876 + inSlope: 2.386205 + outSlope: 2.386205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.089890495 + inSlope: 1.9860953 + outSlope: 1.9860953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.15059125 + inSlope: 1.2908725 + outSlope: 1.2908725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.16336507 + inSlope: -0.8823954 + outSlope: -0.8823954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.11712232 + inSlope: -1.6807919 + outSlope: -1.6807919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.05131228 + inSlope: -2.3053224 + outSlope: -2.3053224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.03656583 + inSlope: -3.0780792 + outSlope: -3.0780792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.15389308 + inSlope: -3.3411403 + outSlope: -3.3411403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.2593086 + inSlope: -2.9347334 + outSlope: -2.9347334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.40924543 + inSlope: -0.9117847 + outSlope: -0.9117847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.41032755 + inSlope: 0.8094846 + outSlope: 0.8094846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.35527974 + inSlope: 1.650703 + outSlope: 1.650703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.3002807 + inSlope: 1.0031352 + outSlope: 1.0031352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.2884041 + inSlope: 0.025435984 + outSlope: 0.025435984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.29858494 + inSlope: -0.1361187 + outSlope: -0.1361187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.29747868 + inSlope: 0.11898645 + outSlope: 0.11898645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2906525 + inSlope: 0.41684416 + outSlope: 0.41684416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.26968905 + inSlope: 0.62890327 + outSlope: 0.62890327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3751166 + inSlope: -3.2022471 + outSlope: -3.2022471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.268375 + inSlope: -2.9552526 + outSlope: -2.9552526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.10394565 + inSlope: -1.898949 + outSlope: -1.898949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.05150311 + inSlope: -1.055853 + outSlope: -1.055853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.046651017 + inSlope: 0.7942984 + outSlope: 0.7942984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.086508684 + inSlope: 1.4592183 + outSlope: 1.4592183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.36111593 + inSlope: 2.028675 + outSlope: 2.028675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5545885 + inSlope: 2.1525455 + outSlope: 2.1525455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.71211565 + inSlope: 2.323295 + outSlope: 2.323295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.82139206 + inSlope: 0.28635338 + outSlope: 0.28635338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.37595177 + inSlope: -3.9274802 + outSlope: -3.9274802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16984326 + inSlope: 0.48779544 + outSlope: 0.48779544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.1535834 + inSlope: 0.19873402 + outSlope: 0.19873402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.15659432 + inSlope: 0.015897669 + outSlope: 0.015897669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.15252356 + inSlope: 0.56242627 + outSlope: 0.56242627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.11909924 + inSlope: 1.4203794 + outSlope: 1.4203794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.057831604 + inSlope: 1.9309244 + outSlope: 1.9309244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.009629077 + inSlope: 1.9283514 + outSlope: 1.9283514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.07072518 + inSlope: 1.5441928 + outSlope: 1.5441928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.11257526 + inSlope: 0.9031621 + outSlope: 0.9031621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10338282 + inSlope: -0.9731933 + outSlope: -0.9731933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.06167192 + inSlope: -1.535759 + outSlope: -1.535759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0009988571 + inSlope: -2.0755866 + outSlope: -2.0755866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07670051 + inSlope: -2.3835905 + outSlope: -2.3835905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1579071 + inSlope: -2.1593294 + outSlope: -2.1593294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.25727022 + inSlope: -0.6401229 + outSlope: -0.6401229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.26333067 + inSlope: 0.19455504 + outSlope: 0.19455504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.21677867 + inSlope: 0.7434794 + outSlope: 0.7434794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.18028335 + inSlope: 0.39977616 + outSlope: 0.39977616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.16808283 + inSlope: 0.3660153 + outSlope: 0.3660153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16748919 + inSlope: 0.08784547 + outSlope: 0.08784547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.164561 + inSlope: -0.15849239 + outSlope: -0.15849239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.21086363 + inSlope: -1.2173443 + outSlope: -1.2173443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.3155949 + inSlope: -1.5770291 + outSlope: -1.5770291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.3853833 + inSlope: -0.042345375 + outSlope: -0.042345375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.36716995 + inSlope: 1.1928892 + outSlope: 1.1928892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.30585736 + inSlope: 2.2585378 + outSlope: 2.2585378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.12567836 + inSlope: 2.358301 + outSlope: 2.358301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.059380643 + inSlope: 1.3812497 + outSlope: 1.3812497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.033595 + inSlope: 0.16053732 + outSlope: 0.16053732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.048678156 + inSlope: -0.86721283 + outSlope: -0.86721283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.09140915 + inSlope: -1.4828074 + outSlope: -1.4828074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.14753199 + inSlope: -1.6435308 + outSlope: -1.6435308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.23861416 + inSlope: -0.81227314 + outSlope: -0.81227314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.2551295 + inSlope: -0.11888032 + outSlope: -0.11888032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.19355316 + inSlope: 0.8348385 + outSlope: 0.8348385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.1677181 + inSlope: 0.77505136 + outSlope: 0.77505136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11832998 + inSlope: -1.1045414 + outSlope: -1.1045414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.08151193 + inSlope: -0.9495707 + outSlope: -0.9495707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.03569148 + inSlope: 0.059461 + outSlope: 0.059461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.043736603 + inSlope: 0.32030475 + outSlope: 0.32030475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.057045136 + inSlope: 0.41695845 + outSlope: 0.41695845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.07153384 + inSlope: 0.33041257 + outSlope: 0.33041257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.07907264 + inSlope: 0.22791179 + outSlope: 0.22791179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.086727954 + inSlope: 0.22083612 + outSlope: 0.22083612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10337377 + inSlope: 0.34597796 + outSlope: 0.34597796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.14493741 + inSlope: 0.3268224 + outSlope: 0.3268224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.16808093 + inSlope: 0.2260778 + outSlope: 0.2260778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.17663881 + inSlope: 0.15167972 + outSlope: 0.15167972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.17098293 + inSlope: -0.42392737 + outSlope: -0.42392737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11930654 + inSlope: -0.91873604 + outSlope: -0.91873604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2949023 + inSlope: -0.09804278 + outSlope: -0.09804278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.28192997 + inSlope: -0.34066868 + outSlope: -0.34066868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.23384929 + inSlope: -0.5321949 + outSlope: -0.5321949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.20610271 + inSlope: -0.22586057 + outSlope: -0.22586057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.19812648 + inSlope: -0.14965689 + outSlope: -0.14965689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.16719149 + inSlope: -0.016183209 + outSlope: -0.016183209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.19838853 + inSlope: 0.58126193 + outSlope: 0.58126193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.2812843 + inSlope: 0.441793 + outSlope: 0.441793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.29356042 + inSlope: 0.3682831 + outSlope: 0.3682831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.81145495 + inSlope: 0.4318517 + outSlope: 0.4318517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.7970599 + inSlope: 1.068069 + outSlope: 1.068069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.45607406 + inSlope: 2.7800188 + outSlope: 2.7800188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.37098575 + inSlope: 2.032485 + outSlope: 2.032485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.32057503 + inSlope: 1.0450621 + outSlope: 1.0450621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.2965171 + inSlope: 0.08167238 + outSlope: 0.08167238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.29045156 + inSlope: 0.23480582 + outSlope: 0.23480582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.2788055 + inSlope: -0.5175331 + outSlope: -0.5175331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.30793065 + inSlope: -1.211791 + outSlope: -1.211791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.41793442 + inSlope: -1.7520096 + outSlope: -1.7520096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.5412391 + inSlope: -2.1327605 + outSlope: -2.1327605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.7706507 + inSlope: -1.6950555 + outSlope: -1.6950555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.81314147 + inSlope: -1.2747223 + outSlope: -1.2747223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.8364449 + inSlope: 3.1199346 + outSlope: 3.1199346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.7324471 + inSlope: 3.9613006 + outSlope: 3.9613006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.371072 + inSlope: 6.131179 + outSlope: 6.131179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.16361289 + inSlope: 5.519516 + outSlope: 5.519516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0031042905 + inSlope: 3.0128093 + outSlope: 3.0128093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.037241064 + inSlope: 0.34400776 + outSlope: 0.34400776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.019829577 + inSlope: -1.7760985 + outSlope: -1.7760985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.08116549 + inSlope: -4.027424 + outSlope: -4.027424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.24866535 + inSlope: -4.9561853 + outSlope: -4.9561853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.41157785 + inSlope: -4.177967 + outSlope: -4.177967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.52719647 + inSlope: -2.4678345 + outSlope: -2.4678345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.56104666 + inSlope: 1.0545213 + outSlope: 1.0545213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.45001882 + inSlope: 1.1643841 + outSlope: 1.1643841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.4531851 + inSlope: -1.4192585 + outSlope: -1.4192585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.6994543 + inSlope: -2.3700047 + outSlope: -2.3700047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.8156966 + inSlope: -0.9859393 + outSlope: -0.9859393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.8358611 + inSlope: -0.6049342 + outSlope: -0.6049342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09542188 + inSlope: 3.27899 + outSlope: 3.27899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.3053548 + inSlope: 2.7823572 + outSlope: 2.7823572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.5049041 + inSlope: 1.0329347 + outSlope: 1.0329347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5125044 + inSlope: -1.0318383 + outSlope: -1.0318383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.3718144 + inSlope: -2.768622 + outSlope: -2.768622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.27401212 + inSlope: -2.8321495 + outSlope: -2.8321495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.18300445 + inSlope: -2.6131043 + outSlope: -2.6131043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.099805094 + inSlope: -2.561955 + outSlope: -2.561955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.012207398 + inSlope: -2.8066597 + outSlope: -2.8066597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.08730553 + inSlope: -2.9838579 + outSlope: -2.9838579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.18671636 + inSlope: -2.5649855 + outSlope: -2.5649855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.25830454 + inSlope: -1.4063791 + outSlope: -1.4063791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.28047505 + inSlope: 0.21161568 + outSlope: 0.21161568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.17252938 + inSlope: 2.3386972 + outSlope: 2.3386972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.08828375 + inSlope: 2.4067879 + outSlope: 2.4067879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.01207688 + inSlope: 2.0942745 + outSlope: 2.0942745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.051334564 + inSlope: 1.5988413 + outSlope: 1.5988413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.094512515 + inSlope: 1.2953374 + outSlope: 1.2953374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22638653 + inSlope: -0.4870775 + outSlope: -0.4870775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.24262245 + inSlope: 0.20366593 + outSlope: 0.20366593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.2128088 + inSlope: 1.4150727 + outSlope: 1.4150727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.14828426 + inSlope: 2.4343255 + outSlope: 2.4343255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.050520428 + inSlope: 2.8496444 + outSlope: 2.8496444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.041692026 + inSlope: 2.3065426 + outSlope: 2.3065426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.103249095 + inSlope: 1.0098662 + outSlope: 1.0098662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.10901646 + inSlope: -0.5546747 + outSlope: -0.5546747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.06627078 + inSlope: -1.4972861 + outSlope: -1.4972861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0091973925 + inSlope: -1.8621587 + outSlope: -1.8621587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.057873122 + inSlope: -1.740955 + outSlope: -1.740955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.13781266 + inSlope: -0.6255576 + outSlope: -0.6255576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.14857014 + inSlope: 0.17096646 + outSlope: 0.17096646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.1264149 + inSlope: 1.2370799 + outSlope: 1.2370799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0660982 + inSlope: 2.025775 + outSlope: 2.025775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.008636778 + inSlope: 1.728404 + outSlope: 1.728404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.04912883 + inSlope: 0.76615286 + outSlope: 0.76615286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.03725227 + inSlope: -1.1882348 + outSlope: -1.1882348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.019501954 + inSlope: -2.190779 + outSlope: -2.190779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.10879968 + inSlope: -2.4632506 + outSlope: -2.4632506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.18371867 + inSlope: -1.7496572 + outSlope: -1.7496572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.22544345 + inSlope: -1.2517425 + outSlope: -1.2517425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.30223885 + inSlope: 2.632995 + outSlope: 2.632995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.5757004 + inSlope: 2.7595441 + outSlope: 2.7595441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.7628293 + inSlope: -1.0734228 + outSlope: -1.0734228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.3573216 + inSlope: -3.5732503 + outSlope: -3.5732503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.14575866 + inSlope: -2.5150313 + outSlope: -2.5150313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.019633371 + inSlope: -1.4321966 + outSlope: -1.4321966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.021479623 + inSlope: -0.99662906 + outSlope: -0.99662906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.04680862 + inSlope: -0.37864742 + outSlope: -0.37864742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.017332267 + inSlope: 1.3782234 + outSlope: 1.3782234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.04515872 + inSlope: 2.1452463 + outSlope: 2.1452463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.12568416 + inSlope: 2.514738 + outSlope: 2.514738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.30282688 + inSlope: 2.700567 + outSlope: 2.700567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09487418 + inSlope: -0.11173702 + outSlope: -0.11173702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09859875 + inSlope: -0.34378687 + outSlope: -0.34378687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.11779331 + inSlope: -0.9696642 + outSlope: -0.9696642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.16324304 + inSlope: -1.6749058 + outSlope: -1.6749058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.33117855 + inSlope: -0.34592336 + outSlope: -0.34592336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.20731099 + inSlope: 1.7866025 + outSlope: 1.7866025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.03658565 + inSlope: 1.5867846 + outSlope: 1.5867846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.014737022 + inSlope: 1.3781784 + outSlope: 1.3781784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.055292904 + inSlope: 0.963354 + outSlope: 0.963354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0789606 + inSlope: 0.32779825 + outSlope: 0.32779825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0771461 + inSlope: -0.52584153 + outSlope: -0.52584153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.043904465 + inSlope: -1.4045303 + outSlope: -1.4045303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.01648923 + inSlope: -1.8593776 + outSlope: -1.8593776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.08005404 + inSlope: -1.5674565 + outSlope: -1.5674565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.12098634 + inSlope: -0.79802036 + outSlope: -0.79802036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.13325536 + inSlope: 0.013823658 + outSlope: 0.013823658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.12006479 + inSlope: 0.6054182 + outSlope: 0.6054182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.09289414 + inSlope: 0.81511885 + outSlope: 0.81511885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23632726 + inSlope: 1.627989 + outSlope: 1.627989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.18206096 + inSlope: 0.6945444 + outSlope: 0.6945444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.1900243 + inSlope: -0.9792804 + outSlope: -0.9792804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.32713982 + inSlope: -2.3390284 + outSlope: -2.3390284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.4570347 + inSlope: -1.1276679 + outSlope: -1.1276679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.4450534 + inSlope: 0.9077258 + outSlope: 0.9077258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.36965275 + inSlope: 0.1128645 + outSlope: 0.1128645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.44660375 + inSlope: -1.5437646 + outSlope: -1.5437646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.61243117 + inSlope: 0.62459064 + outSlope: 0.62459064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.475277 + inSlope: 3.1303391 + outSlope: 3.1303391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.35628048 + inSlope: 3.5814826 + outSlope: 3.5814826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.23651151 + inSlope: 3.593066 + outSlope: 3.593066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06096051 + inSlope: 0.7281346 + outSlope: 0.7281346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.14526129 + inSlope: 0.3914888 + outSlope: 0.3914888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.15986699 + inSlope: 0.09543319 + outSlope: 0.09543319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.15366696 + inSlope: -0.44718754 + outSlope: -0.44718754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0982224 + inSlope: -1.1417563 + outSlope: -1.1417563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.05558222 + inSlope: -1.2773609 + outSlope: -1.2773609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.013064965 + inSlope: -1.0863376 + outSlope: -1.0863376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.01684032 + inSlope: -0.6788472 + outSlope: -0.6788472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.03219151 + inSlope: -0.28327063 + outSlope: -0.28327063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.035725024 + inSlope: -0.051013935 + outSlope: -0.051013935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.035592437 + inSlope: -0.073858425 + outSlope: -0.073858425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.040648922 + inSlope: -0.24227795 + outSlope: -0.24227795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.051744293 + inSlope: -0.26427165 + outSlope: -0.26427165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.058267027 + inSlope: 0.07536305 + outSlope: 0.07536305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.046720106 + inSlope: 0.57658446 + outSlope: 0.57658446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.019828053 + inSlope: 0.9738001 + outSlope: 0.9738001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.01819989 + inSlope: 1.2181919 + outSlope: 1.2181919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.061384737 + inSlope: 1.2955443 + outSlope: 1.2955443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.057400223 + inSlope: 0.057425085 + outSlope: 0.057425085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.055486053 + inSlope: 0.06898446 + outSlope: 0.06898446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.051237993 + inSlope: 0.007429043 + outSlope: 0.007429043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.05230599 + inSlope: 0.0013056211 + outSlope: 0.0013056211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.05115095 + inSlope: 0.18999952 + outSlope: 0.18999952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.03963935 + inSlope: 0.5714839 + outSlope: 0.5714839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.013052019 + inSlope: 0.9586785 + outSlope: 0.9586785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.024272546 + inSlope: 1.0882524 + outSlope: 1.0882524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.05949814 + inSlope: 0.8183117 + outSlope: 0.8183117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.07882666 + inSlope: 0.22237325 + outSlope: 0.22237325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.07432302 + inSlope: -0.38221088 + outSlope: -0.38221088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.053345915 + inSlope: -0.6770474 + outSlope: -0.6770474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.029186515 + inSlope: -0.59824926 + outSlope: -0.59824926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.013462633 + inSlope: -0.2830279 + outSlope: -0.2830279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.010317992 + inSlope: 0.003158059 + outSlope: 0.003158059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.013673176 + inSlope: 0.0971687 + outSlope: 0.0971687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.01679591 + inSlope: -0.027867887 + outSlope: -0.027867887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.011815324 + inSlope: -0.2734806 + outSlope: -0.2734806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.001436135 + inSlope: -0.47097194 + outSlope: -0.47097194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.019582799 + inSlope: -0.5318608 + outSlope: -0.5318608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.03689352 + inSlope: -0.45345747 + outSlope: -0.45345747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0498133 + inSlope: -0.30949104 + outSlope: -0.30949104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.05752625 + inSlope: -0.23138829 + outSlope: -0.23138829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7796511 + inSlope: -0.25019467 + outSlope: -0.25019467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.7798924 + inSlope: -0.09789705 + outSlope: -0.09789705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.77980155 + inSlope: 0.4841531 + outSlope: 0.4841531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.7331388 + inSlope: 0.15350015 + outSlope: 0.15350015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.70989543 + inSlope: 0.7149896 + outSlope: 0.7149896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.6199381 + inSlope: 0.10150504 + outSlope: 0.10150504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.73594826 + inSlope: -1.5371778 + outSlope: -1.5371778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.7816454 + inSlope: -1.3709134 + outSlope: -1.3709134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3385047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.3385047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2338543 + inSlope: 0.00026643276 + outSlope: 0.00026643276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.23366353 + inSlope: 0.00025972724 + outSlope: 0.00025972724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.22988391 + inSlope: 0.11312967 + outSlope: 0.11312967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5763953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5763953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90445423 + inSlope: 0.00014841555 + outSlope: 0.00014841555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.9042847 + inSlope: 0.00021278857 + outSlope: 0.00021278857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.89945054 + inSlope: 0.14483738 + outSlope: 0.14483738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.809624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.809624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4715216 + inSlope: 0.0000125169745 + outSlope: 0.0000125169745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.4715285 + inSlope: 0.000009387728 + outSlope: 0.000009387728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.46793687 + inSlope: -0.10775319 + outSlope: -0.10775319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12716088 + inSlope: -0.0033290682 + outSlope: -0.0033290682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.124793045 + inSlope: -0.0033393502 + outSlope: -0.0033393502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.12468379 + inSlope: -0.07972826 + outSlope: -0.07972826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11947782 + inSlope: -0.15617886 + outSlope: -0.15617886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46572554 + inSlope: 0.0010353327 + outSlope: 0.0010353327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.46644664 + inSlope: 0.0010357798 + outSlope: 0.0010357798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.46161538 + inSlope: -0.14597821 + outSlope: -0.14597821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011478933 + inSlope: -0.0047225314 + outSlope: -0.0047225314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.008173459 + inSlope: -0.004727324 + outSlope: -0.004727324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.008015691 + inSlope: -0.027854834 + outSlope: -0.027854834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.006316469 + inSlope: -0.050976627 + outSlope: -0.050976627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.338452 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.338452 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2338398 + inSlope: 0.0011372565 + outSlope: 0.0011372565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.23303862 + inSlope: 0.0011562556 + outSlope: 0.0011562556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.23546173 + inSlope: -0.07384384 + outSlope: -0.07384384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9042923 + inSlope: 0.006090402 + outSlope: 0.006090402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.89998364 + inSlope: 0.006138683 + outSlope: 0.006138683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.90745103 + inSlope: -0.23021023 + outSlope: -0.23021023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12709586 + inSlope: -0.0062982733 + outSlope: -0.0062982733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.12269266 + inSlope: -0.0062586 + outSlope: -0.0062586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.12248315 + inSlope: 0.08877188 + outSlope: 0.08877188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12861079 + inSlope: 0.18382907 + outSlope: 0.18382907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865395 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.80865395 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011404465 + inSlope: -0.000413591 + outSlope: -0.000413591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.011108566 + inSlope: -0.0004205061 + outSlope: -0.0004205061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.011095027 + inSlope: 0.017474143 + outSlope: 0.017474143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.01227351 + inSlope: 0.035354447 + outSlope: 0.035354447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.7666667 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Backward.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Backward.anim.meta new file mode 100644 index 0000000..7881e39 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Backward.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 306181288ee2f4549a9887a8e1de380e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Backward.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Forward.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Forward.anim new file mode 100644 index 0000000..d582a5f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Forward.anim @@ -0,0 +1,17004 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Run_Forward + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011472461 + inSlope: -0.060101036 + outSlope: -0.060101036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.009469093 + inSlope: -0.0461426 + outSlope: -0.0461426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.008396287 + inSlope: -0.01615067 + outSlope: -0.01615067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0083923815 + inSlope: -0.000602156 + outSlope: -0.000602156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.008356144 + inSlope: 0.039532047 + outSlope: 0.039532047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.011027851 + inSlope: 0.068626955 + outSlope: 0.068626955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.012931274 + inSlope: 0.04865413 + outSlope: 0.04865413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0142714605 + inSlope: 0.014648452 + outSlope: 0.014648452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.013907838 + inSlope: -0.011626888 + outSlope: -0.011626888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.013496335 + inSlope: -0.013859855 + outSlope: -0.013859855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.012983847 + inSlope: 0.005248776 + outSlope: 0.005248776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.015743254 + inSlope: 0.064010434 + outSlope: 0.064010434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.018113617 + inSlope: 0.0928483 + outSlope: 0.0928483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.02193314 + inSlope: 0.08426422 + outSlope: 0.08426422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.02373123 + inSlope: 0.018944055 + outSlope: 0.018944055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.021738429 + inSlope: -0.032683797 + outSlope: -0.032683797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.021017155 + inSlope: -0.0137783475 + outSlope: -0.0137783475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.020819873 + inSlope: -0.017115578 + outSlope: -0.017115578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.019876117 + inSlope: -0.03424616 + outSlope: -0.03424616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.018536795 + inSlope: -0.06886223 + outSlope: -0.06886223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.015285304 + inSlope: -0.10610902 + outSlope: -0.10610902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.01146286 + inSlope: -0.11467323 + outSlope: -0.11467323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.82557523 + inSlope: 0.8505123 + outSlope: 0.8505123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9080943 + inSlope: 0.45570913 + outSlope: 0.45570913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.9104108 + inSlope: -0.501414 + outSlope: -0.501414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.8281878 + inSlope: -0.09793199 + outSlope: -0.09793199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.85374206 + inSlope: 0.3289955 + outSlope: 0.3289955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.8736805 + inSlope: -0.6571411 + outSlope: -0.6571411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.79731834 + inSlope: -0.18561128 + outSlope: -0.18561128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.82477295 + inSlope: 0.7112372 + outSlope: 0.7112372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09584797 + inSlope: 2.2463465 + outSlope: 2.2463465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.1707262 + inSlope: 2.225027 + outSlope: 2.225027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.24418312 + inSlope: 2.2969973 + outSlope: 2.2969973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.32385936 + inSlope: 2.384242 + outSlope: 2.384242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.4892129 + inSlope: 2.6774955 + outSlope: 2.6774955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.8447097 + inSlope: 2.5959735 + outSlope: 2.5959735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 1.5086745 + inSlope: 3.093523 + outSlope: 3.093523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 2.202349 + inSlope: 3.0744026 + outSlope: 3.0744026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22427142 + inSlope: -0.323832 + outSlope: -0.323832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.2052474 + inSlope: -0.22023839 + outSlope: -0.22023839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.19879445 + inSlope: -0.08150002 + outSlope: -0.08150002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.19981407 + inSlope: -0.05083368 + outSlope: -0.05083368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.18957531 + inSlope: -0.05635854 + outSlope: -0.05635854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.1916483 + inSlope: 0.0013366342 + outSlope: 0.0013366342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.19269022 + inSlope: 0.24443285 + outSlope: 0.24443285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.20595995 + inSlope: 0.3238057 + outSlope: 0.3238057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.2133557 + inSlope: -0.10939613 + outSlope: -0.10939613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.2024227 + inSlope: -0.062199757 + outSlope: -0.062199757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.20283754 + inSlope: 0.08974643 + outSlope: 0.08974643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.21010798 + inSlope: -0.01922703 + outSlope: -0.01922703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.20622416 + inSlope: 0.11864944 + outSlope: 0.11864944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.22703212 + inSlope: 0.22341092 + outSlope: 0.22341092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.22427133 + inSlope: -0.16970053 + outSlope: -0.16970053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0026601255 + inSlope: -0.8637084 + outSlope: -0.8637084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.031450406 + inSlope: -0.7536353 + outSlope: -0.7536353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.05290248 + inSlope: -0.7742989 + outSlope: -0.7742989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.08307034 + inSlope: -0.74368465 + outSlope: -0.74368465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.10248146 + inSlope: -0.3289639 + outSlope: -0.3289639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.10500126 + inSlope: -0.0038531236 + outSlope: -0.0038531236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.102738336 + inSlope: 0.099870145 + outSlope: 0.099870145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.09834325 + inSlope: 0.37123007 + outSlope: 0.37123007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.07798967 + inSlope: 0.6834464 + outSlope: 0.6834464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.052780163 + inSlope: 0.65888834 + outSlope: 0.65888834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.03406378 + inSlope: 0.55939853 + outSlope: 0.55939853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.01548693 + inSlope: 0.6616354 + outSlope: 0.6616354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.010045269 + inSlope: 0.81551635 + outSlope: 0.81551635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.038880847 + inSlope: 0.7783809 + outSlope: 0.7783809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.08083125 + inSlope: 0.51527387 + outSlope: 0.51527387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.09628891 + inSlope: 0.27390426 + outSlope: 0.27390426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.09909155 + inSlope: -0.09695631 + outSlope: -0.09695631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.08982517 + inSlope: -0.28996423 + outSlope: -0.28996423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0797606 + inSlope: -0.2838735 + outSlope: -0.2838735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.07090027 + inSlope: -0.29249614 + outSlope: -0.29249614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.060260862 + inSlope: -0.5416587 + outSlope: -0.5416587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.034789704 + inSlope: -0.9438135 + outSlope: -0.9438135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0026600435 + inSlope: -1.1234915 + outSlope: -1.1234915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.042077083 + inSlope: 0.05545355 + outSlope: 0.05545355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.04022863 + inSlope: 0.023482403 + outSlope: 0.023482403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04051159 + inSlope: 0.000071245246 + outSlope: 0.000071245246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.04022388 + inSlope: 0.10537829 + outSlope: 0.10537829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.03348637 + inSlope: 0.27978525 + outSlope: 0.27978525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.021571532 + inSlope: 0.37004113 + outSlope: 0.37004113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.008816956 + inSlope: 0.34824058 + outSlope: 0.34824058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0016445108 + inSlope: 0.28924298 + outSlope: 0.28924298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.01046591 + inSlope: 0.2304844 + outSlope: 0.2304844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.017010137 + inSlope: 0.17287269 + outSlope: 0.17287269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.021990756 + inSlope: 0.11906354 + outSlope: 0.11906354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.024947707 + inSlope: 0.020410515 + outSlope: 0.020410515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.023351455 + inSlope: -0.0909172 + outSlope: -0.0909172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.018886559 + inSlope: -0.110337004 + outSlope: -0.110337004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.015995655 + inSlope: -0.069140404 + outSlope: -0.069140404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0142772 + inSlope: -0.059984162 + outSlope: -0.059984162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.011996711 + inSlope: -0.14973506 + outSlope: -0.14973506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0042948546 + inSlope: -0.35175437 + outSlope: -0.35175437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.011453571 + inSlope: -0.5001682 + outSlope: -0.5001682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.02904969 + inSlope: -0.43655023 + outSlope: -0.43655023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.046057418 + inSlope: -0.07922032 + outSlope: -0.07922032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.042077016 + inSlope: 0.112837866 + outSlope: 0.112837866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97361434 + inSlope: 0.05995452 + outSlope: 0.05995452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9786907 + inSlope: 0.047528747 + outSlope: 0.047528747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.97481585 + inSlope: -0.01395199 + outSlope: -0.01395199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.97361434 + inSlope: 0.06328041 + outSlope: 0.06328041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09620812 + inSlope: 0.18199211 + outSlope: 0.18199211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09014171 + inSlope: 0.39181572 + outSlope: 0.39181572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.07008707 + inSlope: 1.054021 + outSlope: 1.054021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.019873638 + inSlope: 1.5547036 + outSlope: 1.5547036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.033559844 + inSlope: 1.0787983 + outSlope: 1.0787983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.052046243 + inSlope: 0.1097559 + outSlope: 0.1097559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0408769 + inSlope: -0.566679 + outSlope: -0.566679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.014267637 + inSlope: -0.9562473 + outSlope: -0.9562473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.022872921 + inSlope: -0.9671358 + outSlope: -0.9671358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.05020808 + inSlope: -0.6453151 + outSlope: -0.6453151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.065893926 + inSlope: -0.36256355 + outSlope: -0.36256355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.07437898 + inSlope: -0.078726575 + outSlope: -0.078726575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.07114236 + inSlope: 0.29556063 + outSlope: 0.29556063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.05467494 + inSlope: 0.56817216 + outSlope: 0.56817216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.03326422 + inSlope: 0.6643808 + outSlope: 0.6643808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.010382905 + inSlope: 0.7214483 + outSlope: 0.7214483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.014832333 + inSlope: 0.6695946 + outSlope: 0.6695946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.03425677 + inSlope: 0.38145366 + outSlope: 0.38145366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.040262587 + inSlope: -0.11011507 + outSlope: -0.11011507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.02691575 + inSlope: -0.6668802 + outSlope: -0.6668802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0041960734 + inSlope: -0.9928758 + outSlope: -0.9928758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.03927597 + inSlope: -1.0589757 + outSlope: -1.0589757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.07479445 + inSlope: -0.85396326 + outSlope: -0.85396326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.09620684 + inSlope: -0.6423711 + outSlope: -0.6423711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7041733 + inSlope: -0.9586322 + outSlope: -0.9586322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.76297647 + inSlope: 0.07948371 + outSlope: 0.07948371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.7587489 + inSlope: -0.36566454 + outSlope: -0.36566454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.8128896 + inSlope: -0.1777214 + outSlope: -0.1777214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.8322609 + inSlope: -0.88353884 + outSlope: -0.88353884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.91655964 + inSlope: -1.025253 + outSlope: -1.025253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.94011766 + inSlope: 0.6030772 + outSlope: 0.6030772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.9123638 + inSlope: 1.3785317 + outSlope: 1.3785317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.7021405 + inSlope: 1.5026609 + outSlope: 1.5026609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.67451596 + inSlope: -0.5094218 + outSlope: -0.5094218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.7041743 + inSlope: -0.8897488 + outSlope: -0.8897488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.009326107 + inSlope: 3.0248263 + outSlope: 3.0248263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.09150144 + inSlope: 2.737034 + outSlope: 2.737034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.17314284 + inSlope: 3.3625035 + outSlope: 3.3625035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.31566837 + inSlope: 3.859735 + outSlope: 3.859735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.43045852 + inSlope: 2.5587149 + outSlope: 2.5587149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.48624936 + inSlope: 0.7257124 + outSlope: 0.7257124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.47883934 + inSlope: -0.76657355 + outSlope: -0.76657355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.43514445 + inSlope: -1.9617776 + outSlope: -1.9617776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.34805417 + inSlope: -2.5509682 + outSlope: -2.5509682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.26507992 + inSlope: -2.1789567 + outSlope: -2.1789567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2027904 + inSlope: -1.8967404 + outSlope: -1.8967404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.06529551 + inSlope: -2.3778563 + outSlope: -2.3778563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.019893251 + inSlope: -2.5660636 + outSlope: -2.5660636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.105775386 + inSlope: -2.3442903 + outSlope: -2.3442903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1761792 + inSlope: -1.8427651 + outSlope: -1.8427651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.22862637 + inSlope: -1.5790714 + outSlope: -1.5790714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.28145072 + inSlope: -1.4730186 + outSlope: -1.4730186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.34135175 + inSlope: 0.32414564 + outSlope: 0.32414564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.22763053 + inSlope: 2.6476874 + outSlope: 2.6476874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.12870549 + inSlope: 3.2745485 + outSlope: 3.2745485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.009327288 + inSlope: 3.5813432 + outSlope: 3.5813432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.340909 + inSlope: 2.4758558 + outSlope: 2.4758558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.42343754 + inSlope: 2.1708672 + outSlope: 2.1708672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.4856335 + inSlope: 2.1578197 + outSlope: 2.1578197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.7064317 + inSlope: -1.1569237 + outSlope: -1.1569237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6274511 + inSlope: -1.717956 + outSlope: -1.717956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.5725015 + inSlope: -0.21992238 + outSlope: -0.21992238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.5174993 + inSlope: -1.3514544 + outSlope: -1.3514544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.46060842 + inSlope: -1.570807 + outSlope: -1.570807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.35399657 + inSlope: -2.0285459 + outSlope: -2.0285459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.2775424 + inSlope: -2.5977917 + outSlope: -2.5977917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.18081048 + inSlope: -2.8870292 + outSlope: -2.8870292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.085073814 + inSlope: -1.7808166 + outSlope: -1.7808166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.062089324 + inSlope: 0.8534136 + outSlope: 0.8534136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.14196815 + inSlope: 2.774054 + outSlope: 2.774054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.24702623 + inSlope: 2.98412 + outSlope: 2.98412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.34090945 + inSlope: 2.8164942 + outSlope: 2.8164942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6312957 + inSlope: 0.89778 + outSlope: 0.89778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.6013697 + inSlope: 1.1883249 + outSlope: 1.1883249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.552074 + inSlope: 2.4531953 + outSlope: 2.4531953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.4378233 + inSlope: 3.2734928 + outSlope: 3.2734928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.33384115 + inSlope: 1.9429467 + outSlope: 1.9429467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.33310655 + inSlope: -1.2330194 + outSlope: -1.2330194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.39049482 + inSlope: -0.9903552 + outSlope: -0.9903552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.39913023 + inSlope: 0.008960813 + outSlope: 0.008960813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.37364125 + inSlope: 0.46231273 + outSlope: 0.46231273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.3590766 + inSlope: 0.43507338 + outSlope: 0.43507338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.3545087 + inSlope: -0.9338424 + outSlope: -0.9338424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.4068925 + inSlope: -1.2437506 + outSlope: -1.2437506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.43742537 + inSlope: -0.065476626 + outSlope: -0.065476626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.41125757 + inSlope: 0.18584117 + outSlope: 0.18584117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.42503595 + inSlope: -0.6342166 + outSlope: -0.6342166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.5064103 + inSlope: -1.8722029 + outSlope: -1.8722029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.57835215 + inSlope: -1.8409462 + outSlope: -1.8409462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.62914 + inSlope: -0.9716315 + outSlope: -0.9716315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6312955 + inSlope: 0.35496324 + outSlope: 0.35496324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.34345162 + inSlope: 1.6675972 + outSlope: 1.6675972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.44811636 + inSlope: 1.5001736 + outSlope: 1.5001736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.49904978 + inSlope: 0.44727743 + outSlope: 0.44727743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.44318718 + inSlope: -0.50076085 + outSlope: -0.50076085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.4445508 + inSlope: 1.5924956 + outSlope: 1.5924956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.54935354 + inSlope: 2.028434 + outSlope: 2.028434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.57977974 + inSlope: 0.6903497 + outSlope: 0.6903497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6122719 + inSlope: 0.46205705 + outSlope: 0.46205705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.6373183 + inSlope: -0.015038401 + outSlope: -0.015038401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.56451833 + inSlope: -2.957219 + outSlope: -2.957219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.4280303 + inSlope: -3.9043741 + outSlope: -3.9043741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.30422676 + inSlope: -2.7404175 + outSlope: -2.7404175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.24533567 + inSlope: -1.4398253 + outSlope: -1.4398253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.2082384 + inSlope: -0.76477814 + outSlope: -0.76477814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.19435048 + inSlope: -0.35027587 + outSlope: -0.35027587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.18488666 + inSlope: -0.014708132 + outSlope: -0.014708132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.19336995 + inSlope: 1.0520539 + outSlope: 1.0520539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.34345156 + inSlope: 2.6528385 + outSlope: 2.6528385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6060429 + inSlope: 1.7544346 + outSlope: 1.7544346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.5084942 + inSlope: 0.90426064 + outSlope: 0.90426064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.48727772 + inSlope: 0.3008535 + outSlope: 0.3008535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.4884373 + inSlope: 0.400883 + outSlope: 0.400883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.4605522 + inSlope: 0.74756956 + outSlope: 0.74756956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.43859932 + inSlope: 1.0596285 + outSlope: 1.0596285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.38991028 + inSlope: 0.6886777 + outSlope: 0.6886777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.39268747 + inSlope: -0.11755453 + outSlope: -0.11755453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.39774725 + inSlope: -0.0674969 + outSlope: -0.0674969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.40052816 + inSlope: -0.2590565 + outSlope: -0.2590565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.4144577 + inSlope: -0.95812917 + outSlope: -0.95812917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.55099684 + inSlope: -3.1527033 + outSlope: -3.1527033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.78294325 + inSlope: -2.2698755 + outSlope: -2.2698755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.8259087 + inSlope: -0.96827275 + outSlope: -0.96827275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.83578634 + inSlope: 0.8304615 + outSlope: 0.8304615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.7393485 + inSlope: 1.7048347 + outSlope: 1.7048347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.60604274 + inSlope: 2.1729684 + outSlope: 2.1729684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.073306486 + inSlope: -0.1578538 + outSlope: -0.1578538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06804469 + inSlope: -0.19313183 + outSlope: -0.19313183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.06043103 + inSlope: -0.42315257 + outSlope: -0.42315257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.039834518 + inSlope: -0.74932146 + outSlope: -0.74932146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.010476263 + inSlope: -0.88230664 + outSlope: -0.88230664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.018985922 + inSlope: -0.841118 + outSlope: -0.841118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.04559828 + inSlope: -0.55860084 + outSlope: -0.55860084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.05622599 + inSlope: 0.14868458 + outSlope: 0.14868458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.035685975 + inSlope: 0.8669842 + outSlope: 0.8669842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0015729562 + inSlope: 1.0868137 + outSlope: 1.0868137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.03676827 + inSlope: 0.9437642 + outSlope: 0.9437642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.07665786 + inSlope: -0.009655669 + outSlope: -0.009655669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.063846864 + inSlope: -0.72853684 + outSlope: -0.72853684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.028088743 + inSlope: -1.1519332 + outSlope: -1.1519332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.012948639 + inSlope: -1.3046752 + outSlope: -1.3046752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.058889605 + inSlope: -0.9218857 + outSlope: -0.9218857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.07440774 + inSlope: 0.27457055 + outSlope: 0.27457055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.040584948 + inSlope: 1.1703675 + outSlope: 1.1703675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0036167586 + inSlope: 1.1657743 + outSlope: 1.1657743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.03713335 + inSlope: 0.8309847 + outSlope: 0.8309847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.059015725 + inSlope: 0.53621864 + outSlope: 0.53621864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.07288127 + inSlope: 0.21438542 + outSlope: 0.21438542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.07330807 + inSlope: 0.012804185 + outSlope: 0.012804185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.85110945 + inSlope: -1.7347364 + outSlope: -1.7347364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.95039845 + inSlope: -0.9423028 + outSlope: -0.9423028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.988539 + inSlope: -0.18029276 + outSlope: -0.18029276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.9407413 + inSlope: 1.6170375 + outSlope: 1.6170375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.6875048 + inSlope: 0.7643554 + outSlope: 0.7643554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.70104825 + inSlope: -0.8435116 + outSlope: -0.8435116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.76373816 + inSlope: 0.22705935 + outSlope: 0.22705935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.721554 + inSlope: 0.20775464 + outSlope: 0.20775464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.7413022 + inSlope: -0.17603764 + outSlope: -0.17603764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.7508737 + inSlope: -0.74246 + outSlope: -0.74246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.851109 + inSlope: -1.8680462 + outSlope: -1.8680462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10643555 + inSlope: -1.8903701 + outSlope: -1.8903701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.043423213 + inSlope: -1.9107525 + outSlope: -1.9107525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.02094796 + inSlope: -1.9790418 + outSlope: -1.9790418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.08851293 + inSlope: -1.558697 + outSlope: -1.558697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.12486111 + inSlope: -1.2720273 + outSlope: -1.2720273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.17331474 + inSlope: -1.7055764 + outSlope: -1.7055764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.23856622 + inSlope: -1.3973999 + outSlope: -1.3973999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.26647475 + inSlope: -0.65259224 + outSlope: -0.65259224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.28207237 + inSlope: 0.034253165 + outSlope: 0.034253165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.2641912 + inSlope: 1.1412714 + outSlope: 1.1412714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.20598762 + inSlope: 2.0105019 + outSlope: 2.0105019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.13015777 + inSlope: 2.576148 + outSlope: 2.576148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.03424435 + inSlope: 3.074201 + outSlope: 3.074201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.07478905 + inSlope: 3.38482 + outSlope: 3.38482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.1914103 + inSlope: 3.6684847 + outSlope: 3.6684847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.31935456 + inSlope: 3.6423554 + outSlope: 3.6423554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.43423396 + inSlope: 2.6240048 + outSlope: 2.6240048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.49428836 + inSlope: 0.69834393 + outSlope: 0.69834393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.4807903 + inSlope: -1.3944819 + outSlope: -1.3944819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.40132284 + inSlope: -2.4473085 + outSlope: -2.4473085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3176364 + inSlope: -2.238066 + outSlope: -2.238066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.25211847 + inSlope: -2.0296426 + outSlope: -2.0296426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.18232691 + inSlope: -2.1852658 + outSlope: -2.1852658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.106434084 + inSlope: -2.276783 + outSlope: -2.276783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.64016443 + inSlope: -0.27968645 + outSlope: -0.27968645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.63376296 + inSlope: 1.2054749 + outSlope: 1.2054749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.5691223 + inSlope: 1.9744492 + outSlope: 1.9744492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.502133 + inSlope: 2.916206 + outSlope: 2.916206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.3747086 + inSlope: 2.571557 + outSlope: 2.571557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.33069587 + inSlope: 1.4289765 + outSlope: 1.4289765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.27944347 + inSlope: 1.709873 + outSlope: 1.709873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.21670434 + inSlope: 1.448453 + outSlope: 1.448453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.18287995 + inSlope: 0.61261815 + outSlope: 0.61261815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.17586313 + inSlope: -0.33926302 + outSlope: -0.33926302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.20549749 + inSlope: -2.3052442 + outSlope: -2.3052442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.32954618 + inSlope: -3.210392 + outSlope: -3.210392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.41952372 + inSlope: -1.8656535 + outSlope: -1.8656535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.45392308 + inSlope: -1.288729 + outSlope: -1.288729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.54657143 + inSlope: -0.9242178 + outSlope: -0.9242178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.5670535 + inSlope: -0.5497571 + outSlope: -0.5497571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.5832219 + inSlope: -0.2323189 + outSlope: -0.2323189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.5825414 + inSlope: -0.21341197 + outSlope: -0.21341197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.61078554 + inSlope: -0.4306922 + outSlope: -0.4306922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6401648 + inSlope: -0.42007828 + outSlope: -0.42007828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.38321352 + inSlope: 0.4907718 + outSlope: 0.4907718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.39957258 + inSlope: 0.8506272 + outSlope: 0.8506272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.439922 + inSlope: 2.1867085 + outSlope: 2.1867085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.5453532 + inSlope: 2.9865642 + outSlope: 2.9865642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6390263 + inSlope: 3.1186395 + outSlope: 3.1186395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.75326246 + inSlope: 2.1482062 + outSlope: 2.1482062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.78224003 + inSlope: 0.8453847 + outSlope: 0.8453847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.80638266 + inSlope: -0.6019289 + outSlope: -0.6019289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.717596 + inSlope: -1.8541174 + outSlope: -1.8541174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.64588505 + inSlope: -2.3967657 + outSlope: -2.3967657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.48662093 + inSlope: -1.6313473 + outSlope: -1.6313473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.44905508 + inSlope: -1.6796031 + outSlope: -1.6796031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.37464747 + inSlope: -2.5427809 + outSlope: -2.5427809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.27953634 + inSlope: -1.6517807 + outSlope: -1.6517807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.26452866 + inSlope: 0.53543645 + outSlope: 0.53543645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.31523204 + inSlope: 1.3521483 + outSlope: 1.3521483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.35467187 + inSlope: 0.5178857 + outSlope: 0.5178857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3497578 + inSlope: -0.12554082 + outSlope: -0.12554082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.34630248 + inSlope: 0.15382001 + outSlope: 0.15382001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.38321298 + inSlope: 0.69601566 + outSlope: 0.69601566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.55819905 + inSlope: 0.48178372 + outSlope: 0.48178372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.51259506 + inSlope: 1.582521 + outSlope: 1.582521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.43663818 + inSlope: 2.0402248 + outSlope: 2.0402248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.37658006 + inSlope: 1.3240386 + outSlope: 1.3240386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.34836894 + inSlope: 1.3172557 + outSlope: 1.3172557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.288763 + inSlope: 1.9120585 + outSlope: 1.9120585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.22089836 + inSlope: 2.1695485 + outSlope: 2.1695485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.14412643 + inSlope: 1.632764 + outSlope: 1.632764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.112047434 + inSlope: 0.35594368 + outSlope: 0.35594368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.12039685 + inSlope: -0.3456123 + outSlope: -0.3456123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.13508825 + inSlope: -1.9985831 + outSlope: -1.9985831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.25363582 + inSlope: -4.1817636 + outSlope: -4.1817636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.4138726 + inSlope: -4.27488 + outSlope: -4.27488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.63036203 + inSlope: -2.303134 + outSlope: -2.303134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.69911534 + inSlope: 0.6808859 + outSlope: 0.6808859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.6467777 + inSlope: 1.4575108 + outSlope: 1.4575108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.60194796 + inSlope: 0.78393865 + outSlope: 0.78393865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.59079593 + inSlope: 0.2506302 + outSlope: 0.2506302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.55819887 + inSlope: 0.58822584 + outSlope: 0.58822584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.36297488 + inSlope: -0.29992548 + outSlope: -0.29992548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.35297737 + inSlope: 0.20900308 + outSlope: 0.20900308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.37690842 + inSlope: 1.2098236 + outSlope: 1.2098236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.43363228 + inSlope: 1.0158181 + outSlope: 1.0158181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.44462964 + inSlope: -0.3047763 + outSlope: -0.3047763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.41331387 + inSlope: -0.039561003 + outSlope: -0.039561003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.44199225 + inSlope: 0.7978935 + outSlope: 0.7978935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.46650678 + inSlope: 1.3358622 + outSlope: 1.3358622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.6015656 + inSlope: 1.9799783 + outSlope: 1.9799783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.66304827 + inSlope: 1.8176322 + outSlope: 1.8176322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.72274107 + inSlope: 0.82835835 + outSlope: 0.82835835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.71827215 + inSlope: -1.1674566 + outSlope: -1.1674566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.54971236 + inSlope: -2.8521252 + outSlope: -2.8521252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.34599566 + inSlope: -0.036876827 + outSlope: -0.036876827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.37704116 + inSlope: 1.0402545 + outSlope: 1.0402545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.41534597 + inSlope: 0.47929052 + outSlope: 0.47929052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.4089939 + inSlope: -0.2682584 + outSlope: -0.2682584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.362975 + inSlope: -0.51280487 + outSlope: -0.51280487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2206436 + inSlope: -0.33974153 + outSlope: -0.33974153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.23196831 + inSlope: -0.244676 + outSlope: -0.244676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.23695533 + inSlope: -0.16408658 + outSlope: -0.16408658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.24290742 + inSlope: -0.064852 + outSlope: -0.064852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.23192318 + inSlope: 0.1433712 + outSlope: 0.1433712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.2107264 + inSlope: 0.31378943 + outSlope: 0.31378943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.18788077 + inSlope: 0.22953147 + outSlope: 0.22953147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.18074319 + inSlope: 0.075521655 + outSlope: 0.075521655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.17950809 + inSlope: -0.11052145 + outSlope: -0.11052145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.19761638 + inSlope: -0.09470763 + outSlope: -0.09470763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.19861607 + inSlope: 0.015776042 + outSlope: 0.015776042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.19656464 + inSlope: -0.076379836 + outSlope: -0.076379836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.20370805 + inSlope: -0.3611855 + outSlope: -0.3611855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.22064368 + inSlope: -0.5080685 + outSlope: -0.5080685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.009349627 + inSlope: 0.68358153 + outSlope: 0.68358153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.03213568 + inSlope: 0.59371114 + outSlope: 0.59371114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.048930373 + inSlope: 0.587893 + outSlope: 0.587893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.07132855 + inSlope: 0.57401687 + outSlope: 0.57401687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08719817 + inSlope: 0.27186358 + outSlope: 0.27186358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.08945279 + inSlope: -0.14002499 + outSlope: -0.14002499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.077863164 + inSlope: -0.49052906 + outSlope: -0.49052906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.05675085 + inSlope: -0.6545663 + outSlope: -0.6545663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.034225415 + inSlope: -0.56255645 + outSlope: -0.56255645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.019247089 + inSlope: -0.1096477 + outSlope: -0.1096477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.026915569 + inSlope: 0.697936 + outSlope: 0.697936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.065776154 + inSlope: 1.3911421 + outSlope: 1.3911421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.119658425 + inSlope: 1.6254222 + outSlope: 1.6254222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.17413768 + inSlope: 1.6068306 + outSlope: 1.6068306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.2779471 + inSlope: -0.16451183 + outSlope: -0.16451183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.20798086 + inSlope: -1.7772675 + outSlope: -1.7772675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.1371464 + inSlope: -2.2651424 + outSlope: -2.2651424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.05697139 + inSlope: -2.1327624 + outSlope: -2.1327624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0050377306 + inSlope: -1.1059968 + outSlope: -1.1059968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.016761776 + inSlope: 0.21581224 + outSlope: 0.21581224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.009349787 + inSlope: 0.7833462 + outSlope: 0.7833462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0760428 + inSlope: -0.49617702 + outSlope: -0.49617702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.059503566 + inSlope: -0.32461712 + outSlope: -0.32461712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.05440166 + inSlope: -0.22116944 + outSlope: -0.22116944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.044758935 + inSlope: -0.23433447 + outSlope: -0.23433447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.03877936 + inSlope: -0.1432501 + outSlope: -0.1432501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.03520893 + inSlope: -0.01643911 + outSlope: -0.01643911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.03768342 + inSlope: 0.26869348 + outSlope: 0.26869348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.053121828 + inSlope: 0.5400644 + outSlope: 0.5400644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.07368771 + inSlope: 0.7173271 + outSlope: 0.7173271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.10094363 + inSlope: 0.9992158 + outSlope: 0.9992158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.1768109 + inSlope: 0.81712115 + outSlope: 0.81712115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.17618464 + inSlope: -0.4391923 + outSlope: -0.4391923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.16078831 + inSlope: -0.21016967 + outSlope: -0.21016967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.16217332 + inSlope: 0.2561344 + outSlope: 0.2561344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.17786393 + inSlope: 0.40816098 + outSlope: 0.40816098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.18485644 + inSlope: -0.4945369 + outSlope: -0.4945369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.1564149 + inSlope: -1.0598608 + outSlope: -1.0598608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.11419907 + inSlope: -1.2056098 + outSlope: -1.2056098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.076040916 + inSlope: -1.1447437 + outSlope: -1.1447437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6404158 + inSlope: -1.15139 + outSlope: -1.15139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.67879546 + inSlope: -0.7930576 + outSlope: -0.7930576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.68953145 + inSlope: 0.4019979 + outSlope: 0.4019979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.66577077 + inSlope: 0.15316035 + outSlope: 0.15316035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.681482 + inSlope: -0.8815868 + outSlope: -0.8815868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.9038695 + inSlope: -0.93503994 + outSlope: -0.93503994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.9015382 + inSlope: 1.388794 + outSlope: 1.388794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.7700021 + inSlope: 2.4387093 + outSlope: 2.4387093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.6176482 + inSlope: 0.6061438 + outSlope: 0.6061438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6404154 + inSlope: -0.683015 + outSlope: -0.683015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.29781342 + inSlope: 2.0318694 + outSlope: 2.0318694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.23008443 + inSlope: 1.3168234 + outSlope: 1.3168234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.21002519 + inSlope: 0.5077146 + outSlope: 0.5077146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.19623679 + inSlope: 0.36827713 + outSlope: 0.36827713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.18547338 + inSlope: 0.13825582 + outSlope: 0.13825582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.18701974 + inSlope: -0.25689027 + outSlope: -0.25689027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.2573415 + inSlope: -0.9521123 + outSlope: -0.9521123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.31853184 + inSlope: -0.90952283 + outSlope: -0.90952283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.36579973 + inSlope: -0.11695663 + outSlope: -0.11695663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.35791308 + inSlope: 0.34115243 + outSlope: 0.34115243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.3199078 + inSlope: 0.91666675 + outSlope: 0.91666675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.24934536 + inSlope: 0.74295855 + outSlope: 0.74295855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.23241453 + inSlope: 0.48832348 + outSlope: 0.48832348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.21679047 + inSlope: 0.2267057 + outSlope: 0.2267057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.2173008 + inSlope: -0.92143774 + outSlope: -0.92143774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2782197 + inSlope: -1.8276749 + outSlope: -1.8276749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.33914578 + inSlope: -0.29390043 + outSlope: -0.29390043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.29781297 + inSlope: 1.2399833 + outSlope: 1.2399833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3835339 + inSlope: 0.660029 + outSlope: 0.660029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.36153293 + inSlope: 0.46699 + outSlope: 0.46699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.35240123 + inSlope: 0.491424 + outSlope: 0.491424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3026481 + inSlope: 0.45522633 + outSlope: 0.45522633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.31089798 + inSlope: -0.4291574 + outSlope: -0.4291574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.3270334 + inSlope: -0.63320345 + outSlope: -0.63320345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.35311154 + inSlope: -0.4737242 + outSlope: -0.4737242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.358615 + inSlope: 0.34625176 + outSlope: 0.34625176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.28521657 + inSlope: 1.452302 + outSlope: 1.452302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.23320791 + inSlope: 1.3138359 + outSlope: 1.3138359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.19762747 + inSlope: 1.0829321 + outSlope: 1.0829321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.16101244 + inSlope: 1.1616035 + outSlope: 1.1616035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.120187275 + inSlope: 0.573438 + outSlope: 0.573438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.12278328 + inSlope: -0.66730994 + outSlope: -0.66730994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.16467464 + inSlope: -1.1619248 + outSlope: -1.1619248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.20024493 + inSlope: -0.9306921 + outSlope: -0.9306921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.22672077 + inSlope: -1.3048402 + outSlope: -1.3048402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.28723425 + inSlope: -2.3373153 + outSlope: -2.3373153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.3825418 + inSlope: -2.0075827 + outSlope: -2.0075827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.42107314 + inSlope: -0.0148899555 + outSlope: -0.0148899555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.3835344 + inSlope: 1.1261612 + outSlope: 1.1261612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5950434 + inSlope: 0.038166042 + outSlope: 0.038166042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5963156 + inSlope: -0.03813833 + outSlope: -0.03813833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.60278386 + inSlope: 0.58211535 + outSlope: 0.58211535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.65016824 + inSlope: 0.24043326 + outSlope: 0.24043326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.63432306 + inSlope: -0.5600131 + outSlope: -0.5600131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.521036 + inSlope: -1.5965483 + outSlope: -1.5965483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.38534644 + inSlope: -2.6192198 + outSlope: -2.6192198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.19851351 + inSlope: -2.131565 + outSlope: -2.131565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.14533235 + inSlope: -1.0145664 + outSlope: -1.0145664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.13087578 + inSlope: 0.6113364 + outSlope: 0.6113364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.18608814 + inSlope: 2.614071 + outSlope: 2.614071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.3051471 + inSlope: 3.751614 + outSlope: 3.751614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.43619576 + inSlope: 3.3227415 + outSlope: 3.3227415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.52666324 + inSlope: 1.8454487 + outSlope: 1.8454487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.57112914 + inSlope: 0.5372714 + outSlope: 0.5372714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5950437 + inSlope: 0.7174367 + outSlope: 0.7174367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2101826 + inSlope: -0.5312535 + outSlope: -0.5312535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.19247416 + inSlope: -0.4326879 + outSlope: -0.4326879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.18133675 + inSlope: -0.34395438 + outSlope: -0.34395438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.16954386 + inSlope: -0.24626833 + outSlope: -0.24626833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.16372448 + inSlope: 0.018023323 + outSlope: 0.018023323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.17024656 + inSlope: 0.2931268 + outSlope: 0.2931268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.21991883 + inSlope: 0.5037247 + outSlope: 0.5037247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.24711657 + inSlope: 0.24164179 + outSlope: 0.24164179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.24821542 + inSlope: -0.15400372 + outSlope: -0.15400372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.24322434 + inSlope: 0.04529585 + outSlope: 0.04529585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.2434053 + inSlope: -0.23531279 + outSlope: -0.23531279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.21018383 + inSlope: -0.61280465 + outSlope: -0.61280465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07146792 + inSlope: 0.99567795 + outSlope: 0.99567795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.10465719 + inSlope: 0.92251694 + outSlope: 0.92251694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.13296905 + inSlope: 0.97917044 + outSlope: 0.97917044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.16993523 + inSlope: 0.9573436 + outSlope: 0.9573436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.19679196 + inSlope: 0.49056667 + outSlope: 0.49056667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.15462573 + inSlope: -1.2498219 + outSlope: -1.2498219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.1042416 + inSlope: -1.6034567 + outSlope: -1.6034567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.04772862 + inSlope: -1.4889479 + outSlope: -1.4889479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0049784137 + inSlope: -0.8139229 + outSlope: -0.8139229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0065329024 + inSlope: 0.043227747 + outSlope: 0.043227747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.007860276 + inSlope: 0.57667243 + outSlope: 0.57667243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.03191194 + inSlope: 0.72928345 + outSlope: 0.72928345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.05647917 + inSlope: 0.6005471 + outSlope: 0.6005471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.071948394 + inSlope: 0.17220055 + outSlope: 0.17220055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.06795919 + inSlope: -0.25085083 + outSlope: -0.25085083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.055224992 + inSlope: -0.41472372 + outSlope: -0.41472372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.040310945 + inSlope: -0.51557916 + outSlope: -0.51557916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.020853046 + inSlope: -0.5645594 + outSlope: -0.5645594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.002673654 + inSlope: -0.26653084 + outSlope: -0.26653084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0030843422 + inSlope: 0.408773 + outSlope: 0.408773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.029925164 + inSlope: 1.0257647 + outSlope: 1.0257647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.071468666 + inSlope: 1.246304 + outSlope: 1.246304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14949313 + inSlope: -0.24879543 + outSlope: -0.24879543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.14119995 + inSlope: -0.23955701 + outSlope: -0.23955701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.13352266 + inSlope: -0.38333938 + outSlope: -0.38333938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.115643986 + inSlope: -0.496634 + outSlope: -0.496634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.100413725 + inSlope: -0.33077708 + outSlope: -0.33077708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.09359218 + inSlope: -0.14764732 + outSlope: -0.14764732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.09057057 + inSlope: 0.0033912286 + outSlope: 0.0033912286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.09381826 + inSlope: 0.16192453 + outSlope: 0.16192453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.10136554 + inSlope: 0.053520802 + outSlope: 0.053520802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.097386315 + inSlope: -0.32314476 + outSlope: -0.32314476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.079822555 + inSlope: -0.6945424 + outSlope: -0.6945424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.05108349 + inSlope: -0.8724531 + outSlope: -0.8724531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.021658994 + inSlope: -0.7349353 + outSlope: -0.7349353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.002087781 + inSlope: -0.46625376 + outSlope: -0.46625376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.009424588 + inSlope: -0.17592113 + outSlope: -0.17592113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.009640292 + inSlope: 0.07222808 + outSlope: 0.07222808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.004609378 + inSlope: 0.2240378 + outSlope: 0.2240378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0052955723 + inSlope: 0.49718472 + outSlope: 0.49718472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.028536256 + inSlope: 0.84990734 + outSlope: 0.84990734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.061956067 + inSlope: 1.049304 + outSlope: 1.049304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.09848984 + inSlope: 1.0894847 + outSlope: 1.0894847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.13458838 + inSlope: 0.8085642 + outSlope: 0.8085642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.15239413 + inSlope: 0.22355372 + outSlope: 0.22355372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.14949194 + inSlope: -0.08706577 + outSlope: -0.08706577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.19020998 + inSlope: -1.4890345 + outSlope: -1.4890345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.23984447 + inSlope: -1.116879 + outSlope: -1.116879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.2729018 + inSlope: -0.015635492 + outSlope: -0.015635492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.27615303 + inSlope: -0.03218828 + outSlope: -0.03218828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.27584153 + inSlope: 0.40386224 + outSlope: 0.40386224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.24922888 + inSlope: 1.1974016 + outSlope: 1.1974016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.19601476 + inSlope: 1.506625 + outSlope: 1.506625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.14878722 + inSlope: 0.98737013 + outSlope: 0.98737013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.13527428 + inSlope: -0.46370742 + outSlope: -0.46370742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.16110392 + inSlope: -1.1313367 + outSlope: -1.1313367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.21069671 + inSlope: -1.3494439 + outSlope: -1.3494439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.2510668 + inSlope: -0.9675381 + outSlope: -0.9675381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.28217885 + inSlope: 0.2803008 + outSlope: 0.2803008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.26916087 + inSlope: 0.8823234 + outSlope: 0.8823234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.22335726 + inSlope: 1.4008915 + outSlope: 1.4008915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.1757681 + inSlope: 0.49719614 + outSlope: 0.49719614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.19021091 + inSlope: -0.4332837 + outSlope: -0.4332837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.75361645 + inSlope: -0.18366872 + outSlope: -0.18366872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.72278047 + inSlope: 0.7147478 + outSlope: 0.7147478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.6754097 + inSlope: 0.50683296 + outSlope: 0.50683296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.66173756 + inSlope: 0.6993914 + outSlope: 0.6993914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.5847765 + inSlope: 1.0564029 + outSlope: 1.0564029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.5462643 + inSlope: 0.37914726 + outSlope: 0.37914726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.53037155 + inSlope: 0.05879315 + outSlope: 0.05879315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.5291607 + inSlope: 0.2314369 + outSlope: 0.2314369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.5134041 + inSlope: -0.28565586 + outSlope: -0.28565586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.5737448 + inSlope: -1.5782642 + outSlope: -1.5782642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.70939004 + inSlope: -1.7161958 + outSlope: -1.7161958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.7536168 + inSlope: -1.3268019 + outSlope: -1.3268019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5111437 + inSlope: 0.05264997 + outSlope: 0.05264997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.5093887 + inSlope: -0.13928442 + outSlope: -0.13928442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.5886418 + inSlope: -0.31995615 + outSlope: -0.31995615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.5922794 + inSlope: 0.19397022 + outSlope: 0.19397022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.5852918 + inSlope: -0.19695911 + outSlope: -0.19695911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.6291259 + inSlope: -0.3425339 + outSlope: -0.3425339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.5898764 + inSlope: 0.3370699 + outSlope: 0.3370699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.60181904 + inSlope: 0.09767248 + outSlope: 0.09767248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.56580085 + inSlope: 0.7920814 + outSlope: 0.7920814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.53961325 + inSlope: 0.5711673 + outSlope: 0.5711673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.527723 + inSlope: 0.42705053 + outSlope: 0.42705053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5111432 + inSlope: 0.4973938 + outSlope: 0.4973938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.36689878 + inSlope: -1.2491118 + outSlope: -1.2491118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3252617 + inSlope: -1.1503739 + outSlope: -1.1503739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.29020718 + inSlope: -1.170804 + outSlope: -1.170804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.2472081 + inSlope: -0.9946215 + outSlope: -0.9946215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.22389907 + inSlope: -0.54734993 + outSlope: -0.54734993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.21071811 + inSlope: 0.15385693 + outSlope: 0.15385693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.2341562 + inSlope: 1.2604332 + outSlope: 1.2604332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.294747 + inSlope: 1.7662051 + outSlope: 1.7662051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.41579682 + inSlope: 2.0688076 + outSlope: 2.0688076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.4898237 + inSlope: 1.6229029 + outSlope: 1.6229029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.52399033 + inSlope: 0.50639844 + outSlope: 0.50639844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5235836 + inSlope: 0.090831235 + outSlope: 0.090831235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.53004575 + inSlope: 0.34998628 + outSlope: 0.34998628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.554723 + inSlope: -0.0035617575 + outSlope: -0.0035617575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.54133034 + inSlope: -0.10331507 + outSlope: -0.10331507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5331735 + inSlope: -0.18460482 + outSlope: -0.18460482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.50034785 + inSlope: -1.4191458 + outSlope: -1.4191458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.4328742 + inSlope: -2.0017452 + outSlope: -2.0017452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.36689818 + inSlope: -1.979279 + outSlope: -1.979279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10277823 + inSlope: 0.19721656 + outSlope: 0.19721656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09620435 + inSlope: 0.06842817 + outSlope: 0.06842817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.098216355 + inSlope: -0.15804131 + outSlope: -0.15804131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.10674044 + inSlope: 0.09426403 + outSlope: 0.09426403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09193209 + inSlope: 0.36887148 + outSlope: 0.36887148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.08214901 + inSlope: -0.08536869 + outSlope: -0.08536869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.09762334 + inSlope: -0.70416373 + outSlope: -0.70416373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.12909326 + inSlope: -0.541563 + outSlope: -0.541563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.13372754 + inSlope: 0.12821764 + outSlope: 0.12821764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.12054542 + inSlope: 0.15894638 + outSlope: 0.15894638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.12313111 + inSlope: -0.019145051 + outSlope: -0.019145051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.12182175 + inSlope: 0.2168741 + outSlope: 0.2168741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.10867283 + inSlope: 0.38517645 + outSlope: 0.38517645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.09614331 + inSlope: 0.40326646 + outSlope: 0.40326646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0817884 + inSlope: 0.43253213 + outSlope: 0.43253213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.06730785 + inSlope: 0.16304705 + outSlope: 0.16304705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.07091861 + inSlope: -0.2846257 + outSlope: -0.2846257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.08628292 + inSlope: -0.41803947 + outSlope: -0.41803947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.09878791 + inSlope: -0.21468472 + outSlope: -0.21468472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.10059522 + inSlope: 0.025272515 + outSlope: 0.025272515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.09710308 + inSlope: -0.039666843 + outSlope: -0.039666843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.103239685 + inSlope: -0.13481885 + outSlope: -0.13481885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10609101 + inSlope: 0.006924711 + outSlope: 0.006924711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.10277803 + inSlope: 0.09938917 + outSlope: 0.09938917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.011202107 + inSlope: 0.051178977 + outSlope: 0.051178977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.009496141 + inSlope: -0.713772 + outSlope: -0.713772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.058786906 + inSlope: -2.0004978 + outSlope: -2.0004978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.14286268 + inSlope: -1.7607638 + outSlope: -1.7607638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.17617117 + inSlope: 0.5337876 + outSlope: 0.5337876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.10727684 + inSlope: 2.4143262 + outSlope: 2.4143262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.01521606 + inSlope: 1.2176206 + outSlope: 1.2176206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0261021 + inSlope: -0.63395816 + outSlope: -0.63395816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.057479933 + inSlope: -0.79516166 + outSlope: -0.79516166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.07911287 + inSlope: -0.7981186 + outSlope: -0.7981186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11068784 + inSlope: -0.7938615 + outSlope: -0.7938615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.13203697 + inSlope: -0.3441909 + outSlope: -0.3441909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.1336339 + inSlope: 0.6655531 + outSlope: 0.6655531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.087666765 + inSlope: 2.8418422 + outSlope: 2.8418422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.055822242 + inSlope: 3.3645568 + outSlope: 3.3645568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.15254118 + inSlope: -0.5882266 + outSlope: -0.5882266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.09742179 + inSlope: -1.149018 + outSlope: -1.149018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.07593995 + inSlope: -0.6103463 + outSlope: -0.6103463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.042923253 + inSlope: -0.2879147 + outSlope: -0.2879147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.037537735 + inSlope: -0.45125753 + outSlope: -0.45125753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0128394365 + inSlope: -0.73110175 + outSlope: -0.73110175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.011202375 + inSlope: -0.7212538 + outSlope: -0.7212538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08398378 + inSlope: -1.3974742 + outSlope: -1.3974742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.13056625 + inSlope: -1.015032 + outSlope: -1.015032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.15165259 + inSlope: -0.5069243 + outSlope: -0.5069243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.1749428 + inSlope: -0.44087183 + outSlope: -0.44087183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.19375266 + inSlope: -0.37752515 + outSlope: -0.37752515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.20011115 + inSlope: 0.4776655 + outSlope: 0.4776655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.1619083 + inSlope: 1.3334992 + outSlope: 1.3334992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.11121121 + inSlope: 1.2889555 + outSlope: 1.2889555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.07597794 + inSlope: 0.8975593 + outSlope: 0.8975593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.051373925 + inSlope: 0.8501181 + outSlope: 0.8501181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.019303398 + inSlope: 1.1988823 + outSlope: 1.1988823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.028551606 + inSlope: 1.4079671 + outSlope: 1.4079671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.07456111 + inSlope: 1.5327955 + outSlope: 1.5327955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.13073798 + inSlope: 1.5820022 + outSlope: 1.5820022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.18002787 + inSlope: 0.9453894 + outSlope: 0.9453894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.1937639 + inSlope: -0.21468987 + outSlope: -0.21468987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.1657152 + inSlope: -0.61185217 + outSlope: -0.61185217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.15297374 + inSlope: -0.75151885 + outSlope: -0.75151885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.11561393 + inSlope: -1.1975389 + outSlope: -1.1975389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.073137835 + inSlope: -1.2647123 + outSlope: -1.2647123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.031299785 + inSlope: -1.3916258 + outSlope: -1.3916258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.019637205 + inSlope: -1.7292615 + outSlope: -1.7292615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.08398432 + inSlope: -1.9304119 + outSlope: -1.9304119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.15445451 + inSlope: 0.15897228 + outSlope: 0.15897228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.14915544 + inSlope: 0.0109197125 + outSlope: 0.0109197125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.15372653 + inSlope: -0.2695452 + outSlope: -0.2695452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.16712512 + inSlope: 0.10080707 + outSlope: 0.10080707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.14700606 + inSlope: 0.6838148 + outSlope: 0.6838148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.12153747 + inSlope: 0.23967089 + outSlope: 0.23967089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.13102801 + inSlope: -0.83432734 + outSlope: -0.83432734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.1771593 + inSlope: -0.85233295 + outSlope: -0.85233295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1878502 + inSlope: 0.09803766 + outSlope: 0.09803766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.17062345 + inSlope: 0.18791491 + outSlope: 0.18791491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.17532255 + inSlope: -0.081239425 + outSlope: -0.081239425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.17603941 + inSlope: 0.24395317 + outSlope: 0.24395317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.15905899 + inSlope: 0.4930913 + outSlope: 0.4930913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.14316665 + inSlope: 0.37590605 + outSlope: 0.37590605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.13399859 + inSlope: 0.30944082 + outSlope: 0.30944082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.12253727 + inSlope: 0.13903216 + outSlope: 0.13903216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.12472979 + inSlope: -0.21931824 + outSlope: -0.21931824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.14852573 + inSlope: -0.113780186 + outSlope: -0.113780186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.13944373 + inSlope: -0.031832516 + outSlope: -0.031832516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.14686601 + inSlope: -0.19276543 + outSlope: -0.19276543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.15445442 + inSlope: -0.06479005 + outSlope: -0.06479005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.039087713 + inSlope: -0.9668202 + outSlope: -0.9668202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0068603703 + inSlope: -0.810904 + outSlope: -0.810904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.014972559 + inSlope: -0.67991745 + outSlope: -0.67991745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.038467467 + inSlope: -0.5979077 + outSlope: -0.5979077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.054833077 + inSlope: -0.16931517 + outSlope: -0.16931517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.049755145 + inSlope: 0.28903693 + outSlope: 0.28903693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.035563942 + inSlope: 0.13087863 + outSlope: 0.13087863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.041029897 + inSlope: -0.32192567 + outSlope: -0.32192567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.057025652 + inSlope: -0.4894259 + outSlope: -0.4894259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.07365829 + inSlope: -0.44170862 + outSlope: -0.44170862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.08647289 + inSlope: -0.08375555 + outSlope: -0.08375555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.07924199 + inSlope: 0.61093336 + outSlope: 0.61093336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.045743972 + inSlope: 1.2824426 + outSlope: 1.2824426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.006254204 + inSlope: 1.7191468 + outSlope: 1.7191468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.06886581 + inSlope: 1.4777901 + outSlope: 1.4777901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.10477351 + inSlope: 0.6374791 + outSlope: 0.6374791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.111364394 + inSlope: -0.16874209 + outSlope: -0.16874209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.093524024 + inSlope: -0.48345822 + outSlope: -0.48345822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.079133846 + inSlope: -0.1660292 + outSlope: -0.1660292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.08245543 + inSlope: 0.36228454 + outSlope: 0.36228454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.10328613 + inSlope: 0.46066856 + outSlope: 0.46066856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11316665 + inSlope: -0.24626215 + outSlope: -0.24626215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08686869 + inSlope: -1.1111833 + outSlope: -1.1111833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.03908775 + inSlope: -1.433427 + outSlope: -1.433427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.119575515 + inSlope: -1.3750715 + outSlope: -1.3750715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.16541123 + inSlope: -0.96760935 + outSlope: -0.96760935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.18555324 + inSlope: 0.08502224 + outSlope: 0.08502224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.17841466 + inSlope: 0.02569735 + outSlope: 0.02569735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.18594414 + inSlope: 0.19073683 + outSlope: 0.19073683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.1711243 + inSlope: 0.71617424 + outSlope: 0.71617424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1381992 + inSlope: 0.98101276 + outSlope: 0.98101276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.10572345 + inSlope: 0.84543157 + outSlope: 0.84543157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.081837095 + inSlope: 0.7917791 + outSlope: 0.7917791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.05293818 + inSlope: 1.062005 + outSlope: 1.062005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.011036724 + inSlope: 1.2454221 + outSlope: 1.2454221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.030089999 + inSlope: 1.1214702 + outSlope: 1.1214702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.06372795 + inSlope: 0.97612274 + outSlope: 0.97612274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.09516481 + inSlope: 0.8010789 + outSlope: 0.8010789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.1171332 + inSlope: 0.2214356 + outSlope: 0.2214356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.1099272 + inSlope: -0.54907274 + outSlope: -0.54907274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.08052837 + inSlope: -1.0364785 + outSlope: -1.0364785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.040828627 + inSlope: -1.1399606 + outSlope: -1.1399606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.004530997 + inSlope: -0.89113283 + outSlope: -0.89113283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.01858021 + inSlope: -0.93197215 + outSlope: -0.93197215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.05760046 + inSlope: -1.5149319 + outSlope: -1.5149319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.11957569 + inSlope: -1.8592552 + outSlope: -1.8592552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17668629 + inSlope: -0.59660596 + outSlope: -0.59660596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.15679942 + inSlope: -0.53332907 + outSlope: -0.53332907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.14113101 + inSlope: -0.59377146 + outSlope: -0.59377146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.11721465 + inSlope: -0.55962723 + outSlope: -0.55962723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.10382253 + inSlope: -0.13242513 + outSlope: -0.13242513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.10838631 + inSlope: 0.033308253 + outSlope: 0.033308253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.10604308 + inSlope: -0.4062902 + outSlope: -0.4062902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.081300296 + inSlope: -0.7657839 + outSlope: -0.7657839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.05499082 + inSlope: -0.25028205 + outSlope: -0.25028205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.064614825 + inSlope: 0.5965161 + outSlope: 0.5965161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.094758555 + inSlope: 0.6428303 + outSlope: 0.6428303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10747018 + inSlope: 0.17342931 + outSlope: 0.17342931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.099865 + inSlope: -0.12129486 + outSlope: -0.12129486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.098234184 + inSlope: 0.28528062 + outSlope: 0.28528062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.118883684 + inSlope: 0.66705364 + outSlope: 0.66705364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.14270443 + inSlope: 0.3889564 + outSlope: 0.3889564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.14481413 + inSlope: -0.08271052 + outSlope: -0.08271052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.1371904 + inSlope: -0.013961315 + outSlope: -0.013961315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.14388339 + inSlope: 0.54666334 + outSlope: 0.54666334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.1736346 + inSlope: 0.8290948 + outSlope: 0.8290948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.19915637 + inSlope: 0.35429758 + outSlope: 0.35429758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.19725446 + inSlope: -0.33705106 + outSlope: -0.33705106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.17668629 + inSlope: -0.6170448 + outSlope: -0.6170448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03445214 + inSlope: -0.083373554 + outSlope: -0.083373554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.03167302 + inSlope: -0.10722636 + outSlope: -0.10722636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.027303716 + inSlope: -0.2787162 + outSlope: -0.2787162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.013091939 + inSlope: -0.37150064 + outSlope: -0.37150064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0025370044 + inSlope: -0.08164666 + outSlope: -0.08164666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0076488284 + inSlope: 0.22290638 + outSlope: 0.22290638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.017397434 + inSlope: 0.23194379 + outSlope: 0.23194379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.023111751 + inSlope: 0.30503023 + outSlope: 0.30503023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.03773278 + inSlope: 0.6639937 + outSlope: 0.6639937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.067378 + inSlope: 0.7222029 + outSlope: 0.7222029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08587964 + inSlope: 0.28692174 + outSlope: 0.28692174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.08650611 + inSlope: -0.0050992016 + outSlope: -0.0050992016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0824952 + inSlope: -0.08821786 + outSlope: -0.08821786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0796585 + inSlope: 0.15585396 + outSlope: 0.15585396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.09288545 + inSlope: 0.5327927 + outSlope: 0.5327927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.11517802 + inSlope: 0.3824496 + outSlope: 0.3824496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.11838211 + inSlope: -0.30593482 + outSlope: -0.30593482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.09478239 + inSlope: -0.8201537 + outSlope: -0.8201537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.06370519 + inSlope: -0.73545325 + outSlope: -0.73545325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.045752164 + inSlope: -0.34483275 + outSlope: -0.34483275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.040716354 + inSlope: -0.11167894 + outSlope: -0.11167894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0383069 + inSlope: -0.09396319 + outSlope: -0.09396319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.03445214 + inSlope: -0.115642674 + outSlope: -0.115642674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0019656797 + inSlope: 0.38054022 + outSlope: 0.38054022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.010718995 + inSlope: 0.35381448 + outSlope: 0.35381448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.021621954 + inSlope: 0.34798604 + outSlope: 0.34798604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.033918068 + inSlope: 0.2646855 + outSlope: 0.2646855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.039267655 + inSlope: 0.10556041 + outSlope: 0.10556041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.040955428 + inSlope: 0.0017993823 + outSlope: 0.0017993823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.039387614 + inSlope: -0.12011691 + outSlope: -0.12011691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.032947633 + inSlope: -0.221713 + outSlope: -0.221713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.024606748 + inSlope: -0.16999575 + outSlope: -0.16999575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.021614583 + inSlope: -0.020560615 + outSlope: -0.020560615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.02323604 + inSlope: -0.016099177 + outSlope: -0.016099177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.020541305 + inSlope: -0.1864585 + outSlope: -0.1864585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.010805465 + inSlope: -0.3167625 + outSlope: -0.3167625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.00057620264 + inSlope: -0.31591776 + outSlope: -0.31591776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.010255718 + inSlope: -0.26708996 + outSlope: -0.26708996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.018382192 + inSlope: -0.16700533 + outSlope: -0.16700533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0213894 + inSlope: -0.016367244 + outSlope: -0.016367244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.019473342 + inSlope: 0.02991907 + outSlope: 0.02991907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.019394794 + inSlope: 0.018868629 + outSlope: 0.018868629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.018215433 + inSlope: 0.054979384 + outSlope: 0.054979384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.015729504 + inSlope: 0.028692108 + outSlope: 0.028692108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.016302628 + inSlope: 0.03438267 + outSlope: 0.03438267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.013437329 + inSlope: 0.21505414 + outSlope: 0.21505414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0019656797 + inSlope: 0.3441492 + outSlope: 0.3441492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2562521 + inSlope: -1.1130863 + outSlope: -1.1130863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.18251133 + inSlope: -1.0632644 + outSlope: -1.0632644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.14826493 + inSlope: -0.5257133 + outSlope: -0.5257133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.14746377 + inSlope: 0.2431045 + outSlope: 0.2431045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.1644719 + inSlope: 0.4214492 + outSlope: 0.4214492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.17556038 + inSlope: 0.31416708 + outSlope: 0.31416708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.18541637 + inSlope: 0.48059064 + outSlope: 0.48059064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.20759976 + inSlope: 0.70310515 + outSlope: 0.70310515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.23229004 + inSlope: 0.5054022 + outSlope: 0.5054022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.23152487 + inSlope: -0.49070358 + outSlope: -0.49070358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.17982666 + inSlope: -0.9184606 + outSlope: -0.9184606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.1291092 + inSlope: -0.12016605 + outSlope: -0.12016605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.1393379 + inSlope: 0.47901595 + outSlope: 0.47901595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.16104363 + inSlope: 0.797374 + outSlope: 0.797374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.22102395 + inSlope: 0.6674868 + outSlope: 0.6674868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.23699528 + inSlope: 0.45222676 + outSlope: 0.45222676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.2511724 + inSlope: 0.41762757 + outSlope: 0.41762757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.26483712 + inSlope: 0.076196045 + outSlope: 0.076196045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.2562521 + inSlope: -0.25754997 + outSlope: -0.25754997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.083754875 + inSlope: 1.0998306 + outSlope: 1.0998306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.047093853 + inSlope: 0.91432685 + outSlope: 0.91432685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.022799749 + inSlope: 0.89294606 + outSlope: 0.89294606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.01243589 + inSlope: 0.9410814 + outSlope: 0.9410814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.039939016 + inSlope: 0.45460427 + outSlope: 0.45460427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.04274284 + inSlope: -0.050480362 + outSlope: -0.050480362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.036573656 + inSlope: 0.036430486 + outSlope: 0.036430486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.045171537 + inSlope: 0.42966497 + outSlope: 0.42966497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.06521799 + inSlope: 0.39498827 + outSlope: 0.39498827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.071504086 + inSlope: 0.055664893 + outSlope: 0.055664893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.06892898 + inSlope: 0.04611187 + outSlope: 0.04611187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.07457821 + inSlope: -0.20761268 + outSlope: -0.20761268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.055088118 + inSlope: -1.1319191 + outSlope: -1.1319191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0008830759 + inSlope: -1.70665 + outSlope: -1.70665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.058688547 + inSlope: -1.5934796 + outSlope: -1.5934796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.10711501 + inSlope: -1.2238538 + outSlope: -1.2238538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.14027879 + inSlope: -0.56199574 + outSlope: -0.56199574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.14458142 + inSlope: 0.17316481 + outSlope: 0.17316481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.12873448 + inSlope: 0.37023783 + outSlope: 0.37023783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.11989891 + inSlope: -0.13515733 + outSlope: -0.13515733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.13774495 + inSlope: -0.5325074 + outSlope: -0.5325074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.1553994 + inSlope: 0.038377106 + outSlope: 0.038377106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.13518651 + inSlope: 1.0746706 + outSlope: 1.0746706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.083754666 + inSlope: 1.542954 + outSlope: 1.542954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04272736 + inSlope: 2.0690036 + outSlope: 2.0690036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.026239432 + inSlope: 1.9273646 + outSlope: 1.9273646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.085763626 + inSlope: 2.0160952 + outSlope: 2.0160952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.1606458 + inSlope: 1.7011881 + outSlope: 1.7011881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.19287975 + inSlope: -0.66298056 + outSlope: -0.66298056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.16177244 + inSlope: -1.0912479 + outSlope: -1.0912479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.12012989 + inSlope: -1.0299149 + outSlope: -1.0299149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.093111455 + inSlope: -0.4507846 + outSlope: -0.4507846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09007759 + inSlope: -0.2784285 + outSlope: -0.2784285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.074549556 + inSlope: -1.0640073 + outSlope: -1.0640073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.019143727 + inSlope: -1.8805892 + outSlope: -1.8805892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.050823104 + inSlope: -1.9808117 + outSlope: -1.9808117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.11291038 + inSlope: -1.8097245 + outSlope: -1.8097245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.17147134 + inSlope: -1.3459677 + outSlope: -1.3459677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.20264153 + inSlope: -0.33234063 + outSlope: -0.33234063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.1936274 + inSlope: 0.40027377 + outSlope: 0.40027377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.17595662 + inSlope: 0.65957546 + outSlope: 0.65957546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.1496557 + inSlope: 0.7298905 + outSlope: 0.7298905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.12729725 + inSlope: 0.34017953 + outSlope: 0.34017953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.12697709 + inSlope: 0.2877841 + outSlope: 0.2877841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.108111665 + inSlope: 1.2637459 + outSlope: 1.2637459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.042727318 + inSlope: 1.9615287 + outSlope: 1.9615287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.29223654 + inSlope: -0.94928914 + outSlope: -0.94928914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3238795 + inSlope: -0.40665415 + outSlope: -0.40665415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.31934682 + inSlope: -0.0109773725 + outSlope: -0.0109773725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.32461134 + inSlope: 0.45930332 + outSlope: 0.45930332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.2887266 + inSlope: 1.5704184 + outSlope: 1.5704184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.21991679 + inSlope: 1.3716141 + outSlope: 1.3716141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.19728565 + inSlope: 0.6360122 + outSlope: 0.6360122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.17751597 + inSlope: 0.04545918 + outSlope: 0.04545918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.19425504 + inSlope: -0.50215787 + outSlope: -0.50215787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.21099316 + inSlope: -0.02868624 + outSlope: -0.02868624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.19616745 + inSlope: 1.1868166 + outSlope: 1.1868166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.13187206 + inSlope: 2.6929543 + outSlope: 2.6929543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.016637081 + inSlope: 5.239067 + outSlope: 5.239067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.21739915 + inSlope: 5.8480177 + outSlope: 5.8480177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.37323076 + inSlope: 4.056826 + outSlope: 4.056826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.48785412 + inSlope: 2.9780679 + outSlope: 2.9780679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5717686 + inSlope: 2.5562701 + outSlope: 2.5562701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.65827227 + inSlope: 0.69569266 + outSlope: 0.69569266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.6181482 + inSlope: -2.4885817 + outSlope: -2.4885817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.49236676 + inSlope: -5.4325733 + outSlope: -5.4325733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.25597677 + inSlope: -7.757332 + outSlope: -7.757332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.024788707 + inSlope: -6.6113296 + outSlope: -6.6113296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.18477862 + inSlope: -4.0117135 + outSlope: -4.0117135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.2922362 + inSlope: -3.223725 + outSlope: -3.223725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.027483469 + inSlope: -0.16314378 + outSlope: -0.16314378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.022045342 + inSlope: -0.8663098 + outSlope: -0.8663098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.030270522 + inSlope: -2.1914663 + outSlope: -2.1914663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.12405244 + inSlope: -2.070805 + outSlope: -2.070805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.1683242 + inSlope: 0.13664848 + outSlope: 0.13664848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.11494254 + inSlope: 1.8649304 + outSlope: 1.8649304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.04399548 + inSlope: 0.89451355 + outSlope: 0.89451355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.05530828 + inSlope: -0.20070787 + outSlope: -0.20070787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.057376005 + inSlope: -0.21790083 + outSlope: -0.21790083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.069835 + inSlope: -0.26771992 + outSlope: -0.26771992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.075224 + inSlope: 0.10685307 + outSlope: 0.10685307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.06271146 + inSlope: 0.26780897 + outSlope: 0.26780897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.057370063 + inSlope: 0.44823882 + outSlope: 0.44823882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.03282887 + inSlope: 1.7943181 + outSlope: 1.7943181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.062251132 + inSlope: 2.3927097 + outSlope: 2.3927097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.12668505 + inSlope: 1.1779085 + outSlope: 1.1779085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.14077832 + inSlope: -0.76452696 + outSlope: -0.76452696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.07571655 + inSlope: -1.7781191 + outSlope: -1.7781191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.022237046 + inSlope: -1.1856875 + outSlope: -1.1856875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.003329259 + inSlope: -0.07831511 + outSlope: -0.07831511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.017015997 + inSlope: 0.56277066 + outSlope: 0.56277066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.03418878 + inSlope: 0.19146942 + outSlope: 0.19146942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.029780643 + inSlope: -0.10058393 + outSlope: -0.10058393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.027483188 + inSlope: -0.06892361 + outSlope: -0.06892361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04456894 + inSlope: -0.061923373 + outSlope: -0.061923373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04250483 + inSlope: 0.049688198 + outSlope: 0.049688198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.047881488 + inSlope: -0.22523153 + outSlope: -0.22523153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.02748939 + inSlope: -1.1114074 + outSlope: -1.1114074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.026212338 + inSlope: -1.2043005 + outSlope: -1.2043005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.05279731 + inSlope: 0.09114644 + outSlope: 0.09114644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.020135893 + inSlope: 1.2971421 + outSlope: 1.2971421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.03367885 + inSlope: 1.4398495 + outSlope: 1.4398495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.07585407 + inSlope: 0.6808991 + outSlope: 0.6808991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.07907212 + inSlope: 0.3491199 + outSlope: 0.3491199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09912873 + inSlope: 0.8009588 + outSlope: 0.8009588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.13246937 + inSlope: 0.8341065 + outSlope: 0.8341065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.15473585 + inSlope: 0.5222614 + outSlope: 0.5222614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.16728681 + inSlope: 0.017580539 + outSlope: 0.017580539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.15590788 + inSlope: -0.40770876 + outSlope: -0.40770876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.12716572 + inSlope: -0.28738236 + outSlope: -0.28738236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.120947406 + inSlope: -0.55331874 + outSlope: -0.55331874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.09027783 + inSlope: -0.3715705 + outSlope: -0.3715705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.09617607 + inSlope: 0.25167945 + outSlope: 0.25167945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.107056454 + inSlope: -0.049362823 + outSlope: -0.049362823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.092885196 + inSlope: -0.67107314 + outSlope: -0.67107314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06231826 + inSlope: -0.7247349 + outSlope: -0.7247349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.044569552 + inSlope: -0.53246087 + outSlope: -0.53246087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.19690672 + inSlope: 3.8121033 + outSlope: 3.8121033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0698366 + inSlope: 3.8758488 + outSlope: 3.8758488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.061483216 + inSlope: 5.2821345 + outSlope: 5.2821345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.28230575 + inSlope: 7.198594 + outSlope: 7.198594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5413895 + inSlope: 7.0319986 + outSlope: 7.0319986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.7511056 + inSlope: 2.9909825 + outSlope: 2.9909825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.74078834 + inSlope: -1.565752 + outSlope: -1.565752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.64672214 + inSlope: -4.253334 + outSlope: -4.253334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.45723277 + inSlope: -5.0817676 + outSlope: -5.0817676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.30793765 + inSlope: -3.4616883 + outSlope: -3.4616883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.22645356 + inSlope: -1.4223044 + outSlope: -1.4223044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.21311736 + inSlope: 0.88107276 + outSlope: 0.88107276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.2851918 + inSlope: 2.8270235 + outSlope: 2.8270235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.40158564 + inSlope: 2.5683146 + outSlope: 2.5683146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.45641276 + inSlope: 1.9790753 + outSlope: 1.9790753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5335239 + inSlope: 1.6589429 + outSlope: 1.6589429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5670089 + inSlope: 0.33715338 + outSlope: 0.33715338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5560008 + inSlope: -2.6750257 + outSlope: -2.6750257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.38867402 + inSlope: -5.7350664 + outSlope: -5.7350664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.17366304 + inSlope: -6.623666 + outSlope: -6.623666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.052903675 + inSlope: -5.8483696 + outSlope: -5.8483696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.21622819 + inSlope: -3.2388725 + outSlope: -3.2388725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2688286 + inSlope: 0.2898383 + outSlope: 0.2898383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.19690552 + inSlope: 2.1576905 + outSlope: 2.1576905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.017135117 + inSlope: -0.25067756 + outSlope: -0.25067756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.008779198 + inSlope: 0.37005943 + outSlope: 0.37005943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.041805748 + inSlope: 2.1216557 + outSlope: 2.1216557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.15022293 + inSlope: 2.9692798 + outSlope: 2.9692798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.23975775 + inSlope: 0.9205514 + outSlope: 0.9205514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.21159302 + inSlope: -1.6780996 + outSlope: -1.6780996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.1278844 + inSlope: -1.8103178 + outSlope: -1.8103178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.09090513 + inSlope: -0.71445066 + outSlope: -0.71445066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08025436 + inSlope: -0.07837013 + outSlope: -0.07837013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.085680455 + inSlope: 0.03266808 + outSlope: 0.03266808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08243223 + inSlope: -0.37563244 + outSlope: -0.37563244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.060638294 + inSlope: -0.6180164 + outSlope: -0.6180164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.041231122 + inSlope: -0.55006254 + outSlope: -0.55006254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.023967443 + inSlope: -0.7646488 + outSlope: -0.7646488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.009745463 + inSlope: -1.1622382 + outSlope: -1.1622382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.05351506 + inSlope: -0.42135936 + outSlope: -0.42135936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.03783603 + inSlope: 1.1223894 + outSlope: 1.1223894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.021310963 + inSlope: 2.2011104 + outSlope: 2.2011104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.10890462 + inSlope: 2.394766 + outSlope: 2.394766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.18096201 + inSlope: 0.86482406 + outSlope: 0.86482406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.16655964 + inSlope: -1.4583186 + outSlope: -1.4583186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.08374072 + inSlope: -2.076882 + outSlope: -2.076882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.02810083 + inSlope: -0.9990892 + outSlope: -0.9990892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.017134817 + inSlope: -0.3289801 + outSlope: -0.3289801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0027287472 + inSlope: -0.46617463 + outSlope: -0.46617463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.012810408 + inSlope: -0.7191353 + outSlope: -0.7191353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04521361 + inSlope: 0.41458142 + outSlope: 0.41458142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.014828361 + inSlope: 3.125887 + outSlope: 3.125887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.16317885 + inSlope: 3.729021 + outSlope: 3.729021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.26342976 + inSlope: 0.7843301 + outSlope: 0.7843301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.2154675 + inSlope: -3.0114746 + outSlope: -3.0114746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.06266476 + inSlope: -6.0128136 + outSlope: -6.0128136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.18538673 + inSlope: -7.268508 + outSlope: -7.268508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.4219024 + inSlope: -6.360546 + outSlope: -6.360546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.6094231 + inSlope: -5.114791 + outSlope: -5.114791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.76288843 + inSlope: -3.7627313 + outSlope: -3.7627313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.86027193 + inSlope: -0.6326326 + outSlope: -0.6326326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.5845409 + inSlope: 9.369099 + outSlope: 9.369099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.18045786 + inSlope: 10.853955 + outSlope: 10.853955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.13905598 + inSlope: 7.1343307 + outSlope: 7.1343307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.2951646 + inSlope: 2.5156226 + outSlope: 2.5156226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.30676427 + inSlope: -0.47628498 + outSlope: -0.47628498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.2634122 + inSlope: -1.9518042 + outSlope: -1.9518042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.17664404 + inSlope: -2.6219573 + outSlope: -2.6219573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.08861505 + inSlope: -2.3009624 + outSlope: -2.3009624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.023246525 + inSlope: -1.2882891 + outSlope: -1.2882891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.002729158 + inSlope: -0.61552054 + outSlope: -0.61552054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07826879 + inSlope: -0.25923124 + outSlope: -0.25923124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06962775 + inSlope: -0.9379049 + outSlope: -0.9379049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.015741792 + inSlope: -4.073717 + outSlope: -4.073717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.20195343 + inSlope: -7.7322044 + outSlope: -7.7322044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.4997385 + inSlope: -6.173142 + outSlope: -6.173142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.6134962 + inSlope: -0.7982169 + outSlope: -0.7982169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.55295295 + inSlope: 9.853998 + outSlope: 9.853998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.043437086 + inSlope: 10.321726 + outSlope: 10.321726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.1351621 + inSlope: 0.72199476 + outSlope: 0.72199476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.091570064 + inSlope: -1.0539421 + outSlope: -1.0539421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0648993 + inSlope: -0.3141921 + outSlope: -0.3141921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.07062393 + inSlope: 0.12008516 + outSlope: 0.12008516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.07290498 + inSlope: -0.15865159 + outSlope: -0.15865159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.060047157 + inSlope: -0.046101928 + outSlope: -0.046101928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.06983152 + inSlope: -3.673728 + outSlope: -3.673728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1848678 + inSlope: -9.315525 + outSlope: -9.315525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.55120355 + inSlope: -5.834972 + outSlope: -5.834972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.57386625 + inSlope: 0.39253515 + outSlope: 0.39253515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.5250346 + inSlope: 3.198831 + outSlope: 3.198831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.36061075 + inSlope: 6.171339 + outSlope: 6.171339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.11361213 + inSlope: 6.1344094 + outSlope: 6.1344094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.048349768 + inSlope: 2.8126898 + outSlope: 2.8126898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.073900625 + inSlope: 0.44879222 + outSlope: 0.44879222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.07826923 + inSlope: 0.131058 + outSlope: 0.131058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.047081064 + inSlope: 1.2169596 + outSlope: 1.2169596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.08764639 + inSlope: -0.16831976 + outSlope: -0.16831976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.03585975 + inSlope: 0.39021587 + outSlope: 0.39021587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.11366079 + inSlope: -0.566967 + outSlope: -0.566967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.001938032 + inSlope: -2.8682299 + outSlope: -2.8682299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.07755451 + inSlope: -1.4984319 + outSlope: -1.4984319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.10183349 + inSlope: -0.29952046 + outSlope: -0.29952046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.09752255 + inSlope: 0.7881464 + outSlope: 0.7881464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.049290407 + inSlope: 0.8280696 + outSlope: 0.8280696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.042317912 + inSlope: -0.23865375 + outSlope: -0.23865375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06520066 + inSlope: -0.62469006 + outSlope: -0.62469006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.083963916 + inSlope: -0.7250357 + outSlope: -0.7250357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.113536395 + inSlope: -2.3675609 + outSlope: -2.3675609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.24180132 + inSlope: -5.433668 + outSlope: -5.433668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.4757809 + inSlope: -9.435097 + outSlope: -9.435097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.8708074 + inSlope: -2.384579 + outSlope: -2.384579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.6347523 + inSlope: 16.154621 + outSlope: 16.154621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.20616816 + inSlope: 13.079723 + outSlope: 13.079723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.23722996 + inSlope: -0.45622396 + outSlope: -0.45622396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.17575315 + inSlope: -1.5091674 + outSlope: -1.5091674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.13661878 + inSlope: -1.101388 + outSlope: -1.101388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.102327295 + inSlope: -0.9274622 + outSlope: -0.9274622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.07478796 + inSlope: -0.8286935 + outSlope: -0.8286935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.047081064 + inSlope: -0.83120614 + outSlope: -0.83120614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11532769 + inSlope: 5.369081 + outSlope: 5.369081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06364169 + inSlope: 6.1026278 + outSlope: 6.1026278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.2915142 + inSlope: 5.4957504 + outSlope: 5.4957504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.4300251 + inSlope: 3.9261765 + outSlope: 3.9261765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5532593 + inSlope: 4.0613923 + outSlope: 4.0613923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.70078456 + inSlope: 2.3623807 + outSlope: 2.3623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.71075135 + inSlope: -1.4691247 + outSlope: -1.4691247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6028429 + inSlope: -4.0441947 + outSlope: -4.0441947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.4411384 + inSlope: -5.8384857 + outSlope: -5.8384857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.21361057 + inSlope: -7.0371246 + outSlope: -7.0371246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.028003229 + inSlope: -5.5643234 + outSlope: -5.5643234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.15734428 + inSlope: -3.3986306 + outSlope: -3.3986306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.25457868 + inSlope: -2.1813228 + outSlope: -2.1813228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.30276588 + inSlope: -1.117951 + outSlope: -1.117951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.32519853 + inSlope: 0.3630237 + outSlope: 0.3630237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.3099502 + inSlope: 0.058022976 + outSlope: 0.058022976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.3213303 + inSlope: -0.673455 + outSlope: -0.673455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.35484722 + inSlope: -0.8613837 + outSlope: -0.8613837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.3787559 + inSlope: 0.104855776 + outSlope: 0.104855776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.26057205 + inSlope: 3.4879155 + outSlope: 3.4879155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.11532905 + inSlope: 4.357286 + outSlope: 4.357286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.01592468 + inSlope: 0.4091291 + outSlope: 0.4091291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.002287041 + inSlope: 0.81248957 + outSlope: 0.81248957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.038241293 + inSlope: 1.5642631 + outSlope: 1.5642631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.10199718 + inSlope: 0.92032003 + outSlope: 0.92032003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.09959598 + inSlope: -1.0071576 + outSlope: -1.0071576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.034853347 + inSlope: -2.0913925 + outSlope: -2.0913925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.039830215 + inSlope: -0.9962012 + outSlope: -0.9962012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0315601 + inSlope: 0.6105093 + outSlope: 0.6105093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0008704002 + inSlope: 0.92103815 + outSlope: 0.92103815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.02984244 + inSlope: 0.4631563 + outSlope: 0.4631563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.031747486 + inSlope: -0.2330224 + outSlope: -0.2330224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.014307615 + inSlope: -0.58307135 + outSlope: -0.58307135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0071239537 + inSlope: -1.0122956 + outSlope: -1.0122956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.053178772 + inSlope: -1.8066921 + outSlope: -1.8066921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.1275701 + inSlope: -1.7827065 + outSlope: -1.7827065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.17202583 + inSlope: -1.1447883 + outSlope: -1.1447883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.2038893 + inSlope: -0.13380256 + outSlope: -0.13380256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.180946 + inSlope: 1.1649735 + outSlope: 1.1649735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.12622443 + inSlope: 1.4159713 + outSlope: 1.4159713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.08654794 + inSlope: 0.8067334 + outSlope: 0.8067334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.07244218 + inSlope: 0.4433654 + outSlope: 0.4433654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.056990247 + inSlope: 0.58323586 + outSlope: 0.58323586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0335598 + inSlope: 0.61599153 + outSlope: 0.61599153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.015924152 + inSlope: 0.52906895 + outSlope: 0.52906895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.100407794 + inSlope: 0.58159655 + outSlope: 0.58159655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.11979435 + inSlope: 0.48777243 + outSlope: 0.48777243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.13292596 + inSlope: 0.5804652 + outSlope: 0.5804652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.15849203 + inSlope: 0.5388703 + outSlope: 0.5388703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.16885065 + inSlope: -0.048552454 + outSlope: -0.048552454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.1552552 + inSlope: -0.20769106 + outSlope: -0.20769106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.15500458 + inSlope: -0.08695275 + outSlope: -0.08695275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.13833374 + inSlope: -0.48199928 + outSlope: -0.48199928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.11732507 + inSlope: -0.94840467 + outSlope: -0.94840467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.07510676 + inSlope: -1.1217847 + outSlope: -1.1217847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.042539425 + inSlope: -0.6838462 + outSlope: -0.6838462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.029517008 + inSlope: -0.13091247 + outSlope: -0.13091247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.033811916 + inSlope: 0.8212734 + outSlope: 0.8212734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.08426856 + inSlope: 1.0918047 + outSlope: 1.0918047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.10659887 + inSlope: 0.15957414 + outSlope: 0.15957414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.09490681 + inSlope: -0.24744532 + outSlope: -0.24744532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0901025 + inSlope: 0.3498952 + outSlope: 0.3498952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.11823312 + inSlope: 0.4898589 + outSlope: 0.4898589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.12275974 + inSlope: -0.17701413 + outSlope: -0.17701413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.1064322 + inSlope: -0.28121305 + outSlope: -0.28121305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.10401221 + inSlope: -0.09469497 + outSlope: -0.09469497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1001192 + inSlope: -0.05408211 + outSlope: -0.05408211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.10040674 + inSlope: 0.0086262 + outSlope: 0.0086262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21024181 + inSlope: 5.118458 + outSlope: 5.118458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.38085708 + inSlope: 4.6875668 + outSlope: 4.6875668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.52274626 + inSlope: 3.0153162 + outSlope: 3.0153162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.5818782 + inSlope: 2.6546583 + outSlope: 2.6546583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6997235 + inSlope: 3.6690412 + outSlope: 3.6690412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.8264809 + inSlope: -0.078775644 + outSlope: -0.078775644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.6944717 + inSlope: -5.6269164 + outSlope: -5.6269164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.45135313 + inSlope: -7.195033 + outSlope: -7.195033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.21480286 + inSlope: -6.7565193 + outSlope: -6.7565193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.00091853715 + inSlope: -5.535346 + outSlope: -5.535346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.1542202 + inSlope: -3.1463132 + outSlope: -3.1463132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.20883565 + inSlope: -0.5297605 + outSlope: -0.5297605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.18953754 + inSlope: 1.7378849 + outSlope: 1.7378849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.092976645 + inSlope: 3.9139266 + outSlope: 3.9139266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.07139089 + inSlope: 5.685204 + outSlope: 5.685204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.28603676 + inSlope: 6.340438 + outSlope: 6.340438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.4940867 + inSlope: 4.8091693 + outSlope: 4.8091693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.6066483 + inSlope: 0.83431274 + outSlope: 0.83431274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.5497077 + inSlope: -3.7694435 + outSlope: -3.7694435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.35535198 + inSlope: -5.657015 + outSlope: -5.657015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.17257342 + inSlope: -3.877038 + outSlope: -3.877038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.096882895 + inSlope: -1.0614284 + outSlope: -1.0614284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10181145 + inSlope: 1.7003447 + outSlope: 1.7003447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.21023929 + inSlope: 3.2528324 + outSlope: 3.2528324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013246233 + inSlope: -0.7715172 + outSlope: -0.7715172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.038963474 + inSlope: -0.69100523 + outSlope: -0.69100523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.059313253 + inSlope: -0.36211038 + outSlope: -0.36211038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.06310417 + inSlope: 0.44754678 + outSlope: 0.44754678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.029476803 + inSlope: 1.072051 + outSlope: 1.072051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.008365895 + inSlope: 0.9444043 + outSlope: 0.9444043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.033483494 + inSlope: 0.99234 + outSlope: 0.99234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.07452191 + inSlope: 0.98821664 + outSlope: 0.98821664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0993646 + inSlope: 0.2993512 + outSlope: 0.2993512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.09447865 + inSlope: -0.2802428 + outSlope: -0.2802428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08068175 + inSlope: -0.34781814 + outSlope: -0.34781814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.071290776 + inSlope: -0.53729606 + outSlope: -0.53729606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.04486199 + inSlope: -1.050436 + outSlope: -1.050436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0012616856 + inSlope: -0.7678338 + outSlope: -0.7678338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0063269255 + inSlope: 0.010611631 + outSlope: 0.010611631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00196912 + inSlope: -0.08187762 + outSlope: -0.08187762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.011785452 + inSlope: -0.27853024 + outSlope: -0.27853024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.016599577 + inSlope: 0.16225165 + outSlope: 0.16225165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00096869475 + inSlope: 0.35684156 + outSlope: 0.35684156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0071898536 + inSlope: 0.22907797 + outSlope: 0.22907797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.01430317 + inSlope: 0.03693252 + outSlope: 0.03693252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.009652011 + inSlope: -0.17787416 + outSlope: -0.17787416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0024448955 + inSlope: -0.34347558 + outSlope: -0.34347558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.013246369 + inSlope: -0.47073752 + outSlope: -0.47073752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.8345923 + inSlope: 0.23531733 + outSlope: 0.23531733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.8267484 + inSlope: 2.019915 + outSlope: 2.019915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.69993126 + inSlope: 6.6406155 + outSlope: 6.6406155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.38404062 + inSlope: 9.60857 + outSlope: 9.60857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.059359904 + inSlope: 10.359944 + outSlope: 10.359944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.3066223 + inSlope: 5.1735983 + outSlope: 5.1735983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.28554663 + inSlope: -0.9020717 + outSlope: -0.9020717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.24648418 + inSlope: -0.28071105 + outSlope: -0.28071105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.26683256 + inSlope: -0.042232275 + outSlope: -0.042232275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.24366869 + inSlope: -0.020602942 + outSlope: -0.020602942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.26545903 + inSlope: 1.486481 + outSlope: 1.486481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.34276742 + inSlope: -2.0479994 + outSlope: -2.0479994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.12892556 + inSlope: -6.576827 + outSlope: -6.576827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0956879 + inSlope: -4.2166305 + outSlope: -4.2166305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.15218312 + inSlope: -1.4804105 + outSlope: -1.4804105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1943819 + inSlope: -0.69723386 + outSlope: -0.69723386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.19866534 + inSlope: 1.1697425 + outSlope: 1.1697425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.116399 + inSlope: 2.532482 + outSlope: 2.532482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.029833218 + inSlope: -0.21202874 + outSlope: -0.21202874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.13053441 + inSlope: -5.6021976 + outSlope: -5.6021976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.4033129 + inSlope: -7.041301 + outSlope: -7.041301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.59995437 + inSlope: -5.261921 + outSlope: -5.261921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.75410765 + inSlope: -3.5196037 + outSlope: -3.5196037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.83459455 + inSlope: -2.414605 + outSlope: -2.414605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.28438997 + inSlope: 0.01474589 + outSlope: 0.01474589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.27804703 + inSlope: -0.5375032 + outSlope: -0.5375032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.24904795 + inSlope: -2.3945084 + outSlope: -2.3945084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.118413135 + inSlope: -8.410516 + outSlope: -8.410516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.31165305 + inSlope: -5.1975064 + outSlope: -5.1975064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.22808723 + inSlope: 1.77754 + outSlope: 1.77754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.19315036 + inSlope: 2.3713427 + outSlope: 2.3713427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.06999773 + inSlope: 4.1655188 + outSlope: 4.1655188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.084550865 + inSlope: 4.5893545 + outSlope: 4.5893545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.23595923 + inSlope: 6.0675173 + outSlope: 6.0675173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.489052 + inSlope: 5.7639627 + outSlope: 5.7639627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.6202235 + inSlope: -0.029907465 + outSlope: -0.029907465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.48705828 + inSlope: -6.0347614 + outSlope: -6.0347614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.21790609 + inSlope: -5.034277 + outSlope: -5.034277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.15143988 + inSlope: 0.3016982 + outSlope: 0.3016982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.23801944 + inSlope: 1.7356793 + outSlope: 1.7356793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.26715192 + inSlope: 1.2713375 + outSlope: 1.2713375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.32277524 + inSlope: 1.0785092 + outSlope: 1.0785092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.3390525 + inSlope: -0.043595314 + outSlope: -0.043595314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.31986892 + inSlope: -0.46355736 + outSlope: -0.46355736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.30814868 + inSlope: -0.42040372 + outSlope: -0.42040372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.291842 + inSlope: -0.35636693 + outSlope: -0.35636693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.2843909 + inSlope: -0.22353332 + outSlope: -0.22353332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000010245282 + inSlope: 0.39006865 + outSlope: 0.39006865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.013002187 + inSlope: -3.5996628 + outSlope: -3.5996628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.23997761 + inSlope: -11.551984 + outSlope: -11.551984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.75713015 + inSlope: -11.946261 + outSlope: -11.946261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -1.0363951 + inSlope: -0.24649072 + outSlope: -0.24649072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.77356285 + inSlope: 11.455037 + outSlope: 11.455037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.27272576 + inSlope: 9.160367 + outSlope: 9.160367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.16287152 + inSlope: -1.6746145 + outSlope: -1.6746145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.38436672 + inSlope: -4.963214 + outSlope: -4.963214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.49375242 + inSlope: -3.318485 + outSlope: -3.318485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.60559905 + inSlope: -3.1295614 + outSlope: -3.1295614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.70238984 + inSlope: 3.0804472 + outSlope: 3.0804472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.40023565 + inSlope: 9.771287 + outSlope: 9.771287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.050970487 + inSlope: 4.9129457 + outSlope: 4.9129457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07270596 + inSlope: 0.21380779 + outSlope: 0.21380779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.036716666 + inSlope: 0.31514746 + outSlope: 0.31514746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.051696178 + inSlope: 0.085269496 + outSlope: 0.085269496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.03103203 + inSlope: 2.284518 + outSlope: 2.284518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.10060492 + inSlope: 0.465482 + outSlope: 0.465482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.00000010245282 + inSlope: -1.5090741 + outSlope: -1.5090741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6997176 + inSlope: 1.7141371 + outSlope: 1.7141371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.6425797 + inSlope: 1.3849416 + outSlope: 1.3849416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.60738814 + inSlope: 1.4057546 + outSlope: 1.4057546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.5488627 + inSlope: 1.4485922 + outSlope: 1.4485922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.5108153 + inSlope: -0.18466473 + outSlope: -0.18466473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.5611737 + inSlope: -2.647944 + outSlope: -2.647944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.68734497 + inSlope: -3.6820688 + outSlope: -3.6820688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.806645 + inSlope: -3.041425 + outSlope: -3.041425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.8901066 + inSlope: -3.016036 + outSlope: -3.016036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -1.007714 + inSlope: -3.2277784 + outSlope: -3.2277784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -1.1052918 + inSlope: -0.50666755 + outSlope: -0.50666755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -1.0414919 + inSlope: 3.6178205 + outSlope: 3.6178205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.8641037 + inSlope: 4.455125 + outSlope: 4.455125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.7444834 + inSlope: 2.666037 + outSlope: 2.666037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.68636787 + inSlope: 2.256518 + outSlope: 2.256518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.52847683 + inSlope: 0.77924097 + outSlope: 0.77924097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.54209954 + inSlope: -0.7870651 + outSlope: -0.7870651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.6481735 + inSlope: -2.339601 + outSlope: -2.339601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.79663914 + inSlope: -0.7053324 + outSlope: -0.7053324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.7839434 + inSlope: 1.4537797 + outSlope: 1.4537797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.69972044 + inSlope: 2.5266871 + outSlope: 2.5266871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6374732 + inSlope: 3.4816449 + outSlope: 3.4816449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.5214184 + inSlope: 2.7113726 + outSlope: 2.7113726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.45671505 + inSlope: 2.2037048 + outSlope: 2.2037048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.28050753 + inSlope: 3.080625 + outSlope: 3.080625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.16912971 + inSlope: 2.3177915 + outSlope: 2.3177915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1259881 + inSlope: 0.066007555 + outSlope: 0.066007555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.1647292 + inSlope: -1.5402117 + outSlope: -1.5402117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.22866887 + inSlope: -2.149312 + outSlope: -2.149312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.30801666 + inSlope: -3.2203631 + outSlope: -3.2203631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.44335973 + inSlope: -3.97035 + outSlope: -3.97035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.57270664 + inSlope: -3.2957177 + outSlope: -3.2957177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.6630743 + inSlope: -2.3912635 + outSlope: -2.3912635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.73212427 + inSlope: -0.98605436 + outSlope: -0.98605436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.72881126 + inSlope: 0.8394258 + outSlope: 0.8394258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.6761626 + inSlope: -0.15986258 + outSlope: -0.15986258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.7394689 + inSlope: -2.9976923 + outSlope: -2.9976923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.8760089 + inSlope: -2.5110111 + outSlope: -2.5110111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.89463305 + inSlope: -0.15651542 + outSlope: -0.15651542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.91730404 + inSlope: -0.40681002 + outSlope: -0.40681002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.9217537 + inSlope: 1.530023 + outSlope: 1.530023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.8153026 + inSlope: 4.264223 + outSlope: 4.264223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6374721 + inSlope: 5.334911 + outSlope: 5.334911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22116114 + inSlope: 1.709214 + outSlope: 1.709214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.16418734 + inSlope: 1.5243189 + outSlope: 1.5243189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.11953988 + inSlope: 1.5999274 + outSlope: 1.5999274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.057525497 + inSlope: 1.2915071 + outSlope: 1.2915071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.033439394 + inSlope: 0.23094893 + outSlope: 0.23094893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.042128902 + inSlope: -0.5960369 + outSlope: -0.5960369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0731752 + inSlope: -1.1021662 + outSlope: -1.1021662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.11560666 + inSlope: -1.0481519 + outSlope: -1.0481519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.14305198 + inSlope: -0.1136688 + outSlope: -0.1136688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.12318458 + inSlope: 0.9682195 + outSlope: 0.9682195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.07850402 + inSlope: 0.6460053 + outSlope: 0.6460053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.08011756 + inSlope: -0.82620496 + outSlope: -0.82620496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.1335844 + inSlope: -1.342693 + outSlope: -1.342693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.16963047 + inSlope: -0.37290084 + outSlope: -0.37290084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.15844445 + inSlope: 0.80363685 + outSlope: 0.80363685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.11605472 + inSlope: 1.3220185 + outSlope: 1.3220185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.070309885 + inSlope: 1.1012985 + outSlope: 1.1012985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.042634763 + inSlope: 0.18252029 + outSlope: 0.18252029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.058141828 + inSlope: -1.0758301 + outSlope: -1.0758301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.1143568 + inSlope: -2.1821702 + outSlope: -2.1821702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.20361981 + inSlope: -2.553459 + outSlope: -2.553459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.28458738 + inSlope: -1.2781351 + outSlope: -1.2781351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.28882888 + inSlope: 0.9513999 + outSlope: 0.9513999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.22116067 + inSlope: 2.0300448 + outSlope: 2.0300448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.36750993 + inSlope: 0.65605485 + outSlope: 0.65605485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.38937843 + inSlope: 0.47581667 + outSlope: 0.47581667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.39923105 + inSlope: 0.39863968 + outSlope: 0.39863968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.4392531 + inSlope: -0.33900353 + outSlope: -0.33900353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.41833416 + inSlope: -0.6931083 + outSlope: -0.6931083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.35818473 + inSlope: -1.27559 + outSlope: -1.27559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.26499233 + inSlope: -0.9193538 + outSlope: -0.9193538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.24671629 + inSlope: -0.26431045 + outSlope: -0.26431045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.24737161 + inSlope: -0.15754806 + outSlope: -0.15754806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.23621309 + inSlope: -0.2900855 + outSlope: -0.2900855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.22803259 + inSlope: 0.3038813 + outSlope: 0.3038813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.25647187 + inSlope: 1.0290778 + outSlope: 1.0290778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.29663783 + inSlope: 0.68378097 + outSlope: 0.68378097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.2768889 + inSlope: -0.2541748 + outSlope: -0.2541748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.27474472 + inSlope: 0.5763416 + outSlope: 0.5763416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.31531164 + inSlope: 1.3914871 + outSlope: 1.3914871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.36751053 + inSlope: 1.5659653 + outSlope: 1.5659653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17125638 + inSlope: -1.1175764 + outSlope: -1.1175764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.20850892 + inSlope: -0.84884447 + outSlope: -0.84884447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.22784601 + inSlope: -0.5647571 + outSlope: -0.5647571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.26217213 + inSlope: -0.38277897 + outSlope: -0.38277897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.271678 + inSlope: 0.16529994 + outSlope: 0.16529994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.25115213 + inSlope: 1.1931963 + outSlope: 1.1931963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.19213158 + inSlope: 1.6947448 + outSlope: 1.6947448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.13816914 + inSlope: 1.2492642 + outSlope: 1.2492642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.1088473 + inSlope: 0.96236145 + outSlope: 0.96236145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.07401171 + inSlope: 1.2889841 + outSlope: 1.2889841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.022915035 + inSlope: 1.5964544 + outSlope: 1.5964544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.032418616 + inSlope: 1.5129776 + outSlope: 1.5129776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.07795018 + inSlope: 1.0674187 + outSlope: 1.0674187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.10357986 + inSlope: 0.36344403 + outSlope: 0.36344403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.10217978 + inSlope: -0.36408246 + outSlope: -0.36408246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.079307675 + inSlope: -0.9890425 + outSlope: -0.9890425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.036243558 + inSlope: -1.328607 + outSlope: -1.328607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.009266116 + inSlope: -1.3911151 + outSlope: -1.3911151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.056497443 + inSlope: -1.0206192 + outSlope: -1.0206192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.07730741 + inSlope: -0.4247344 + outSlope: -0.4247344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.08481306 + inSlope: -0.58926916 + outSlope: -0.58926916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.116592 + inSlope: -1.2966614 + outSlope: -1.2966614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.17125717 + inSlope: -1.6399537 + outSlope: -1.6399537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07858714 + inSlope: -2.0819438 + outSlope: -2.0819438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.14798526 + inSlope: -1.7922945 + outSlope: -1.7922945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.19807345 + inSlope: -1.9983606 + outSlope: -1.9983606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.28120932 + inSlope: -2.0018458 + outSlope: -2.0018458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.33152986 + inSlope: -0.7105078 + outSlope: -0.7105078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.3285765 + inSlope: 0.57693315 + outSlope: 0.57693315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.29306763 + inSlope: 1.4675088 + outSlope: 1.4675088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.162954 + inSlope: 1.79301 + outSlope: 1.79301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.11120858 + inSlope: 0.87776124 + outSlope: 0.87776124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.10443659 + inSlope: -0.71192193 + outSlope: -0.71192193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.15867004 + inSlope: -2.2735534 + outSlope: -2.2735534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.37193477 + inSlope: -3.4644814 + outSlope: -3.4644814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.5861069 + inSlope: -2.3476744 + outSlope: -2.3476744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.6434839 + inSlope: -0.32900214 + outSlope: -0.32900214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.6080404 + inSlope: 2.4384813 + outSlope: 2.4384813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.29372904 + inSlope: 6.0050077 + outSlope: 6.0050077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.080584764 + inSlope: 5.4895997 + outSlope: 5.4895997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.072244205 + inSlope: 1.8936248 + outSlope: 1.8936248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.045657046 + inSlope: -2.262467 + outSlope: -2.262467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.078587 + inSlope: -3.7273183 + outSlope: -3.7273183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17457297 + inSlope: -1.7849036 + outSlope: -1.7849036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.115076184 + inSlope: -1.1713567 + outSlope: -1.1713567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.09648253 + inSlope: -0.042481184 + outSlope: -0.042481184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.11224411 + inSlope: 0.75517416 + outSlope: 0.75517416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.14682747 + inSlope: 0.7333331 + outSlope: 0.7333331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.16113298 + inSlope: 0.093856364 + outSlope: 0.093856364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.15308456 + inSlope: -0.2770049 + outSlope: -0.2770049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.12934306 + inSlope: -0.49297667 + outSlope: -0.49297667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.109800875 + inSlope: -0.38486227 + outSlope: -0.38486227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.10368558 + inSlope: -0.21295758 + outSlope: -0.21295758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.095603704 + inSlope: -0.7712709 + outSlope: -0.7712709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.052267488 + inSlope: -1.7914605 + outSlope: -1.7914605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.02382702 + inSlope: -1.8386562 + outSlope: -1.8386562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07030958 + inSlope: -0.8889408 + outSlope: -0.8889408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.083089724 + inSlope: -0.5345705 + outSlope: -0.5345705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.10594762 + inSlope: -0.23370951 + outSlope: -0.23370951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.09867037 + inSlope: 1.1930994 + outSlope: 1.1930994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.02640773 + inSlope: 2.2312703 + outSlope: 2.2312703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.05008097 + inSlope: 1.6338806 + outSlope: 1.6338806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.082517676 + inSlope: 1.1033585 + outSlope: 1.1033585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.123638205 + inSlope: 1.6026872 + outSlope: 1.6026872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.18936346 + inSlope: 0.7640155 + outSlope: 0.7640155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.1745725 + inSlope: -0.44372866 + outSlope: -0.44372866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.030115856 + inSlope: -1.9787598 + outSlope: -1.9787598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09607452 + inSlope: -1.1808082 + outSlope: -1.1808082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.10883641 + inSlope: -0.48006147 + outSlope: -0.48006147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.12807862 + inSlope: -0.82923174 + outSlope: -0.82923174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.16411853 + inSlope: -0.91916716 + outSlope: -0.91916716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.18935643 + inSlope: -0.38345397 + outSlope: -0.38345397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.18968213 + inSlope: 0.12184115 + outSlope: 0.12184115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.18123369 + inSlope: 0.5754796 + outSlope: 0.5754796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.15131682 + inSlope: 0.9869145 + outSlope: 0.9869145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.11543939 + inSlope: 0.71198595 + outSlope: 0.71198595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.103851095 + inSlope: 0.2968647 + outSlope: 0.2968647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.095648415 + inSlope: 0.18918912 + outSlope: 0.18918912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.091238484 + inSlope: 0.22187676 + outSlope: 0.22187676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.08085663 + inSlope: 0.382422 + outSlope: 0.382422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.065743685 + inSlope: 0.36363414 + outSlope: 0.36363414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.05661436 + inSlope: 0.26617318 + outSlope: 0.26617318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.04799881 + inSlope: 0.0935656 + outSlope: 0.0935656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.05037665 + inSlope: -0.42021096 + outSlope: -0.42021096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.07601285 + inSlope: -1.233186 + outSlope: -1.233186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.13258907 + inSlope: -1.089851 + outSlope: -1.089851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.14866962 + inSlope: 1.4157107 + outSlope: 1.4157107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.038208246 + inSlope: 2.8460813 + outSlope: 2.8460813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.041069154 + inSlope: 0.12139356 + outSlope: 0.12139356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.030115474 + inSlope: -2.1355371 + outSlope: -2.1355371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5187766 + inSlope: 1.4938562 + outSlope: 1.4938562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.4689814 + inSlope: 1.1639414 + outSlope: 1.1639414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.4411805 + inSlope: 1.2395153 + outSlope: 1.2395153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.38634703 + inSlope: 1.7211537 + outSlope: 1.7211537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3264369 + inSlope: 1.0565236 + outSlope: 1.0565236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.31591213 + inSlope: -0.28410298 + outSlope: -0.28410298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.34537712 + inSlope: -1.0384287 + outSlope: -1.0384287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.38514072 + inSlope: -1.2815404 + outSlope: -1.2815404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.43081313 + inSlope: -1.9227488 + outSlope: -1.9227488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.51332396 + inSlope: -1.9086423 + outSlope: -1.9086423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.55805594 + inSlope: -0.58933324 + outSlope: -0.58933324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.55261284 + inSlope: 0.04900578 + outSlope: 0.04900578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.5468586 + inSlope: 0.71123517 + outSlope: 0.71123517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.5073732 + inSlope: 1.3456781 + outSlope: 1.3456781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.4571468 + inSlope: 1.8115289 + outSlope: 1.8115289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.3866046 + inSlope: 1.8660121 + outSlope: 1.8660121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.33274588 + inSlope: 0.5196189 + outSlope: 0.5196189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.35196328 + inSlope: -1.6472179 + outSlope: -1.6472179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.44256046 + inSlope: -2.4100237 + outSlope: -2.4100237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.55699193 + inSlope: -0.83701605 + outSlope: -0.83701605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.5684326 + inSlope: 0.57323647 + outSlope: 0.57323647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5187761 + inSlope: 1.4896941 + outSlope: 1.4896941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.43577978 + inSlope: -0.15239863 + outSlope: -0.15239863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.44085974 + inSlope: -0.30692336 + outSlope: -0.30692336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.45624134 + inSlope: 1.0796269 + outSlope: 1.0796269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.3688846 + inSlope: 3.2800741 + outSlope: 3.2800741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.23756973 + inSlope: 2.1957192 + outSlope: 2.1957192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.22250332 + inSlope: 0.14759508 + outSlope: 0.14759508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.22773007 + inSlope: -0.2205444 + outSlope: -0.2205444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.23720628 + inSlope: -2.591704 + outSlope: -2.591704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.4005103 + inSlope: -6.2600775 + outSlope: -6.2600775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.6545448 + inSlope: -5.1030855 + outSlope: -5.1030855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.740716 + inSlope: 1.1317394 + outSlope: 1.1317394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.5790955 + inSlope: 6.3212147 + outSlope: 6.3212147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.31930146 + inSlope: 7.355259 + outSlope: 7.355259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.08874467 + inSlope: 5.4487586 + outSlope: 5.4487586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.04394909 + inSlope: 2.451567 + outSlope: 2.451567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.074693084 + inSlope: -0.25393337 + outSlope: -0.25393337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.027020127 + inSlope: -1.9182396 + outSlope: -1.9182396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.05318966 + inSlope: -1.2508907 + outSlope: -1.2508907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.056372654 + inSlope: -0.23071474 + outSlope: -0.23071474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.06857065 + inSlope: -2.297072 + outSlope: -2.297072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.20951065 + inSlope: -4.4909964 + outSlope: -4.4909964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.3679704 + inSlope: -3.409914 + outSlope: -3.409914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.43683833 + inSlope: -1.0170902 + outSlope: -1.0170902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.43577635 + inSlope: 0.031859253 + outSlope: 0.031859253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.39621726 + inSlope: 0.25761545 + outSlope: 0.25761545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.38763008 + inSlope: 0.70590997 + outSlope: 0.70590997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.3491566 + inSlope: -1.4115324 + outSlope: -1.4115324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.48173225 + inSlope: -5.9707603 + outSlope: -5.9707603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.7472073 + inSlope: -5.473546 + outSlope: -5.473546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.8466353 + inSlope: -3.5690753 + outSlope: -3.5690753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.9851457 + inSlope: -4.144455 + outSlope: -4.144455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -1.1229323 + inSlope: 0.20435739 + outSlope: 0.20435739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.97152185 + inSlope: 6.784626 + outSlope: 6.784626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.67062396 + inSlope: 7.2343826 + outSlope: 7.2343826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.4892297 + inSlope: 3.3655515 + outSlope: 3.3655515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.48867992 + inSlope: -1.6739335 + outSlope: -1.6739335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.55784947 + inSlope: -1.3135096 + outSlope: -1.3135096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.5762472 + inSlope: 1.2102137 + outSlope: 1.2102137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.47716865 + inSlope: 3.7994084 + outSlope: 3.7994084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.32295328 + inSlope: 3.5484881 + outSlope: 3.5484881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.24060257 + inSlope: 0.8340279 + outSlope: 0.8340279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.26735133 + inSlope: -0.78798056 + outSlope: -0.78798056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.2931346 + inSlope: -0.115825236 + outSlope: -0.115825236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.27507305 + inSlope: -0.16693738 + outSlope: -0.16693738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3560574 + inSlope: -1.3792999 + outSlope: -1.3792999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.3962171 + inSlope: -1.2047901 + outSlope: -1.2047901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04778423 + inSlope: 0.0256199 + outSlope: 0.0256199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.046930235 + inSlope: -0.06135692 + outSlope: -0.06135692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.051874693 + inSlope: -1.0011436 + outSlope: -1.0011436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.11367315 + inSlope: -2.0095482 + outSlope: -2.0095482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.18584457 + inSlope: -1.1372514 + outSlope: -1.1372514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.1894899 + inSlope: -0.25801972 + outSlope: -0.25801972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.20304589 + inSlope: -0.6610999 + outSlope: -0.6610999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.23356323 + inSlope: 0.117352456 + outSlope: 0.117352456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1952224 + inSlope: 1.2447482 + outSlope: 1.2447482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.15058002 + inSlope: 0.28876352 + outSlope: 0.28876352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.1759715 + inSlope: -1.2547605 + outSlope: -1.2547605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.23423071 + inSlope: -1.2301724 + outSlope: -1.2301724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.257983 + inSlope: -0.2960595 + outSlope: -0.2960595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.24403276 + inSlope: 0.16667943 + outSlope: 0.16667943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.24285607 + inSlope: 0.07528667 + outSlope: 0.07528667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.23901364 + inSlope: -0.23996162 + outSlope: -0.23996162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.25885352 + inSlope: -0.86091566 + outSlope: -0.86091566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.296408 + inSlope: -0.5715444 + outSlope: -0.5715444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.29695645 + inSlope: 1.1025457 + outSlope: 1.1025457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.22290502 + inSlope: 2.536388 + outSlope: 2.536388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.12786393 + inSlope: 2.3471313 + outSlope: 2.3471313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.06642959 + inSlope: 1.2012041 + outSlope: 1.2012041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.047783706 + inSlope: 0.5593761 + outSlope: 0.5593761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27935168 + inSlope: 0.47508714 + outSlope: 0.47508714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.29518792 + inSlope: 0.33122507 + outSlope: 0.33122507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.30143335 + inSlope: 0.4816518 + outSlope: 0.4816518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.32729805 + inSlope: 1.0779275 + outSlope: 1.0779275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.3732952 + inSlope: 1.1643054 + outSlope: 1.1643054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.4049184 + inSlope: 0.9702952 + outSlope: 0.9702952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.43798155 + inSlope: 0.4498912 + outSlope: 0.4498912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.43491116 + inSlope: -0.76230264 + outSlope: -0.76230264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.38716137 + inSlope: -1.2448637 + outSlope: -1.2448637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.34227663 + inSlope: 0.21040054 + outSlope: 0.21040054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.36594695 + inSlope: 1.1157416 + outSlope: 1.1157416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.4733642 + inSlope: 1.63414 + outSlope: 1.63414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5256021 + inSlope: 0.9665472 + outSlope: 0.9665472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.51922804 + inSlope: -0.6597791 + outSlope: -0.6597791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.49381536 + inSlope: -1.0574094 + outSlope: -1.0574094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.33239946 + inSlope: -1.6592848 + outSlope: -1.6592848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.28108993 + inSlope: -1.0085772 + outSlope: -1.0085772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.26516095 + inSlope: -0.026071921 + outSlope: -0.026071921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.27935183 + inSlope: 0.42572612 + outSlope: 0.42572612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.20881134 + inSlope: -0.36621627 + outSlope: -0.36621627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.22101855 + inSlope: -0.21140276 + outSlope: -0.21140276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.22290486 + inSlope: 0.40665725 + outSlope: 0.40665725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.19390807 + inSlope: 0.57111466 + outSlope: 0.57111466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.18483055 + inSlope: -0.38522536 + outSlope: -0.38522536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.21958975 + inSlope: -0.70767826 + outSlope: -0.70767826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.2320091 + inSlope: -0.039234817 + outSlope: -0.039234817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.22220542 + inSlope: -0.26437128 + outSlope: -0.26437128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.24963385 + inSlope: -0.9030397 + outSlope: -0.9030397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.28240806 + inSlope: -0.3815219 + outSlope: -0.3815219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.27506864 + inSlope: 0.09633065 + outSlope: 0.09633065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.27598602 + inSlope: -0.49342147 + outSlope: -0.49342147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.30796343 + inSlope: -0.8347469 + outSlope: -0.8347469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.33163583 + inSlope: -0.17705666 + outSlope: -0.17705666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.2892125 + inSlope: 0.8028667 + outSlope: 0.8028667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.26624277 + inSlope: 0.5755068 + outSlope: 0.5755068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.25084534 + inSlope: 0.70322025 + outSlope: 0.70322025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.21936144 + inSlope: 0.8276087 + outSlope: 0.8276087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.19567144 + inSlope: 0.433966 + outSlope: 0.433966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.19043036 + inSlope: 0.06593347 + outSlope: 0.06593347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.20881128 + inSlope: -0.29472804 + outSlope: -0.29472804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16821958 + inSlope: -3.2020411 + outSlope: -3.2020411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.2749543 + inSlope: -2.8667526 + outSlope: -2.8667526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.35933644 + inSlope: -3.0193958 + outSlope: -3.0193958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.47624737 + inSlope: -2.9232893 + outSlope: -2.9232893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.5798723 + inSlope: -0.037252486 + outSlope: -0.037252486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.5567059 + inSlope: 1.7412127 + outSlope: 1.7412127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.46379146 + inSlope: 3.6010249 + outSlope: 3.6010249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.31663758 + inSlope: 4.5804243 + outSlope: 4.5804243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.15842983 + inSlope: 4.2574635 + outSlope: 4.2574635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.032806695 + inSlope: 2.412793 + outSlope: 2.412793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0024230194 + inSlope: -0.114533365 + outSlope: -0.114533365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.04044229 + inSlope: -1.720815 + outSlope: -1.720815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.11229801 + inSlope: -2.4671183 + outSlope: -2.4671183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.20491682 + inSlope: -2.2425454 + outSlope: -2.2425454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.26180097 + inSlope: -0.8538429 + outSlope: -0.8538429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.21981901 + inSlope: 1.5649437 + outSlope: 1.5649437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.15751007 + inSlope: 2.2351294 + outSlope: 2.2351294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.07081038 + inSlope: 2.4894204 + outSlope: 2.4894204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.008451284 + inSlope: 1.6062852 + outSlope: 1.6062852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.036275245 + inSlope: -0.63655066 + outSlope: -0.63655066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.03398534 + inSlope: -3.0674465 + outSlope: -3.0674465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.16822122 + inSlope: -4.0270734 + outSlope: -4.0270734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.115582064 + inSlope: 0.56946826 + outSlope: 0.56946826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.13456434 + inSlope: 0.56773627 + outSlope: 0.56773627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.15343115 + inSlope: 0.41368982 + outSlope: 0.41368982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.16214366 + inSlope: 0.22456571 + outSlope: 0.22456571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.17086625 + inSlope: -0.027114872 + outSlope: -0.027114872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.16659454 + inSlope: -0.062004827 + outSlope: -0.062004827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.1667326 + inSlope: 0.11106715 + outSlope: 0.11106715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.17399901 + inSlope: -0.29674172 + outSlope: -0.29674172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.14694981 + inSlope: -0.89885557 + outSlope: -0.89885557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.11407531 + inSlope: -0.28875077 + outSlope: -0.28875077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.12769976 + inSlope: 0.688903 + outSlope: 0.688903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.1600022 + inSlope: 0.6919183 + outSlope: 0.6919183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.17537573 + inSlope: -0.10550034 + outSlope: -0.10550034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.16679433 + inSlope: -0.080528125 + outSlope: -0.080528125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.1700072 + inSlope: 0.45088658 + outSlope: 0.45088658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.19685346 + inSlope: 0.6443038 + outSlope: 0.6443038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.21917462 + inSlope: -0.062699094 + outSlope: -0.062699094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.20878087 + inSlope: -0.8123122 + outSlope: -0.8123122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.16502045 + inSlope: -1.2482272 + outSlope: -1.2482272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.12556572 + inSlope: -0.74156606 + outSlope: -0.74156606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11558274 + inSlope: -0.29948917 + outSlope: -0.29948917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.032562725 + inSlope: 1.7380716 + outSlope: 1.7380716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.09049845 + inSlope: 1.0276883 + outSlope: 1.0276883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.10107528 + inSlope: -0.3336092 + outSlope: -0.3336092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.06825783 + inSlope: -0.69895816 + outSlope: -0.69895816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.05447806 + inSlope: 0.010935143 + outSlope: 0.010935143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.06898684 + inSlope: 0.54403406 + outSlope: 0.54403406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.090747006 + inSlope: 0.85348606 + outSlope: 0.85348606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.12588592 + inSlope: 0.6968919 + outSlope: 0.6968919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.13720647 + inSlope: -0.12586299 + outSlope: -0.12586299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.11749505 + inSlope: -0.46733996 + outSlope: -0.46733996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.10605047 + inSlope: -0.36153507 + outSlope: -0.36153507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.093392715 + inSlope: -0.24627793 + outSlope: -0.24627793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.08963194 + inSlope: 0.40329444 + outSlope: 0.40329444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.12027901 + inSlope: 1.0998492 + outSlope: 1.0998492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.16295521 + inSlope: 0.7786704 + outSlope: 0.7786704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.17219035 + inSlope: -0.068437144 + outSlope: -0.068437144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.15839271 + inSlope: -0.3319316 + outSlope: -0.3319316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.15006156 + inSlope: -0.35587496 + outSlope: -0.35587496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.13466772 + inSlope: -0.47684413 + outSlope: -0.47684413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.118271954 + inSlope: -0.27320707 + outSlope: -0.27320707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.11645391 + inSlope: -0.5952638 + outSlope: -0.5952638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.07858767 + inSlope: -1.5338805 + outSlope: -1.5338805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.014195244 + inSlope: -0.690362 + outSlope: -0.690362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.032563623 + inSlope: 0.5510509 + outSlope: 0.5510509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2861707 + inSlope: -0.34061548 + outSlope: -0.34061548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.28056636 + inSlope: 1.4495318 + outSlope: 1.4495318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.20088908 + inSlope: 2.0181777 + outSlope: 2.0181777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.14602117 + inSlope: 0.6936942 + outSlope: 0.6936942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.1546428 + inSlope: -0.23273325 + outSlope: -0.23273325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.16153672 + inSlope: -0.2920581 + outSlope: -0.2920581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.17411335 + inSlope: -0.7187331 + outSlope: -0.7187331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.20945226 + inSlope: -0.789397 + outSlope: -0.789397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.22673981 + inSlope: 0.2695466 + outSlope: 0.2695466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.19148248 + inSlope: 0.8528538 + outSlope: 0.8528538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.1698829 + inSlope: -0.0069095194 + outSlope: -0.0069095194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.19194314 + inSlope: -0.6314939 + outSlope: -0.6314939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.2119825 + inSlope: 0.044317037 + outSlope: 0.044317037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.18898867 + inSlope: 0.74799895 + outSlope: 0.74799895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.16211593 + inSlope: 0.19895048 + outSlope: 0.19895048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.17572534 + inSlope: -0.63530993 + outSlope: -0.63530993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.20446996 + inSlope: -0.41604868 + outSlope: -0.41604868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.20346195 + inSlope: -0.74919826 + outSlope: -0.74919826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.25441656 + inSlope: -1.556777 + outSlope: -1.556777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.30724707 + inSlope: -0.63460577 + outSlope: -0.63460577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.29672354 + inSlope: 0.38794318 + outSlope: 0.38794318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2813842 + inSlope: 0.15826894 + outSlope: 0.15826894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.2861723 + inSlope: -0.1436429 + outSlope: -0.1436429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3385034 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.3385034 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23385485 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.23385485 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5763953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5763953 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.809624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.809624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152153 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.47152153 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12715933 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12715933 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46572542 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.46572542 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011479577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.011479577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3384522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.3384522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9042923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.9042923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80962396 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.80962396 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152066 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.47152066 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12709297 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12709297 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4657373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4657373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0114043495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0114043495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.7666667 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Forward.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Forward.anim.meta new file mode 100644 index 0000000..659bdd4 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Forward.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 31a3d1056e04d0646864510c89447e7b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Forward.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Left.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Left.anim new file mode 100644 index 0000000..d77681a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Left.anim @@ -0,0 +1,16770 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Run_Left + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0798897 + inSlope: -2.3176901 + outSlope: -2.3176901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.002633357 + inSlope: -2.3635926 + outSlope: -2.3635926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.16009541 + inSlope: -2.5235217 + outSlope: -2.5235217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.42940283 + inSlope: -2.749519 + outSlope: -2.749519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.5199466 + inSlope: -2.9477577 + outSlope: -2.9477577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.72454214 + inSlope: -2.7740793 + outSlope: -2.7740793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -1.0547391 + inSlope: -2.5479603 + outSlope: -2.5479603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.9542094 + inSlope: -2.4695256 + outSlope: -2.4695256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.94548553 + inSlope: -0.26233435 + outSlope: -0.26233435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.96331537 + inSlope: 0.8143401 + outSlope: 0.8143401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9988822 + inSlope: 0.7586307 + outSlope: 0.7586307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 1.0154681 + inSlope: -0.13589682 + outSlope: -0.13589682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.9900141 + inSlope: -0.7561112 + outSlope: -0.7561112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9577904 + inSlope: -0.71910477 + outSlope: -0.71910477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.93179536 + inSlope: -0.27970243 + outSlope: -0.27970243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.9234269 + inSlope: 0.34362674 + outSlope: 0.34362674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.99187845 + inSlope: 0.75901186 + outSlope: 0.75901186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 1.0129418 + inSlope: 0.2629656 + outSlope: 0.2629656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 1.0210654 + inSlope: -0.2657803 + outSlope: -0.2657803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.94548553 + inSlope: -0.86396027 + outSlope: -0.86396027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.01868741 + inSlope: 0.16063818 + outSlope: 0.16063818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.013332804 + inSlope: 0.08516041 + outSlope: 0.08516041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.013010049 + inSlope: -0.019301187 + outSlope: -0.019301187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.01461955 + inSlope: -0.08267823 + outSlope: -0.08267823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.018521931 + inSlope: -0.13995633 + outSlope: -0.13995633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.023949971 + inSlope: -0.24848711 + outSlope: -0.24848711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.035087742 + inSlope: -0.25268847 + outSlope: -0.25268847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.044742852 + inSlope: -0.16144368 + outSlope: -0.16144368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.051558785 + inSlope: -0.15151376 + outSlope: -0.15151376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.05484377 + inSlope: 0.0048620626 + outSlope: 0.0048620626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.051234648 + inSlope: 0.10751732 + outSlope: 0.10751732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.047675945 + inSlope: 0.1781049 + outSlope: 0.1781049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.039360985 + inSlope: 0.21588364 + outSlope: 0.21588364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.030754846 + inSlope: 0.013386795 + outSlope: 0.013386795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.032391254 + inSlope: -0.06652493 + outSlope: -0.06652493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.035189845 + inSlope: -0.014856193 + outSlope: -0.014856193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.03338167 + inSlope: 0.04271961 + outSlope: 0.04271961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.03234187 + inSlope: -0.020456975 + outSlope: -0.020456975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.034745466 + inSlope: -0.030160083 + outSlope: -0.030160083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.03435254 + inSlope: 0.06120926 + outSlope: 0.06120926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.030664852 + inSlope: 0.23497663 + outSlope: 0.23497663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.018687425 + inSlope: 0.3593225 + outSlope: 0.3593225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.004031375 + inSlope: 0.08834883 + outSlope: 0.08834883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0069763362 + inSlope: 0.044258233 + outSlope: 0.044258233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.006981924 + inSlope: 0.024544444 + outSlope: 0.024544444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.008612633 + inSlope: 0.055257082 + outSlope: 0.055257082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.01066573 + inSlope: 0.08964949 + outSlope: 0.08964949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.014589265 + inSlope: 0.13215151 + outSlope: 0.13215151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.019475833 + inSlope: 0.105185255 + outSlope: 0.105185255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.021601617 + inSlope: 0.035303686 + outSlope: 0.035303686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.021829411 + inSlope: -0.037220348 + outSlope: -0.037220348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.019120261 + inSlope: -0.16973668 + outSlope: -0.16973668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0105136335 + inSlope: -0.15690567 + outSlope: -0.15690567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.008659884 + inSlope: -0.078484975 + outSlope: -0.078484975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0052812994 + inSlope: -0.01816611 + outSlope: -0.01816611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0074488074 + inSlope: 0.07510186 + outSlope: 0.07510186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0102880895 + inSlope: 0.12857044 + outSlope: 0.12857044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.016020164 + inSlope: 0.14483373 + outSlope: 0.14483373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.01994367 + inSlope: 0.11755017 + outSlope: 0.11755017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.023856848 + inSlope: 0.098468795 + outSlope: 0.098468795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.026508257 + inSlope: -0.017907012 + outSlope: -0.017907012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.022663042 + inSlope: -0.17938755 + outSlope: -0.17938755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.014549091 + inSlope: -0.22892366 + outSlope: -0.22892366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0074014664 + inSlope: -0.13733262 + outSlope: -0.13733262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0053935796 + inSlope: -0.05055138 + outSlope: -0.05055138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.004031375 + inSlope: -0.040866103 + outSlope: -0.040866103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.031097377 + inSlope: 0.060956717 + outSlope: 0.060956717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.034794714 + inSlope: 0.049354933 + outSlope: 0.049354933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.036419597 + inSlope: 0.08296402 + outSlope: 0.08296402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.04917857 + inSlope: 0.082499586 + outSlope: 0.082499586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.05065012 + inSlope: 0.049050007 + outSlope: 0.049050007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.053687677 + inSlope: -0.013070965 + outSlope: -0.013070965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.051577173 + inSlope: -0.046665523 + outSlope: -0.046665523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.050576642 + inSlope: -0.036735572 + outSlope: -0.036735572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.049128134 + inSlope: -0.014494248 + outSlope: -0.014494248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.050957996 + inSlope: 0.032507103 + outSlope: 0.032507103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.051777497 + inSlope: -0.023259573 + outSlope: -0.023259573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.049407355 + inSlope: -0.060611784 + outSlope: -0.060611784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.047736708 + inSlope: -0.11071751 + outSlope: -0.11071751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.042026192 + inSlope: -0.14371872 + outSlope: -0.14371872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.038155463 + inSlope: -0.12878126 + outSlope: -0.12878126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.033440776 + inSlope: -0.10899297 + outSlope: -0.10899297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.030889267 + inSlope: -0.056084894 + outSlope: -0.056084894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.029701782 + inSlope: 0.0031216107 + outSlope: 0.0031216107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.031097377 + inSlope: 0.041867796 + outSlope: 0.041867796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0523751 + inSlope: 0.36601412 + outSlope: 0.36601412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.04017463 + inSlope: 0.2882504 + outSlope: 0.2882504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.033158407 + inSlope: 0.1941378 + outSlope: 0.1941378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.027232109 + inSlope: 0.15917002 + outSlope: 0.15917002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.022547072 + inSlope: 0.04458771 + outSlope: 0.04458771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.024259595 + inSlope: -0.16858391 + outSlope: -0.16858391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.033786003 + inSlope: -0.27904293 + outSlope: -0.27904293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.04286246 + inSlope: -0.1679078 + outSlope: -0.1679078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.044979855 + inSlope: -0.13601047 + outSlope: -0.13601047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.051929824 + inSlope: -0.028581396 + outSlope: -0.028581396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.04688528 + inSlope: 0.026371818 + outSlope: 0.026371818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.050171703 + inSlope: 0.13446295 + outSlope: 0.13446295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.037921075 + inSlope: 0.22817972 + outSlope: 0.22817972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.03495971 + inSlope: -0.07478893 + outSlope: -0.07478893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.042907003 + inSlope: -0.28536838 + outSlope: -0.28536838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.05398426 + inSlope: -0.18355745 + outSlope: -0.18355745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.055144157 + inSlope: -0.07562599 + outSlope: -0.07562599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.059025995 + inSlope: -0.024105936 + outSlope: -0.024105936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.05134387 + inSlope: 0.15187679 + outSlope: 0.15187679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.046626106 + inSlope: 0.05839954 + outSlope: 0.05839954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.050666533 + inSlope: -0.07386795 + outSlope: -0.07386795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0523751 + inSlope: -0.051256973 + outSlope: -0.051256973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99813515 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.99813515 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09294222 + inSlope: 1.6175228 + outSlope: 1.6175228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.039024793 + inSlope: 1.8837996 + outSlope: 1.8837996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.032644417 + inSlope: 2.249775 + outSlope: 2.249775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.11096021 + inSlope: 2.5361714 + outSlope: 2.5361714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.20172252 + inSlope: 3.249577 + outSlope: 3.249577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.32759866 + inSlope: 3.424191 + outSlope: 3.424191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.43000194 + inSlope: 2.2977343 + outSlope: 2.2977343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.480781 + inSlope: -0.032872677 + outSlope: -0.032872677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.42781043 + inSlope: -1.5967991 + outSlope: -1.5967991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.37432772 + inSlope: -2.0919216 + outSlope: -2.0919216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.288349 + inSlope: -2.0621161 + outSlope: -2.0621161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.23685332 + inSlope: -1.5475254 + outSlope: -1.5475254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.1851806 + inSlope: -2.2534738 + outSlope: -2.2534738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.086621694 + inSlope: -2.7983162 + outSlope: -2.7983162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0013737967 + inSlope: -2.5361505 + outSlope: -2.5361505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.08245492 + inSlope: -1.8739264 + outSlope: -1.8739264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.12630218 + inSlope: -1.2399962 + outSlope: -1.2399962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.1651214 + inSlope: -1.4357207 + outSlope: -1.4357207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.22201687 + inSlope: -1.4145179 + outSlope: -1.4145179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.25942257 + inSlope: -0.85321856 + outSlope: -0.85321856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.27889812 + inSlope: 0.103168786 + outSlope: 0.103168786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2525446 + inSlope: 1.1002722 + outSlope: 1.1002722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.20554666 + inSlope: 2.3940375 + outSlope: 2.3940375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.09294206 + inSlope: 3.3781352 + outSlope: 3.3781352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.94860625 + inSlope: 0.47591683 + outSlope: 0.47591683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.9290988 + inSlope: -0.008320209 + outSlope: -0.008320209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.93329704 + inSlope: 0.046972647 + outSlope: 0.046972647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.9259673 + inSlope: 1.2726413 + outSlope: 1.2726413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.75481707 + inSlope: 2.5934138 + outSlope: 2.5934138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.56728685 + inSlope: 0.9212092 + outSlope: 0.9212092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.55080897 + inSlope: -0.14672476 + outSlope: -0.14672476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.58562845 + inSlope: -1.1040411 + outSlope: -1.1040411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.6848984 + inSlope: -1.0721841 + outSlope: -1.0721841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.769435 + inSlope: -2.0219023 + outSlope: -2.0219023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.8592862 + inSlope: -2.8711817 + outSlope: -2.8711817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.9608471 + inSlope: -1.8193114 + outSlope: -1.8193114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.98057353 + inSlope: -0.47080362 + outSlope: -0.47080362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.992234 + inSlope: 0.47950852 + outSlope: 0.47950852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.94860625 + inSlope: 1.3088311 + outSlope: 1.3088311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.14825411 + inSlope: 0.116477154 + outSlope: 0.116477154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.14437154 + inSlope: 0.17296536 + outSlope: 0.17296536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.13672309 + inSlope: 0.16364983 + outSlope: 0.16364983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.13346155 + inSlope: 0.24781197 + outSlope: 0.24781197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.12020229 + inSlope: 0.22012019 + outSlope: 0.22012019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.11878687 + inSlope: -0.34101456 + outSlope: -0.34101456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1429366 + inSlope: -0.65195304 + outSlope: -0.65195304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.16225041 + inSlope: -0.5839243 + outSlope: -0.5839243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.18186489 + inSlope: -0.54913294 + outSlope: -0.54913294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.19885927 + inSlope: -0.5962444 + outSlope: -0.5962444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.22161451 + inSlope: -0.5431067 + outSlope: -0.5431067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.2454921 + inSlope: -0.260471 + outSlope: -0.260471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.24705942 + inSlope: 0.33913496 + outSlope: 0.33913496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.22982214 + inSlope: 0.44101316 + outSlope: 0.44101316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.2028025 + inSlope: 0.5337633 + outSlope: 0.5337633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.16284831 + inSlope: 0.53269476 + outSlope: 0.53269476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.14656135 + inSlope: 0.061154753 + outSlope: 0.061154753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.15877135 + inSlope: 0.02717805 + outSlope: 0.02717805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.1447495 + inSlope: 0.1577595 + outSlope: 0.1577595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.14825407 + inSlope: -0.10513669 + outSlope: -0.10513669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.43867224 + inSlope: -0.1427713 + outSlope: -0.1427713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.43390867 + inSlope: -0.083836004 + outSlope: -0.083836004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.42832413 + inSlope: -0.9799089 + outSlope: -0.9799089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.3685814 + inSlope: -0.41874245 + outSlope: -0.41874245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.40040797 + inSlope: -0.6677971 + outSlope: -0.6677971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.32406157 + inSlope: -1.6666434 + outSlope: -1.6666434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.2892984 + inSlope: -1.1024944 + outSlope: -1.1024944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.25056195 + inSlope: -1.4354701 + outSlope: -1.4354701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.19360039 + inSlope: -1.5194297 + outSlope: -1.5194297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.14926665 + inSlope: -0.87489396 + outSlope: -0.87489396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.13527413 + inSlope: -0.32886824 + outSlope: -0.32886824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.12734209 + inSlope: -0.2221522 + outSlope: -0.2221522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.120463975 + inSlope: -0.13101631 + outSlope: -0.13101631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.11860767 + inSlope: 0.2405507 + outSlope: 0.2405507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.13650067 + inSlope: 0.37914583 + outSlope: 0.37914583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.17945422 + inSlope: 1.1831337 + outSlope: 1.1831337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.23248155 + inSlope: 1.9284016 + outSlope: 1.9284016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3080143 + inSlope: 1.737445 + outSlope: 1.737445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.3483112 + inSlope: 1.6821488 + outSlope: 1.6821488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.42015752 + inSlope: 1.3554171 + outSlope: 1.3554171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.43867227 + inSlope: 0.5554421 + outSlope: 0.5554421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.40853158 + inSlope: -0.08179843 + outSlope: -0.08179843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.4112582 + inSlope: 0.1426269 + outSlope: 0.1426269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.39902312 + inSlope: 0.07425919 + outSlope: 0.07425919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.40630758 + inSlope: -0.3209205 + outSlope: -0.3209205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.42041782 + inSlope: 1.7651471 + outSlope: 1.7651471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.2886311 + inSlope: 2.5207503 + outSlope: 2.5207503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.2523678 + inSlope: 0.8205794 + outSlope: 0.8205794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2339258 + inSlope: 0.48111814 + outSlope: 0.48111814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.22029325 + inSlope: 0.20527908 + outSlope: 0.20527908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.22024053 + inSlope: -0.52477777 + outSlope: -0.52477777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.25527844 + inSlope: -0.91871655 + outSlope: -0.91871655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.2814883 + inSlope: -0.91426677 + outSlope: -0.91426677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.31622958 + inSlope: -1.7291224 + outSlope: -1.7291224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.39676315 + inSlope: -2.3090467 + outSlope: -2.3090467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.52432054 + inSlope: -1.2122722 + outSlope: -1.2122722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.57287896 + inSlope: -0.71857905 + outSlope: -0.71857905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.5988894 + inSlope: -0.023506641 + outSlope: -0.023506641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.574446 + inSlope: 1.2171861 + outSlope: 1.2171861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.5177437 + inSlope: 0.78672945 + outSlope: 0.78672945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.52199745 + inSlope: 1.3096882 + outSlope: 1.3096882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.43043125 + inSlope: 1.7019914 + outSlope: 1.7019914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.40853143 + inSlope: 0.65699404 + outSlope: 0.65699404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5298189 + inSlope: 0.27909994 + outSlope: 0.27909994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.53039426 + inSlope: -0.70103276 + outSlope: -0.70103276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.4923867 + inSlope: -2.2233174 + outSlope: -2.2233174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.3821731 + inSlope: -4.402583 + outSlope: -4.402583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.19888118 + inSlope: -5.1706543 + outSlope: -5.1706543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.03746274 + inSlope: -3.1121883 + outSlope: -3.1121883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.008598112 + inSlope: -1.2060995 + outSlope: -1.2060995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.042943887 + inSlope: -1.0298946 + outSlope: -1.0298946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.07725775 + inSlope: -0.30584738 + outSlope: -0.30584738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06333371 + inSlope: 0.513665 + outSlope: 0.513665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.04301342 + inSlope: 0.818014 + outSlope: 0.818014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.00879942 + inSlope: 1.7635585 + outSlope: 1.7635585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.07455717 + inSlope: 2.6446552 + outSlope: 2.6446552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.16751093 + inSlope: 2.7998705 + outSlope: 2.7998705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.26121512 + inSlope: 2.0162325 + outSlope: 2.0162325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.30192637 + inSlope: 1.210023 + outSlope: 1.210023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.3418834 + inSlope: 1.7733623 + outSlope: 1.7733623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.4201505 + inSlope: 2.4098144 + outSlope: 2.4098144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.50253767 + inSlope: 2.3432488 + outSlope: 2.3432488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.5763671 + inSlope: 0.28393596 + outSlope: 0.28393596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5214666 + inSlope: -0.4516114 + outSlope: -0.4516114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.5462596 + inSlope: 0.12528655 + outSlope: 0.12528655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.529819 + inSlope: -0.4932167 + outSlope: -0.4932167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5999675 + inSlope: 0.20183085 + outSlope: 0.20183085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.5932398 + inSlope: -0.1392433 + outSlope: -0.1392433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.60925037 + inSlope: -0.6944632 + outSlope: -0.6944632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.63953733 + inSlope: -1.8976182 + outSlope: -1.8976182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.84664756 + inSlope: -2.628384 + outSlope: -2.628384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.91098386 + inSlope: -1.2229323 + outSlope: -1.2229323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.9281764 + inSlope: -0.4611156 + outSlope: -0.4611156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.9490075 + inSlope: 0.19677478 + outSlope: 0.19677478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.9069227 + inSlope: 1.225141 + outSlope: 1.225141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.7988883 + inSlope: 1.4072769 + outSlope: 1.4072769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.7289246 + inSlope: 1.6025553 + outSlope: 1.6025553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.6577247 + inSlope: 1.891218 + outSlope: 1.891218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.6028434 + inSlope: 1.5836146 + outSlope: 1.5836146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.55215037 + inSlope: 0.37022635 + outSlope: 0.37022635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.5781617 + inSlope: -0.4615623 + outSlope: -0.4615623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.5829212 + inSlope: -0.3270854 + outSlope: -0.3270854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5999674 + inSlope: -0.511386 + outSlope: -0.511386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.24871182 + inSlope: -2.6955497 + outSlope: -2.6955497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.15886016 + inSlope: -2.1424634 + outSlope: -2.1424634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.105880916 + inSlope: -1.6364219 + outSlope: -1.6364219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.04976536 + inSlope: -2.2854474 + outSlope: -2.2854474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.046482246 + inSlope: -2.751315 + outSlope: -2.751315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.13365565 + inSlope: -1.9039927 + outSlope: -1.9039927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.17341511 + inSlope: -0.7125952 + outSlope: -0.7125952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.18116201 + inSlope: -0.68386906 + outSlope: -0.68386906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.21900637 + inSlope: -0.08614901 + outSlope: -0.08614901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.18690528 + inSlope: 1.6780626 + outSlope: 1.6780626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.10713555 + inSlope: 2.6148343 + outSlope: 2.6148343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.012583012 + inSlope: 2.4435186 + outSlope: 2.4435186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.055765737 + inSlope: 2.186621 + outSlope: 2.186621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.13319176 + inSlope: 2.702262 + outSlope: 2.702262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.23591651 + inSlope: 3.4941115 + outSlope: 3.4941115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.3661324 + inSlope: 3.319869 + outSlope: 3.319869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.45724106 + inSlope: 2.29712 + outSlope: 2.29712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5192739 + inSlope: 0.5110951 + outSlope: 0.5110951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.49131414 + inSlope: -1.0961602 + outSlope: -1.0961602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.44619653 + inSlope: -1.5836762 + outSlope: -1.5836762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.38573575 + inSlope: -1.368101 + outSlope: -1.368101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.3216541 + inSlope: -1.5941691 + outSlope: -1.5941691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.24871185 + inSlope: -2.1882658 + outSlope: -2.1882658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6092378 + inSlope: -0.99786216 + outSlope: -0.99786216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.664483 + inSlope: -0.66731834 + outSlope: -0.66731834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.68698776 + inSlope: -0.9346935 + outSlope: -0.9346935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.7267959 + inSlope: -1.0341061 + outSlope: -1.0341061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.75592816 + inSlope: -1.0706178 + outSlope: -1.0706178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.79817045 + inSlope: -1.0980496 + outSlope: -1.0980496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.8605858 + inSlope: -0.806923 + outSlope: -0.806923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.88292634 + inSlope: -1.0023389 + outSlope: -1.0023389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.9274084 + inSlope: -0.60979223 + outSlope: -0.60979223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.92357916 + inSlope: 0.21869288 + outSlope: 0.21869288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.8976705 + inSlope: 0.17805667 + outSlope: 0.17805667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.9009584 + inSlope: 0.30648652 + outSlope: 0.30648652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.85171753 + inSlope: 0.7111585 + outSlope: 0.7111585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.793146 + inSlope: 1.6393819 + outSlope: 1.6393819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.64820015 + inSlope: 1.5114907 + outSlope: 1.5114907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.61976933 + inSlope: 0.6354777 + outSlope: 0.6354777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6092378 + inSlope: -0.10208479 + outSlope: -0.10208479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04600335 + inSlope: 2.1731005 + outSlope: 2.1731005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.026433334 + inSlope: 1.4954276 + outSlope: 1.4954276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.053691823 + inSlope: 0.9143676 + outSlope: 0.9143676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.08739118 + inSlope: 0.93931943 + outSlope: 0.93931943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.11631312 + inSlope: 0.6409662 + outSlope: 0.6409662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.1339198 + inSlope: 0.0049330033 + outSlope: 0.0049330033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.13045113 + inSlope: -0.29355785 + outSlope: -0.29355785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.11434928 + inSlope: -0.578275 + outSlope: -0.578275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.09189946 + inSlope: -1.002324 + outSlope: -1.002324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.04752769 + inSlope: -0.7026783 + outSlope: -0.7026783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.045054242 + inSlope: -0.13015836 + outSlope: -0.13015836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.03885046 + inSlope: -0.049349546 + outSlope: -0.049349546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.041764267 + inSlope: 0.12730324 + outSlope: 0.12730324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.047337342 + inSlope: 0.064194635 + outSlope: 0.064194635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.03768192 + inSlope: -0.37406802 + outSlope: -0.37406802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.02110602 + inSlope: -1.0892015 + outSlope: -1.0892015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.03493147 + inSlope: -1.4929037 + outSlope: -1.4929037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.07842088 + inSlope: -0.90585935 + outSlope: -0.90585935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.09532211 + inSlope: -0.2531904 + outSlope: -0.2531904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.09530022 + inSlope: 0.16581723 + outSlope: 0.16581723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08426764 + inSlope: 0.7394531 + outSlope: 0.7394531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.046003327 + inSlope: 1.1479284 + outSlope: 1.1479284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.32825983 + inSlope: 0.45159993 + outSlope: 0.45159993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.30307448 + inSlope: 0.16240059 + outSlope: 0.16240059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.3023798 + inSlope: 0.020205528 + outSlope: 0.020205528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.3097506 + inSlope: -0.34069768 + outSlope: -0.34069768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.32444063 + inSlope: -0.36739504 + outSlope: -0.36739504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.3342436 + inSlope: -0.3573807 + outSlope: -0.3573807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.348266 + inSlope: -1.1403091 + outSlope: -1.1403091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.4102642 + inSlope: -0.9136615 + outSlope: -0.9136615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.40917677 + inSlope: -0.4607566 + outSlope: -0.4607566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.4409813 + inSlope: -0.85930216 + outSlope: -0.85930216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.46597597 + inSlope: 0.44539604 + outSlope: 0.44539604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.43677053 + inSlope: -0.0020965338 + outSlope: -0.0020965338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.4661157 + inSlope: -1.0016079 + outSlope: -1.0016079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.5035444 + inSlope: -1.0108835 + outSlope: -1.0108835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.533508 + inSlope: -0.096254826 + outSlope: -0.096254826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.45002854 + inSlope: 1.894891 + outSlope: 1.894891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.38363537 + inSlope: 1.3262029 + outSlope: 1.3262029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.36161506 + inSlope: 0.576864 + outSlope: 0.576864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.32825983 + inSlope: 0.5075379 + outSlope: 0.5075379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6234593 + inSlope: 0.84836835 + outSlope: 0.84836835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.66466516 + inSlope: -0.33160958 + outSlope: -0.33160958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.6014957 + inSlope: -1.2819419 + outSlope: -1.2819419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.55751854 + inSlope: -0.9600724 + outSlope: -0.9600724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.51653224 + inSlope: -1.0821731 + outSlope: -1.0821731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.46534598 + inSlope: -0.4435708 + outSlope: -0.4435708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.48696086 + inSlope: -0.06949782 + outSlope: -0.06949782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.4607128 + inSlope: -0.77396405 + outSlope: -0.77396405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.43536323 + inSlope: -0.37921262 + outSlope: -0.37921262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.43543193 + inSlope: 0.42277518 + outSlope: 0.42277518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.46354824 + inSlope: 0.05715844 + outSlope: 0.05715844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.4392425 + inSlope: -0.006613195 + outSlope: -0.006613195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.4631074 + inSlope: 0.73503506 + outSlope: 0.73503506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.4882449 + inSlope: 0.9953805 + outSlope: 0.9953805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.5294661 + inSlope: 1.075221 + outSlope: 1.075221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.58565784 + inSlope: 0.5384206 + outSlope: 0.5384206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.6055264 + inSlope: 0.41457462 + outSlope: 0.41457462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6234593 + inSlope: 0.5379863 + outSlope: 0.5379863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1527375 + inSlope: -3.0836847 + outSlope: -3.0836847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.255527 + inSlope: -2.408489 + outSlope: -2.408489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.31330344 + inSlope: -1.9406898 + outSlope: -1.9406898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.38490632 + inSlope: -2.8337078 + outSlope: -2.8337078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.5022173 + inSlope: -2.9578342 + outSlope: -2.9578342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.63058364 + inSlope: -1.0007498 + outSlope: -1.0007498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.64881194 + inSlope: -0.4721967 + outSlope: -0.4721967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.6620634 + inSlope: -0.29946598 + outSlope: -0.29946598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.66877633 + inSlope: 1.4834038 + outSlope: 1.4834038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.56316984 + inSlope: 1.9947876 + outSlope: 1.9947876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.5357905 + inSlope: 0.7286254 + outSlope: 0.7286254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.5145948 + inSlope: 0.27465704 + outSlope: 0.27465704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.51748 + inSlope: 0.66326517 + outSlope: 0.66326517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.47037712 + inSlope: 2.7250533 + outSlope: 2.7250533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.33580992 + inSlope: 2.817748 + outSlope: 2.817748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.28252733 + inSlope: 1.5340626 + outSlope: 1.5340626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.23353899 + inSlope: 1.8496884 + outSlope: 1.8496884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.1592148 + inSlope: 1.7603261 + outSlope: 1.7603261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.11618394 + inSlope: 0.9847158 + outSlope: 0.9847158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.08969387 + inSlope: -0.120801106 + outSlope: -0.120801106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10162045 + inSlope: -0.94565403 + outSlope: -0.94565403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.1527375 + inSlope: -1.5335102 + outSlope: -1.5335102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.69297594 + inSlope: -1.5367322 + outSlope: -1.5367322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6417515 + inSlope: -1.2995875 + outSlope: -1.2995875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.56447655 + inSlope: -1.6960295 + outSlope: -1.6960295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.49326813 + inSlope: -1.7017839 + outSlope: -1.7017839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.41662645 + inSlope: -0.190233 + outSlope: -0.190233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.40972528 + inSlope: 1.6634918 + outSlope: 1.6634918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.5275259 + inSlope: 2.1545334 + outSlope: 2.1545334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.5533608 + inSlope: 0.6786308 + outSlope: 0.6786308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.572768 + inSlope: 0.25722003 + outSlope: 0.25722003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.57050884 + inSlope: 0.5707679 + outSlope: 0.5707679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.61081916 + inSlope: 1.8025181 + outSlope: 1.8025181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6906766 + inSlope: 0.92406356 + outSlope: 0.92406356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6724233 + inSlope: -0.6107707 + outSlope: -0.6107707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.64995855 + inSlope: -0.20163466 + outSlope: -0.20163466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7078662 + inSlope: 0.38352937 + outSlope: 0.38352937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.69297594 + inSlope: -0.5057247 + outSlope: -0.5057247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22475445 + inSlope: -0.115175836 + outSlope: -0.115175836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.23301102 + inSlope: -0.104389556 + outSlope: -0.104389556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.23555295 + inSlope: 0.047745794 + outSlope: 0.047745794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.21907604 + inSlope: 0.23147038 + outSlope: 0.23147038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.21439661 + inSlope: 0.08323853 + outSlope: 0.08323853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2135268 + inSlope: 0.26513168 + outSlope: 0.26513168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.19672117 + inSlope: 0.41056734 + outSlope: 0.41056734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.17964722 + inSlope: 0.06455295 + outSlope: 0.06455295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.18711884 + inSlope: -0.20224431 + outSlope: -0.20224431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.19533508 + inSlope: -0.33609468 + outSlope: -0.33609468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.22240636 + inSlope: -0.30604258 + outSlope: -0.30604258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.23735552 + inSlope: 0.08544721 + outSlope: 0.08544721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.23193829 + inSlope: 0.113186136 + outSlope: 0.113186136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.22980978 + inSlope: 0.099637404 + outSlope: 0.099637404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2252958 + inSlope: 0.07583237 + outSlope: 0.07583237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.22475429 + inSlope: 0.016245233 + outSlope: 0.016245233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13007589 + inSlope: -0.052879747 + outSlope: -0.052879747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.12652306 + inSlope: -0.029266924 + outSlope: -0.029266924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.12511964 + inSlope: 0.15173772 + outSlope: 0.15173772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.13663891 + inSlope: 0.27425787 + outSlope: 0.27425787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.1434035 + inSlope: 0.11831466 + outSlope: 0.11831466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.14452656 + inSlope: 0.09278209 + outSlope: 0.09278209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.14958897 + inSlope: 0.07648007 + outSlope: 0.07648007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.14962523 + inSlope: 0.090524785 + outSlope: 0.090524785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15562396 + inSlope: 0.07820048 + outSlope: 0.07820048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.15483859 + inSlope: -0.04087148 + outSlope: -0.04087148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.15289919 + inSlope: -0.306393 + outSlope: -0.306393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.1344124 + inSlope: -0.38521957 + outSlope: -0.38521957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.12721789 + inSlope: -0.3562727 + outSlope: -0.3562727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.110660896 + inSlope: -0.25741643 + outSlope: -0.25741643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.11005681 + inSlope: 0.03241134 + outSlope: 0.03241134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.11282165 + inSlope: 0.16812709 + outSlope: 0.16812709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.12873727 + inSlope: 0.15014866 + outSlope: 0.15014866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.12969507 + inSlope: -0.006469057 + outSlope: -0.006469057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.1300759 + inSlope: 0.01142486 + outSlope: 0.01142486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12345373 + inSlope: -0.5900996 + outSlope: -0.5900996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.10378374 + inSlope: -0.3275005 + outSlope: -0.3275005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.10162036 + inSlope: -0.015092012 + outSlope: -0.015092012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.10277761 + inSlope: 0.17083962 + outSlope: 0.17083962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.11300967 + inSlope: 0.2593104 + outSlope: 0.2593104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.12006497 + inSlope: 0.38090098 + outSlope: 0.38090098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.13840307 + inSlope: 0.42151722 + outSlope: 0.42151722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.15954797 + inSlope: 0.4586826 + outSlope: 0.4586826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1961155 + inSlope: 0.26360798 + outSlope: 0.26360798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.19631882 + inSlope: -0.0071212566 + outSlope: -0.0071212566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.19564074 + inSlope: -0.16509198 + outSlope: -0.16509198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.18531269 + inSlope: -0.22185647 + outSlope: -0.22185647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.18068957 + inSlope: 0.028549187 + outSlope: 0.028549187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.1817668 + inSlope: -0.12493342 + outSlope: -0.12493342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.16112195 + inSlope: -0.23602337 + outSlope: -0.23602337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.15328844 + inSlope: -0.12672211 + outSlope: -0.12672211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14817765 + inSlope: -0.44752008 + outSlope: -0.44752008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12345375 + inSlope: -0.74171644 + outSlope: -0.74171644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9080771 + inSlope: 0.15597938 + outSlope: 0.15597938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.9082178 + inSlope: 0.07187872 + outSlope: 0.07187872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.90693367 + inSlope: -0.29867572 + outSlope: -0.29867572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9080771 + inSlope: 0.1672052 + outSlope: 0.1672052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0017716829 + inSlope: -0.1600303 + outSlope: -0.1600303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.003562661 + inSlope: -0.33104917 + outSlope: -0.33104917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.020298263 + inSlope: -0.6854377 + outSlope: -0.6854377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.04925851 + inSlope: -1.0513554 + outSlope: -1.0513554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09038862 + inSlope: -0.8538847 + outSlope: -0.8538847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.106184155 + inSlope: -0.14876765 + outSlope: -0.14876765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.10030646 + inSlope: 0.2255323 + outSlope: 0.2255323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.09114867 + inSlope: 0.26658165 + outSlope: 0.26658165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.08253435 + inSlope: 0.58962345 + outSlope: 0.58962345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.05184044 + inSlope: 0.8480438 + outSlope: 0.8480438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0259981 + inSlope: 0.52408755 + outSlope: 0.52408755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.016901273 + inSlope: 0.26033002 + outSlope: 0.26033002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.008642759 + inSlope: 0.31800646 + outSlope: 0.31800646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.004299164 + inSlope: -0.26106596 + outSlope: -0.26106596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.026047157 + inSlope: -0.6103755 + outSlope: -0.6103755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.036392525 + inSlope: -0.21854171 + outSlope: -0.21854171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.04308715 + inSlope: -0.097827904 + outSlope: -0.097827904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.047138456 + inSlope: -0.045950223 + outSlope: -0.045950223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.046150494 + inSlope: 0.18654025 + outSlope: 0.18654025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.03470245 + inSlope: 0.32582355 + outSlope: 0.32582355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.024428928 + inSlope: 0.34277803 + outSlope: 0.34277803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0017716829 + inSlope: 0.40866774 + outSlope: 0.40866774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.37479573 + inSlope: 0.17874418 + outSlope: 0.17874418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.38583466 + inSlope: -0.01387953 + outSlope: -0.01387953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.36951235 + inSlope: -0.2623907 + outSlope: -0.2623907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.34127554 + inSlope: -0.17046557 + outSlope: -0.17046557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.34761697 + inSlope: 0.50498295 + outSlope: 0.50498295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.39220917 + inSlope: 0.4316981 + outSlope: 0.4316981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.40037733 + inSlope: 0.035449833 + outSlope: 0.035449833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.39967388 + inSlope: -0.1937052 + outSlope: -0.1937052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3897904 + inSlope: -0.22869503 + outSlope: -0.22869503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.38442755 + inSlope: -0.19988005 + outSlope: -0.19988005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.37646505 + inSlope: -0.14447728 + outSlope: -0.14447728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.37479573 + inSlope: -0.050079484 + outSlope: -0.050079484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.18687211 + inSlope: 1.2649583 + outSlope: 1.2649583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.14470683 + inSlope: 0.6313213 + outSlope: 0.6313213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.14478402 + inSlope: -0.16547081 + outSlope: -0.16547081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.15573822 + inSlope: -0.5350763 + outSlope: -0.5350763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.18045577 + inSlope: -0.56205827 + outSlope: -0.56205827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.19963387 + inSlope: -0.049853105 + outSlope: -0.049853105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.200176 + inSlope: 0.1617618 + outSlope: 0.1617618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.1906032 + inSlope: 0.30454296 + outSlope: 0.30454296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.17987314 + inSlope: 0.36104196 + outSlope: 0.36104196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.16653372 + inSlope: 0.62820387 + outSlope: 0.62820387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.13799287 + inSlope: 0.22487485 + outSlope: 0.22487485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.15154207 + inSlope: -0.6002593 + outSlope: -0.6002593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.17801014 + inSlope: -0.5025285 + outSlope: -0.5025285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.18504395 + inSlope: -0.19439897 + outSlope: -0.19439897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.19097008 + inSlope: -0.23524186 + outSlope: -0.23524186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.20821266 + inSlope: -0.16192603 + outSlope: -0.16192603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.21175249 + inSlope: 0.039982617 + outSlope: 0.039982617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2088563 + inSlope: 0.37320545 + outSlope: 0.37320545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.18687211 + inSlope: 0.65952516 + outSlope: 0.65952516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22253618 + inSlope: -0.09845584 + outSlope: -0.09845584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.21314426 + inSlope: -0.15140823 + outSlope: -0.15140823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.21244577 + inSlope: 0.18601769 + outSlope: 0.18601769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.22156161 + inSlope: 0.21294369 + outSlope: 0.21294369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.22664201 + inSlope: 0.10323998 + outSlope: 0.10323998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.22844428 + inSlope: 0.29024142 + outSlope: 0.29024142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.24599144 + inSlope: 0.44101554 + outSlope: 0.44101554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2639462 + inSlope: 0.07982478 + outSlope: 0.07982478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.26448736 + inSlope: 0.08128165 + outSlope: 0.08128165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.26858574 + inSlope: -0.0077623166 + outSlope: -0.0077623166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.2439514 + inSlope: -0.2344783 + outSlope: -0.2344783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.23098786 + inSlope: -0.19952641 + outSlope: -0.19952641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.22443898 + inSlope: -0.10961175 + outSlope: -0.10961175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.22514857 + inSlope: -0.038151708 + outSlope: -0.038151708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.22253634 + inSlope: -0.07836693 + outSlope: -0.07836693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13906376 + inSlope: -0.6851401 + outSlope: -0.6851401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.11622576 + inSlope: -0.5723334 + outSlope: -0.5723334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1009082 + inSlope: -0.44675058 + outSlope: -0.44675058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.08644238 + inSlope: -0.4430952 + outSlope: -0.4430952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.071368515 + inSlope: -0.118625395 + outSlope: -0.118625395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.07853402 + inSlope: 0.33433583 + outSlope: 0.33433583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.093657576 + inSlope: 0.36295936 + outSlope: 0.36295936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.10273132 + inSlope: 0.36199063 + outSlope: 0.36199063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.11779028 + inSlope: 0.5523547 + outSlope: 0.5523547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15788405 + inSlope: 0.29061693 + outSlope: 0.29061693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.15892942 + inSlope: -0.04677946 + outSlope: -0.04677946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.15476541 + inSlope: -0.44161695 + outSlope: -0.44161695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.12948829 + inSlope: -0.72723496 + outSlope: -0.72723496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.10628308 + inSlope: -0.5230671 + outSlope: -0.5230671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.09461716 + inSlope: -0.1849588 + outSlope: -0.1849588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.09395251 + inSlope: 0.036477007 + outSlope: 0.036477007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.11318549 + inSlope: 0.28393978 + outSlope: 0.28393978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.123414844 + inSlope: 0.26833752 + outSlope: 0.26833752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.13107465 + inSlope: 0.21339633 + outSlope: 0.21339633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.13764127 + inSlope: 0.119838044 + outSlope: 0.119838044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.13906385 + inSlope: 0.042677484 + outSlope: 0.042677484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08560427 + inSlope: -0.79864097 + outSlope: -0.79864097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.058982905 + inSlope: -0.575353 + outSlope: -0.575353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.047247402 + inSlope: -0.3035969 + outSlope: -0.3035969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.03874311 + inSlope: -0.26081753 + outSlope: -0.26081753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.029859565 + inSlope: -0.10096651 + outSlope: -0.10096651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.032012008 + inSlope: 0.26915294 + outSlope: 0.26915294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0478031 + inSlope: 0.39954877 + outSlope: 0.39954877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.058648597 + inSlope: 0.33645427 + outSlope: 0.33645427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.07023338 + inSlope: 0.5218275 + outSlope: 0.5218275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0934371 + inSlope: 0.62937593 + outSlope: 0.62937593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.112191774 + inSlope: 0.35784894 + outSlope: 0.35784894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.11729369 + inSlope: 0.11337852 + outSlope: 0.11337852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.12065793 + inSlope: 0.019759053 + outSlope: 0.019759053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.12106761 + inSlope: 0.061149724 + outSlope: 0.061149724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.12473457 + inSlope: 0.089307524 + outSlope: 0.089307524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.12702145 + inSlope: 0.080414236 + outSlope: 0.080414236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.13009553 + inSlope: 0.0016125999 + outSlope: 0.0016125999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.12249821 + inSlope: -0.11645234 + outSlope: -0.11645234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11686855 + inSlope: -0.14210886 + outSlope: -0.14210886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10989155 + inSlope: -0.4689636 + outSlope: -0.4689636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.085604295 + inSlope: -0.728617 + outSlope: -0.728617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2848392 + inSlope: -0.56216687 + outSlope: -0.56216687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.31605837 + inSlope: -0.32535684 + outSlope: -0.32535684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.32526857 + inSlope: -0.42558745 + outSlope: -0.42558745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.34443086 + inSlope: -0.3984918 + outSlope: -0.3984918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.3510645 + inSlope: 0.08250565 + outSlope: 0.08250565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.34793264 + inSlope: 0.23331197 + outSlope: 0.23331197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.32953265 + inSlope: 0.037612174 + outSlope: 0.037612174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.3330029 + inSlope: -0.045882322 + outSlope: -0.045882322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.33417854 + inSlope: -0.11815981 + outSlope: -0.11815981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.3404688 + inSlope: 0.057218812 + outSlope: 0.057218812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.33036396 + inSlope: 0.18711326 + outSlope: 0.18711326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.32572737 + inSlope: 0.13281143 + outSlope: 0.13281143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.28654578 + inSlope: 0.09513666 + outSlope: 0.09513666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.2848392 + inSlope: 0.05119707 + outSlope: 0.05119707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.64386255 + inSlope: -0.2556467 + outSlope: -0.2556467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.6523841 + inSlope: 0.09558855 + outSlope: 0.09558855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.6139487 + inSlope: 0.93351245 + outSlope: 0.93351245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.5752558 + inSlope: 0.9257207 + outSlope: 0.9257207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.552234 + inSlope: 0.34635815 + outSlope: 0.34635815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.557416 + inSlope: -0.1911083 + outSlope: -0.1911083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.5649058 + inSlope: -0.43467346 + outSlope: -0.43467346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.6031076 + inSlope: -0.39204782 + outSlope: -0.39204782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.6224665 + inSlope: -0.42482606 + outSlope: -0.42482606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.6408525 + inSlope: -0.045040563 + outSlope: -0.045040563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.6254692 + inSlope: 0.32470745 + outSlope: 0.32470745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.6118722 + inSlope: 0.057503916 + outSlope: 0.057503916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.64386255 + inSlope: -0.40743974 + outSlope: -0.40743974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5224852 + inSlope: -0.120288126 + outSlope: -0.120288126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.54129106 + inSlope: -0.5082517 + outSlope: -0.5082517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.56037825 + inSlope: -0.6217369 + outSlope: -0.6217369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.5827402 + inSlope: -0.28889897 + outSlope: -0.28889897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.5607489 + inSlope: 0.4552986 + outSlope: 0.4552986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.53613347 + inSlope: 0.5714572 + outSlope: 0.5714572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.48768562 + inSlope: 0.47511134 + outSlope: 0.47511134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.47539845 + inSlope: -0.038462043 + outSlope: -0.038462043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.48207784 + inSlope: -0.6018516 + outSlope: -0.6018516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.5155219 + inSlope: -0.82780874 + outSlope: -0.82780874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.54904467 + inSlope: -0.10506484 + outSlope: -0.10506484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5224852 + inSlope: 0.46835265 + outSlope: 0.46835265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.48095447 + inSlope: -0.84428155 + outSlope: -0.84428155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.45281175 + inSlope: -0.49408656 + outSlope: -0.49408656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.4508257 + inSlope: 0.16772568 + outSlope: 0.16772568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.45919707 + inSlope: 0.5133051 + outSlope: 0.5133051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.50572693 + inSlope: 0.4362254 + outSlope: 0.4362254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.52190584 + inSlope: 0.25733206 + outSlope: 0.25733206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.53836095 + inSlope: 0.024248064 + outSlope: 0.024248064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.53289974 + inSlope: -0.19627145 + outSlope: -0.19627145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5252762 + inSlope: -0.56533 + outSlope: -0.56533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.49521106 + inSlope: -0.7307867 + outSlope: -0.7307867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.47500658 + inSlope: 0.09743124 + outSlope: 0.09743124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.48095447 + inSlope: 0.0071275174 + outSlope: 0.0071275174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.022633571 + inSlope: -0.1641048 + outSlope: -0.1641048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.028103732 + inSlope: -0.12144779 + outSlope: -0.12144779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.030730091 + inSlope: -0.057228666 + outSlope: -0.057228666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.031918976 + inSlope: 0.07897701 + outSlope: 0.07897701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.01415501 + inSlope: 0.37659806 + outSlope: 0.37659806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00035841443 + inSlope: 0.289134 + outSlope: 0.289134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0051205945 + inSlope: 0.115205415 + outSlope: 0.115205415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.007321946 + inSlope: -0.062059276 + outSlope: -0.062059276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0009833093 + inSlope: -0.414507 + outSlope: -0.414507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.020311853 + inSlope: -0.48346508 + outSlope: -0.48346508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.031247694 + inSlope: -0.24670124 + outSlope: -0.24670124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.036758605 + inSlope: -0.11434323 + outSlope: -0.11434323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.03887058 + inSlope: 0.17772885 + outSlope: 0.17772885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.024910016 + inSlope: 0.5832318 + outSlope: 0.5832318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.000011514743 + inSlope: 0.5486403 + outSlope: 0.5486403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.011665991 + inSlope: 0.2453544 + outSlope: 0.2453544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.016368488 + inSlope: 0.0038828403 + outSlope: 0.0038828403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0119248545 + inSlope: -0.3800675 + outSlope: -0.3800675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.008969358 + inSlope: -0.61064583 + outSlope: -0.61064583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.028784867 + inSlope: -0.3046858 + outSlope: -0.3046858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.029281728 + inSlope: -0.01226479 + outSlope: -0.01226479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.02960252 + inSlope: 0.09972226 + outSlope: 0.09972226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.022633571 + inSlope: 0.2090683 + outSlope: 0.2090683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0033843545 + inSlope: -0.7393844 + outSlope: -0.7393844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.021261793 + inSlope: -0.48397043 + outSlope: -0.48397043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.028880341 + inSlope: -0.14669232 + outSlope: -0.14669232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.031041281 + inSlope: 0.0398994 + outSlope: 0.0398994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.026220381 + inSlope: 0.37088656 + outSlope: 0.37088656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.006315512 + inSlope: 0.7012795 + outSlope: 0.7012795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.020531597 + inSlope: 0.49458504 + outSlope: 0.49458504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.026656834 + inSlope: 0.1391983 + outSlope: 0.1391983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.029811483 + inSlope: 0.1913229 + outSlope: 0.1913229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.039411694 + inSlope: 0.35954326 + outSlope: 0.35954326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.053781033 + inSlope: 0.15836975 + outSlope: 0.15836975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.049969677 + inSlope: -0.26059526 + outSlope: -0.26059526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.036408003 + inSlope: -0.79563344 + outSlope: -0.79563344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0030725615 + inSlope: -1.4597876 + outSlope: -1.4597876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.060911164 + inSlope: -0.92951584 + outSlope: -0.92951584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.065040275 + inSlope: 0.09796408 + outSlope: 0.09796408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.054380212 + inSlope: 0.5294196 + outSlope: 0.5294196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.029745605 + inSlope: 1.1233084 + outSlope: 1.1233084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.020506991 + inSlope: 1.3530921 + outSlope: 1.3530921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.060460523 + inSlope: 0.8299879 + outSlope: 0.8299879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.075839534 + inSlope: 0.10449673 + outSlope: 0.10449673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.06742695 + inSlope: -0.43065873 + outSlope: -0.43065873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.047128964 + inSlope: -0.96063864 + outSlope: -0.96063864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0033843545 + inSlope: -1.3123372 + outSlope: -1.3123372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.039832883 + inSlope: 0.8101735 + outSlope: 0.8101735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06683867 + inSlope: 0.6039645 + outSlope: 0.6039645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.08009718 + inSlope: 0.3903215 + outSlope: 0.3903215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0928601 + inSlope: 0.5495688 + outSlope: 0.5495688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.1167351 + inSlope: 0.63963985 + outSlope: 0.63963985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.1457338 + inSlope: 0.16293408 + outSlope: 0.16293408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.14636503 + inSlope: 0.011682139 + outSlope: 0.011682139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.14651261 + inSlope: -0.12906456 + outSlope: -0.12906456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.13776073 + inSlope: -0.423834 + outSlope: -0.423834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.118257016 + inSlope: -0.46782088 + outSlope: -0.46782088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10657267 + inSlope: -0.37253487 + outSlope: -0.37253487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.09342135 + inSlope: -0.61112297 + outSlope: -0.61112297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.06583113 + inSlope: -0.85508657 + outSlope: -0.85508657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.03641558 + inSlope: -0.8527992 + outSlope: -0.8527992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.008977881 + inSlope: -0.59165794 + outSlope: -0.59165794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0030282661 + inSlope: -0.31927395 + outSlope: -0.31927395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0123070665 + inSlope: -0.30844182 + outSlope: -0.30844182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.023591053 + inSlope: -0.14969976 + outSlope: -0.14969976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.02228704 + inSlope: 0.18696956 + outSlope: 0.18696956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.011126425 + inSlope: 0.31562105 + outSlope: 0.31562105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0012456388 + inSlope: 0.33831042 + outSlope: 0.33831042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.011427599 + inSlope: 0.6161777 + outSlope: 0.6161777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.039832883 + inSlope: 0.8521578 + outSlope: 0.8521578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11188968 + inSlope: 0.122202106 + outSlope: 0.122202106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.11596309 + inSlope: 0.16413096 + outSlope: 0.16413096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.12283175 + inSlope: 0.2019026 + outSlope: 0.2019026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.12942326 + inSlope: 0.3196681 + outSlope: 0.3196681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.14414296 + inSlope: 0.53715265 + outSlope: 0.53715265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.16523343 + inSlope: 0.47332382 + outSlope: 0.47332382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.17569788 + inSlope: 0.0765209 + outSlope: 0.0765209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.17033483 + inSlope: -0.18831232 + outSlope: -0.18831232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.16314372 + inSlope: -0.34672314 + outSlope: -0.34672314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.14721996 + inSlope: -0.19857848 + outSlope: -0.19857848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.14990516 + inSlope: 0.074047975 + outSlope: 0.074047975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.15215649 + inSlope: -0.036773022 + outSlope: -0.036773022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.122537255 + inSlope: -1.2407763 + outSlope: -1.2407763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.064735204 + inSlope: -1.3927593 + outSlope: -1.3927593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.029686663 + inSlope: -0.5257614 + outSlope: -0.5257614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.029684473 + inSlope: 0.3094139 + outSlope: 0.3094139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.050314274 + inSlope: 1.1036727 + outSlope: 1.1036727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.103262626 + inSlope: 1.4610856 + outSlope: 1.4610856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.14771996 + inSlope: 0.97749937 + outSlope: 0.97749937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.16842927 + inSlope: 0.22332266 + outSlope: 0.22332266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.16260812 + inSlope: -0.3759831 + outSlope: -0.3759831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14336374 + inSlope: -0.7607764 + outSlope: -0.7607764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11188968 + inSlope: -0.9442211 + outSlope: -0.9442211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.008719276 + inSlope: 1.9599957 + outSlope: 1.9599957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.07405247 + inSlope: 1.5497584 + outSlope: 1.5497584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.112036504 + inSlope: 0.9945192 + outSlope: 0.9945192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.14035375 + inSlope: 0.70268047 + outSlope: 0.70268047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.15888187 + inSlope: -0.19510701 + outSlope: -0.19510701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.12734662 + inSlope: -1.7161311 + outSlope: -1.7161311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.044473104 + inSlope: -1.8967612 + outSlope: -1.8967612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.00089584495 + inSlope: -1.2073053 + outSlope: -1.2073053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.03601391 + inSlope: -1.1661811 + outSlope: -1.1661811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.07684955 + inSlope: 0.085197926 + outSlope: 0.085197926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.03033405 + inSlope: 1.3259921 + outSlope: 1.3259921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.011549915 + inSlope: 1.2489872 + outSlope: 1.2489872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.052931797 + inSlope: 1.4022794 + outSlope: 1.4022794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.10503524 + inSlope: 1.0275072 + outSlope: 1.0275072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.121432275 + inSlope: -0.24542984 + outSlope: -0.24542984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.08867328 + inSlope: -0.7725306 + outSlope: -0.7725306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.06993025 + inSlope: -0.63717806 + outSlope: -0.63717806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.046194706 + inSlope: -0.5467831 + outSlope: -0.5467831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.033478033 + inSlope: -0.0237571 + outSlope: -0.0237571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.04461092 + inSlope: 0.302573 + outSlope: 0.302573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.053649567 + inSlope: -0.06606905 + outSlope: -0.06606905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0402063 + inSlope: -0.4770486 + outSlope: -0.4770486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.021846334 + inSlope: -0.47230545 + outSlope: -0.47230545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.008719276 + inSlope: -0.3938114 + outSlope: -0.3938114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16128118 + inSlope: 3.3978996 + outSlope: 3.3978996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.2745445 + inSlope: 2.5358553 + outSlope: 2.5358553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.3303382 + inSlope: 1.6414416 + outSlope: 1.6414416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.38397396 + inSlope: 2.299097 + outSlope: 2.299097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.48361135 + inSlope: 2.6358757 + outSlope: 2.6358757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.5962131 + inSlope: 0.5389521 + outSlope: 0.5389521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.59562916 + inSlope: -0.05346984 + outSlope: -0.05346984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.59264845 + inSlope: -0.6314421 + outSlope: -0.6314421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.553533 + inSlope: -1.7162004 + outSlope: -1.7162004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.4782351 + inSlope: -1.8021679 + outSlope: -1.8021679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.4333885 + inSlope: -1.4365696 + outSlope: -1.4365696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.38246375 + inSlope: -2.4130144 + outSlope: -2.4130144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.27252084 + inSlope: -3.4072623 + outSlope: -3.4072623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.15531296 + inSlope: -3.4001222 + outSlope: -3.4001222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.045846153 + inSlope: -2.3890224 + outSlope: -2.3890224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.003955132 + inSlope: -1.3507143 + outSlope: -1.3507143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.04420154 + inSlope: -1.333818 + outSlope: -1.333818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.092876315 + inSlope: -0.62481505 + outSlope: -0.62481505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.08585583 + inSlope: 0.81749547 + outSlope: 0.81749547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.038376655 + inSlope: 1.2970965 + outSlope: 1.2970965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00061726564 + inSlope: 1.3141716 + outSlope: 1.3141716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.04923477 + inSlope: 2.4099581 + outSlope: 2.4099581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.16128118 + inSlope: 3.3613896 + outSlope: 3.3613896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2512868 + inSlope: -0.48897964 + outSlope: -0.48897964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.23498748 + inSlope: -0.39973494 + outSlope: -0.39973494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.21577093 + inSlope: -0.24373546 + outSlope: -0.24373546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.21022141 + inSlope: 0.19861707 + outSlope: 0.19861707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.22162992 + inSlope: 0.32223427 + outSlope: 0.32223427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.24265298 + inSlope: 0.41647154 + outSlope: 0.41647154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.25946847 + inSlope: 0.14990869 + outSlope: 0.14990869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2526469 + inSlope: -0.2204387 + outSlope: -0.2204387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.23662145 + inSlope: -0.25338328 + outSlope: -0.25338328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.22788033 + inSlope: -0.041269593 + outSlope: -0.041269593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.23387015 + inSlope: 0.13975343 + outSlope: 0.13975343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.23571756 + inSlope: -0.05227375 + outSlope: -0.05227375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.2337123 + inSlope: -0.18560697 + outSlope: -0.18560697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.21407828 + inSlope: -0.15112226 + outSlope: -0.15112226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.2512868 + inSlope: 0.49295652 + outSlope: 0.49295652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21640578 + inSlope: -1.9650247 + outSlope: -1.9650247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.15090495 + inSlope: -1.4945731 + outSlope: -1.4945731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.11676756 + inSlope: -0.9597774 + outSlope: -0.9597774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.086919785 + inSlope: -1.0443122 + outSlope: -1.0443122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.04714674 + inSlope: -0.78275746 + outSlope: -0.78275746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.03473596 + inSlope: -0.031746075 + outSlope: -0.031746075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.04503034 + inSlope: 0.36472645 + outSlope: 0.36472645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.05905106 + inSlope: 0.48536742 + outSlope: 0.48536742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.07738817 + inSlope: 0.81795835 + outSlope: 0.81795835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.11358161 + inSlope: 0.89654136 + outSlope: 0.89654136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.13715759 + inSlope: 0.5246417 + outSlope: 0.5246417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.16052535 + inSlope: 0.58440185 + outSlope: 0.58440185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.18751785 + inSlope: 0.81857 + outSlope: 0.81857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.21509668 + inSlope: 0.87650096 + outSlope: 0.87650096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.24595122 + inSlope: 0.755667 + outSlope: 0.755667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.28487536 + inSlope: 0.7323599 + outSlope: 0.7323599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.31429845 + inSlope: 0.508473 + outSlope: 0.508473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.31877354 + inSlope: -0.15489158 + outSlope: -0.15489158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.30397236 + inSlope: -0.44270176 + outSlope: -0.44270176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.2892601 + inSlope: -0.5316206 + outSlope: -0.5316206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.268531 + inSlope: -1.0928143 + outSlope: -1.0928143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.21640578 + inSlope: -1.5637552 + outSlope: -1.5637552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08126326 + inSlope: 0.37918475 + outSlope: 0.37918475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06862377 + inSlope: 0.3078395 + outSlope: 0.3078395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.052808955 + inSlope: 0.31514564 + outSlope: 0.31514564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.039730914 + inSlope: 0.30980444 + outSlope: 0.30980444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.032155327 + inSlope: 0.053146996 + outSlope: 0.053146996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.036187783 + inSlope: -0.14756787 + outSlope: -0.14756787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.041993186 + inSlope: -0.19166362 + outSlope: -0.19166362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.048965357 + inSlope: -0.2684594 + outSlope: -0.2684594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.05989048 + inSlope: -0.18140858 + outSlope: -0.18140858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.061059263 + inSlope: -0.02212884 + outSlope: -0.02212884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.061365735 + inSlope: -0.03057241 + outSlope: -0.03057241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.063097425 + inSlope: -0.1728511 + outSlope: -0.1728511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.07288914 + inSlope: -0.4062322 + outSlope: -0.4062322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.09017957 + inSlope: -0.48352808 + outSlope: -0.48352808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.10512433 + inSlope: -0.30586115 + outSlope: -0.30586115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.110570304 + inSlope: -0.111246094 + outSlope: -0.111246094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.10649071 + inSlope: 0.31472772 + outSlope: 0.31472772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.07823146 + inSlope: 0.20592968 + outSlope: 0.20592968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.077830255 + inSlope: -0.0248982 + outSlope: -0.0248982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.07989134 + inSlope: -0.051495075 + outSlope: -0.051495075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.08126326 + inSlope: -0.04115757 + outSlope: -0.04115757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17959678 + inSlope: -0.011969357 + outSlope: -0.011969357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.18586512 + inSlope: -0.0748513 + outSlope: -0.0748513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.1813649 + inSlope: -0.009635836 + outSlope: -0.009635836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.17969099 + inSlope: 0.0028974565 + outSlope: 0.0028974565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.17959678 + inSlope: 0.002826152 + outSlope: 0.002826152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0301116 + inSlope: -0.06716654 + outSlope: -0.06716654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.032350484 + inSlope: -0.049955864 + outSlope: -0.049955864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.034158353 + inSlope: -0.010480953 + outSlope: -0.010480953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.03414072 + inSlope: 0.019065479 + outSlope: 0.019065479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.03170386 + inSlope: 0.03030577 + outSlope: 0.03030577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.02996954 + inSlope: 0.03924153 + outSlope: 0.03924153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.028250834 + inSlope: 0.02722283 + outSlope: 0.02722283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.02867623 + inSlope: -0.014204025 + outSlope: -0.014204025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.02910162 + inSlope: -0.023969306 + outSlope: -0.023969306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.030274184 + inSlope: -0.029625338 + outSlope: -0.029625338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.031562224 + inSlope: 0.01861849 + outSlope: 0.01861849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.029720372 + inSlope: 0.017891517 + outSlope: 0.017891517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.02946195 + inSlope: 0.005655995 + outSlope: 0.005655995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.029343305 + inSlope: -0.009744734 + outSlope: -0.009744734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0301116 + inSlope: -0.023048818 + outSlope: -0.023048818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.094521366 + inSlope: 0.23600152 + outSlope: 0.23600152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.08665465 + inSlope: 0.18111135 + outSlope: 0.18111135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0788196 + inSlope: 0.1200065 + outSlope: 0.1200065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07444684 + inSlope: 0.08759201 + outSlope: 0.08759201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.07533723 + inSlope: -0.07110682 + outSlope: -0.07110682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.07830561 + inSlope: -0.14270516 + outSlope: -0.14270516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.09052543 + inSlope: -0.12081967 + outSlope: -0.12081967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09484844 + inSlope: -0.07058879 + outSlope: -0.07058879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.103819944 + inSlope: -0.03068478 + outSlope: -0.03068478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.10558564 + inSlope: 0.025496762 + outSlope: 0.025496762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.102656394 + inSlope: 0.053866815 + outSlope: 0.053866815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10049931 + inSlope: 0.12202538 + outSlope: 0.12202538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.094521366 + inSlope: 0.17933816 + outSlope: 0.17933816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.25090805 + inSlope: -1.6108931 + outSlope: -1.6108931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.19721161 + inSlope: -0.41048506 + outSlope: -0.41048506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.22354238 + inSlope: 1.8350837 + outSlope: 1.8350837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.31955054 + inSlope: 3.3389046 + outSlope: 3.3389046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.44613603 + inSlope: 2.4201376 + outSlope: 2.4201376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.48089305 + inSlope: 2.4504604 + outSlope: 2.4504604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.6095001 + inSlope: 2.4108915 + outSlope: 2.4108915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6416192 + inSlope: -1.5427504 + outSlope: -1.5427504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5066501 + inSlope: -1.8570937 + outSlope: -1.8570937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.51781297 + inSlope: -1.214768 + outSlope: -1.214768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.42566556 + inSlope: -2.4661138 + outSlope: -2.4661138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.3534054 + inSlope: -2.4290175 + outSlope: -2.4290175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.26373097 + inSlope: -4.282251 + outSlope: -4.282251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.06792192 + inSlope: -4.1588054 + outSlope: -4.1588054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.013522714 + inSlope: -1.5843107 + outSlope: -1.5843107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.037698764 + inSlope: -0.5837911 + outSlope: -0.5837911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.052442107 + inSlope: -0.42851847 + outSlope: -0.42851847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.066266686 + inSlope: -0.22674358 + outSlope: -0.22674358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.067558356 + inSlope: 1.5523498 + outSlope: 1.5523498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.037223388 + inSlope: 6.5926104 + outSlope: 6.5926104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.37194878 + inSlope: 6.467043 + outSlope: 6.467043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.46835935 + inSlope: 1.7186866 + outSlope: 1.7186866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.48652795 + inSlope: -3.261765 + outSlope: -3.261765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.25090814 + inSlope: -7.0685887 + outSlope: -7.0685887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06498253 + inSlope: -3.263084 + outSlope: -3.263084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.043786936 + inSlope: -3.0404215 + outSlope: -3.0404215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.13771224 + inSlope: -2.9045246 + outSlope: -2.9045246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.33008477 + inSlope: -2.563984 + outSlope: -2.563984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.4083542 + inSlope: -3.2651644 + outSlope: -3.2651644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.54776245 + inSlope: -2.9575214 + outSlope: -2.9575214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.60552233 + inSlope: 2.5978103 + outSlope: 2.5978103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.3745751 + inSlope: 6.2939405 + outSlope: 6.2939405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.18592632 + inSlope: 6.0422335 + outSlope: 6.0422335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.028240435 + inSlope: 4.684947 + outSlope: 4.684947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.12640347 + inSlope: 2.6330388 + outSlope: 2.6330388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.2037764 + inSlope: 2.3321362 + outSlope: 2.3321362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.28187928 + inSlope: 1.5914161 + outSlope: 1.5914161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.3098708 + inSlope: 0.9991543 + outSlope: 0.9991543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.34848952 + inSlope: 0.90085995 + outSlope: 0.90085995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.3905173 + inSlope: 0.7635169 + outSlope: 0.7635169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.42082924 + inSlope: 0.22031148 + outSlope: 0.22031148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.40520468 + inSlope: -1.0571638 + outSlope: -1.0571638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3503517 + inSlope: -1.6060688 + outSlope: -1.6060688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.29813343 + inSlope: -1.8908015 + outSlope: -1.8908015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.22429828 + inSlope: -3.4972582 + outSlope: -3.4972582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.06498282 + inSlope: -4.77946 + outSlope: -4.77946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14919363 + inSlope: -1.4813131 + outSlope: -1.4813131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.09981652 + inSlope: -0.11487764 + outSlope: -0.11487764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.14153512 + inSlope: 1.2770865 + outSlope: 1.2770865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.18495563 + inSlope: 1.9732172 + outSlope: 1.9732172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.27308294 + inSlope: 4.650695 + outSlope: 4.650695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.49500194 + inSlope: 6.3965416 + outSlope: 6.3965416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.6995191 + inSlope: 4.9516425 + outSlope: 4.9516425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.8251115 + inSlope: 2.1071398 + outSlope: 2.1071398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.8399951 + inSlope: 0.9117133 + outSlope: 0.9117133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.8858924 + inSlope: -0.727306 + outSlope: -0.727306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.791508 + inSlope: -2.392374 + outSlope: -2.392374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.7264008 + inSlope: -2.1442034 + outSlope: -2.1442034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.64856106 + inSlope: -3.6355653 + outSlope: -3.6355653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.4840297 + inSlope: -4.05951 + outSlope: -4.05951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.37792706 + inSlope: -2.636129 + outSlope: -2.636129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.30828786 + inSlope: -1.6438472 + outSlope: -1.6438472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.26833728 + inSlope: -1.1688503 + outSlope: -1.1688503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.23036444 + inSlope: -1.6098465 + outSlope: -1.6098465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.16101421 + inSlope: -1.5012496 + outSlope: -1.5012496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.13028118 + inSlope: -0.30540898 + outSlope: -0.30540898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.14065358 + inSlope: 0.2563578 + outSlope: 0.2563578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.1473717 + inSlope: 0.30770245 + outSlope: 0.30770245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.16116707 + inSlope: 0.02732803 + outSlope: 0.02732803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.14919354 + inSlope: -0.3592056 + outSlope: -0.3592056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5063309 + inSlope: -2.0538068 + outSlope: -2.0538068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.43787068 + inSlope: -0.53867835 + outSlope: -0.53867835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.587839 + inSlope: 4.5565658 + outSlope: 4.5565658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.77419007 + inSlope: 2.4418538 + outSlope: 2.4418538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.75062925 + inSlope: 0.32653007 + outSlope: 0.32653007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.79595876 + inSlope: -0.5759484 + outSlope: -0.5759484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.7122327 + inSlope: -6.761799 + outSlope: -6.761799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3451722 + inSlope: -8.485764 + outSlope: -8.485764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.14651519 + inSlope: -5.7745047 + outSlope: -5.7745047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.039794777 + inSlope: -3.9559114 + outSlope: -3.9559114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.11721222 + inSlope: -2.022135 + outSlope: -2.022135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.17460382 + inSlope: -1.8600641 + outSlope: -1.8600641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.24121654 + inSlope: -0.4367931 + outSlope: -0.4367931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.20372336 + inSlope: 1.6170397 + outSlope: 1.6170397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.13341396 + inSlope: 1.4990524 + outSlope: 1.4990524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.103786565 + inSlope: 0.95466805 + outSlope: 0.95466805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.06976937 + inSlope: 1.9502654 + outSlope: 1.9502654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.026231065 + inSlope: 5.1266117 + outSlope: 5.1266117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.27200487 + inSlope: 9.905813 + outSlope: 9.905813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6866184 + inSlope: 7.7872195 + outSlope: 7.7872195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.79115254 + inSlope: 1.857173 + outSlope: 1.857173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.81043 + inSlope: -4.2723193 + outSlope: -4.2723193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.50633097 + inSlope: -9.122963 + outSlope: -9.122963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.017930415 + inSlope: 1.416015 + outSlope: 1.416015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06513092 + inSlope: 0.8222778 + outSlope: 0.8222778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.07274894 + inSlope: -0.15914409 + outSlope: -0.15914409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.05452131 + inSlope: -0.6662727 + outSlope: -0.6662727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.028330756 + inSlope: -1.9787757 + outSlope: -1.9787757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.077397056 + inSlope: -2.0103476 + outSlope: -2.0103476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.105692424 + inSlope: -0.6552805 + outSlope: -0.6552805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.12108243 + inSlope: -0.3714179 + outSlope: -0.3714179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.13045362 + inSlope: -0.54958725 + outSlope: -0.54958725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.15772158 + inSlope: -0.101347715 + outSlope: -0.101347715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.13721013 + inSlope: 0.4130781 + outSlope: 0.4130781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.13018304 + inSlope: 0.23557228 + outSlope: 0.23557228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.121505305 + inSlope: 0.6155317 + outSlope: 0.6155317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.08914759 + inSlope: 0.8769865 + outSlope: 0.8769865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.06303954 + inSlope: 0.4862033 + outSlope: 0.4862033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.056734044 + inSlope: 0.13463064 + outSlope: 0.13463064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.05406417 + inSlope: 0.09493073 + outSlope: 0.09493073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.050405324 + inSlope: 0.2368731 + outSlope: 0.2368731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.038272638 + inSlope: 0.65523183 + outSlope: 0.65523183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0067231865 + inSlope: 0.9710603 + outSlope: 0.9710603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.02646471 + inSlope: -0.22881904 + outSlope: -0.22881904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.021977864 + inSlope: -0.2920572 + outSlope: -0.2920572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00699416 + inSlope: 0.59862524 + outSlope: 0.59862524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.017930467 + inSlope: 0.32808894 + outSlope: 0.32808894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.43619558 + inSlope: -2.18066 + outSlope: -2.18066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.50888425 + inSlope: -0.68620336 + outSlope: -0.68620336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.48194247 + inSlope: 3.008241 + outSlope: 3.008241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.30833483 + inSlope: 9.962995 + outSlope: 9.962995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.18225719 + inSlope: 10.095455 + outSlope: 10.095455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.36469552 + inSlope: 7.2040997 + outSlope: 7.2040997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.6625306 + inSlope: 3.4952211 + outSlope: 3.4952211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5977104 + inSlope: -4.0711293 + outSlope: -4.0711293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.39112198 + inSlope: -3.6264532 + outSlope: -3.6264532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.35594684 + inSlope: -1.8329623 + outSlope: -1.8329623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2689245 + inSlope: -1.9711543 + outSlope: -1.9711543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.22453655 + inSlope: -1.3761938 + outSlope: -1.3761938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.17717822 + inSlope: -1.8395047 + outSlope: -1.8395047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.101902865 + inSlope: -1.4771844 + outSlope: -1.4771844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.07869926 + inSlope: -1.0976437 + outSlope: -1.0976437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.028726665 + inSlope: -1.1305511 + outSlope: -1.1305511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.003329211 + inSlope: -0.82941425 + outSlope: -0.82941425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.026567666 + inSlope: -1.596462 + outSlope: -1.596462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.10310154 + inSlope: -1.7132717 + outSlope: -1.7132717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.14078574 + inSlope: -0.02172023 + outSlope: -0.02172023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.10454962 + inSlope: 2.3150785 + outSlope: 2.3150785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.013552895 + inSlope: -0.8802258 + outSlope: -0.8802258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.16323107 + inSlope: -6.7462277 + outSlope: -6.7462277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.43619567 + inSlope: -8.188931 + outSlope: -8.188931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22535369 + inSlope: 4.044138 + outSlope: 4.044138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09054909 + inSlope: 3.989451 + outSlope: 3.989451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.04060973 + inSlope: 4.3551035 + outSlope: 4.3551035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.19979118 + inSlope: 3.6628492 + outSlope: 3.6628492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.2847997 + inSlope: -6.1878157 + outSlope: -6.1878157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.21272984 + inSlope: -7.2373347 + outSlope: -7.2373347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.19768925 + inSlope: 2.2433047 + outSlope: 2.2433047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0631762 + inSlope: 2.3874593 + outSlope: 2.3874593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.038525306 + inSlope: 2.061423 + outSlope: 2.061423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.074251994 + inSlope: 1.909524 + outSlope: 1.909524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08877629 + inSlope: 0.15540564 + outSlope: 0.15540564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.08461237 + inSlope: -0.24017893 + outSlope: -0.24017893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.07276435 + inSlope: -0.7498483 + outSlope: -0.7498483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.034622476 + inSlope: -0.2711968 + outSlope: -0.2711968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.054684564 + inSlope: 1.1746659 + outSlope: 1.1746659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.11293348 + inSlope: 1.4105439 + outSlope: 1.4105439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.1487208 + inSlope: 1.0812223 + outSlope: 1.0812223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.18501502 + inSlope: 1.3017251 + outSlope: 1.3017251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.23550247 + inSlope: -0.45311838 + outSlope: -0.45311838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.15480702 + inSlope: -3.10545 + outSlope: -3.10545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.028472533 + inSlope: -3.8134587 + outSlope: -3.8134587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.09942354 + inSlope: -5.502852 + outSlope: -5.502852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.33838415 + inSlope: -1.8889678 + outSlope: -1.8889678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.2253544 + inSlope: 3.3908896 + outSlope: 3.3908896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.000000034150947 + inSlope: 0.0000035858475 + outSlope: 0.0000035858475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000020490565 + inSlope: -1.5916157e-12 + outSlope: -1.5916157e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.000000034150947 + inSlope: -0.000003585849 + outSlope: -0.000003585849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.45234382 + inSlope: -1.5566038 + outSlope: -1.5566038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.5042306 + inSlope: -0.58852446 + outSlope: -0.58852446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.4915788 + inSlope: 0.45153195 + outSlope: 0.45153195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.47412848 + inSlope: 1.307289 + outSlope: 1.307289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.4044262 + inSlope: 1.8258584 + outSlope: 1.8258584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.3524046 + inSlope: 1.7742773 + outSlope: 1.7742773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.286141 + inSlope: 1.7786031 + outSlope: 1.7786031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.23383103 + inSlope: 2.2309833 + outSlope: 2.2309833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1374088 + inSlope: 2.3943772 + outSlope: 2.3943772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.07420588 + inSlope: 2.547566 + outSlope: 2.547566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.032428928 + inSlope: 0.88225466 + outSlope: 0.88225466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.015388904 + inSlope: -1.063636 + outSlope: -1.063636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.038480148 + inSlope: -0.8400473 + outSlope: -0.8400473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.071392074 + inSlope: -0.28544277 + outSlope: -0.28544277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.057509664 + inSlope: 0.2040086 + outSlope: 0.2040086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0577915 + inSlope: 0.23210654 + outSlope: 0.23210654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.04203588 + inSlope: 0.639267 + outSlope: 0.639267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.015173663 + inSlope: -0.891429 + outSlope: -0.891429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.10146438 + inSlope: -2.7958434 + outSlope: -2.7958434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.20156322 + inSlope: -2.755618 + outSlope: -2.755618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.28517225 + inSlope: -1.9124727 + outSlope: -1.9124727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.37188724 + inSlope: -1.8492353 + outSlope: -1.8492353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.45234373 + inSlope: -2.413693 + outSlope: -2.413693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.23801358 + inSlope: -0.5607328 + outSlope: -0.5607328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.21932249 + inSlope: -0.29520726 + outSlope: -0.29520726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.20656146 + inSlope: -0.96488047 + outSlope: -0.96488047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.15400773 + inSlope: -2.0978525 + outSlope: -2.0978525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.06670464 + inSlope: -2.1637568 + outSlope: -2.1637568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.009757263 + inSlope: -1.1857058 + outSlope: -1.1857058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.012342433 + inSlope: -1.6767673 + outSlope: -1.6767673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.102027215 + inSlope: -1.2033391 + outSlope: -1.2033391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.09256503 + inSlope: 0.096560314 + outSlope: 0.096560314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.09558986 + inSlope: 1.357479 + outSlope: 1.357479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0020664304 + inSlope: 2.2027974 + outSlope: 2.2027974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.051263347 + inSlope: 1.5740166 + outSlope: 1.5740166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.10286805 + inSlope: 2.502101 + outSlope: 2.502101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.21807006 + inSlope: 3.8549783 + outSlope: 3.8549783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.35986647 + inSlope: 3.5903342 + outSlope: 3.5903342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.45742562 + inSlope: 2.4726527 + outSlope: 2.4726527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5247101 + inSlope: 0.1295678 + outSlope: 0.1295678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.4660636 + inSlope: -1.957277 + outSlope: -1.957277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.39422497 + inSlope: -2.1401024 + outSlope: -2.1401024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3233901 + inSlope: -1.4563526 + outSlope: -1.4563526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.29713485 + inSlope: -0.6878104 + outSlope: -0.6878104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.27753606 + inSlope: -0.8868195 + outSlope: -0.8868195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.23801354 + inSlope: -1.1856749 + outSlope: -1.1856749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.21450526 + inSlope: 5.848009 + outSlope: 5.848009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.019571597 + inSlope: 4.5909557 + outSlope: 4.5909557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.091558486 + inSlope: 3.2031233 + outSlope: 3.2031233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.19396998 + inSlope: 3.841373 + outSlope: 3.841373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.34765002 + inSlope: 3.7380939 + outSlope: 3.7380939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.4431762 + inSlope: 1.4839362 + outSlope: 1.4839362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.4465791 + inSlope: -0.18115285 + outSlope: -0.18115285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.43109936 + inSlope: 0.38742322 + outSlope: 0.38742322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.4724073 + inSlope: 0.618348 + outSlope: 0.618348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.47232255 + inSlope: -0.87374884 + outSlope: -0.87374884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.4141574 + inSlope: -2.378355 + outSlope: -2.378355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.31376556 + inSlope: -2.7398472 + outSlope: -2.7398472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.23150085 + inSlope: -3.3531675 + outSlope: -3.3531675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.09022101 + inSlope: -3.8657012 + outSlope: -3.8657012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.026212536 + inSlope: -2.725 + outSlope: -2.725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.09144559 + inSlope: -2.3236187 + outSlope: -2.3236187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.18112046 + inSlope: -2.2246077 + outSlope: -2.2246077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.23975289 + inSlope: -0.90570706 + outSlope: -0.90570706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.24150097 + inSlope: -0.6076495 + outSlope: -0.6076495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.2802629 + inSlope: -0.8200816 + outSlope: -0.8200816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.2961731 + inSlope: -0.34955186 + outSlope: -0.34955186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.30356634 + inSlope: 0.03961155 + outSlope: 0.03961155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.29353234 + inSlope: 1.3359185 + outSlope: 1.3359185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.21450505 + inSlope: 2.370817 + outSlope: 2.370817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.30638942 + inSlope: 1.0841078 + outSlope: 1.0841078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.22111659 + inSlope: 1.7158539 + outSlope: 1.7158539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.15586223 + inSlope: 2.9438543 + outSlope: 2.9438543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.02485963 + inSlope: 3.888087 + outSlope: 3.888087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.10334356 + inSlope: 3.9278283 + outSlope: 3.9278283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.23699564 + inSlope: 3.2717638 + outSlope: 3.2717638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.3214612 + inSlope: 3.9897513 + outSlope: 3.9897513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.50297904 + inSlope: 3.1635826 + outSlope: 3.1635826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5323667 + inSlope: 1.9368492 + outSlope: 1.9368492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6321023 + inSlope: -0.28029704 + outSlope: -0.28029704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.5136802 + inSlope: -2.99809 + outSlope: -2.99809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.43222958 + inSlope: -2.302512 + outSlope: -2.302512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.36017936 + inSlope: -0.07899511 + outSlope: -0.07899511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.42696324 + inSlope: 2.1878157 + outSlope: 2.1878157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5886869 + inSlope: 2.5202024 + outSlope: 2.5202024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.6740473 + inSlope: -1.9682498 + outSlope: -1.9682498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.4574705 + inSlope: -7.4066253 + outSlope: -7.4066253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.18027227 + inSlope: -7.739929 + outSlope: -7.739929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.058524735 + inSlope: -5.075765 + outSlope: -5.075765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.15811191 + inSlope: -2.5782647 + outSlope: -2.5782647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.23040906 + inSlope: -2.2241645 + outSlope: -2.2241645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.30638954 + inSlope: -2.2794127 + outSlope: -2.2794127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06943803 + inSlope: 1.1818384 + outSlope: 1.1818384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.030043414 + inSlope: 0.8334037 + outSlope: 0.8334037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.013877781 + inSlope: 0.34656465 + outSlope: 0.34656465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0069391015 + inSlope: -0.12938687 + outSlope: -0.12938687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.022503572 + inSlope: -0.5815955 + outSlope: -0.5815955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.045712132 + inSlope: -0.9149614 + outSlope: -0.9149614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.08350101 + inSlope: -0.8767506 + outSlope: -0.8767506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.10416219 + inSlope: -0.7991457 + outSlope: -0.7991457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.13677739 + inSlope: -1.0741296 + outSlope: -1.0741296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.17577082 + inSlope: -0.0185287 + outSlope: -0.0185287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.13801263 + inSlope: 0.9818834 + outSlope: 0.9818834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09310628 + inSlope: 0.40325773 + outSlope: 0.40325773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.08342806 + inSlope: -0.52496004 + outSlope: -0.52496004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.12810361 + inSlope: -1.2586384 + outSlope: -1.2586384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.16733725 + inSlope: 0.3670346 + outSlope: 0.3670346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.10363455 + inSlope: 2.0216656 + outSlope: 2.0216656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.032559432 + inSlope: 1.0934883 + outSlope: 1.0934883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.030735271 + inSlope: -0.42361814 + outSlope: -0.42361814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.060800668 + inSlope: -0.91531384 + outSlope: -0.91531384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.09175619 + inSlope: -0.51686585 + outSlope: -0.51686585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.09525836 + inSlope: -0.06224498 + outSlope: -0.06224498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.095905855 + inSlope: 0.38730383 + outSlope: 0.38730383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.069438085 + inSlope: 0.79403245 + outSlope: 0.79403245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.23154633 + inSlope: 1.5754709 + outSlope: 1.5754709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.28406203 + inSlope: 0.5077338 + outSlope: 0.5077338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.26539525 + inSlope: -1.1990774 + outSlope: -1.1990774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.20412353 + inSlope: -3.677652 + outSlope: -3.677652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.020218462 + inSlope: -4.75073 + outSlope: -4.75073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.11259179 + inSlope: -3.1765733 + outSlope: -3.1765733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1915531 + inSlope: -1.6308101 + outSlope: -1.6308101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2213125 + inSlope: 0.17412701 + outSlope: 0.17412701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.17994463 + inSlope: -2.0091052 + outSlope: -2.0091052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.35525283 + inSlope: 1.842469 + outSlope: 1.842469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.057113376 + inSlope: 2.87926 + outSlope: 2.87926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.16330218 + inSlope: -2.8745518 + outSlope: -2.8745518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.24875022 + inSlope: -2.1297526 + outSlope: -2.1297526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.30528575 + inSlope: 2.6458387 + outSlope: 2.6458387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07236099 + inSlope: 7.6707644 + outSlope: 7.6707644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.20609824 + inSlope: 5.508139 + outSlope: 5.508139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.29484808 + inSlope: 2.938334 + outSlope: 2.938334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.40198734 + inSlope: 1.2356437 + outSlope: 1.2356437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.37722445 + inSlope: -1.5697689 + outSlope: -1.5697689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.29733604 + inSlope: -2.0087583 + outSlope: -2.0087583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.2433072 + inSlope: -1.1792483 + outSlope: -1.1792483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.21871951 + inSlope: -0.48679215 + outSlope: -0.48679215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.21085438 + inSlope: 0.19239312 + outSlope: 0.19239312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.23154575 + inSlope: 0.6207404 + outSlope: 0.6207404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.029704766 + inSlope: -2.1074643 + outSlope: -2.1074643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09995358 + inSlope: -1.8342016 + outSlope: -1.8342016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.15198487 + inSlope: -1.4760545 + outSlope: -1.4760545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.19835722 + inSlope: -0.99486256 + outSlope: -0.99486256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.21830904 + inSlope: 1.5265888 + outSlope: 1.5265888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.09658465 + inSlope: 2.8643954 + outSlope: 2.8643954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.02734934 + inSlope: 1.1483319 + outSlope: 1.1483319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.020029165 + inSlope: 2.4994333 + outSlope: 2.4994333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.13927953 + inSlope: 5.465523 + outSlope: 5.465523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.34433898 + inSlope: 4.7290187 + outSlope: 4.7290187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.45454744 + inSlope: 1.3960938 + outSlope: 1.3960938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.4374119 + inSlope: -0.15588787 + outSlope: -0.15588787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.44415492 + inSlope: -3.6289701 + outSlope: -3.6289701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.19548059 + inSlope: -7.3041105 + outSlope: -7.3041105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.04278578 + inSlope: -0.5322499 + outSlope: -0.5322499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.15999708 + inSlope: -0.18534684 + outSlope: -0.18534684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.055142608 + inSlope: -5.3179626 + outSlope: -5.3179626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.1945341 + inSlope: -0.22561562 + outSlope: -0.22561562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.070183896 + inSlope: 2.2226956 + outSlope: 2.2226956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.04635449 + inSlope: 0.755494 + outSlope: 0.755494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.019817632 + inSlope: 0.44873804 + outSlope: 0.44873804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.016438644 + inSlope: 0.0035731196 + outSlope: 0.0035731196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.019579418 + inSlope: -0.1989847 + outSlope: -0.1989847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.029704297 + inSlope: -0.3037461 + outSlope: -0.3037461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06626102 + inSlope: -10.089838 + outSlope: -10.089838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.40258896 + inSlope: -6.5222387 + outSlope: -6.5222387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.50107694 + inSlope: -2.2587829 + outSlope: -2.2587829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.5531745 + inSlope: -1.6326078 + outSlope: -1.6326078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.60991746 + inSlope: -0.5060148 + outSlope: -0.5060148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.5869088 + inSlope: 1.9213865 + outSlope: 1.9213865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.481825 + inSlope: 2.6790242 + outSlope: 2.6790242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.40830716 + inSlope: 2.5712733 + outSlope: 2.5712733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.31040677 + inSlope: 5.2395415 + outSlope: 5.2395415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.05900442 + inSlope: 6.153187 + outSlope: 6.153187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09980565 + inSlope: 2.3130264 + outSlope: 2.3130264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.09519733 + inSlope: -0.5638437 + outSlope: -0.5638437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.062216043 + inSlope: -3.8665676 + outSlope: -3.8665676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.16257386 + inSlope: -6.150555 + outSlope: -6.150555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.34782094 + inSlope: -3.7075205 + outSlope: -3.7075205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.40974182 + inSlope: -1.2218523 + outSlope: -1.2218523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.42927772 + inSlope: -0.31874898 + outSlope: -0.31874898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.43099177 + inSlope: 0.7305021 + outSlope: 0.7305021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.38057762 + inSlope: 2.445418 + outSlope: 2.445418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.26796386 + inSlope: 3.9621797 + outSlope: 3.9621797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.116432376 + inSlope: 3.939229 + outSlope: 3.939229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0053486633 + inSlope: 2.1402698 + outSlope: 2.1402698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.026252327 + inSlope: -0.91368383 + outSlope: -0.91368383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.06626102 + inSlope: -2.7753983 + outSlope: -2.7753983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7880057 + inSlope: -5.3593965 + outSlope: -5.3593965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.60935915 + inSlope: -3.9340546 + outSlope: -3.9340546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5257354 + inSlope: -2.3145103 + outSlope: -2.3145103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.45505843 + inSlope: -2.5687127 + outSlope: -2.5687127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.35448787 + inSlope: -2.2983525 + outSlope: -2.2983525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.30183494 + inSlope: -0.634128 + outSlope: -0.634128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.31221268 + inSlope: 0.46195236 + outSlope: 0.46195236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.35534897 + inSlope: 0.69750273 + outSlope: 0.69750273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.37913194 + inSlope: 0.12681486 + outSlope: 0.12681486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.3638033 + inSlope: -0.23495124 + outSlope: -0.23495124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.36346853 + inSlope: -0.28895056 + outSlope: -0.28895056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.3445399 + inSlope: -2.031666 + outSlope: -2.031666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.22802411 + inSlope: -2.421933 + outSlope: -2.421933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.18307772 + inSlope: -0.75901717 + outSlope: -0.75901717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.17742297 + inSlope: 0.17757556 + outSlope: 0.17757556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.19491611 + inSlope: 0.97757185 + outSlope: 0.97757185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.24259448 + inSlope: 2.4776392 + outSlope: 2.4776392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.36009198 + inSlope: 3.5781407 + outSlope: 3.5781407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.4811372 + inSlope: 3.850233 + outSlope: 3.850233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8042674 + inSlope: 0.75870335 + outSlope: 0.75870335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.7880057 + inSlope: -0.4878505 + outSlope: -0.4878505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00091856037 + inSlope: 1.407906 + outSlope: 1.407906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.046011645 + inSlope: 0.6316311 + outSlope: 0.6316311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.04119018 + inSlope: -0.315346 + outSlope: -0.315346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.024988575 + inSlope: -0.8793083 + outSlope: -0.8793083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.01743037 + inSlope: -1.1812744 + outSlope: -1.1812744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.05376305 + inSlope: -1.096572 + outSlope: -1.096572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.090535186 + inSlope: -0.8213179 + outSlope: -0.8213179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.108517595 + inSlope: -0.6037855 + outSlope: -0.6037855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.13078755 + inSlope: -1.2673147 + outSlope: -1.2673147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.19300523 + inSlope: -2.0281959 + outSlope: -2.0281959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.2660006 + inSlope: -1.0442452 + outSlope: -1.0442452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.26262158 + inSlope: 0.4465763 + outSlope: 0.4465763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.23622882 + inSlope: 1.6611073 + outSlope: 1.6611073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.15188108 + inSlope: 2.1684434 + outSlope: 2.1684434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.09166594 + inSlope: 1.2197068 + outSlope: 1.2197068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.070567325 + inSlope: 0.6258362 + outSlope: 0.6258362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.04994353 + inSlope: 0.62913483 + outSlope: 0.62913483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.028624969 + inSlope: 0.7114214 + outSlope: 0.7114214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0025154422 + inSlope: 0.33994833 + outSlope: 0.33994833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0059617744 + inSlope: -0.42483097 + outSlope: -0.42483097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.030837486 + inSlope: -0.6149922 + outSlope: -0.6149922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.046961244 + inSlope: -0.3393482 + outSlope: -0.3393482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.053460706 + inSlope: 0.69063747 + outSlope: 0.69063747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.000918694 + inSlope: 1.576259 + outSlope: 1.576259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17555068 + inSlope: 2.5631845 + outSlope: 2.5631845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.26099017 + inSlope: 1.8153442 + outSlope: 1.8153442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.29657364 + inSlope: 0.9309348 + outSlope: 0.9309348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.3230525 + inSlope: 0.7715553 + outSlope: 0.7715553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.36050856 + inSlope: -0.06746282 + outSlope: -0.06746282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.34351313 + inSlope: -0.49038595 + outSlope: -0.49038595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.30526564 + inSlope: -1.081768 + outSlope: -1.081768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.2556983 + inSlope: -1.6096612 + outSlope: -1.6096612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1979549 + inSlope: -1.1980257 + outSlope: -1.1980257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.17582992 + inSlope: -0.49168435 + outSlope: -0.49168435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.16517593 + inSlope: -0.024782121 + outSlope: -0.024782121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.17417777 + inSlope: 0.15149811 + outSlope: 0.15149811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.1752758 + inSlope: -0.11892146 + outSlope: -0.11892146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.16624968 + inSlope: -0.23232651 + outSlope: -0.23232651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.15397033 + inSlope: -0.17987387 + outSlope: -0.17987387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.14779578 + inSlope: -0.053484935 + outSlope: -0.053484935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.15040468 + inSlope: -0.06276114 + outSlope: -0.06276114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.13331558 + inSlope: -0.22667342 + outSlope: -0.22667342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.12850015 + inSlope: 0.63352436 + outSlope: 0.63352436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.17555058 + inSlope: 1.4115118 + outSlope: 1.4115118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.42058012 + inSlope: 0.12052684 + outSlope: 0.12052684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.41656256 + inSlope: 0.3231959 + outSlope: 0.3231959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.39903373 + inSlope: 0.55602634 + outSlope: 0.55602634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.37949413 + inSlope: 0.85902613 + outSlope: 0.85902613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3417653 + inSlope: 0.94472194 + outSlope: 0.94472194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.31651267 + inSlope: 0.7302465 + outSlope: 0.7302465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.2930822 + inSlope: 0.49806195 + outSlope: 0.49806195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.27800003 + inSlope: 0.15026899 + outSlope: 0.15026899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.2702533 + inSlope: -0.0295575 + outSlope: -0.0295575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.2752611 + inSlope: -0.11276675 + outSlope: -0.11276675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.2777711 + inSlope: -0.32702118 + outSlope: -0.32702118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.29706252 + inSlope: -0.1147324 + outSlope: -0.1147324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.2854199 + inSlope: 0.12891275 + outSlope: 0.12891275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.28846833 + inSlope: -0.13249394 + outSlope: -0.13249394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.29425284 + inSlope: -0.22053239 + outSlope: -0.22053239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.3031705 + inSlope: -0.55119646 + outSlope: -0.55119646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.33099926 + inSlope: -0.8705127 + outSlope: -0.8705127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.36120468 + inSlope: -1.0167058 + outSlope: -1.0167058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.39877963 + inSlope: -0.78972 + outSlope: -0.78972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.41385266 + inSlope: -0.3511923 + outSlope: -0.3511923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.42058024 + inSlope: 0.048366446 + outSlope: 0.048366446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.33742556 + inSlope: -1.5186255 + outSlope: -1.5186255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3880464 + inSlope: -0.742831 + outSlope: -0.742831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.38694763 + inSlope: 0.10252653 + outSlope: 0.10252653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.3812113 + inSlope: 0.39584 + outSlope: 0.39584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3605583 + inSlope: -0.18827498 + outSlope: -0.18827498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.39376298 + inSlope: -0.60787123 + outSlope: -0.60787123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.3966831 + inSlope: 0.30500385 + outSlope: 0.30500385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.38074946 + inSlope: 0.95494246 + outSlope: 0.95494246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.33302027 + inSlope: 1.5393333 + outSlope: 1.5393333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.27812725 + inSlope: 1.0431961 + outSlope: 1.0431961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.26347387 + inSlope: 0.35917538 + outSlope: 0.35917538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.25418222 + inSlope: 0.49757785 + outSlope: 0.49757785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.230302 + inSlope: 0.5215614 + outSlope: 0.5215614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.21941146 + inSlope: 0.8013736 + outSlope: 0.8013736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.17687714 + inSlope: 0.60376346 + outSlope: 0.60376346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.17916061 + inSlope: -0.17789558 + outSlope: -0.17789558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.18873686 + inSlope: -0.61062914 + outSlope: -0.61062914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.2198692 + inSlope: -0.8664001 + outSlope: -0.8664001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.24649686 + inSlope: -0.50277674 + outSlope: -0.50277674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.25723165 + inSlope: -0.2389492 + outSlope: -0.2389492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2693176 + inSlope: -1.2029088 + outSlope: -1.2029088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.33742562 + inSlope: -2.0432389 + outSlope: -2.0432389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.37553418 + inSlope: -2.1370232 + outSlope: -2.1370232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.44676828 + inSlope: -1.3460541 + outSlope: -1.3460541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.46527112 + inSlope: -0.49726498 + outSlope: -0.49726498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.48668966 + inSlope: 0.2357424 + outSlope: 0.2357424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.47384295 + inSlope: 0.31622747 + outSlope: 0.31622747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.45586452 + inSlope: 0.40529794 + outSlope: 0.40529794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.4235781 + inSlope: 0.25787967 + outSlope: 0.25787967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.421396 + inSlope: 0.059559327 + outSlope: 0.059559327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.4196075 + inSlope: -0.23706129 + outSlope: -0.23706129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.43720007 + inSlope: -0.18010947 + outSlope: -0.18010947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.4127076 + inSlope: 0.46608445 + outSlope: 0.46608445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.38503817 + inSlope: 0.65315473 + outSlope: 0.65315473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.35699886 + inSlope: 0.66159564 + outSlope: 0.66159564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.33401433 + inSlope: -0.053491373 + outSlope: -0.053491373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.33851913 + inSlope: -0.6227996 + outSlope: -0.6227996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.37553433 + inSlope: -1.110455 + outSlope: -1.110455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0945239 + inSlope: 0.85595566 + outSlope: 0.85595566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.123055756 + inSlope: 0.16038334 + outSlope: 0.16038334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.10521612 + inSlope: -0.9463328 + outSlope: -0.9463328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.059966896 + inSlope: -1.857935 + outSlope: -1.857935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.018646203 + inSlope: -2.230519 + outSlope: -2.230519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.088734366 + inSlope: -1.6685809 + outSlope: -1.6685809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.12988494 + inSlope: -0.7522053 + outSlope: -0.7522053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.1388814 + inSlope: -0.1318317 + outSlope: -0.1318317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.13867372 + inSlope: 0.58380216 + outSlope: 0.58380216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.09996126 + inSlope: 1.3702668 + outSlope: 1.3702668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.04732261 + inSlope: 1.1558421 + outSlope: 1.1558421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.022905122 + inSlope: 0.75823534 + outSlope: 0.75823534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0032264343 + inSlope: 1.3625637 + outSlope: 1.3625637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.06793248 + inSlope: 0.12943786 + outSlope: 0.12943786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.011855626 + inSlope: -1.1646284 + outSlope: -1.1646284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.009709391 + inSlope: -0.5808648 + outSlope: -0.5808648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.02686869 + inSlope: -0.4873767 + outSlope: -0.4873767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0422012 + inSlope: -0.41457778 + outSlope: -0.41457778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.05450721 + inSlope: 0.081471995 + outSlope: 0.081471995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.036769707 + inSlope: 1.0447885 + outSlope: 1.0447885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.015145322 + inSlope: 1.216718 + outSlope: 1.216718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.044344798 + inSlope: 0.8110893 + outSlope: 0.8110893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06921794 + inSlope: 0.7526848 + outSlope: 0.7526848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.09452378 + inSlope: 0.75917447 + outSlope: 0.75917447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.029212212 + inSlope: 1.298637 + outSlope: 1.298637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.07250012 + inSlope: 0.5172335 + outSlope: 0.5172335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.06369445 + inSlope: -0.6412176 + outSlope: -0.6412176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.029752268 + inSlope: -1.1875978 + outSlope: -1.1875978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.015478742 + inSlope: -0.19605991 + outSlope: -0.19605991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.016681606 + inSlope: 0.5113411 + outSlope: 0.5113411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.018610662 + inSlope: -0.15994993 + outSlope: -0.15994993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0060182787 + inSlope: -0.35123292 + outSlope: -0.35123292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0048048645 + inSlope: -0.8854592 + outSlope: -0.8854592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.053012326 + inSlope: -1.5345192 + outSlope: -1.5345192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.10710614 + inSlope: -0.8837434 + outSlope: -0.8837434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.11192855 + inSlope: -0.007954709 + outSlope: -0.007954709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.10763645 + inSlope: 0.31267244 + outSlope: 0.31267244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.09108372 + inSlope: 0.3886718 + outSlope: 0.3886718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.081725 + inSlope: -0.4857446 + outSlope: -0.4857446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.123466656 + inSlope: -0.59649783 + outSlope: -0.59649783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.121491484 + inSlope: 0.2669692 + outSlope: 0.2669692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.105668694 + inSlope: 0.8254378 + outSlope: 0.8254378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.06646232 + inSlope: 0.9882146 + outSlope: 0.9882146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.039787736 + inSlope: 0.48245 + outSlope: 0.48245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.03429897 + inSlope: 0.067014635 + outSlope: 0.067014635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0353201 + inSlope: 0.09442921 + outSlope: 0.09442921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.028003698 + inSlope: 0.9679904 + outSlope: 0.9679904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.029212637 + inSlope: 1.7164886 + outSlope: 1.7164886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.076823115 + inSlope: -9.040643 + outSlope: -9.040643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.22453167 + inSlope: -6.8253055 + outSlope: -6.8253055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.37819728 + inSlope: -3.1439996 + outSlope: -3.1439996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.43413165 + inSlope: 0.12685794 + outSlope: 0.12685794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3697401 + inSlope: 2.3009877 + outSlope: 2.3009877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.28073248 + inSlope: 2.945458 + outSlope: 2.945458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1733762 + inSlope: 2.4497178 + outSlope: 2.4497178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.11741793 + inSlope: 1.7580161 + outSlope: 1.7580161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.056175135 + inSlope: 2.3847437 + outSlope: 2.3847437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.04156498 + inSlope: 2.0801325 + outSlope: 2.0801325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08250035 + inSlope: 0.5641371 + outSlope: 0.5641371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.079174116 + inSlope: -0.6831012 + outSlope: -0.6831012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.03696024 + inSlope: -6.3401146 + outSlope: -6.3401146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.3435002 + inSlope: -7.418922 + outSlope: -7.418922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.45763454 + inSlope: -0.647251 + outSlope: -0.647251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.38665032 + inSlope: 1.6874015 + outSlope: 1.6874015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.34514114 + inSlope: 1.3723865 + outSlope: 1.3723865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.29515782 + inSlope: 2.573799 + outSlope: 2.573799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.17355463 + inSlope: 3.8279915 + outSlope: 3.8279915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.039958384 + inSlope: 3.3223586 + outSlope: 3.3223586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.04793597 + inSlope: 2.3240404 + outSlope: 2.3240404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11497763 + inSlope: 1.578695 + outSlope: 1.578695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.15318233 + inSlope: -0.5723161 + outSlope: -0.5723161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.076823115 + inSlope: -2.2907743 + outSlope: -2.2907743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4119849 + inSlope: -4.4281983 + outSlope: -4.4281983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.26437828 + inSlope: -2.6092422 + outSlope: -2.6092422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.23803541 + inSlope: -0.3733999 + outSlope: -0.3733999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.23948495 + inSlope: 0.25445804 + outSlope: 0.25445804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.3089901 + inSlope: 2.5547843 + outSlope: 2.5547843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.42531827 + inSlope: 2.8627038 + outSlope: 2.8627038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.576703 + inSlope: 3.1106973 + outSlope: 3.1106973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.83702254 + inSlope: 2.8247857 + outSlope: 2.8247857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.8955359 + inSlope: 1.3044276 + outSlope: 1.3044276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9239844 + inSlope: -0.3676669 + outSlope: -0.3676669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.8710248 + inSlope: -2.9809499 + outSlope: -2.9809499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5834144 + inSlope: -2.9447064 + outSlope: -2.9447064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.52894074 + inSlope: -1.369423 + outSlope: -1.369423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.49211943 + inSlope: -1.0964487 + outSlope: -1.0964487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.44088957 + inSlope: -0.020704925 + outSlope: -0.020704925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.4790494 + inSlope: 0.6020298 + outSlope: 0.6020298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.49459913 + inSlope: -1.0059667 + outSlope: -1.0059667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4119849 + inSlope: -2.4784253 + outSlope: -2.4784253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3017412 + inSlope: 3.4005477 + outSlope: 3.4005477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.18838961 + inSlope: 2.2383835 + outSlope: 2.2383835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.15251563 + inSlope: 0.66057885 + outSlope: 0.66057885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.14435102 + inSlope: -0.40859503 + outSlope: -0.40859503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.1797553 + inSlope: -0.62162477 + outSlope: -0.62162477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.18579267 + inSlope: -0.33073327 + outSlope: -0.33073327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.20180419 + inSlope: -0.38989857 + outSlope: -0.38989857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.22296698 + inSlope: -0.50513107 + outSlope: -0.50513107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.24546131 + inSlope: -0.15031457 + outSlope: -0.15031457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.23298796 + inSlope: 0.4315489 + outSlope: 0.4315489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.21669139 + inSlope: 0.8068813 + outSlope: 0.8068813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.17919584 + inSlope: 2.2053103 + outSlope: 2.2053103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.06967067 + inSlope: 1.278458 + outSlope: 1.278458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.09396531 + inSlope: -1.5747224 + outSlope: -1.5747224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.17465208 + inSlope: -1.720221 + outSlope: -1.720221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.20864666 + inSlope: -0.93922997 + outSlope: -0.93922997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.23726746 + inSlope: -1.165219 + outSlope: -1.165219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.2863279 + inSlope: -1.2366283 + outSlope: -1.2366283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.34035695 + inSlope: -0.57319176 + outSlope: -0.57319176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.3579221 + inSlope: -0.39533874 + outSlope: -0.39533874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.36671287 + inSlope: 0.84271467 + outSlope: 0.84271467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.30174106 + inSlope: 1.9491525 + outSlope: 1.9491525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.32145947 + inSlope: 1.6979929 + outSlope: 1.6979929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.37805924 + inSlope: 1.220148 + outSlope: 1.220148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.40280268 + inSlope: 0.59360456 + outSlope: 0.59360456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.410425 + inSlope: -0.7701952 + outSlope: -0.7701952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.37306786 + inSlope: -0.93344295 + outSlope: -0.93344295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.32101622 + inSlope: -1.1769037 + outSlope: -1.1769037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.26973522 + inSlope: -1.3335087 + outSlope: -1.3335087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.23211564 + inSlope: -0.8111412 + outSlope: -0.8111412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.21565914 + inSlope: -0.29828775 + outSlope: -0.29828775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.21222979 + inSlope: 0.33052826 + outSlope: 0.33052826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.27039054 + inSlope: 0.7968614 + outSlope: 0.7968614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.31197318 + inSlope: 0.39746684 + outSlope: 0.39746684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.3282503 + inSlope: 0.3526874 + outSlope: 0.3526874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3345261 + inSlope: -0.21562621 + outSlope: -0.21562621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.31080946 + inSlope: 0.0052416474 + outSlope: 0.0052416474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.32146004 + inSlope: 0.319517 + outSlope: 0.319517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.18771192 + inSlope: -0.50216854 + outSlope: -0.50216854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.20445088 + inSlope: -0.33440173 + outSlope: -0.33440173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.21000537 + inSlope: -0.12296988 + outSlope: -0.12296988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.21264887 + inSlope: 0.07671052 + outSlope: 0.07671052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.20489134 + inSlope: 0.18027419 + outSlope: 0.18027419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.20190282 + inSlope: 0.01952626 + outSlope: 0.01952626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.19077237 + inSlope: 0.38896146 + outSlope: 0.38896146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.17434087 + inSlope: 0.43176684 + outSlope: 0.43176684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.16198792 + inSlope: 0.28995252 + outSlope: 0.28995252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.1550107 + inSlope: 0.30475587 + outSlope: 0.30475587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.14167085 + inSlope: 0.54988396 + outSlope: 0.54988396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.11835177 + inSlope: 0.6331781 + outSlope: 0.6331781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.099459 + inSlope: 0.36173028 + outSlope: 0.36173028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09423643 + inSlope: 0.10785265 + outSlope: 0.10785265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.09226882 + inSlope: -0.12634216 + outSlope: -0.12634216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.10265923 + inSlope: -0.47917283 + outSlope: -0.47917283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.12421368 + inSlope: -0.6373192 + outSlope: -0.6373192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.14514717 + inSlope: -0.51536894 + outSlope: -0.51536894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.1585716 + inSlope: -0.3447215 + outSlope: -0.3447215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.16812861 + inSlope: -0.4371072 + outSlope: -0.4371072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.18771209 + inSlope: -0.58750385 + outSlope: -0.58750385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.38246632 + inSlope: -0.6107148 + outSlope: -0.6107148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.40282348 + inSlope: -0.13056634 + outSlope: -0.13056634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.39117074 + inSlope: 0.59243417 + outSlope: 0.59243417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.36332786 + inSlope: 1.2536547 + outSlope: 1.2536547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.30759376 + inSlope: 0.8400416 + outSlope: 0.8400416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.3073251 + inSlope: 0.008063166 + outSlope: 0.008063166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.3053533 + inSlope: 0.028391631 + outSlope: 0.028391631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.30489472 + inSlope: -0.2525327 + outSlope: -0.2525327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.32218882 + inSlope: -0.2533928 + outSlope: -0.2533928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.32178757 + inSlope: 0.022902474 + outSlope: 0.022902474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.320662 + inSlope: 0.39114565 + outSlope: 0.39114565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.2957112 + inSlope: 1.1509992 + outSlope: 1.1509992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.24392872 + inSlope: 1.3658619 + outSlope: 1.3658619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.20465377 + inSlope: 0.5745639 + outSlope: 0.5745639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.20562449 + inSlope: -0.12679619 + outSlope: -0.12679619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.21310686 + inSlope: -0.5765906 + outSlope: -0.5765906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.24406384 + inSlope: -0.9661628 + outSlope: -0.9661628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.3056229 + inSlope: -0.6050775 + outSlope: -0.6050775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3338079 + inSlope: -0.9691519 + outSlope: -0.9691519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.38246635 + inSlope: -1.4597526 + outSlope: -1.4597526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1140241 + inSlope: -0.15259086 + outSlope: -0.15259086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.10893774 + inSlope: 0.05632762 + outSlope: 0.05632762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.11777928 + inSlope: 0.36327028 + outSlope: 0.36327028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.13315576 + inSlope: 0.6576125 + outSlope: 0.6576125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.16162011 + inSlope: 0.7449957 + outSlope: 0.7449957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.18282214 + inSlope: 0.409386 + outSlope: 0.409386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.18871877 + inSlope: -0.051774684 + outSlope: -0.051774684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.18546087 + inSlope: -0.24238141 + outSlope: -0.24238141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15945886 + inSlope: -0.19293377 + outSlope: -0.19293377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.15969776 + inSlope: 0.016175723 + outSlope: 0.016175723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.17108111 + inSlope: 0.54177964 + outSlope: 0.54177964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.19665588 + inSlope: 0.35161906 + outSlope: 0.35161906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.19452238 + inSlope: -0.04365342 + outSlope: -0.04365342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.19167188 + inSlope: -0.17880823 + outSlope: -0.17880823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.16668409 + inSlope: -0.48902375 + outSlope: -0.48902375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.14922354 + inSlope: -0.41184348 + outSlope: -0.41184348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1305907 + inSlope: -0.37805593 + outSlope: -0.37805593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11402413 + inSlope: -0.49699682 + outSlope: -0.49699682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0071736793 + inSlope: -0.5155481 + outSlope: -0.5155481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.010011258 + inSlope: -0.4069516 + outSlope: -0.4069516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.019956429 + inSlope: -0.31630802 + outSlope: -0.31630802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.031098463 + inSlope: -0.46365452 + outSlope: -0.46365452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.05086673 + inSlope: -0.02677694 + outSlope: -0.02677694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.032883592 + inSlope: 0.6285411 + outSlope: 0.6285411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00896398 + inSlope: 0.53676015 + outSlope: 0.53676015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0029004265 + inSlope: 0.33334017 + outSlope: 0.33334017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0132586965 + inSlope: 0.33328855 + outSlope: 0.33328855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.02511966 + inSlope: 0.44169965 + outSlope: 0.44169965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.04270534 + inSlope: 0.25376305 + outSlope: 0.25376305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.042037196 + inSlope: -0.080577694 + outSlope: -0.080577694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.03733349 + inSlope: -0.56545067 + outSlope: -0.56545067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.004340482 + inSlope: -0.94162256 + outSlope: -0.94162256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.025441343 + inSlope: -0.7973798 + outSlope: -0.7973798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.048818145 + inSlope: -0.3400803 + outSlope: -0.3400803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.04811334 + inSlope: 0.09180607 + outSlope: 0.09180607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.042697735 + inSlope: 0.32695702 + outSlope: 0.32695702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.026316216 + inSlope: 0.46400172 + outSlope: 0.46400172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.011764292 + inSlope: 0.2582553 + outSlope: 0.2582553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.009099187 + inSlope: 0.03472068 + outSlope: 0.03472068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.009449583 + inSlope: 0.026891882 + outSlope: 0.026891882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0073063974 + inSlope: 0.24935074 + outSlope: 0.24935074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.00717381 + inSlope: 0.43440586 + outSlope: 0.43440586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11564755 + inSlope: -3.7022657 + outSlope: -3.7022657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0077613164 + inSlope: -2.564907 + outSlope: -2.564907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.055346273 + inSlope: -1.223227 + outSlope: -1.223227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.08930979 + inSlope: -1.2551404 + outSlope: -1.2551404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.1390223 + inSlope: 0.4098106 + outSlope: 0.4098106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.061989088 + inSlope: 2.0789773 + outSlope: 2.0789773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00042380084 + inSlope: 1.3613312 + outSlope: 1.3613312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.02876635 + inSlope: 0.83339965 + outSlope: 0.83339965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.055136174 + inSlope: 1.123741 + outSlope: 1.123741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.10368241 + inSlope: 1.714486 + outSlope: 1.714486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.16943523 + inSlope: 0.94091964 + outSlope: 0.94091964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.16641039 + inSlope: -0.36270124 + outSlope: -0.36270124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.14525513 + inSlope: -2.2277305 + outSlope: -2.2277305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.017895019 + inSlope: -3.468803 + outSlope: -3.468803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.085998364 + inSlope: -2.2801602 + outSlope: -2.2801602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1341156 + inSlope: -0.64183694 + outSlope: -0.64183694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.12878744 + inSlope: 0.36912608 + outSlope: 0.36912608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.10950718 + inSlope: 1.3374844 + outSlope: 1.3374844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.039621864 + inSlope: 2.1336498 + outSlope: 2.1336498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.03273614 + inSlope: 1.7431407 + outSlope: 1.7431407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.07658754 + inSlope: 0.84989285 + outSlope: 0.84989285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.089395635 + inSlope: 0.31803632 + outSlope: 0.31803632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.097789966 + inSlope: 0.39375958 + outSlope: 0.39375958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11564628 + inSlope: 0.535689 + outSlope: 0.535689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.0794548 + inSlope: -7.7715 + outSlope: -7.7715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.3385048 + inSlope: -3.88575 + outSlope: -3.88575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.3385048 + inSlope: -0.000007152556 + outSlope: -0.000007152556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.3385034 + inSlope: 0.000042915308 + outSlope: 0.000042915308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.8092125 + inSlope: 17.260723 + outSlope: 17.260723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.23385501 + inSlope: 8.630362 + outSlope: 8.630362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.23385501 + inSlope: 0.0000008940695 + outSlope: 0.0000008940695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.23385485 + inSlope: 0.000004917379 + outSlope: 0.000004917379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.65577084 + inSlope: -0.98542386 + outSlope: -0.98542386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6229234 + inSlope: -0.49271998 + outSlope: -0.49271998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.62292284 + inSlope: -0.000008046627 + outSlope: -0.000008046627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.62292284 + inSlope: -0.000016093241 + outSlope: -0.000016093241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07870909 + inSlope: 11.397398 + outSlope: 11.397398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.4586224 + inSlope: 5.6987014 + outSlope: 5.6987014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.45862255 + inSlope: 0.000002235174 + outSlope: 0.000002235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5200927 + inSlope: -0.2893388 + outSlope: -0.2893388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.52973765 + inSlope: -0.000004470348 + outSlope: -0.000004470348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4119643 + inSlope: 11.975599 + outSlope: 11.975599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.81115097 + inSlope: 5.9877996 + outSlope: 5.9877996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.19499633 + inSlope: 11.441968 + outSlope: 11.441968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5763953 + inSlope: 5.7209873 + outSlope: 5.7209873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5763955 + inSlope: 4.5474735e-13 + outSlope: 4.5474735e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5763955 + inSlope: 0.0000071525515 + outSlope: 0.0000071525515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.0134165 + inSlope: 3.2688687 + outSlope: 3.2688687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.90445423 + inSlope: 1.6343781 + outSlope: 1.6343781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.904458 + inSlope: -7.275958e-12 + outSlope: -7.275958e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.904458 + inSlope: -0.000112652684 + outSlope: -0.000112652684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40431634 + inSlope: 12.159219 + outSlope: 12.159219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.80962366 + inSlope: 6.0796146 + outSlope: 6.0796146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.809624 + inSlope: 4.5474735e-13 + outSlope: 4.5474735e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08947438 + inSlope: 11.461415 + outSlope: 11.461415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.4715216 + inSlope: 5.7307076 + outSlope: 5.7307076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.4715216 + inSlope: 0.0000022351737 + outSlope: 0.0000022351737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.34947234 + inSlope: -6.6693435 + outSlope: -6.6693435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.12716088 + inSlope: -3.3346717 + outSlope: -3.3346717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.12716088 + inSlope: 0.000007823109 + outSlope: 0.000007823109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.39686552 + inSlope: 12.353656 + outSlope: 12.353656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.80865407 + inSlope: 6.176828 + outSlope: 6.176828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.082489185 + inSlope: 11.497072 + outSlope: 11.497072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.46572495 + inSlope: 5.748536 + outSlope: 5.748536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.46572495 + inSlope: -0.000017881379 + outSlope: -0.000017881379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11840313 + inSlope: -3.2077231 + outSlope: -3.2077231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.01147902 + inSlope: -1.6038616 + outSlope: -1.6038616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.01147902 + inSlope: 0.0000026263274 + outSlope: 0.0000026263274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.38788435 + inSlope: 12.545393 + outSlope: 12.545393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8060641 + inSlope: 6.272693 + outSlope: 6.272693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.8060639 + inSlope: -0.0000035762785 + outSlope: -0.0000035762785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.98128825 + inSlope: -10.71493 + outSlope: -10.71493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.3384526 + inSlope: -5.3574505 + outSlope: -5.3574505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.3384516 + inSlope: 0.000016093252 + outSlope: 0.000016093252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.3384516 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.0774909 + inSlope: 25.309511 + outSlope: 25.309511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.23384054 + inSlope: 12.654769 + outSlope: 12.654769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.23383965 + inSlope: -0.000003576276 + outSlope: -0.000003576276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.72085184 + inSlope: -2.9378538 + outSlope: -2.9378538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6229234 + inSlope: -1.4689269 + outSlope: -1.4689269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6229234 + inSlope: 0.000007152556 + outSlope: 0.000007152556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07596598 + inSlope: 11.480026 + outSlope: 11.480026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.45863354 + inSlope: 5.7400146 + outSlope: 5.7400146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.45863363 + inSlope: 0.0000013411044 + outSlope: 0.0000013411044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.45863378 + inSlope: -0.000008940689 + outSlope: -0.000008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5268395 + inSlope: -0.08622407 + outSlope: -0.08622407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.5297126 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5297137 + inSlope: 0.000008940689 + outSlope: 0.000008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.38934046 + inSlope: 12.654332 + outSlope: 12.654332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.81115156 + inSlope: 6.327164 + outSlope: 6.327164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.81115144 + inSlope: -2.2737368e-13 + outSlope: -2.2737368e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.81115144 + inSlope: -0.0000035762757 + outSlope: -0.0000035762757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20252462 + inSlope: 11.217357 + outSlope: 11.217357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5764365 + inSlope: 5.6086783 + outSlope: 5.6086783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5764365 + inSlope: -0.0000008940695 + outSlope: -0.0000008940695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.57643646 + inSlope: -0.0000017881379 + outSlope: -0.0000017881379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.84001094 + inSlope: -1.928535 + outSlope: -1.928535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.90429544 + inSlope: -0.9642675 + outSlope: -0.9642675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.90429544 + inSlope: 0.000042915337 + outSlope: 0.000042915337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.9042926 + inSlope: 0.000085830616 + outSlope: 0.000085830616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.39383483 + inSlope: 12.473666 + outSlope: 12.473666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8096237 + inSlope: 6.236833 + outSlope: 6.236833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11626892 + inSlope: 10.657552 + outSlope: 10.657552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.47152066 + inSlope: 5.32877 + outSlope: 5.32877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.47152027 + inSlope: -0.0000058114524 + outSlope: -0.0000058114524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.47152027 + inSlope: -0.000011622896 + outSlope: -0.000011622896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.327656 + inSlope: -6.0168905 + outSlope: -6.0168905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.12709297 + inSlope: -3.0084019 + outSlope: -3.0084019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.12709586 + inSlope: 0.000043362375 + outSlope: 0.000043362375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12709586 + inSlope: 0.000086724685 + outSlope: 0.000086724685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4115776 + inSlope: 11.91229 + outSlope: 11.91229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.80865395 + inSlope: 5.9561477 + outSlope: 5.9561477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.8086541 + inSlope: 0.0000026822088 + outSlope: 0.0000026822088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13370064 + inSlope: 9.9611 + outSlope: 9.9611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.4657373 + inSlope: 4.98055 + outSlope: 4.98055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.4657373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4657366 + inSlope: -0.0000026822067 + outSlope: -0.0000026822067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09217217 + inSlope: -2.4230344 + outSlope: -2.4230344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0114043495 + inSlope: -1.2115172 + outSlope: -1.2115172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0114043495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.011404368 + inSlope: -0.000002905724 + outSlope: -0.000002905724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.43395498 + inSlope: 11.163249 + outSlope: 11.163249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8060633 + inSlope: 5.5816245 + outSlope: 5.5816245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.7666667 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Left.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Left.anim.meta new file mode 100644 index 0000000..681d887 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Left.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 44f4c77b25b52da4d8c0ab33a4f55a0e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Left.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Right.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Right.anim new file mode 100644 index 0000000..e21a674 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Right.anim @@ -0,0 +1,15582 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Run_Right + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.058244895 + inSlope: 2.4897726 + outSlope: 2.4897726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.024747523 + inSlope: 2.4589453 + outSlope: 2.4589453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.10568478 + inSlope: 2.5098314 + outSlope: 2.5098314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.27873853 + inSlope: 2.6215422 + outSlope: 2.6215422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8272006 + inSlope: 2.582255 + outSlope: 2.582255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 1.3494778 + inSlope: 2.781293 + outSlope: 2.781293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 1.9758543 + inSlope: 2.499223 + outSlope: 2.499223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.92403835 + inSlope: -0.26829958 + outSlope: -0.26829958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.91509503 + inSlope: 0.28207538 + outSlope: 0.28207538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9428434 + inSlope: 0.69240594 + outSlope: 0.69240594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 1.0011779 + inSlope: -0.2683917 + outSlope: -0.2683917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.97107035 + inSlope: -0.43470117 + outSlope: -0.43470117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.95691764 + inSlope: -0.6465939 + outSlope: -0.6465939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9159336 + inSlope: 0.22036958 + outSlope: 0.22036958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.9426554 + inSlope: 0.61545795 + outSlope: 0.61545795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.98870367 + inSlope: 0.3319946 + outSlope: 0.3319946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9630013 + inSlope: -0.42299783 + outSlope: -0.42299783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.94948596 + inSlope: -0.5799984 + outSlope: -0.5799984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.92433476 + inSlope: -0.38171446 + outSlope: -0.38171446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.92403835 + inSlope: -0.0088924095 + outSlope: -0.0088924095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0030852596 + inSlope: -0.018301005 + outSlope: -0.018301005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.002475226 + inSlope: -0.03244375 + outSlope: -0.03244375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00092234265 + inSlope: -0.04580114 + outSlope: -0.04580114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.00057818356 + inSlope: -0.04601603 + outSlope: -0.04601603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0021453928 + inSlope: -0.07810504 + outSlope: -0.07810504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.005785186 + inSlope: -0.09390667 + outSlope: -0.09390667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.008405838 + inSlope: -0.07663067 + outSlope: -0.07663067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.010893898 + inSlope: -0.048409376 + outSlope: -0.048409376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.01163313 + inSlope: 0.01108219 + outSlope: 0.01108219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0101550855 + inSlope: 0.04767666 + outSlope: 0.04767666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.008454686 + inSlope: 0.1380371 + outSlope: 0.1380371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0009526132 + inSlope: 0.2165711 + outSlope: 0.2165711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0059833922 + inSlope: 0.14046666 + outSlope: 0.14046666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.008411837 + inSlope: 0.038689423 + outSlope: 0.038689423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.008562687 + inSlope: -0.0012585039 + outSlope: -0.0012585039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.008327937 + inSlope: 0.045021072 + outSlope: 0.045021072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.011564095 + inSlope: 0.09747476 + outSlope: 0.09747476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.01482626 + inSlope: 0.049813204 + outSlope: 0.049813204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.014884978 + inSlope: -0.052653324 + outSlope: -0.052653324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.011316035 + inSlope: -0.11929777 + outSlope: -0.11929777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.006931794 + inSlope: -0.09420739 + outSlope: -0.09420739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0050355447 + inSlope: -0.06907581 + outSlope: -0.06907581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0023267409 + inSlope: -0.029254684 + outSlope: -0.029254684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0030852356 + inSlope: 0.022754822 + outSlope: 0.022754822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06846294 + inSlope: 0.052586492 + outSlope: 0.052586492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.07021582 + inSlope: 0.09568937 + outSlope: 0.09568937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.07484223 + inSlope: 0.088622645 + outSlope: 0.088622645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.076124 + inSlope: 0.028859895 + outSlope: 0.028859895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.07204454 + inSlope: -0.15942602 + outSlope: -0.15942602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0653874 + inSlope: -0.21517688 + outSlope: -0.21517688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.057699412 + inSlope: -0.1472544 + outSlope: -0.1472544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.05557044 + inSlope: -0.070640005 + outSlope: -0.070640005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.05299008 + inSlope: -0.0055819005 + outSlope: -0.0055819005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.05519831 + inSlope: 0.11873931 + outSlope: 0.11873931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.060906038 + inSlope: 0.13956979 + outSlope: 0.13956979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.06698318 + inSlope: 0.07485625 + outSlope: 0.07485625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.06949338 + inSlope: 0.17671591 + outSlope: 0.17671591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.087647855 + inSlope: 0.19791166 + outSlope: 0.19791166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.09195836 + inSlope: 0.030962616 + outSlope: 0.030962616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08339131 + inSlope: -0.18381023 + outSlope: -0.18381023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.07745801 + inSlope: -0.22394015 + outSlope: -0.22394015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06846197 + inSlope: -0.1349262 + outSlope: -0.1349262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.06846294 + inSlope: 0.00002905724 + outSlope: 0.00002905724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.031971067 + inSlope: 0.10388418 + outSlope: 0.10388418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.035433874 + inSlope: 0.1326493 + outSlope: 0.1326493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.040814355 + inSlope: 0.1338212 + outSlope: 0.1338212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0477368 + inSlope: 0.13520178 + outSlope: 0.13520178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.05336874 + inSlope: 0.13370733 + outSlope: 0.13370733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.059652418 + inSlope: 0.020584822 + outSlope: 0.020584822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.060829937 + inSlope: -0.0450171 + outSlope: -0.0450171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.05665128 + inSlope: -0.09231963 + outSlope: -0.09231963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.054675296 + inSlope: -0.05860026 + outSlope: -0.05860026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.052744597 + inSlope: -0.12499871 + outSlope: -0.12499871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.04051 + inSlope: -0.10116258 + outSlope: -0.10116258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.03959787 + inSlope: -0.04169001 + outSlope: -0.04169001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.035332337 + inSlope: -0.07549256 + outSlope: -0.07549256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.032697827 + inSlope: -0.05038237 + outSlope: -0.05038237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.031971067 + inSlope: -0.000073313655 + outSlope: -0.000073313655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.025593001 + inSlope: 0.033836626 + outSlope: 0.033836626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.024465114 + inSlope: 0.12227112 + outSlope: 0.12227112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.017441593 + inSlope: 0.17997196 + outSlope: 0.17997196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.012466982 + inSlope: 0.148352 + outSlope: 0.148352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0075514596 + inSlope: 0.11973865 + outSlope: 0.11973865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0044844057 + inSlope: 0.007577285 + outSlope: 0.007577285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0070463084 + inSlope: -0.1295313 + outSlope: -0.1295313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.013119826 + inSlope: -0.1456865 + outSlope: -0.1456865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.016758742 + inSlope: -0.014193162 + outSlope: -0.014193162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.014066037 + inSlope: 0.080111 + outSlope: 0.080111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.011418009 + inSlope: 0.11045047 + outSlope: 0.11045047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0067026727 + inSlope: -0.04136596 + outSlope: -0.04136596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.014175747 + inSlope: -0.3475895 + outSlope: -0.3475895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.029875312 + inSlope: -0.3161378 + outSlope: -0.3161378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0352516 + inSlope: -0.15914583 + outSlope: -0.15914583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.04048503 + inSlope: -0.14219521 + outSlope: -0.14219521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.044731278 + inSlope: -0.004343275 + outSlope: -0.004343275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.04077458 + inSlope: 0.23637883 + outSlope: 0.23637883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.028972697 + inSlope: 0.36542472 + outSlope: 0.36542472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.016412932 + inSlope: 0.18848057 + outSlope: 0.18848057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.016407315 + inSlope: -0.0002796758 + outSlope: -0.0002796758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.016431578 + inSlope: -0.13778667 + outSlope: -0.13778667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.025593083 + inSlope: -0.1374215 + outSlope: -0.1374215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.025593001 + inSlope: 0.0000024586896 + outSlope: 0.0000024586896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9968129 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9968129 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.019530986 + inSlope: -3.232005 + outSlope: -3.232005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.12726448 + inSlope: -3.2824492 + outSlope: -3.2824492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.23836094 + inSlope: -2.5335135 + outSlope: -2.5335135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.2961654 + inSlope: -1.7064016 + outSlope: -1.7064016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.35212106 + inSlope: -2.1033585 + outSlope: -2.1033585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.4363893 + inSlope: -2.154316 + outSlope: -2.154316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.49574214 + inSlope: -1.1099653 + outSlope: -1.1099653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.4546671 + inSlope: 0.96136457 + outSlope: 0.96136457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.4236507 + inSlope: 1.6100985 + outSlope: 1.6100985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.24067236 + inSlope: 3.5655184 + outSlope: 3.5655184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.1096259 + inSlope: 3.002368 + outSlope: 3.002368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.040514503 + inSlope: 2.1200094 + outSlope: 2.1200094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.031708 + inSlope: 2.7806818 + outSlope: 2.7806818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.14486432 + inSlope: 2.2591622 + outSlope: 2.2591622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.18231894 + inSlope: 0.64894646 + outSlope: 0.64894646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.18812744 + inSlope: 0.0027176738 + outSlope: 0.0027176738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.18250011 + inSlope: -0.15720762 + outSlope: -0.15720762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.17764693 + inSlope: -0.66744024 + outSlope: -0.66744024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.13800406 + inSlope: -1.7375252 + outSlope: -1.7375252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.061811965 + inSlope: -2.3630266 + outSlope: -2.3630266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.019531041 + inSlope: -2.4402883 + outSlope: -2.4402883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.89819336 + inSlope: 0.15047191 + outSlope: 0.15047191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.8931776 + inSlope: -0.11916249 + outSlope: -0.11916249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.9091192 + inSlope: 0.012255918 + outSlope: 0.012255918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.87863773 + inSlope: 0.98190105 + outSlope: 0.98190105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.7784358 + inSlope: 0.6565476 + outSlope: 0.6565476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.7662573 + inSlope: 0.45761442 + outSlope: 0.45761442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.75131565 + inSlope: -0.92527527 + outSlope: -0.92527527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.7974518 + inSlope: -1.0239843 + outSlope: -1.0239843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.8459808 + inSlope: -0.41168565 + outSlope: -0.41168565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.8757889 + inSlope: -0.573652 + outSlope: -0.573652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.9042509 + inSlope: -0.21553786 + outSlope: -0.21553786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.9114974 + inSlope: 0.15583578 + outSlope: 0.15583578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.8938619 + inSlope: 0.19956023 + outSlope: 0.19956023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.8981934 + inSlope: -0.12994577 + outSlope: -0.12994577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13697012 + inSlope: -0.23124127 + outSlope: -0.23124127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.11636984 + inSlope: -0.19960496 + outSlope: -0.19960496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.10940815 + inSlope: -0.39408952 + outSlope: -0.39408952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.09009721 + inSlope: -0.6155635 + outSlope: -0.6155635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.047780383 + inSlope: -0.51369065 + outSlope: -0.51369065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.03412453 + inSlope: -0.20453398 + outSlope: -0.20453398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.034144785 + inSlope: -0.014179778 + outSlope: -0.014179778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.033179212 + inSlope: 0.2172448 + outSlope: 0.2172448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.04862777 + inSlope: 0.86749506 + outSlope: 0.86749506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.091012254 + inSlope: 1.4818479 + outSlope: 1.4818479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.14741766 + inSlope: 1.2355827 + outSlope: 1.2355827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.17338443 + inSlope: 0.8134992 + outSlope: 0.8134992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.20165092 + inSlope: 0.81736237 + outSlope: 0.81736237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.22787525 + inSlope: 0.39828646 + outSlope: 0.39828646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.22820337 + inSlope: -0.14249249 + outSlope: -0.14249249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.21837576 + inSlope: -0.43481702 + outSlope: -0.43481702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.19921556 + inSlope: -0.4901703 + outSlope: -0.4901703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.18569773 + inSlope: -0.4901573 + outSlope: -0.4901573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.1665384 + inSlope: -0.64528394 + outSlope: -0.64528394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14267881 + inSlope: -0.4435243 + outSlope: -0.4435243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.13697013 + inSlope: -0.17126024 + outSlope: -0.17126024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6135343 + inSlope: -0.043104883 + outSlope: -0.043104883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.61209744 + inSlope: -0.8979579 + outSlope: -0.8979579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5536704 + inSlope: -1.8434417 + outSlope: -1.8434417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.4892013 + inSlope: -1.975517 + outSlope: -1.975517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.42196926 + inSlope: -2.3621197 + outSlope: -2.3621197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.23473082 + inSlope: -2.6604414 + outSlope: -2.6604414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.15436387 + inSlope: -2.0370789 + outSlope: -2.0370789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.09892558 + inSlope: -1.0430136 + outSlope: -1.0430136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.084829636 + inSlope: -0.47742563 + outSlope: -0.47742563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.06709721 + inSlope: 0.045130074 + outSlope: 0.045130074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.08783831 + inSlope: 2.0474467 + outSlope: 2.0474467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.20359375 + inSlope: 4.261939 + outSlope: 4.261939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.37196767 + inSlope: 3.6887293 + outSlope: 3.6887293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.44950902 + inSlope: 2.2190247 + outSlope: 2.2190247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5199026 + inSlope: 2.4970756 + outSlope: 2.4970756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.61598074 + inSlope: 2.2531414 + outSlope: 2.2531414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.69398946 + inSlope: 0.44459873 + outSlope: 0.44459873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.69975203 + inSlope: -0.33296454 + outSlope: -0.33296454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.67179185 + inSlope: -0.6915237 + outSlope: -0.6915237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.65365046 + inSlope: -0.8738739 + outSlope: -0.8738739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.6135336 + inSlope: -0.60174346 + outSlope: -0.60174346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6135343 + inSlope: 0.000019669516 + outSlope: 0.000019669516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5558139 + inSlope: 0.04321217 + outSlope: 0.04321217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.5543735 + inSlope: -0.42809305 + outSlope: -0.42809305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.6202857 + inSlope: -1.0084667 + outSlope: -1.0084667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.65158457 + inSlope: -1.5410731 + outSlope: -1.5410731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.7230239 + inSlope: -1.4817952 + outSlope: -1.4817952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.7503709 + inSlope: -0.6774338 + outSlope: -0.6774338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.77534705 + inSlope: -0.015200974 + outSlope: -0.015200974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.73959243 + inSlope: 1.3681641 + outSlope: 1.3681641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.6766741 + inSlope: 1.6067836 + outSlope: 1.6067836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.578351 + inSlope: 2.0556738 + outSlope: 2.0556738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.4954286 + inSlope: 1.9125378 + outSlope: 1.9125378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.44820246 + inSlope: -0.65252364 + outSlope: -0.65252364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.51560366 + inSlope: -1.140724 + outSlope: -1.140724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.55581295 + inSlope: -0.6031543 + outSlope: -0.6031543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5558139 + inSlope: -0.000028610206 + outSlope: -0.000028610206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.42288408 + inSlope: 0.103457265 + outSlope: 0.103457265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.42633265 + inSlope: 0.32977536 + outSlope: 0.32977536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.4448691 + inSlope: 0.29631436 + outSlope: 0.29631436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.44608694 + inSlope: 0.015418228 + outSlope: 0.015418228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.44589698 + inSlope: -0.16898723 + outSlope: -0.16898723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.43482113 + inSlope: -0.036993086 + outSlope: -0.036993086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.44343078 + inSlope: -0.041856825 + outSlope: -0.041856825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.41888726 + inSlope: -0.23263203 + outSlope: -0.23263203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.41652188 + inSlope: -0.044307414 + outSlope: -0.044307414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.41593343 + inSlope: 0.25052327 + outSlope: 0.25052327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.45443645 + inSlope: 0.24772587 + outSlope: 0.24772587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.4497385 + inSlope: -0.16721652 + outSlope: -0.16721652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.44328868 + inSlope: -0.14792746 + outSlope: -0.14792746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.43987668 + inSlope: -0.4586168 + outSlope: -0.4586168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.38155746 + inSlope: -0.82124317 + outSlope: -0.82124317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.35796466 + inSlope: -0.60390973 + outSlope: -0.60390973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.34129682 + inSlope: 0.1941635 + outSlope: 0.1941635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.37090886 + inSlope: 0.6364183 + outSlope: 0.6364183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.3837247 + inSlope: 0.77963585 + outSlope: 0.77963585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.42288455 + inSlope: 0.5873914 + outSlope: 0.5873914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.42288408 + inSlope: -0.000014305103 + outSlope: -0.000014305103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.36853227 + inSlope: -0.017545223 + outSlope: -0.017545223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3691171 + inSlope: -0.3598125 + outSlope: -0.3598125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.42063612 + inSlope: -0.79614043 + outSlope: -0.79614043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.4455958 + inSlope: -0.021180958 + outSlope: -0.021180958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.42204818 + inSlope: 0.22845589 + outSlope: 0.22845589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.44655544 + inSlope: -0.44122297 + outSlope: -0.44122297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.46363193 + inSlope: 0.2045031 + outSlope: 0.2045031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.44887367 + inSlope: 0.060320202 + outSlope: 0.060320202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.4392932 + inSlope: 0.32607043 + outSlope: 0.32607043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.39956203 + inSlope: 0.85268736 + outSlope: 0.85268736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.36853427 + inSlope: 0.46544686 + outSlope: 0.46544686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.36853227 + inSlope: 0.000059902617 + outSlope: 0.000059902617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1446634 + inSlope: 3.1534622 + outSlope: 3.1534622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.039547976 + inSlope: 3.3851094 + outSlope: 3.3851094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.08101058 + inSlope: 2.6496284 + outSlope: 2.6496284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.13709393 + inSlope: 1.6975145 + outSlope: 1.6975145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.19417822 + inSlope: 2.2143774 + outSlope: 2.2143774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.28471908 + inSlope: 2.2815313 + outSlope: 2.2815313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.3729561 + inSlope: 0.05831614 + outSlope: 0.05831614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.35016808 + inSlope: -0.7864944 + outSlope: -0.7864944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.32052314 + inSlope: -1.3081751 + outSlope: -1.3081751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2629564 + inSlope: -2.257104 + outSlope: -2.257104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.17004956 + inSlope: -2.4668822 + outSlope: -2.4668822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.09849755 + inSlope: -1.8776565 + outSlope: -1.8776565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.04487241 + inSlope: -2.210935 + outSlope: -2.210935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.048898116 + inSlope: -2.4502873 + outSlope: -2.4502873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.11848001 + inSlope: -2.1962078 + outSlope: -2.1962078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.19531196 + inSlope: -2.4444122 + outSlope: -2.4444122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.28144097 + inSlope: -1.9463887 + outSlope: -1.9463887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.32507125 + inSlope: -0.5775469 + outSlope: -0.5775469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.31994405 + inSlope: 0.6311162 + outSlope: 0.6311162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.28299686 + inSlope: 1.0250471 + outSlope: 1.0250471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2516076 + inSlope: 1.9978092 + outSlope: 1.9978092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.14980966 + inSlope: 1.6041644 + outSlope: 1.6041644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.1446634 + inSlope: 0.15438782 + outSlope: 0.15438782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7113805 + inSlope: -0.80057496 + outSlope: -0.80057496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.7380663 + inSlope: -1.3691889 + outSlope: -1.3691889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.80265975 + inSlope: -1.5628095 + outSlope: -1.5628095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.8740429 + inSlope: -1.0272977 + outSlope: -1.0272977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.91074014 + inSlope: -0.7436791 + outSlope: -0.7436791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.93173563 + inSlope: -0.3303865 + outSlope: -0.3303865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.94818425 + inSlope: 0.42253378 + outSlope: 0.42253378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.90633273 + inSlope: -0.062435776 + outSlope: -0.062435776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.92429745 + inSlope: -0.42410737 + outSlope: -0.42410737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.92099714 + inSlope: 1.1180063 + outSlope: 1.1180063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.8677281 + inSlope: 1.5246427 + outSlope: 1.5246427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.8193543 + inSlope: 1.56474 + outSlope: 1.56474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.7634121 + inSlope: 1.1060728 + outSlope: 1.1060728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.7456161 + inSlope: 0.68900573 + outSlope: 0.68900573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.7174784 + inSlope: 0.50629973 + outSlope: 0.50629973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.71138036 + inSlope: 0.0144714 + outSlope: 0.0144714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10257207 + inSlope: -0.15985674 + outSlope: -0.15985674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.10790063 + inSlope: 0.121226236 + outSlope: 0.121226236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.09449032 + inSlope: 0.3147314 + outSlope: 0.3147314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.08691853 + inSlope: 0.33388954 + outSlope: 0.33388954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07223102 + inSlope: 0.5344522 + outSlope: 0.5344522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.05128839 + inSlope: 0.5395883 + outSlope: 0.5395883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.036258463 + inSlope: 0.41469017 + outSlope: 0.41469017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.023642372 + inSlope: 0.18798961 + outSlope: 0.18798961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.023725823 + inSlope: -0.20949669 + outSlope: -0.20949669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.037608817 + inSlope: -0.48414397 + outSlope: -0.48414397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.056002084 + inSlope: -0.28109625 + outSlope: -0.28109625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.056348566 + inSlope: -0.20155092 + outSlope: -0.20155092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.06943882 + inSlope: -0.19403145 + outSlope: -0.19403145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.06928401 + inSlope: 0.11800793 + outSlope: 0.11800793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.061571628 + inSlope: 0.18913493 + outSlope: 0.18913493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.056675017 + inSlope: 0.28400698 + outSlope: 0.28400698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.04263782 + inSlope: 0.23815945 + outSlope: 0.23815945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.048740048 + inSlope: -0.3280633 + outSlope: -0.3280633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0626686 + inSlope: -0.44819757 + outSlope: -0.44819757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.07861988 + inSlope: -0.32124084 + outSlope: -0.32124084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.084084645 + inSlope: -0.35206538 + outSlope: -0.35206538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.102090895 + inSlope: -0.2773107 + outSlope: -0.2773107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.10257201 + inSlope: -0.014433402 + outSlope: -0.014433402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2857019 + inSlope: -2.4762108 + outSlope: -2.4762108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.36824226 + inSlope: -3.070889 + outSlope: -3.070889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.49042785 + inSlope: -2.6841488 + outSlope: -2.6841488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.54718554 + inSlope: -1.6268786 + outSlope: -1.6268786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.59888643 + inSlope: -1.7482166 + outSlope: -1.7482166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.6637333 + inSlope: -1.3412904 + outSlope: -1.3412904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.69561625 + inSlope: 0.05043716 + outSlope: 0.05043716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.6556055 + inSlope: 0.9060789 + outSlope: 0.9060789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.62453806 + inSlope: 0.20248353 + outSlope: 0.20248353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.6421066 + inSlope: -0.21690762 + outSlope: -0.21690762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.63899857 + inSlope: -0.56331676 + outSlope: -0.56331676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.67966104 + inSlope: 0.4082483 + outSlope: 0.4082483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.611782 + inSlope: 0.29641563 + outSlope: 0.29641563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.65989995 + inSlope: -0.4302559 + outSlope: -0.4302559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.6404657 + inSlope: 3.3585637 + outSlope: 3.3585637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.43599552 + inSlope: 4.2737093 + outSlope: 4.2737093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.35555163 + inSlope: 2.1443307 + outSlope: 2.1443307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.29304016 + inSlope: 1.1868362 + outSlope: 1.1868362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.27642918 + inSlope: 0.58219177 + outSlope: 0.58219177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.25422737 + inSlope: -0.13984662 + outSlope: -0.13984662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.28575224 + inSlope: -0.47211975 + outSlope: -0.47211975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.285702 + inSlope: 0.0015074002 + outSlope: 0.0015074002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.95036125 + inSlope: -0.99566096 + outSlope: -0.99566096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.91717255 + inSlope: -1.5238005 + outSlope: -1.5238005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.84877455 + inSlope: -1.6835223 + outSlope: -1.6835223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.7569546 + inSlope: -2.0647297 + outSlope: -2.0647297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.6672891 + inSlope: -2.4377253 + outSlope: -2.4377253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5486238 + inSlope: -0.70772684 + outSlope: -0.70772684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5472578 + inSlope: 0.46195063 + outSlope: 0.46195063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.60934156 + inSlope: 0.013479888 + outSlope: 0.013479888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.58031917 + inSlope: -0.27930307 + outSlope: -0.27930307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.59072137 + inSlope: -0.3324582 + outSlope: -0.3324582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.5581553 + inSlope: -0.14757961 + outSlope: -0.14757961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5808827 + inSlope: 0.25145167 + outSlope: 0.25145167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.57491875 + inSlope: 1.0421392 + outSlope: 1.0421392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.65035874 + inSlope: 4.268836 + outSlope: 4.268836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.85950804 + inSlope: 3.9096117 + outSlope: 3.9096117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.91099966 + inSlope: 1.2340158 + outSlope: 1.2340158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.94899577 + inSlope: 0.24483113 + outSlope: 0.24483113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.9580978 + inSlope: 0.02025313 + outSlope: 0.02025313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9503614 + inSlope: 0.00046133957 + outSlope: 0.00046133957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06430155 + inSlope: 0.10359406 + outSlope: 0.10359406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.060848415 + inSlope: -0.28351295 + outSlope: -0.28351295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.083202414 + inSlope: -0.63566726 + outSlope: -0.63566726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.10322624 + inSlope: -0.66908336 + outSlope: -0.66908336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.12780797 + inSlope: -1.1336713 + outSlope: -1.1336713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.17880432 + inSlope: -1.4801089 + outSlope: -1.4801089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2607749 + inSlope: -0.7836647 + outSlope: -0.7836647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.27872622 + inSlope: -0.23899826 + outSlope: -0.23899826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.27670813 + inSlope: 0.06320984 + outSlope: 0.06320984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.27451223 + inSlope: -1.1412791 + outSlope: -1.1412791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.3527934 + inSlope: -0.88614726 + outSlope: -0.88614726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.3335887 + inSlope: 0.52661175 + outSlope: 0.52661175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.31768593 + inSlope: -1.2061081 + outSlope: -1.2061081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.4139959 + inSlope: -0.6750796 + outSlope: -0.6750796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.36269128 + inSlope: 1.397965 + outSlope: 1.397965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.32079825 + inSlope: 1.8666029 + outSlope: 1.8666029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.23825099 + inSlope: 1.999663 + outSlope: 1.999663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.18748736 + inSlope: 1.4228871 + outSlope: 1.4228871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.14339186 + inSlope: 1.0039037 + outSlope: 1.0039037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.12056043 + inSlope: 0.677184 + outSlope: 0.677184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.09824627 + inSlope: 0.84378654 + outSlope: 0.84378654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.06430801 + inSlope: 0.5091715 + outSlope: 0.5091715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.064301535 + inSlope: 0.00019423648 + outSlope: 0.00019423648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10513574 + inSlope: 1.0341122 + outSlope: 1.0341122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.13960615 + inSlope: 1.1121023 + outSlope: 1.1121023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1792759 + inSlope: 0.9802983 + outSlope: 0.9802983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.20495938 + inSlope: 0.7320454 + outSlope: 0.7320454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.22807893 + inSlope: 1.2265177 + outSlope: 1.2265177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.3486876 + inSlope: 1.4526582 + outSlope: 1.4526582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.38357112 + inSlope: 0.6498702 + outSlope: 0.6498702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.39201227 + inSlope: 0.20666915 + outSlope: 0.20666915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.39734906 + inSlope: 0.18134417 + outSlope: 0.18134417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.40410188 + inSlope: -0.6259288 + outSlope: -0.6259288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.35562047 + inSlope: -0.62316847 + outSlope: -0.62316847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.36255732 + inSlope: -0.018301256 + outSlope: -0.018301256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.3544004 + inSlope: -0.3096378 + outSlope: -0.3096378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.3419148 + inSlope: -0.5147024 + outSlope: -0.5147024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.32008693 + inSlope: -1.3361732 + outSlope: -1.3361732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.25283656 + inSlope: -3.0018888 + outSlope: -3.0018888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.119960845 + inSlope: -2.4086914 + outSlope: -2.4086914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.09225705 + inSlope: -0.5784848 + outSlope: -0.5784848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.08139521 + inSlope: -0.0042347014 + outSlope: -0.0042347014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.09197472 + inSlope: 0.100879416 + outSlope: 0.100879416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.08812049 + inSlope: 0.19739926 + outSlope: 0.19739926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10513465 + inSlope: 0.25522742 + outSlope: 0.25522742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.105135635 + inSlope: 0.000029504274 + outSlope: 0.000029504274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16439693 + inSlope: 0.0935465 + outSlope: 0.0935465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.16127871 + inSlope: 0.17025007 + outSlope: 0.17025007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.15304692 + inSlope: 0.21253309 + outSlope: 0.21253309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.14710984 + inSlope: 0.17616391 + outSlope: 0.17616391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.13937502 + inSlope: 0.009694854 + outSlope: 0.009694854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.14319423 + inSlope: -0.08715705 + outSlope: -0.08715705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1464668 + inSlope: -0.1523819 + outSlope: -0.1523819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.15335302 + inSlope: -0.17457852 + outSlope: -0.17457852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.15810537 + inSlope: -0.27169102 + outSlope: -0.27169102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.17146575 + inSlope: -0.23941262 + outSlope: -0.23941262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.17406622 + inSlope: -0.017301554 + outSlope: -0.017301554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.165393 + inSlope: 0.23798537 + outSlope: 0.23798537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.15675351 + inSlope: 0.06856749 + outSlope: 0.06856749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.16629702 + inSlope: -0.10055395 + outSlope: -0.10055395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.16783167 + inSlope: -0.04403833 + outSlope: -0.04403833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.17046133 + inSlope: -0.036226626 + outSlope: -0.036226626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.16954897 + inSlope: 0.08774707 + outSlope: 0.08774707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.16439697 + inSlope: 0.15455993 + outSlope: 0.15455993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08895718 + inSlope: 0.13010614 + outSlope: 0.13010614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.093294054 + inSlope: -0.015883029 + outSlope: -0.015883029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.087898314 + inSlope: -0.099519 + outSlope: -0.099519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.086659454 + inSlope: -0.042779334 + outSlope: -0.042779334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08504636 + inSlope: 0.18801895 + outSlope: 0.18801895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.09919405 + inSlope: 0.3108129 + outSlope: 0.3108129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.10447242 + inSlope: -0.12117651 + outSlope: -0.12117651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.09768879 + inSlope: -0.10713168 + outSlope: -0.10713168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.09733031 + inSlope: -0.018954279 + outSlope: -0.018954279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09642517 + inSlope: -0.0037787855 + outSlope: -0.0037787855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.09707839 + inSlope: -0.24385808 + outSlope: -0.24385808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.08016795 + inSlope: -0.45060867 + outSlope: -0.45060867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0670378 + inSlope: -0.32865316 + outSlope: -0.32865316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.05825774 + inSlope: -0.2744065 + outSlope: -0.2744065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.04874404 + inSlope: -0.1269846 + outSlope: -0.1269846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.04979211 + inSlope: 0.18721585 + outSlope: 0.18721585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.06122511 + inSlope: 0.33879542 + outSlope: 0.33879542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.07237847 + inSlope: 0.2666357 + outSlope: 0.2666357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.082370415 + inSlope: 0.07801163 + outSlope: 0.07801163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.08420159 + inSlope: 0.09167034 + outSlope: 0.09167034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08848177 + inSlope: 0.07133396 + outSlope: 0.07133396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.08895718 + inSlope: 0.014262411 + outSlope: 0.014262411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.028579477 + inSlope: -0.17990352 + outSlope: -0.17990352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.022582693 + inSlope: 0.13486782 + outSlope: 0.13486782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.037570667 + inSlope: 0.4226693 + outSlope: 0.4226693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.06390507 + inSlope: 0.43253762 + outSlope: 0.43253762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.07959649 + inSlope: 0.41524747 + outSlope: 0.41524747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.09927173 + inSlope: 0.14387202 + outSlope: 0.14387202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.100220196 + inSlope: -0.03405009 + outSlope: -0.03405009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0989097 + inSlope: -0.15813904 + outSlope: -0.15813904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.089677595 + inSlope: -0.3541453 + outSlope: -0.3541453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0753 + inSlope: -0.33279905 + outSlope: -0.33279905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.06749098 + inSlope: -0.11380636 + outSlope: -0.11380636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.06771291 + inSlope: 0.010348528 + outSlope: 0.010348528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.06818088 + inSlope: -0.048368335 + outSlope: -0.048368335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.06448835 + inSlope: -0.17020017 + outSlope: -0.17020017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.049508486 + inSlope: -0.15480582 + outSlope: -0.15480582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.04507305 + inSlope: -0.07742099 + outSlope: -0.07742099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.04135241 + inSlope: -0.24018799 + outSlope: -0.24018799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.029060528 + inSlope: -0.19159386 + outSlope: -0.19159386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.028579498 + inSlope: -0.014430887 + outSlope: -0.014430887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7712607 + inSlope: 0.1218599 + outSlope: 0.1218599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7753227 + inSlope: -0.14517187 + outSlope: -0.14517187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.76158255 + inSlope: -0.303314 + outSlope: -0.303314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.7384796 + inSlope: -0.1689157 + outSlope: -0.1689157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.73256576 + inSlope: 0.10786594 + outSlope: 0.10786594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.7386165 + inSlope: -0.15984535 + outSlope: -0.15984535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.7211766 + inSlope: 0.16620204 + outSlope: 0.16620204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.75495857 + inSlope: 0.20076962 + outSlope: 0.20076962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.7712607 + inSlope: 0.000048279722 + outSlope: 0.000048279722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22756836 + inSlope: 0.5356912 + outSlope: 0.5356912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.25566685 + inSlope: 0.22068968 + outSlope: 0.22068968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.26013738 + inSlope: 0.13081715 + outSlope: 0.13081715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.264388 + inSlope: 0.41439685 + outSlope: 0.41439685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.28776383 + inSlope: 0.55982614 + outSlope: 0.55982614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.30414575 + inSlope: -0.15293466 + outSlope: -0.15293466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.2915141 + inSlope: -0.31237724 + outSlope: -0.31237724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.27504623 + inSlope: -0.19411908 + outSlope: -0.19411908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.27037933 + inSlope: -0.26938215 + outSlope: -0.26938215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.2570874 + inSlope: -0.25128484 + outSlope: -0.25128484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.253627 + inSlope: -0.18946008 + outSlope: -0.18946008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.22811007 + inSlope: -0.16687149 + outSlope: -0.16687149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.21608281 + inSlope: -0.2747087 + outSlope: -0.2747087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.20526946 + inSlope: -0.17792958 + outSlope: -0.17792958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.20422083 + inSlope: -0.03165543 + outSlope: -0.03165543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.2031591 + inSlope: 0.35021928 + outSlope: 0.35021928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.22756876 + inSlope: 0.36613932 + outSlope: 0.36613932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.22756836 + inSlope: -0.000012069931 + outSlope: -0.000012069931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.51578194 + inSlope: -0.384981 + outSlope: -0.384981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.50294924 + inSlope: 0.045731664 + outSlope: 0.045731664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5188307 + inSlope: 0.3637996 + outSlope: 0.3637996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5490007 + inSlope: 0.2617273 + outSlope: 0.2617273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.5692731 + inSlope: 0.08048768 + outSlope: 0.08048768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5917588 + inSlope: -0.06764258 + outSlope: -0.06764258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.5542373 + inSlope: -0.35101175 + outSlope: -0.35101175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5425125 + inSlope: -0.57680124 + outSlope: -0.57680124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.5157839 + inSlope: -0.40095845 + outSlope: -0.40095845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.51578194 + inSlope: -0.000059008547 + outSlope: -0.000059008547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.29553172 + inSlope: 0.084410004 + outSlope: 0.084410004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.29018623 + inSlope: 0.054311156 + outSlope: 0.054311156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.28868297 + inSlope: 0.354808 + outSlope: 0.354808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.26653236 + inSlope: 0.585253 + outSlope: 0.585253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2464586 + inSlope: -0.1038243 + outSlope: -0.1038243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.2565877 + inSlope: -0.13809064 + outSlope: -0.13809064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.25566465 + inSlope: 0.018191637 + outSlope: 0.018191637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.25537494 + inSlope: 0.30873704 + outSlope: 0.30873704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.23508218 + inSlope: 0.16412787 + outSlope: 0.16412787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.24443309 + inSlope: -0.28354156 + outSlope: -0.28354156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.26703948 + inSlope: -0.39248964 + outSlope: -0.39248964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.28015092 + inSlope: -0.17540327 + outSlope: -0.17540327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.26912934 + inSlope: -0.14195845 + outSlope: -0.14195845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.27932414 + inSlope: -0.23615369 + outSlope: -0.23615369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2908915 + inSlope: -0.15988782 + outSlope: -0.15988782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.29553172 + inSlope: 0.000011622896 + outSlope: 0.000011622896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20512168 + inSlope: -0.16318558 + outSlope: -0.16318558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.19968216 + inSlope: 0.1134742 + outSlope: 0.1134742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.21268663 + inSlope: 0.37183505 + outSlope: 0.37183505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.25334048 + inSlope: -0.16017036 + outSlope: -0.16017036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.24462739 + inSlope: -0.24162951 + outSlope: -0.24162951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.23723185 + inSlope: -0.4353838 + outSlope: -0.4353838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.2156018 + inSlope: -0.45363545 + outSlope: -0.45363545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.20698948 + inSlope: -0.216656 + outSlope: -0.216656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.20115806 + inSlope: -0.0076494366 + outSlope: -0.0076494366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.2126462 + inSlope: 0.12806503 + outSlope: 0.12806503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.21501718 + inSlope: -0.02778498 + outSlope: -0.02778498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.21079387 + inSlope: -0.09348703 + outSlope: -0.09348703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.21012548 + inSlope: 0.05957787 + outSlope: 0.05957787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.21323402 + inSlope: -0.14722443 + outSlope: -0.14722443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.20031053 + inSlope: -0.121687815 + outSlope: -0.121687815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.20512152 + inSlope: 0.14432955 + outSlope: 0.14432955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22142114 + inSlope: -0.6604188 + outSlope: -0.6604188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.19940718 + inSlope: -0.674183 + outSlope: -0.674183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1764756 + inSlope: -0.3841008 + outSlope: -0.3841008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.17380045 + inSlope: -0.082297325 + outSlope: -0.082297325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.17098911 + inSlope: 0.17435165 + outSlope: 0.17435165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.1854239 + inSlope: 0.40839958 + outSlope: 0.40839958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.21199518 + inSlope: 0.4584564 + outSlope: 0.4584564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.22877951 + inSlope: 0.3698943 + outSlope: 0.3698943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.2366548 + inSlope: 0.21607453 + outSlope: 0.21607453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.24318448 + inSlope: -0.047637828 + outSlope: -0.047637828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.21349713 + inSlope: -0.587653 + outSlope: -0.587653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.19430207 + inSlope: -0.3242297 + outSlope: -0.3242297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.19188182 + inSlope: -0.121497005 + outSlope: -0.121497005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.18620227 + inSlope: -0.014477365 + outSlope: -0.014477365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.19738455 + inSlope: 0.18332765 + outSlope: 0.18332765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.21817471 + inSlope: 0.21562682 + outSlope: 0.21562682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.22524577 + inSlope: 0.059990153 + outSlope: 0.059990153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.22217406 + inSlope: -0.057369806 + outSlope: -0.057369806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.22142112 + inSlope: -0.022588205 + outSlope: -0.022588205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16247948 + inSlope: -0.0023835895 + outSlope: -0.0023835895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.16240002 + inSlope: 0.20261092 + outSlope: 0.20261092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.17598687 + inSlope: 0.31190133 + outSlope: 0.31190133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.18319345 + inSlope: 0.22485718 + outSlope: 0.22485718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.19097735 + inSlope: 0.12916246 + outSlope: 0.12916246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.17675814 + inSlope: -0.30460867 + outSlope: -0.30460867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.16617265 + inSlope: -0.2324293 + outSlope: -0.2324293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15493132 + inSlope: -0.25636756 + outSlope: -0.25636756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.14417168 + inSlope: 0.016233906 + outSlope: 0.016233906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.1560136 + inSlope: 0.504451 + outSlope: 0.504451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.17780176 + inSlope: 0.48865604 + outSlope: 0.48865604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.19704917 + inSlope: 0.2789249 + outSlope: 0.2789249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.20718566 + inSlope: 0.19536254 + outSlope: 0.19536254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.19124895 + inSlope: -0.28780976 + outSlope: -0.28780976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.18135628 + inSlope: -0.40322176 + outSlope: -0.40322176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.16436751 + inSlope: -0.2831521 + outSlope: -0.2831521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.16247949 + inSlope: -0.056640606 + outSlope: -0.056640606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2857995 + inSlope: 0.42653915 + outSlope: 0.42653915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.30001748 + inSlope: 0.73577106 + outSlope: 0.73577106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.3348509 + inSlope: 0.7511003 + outSlope: 0.7511003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.35009083 + inSlope: 0.45997423 + outSlope: 0.45997423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.3699894 + inSlope: -0.075903766 + outSlope: -0.075903766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.33836108 + inSlope: -0.74565685 + outSlope: -0.74565685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.31074515 + inSlope: -0.6472077 + outSlope: -0.6472077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.27926052 + inSlope: -0.5617807 + outSlope: -0.5617807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.25776187 + inSlope: -0.36213756 + outSlope: -0.36213756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.26031685 + inSlope: 0.1363671 + outSlope: 0.1363671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.2706601 + inSlope: -0.00006525125 + outSlope: -0.00006525125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.2712493 + inSlope: 0.123309106 + outSlope: 0.123309106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.27888072 + inSlope: 0.17596897 + outSlope: 0.17596897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.28720543 + inSlope: 0.04347496 + outSlope: 0.04347496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.2857995 + inSlope: -0.0023817995 + outSlope: -0.0023817995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.55923295 + inSlope: 0.20852743 + outSlope: 0.20852743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.56618387 + inSlope: -0.1987445 + outSlope: -0.1987445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5459833 + inSlope: -0.38979107 + outSlope: -0.38979107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.5401978 + inSlope: -0.16523659 + outSlope: -0.16523659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.53496754 + inSlope: 0.21276626 + outSlope: 0.21276626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.5543822 + inSlope: 0.5150413 + outSlope: 0.5150413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.6100572 + inSlope: 0.4807914 + outSlope: 0.4807914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6253591 + inSlope: 0.51604635 + outSlope: 0.51604635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.64446026 + inSlope: 0.13036357 + outSlope: 0.13036357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.6176174 + inSlope: -0.4400951 + outSlope: -0.4400951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5871824 + inSlope: -0.51958144 + outSlope: -0.51958144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5700716 + inSlope: -0.30621237 + outSlope: -0.30621237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.55940026 + inSlope: -0.21299696 + outSlope: -0.21299696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.54382426 + inSlope: 0.16603535 + outSlope: 0.16603535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.56158483 + inSlope: 0.23113072 + outSlope: 0.23113072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.55923295 + inSlope: -0.07055634 + outSlope: -0.07055634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.74482924 + inSlope: -0.4262888 + outSlope: -0.4262888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.69962406 + inSlope: -0.3651667 + outSlope: -0.3651667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.6807662 + inSlope: -0.018804047 + outSlope: -0.018804047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.68910146 + inSlope: -0.02667189 + outSlope: -0.02667189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.7288624 + inSlope: 0.31000948 + outSlope: 0.31000948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.75173575 + inSlope: 0.10081443 + outSlope: 0.10081443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.7543288 + inSlope: -0.12686421 + outSlope: -0.12686421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.74327815 + inSlope: -0.14249343 + outSlope: -0.14249343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.74482924 + inSlope: 0.046532713 + outSlope: 0.046532713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22540355 + inSlope: -0.3131063 + outSlope: -0.3131063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.23584042 + inSlope: -0.69080424 + outSlope: -0.69080424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.27145717 + inSlope: -0.76103497 + outSlope: -0.76103497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.2865761 + inSlope: -0.44645947 + outSlope: -0.44645947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.30122113 + inSlope: -0.10601879 + outSlope: -0.10601879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.293644 + inSlope: 0.20930392 + outSlope: 0.20930392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.28726754 + inSlope: 0.1440641 + outSlope: 0.1440641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.27381554 + inSlope: 0.412328 + outSlope: 0.412328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.2565512 + inSlope: 0.5278847 + outSlope: 0.5278847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.23862323 + inSlope: 0.73645955 + outSlope: 0.73645955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.2074539 + inSlope: 0.33132762 + outSlope: 0.33132762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.2389581 + inSlope: -0.5110954 + outSlope: -0.5110954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.25060776 + inSlope: -0.36579472 + outSlope: -0.36579472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.2649525 + inSlope: 0.2229772 + outSlope: 0.2229772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.2308777 + inSlope: 0.36037326 + outSlope: 0.36037326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.22968814 + inSlope: 0.04361215 + outSlope: 0.04361215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.22457403 + inSlope: 0.06426894 + outSlope: 0.06426894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.22540355 + inSlope: -0.024885515 + outSlope: -0.024885515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.18916494 + inSlope: -0.56348425 + outSlope: -0.56348425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.21698323 + inSlope: -0.01416298 + outSlope: -0.01416298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.20889194 + inSlope: 0.24472138 + outSlope: 0.24472138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.20066847 + inSlope: 0.34898 + outSlope: 0.34898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1735433 + inSlope: 0.20527698 + outSlope: 0.20527698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.17194147 + inSlope: -0.09204247 + outSlope: -0.09204247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.17967947 + inSlope: -0.20128438 + outSlope: -0.20128438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.19101408 + inSlope: -0.2530926 + outSlope: -0.2530926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.21710387 + inSlope: -0.3578586 + outSlope: -0.3578586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.22609052 + inSlope: 0.019689873 + outSlope: 0.019689873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.21579121 + inSlope: 0.31488883 + outSlope: 0.31488883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.20509794 + inSlope: 0.6505626 + outSlope: 0.6505626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.17242035 + inSlope: 0.80248404 + outSlope: 0.80248404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.15159896 + inSlope: 0.35793746 + outSlope: 0.35793746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.15654756 + inSlope: -0.23680644 + outSlope: -0.23680644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.16434494 + inSlope: -0.23347513 + outSlope: -0.23347513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.17211257 + inSlope: -0.37230015 + outSlope: -0.37230015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.18916494 + inSlope: -0.25578576 + outSlope: -0.25578576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.18916494 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04483667 + inSlope: 0.3102749 + outSlope: 0.3102749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.034494173 + inSlope: 0.90961635 + outSlope: 0.90961635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.015804421 + inSlope: 0.8938835 + outSlope: 0.8938835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.025098065 + inSlope: 0.27856082 + outSlope: 0.27856082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.034375142 + inSlope: 0.13012382 + outSlope: 0.13012382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.033772986 + inSlope: -0.4622139 + outSlope: -0.4622139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00356087 + inSlope: -1.0155675 + outSlope: -1.0155675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.03393152 + inSlope: -1.2824881 + outSlope: -1.2824881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.081938334 + inSlope: -0.7541301 + outSlope: -0.7541301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.08420686 + inSlope: -0.068079725 + outSlope: -0.068079725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.08647698 + inSlope: 1.5188757 + outSlope: 1.5188757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.017051522 + inSlope: 2.1716785 + outSlope: 2.1716785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.058301628 + inSlope: 0.093871534 + outSlope: 0.093871534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.023309663 + inSlope: -0.9646331 + outSlope: -0.9646331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0060072397 + inSlope: -0.8789755 + outSlope: -0.8789755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.035288677 + inSlope: -0.9361331 + outSlope: -0.9361331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.06841611 + inSlope: -0.48350632 + outSlope: -0.48350632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.06752246 + inSlope: 0.48339856 + outSlope: 0.48339856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.03618957 + inSlope: 1.0172819 + outSlope: 1.0172819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00029633506 + inSlope: 0.57347363 + outSlope: 0.57347363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.002042034 + inSlope: 0.05237478 + outSlope: 0.05237478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.003787987 + inSlope: -0.70318127 + outSlope: -0.70318127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.04483667 + inSlope: -0.72937053 + outSlope: -0.72937053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.04483667 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.013017558 + inSlope: 0.8255196 + outSlope: 0.8255196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04053488 + inSlope: 0.7678454 + outSlope: 0.7678454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.064207256 + inSlope: 0.51393193 + outSlope: 0.51393193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.07479701 + inSlope: 0.31694892 + outSlope: 0.31694892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.085337184 + inSlope: 0.40539324 + outSlope: 0.40539324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.101823226 + inSlope: 0.37923995 + outSlope: 0.37923995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.11108922 + inSlope: -0.10664497 + outSlope: -0.10664497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.103510186 + inSlope: -0.24907911 + outSlope: -0.24907911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.09448395 + inSlope: -0.27089566 + outSlope: -0.27089566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08545048 + inSlope: -0.53772753 + outSlope: -0.53772753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.05863545 + inSlope: -0.81920636 + outSlope: -0.81920636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.030836701 + inSlope: -0.8005345 + outSlope: -0.8005345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0052664652 + inSlope: -0.5563582 + outSlope: -0.5563582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0062538423 + inSlope: -0.34245238 + outSlope: -0.34245238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.017563682 + inSlope: -0.47575048 + outSlope: -0.47575048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.037970547 + inSlope: -0.4808429 + outSlope: -0.4808429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.049619902 + inSlope: -0.16700512 + outSlope: -0.16700512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.049104232 + inSlope: 0.16966271 + outSlope: 0.16966271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.038309045 + inSlope: 0.32571262 + outSlope: 0.32571262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.02739006 + inSlope: 0.3277012 + outSlope: 0.3277012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0164623 + inSlope: 0.6061145 + outSlope: 0.6061145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.013017558 + inSlope: 0.44219828 + outSlope: 0.44219828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.013017558 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14620334 + inSlope: 0.5560912 + outSlope: 0.5560912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.16473971 + inSlope: 0.5193802 + outSlope: 0.5193802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.18082869 + inSlope: 0.289504 + outSlope: 0.289504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.18740554 + inSlope: 0.35273176 + outSlope: 0.35273176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.22901209 + inSlope: 0.45190495 + outSlope: 0.45190495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.23768243 + inSlope: -0.0038968027 + outSlope: -0.0038968027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.2287523 + inSlope: -0.32676977 + outSlope: -0.32676977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.21589778 + inSlope: -0.3807682 + outSlope: -0.3807682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.20336775 + inSlope: -0.58600104 + outSlope: -0.58600104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.17683105 + inSlope: -0.70286524 + outSlope: -0.70286524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.15651006 + inSlope: -0.7241224 + outSlope: -0.7241224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.1285562 + inSlope: -0.61272275 + outSlope: -0.61272275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.115661874 + inSlope: -0.38384992 + outSlope: -0.38384992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.10296623 + inSlope: -0.2462038 + outSlope: -0.2462038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0992483 + inSlope: 0.054509595 + outSlope: 0.054509595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.1066002 + inSlope: 0.18179786 + outSlope: 0.18179786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.11136816 + inSlope: 0.16213092 + outSlope: 0.16213092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.12360591 + inSlope: 0.18362874 + outSlope: 0.18362874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.12965085 + inSlope: 0.33896166 + outSlope: 0.33896166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14620334 + inSlope: 0.24828763 + outSlope: 0.24828763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.14620334 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.20534405 + inSlope: 0.19805922 + outSlope: 0.19805922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.19874208 + inSlope: 0.46252656 + outSlope: 0.46252656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.17450894 + inSlope: 0.5724642 + outSlope: 0.5724642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.14611506 + inSlope: 0.5693027 + outSlope: 0.5693027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.12262428 + inSlope: 0.4394605 + outSlope: 0.4394605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1168177 + inSlope: -0.34137487 + outSlope: -0.34137487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.1453826 + inSlope: -0.8104243 + outSlope: -0.8104243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.17084599 + inSlope: -0.26816392 + outSlope: -0.26816392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.16326019 + inSlope: 0.23191632 + outSlope: 0.23191632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.1553849 + inSlope: 0.075966865 + outSlope: 0.075966865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.15819573 + inSlope: -0.540416 + outSlope: -0.540416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.19141266 + inSlope: -1.4664527 + outSlope: -1.4664527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.25595927 + inSlope: -1.2462375 + outSlope: -1.2462375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.27449515 + inSlope: -0.56678504 + outSlope: -0.56678504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.29374492 + inSlope: 0.060464025 + outSlope: 0.060464025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.27046418 + inSlope: 1.3731968 + outSlope: 1.3731968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.20219839 + inSlope: 2.0302825 + outSlope: 2.0302825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.13511202 + inSlope: 1.5384378 + outSlope: 1.5384378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0996359 + inSlope: 0.20926663 + outSlope: 0.20926663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.12116086 + inSlope: -0.65301085 + outSlope: -0.65301085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.14316995 + inSlope: -1.2627485 + outSlope: -1.2627485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.20534405 + inSlope: -0.93261236 + outSlope: -0.93261236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.20534405 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.083165 + inSlope: 3.0782084 + outSlope: 3.0782084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.9805581 + inSlope: 2.9910884 + outSlope: 2.9910884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.88375914 + inSlope: 2.1337578 + outSlope: 2.1337578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.7930134 + inSlope: 1.6831131 + outSlope: 1.6831131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.7261 + inSlope: 1.4859947 + outSlope: 1.4859947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.6968967 + inSlope: -0.58182037 + outSlope: -0.58182037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.7327351 + inSlope: -1.0832496 + outSlope: -1.0832496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.7691133 + inSlope: -1.0872031 + outSlope: -1.0872031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.8052153 + inSlope: -1.9761051 + outSlope: -1.9761051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -1.0071076 + inSlope: -3.13693 + outSlope: -3.13693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -1.1099824 + inSlope: -2.232029 + outSlope: -2.232029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -1.2014425 + inSlope: -1.8753824 + outSlope: -1.8753824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -1.280935 + inSlope: -1.8734553 + outSlope: -1.8734553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -1.3218812 + inSlope: 0.74583954 + outSlope: 0.74583954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -1.2331605 + inSlope: 1.2959933 + outSlope: 1.2959933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -1.1902174 + inSlope: 2.2499328 + outSlope: 2.2499328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -1.083165 + inSlope: 1.6057864 + outSlope: 1.6057864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.083165 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000005976415 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0000005976415 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0000005976415 + inSlope: 0.000010245283 + outSlope: 0.000010245283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00000008537736 + inSlope: 4.5474735e-12 + outSlope: 4.5474735e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0000005976415 + inSlope: 4.5474735e-12 + outSlope: 4.5474735e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.00000008537736 + inSlope: 0.000010245283 + outSlope: 0.000010245283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000008537736 + inSlope: -0.000010245283 + outSlope: -0.000010245283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0000005976415 + inSlope: -0.000010245283 + outSlope: -0.000010245283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000005976415 + inSlope: 0.000010245283 + outSlope: 0.000010245283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00000008537736 + inSlope: 1.0004442e-11 + outSlope: 1.0004442e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0000005976415 + inSlope: 1.0004442e-11 + outSlope: 1.0004442e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.00000008537736 + inSlope: 0.000010245283 + outSlope: 0.000010245283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.00000008537736 + inSlope: -0.000010245292 + outSlope: -0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0000005976415 + inSlope: -0.000010245292 + outSlope: -0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0000005976415 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0000005976415 + inSlope: 0.000010245292 + outSlope: 0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00000008537736 + inSlope: 0.000010245292 + outSlope: 0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00000008537736 + inSlope: -0.000010245292 + outSlope: -0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000005976415 + inSlope: -1.9099389e-11 + outSlope: -1.9099389e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00000008537736 + inSlope: -1.9099389e-11 + outSlope: -1.9099389e-11 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0000005976415 + inSlope: -0.000010245292 + outSlope: -0.000010245292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0000005976415 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000017075472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.00000017075472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00000017075472 + inSlope: 0.0000012806604 + outSlope: 0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00000008537736 + inSlope: 5.684342e-13 + outSlope: 5.684342e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00000017075472 + inSlope: 5.684342e-13 + outSlope: 5.684342e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.00000008537736 + inSlope: 0.0000012806604 + outSlope: 0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00000008537736 + inSlope: -0.0000012806604 + outSlope: -0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.00000017075472 + inSlope: -0.0000012806604 + outSlope: -0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00000017075472 + inSlope: 0.0000012806604 + outSlope: 0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.00000008537736 + inSlope: 1.1368684e-12 + outSlope: 1.1368684e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.00000017075472 + inSlope: 1.1368684e-12 + outSlope: 1.1368684e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.00000008537736 + inSlope: 0.0000012806604 + outSlope: 0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.00000008537736 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.00000017075472 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.00000017075472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.00000017075472 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00000008537736 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.00000008537736 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00000017075472 + inSlope: -2.3874236e-12 + outSlope: -2.3874236e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.00000008537736 + inSlope: -2.3874236e-12 + outSlope: -2.3874236e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00000017075472 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.00000017075472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0 + inSlope: 0.0000012806604 + outSlope: 0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00000008537736 + inSlope: 5.684342e-13 + outSlope: 5.684342e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0 + inSlope: 5.684342e-13 + outSlope: 5.684342e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.00000008537736 + inSlope: 0.0000012806604 + outSlope: 0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000008537736 + inSlope: -0.0000012806604 + outSlope: -0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0 + inSlope: -0.0000012806604 + outSlope: -0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0 + inSlope: 0.0000012806604 + outSlope: 0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00000008537736 + inSlope: 1.1368684e-12 + outSlope: 1.1368684e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0 + inSlope: 1.1368684e-12 + outSlope: 1.1368684e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.00000008537736 + inSlope: 0.0000012806604 + outSlope: 0.0000012806604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.00000008537736 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00000008537736 + inSlope: 0.0000012806616 + outSlope: 0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00000008537736 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0 + inSlope: -2.3874236e-12 + outSlope: -2.3874236e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00000008537736 + inSlope: -2.3874236e-12 + outSlope: -2.3874236e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0 + inSlope: -0.0000012806616 + outSlope: -0.0000012806616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000012806608 + inSlope: 0.000016648584 + outSlope: 0.000016648584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000006830189 + inSlope: 0.00000064032974 + outSlope: 0.00000064032974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000017075472 + inSlope: -0.000013446934 + outSlope: -0.000013446934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.00000021344344 + inSlope: 0.0000012806627 + outSlope: 0.0000012806627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000025613213 + inSlope: -0.000005122644 + outSlope: -0.000005122644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00000055495303 + inSlope: -6.366463e-12 + outSlope: -6.366463e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000025613207 + inSlope: 0.0000051226384 + outSlope: 0.0000051226384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.00000021344344 + inSlope: -0.000008964624 + outSlope: -0.000008964624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00000034150946 + inSlope: 0.0000070436345 + outSlope: 0.0000070436345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0000002561321 + inSlope: 0.000008964625 + outSlope: 0.000008964625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0000002561321 + inSlope: -0.000005122642 + outSlope: -0.000005122642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.00000008537738 + inSlope: 0.0000032016437 + outSlope: 0.0000032016437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.00000046957547 + inSlope: -0.000002561329 + outSlope: -0.000002561329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.00000025613213 + inSlope: -0.000010245284 + outSlope: -0.000010245284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.00000021344341 + inSlope: 0.0000057629773 + outSlope: 0.0000057629773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00000012806603 + inSlope: 0.000009604954 + outSlope: 0.000009604954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000004268868 + inSlope: -0.0000044823087 + outSlope: -0.0000044823087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.00000017075477 + inSlope: -0.0000140872635 + outSlope: -0.0000140872635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00000051226425 + inSlope: -0.0000019209974 + outSlope: -0.0000019209974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0000002988208 + inSlope: 0.000008964627 + outSlope: 0.000008964627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00000008537741 + inSlope: 0.0000032016587 + outSlope: 0.0000032016587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.000000085377366 + inSlope: 0.0000006403352 + outSlope: 0.0000006403352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000012806608 + inSlope: 0.0000032016546 + outSlope: 0.0000032016546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.00000012806608 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000038419816 + inSlope: -0.000011525946 + outSlope: -0.000011525946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.14222e-14 + inSlope: -0.000008324293 + outSlope: -0.000008324293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00000017075476 + inSlope: -0.0000019209897 + outSlope: -0.0000019209897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.00000012806608 + inSlope: 0.0000064033025 + outSlope: 0.0000064033025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00000025613207 + inSlope: 0.000010245283 + outSlope: 0.000010245283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00000055495275 + inSlope: -0.000007683957 + outSlope: -0.000007683957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00000025613207 + inSlope: -0.000010245278 + outSlope: -0.000010245278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.00000012806603 + inSlope: 0.000010245283 + outSlope: 0.000010245283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00000042688674 + inSlope: 0.0000032016515 + outSlope: 0.0000032016515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0000000853774 + inSlope: -0.000007683962 + outSlope: -0.000007683962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000000085377344 + inSlope: 0.0000025613203 + outSlope: 0.0000025613203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0000002561321 + inSlope: 0.00000064033384 + outSlope: 0.00000064033384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.000000042688672 + inSlope: -0.0000064032984 + outSlope: -0.0000064032984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0000001707547 + inSlope: 0.00000128066 + outSlope: 0.00000128066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.000000042688654 + inSlope: -0.000001920996 + outSlope: -0.000001920996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0000002988208 + inSlope: -0.0000006403384 + outSlope: -0.0000006403384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0 + inSlope: 0.0000006403302 + outSlope: 0.0000006403302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.00000025613207 + inSlope: 0.0000012806654 + outSlope: 0.0000012806654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.000000085377174 + inSlope: 0.0000032016567 + outSlope: 0.0000032016567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.000000042688715 + inSlope: -0.000006403301 + outSlope: -0.000006403301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000003415094 + inSlope: 0.000000640322 + outSlope: 0.000000640322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0 + inSlope: 0.000010885615 + outSlope: 0.000010885615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000038419816 + inSlope: 0.0000057629777 + outSlope: 0.0000057629777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.00000038419816 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000002561321 + inSlope: 0.0000025613208 + outSlope: 0.0000025613208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000034150946 + inSlope: -0.0000006403302 + outSlope: -0.0000006403302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00000021344341 + inSlope: -0.0000057629713 + outSlope: -0.0000057629713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.00000004268869 + inSlope: 0.00000064033156 + outSlope: 0.00000064033156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0000002561321 + inSlope: -0.000010245283 + outSlope: -0.000010245283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0000007257076 + inSlope: -0.000005122646 + outSlope: -0.000005122646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00000008537736 + inSlope: 0.000016008253 + outSlope: 0.000016008253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.00000034150946 + inSlope: -0.0000032016505 + outSlope: -0.0000032016505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00000029882074 + inSlope: -0.000009604954 + outSlope: -0.000009604954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0000002988208 + inSlope: -8.5265134e-13 + outSlope: -8.5265134e-13 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0000002988208 + inSlope: 0.0000025613213 + outSlope: 0.0000025613213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.00000012806605 + inSlope: 0.0000038419807 + outSlope: 0.0000038419807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.00000004268868 + inSlope: 0.0000064033015 + outSlope: 0.0000064033015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000002988208 + inSlope: -0.0000057629736 + outSlope: -0.0000057629736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.00000042688683 + inSlope: -0.000003201645 + outSlope: -0.000003201645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.000000085377366 + inSlope: 0.000006403311 + outSlope: 0.000006403311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0 + inSlope: 0.000004482308 + outSlope: 0.000004482308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.00000038419816 + inSlope: -0.000016008282 + outSlope: -0.000016008282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0000010672171 + inSlope: -0.000010245314 + outSlope: -0.000010245314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0000002988208 + inSlope: 0.000009604943 + outSlope: 0.000009604943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0000004268868 + inSlope: 0.0000044823046 + outSlope: 0.0000044823046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0 + inSlope: 0.000010245281 + outSlope: 0.000010245281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000002561321 + inSlope: 0.0000038419853 + outSlope: 0.0000038419853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0000002561321 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.043532073 + inSlope: 0.5853309 + outSlope: 0.5853309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.024021043 + inSlope: 1.8458124 + outSlope: 1.8458124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.07952209 + inSlope: 2.586917 + outSlope: 2.586917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.1484401 + inSlope: 1.9547877 + outSlope: 1.9547877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.20984128 + inSlope: 1.4508438 + outSlope: 1.4508438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.24516301 + inSlope: 0.2265386 + outSlope: 0.2265386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.22494385 + inSlope: -0.8432746 + outSlope: -0.8432746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.1889447 + inSlope: -1.8617411 + outSlope: -1.8617411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.10082778 + inSlope: -2.5172973 + outSlope: -2.5172973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.02112489 + inSlope: -1.9935932 + outSlope: -1.9935932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.032078423 + inSlope: -2.140137 + outSlope: -2.140137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.121550895 + inSlope: -2.5435357 + outSlope: -2.5435357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.20164753 + inSlope: -1.3497568 + outSlope: -1.3497568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.21153475 + inSlope: 0.08739889 + outSlope: 0.08739889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.19582094 + inSlope: 0.422719 + outSlope: 0.422719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1833535 + inSlope: 0.69086015 + outSlope: 0.69086015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.14976358 + inSlope: 1.0399846 + outSlope: 1.0399846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.11402114 + inSlope: 1.0940962 + outSlope: 1.0940962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.076823846 + inSlope: 1.3604579 + outSlope: 1.3604579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.023323938 + inSlope: 1.1267167 + outSlope: 1.1267167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0017093726 + inSlope: 0.2722642 + outSlope: 0.2722642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0051730154 + inSlope: -0.7707323 + outSlope: -0.7707323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.053091485 + inSlope: -0.57538664 + outSlope: -0.57538664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.043532073 + inSlope: 0.28678212 + outSlope: 0.28678212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.032429025 + inSlope: 2.5957413 + outSlope: 2.5957413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.054095685 + inSlope: 3.013707 + outSlope: 3.013707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.16848478 + inSlope: 2.6777122 + outSlope: 2.6777122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.23260985 + inSlope: 1.9320357 + outSlope: 1.9320357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.29728717 + inSlope: 2.1799455 + outSlope: 2.1799455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.37793955 + inSlope: 1.8127104 + outSlope: 1.8127104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.41813454 + inSlope: 0.08922744 + outSlope: 0.08922744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.38388807 + inSlope: -2.0049527 + outSlope: -2.0049527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.28447104 + inSlope: -2.4132 + outSlope: -2.4132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.22300808 + inSlope: -1.8311999 + outSlope: -1.8311999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.16239105 + inSlope: -1.9643555 + outSlope: -1.9643555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.09205106 + inSlope: -2.5065913 + outSlope: -2.5065913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.004715114 + inSlope: -2.3395395 + outSlope: -2.3395395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.06391832 + inSlope: -1.2084216 + outSlope: -1.2084216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.08527655 + inSlope: -0.61987257 + outSlope: -0.61987257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.10524314 + inSlope: -0.87060964 + outSlope: -0.87060964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.14331721 + inSlope: -0.30707255 + outSlope: -0.30707255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.12571466 + inSlope: 0.67778504 + outSlope: 0.67778504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.09813155 + inSlope: 0.46333218 + outSlope: 0.46333218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.09482587 + inSlope: -0.45416224 + outSlope: -0.45416224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.128409 + inSlope: -0.2644189 + outSlope: -0.2644189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.11245375 + inSlope: 0.47021395 + outSlope: 0.47021395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0970614 + inSlope: 1.2003703 + outSlope: 1.2003703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.032429025 + inSlope: 1.9389697 + outSlope: 1.9389697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.19705544 + inSlope: -3.547277 + outSlope: -3.547277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.078812875 + inSlope: -3.6578064 + outSlope: -3.6578064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.046798326 + inSlope: -2.5644646 + outSlope: -2.5644646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.09215144 + inSlope: -1.3992667 + outSlope: -1.3992667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.14008278 + inSlope: -2.0852885 + outSlope: -2.0852885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.23117067 + inSlope: -2.5319576 + outSlope: -2.5319576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.30887997 + inSlope: -1.9355122 + outSlope: -1.9355122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.36020485 + inSlope: -1.2720168 + outSlope: -1.2720168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.39368108 + inSlope: -0.5170643 + outSlope: -0.5170643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.3946758 + inSlope: -0.11965782 + outSlope: -0.11965782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.40165827 + inSlope: -0.09242759 + outSlope: -0.09242759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.40083763 + inSlope: 1.444515 + outSlope: 1.444515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.3053572 + inSlope: 4.3702826 + outSlope: 4.3702826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.10948539 + inSlope: 4.351676 + outSlope: 4.351676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.015245491 + inSlope: 2.8576736 + outSlope: 2.8576736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0810261 + inSlope: 3.5538683 + outSlope: 3.5538683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.22167909 + inSlope: 3.1280959 + outSlope: 3.1280959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.289566 + inSlope: 1.2604467 + outSlope: 1.2604467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.30570891 + inSlope: 0.47404158 + outSlope: 0.47404158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.32116878 + inSlope: 0.5574977 + outSlope: 0.5574977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.34287542 + inSlope: 0.031875014 + outSlope: 0.031875014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.32329375 + inSlope: -0.39311424 + outSlope: -0.39311424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.3166678 + inSlope: -1.893573 + outSlope: -1.893573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.19705544 + inSlope: -3.5883675 + outSlope: -3.5883675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4399993 + inSlope: -1.8592438 + outSlope: -1.8592438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.37802452 + inSlope: 0.4119305 + outSlope: 0.4119305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.46746135 + inSlope: 2.5651884 + outSlope: 2.5651884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.5490371 + inSlope: 2.4471793 + outSlope: 2.4471793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.6863236 + inSlope: 0.6312178 + outSlope: 0.6312178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.6726878 + inSlope: -1.1252689 + outSlope: -1.1252689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.61130565 + inSlope: -3.1519258 + outSlope: -3.1519258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.46255946 + inSlope: -3.793108 + outSlope: -3.793108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.35843182 + inSlope: -3.1240294 + outSlope: -3.1240294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.25429085 + inSlope: -3.9153037 + outSlope: -3.9153037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.09741159 + inSlope: -3.256205 + outSlope: -3.256205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.037210457 + inSlope: 0.84378827 + outSlope: 0.84378827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.15366408 + inSlope: 3.2284884 + outSlope: 3.2284884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.25244302 + inSlope: 2.9633307 + outSlope: 2.9633307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.35121936 + inSlope: 4.3329406 + outSlope: 4.3329406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5413058 + inSlope: 4.21346 + outSlope: 4.21346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.67830175 + inSlope: 1.6686316 + outSlope: 1.6686316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.77222043 + inSlope: -0.60493606 + outSlope: -0.60493606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.7030299 + inSlope: -4.0150375 + outSlope: -4.0150375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.5045514 + inSlope: -3.9454613 + outSlope: -3.9454613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.43999925 + inSlope: -1.9365631 + outSlope: -1.9365631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.026885312 + inSlope: -0.54492384 + outSlope: -0.54492384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.04504944 + inSlope: 0.006026596 + outSlope: 0.006026596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.026483538 + inSlope: 0.47346258 + outSlope: 0.47346258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.013485263 + inSlope: 0.40692356 + outSlope: 0.40692356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0006447016 + inSlope: -0.31348294 + outSlope: -0.31348294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.034384124 + inSlope: 0.011796415 + outSlope: 0.011796415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0014311463 + inSlope: 1.1501989 + outSlope: 1.1501989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.04229582 + inSlope: 1.3449938 + outSlope: 1.3449938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.09109739 + inSlope: 1.1707906 + outSlope: 1.1707906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.12034852 + inSlope: 0.87137854 + outSlope: 0.87137854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1491893 + inSlope: 1.2702209 + outSlope: 1.2702209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.2050299 + inSlope: 1.3114 + outSlope: 1.3114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.23661599 + inSlope: 0.27825487 + outSlope: 0.27825487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.22358026 + inSlope: -0.40294114 + outSlope: -0.40294114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.20975325 + inSlope: -0.42878062 + outSlope: -0.42878062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.1949949 + inSlope: -0.90360653 + outSlope: -0.90360653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.14951278 + inSlope: -1.6239119 + outSlope: -1.6239119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.08673401 + inSlope: -1.6900709 + outSlope: -1.6900709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.036841393 + inSlope: -1.6584487 + outSlope: -1.6584487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.023829233 + inSlope: -1.1075282 + outSlope: -1.1075282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.036993857 + inSlope: -0.5158553 + outSlope: -0.5158553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.058219593 + inSlope: -0.402215 + outSlope: -0.402215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0638082 + inSlope: 0.47001505 + outSlope: 0.47001505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.026885217 + inSlope: 1.1076885 + outSlope: 1.1076885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.27142695 + inSlope: -3.4946811 + outSlope: -3.4946811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.38791633 + inSlope: 0.3475405 + outSlope: 0.3475405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.24825758 + inSlope: 5.2393336 + outSlope: 5.2393336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.038627375 + inSlope: 6.304762 + outSlope: 6.304762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.17205991 + inSlope: 5.94033 + outSlope: 5.94033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.3573946 + inSlope: 4.8249583 + outSlope: 4.8249583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.49372384 + inSlope: 3.7276971 + outSlope: 3.7276971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6059078 + inSlope: 2.0067704 + outSlope: 2.0067704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.6088692 + inSlope: -0.57819045 + outSlope: -0.57819045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.5889625 + inSlope: -1.6822445 + outSlope: -1.6822445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.49671957 + inSlope: -3.8936305 + outSlope: -3.8936305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.329387 + inSlope: -4.668786 + outSlope: -4.668786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.18546703 + inSlope: -2.997385 + outSlope: -2.997385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.12956135 + inSlope: -1.6795998 + outSlope: -1.6795998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.07349377 + inSlope: -1.3363348 + outSlope: -1.3363348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.040472392 + inSlope: -1.1778702 + outSlope: -1.1778702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.005030973 + inSlope: -1.0088454 + outSlope: -1.0088454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.02678399 + inSlope: 0.17023322 + outSlope: 0.17023322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0063179554 + inSlope: 1.1376767 + outSlope: 1.1376767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.04906111 + inSlope: -0.09733033 + outSlope: -0.09733033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.00017081662 + inSlope: -3.132778 + outSlope: -3.132778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.15979065 + inSlope: -4.068843 + outSlope: -4.068843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.27142695 + inSlope: -3.349086 + outSlope: -3.349086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2364267 + inSlope: -7.7328334 + outSlope: -7.7328334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.021334436 + inSlope: -6.627237 + outSlope: -6.627237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.20538913 + inSlope: -3.4203043 + outSlope: -3.4203043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.24935475 + inSlope: -1.0560578 + outSlope: -1.0560578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.275793 + inSlope: 1.2649021 + outSlope: 1.2649021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.16502795 + inSlope: 2.430737 + outSlope: 2.430737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.11374384 + inSlope: 1.4874595 + outSlope: 1.4874595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.06586396 + inSlope: 1.1660371 + outSlope: 1.1660371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.03600804 + inSlope: 0.7982561 + outSlope: 0.7982561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.01264689 + inSlope: 0.87414813 + outSlope: 0.87414813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.022268493 + inSlope: 1.1458646 + outSlope: 1.1458646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.063744076 + inSlope: 1.081449 + outSlope: 1.081449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.09436512 + inSlope: 0.61619866 + outSlope: 0.61619866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.104824014 + inSlope: 0.037682354 + outSlope: 0.037682354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.09687728 + inSlope: -0.21600722 + outSlope: -0.21600722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.09042354 + inSlope: -0.3392228 + outSlope: -0.3392228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.07426242 + inSlope: -1.7868918 + outSlope: -1.7868918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.028702684 + inSlope: -2.7133567 + outSlope: -2.7133567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.106628045 + inSlope: -0.7901994 + outSlope: -0.7901994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.08138255 + inSlope: 4.004931 + outSlope: 4.004931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.16036716 + inSlope: 5.5413156 + outSlope: 5.5413156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.28803837 + inSlope: 5.235554 + outSlope: 5.235554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.509404 + inSlope: -0.7741716 + outSlope: -0.7741716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.23642646 + inSlope: -8.189319 + outSlope: -8.189319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20818295 + inSlope: -4.262897 + outSlope: -4.262897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06608637 + inSlope: -2.7287042 + outSlope: -2.7287042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.026269313 + inSlope: -0.055357814 + outSlope: -0.055357814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.06239585 + inSlope: 1.113022 + outSlope: 1.113022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.10047078 + inSlope: 1.5150192 + outSlope: 1.5150192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.16339712 + inSlope: 1.2812395 + outSlope: 1.2812395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.18588676 + inSlope: 0.5892025 + outSlope: 0.5892025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.2026773 + inSlope: 0.38210708 + outSlope: 0.38210708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.21136056 + inSlope: -0.14644684 + outSlope: -0.14644684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.19291417 + inSlope: -0.76081914 + outSlope: -0.76081914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.16063929 + inSlope: -1.844879 + outSlope: -1.844879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.069922246 + inSlope: -1.3913893 + outSlope: -1.3913893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.067880005 + inSlope: 1.8362468 + outSlope: 1.8362468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.19233869 + inSlope: 3.822236 + outSlope: 3.822236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.32269573 + inSlope: 4.4654446 + outSlope: 4.4654446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.49003482 + inSlope: 3.258792 + outSlope: 3.258792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5399484 + inSlope: 0.75025976 + outSlope: 0.75025976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5400522 + inSlope: 0.45023423 + outSlope: 0.45023423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.569964 + inSlope: -0.3815878 + outSlope: -0.3815878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5146129 + inSlope: -1.8775582 + outSlope: -1.8775582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.44479346 + inSlope: -2.032631 + outSlope: -2.032631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.3791042 + inSlope: -3.5491588 + outSlope: -3.5491588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.20818299 + inSlope: -2.5638201 + outSlope: -2.5638201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.20818302 + inSlope: 0.00000089406893 + outSlope: 0.00000089406893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45617303 + inSlope: 4.0964937 + outSlope: 4.0964937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.59272283 + inSlope: 2.359426 + outSlope: 2.359426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.5855213 + inSlope: -0.8453572 + outSlope: -0.8453572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.55711097 + inSlope: -1.2044487 + outSlope: -1.2044487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.5052247 + inSlope: -1.1025882 + outSlope: -1.1025882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.4836051 + inSlope: -0.3497483 + outSlope: -0.3497483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.48190814 + inSlope: -0.24552451 + outSlope: -0.24552451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.43585837 + inSlope: -1.2696286 + outSlope: -1.2696286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.38259488 + inSlope: -3.42511 + outSlope: -3.42511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.20751771 + inSlope: -4.8756533 + outSlope: -4.8756533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.057551235 + inSlope: -3.3074498 + outSlope: -3.3074498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.012979055 + inSlope: -1.6949308 + outSlope: -1.6949308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.055444144 + inSlope: -1.5218395 + outSlope: -1.5218395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.11443496 + inSlope: -1.0892012 + outSlope: -1.0892012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.12805751 + inSlope: -0.28735554 + outSlope: -0.28735554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.13359201 + inSlope: -0.47702673 + outSlope: -0.47702673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.15985927 + inSlope: 0.8482986 + outSlope: 0.8482986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.077038676 + inSlope: 3.1397514 + outSlope: 3.1397514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.049457435 + inSlope: 3.6643167 + outSlope: 3.6643167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.16724908 + inSlope: 6.1007376 + outSlope: 6.1007376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.4561731 + inSlope: 4.3338604 + outSlope: 4.3338604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.45617282 + inSlope: -0.000008046621 + outSlope: -0.000008046621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6724193 + inSlope: -2.4986098 + outSlope: -2.4986098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5891323 + inSlope: -2.043538 + outSlope: -2.043538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5361834 + inSlope: -1.1559381 + outSlope: -1.1559381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.51206976 + inSlope: -0.69559956 + outSlope: -0.69559956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.4898101 + inSlope: -1.6032982 + outSlope: -1.6032982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.40518323 + inSlope: -3.1426167 + outSlope: -3.1426167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.2803023 + inSlope: -3.236042 + outSlope: -3.236042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.18944705 + inSlope: -2.0503395 + outSlope: -2.0503395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.143613 + inSlope: -1.1566166 + outSlope: -1.1566166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.11233928 + inSlope: -0.5018073 + outSlope: -0.5018073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.11015918 + inSlope: -0.30096534 + outSlope: -0.30096534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.09227493 + inSlope: -0.9186276 + outSlope: -0.9186276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.04891731 + inSlope: -1.0333492 + outSlope: -1.0333492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.02338495 + inSlope: 1.1868756 + outSlope: 1.1868756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.12804234 + inSlope: 3.0403514 + outSlope: 3.0403514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.22607493 + inSlope: 4.368721 + outSlope: 4.368721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.41929048 + inSlope: 5.421901 + outSlope: 5.421901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5875353 + inSlope: 4.278493 + outSlope: 4.278493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.76851946 + inSlope: 0.69236565 + outSlope: 0.69236565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.75068116 + inSlope: -0.19434425 + outSlope: -0.19434425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.7555632 + inSlope: -1.173929 + outSlope: -1.173929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.6724193 + inSlope: -1.2471586 + outSlope: -1.2471586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.67241937 + inSlope: 0.0000017881379 + outSlope: 0.0000017881379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06976404 + inSlope: -0.33692008 + outSlope: -0.33692008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.08099471 + inSlope: 2.0871446 + outSlope: 2.0871446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.06937894 + inSlope: 4.1550274 + outSlope: 4.1550274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.19600713 + inSlope: 3.798677 + outSlope: 3.798677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.3226241 + inSlope: 4.981922 + outSlope: 4.981922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.52813524 + inSlope: 5.0049334 + outSlope: 5.0049334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.65628636 + inSlope: 3.1500525 + outSlope: 3.1500525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7551862 + inSlope: -0.41934374 + outSlope: -0.41934374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.71018255 + inSlope: -2.1070487 + outSlope: -2.1070487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6147163 + inSlope: -4.4113674 + outSlope: -4.4113674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.4160914 + inSlope: -4.120114 + outSlope: -4.120114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.340042 + inSlope: 0.0063637495 + outSlope: 0.0063637495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.4165156 + inSlope: 2.445151 + outSlope: 2.445151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.50305206 + inSlope: 3.2884026 + outSlope: 3.2884026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6357423 + inSlope: 2.1590824 + outSlope: 2.1590824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6469908 + inSlope: -0.9570042 + outSlope: -0.9570042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.571942 + inSlope: -2.1099186 + outSlope: -2.1099186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.50632954 + inSlope: -3.6522784 + outSlope: -3.6522784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.32845667 + inSlope: -4.4859495 + outSlope: -4.4859495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.20726621 + inSlope: -3.635899 + outSlope: -3.635899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.086063415 + inSlope: -4.1554546 + outSlope: -4.1554546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.06976404 + inSlope: -2.3374143 + outSlope: -2.3374143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.06976404 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0072059645 + inSlope: 0.0020742696 + outSlope: 0.0020742696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.007275107 + inSlope: -0.027667884 + outSlope: -0.027667884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0053614387 + inSlope: -0.045954492 + outSlope: -0.045954492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0042114737 + inSlope: -0.046434723 + outSlope: -0.046434723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0022657905 + inSlope: -0.13109368 + outSlope: -0.13109368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.004528105 + inSlope: -0.2014276 + outSlope: -0.2014276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.011162718 + inSlope: -0.19006988 + outSlope: -0.19006988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.017199432 + inSlope: -0.10981785 + outSlope: -0.10981785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.018483907 + inSlope: 0.13264805 + outSlope: 0.13264805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.008356229 + inSlope: 0.14079566 + outSlope: 0.14079566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0090975305 + inSlope: 0.25154442 + outSlope: 0.25154442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.008413398 + inSlope: 1.4202448 + outSlope: 1.4202448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.08558552 + inSlope: 1.7656167 + outSlope: 1.7656167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.12612124 + inSlope: -2.0384097 + outSlope: -2.0384097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.05030846 + inSlope: -2.4225967 + outSlope: -2.4225967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.035385225 + inSlope: -0.48625523 + outSlope: -0.48625523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.082725525 + inSlope: 0.4319908 + outSlope: 0.4319908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0065858145 + inSlope: 1.1843059 + outSlope: 1.1843059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0037717414 + inSlope: 0.13110924 + outSlope: 0.13110924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.002154803 + inSlope: 0.11725471 + outSlope: 0.11725471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0040452424 + inSlope: 0.043194674 + outSlope: 0.043194674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0050344467 + inSlope: 0.04741085 + outSlope: 0.04741085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0072059645 + inSlope: 0.0325728 + outSlope: 0.0325728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0072059645 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000083394725 + inSlope: 0.000028335115 + outSlope: 0.000028335115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000009283976 + inSlope: -0.00021415694 + outSlope: -0.00021415694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0000059376584 + inSlope: -0.00008713684 + outSlope: -0.00008713684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0000034748543 + inSlope: 0.00015772357 + outSlope: 0.00015772357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.000004577248 + inSlope: -0.000081935126 + outSlope: -0.000081935126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0000019874876 + inSlope: -0.00017464012 + outSlope: -0.00017464012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.000007065429 + inSlope: -0.0001317591 + outSlope: -0.0001317591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.000010771429 + inSlope: -0.000117572046 + outSlope: -0.000117572046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000014903565 + inSlope: 0.5095932 + outSlope: 0.5095932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.033962104 + inSlope: -0.009011686 + outSlope: -0.009011686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0006156816 + inSlope: -6.488551 + outSlope: -6.488551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.39860797 + inSlope: -7.0698442 + outSlope: -7.0698442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.4719387 + inSlope: -2.5217738 + outSlope: -2.5217738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.56672627 + inSlope: -0.5599107 + outSlope: -0.5599107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.5092661 + inSlope: 0.29973906 + outSlope: 0.29973906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.54674363 + inSlope: -0.01565528 + outSlope: -0.01565528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.5103097 + inSlope: 6.9038925 + outSlope: 6.9038925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.08648373 + inSlope: 7.645504 + outSlope: 7.645504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0006091538 + inSlope: 1.2900192 + outSlope: 1.2900192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0004825357 + inSlope: 0.0037166574 + outSlope: 0.0037166574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00036137667 + inSlope: 0.003458322 + outSlope: 0.003458322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0002519809 + inSlope: 0.0037272398 + outSlope: 0.0037272398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.000112894064 + inSlope: 0.003903784 + outSlope: 0.003903784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.000008271341 + inSlope: 0.003634959 + outSlope: 0.003634959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00028476169 + inSlope: -0.0012910898 + outSlope: -0.0012910898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000327798 + inSlope: 0.007027146 + outSlope: 0.007027146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00018371471 + inSlope: -0.0007954417 + outSlope: -0.0007954417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.00038082752 + inSlope: -0.024050783 + outSlope: -0.024050783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0014196708 + inSlope: -0.009696599 + outSlope: -0.009696599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0010272674 + inSlope: 0.0076274313 + outSlope: 0.0076274313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00091117533 + inSlope: 0.0030161487 + outSlope: 0.0030161487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0008261908 + inSlope: -0.0012142715 + outSlope: -0.0012142715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0009921268 + inSlope: -0.54811066 + outSlope: -0.54811066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0373669 + inSlope: 0.017867208 + outSlope: 0.017867208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00019901987 + inSlope: -0.5672034 + outSlope: -0.5672034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.075180456 + inSlope: 0.26239347 + outSlope: 0.26239347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.017691998 + inSlope: 4.6265116 + outSlope: 4.6265116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.23325373 + inSlope: 4.468602 + outSlope: 4.468602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.3155988 + inSlope: 5.4233284 + outSlope: 5.4233284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5948087 + inSlope: 3.8705437 + outSlope: 3.8705437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.57363474 + inSlope: -8.931604 + outSlope: -8.931604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0006320889 + inSlope: -8.617437 + outSlope: -8.617437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.000861522 + inSlope: -0.012874292 + outSlope: -0.012874292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0014903754 + inSlope: 0.0061725853 + outSlope: 0.0061725853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00045001783 + inSlope: 0.025599862 + outSlope: 0.025599862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00021628162 + inSlope: 0.0024436484 + outSlope: 0.0024436484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0002871069 + inSlope: -0.007520593 + outSlope: -0.007520593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.00028509073 + inSlope: 0.000060484985 + outSlope: 0.000060484985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000026681537 + inSlope: -7.3317366 + outSlope: -7.3317366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.2443939 + inSlope: -6.641155 + outSlope: -6.641155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.44274634 + inSlope: -3.669085 + outSlope: -3.669085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.48899958 + inSlope: -1.3858383 + outSlope: -1.3858383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.53513557 + inSlope: -0.40705785 + outSlope: -0.40705785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.51613677 + inSlope: 1.7841008 + outSlope: 1.7841008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.41619548 + inSlope: 4.034698 + outSlope: 4.034698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.24715687 + inSlope: 6.2467084 + outSlope: 6.2467084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00025172232 + inSlope: 4.661241 + outSlope: 4.661241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.063592516 + inSlope: 1.8996031 + outSlope: 1.8996031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.12689193 + inSlope: 0.39191478 + outSlope: 0.39191478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.08972017 + inSlope: -2.1467957 + outSlope: -2.1467957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.01622788 + inSlope: -4.9491696 + outSlope: -4.9491696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.24022456 + inSlope: -4.3825607 + outSlope: -4.3825607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.30839857 + inSlope: -2.0454216 + outSlope: -2.0454216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.37658593 + inSlope: -0.9788535 + outSlope: -0.9788535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.3736554 + inSlope: 0.84259737 + outSlope: 0.84259737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.2139741 + inSlope: 3.917307 + outSlope: 3.917307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.05925889 + inSlope: 3.3991704 + outSlope: 3.3991704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.012637316 + inSlope: 1.7132566 + outSlope: 1.7132566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.054958187 + inSlope: -0.18960106 + outSlope: -0.18960106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0000026681537 + inSlope: -0.8244136 + outSlope: -0.8244136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0000026681537 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000053894456 + inSlope: -3.4905784 + outSlope: -3.4905784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.11635208 + inSlope: -4.1470013 + outSlope: -4.1470013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.27646622 + inSlope: -3.462346 + outSlope: -3.462346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.34717518 + inSlope: -2.12135 + outSlope: -2.12135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.41788957 + inSlope: -1.8573109 + outSlope: -1.8573109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.4709959 + inSlope: -0.6905755 + outSlope: -0.6905755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.46392792 + inSlope: 0.6799744 + outSlope: 0.6799744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.42566428 + inSlope: 0.81962186 + outSlope: 0.81962186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.40928647 + inSlope: 0.09290904 + outSlope: 0.09290904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.41947034 + inSlope: -0.32238814 + outSlope: -0.32238814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.430779 + inSlope: -0.47648418 + outSlope: -0.47648418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.45123595 + inSlope: -2.0549502 + outSlope: -2.0549502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.5677758 + inSlope: -2.3461206 + outSlope: -2.3461206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.6082832 + inSlope: -0.020213138 + outSlope: -0.020213138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.6089916 + inSlope: 1.0185858 + outSlope: 1.0185858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.42515922 + inSlope: 3.5512745 + outSlope: 3.5512745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.30362582 + inSlope: 3.738048 + outSlope: 3.738048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.17595603 + inSlope: 3.3255506 + outSlope: 3.3255506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.08192244 + inSlope: 2.8203716 + outSlope: 2.8203716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0120687345 + inSlope: 1.2288433 + outSlope: 1.2288433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000053894456 + inSlope: -0.1810231 + outSlope: -0.1810231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.00000053894456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.32385498 + inSlope: 1.47561 + outSlope: 1.47561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.27466798 + inSlope: 0.22474045 + outSlope: 0.22474045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.30887228 + inSlope: -1.0032436 + outSlope: -1.0032436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.37354773 + inSlope: -1.0602795 + outSlope: -1.0602795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.41223618 + inSlope: -1.0602235 + outSlope: -1.0602235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.47516388 + inSlope: -1.1475171 + outSlope: -1.1475171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.52073044 + inSlope: -0.99982035 + outSlope: -0.99982035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.54181856 + inSlope: -0.6430364 + outSlope: -0.6430364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.5635995 + inSlope: 0.5104933 + outSlope: 0.5104933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.5077857 + inSlope: 1.8412669 + outSlope: 1.8412669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.44084835 + inSlope: 2.0907266 + outSlope: 2.0907266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.36840385 + inSlope: 1.3545116 + outSlope: 1.3545116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.35054758 + inSlope: 0.52588445 + outSlope: 0.52588445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.31486052 + inSlope: 0.40328497 + outSlope: 0.40328497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.30645922 + inSlope: -0.11746411 + outSlope: -0.11746411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.32269144 + inSlope: -0.7925197 + outSlope: -0.7925197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.35929388 + inSlope: -0.6475761 + outSlope: -0.6475761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.3658632 + inSlope: -0.19819023 + outSlope: -0.19819023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.37250656 + inSlope: 0.6301138 + outSlope: 0.6301138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.32385567 + inSlope: 0.7297716 + outSlope: 0.7297716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.32385516 + inSlope: 0.000015199172 + outSlope: 0.000015199172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.32120833 + inSlope: 1.7389779 + outSlope: 1.7389779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.37917426 + inSlope: 1.350257 + outSlope: 1.350257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.41122547 + inSlope: 0.48100945 + outSlope: 0.48100945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.41124156 + inSlope: -0.014829935 + outSlope: -0.014829935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.4102368 + inSlope: -0.013245196 + outSlope: -0.013245196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.41035855 + inSlope: -0.22357142 + outSlope: -0.22357142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.36763617 + inSlope: -0.92702603 + outSlope: -0.92702603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3335303 + inSlope: -0.78874654 + outSlope: -0.78874654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.31505308 + inSlope: -0.5531297 + outSlope: -0.5531297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.296655 + inSlope: -0.46365654 + outSlope: -0.46365654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.28414264 + inSlope: 0.016777486 + outSlope: 0.016777486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.2977735 + inSlope: 0.28945625 + outSlope: 0.28945625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.30343974 + inSlope: -0.0064583123 + outSlope: -0.0064583123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.29734296 + inSlope: -0.1837551 + outSlope: -0.1837551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.2911894 + inSlope: -0.22691128 + outSlope: -0.22691128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.28221554 + inSlope: -0.08911765 + outSlope: -0.08911765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.29253402 + inSlope: 0.059782114 + outSlope: 0.059782114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.28376657 + inSlope: -0.15587212 + outSlope: -0.15587212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.2788422 + inSlope: 0.5616253 + outSlope: 0.5616253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.3212082 + inSlope: 0.6354924 + outSlope: 0.6354924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.32120833 + inSlope: 0.0000035762757 + outSlope: 0.0000035762757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3730457 + inSlope: 0.20697533 + outSlope: 0.20697533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.36614653 + inSlope: 0.88439935 + outSlope: 0.88439935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.31408575 + inSlope: 1.251405 + outSlope: 1.251405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.25137502 + inSlope: 1.0931889 + outSlope: 1.0931889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.20984027 + inSlope: 1.0358427 + outSlope: 1.0358427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.16868743 + inSlope: 0.22974351 + outSlope: 0.22974351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1670026 + inSlope: 0.03849216 + outSlope: 0.03849216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.16612129 + inSlope: 0.018747525 + outSlope: 0.018747525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.16575277 + inSlope: -0.16871186 + outSlope: -0.16871186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.17736875 + inSlope: -0.49647373 + outSlope: -0.49647373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.19885103 + inSlope: -0.3673808 + outSlope: -0.3673808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.20186082 + inSlope: -0.16693512 + outSlope: -0.16693512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.20998004 + inSlope: -0.24676558 + outSlope: -0.24676558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.21831185 + inSlope: -0.43000022 + outSlope: -0.43000022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.29990566 + inSlope: -0.95347166 + outSlope: -0.95347166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.3325898 + inSlope: -0.73407125 + outSlope: -0.73407125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.34884375 + inSlope: -0.49383628 + outSlope: -0.49383628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3730458 + inSlope: -0.1130047 + outSlope: -0.1130047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.37304586 + inSlope: -0.0000017881379 + outSlope: -0.0000017881379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.33199167 + inSlope: -1.6498008 + outSlope: -1.6498008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.38698503 + inSlope: -0.44315547 + outSlope: -0.44315547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.36153537 + inSlope: 0.7497332 + outSlope: 0.7497332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.3370028 + inSlope: 0.7361269 + outSlope: 0.7361269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.31246024 + inSlope: 0.09050533 + outSlope: 0.09050533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.33096913 + inSlope: -0.30869055 + outSlope: -0.30869055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.31237692 + inSlope: 0.93709195 + outSlope: 0.93709195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.27056682 + inSlope: 0.8652977 + outSlope: 0.8652977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.2546904 + inSlope: 0.47632617 + outSlope: 0.47632617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.23881175 + inSlope: 0.012673438 + outSlope: 0.012673438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.2538455 + inSlope: -0.08951305 + outSlope: -0.08951305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.24477927 + inSlope: 0.30499792 + outSlope: 0.30499792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.23351231 + inSlope: 0.5796871 + outSlope: 0.5796871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.20613347 + inSlope: 0.82113564 + outSlope: 0.82113564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.17876996 + inSlope: 0.43140978 + outSlope: 0.43140978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.17737284 + inSlope: -0.3811503 + outSlope: -0.3811503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.20418 + inSlope: -0.7283382 + outSlope: -0.7283382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.22592872 + inSlope: -0.3802749 + outSlope: -0.3802749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.22953165 + inSlope: -0.24459927 + outSlope: -0.24459927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.24223533 + inSlope: -0.38107264 + outSlope: -0.38107264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2549365 + inSlope: -1.3463478 + outSlope: -1.3463478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3319918 + inSlope: -1.1558306 + outSlope: -1.1558306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.3319918 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.40374067 + inSlope: -0.20670442 + outSlope: -0.20670442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.41063082 + inSlope: -0.06386921 + outSlope: -0.06386921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.40259403 + inSlope: 0.017429443 + outSlope: 0.017429443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.40168974 + inSlope: 0.097935066 + outSlope: 0.097935066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.39444008 + inSlope: 0.021062933 + outSlope: 0.021062933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.3916785 + inSlope: -0.060391717 + outSlope: -0.060391717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.39562294 + inSlope: -0.13828854 + outSlope: -0.13828854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.40374115 + inSlope: -0.12176883 + outSlope: -0.12176883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.40374085 + inSlope: 0.000008940689 + outSlope: 0.000008940689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.18597274 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.18597274 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04770886 + inSlope: -0.009082071 + outSlope: -0.009082071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.047724623 + inSlope: -0.0010595843 + outSlope: -0.0010595843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.04791103 + inSlope: 0.000405293 + outSlope: 0.000405293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.047380093 + inSlope: -0.0049418546 + outSlope: -0.0049418546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.047033038 + inSlope: 0.0080477055 + outSlope: 0.0080477055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.047916606 + inSlope: 0.013216319 + outSlope: 0.013216319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.047709946 + inSlope: -0.0027092572 + outSlope: -0.0027092572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.047709353 + inSlope: -0.00001776962 + outSlope: -0.00001776962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000045818072 + inSlope: -7.1143007 + outSlope: -7.1143007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.2371429 + inSlope: -6.22115 + outSlope: -6.22115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.4147429 + inSlope: -3.1853113 + outSlope: -3.1853113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.449497 + inSlope: -1.0474901 + outSlope: -1.0474901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.48457557 + inSlope: 0.42502105 + outSlope: 0.42502105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.42116228 + inSlope: 2.4442625 + outSlope: 2.4442625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.3216247 + inSlope: 3.1721623 + outSlope: 3.1721623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.20968476 + inSlope: 3.6943636 + outSlope: 3.6943636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.07533381 + inSlope: 2.6123483 + outSlope: 2.6123483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.035528228 + inSlope: 1.1606706 + outSlope: 1.1606706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0020442277 + inSlope: -0.7474525 + outSlope: -0.7474525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.08535839 + inSlope: -3.6616855 + outSlope: -3.6616855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.24206828 + inSlope: -6.156419 + outSlope: -6.156419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.4957864 + inSlope: -4.30252 + outSlope: -4.30252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.5289029 + inSlope: -0.9960053 + outSlope: -0.9960053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.5621867 + inSlope: 1.2015585 + outSlope: 1.2015585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.44879887 + inSlope: 3.488091 + outSlope: 3.488091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.20713845 + inSlope: 3.8678474 + outSlope: 3.8678474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.071790636 + inSlope: 3.3316784 + outSlope: 3.3316784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.014973482 + inSlope: 2.064449 + outSlope: 2.064449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.06583926 + inSlope: -0.2245872 + outSlope: -0.2245872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0000011121008 + inSlope: -0.98758304 + outSlope: -0.98758304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.00000045818072 + inSlope: -0.000019617586 + outSlope: -0.000019617586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000018676297 + inSlope: -2.9198887 + outSlope: -2.9198887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.097329445 + inSlope: -2.389944 + outSlope: -2.389944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.15932943 + inSlope: -0.9233127 + outSlope: -0.9233127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.15888363 + inSlope: 0.013243854 + outSlope: 0.013243854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.1584465 + inSlope: 0.8285802 + outSlope: 0.8285802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.10364495 + inSlope: 2.6101034 + outSlope: 2.6101034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.015560435 + inSlope: 4.0643687 + outSlope: 4.0643687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.167313 + inSlope: 4.146072 + outSlope: 4.146072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.29196522 + inSlope: 2.801195 + outSlope: 2.801195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.3540593 + inSlope: 1.8662896 + outSlope: 1.8662896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.41638452 + inSlope: 2.0845428 + outSlope: 2.0845428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.49302882 + inSlope: 0.7223574 + outSlope: 0.7223574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.46454164 + inSlope: -3.5002751 + outSlope: -3.5002751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.25967714 + inSlope: -4.2867465 + outSlope: -4.2867465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.17875856 + inSlope: -2.4244285 + outSlope: -2.4244285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.09804866 + inSlope: -1.9747057 + outSlope: -1.9747057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.047111552 + inSlope: -1.1727939 + outSlope: -1.1727939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.01986233 + inSlope: -0.47236648 + outSlope: -0.47236648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.015620434 + inSlope: 0.29349968 + outSlope: 0.29349968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.039428998 + inSlope: 0.7279289 + outSlope: 0.7279289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.06414902 + inSlope: 0.7125982 + outSlope: 0.7125982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.08693554 + inSlope: -0.961124 + outSlope: -0.961124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00007419114 + inSlope: -1.3040316 + outSlope: -1.3040316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.00000018676297 + inSlope: -0.0022201294 + outSlope: -0.0022201294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.24688978 + inSlope: 0.091117315 + outSlope: 0.091117315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.22720355 + inSlope: 0.33522606 + outSlope: 0.33522606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.1128018 + inSlope: 0.1313211 + outSlope: 0.1313211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.113453425 + inSlope: -0.21615927 + outSlope: -0.21615927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.17689462 + inSlope: -0.5966637 + outSlope: -0.5966637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.24295671 + inSlope: -0.21802682 + outSlope: -0.21802682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.24688996 + inSlope: -0.11799743 + outSlope: -0.11799743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.41179958 + inSlope: 0.011163353 + outSlope: 0.011163353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.37032685 + inSlope: -0.29344532 + outSlope: -0.29344532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.34028387 + inSlope: 0.07337765 + outSlope: 0.07337765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.41179958 + inSlope: 0.06191338 + outSlope: 0.06191338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06383633 + inSlope: 0.20418438 + outSlope: 0.20418438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.057030182 + inSlope: 0.57333183 + outSlope: 0.57333183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.025614208 + inSlope: 0.6978899 + outSlope: 0.6978899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.010504185 + inSlope: 0.4526378 + outSlope: 0.4526378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.004561647 + inSlope: 0.16211422 + outSlope: 0.16211422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0003034287 + inSlope: -0.41068769 + outSlope: -0.41068769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.02281754 + inSlope: -0.8348417 + outSlope: -0.8348417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.055352695 + inSlope: -0.87649095 + outSlope: -0.87649095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.081250265 + inSlope: -0.50813884 + outSlope: -0.50813884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.089228615 + inSlope: -0.2647904 + outSlope: -0.2647904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.098902956 + inSlope: -0.42925662 + outSlope: -0.42925662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.11784572 + inSlope: 0.005251944 + outSlope: 0.005251944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09855281 + inSlope: 0.9877521 + outSlope: 0.9877521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.05199557 + inSlope: 1.0038995 + outSlope: 1.0038995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.03162618 + inSlope: 0.5759052 + outSlope: 0.5759052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.013601908 + inSlope: 0.44010875 + outSlope: 0.44010875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0022856037 + inSlope: 0.056281023 + outSlope: 0.056281023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.009849837 + inSlope: -0.39839366 + outSlope: -0.39839366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.02884517 + inSlope: -0.49018633 + outSlope: -0.49018633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.04252892 + inSlope: -0.33360147 + outSlope: -0.33360147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.05108527 + inSlope: -0.22750992 + outSlope: -0.22750992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.057696246 + inSlope: -0.15324223 + outSlope: -0.15324223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.06383626 + inSlope: -0.07604514 + outSlope: -0.07604514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.49668032 + inSlope: 1.000683 + outSlope: 1.000683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.46332422 + inSlope: 1.7930598 + outSlope: 1.7930598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.377143 + inSlope: 1.7921187 + outSlope: 1.7921187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.34384963 + inSlope: 1.0072173 + outSlope: 1.0072173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.30999517 + inSlope: 0.23055375 + outSlope: 0.23055375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.32847938 + inSlope: -0.6596874 + outSlope: -0.6596874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.38503498 + inSlope: -1.0910498 + outSlope: -1.0910498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.426711 + inSlope: -1.1110103 + outSlope: -1.1110103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.4920011 + inSlope: -1.0012821 + outSlope: -1.0012821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.52585447 + inSlope: 0.14955002 + outSlope: 0.14955002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.41670647 + inSlope: 1.3777462 + outSlope: 1.3777462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.3901813 + inSlope: 0.79840195 + outSlope: 0.79840195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.3532963 + inSlope: -0.099301115 + outSlope: -0.099301115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.39525542 + inSlope: -0.7385034 + outSlope: -0.7385034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.44094294 + inSlope: -0.64762074 + outSlope: -0.64762074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.46250805 + inSlope: -0.84295774 + outSlope: -0.84295774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.4971401 + inSlope: -0.5125836 + outSlope: -0.5125836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.49668026 + inSlope: 0.013795484 + outSlope: 0.013795484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.60516346 + inSlope: -1.1729084 + outSlope: -1.1729084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5660665 + inSlope: -0.5770915 + outSlope: -0.5770915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5666907 + inSlope: 0.0723642 + outSlope: 0.0723642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.57468843 + inSlope: -0.0030720234 + outSlope: -0.0030720234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.5727645 + inSlope: 0.09438068 + outSlope: 0.09438068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.583804 + inSlope: -0.014418662 + outSlope: -0.014418662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5760168 + inSlope: -0.25005522 + outSlope: -0.25005522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.56713367 + inSlope: -0.7403255 + outSlope: -0.7403255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.52666175 + inSlope: -0.6118799 + outSlope: -0.6118799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5263417 + inSlope: 0.015265351 + outSlope: 0.015265351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.52767944 + inSlope: 0.24469973 + outSlope: 0.24469973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.542655 + inSlope: 0.43993527 + outSlope: 0.43993527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.55700845 + inSlope: 0.7538793 + outSlope: 0.7538793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5929136 + inSlope: 0.75994784 + outSlope: 0.75994784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.6228257 + inSlope: 0.30307537 + outSlope: 0.30307537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6340384 + inSlope: 0.34101874 + outSlope: 0.34101874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.64556026 + inSlope: -0.4159809 + outSlope: -0.4159809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.6063064 + inSlope: -0.6059527 + outSlope: -0.6059527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.60516346 + inSlope: -0.034287542 + outSlope: -0.034287542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08541777 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.08541777 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03151334 + inSlope: -0.013070068 + outSlope: -0.013070068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.032397427 + inSlope: 0.0029263445 + outSlope: 0.0029263445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.03175392 + inSlope: 0.0043963618 + outSlope: 0.0043963618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.032104336 + inSlope: -0.0025969374 + outSlope: -0.0025969374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.031494696 + inSlope: -0.006295036 + outSlope: -0.006295036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.032346718 + inSlope: -0.009325427 + outSlope: -0.009325427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.03181092 + inSlope: 0.0120940255 + outSlope: 0.0120940255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.031310122 + inSlope: -0.0051582237 + outSlope: -0.0051582237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.032154802 + inSlope: -0.0030178856 + outSlope: -0.0030178856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.031511314 + inSlope: -0.0009525288 + outSlope: -0.0009525288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.032218304 + inSlope: -0.012430475 + outSlope: -0.012430475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.032340012 + inSlope: 0.013737116 + outSlope: 0.013737116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.031302497 + inSlope: 0.0124190925 + outSlope: 0.0124190925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.031512074 + inSlope: 0.0014988228 + outSlope: 0.0014988228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.031202575 + inSlope: -0.012235196 + outSlope: -0.012235196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.032327753 + inSlope: -0.015253993 + outSlope: -0.015253993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.032080863 + inSlope: 0.0049094483 + outSlope: 0.0049094483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.031513214 + inSlope: -0.000047273894 + outSlope: -0.000047273894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.1064628 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.1064628 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.8352888 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.8352888 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.72438246 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.72438246 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.046680797 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.046680797 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.533366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.533366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2702586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.2702586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05811136 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.05811136 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.2201341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -1.2201341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.25173658 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.25173658 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0556177 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0556177 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49450886 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.49450886 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2340592 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.2340592 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07939418 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.07939418 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.19100119 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.19100119 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20809871 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.20809871 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.0528212 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -2.0528212 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.73789346 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.73789346 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.53117526 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.53117526 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.033653878 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.033653878 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.8814144 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.8814144 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.28464887 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.28464887 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08735952 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.08735952 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.058701 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -2.058701 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27696174 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.27696174 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.009118208 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.009118208 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.4044645 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 1.4044645 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27031377 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.27031377 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.014428644 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.014428644 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.52569145 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.52569145 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.26444787 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.26444787 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 0.7666667 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Right.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Right.anim.meta new file mode 100644 index 0000000..7291489 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Right.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 09bcba9e64fe5d444ad34fc4a6473d6f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Run_Right.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Left.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Left.anim new file mode 100644 index 0000000..dc4c45b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Left.anim @@ -0,0 +1,16122 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Strafe_Left + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0034871001 + inSlope: -0.8899272 + outSlope: -0.8899272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.033151343 + inSlope: -0.90683234 + outSlope: -0.90683234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.094452344 + inSlope: -0.91864425 + outSlope: -0.91864425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.22621284 + inSlope: -1.06353 + outSlope: -1.06353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.38677937 + inSlope: -0.8376821 + outSlope: -0.8376821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.7295769 + inSlope: -0.7652352 + outSlope: -0.7652352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.8020238 + inSlope: -0.7350274 + outSlope: -0.7350274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.8283914 + inSlope: -0.39551213 + outSlope: -0.39551213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9970427 + inSlope: 0.053261515 + outSlope: 0.053261515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9887564 + inSlope: 0.024080863 + outSlope: 0.024080863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9741502 + inSlope: -0.15225919 + outSlope: -0.15225919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.99688256 + inSlope: 0.04922807 + outSlope: 0.04922807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03732576 + inSlope: -0.07052779 + outSlope: -0.07052779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.033537608 + inSlope: -0.02586113 + outSlope: -0.02586113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.033250757 + inSlope: 0.00061366847 + outSlope: 0.00061366847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.03357852 + inSlope: -0.012325423 + outSlope: -0.012325423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.029861819 + inSlope: -0.09128663 + outSlope: -0.09128663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.023032015 + inSlope: -0.08101238 + outSlope: -0.08101238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.019849045 + inSlope: 0.0062650265 + outSlope: 0.0062650265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.02030496 + inSlope: -0.0025965997 + outSlope: -0.0025965997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.02014827 + inSlope: -0.019020481 + outSlope: -0.019020481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.019036928 + inSlope: -0.039566185 + outSlope: -0.039566185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.017510524 + inSlope: -0.032480314 + outSlope: -0.032480314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.016871573 + inSlope: -0.005074557 + outSlope: -0.005074557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.017172221 + inSlope: 0.049412332 + outSlope: 0.049412332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.020165727 + inSlope: 0.1293728 + outSlope: 0.1293728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.025797077 + inSlope: 0.16188376 + outSlope: 0.16188376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.035603575 + inSlope: 0.11535619 + outSlope: 0.11535619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.038648397 + inSlope: 0.08149607 + outSlope: 0.08149607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.041681524 + inSlope: -0.030398956 + outSlope: -0.030398956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.040064596 + inSlope: -0.06686933 + outSlope: -0.06686933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.037223563 + inSlope: -0.042615384 + outSlope: -0.042615384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06510833 + inSlope: 0.053138133 + outSlope: 0.053138133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0668796 + inSlope: 0.09178989 + outSlope: 0.09178989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.07498661 + inSlope: 0.07072403 + outSlope: 0.07072403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.07363403 + inSlope: -0.018311433 + outSlope: -0.018311433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.07330014 + inSlope: -0.032570515 + outSlope: -0.032570515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.069621295 + inSlope: -0.04385144 + outSlope: -0.04385144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.06847876 + inSlope: -0.052750975 + outSlope: -0.052750975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0635089 + inSlope: -0.052516762 + outSlope: -0.052516762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.06390822 + inSlope: 0.026765294 + outSlope: 0.026765294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.07276495 + inSlope: 0.13500495 + outSlope: 0.13500495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.090164706 + inSlope: 0.009173106 + outSlope: 0.009173106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.08002363 + inSlope: -0.14568463 + outSlope: -0.14568463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.06661837 + inSlope: -0.07554463 + outSlope: -0.07554463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.06523004 + inSlope: -0.015259074 + outSlope: -0.015259074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3309416 + inSlope: 0.26108086 + outSlope: 0.26108086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.27069917 + inSlope: 0.6899824 + outSlope: 0.6899824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.22703294 + inSlope: 0.5135707 + outSlope: 0.5135707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.18530774 + inSlope: 0.11867167 + outSlope: 0.11867167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.17869717 + inSlope: 0.04212365 + outSlope: 0.04212365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.1929221 + inSlope: -0.3158199 + outSlope: -0.3158199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.2598065 + inSlope: -0.13717163 + outSlope: -0.13717163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.27135777 + inSlope: -0.36305702 + outSlope: -0.36305702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.327199 + inSlope: -0.39041775 + outSlope: -0.39041775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.3309418 + inSlope: 0.060864527 + outSlope: 0.060864527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0323883 + inSlope: 0.12222206 + outSlope: 0.12222206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.028314231 + inSlope: 0.13687387 + outSlope: 0.13687387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.018544404 + inSlope: 0.12663741 + outSlope: 0.12663741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.014820879 + inSlope: 0.08895028 + outSlope: 0.08895028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.012614386 + inSlope: 0.04820171 + outSlope: 0.04820171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.012062956 + inSlope: -0.038579345 + outSlope: -0.038579345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.016272852 + inSlope: -0.03563086 + outSlope: -0.03563086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.016554778 + inSlope: 0.028768566 + outSlope: 0.028768566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.011361947 + inSlope: 0.07834363 + outSlope: 0.07834363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.009132037 + inSlope: 0.06027314 + outSlope: 0.06027314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0073437383 + inSlope: 0.042752527 + outSlope: 0.042752527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0062818695 + inSlope: 0.006819861 + outSlope: 0.006819861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0068890825 + inSlope: -0.051140323 + outSlope: -0.051140323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.009691227 + inSlope: -0.10281055 + outSlope: -0.10281055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.013743117 + inSlope: -0.116466835 + outSlope: -0.116466835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.020741556 + inSlope: -0.08682505 + outSlope: -0.08682505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.023244018 + inSlope: -0.046722606 + outSlope: -0.046722606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.023856398 + inSlope: -0.006853585 + outSlope: -0.006853585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.023700923 + inSlope: -0.027156338 + outSlope: -0.027156338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.025666822 + inSlope: -0.09153232 + outSlope: -0.09153232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.03386204 + inSlope: -0.087807 + outSlope: -0.087807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.035656877 + inSlope: -0.020547932 + outSlope: -0.020547932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0352319 + inSlope: 0.015336204 + outSlope: 0.015336204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.034634463 + inSlope: 0.014869901 + outSlope: 0.014869901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.034240574 + inSlope: 0.034021184 + outSlope: 0.034021184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.03236638 + inSlope: 0.028112829 + outSlope: 0.028112829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.94084525 + inSlope: 0.09069621 + outSlope: 0.09069621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.9806804 + inSlope: 0.01791536 + outSlope: 0.01791536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.95793015 + inSlope: -0.10068564 + outSlope: -0.10068564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.93923646 + inSlope: 0.027915478 + outSlope: 0.027915478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.9402741 + inSlope: 0.029246783 + outSlope: 0.029246783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0051604477 + inSlope: -2.0358176 + outSlope: -2.0358176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06270014 + inSlope: -2.1544123 + outSlope: -2.1544123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.13846704 + inSlope: -2.0499353 + outSlope: -2.0499353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.1993625 + inSlope: -1.3723028 + outSlope: -1.3723028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.2299539 + inSlope: -0.43952087 + outSlope: -0.43952087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.20587006 + inSlope: 0.7904641 + outSlope: 0.7904641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.11208883 + inSlope: 0.8669185 + outSlope: 0.8669185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.063736476 + inSlope: 0.6160859 + outSlope: 0.6160859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.044432387 + inSlope: 0.57962865 + outSlope: 0.57962865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.005908699 + inSlope: 0.57801497 + outSlope: 0.57801497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.013439762 + inSlope: 0.60689867 + outSlope: 0.60689867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.034551214 + inSlope: 0.6761389 + outSlope: 0.6761389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.08367708 + inSlope: 0.73657775 + outSlope: 0.73657775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.10762091 + inSlope: 0.7220838 + outSlope: 0.7220838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.131816 + inSlope: 0.6318009 + outSlope: 0.6318009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.18021154 + inSlope: 0.46195805 + outSlope: 0.46195805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.21371542 + inSlope: 0.41155156 + outSlope: 0.41155156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.22419482 + inSlope: -0.0033707023 + outSlope: -0.0033707023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.21349072 + inSlope: -0.6886698 + outSlope: -0.6886698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.124586135 + inSlope: -1.7244009 + outSlope: -1.7244009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.063323535 + inSlope: -1.7915245 + outSlope: -1.7915245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0051510753 + inSlope: -0.87258464 + outSlope: -0.87258464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.8346317 + inSlope: -1.2541919 + outSlope: -1.2541919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.94158995 + inSlope: -0.36947066 + outSlope: -0.36947066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.9441119 + inSlope: 0.02034903 + outSlope: 0.02034903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.9479927 + inSlope: -0.041691378 + outSlope: -0.041691378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.91477513 + inSlope: 0.26565468 + outSlope: 0.26565468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.8683495 + inSlope: 0.9180739 + outSlope: 0.9180739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.8012588 + inSlope: 0.4647067 + outSlope: 0.4647067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.8112737 + inSlope: -0.52585256 + outSlope: -0.52585256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.83462155 + inSlope: -0.3502169 + outSlope: -0.3502169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.14665921 + inSlope: 1.3723611 + outSlope: 1.3723611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.10091384 + inSlope: 1.7795839 + outSlope: 1.7795839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.028020278 + inSlope: 2.3811889 + outSlope: 2.3811889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0578321 + inSlope: 2.2134936 + outSlope: 2.2134936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.119545974 + inSlope: 1.1298548 + outSlope: 1.1298548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.13315575 + inSlope: -0.09964675 + outSlope: -0.09964675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.11290285 + inSlope: -0.6277435 + outSlope: -0.6277435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.09130618 + inSlope: -0.5703547 + outSlope: -0.5703547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.07487921 + inSlope: -0.49689406 + outSlope: -0.49689406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.04341245 + inSlope: -0.401182 + outSlope: -0.401182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.031434447 + inSlope: -0.37806687 + outSlope: -0.37806687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.018207982 + inSlope: -0.39780703 + outSlope: -0.39780703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.004913968 + inSlope: -0.347279 + outSlope: -0.347279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0049439515 + inSlope: -0.25901604 + outSlope: -0.25901604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.012353761 + inSlope: -0.2226378 + outSlope: -0.2226378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.019786472 + inSlope: -0.24437661 + outSlope: -0.24437661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.037216824 + inSlope: -0.23198916 + outSlope: -0.23198916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.04978054 + inSlope: -0.16252361 + outSlope: -0.16252361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.061247107 + inSlope: -0.25702214 + outSlope: -0.25702214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.07208121 + inSlope: -0.3829907 + outSlope: -0.3829907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.08677984 + inSlope: -0.545793 + outSlope: -0.545793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.13270618 + inSlope: -0.71208 + outSlope: -0.71208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.17076361 + inSlope: -0.2978257 + outSlope: -0.2978257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.16860631 + inSlope: 0.43870807 + outSlope: 0.43870807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.1465472 + inSlope: 0.33088583 + outSlope: 0.33088583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.31634203 + inSlope: 0.6857648 + outSlope: 0.6857648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.33920085 + inSlope: 1.2746737 + outSlope: 1.2746737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.40132028 + inSlope: 1.81289 + outSlope: 1.81289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.4600602 + inSlope: 1.284441 + outSlope: 1.284441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.4678882 + inSlope: -0.25470662 + outSlope: -0.25470662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.441767 + inSlope: -0.07318319 + outSlope: -0.07318319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.4704235 + inSlope: 0.3191458 + outSlope: 0.3191458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.49611798 + inSlope: 0.29704118 + outSlope: 0.29704118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.51747626 + inSlope: 0.28561777 + outSlope: 0.28561777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.52767277 + inSlope: 0.5837289 + outSlope: 0.5837289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.5656851 + inSlope: -0.7041577 + outSlope: -0.7041577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.34917623 + inSlope: -1.5864643 + outSlope: -1.5864643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.31633115 + inSlope: -0.49267492 + outSlope: -0.49267492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.44715935 + inSlope: -0.78298324 + outSlope: -0.78298324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.46982038 + inSlope: 1.1550522 + outSlope: 1.1550522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.41129258 + inSlope: 1.5700619 + outSlope: 1.5700619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.3651496 + inSlope: 0.7465281 + outSlope: 0.7465281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.36701393 + inSlope: -0.013387799 + outSlope: -0.013387799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.35709912 + inSlope: 0.11380257 + outSlope: 0.11380257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.35778537 + inSlope: -0.021083515 + outSlope: -0.021083515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.38249257 + inSlope: -0.13110414 + outSlope: -0.13110414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.38676894 + inSlope: 0.010705024 + outSlope: 0.010705024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.37747574 + inSlope: 0.19612408 + outSlope: 0.19612408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.36870396 + inSlope: 0.72255677 + outSlope: 0.72255677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.32930526 + inSlope: 1.4789056 + outSlope: 1.4789056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.27011028 + inSlope: 0.96978337 + outSlope: 0.96978337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.2646531 + inSlope: -0.9262935 + outSlope: -0.9262935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.3318631 + inSlope: -2.0902994 + outSlope: -2.0902994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.40400624 + inSlope: -1.7295539 + outSlope: -1.7295539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.44716674 + inSlope: -0.6474058 + outSlope: -0.6474058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33124563 + inSlope: 2.083608 + outSlope: 2.083608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.54228896 + inSlope: 1.9658248 + outSlope: 1.9658248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6032806 + inSlope: 1.1400936 + outSlope: 1.1400936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.6182952 + inSlope: -0.20121466 + outSlope: -0.20121466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.5898663 + inSlope: -0.70649636 + outSlope: -0.70649636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5711954 + inSlope: -0.24514142 + outSlope: -0.24514142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5763104 + inSlope: 0.059638925 + outSlope: 0.059638925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.5707558 + inSlope: -0.21386148 + outSlope: -0.21386148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5097594 + inSlope: -0.7467103 + outSlope: -0.7467103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.4307181 + inSlope: -2.134778 + outSlope: -2.134778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.3378041 + inSlope: -3.1483703 + outSlope: -3.1483703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.22082677 + inSlope: -2.4189765 + outSlope: -2.4189765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.17653908 + inSlope: -0.0885455 + outSlope: -0.0885455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.21492366 + inSlope: 1.4448688 + outSlope: 1.4448688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.27286357 + inSlope: 1.7451017 + outSlope: 1.7451017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.33126387 + inSlope: 0.87600225 + outSlope: 0.87600225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7682791 + inSlope: 1.8264948 + outSlope: 1.8264948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.7073959 + inSlope: 2.3078816 + outSlope: 2.3078816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.52300704 + inSlope: 2.0261369 + outSlope: 2.0261369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.4793445 + inSlope: 0.40139887 + outSlope: 0.40139887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.5410097 + inSlope: -1.0431333 + outSlope: -1.0431333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.57706314 + inSlope: -0.12473793 + outSlope: -0.12473793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.57399136 + inSlope: 0.08031608 + outSlope: 0.08031608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5793828 + inSlope: -0.45887107 + outSlope: -0.45887107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.68401414 + inSlope: -1.7196584 + outSlope: -1.7196584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.7995349 + inSlope: -1.0291319 + outSlope: -1.0291319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.80025035 + inSlope: 0.71275043 + outSlope: 0.71275043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.76827145 + inSlope: 0.47968233 + outSlope: 0.47968233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13705097 + inSlope: 0.47423732 + outSlope: 0.47423732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.18568757 + inSlope: 0.5132489 + outSlope: 0.5132489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.251318 + inSlope: 0.85163164 + outSlope: 0.85163164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.33029956 + inSlope: 0.28428736 + outSlope: 0.28428736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.28086022 + inSlope: -1.0823221 + outSlope: -1.0823221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.19767459 + inSlope: -1.3388519 + outSlope: -1.3388519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.007054276 + inSlope: -1.3062141 + outSlope: -1.3062141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.034311887 + inSlope: -1.0069022 + outSlope: -1.0069022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.060072552 + inSlope: -0.36053252 + outSlope: -0.36053252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.058347363 + inSlope: 0.3244298 + outSlope: 0.3244298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.038443916 + inSlope: 0.600317 + outSlope: 0.600317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.018326234 + inSlope: 0.61031306 + outSlope: 0.61031306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0022436583 + inSlope: 0.68996876 + outSlope: 0.68996876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.027671676 + inSlope: 0.77257586 + outSlope: 0.77257586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.07674915 + inSlope: 0.6113641 + outSlope: 0.6113641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.121948406 + inSlope: 0.42786425 + outSlope: 0.42786425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.13712877 + inSlope: 0.22770487 + outSlope: 0.22770487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.93977904 + inSlope: -0.049366947 + outSlope: -0.049366947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.9348843 + inSlope: 0.19469263 + outSlope: 0.19469263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.8446094 + inSlope: 0.1331851 + outSlope: 0.1331851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.9001822 + inSlope: -0.06909633 + outSlope: -0.06909633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.9394002 + inSlope: -0.06695787 + outSlope: -0.06695787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06692665 + inSlope: -0.26425546 + outSlope: -0.26425546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.058118135 + inSlope: -0.19052953 + outSlope: -0.19052953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0506834 + inSlope: -0.14939323 + outSlope: -0.14939323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.037453532 + inSlope: -0.19590682 + outSlope: -0.19590682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.031204676 + inSlope: -0.1692045 + outSlope: -0.1692045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.02617323 + inSlope: -0.18755722 + outSlope: -0.18755722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.018700862 + inSlope: -0.24685663 + outSlope: -0.24685663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.009716122 + inSlope: -0.18995206 + outSlope: -0.18995206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0060373927 + inSlope: 0.022725169 + outSlope: 0.022725169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.011231134 + inSlope: 0.30815732 + outSlope: 0.30815732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.026581226 + inSlope: 0.6243684 + outSlope: 0.6243684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.052855704 + inSlope: 0.8975184 + outSlope: 0.8975184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.11957482 + inSlope: 0.89956385 + outSlope: 0.89956385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.16492164 + inSlope: 0.48061204 + outSlope: 0.48061204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.19227582 + inSlope: 0.45105195 + outSlope: 0.45105195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.2217952 + inSlope: 0.24329278 + outSlope: 0.24329278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.14438929 + inSlope: -0.71052635 + outSlope: -0.71052635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.099064276 + inSlope: -0.5875087 + outSlope: -0.5875087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.081371695 + inSlope: -0.47780216 + outSlope: -0.47780216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.06721078 + inSlope: -0.21241319 + outSlope: -0.21241319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6466873 + inSlope: 0.12478172 + outSlope: 0.12478172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.60940546 + inSlope: 0.31679475 + outSlope: 0.31679475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.59920466 + inSlope: -0.07771344 + outSlope: -0.07771344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.5971421 + inSlope: 0.60707515 + outSlope: 0.60707515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.5665494 + inSlope: 1.1342368 + outSlope: 1.1342368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.5215263 + inSlope: 1.0344354 + outSlope: 1.0344354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.48646492 + inSlope: 0.5135084 + outSlope: 0.5135084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.44179976 + inSlope: 0.42262504 + outSlope: 0.42262504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.43661943 + inSlope: -0.17055173 + outSlope: -0.17055173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.44654825 + inSlope: -0.7283494 + outSlope: -0.7283494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.48517603 + inSlope: -1.5460585 + outSlope: -1.5460585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.6033269 + inSlope: -1.0065899 + outSlope: -1.0065899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6167248 + inSlope: -0.33322486 + outSlope: -0.33322486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.65072984 + inSlope: -0.07133509 + outSlope: -0.07133509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.64775354 + inSlope: 0.0565137 + outSlope: 0.0565137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.54606193 + inSlope: -0.07614612 + outSlope: -0.07614612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.5082083 + inSlope: -0.29902247 + outSlope: -0.29902247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.491726 + inSlope: 0.53079754 + outSlope: 0.53079754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.5833523 + inSlope: 1.0408778 + outSlope: 1.0408778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.591366 + inSlope: -0.28367034 + outSlope: -0.28367034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.54943013 + inSlope: -0.45581293 + outSlope: -0.45581293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5401317 + inSlope: 0.34398732 + outSlope: 0.34398732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5915055 + inSlope: 0.72542655 + outSlope: 0.72542655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6084865 + inSlope: -0.07003376 + outSlope: -0.07003376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5868366 + inSlope: -0.94829977 + outSlope: -0.94829977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.5452665 + inSlope: -0.8672193 + outSlope: -0.8672193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.529022 + inSlope: -0.4246148 + outSlope: -0.4246148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.51635575 + inSlope: 0.21644542 + outSlope: 0.21644542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.54310155 + inSlope: 0.13442081 + outSlope: 0.13442081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.54630065 + inSlope: -0.0051462636 + outSlope: -0.0051462636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3870375 + inSlope: -0.24956344 + outSlope: -0.24956344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.43679887 + inSlope: -0.44907692 + outSlope: -0.44907692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.46231568 + inSlope: -0.17131889 + outSlope: -0.17131889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.43269625 + inSlope: 1.6000867 + outSlope: 1.6000867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.35614282 + inSlope: 2.7153993 + outSlope: 2.7153993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.25166965 + inSlope: 2.1342444 + outSlope: 2.1342444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.21385986 + inSlope: -0.038210213 + outSlope: -0.038210213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.25421703 + inSlope: -1.2802242 + outSlope: -1.2802242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.29920816 + inSlope: -1.2847197 + outSlope: -1.2847197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.339865 + inSlope: -1.4193614 + outSlope: -1.4193614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.44589666 + inSlope: -1.3712063 + outSlope: -1.3712063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.5256408 + inSlope: -0.07105591 + outSlope: -0.07105591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.4600591 + inSlope: 0.45020705 + outSlope: 0.45020705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.4204441 + inSlope: 0.44808406 + outSlope: 0.44808406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.38445783 + inSlope: -0.015064504 + outSlope: -0.015064504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.3858781 + inSlope: -0.054496184 + outSlope: -0.054496184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.36580616 + inSlope: 0.06619513 + outSlope: 0.06619513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.3862931 + inSlope: 0.3495835 + outSlope: 0.3495835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.4101397 + inSlope: 0.40042335 + outSlope: 0.40042335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.4259905 + inSlope: 0.6388361 + outSlope: 0.6388361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.45272878 + inSlope: 0.6950995 + outSlope: 0.6950995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.48967734 + inSlope: 0.7557983 + outSlope: 0.7557983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.56006306 + inSlope: 0.7127492 + outSlope: 0.7127492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5706991 + inSlope: 0.04146609 + outSlope: 0.04146609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5633952 + inSlope: -0.60946894 + outSlope: -0.60946894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.4821335 + inSlope: -1.7209946 + outSlope: -1.7209946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.32109016 + inSlope: -0.32945645 + outSlope: -0.32945645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.33341622 + inSlope: 0.5529811 + outSlope: 0.5529811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.35795557 + inSlope: 0.6445768 + outSlope: 0.6445768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.38359427 + inSlope: -0.1523241 + outSlope: -0.1523241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.36305392 + inSlope: -0.034934018 + outSlope: -0.034934018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.36482796 + inSlope: 0.048235346 + outSlope: 0.048235346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.25751135 + inSlope: -0.6164288 + outSlope: -0.6164288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.30079055 + inSlope: -0.58717614 + outSlope: -0.58717614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.31946385 + inSlope: 0.09102166 + outSlope: 0.09102166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2886564 + inSlope: 0.26880118 + outSlope: 0.26880118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.268295 + inSlope: 0.05077421 + outSlope: 0.05077421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.22897717 + inSlope: 0.62793165 + outSlope: 0.62793165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.1782984 + inSlope: 0.8809333 + outSlope: 0.8809333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.09687007 + inSlope: 0.44268572 + outSlope: 0.44268572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.10044741 + inSlope: -0.4608304 + outSlope: -0.4608304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.17223312 + inSlope: -0.767769 + outSlope: -0.767769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.23923008 + inSlope: -0.56361747 + outSlope: -0.56361747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.25751343 + inSlope: -0.27424955 + outSlope: -0.27424955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07858903 + inSlope: -0.20164041 + outSlope: -0.20164041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.09035221 + inSlope: -0.14390776 + outSlope: -0.14390776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.10126967 + inSlope: -0.20703146 + outSlope: -0.20703146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.12696546 + inSlope: -0.12839746 + outSlope: -0.12839746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.12879023 + inSlope: 0.09511069 + outSlope: 0.09511069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.11065551 + inSlope: 0.22074503 + outSlope: 0.22074503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.085850544 + inSlope: 0.22947508 + outSlope: 0.22947508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.06394509 + inSlope: 0.27908987 + outSlope: 0.27908987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.044076145 + inSlope: 0.20537943 + outSlope: 0.20537943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.039129876 + inSlope: -0.03304462 + outSlope: -0.03304462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.041824643 + inSlope: -0.13669538 + outSlope: -0.13669538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.048242897 + inSlope: -0.19827962 + outSlope: -0.19827962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.06593277 + inSlope: -0.115906104 + outSlope: -0.115906104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.072355345 + inSlope: -0.14624166 + outSlope: -0.14624166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.078487426 + inSlope: -0.09198098 + outSlope: -0.09198098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14930037 + inSlope: -0.9296717 + outSlope: -0.9296717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.08533335 + inSlope: -1.0064142 + outSlope: -1.0064142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.051217023 + inSlope: -0.9788065 + outSlope: -0.9788065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.020079577 + inSlope: -0.8001954 + outSlope: -0.8001954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0021293322 + inSlope: -0.4365139 + outSlope: -0.4365139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.009021349 + inSlope: -0.09573907 + outSlope: -0.09573907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.008511939 + inSlope: 0.075551 + outSlope: 0.075551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.003984616 + inSlope: 0.2803219 + outSlope: 0.2803219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0101761855 + inSlope: 0.5881201 + outSlope: 0.5881201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.035223387 + inSlope: 0.8080728 + outSlope: 0.8080728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0640477 + inSlope: 0.8570181 + outSlope: 0.8570181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.12113351 + inSlope: 0.8577989 + outSlope: 0.8577989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.21511148 + inSlope: 0.42912006 + outSlope: 0.42912006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.22681436 + inSlope: -0.0501167 + outSlope: -0.0501167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.21823405 + inSlope: -0.07633942 + outSlope: -0.07633942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.21859434 + inSlope: -0.0086246515 + outSlope: -0.0086246515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.21973488 + inSlope: 0.003911065 + outSlope: 0.003911065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.17629585 + inSlope: -0.70671105 + outSlope: -0.70671105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.14939238 + inSlope: -0.40355092 + outSlope: -0.40355092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46493453 + inSlope: -1.554771 + outSlope: -1.554771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.41310883 + inSlope: -1.3083448 + outSlope: -1.3083448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.331266 + inSlope: -0.55001163 + outSlope: -0.55001163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.30909592 + inSlope: 0.19199795 + outSlope: 0.19199795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.40353414 + inSlope: 1.1422935 + outSlope: 1.1422935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.56761277 + inSlope: 0.7055045 + outSlope: 0.7055045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.67184407 + inSlope: 1.0413828 + outSlope: 1.0413828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.79059696 + inSlope: -0.11200895 + outSlope: -0.11200895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.75390047 + inSlope: -0.619299 + outSlope: -0.619299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.62128687 + inSlope: -2.1816278 + outSlope: -2.1816278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5401544 + inSlope: -2.3453293 + outSlope: -2.3453293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.46493146 + inSlope: -1.1283411 + outSlope: -1.1283411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.092476115 + inSlope: -0.15428981 + outSlope: -0.15428981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09761911 + inSlope: -0.61148953 + outSlope: -0.61148953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.18699715 + inSlope: -1.6976442 + outSlope: -1.6976442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.24641837 + inSlope: -1.5645567 + outSlope: -1.5645567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.32688192 + inSlope: -0.05115599 + outSlope: -0.05115599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.3195457 + inSlope: 0.42387578 + outSlope: 0.42387578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.28278458 + inSlope: 0.2459492 + outSlope: 0.2459492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.2954685 + inSlope: -0.13686778 + outSlope: -0.13686778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.27770823 + inSlope: 0.36954412 + outSlope: 0.36954412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.26303065 + inSlope: 0.25851238 + outSlope: 0.25851238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2604741 + inSlope: -0.17794424 + outSlope: -0.17794424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.29567137 + inSlope: -0.6142101 + outSlope: -0.6142101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.3345179 + inSlope: -0.38254622 + outSlope: -0.38254622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.32466218 + inSlope: 0.91159403 + outSlope: 0.91159403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.28057107 + inSlope: 1.713985 + outSlope: 1.713985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.21039654 + inSlope: 2.1810908 + outSlope: 2.1810908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.13516515 + inSlope: 1.7686536 + outSlope: 1.7686536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.09248626 + inSlope: 0.6401817 + outSlope: 0.6401817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.67654926 + inSlope: 0.75561756 + outSlope: 0.75561756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.7023611 + inSlope: -0.64525276 + outSlope: -0.64525276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.63572526 + inSlope: -0.7793381 + outSlope: -0.7793381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6018665 + inSlope: -0.46241018 + outSlope: -0.46241018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5808884 + inSlope: -0.04404098 + outSlope: -0.04404098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.58175254 + inSlope: -0.12937447 + outSlope: -0.12937447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.5728248 + inSlope: -0.036486987 + outSlope: -0.036486987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.45990708 + inSlope: -1.4477279 + outSlope: -1.4477279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.31078663 + inSlope: -0.6806244 + outSlope: -0.6806244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.31796572 + inSlope: 0.45979416 + outSlope: 0.45979416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.3627608 + inSlope: 1.1447899 + outSlope: 1.1447899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.47814232 + inSlope: 2.1894906 + outSlope: 2.1894906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.6765634 + inSlope: 0.71794766 + outSlope: 0.71794766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5635294 + inSlope: -0.25919437 + outSlope: -0.25919437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.59035915 + inSlope: -0.6202698 + outSlope: -0.6202698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.64202493 + inSlope: -0.49444377 + outSlope: -0.49444377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.64924866 + inSlope: 0.15489759 + outSlope: 0.15489759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.53828835 + inSlope: 0.8549059 + outSlope: 0.8549059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.49243024 + inSlope: 0.43189746 + outSlope: 0.43189746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.47198778 + inSlope: 0.31164724 + outSlope: 0.31164724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.45812622 + inSlope: -0.023712173 + outSlope: -0.023712173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.4637368 + inSlope: 0.137112 + outSlope: 0.137112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.4415612 + inSlope: 0.2867753 + outSlope: 0.2867753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.4292009 + inSlope: 0.0915148 + outSlope: 0.0915148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.44224772 + inSlope: -0.6514177 + outSlope: -0.6514177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.56351346 + inSlope: -0.30975947 + outSlope: -0.30975947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.24542437 + inSlope: -0.723398 + outSlope: -0.723398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.2213111 + inSlope: -0.846848 + outSlope: -0.846848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.15674871 + inSlope: -0.82099664 + outSlope: -0.82099664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.1267424 + inSlope: 0.29667 + outSlope: 0.29667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.27215415 + inSlope: 0.87184167 + outSlope: 0.87184167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.33009398 + inSlope: -0.16304348 + outSlope: -0.16304348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.3065301 + inSlope: -0.103506885 + outSlope: -0.103506885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.2945604 + inSlope: -0.15939517 + outSlope: -0.15939517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.27779916 + inSlope: -0.17630789 + outSlope: -0.17630789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.26118067 + inSlope: -0.38442665 + outSlope: -0.38442665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.2454269 + inSlope: -0.23630601 + outSlope: -0.23630601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.01910581 + inSlope: 0.536954 + outSlope: 0.536954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0012073445 + inSlope: 0.61120266 + outSlope: 0.61120266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.021641035 + inSlope: 0.6290574 + outSlope: 0.6290574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.04072982 + inSlope: 0.41113505 + outSlope: 0.41113505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.04905004 + inSlope: 0.08395577 + outSlope: 0.08395577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.01913823 + inSlope: -0.5335934 + outSlope: -0.5335934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00020675309 + inSlope: -0.60717833 + outSlope: -0.60717833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.02134032 + inSlope: -0.6157177 + outSlope: -0.6157177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0412546 + inSlope: -0.5289061 + outSlope: -0.5289061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.056600727 + inSlope: -0.3698312 + outSlope: -0.3698312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.07060306 + inSlope: -0.08635607 + outSlope: -0.08635607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07166709 + inSlope: -0.026284765 + outSlope: -0.026284765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.074972026 + inSlope: -0.04542445 + outSlope: -0.04542445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.07897861 + inSlope: -0.00920156 + outSlope: -0.00920156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.07861592 + inSlope: 0.07233476 + outSlope: 0.07233476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.056312315 + inSlope: 0.3050225 + outSlope: 0.3050225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.04595612 + inSlope: 0.27441138 + outSlope: 0.27441138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.038018227 + inSlope: 0.19025391 + outSlope: 0.19025391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.033272523 + inSlope: 0.14158809 + outSlope: 0.14158809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.02857903 + inSlope: 0.21367067 + outSlope: 0.21367067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.019027792 + inSlope: 0.1432682 + outSlope: 0.1432682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.25053173 + inSlope: 0.7607218 + outSlope: 0.7607218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.31005672 + inSlope: 0.14955905 + outSlope: 0.14955905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.28323355 + inSlope: -0.45718783 + outSlope: -0.45718783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.2149499 + inSlope: -1.0775927 + outSlope: -1.0775927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.03863523 + inSlope: -1.1849684 + outSlope: -1.1849684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0028724694 + inSlope: -0.9788263 + outSlope: -0.9788263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.026619824 + inSlope: -0.7882004 + outSlope: -0.7882004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.06495954 + inSlope: -0.32583186 + outSlope: -0.32583186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.07139634 + inSlope: -0.018408157 + outSlope: -0.018408157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.049964596 + inSlope: 0.61183405 + outSlope: 0.61183405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.025397798 + inSlope: 0.8182131 + outSlope: 0.8182131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0045829373 + inSlope: 0.98874736 + outSlope: 0.98874736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.040518697 + inSlope: 1.136946 + outSlope: 1.136946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.080379404 + inSlope: 1.138155 + outSlope: 1.138155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.14637792 + inSlope: 0.8151072 + outSlope: 0.8151072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.22930574 + inSlope: 0.593119 + outSlope: 0.593119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.25062555 + inSlope: 0.31979626 + outSlope: 0.31979626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.051069632 + inSlope: -0.09640507 + outSlope: -0.09640507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.054283135 + inSlope: -0.27297243 + outSlope: -0.27297243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.069267794 + inSlope: -0.40315217 + outSlope: -0.40315217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.08115995 + inSlope: -0.1484999 + outSlope: -0.1484999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07916779 + inSlope: 0.22668557 + outSlope: 0.22668557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.06604758 + inSlope: 0.32467577 + outSlope: 0.32467577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.057522736 + inSlope: 0.06898357 + outSlope: 0.06898357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.06144867 + inSlope: -0.11867066 + outSlope: -0.11867066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.06543411 + inSlope: -0.08849659 + outSlope: -0.08849659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.06734844 + inSlope: -0.45825344 + outSlope: -0.45825344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.09598434 + inSlope: -1.0349616 + outSlope: -1.0349616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.13634588 + inSlope: -0.44071728 + outSlope: -0.44071728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.12536548 + inSlope: 0.93425286 + outSlope: 0.93425286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.07406235 + inSlope: 1.1996951 + outSlope: 1.1996951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.04538581 + inSlope: 0.6478869 + outSlope: 0.6478869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.030869905 + inSlope: 0.48169076 + outSlope: 0.48169076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.013273094 + inSlope: 0.421382 + outSlope: 0.421382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0027777478 + inSlope: 0.20512776 + outSlope: 0.20512776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.00040209666 + inSlope: 0.10229666 + outSlope: 0.10229666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0040420294 + inSlope: 0.08760467 + outSlope: 0.08760467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0062424093 + inSlope: -0.04997275 + outSlope: -0.04997275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.000710506 + inSlope: -0.29636 + outSlope: -0.29636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.013514914 + inSlope: -0.47587433 + outSlope: -0.47587433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.03101445 + inSlope: -0.5068994 + outSlope: -0.5068994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.047308236 + inSlope: -0.55635685 + outSlope: -0.55635685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0681049 + inSlope: -0.7373835 + outSlope: -0.7373835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.118524924 + inSlope: -0.34280047 + outSlope: -0.34280047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.11932048 + inSlope: 0.3148654 + outSlope: 0.3148654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.09753392 + inSlope: 0.76322246 + outSlope: 0.76322246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.06843904 + inSlope: 0.6967921 + outSlope: 0.6967921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.05108109 + inSlope: 0.2603685 + outSlope: 0.2603685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.49746096 + inSlope: -1.6905658 + outSlope: -1.6905658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.55381316 + inSlope: -1.7902439 + outSlope: -1.7902439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.6679165 + inSlope: -1.2621491 + outSlope: -1.2621491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.69032544 + inSlope: 1.4028133 + outSlope: 1.4028133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.539934 + inSlope: 2.9322357 + outSlope: 2.9322357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.3269655 + inSlope: 2.5869844 + outSlope: 2.5869844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.2597679 + inSlope: 1.560843 + outSlope: 1.560843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.22290926 + inSlope: 1.0676923 + outSlope: 1.0676923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.18858841 + inSlope: 0.98585105 + outSlope: 0.98585105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.15718588 + inSlope: 0.7195598 + outSlope: 0.7195598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.14061777 + inSlope: 0.37886173 + outSlope: 0.37886173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.13192841 + inSlope: 0.15589617 + outSlope: 0.15589617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.13022469 + inSlope: -0.14427562 + outSlope: -0.14427562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.18506843 + inSlope: -0.73998404 + outSlope: -0.73998404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.24160035 + inSlope: -0.99855494 + outSlope: -0.99855494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.34330168 + inSlope: -0.90710837 + outSlope: -0.90710837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.42887014 + inSlope: -0.8447746 + outSlope: -0.8447746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.4578158 + inSlope: -1.0288638 + outSlope: -1.0288638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.49746114 + inSlope: -0.5946786 + outSlope: -0.5946786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5668192 + inSlope: 0.35065946 + outSlope: 0.35065946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.5190151 + inSlope: 0.027836885 + outSlope: 0.027836885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.54825443 + inSlope: -0.28076652 + outSlope: -0.28076652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.555676 + inSlope: -0.36346707 + outSlope: -0.36346707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.584001 + inSlope: -0.028836563 + outSlope: -0.028836563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.5671739 + inSlope: -0.04916937 + outSlope: -0.04916937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.5931268 + inSlope: -0.35511833 + outSlope: -0.35511833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.61982125 + inSlope: -0.3523466 + outSlope: -0.3523466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.63944167 + inSlope: 0.1416601 + outSlope: 0.1416601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.56432545 + inSlope: 0.04403642 + outSlope: 0.04403642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.56964123 + inSlope: -0.0069095306 + outSlope: -0.0069095306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.56829524 + inSlope: 0.06488795 + outSlope: 0.06488795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6547067 + inSlope: -1.0951191 + outSlope: -1.0951191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.61820275 + inSlope: -1.3079488 + outSlope: -1.3079488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.477267 + inSlope: -0.9015111 + outSlope: -0.9015111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.48098952 + inSlope: 1.4587436 + outSlope: 1.4587436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.6286176 + inSlope: 2.1203177 + outSlope: 2.1203177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.7660678 + inSlope: 0.8852707 + outSlope: 0.8852707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.78639454 + inSlope: -0.09691618 + outSlope: -0.09691618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.7462333 + inSlope: -0.06516867 + outSlope: -0.06516867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.7319801 + inSlope: -0.22060905 + outSlope: -0.22060905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.679139 + inSlope: -0.6342845 + outSlope: -0.6342845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.65469277 + inSlope: -0.36669278 + outSlope: -0.36669278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.19753762 + inSlope: -0.13303041 + outSlope: -0.13303041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.2048871 + inSlope: 0.17984302 + outSlope: 0.17984302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.18696886 + inSlope: 0.018979803 + outSlope: 0.018979803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.22453247 + inSlope: -0.42381454 + outSlope: -0.42381454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.26319972 + inSlope: -0.36783665 + outSlope: -0.36783665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.25633544 + inSlope: 0.5976882 + outSlope: 0.5976882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.18665709 + inSlope: 0.44097558 + outSlope: 0.44097558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.17805047 + inSlope: 0.1355203 + outSlope: 0.1355203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.17762241 + inSlope: 0.067925096 + outSlope: 0.067925096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.17352213 + inSlope: 0.1757384 + outSlope: 0.1757384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.16590652 + inSlope: 0.09212105 + outSlope: 0.09212105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.16738074 + inSlope: -0.1668058 + outSlope: -0.1668058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.1770269 + inSlope: -0.25744987 + outSlope: -0.25744987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.19357948 + inSlope: -0.12639834 + outSlope: -0.12639834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.19661114 + inSlope: -0.057426494 + outSlope: -0.057426494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08008175 + inSlope: -0.30575415 + outSlope: -0.30575415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06988995 + inSlope: -0.30769217 + outSlope: -0.30769217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.05956894 + inSlope: -0.26974225 + outSlope: -0.26974225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.05190713 + inSlope: -0.074652 + outSlope: -0.074652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.05459214 + inSlope: 0.072211385 + outSlope: 0.072211385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.05672122 + inSlope: -0.31722566 + outSlope: -0.31722566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.033443753 + inSlope: -1.1413758 + outSlope: -1.1413758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.019370504 + inSlope: -1.6009772 + outSlope: -1.6009772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.073288046 + inSlope: -1.2789527 + outSlope: -1.2789527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.109919116 + inSlope: 0.36664265 + outSlope: 0.36664265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.07116103 + inSlope: 0.49321312 + outSlope: 0.49321312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.049622536 + inSlope: 0.26844192 + outSlope: 0.26844192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.029798245 + inSlope: 0.34776628 + outSlope: 0.34776628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.017330809 + inSlope: 0.3342874 + outSlope: 0.3342874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.00751242 + inSlope: 0.20922747 + outSlope: 0.20922747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.003382306 + inSlope: 0.22075222 + outSlope: 0.22075222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0072044 + inSlope: 0.59346277 + outSlope: 0.59346277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.03618186 + inSlope: 1.0246173 + outSlope: 1.0246173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.07551222 + inSlope: 1.0675 + outSlope: 1.0675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.10734858 + inSlope: 0.753004 + outSlope: 0.753004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.1257125 + inSlope: 0.40219438 + outSlope: 0.40219438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.13416153 + inSlope: 0.07603064 + outSlope: 0.07603064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.120738834 + inSlope: -0.3149581 + outSlope: -0.3149581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.109784015 + inSlope: -0.39365894 + outSlope: -0.39365894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.09449493 + inSlope: -0.44100758 + outSlope: -0.44100758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.08038349 + inSlope: -0.21167111 + outSlope: -0.21167111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04421074 + inSlope: -0.6114845 + outSlope: -0.6114845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.023827922 + inSlope: -0.5856347 + outSlope: -0.5856347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.005168427 + inSlope: -0.44910926 + outSlope: -0.44910926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0061126985 + inSlope: -0.11437932 + outSlope: -0.11437932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0024568627 + inSlope: 0.30156833 + outSlope: 0.30156833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.013991854 + inSlope: 0.48297584 + outSlope: 0.48297584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.029741531 + inSlope: 0.26677263 + outSlope: 0.26677263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0317767 + inSlope: -0.060913865 + outSlope: -0.060913865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.025680607 + inSlope: -0.039128263 + outSlope: -0.039128263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.02916815 + inSlope: 0.3324935 + outSlope: 0.3324935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.04784684 + inSlope: 0.67656946 + outSlope: 0.67656946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.074272774 + inSlope: 0.82105327 + outSlope: 0.82105327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.13070254 + inSlope: 0.8240559 + outSlope: 0.8240559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.18522869 + inSlope: 0.8737754 + outSlope: 0.8737754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.25694394 + inSlope: 0.13900149 + outSlope: 0.13900149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.24147384 + inSlope: -0.2770193 + outSlope: -0.2770193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.23266768 + inSlope: 0.026483215 + outSlope: 0.026483215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.22103521 + inSlope: -0.6834834 + outSlope: -0.6834834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.14757866 + inSlope: -1.1043277 + outSlope: -1.1043277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.114291355 + inSlope: -0.87816 + outSlope: -0.87816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.089034654 + inSlope: -0.7246705 + outSlope: -0.7246705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.06598003 + inSlope: -0.6719228 + outSlope: -0.6719228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.044239763 + inSlope: -0.32610318 + outSlope: -0.32610318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1274664 + inSlope: 0.06619692 + outSlope: 0.06619692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.11596859 + inSlope: 0.16275208 + outSlope: 0.16275208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.109089375 + inSlope: -0.060021326 + outSlope: -0.060021326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.12383629 + inSlope: -0.27310032 + outSlope: -0.27310032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.15374133 + inSlope: -0.3963114 + outSlope: -0.3963114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.18022093 + inSlope: -0.29695997 + outSlope: -0.29695997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.19395944 + inSlope: -0.055228934 + outSlope: -0.055228934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.18638337 + inSlope: 0.3013479 + outSlope: 0.3013479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.15710978 + inSlope: 0.47347632 + outSlope: 0.47347632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.14197308 + inSlope: 0.32801908 + outSlope: 0.32801908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.13524184 + inSlope: 0.05671142 + outSlope: 0.05671142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.14164661 + inSlope: 0.010333315 + outSlope: 0.010333315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.12365638 + inSlope: 0.09648226 + outSlope: 0.09648226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.12709762 + inSlope: -0.040152464 + outSlope: -0.040152464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.12761673 + inSlope: 0.0017351643 + outSlope: 0.0017351643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0009814515 + inSlope: -0.23969847 + outSlope: -0.23969847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.007008498 + inSlope: -0.21499613 + outSlope: -0.21499613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.013351625 + inSlope: -0.16661185 + outSlope: -0.16661185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.018115956 + inSlope: -0.09488504 + outSlope: -0.09488504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.019677294 + inSlope: 0.0560994 + outSlope: 0.0560994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.014375997 + inSlope: 0.2575831 + outSlope: 0.2575831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.002505083 + inSlope: 0.32499135 + outSlope: 0.32499135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0072900984 + inSlope: 0.20470263 + outSlope: 0.20470263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.011141758 + inSlope: 0.13554956 + outSlope: 0.13554956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.016326735 + inSlope: 0.21900097 + outSlope: 0.21900097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.025741821 + inSlope: 0.24152821 + outSlope: 0.24152821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.032428615 + inSlope: 0.092160076 + outSlope: 0.092160076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.031885825 + inSlope: -0.086628504 + outSlope: -0.086628504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.026653381 + inSlope: -0.16854891 + outSlope: -0.16854891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.020649232 + inSlope: -0.15179281 + outSlope: -0.15179281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.016533865 + inSlope: -0.08979251 + outSlope: -0.08979251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.014663067 + inSlope: -0.046559393 + outSlope: -0.046559393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0134299025 + inSlope: -0.041280475 + outSlope: -0.041280475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0119110355 + inSlope: -0.03762605 + outSlope: -0.03762605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0109215 + inSlope: 0.006283666 + outSlope: 0.006283666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.012329944 + inSlope: 0.10299428 + outSlope: 0.10299428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.017787788 + inSlope: 0.2452777 + outSlope: 0.2452777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.028681785 + inSlope: 0.3955744 + outSlope: 0.3955744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.058186784 + inSlope: 0.29537386 + outSlope: 0.29537386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.063851014 + inSlope: 0.020075522 + outSlope: 0.020075522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.034633648 + inSlope: -0.39389095 + outSlope: -0.39389095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.010778138 + inSlope: -0.31523955 + outSlope: -0.31523955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0009818696 + inSlope: -0.14694366 + outSlope: -0.14694366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.026764764 + inSlope: -0.33988377 + outSlope: -0.33988377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.015435304 + inSlope: -0.32877275 + outSlope: -0.32877275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0048465785 + inSlope: -0.26101074 + outSlope: -0.26101074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0019654143 + inSlope: -0.086193085 + outSlope: -0.086193085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0008996283 + inSlope: 0.13004377 + outSlope: 0.13004377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0067041703 + inSlope: 0.21729702 + outSlope: 0.21729702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.013586842 + inSlope: 0.10753827 + outSlope: 0.10753827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.013873391 + inSlope: -0.036981266 + outSlope: -0.036981266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.011121425 + inSlope: -0.0014415309 + outSlope: -0.0014415309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.013777289 + inSlope: 0.19475278 + outSlope: 0.19475278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.024104943 + inSlope: 0.36940822 + outSlope: 0.36940822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.038404502 + inSlope: 0.44452047 + outSlope: 0.44452047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.06866289 + inSlope: 0.43184102 + outSlope: 0.43184102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.09668788 + inSlope: 0.4470172 + outSlope: 0.4470172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.13464199 + inSlope: 0.10326026 + outSlope: 0.10326026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.128559 + inSlope: -0.13072363 + outSlope: -0.13072363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12496115 + inSlope: 0.021871384 + outSlope: 0.021871384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.119560406 + inSlope: -0.33776522 + outSlope: -0.33776522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.08254492 + inSlope: -0.5647011 + outSlope: -0.5647011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.038723953 + inSlope: -0.37132245 + outSlope: -0.37132245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.026764508 + inSlope: -0.1793912 + outSlope: -0.1793912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.080598846 + inSlope: 0.1400549 + outSlope: 0.1400549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.08526734 + inSlope: 0.19010043 + outSlope: 0.19010043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.09861357 + inSlope: 0.07412194 + outSlope: 0.07412194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.09671134 + inSlope: 0.00044490024 + outSlope: 0.00044490024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.10250453 + inSlope: -0.00703834 + outSlope: -0.00703834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09500001 + inSlope: -0.19992092 + outSlope: -0.19992092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.07596914 + inSlope: -0.08391571 + outSlope: -0.08391571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.07713722 + inSlope: 0.057341 + outSlope: 0.057341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.08875559 + inSlope: 0.18326442 + outSlope: 0.18326442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.10583785 + inSlope: 0.33830327 + outSlope: 0.33830327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12731263 + inSlope: 0.12870233 + outSlope: 0.12870233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.12683782 + inSlope: -0.14471492 + outSlope: -0.14471492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.106556505 + inSlope: -0.30451667 + outSlope: -0.30451667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.080971695 + inSlope: -0.057780515 + outSlope: -0.057780515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.08030401 + inSlope: 0.0060671517 + outSlope: 0.0060671517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07661622 + inSlope: -0.07274642 + outSlope: -0.07274642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.07196688 + inSlope: 0.019142369 + outSlope: 0.019142369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.06465383 + inSlope: -0.32181644 + outSlope: -0.32181644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.050622318 + inSlope: -0.45412913 + outSlope: -0.45412913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.034378555 + inSlope: -0.40706187 + outSlope: -0.40706187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.02348486 + inSlope: -0.22280167 + outSlope: -0.22280167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.01952511 + inSlope: -0.08415642 + outSlope: -0.08415642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.01787443 + inSlope: -0.063495204 + outSlope: -0.063495204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.011910584 + inSlope: -0.11149442 + outSlope: -0.11149442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.007859139 + inSlope: -0.13737734 + outSlope: -0.13737734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0027520945 + inSlope: -0.16083848 + outSlope: -0.16083848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0028634358 + inSlope: -0.1427255 + outSlope: -0.1427255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0067629395 + inSlope: -0.051706515 + outSlope: -0.051706515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.006310533 + inSlope: 0.08838397 + outSlope: 0.08838397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00087067933 + inSlope: 0.23196939 + outSlope: 0.23196939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.009154096 + inSlope: 0.3692271 + outSlope: 0.3692271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.023744455 + inSlope: 0.46702963 + outSlope: 0.46702963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.040289406 + inSlope: 0.4471739 + outSlope: 0.4471739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.053556073 + inSlope: 0.3323984 + outSlope: 0.3323984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.062449303 + inSlope: 0.26819336 + outSlope: 0.26819336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.07143563 + inSlope: 0.27880853 + outSlope: 0.27880853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.08103654 + inSlope: 0.21810144 + outSlope: 0.21810144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.08597572 + inSlope: 0.049304172 + outSlope: 0.049304172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.07661603 + inSlope: -0.05138842 + outSlope: -0.05138842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09181328 + inSlope: -0.051677447 + outSlope: -0.051677447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.08430864 + inSlope: -0.1434879 + outSlope: -0.1434879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.07211028 + inSlope: -0.16718732 + outSlope: -0.16718732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.06060669 + inSlope: -0.07664105 + outSlope: -0.07664105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.058269504 + inSlope: 0.018450582 + outSlope: 0.018450582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.06147009 + inSlope: 0.034252964 + outSlope: 0.034252964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.06272045 + inSlope: 0.032770716 + outSlope: 0.032770716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.069307804 + inSlope: 0.09770337 + outSlope: 0.09770337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.07522273 + inSlope: 0.051935636 + outSlope: 0.051935636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.07535517 + inSlope: -0.035132103 + outSlope: -0.035132103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.07420148 + inSlope: 0.026796218 + outSlope: 0.026796218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.07714158 + inSlope: 0.15146284 + outSlope: 0.15146284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.09101671 + inSlope: 0.14901845 + outSlope: 0.14901845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0918131 + inSlope: -0.022943892 + outSlope: -0.022943892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.26742107 + inSlope: 0.22064565 + outSlope: 0.22064565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.27477592 + inSlope: 0.34810555 + outSlope: 0.34810555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.30027115 + inSlope: 0.059626363 + outSlope: 0.059626363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.28406432 + inSlope: -0.1785846 + outSlope: -0.1785846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.28295314 + inSlope: -0.25504056 + outSlope: -0.25504056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.25746477 + inSlope: -0.2999595 + outSlope: -0.2999595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.24375156 + inSlope: -0.196132 + outSlope: -0.196132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.23217556 + inSlope: -0.031389415 + outSlope: -0.031389415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.24597311 + inSlope: 0.07948723 + outSlope: 0.07948723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.25424945 + inSlope: 0.35934174 + outSlope: 0.35934174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.3224836 + inSlope: 0.88451564 + outSlope: 0.88451564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.36301488 + inSlope: -0.15114023 + outSlope: -0.15114023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.31791988 + inSlope: -0.5064219 + outSlope: -0.5064219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.30334452 + inSlope: -0.28894824 + outSlope: -0.28894824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2742141 + inSlope: -0.33379012 + outSlope: -0.33379012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.26803598 + inSlope: -0.06939629 + outSlope: -0.06939629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13296916 + inSlope: 0.11672526 + outSlope: 0.11672526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.14665148 + inSlope: 0.1310697 + outSlope: 0.1310697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.15757476 + inSlope: 0.36083034 + outSlope: 0.36083034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.17461367 + inSlope: 0.56838465 + outSlope: 0.56838465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.19546707 + inSlope: 0.3784935 + outSlope: 0.3784935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.19984657 + inSlope: -0.20073318 + outSlope: -0.20073318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15851972 + inSlope: -0.58442926 + outSlope: -0.58442926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.13781029 + inSlope: -0.02844118 + outSlope: -0.02844118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.14566992 + inSlope: 0.0028395131 + outSlope: 0.0028395131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.14141613 + inSlope: -0.24027286 + outSlope: -0.24027286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.11741005 + inSlope: -0.33516794 + outSlope: -0.33516794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.09913891 + inSlope: 0.18075293 + outSlope: 0.18075293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.1173519 + inSlope: 0.1405197 + outSlope: 0.1405197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.117560185 + inSlope: -0.12012911 + outSlope: -0.12012911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.1093433 + inSlope: -0.16636634 + outSlope: -0.16636634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.1064691 + inSlope: 0.089560576 + outSlope: 0.089560576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.12635918 + inSlope: 0.23294687 + outSlope: 0.23294687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.1313092 + inSlope: 0.031877324 + outSlope: 0.031877324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.13240471 + inSlope: 0.029375082 + outSlope: 0.029375082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.48163068 + inSlope: -0.35545525 + outSlope: -0.35545525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.4357403 + inSlope: -0.7664144 + outSlope: -0.7664144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.37562042 + inSlope: -0.7280927 + outSlope: -0.7280927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.33268586 + inSlope: -0.3153174 + outSlope: -0.3153174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.32453528 + inSlope: 0.17162697 + outSlope: 0.17162697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.34710354 + inSlope: 0.2892837 + outSlope: 0.2892837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.3666633 + inSlope: 0.2837544 + outSlope: 0.2837544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.42380625 + inSlope: 0.38228312 + outSlope: 0.38228312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.42935842 + inSlope: -0.21199268 + outSlope: -0.21199268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.4336588 + inSlope: 0.63099617 + outSlope: 0.63099617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.49426764 + inSlope: 0.6409396 + outSlope: 0.6409396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.4934363 + inSlope: -0.33268034 + outSlope: -0.33268034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.4816308 + inSlope: -0.1770821 + outSlope: -0.1770821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.28725564 + inSlope: -0.083068006 + outSlope: -0.083068006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.2844867 + inSlope: 0.2532309 + outSlope: 0.2532309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.32846838 + inSlope: 0.46163046 + outSlope: 0.46163046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.33491307 + inSlope: -0.063065894 + outSlope: -0.063065894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.31338218 + inSlope: -0.04958459 + outSlope: -0.04958459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.35645923 + inSlope: 0.5591137 + outSlope: 0.5591137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.3985694 + inSlope: 0.8634219 + outSlope: 0.8634219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.46220508 + inSlope: 0.8545894 + outSlope: 0.8545894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.55791026 + inSlope: 0.6104851 + outSlope: 0.6104851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.59279 + inSlope: -0.0010594092 + outSlope: -0.0010594092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5903822 + inSlope: 0.1268329 + outSlope: 0.1268329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.6012455 + inSlope: 0.079253234 + outSlope: 0.079253234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.59566575 + inSlope: -0.051031668 + outSlope: -0.051031668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.56873024 + inSlope: -1.4547584 + outSlope: -1.4547584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.5012146 + inSlope: -2.0646524 + outSlope: -2.0646524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.3711453 + inSlope: -1.7092044 + outSlope: -1.7092044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.28734046 + inSlope: -0.4469903 + outSlope: -0.4469903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09270546 + inSlope: 1.5643321 + outSlope: 1.5643321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.14484987 + inSlope: 1.4216344 + outSlope: 1.4216344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.18748109 + inSlope: 1.2048364 + outSlope: 1.2048364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.2251723 + inSlope: 1.003613 + outSlope: 1.003613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.25438863 + inSlope: 0.43835232 + outSlope: 0.43835232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.2214646 + inSlope: -1.3881468 + outSlope: -1.3881468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.16185266 + inSlope: -1.9799697 + outSlope: -1.9799697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.089466624 + inSlope: -2.0445938 + outSlope: -2.0445938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.025546405 + inSlope: -1.6468061 + outSlope: -1.6468061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.020320445 + inSlope: -1.1444736 + outSlope: -1.1444736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.050751828 + inSlope: -0.75541747 + outSlope: -0.75541747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.070681624 + inSlope: -0.5672705 + outSlope: -0.5672705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.08856988 + inSlope: -0.6082224 + outSlope: -0.6082224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.19758049 + inSlope: -0.9590825 + outSlope: -0.9590825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.26644585 + inSlope: -1.1347766 + outSlope: -1.1347766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.3060456 + inSlope: -0.965849 + outSlope: -0.965849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3404323 + inSlope: -0.02176413 + outSlope: -0.02176413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.3322867 + inSlope: 0.15436502 + outSlope: 0.15436502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.33014128 + inSlope: -0.03035554 + outSlope: -0.03035554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.3125996 + inSlope: 1.5271437 + outSlope: 1.5271437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.23250087 + inSlope: 2.8063464 + outSlope: 2.8063464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.12550983 + inSlope: 2.944986 + outSlope: 2.944986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.036168456 + inSlope: 2.3870816 + outSlope: 2.3870816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.033628784 + inSlope: 1.9352794 + outSlope: 1.9352794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.09285026 + inSlope: 0.8883198 + outSlope: 0.8883198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27031747 + inSlope: -1.5703408 + outSlope: -1.5703408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.21797277 + inSlope: -1.7801505 + outSlope: -1.7801505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.15164076 + inSlope: -1.6117427 + outSlope: -1.6117427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.110523246 + inSlope: -0.48606992 + outSlope: -0.48606992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.11923609 + inSlope: 0.39185277 + outSlope: 0.39185277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.13664676 + inSlope: 0.3667526 + outSlope: 0.3667526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.14368626 + inSlope: 0.40429494 + outSlope: 0.40429494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.18677372 + inSlope: 0.57015723 + outSlope: 0.57015723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.21335548 + inSlope: 0.294347 + outSlope: 0.294347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.22647595 + inSlope: 0.021653475 + outSlope: 0.021653475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.2206759 + inSlope: -0.20004651 + outSlope: -0.20004651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.20606829 + inSlope: -0.18577628 + outSlope: -0.18577628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.20049882 + inSlope: -0.22328046 + outSlope: -0.22328046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.19118293 + inSlope: -0.23913053 + outSlope: -0.23913053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.17733471 + inSlope: -0.24325226 + outSlope: -0.24325226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.16833997 + inSlope: -0.15395735 + outSlope: -0.15395735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.16940776 + inSlope: 0.15051335 + outSlope: 0.15051335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.17710511 + inSlope: 0.6626752 + outSlope: 0.6626752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.21358612 + inSlope: 1.6751928 + outSlope: 1.6751928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.2887846 + inSlope: 1.9592566 + outSlope: 1.9592566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.3442032 + inSlope: 0.7688044 + outSlope: 0.7688044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.30514422 + inSlope: -1.0477643 + outSlope: -1.0477643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.27018726 + inSlope: -0.524353 + outSlope: -0.524353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2625263 + inSlope: 2.871165 + outSlope: 2.871165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3582318 + inSlope: 3.761022 + outSlope: 3.761022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.51326114 + inSlope: 4.82314 + outSlope: 4.82314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.6797745 + inSlope: 4.148803 + outSlope: 4.148803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.789848 + inSlope: 1.9715819 + outSlope: 1.9715819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.8112133 + inSlope: -0.3332642 + outSlope: -0.3332642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.7676304 + inSlope: -1.3540611 + outSlope: -1.3540611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.68897855 + inSlope: -0.7354108 + outSlope: -0.7354108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.701879 + inSlope: 0.36908865 + outSlope: 0.36908865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.7490743 + inSlope: 0.56281054 + outSlope: 0.56281054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.7752696 + inSlope: 0.2564907 + outSlope: 0.2564907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.78298587 + inSlope: -0.39310402 + outSlope: -0.39310402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.74906266 + inSlope: -0.9146755 + outSlope: -0.9146755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.72200745 + inSlope: -0.8624072 + outSlope: -0.8624072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.6178903 + inSlope: -3.1243632 + outSlope: -3.1243632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.3503567 + inSlope: -3.1796854 + outSlope: -3.1796854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.27129897 + inSlope: -1.6636549 + outSlope: -1.6636549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.23944648 + inSlope: -0.12883994 + outSlope: -0.12883994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.26270974 + inSlope: 0.348948 + outSlope: 0.348948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.034665164 + inSlope: -0.31371585 + outSlope: -0.31371585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.024207968 + inSlope: -0.6708859 + outSlope: -0.6708859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.010060569 + inSlope: -0.7132339 + outSlope: -0.7132339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.023340963 + inSlope: 0.1997382 + outSlope: 0.1997382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.003255308 + inSlope: 0.8846246 + outSlope: 0.8846246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.035634007 + inSlope: 0.6365274 + outSlope: 0.6365274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.045690473 + inSlope: 0.30597365 + outSlope: 0.30597365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.056032255 + inSlope: 0.56832975 + outSlope: 0.56832975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08357912 + inSlope: 0.7752017 + outSlope: 0.7752017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.107712366 + inSlope: 0.4173713 + outSlope: 0.4173713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10284841 + inSlope: -0.2862953 + outSlope: -0.2862953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.083107084 + inSlope: -0.24805674 + outSlope: -0.24805674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0757804 + inSlope: -0.1816225 + outSlope: -0.1816225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.07099892 + inSlope: -0.22685118 + outSlope: -0.22685118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.060656983 + inSlope: -0.36204484 + outSlope: -0.36204484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.03610333 + inSlope: -0.1995848 + outSlope: -0.1995848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.033556934 + inSlope: -0.012389569 + outSlope: -0.012389569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.035277355 + inSlope: 0.031057654 + outSlope: 0.031057654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.035627443 + inSlope: -0.046999283 + outSlope: -0.046999283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.032144073 + inSlope: -0.17595531 + outSlope: -0.17595531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.023897085 + inSlope: -0.24005513 + outSlope: -0.24005513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.016140385 + inSlope: -0.21795896 + outSlope: -0.21795896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.009366488 + inSlope: -0.7621305 + outSlope: -0.7621305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.03466834 + inSlope: -1.8534274 + outSlope: -1.8534274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.114195295 + inSlope: -1.3728881 + outSlope: -1.3728881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.12619415 + inSlope: 0.8078314 + outSlope: 0.8078314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.060339943 + inSlope: 1.9554641 + outSlope: 1.9554641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0041699987 + inSlope: 1.4253742 + outSlope: 1.4253742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.034685016 + inSlope: 0.45772406 + outSlope: 0.45772406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0046975063 + inSlope: 0.06925775 + outSlope: 0.06925775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.007006098 + inSlope: -0.30545014 + outSlope: -0.30545014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.015665838 + inSlope: -0.92359346 + outSlope: -0.92359346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.054566808 + inSlope: -1.3091381 + outSlope: -1.3091381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.10294171 + inSlope: -0.7330127 + outSlope: -0.7330127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.10343432 + inSlope: 0.6256752 + outSlope: 0.6256752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.06123001 + inSlope: 0.553989 + outSlope: 0.553989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0665017 + inSlope: -0.9746347 + outSlope: -0.9746347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.12620565 + inSlope: -1.6413709 + outSlope: -1.6413709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.24218357 + inSlope: -0.7037593 + outSlope: -0.7037593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.26117575 + inSlope: -0.5644072 + outSlope: -0.5644072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.27981073 + inSlope: -0.44669604 + outSlope: -0.44669604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.30817154 + inSlope: -0.25017703 + outSlope: -0.25017703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.32898098 + inSlope: -0.0950749 + outSlope: -0.0950749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.32138926 + inSlope: 0.42071134 + outSlope: 0.42071134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.30305484 + inSlope: -0.030691087 + outSlope: -0.030691087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.32343537 + inSlope: -0.20481777 + outSlope: -0.20481777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.31670937 + inSlope: 0.5337796 + outSlope: 0.5337796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.28785008 + inSlope: 0.6741444 + outSlope: 0.6741444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.27176642 + inSlope: 0.3341231 + outSlope: 0.3341231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.2655752 + inSlope: 0.9814487 + outSlope: 0.9814487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.20633647 + inSlope: 2.3094656 + outSlope: 2.3094656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.11161087 + inSlope: 2.5358562 + outSlope: 2.5358562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.03727954 + inSlope: 1.747508 + outSlope: 1.747508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.004889699 + inSlope: 0.63253695 + outSlope: 0.63253695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.27450687 + inSlope: 2.7624748 + outSlope: 2.7624748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.18242437 + inSlope: 2.0847557 + outSlope: 2.0847557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.13552314 + inSlope: 0.7405487 + outSlope: 0.7405487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.13305445 + inSlope: -0.7402949 + outSlope: -0.7402949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.18487613 + inSlope: -2.2238166 + outSlope: -2.2238166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.2813089 + inSlope: -2.4652026 + outSlope: -2.4652026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.349223 + inSlope: -0.7011026 + outSlope: -0.7011026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.3280491 + inSlope: 1.2020732 + outSlope: 1.2020732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.26908478 + inSlope: 1.7002506 + outSlope: 1.7002506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.21469906 + inSlope: 1.7293901 + outSlope: 1.7293901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.15379211 + inSlope: 1.9519085 + outSlope: 1.9519085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.08457184 + inSlope: 1.9956241 + outSlope: 1.9956241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.02075046 + inSlope: 1.80072 + outSlope: 1.80072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.035476208 + inSlope: 1.6123425 + outSlope: 1.6123425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.08673903 + inSlope: 1.4536359 + outSlope: 1.4536359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.13238522 + inSlope: 1.4237328 + outSlope: 1.4237328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.33347946 + inSlope: 1.2853668 + outSlope: 1.2853668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.39707693 + inSlope: 0.5540217 + outSlope: 0.5540217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.40848684 + inSlope: -0.531652 + outSlope: -0.531652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.36163342 + inSlope: -1.7432051 + outSlope: -1.7432051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.29227307 + inSlope: -3.2722213 + outSlope: -3.2722213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.14348541 + inSlope: -7.694499 + outSlope: -7.694499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.22069368 + inSlope: -12.277109 + outSlope: -12.277109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.67498845 + inSlope: -9.107563 + outSlope: -9.107563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.8278643 + inSlope: 0.31577206 + outSlope: 0.31577206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.6539373 + inSlope: 5.9792523 + outSlope: 5.9792523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.42924786 + inSlope: 5.691244 + outSlope: 5.691244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.2745208 + inSlope: 2.3208995 + outSlope: 2.3208995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.019431233 + inSlope: -1.4985255 + outSlope: -1.4985255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06938209 + inSlope: -1.426421 + outSlope: -1.426421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.114525974 + inSlope: 0.30740166 + outSlope: 0.30740166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.04888863 + inSlope: 0.88422143 + outSlope: 0.88422143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.055577867 + inSlope: -0.38559496 + outSlope: -0.38559496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.07459496 + inSlope: -0.36143392 + outSlope: -0.36143392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.07967346 + inSlope: 0.4327425 + outSlope: 0.4327425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.045745462 + inSlope: 0.8556247 + outSlope: 0.8556247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.02263182 + inSlope: 0.38194638 + outSlope: 0.38194638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.020282373 + inSlope: 0.033622388 + outSlope: 0.033622388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.020390328 + inSlope: 0.00022698194 + outSlope: 0.00022698194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.02026724 + inSlope: -0.00997465 + outSlope: -0.00997465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.021055305 + inSlope: 0.0049066385 + outSlope: 0.0049066385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.019940132 + inSlope: 0.01067036 + outSlope: 0.01067036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.020343948 + inSlope: -0.00023155892 + outSlope: -0.00023155892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.019703256 + inSlope: 0.0014149197 + outSlope: 0.0014149197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.019510943 + inSlope: 0.029605761 + outSlope: 0.029605761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.017887523 + inSlope: -0.058683034 + outSlope: -0.058683034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.023423139 + inSlope: -0.45152497 + outSlope: -0.45152497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.047989205 + inSlope: -0.85045326 + outSlope: -0.85045326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08012001 + inSlope: -0.39662838 + outSlope: -0.39662838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.07443106 + inSlope: 0.062222835 + outSlope: 0.062222835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.07597182 + inSlope: -0.08897103 + outSlope: -0.08897103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.08036246 + inSlope: 0.28068757 + outSlope: 0.28068757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.05725929 + inSlope: 1.8681209 + outSlope: 1.8681209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.04417886 + inSlope: 2.6890755 + outSlope: 2.6890755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.122012384 + inSlope: 0.75827914 + outSlope: 0.75827914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.09473089 + inSlope: -1.3999287 + outSlope: -1.3999287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.02868389 + inSlope: -1.7121782 + outSlope: -1.7121782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.019414391 + inSlope: -0.7214723 + outSlope: -0.7214723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.31786236 + inSlope: 0.56505024 + outSlope: 0.56505024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.33669737 + inSlope: 0.37608817 + outSlope: 0.37608817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.3429349 + inSlope: 0.19795325 + outSlope: 0.19795325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.35283104 + inSlope: 0.14023216 + outSlope: 0.14023216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.35924307 + inSlope: 0.48710868 + outSlope: 0.48710868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.4030825 + inSlope: -0.20636335 + outSlope: -0.20636335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.22889246 + inSlope: -2.399707 + outSlope: -2.399707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.14686851 + inSlope: -2.2827191 + outSlope: -2.2827191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.076711126 + inSlope: -1.9965159 + outSlope: -1.9965159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.013767399 + inSlope: -1.4848354 + outSlope: -1.4848354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.022277897 + inSlope: -0.8547993 + outSlope: -0.8547993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.043219194 + inSlope: -0.46382076 + outSlope: -0.46382076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.051302537 + inSlope: 0.21836896 + outSlope: 0.21836896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.020883199 + inSlope: 0.5300052 + outSlope: 0.5300052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0033076673 + inSlope: 0.7555048 + outSlope: 0.7555048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.029483799 + inSlope: 0.7642652 + outSlope: 0.7642652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.047643356 + inSlope: 0.39144716 + outSlope: 0.39144716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.055580266 + inSlope: 0.41965428 + outSlope: 0.41965428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.07562033 + inSlope: 0.67843604 + outSlope: 0.67843604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.10080933 + inSlope: 0.959071 + outSlope: 0.959071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.1395584 + inSlope: 1.147936 + outSlope: 1.147936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.21551336 + inSlope: 1.1750312 + outSlope: 1.1750312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2904788 + inSlope: 0.99598527 + outSlope: 0.99598527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.32207286 + inSlope: 0.47390977 + outSlope: 0.47390977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06770354 + inSlope: 0.7477274 + outSlope: 0.7477274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.14388464 + inSlope: 0.76487476 + outSlope: 0.76487476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.2028013 + inSlope: 1.2304695 + outSlope: 1.2304695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.2512869 + inSlope: 1.7043099 + outSlope: 1.7043099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.42476782 + inSlope: 0.69124866 + outSlope: 0.69124866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.39478642 + inSlope: -1.4393106 + outSlope: -1.4393106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.25576317 + inSlope: -2.243424 + outSlope: -2.243424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.118688926 + inSlope: -1.8169808 + outSlope: -1.8169808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.061764337 + inSlope: -1.5962272 + outSlope: -1.5962272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.012273692 + inSlope: -1.4233878 + outSlope: -1.4233878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.033128183 + inSlope: -1.2852027 + outSlope: -1.2852027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.07340648 + inSlope: -0.93498284 + outSlope: -0.93498284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.095460385 + inSlope: -0.41596526 + outSlope: -0.41596526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.10113748 + inSlope: -0.11016554 + outSlope: -0.11016554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10280476 + inSlope: -0.030108823 + outSlope: -0.030108823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.098457865 + inSlope: 0.33119154 + outSlope: 0.33119154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.08106531 + inSlope: 0.6142781 + outSlope: 0.6142781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.05750599 + inSlope: 0.7972201 + outSlope: 0.7972201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.027917312 + inSlope: 0.82294834 + outSlope: 0.82294834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0026427747 + inSlope: 0.6918559 + outSlope: 0.6918559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.018206416 + inSlope: 0.6531446 + outSlope: 0.6531446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.040900156 + inSlope: 0.72989064 + outSlope: 0.72989064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.06686584 + inSlope: 0.38948423 + outSlope: 0.38948423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.19173762 + inSlope: 0.057986226 + outSlope: 0.057986226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.19513446 + inSlope: 0.07034651 + outSlope: 0.07034651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.18942028 + inSlope: -0.44511962 + outSlope: -0.44511962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.16788986 + inSlope: -0.96700835 + outSlope: -0.96700835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.073940784 + inSlope: -1.4363713 + outSlope: -1.4363713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.029194977 + inSlope: -1.3108265 + outSlope: -1.3108265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.013447646 + inSlope: -1.2051511 + outSlope: -1.2051511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.051148422 + inSlope: -0.85590005 + outSlope: -0.85590005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.07050766 + inSlope: -0.310979 + outSlope: -0.310979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.07188037 + inSlope: 0.13467696 + outSlope: 0.13467696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.04032239 + inSlope: 0.77907693 + outSlope: 0.77907693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.009590729 + inSlope: 0.974891 + outSlope: 0.974891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0246704 + inSlope: 0.97925436 + outSlope: 0.97925436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.055692896 + inSlope: 0.8763261 + outSlope: 0.8763261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.08309213 + inSlope: 0.8739383 + outSlope: 0.8739383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.113955446 + inSlope: 0.75905585 + outSlope: 0.75905585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.13369584 + inSlope: 0.3937648 + outSlope: 0.3937648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14020644 + inSlope: 0.15214658 + outSlope: 0.15214658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.14593671 + inSlope: -0.023551438 + outSlope: -0.023551438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.14226885 + inSlope: 0.0044968463 + outSlope: 0.0044968463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.14623651 + inSlope: 0.31064582 + outSlope: 0.31064582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.16297856 + inSlope: 0.44364303 + outSlope: 0.44364303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.19137701 + inSlope: 0.04313099 + outSlope: 0.04313099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.67331547 + inSlope: 0.2818036 + outSlope: 0.2818036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.70300996 + inSlope: 0.08754999 + outSlope: 0.08754999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.70488816 + inSlope: 0.27628085 + outSlope: 0.27628085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.7349019 + inSlope: -0.2520436 + outSlope: -0.2520436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.56461954 + inSlope: -2.6603727 + outSlope: -2.6603727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.37939748 + inSlope: -2.1059124 + outSlope: -2.1059124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.30661088 + inSlope: -0.19044885 + outSlope: -0.19044885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.3369467 + inSlope: 0.97597903 + outSlope: 0.97597903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.43959296 + inSlope: 2.1049542 + outSlope: 2.1049542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.5977343 + inSlope: 2.180377 + outSlope: 2.180377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.66355795 + inSlope: 1.3182578 + outSlope: 1.3182578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6789096 + inSlope: -0.16022162 + outSlope: -0.16022162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.6517778 + inSlope: -0.19490638 + outSlope: -0.19490638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6655269 + inSlope: 0.33962628 + outSlope: 0.33962628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.6786071 + inSlope: 0.19620217 + outSlope: 0.19620217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14802085 + inSlope: -1.0912013 + outSlope: -1.0912013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.11164747 + inSlope: -1.166188 + outSlope: -1.166188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.07027498 + inSlope: -1.2519717 + outSlope: -1.2519717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.028182678 + inSlope: -1.1328385 + outSlope: -1.1328385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0052475934 + inSlope: -0.89464104 + outSlope: -0.89464104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.03146005 + inSlope: -0.64408076 + outSlope: -0.64408076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.048186313 + inSlope: -0.49199107 + outSlope: -0.49199107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.06425946 + inSlope: -0.22934547 + outSlope: -0.22934547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.06347601 + inSlope: 0.8789119 + outSlope: 0.8789119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0056653395 + inSlope: 2.2749467 + outSlope: 2.2749467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08818708 + inSlope: 1.8082135 + outSlope: 1.8082135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.114882216 + inSlope: -0.18096456 + outSlope: -0.18096456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.076122746 + inSlope: -0.6665507 + outSlope: -0.6665507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.07044547 + inSlope: 0.040575787 + outSlope: 0.040575787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0788278 + inSlope: -0.13447827 + outSlope: -0.13447827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.06148027 + inSlope: -0.40192306 + outSlope: -0.40192306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.052032936 + inSlope: 0.1900633 + outSlope: 0.1900633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.074151166 + inSlope: 1.0251275 + outSlope: 1.0251275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.12037475 + inSlope: 1.6810465 + outSlope: 1.6810465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.18622094 + inSlope: 1.9988304 + outSlope: 1.9988304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.2536301 + inSlope: 1.5953194 + outSlope: 1.5953194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.29257554 + inSlope: 0.61422855 + outSlope: 0.61422855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.2945787 + inSlope: -0.09851383 + outSlope: -0.09851383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.2787503 + inSlope: -0.17404583 + outSlope: -0.17404583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.26564595 + inSlope: -0.3914165 + outSlope: -0.3914165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.24831046 + inSlope: -0.51805955 + outSlope: -0.51805955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.20899905 + inSlope: -0.7556405 + outSlope: -0.7556405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.18073267 + inSlope: -0.915993 + outSlope: -0.915993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.1479328 + inSlope: -0.49199677 + outSlope: -0.49199677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.19853027 + inSlope: -0.006048828 + outSlope: -0.006048828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.20009366 + inSlope: 0.029004732 + outSlope: 0.029004732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.19679825 + inSlope: 0.0076281913 + outSlope: 0.0076281913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.19958511 + inSlope: -0.09891071 + outSlope: -0.09891071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.2033923 + inSlope: 0.06920095 + outSlope: 0.06920095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.19497171 + inSlope: 0.23090798 + outSlope: 0.23090798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.18799843 + inSlope: 0.5704692 + outSlope: 0.5704692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.15694043 + inSlope: 2.4272008 + outSlope: 2.4272008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.02618505 + inSlope: 4.7884326 + outSlope: 4.7884326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1622884 + inSlope: 3.9304166 + outSlope: 3.9304166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.2358427 + inSlope: 0.7405768 + outSlope: 0.7405768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.21166016 + inSlope: -0.9475122 + outSlope: -0.9475122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.1726752 + inSlope: -0.8991816 + outSlope: -0.8991816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.15171473 + inSlope: -0.45840758 + outSlope: -0.45840758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.13086137 + inSlope: -0.5011146 + outSlope: -0.5011146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.10870705 + inSlope: -0.5588354 + outSlope: -0.5588354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.093605675 + inSlope: -0.19286212 + outSlope: -0.19286212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.09584959 + inSlope: -0.35319278 + outSlope: -0.35319278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.070059516 + inSlope: -1.6819419 + outSlope: -1.6819419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.016279921 + inSlope: -2.4278922 + outSlope: -2.4278922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.09179996 + inSlope: -1.1387538 + outSlope: -1.1387538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.09219677 + inSlope: -0.104511626 + outSlope: -0.104511626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.09876741 + inSlope: -0.39831272 + outSlope: -0.39831272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.11875094 + inSlope: -0.57436013 + outSlope: -0.57436013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.13705808 + inSlope: -0.6530601 + outSlope: -0.6530601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.16228826 + inSlope: -0.6750958 + outSlope: -0.6750958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.18206446 + inSlope: -0.43832672 + outSlope: -0.43832672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.19523524 + inSlope: 0.032664616 + outSlope: 0.032664616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.018000258 + inSlope: -0.6769328 + outSlope: -0.6769328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00456417 + inSlope: -0.65440696 + outSlope: -0.65440696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.025626875 + inSlope: -0.6662526 + outSlope: -0.6662526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.048981015 + inSlope: -0.97627807 + outSlope: -0.97627807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.15230124 + inSlope: -2.1397674 + outSlope: -2.1397674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.23336327 + inSlope: -1.706603 + outSlope: -1.706603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2660748 + inSlope: 0.25414354 + outSlope: 0.25414354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.21642037 + inSlope: 1.5400317 + outSlope: 1.5400317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.16340603 + inSlope: 2.4895344 + outSlope: 2.4895344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.05045142 + inSlope: 2.7204535 + outSlope: 2.7204535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.017957522 + inSlope: 0.45914972 + outSlope: 0.45914972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.01984148 + inSlope: -1.0851291 + outSlope: -1.0851291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.054384448 + inSlope: -0.4396967 + outSlope: -0.4396967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.049154587 + inSlope: 0.022958491 + outSlope: 0.022958491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.05285388 + inSlope: -0.42752564 + outSlope: -0.42752564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.077656314 + inSlope: -1.1288095 + outSlope: -1.1288095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.1281079 + inSlope: -2.110974 + outSlope: -2.110974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.21838787 + inSlope: -2.776523 + outSlope: -2.776523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.31320944 + inSlope: -1.1412512 + outSlope: -1.1412512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.29447138 + inSlope: 2.4736996 + outSlope: 2.4736996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.14829603 + inSlope: 5.3584757 + outSlope: 5.3584757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.062760234 + inSlope: 4.498614 + outSlope: 4.498614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.15161142 + inSlope: 1.9801011 + outSlope: 1.9801011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.19476709 + inSlope: 0.37771705 + outSlope: 0.37771705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.1767926 + inSlope: -0.80575955 + outSlope: -0.80575955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.1000914 + inSlope: -1.1047882 + outSlope: -1.1047882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.06739724 + inSlope: -0.77925324 + outSlope: -0.77925324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.048141174 + inSlope: -0.45526558 + outSlope: -0.45526558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.037046228 + inSlope: -0.4290312 + outSlope: -0.4290312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.019539058 + inSlope: -0.26260686 + outSlope: -0.26260686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.00000010245282 + inSlope: 0.073011026 + outSlope: 0.073011026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.004867299 + inSlope: -0.40248495 + outSlope: -0.40248495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.026832432 + inSlope: -2.182841 + outSlope: -2.182841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.14065543 + inSlope: -1.9287179 + outSlope: -1.9287179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.15541361 + inSlope: 0.2786842 + outSlope: 0.2786842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.12207648 + inSlope: 1.1738614 + outSlope: 1.1738614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.07715615 + inSlope: 1.4264902 + outSlope: 1.4264902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.026977101 + inSlope: 1.0709345 + outSlope: 1.0709345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.005760518 + inSlope: 0.18355447 + outSlope: 0.18355447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.014740128 + inSlope: -0.174722 + outSlope: -0.174722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.017408645 + inSlope: -0.012095302 + outSlope: -0.012095302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.015546482 + inSlope: 0.048802007 + outSlope: 0.048802007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.014155177 + inSlope: 0.025568174 + outSlope: 0.025568174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.013841938 + inSlope: -0.5476535 + outSlope: -0.5476535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.050665375 + inSlope: -0.20321071 + outSlope: -0.20321071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.027389266 + inSlope: 0.96963716 + outSlope: 0.96963716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.01397708 + inSlope: 0.42270225 + outSlope: 0.42270225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0007908334 + inSlope: -0.40862498 + outSlope: -0.40862498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.013264608 + inSlope: -0.054662377 + outSlope: -0.054662377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0028533458 + inSlope: 0.1989677 + outSlope: 0.1989677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.00000010245282 + inSlope: 0.042798616 + outSlope: 0.042798616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.00000010245282 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6645524 + inSlope: 0.13720751 + outSlope: 0.13720751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.6573845 + inSlope: 0.3283363 + outSlope: 0.3283363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.6380897 + inSlope: 0.6481817 + outSlope: 0.6481817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.6141724 + inSlope: 0.039545596 + outSlope: 0.039545596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.63545334 + inSlope: -1.3059181 + outSlope: -1.3059181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.7012336 + inSlope: -1.9763746 + outSlope: -1.9763746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.84171116 + inSlope: -2.3841853 + outSlope: -2.3841853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.92615736 + inSlope: -1.8278085 + outSlope: -1.8278085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.96356505 + inSlope: -0.18850389 + outSlope: -0.18850389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.9031565 + inSlope: 0.8450242 + outSlope: 0.8450242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.8578321 + inSlope: 0.9382471 + outSlope: 0.9382471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.756616 + inSlope: 0.51571083 + outSlope: 0.51571083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.7587254 + inSlope: -0.27945048 + outSlope: -0.27945048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.7430737 + inSlope: 0.6785492 + outSlope: 0.6785492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.70360863 + inSlope: 0.10435251 + outSlope: 0.10435251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.714192 + inSlope: 0.11176655 + outSlope: 0.11176655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.66455007 + inSlope: 0.16067642 + outSlope: 0.16067642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.075189196 + inSlope: 2.0812838 + outSlope: 2.0812838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.14456533 + inSlope: 1.8883255 + outSlope: 1.8883255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.20107757 + inSlope: 1.4295495 + outSlope: 1.4295495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.23986864 + inSlope: 0.6070323 + outSlope: 0.6070323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.24154639 + inSlope: -0.29243255 + outSlope: -0.29243255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.22037314 + inSlope: -0.47425383 + outSlope: -0.47425383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.20992947 + inSlope: 0.3578108 + outSlope: 0.3578108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.24422719 + inSlope: 1.3175051 + outSlope: 1.3175051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.29776314 + inSlope: 1.0811452 + outSlope: 1.0811452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.31630352 + inSlope: -0.7090746 + outSlope: -0.7090746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2504915 + inSlope: -2.886077 + outSlope: -2.886077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.1238984 + inSlope: -3.5105596 + outSlope: -3.5105596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.016454116 + inSlope: -2.5752273 + outSlope: -2.5752273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.04778351 + inSlope: -1.9379575 + outSlope: -1.9379575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.11274305 + inSlope: -2.2624812 + outSlope: -2.2624812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1986155 + inSlope: -2.4778433 + outSlope: -2.4778433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.27793258 + inSlope: -1.8635479 + outSlope: -1.8635479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.32285213 + inSlope: -0.8336503 + outSlope: -0.8336503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.3335093 + inSlope: -0.14123724 + outSlope: -0.14123724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.33226794 + inSlope: 0.34180403 + outSlope: 0.34180403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.29222643 + inSlope: 0.1575003 + outSlope: 0.1575003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.30022234 + inSlope: -0.6067985 + outSlope: -0.6067985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.39580715 + inSlope: -0.35384277 + outSlope: -0.35384277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.39372632 + inSlope: 0.89646435 + outSlope: 0.89646435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.3360429 + inSlope: 2.534405 + outSlope: 2.534405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.22476596 + inSlope: 3.4283602 + outSlope: 3.4283602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.107485585 + inSlope: 3.241482 + outSlope: 3.241482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.008667367 + inSlope: 2.740112 + outSlope: 2.740112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.075188674 + inSlope: 1.2578373 + outSlope: 1.2578373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.41141424 + inSlope: 0.27694434 + outSlope: 0.27694434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.40218276 + inSlope: 0.5237987 + outSlope: 0.5237987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.3630301 + inSlope: -0.036024347 + outSlope: -0.036024347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.40477085 + inSlope: -0.5901731 + outSlope: -0.5901731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.40540317 + inSlope: 0.56718934 + outSlope: 0.56718934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.35989887 + inSlope: 0.60457265 + outSlope: 0.60457265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.34081453 + inSlope: 0.7009691 + outSlope: 0.7009691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.25403377 + inSlope: 0.6063896 + outSlope: 0.6063896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.2680999 + inSlope: -0.7108213 + outSlope: -0.7108213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.35125 + inSlope: -0.6642057 + outSlope: -0.6642057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.3890431 + inSlope: 0.12611382 + outSlope: 0.12611382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.38435367 + inSlope: -0.30766666 + outSlope: -0.30766666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.41141403 + inSlope: -0.18534864 + outSlope: -0.18534864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08918232 + inSlope: 0.77143276 + outSlope: 0.77143276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.18055826 + inSlope: 0.47587848 + outSlope: 0.47587848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.19383183 + inSlope: 0.2294936 + outSlope: 0.2294936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.19103414 + inSlope: -0.14844419 + outSlope: -0.14844419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.17853257 + inSlope: -0.30436614 + outSlope: -0.30436614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.12912321 + inSlope: -0.6870333 + outSlope: -0.6870333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.07995851 + inSlope: -0.6372541 + outSlope: -0.6372541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.04345945 + inSlope: -0.5649685 + outSlope: -0.5649685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.023595035 + inSlope: -0.5508741 + outSlope: -0.5508741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0067345095 + inSlope: -0.3291297 + outSlope: -0.3291297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0016530672 + inSlope: -0.05646476 + outSlope: -0.05646476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0029701865 + inSlope: -0.008514704 + outSlope: -0.008514704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0010854175 + inSlope: -0.16511756 + outSlope: -0.16511756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.008037644 + inSlope: -0.28184015 + outSlope: -0.28184015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.017703926 + inSlope: -0.16609369 + outSlope: -0.16609369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.019110566 + inSlope: 0.077043444 + outSlope: 0.077043444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.012567704 + inSlope: 0.22100785 + outSlope: 0.22100785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0043767085 + inSlope: 0.2641438 + outSlope: 0.2641438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0050418815 + inSlope: 0.33914483 + outSlope: 0.33914483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.01823295 + inSlope: 0.4930435 + outSlope: 0.4930435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.03791144 + inSlope: 0.67114353 + outSlope: 0.67114353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.06297581 + inSlope: 0.7690685 + outSlope: 0.7690685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.08918272 + inSlope: 0.39310262 + outSlope: 0.39310262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10154754 + inSlope: 0.6916442 + outSlope: 0.6916442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.12460235 + inSlope: 0.31041312 + outSlope: 0.31041312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.12224175 + inSlope: -0.22492108 + outSlope: -0.22492108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.10960761 + inSlope: -0.38302648 + outSlope: -0.38302648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.09670665 + inSlope: -0.31089753 + outSlope: -0.31089753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.088881105 + inSlope: -0.26764932 + outSlope: -0.26764932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.07886336 + inSlope: -0.49054396 + outSlope: -0.49054396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.05617817 + inSlope: -0.80370337 + outSlope: -0.80370337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.02528314 + inSlope: -0.8836453 + outSlope: -0.8836453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0027315123 + inSlope: -0.79846704 + outSlope: -0.79846704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.02794799 + inSlope: -0.832852 + outSlope: -0.832852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.058254976 + inSlope: -0.9625317 + outSlope: -0.9625317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.092116795 + inSlope: -0.9232464 + outSlope: -0.9232464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.11980476 + inSlope: -0.7254791 + outSlope: -0.7254791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.15832838 + inSlope: -0.48964763 + outSlope: -0.48964763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.19245678 + inSlope: -0.7019546 + outSlope: -0.7019546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.25263909 + inSlope: -0.8858127 + outSlope: -0.8858127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.27897638 + inSlope: -0.76683426 + outSlope: -0.76683426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.31762135 + inSlope: -0.19405892 + outSlope: -0.19405892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.31284222 + inSlope: 0.14796276 + outSlope: 0.14796276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.30683443 + inSlope: 0.5479897 + outSlope: 0.5479897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.27630955 + inSlope: 1.3840363 + outSlope: 1.3840363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.21456538 + inSlope: 2.0607083 + outSlope: 2.0607083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.138929 + inSlope: 2.4528797 + outSlope: 2.4528797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.05104009 + inSlope: 2.6469026 + outSlope: 2.6469026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.037531015 + inSlope: 2.288804 + outSlope: 2.288804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.10154694 + inSlope: 0.9602364 + outSlope: 0.9602364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6512647 + inSlope: 0.72185034 + outSlope: 0.72185034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.71340597 + inSlope: 1.2559532 + outSlope: 1.2559532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.83205587 + inSlope: 0.5656769 + outSlope: 0.5656769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.7888996 + inSlope: -0.9509075 + outSlope: -0.9509075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.7212897 + inSlope: -0.18951134 + outSlope: -0.18951134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.702231 + inSlope: -0.38003147 + outSlope: -0.38003147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.67780524 + inSlope: -0.47694165 + outSlope: -0.47694165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.6568902 + inSlope: -1.0488409 + outSlope: -1.0488409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.50253505 + inSlope: -0.68702006 + outSlope: -0.68702006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.51429045 + inSlope: 0.55458605 + outSlope: 0.55458605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.56661904 + inSlope: 1.0990672 + outSlope: 1.0990672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.66642386 + inSlope: 0.24150133 + outSlope: 0.24150133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6496646 + inSlope: -0.17000312 + outSlope: -0.17000312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.64904785 + inSlope: 0.07849657 + outSlope: 0.07849657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.29599196 + inSlope: 0.057739016 + outSlope: 0.057739016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.29406732 + inSlope: -0.21061553 + outSlope: -0.21061553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.34032908 + inSlope: -1.0715997 + outSlope: -1.0715997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.41482452 + inSlope: -0.7307937 + outSlope: -0.7307937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.43780348 + inSlope: -0.08076489 + outSlope: -0.08076489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.41812876 + inSlope: 0.6344645 + outSlope: 0.6344645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.37211272 + inSlope: 0.53572464 + outSlope: 0.53572464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.32452083 + inSlope: 0.43472305 + outSlope: 0.43472305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.29842985 + inSlope: 0.20419514 + outSlope: 0.20419514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.2955044 + inSlope: -0.027767602 + outSlope: -0.027767602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.3073823 + inSlope: -0.48246077 + outSlope: -0.48246077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.35014334 + inSlope: -0.4560337 + outSlope: -0.4560337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.37625277 + inSlope: -0.66387075 + outSlope: -0.66387075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.42599925 + inSlope: -0.17120539 + outSlope: -0.17120539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.41586444 + inSlope: 0.7746059 + outSlope: 0.7746059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.32461137 + inSlope: 1.1755077 + outSlope: 1.1755077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.2959917 + inSlope: 0.42929402 + outSlope: 0.42929402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13097487 + inSlope: 0.009461491 + outSlope: 0.009461491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.13065949 + inSlope: -0.18845266 + outSlope: -0.18845266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.14353839 + inSlope: -0.66103524 + outSlope: -0.66103524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.17472851 + inSlope: -1.1549525 + outSlope: -1.1549525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.22053522 + inSlope: -1.1889112 + outSlope: -1.1889112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.25398925 + inSlope: -0.6310607 + outSlope: -0.6310607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.25681677 + inSlope: 0.27207458 + outSlope: 0.27207458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.19316705 + inSlope: 0.35727215 + outSlope: 0.35727215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.18353827 + inSlope: 0.3154335 + outSlope: 0.3154335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.16381578 + inSlope: 0.09784384 + outSlope: 0.09784384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.17054917 + inSlope: -0.02873806 + outSlope: -0.02873806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.16753109 + inSlope: 0.1438675 + outSlope: 0.1438675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.160958 + inSlope: 0.05279897 + outSlope: 0.05279897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.16401117 + inSlope: -0.3110752 + outSlope: -0.3110752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.22615057 + inSlope: -0.4165926 + outSlope: -0.4165926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.22857784 + inSlope: 0.20024744 + outSlope: 0.20024744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.20818007 + inSlope: 0.46308511 + outSlope: 0.46308511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.16860068 + inSlope: 0.6527211 + outSlope: 0.6527211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.1309747 + inSlope: 0.22833765 + outSlope: 0.22833765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.053737063 + inSlope: 0.5730832 + outSlope: 0.5730832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.03463429 + inSlope: 0.16526398 + outSlope: 0.16526398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.042719465 + inSlope: -0.52847517 + outSlope: -0.52847517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.06986597 + inSlope: -0.9633736 + outSlope: -0.9633736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.106944375 + inSlope: -0.6773432 + outSlope: -0.6773432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.11502218 + inSlope: 0.23905519 + outSlope: 0.23905519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.09100735 + inSlope: 0.24823582 + outSlope: 0.24823582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.09847312 + inSlope: -0.89911026 + outSlope: -0.89911026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.15094803 + inSlope: -1.354902 + outSlope: -1.354902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.18879992 + inSlope: -0.44300103 + outSlope: -0.44300103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.18048143 + inSlope: 0.37043276 + outSlope: 0.37043276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.1641044 + inSlope: 0.20577085 + outSlope: 0.20577085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.16676338 + inSlope: 0.016871579 + outSlope: 0.016871579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.16297963 + inSlope: 0.35506147 + outSlope: 0.35506147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.14309262 + inSlope: 0.6019467 + outSlope: 0.6019467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.109154224 + inSlope: 0.21105067 + outSlope: 0.21105067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.10877982 + inSlope: -0.1740743 + outSlope: -0.1740743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.12075917 + inSlope: -0.40497577 + outSlope: -0.40497577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.16728455 + inSlope: -1.3916025 + outSlope: -1.3916025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.22855173 + inSlope: -1.790109 + outSlope: -1.790109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.28662515 + inSlope: -1.0067887 + outSlope: -1.0067887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.29567093 + inSlope: 0.19272417 + outSlope: 0.19272417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.27377686 + inSlope: 0.23023197 + outSlope: 0.23023197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.2803221 + inSlope: -0.56521136 + outSlope: -0.56521136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.31145763 + inSlope: -0.655381 + outSlope: -0.655381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.3240142 + inSlope: 0.28503644 + outSlope: 0.28503644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.29245517 + inSlope: 1.6798975 + outSlope: 1.6798975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.21202107 + inSlope: 2.6358683 + outSlope: 2.6358683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.11673079 + inSlope: 2.3742719 + outSlope: 2.3742719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.053736206 + inSlope: 0.9449163 + outSlope: 0.9449163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.370993 + inSlope: -0.18754362 + outSlope: -0.18754362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.3775192 + inSlope: 0.27794346 + outSlope: 0.27794346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.34227702 + inSlope: 0.32950848 + outSlope: 0.32950848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.32894605 + inSlope: 0.87342656 + outSlope: 0.87342656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.281246 + inSlope: 1.5384476 + outSlope: 1.5384476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.22638288 + inSlope: 1.1461155 + outSlope: 1.1461155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.2048383 + inSlope: 0.33197594 + outSlope: 0.33197594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.20425116 + inSlope: 0.2581168 + outSlope: 0.2581168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.1876305 + inSlope: 0.7993178 + outSlope: 0.7993178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.15096329 + inSlope: 1.0928059 + outSlope: 1.0928059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.11477679 + inSlope: 1.0339775 + outSlope: 1.0339775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.08203149 + inSlope: 1.0474312 + outSlope: 1.0474312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.04494804 + inSlope: 1.1764032 + outSlope: 1.1764032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.003604545 + inSlope: 0.898039 + outSlope: 0.898039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.01492124 + inSlope: 0.32383275 + outSlope: 0.32383275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.01798429 + inSlope: -0.117560394 + outSlope: -0.117560394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0070838933 + inSlope: -0.5544297 + outSlope: -0.5544297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.018977702 + inSlope: -1.0627799 + outSlope: -1.0627799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.06376808 + inSlope: -1.4879074 + outSlope: -1.4879074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.118171535 + inSlope: -1.4675713 + outSlope: -1.4675713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.16160625 + inSlope: -1.183122 + outSlope: -1.183122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.19704634 + inSlope: -1.2265654 + outSlope: -1.2265654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.28921363 + inSlope: -1.1535373 + outSlope: -1.1535373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.35847047 + inSlope: -0.44631487 + outSlope: -0.44631487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.37099433 + inSlope: -0.1878574 + outSlope: -0.1878574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.43165237 + inSlope: -2.0720065 + outSlope: -2.0720065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.56863385 + inSlope: -1.7044713 + outSlope: -1.7044713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.6143507 + inSlope: -0.27387038 + outSlope: -0.27387038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.5868919 + inSlope: 2.0171394 + outSlope: 2.0171394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.47987473 + inSlope: 3.0406833 + outSlope: 3.0406833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.38417965 + inSlope: 1.656745 + outSlope: 1.656745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.36942503 + inSlope: 0.069778115 + outSlope: 0.069778115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.37952778 + inSlope: 0.2692464 + outSlope: 0.2692464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.2984547 + inSlope: 1.6501371 + outSlope: 1.6501371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.24146613 + inSlope: 1.8792543 + outSlope: 1.8792543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.17317103 + inSlope: 2.0567417 + outSlope: 2.0567417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.10434996 + inSlope: 1.7889967 + outSlope: 1.7889967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.053904597 + inSlope: 1.4059992 + outSlope: 1.4059992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.010616727 + inSlope: 1.3167486 + outSlope: 1.3167486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.033878643 + inSlope: 1.2145897 + outSlope: 1.2145897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.07035599 + inSlope: 0.9167105 + outSlope: 0.9167105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.11076379 + inSlope: 0.3806414 + outSlope: 0.3806414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.12036878 + inSlope: 0.16947381 + outSlope: 0.16947381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.122062035 + inSlope: -0.26267037 + outSlope: -0.26267037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10285744 + inSlope: -0.78797275 + outSlope: -0.78797275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.06953051 + inSlope: -0.6808623 + outSlope: -0.6808623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.05746658 + inSlope: -0.18051693 + outSlope: -0.18051693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.057496037 + inSlope: -0.74527925 + outSlope: -0.74527925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0077812546 + inSlope: -2.322362 + outSlope: -2.322362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.09732804 + inSlope: -3.2046702 + outSlope: -3.2046702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.20586342 + inSlope: -2.8940325 + outSlope: -2.8940325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.36216572 + inSlope: -2.1208298 + outSlope: -2.1208298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.4316523 + inSlope: -1.042296 + outSlope: -1.042296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.35404813 + inSlope: -0.0059249992 + outSlope: -0.0059249992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.37707797 + inSlope: -0.6360398 + outSlope: -0.6360398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.42956173 + inSlope: -0.6124766 + outSlope: -0.6124766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.4572583 + inSlope: -0.5408545 + outSlope: -0.5408545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.49840447 + inSlope: -0.23866388 + outSlope: -0.23866388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.48712897 + inSlope: 0.09547417 + outSlope: 0.09547417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.60429525 + inSlope: -0.7659799 + outSlope: -0.7659799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.60764235 + inSlope: 0.95077455 + outSlope: 0.95077455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.46380132 + inSlope: 1.305224 + outSlope: 1.305224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.37838826 + inSlope: 0.34602463 + outSlope: 0.34602463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.35404813 + inSlope: 0.06791961 + outSlope: 0.06791961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.005811389 + inSlope: -0.7451144 + outSlope: -0.7451144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.019025758 + inSlope: -0.7580034 + outSlope: -0.7580034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.044722173 + inSlope: -0.6776613 + outSlope: -0.6776613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.06420318 + inSlope: -0.42924052 + outSlope: -0.42924052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07333821 + inSlope: -0.12252544 + outSlope: -0.12252544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.07237154 + inSlope: 0.2252012 + outSlope: 0.2252012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.05832479 + inSlope: 0.596696 + outSlope: 0.596696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.032591805 + inSlope: 0.80736756 + outSlope: 0.80736756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.004500293 + inSlope: 0.83626676 + outSlope: 0.83626676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.023159306 + inSlope: 0.91327226 + outSlope: 0.91327226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.056384522 + inSlope: 1.0768856 + outSlope: 1.0768856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.094951674 + inSlope: 1.1101674 + outSlope: 1.1101674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.13039571 + inSlope: 0.9852639 + outSlope: 0.9852639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.16063596 + inSlope: 0.87622046 + outSlope: 0.87622046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.22612233 + inSlope: 0.35772544 + outSlope: 0.35772544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.22911458 + inSlope: -0.43271536 + outSlope: -0.43271536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.15417631 + inSlope: -1.0648748 + outSlope: -1.0648748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0851748 + inSlope: -0.60281795 + outSlope: -0.60281795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.07518961 + inSlope: -0.14753902 + outSlope: -0.14753902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.075338855 + inSlope: -0.11649819 + outSlope: -0.11649819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.06742306 + inSlope: -0.38870367 + outSlope: -0.38870367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.04942529 + inSlope: -0.5908471 + outSlope: -0.5908471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.028033294 + inSlope: -0.654207 + outSlope: -0.654207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.005811454 + inSlope: -0.33332673 + outSlope: -0.33332673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11969637 + inSlope: -0.76908743 + outSlope: -0.76908743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.09406012 + inSlope: -0.82768273 + outSlope: -0.82768273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.033953518 + inSlope: -0.86834574 + outSlope: -0.86834574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.006627803 + inSlope: -0.7762141 + outSlope: -0.7762141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.01779409 + inSlope: -0.47250795 + outSlope: -0.47250795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.024872728 + inSlope: 0.35559076 + outSlope: 0.35559076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0059119584 + inSlope: 1.4013603 + outSlope: 1.4013603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.068551295 + inSlope: 1.9214582 + outSlope: 1.9214582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.13400917 + inSlope: 1.6772735 + outSlope: 1.6772735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.18036953 + inSlope: 1.1407578 + outSlope: 1.1407578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.21005969 + inSlope: 0.8433405 + outSlope: 0.8433405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.2547488 + inSlope: 0.4332646 + outSlope: 0.4332646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.27600503 + inSlope: 0.3319645 + outSlope: 0.3319645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.29270318 + inSlope: 0.015222751 + outSlope: 0.015222751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.28251043 + inSlope: -0.1857792 + outSlope: -0.1857792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.26377717 + inSlope: -0.45336205 + outSlope: -0.45336205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.22944519 + inSlope: -0.4167586 + outSlope: -0.4167586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.20850499 + inSlope: -0.13325463 + outSlope: -0.13325463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.19189057 + inSlope: -0.48266482 + outSlope: -0.48266482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.14606561 + inSlope: -0.7690685 + outSlope: -0.7690685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.11969742 + inSlope: -0.39552176 + outSlope: -0.39552176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6123452 + inSlope: -0.9667092 + outSlope: -0.9667092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5801216 + inSlope: -1.2272375 + outSlope: -1.2272375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.48256484 + inSlope: -1.2301433 + outSlope: -1.2301433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.44109067 + inSlope: 0.7609361 + outSlope: 0.7609361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.57635814 + inSlope: 1.2648163 + outSlope: 1.2648163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.6492332 + inSlope: 0.020095121 + outSlope: 0.020095121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6623468 + inSlope: 0.13335396 + outSlope: 0.13335396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.665452 + inSlope: -0.4222411 + outSlope: -0.4222411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.60573655 + inSlope: -0.7084933 + outSlope: -0.7084933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.59253585 + inSlope: -0.03672628 + outSlope: -0.03672628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6169224 + inSlope: 0.13584085 + outSlope: 0.13584085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.61234415 + inSlope: -0.06867331 + outSlope: -0.06867331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.123283684 + inSlope: -0.013674124 + outSlope: -0.013674124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.12373949 + inSlope: 0.09611662 + outSlope: 0.09611662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.11687591 + inSlope: 0.19249451 + outSlope: 0.19249451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.11090652 + inSlope: -0.070054516 + outSlope: -0.070054516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.12154621 + inSlope: -0.54825103 + outSlope: -0.54825103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.14745659 + inSlope: -0.69220454 + outSlope: -0.69220454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.16769318 + inSlope: -0.38432938 + outSlope: -0.38432938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.17307855 + inSlope: -0.24425024 + outSlope: -0.24425024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.18397653 + inSlope: -0.22568734 + outSlope: -0.22568734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.18812437 + inSlope: 0.7729807 + outSlope: 0.7729807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.13244449 + inSlope: 2.0275004 + outSlope: 2.0275004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.05295768 + inSlope: 1.1342247 + outSlope: 1.1342247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.056829516 + inSlope: -0.92886037 + outSlope: -0.92886037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.1148817 + inSlope: -1.2194083 + outSlope: -1.2194083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.1381234 + inSlope: -0.4984819 + outSlope: -0.4984819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.14811382 + inSlope: -0.5742625 + outSlope: -0.5742625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.17640758 + inSlope: -0.7305989 + outSlope: -0.7305989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.19682045 + inSlope: -0.38215873 + outSlope: -0.38215873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.20188484 + inSlope: -0.18327309 + outSlope: -0.18327309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.20903866 + inSlope: -0.22944938 + outSlope: -0.22944938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.21718146 + inSlope: -0.05091566 + outSlope: -0.05091566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.21243303 + inSlope: 0.37009522 + outSlope: 0.37009522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.17066233 + inSlope: 0.49933255 + outSlope: 0.49933255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.14923692 + inSlope: 0.46346036 + outSlope: 0.46346036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.12832223 + inSlope: 0.63357913 + outSlope: 0.63357913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.10699831 + inSlope: 0.41007087 + outSlope: 0.41007087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.100984186 + inSlope: -0.004224196 + outSlope: -0.004224196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.11745935 + inSlope: -0.24006477 + outSlope: -0.24006477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.123284236 + inSlope: -0.08737306 + outSlope: -0.08737306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.14971845 + inSlope: -0.09616702 + outSlope: -0.09616702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.15292402 + inSlope: -0.03162257 + outSlope: -0.03162257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.1515651 + inSlope: -0.057211522 + outSlope: -0.057211522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.164041 + inSlope: -0.23719554 + outSlope: -0.23719554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.17024086 + inSlope: 0.31860533 + outSlope: 0.31860533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.11930895 + inSlope: 0.89192706 + outSlope: 0.89192706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.06796153 + inSlope: 0.56864417 + outSlope: 0.56864417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.052841984 + inSlope: 0.14552803 + outSlope: 0.14552803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.058259647 + inSlope: -0.4678089 + outSlope: -0.4678089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.08402924 + inSlope: -0.7928935 + outSlope: -0.7928935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.11111919 + inSlope: -0.63667035 + outSlope: -0.63667035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.12647392 + inSlope: -0.34970936 + outSlope: -0.34970936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.13443317 + inSlope: -0.27841693 + outSlope: -0.27841693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.14503504 + inSlope: -0.38937825 + outSlope: -0.38937825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.17481743 + inSlope: -0.23798835 + outSlope: -0.23798835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.1762576 + inSlope: 0.1835431 + outSlope: 0.1835431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.16258124 + inSlope: 0.41115606 + outSlope: 0.41115606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.14884719 + inSlope: 0.2910174 + outSlope: 0.2910174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.14318006 + inSlope: 0.20381036 + outSlope: 0.20381036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.13525984 + inSlope: 0.33335114 + outSlope: 0.33335114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.10827867 + inSlope: 0.20540832 + outSlope: 0.20540832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.10726277 + inSlope: -0.16775873 + outSlope: -0.16775873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.1497185 + inSlope: -0.18478315 + outSlope: -0.18478315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.046228025 + inSlope: -0.98331064 + outSlope: -0.98331064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.07900505 + inSlope: -1.157308 + outSlope: -1.157308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.1233819 + inSlope: -1.2603788 + outSlope: -1.2603788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.16303031 + inSlope: -1.0733213 + outSlope: -1.0733213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.19493666 + inSlope: -1.0816332 + outSlope: -1.0816332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.23513919 + inSlope: -1.2912939 + outSlope: -1.2912939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.28102294 + inSlope: -0.8411307 + outSlope: -0.8411307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2912146 + inSlope: 0.602044 + outSlope: 0.602044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.24088667 + inSlope: 1.9417295 + outSlope: 1.9417295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.16176596 + inSlope: 2.095655 + outSlope: 2.095655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.10117635 + inSlope: 1.4767379 + outSlope: 1.4767379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.06331678 + inSlope: 1.143509 + outSlope: 1.143509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.024942387 + inSlope: 1.2237031 + outSlope: 1.2237031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.018263457 + inSlope: 1.1717403 + outSlope: 1.1717403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.07616009 + inSlope: 0.4270747 + outSlope: 0.4270747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.076721504 + inSlope: -0.24026278 + outSlope: -0.24026278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.06562775 + inSlope: -0.40578672 + outSlope: -0.40578672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.049669053 + inSlope: -0.42144406 + outSlope: -0.42144406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.037531473 + inSlope: -0.26072875 + outSlope: -0.26072875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.032287143 + inSlope: -0.12381807 + outSlope: -0.12381807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.029276934 + inSlope: -0.10275361 + outSlope: -0.10275361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.025436902 + inSlope: -0.23257247 + outSlope: -0.23257247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.01377209 + inSlope: -0.49034452 + outSlope: -0.49034452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.007252721 + inSlope: -0.5249385 + outSlope: -0.5249385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.021223802 + inSlope: -0.277082 + outSlope: -0.277082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.025724862 + inSlope: -0.14305194 + outSlope: -0.14305194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.030760597 + inSlope: -0.10639538 + outSlope: -0.10639538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.03281789 + inSlope: -0.04192878 + outSlope: -0.04192878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.033555847 + inSlope: -0.20115691 + outSlope: -0.20115691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.046228383 + inSlope: -0.19008754 + outSlope: -0.19008754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3385034 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -1.3385034 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23385485 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.23385485 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.62292284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.62292284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57639545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.57639545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.809624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.809624 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3384522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -1.3384522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45863408 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.45863408 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.529714 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.529714 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.5764368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9042923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.9042923 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12709586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.12709586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.0333334 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Left.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Left.anim.meta new file mode 100644 index 0000000..dbf20a5 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Left.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8c59196bf56e9204e8b003ac319dae90 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Left.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Right.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Right.anim new file mode 100644 index 0000000..ddafe57 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Right.anim @@ -0,0 +1,16212 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Strafe_Right + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.005032698 + inSlope: 0.68633646 + outSlope: 0.68633646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.050434526 + inSlope: 0.662683 + outSlope: 0.662683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.113534026 + inSlope: 0.5862702 + outSlope: 0.5862702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.13268468 + inSlope: 0.60910845 + outSlope: 0.60910845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.27113375 + inSlope: 0.75898707 + outSlope: 0.75898707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.31914577 + inSlope: 0.68229353 + outSlope: 0.68229353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.37120056 + inSlope: 0.8981942 + outSlope: 0.8981942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.59728926 + inSlope: 1.0671518 + outSlope: 1.0671518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.806389 + inSlope: 0.7279599 + outSlope: 0.7279599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.82999057 + inSlope: 0.35402295 + outSlope: 0.35402295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9902806 + inSlope: -0.05691826 + outSlope: -0.05691826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9741371 + inSlope: 0.13191552 + outSlope: 0.13191552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.99438715 + inSlope: -0.07421404 + outSlope: -0.07421404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.9908503 + inSlope: 0.0070394166 + outSlope: 0.0070394166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.051464565 + inSlope: 0.0029250605 + outSlope: 0.0029250605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.05097678 + inSlope: -0.03193298 + outSlope: -0.03193298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.047587726 + inSlope: 0.009943388 + outSlope: 0.009943388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.048710052 + inSlope: 0.08441185 + outSlope: 0.08441185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.05856628 + inSlope: 0.15026675 + outSlope: 0.15026675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.07046309 + inSlope: -0.049912143 + outSlope: -0.049912143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.063118845 + inSlope: -0.04595612 + outSlope: -0.04595612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.06233142 + inSlope: 0.00079432037 + outSlope: 0.00079432037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.062180795 + inSlope: -0.03296265 + outSlope: -0.03296265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.051585153 + inSlope: -0.05702096 + outSlope: -0.05702096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.051219042 + inSlope: 0.011191123 + outSlope: 0.011191123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.05143498 + inSlope: 0.002722775 + outSlope: 0.002722775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0632419 + inSlope: 0.025907455 + outSlope: 0.025907455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.07045472 + inSlope: 0.117483675 + outSlope: 0.117483675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.08564392 + inSlope: 0.13304786 + outSlope: 0.13304786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.08958316 + inSlope: -0.041470084 + outSlope: -0.041470084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.07732728 + inSlope: -0.14985073 + outSlope: -0.14985073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.065405056 + inSlope: 0.050066967 + outSlope: 0.050066967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.075743645 + inSlope: 0.031320117 + outSlope: 0.031320117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.07390544 + inSlope: -0.030388746 + outSlope: -0.030388746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.07232706 + inSlope: -0.04844965 + outSlope: -0.04844965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.07014997 + inSlope: -0.051471606 + outSlope: -0.051471606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.06723979 + inSlope: -0.06681762 + outSlope: -0.06681762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.06259239 + inSlope: -0.029401062 + outSlope: -0.029401062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.06324193 + inSlope: 0.011413217 + outSlope: 0.011413217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.18104015 + inSlope: 0.21190165 + outSlope: 0.21190165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1987807 + inSlope: 0.35614234 + outSlope: 0.35614234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.25777215 + inSlope: 0.18230529 + outSlope: 0.18230529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.27858236 + inSlope: 0.47028875 + outSlope: 0.47028875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.33253047 + inSlope: 0.24433585 + outSlope: 0.24433585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.31623346 + inSlope: -0.38235432 + outSlope: -0.38235432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.2822866 + inSlope: -0.6474956 + outSlope: -0.6474956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.23626138 + inSlope: -0.5866288 + outSlope: -0.5866288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.1948309 + inSlope: -0.27846354 + outSlope: -0.27846354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.1796672 + inSlope: -0.053137463 + outSlope: -0.053137463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.17815492 + inSlope: 0.04340697 + outSlope: 0.04340697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.18104008 + inSlope: 0.04327733 + outSlope: 0.04327733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0064913034 + inSlope: 0.051984 + outSlope: 0.051984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.008224104 + inSlope: 0.080888465 + outSlope: 0.080888465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.011883868 + inSlope: 0.11486414 + outSlope: 0.11486414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.015881713 + inSlope: 0.11179623 + outSlope: 0.11179623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.01933695 + inSlope: 0.09739496 + outSlope: 0.09739496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.024003075 + inSlope: 0.021312656 + outSlope: 0.021312656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.023795554 + inSlope: 0.0066530807 + outSlope: 0.0066530807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.024446614 + inSlope: 0.05851988 + outSlope: 0.05851988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.035208534 + inSlope: 0.054429393 + outSlope: 0.054429393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.034918234 + inSlope: -0.01614813 + outSlope: -0.01614813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.033662826 + inSlope: -0.05982433 + outSlope: -0.05982433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.016552221 + inSlope: -0.10935053 + outSlope: -0.10935053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.012110453 + inSlope: -0.028629607 + outSlope: -0.028629607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.011697334 + inSlope: 0.015769701 + outSlope: 0.015769701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.013161768 + inSlope: 0.05778627 + outSlope: 0.05778627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.015549756 + inSlope: 0.057294864 + outSlope: 0.057294864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.016981427 + inSlope: 0.0056336354 + outSlope: 0.0056336354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.01592533 + inSlope: -0.05954881 + outSlope: -0.05954881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.013011508 + inSlope: -0.08343978 + outSlope: -0.08343978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.010362677 + inSlope: -0.06913987 + outSlope: -0.06913987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.008402183 + inSlope: -0.05251294 + outSlope: -0.05251294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.006861818 + inSlope: -0.028666997 + outSlope: -0.028666997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.00649105 + inSlope: -0.005561504 + outSlope: -0.005561504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98141885 + inSlope: -0.04195511 + outSlope: -0.04195511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.9592482 + inSlope: -0.07208974 + outSlope: -0.07208974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9422091 + inSlope: 0.089064464 + outSlope: 0.089064464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.98040676 + inSlope: 0.020142494 + outSlope: 0.020142494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.9814372 + inSlope: -0.00081837183 + outSlope: -0.00081837183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12842998 + inSlope: 1.495544 + outSlope: 1.495544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.031312194 + inSlope: 1.3706787 + outSlope: 1.3706787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.012800074 + inSlope: 1.1943119 + outSlope: 1.1943119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.048308607 + inSlope: 0.7224094 + outSlope: 0.7224094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.060960703 + inSlope: 0.0005130619 + outSlope: 0.0005130619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.048342805 + inSlope: -0.5248374 + outSlope: -0.5248374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.02597154 + inSlope: -0.619362 + outSlope: -0.619362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0070520104 + inSlope: -0.63398933 + outSlope: -0.63398933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.016294412 + inSlope: -0.7428825 + outSlope: -0.7428825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.042473484 + inSlope: -0.76729655 + outSlope: -0.76729655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.06744751 + inSlope: -0.6792731 + outSlope: -0.6792731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.11680272 + inSlope: -0.4004988 + outSlope: -0.4004988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1299277 + inSlope: -0.44359466 + outSlope: -0.44359466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.16233803 + inSlope: -0.48680222 + outSlope: -0.48680222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.23886868 + inSlope: -0.78879374 + outSlope: -0.78879374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.33454677 + inSlope: -0.013177961 + outSlope: -0.013177961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.2212342 + inSlope: 1.2887683 + outSlope: 1.2887683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.17702293 + inSlope: 1.3920661 + outSlope: 1.3920661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.12842971 + inSlope: 0.72889644 + outSlope: 0.72889644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.8461669 + inSlope: -0.16752897 + outSlope: -0.16752897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.89916664 + inSlope: -0.049327616 + outSlope: -0.049327616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.9421508 + inSlope: 0.022288296 + outSlope: 0.022288296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.8983841 + inSlope: 0.6021425 + outSlope: 0.6021425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.8425485 + inSlope: 0.057065837 + outSlope: 0.057065837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.8448059 + inSlope: -0.06726621 + outSlope: -0.06726621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13263692 + inSlope: 0.6709273 + outSlope: 0.6709273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.15500116 + inSlope: 0.56574714 + outSlope: 0.56574714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.18345217 + inSlope: 0.42693546 + outSlope: 0.42693546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.21483551 + inSlope: 0.38847637 + outSlope: 0.38847637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.22471419 + inSlope: 0.09632298 + outSlope: 0.09632298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.22125705 + inSlope: -0.17987566 + outSlope: -0.17987566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.15612634 + inSlope: -0.69693553 + outSlope: -0.69693553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.08995559 + inSlope: -0.5224556 + outSlope: -0.5224556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.06264085 + inSlope: -0.2661033 + outSlope: -0.2661033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.056687474 + inSlope: -0.13050385 + outSlope: -0.13050385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.053940594 + inSlope: -0.11058752 + outSlope: -0.11058752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.049314972 + inSlope: -0.17966554 + outSlope: -0.17966554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.041962896 + inSlope: -0.2075046 + outSlope: -0.2075046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.035481334 + inSlope: -0.18083128 + outSlope: -0.18083128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.023732316 + inSlope: -0.23030585 + outSlope: -0.23030585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.014553741 + inSlope: -0.25003168 + outSlope: -0.25003168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0070635364 + inSlope: -0.10882851 + outSlope: -0.10882851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0072985142 + inSlope: 0.15434502 + outSlope: 0.15434502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.017353196 + inSlope: 0.45908612 + outSlope: 0.45908612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.037904263 + inSlope: 0.7635847 + outSlope: 0.7635847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.10223177 + inSlope: 0.96564245 + outSlope: 0.96564245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.13263504 + inSlope: 0.45604786 + outSlope: 0.45604786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.42112988 + inSlope: -1.3726901 + outSlope: -1.3726901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.52126086 + inSlope: -0.35029823 + outSlope: -0.35029823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.5088316 + inSlope: 0.47580457 + outSlope: 0.47580457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.49192724 + inSlope: 0.6502908 + outSlope: 0.6502908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.4654789 + inSlope: 0.567015 + outSlope: 0.567015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.45412624 + inSlope: 0.37220526 + outSlope: 0.37220526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.3983301 + inSlope: 0.36449414 + outSlope: 0.36449414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.414234 + inSlope: -0.41845948 + outSlope: -0.41845948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.456927 + inSlope: -0.3150236 + outSlope: -0.3150236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.4003355 + inSlope: 2.225476 + outSlope: 2.225476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.30124363 + inSlope: 2.712103 + outSlope: 2.712103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.21952865 + inSlope: 1.0832151 + outSlope: 1.0832151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.22902921 + inSlope: -0.883094 + outSlope: -0.883094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.2784016 + inSlope: -1.3336813 + outSlope: -1.3336813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.3179413 + inSlope: -1.3038002 + outSlope: -1.3038002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.36532155 + inSlope: -1.5478258 + outSlope: -1.5478258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.4211298 + inSlope: -0.8371215 + outSlope: -0.8371215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5710385 + inSlope: -0.6081336 + outSlope: -0.6081336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.55076736 + inSlope: -0.9240558 + outSlope: -0.9240558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.4511168 + inSlope: -1.871382 + outSlope: -1.871382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.33359915 + inSlope: -1.0134382 + outSlope: -1.0134382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.3171134 + inSlope: 0.23053598 + outSlope: 0.23053598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.3489682 + inSlope: 0.762004 + outSlope: 0.762004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.3820375 + inSlope: 0.26376042 + outSlope: 0.26376042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.36397088 + inSlope: -0.11404262 + outSlope: -0.11404262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.36692238 + inSlope: 0.06345565 + outSlope: 0.06345565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.38060826 + inSlope: 0.29937887 + outSlope: 0.29937887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.4050802 + inSlope: 0.35121787 + outSlope: 0.35121787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.41633376 + inSlope: 0.5450712 + outSlope: 0.5450712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.46570387 + inSlope: 0.581738 + outSlope: 0.581738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.5034455 + inSlope: 0.955202 + outSlope: 0.955202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.54388094 + inSlope: 0.9689912 + outSlope: 0.9689912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.5680449 + inSlope: 0.39617363 + outSlope: 0.39617363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.57029253 + inSlope: 0.07082917 + outSlope: 0.07082917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.5713701 + inSlope: -0.013656613 + outSlope: -0.013656613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.45066193 + inSlope: 0.41737226 + outSlope: 0.41737226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.43674952 + inSlope: 0.22821708 + outSlope: 0.22821708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.43544745 + inSlope: -0.04585012 + outSlope: -0.04585012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.46163574 + inSlope: -1.1455022 + outSlope: -1.1455022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.516173 + inSlope: -1.8050454 + outSlope: -1.8050454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.5819721 + inSlope: -1.4972204 + outSlope: -1.4972204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.6159877 + inSlope: -0.5664102 + outSlope: -0.5664102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.6197328 + inSlope: -0.20363869 + outSlope: -0.20363869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.651632 + inSlope: 0.049368788 + outSlope: 0.049368788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.6149913 + inSlope: 0.33205035 + outSlope: 0.33205035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.5971524 + inSlope: 0.0035138875 + outSlope: 0.0035138875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.60400456 + inSlope: -0.09929618 + outSlope: -0.09929618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.60377216 + inSlope: -0.010391788 + outSlope: -0.010391788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.5849039 + inSlope: 0.91664886 + outSlope: 0.91664886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.50617564 + inSlope: 0.76317894 + outSlope: 0.76317894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.49270883 + inSlope: 0.44892532 + outSlope: 0.44892532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.4762473 + inSlope: 0.63072383 + outSlope: 0.63072383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.45066053 + inSlope: 0.38380075 + outSlope: 0.38380075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.54172754 + inSlope: -0.1543039 + outSlope: -0.1543039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.54824054 + inSlope: 0.585713 + outSlope: 0.585713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.60279983 + inSlope: -0.5899266 + outSlope: -0.5899266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.53114027 + inSlope: -0.61213917 + outSlope: -0.61213917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5237749 + inSlope: -0.26709887 + outSlope: -0.26709887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.51338947 + inSlope: 0.118900545 + outSlope: 0.118900545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.54065317 + inSlope: 0.17380626 + outSlope: 0.17380626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5118822 + inSlope: -0.24082664 + outSlope: -0.24082664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.5035759 + inSlope: -0.35767293 + outSlope: -0.35767293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.48803732 + inSlope: 0.07000472 + outSlope: 0.07000472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.5082429 + inSlope: 1.071412 + outSlope: 1.071412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.5968564 + inSlope: 0.56105417 + outSlope: 0.56105417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.58617735 + inSlope: -0.32420397 + outSlope: -0.32420397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5582716 + inSlope: -0.50289947 + outSlope: -0.50289947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.54172814 + inSlope: -0.24815106 + outSlope: -0.24815106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.025523834 + inSlope: -0.67262757 + outSlope: -0.67262757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.047944754 + inSlope: -0.7101588 + outSlope: -0.7101588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.09739376 + inSlope: -0.71816313 + outSlope: -0.71816313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.15964527 + inSlope: -0.48782223 + outSlope: -0.48782223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.18962756 + inSlope: -0.48647654 + outSlope: -0.48647654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.22200412 + inSlope: -0.25125438 + outSlope: -0.25125438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.22375832 + inSlope: 0.32713464 + outSlope: 0.32713464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.15486705 + inSlope: 1.5747671 + outSlope: 1.5747671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.09521065 + inSlope: 1.8010566 + outSlope: 1.8010566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.03479667 + inSlope: 1.8170587 + outSlope: 1.8170587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.025926588 + inSlope: 2.0134053 + outSlope: 2.0134053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.099430464 + inSlope: 2.1771715 + outSlope: 2.1771715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.17107135 + inSlope: 1.7775681 + outSlope: 1.7775681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.21793498 + inSlope: 0.9123251 + outSlope: 0.9123251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.23189305 + inSlope: -0.009412393 + outSlope: -0.009412393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.21730746 + inSlope: -0.6220715 + outSlope: -0.6220715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.12596904 + inSlope: -0.9280471 + outSlope: -0.9280471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.096582584 + inSlope: -0.80081594 + outSlope: -0.80081594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.033033904 + inSlope: -0.58045936 + outSlope: -0.58045936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.013563035 + inSlope: -0.57844526 + outSlope: -0.57844526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0055290787 + inSlope: -0.58629787 + outSlope: -0.58629787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.025523527 + inSlope: -0.29991594 + outSlope: -0.29991594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9483074 + inSlope: 0.026966928 + outSlope: 0.026966928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.9091811 + inSlope: 0.2965388 + outSlope: 0.2965388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.8499012 + inSlope: 1.0453672 + outSlope: 1.0453672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.8113119 + inSlope: 0.8000068 + outSlope: 0.8000068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.8203774 + inSlope: -0.7439221 + outSlope: -0.7439221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.932813 + inSlope: -0.67256963 + outSlope: -0.67256963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.9443039 + inSlope: 0.0027698744 + outSlope: 0.0027698744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.9464335 + inSlope: -0.050291467 + outSlope: -0.050291467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.9481946 + inSlope: -0.0082314 + outSlope: -0.0082314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.017274525 + inSlope: -0.25264022 + outSlope: -0.25264022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.025695866 + inSlope: -0.26151916 + outSlope: -0.26151916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.034709137 + inSlope: -0.25169772 + outSlope: -0.25169772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.053900924 + inSlope: -0.14197293 + outSlope: -0.14197293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.05822517 + inSlope: -0.20075724 + outSlope: -0.20075724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.06728474 + inSlope: -0.31895435 + outSlope: -0.31895435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.09741048 + inSlope: -0.6206714 + outSlope: -0.6206714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.1648832 + inSlope: -0.44270617 + outSlope: -0.44270617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1586435 + inSlope: 0.71595114 + outSlope: 0.71595114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.12608875 + inSlope: 1.3777356 + outSlope: 1.3777356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.06679438 + inSlope: 2.1392546 + outSlope: 2.1392546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.016528185 + inSlope: 2.4394977 + outSlope: 2.4394977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.095838785 + inSlope: 1.7578776 + outSlope: 1.7578776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.13372006 + inSlope: 0.45197007 + outSlope: 0.45197007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.12597008 + inSlope: -0.4680579 + outSlope: -0.4680579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10251621 + inSlope: -0.63516545 + outSlope: -0.63516545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.067249864 + inSlope: -0.49404943 + outSlope: -0.49404943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0506891 + inSlope: -0.44740713 + outSlope: -0.44740713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.024882987 + inSlope: -0.40110546 + outSlope: -0.40110546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.010682364 + inSlope: -0.3929721 + outSlope: -0.3929721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.001315154 + inSlope: -0.31021345 + outSlope: -0.31021345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.009998512 + inSlope: -0.23940487 + outSlope: -0.23940487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.01727549 + inSlope: -0.10915437 + outSlope: -0.10915437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5846875 + inSlope: 0.115206234 + outSlope: 0.115206234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.54977244 + inSlope: 0.3222754 + outSlope: 0.3222754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.5178939 + inSlope: 0.62738305 + outSlope: 0.62738305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.39022702 + inSlope: 2.7287302 + outSlope: 2.7287302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.27670726 + inSlope: 3.095336 + outSlope: 3.095336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.18387121 + inSlope: 1.311482 + outSlope: 1.311482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.18927506 + inSlope: -0.89829355 + outSlope: -0.89829355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.24375744 + inSlope: -1.692173 + outSlope: -1.692173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.3649785 + inSlope: -2.0198922 + outSlope: -2.0198922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.506895 + inSlope: -2.0922153 + outSlope: -2.0922153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.61829716 + inSlope: -0.44430867 + outSlope: -0.44430867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.5772986 + inSlope: 0.52260196 + outSlope: 0.52260196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.5752923 + inSlope: -0.08248057 + outSlope: -0.08248057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.5845848 + inSlope: -0.0063681235 + outSlope: -0.0063681235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57737166 + inSlope: -0.062388178 + outSlope: -0.062388178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.5636502 + inSlope: 0.018125465 + outSlope: 0.018125465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5877261 + inSlope: 0.5848602 + outSlope: 0.5848602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6561766 + inSlope: 1.5155483 + outSlope: 1.5155483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.81325233 + inSlope: 0.50606316 + outSlope: 0.50606316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.78611284 + inSlope: -1.027792 + outSlope: -1.027792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.6638566 + inSlope: -2.655964 + outSlope: -2.655964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.49263346 + inSlope: -1.2557094 + outSlope: -1.2557094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.48129886 + inSlope: 0.39585763 + outSlope: 0.39585763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.519024 + inSlope: 1.1342446 + outSlope: 1.1342446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.55691516 + inSlope: 0.7626427 + outSlope: 0.7626427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.57450974 + inSlope: 0.1441616 + outSlope: 0.1441616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.57777435 + inSlope: -0.02223965 + outSlope: -0.02223965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.44219515 + inSlope: -0.1523423 + outSlope: -0.1523423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.49209714 + inSlope: -0.26500311 + outSlope: -0.26500311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.51359093 + inSlope: -0.27701947 + outSlope: -0.27701947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.5402092 + inSlope: -0.7019547 + outSlope: -0.7019547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.5681226 + inSlope: -0.077715546 + outSlope: -0.077715546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.5453902 + inSlope: 1.5304526 + outSlope: 1.5304526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.38172692 + inSlope: 2.0862877 + outSlope: 2.0862877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.32700664 + inSlope: 0.90512776 + outSlope: 0.90512776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.32138512 + inSlope: -0.60969734 + outSlope: -0.60969734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.43376598 + inSlope: -1.6561823 + outSlope: -1.6561823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.47806528 + inSlope: -0.83439106 + outSlope: -0.83439106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.47227627 + inSlope: 0.29193884 + outSlope: 0.29193884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.44318494 + inSlope: 0.09277358 + outSlope: 0.09277358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.44176948 + inSlope: -0.020635577 + outSlope: -0.020635577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3595082 + inSlope: 0.097855024 + outSlope: 0.097855024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.38031375 + inSlope: 0.12476516 + outSlope: 0.12476516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.38465577 + inSlope: -0.086229004 + outSlope: -0.086229004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3796865 + inSlope: -0.14648528 + outSlope: -0.14648528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.35401884 + inSlope: -1.148696 + outSlope: -1.148696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.29831037 + inSlope: -1.4792181 + outSlope: -1.4792181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.25540426 + inSlope: -0.087221265 + outSlope: -0.087221265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.29249558 + inSlope: 1.7371583 + outSlope: 1.7371583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.3712148 + inSlope: 2.0440059 + outSlope: 2.0440059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.42876258 + inSlope: 1.3517077 + outSlope: 1.3517077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.46132863 + inSlope: 0.8149532 + outSlope: 0.8149532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.48545384 + inSlope: -0.5932772 + outSlope: -0.5932772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.443541 + inSlope: -1.5394158 + outSlope: -1.5394158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.38282615 + inSlope: -1.2544148 + outSlope: -1.2544148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.35991338 + inSlope: -0.26118687 + outSlope: -0.26118687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.36541367 + inSlope: 0.08458533 + outSlope: 0.08458533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.35570142 + inSlope: -0.07273886 + outSlope: -0.07273886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.35950834 + inSlope: 0.019041846 + outSlope: 0.019041846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2991539 + inSlope: 0.0491631 + outSlope: 0.0491631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.28432113 + inSlope: 0.21379039 + outSlope: 0.21379039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.26252192 + inSlope: 0.09955601 + outSlope: 0.09955601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.24135 + inSlope: 0.16033211 + outSlope: 0.16033211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.1955173 + inSlope: 0.70675564 + outSlope: 0.70675564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.108383946 + inSlope: 0.64168745 + outSlope: 0.64168745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.09859949 + inSlope: -0.45438528 + outSlope: -0.45438528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.18301474 + inSlope: -1.0374362 + outSlope: -1.0374362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.26983923 + inSlope: -0.5791615 + outSlope: -0.5791615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.29819447 + inSlope: -0.066367246 + outSlope: -0.066367246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08441031 + inSlope: -0.010562091 + outSlope: -0.010562091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08653827 + inSlope: -0.030077958 + outSlope: -0.030077958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.08798695 + inSlope: -0.014053879 + outSlope: -0.014053879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0859683 + inSlope: 0.13728027 + outSlope: 0.13728027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.060260624 + inSlope: 0.29056963 + outSlope: 0.29056963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.05100161 + inSlope: 0.22767188 + outSlope: 0.22767188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.04508249 + inSlope: 0.14712247 + outSlope: 0.14712247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.034947813 + inSlope: 0.29579955 + outSlope: 0.29579955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.02147347 + inSlope: 0.5127521 + outSlope: 0.5127521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0007643096 + inSlope: 0.6411045 + outSlope: 0.6411045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.02126683 + inSlope: 0.54451317 + outSlope: 0.54451317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.035536557 + inSlope: 0.254672 + outSlope: 0.254672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.03176909 + inSlope: -0.29822484 + outSlope: -0.29822484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.018363321 + inSlope: -0.45277208 + outSlope: -0.45277208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0015842827 + inSlope: -0.55201817 + outSlope: -0.55201817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.01843792 + inSlope: -0.61527264 + outSlope: -0.61527264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.05818464 + inSlope: -0.4791735 + outSlope: -0.4791735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.08289494 + inSlope: -0.07228728 + outSlope: -0.07228728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.08455221 + inSlope: 0.0039031347 + outSlope: 0.0039031347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.025774527 + inSlope: -0.534592 + outSlope: -0.534592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.04359426 + inSlope: -0.4309029 + outSlope: -0.4309029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.055635367 + inSlope: 0.14573309 + outSlope: 0.14573309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.024486952 + inSlope: 0.69877064 + outSlope: 0.69877064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0017988667 + inSlope: 0.86024606 + outSlope: 0.86024606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.032862797 + inSlope: 1.027145 + outSlope: 1.027145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.10799153 + inSlope: 1.0387088 + outSlope: 1.0387088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.21927147 + inSlope: 0.4940817 + outSlope: 0.4940817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.25716037 + inSlope: 0.6422019 + outSlope: 0.6422019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.29363954 + inSlope: 0.2566764 + outSlope: 0.2566764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.2605056 + inSlope: -0.43077353 + outSlope: -0.43077353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.22447383 + inSlope: -0.78814244 + outSlope: -0.78814244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.029225346 + inSlope: -1.0517441 + outSlope: -1.0517441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0022630745 + inSlope: -0.82497376 + outSlope: -0.82497376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.025772939 + inSlope: -0.35264704 + outSlope: -0.35264704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14083712 + inSlope: -0.34732592 + outSlope: -0.34732592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.12615268 + inSlope: 0.3001811 + outSlope: 0.3001811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.16449365 + inSlope: 0.7011199 + outSlope: 0.7011199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.21759252 + inSlope: 0.9438634 + outSlope: 0.9438634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.32269982 + inSlope: 0.96528375 + outSlope: 0.96528375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.437166 + inSlope: 0.8869811 + outSlope: 0.8869811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5175901 + inSlope: 1.6489282 + outSlope: 1.6489282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.638996 + inSlope: 1.5183461 + outSlope: 1.5183461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.7170868 + inSlope: -0.052682504 + outSlope: -0.052682504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.5802348 + inSlope: -2.606207 + outSlope: -2.606207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.48182425 + inSlope: -3.1304557 + outSlope: -3.1304557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.37153777 + inSlope: -2.9747267 + outSlope: -2.9747267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.28350914 + inSlope: -2.0461998 + outSlope: -2.0461998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.2351245 + inSlope: -1.2648602 + outSlope: -1.2648602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.19918512 + inSlope: -1.0760734 + outSlope: -1.0760734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.1408377 + inSlope: -0.3382288 + outSlope: -0.3382288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.033629537 + inSlope: -0.44827622 + outSlope: -0.44827622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.018686995 + inSlope: -0.31541178 + outSlope: -0.31541178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.012602083 + inSlope: -0.1449736 + outSlope: -0.1449736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.009022087 + inSlope: -0.11766013 + outSlope: -0.11766013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.004758075 + inSlope: -0.060733266 + outSlope: -0.060733266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.004973203 + inSlope: 0.14262864 + outSlope: 0.14262864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.014266655 + inSlope: 0.380862 + outSlope: 0.380862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.030364007 + inSlope: 0.47806132 + outSlope: 0.47806132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.046137407 + inSlope: 0.48157457 + outSlope: 0.48157457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.062468976 + inSlope: 0.6035141 + outSlope: 0.6035141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.086371675 + inSlope: 0.751036 + outSlope: 0.751036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.11253804 + inSlope: 0.575327 + outSlope: 0.575327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.12472682 + inSlope: -0.0081567615 + outSlope: -0.0081567615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.11199427 + inSlope: -0.6319629 + outSlope: -0.6319629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.08259596 + inSlope: -0.83626825 + outSlope: -0.83626825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.056243077 + inSlope: -0.52861404 + outSlope: -0.52861404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.04735504 + inSlope: -0.010476485 + outSlope: -0.010476485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.055544645 + inSlope: 0.32074758 + outSlope: 0.32074758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.06873821 + inSlope: 0.2581726 + outSlope: 0.2581726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.07275614 + inSlope: -0.090972684 + outSlope: -0.090972684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.062673375 + inSlope: -0.34229267 + outSlope: -0.34229267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.04993663 + inSlope: -0.20947245 + outSlope: -0.20947245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.048708536 + inSlope: 0.10400242 + outSlope: 0.10400242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.056870133 + inSlope: 0.17085858 + outSlope: 0.17085858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.060099117 + inSlope: 0.27888554 + outSlope: 0.27888554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.07546249 + inSlope: 0.92652863 + outSlope: 0.92652863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.12186772 + inSlope: 1.038291 + outSlope: 1.038291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.1446819 + inSlope: -0.21060717 + outSlope: -0.21060717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.10782719 + inSlope: -1.2074974 + outSlope: -1.2074974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.06418209 + inSlope: -0.9064013 + outSlope: -0.9064013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.04740049 + inSlope: -0.45826674 + outSlope: -0.45826674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.033630952 + inSlope: -0.20654252 + outSlope: -0.20654252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.76993126 + inSlope: -0.06694257 + outSlope: -0.06694257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.73793834 + inSlope: -0.31097355 + outSlope: -0.31097355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.72116053 + inSlope: -0.15565307 + outSlope: -0.15565307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.64917505 + inSlope: -0.75027996 + outSlope: -0.75027996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.57577413 + inSlope: -1.4605668 + outSlope: -1.4605668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.47593418 + inSlope: -1.1261803 + outSlope: -1.1261803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.4344609 + inSlope: -0.025249988 + outSlope: -0.025249988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.44548985 + inSlope: 0.8979982 + outSlope: 0.8979982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4943275 + inSlope: 1.8930653 + outSlope: 1.8930653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6446764 + inSlope: 1.8131783 + outSlope: 1.8131783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.7292252 + inSlope: 1.0300033 + outSlope: 1.0300033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.7749743 + inSlope: 0.17785297 + outSlope: 0.17785297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.7725569 + inSlope: -0.12651202 + outSlope: -0.12651202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6214822 + inSlope: -0.17631231 + outSlope: -0.17631231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.6596582 + inSlope: -0.2237061 + outSlope: -0.2237061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.59055346 + inSlope: -0.04716665 + outSlope: -0.04716665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.5881544 + inSlope: 0.32514873 + outSlope: 0.32514873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.55197394 + inSlope: 0.22884876 + outSlope: 0.22884876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.55258256 + inSlope: -0.37942523 + outSlope: -0.37942523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.57695884 + inSlope: -0.3100804 + outSlope: -0.3100804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.58867943 + inSlope: -0.43827915 + outSlope: -0.43827915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.60617745 + inSlope: -0.2559022 + outSlope: -0.2559022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.59633994 + inSlope: -0.24603212 + outSlope: -0.24603212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.62148076 + inSlope: -0.15648592 + outSlope: -0.15648592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20396143 + inSlope: -0.5884319 + outSlope: -0.5884319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.16044559 + inSlope: -0.76916003 + outSlope: -0.76916003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.1330697 + inSlope: -0.8507811 + outSlope: -0.8507811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.079799324 + inSlope: -0.5570413 + outSlope: -0.5570413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.07006375 + inSlope: 0.32173723 + outSlope: 0.32173723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.12952323 + inSlope: 0.6640673 + outSlope: 0.6640673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.19004373 + inSlope: 0.53039813 + outSlope: 0.53039813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.22582377 + inSlope: 0.6185623 + outSlope: 0.6185623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.27974936 + inSlope: 0.09253915 + outSlope: 0.09253915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.2521467 + inSlope: -0.32632184 + outSlope: -0.32632184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.22845858 + inSlope: -0.010003081 + outSlope: -0.010003081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.21757688 + inSlope: -0.32033914 + outSlope: -0.32033914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.20396057 + inSlope: -0.20424409 + outSlope: -0.20424409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10265336 + inSlope: 0.21926633 + outSlope: 0.21926633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.081088655 + inSlope: 0.26699725 + outSlope: 0.26699725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07098295 + inSlope: 0.3216057 + outSlope: 0.3216057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.059648275 + inSlope: 0.28345755 + outSlope: 0.28345755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.052085776 + inSlope: 0.14202774 + outSlope: 0.14202774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.050179757 + inSlope: 0.009268206 + outSlope: 0.009268206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.056486413 + inSlope: -0.18460047 + outSlope: -0.18460047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06377459 + inSlope: -0.20123543 + outSlope: -0.20123543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.07742306 + inSlope: -0.06265876 + outSlope: -0.06265876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.078962654 + inSlope: -0.083545506 + outSlope: -0.083545506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.09669676 + inSlope: -0.19349232 + outSlope: -0.19349232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.10830122 + inSlope: -0.19334808 + outSlope: -0.19334808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.1272653 + inSlope: -0.15568662 + outSlope: -0.15568662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.13699886 + inSlope: 0.035502337 + outSlope: 0.035502337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.12368233 + inSlope: 0.16727018 + outSlope: 0.16727018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.11044603 + inSlope: 0.22551423 + outSlope: 0.22551423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.102652036 + inSlope: 0.116909586 + outSlope: 0.116909586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16457728 + inSlope: 0.5449578 + outSlope: 0.5449578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.19499919 + inSlope: 0.2426069 + outSlope: 0.2426069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.1860066 + inSlope: -0.03805025 + outSlope: -0.03805025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.18717477 + inSlope: 0.006217808 + outSlope: 0.006217808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.18826996 + inSlope: 0.080323 + outSlope: 0.080323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.19178529 + inSlope: -0.081766024 + outSlope: -0.081766024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.15844898 + inSlope: -0.6386261 + outSlope: -0.6386261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.04184416 + inSlope: -0.8740506 + outSlope: -0.8740506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.014483532 + inSlope: -0.62943685 + outSlope: -0.62943685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.000118280506 + inSlope: -0.25955576 + outSlope: -0.25955576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.002820195 + inSlope: -0.043640397 + outSlope: -0.043640397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.003027638 + inSlope: 0.07719541 + outSlope: 0.07719541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0023261707 + inSlope: 0.3280267 + outSlope: 0.3280267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.018840797 + inSlope: 0.6049223 + outSlope: 0.6049223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.042654328 + inSlope: 0.72185177 + outSlope: 0.72185177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.09187968 + inSlope: 0.76744634 + outSlope: 0.76744634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.14296184 + inSlope: 0.6967406 + outSlope: 0.6967406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.16457674 + inSlope: 0.32422256 + outSlope: 0.32422256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.32863164 + inSlope: -0.08360266 + outSlope: -0.08360266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.31567407 + inSlope: -0.27531087 + outSlope: -0.27531087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.2938161 + inSlope: -0.042873375 + outSlope: -0.042873375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.34118083 + inSlope: 0.60220206 + outSlope: 0.60220206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.3396168 + inSlope: -1.3724977 + outSlope: -1.3724977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.27928957 + inSlope: -2.110159 + outSlope: -2.110159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.19893955 + inSlope: -2.1953356 + outSlope: -2.1953356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.13293393 + inSlope: -1.3002949 + outSlope: -1.3002949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.11225326 + inSlope: -0.0031989813 + outSlope: -0.0031989813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.13272066 + inSlope: 0.9676974 + outSlope: 0.9676974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.1767664 + inSlope: 1.5284634 + outSlope: 1.5284634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.28869262 + inSlope: 1.3190104 + outSlope: 1.3190104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.34367874 + inSlope: -0.15777768 + outSlope: -0.15777768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.31014356 + inSlope: -0.38980472 + outSlope: -0.38980472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.31866932 + inSlope: 0.20928112 + outSlope: 0.20928112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.3283831 + inSlope: 0.018657671 + outSlope: 0.018657671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.58400995 + inSlope: -0.7181274 + outSlope: -0.7181274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.6742159 + inSlope: -1.0848856 + outSlope: -1.0848856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.77663195 + inSlope: -0.04570306 + outSlope: -0.04570306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.744686 + inSlope: 0.5009598 + outSlope: 0.5009598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.64193326 + inSlope: 1.8381386 + outSlope: 1.8381386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.42806175 + inSlope: 1.6016704 + outSlope: 1.6016704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.3270359 + inSlope: 0.68586814 + outSlope: 0.68586814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.29784638 + inSlope: -0.5194368 + outSlope: -0.5194368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.3673225 + inSlope: -1.186017 + outSlope: -1.186017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.479273 + inSlope: -1.047683 + outSlope: -1.047683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.5621399 + inSlope: -0.67621565 + outSlope: -0.67621565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.5840093 + inSlope: -0.32803956 + outSlope: -0.32803956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5095145 + inSlope: 0.3032979 + outSlope: 0.3032979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.4776474 + inSlope: -0.020228328 + outSlope: -0.020228328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.47192764 + inSlope: 0.32042828 + outSlope: 0.32042828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.4488504 + inSlope: 0.21369341 + outSlope: 0.21369341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.47300914 + inSlope: -0.946309 + outSlope: -0.946309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.5826853 + inSlope: -0.6912234 + outSlope: -0.6912234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.6112468 + inSlope: -0.4073863 + outSlope: -0.4073863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.6739972 + inSlope: -0.27007774 + outSlope: -0.27007774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.67033154 + inSlope: 0.2796687 + outSlope: 0.2796687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.52360636 + inSlope: 0.5669025 + outSlope: 0.5669025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.51183665 + inSlope: 0.17532244 + outSlope: 0.17532244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5397487 + inSlope: -0.4654759 + outSlope: -0.4654759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.46605754 + inSlope: -1.2488347 + outSlope: -1.2488347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.36192715 + inSlope: -1.5824866 + outSlope: -1.5824866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.3122575 + inSlope: -1.0762477 + outSlope: -1.0762477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.2901773 + inSlope: -0.22996324 + outSlope: -0.22996324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.29692662 + inSlope: 0.33660653 + outSlope: 0.33660653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.31261772 + inSlope: 0.5300586 + outSlope: 0.5300586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.3688311 + inSlope: 1.3994687 + outSlope: 1.3994687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.4984884 + inSlope: 2.2382414 + outSlope: 2.2382414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6335239 + inSlope: 1.3975761 + outSlope: 1.3975761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.6629225 + inSlope: -0.9359356 + outSlope: -0.9359356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6240748 + inSlope: -0.9896647 + outSlope: -0.9896647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.56524575 + inSlope: -0.41058326 + outSlope: -0.41058326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.55527097 + inSlope: 0.06855902 + outSlope: 0.06855902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.5548366 + inSlope: -0.116420396 + outSlope: -0.116420396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.550013 + inSlope: -0.18753432 + outSlope: -0.18753432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.5397487 + inSlope: -0.15396376 + outSlope: -0.15396376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2863184 + inSlope: 0.21521686 + outSlope: 0.21521686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.2655532 + inSlope: 0.5055847 + outSlope: 0.5055847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.22035494 + inSlope: 0.74458665 + outSlope: 0.74458665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.18055825 + inSlope: 0.27328685 + outSlope: 0.27328685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1764908 + inSlope: 0.122834004 + outSlope: 0.122834004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.16518018 + inSlope: -0.03756076 + outSlope: -0.03756076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.18142377 + inSlope: -0.2254827 + outSlope: -0.2254827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.19959386 + inSlope: -0.13337632 + outSlope: -0.13337632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.20703612 + inSlope: 0.06146002 + outSlope: 0.06146002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.20041819 + inSlope: 0.26462683 + outSlope: 0.26462683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.18939434 + inSlope: 0.1800479 + outSlope: 0.1800479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.188415 + inSlope: -0.17221008 + outSlope: -0.17221008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.21730176 + inSlope: -0.45411706 + outSlope: -0.45411706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.25684193 + inSlope: -0.38064122 + outSlope: -0.38064122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.2881404 + inSlope: -0.0052858405 + outSlope: -0.0052858405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.28727338 + inSlope: 0.04231852 + outSlope: 0.04231852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.045244996 + inSlope: -0.2937125 + outSlope: -0.2937125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.03545458 + inSlope: -0.32387555 + outSlope: -0.32387555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.023653293 + inSlope: -0.35555184 + outSlope: -0.35555184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.011751122 + inSlope: -0.27755004 + outSlope: -0.27755004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0051499563 + inSlope: -0.17495185 + outSlope: -0.17495185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.000087664914 + inSlope: -0.36559904 + outSlope: -0.36559904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.01922332 + inSlope: -0.84118867 + outSlope: -0.84118867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.055991583 + inSlope: -1.1084467 + outSlope: -1.1084467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.09311976 + inSlope: -0.9265857 + outSlope: -0.9265857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.13393228 + inSlope: 0.077570945 + outSlope: 0.077570945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.12595482 + inSlope: 0.26835525 + outSlope: 0.26835525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.102371894 + inSlope: 0.4366926 + outSlope: 0.4366926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0869291 + inSlope: 0.40658462 + outSlope: 0.40658462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.065286756 + inSlope: 0.30295777 + outSlope: 0.30295777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.055069074 + inSlope: 0.19532758 + outSlope: 0.19532758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.052264925 + inSlope: -0.041156933 + outSlope: -0.041156933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.057812862 + inSlope: 0.046953164 + outSlope: 0.046953164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0491347 + inSlope: 0.71964157 + outSlope: 0.71964157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.00983679 + inSlope: 1.4642785 + outSlope: 1.4642785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.048483875 + inSlope: 1.528787 + outSlope: 1.528787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.09208243 + inSlope: 0.96153194 + outSlope: 0.96153194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.11484349 + inSlope: -0.16410145 + outSlope: -0.16410145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.10164594 + inSlope: -0.51345026 + outSlope: -0.51345026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.080613464 + inSlope: -0.5655196 + outSlope: -0.5655196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.06394463 + inSlope: -0.4007802 + outSlope: -0.4007802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.05389481 + inSlope: -0.28049982 + outSlope: -0.28049982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.04524463 + inSlope: -0.12975235 + outSlope: -0.12975235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.20024134 + inSlope: -0.91473114 + outSlope: -0.91473114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.252442 + inSlope: -0.38582367 + outSlope: -0.38582367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.23710881 + inSlope: 0.21893731 + outSlope: 0.21893731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.23174612 + inSlope: -0.019295812 + outSlope: -0.019295812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.22961213 + inSlope: 0.40986684 + outSlope: 0.40986684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.2064131 + inSlope: 0.9315498 + outSlope: 0.9315498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.16750881 + inSlope: 1.1525004 + outSlope: 1.1525004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.12957972 + inSlope: 0.9970169 + outSlope: 0.9970169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.077391304 + inSlope: 0.692052 + outSlope: 0.692052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.03395662 + inSlope: 0.6120477 + outSlope: 0.6120477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.014101002 + inSlope: 0.5401976 + outSlope: 0.5401976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0020565523 + inSlope: 0.3098155 + outSlope: 0.3098155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0065533533 + inSlope: -0.10316394 + outSlope: -0.10316394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.004821029 + inSlope: -0.44212627 + outSlope: -0.44212627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.022921734 + inSlope: -0.4147779 + outSlope: -0.4147779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.032472894 + inSlope: -0.085873574 + outSlope: -0.085873574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.028646626 + inSlope: 0.107669145 + outSlope: 0.107669145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.025294945 + inSlope: -0.122209966 + outSlope: -0.122209966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.036793943 + inSlope: -0.5295458 + outSlope: -0.5295458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.060598005 + inSlope: -0.7733628 + outSlope: -0.7733628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.11677213 + inSlope: -0.8380538 + outSlope: -0.8380538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.17102315 + inSlope: -0.8402976 + outSlope: -0.8402976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.2002416 + inSlope: -0.4382756 + outSlope: -0.4382756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.19487748 + inSlope: -0.00670731 + outSlope: -0.00670731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.19073088 + inSlope: 0.21874216 + outSlope: 0.21874216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.16554663 + inSlope: 0.47395867 + outSlope: 0.47395867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.13705836 + inSlope: 0.19588456 + outSlope: 0.19588456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.13586202 + inSlope: -0.052976765 + outSlope: -0.052976765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.14059015 + inSlope: -0.069142886 + outSlope: -0.069142886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.14047155 + inSlope: 0.10856622 + outSlope: 0.10856622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.12583089 + inSlope: 0.16072296 + outSlope: 0.16072296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.12758419 + inSlope: -0.008118411 + outSlope: -0.008118411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.11883038 + inSlope: 0.15710804 + outSlope: 0.15710804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.108971596 + inSlope: 0.02928254 + outSlope: 0.02928254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.12842943 + inSlope: -0.26821887 + outSlope: -0.26821887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.14715396 + inSlope: -0.3598042 + outSlope: -0.3598042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.18455423 + inSlope: -0.23210737 + outSlope: -0.23210737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.19471493 + inSlope: -0.014566855 + outSlope: -0.014566855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.015378887 + inSlope: 0.03933705 + outSlope: 0.03933705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.012690524 + inSlope: 0.042140573 + outSlope: 0.042140573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.01125828 + inSlope: 0.021829797 + outSlope: 0.021829797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.011235204 + inSlope: -0.047781166 + outSlope: -0.047781166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.014443691 + inSlope: -0.16779353 + outSlope: -0.16779353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.022421442 + inSlope: -0.32479262 + outSlope: -0.32479262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.036096536 + inSlope: -0.44158423 + outSlope: -0.44158423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.05186039 + inSlope: -0.39142972 + outSlope: -0.39142972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.062191848 + inSlope: -0.16293052 + outSlope: -0.16293052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06272242 + inSlope: 0.11531828 + outSlope: 0.11531828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.041457865 + inSlope: 0.3960067 + outSlope: 0.3960067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.028103504 + inSlope: 0.37845016 + outSlope: 0.37845016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0056912885 + inSlope: 0.29171234 + outSlope: 0.29171234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0032196292 + inSlope: 0.24084783 + outSlope: 0.24084783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.010365246 + inSlope: 0.1914939 + outSlope: 0.1914939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.01598589 + inSlope: 0.13802966 + outSlope: 0.13802966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.019567221 + inSlope: 0.03153036 + outSlope: 0.03153036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.018087918 + inSlope: -0.1612743 + outSlope: -0.1612743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.008815595 + inSlope: -0.31852168 + outSlope: -0.31852168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.003146857 + inSlope: -0.27669653 + outSlope: -0.27669653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.009630835 + inSlope: -0.14858864 + outSlope: -0.14858864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.013052775 + inSlope: -0.16761084 + outSlope: -0.16761084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.020804886 + inSlope: -0.25333014 + outSlope: -0.25333014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.02994145 + inSlope: -0.18224028 + outSlope: -0.18224028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.032954242 + inSlope: 0.005791221 + outSlope: 0.005791221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.023553573 + inSlope: 0.16957481 + outSlope: 0.16957481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.018250387 + inSlope: 0.12262866 + outSlope: 0.12262866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.015378326 + inSlope: 0.043080803 + outSlope: 0.043080803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10435718 + inSlope: -0.471649 + outSlope: -0.471649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.13180074 + inSlope: -0.22407329 + outSlope: -0.22407329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.12638067 + inSlope: 0.10472685 + outSlope: 0.10472685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.124349914 + inSlope: -0.020486714 + outSlope: -0.020486714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.12372313 + inSlope: 0.19905536 + outSlope: 0.19905536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11231928 + inSlope: 0.4655344 + outSlope: 0.4655344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0926875 + inSlope: 0.58471024 + outSlope: 0.58471024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.07333858 + inSlope: 0.5172214 + outSlope: 0.5172214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.045034327 + inSlope: 0.38346243 + outSlope: 0.38346243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.02106228 + inSlope: 0.34042868 + outSlope: 0.34042868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.009946649 + inSlope: 0.3067925 + outSlope: 0.3067925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0006094449 + inSlope: 0.18856172 + outSlope: 0.18856172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0026241268 + inSlope: -0.027945768 + outSlope: -0.027945768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0024724882 + inSlope: -0.1999696 + outSlope: -0.1999696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.010707182 + inSlope: -0.18042302 + outSlope: -0.18042302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0145006925 + inSlope: -0.02432783 + outSlope: -0.02432783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.012329032 + inSlope: 0.047235645 + outSlope: 0.047235645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.011351647 + inSlope: -0.086330704 + outSlope: -0.086330704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.018084405 + inSlope: -0.2947243 + outSlope: -0.2947243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.030999938 + inSlope: -0.4193992 + outSlope: -0.4193992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.06131858 + inSlope: -0.44461864 + outSlope: -0.44461864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0894378 + inSlope: -0.43008378 + outSlope: -0.43008378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.10435787 + inSlope: -0.22380048 + outSlope: -0.22380048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07634647 + inSlope: 0.053506043 + outSlope: 0.053506043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.09193885 + inSlope: 0.21468905 + outSlope: 0.21468905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.10030953 + inSlope: 0.30101788 + outSlope: 0.30101788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.12839997 + inSlope: -0.012868568 + outSlope: -0.012868568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.111977145 + inSlope: -0.3179121 + outSlope: -0.3179121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.08242771 + inSlope: -0.09970412 + outSlope: -0.09970412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.08233534 + inSlope: 0.1329448 + outSlope: 0.1329448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.09670901 + inSlope: 0.1477842 + outSlope: 0.1477842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.09902328 + inSlope: 0.007123109 + outSlope: 0.007123109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.09718389 + inSlope: -0.028347064 + outSlope: -0.028347064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.09972567 + inSlope: 0.074806705 + outSlope: 0.074806705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.10210083 + inSlope: -0.057365466 + outSlope: -0.057365466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.07781282 + inSlope: -0.12939465 + outSlope: -0.12939465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.07508796 + inSlope: 0.01993223 + outSlope: 0.01993223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.07634621 + inSlope: 0.01887376 + outSlope: 0.01887376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0054586516 + inSlope: 0.16667557 + outSlope: 0.16667557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000097200646 + inSlope: 0.1599266 + outSlope: 0.1599266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0052031223 + inSlope: 0.10530984 + outSlope: 0.10530984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.007117857 + inSlope: -0.015922684 + outSlope: -0.015922684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0041416106 + inSlope: -0.15988572 + outSlope: -0.15988572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00354119 + inSlope: -0.30033785 + outSlope: -0.30033785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.015880918 + inSlope: -0.4285766 + outSlope: -0.4285766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.032112967 + inSlope: -0.47533703 + outSlope: -0.47533703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.04757005 + inSlope: -0.39257318 + outSlope: -0.39257318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06671662 + inSlope: -0.27231872 + outSlope: -0.27231872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.084473625 + inSlope: -0.1410745 + outSlope: -0.1410745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.07816279 + inSlope: 0.10286252 + outSlope: 0.10286252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0717923 + inSlope: 0.007354534 + outSlope: 0.007354534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.06910496 + inSlope: 0.22947548 + outSlope: 0.22947548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.058350857 + inSlope: 0.40268362 + outSlope: 0.40268362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.042259365 + inSlope: 0.45768368 + outSlope: 0.45768368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.027838612 + inSlope: 0.32098645 + outSlope: 0.32098645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.020860275 + inSlope: 0.13681552 + outSlope: 0.13681552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.018717574 + inSlope: 0.062178668 + outSlope: 0.062178668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.016715031 + inSlope: 0.07580565 + outSlope: 0.07580565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.013663866 + inSlope: 0.10071473 + outSlope: 0.10071473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0100007225 + inSlope: 0.12307541 + outSlope: 0.12307541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0054588304 + inSlope: 0.068128206 + outSlope: 0.068128206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.063386925 + inSlope: -0.05410887 + outSlope: -0.05410887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.06768344 + inSlope: -0.088675156 + outSlope: -0.088675156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.07586894 + inSlope: -0.03510598 + outSlope: -0.03510598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.076150484 + inSlope: 0.030713866 + outSlope: 0.030713866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.075053185 + inSlope: -0.08932282 + outSlope: -0.08932282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09314575 + inSlope: -0.09932247 + outSlope: -0.09932247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0926076 + inSlope: 0.04505586 + outSlope: 0.04505586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.08159489 + inSlope: 0.16965154 + outSlope: 0.16965154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.069496624 + inSlope: 0.14653623 + outSlope: 0.14653623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.059387296 + inSlope: 0.0591475 + outSlope: 0.0591475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.058868483 + inSlope: -0.038909204 + outSlope: -0.038909204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.06188826 + inSlope: -0.019918239 + outSlope: -0.019918239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.062249295 + inSlope: -0.02031311 + outSlope: -0.02031311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.06338684 + inSlope: -0.017063163 + outSlope: -0.017063163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.23819984 + inSlope: 0.19241719 + outSlope: 0.19241719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.24461375 + inSlope: 0.12358814 + outSlope: 0.12358814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.249562 + inSlope: 0.22940421 + outSlope: 0.22940421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.30718067 + inSlope: 0.8506616 + outSlope: 0.8506616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.36182314 + inSlope: 0.2531818 + outSlope: 0.2531818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.35544026 + inSlope: -0.49444693 + outSlope: -0.49444693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.32886 + inSlope: -0.6562803 + outSlope: -0.6562803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.31168824 + inSlope: -0.32836494 + outSlope: -0.32836494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.30696902 + inSlope: -0.2131332 + outSlope: -0.2131332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.29747936 + inSlope: -0.38299355 + outSlope: -0.38299355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.26935855 + inSlope: -0.17823386 + outSlope: -0.17823386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.26955387 + inSlope: 0.19591688 + outSlope: 0.19591688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.29731432 + inSlope: 0.25297093 + outSlope: 0.25297093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.2992844 + inSlope: -0.12827325 + outSlope: -0.12827325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.28207946 + inSlope: -0.056362476 + outSlope: -0.056362476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.28638855 + inSlope: -0.119632676 + outSlope: -0.119632676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.26299438 + inSlope: -0.3574639 + outSlope: -0.3574639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.24031048 + inSlope: -0.19539446 + outSlope: -0.19539446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.23241194 + inSlope: 0.06529008 + outSlope: 0.06529008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.23820141 + inSlope: 0.086841874 + outSlope: 0.086841874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13605192 + inSlope: 0.3831808 + outSlope: 0.3831808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09720524 + inSlope: 0.095465526 + outSlope: 0.095465526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0967386 + inSlope: -0.08779794 + outSlope: -0.08779794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.103058435 + inSlope: -0.25017285 + outSlope: -0.25017285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1189022 + inSlope: -0.0051206723 + outSlope: -0.0051206723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.11375817 + inSlope: 0.18592101 + outSlope: 0.18592101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.106507465 + inSlope: 0.0601396 + outSlope: 0.0601396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.10974886 + inSlope: -0.22359306 + outSlope: -0.22359306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.12141368 + inSlope: -0.29695517 + outSlope: -0.29695517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.12954588 + inSlope: -0.14633061 + outSlope: -0.14633061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.13185628 + inSlope: -0.053351346 + outSlope: -0.053351346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.14864433 + inSlope: -0.13174722 + outSlope: -0.13174722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.16482693 + inSlope: -0.48878938 + outSlope: -0.48878938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.20064853 + inSlope: -0.11134913 + outSlope: -0.11134913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.19314672 + inSlope: 0.4635843 + outSlope: 0.4635843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.16974293 + inSlope: 0.6550431 + outSlope: 0.6550431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.14947718 + inSlope: 0.4564265 + outSlope: 0.4564265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.13876931 + inSlope: -0.07094719 + outSlope: -0.07094719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.14492033 + inSlope: 0.11986153 + outSlope: 0.11986153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.1360535 + inSlope: 0.13300213 + outSlope: 0.13300213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3719485 + inSlope: -0.38170066 + outSlope: -0.38170066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.4162302 + inSlope: -0.4495762 + outSlope: -0.4495762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.43385404 + inSlope: 0.1906112 + outSlope: 0.1906112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.4252466 + inSlope: -0.34650522 + outSlope: -0.34650522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.5034119 + inSlope: -0.3935303 + outSlope: -0.3935303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.48756492 + inSlope: 0.34926116 + outSlope: 0.34926116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.4214321 + inSlope: 0.87128484 + outSlope: 0.87128484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.3649027 + inSlope: 0.58378583 + outSlope: 0.58378583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.3387247 + inSlope: 0.34823895 + outSlope: 0.34823895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.3224492 + inSlope: -0.026251078 + outSlope: -0.026251078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.35131425 + inSlope: -0.22901233 + outSlope: -0.22901233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.36234456 + inSlope: -0.22820964 + outSlope: -0.22820964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.37194973 + inSlope: -0.14407717 + outSlope: -0.14407717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04984828 + inSlope: -0.118649185 + outSlope: -0.118649185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.053803254 + inSlope: 0.05748667 + outSlope: 0.05748667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.046015836 + inSlope: 0.35927486 + outSlope: 0.35927486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.029851593 + inSlope: 0.50883436 + outSlope: 0.50883436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.012093543 + inSlope: 0.61481804 + outSlope: 0.61481804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.011136276 + inSlope: 0.89500153 + outSlope: 0.89500153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.047573235 + inSlope: 0.60583866 + outSlope: 0.60583866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.051525533 + inSlope: 0.24928401 + outSlope: 0.24928401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.08662365 + inSlope: 0.8216104 + outSlope: 0.8216104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.11896619 + inSlope: 1.0895778 + outSlope: 1.0895778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.15926217 + inSlope: 1.143181 + outSlope: 1.143181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.19517829 + inSlope: 1.1616998 + outSlope: 1.1616998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.27376077 + inSlope: 1.013255 + outSlope: 1.013255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.30425915 + inSlope: 0.9468001 + outSlope: 0.9468001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.33688077 + inSlope: 0.6005497 + outSlope: 0.6005497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.34429583 + inSlope: 0.21166742 + outSlope: 0.21166742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.35715353 + inSlope: 0.11300186 + outSlope: 0.11300186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3585254 + inSlope: 0.28799576 + outSlope: 0.28799576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.37635326 + inSlope: 0.6776259 + outSlope: 0.6776259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.40370044 + inSlope: 0.26053688 + outSlope: 0.26053688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.39372236 + inSlope: -0.90284014 + outSlope: -0.90284014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.18699315 + inSlope: -2.3816538 + outSlope: -2.3816538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.044588946 + inSlope: -1.7803862 + outSlope: -1.7803862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.008210814 + inSlope: -1.1800524 + outSlope: -1.1800524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.03408114 + inSlope: -0.62453735 + outSlope: -0.62453735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.049846653 + inSlope: -0.2364821 + outSlope: -0.2364821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08910481 + inSlope: -1.5756774 + outSlope: -1.5756774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.036582228 + inSlope: -1.4937122 + outSlope: -1.4937122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.010476008 + inSlope: -1.3667979 + outSlope: -1.3667979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.05453765 + inSlope: -1.1432333 + outSlope: -1.1432333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08669157 + inSlope: -0.6766403 + outSlope: -0.6766403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.101789385 + inSlope: -0.06725828 + outSlope: -0.06725828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1016541 + inSlope: 0.2056452 + outSlope: 0.2056452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.09042121 + inSlope: 0.47828394 + outSlope: 0.47828394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.04283172 + inSlope: 0.8376695 + outSlope: 0.8376695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.013923849 + inSlope: 0.755267 + outSlope: 0.755267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.007519442 + inSlope: 0.65240455 + outSlope: 0.65240455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.053239718 + inSlope: 0.74124455 + outSlope: 0.74124455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.104735605 + inSlope: 0.7676399 + outSlope: 0.7676399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.1552802 + inSlope: 0.80715525 + outSlope: 0.80715525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.22401187 + inSlope: 1.4649974 + outSlope: 1.4649974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.2816389 + inSlope: 1.8968081 + outSlope: 1.8968081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.40843874 + inSlope: 1.2331238 + outSlope: 1.2331238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.4162118 + inSlope: -0.99076915 + outSlope: -0.99076915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.21879421 + inSlope: -2.177277 + outSlope: -2.177277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.14998244 + inSlope: -1.9453619 + outSlope: -1.9453619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.089103326 + inSlope: -0.9131843 + outSlope: -0.9131843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.026697861 + inSlope: 1.0296676 + outSlope: 1.0296676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0076243915 + inSlope: 1.0080942 + outSlope: 1.0080942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.04050842 + inSlope: 0.9151015 + outSlope: 0.9151015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.068631165 + inSlope: 0.86791074 + outSlope: 0.86791074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.09836914 + inSlope: 0.85116696 + outSlope: 0.85116696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.12537563 + inSlope: 0.6127142 + outSlope: 0.6127142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.13921675 + inSlope: 0.24016336 + outSlope: 0.24016336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.14138652 + inSlope: 0.09280444 + outSlope: 0.09280444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.14540371 + inSlope: 0.043172613 + outSlope: 0.043172613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.1442647 + inSlope: -0.04536331 + outSlope: -0.04536331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.14237949 + inSlope: 0.13476068 + outSlope: 0.13476068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.15324874 + inSlope: 0.41765907 + outSlope: 0.41765907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.17022344 + inSlope: 0.4021586 + outSlope: 0.4021586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.19107932 + inSlope: 0.09454298 + outSlope: 0.09454298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.19612224 + inSlope: 0.06838 + outSlope: 0.06838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.1817478 + inSlope: -0.706213 + outSlope: -0.706213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14893425 + inSlope: -1.2322164 + outSlope: -1.2322164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.09960003 + inSlope: -1.4628255 + outSlope: -1.4628255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.051412467 + inSlope: -1.3604451 + outSlope: -1.3604451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.00890369 + inSlope: -1.2821862 + outSlope: -1.2821862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.034066606 + inSlope: -1.0869784 + outSlope: -1.0869784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.063561544 + inSlope: -0.5765947 + outSlope: -0.5765947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.072506234 + inSlope: -0.06323803 + outSlope: -0.06323803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.067777425 + inSlope: 0.29700738 + outSlope: 0.29700738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.05270576 + inSlope: 0.61619914 + outSlope: 0.61619914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.02669743 + inSlope: 0.39012393 + outSlope: 0.39012393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.32261974 + inSlope: 0.9710803 + outSlope: 0.9710803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.35498908 + inSlope: 1.2521338 + outSlope: 1.2521338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.47783133 + inSlope: 2.2895808 + outSlope: 2.2895808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.63341755 + inSlope: 1.9295514 + outSlope: 1.9295514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.68737084 + inSlope: 0.754624 + outSlope: 0.754624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.68372583 + inSlope: -0.1648146 + outSlope: -0.1648146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.65729856 + inSlope: -0.23481566 + outSlope: -0.23481566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.6473574 + inSlope: -0.07274764 + outSlope: -0.07274764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.660265 + inSlope: 0.257933 + outSlope: 0.257933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.66964424 + inSlope: 0.41945624 + outSlope: 0.41945624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6882288 + inSlope: 0.30267897 + outSlope: 0.30267897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.68982285 + inSlope: 0.16499084 + outSlope: 0.16499084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.70884705 + inSlope: 0.13000207 + outSlope: 0.13000207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.7182762 + inSlope: 0.4535179 + outSlope: 0.4535179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7381295 + inSlope: 0.115252286 + outSlope: 0.115252286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6070272 + inSlope: -2.4567351 + outSlope: -2.4567351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.34816328 + inSlope: -1.6093876 + outSlope: -1.6093876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.30701447 + inSlope: 0.15357009 + outSlope: 0.15357009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.32262096 + inSlope: 0.23409678 + outSlope: 0.23409678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05296518 + inSlope: 0.18139589 + outSlope: 0.18139589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.05901171 + inSlope: 0.6278491 + outSlope: 0.6278491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.15176593 + inSlope: 1.9010054 + outSlope: 1.9010054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.27873147 + inSlope: 1.1354816 + outSlope: 1.1354816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.29725426 + inSlope: 0.16000304 + outSlope: 0.16000304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.28939834 + inSlope: -0.23920925 + outSlope: -0.23920925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.27664405 + inSlope: -0.15473397 + outSlope: -0.15473397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.25791916 + inSlope: -0.4712116 + outSlope: -0.4712116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.23957726 + inSlope: -0.5440564 + outSlope: -0.5440564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.22164872 + inSlope: -0.66165745 + outSlope: -0.66165745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.1299626 + inSlope: -1.1009065 + outSlope: -1.1009065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.04962592 + inSlope: -1.2053392 + outSlope: -1.2053392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.010753747 + inSlope: -1.0399467 + outSlope: -1.0399467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.019703865 + inSlope: -0.7631118 + outSlope: -0.7631118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.04012036 + inSlope: -0.55856097 + outSlope: -0.55856097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.056941263 + inSlope: -0.40984404 + outSlope: -0.40984404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.06744329 + inSlope: 0.17105624 + outSlope: 0.17105624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.045537505 + inSlope: 1.6521642 + outSlope: 1.6521642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.04270093 + inSlope: 2.3896492 + outSlope: 2.3896492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.113772415 + inSlope: 0.79538405 + outSlope: 0.79538405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.09572661 + inSlope: -0.6987176 + outSlope: -0.6987176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.067191236 + inSlope: -0.28304845 + outSlope: -0.28304845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.07685668 + inSlope: 0.06946067 + outSlope: 0.06946067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.07182194 + inSlope: -0.35836944 + outSlope: -0.35836944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.05296534 + inSlope: -0.2828483 + outSlope: -0.2828483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1380156 + inSlope: -0.52188367 + outSlope: -0.52188367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.120619476 + inSlope: -0.5886619 + outSlope: -0.5886619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.09877147 + inSlope: -0.39569062 + outSlope: -0.39569062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0942401 + inSlope: -0.13014625 + outSlope: -0.13014625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.09009505 + inSlope: -0.9132278 + outSlope: -0.9132278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.03335825 + inSlope: -2.3882983 + outSlope: -2.3882983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.06912487 + inSlope: -2.011057 + outSlope: -2.011057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.10071224 + inSlope: -0.335078 + outSlope: -0.335078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0914634 + inSlope: -0.12325221 + outSlope: -0.12325221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.10892905 + inSlope: -0.54420954 + outSlope: -0.54420954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.14884107 + inSlope: -0.6997451 + outSlope: -0.6997451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.17439373 + inSlope: -0.5708522 + outSlope: -0.5708522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.1868979 + inSlope: -0.36446217 + outSlope: -0.36446217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.1986912 + inSlope: -0.14531894 + outSlope: -0.14531894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.19096895 + inSlope: 0.007663965 + outSlope: 0.007663965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.1960749 + inSlope: -0.042883504 + outSlope: -0.042883504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.19196515 + inSlope: -0.06877776 + outSlope: -0.06877776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.19841303 + inSlope: -0.046818536 + outSlope: -0.046818536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.19508637 + inSlope: 0.21509741 + outSlope: 0.21509741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.18407321 + inSlope: 0.24038929 + outSlope: 0.24038929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.17906043 + inSlope: 1.343825 + outSlope: 1.343825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0944848 + inSlope: 3.787864 + outSlope: 3.787864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.073463745 + inSlope: 4.6694355 + outSlope: 4.6694355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.21681085 + inSlope: 2.3533223 + outSlope: 2.3533223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.230352 + inSlope: -0.39839497 + outSlope: -0.39839497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.19025114 + inSlope: -1.0506934 + outSlope: -1.0506934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.16030577 + inSlope: -0.66416764 + outSlope: -0.66416764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.14597334 + inSlope: -0.3343261 + outSlope: -0.3343261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.13801736 + inSlope: -0.11933944 + outSlope: -0.11933944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06388048 + inSlope: -1.0417943 + outSlope: -1.0417943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09860696 + inSlope: -1.5818719 + outSlope: -1.5818719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.16933861 + inSlope: -2.6039295 + outSlope: -2.6039295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.27220228 + inSlope: -2.309473 + outSlope: -2.309473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3233035 + inSlope: 0.5896452 + outSlope: 0.5896452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.2328926 + inSlope: 4.0640707 + outSlope: 4.0640707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.052365374 + inSlope: 5.624511 + outSlope: 5.624511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.14207485 + inSlope: 3.3487952 + outSlope: 3.3487952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.17088762 + inSlope: 0.7512727 + outSlope: 0.7512727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.1921597 + inSlope: -0.18046507 + outSlope: -0.18046507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15885662 + inSlope: -1.1069643 + outSlope: -1.1069643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.08161156 + inSlope: -0.9477198 + outSlope: -0.9477198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.055180725 + inSlope: -0.6017663 + outSlope: -0.6017663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.041493807 + inSlope: -0.35896575 + outSlope: -0.35896575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.031249683 + inSlope: -0.4890468 + outSlope: -0.4890468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.008890677 + inSlope: -0.6918897 + outSlope: -0.6918897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.014876336 + inSlope: -0.6847038 + outSlope: -0.6847038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.036756244 + inSlope: -0.7920214 + outSlope: -0.7920214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.067677766 + inSlope: -1.2401611 + outSlope: -1.2401611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.11943363 + inSlope: -1.8658228 + outSlope: -1.8658228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.19206597 + inSlope: -2.2208948 + outSlope: -2.2208948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.26749328 + inSlope: -0.5385116 + outSlope: -0.5385116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.22796664 + inSlope: 1.059648 + outSlope: 1.059648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.19685002 + inSlope: 1.7382073 + outSlope: 1.7382073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.11208621 + inSlope: 2.9311473 + outSlope: 2.9311473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0014401849 + inSlope: 1.7639544 + outSlope: 1.7639544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0055108364 + inSlope: -0.62343836 + outSlope: -0.62343836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.043002788 + inSlope: -0.8872154 + outSlope: -0.8872154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.053636886 + inSlope: -0.059445187 + outSlope: -0.059445187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.046965797 + inSlope: -0.15366657 + outSlope: -0.15366657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.063881375 + inSlope: -0.253733 + outSlope: -0.253733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.017081676 + inSlope: 0.0145016415 + outSlope: 0.0145016415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.016598288 + inSlope: 0.03448446 + outSlope: 0.03448446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.014782712 + inSlope: 0.04338664 + outSlope: 0.04338664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.013705845 + inSlope: -0.34085238 + outSlope: -0.34085238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.037506204 + inSlope: -0.49308515 + outSlope: -0.49308515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.046578187 + inSlope: 0.5991285 + outSlope: 0.5991285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.002435714 + inSlope: 0.8601136 + outSlope: 0.8601136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.010762743 + inSlope: -0.17029643 + outSlope: -0.17029643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00891738 + inSlope: -0.30485967 + outSlope: -0.30485967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.009561233 + inSlope: 0.15385684 + outSlope: 0.15385684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0013397416 + inSlope: 0.14342928 + outSlope: 0.14342928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00000071716977 + inSlope: -0.020085368 + outSlope: -0.020085368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.00000071716977 + inSlope: 0.0000020490559 + outSlope: 0.0000020490559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0000008537735 + inSlope: 0.000005122644 + outSlope: 0.000005122644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0000010586793 + inSlope: 0.0000051226443 + outSlope: 0.0000051226443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.000001195283 + inSlope: 0.000010757538 + outSlope: 0.000010757538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0000017758489 + inSlope: 0.000013318855 + outSlope: 0.000013318855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0000020832074 + inSlope: 0.000007683962 + outSlope: 0.000007683962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0000022881131 + inSlope: 0.00001383113 + outSlope: 0.00001383113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0000030052831 + inSlope: 0.000020490565 + outSlope: 0.000020490565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0000036541508 + inSlope: 0.000015367921 + outSlope: 0.000015367921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.000004029811 + inSlope: 0.028488576 + outSlope: 0.028488576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0019028909 + inSlope: -0.11591263 + outSlope: -0.11591263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0077234884 + inSlope: -1.3092704 + outSlope: -1.3092704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.08538187 + inSlope: -2.3286567 + outSlope: -2.3286567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.16296725 + inSlope: -0.86431026 + outSlope: -0.86431026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.14300247 + inSlope: 0.8225914 + outSlope: 0.8225914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.10812784 + inSlope: 1.3403983 + outSlope: 1.3403983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.053642567 + inSlope: 1.5829706 + outSlope: 1.5829706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.0025964621 + inSlope: 0.64102954 + outSlope: 0.64102954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.010907306 + inSlope: -0.21700755 + outSlope: -0.21700755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.01706364 + inSlope: -0.09234476 + outSlope: -0.09234476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5237365 + inSlope: 0.70537263 + outSlope: 0.70537263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5933827 + inSlope: 0.098726764 + outSlope: 0.098726764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.5906776 + inSlope: 0.018291745 + outSlope: 0.018291745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5963969 + inSlope: -0.0032937527 + outSlope: -0.0032937527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5943826 + inSlope: 0.051903434 + outSlope: 0.051903434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.5883566 + inSlope: -0.9299291 + outSlope: -0.9299291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.46417737 + inSlope: -2.0664554 + outSlope: -2.0664554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.34256712 + inSlope: -1.5506501 + outSlope: -1.5506501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.29672152 + inSlope: -0.89964294 + outSlope: -0.89964294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.2925716 + inSlope: 0.5198611 + outSlope: 0.5198611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.3357043 + inSlope: 0.19293857 + outSlope: 0.19293857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.33011094 + inSlope: -0.18711358 + outSlope: -0.18711358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.32323006 + inSlope: -0.2564541 + outSlope: -0.2564541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.313014 + inSlope: 0.12198737 + outSlope: 0.12198737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.33136258 + inSlope: 0.49861103 + outSlope: 0.49861103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.36567068 + inSlope: 0.57287335 + outSlope: 0.57287335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.38444632 + inSlope: 0.73965913 + outSlope: 0.73965913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.47588745 + inSlope: 0.7991252 + outSlope: 0.7991252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.50066173 + inSlope: 0.7177912 + outSlope: 0.7177912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.52374023 + inSlope: 0.34617662 + outSlope: 0.34617662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.15242216 + inSlope: -0.8802478 + outSlope: -0.8802478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.24841858 + inSlope: -1.0759573 + outSlope: -1.0759573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.33906332 + inSlope: -0.25204483 + outSlope: -0.25204483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.32994464 + inSlope: 0.04790515 + outSlope: 0.04790515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.33304602 + inSlope: 0.008805245 + outSlope: 0.008805245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.32935762 + inSlope: 0.78987485 + outSlope: 0.78987485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.2803877 + inSlope: 2.259265 + outSlope: 2.259265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.17873988 + inSlope: 3.0389884 + outSlope: 3.0389884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0777884 + inSlope: 2.6776721 + outSlope: 2.6776721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.00022840648 + inSlope: 2.1486127 + outSlope: 2.1486127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.20650856 + inSlope: 1.1274946 + outSlope: 1.1274946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.25899738 + inSlope: -0.028822541 + outSlope: -0.028822541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.19491976 + inSlope: -1.735641 + outSlope: -1.735641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12460378 + inSlope: -2.0966468 + outSlope: -2.0966468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0551432 + inSlope: -1.8726852 + outSlope: -1.8726852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.00024190455 + inSlope: -1.3875449 + outSlope: -1.3875449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.037359767 + inSlope: -0.92591095 + outSlope: -0.92591095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.06196931 + inSlope: -0.63133836 + outSlope: -0.63133836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.07944898 + inSlope: -0.56069124 + outSlope: -0.56069124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.099348724 + inSlope: -0.67658365 + outSlope: -0.67658365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.124554515 + inSlope: -0.79610395 + outSlope: -0.79610395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.15242237 + inSlope: -0.4180167 + outSlope: -0.4180167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21631263 + inSlope: -0.19204526 + outSlope: -0.19204526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.19569871 + inSlope: -0.24699076 + outSlope: -0.24699076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.18087693 + inSlope: -0.23005325 + outSlope: -0.23005325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.16690089 + inSlope: -0.05455122 + outSlope: -0.05455122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.1684646 + inSlope: 0.07618994 + outSlope: 0.07618994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.17198022 + inSlope: 0.33076245 + outSlope: 0.33076245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.19051543 + inSlope: 1.1451126 + outSlope: 1.1451126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.24832106 + inSlope: 2.0009565 + outSlope: 2.0009565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.3239126 + inSlope: 1.5128204 + outSlope: 1.5128204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.3491758 + inSlope: -0.005110055 + outSlope: -0.005110055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.32357192 + inSlope: -0.9215642 + outSlope: -0.9215642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.28773823 + inSlope: -1.1501389 + outSlope: -1.1501389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.246896 + inSlope: -1.5436991 + outSlope: -1.5436991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.18482487 + inSlope: -1.8359237 + outSlope: -1.8359237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.12450109 + inSlope: -1.1248744 + outSlope: -1.1248744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.10983329 + inSlope: 0.08098273 + outSlope: 0.08098273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.1298999 + inSlope: 0.4765479 + outSlope: 0.4765479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.14160314 + inSlope: 0.33491626 + outSlope: 0.33491626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.15222766 + inSlope: 0.5135331 + outSlope: 0.5135331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.1758387 + inSlope: 0.64241374 + outSlope: 0.64241374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.22593229 + inSlope: 0.06181217 + outSlope: 0.06181217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.22398274 + inSlope: -0.16988014 + outSlope: -0.16988014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.21631181 + inSlope: -0.115063556 + outSlope: -0.115063556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.69544584 + inSlope: 0.3761333 + outSlope: 0.3761333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.7383482 + inSlope: 0.5739498 + outSlope: 0.5739498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.7706134 + inSlope: 0.348899 + outSlope: 0.348899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.7817828 + inSlope: -0.0773219 + outSlope: -0.0773219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.732365 + inSlope: -0.83867854 + outSlope: -0.83867854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6620247 + inSlope: -2.3008401 + outSlope: -2.3008401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.55615735 + inSlope: -3.7714329 + outSlope: -3.7714329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.4105957 + inSlope: -3.7902577 + outSlope: -3.7902577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.30347338 + inSlope: -2.4111717 + outSlope: -2.4111717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.24985091 + inSlope: -0.9124964 + outSlope: -0.9124964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.2426403 + inSlope: 0.7852205 + outSlope: 0.7852205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.302199 + inSlope: 2.823854 + outSlope: 2.823854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.43089738 + inSlope: 4.459779 + outSlope: 4.459779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.7473511 + inSlope: 3.1699507 + outSlope: 3.1699507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.7991831 + inSlope: -1.0551639 + outSlope: -1.0551639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.74050343 + inSlope: -1.3936477 + outSlope: -1.3936477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6656067 + inSlope: -0.34788167 + outSlope: -0.34788167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.68325007 + inSlope: 0.35348535 + outSlope: 0.35348535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.69229585 + inSlope: 0.18613264 + outSlope: 0.18613264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.066962704 + inSlope: -0.3922299 + outSlope: -0.3922299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.053888373 + inSlope: -0.39522108 + outSlope: -0.39522108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.04061463 + inSlope: -0.29301232 + outSlope: -0.29301232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.034354217 + inSlope: -0.09643937 + outSlope: -0.09643937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.03418534 + inSlope: 0.024454707 + outSlope: 0.024454707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.03598453 + inSlope: 0.012493569 + outSlope: 0.012493569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.035018243 + inSlope: -0.11609249 + outSlope: -0.11609249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.028245032 + inSlope: -0.23398355 + outSlope: -0.23398355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.01941934 + inSlope: -0.20418358 + outSlope: -0.20418358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.014632793 + inSlope: -0.3670348 + outSlope: -0.3670348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0050496445 + inSlope: -1.3331122 + outSlope: -1.3331122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.074241355 + inSlope: -1.9503481 + outSlope: -1.9503481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.1350729 + inSlope: -0.34818357 + outSlope: -0.34818357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.09745365 + inSlope: 1.6664057 + outSlope: 1.6664057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.02397919 + inSlope: 1.8225787 + outSlope: 1.8225787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.024051556 + inSlope: 0.86809945 + outSlope: 0.86809945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.033894066 + inSlope: -0.2452566 + outSlope: -0.2452566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0077011017 + inSlope: -0.8297719 + outSlope: -0.8297719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.021424055 + inSlope: -0.32738703 + outSlope: -0.32738703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0141246645 + inSlope: 0.6510905 + outSlope: 0.6510905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.02198195 + inSlope: 0.8470346 + outSlope: 0.8470346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.04234429 + inSlope: 0.40018162 + outSlope: 0.40018162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.048660737 + inSlope: 0.39870244 + outSlope: 0.39870244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.068924464 + inSlope: 0.7400405 + outSlope: 0.7400405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.09799681 + inSlope: 0.6500655 + outSlope: 0.6500655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.112262174 + inSlope: 0.14821455 + outSlope: 0.14821455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.09656878 + inSlope: -0.31103918 + outSlope: -0.31103918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.07921599 + inSlope: -0.19733846 + outSlope: -0.19733846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.073985934 + inSlope: -0.18378901 + outSlope: -0.18378901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.066963375 + inSlope: -0.10533812 + outSlope: -0.10533812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.30440226 + inSlope: -0.2400568 + outSlope: -0.2400568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.33100682 + inSlope: -0.0078731775 + outSlope: -0.0078731775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.32746482 + inSlope: 0.28310305 + outSlope: 0.28310305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.31213328 + inSlope: 0.27717805 + outSlope: 0.27717805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.30898628 + inSlope: -0.21857727 + outSlope: -0.21857727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.3267051 + inSlope: 0.09261578 + outSlope: 0.09261578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.3028119 + inSlope: 0.7520253 + outSlope: 0.7520253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.27657008 + inSlope: 0.47502014 + outSlope: 0.47502014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.27114388 + inSlope: 0.462805 + outSlope: 0.462805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.2457164 + inSlope: 1.6856841 + outSlope: 1.6856841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.15876493 + inSlope: 2.6283693 + outSlope: 2.6283693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07049179 + inSlope: 2.1946762 + outSlope: 2.1946762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.012453242 + inSlope: 1.2093788 + outSlope: 1.2093788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.010133426 + inSlope: 0.15543078 + outSlope: 0.15543078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0020911822 + inSlope: -0.6362297 + outSlope: -0.6362297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.03228187 + inSlope: -1.1653068 + outSlope: -1.1653068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.07977831 + inSlope: -1.207055 + outSlope: -1.207055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.11275221 + inSlope: 0.023939013 + outSlope: 0.023939013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.07818232 + inSlope: 0.8538835 + outSlope: 0.8538835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.05582663 + inSlope: -0.20942074 + outSlope: -0.20942074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.09214375 + inSlope: -1.4707553 + outSlope: -1.4707553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.15387706 + inSlope: -1.5487609 + outSlope: -1.5487609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.19539449 + inSlope: -1.1514012 + outSlope: -1.1514012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.23063713 + inSlope: -0.8399863 + outSlope: -0.8399863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.2513936 + inSlope: -0.61091566 + outSlope: -0.61091566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.285988 + inSlope: -0.36579823 + outSlope: -0.36579823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.30439854 + inSlope: -0.12970726 + outSlope: -0.12970726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15674171 + inSlope: 1.5427221 + outSlope: 1.5427221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.31040052 + inSlope: 1.4111328 + outSlope: 1.4111328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.35519376 + inSlope: 1.0957357 + outSlope: 1.0957357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.38344955 + inSlope: 0.85368127 + outSlope: 0.85368127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.41210586 + inSlope: -0.06562805 + outSlope: -0.06562805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.37907436 + inSlope: -1.1844877 + outSlope: -1.1844877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.33314002 + inSlope: -2.1810937 + outSlope: -2.1810937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.23366813 + inSlope: -5.147693 + outSlope: -5.147693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.010039505 + inSlope: -10.451183 + outSlope: -10.451183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.46307737 + inSlope: -11.967625 + outSlope: -11.967625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.80788136 + inSlope: -4.544934 + outSlope: -4.544934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.7660732 + inSlope: 4.0983953 + outSlope: 4.0983953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.53465503 + inSlope: 6.3495536 + outSlope: 6.3495536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.34276986 + inSlope: 4.6920605 + outSlope: 4.6920605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.2218511 + inSlope: 2.8441072 + outSlope: 2.8441072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.15316255 + inSlope: 1.4123493 + outSlope: 1.4123493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.12769444 + inSlope: 0.046542555 + outSlope: 0.046542555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.15005976 + inSlope: -1.540668 + outSlope: -1.540668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.23040558 + inSlope: -2.587789 + outSlope: -2.587789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.32257903 + inSlope: -1.7420025 + outSlope: -1.7420025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.34653914 + inSlope: 0.36276782 + outSlope: 0.36276782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.29839444 + inSlope: 1.5840356 + outSlope: 1.5840356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.24093668 + inSlope: 1.695126 + outSlope: 1.695126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.18538605 + inSlope: 1.8320332 + outSlope: 1.8320332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.11880114 + inSlope: 2.031314 + outSlope: 2.031314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.049965132 + inSlope: 1.9162147 + outSlope: 1.9162147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.008946499 + inSlope: 1.6826546 + outSlope: 1.6826546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.062211838 + inSlope: 1.5142543 + outSlope: 1.5142543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.10989669 + inSlope: 1.4179565 + outSlope: 1.4179565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.15674235 + inSlope: 0.70268303 + outSlope: 0.70268303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.019671528 + inSlope: -0.0052119787 + outSlope: -0.0052119787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.019798163 + inSlope: 0.015795749 + outSlope: 0.015795749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.01879221 + inSlope: 0.022433352 + outSlope: 0.022433352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.018302606 + inSlope: -0.22876722 + outSlope: -0.22876722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.034043357 + inSlope: -0.67727226 + outSlope: -0.67727226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0634541 + inSlope: -0.65647656 + outSlope: -0.65647656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.07780847 + inSlope: -0.19865558 + outSlope: -0.19865558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.076697804 + inSlope: 0.013293253 + outSlope: 0.013293253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.07692225 + inSlope: -0.0075703124 + outSlope: -0.0075703124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.07720249 + inSlope: 0.949283 + outSlope: 0.949283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.013636722 + inSlope: 2.6044085 + outSlope: 2.6044085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.09642483 + inSlope: 2.0052695 + outSlope: 2.0052695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.12004801 + inSlope: -0.5300906 + outSlope: -0.5300906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.061085466 + inSlope: -1.7532475 + outSlope: -1.7532475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0031649056 + inSlope: -1.3892815 + outSlope: -1.3892815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.03153328 + inSlope: -1.6857598 + outSlope: -1.6857598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.10921917 + inSlope: -0.52711886 + outSlope: -0.52711886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.06667464 + inSlope: 0.88814205 + outSlope: 0.88814205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.050009727 + inSlope: 0.02325277 + outSlope: 0.02325277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.06512443 + inSlope: -0.4100803 + outSlope: -0.4100803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.07734841 + inSlope: -0.06565272 + outSlope: -0.06565272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.069501296 + inSlope: 0.79208416 + outSlope: 0.79208416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.02454277 + inSlope: 0.733915 + outSlope: 0.733915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.020573588 + inSlope: 0.056808185 + outSlope: 0.056808185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.020755554 + inSlope: 0.011631357 + outSlope: 0.011631357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.019798163 + inSlope: -0.0047115544 + outSlope: -0.0047115544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.021069655 + inSlope: -0.008187862 + outSlope: -0.008187862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.020344019 + inSlope: 0.014599621 + outSlope: 0.014599621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.020096347 + inSlope: 0.0006890211 + outSlope: 0.0006890211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.020298084 + inSlope: 0.0063784057 + outSlope: 0.0063784057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.019671118 + inSlope: 0.009404471 + outSlope: 0.009404471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12031691 + inSlope: 1.2006582 + outSlope: 1.2006582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.08029497 + inSlope: 1.1947179 + outSlope: 1.1947179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04066905 + inSlope: 0.91543126 + outSlope: 0.91543126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.019266209 + inSlope: 0.17946425 + outSlope: 0.17946425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.028704762 + inSlope: -0.5724711 + outSlope: -0.5724711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.057430945 + inSlope: -0.997606 + outSlope: -0.997606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.09521184 + inSlope: -1.3436494 + outSlope: -1.3436494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.19796288 + inSlope: -1.3158559 + outSlope: -1.3158559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.2347313 + inSlope: -1.1540482 + outSlope: -1.1540482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.27489942 + inSlope: -1.3333294 + outSlope: -1.3333294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.32361993 + inSlope: -1.3170402 + outSlope: -1.3170402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.38741714 + inSlope: -0.6529316 + outSlope: -0.6529316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.4362235 + inSlope: 0.11029947 + outSlope: 0.11029947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.4276482 + inSlope: 0.4447744 + outSlope: 0.4447744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.4065719 + inSlope: 0.48580587 + outSlope: 0.48580587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.39526114 + inSlope: 0.19245821 + outSlope: 0.19245821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.39374134 + inSlope: 0.45529705 + outSlope: 0.45529705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.36490798 + inSlope: 1.29788 + outSlope: 1.29788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.30721593 + inSlope: 1.4792671 + outSlope: 1.4792671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.26629016 + inSlope: 0.7003436 + outSlope: 0.7003436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.2605264 + inSlope: 0.1689443 + outSlope: 0.1689443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.2550272 + inSlope: 0.51406896 + outSlope: 0.51406896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.18800654 + inSlope: 1.0775096 + outSlope: 1.0775096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.1544212 + inSlope: 1.0155272 + outSlope: 1.0155272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.12030466 + inSlope: 0.5117467 + outSlope: 0.5117467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.015003602 + inSlope: 1.2421844 + outSlope: 1.2421844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.05640975 + inSlope: 1.0661877 + outSlope: 1.0661877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.11783805 + inSlope: 0.2832394 + outSlope: 0.2832394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.11776726 + inSlope: -0.549078 + outSlope: -0.549078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.08795687 + inSlope: -0.8340342 + outSlope: -0.8340342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.06216498 + inSlope: -0.38730174 + outSlope: -0.38730174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.062136754 + inSlope: -0.2780119 + outSlope: -0.2780119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.043630857 + inSlope: -1.4886696 + outSlope: -1.4886696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.037107885 + inSlope: -2.9169662 + outSlope: -2.9169662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.15083365 + inSlope: -3.1499367 + outSlope: -3.1499367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.24710375 + inSlope: -2.5802498 + outSlope: -2.5802498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.39293876 + inSlope: -2.0864196 + outSlope: -2.0864196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.5309467 + inSlope: -1.9673042 + outSlope: -1.9673042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.60929906 + inSlope: 0.8727528 + outSlope: 0.8727528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.5349151 + inSlope: 2.8384008 + outSlope: 2.8384008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.42007232 + inSlope: 2.5531695 + outSlope: 2.5531695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.36470374 + inSlope: 0.7659566 + outSlope: 0.7659566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.3690086 + inSlope: -0.038458377 + outSlope: -0.038458377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.36726764 + inSlope: 0.70311844 + outSlope: 0.70311844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.32213408 + inSlope: 1.5035108 + outSlope: 1.5035108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.20517753 + inSlope: 1.999326 + outSlope: 1.999326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.13374518 + inSlope: 1.9721293 + outSlope: 1.9721293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.07370224 + inSlope: 1.5677994 + outSlope: 1.5677994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.029225316 + inSlope: 1.3305731 + outSlope: 1.3305731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.015002708 + inSlope: 0.66341865 + outSlope: 0.66341865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6060465 + inSlope: -0.84982926 + outSlope: -0.84982926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.6806186 + inSlope: 0.18375994 + outSlope: 0.18375994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.5884309 + inSlope: 1.5128045 + outSlope: 1.5128045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.49120426 + inSlope: 1.0778408 + outSlope: 1.0778408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.42316234 + inSlope: 0.2947578 + outSlope: 0.2947578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.4475914 + inSlope: -0.7636161 + outSlope: -0.7636161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.49658206 + inSlope: -0.4776097 + outSlope: -0.4776097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5240956 + inSlope: -0.5854211 + outSlope: -0.5854211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.5467492 + inSlope: -0.41971362 + outSlope: -0.41971362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.53487974 + inSlope: -0.04069069 + outSlope: -0.04069069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.58090687 + inSlope: -0.696586 + outSlope: -0.696586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.6060453 + inSlope: -0.37707558 + outSlope: -0.37707558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.19536184 + inSlope: 0.31065342 + outSlope: 0.31065342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.21032082 + inSlope: -0.28672192 + outSlope: -0.28672192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.17597978 + inSlope: -0.6954337 + outSlope: -0.6954337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.14983088 + inSlope: -0.9239681 + outSlope: -0.9239681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.11438191 + inSlope: -1.0690167 + outSlope: -1.0690167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0785631 + inSlope: -0.82561743 + outSlope: -0.82561743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.05934075 + inSlope: -0.30760574 + outSlope: -0.30760574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.058056053 + inSlope: -0.03820353 + outSlope: -0.03820353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.056793846 + inSlope: -0.20828912 + outSlope: -0.20828912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.04417011 + inSlope: -0.47620362 + outSlope: -0.47620362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.025046939 + inSlope: -0.5873767 + outSlope: -0.5873767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0050116857 + inSlope: -0.6181665 + outSlope: -0.6181665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.01616416 + inSlope: -0.66459835 + outSlope: -0.66459835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.039294906 + inSlope: -0.65705967 + outSlope: -0.65705967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.05996814 + inSlope: -0.48597437 + outSlope: -0.48597437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.06507187 + inSlope: 0.4261111 + outSlope: 0.4261111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.045213602 + inSlope: 0.6509137 + outSlope: 0.6509137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.021677624 + inSlope: 0.69293416 + outSlope: 0.69293416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.000982046 + inSlope: 0.7119942 + outSlope: 0.7119942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.025788646 + inSlope: 0.87404644 + outSlope: 0.87404644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0947478 + inSlope: 0.98357004 + outSlope: 0.98357004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.12482314 + inSlope: 0.87773436 + outSlope: 0.87773436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.17840326 + inSlope: 0.63145006 + outSlope: 0.63145006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.19536011 + inSlope: 0.2543521 + outSlope: 0.2543521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.28199324 + inSlope: 0.32337692 + outSlope: 0.32337692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.29277247 + inSlope: 0.16715033 + outSlope: 0.16715033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.28055835 + inSlope: -0.23928839 + outSlope: -0.23928839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.25448248 + inSlope: -0.55970275 + outSlope: -0.55970275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.21766509 + inSlope: -0.42011958 + outSlope: -0.42011958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.19832213 + inSlope: -0.18503913 + outSlope: -0.18503913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.18563363 + inSlope: -0.380539 + outSlope: -0.380539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.11557603 + inSlope: -0.8353572 + outSlope: -0.8353572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.05690852 + inSlope: -0.9451438 + outSlope: -0.9451438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.02438201 + inSlope: -0.9548229 + outSlope: -0.9548229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.006746335 + inSlope: -0.88033044 + outSlope: -0.88033044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.034306686 + inSlope: -0.6600578 + outSlope: -0.6600578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.050750177 + inSlope: -0.06128356 + outSlope: -0.06128356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.038392283 + inSlope: 0.9513888 + outSlope: 0.9513888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.012675769 + inSlope: 1.8364493 + outSlope: 1.8364493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.084037766 + inSlope: 1.9854732 + outSlope: 1.9854732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.14504065 + inSlope: 1.5285184 + outSlope: 1.5285184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.21595049 + inSlope: 0.8195395 + outSlope: 0.8195395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.24057493 + inSlope: 0.5789243 + outSlope: 0.5789243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.26701292 + inSlope: 0.4117294 + outSlope: 0.4117294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.2819941 + inSlope: 0.22471711 + outSlope: 0.22471711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6483013 + inSlope: 0.006730556 + outSlope: 0.006730556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.66523 + inSlope: 0.12445004 + outSlope: 0.12445004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6553509 + inSlope: -0.7033897 + outSlope: -0.7033897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.59541786 + inSlope: -0.38651583 + outSlope: -0.38651583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.617761 + inSlope: -0.1812875 + outSlope: -0.1812875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5566536 + inSlope: -1.4067643 + outSlope: -1.4067643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.4638024 + inSlope: -1.0167859 + outSlope: -1.0167859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.45703205 + inSlope: 1.040247 + outSlope: 1.040247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.5960903 + inSlope: 1.0573847 + outSlope: 1.0573847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6510932 + inSlope: -0.049038727 + outSlope: -0.049038727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.649289 + inSlope: -0.050539035 + outSlope: -0.050539035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.14838979 + inSlope: -0.84775144 + outSlope: -0.84775144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.17664817 + inSlope: -0.5797317 + outSlope: -0.5797317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.19158237 + inSlope: -0.1924438 + outSlope: -0.1924438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.20343734 + inSlope: 0.13265215 + outSlope: 0.13265215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.19102468 + inSlope: 0.5328941 + outSlope: 0.5328941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.16791107 + inSlope: 0.5951621 + outSlope: 0.5951621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1513472 + inSlope: 0.38176262 + outSlope: 0.38176262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.14246023 + inSlope: 0.35629016 + outSlope: 0.35629016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.12759453 + inSlope: 0.5283474 + outSlope: 0.5283474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.10723707 + inSlope: 0.4978762 + outSlope: 0.4978762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.094402775 + inSlope: 0.17062911 + outSlope: 0.17062911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.103943884 + inSlope: -0.23793508 + outSlope: -0.23793508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.11601591 + inSlope: -0.057283446 + outSlope: -0.057283446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.115543015 + inSlope: 0.062857166 + outSlope: 0.062857166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.1152433 + inSlope: -0.38104248 + outSlope: -0.38104248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.13722825 + inSlope: -0.7566147 + outSlope: -0.7566147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.16568428 + inSlope: -0.610385 + outSlope: -0.610385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.1779206 + inSlope: -0.22886565 + outSlope: -0.22886565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.18094198 + inSlope: -0.19833755 + outSlope: -0.19833755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.19114311 + inSlope: 0.2167442 + outSlope: 0.2167442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.1664924 + inSlope: 1.6175926 + outSlope: 1.6175926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.08330356 + inSlope: 1.9555094 + outSlope: 1.9555094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.036125086 + inSlope: 0.094798625 + outSlope: 0.094798625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.076983735 + inSlope: -1.2413661 + outSlope: -1.2413661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.11888282 + inSlope: -0.76665366 + outSlope: -0.76665366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.12809393 + inSlope: -0.44258842 + outSlope: -0.44258842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.14838876 + inSlope: -0.30442166 + outSlope: -0.30442166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11135039 + inSlope: -0.33247656 + outSlope: -0.33247656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.12243294 + inSlope: -0.30176324 + outSlope: -0.30176324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.13146794 + inSlope: -0.34130222 + outSlope: -0.34130222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.14518642 + inSlope: -0.4513952 + outSlope: -0.4513952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.17151444 + inSlope: -0.039351866 + outSlope: -0.039351866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1641844 + inSlope: 0.36435592 + outSlope: 0.36435592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.14722404 + inSlope: 0.39757404 + outSlope: 0.39757404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.13767947 + inSlope: 0.22276351 + outSlope: 0.22276351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.13237314 + inSlope: 0.26037064 + outSlope: 0.26037064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.12032143 + inSlope: 0.41243356 + outSlope: 0.41243356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09627397 + inSlope: 0.03592997 + outSlope: 0.03592997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.10248223 + inSlope: -0.35072255 + outSlope: -0.35072255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.13610472 + inSlope: -0.3630787 + outSlope: -0.3630787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.14563684 + inSlope: -0.14023937 + outSlope: -0.14023937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.16313663 + inSlope: -0.22892492 + outSlope: -0.22892492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.16820905 + inSlope: 0.07590027 + outSlope: 0.07590027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.1580766 + inSlope: 0.5645994 + outSlope: 0.5645994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.097969346 + inSlope: 0.90657 + outSlope: 0.90657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.07013106 + inSlope: 0.7388656 + outSlope: 0.7388656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.048711635 + inSlope: 0.4106946 + outSlope: 0.4106946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.04275144 + inSlope: -0.17155553 + outSlope: -0.17155553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.06014865 + inSlope: -0.6950277 + outSlope: -0.6950277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.08908658 + inSlope: -0.7680253 + outSlope: -0.7680253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.111350365 + inSlope: -0.33395594 + outSlope: -0.33395594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12771474 + inSlope: 0.11510431 + outSlope: 0.11510431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.13155155 + inSlope: -0.02818219 + outSlope: -0.02818219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.10105791 + inSlope: -0.29169238 + outSlope: -0.29169238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.08795704 + inSlope: -0.20185867 + outSlope: -0.20185867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.08045719 + inSlope: -0.25646916 + outSlope: -0.25646916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0708591 + inSlope: -0.43247163 + outSlope: -0.43247163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.051625747 + inSlope: -0.63736343 + outSlope: -0.63736343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.028368201 + inSlope: -0.5599248 + outSlope: -0.5599248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.014297432 + inSlope: -0.33020097 + outSlope: -0.33020097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.006354799 + inSlope: -0.17488234 + outSlope: -0.17488234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0026386038 + inSlope: -0.010318834 + outSlope: -0.010318834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0056668767 + inSlope: 0.007723026 + outSlope: 0.007723026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0031534743 + inSlope: -0.37368333 + outSlope: -0.37368333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.019245362 + inSlope: -0.9709422 + outSlope: -0.9709422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.061576057 + inSlope: -1.3371505 + outSlope: -1.3371505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.108388714 + inSlope: -1.2311163 + outSlope: -1.2311163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.14365046 + inSlope: -0.99298185 + outSlope: -0.99298185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.1745875 + inSlope: -1.0941443 + outSlope: -1.0941443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.21659341 + inSlope: -1.1028419 + outSlope: -1.1028419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2481103 + inSlope: -0.1579571 + outSlope: -0.1579571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.22712384 + inSlope: 1.3982038 + outSlope: 1.3982038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.15489663 + inSlope: 2.1488948 + outSlope: 2.1488948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.083864205 + inSlope: 1.5612769 + outSlope: 1.5612769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.05081154 + inSlope: 0.92675173 + outSlope: 0.92675173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.022080759 + inSlope: 1.1655915 + outSlope: 1.1655915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.026894573 + inSlope: 1.4622345 + outSlope: 1.4622345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.07540154 + inSlope: 1.2248693 + outSlope: 1.2248693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.10855245 + inSlope: 0.78468543 + outSlope: 0.78468543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.12771392 + inSlope: 0.2874213 + outSlope: 0.2874213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.85517895 + inSlope: 0.97811216 + outSlope: 0.97811216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.80628645 + inSlope: 0.3039175 + outSlope: 0.3039175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.81031436 + inSlope: 0.55500364 + outSlope: 0.55500364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.7638194 + inSlope: 0.3660232 + outSlope: 0.3660232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.7659389 + inSlope: 0.28959003 + outSlope: 0.28959003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.7172486 + inSlope: 0.14980572 + outSlope: 0.14980572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.70668525 + inSlope: 0.5397979 + outSlope: 0.5397979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.67293936 + inSlope: -0.6376453 + outSlope: -0.6376453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.7909483 + inSlope: -2.035544 + outSlope: -2.035544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.8576641 + inSlope: -2.2610378 + outSlope: -2.2610378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -1.0109625 + inSlope: -1.0573957 + outSlope: -1.0573957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.97514415 + inSlope: 0.9676947 + outSlope: 0.9676947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.89600545 + inSlope: 1.0863793 + outSlope: 1.0863793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.8551759 + inSlope: 0.6124415 + outSlope: 0.6124415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.237625 + inSlope: -1.900252 + outSlope: -1.900252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.30096674 + inSlope: -1.3611857 + outSlope: -1.3611857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.32903183 + inSlope: 0.14887066 + outSlope: 0.14887066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.318446 + inSlope: 0.5125769 + outSlope: 0.5125769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.29486004 + inSlope: 0.46274942 + outSlope: 0.46274942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.28759605 + inSlope: -0.22759311 + outSlope: -0.22759311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.3805519 + inSlope: -0.7101149 + outSlope: -0.7101149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.36890134 + inSlope: 1.7158979 + outSlope: 1.7158979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.2806052 + inSlope: 3.1334386 + outSlope: 3.1334386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.16000536 + inSlope: 3.4280353 + outSlope: 3.4280353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.05206953 + inSlope: 2.9769664 + outSlope: 2.9769664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.038458966 + inSlope: 2.5060883 + outSlope: 2.5060883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.17770568 + inSlope: 1.6836497 + outSlope: 1.6836497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.22724631 + inSlope: 1.022349 + outSlope: 1.022349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.24586225 + inSlope: 0.12519172 + outSlope: 0.12519172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.23559245 + inSlope: -0.4296585 + outSlope: -0.4296585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.21721834 + inSlope: -0.14370659 + outSlope: -0.14370659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.22601199 + inSlope: 0.8634343 + outSlope: 0.8634343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.27478066 + inSlope: 1.3975666 + outSlope: 1.3975666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.31918317 + inSlope: 0.37200278 + outSlope: 0.37200278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.2995809 + inSlope: -1.8865819 + outSlope: -1.8865819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.19341098 + inSlope: -3.4712844 + outSlope: -3.4712844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.068161964 + inSlope: -3.1192217 + outSlope: -3.1192217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.014537082 + inSlope: -2.1266603 + outSlope: -2.1266603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.0736154 + inSlope: -2.0285687 + outSlope: -2.0285687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.14977486 + inSlope: -2.4601183 + outSlope: -2.4601183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.23762344 + inSlope: -1.3177252 + outSlope: -1.3177252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.29460534 + inSlope: -0.15669464 + outSlope: -0.15669464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.31423804 + inSlope: -0.56106395 + outSlope: -0.56106395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.39264408 + inSlope: -0.7100316 + outSlope: -0.7100316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.44340175 + inSlope: 0.022707582 + outSlope: 0.022707582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.43453228 + inSlope: -0.040971644 + outSlope: -0.040971644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.44670278 + inSlope: -0.34866682 + outSlope: -0.34866682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.46182367 + inSlope: 0.2918357 + outSlope: 0.2918357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.4171618 + inSlope: 0.35255572 + outSlope: 0.35255572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.41777033 + inSlope: -0.3800354 + outSlope: -0.3800354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.44249746 + inSlope: -0.6830175 + outSlope: -0.6830175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.46621743 + inSlope: 0.34210786 + outSlope: 0.34210786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.42473605 + inSlope: 0.6082259 + outSlope: 0.6082259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.38459015 + inSlope: 0.80610925 + outSlope: 0.80610925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.30201718 + inSlope: 0.4218851 + outSlope: 0.4218851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.29479548 + inSlope: 0.06129781 + outSlope: 0.06129781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.058012657 + inSlope: -0.5245073 + outSlope: -0.5245073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04052908 + inSlope: -0.5182424 + outSlope: -0.5182424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.02346316 + inSlope: -0.3872069 + outSlope: -0.3872069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.014715284 + inSlope: -0.09076141 + outSlope: -0.09076141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.017412398 + inSlope: 0.09273031 + outSlope: 0.09273031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.020897305 + inSlope: -0.008362573 + outSlope: -0.008362573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.016854892 + inSlope: -0.21646622 + outSlope: -0.21646622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0064662234 + inSlope: -0.25233692 + outSlope: -0.25233692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00003243267 + inSlope: -0.055457972 + outSlope: -0.055457972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0027690253 + inSlope: 0.13632387 + outSlope: 0.13632387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.00912069 + inSlope: 0.16353673 + outSlope: 0.16353673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.013671473 + inSlope: 0.14700148 + outSlope: 0.14700148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.018920792 + inSlope: 0.23215288 + outSlope: 0.23215288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.029148335 + inSlope: 0.40527982 + outSlope: 0.40527982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.066710874 + inSlope: 0.65036297 + outSlope: 0.65036297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.11321653 + inSlope: 0.7040255 + outSlope: 0.7040255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.15512092 + inSlope: 0.5227867 + outSlope: 0.5227867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.17918299 + inSlope: 0.0902372 + outSlope: 0.0902372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.17710027 + inSlope: -0.075271495 + outSlope: -0.075271495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.1647728 + inSlope: -0.28223607 + outSlope: -0.28223607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.13808268 + inSlope: -0.53716815 + outSlope: -0.53716815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0934924 + inSlope: -0.6491539 + outSlope: -0.6491539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.07392915 + inSlope: -0.5322004 + outSlope: -0.5322004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.058012355 + inSlope: -0.23875135 + outSlope: -0.23875135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.18000534 + inSlope: -0.5008332 + outSlope: -0.5008332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.19669978 + inSlope: -0.6396264 + outSlope: -0.6396264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.31333625 + inSlope: -0.69788164 + outSlope: -0.69788164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.33984703 + inSlope: -0.025112629 + outSlope: -0.025112629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.3353793 + inSlope: 0.111793146 + outSlope: 0.111793146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.31652308 + inSlope: 0.9548178 + outSlope: 0.9548178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.111143224 + inSlope: 2.6680284 + outSlope: 2.6680284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.01823837 + inSlope: 2.6188807 + outSlope: 2.6188807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.06344875 + inSlope: 1.9068561 + outSlope: 1.9068561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.108885325 + inSlope: 0.84211075 + outSlope: 0.84211075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.119589515 + inSlope: 0.06394163 + outSlope: 0.06394163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.113148116 + inSlope: -0.2372046 + outSlope: -0.2372046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.09396099 + inSlope: -0.2943918 + outSlope: -0.2943918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06747065 + inSlope: -0.6884965 + outSlope: -0.6884965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.03824998 + inSlope: -0.90480685 + outSlope: -0.90480685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0071501434 + inSlope: -0.8586569 + outSlope: -0.8586569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.018993812 + inSlope: -0.8049646 + outSlope: -0.8049646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.04651416 + inSlope: -0.9493514 + outSlope: -0.9493514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.08228389 + inSlope: -1.0373216 + outSlope: -1.0373216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.11566893 + inSlope: -0.88776183 + outSlope: -0.88776183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.16223943 + inSlope: -0.57806236 + outSlope: -0.57806236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.18000554 + inSlope: -0.26649085 + outSlope: -0.26649085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6952662 + inSlope: -0.35588977 + outSlope: -0.35588977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.6358917 + inSlope: -1.4136153 + outSlope: -1.4136153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.5189824 + inSlope: -1.1913996 + outSlope: -1.1913996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.52460796 + inSlope: 0.66032594 + outSlope: 0.66032594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.58740216 + inSlope: 1.1914365 + outSlope: 1.1914365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.65991104 + inSlope: 0.57350063 + outSlope: 0.57350063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6480913 + inSlope: 0.0825152 + outSlope: 0.0825152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.78255904 + inSlope: 1.2718658 + outSlope: 1.2718658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.8050949 + inSlope: -0.8680524 + outSlope: -0.8680524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.72508085 + inSlope: -0.33130574 + outSlope: -0.33130574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7089833 + inSlope: -0.33173162 + outSlope: -0.33173162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.69526625 + inSlope: -0.2057553 + outSlope: -0.2057553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.32735792 + inSlope: 0.38678256 + outSlope: 0.38678256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.30845007 + inSlope: 0.06783441 + outSlope: 0.06783441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.31373432 + inSlope: -0.19513609 + outSlope: -0.19513609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.32295194 + inSlope: -0.4459641 + outSlope: -0.4459641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.36763155 + inSlope: -0.55766976 + outSlope: -0.55766976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.3889894 + inSlope: -0.4420603 + outSlope: -0.4420603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.44219816 + inSlope: 0.32342222 + outSlope: 0.32342222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.4139802 + inSlope: 1.1982957 + outSlope: 1.1982957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.36231178 + inSlope: 1.4151864 + outSlope: 1.4151864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.31963447 + inSlope: 0.8844012 + outSlope: 0.8844012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.33104518 + inSlope: -0.8691187 + outSlope: -0.8691187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.4045781 + inSlope: -0.83806145 + outSlope: -0.83806145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.43252257 + inSlope: -0.21227455 + outSlope: -0.21227455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.43189925 + inSlope: 0.37089384 + outSlope: 0.37089384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.37471867 + inSlope: 0.42586827 + outSlope: 0.42586827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.3428136 + inSlope: 0.4041843 + outSlope: 0.4041843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.3273565 + inSlope: 0.23185624 + outSlope: 0.23185624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.19300511 + inSlope: -0.020281522 + outSlope: -0.020281522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.19368117 + inSlope: 0.09365044 + outSlope: 0.09365044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.18328662 + inSlope: -0.09433756 + outSlope: -0.09433756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.19305092 + inSlope: -0.4829693 + outSlope: -0.4829693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.23952018 + inSlope: -0.5840386 + outSlope: -0.5840386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.25125405 + inSlope: 0.19042791 + outSlope: 0.19042791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.2288756 + inSlope: 0.53724897 + outSlope: 0.53724897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.18255079 + inSlope: 0.7129257 + outSlope: 0.7129257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1601598 + inSlope: 0.46277672 + outSlope: 0.46277672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.15884258 + inSlope: -0.45481238 + outSlope: -0.45481238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.18201983 + inSlope: -1.020718 + outSlope: -1.020718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.27413785 + inSlope: -1.0508302 + outSlope: -1.0508302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.28794718 + inSlope: 0.40160325 + outSlope: 0.40160325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.22879517 + inSlope: 0.48838928 + outSlope: 0.48838928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.2049924 + inSlope: 0.33952904 + outSlope: 0.33952904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.1890572 + inSlope: 0.0051911846 + outSlope: 0.0051911846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.19300629 + inSlope: -0.059236206 + outSlope: -0.059236206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.029516164 + inSlope: 0.1696791 + outSlope: 0.1696791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.023860194 + inSlope: -0.047669217 + outSlope: -0.047669217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.032694113 + inSlope: -0.36356938 + outSlope: -0.36356938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.048098154 + inSlope: -0.56530946 + outSlope: -0.56530946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07038141 + inSlope: -1.0534451 + outSlope: -1.0534451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.118327826 + inSlope: -1.7050877 + outSlope: -1.7050877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.18405394 + inSlope: -1.4935098 + outSlope: -1.4935098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.21789517 + inSlope: -0.26267835 + outSlope: -0.26267835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.20156583 + inSlope: 0.46164575 + outSlope: 0.46164575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.18711878 + inSlope: -0.09302282 + outSlope: -0.09302282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.20776735 + inSlope: -0.6434951 + outSlope: -0.6434951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.23001845 + inSlope: -0.200124 + outSlope: -0.200124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.22110894 + inSlope: 0.9655268 + outSlope: 0.9655268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.16565 + inSlope: 2.1800556 + outSlope: 2.1800556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07577192 + inSlope: 2.5164175 + outSlope: 2.5164175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0021110896 + inSlope: 1.7517383 + outSlope: 1.7517383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.041010596 + inSlope: 0.6797149 + outSlope: 0.6797149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.047425456 + inSlope: -0.095434494 + outSlope: -0.095434494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.034648314 + inSlope: -0.6144913 + outSlope: -0.6144913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.006459361 + inSlope: -0.7376174 + outSlope: -0.7376174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.014526184 + inSlope: -0.05486232 + outSlope: -0.05486232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0028019047 + inSlope: 0.50657713 + outSlope: 0.50657713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.01924562 + inSlope: -0.27829355 + outSlope: -0.27829355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.015751047 + inSlope: -1.3836334 + outSlope: -1.3836334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.07299669 + inSlope: -1.1309116 + outSlope: -1.1309116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.09114519 + inSlope: -0.038636 + outSlope: -0.038636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.075572394 + inSlope: 0.28443548 + outSlope: 0.28443548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.07218281 + inSlope: -0.023274425 + outSlope: -0.023274425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.07712403 + inSlope: 0.10654875 + outSlope: 0.10654875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.06507958 + inSlope: 0.48181355 + outSlope: 0.48181355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.045003157 + inSlope: 0.5334699 + outSlope: 0.5334699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.029514898 + inSlope: 0.23232329 + outSlope: 0.23232329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3385048 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -1.3385048 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23385501 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.23385501 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57639545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.57639545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46572554 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.46572554 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011478933 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.011478933 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.338452 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -1.338452 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2338398 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.2338398 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.45863378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.5297137 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57643646 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.57643646 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9042926 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.9042926 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12709586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.12709586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8086533 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8086533 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.4657367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.011404465 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.0333334 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Right.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Right.anim.meta new file mode 100644 index 0000000..b75254b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Right.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 1c8b826792c3d53499d140fcf8b41ff6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Strafe_Right.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Backward.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Backward.anim new file mode 100644 index 0000000..0328e60 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Backward.anim @@ -0,0 +1,16464 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Walk_Backward + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0060891076 + inSlope: -0.06804175 + outSlope: -0.06804175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0038210491 + inSlope: -0.07504129 + outSlope: -0.07504129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0010863551 + inSlope: -0.091112144 + outSlope: -0.091112144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0022530945 + inSlope: -0.10954009 + outSlope: -0.10954009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.010726966 + inSlope: -0.14492956 + outSlope: -0.14492956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.01587829 + inSlope: -0.14739884 + outSlope: -0.14739884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.020553557 + inSlope: -0.14469936 + outSlope: -0.14469936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.033345237 + inSlope: -0.079277806 + outSlope: -0.079277806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.03514102 + inSlope: 0.01778356 + outSlope: 0.01778356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.02970934 + inSlope: 0.059327483 + outSlope: 0.059327483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.012608229 + inSlope: 0.12528904 + outSlope: 0.12528904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0052259862 + inSlope: 0.075806566 + outSlope: 0.075806566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0034177022 + inSlope: 0.050959237 + outSlope: 0.050959237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.001828704 + inSlope: 0.04904354 + outSlope: 0.04904354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.00014813304 + inSlope: 0.05680039 + outSlope: 0.05680039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.001957985 + inSlope: 0.065844394 + outSlope: 0.065844394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0042414973 + inSlope: 0.03425259 + outSlope: 0.03425259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9754929 + inSlope: 0.15636383 + outSlope: 0.15636383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.93067235 + inSlope: -0.5274922 + outSlope: -0.5274922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.8985096 + inSlope: 0.22049624 + outSlope: 0.22049624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9651807 + inSlope: -0.12963378 + outSlope: -0.12963378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.89461035 + inSlope: -0.15992303 + outSlope: -0.15992303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.9761177 + inSlope: 0.12768534 + outSlope: 0.12768534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.064336136 + inSlope: -1.2371608 + outSlope: -1.2371608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.023097442 + inSlope: -1.2551975 + outSlope: -1.2551975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.019343698 + inSlope: -1.2799821 + outSlope: -1.2799821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.19072218 + inSlope: -1.2753814 + outSlope: -1.2753814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.5720162 + inSlope: -1.1874282 + outSlope: -1.1874282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.9496339 + inSlope: -1.0313237 + outSlope: -1.0313237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.1140064 + inSlope: -1.4289654 + outSlope: -1.4289654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -1.1601665 + inSlope: -0.69239974 + outSlope: -0.69239974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09956618 + inSlope: -0.3195758 + outSlope: -0.3195758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.07491614 + inSlope: -0.10247423 + outSlope: -0.10247423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.08447379 + inSlope: 0.2873788 + outSlope: 0.2873788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.115416035 + inSlope: 0.15017511 + outSlope: 0.15017511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.113637075 + inSlope: -0.16146465 + outSlope: -0.16146465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.09998146 + inSlope: -0.17836848 + outSlope: -0.17836848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.08408487 + inSlope: -0.08911796 + outSlope: -0.08911796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08385195 + inSlope: 0.16692321 + outSlope: 0.16692321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.1123742 + inSlope: 0.26958904 + outSlope: 0.26958904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.12917197 + inSlope: 0.048834484 + outSlope: 0.048834484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.12344 + inSlope: -0.21256086 + outSlope: -0.21256086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.10629092 + inSlope: -0.22781663 + outSlope: -0.22781663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.09956378 + inSlope: -0.10090689 + outSlope: -0.10090689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.036938425 + inSlope: 0.40586793 + outSlope: 0.40586793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.08021614 + inSlope: 0.13693751 + outSlope: 0.13693751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.065754704 + inSlope: -0.24079835 + outSlope: -0.24079835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.050111927 + inSlope: -0.16304553 + outSlope: -0.16304553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.04391892 + inSlope: -0.10198039 + outSlope: -0.10198039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.039497547 + inSlope: -0.17885959 + outSlope: -0.17885959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.023781791 + inSlope: -0.22272162 + outSlope: -0.22272162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.017146833 + inSlope: -0.17789021 + outSlope: -0.17789021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.011922443 + inSlope: -0.15143515 + outSlope: -0.15143515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0070511573 + inSlope: -0.14864779 + outSlope: -0.14864779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0020125923 + inSlope: -0.1353374 + outSlope: -0.1353374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0019713347 + inSlope: -0.08111461 + outSlope: -0.08111461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0033950508 + inSlope: 0.0129341725 + outSlope: 0.0129341725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0011090534 + inSlope: 0.12142839 + outSlope: 0.12142839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.004700182 + inSlope: 0.19456263 + outSlope: 0.19456263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.011861786 + inSlope: 0.18757361 + outSlope: 0.18757361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.017205087 + inSlope: 0.11156857 + outSlope: 0.11156857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.019299693 + inSlope: 0.04784082 + outSlope: 0.04784082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.020394474 + inSlope: 0.07240306 + outSlope: 0.07240306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.024126561 + inSlope: 0.15559442 + outSlope: 0.15559442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.030767426 + inSlope: 0.2185413 + outSlope: 0.2185413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.038695995 + inSlope: 0.118928224 + outSlope: 0.118928224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0015379614 + inSlope: -0.064078234 + outSlope: -0.064078234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0036739027 + inSlope: -0.047203623 + outSlope: -0.047203623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0046848697 + inSlope: -0.009273011 + outSlope: -0.009273011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.002492276 + inSlope: 0.07314542 + outSlope: 0.07314542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00058425777 + inSlope: 0.114744 + outSlope: 0.114744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0051573254 + inSlope: 0.16075458 + outSlope: 0.16075458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.011301231 + inSlope: 0.1882385 + outSlope: 0.1882385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.017706558 + inSlope: 0.16521433 + outSlope: 0.16521433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.022315519 + inSlope: 0.08521082 + outSlope: 0.08521082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.021345893 + inSlope: -0.09180951 + outSlope: -0.09180951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.00873399 + inSlope: -0.08324203 + outSlope: -0.08324203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0071875085 + inSlope: 0.03825543 + outSlope: 0.03825543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0095080715 + inSlope: 0.09212454 + outSlope: 0.09212454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.017087646 + inSlope: 0.08799088 + outSlope: 0.08799088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.018856376 + inSlope: -0.048699174 + outSlope: -0.048699174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.015948594 + inSlope: -0.11146282 + outSlope: -0.11146282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.011425521 + inSlope: -0.11958395 + outSlope: -0.11958395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.007976323 + inSlope: -0.07175014 + outSlope: -0.07175014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.006642177 + inSlope: -0.013540403 + outSlope: -0.013540403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0070736315 + inSlope: 0.012537364 + outSlope: 0.012537364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.007478001 + inSlope: -0.0138486065 + outSlope: -0.0138486065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0061503896 + inSlope: -0.054983445 + outSlope: -0.054983445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0038124393 + inSlope: -0.079623 + outSlope: -0.079623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000842195 + inSlope: -0.082913555 + outSlope: -0.082913555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0017151348 + inSlope: -0.038359847 + outSlope: -0.038359847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.994344 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.994344 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08618615 + inSlope: 0.5271962 + outSlope: 0.5271962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.05129771 + inSlope: 0.4850251 + outSlope: 0.4850251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.03627793 + inSlope: 0.3297975 + outSlope: 0.3297975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.029311206 + inSlope: 0.038308263 + outSlope: 0.038308263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.033724047 + inSlope: -0.27053422 + outSlope: -0.27053422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.047346827 + inSlope: -0.43602452 + outSlope: -0.43602452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.06279235 + inSlope: -0.4301902 + outSlope: -0.4301902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.07602617 + inSlope: -0.3583607 + outSlope: -0.3583607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.086683065 + inSlope: -0.22718313 + outSlope: -0.22718313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.086844236 + inSlope: 0.13103682 + outSlope: 0.13103682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0788434 + inSlope: 0.05217456 + outSlope: 0.05217456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.08641851 + inSlope: -0.20031893 + outSlope: -0.20031893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.105620824 + inSlope: -0.058446173 + outSlope: -0.058446173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.102326505 + inSlope: 0.091159016 + outSlope: 0.091159016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.099412665 + inSlope: -0.022709131 + outSlope: -0.022709131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.10384045 + inSlope: -0.24519078 + outSlope: -0.24519078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.11575871 + inSlope: -0.30198225 + outSlope: -0.30198225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.123972595 + inSlope: -0.13285474 + outSlope: -0.13285474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.11284445 + inSlope: 0.2734896 + outSlope: 0.2734896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.102461204 + inSlope: 0.39987463 + outSlope: 0.39987463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.08618611 + inSlope: 0.24412575 + outSlope: 0.24412575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.8574828 + inSlope: 0.26340544 + outSlope: 0.26340544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.8434233 + inSlope: -0.65313584 + outSlope: -0.65313584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.94525945 + inSlope: -0.24614812 + outSlope: -0.24614812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.9021738 + inSlope: 0.24777533 + outSlope: 0.24777533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.9295418 + inSlope: 0.2932217 + outSlope: 0.2932217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.8115025 + inSlope: 0.94807696 + outSlope: 0.94807696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.76327235 + inSlope: -0.60368884 + outSlope: -0.60368884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.84477955 + inSlope: -0.92400724 + outSlope: -0.92400724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.86127377 + inSlope: 0.18156008 + outSlope: 0.18156008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.083217606 + inSlope: -3.305488 + outSlope: -3.305488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.026965331 + inSlope: -3.0146284 + outSlope: -3.0146284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.2400228 + inSlope: 0.14221081 + outSlope: 0.14221081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.21791644 + inSlope: 1.108033 + outSlope: 1.108033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.16615392 + inSlope: 1.593744 + outSlope: 1.593744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.11166684 + inSlope: 1.4707704 + outSlope: 1.4707704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.068102576 + inSlope: 1.195001 + outSlope: 1.195001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.032000117 + inSlope: 0.97044444 + outSlope: 0.97044444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.003406287 + inSlope: 0.7900086 + outSlope: 0.7900086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.020667141 + inSlope: 0.7357391 + outSlope: 0.7357391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.045643006 + inSlope: 0.8097166 + outSlope: 0.8097166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.17348818 + inSlope: 0.96617913 + outSlope: 0.96617913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.2769656 + inSlope: 1.3133738 + outSlope: 1.3133738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.46101448 + inSlope: 1.0040365 + outSlope: 1.0040365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.48243758 + inSlope: -0.81466883 + outSlope: -0.81466883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.43409657 + inSlope: -1.8347975 + outSlope: -1.8347975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.36011773 + inSlope: -2.6419263 + outSlope: -2.6419263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.2579682 + inSlope: -2.919849 + outSlope: -2.919849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.16546133 + inSlope: -2.6212506 + outSlope: -2.6212506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.08321801 + inSlope: -1.2336466 + outSlope: -1.2336466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4531313 + inSlope: -1.329916 + outSlope: -1.329916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.35911173 + inSlope: -0.091748945 + outSlope: -0.091748945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.3674089 + inSlope: 0.44936973 + outSlope: 0.44936973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.3890697 + inSlope: 1.0862198 + outSlope: 1.0862198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.43982357 + inSlope: 1.7849853 + outSlope: 1.7849853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.50806874 + inSlope: 1.3389481 + outSlope: 1.3389481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.52908677 + inSlope: 0.17346115 + outSlope: 0.17346115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5196328 + inSlope: -0.11138232 + outSlope: -0.11138232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5250207 + inSlope: 0.026760388 + outSlope: 0.026760388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.53319705 + inSlope: -0.00706316 + outSlope: -0.00706316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5419885 + inSlope: 0.31431478 + outSlope: 0.31431478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.58237743 + inSlope: -0.35528338 + outSlope: -0.35528338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.5604289 + inSlope: -0.51182175 + outSlope: -0.51182175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.548256 + inSlope: -0.500366 + outSlope: -0.500366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.4734162 + inSlope: -0.7147944 + outSlope: -0.7147944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.45313284 + inSlope: -0.30424976 + outSlope: -0.30424976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.45864725 + inSlope: -0.61196023 + outSlope: -0.61196023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.49230167 + inSlope: -0.22537304 + outSlope: -0.22537304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.49366993 + inSlope: -0.107163645 + outSlope: -0.107163645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.50121504 + inSlope: 0.06684906 + outSlope: 0.06684906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.48921332 + inSlope: 0.72913927 + outSlope: 0.72913927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.42042792 + inSlope: 0.36269772 + outSlope: 0.36269772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.4284259 + inSlope: -0.14347585 + outSlope: -0.14347585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.43374196 + inSlope: -0.11248018 + outSlope: -0.11248018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.45443818 + inSlope: -0.18518895 + outSlope: -0.18518895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.47330666 + inSlope: 0.006965639 + outSlope: 0.006965639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.45451406 + inSlope: 0.62100554 + outSlope: 0.62100554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.3823988 + inSlope: 1.878705 + outSlope: 1.878705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.30423242 + inSlope: 2.1658947 + outSlope: 2.1658947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.23800585 + inSlope: 0.9449691 + outSlope: 0.9449691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.24123442 + inSlope: -1.1047045 + outSlope: -1.1047045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.31165287 + inSlope: -2.177506 + outSlope: -2.177506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.44067073 + inSlope: -1.0836625 + outSlope: -1.0836625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.4586887 + inSlope: -0.13352026 + outSlope: -0.13352026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45536777 + inSlope: -1.430227 + outSlope: -1.430227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.3594753 + inSlope: -1.429353 + outSlope: -1.429353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.31240332 + inSlope: -0.94752735 + outSlope: -0.94752735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.29630682 + inSlope: 0.13775022 + outSlope: 0.13775022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.32158667 + inSlope: 1.2817491 + outSlope: 1.2817491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.38175678 + inSlope: 2.8227575 + outSlope: 2.8227575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5097705 + inSlope: 2.853697 + outSlope: 2.853697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.58736616 + inSlope: -0.09628058 + outSlope: -0.09628058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.5445397 + inSlope: -0.04529895 + outSlope: -0.04529895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5702536 + inSlope: 0.70316106 + outSlope: 0.70316106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.6019208 + inSlope: 1.3139511 + outSlope: 1.3139511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6578503 + inSlope: 1.2136045 + outSlope: 1.2136045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.6828277 + inSlope: -0.11589366 + outSlope: -0.11589366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.65012413 + inSlope: -1.1063387 + outSlope: -1.1063387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.508756 + inSlope: -1.5993499 + outSlope: -1.5993499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.4553672 + inSlope: -0.8008295 + outSlope: -0.8008295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6139666 + inSlope: -1.4169447 + outSlope: -1.4169447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.73041314 + inSlope: 0.37066343 + outSlope: 0.37066343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.7028446 + inSlope: 1.2178844 + outSlope: 1.2178844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.6492208 + inSlope: 2.6459372 + outSlope: 2.6459372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.5264488 + inSlope: 2.7650115 + outSlope: 2.7650115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.44494578 + inSlope: 0.026709888 + outSlope: 0.026709888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.4567587 + inSlope: 0.042225994 + outSlope: 0.042225994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.43934345 + inSlope: 0.17626047 + outSlope: 0.17626047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.433197 + inSlope: 0.3152424 + outSlope: 0.3152424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.4183273 + inSlope: 0.4119717 + outSlope: 0.4119717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.38765082 + inSlope: 0.56417763 + outSlope: 0.56417763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.36812037 + inSlope: -0.24158406 + outSlope: -0.24158406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.40375647 + inSlope: -1.490761 + outSlope: -1.490761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.4675044 + inSlope: -1.5049062 + outSlope: -1.5049062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.5329862 + inSlope: -0.96178025 + outSlope: -0.96178025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.56820214 + inSlope: -1.2147157 + outSlope: -1.2147157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.61396736 + inSlope: -0.6864765 + outSlope: -0.6864765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09745474 + inSlope: 0.02687685 + outSlope: 0.02687685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.09670587 + inSlope: -0.096644 + outSlope: -0.096644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.06421286 + inSlope: -0.3365261 + outSlope: -0.3365261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.052383162 + inSlope: -0.3079722 + outSlope: -0.3079722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.04368138 + inSlope: -0.20067877 + outSlope: -0.20067877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.03900458 + inSlope: -0.01484016 + outSlope: -0.01484016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.042692035 + inSlope: 0.20714444 + outSlope: 0.20714444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.052814208 + inSlope: 0.34454346 + outSlope: 0.34454346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.06566161 + inSlope: 0.42056185 + outSlope: 0.42056185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.101874754 + inSlope: 0.099704415 + outSlope: 0.099704415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.09696204 + inSlope: -0.1396223 + outSlope: -0.1396223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.08733984 + inSlope: -0.09125341 + outSlope: -0.09125341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08582536 + inSlope: 0.078976534 + outSlope: 0.078976534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.09991192 + inSlope: 0.12335689 + outSlope: 0.12335689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.100011684 + inSlope: -0.005930683 + outSlope: -0.005930683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.10043336 + inSlope: -0.021898754 + outSlope: -0.021898754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.09561276 + inSlope: -0.04537609 + outSlope: -0.04537609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.09818048 + inSlope: 0.0067215497 + outSlope: 0.0067215497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.09787305 + inSlope: -0.018035606 + outSlope: -0.018035606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9460865 + inSlope: 0.041690465 + outSlope: 0.041690465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.86124533 + inSlope: 0.9288696 + outSlope: 0.9288696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.7886657 + inSlope: -0.0568673 + outSlope: -0.0568673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.8412064 + inSlope: -0.35690728 + outSlope: -0.35690728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.84356356 + inSlope: -0.29091436 + outSlope: -0.29091436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.89241403 + inSlope: -0.9936959 + outSlope: -0.9936959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.9256356 + inSlope: -0.58952045 + outSlope: -0.58952045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.92984205 + inSlope: 0.029355079 + outSlope: 0.029355079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.9461969 + inSlope: 0.013397641 + outSlope: 0.013397641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.94603086 + inSlope: -0.0009012215 + outSlope: -0.0009012215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10453902 + inSlope: 0.64425313 + outSlope: 0.64425313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.15166819 + inSlope: 0.8476647 + outSlope: 0.8476647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.26382142 + inSlope: 1.432343 + outSlope: 1.432343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.4173942 + inSlope: 1.2638543 + outSlope: 1.2638543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.45162928 + inSlope: -0.7022878 + outSlope: -0.7022878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.23391944 + inSlope: -2.8255105 + outSlope: -2.8255105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.04833737 + inSlope: -2.5762744 + outSlope: -2.5762744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.03284428 + inSlope: -2.3172832 + outSlope: -2.3172832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.10614832 + inSlope: -2.0860224 + outSlope: -2.0860224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.25472918 + inSlope: 0.47624165 + outSlope: 0.47624165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.17547345 + inSlope: 1.3861176 + outSlope: 1.3861176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.12933727 + inSlope: 1.3006592 + outSlope: 1.3006592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.08876284 + inSlope: 1.2100345 + outSlope: 1.2100345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.048668306 + inSlope: 1.1365905 + outSlope: 1.1365905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.012990144 + inSlope: 0.9883206 + outSlope: 0.9883206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.017219726 + inSlope: 0.82558954 + outSlope: 0.82558954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.042049162 + inSlope: 0.8330592 + outSlope: 0.8330592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.07275695 + inSlope: 0.937338 + outSlope: 0.937338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.10453842 + inSlope: 0.47672072 + outSlope: 0.47672072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.50809413 + inSlope: 0.37404564 + outSlope: 0.37404564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.47638753 + inSlope: -0.058535643 + outSlope: -0.058535643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.4866257 + inSlope: 0.0055128336 + outSlope: 0.0055128336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.48584267 + inSlope: -0.23478092 + outSlope: -0.23478092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.5081702 + inSlope: -0.14025807 + outSlope: -0.14025807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.5103904 + inSlope: 0.14249326 + outSlope: 0.14249326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.4699868 + inSlope: 0.9879045 + outSlope: 0.9879045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.35852224 + inSlope: 1.1833956 + outSlope: 1.1833956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.30412045 + inSlope: -0.29072845 + outSlope: -0.29072845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.33928573 + inSlope: -1.6444657 + outSlope: -1.6444657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.41375145 + inSlope: -2.3654032 + outSlope: -2.3654032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.49697927 + inSlope: -1.864744 + outSlope: -1.864744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.54401356 + inSlope: 0.07196548 + outSlope: 0.07196548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.52136487 + inSlope: 0.3779211 + outSlope: 0.3779211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.50809336 + inSlope: 0.19907214 + outSlope: 0.19907214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4589218 + inSlope: 0.20208476 + outSlope: 0.20208476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.45736215 + inSlope: -0.21557766 + outSlope: -0.21557766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.44042033 + inSlope: -0.018236341 + outSlope: -0.018236341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.44237632 + inSlope: 0.27992028 + outSlope: 0.27992028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.45908168 + inSlope: 0.4433862 + outSlope: 0.4433862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.49385846 + inSlope: 1.0044993 + outSlope: 1.0044993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.53890204 + inSlope: 1.2284968 + outSlope: 1.2284968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.64653784 + inSlope: 0.52922714 + outSlope: 0.52922714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.65336806 + inSlope: -0.40451837 + outSlope: -0.40451837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.59652746 + inSlope: -1.5197775 + outSlope: -1.5197775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4728845 + inSlope: -1.4140027 + outSlope: -1.4140027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.42550936 + inSlope: -0.29818535 + outSlope: -0.29818535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.4316943 + inSlope: 0.21921429 + outSlope: 0.21921429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.45892262 + inSlope: 0.13543063 + outSlope: 0.13543063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52916265 + inSlope: 0.21718739 + outSlope: 0.21718739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.5753115 + inSlope: -0.60531473 + outSlope: -0.60531473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.6180899 + inSlope: -0.517695 + outSlope: -0.517695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.6140654 + inSlope: 1.0953965 + outSlope: 1.0953965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.421432 + inSlope: 1.7562237 + outSlope: 1.7562237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.37080488 + inSlope: 1.1893853 + outSlope: 1.1893853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.34213966 + inSlope: 0.79023266 + outSlope: 0.79023266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.30325648 + inSlope: 0.110792525 + outSlope: 0.110792525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.3107365 + inSlope: -0.26129147 + outSlope: -0.26129147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.3206759 + inSlope: -0.50299853 + outSlope: -0.50299853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.34426975 + inSlope: -1.5483091 + outSlope: -1.5483091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.42389646 + inSlope: -2.360413 + outSlope: -2.360413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.5546903 + inSlope: -1.0534363 + outSlope: -1.0534363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.5764597 + inSlope: 0.009229615 + outSlope: 0.009229615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.53077656 + inSlope: 0.17330477 + outSlope: 0.17330477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.5285251 + inSlope: -0.0070032417 + outSlope: -0.0070032417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5012169 + inSlope: 0.41026172 + outSlope: 0.41026172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.5088568 + inSlope: -0.5089607 + outSlope: -0.5089607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.4881007 + inSlope: -0.6964982 + outSlope: -0.6964982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.46242356 + inSlope: -1.1156765 + outSlope: -1.1156765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.41372228 + inSlope: -1.5482771 + outSlope: -1.5482771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.3592051 + inSlope: -0.9925837 + outSlope: -0.9925837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.34755003 + inSlope: 0.19956766 + outSlope: 0.19956766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.4122758 + inSlope: 1.2805157 + outSlope: 1.2805157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5003433 + inSlope: 1.0231467 + outSlope: 1.0231467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5505472 + inSlope: 0.8530884 + outSlope: 0.8530884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6325015 + inSlope: 0.4347934 + outSlope: 0.4347934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.6407173 + inSlope: -0.44844365 + outSlope: -0.44844365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.6026053 + inSlope: -1.7053337 + outSlope: -1.7053337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.45689315 + inSlope: -1.2963146 + outSlope: -1.2963146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.44060737 + inSlope: -0.23277532 + outSlope: -0.23277532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.5012177 + inSlope: 0.10804267 + outSlope: 0.10804267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.25275135 + inSlope: 0.6032797 + outSlope: 0.6032797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.15464641 + inSlope: -0.06754004 + outSlope: -0.06754004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.19929834 + inSlope: -0.87424684 + outSlope: -0.87424684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.29914477 + inSlope: -0.80477345 + outSlope: -0.80477345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.3324873 + inSlope: 0.124345526 + outSlope: 0.124345526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.3014057 + inSlope: 0.07588007 + outSlope: 0.07588007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.31135073 + inSlope: 0.08987136 + outSlope: 0.08987136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.28568423 + inSlope: 0.28327167 + outSlope: 0.28327167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.26595545 + inSlope: 0.35804325 + outSlope: 0.35804325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.25275126 + inSlope: 0.19806229 + outSlope: 0.19806229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.023900347 + inSlope: 1.1020374 + outSlope: 1.1020374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06063493 + inSlope: 1.1010815 + outSlope: 1.1010815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.15890856 + inSlope: 0.75460756 + outSlope: 0.75460756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.2063284 + inSlope: 0.10277891 + outSlope: 0.10277891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15929937 + inSlope: -1.0865195 + outSlope: -1.0865195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.06546205 + inSlope: -1.537003 + outSlope: -1.537003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.014106991 + inSlope: -1.4147367 + outSlope: -1.4147367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.028853718 + inSlope: -1.1012754 + outSlope: -1.1012754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.07694856 + inSlope: -0.34491158 + outSlope: -0.34491158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.07265672 + inSlope: 0.15798968 + outSlope: 0.15798968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.06830953 + inSlope: -0.0851705 + outSlope: -0.0851705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.07406298 + inSlope: -0.22395504 + outSlope: -0.22395504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.08323987 + inSlope: -0.2452991 + outSlope: -0.2452991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.09048695 + inSlope: 0.22980756 + outSlope: 0.22980756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.07858038 + inSlope: 0.4847362 + outSlope: 0.4847362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.058171198 + inSlope: 0.6619983 + outSlope: 0.6619983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.034447167 + inSlope: 0.78243196 + outSlope: 0.78243196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0060091163 + inSlope: 0.8752183 + outSlope: 0.8752183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.02390077 + inSlope: 0.4486471 + outSlope: 0.4486471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08275437 + inSlope: 0.6508943 + outSlope: 0.6508943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.10445085 + inSlope: 0.56030154 + outSlope: 0.56030154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.14330184 + inSlope: 0.11318653 + outSlope: 0.11318653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.14533687 + inSlope: -0.063828535 + outSlope: -0.063828535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.14023289 + inSlope: 0.04182726 + outSlope: 0.04182726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.13835983 + inSlope: -0.5240732 + outSlope: -0.5240732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.025727632 + inSlope: -1.4442782 + outSlope: -1.4442782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.02370818 + inSlope: -1.4434118 + outSlope: -1.4434118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.070499904 + inSlope: -1.2656953 + outSlope: -1.2656953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.108087875 + inSlope: -0.957981 + outSlope: -0.957981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.15244032 + inSlope: -0.44398102 + outSlope: -0.44398102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.15718451 + inSlope: 0.5045986 + outSlope: 0.5045986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.061057676 + inSlope: 1.2097762 + outSlope: 1.2097762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.019680826 + inSlope: 1.1929029 + outSlope: 1.1929029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.018469175 + inSlope: 1.0025326 + outSlope: 1.0025326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.06759841 + inSlope: 0.533996 + outSlope: 0.533996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.08275444 + inSlope: 0.22733986 + outSlope: 0.22733986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.46488792 + inSlope: -1.9748335 + outSlope: -1.9748335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.82865435 + inSlope: -0.70810235 + outSlope: -0.70810235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.7809539 + inSlope: 2.1178384 + outSlope: 2.1178384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.58177644 + inSlope: 3.1705995 + outSlope: 3.1705995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.29638785 + inSlope: 2.838037 + outSlope: 2.838037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.11458665 + inSlope: 2.1035824 + outSlope: 2.1035824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.05918394 + inSlope: 1.299287 + outSlope: 1.299287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.027967544 + inSlope: 0.7937482 + outSlope: 0.7937482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0062673874 + inSlope: 0.61065686 + outSlope: 0.61065686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0127429105 + inSlope: 0.4422513 + outSlope: 0.4422513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.023216039 + inSlope: 0.062494077 + outSlope: 0.062494077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.016909167 + inSlope: -0.4693815 + outSlope: -0.4693815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.008076087 + inSlope: -1.0398662 + outSlope: -1.0398662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.052415222 + inSlope: -1.6021615 + outSlope: -1.6021615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.26203305 + inSlope: -2.1608315 + outSlope: -2.1608315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.39948422 + inSlope: -1.989738 + outSlope: -1.989738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.46488637 + inSlope: -0.9810297 + outSlope: -0.9810297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.19796118 + inSlope: -0.7644389 + outSlope: -0.7644389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.22344248 + inSlope: -0.6719432 + outSlope: -0.6719432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.27372813 + inSlope: -0.4183227 + outSlope: -0.4183227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.29735443 + inSlope: -0.022737535 + outSlope: -0.022737535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.29610303 + inSlope: 0.038499985 + outSlope: 0.038499985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.25861564 + inSlope: 0.9857688 + outSlope: 0.9857688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.21711522 + inSlope: 1.3817313 + outSlope: 1.3817313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.16650023 + inSlope: 1.373456 + outSlope: 1.373456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.12555154 + inSlope: 0.96593046 + outSlope: 0.96593046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.08848776 + inSlope: 0.34061044 + outSlope: 0.34061044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.079397514 + inSlope: 0.13682911 + outSlope: 0.13682911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0988077 + inSlope: -0.42812523 + outSlope: -0.42812523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.13659479 + inSlope: -0.72037876 + outSlope: -0.72037876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.19106047 + inSlope: -0.7291951 + outSlope: -0.7291951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.2118293 + inSlope: -0.3403294 + outSlope: -0.3403294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.21374911 + inSlope: 0.193301 + outSlope: 0.193301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.1850385 + inSlope: 0.21818137 + outSlope: 0.21818137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.18439715 + inSlope: -0.19384292 + outSlope: -0.19384292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.1979614 + inSlope: -0.20346335 + outSlope: -0.20346335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.65123266 + inSlope: 0.7867419 + outSlope: 0.7867419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.5320387 + inSlope: 1.3039829 + outSlope: 1.3039829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.4310685 + inSlope: 1.4626784 + outSlope: 1.4626784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.36738905 + inSlope: -0.13568982 + outSlope: -0.13568982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.39515913 + inSlope: -1.5659869 + outSlope: -1.5659869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.67026603 + inSlope: -2.5821052 + outSlope: -2.5821052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.828546 + inSlope: 0.044224225 + outSlope: 0.044224225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.79465914 + inSlope: 0.32389998 + outSlope: 0.32389998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.74418026 + inSlope: 0.16042647 + outSlope: 0.16042647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.71152383 + inSlope: 0.64999044 + outSlope: 0.64999044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.651233 + inSlope: 0.13539487 + outSlope: 0.13539487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5662039 + inSlope: -1.1746858 + outSlope: -1.1746858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.47745344 + inSlope: -1.5708673 + outSlope: -1.5708673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.37168384 + inSlope: -1.3510363 + outSlope: -1.3510363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.27537078 + inSlope: -0.7437037 + outSlope: -0.7437037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.25266084 + inSlope: 0.48091832 + outSlope: 0.48091832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.28518444 + inSlope: 1.2669142 + outSlope: 1.2669142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.33712178 + inSlope: 1.4418969 + outSlope: 1.4418969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.38131094 + inSlope: 1.0688759 + outSlope: 1.0688759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.43214408 + inSlope: 0.89368486 + outSlope: 0.89368486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.55360514 + inSlope: 1.0464253 + outSlope: 1.0464253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.63641006 + inSlope: 0.3170148 + outSlope: 0.3170148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6424911 + inSlope: -0.14109585 + outSlope: -0.14109585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.64236516 + inSlope: 0.13205588 + outSlope: 0.13205588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.6370286 + inSlope: -0.5762758 + outSlope: -0.5762758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.60866046 + inSlope: -1.062352 + outSlope: -1.062352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.566205 + inSlope: -0.63682985 + outSlope: -0.63682985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.28121558 + inSlope: 0.3018048 + outSlope: 0.3018048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.31849512 + inSlope: 0.000116671436 + outSlope: 0.000116671436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.29666582 + inSlope: -0.37839156 + outSlope: -0.37839156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.24004649 + inSlope: -0.7596668 + outSlope: -0.7596668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.14788419 + inSlope: -0.37308243 + outSlope: -0.37308243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14106235 + inSlope: 0.17023575 + outSlope: 0.17023575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.17134562 + inSlope: 0.47444516 + outSlope: 0.47444516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.24819638 + inSlope: 0.5337496 + outSlope: 0.5337496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.26528153 + inSlope: 0.4952769 + outSlope: 0.4952769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.28121486 + inSlope: 0.2389994 + outSlope: 0.2389994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013024513 + inSlope: -0.2326192 + outSlope: -0.2326192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.020778487 + inSlope: -0.20504871 + outSlope: -0.20504871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.033778384 + inSlope: -0.0750733 + outSlope: -0.0750733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.038738444 + inSlope: -0.13154458 + outSlope: -0.13154458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.044678845 + inSlope: -0.22721207 + outSlope: -0.22721207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06894927 + inSlope: -0.052131534 + outSlope: -0.052131534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.057364333 + inSlope: 0.37972993 + outSlope: 0.37972993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.00029021845 + inSlope: 0.66320384 + outSlope: 0.66320384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.08739946 + inSlope: 0.5979408 + outSlope: 0.5979408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.13090439 + inSlope: 0.1736224 + outSlope: 0.1736224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.11458145 + inSlope: -0.51868105 + outSlope: -0.51868105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.069929995 + inSlope: -0.70645285 + outSlope: -0.70645285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.046681233 + inSlope: -0.7261319 + outSlope: -0.7261319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.021521207 + inSlope: -0.6782241 + outSlope: -0.6782241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0014663383 + inSlope: -0.5181698 + outSlope: -0.5181698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.013023464 + inSlope: -0.21734647 + outSlope: -0.21734647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0020735094 + inSlope: -0.7325599 + outSlope: -0.7325599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.072283365 + inSlope: -0.77606535 + outSlope: -0.77606535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.14069991 + inSlope: -0.36950326 + outSlope: -0.36950326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.12798497 + inSlope: 0.5932008 + outSlope: 0.5932008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.07346248 + inSlope: 0.99910927 + outSlope: 0.99910927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.03731493 + inSlope: 1.105943 + outSlope: 1.105943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.00026708283 + inSlope: 1.0562515 + outSlope: 1.0562515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.033101834 + inSlope: 0.8716275 + outSlope: 0.8716275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.096308745 + inSlope: 0.16283138 + outSlope: 0.16283138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.10238036 + inSlope: 0.076306395 + outSlope: 0.076306395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11233819 + inSlope: 0.14110309 + outSlope: 0.14110309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.11781037 + inSlope: -0.09330826 + outSlope: -0.09330826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.07764053 + inSlope: -0.6740197 + outSlope: -0.6740197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.052409917 + inSlope: -0.7647799 + outSlope: -0.7647799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.026655255 + inSlope: -0.7550267 + outSlope: -0.7550267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0020747632 + inSlope: -0.3687064 + outSlope: -0.3687064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22263652 + inSlope: 0.11087804 + outSlope: 0.11087804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.21188608 + inSlope: 0.23506609 + outSlope: 0.23506609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.19647771 + inSlope: -0.112918496 + outSlope: -0.112918496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.23968071 + inSlope: -0.24670401 + outSlope: -0.24670401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.2401124 + inSlope: 0.34146512 + outSlope: 0.34146512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.20205048 + inSlope: 0.5257528 + outSlope: 0.5257528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.16762073 + inSlope: 0.36569253 + outSlope: 0.36569253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.14348984 + inSlope: 0.26423097 + outSlope: 0.26423097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.13599306 + inSlope: -0.16596043 + outSlope: -0.16596043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.16801025 + inSlope: -0.2767881 + outSlope: -0.2767881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.1950649 + inSlope: -0.36630684 + outSlope: -0.36630684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.22733617 + inSlope: -0.024393626 + outSlope: -0.024393626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.22263762 + inSlope: 0.070477985 + outSlope: 0.070477985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.56365466 + inSlope: 1.7038481 + outSlope: 1.7038481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.45824605 + inSlope: 1.362643 + outSlope: 1.362643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3741128 + inSlope: 1.2598805 + outSlope: 1.2598805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.29923767 + inSlope: 0.71615905 + outSlope: 0.71615905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.30313897 + inSlope: -0.66406226 + outSlope: -0.66406226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.37970388 + inSlope: -1.7170208 + outSlope: -1.7170208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.6703008 + inSlope: -1.9973958 + outSlope: -1.9973958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.86994475 + inSlope: -0.5113722 + outSlope: -0.5113722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.79574955 + inSlope: 1.432035 + outSlope: 1.432035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.62805796 + inSlope: 1.841948 + outSlope: 1.841948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.563655 + inSlope: 0.9660415 + outSlope: 0.9660415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4670161 + inSlope: -0.7050946 + outSlope: -0.7050946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.5576031 + inSlope: -0.1318574 + outSlope: -0.1318574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.55192125 + inSlope: 0.099530526 + outSlope: 0.099530526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.5162393 + inSlope: 0.7612554 + outSlope: 0.7612554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.38623503 + inSlope: 0.90242714 + outSlope: 0.90242714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.33592257 + inSlope: 0.5287905 + outSlope: 0.5287905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.31049764 + inSlope: 0.45082876 + outSlope: 0.45082876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.29243237 + inSlope: 0.5914669 + outSlope: 0.5914669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.26166993 + inSlope: -0.012865648 + outSlope: -0.012865648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.29335886 + inSlope: -0.6802118 + outSlope: -0.6802118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.34628373 + inSlope: -0.9742458 + outSlope: -0.9742458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.46701548 + inSlope: -0.28872252 + outSlope: -0.28872252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.64391196 + inSlope: 0.9087216 + outSlope: 0.9087216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.69363374 + inSlope: 0.48961306 + outSlope: 0.48961306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.73500687 + inSlope: 0.38518214 + outSlope: 0.38518214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.69619334 + inSlope: -0.65307117 + outSlope: -0.65307117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.58662105 + inSlope: -1.4812436 + outSlope: -1.4812436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3590378 + inSlope: -0.8321073 + outSlope: -0.8321073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.32156503 + inSlope: 0.08168617 + outSlope: 0.08168617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.3577342 + inSlope: 1.091026 + outSlope: 1.091026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.5082759 + inSlope: 1.4236423 + outSlope: 1.4236423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.59444594 + inSlope: 1.3805075 + outSlope: 1.3805075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.643912 + inSlope: 0.74198914 + outSlope: 0.74198914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.36338362 + inSlope: 0.50181806 + outSlope: 0.50181806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.30930424 + inSlope: 0.28659585 + outSlope: 0.28659585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.30824387 + inSlope: -0.47632056 + outSlope: -0.47632056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.36610746 + inSlope: -1.0489035 + outSlope: -1.0489035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.42039505 + inSlope: -0.29773238 + outSlope: -0.29773238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.39987296 + inSlope: 0.38136026 + outSlope: 0.38136026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.33144015 + inSlope: 0.14705785 + outSlope: 0.14705785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3330211 + inSlope: 0.04226439 + outSlope: 0.04226439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.33048046 + inSlope: -0.5086919 + outSlope: -0.5086919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.38988596 + inSlope: -0.6714936 + outSlope: -0.6714936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.4022923 + inSlope: -0.0042929947 + outSlope: -0.0042929947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.37150955 + inSlope: 0.40181988 + outSlope: 0.40181988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.36409837 + inSlope: 0.0823661 + outSlope: 0.0823661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.037201226 + inSlope: 0.63982 + outSlope: 0.63982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.015873892 + inSlope: 0.61614215 + outSlope: 0.61614215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0038749215 + inSlope: 0.46911985 + outSlope: 0.46911985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.015400765 + inSlope: 0.2043215 + outSlope: 0.2043215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.017496357 + inSlope: -0.042820096 + outSlope: -0.042820096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.012546092 + inSlope: -0.22513267 + outSlope: -0.22513267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0024875088 + inSlope: -0.3573674 + outSlope: -0.3573674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.011278404 + inSlope: -0.42916042 + outSlope: -0.42916042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.026123185 + inSlope: -0.3354047 + outSlope: -0.3354047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.034481984 + inSlope: 0.04788805 + outSlope: 0.04788805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.03044618 + inSlope: 0.06517597 + outSlope: 0.06517597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.030136919 + inSlope: -0.09620795 + outSlope: -0.09620795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.03686004 + inSlope: -0.21403173 + outSlope: -0.21403173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0444057 + inSlope: -0.18950267 + outSlope: -0.18950267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.049493548 + inSlope: -0.18177457 + outSlope: -0.18177457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.06984916 + inSlope: -0.13301335 + outSlope: -0.13301335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.07687717 + inSlope: -0.18350507 + outSlope: -0.18350507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0852954 + inSlope: -0.26601112 + outSlope: -0.26601112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.096301615 + inSlope: 0.17371993 + outSlope: 0.17371993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0830299 + inSlope: 0.3300717 + outSlope: 0.3300717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.07429683 + inSlope: 0.08352628 + outSlope: 0.08352628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.077461496 + inSlope: -0.21225226 + outSlope: -0.21225226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.088446975 + inSlope: -0.31366694 + outSlope: -0.31366694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.09837262 + inSlope: -0.0067685246 + outSlope: -0.0067685246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.08889823 + inSlope: 0.45982462 + outSlope: 0.45982462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.06771768 + inSlope: 0.77546966 + outSlope: 0.77546966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.03720019 + inSlope: 0.45776114 + outSlope: 0.45776114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.050316617 + inSlope: 0.25515518 + outSlope: 0.25515518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.070147745 + inSlope: 0.44182646 + outSlope: 0.44182646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.08827689 + inSlope: 0.6353178 + outSlope: 0.6353178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.13582438 + inSlope: 0.5961335 + outSlope: 0.5961335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.16889895 + inSlope: 0.101813756 + outSlope: 0.101813756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15828271 + inSlope: -0.5477297 + outSlope: -0.5477297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.13280356 + inSlope: -0.8034562 + outSlope: -0.8034562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.104718946 + inSlope: -0.65015805 + outSlope: -0.65015805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.089459665 + inSlope: -0.3415846 + outSlope: -0.3415846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.08194664 + inSlope: -0.33878767 + outSlope: -0.33878767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.06687383 + inSlope: -0.5813016 + outSlope: -0.5813016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.043193195 + inSlope: -0.6635078 + outSlope: -0.6635078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.022639945 + inSlope: -0.46625674 + outSlope: -0.46625674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.012109407 + inSlope: -0.23712143 + outSlope: -0.23712143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0068318555 + inSlope: -0.16633566 + outSlope: -0.16633566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0010203645 + inSlope: -0.18235512 + outSlope: -0.18235512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.005325152 + inSlope: -0.1996293 + outSlope: -0.1996293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.012288255 + inSlope: -0.24233574 + outSlope: -0.24233574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.02148087 + inSlope: -0.26641482 + outSlope: -0.26641482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.030049259 + inSlope: -0.085624486 + outSlope: -0.085624486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.027189178 + inSlope: 0.34688774 + outSlope: 0.34688774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0069233966 + inSlope: 0.70702744 + outSlope: 0.70702744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.019945977 + inSlope: 0.69704676 + outSlope: 0.69704676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.03954638 + inSlope: 0.4114775 + outSlope: 0.4114775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.04737782 + inSlope: 0.15661082 + outSlope: 0.15661082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.050317172 + inSlope: 0.004951177 + outSlope: 0.004951177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05520132 + inSlope: 0.063807406 + outSlope: 0.063807406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.045277394 + inSlope: 0.17117818 + outSlope: 0.17117818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.03868391 + inSlope: 0.1835753 + outSlope: 0.1835753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.03303904 + inSlope: 0.065227926 + outSlope: 0.065227926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.034335382 + inSlope: -0.22627819 + outSlope: -0.22627819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.048124254 + inSlope: -0.55324835 + outSlope: -0.55324835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0712186 + inSlope: -0.6244794 + outSlope: -0.6244794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.08975621 + inSlope: -0.33783486 + outSlope: -0.33783486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.093740925 + inSlope: 0.032827225 + outSlope: 0.032827225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.08756773 + inSlope: 0.21341166 + outSlope: 0.21341166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.079513475 + inSlope: 0.22628748 + outSlope: 0.22628748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.06562071 + inSlope: 0.21556288 + outSlope: 0.21556288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.051371798 + inSlope: 0.16122997 + outSlope: 0.16122997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.04736237 + inSlope: 0.0919009 + outSlope: 0.0919009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.04524507 + inSlope: 0.08688657 + outSlope: 0.08688657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.04156993 + inSlope: 0.14745975 + outSlope: 0.14745975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.035414424 + inSlope: 0.13445747 + outSlope: 0.13445747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.032606103 + inSlope: -0.11002054 + outSlope: -0.11002054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.042749114 + inSlope: -0.5328817 + outSlope: -0.5328817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.06813156 + inSlope: -0.7963567 + outSlope: -0.7963567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.095839605 + inSlope: -0.5700284 + outSlope: -0.5700284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.10613347 + inSlope: 0.040579617 + outSlope: 0.040579617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.09313428 + inSlope: 0.50444406 + outSlope: 0.50444406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.07250387 + inSlope: 0.48236945 + outSlope: 0.48236945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.060976323 + inSlope: 0.21146414 + outSlope: 0.21146414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.058406256 + inSlope: 0.053136066 + outSlope: 0.053136066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.05743392 + inSlope: 0.0480764 + outSlope: 0.0480764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.055201158 + inSlope: 0.03349137 + outSlope: 0.03349137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010981299 + inSlope: 0.18798876 + outSlope: 0.18798876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0051681623 + inSlope: 0.18270972 + outSlope: 0.18270972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.011082519 + inSlope: 0.14041592 + outSlope: 0.14041592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0145292245 + inSlope: 0.060724676 + outSlope: 0.060724676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.015130831 + inSlope: 0.0046469695 + outSlope: 0.0046469695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.014839022 + inSlope: -0.003011521 + outSlope: -0.003011521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.014930063 + inSlope: -0.020301655 + outSlope: -0.020301655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.013485579 + inSlope: -0.10240383 + outSlope: -0.10240383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.008103142 + inSlope: -0.193252 + outSlope: -0.193252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.00060211343 + inSlope: -0.18799886 + outSlope: -0.18799886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.004430115 + inSlope: -0.0896517 + outSlope: -0.0896517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.005374666 + inSlope: -0.009145527 + outSlope: -0.009145527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0050398167 + inSlope: -0.025216354 + outSlope: -0.025216354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0070557557 + inSlope: -0.10330328 + outSlope: -0.10330328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.011926702 + inSlope: -0.15265998 + outSlope: -0.15265998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.017233083 + inSlope: -0.14023042 + outSlope: -0.14023042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.024564296 + inSlope: -0.09184264 + outSlope: -0.09184264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.027398238 + inSlope: -0.060214445 + outSlope: -0.060214445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.02857859 + inSlope: -0.01665625 + outSlope: -0.01665625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.028508656 + inSlope: -0.020543018 + outSlope: -0.020543018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.029948127 + inSlope: -0.07405325 + outSlope: -0.07405325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.034708764 + inSlope: 0.05384737 + outSlope: 0.05384737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.02985571 + inSlope: 0.21273987 + outSlope: 0.21273987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.020526111 + inSlope: 0.27334395 + outSlope: 0.27334395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.011632781 + inSlope: 0.20546731 + outSlope: 0.20546731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0068282876 + inSlope: 0.072923906 + outSlope: 0.072923906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0067711915 + inSlope: -0.025826473 + outSlope: -0.025826473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.008550051 + inSlope: -0.012062024 + outSlope: -0.012062024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0075753257 + inSlope: 0.11176944 + outSlope: 0.11176944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0010987385 + inSlope: 0.09714855 + outSlope: 0.09714855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.027596995 + inSlope: 0.15345554 + outSlope: 0.15345554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.03271218 + inSlope: 0.16804725 + outSlope: 0.16804725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.038800146 + inSlope: 0.2356017 + outSlope: 0.2356017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.04841896 + inSlope: 0.3380074 + outSlope: 0.3380074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0739659 + inSlope: 0.32912874 + outSlope: 0.32912874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.092895284 + inSlope: 0.061670695 + outSlope: 0.061670695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.086854994 + inSlope: -0.3153328 + outSlope: -0.3153328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.056245122 + inSlope: -0.38729492 + outSlope: -0.38729492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.04648172 + inSlope: -0.23013853 + outSlope: -0.23013853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.040902555 + inSlope: -0.21866314 + outSlope: -0.21866314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.031904187 + inSlope: -0.32917732 + outSlope: -0.32917732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.018957399 + inSlope: -0.35464078 + outSlope: -0.35464078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.008261448 + inSlope: -0.23833382 + outSlope: -0.23833382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0030684737 + inSlope: -0.11698079 + outSlope: -0.11698079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.00046273167 + inSlope: -0.08947132 + outSlope: -0.08947132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0028962798 + inSlope: -0.11372186 + outSlope: -0.11372186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0071187257 + inSlope: -0.13221121 + outSlope: -0.13221121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.011710359 + inSlope: -0.14566588 + outSlope: -0.14566588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.016829785 + inSlope: -0.12882656 + outSlope: -0.12882656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.020298803 + inSlope: -0.003355272 + outSlope: -0.003355272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.017053476 + inSlope: 0.22352506 + outSlope: 0.22352506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0053971265 + inSlope: 0.38729697 + outSlope: 0.38729697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.00876632 + inSlope: 0.35893938 + outSlope: 0.35893938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.01853216 + inSlope: 0.21640694 + outSlope: 0.21640694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.023193453 + inSlope: 0.10634047 + outSlope: 0.10634047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.025621518 + inSlope: 0.06604606 + outSlope: 0.06604606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.027596526 + inSlope: 0.029625032 + outSlope: 0.029625032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1659166 + inSlope: -0.05148947 + outSlope: -0.05148947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.1585704 + inSlope: 0.04244103 + outSlope: 0.04244103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.15901056 + inSlope: -0.15049072 + outSlope: -0.15049072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.13731655 + inSlope: -0.10186337 + outSlope: -0.10186337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.15391581 + inSlope: 0.16963187 + outSlope: 0.16963187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.17051633 + inSlope: 0.03227568 + outSlope: 0.03227568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.1652417 + inSlope: -0.11352919 + outSlope: -0.11352919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.16082145 + inSlope: 0.034879677 + outSlope: 0.034879677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.16533804 + inSlope: 0.03208604 + outSlope: 0.03208604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03508983 + inSlope: 0.16085106 + outSlope: 0.16085106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.046142362 + inSlope: 0.16737759 + outSlope: 0.16737759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.055757605 + inSlope: 0.09259243 + outSlope: 0.09259243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.05742047 + inSlope: -0.036534373 + outSlope: -0.036534373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.04331277 + inSlope: -0.3050003 + outSlope: -0.3050003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.031094415 + inSlope: -0.40094098 + outSlope: -0.40094098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.016583359 + inSlope: -0.42556107 + outSlope: -0.42556107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0027236666 + inSlope: -0.38395047 + outSlope: -0.38395047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.009013338 + inSlope: -0.32813612 + outSlope: -0.32813612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.019152064 + inSlope: -0.27695844 + outSlope: -0.27695844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.02747723 + inSlope: -0.1954281 + outSlope: -0.1954281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.032180615 + inSlope: -0.082244195 + outSlope: -0.082244195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.03250789 + inSlope: -0.0030501336 + outSlope: -0.0030501336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.03316352 + inSlope: -0.021670181 + outSlope: -0.021670181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.031481147 + inSlope: 0.1650576 + outSlope: 0.1650576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.022948723 + inSlope: 0.33985296 + outSlope: 0.33985296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.008824265 + inSlope: 0.4458915 + outSlope: 0.4458915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.006777372 + inSlope: 0.4149601 + outSlope: 0.4149601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.018839737 + inSlope: 0.27629912 + outSlope: 0.27629912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.025197318 + inSlope: 0.13223022 + outSlope: 0.13223022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.027655082 + inSlope: 0.062294804 + outSlope: 0.062294804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.029350305 + inSlope: 0.06302669 + outSlope: 0.06302669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.031856857 + inSlope: 0.086099796 + outSlope: 0.086099796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.035090297 + inSlope: 0.048501477 + outSlope: 0.048501477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.016122635 + inSlope: -0.10586033 + outSlope: -0.10586033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.009760648 + inSlope: -0.07086154 + outSlope: -0.07086154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0072066407 + inSlope: -0.0005764654 + outSlope: -0.0005764654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.007831424 + inSlope: 0.029762462 + outSlope: 0.029762462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.010119663 + inSlope: 0.0042771036 + outSlope: 0.0042771036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0094759455 + inSlope: -0.044393204 + outSlope: -0.044393204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.007160116 + inSlope: -0.07457344 + outSlope: -0.07457344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.004504383 + inSlope: -0.06338351 + outSlope: -0.06338351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0029345488 + inSlope: -0.033591032 + outSlope: -0.033591032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0022649805 + inSlope: -0.01914274 + outSlope: -0.01914274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0016583656 + inSlope: -0.0076194964 + outSlope: -0.0076194964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0017570141 + inSlope: 0.030858599 + outSlope: 0.030858599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0037156036 + inSlope: 0.07724843 + outSlope: 0.07724843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0069069103 + inSlope: 0.086301625 + outSlope: 0.086301625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.00946905 + inSlope: 0.056216255 + outSlope: 0.056216255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.011578508 + inSlope: 0.044076085 + outSlope: 0.044076085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0135930665 + inSlope: 0.073285595 + outSlope: 0.073285595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.018458936 + inSlope: 0.023922013 + outSlope: 0.023922013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.018059013 + inSlope: -0.044234954 + outSlope: -0.044234954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.015509937 + inSlope: -0.080479234 + outSlope: -0.080479234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.012693732 + inSlope: -0.057147734 + outSlope: -0.057147734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.01170009 + inSlope: 0.008791408 + outSlope: 0.008791408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.013279824 + inSlope: 0.065782115 + outSlope: 0.065782115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.016085565 + inSlope: 0.06827039 + outSlope: 0.06827039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.017831184 + inSlope: 0.022465141 + outSlope: 0.022465141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.01758324 + inSlope: -0.025614707 + outSlope: -0.025614707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.016123533 + inSlope: -0.02189554 + outSlope: -0.02189554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.25234023 + inSlope: -0.43013778 + outSlope: -0.43013778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.21228668 + inSlope: -0.29895163 + outSlope: -0.29895163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.20523006 + inSlope: 0.18563427 + outSlope: 0.18563427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.25889888 + inSlope: -0.013440102 + outSlope: -0.013440102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.23224422 + inSlope: -0.105327345 + outSlope: -0.105327345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.24615736 + inSlope: 0.12135594 + outSlope: 0.12135594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.24422278 + inSlope: 0.004542142 + outSlope: 0.004542142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.2541221 + inSlope: 0.29912156 + outSlope: 0.29912156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.2740995 + inSlope: 0.12715538 + outSlope: 0.12715538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.26791206 + inSlope: -0.053050503 + outSlope: -0.053050503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.26311734 + inSlope: -0.15263338 + outSlope: -0.15263338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.25226277 + inSlope: -0.06554342 + outSlope: -0.06554342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.25175607 + inSlope: 0.018163458 + outSlope: 0.018163458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20704786 + inSlope: 0.5016021 + outSlope: 0.5016021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.24437477 + inSlope: 0.65410984 + outSlope: 0.65410984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.30684718 + inSlope: 0.49320722 + outSlope: 0.49320722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.33467367 + inSlope: 0.21113323 + outSlope: 0.21113323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.31169775 + inSlope: -1.1841452 + outSlope: -1.1841452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.10534654 + inSlope: -2.201094 + outSlope: -2.201094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.03616127 + inSlope: -1.8979297 + outSlope: -1.8979297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.021182103 + inSlope: -1.5569613 + outSlope: -1.5569613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.101641946 + inSlope: -0.7861403 + outSlope: -0.7861403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.120045505 + inSlope: -0.35601023 + outSlope: -0.35601023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.12641728 + inSlope: -0.04062229 + outSlope: -0.04062229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.12808412 + inSlope: 0.041986436 + outSlope: 0.041986436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.12361818 + inSlope: 0.42904755 + outSlope: 0.42904755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.09948097 + inSlope: 1.1407002 + outSlope: 1.1407002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.047571473 + inSlope: 1.8791356 + outSlope: 1.8791356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.025794845 + inSlope: 2.2271948 + outSlope: 2.2271948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.100908175 + inSlope: 1.962306 + outSlope: 1.962306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.15661523 + inSlope: 1.2644614 + outSlope: 1.2644614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.19969994 + inSlope: 0.12450111 + outSlope: 0.12450111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.2060664 + inSlope: 0.05649595 + outSlope: 0.05649595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10237091 + inSlope: -0.59102917 + outSlope: -0.59102917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.05655137 + inSlope: -0.16565561 + outSlope: -0.16565561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.055382002 + inSlope: 0.09075003 + outSlope: 0.09075003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.07435255 + inSlope: 0.3283393 + outSlope: 0.3283393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.084490664 + inSlope: 0.18443228 + outSlope: 0.18443228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08664803 + inSlope: -0.09807922 + outSlope: -0.09807922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.07795205 + inSlope: -0.36043137 + outSlope: -0.36043137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.06261928 + inSlope: -0.44193357 + outSlope: -0.44193357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.048489813 + inSlope: -0.36618775 + outSlope: -0.36618775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.038206752 + inSlope: -0.27603748 + outSlope: -0.27603748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.030087305 + inSlope: -0.16491166 + outSlope: -0.16491166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.027212642 + inSlope: 0.06562093 + outSlope: 0.06562093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.034462027 + inSlope: 0.31867743 + outSlope: 0.31867743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.04845781 + inSlope: 0.38633633 + outSlope: 0.38633633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.060217805 + inSlope: 0.2685475 + outSlope: 0.2685475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.072554186 + inSlope: 0.27957344 + outSlope: 0.27957344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0849992 + inSlope: 0.4262725 + outSlope: 0.4262725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10953061 + inSlope: 0.019874819 + outSlope: 0.019874819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.10229733 + inSlope: -0.38619787 + outSlope: -0.38619787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.083784066 + inSlope: -0.50472647 + outSlope: -0.50472647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0686489 + inSlope: -0.22258915 + outSlope: -0.22258915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.068944804 + inSlope: 0.2431142 + outSlope: 0.2431142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.084856495 + inSlope: 0.53614396 + outSlope: 0.53614396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.104687735 + inSlope: 0.45020232 + outSlope: 0.45020232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.11486999 + inSlope: 0.11012982 + outSlope: 0.11012982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.11202972 + inSlope: -0.18750127 + outSlope: -0.18750127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.10236988 + inSlope: -0.14489713 + outSlope: -0.14489713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.037087623 + inSlope: 2.4868143 + outSlope: 2.4868143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.045806188 + inSlope: 3.2160344 + outSlope: 3.2160344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.17731468 + inSlope: 4.005355 + outSlope: 4.005355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.31282988 + inSlope: 3.820302 + outSlope: 3.820302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.5332766 + inSlope: 2.7926464 + outSlope: 2.7926464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6300577 + inSlope: -1.7504392 + outSlope: -1.7504392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.501482 + inSlope: -4.2468596 + outSlope: -4.2468596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.34693375 + inSlope: -3.734758 + outSlope: -3.734758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.18975964 + inSlope: -0.24224104 + outSlope: -0.24224104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.20513375 + inSlope: 0.56547886 + outSlope: 0.56547886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.24946705 + inSlope: 0.39754486 + outSlope: 0.39754486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.25459495 + inSlope: -0.39808616 + outSlope: -0.39808616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.222928 + inSlope: -1.5571368 + outSlope: -1.5571368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.1507858 + inSlope: -2.3237643 + outSlope: -2.3237643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.06801039 + inSlope: -2.324524 + outSlope: -2.324524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.0041824537 + inSlope: -1.8745171 + outSlope: -1.8745171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.05695743 + inSlope: -1.4884062 + outSlope: -1.4884062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.10340953 + inSlope: -1.2638276 + outSlope: -1.2638276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.15611905 + inSlope: 0.10893452 + outSlope: 0.10893452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.13395034 + inSlope: 1.158291 + outSlope: 1.158291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.07889968 + inSlope: 1.7958307 + outSlope: 1.7958307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.014228283 + inSlope: 0.507906 + outSlope: 0.507906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.045039196 + inSlope: -0.54884285 + outSlope: -0.54884285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.050817773 + inSlope: 0.11929408 + outSlope: 0.11929408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.037086215 + inSlope: 0.20597282 + outSlope: 0.20597282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.01602366 + inSlope: 0.6094461 + outSlope: 0.6094461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.004291211 + inSlope: 0.49946535 + outSlope: 0.49946535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.01727403 + inSlope: 0.16552243 + outSlope: 0.16552243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.015326039 + inSlope: -0.31042203 + outSlope: -0.31042203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0034207704 + inSlope: -0.74806386 + outSlope: -0.74806386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.03454488 + inSlope: -0.8939321 + outSlope: -0.8939321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.06301625 + inSlope: -0.85757756 + outSlope: -0.85757756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.09171673 + inSlope: -0.5932591 + outSlope: -0.5932591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.103318475 + inSlope: 0.061070442 + outSlope: 0.061070442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.08712674 + inSlope: 0.043310806 + outSlope: 0.043310806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0892274 + inSlope: 0.030209985 + outSlope: 0.030209985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.07051714 + inSlope: 0.32338527 + outSlope: 0.32338527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.058736436 + inSlope: 0.38325822 + outSlope: 0.38325822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.04496659 + inSlope: 0.3829601 + outSlope: 0.3829601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.033205763 + inSlope: 0.24358205 + outSlope: 0.24358205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.028727794 + inSlope: 0.038169287 + outSlope: 0.038169287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.030661138 + inSlope: -0.094502665 + outSlope: -0.094502665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.035027973 + inSlope: 0.034098476 + outSlope: 0.034098476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.028387904 + inSlope: 0.24352041 + outSlope: 0.24352041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.018793283 + inSlope: 0.16230899 + outSlope: 0.16230899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.017567312 + inSlope: -0.122989126 + outSlope: -0.122989126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.026992548 + inSlope: -0.49049738 + outSlope: -0.49049738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.05026715 + inSlope: -0.43482515 + outSlope: -0.43482515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.055980906 + inSlope: 0.069390275 + outSlope: 0.069390275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.045641135 + inSlope: 0.5993681 + outSlope: 0.5993681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.016022965 + inSlope: 0.4442714 + outSlope: 0.4442714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07227558 + inSlope: 0.663264 + outSlope: 0.663264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.10818171 + inSlope: 0.19441588 + outSlope: 0.19441588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.086012945 + inSlope: -1.0059768 + outSlope: -1.0059768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.040280323 + inSlope: -1.7334757 + outSlope: -1.7334757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.029552117 + inSlope: -1.7526733 + outSlope: -1.7526733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.07656458 + inSlope: -0.54845375 + outSlope: -0.54845375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0661157 + inSlope: 0.5509818 + outSlope: 0.5509818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.03983246 + inSlope: 0.6613054 + outSlope: 0.6613054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.022028677 + inSlope: 0.47103345 + outSlope: 0.47103345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.008430233 + inSlope: 0.35776415 + outSlope: 0.35776415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.001822274 + inSlope: 0.27548245 + outSlope: 0.27548245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.009935271 + inSlope: 0.20605248 + outSlope: 0.20605248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.015559106 + inSlope: 0.103548095 + outSlope: 0.103548095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.016838476 + inSlope: 0.023004971 + outSlope: 0.023004971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.01709277 + inSlope: 0.03862216 + outSlope: 0.03862216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.019413289 + inSlope: 0.025904767 + outSlope: 0.025904767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.018819757 + inSlope: 0.03914956 + outSlope: 0.03914956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.022023262 + inSlope: 0.19372025 + outSlope: 0.19372025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.031734433 + inSlope: 0.38618296 + outSlope: 0.38618296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.047768798 + inSlope: 0.337274 + outSlope: 0.337274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.054219373 + inSlope: -0.2952555 + outSlope: -0.2952555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.028085068 + inSlope: -1.071432 + outSlope: -1.071432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.017209485 + inSlope: -1.0418388 + outSlope: -1.0418388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.041370865 + inSlope: -0.13874838 + outSlope: -0.13874838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.026459342 + inSlope: 0.5766144 + outSlope: 0.5766144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.002929919 + inSlope: 0.4495821 + outSlope: 0.4495821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0035127804 + inSlope: 0.41021216 + outSlope: 0.41021216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.024417544 + inSlope: 0.5841644 + outSlope: 0.5841644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.042457037 + inSlope: 0.71787167 + outSlope: 0.71787167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.07227571 + inSlope: 0.44727898 + outSlope: 0.44727898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.32765344 + inSlope: -2.4269757 + outSlope: -2.4269757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.24675424 + inSlope: -1.6754956 + outSlope: -1.6754956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.21595372 + inSlope: -0.11886212 + outSlope: -0.11886212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.30706054 + inSlope: 2.7332892 + outSlope: 2.7332892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.4210494 + inSlope: 3.8999877 + outSlope: 3.8999877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.56705976 + inSlope: 3.1372535 + outSlope: 3.1372535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6301997 + inSlope: -0.3548438 + outSlope: -0.3548438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5434035 + inSlope: -3.0892282 + outSlope: -3.0892282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.42425114 + inSlope: -2.6602209 + outSlope: -2.6602209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.39086694 + inSlope: 1.3099422 + outSlope: 1.3099422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6167922 + inSlope: 2.7184942 + outSlope: 2.7184942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.7785997 + inSlope: 1.4963458 + outSlope: 1.4963458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.80692786 + inSlope: 0.2111727 + outSlope: 0.2111727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7788309 + inSlope: -0.090784125 + outSlope: -0.090784125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.78662556 + inSlope: -0.089169435 + outSlope: -0.089169435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7728863 + inSlope: -0.20548333 + outSlope: -0.20548333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.7729267 + inSlope: -0.05535985 + outSlope: -0.05535985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.77903336 + inSlope: 0.42156625 + outSlope: 0.42156625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.80149394 + inSlope: -0.028768346 + outSlope: -0.028768346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.79538214 + inSlope: -3.2702603 + outSlope: -3.2702603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.5834768 + inSlope: -5.3548403 + outSlope: -5.3548403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.43839315 + inSlope: -3.8373094 + outSlope: -3.8373094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.327656 + inSlope: -1.6610528 + outSlope: -1.6610528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.030481521 + inSlope: -0.42456338 + outSlope: -0.42456338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.016329408 + inSlope: -0.49190933 + outSlope: -0.49190933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.002312435 + inSlope: -0.67983925 + outSlope: -0.67983925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.028993217 + inSlope: -0.6719546 + outSlope: -0.6719546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.04710941 + inSlope: -0.14410841 + outSlope: -0.14410841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.038600445 + inSlope: 0.48941216 + outSlope: 0.48941216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.014481924 + inSlope: 0.76911896 + outSlope: 0.76911896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.01267416 + inSlope: 0.48281333 + outSlope: 0.48281333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.017705629 + inSlope: -0.040503427 + outSlope: -0.040503427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.009973932 + inSlope: -0.20234776 + outSlope: -0.20234776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0042157783 + inSlope: -0.06589122 + outSlope: -0.06589122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.005581184 + inSlope: 0.13007104 + outSlope: 0.13007104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.012887187 + inSlope: 0.22569424 + outSlope: 0.22569424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.020627473 + inSlope: 0.12116064 + outSlope: 0.12116064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.020964563 + inSlope: -0.04638173 + outSlope: -0.04638173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.01753536 + inSlope: -0.12307533 + outSlope: -0.12307533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.01275954 + inSlope: -0.15833294 + outSlope: -0.15833294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.006979822 + inSlope: -0.1326408 + outSlope: -0.1326408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0039168186 + inSlope: -0.1381369 + outSlope: -0.1381369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.002229306 + inSlope: -0.26221004 + outSlope: -0.26221004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.013563844 + inSlope: -0.36438227 + outSlope: -0.36438227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.026521455 + inSlope: -0.20119208 + outSlope: -0.20119208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.02697666 + inSlope: 0.47725448 + outSlope: 0.47725448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.005295536 + inSlope: 1.3278768 + outSlope: 1.3278768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.061548535 + inSlope: 2.0324917 + outSlope: 2.0324917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.14079496 + inSlope: 2.4147651 + outSlope: 2.4147651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.22253287 + inSlope: 1.4219043 + outSlope: 1.4219043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.23558864 + inSlope: -0.58837074 + outSlope: -0.58837074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.1833081 + inSlope: -1.845334 + outSlope: -1.845334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.11256639 + inSlope: -1.7967979 + outSlope: -1.7967979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.06352168 + inSlope: -1.2312753 + outSlope: -1.2312753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.030481322 + inSlope: -0.4956041 + outSlope: -0.4956041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.009493592 + inSlope: -1.9573196 + outSlope: -1.9573196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0557504 + inSlope: -1.4060466 + outSlope: -1.4060466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.08424286 + inSlope: -0.33700246 + outSlope: -0.33700246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.07821723 + inSlope: -0.012514986 + outSlope: -0.012514986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08507719 + inSlope: -0.28435308 + outSlope: -0.28435308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0971741 + inSlope: -1.1365728 + outSlope: -1.1365728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.16084874 + inSlope: -5.631673 + outSlope: -5.631673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.47261897 + inSlope: -7.546715 + outSlope: -7.546715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.663963 + inSlope: -3.280109 + outSlope: -3.280109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.6912929 + inSlope: -0.045737028 + outSlope: -0.045737028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.61217 + inSlope: 1.9618473 + outSlope: 1.9618473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.33340308 + inSlope: 3.4298348 + outSlope: 3.4298348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09636227 + inSlope: 3.322589 + outSlope: 3.322589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.007138425 + inSlope: 2.6269317 + outSlope: 2.6269317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.078766525 + inSlope: 1.7068443 + outSlope: 1.7068443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.120928004 + inSlope: 1.3588115 + outSlope: 1.3588115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.16935395 + inSlope: 1.7932427 + outSlope: 1.7932427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.24047753 + inSlope: 1.289135 + outSlope: 1.289135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.25529632 + inSlope: 0.46927884 + outSlope: 0.46927884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.2717628 + inSlope: -0.5699066 + outSlope: -0.5699066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.21730252 + inSlope: -2.696055 + outSlope: -2.696055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.09202587 + inSlope: -2.443625 + outSlope: -2.443625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.054394286 + inSlope: 0.458009 + outSlope: 0.458009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.12255971 + inSlope: 2.1027217 + outSlope: 2.1027217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.19457574 + inSlope: -0.3355534 + outSlope: -0.3355534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.10018963 + inSlope: -2.0659966 + outSlope: -2.0659966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.056842767 + inSlope: -1.3604302 + outSlope: -1.3604302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.009494203 + inSlope: -0.7102266 + outSlope: -0.7102266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.21078809 + inSlope: -0.4156695 + outSlope: -0.4156695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.22464374 + inSlope: -0.5718143 + outSlope: -0.5718143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.24890904 + inSlope: -1.388288 + outSlope: -1.388288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.31719628 + inSlope: -1.6027327 + outSlope: -1.6027327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3557579 + inSlope: 0.0017407537 + outSlope: 0.0017407537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.31708023 + inSlope: 0.94923365 + outSlope: 0.94923365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.29247564 + inSlope: 3.8137512 + outSlope: 3.8137512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.06283014 + inSlope: 4.9317636 + outSlope: 4.9317636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.03630858 + inSlope: 2.997489 + outSlope: 2.997489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.13700245 + inSlope: 1.6643769 + outSlope: 1.6643769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.14726703 + inSlope: 0.1550203 + outSlope: 0.1550203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.14733714 + inSlope: -0.1512968 + outSlope: -0.1512968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.12477739 + inSlope: -0.24335617 + outSlope: -0.24335617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.11849166 + inSlope: -0.10324 + outSlope: -0.10324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.10784945 + inSlope: -0.24635303 + outSlope: -0.24635303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.08854121 + inSlope: -0.20611028 + outSlope: -0.20611028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.07935821 + inSlope: -0.21173668 + outSlope: -0.21173668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06979416 + inSlope: -0.52729475 + outSlope: -0.52729475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.04420522 + inSlope: -0.79486144 + outSlope: -0.79486144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.016803356 + inSlope: -0.08470777 + outSlope: -0.08470777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.03855799 + inSlope: -0.41804448 + outSlope: -0.41804448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.011066337 + inSlope: -2.8790445 + outSlope: -2.8790445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.15337822 + inSlope: -2.044437 + outSlope: -2.044437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.147362 + inSlope: 0.043510452 + outSlope: 0.043510452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.15047751 + inSlope: 0.002127219 + outSlope: 0.002127219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.14722018 + inSlope: -0.9047948 + outSlope: -0.9047948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.21079734 + inSlope: -0.9536549 + outSlope: -0.9536549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04637748 + inSlope: 0.032837726 + outSlope: 0.032837726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04747207 + inSlope: 0.26571962 + outSlope: 0.26571962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.06409212 + inSlope: 0.52610767 + outSlope: 0.52610767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.08254592 + inSlope: -0.31288517 + outSlope: -0.31288517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.043233115 + inSlope: -2.6802423 + outSlope: -2.6802423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0961369 + inSlope: -6.484617 + outSlope: -6.484617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.3890748 + inSlope: -1.2877717 + outSlope: -1.2877717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.18198848 + inSlope: 5.143302 + outSlope: 5.143302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.04618804 + inSlope: 2.8520312 + outSlope: 2.8520312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.008146929 + inSlope: 0.6928201 + outSlope: 0.6928201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000000034150947 + inSlope: -0.17787477 + outSlope: -0.17787477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0037113891 + inSlope: -0.09715049 + outSlope: -0.09715049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.006476735 + inSlope: 0.05567037 + outSlope: 0.05567037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.000000034150947 + inSlope: 0.09715053 + outSlope: 0.09715053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.000000034150947 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.000000034150947 + inSlope: -0.04747405 + outSlope: -0.04747405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0031649736 + inSlope: 0.00000008568168 + outSlope: 0.00000008568168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.000000034150947 + inSlope: 0.047477722 + outSlope: 0.047477722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.00000020490565 + inSlope: 0.62616634 + outSlope: 0.62616634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.04174435 + inSlope: 0.81780314 + outSlope: 0.81780314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.054520387 + inSlope: 0.17703587 + outSlope: 0.17703587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.053546753 + inSlope: -0.08361104 + outSlope: -0.08361104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.04894632 + inSlope: -0.10672854 + outSlope: -0.10672854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.042993233 + inSlope: -0.16697864 + outSlope: -0.16697864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.035299607 + inSlope: -0.22760458 + outSlope: -0.22760458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.027819594 + inSlope: -0.08049063 + outSlope: -0.08049063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.02993357 + inSlope: 0.27836767 + outSlope: 0.27836767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.04637748 + inSlope: 0.246658 + outSlope: 0.246658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.25782713 + inSlope: -0.34641308 + outSlope: -0.34641308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.22370128 + inSlope: -0.90039533 + outSlope: -0.90039533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.18625367 + inSlope: -1.3873022 + outSlope: -1.3873022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.065965585 + inSlope: -1.9979922 + outSlope: -1.9979922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0019850319 + inSlope: -1.7399342 + outSlope: -1.7399342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.05003005 + inSlope: -1.3852535 + outSlope: -1.3852535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.094335265 + inSlope: -1.0854605 + outSlope: -1.0854605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.122394085 + inSlope: -0.6973481 + outSlope: -0.6973481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.14082514 + inSlope: -0.30036274 + outSlope: -0.30036274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.13197324 + inSlope: 0.4411257 + outSlope: 0.4411257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.11300988 + inSlope: 0.82618916 + outSlope: 0.82618916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07689396 + inSlope: 1.3237891 + outSlope: 1.3237891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.024757328 + inSlope: 2.081529 + outSlope: 2.081529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.06187465 + inSlope: 3.0372753 + outSlope: 3.0372753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.17772786 + inSlope: 3.5742335 + outSlope: 3.5742335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.41493067 + inSlope: 3.2678287 + outSlope: 3.2678287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.5180121 + inSlope: 2.926569 + outSlope: 2.926569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.64308745 + inSlope: -0.46471024 + outSlope: -0.46471024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5790545 + inSlope: -1.9618385 + outSlope: -1.9618385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.5122981 + inSlope: -2.342673 + outSlope: -2.342673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.4228763 + inSlope: -2.063918 + outSlope: -2.063918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.37470362 + inSlope: -0.7765588 + outSlope: -0.7765588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.37110567 + inSlope: -0.11188254 + outSlope: -0.11188254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.36724478 + inSlope: -0.606544 + outSlope: -0.606544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.33066943 + inSlope: -1.2942243 + outSlope: -1.2942243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.28096324 + inSlope: -1.0925506 + outSlope: -1.0925506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.2578327 + inSlope: -0.34695712 + outSlope: -0.34695712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08088883 + inSlope: -0.38019103 + outSlope: -0.38019103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.068215795 + inSlope: -0.37656027 + outSlope: -0.37656027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.047278453 + inSlope: -0.16462275 + outSlope: -0.16462275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.056021467 + inSlope: 0.32782915 + outSlope: 0.32782915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.06950372 + inSlope: 0.4498449 + outSlope: 0.4498449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1063943 + inSlope: 0.01710467 + outSlope: 0.01710467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.09406222 + inSlope: -0.07780253 + outSlope: -0.07780253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.09550819 + inSlope: 0.14168312 + outSlope: 0.14168312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.112017475 + inSlope: 0.19739926 + outSlope: 0.19739926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.113369666 + inSlope: -0.26028472 + outSlope: -0.26028472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0993154 + inSlope: -0.5786285 + outSlope: -0.5786285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.07479443 + inSlope: -0.7792227 + outSlope: -0.7792227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.04736722 + inSlope: -0.6614463 + outSlope: -0.6614463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.030698022 + inSlope: -0.22324719 + outSlope: -0.22324719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.03248406 + inSlope: 0.18683226 + outSlope: 0.18683226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.043153513 + inSlope: 0.2875244 + outSlope: 0.2875244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.05165237 + inSlope: 0.2021195 + outSlope: 0.2021195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.05662815 + inSlope: 0.14589068 + outSlope: 0.14589068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.061378412 + inSlope: 0.22684139 + outSlope: 0.22684139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0717509 + inSlope: 0.36227232 + outSlope: 0.36227232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0855299 + inSlope: 0.30926198 + outSlope: 0.30926198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.09196855 + inSlope: -0.17220399 + outSlope: -0.17220399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.08088808 + inSlope: -0.16620667 + outSlope: -0.16620667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.120407976 + inSlope: 0.18942988 + outSlope: 0.18942988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.13063788 + inSlope: -0.013473172 + outSlope: -0.013473172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.11322331 + inSlope: -0.45401597 + outSlope: -0.45401597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.09555636 + inSlope: -0.47333068 + outSlope: -0.47333068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.08166792 + inSlope: -0.3402663 + outSlope: -0.3402663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.07287194 + inSlope: -0.2261907 + outSlope: -0.2261907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.06658854 + inSlope: -0.087064065 + outSlope: -0.087064065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.06706767 + inSlope: 0.13123693 + outSlope: 0.13123693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.07533767 + inSlope: 0.22146823 + outSlope: 0.22146823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.081832215 + inSlope: 0.15292588 + outSlope: 0.15292588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.08553273 + inSlope: -0.0083554685 + outSlope: -0.0083554685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.07695118 + inSlope: -0.041401893 + outSlope: -0.041401893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.080781065 + inSlope: -0.10749744 + outSlope: -0.10749744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.07398524 + inSlope: -0.3416942 + outSlope: -0.3416942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.058001444 + inSlope: -0.59120417 + outSlope: -0.59120417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.034571636 + inSlope: -0.8755044 + outSlope: -0.8755044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.00036552342 + inSlope: -1.0162466 + outSlope: -1.0162466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.033178136 + inSlope: -0.41515255 + outSlope: -0.41515255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.028042322 + inSlope: 0.38057488 + outSlope: 0.38057488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0078064576 + inSlope: 0.63405067 + outSlope: 0.63405067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.014227717 + inSlope: 0.6012403 + outSlope: 0.6012403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.03227622 + inSlope: 0.53144276 + outSlope: 0.53144276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.049657233 + inSlope: 0.44747233 + outSlope: 0.44747233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.062107705 + inSlope: 0.40958577 + outSlope: 0.40958577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.095439546 + inSlope: 0.6516681 + outSlope: 0.6516681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.12040754 + inSlope: 0.37451887 + outSlope: 0.37451887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.651775 + inSlope: 1.04177 + outSlope: 1.04177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.72961175 + inSlope: 0.382846 + outSlope: 0.382846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.7490178 + inSlope: 0.4204657 + outSlope: 0.4204657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.7662574 + inSlope: 0.26258102 + outSlope: 0.26258102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.76684695 + inSlope: -0.010116398 + outSlope: -0.010116398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.76584876 + inSlope: -0.9046743 + outSlope: -0.9046743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.50516194 + inSlope: -3.2548487 + outSlope: -3.2548487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.39519066 + inSlope: -2.9126115 + outSlope: -2.9126115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.31098786 + inSlope: -2.0387728 + outSlope: -2.0387728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.23098695 + inSlope: -0.4904118 + outSlope: -0.4904118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.24802238 + inSlope: 0.9876957 + outSlope: 0.9876957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3675488 + inSlope: 2.7720318 + outSlope: 2.7720318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.5518403 + inSlope: 0.63119674 + outSlope: 0.63119674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5193066 + inSlope: -0.74928343 + outSlope: -0.74928343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.50188804 + inSlope: -0.81562614 + outSlope: -0.81562614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.46493155 + inSlope: -0.4336347 + outSlope: -0.4336347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.4729791 + inSlope: 0.82921267 + outSlope: 0.82921267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.5672633 + inSlope: 1.0136154 + outSlope: 1.0136154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6094269 + inSlope: 0.9599049 + outSlope: 0.9599049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.6517805 + inSlope: 0.6353019 + outSlope: 0.6353019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.092886776 + inSlope: -0.14976515 + outSlope: -0.14976515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09787895 + inSlope: -0.17194791 + outSlope: -0.17194791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.10434997 + inSlope: -0.05180631 + outSlope: -0.05180631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.1013327 + inSlope: 0.27217728 + outSlope: 0.27217728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.06563027 + inSlope: 0.5794004 + outSlope: 0.5794004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.031806655 + inSlope: 0.44848967 + outSlope: 0.44848967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.01767881 + inSlope: 0.78492016 + outSlope: 0.78492016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.020521352 + inSlope: 1.0874231 + outSlope: 1.0874231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.054816052 + inSlope: 0.70154095 + outSlope: 0.70154095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.067290746 + inSlope: 0.45281723 + outSlope: 0.45281723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.08500388 + inSlope: 0.5308007 + outSlope: 0.5308007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.10267747 + inSlope: 0.33588377 + outSlope: 0.33588377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.10739613 + inSlope: -0.16665682 + outSlope: -0.16665682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.06771501 + inSlope: -0.672327 + outSlope: -0.672327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.046745196 + inSlope: -0.7593185 + outSlope: -0.7593185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.017093793 + inSlope: -1.0145899 + outSlope: -1.0145899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.020894136 + inSlope: -0.7850099 + outSlope: -0.7850099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.03524022 + inSlope: -0.030194908 + outSlope: -0.030194908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.022907106 + inSlope: 0.13884242 + outSlope: 0.13884242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.025984047 + inSlope: -0.13824552 + outSlope: -0.13824552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.032123476 + inSlope: -0.35344625 + outSlope: -0.35344625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.04954715 + inSlope: -0.6158559 + outSlope: -0.6158559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.07318053 + inSlope: -0.45550394 + outSlope: -0.45550394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.07991406 + inSlope: 0.021860093 + outSlope: 0.021860093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0717232 + inSlope: 0.2875461 + outSlope: 0.2875461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.060744323 + inSlope: 0.1671853 + outSlope: 0.1671853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.060577504 + inSlope: -0.1959873 + outSlope: -0.1959873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.07381013 + inSlope: -0.48463425 + outSlope: -0.48463425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.09288649 + inSlope: -0.28614467 + outSlope: -0.28614467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0764021 + inSlope: 3.0696747 + outSlope: 3.0696747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.025920399 + inSlope: 2.760161 + outSlope: 2.760161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.107608646 + inSlope: 2.112439 + outSlope: 2.112439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.16674967 + inSlope: 1.5145123 + outSlope: 1.5145123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.24845907 + inSlope: 1.4032059 + outSlope: 1.4032059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.30212322 + inSlope: 1.473325 + outSlope: 1.473325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.34668076 + inSlope: 1.47262 + outSlope: 1.47262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.40029788 + inSlope: 1.0679127 + outSlope: 1.0679127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.41787493 + inSlope: -1.382475 + outSlope: -1.382475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.3081329 + inSlope: -3.307847 + outSlope: -3.307847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.19735181 + inSlope: -2.3587592 + outSlope: -2.3587592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.15088224 + inSlope: -1.5093925 + outSlope: -1.5093925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.096725605 + inSlope: -1.4557912 + outSlope: -1.4557912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.053829502 + inSlope: -0.995551 + outSlope: -0.995551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.030355562 + inSlope: -0.873536 + outSlope: -0.873536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0044062324 + inSlope: -0.8639051 + outSlope: -0.8639051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.027238159 + inSlope: -0.29513955 + outSlope: -0.29513955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.024082225 + inSlope: 0.13718164 + outSlope: 0.13718164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.018092714 + inSlope: 0.44497725 + outSlope: 0.44497725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.005582908 + inSlope: 0.013638049 + outSlope: 0.013638049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.017183552 + inSlope: -3.3815253 + outSlope: -3.3815253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.21985194 + inSlope: -7.8860855 + outSlope: -7.8860855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5429227 + inSlope: -7.5241776 + outSlope: -7.5241776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.7214642 + inSlope: -3.016203 + outSlope: -3.016203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.67627925 + inSlope: 2.724089 + outSlope: 2.724089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.43788302 + inSlope: 3.572731 + outSlope: 3.572731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.32421505 + inSlope: 3.5937338 + outSlope: 3.5937338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.19830099 + inSlope: 3.7173004 + outSlope: 3.7173004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.07639483 + inSlope: 1.8285875 + outSlope: 1.8285875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14477016 + inSlope: -0.35050657 + outSlope: -0.35050657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.11809243 + inSlope: -0.54552335 + outSlope: -0.54552335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.09671838 + inSlope: -0.5835022 + outSlope: -0.5835022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.07919229 + inSlope: -0.55066025 + outSlope: -0.55066025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0600077 + inSlope: -0.88995004 + outSlope: -0.88995004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.01986227 + inSlope: -1.5392356 + outSlope: -1.5392356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.042608026 + inSlope: -2.3539941 + outSlope: -2.3539941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.13707066 + inSlope: -3.334679 + outSlope: -3.334679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.26491994 + inSlope: -3.2590308 + outSlope: -3.2590308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.35433936 + inSlope: -1.5510956 + outSlope: -1.5510956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.3683263 + inSlope: 0.67997414 + outSlope: 0.67997414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.3090077 + inSlope: 2.3991015 + outSlope: 2.3991015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.20838617 + inSlope: 2.8753457 + outSlope: 2.8753457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.117318004 + inSlope: 2.1618004 + outSlope: 2.1618004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.064266205 + inSlope: 0.71981174 + outSlope: 0.71981174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.06933061 + inSlope: 0.14641994 + outSlope: 0.14641994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.054504868 + inSlope: 0.98577875 + outSlope: 0.98577875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.003612064 + inSlope: 1.4036486 + outSlope: 1.4036486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.03907169 + inSlope: 1.3395262 + outSlope: 1.3395262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08568968 + inSlope: 1.996083 + outSlope: 1.996083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.17214392 + inSlope: 1.6633198 + outSlope: 1.6633198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.19657771 + inSlope: 0.26693812 + outSlope: 0.26693812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.18993977 + inSlope: -1.4445474 + outSlope: -1.4445474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.10027447 + inSlope: -1.1624069 + outSlope: -1.1624069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.11244589 + inSlope: 0.36298236 + outSlope: 0.36298236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.124473296 + inSlope: 0.07934474 + outSlope: 0.07934474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.11773556 + inSlope: 0.21354651 + outSlope: 0.21354651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.13870975 + inSlope: 0.684499 + outSlope: 0.684499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.16336882 + inSlope: 0.45061713 + outSlope: 0.45061713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.16875087 + inSlope: -0.2790294 + outSlope: -0.2790294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.1447668 + inSlope: -0.35976017 + outSlope: -0.35976017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16170754 + inSlope: -0.42522353 + outSlope: -0.42522353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.17588165 + inSlope: -0.14456211 + outSlope: -0.14456211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.17134501 + inSlope: 0.22168231 + outSlope: 0.22168231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.12226626 + inSlope: 0.7957989 + outSlope: 0.7957989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.092226736 + inSlope: 1.1508313 + outSlope: 1.1508313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.045544166 + inSlope: 1.5688406 + outSlope: 1.5688406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.012362633 + inSlope: 1.4998462 + outSlope: 1.4998462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.054445576 + inSlope: 0.14901897 + outSlope: 0.14901897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.022297228 + inSlope: -1.2617518 + outSlope: -1.2617518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.029671203 + inSlope: -1.1890817 + outSlope: -1.1890817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.056974903 + inSlope: -0.41538638 + outSlope: -0.41538638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.05736365 + inSlope: 0.007621721 + outSlope: 0.007621721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.056466788 + inSlope: -0.1347789 + outSlope: -0.1347789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0663489 + inSlope: -0.3517536 + outSlope: -0.3517536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.07991703 + inSlope: -0.19851415 + outSlope: -0.19851415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.07958319 + inSlope: 0.4401172 + outSlope: 0.4401172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.05057591 + inSlope: 0.67514855 + outSlope: 0.67514855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0345733 + inSlope: -1.169876 + outSlope: -1.169876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.12856753 + inSlope: -6.403537 + outSlope: -6.403537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.4614759 + inSlope: -6.2654676 + outSlope: -6.2654676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.54626554 + inSlope: 1.830038 + outSlope: 1.830038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.33947313 + inSlope: 6.0103865 + outSlope: 6.0103865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.14557278 + inSlope: 4.5285754 + outSlope: 4.5285754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.03756803 + inSlope: 1.5072345 + outSlope: 1.5072345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.04509059 + inSlope: -0.78572714 + outSlope: -0.78572714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0899498 + inSlope: -1.1326064 + outSlope: -1.1326064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.12059767 + inSlope: -0.71514493 + outSlope: -0.71514493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.13762614 + inSlope: -0.46160847 + outSlope: -0.46160847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.15137154 + inSlope: -0.36122072 + outSlope: -0.36122072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.16170754 + inSlope: -0.15503955 + outSlope: -0.15503955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9822092 + inSlope: -0.1766449 + outSlope: -0.1766449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.9688605 + inSlope: 0.4096216 + outSlope: 0.4096216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.96574056 + inSlope: -0.56154716 + outSlope: -0.56154716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -1.0103582 + inSlope: 0.057469025 + outSlope: 0.057469025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.92156696 + inSlope: -0.08692503 + outSlope: -0.08692503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.9519627 + inSlope: -1.7472543 + outSlope: -1.7472543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -1.140611 + inSlope: -2.728835 + outSlope: -2.728835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -1.2754313 + inSlope: -1.399164 + outSlope: -1.399164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -1.3017954 + inSlope: 1.4575009 + outSlope: 1.4575009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -1.1017529 + inSlope: 2.7495766 + outSlope: 2.7495766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -1.0327787 + inSlope: 1.0759923 + outSlope: 1.0759923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -1.0582435 + inSlope: -0.77638876 + outSlope: -0.77638876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -1.0873947 + inSlope: 0.71299404 + outSlope: 0.71299404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.99918073 + inSlope: 0.53543377 + outSlope: 0.53543377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.9826476 + inSlope: 0.047727812 + outSlope: 0.047727812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.052677337 + inSlope: 1.1103626 + outSlope: 1.1103626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.089689426 + inSlope: 0.79873717 + outSlope: 0.79873717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.105926484 + inSlope: 0.08304992 + outSlope: 0.08304992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.006564528 + inSlope: -2.2985008 + outSlope: -2.2985008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.09610746 + inSlope: -3.0918412 + outSlope: -3.0918412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2126873 + inSlope: -3.5226302 + outSlope: -3.5226302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.33094946 + inSlope: -2.8414226 + outSlope: -2.8414226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.40211546 + inSlope: -0.86210006 + outSlope: -0.86210006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.3884228 + inSlope: 1.5750147 + outSlope: 1.5750147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.16347599 + inSlope: 4.25385 + outSlope: 4.25385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.013524396 + inSlope: 4.3076506 + outSlope: 4.3076506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.123700686 + inSlope: 3.330461 + outSlope: 3.330461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.20850626 + inSlope: 1.7669863 + outSlope: 1.7669863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.24149972 + inSlope: 1.0866625 + outSlope: 1.0866625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.2809505 + inSlope: 1.9330934 + outSlope: 1.9330934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.37037256 + inSlope: 2.936273 + outSlope: 2.936273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.47670203 + inSlope: 2.4532566 + outSlope: 2.4532566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.53392303 + inSlope: 0.6128715 + outSlope: 0.6128715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.45483574 + inSlope: -1.9762155 + outSlope: -1.9762155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.38581237 + inSlope: -1.9453899 + outSlope: -1.9453899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.26316273 + inSlope: -2.0488195 + outSlope: -2.0488195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.188555 + inSlope: -2.4671605 + outSlope: -2.4671605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.09868539 + inSlope: -2.609413 + outSlope: -2.609413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.014594157 + inSlope: -1.8187141 + outSlope: -1.8187141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.02256225 + inSlope: -0.24135852 + outSlope: -0.24135852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0014963943 + inSlope: 1.1285825 + outSlope: 1.1285825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.052676708 + inSlope: 0.81259435 + outSlope: 0.81259435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.27216423 + inSlope: 0.5315387 + outSlope: 0.5315387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.16126502 + inSlope: 0.99365675 + outSlope: 0.99365675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.12476201 + inSlope: 1.1180649 + outSlope: 1.1180649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.08672734 + inSlope: 0.9482584 + outSlope: 0.9482584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.06154479 + inSlope: 0.3890073 + outSlope: 0.3890073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.060793526 + inSlope: -0.35748315 + outSlope: -0.35748315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.085377 + inSlope: -0.9749114 + outSlope: -0.9749114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.12578762 + inSlope: -1.1876693 + outSlope: -1.1876693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.16455498 + inSlope: -0.98923194 + outSlope: -0.98923194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.20897503 + inSlope: -0.3910926 + outSlope: -0.3910926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.25148547 + inSlope: -1.0619911 + outSlope: -1.0619911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.3492573 + inSlope: -1.280862 + outSlope: -1.280862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.39474496 + inSlope: -0.13413441 + outSlope: -0.13413441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.38708106 + inSlope: 0.13475183 + outSlope: 0.13475183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.36389488 + inSlope: 0.44231856 + outSlope: 0.44231856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.29832894 + inSlope: 0.7661115 + outSlope: 0.7661115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.27216268 + inSlope: 0.39249286 + outSlope: 0.39249286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.35204622 + inSlope: -0.35396752 + outSlope: -0.35396752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.29135182 + inSlope: -0.5756794 + outSlope: -0.5756794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.2345821 + inSlope: 0.023303702 + outSlope: 0.023303702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.2693982 + inSlope: 0.48171872 + outSlope: 0.48171872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.32634848 + inSlope: 0.6180296 + outSlope: 0.6180296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.37780097 + inSlope: 0.985077 + outSlope: 0.985077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.4439922 + inSlope: 0.77317286 + outSlope: 0.77317286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.482569 + inSlope: 0.46086437 + outSlope: 0.46086437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.4952508 + inSlope: -0.3190315 + outSlope: -0.3190315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.40699044 + inSlope: -0.9097156 + outSlope: -0.9097156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.35538816 + inSlope: -0.13191678 + outSlope: -0.13191678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.3546738 + inSlope: -0.030344613 + outSlope: -0.030344613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.35310715 + inSlope: -0.051532343 + outSlope: -0.051532343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0363632 + inSlope: -0.8576477 + outSlope: -0.8576477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0077749393 + inSlope: -0.8681998 + outSlope: -0.8681998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.021516792 + inSlope: -0.85250103 + outSlope: -0.85250103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.049058467 + inSlope: -0.7803302 + outSlope: -0.7803302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07353881 + inSlope: -0.63147914 + outSlope: -0.63147914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.09115707 + inSlope: -0.4336888 + outSlope: -0.4336888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1024514 + inSlope: -0.18166909 + outSlope: -0.18166909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.09506184 + inSlope: 0.4027533 + outSlope: 0.4027533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.07641813 + inSlope: 0.6672047 + outSlope: 0.6672047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.015084328 + inSlope: 1.2234876 + outSlope: 1.2234876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.030984348 + inSlope: 1.449825 + outSlope: 1.449825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.12833464 + inSlope: 1.2212105 + outSlope: 1.2212105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.18362358 + inSlope: 0.38890815 + outSlope: 0.38890815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.17696875 + inSlope: -0.17834207 + outSlope: -0.17834207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.18191111 + inSlope: 0.45578632 + outSlope: 0.45578632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.20253102 + inSlope: 0.6630192 + outSlope: 0.6630192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.22611243 + inSlope: 0.47445488 + outSlope: 0.47445488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.23416136 + inSlope: -0.12284977 + outSlope: -0.12284977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.21792242 + inSlope: -0.78139126 + outSlope: -0.78139126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.18206863 + inSlope: -1.1203883 + outSlope: -1.1203883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.14322987 + inSlope: -1.0913998 + outSlope: -1.0913998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.109308645 + inSlope: -1.0353489 + outSlope: -1.0353489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.07420668 + inSlope: -1.0941801 + outSlope: -1.0941801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.036363244 + inSlope: -0.5676501 + outSlope: -0.5676501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04526363 + inSlope: -3.308412 + outSlope: -3.308412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.34917858 + inSlope: -2.4508982 + outSlope: -2.4508982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.518331 + inSlope: -0.9750167 + outSlope: -0.9750167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.5073921 + inSlope: 1.789148 + outSlope: 1.789148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.29816756 + inSlope: 4.1174126 + outSlope: 4.1174126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.14959168 + inSlope: 4.5020876 + outSlope: 4.5020876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0019717345 + inSlope: 4.4381495 + outSlope: 4.4381495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.14628492 + inSlope: 4.0638275 + outSlope: 4.0638275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.3647832 + inSlope: 2.0959435 + outSlope: 2.0959435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.41382855 + inSlope: -0.08229161 + outSlope: -0.08229161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.42130148 + inSlope: -0.4095342 + outSlope: -0.4095342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.37048402 + inSlope: -1.1213514 + outSlope: -1.1213514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.25560105 + inSlope: -2.484178 + outSlope: -2.484178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.055833474 + inSlope: -3.085096 + outSlope: -3.085096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.045263078 + inSlope: -1.5164443 + outSlope: -1.5164443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.020729529 + inSlope: -0.7305471 + outSlope: -0.7305471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0036220427 + inSlope: -0.98570716 + outSlope: -0.98570716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04498429 + inSlope: -1.3846333 + outSlope: -1.3846333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.09593094 + inSlope: -1.4437207 + outSlope: -1.4437207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.14123234 + inSlope: -1.1093045 + outSlope: -1.1093045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.16988458 + inSlope: -0.63733727 + outSlope: -0.63733727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.1920052 + inSlope: -0.27996454 + outSlope: -0.27996454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.19944528 + inSlope: 0.4954968 + outSlope: 0.4954968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.16935268 + inSlope: 1.1610053 + outSlope: 1.1610053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.12204493 + inSlope: 1.1790885 + outSlope: 1.1790885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09074676 + inSlope: 0.44503912 + outSlope: 0.44503912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.09237563 + inSlope: -0.23457764 + outSlope: -0.23457764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.10638527 + inSlope: -0.077822626 + outSlope: -0.077822626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.09756381 + inSlope: 0.6920357 + outSlope: 0.6920357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.06024953 + inSlope: 1.214432 + outSlope: 1.214432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.016601607 + inSlope: 1.0772171 + outSlope: 1.0772171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.01156495 + inSlope: 0.68000466 + outSlope: 0.68000466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.028732022 + inSlope: 0.5425511 + outSlope: 0.5425511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.04773502 + inSlope: 0.6717495 + outSlope: 0.6717495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.09853401 + inSlope: 0.58823544 + outSlope: 0.58823544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11273101 + inSlope: 0.26853427 + outSlope: 0.26853427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.11643631 + inSlope: 0.08001921 + outSlope: 0.08001921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.118065625 + inSlope: 0.049485978 + outSlope: 0.049485978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.114995636 + inSlope: -0.3256789 + outSlope: -0.3256789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.07310466 + inSlope: -0.7569338 + outSlope: -0.7569338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.04756123 + inSlope: -0.7855972 + outSlope: -0.7855972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.020731462 + inSlope: -0.40244544 + outSlope: -0.40244544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05656805 + inSlope: 1.082162 + outSlope: 1.082162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.020495983 + inSlope: 1.0919952 + outSlope: 1.0919952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.01623164 + inSlope: 1.0034018 + outSlope: 1.0034018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.046397477 + inSlope: 0.7236674 + outSlope: 0.7236674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.06447613 + inSlope: 0.31070468 + outSlope: 0.31070468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.06711112 + inSlope: -0.07797372 + outSlope: -0.07797372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.05927788 + inSlope: -0.23105472 + outSlope: -0.23105472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.05170747 + inSlope: -0.04378991 + outSlope: -0.04378991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.056358553 + inSlope: 0.4228674 + outSlope: 0.4228674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.079898626 + inSlope: 0.8444863 + outSlope: 0.8444863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.11265764 + inSlope: 0.82204485 + outSlope: 0.82204485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.13470161 + inSlope: 0.34961432 + outSlope: 0.34961432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.095231816 + inSlope: -0.866868 + outSlope: -0.866868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.062610924 + inSlope: -1.0903664 + outSlope: -1.0903664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.022540718 + inSlope: -1.1715477 + outSlope: -1.1715477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.015492322 + inSlope: -1.0132039 + outSlope: -1.0132039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.045006204 + inSlope: -0.7300458 + outSlope: -0.7300458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.06416203 + inSlope: -0.4737836 + outSlope: -0.4737836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.08909762 + inSlope: -0.45721 + outSlope: -0.45721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.10707244 + inSlope: -0.57407856 + outSlope: -0.57407856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.12736952 + inSlope: -0.44258356 + outSlope: -0.44258356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.13657804 + inSlope: 0.011844456 + outSlope: 0.011844456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.12657991 + inSlope: 0.37324768 + outSlope: 0.37324768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.11169486 + inSlope: 0.23186706 + outSlope: 0.23186706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.111122094 + inSlope: -0.1699769 + outSlope: -0.1699769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.12302666 + inSlope: -0.22451633 + outSlope: -0.22451633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.12608986 + inSlope: 0.29595053 + outSlope: 0.29595053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.103296645 + inSlope: 1.0428315 + outSlope: 1.0428315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.056567654 + inSlope: 0.70093304 + outSlope: 0.70093304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22910048 + inSlope: 0.7198132 + outSlope: 0.7198132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.25309426 + inSlope: 0.8515962 + outSlope: 0.8515962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.31122375 + inSlope: 0.45855442 + outSlope: 0.45855442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.29436523 + inSlope: -1.0273334 + outSlope: -1.0273334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.24795495 + inSlope: -1.548863 + outSlope: -1.548863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.19110768 + inSlope: -1.5045035 + outSlope: -1.5045035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.14765473 + inSlope: -0.6390987 + outSlope: -0.6390987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.1485011 + inSlope: 0.7627881 + outSlope: 0.7627881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.19850726 + inSlope: 1.628949 + outSlope: 1.628949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.2570977 + inSlope: 1.2526716 + outSlope: 1.2526716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.28201872 + inSlope: 0.078573644 + outSlope: 0.078573644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.26233596 + inSlope: -0.9657469 + outSlope: -0.9657469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.2176356 + inSlope: -1.1851174 + outSlope: -1.1851174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.18332817 + inSlope: -0.49050188 + outSlope: -0.49050188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.18493551 + inSlope: 0.44169062 + outSlope: 0.44169062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.21277423 + inSlope: 0.73919237 + outSlope: 0.73919237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.234215 + inSlope: 0.37313688 + outSlope: 0.37313688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.23449649 + inSlope: -0.07940368 + outSlope: -0.07940368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.23143236 + inSlope: 0.0086959135 + outSlope: 0.0086959135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.23293616 + inSlope: -0.018743709 + outSlope: -0.018743709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.23018278 + inSlope: -0.41135195 + outSlope: -0.41135195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.20551272 + inSlope: -1.0695941 + outSlope: -1.0695941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.1588765 + inSlope: -1.1539823 + outSlope: -1.1539823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.12858056 + inSlope: -0.18326953 + outSlope: -0.18326953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.14665857 + inSlope: 0.9458041 + outSlope: 0.9458041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.19163413 + inSlope: 1.146822 + outSlope: 1.146822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2231133 + inSlope: 0.5620439 + outSlope: 0.5620439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.22910371 + inSlope: 0.089856 + outSlope: 0.089856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.1912025 + inSlope: 1.9886004 + outSlope: 1.9886004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -1.0516462 + inSlope: -0.9463138 + outSlope: -0.9463138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -1.2613202 + inSlope: -1.3959004 + outSlope: -1.3959004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -1.223485 + inSlope: 1.1754711 + outSlope: 1.1754711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -1.11347 + inSlope: 2.1259396 + outSlope: 2.1259396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.9877298 + inSlope: 1.0287509 + outSlope: 1.0287509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.9724073 + inSlope: 0.055445835 + outSlope: 0.055445835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.95876455 + inSlope: -0.28332603 + outSlope: -0.28332603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.98749506 + inSlope: 0.06973438 + outSlope: 0.06973438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.9444448 + inSlope: -0.82657033 + outSlope: -0.82657033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -1.1459972 + inSlope: -1.7819487 + outSlope: -1.7819487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.2114798 + inSlope: 0.047677904 + outSlope: 0.047677904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -1.1912044 + inSlope: 0.3041295 + outSlope: 0.3041295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6260902 + inSlope: -0.7873892 + outSlope: -0.7873892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.59619725 + inSlope: 0.3746035 + outSlope: 0.3746035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6861908 + inSlope: 2.178011 + outSlope: 2.178011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.90167993 + inSlope: 0.49691772 + outSlope: 0.49691772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.88616765 + inSlope: -1.4846493 + outSlope: -1.4846493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.6871124 + inSlope: -3.1635952 + outSlope: -3.1635952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.591797 + inSlope: -2.3331518 + outSlope: -2.3331518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.47895306 + inSlope: -1.5803232 + outSlope: -1.5803232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.426214 + inSlope: -1.1892754 + outSlope: -1.1892754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.39966807 + inSlope: -0.27832928 + outSlope: -0.27832928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.42299408 + inSlope: 0.2800417 + outSlope: 0.2800417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.42911077 + inSlope: 0.12974297 + outSlope: 0.12974297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.43497774 + inSlope: 0.13745789 + outSlope: 0.13745789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.43827462 + inSlope: -0.49488378 + outSlope: -0.49488378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.40198553 + inSlope: -1.7536457 + outSlope: -1.7536457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.32136488 + inSlope: -2.460913 + outSlope: -2.460913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.23792453 + inSlope: -1.7414167 + outSlope: -1.7414167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.2052704 + inSlope: 0.16465822 + outSlope: 0.16465822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.24890181 + inSlope: 2.2932708 + outSlope: 2.2932708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.35815504 + inSlope: 3.6515598 + outSlope: 3.6515598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.49233913 + inSlope: 3.579985 + outSlope: 3.579985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.5968207 + inSlope: 2.2113566 + outSlope: 2.2113566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.63976276 + inSlope: 0.439026 + outSlope: 0.439026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.62608904 + inSlope: -0.2051053 + outSlope: -0.2051053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23230138 + inSlope: -0.82592005 + outSlope: -0.82592005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.27898243 + inSlope: -0.43443868 + outSlope: -0.43443868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.27924404 + inSlope: 0.36550903 + outSlope: 0.36550903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.25671932 + inSlope: -0.061807044 + outSlope: -0.061807044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.31045762 + inSlope: -0.37787902 + outSlope: -0.37787902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.31901947 + inSlope: -0.05915521 + outSlope: -0.05915521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.31286067 + inSlope: 0.45578587 + outSlope: 0.45578587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.1901298 + inSlope: 0.9484534 + outSlope: 0.9484534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.13275364 + inSlope: 0.76410836 + outSlope: 0.76410836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0943835 + inSlope: 0.31361043 + outSlope: 0.31361043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.08849201 + inSlope: 0.08028838 + outSlope: 0.08028838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.09731439 + inSlope: -0.4302643 + outSlope: -0.4302643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.11771521 + inSlope: -0.74865294 + outSlope: -0.74865294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.14722459 + inSlope: -0.8890097 + outSlope: -0.8890097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.20406856 + inSlope: -0.8297829 + outSlope: -0.8297829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.23230143 + inSlope: -0.42349198 + outSlope: -0.42349198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.38746473 + inSlope: 0.9075227 + outSlope: 0.9075227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.49458942 + inSlope: 0.26649535 + outSlope: 0.26649535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.49038935 + inSlope: -0.48360324 + outSlope: -0.48360324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.41524377 + inSlope: -0.6477128 + outSlope: -0.6477128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.3719534 + inSlope: -0.75815874 + outSlope: -0.75815874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.3224933 + inSlope: -0.5708235 + outSlope: -0.5708235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.27634266 + inSlope: -0.52691287 + outSlope: -0.52691287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.22895552 + inSlope: -0.31564778 + outSlope: -0.31564778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.21363826 + inSlope: -0.18029991 + outSlope: -0.18029991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.21987866 + inSlope: 0.51000136 + outSlope: 0.51000136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.30314252 + inSlope: 0.90026474 + outSlope: 0.90026474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.3605189 + inSlope: 0.82483757 + outSlope: 0.82483757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.38746306 + inSlope: 0.40416133 + outSlope: 0.40416133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.034410894 + inSlope: 0.5540836 + outSlope: 0.5540836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.052880347 + inSlope: 0.4989434 + outSlope: 0.4989434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.094289295 + inSlope: 0.42978388 + outSlope: 0.42978388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.13592112 + inSlope: 0.33840495 + outSlope: 0.33840495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.14139017 + inSlope: -0.5037236 + outSlope: -0.5037236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.11638421 + inSlope: -0.96594906 + outSlope: -0.96594906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.07699354 + inSlope: -1.2924869 + outSlope: -1.2924869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.030218385 + inSlope: -1.4749695 + outSlope: -1.4749695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.021337753 + inSlope: -1.6418847 + outSlope: -1.6418847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.07924054 + inSlope: -1.843723 + outSlope: -1.843723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.14425263 + inSlope: -1.9926665 + outSlope: -1.9926665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.27034745 + inSlope: -1.4867115 + outSlope: -1.4867115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.31351066 + inSlope: 0.7570113 + outSlope: 0.7570113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.24155523 + inSlope: 1.1176593 + outSlope: 1.1176593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.20557858 + inSlope: 1.0002896 + outSlope: 1.0002896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.14187679 + inSlope: 1.1024016 + outSlope: 1.1024016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.056436386 + inSlope: 1.3517299 + outSlope: 1.3517299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.011260588 + inSlope: 1.3627328 + outSlope: 1.3627328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.03441254 + inSlope: 0.68509513 + outSlope: 0.68509513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.051012255 + inSlope: 1.2334918 + outSlope: 1.2334918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1327907 + inSlope: 1.1974913 + outSlope: 1.1974913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.23104826 + inSlope: 0.61600345 + outSlope: 0.61600345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.26000383 + inSlope: 0.07586629 + outSlope: 0.07586629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.251185 + inSlope: -0.49534953 + outSlope: -0.49534953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.08940088 + inSlope: -1.8170004 + outSlope: -1.8170004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.024737716 + inSlope: -1.977242 + outSlope: -1.977242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.042415243 + inSlope: -1.9993389 + outSlope: -1.9993389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.17414264 + inSlope: -1.9471834 + outSlope: -1.9471834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3665622 + inSlope: -0.41612807 + outSlope: -0.41612807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.25425112 + inSlope: 1.8115522 + outSlope: 1.8115522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.121361375 + inSlope: 1.9694047 + outSlope: 1.9694047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0001713243 + inSlope: 1.6286048 + outSlope: 1.6286048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.05101346 + inSlope: 0.76263 + outSlope: 0.76263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11716244 + inSlope: 0.8496288 + outSlope: 0.8496288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.06613602 + inSlope: 0.56496835 + outSlope: 0.56496835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.05117692 + inSlope: 0.37928686 + outSlope: 0.37928686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.040850226 + inSlope: 0.33758563 + outSlope: 0.33758563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.028671212 + inSlope: 0.40340108 + outSlope: 0.40340108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.013956815 + inSlope: 0.41251415 + outSlope: 0.41251415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0011702653 + inSlope: 0.26634076 + outSlope: 0.26634076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0037992354 + inSlope: 0.084367454 + outSlope: 0.084367454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0044542314 + inSlope: -0.0640867 + outSlope: -0.0640867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00047321123 + inSlope: -0.40807435 + outSlope: -0.40807435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.022750724 + inSlope: -1.0068191 + outSlope: -1.0068191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.06759452 + inSlope: -1.5680401 + outSlope: -1.5680401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.12728676 + inSlope: -1.7860702 + outSlope: -1.7860702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.23993932 + inSlope: -1.5292978 + outSlope: -1.5292978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.35688674 + inSlope: -0.57554555 + outSlope: -0.57554555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.37053746 + inSlope: -0.07975638 + outSlope: -0.07975638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3709104 + inSlope: 0.36544314 + outSlope: 0.36544314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.27418712 + inSlope: 0.91359055 + outSlope: 0.91359055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.22873361 + inSlope: 0.773334 + outSlope: 0.773334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.117162205 + inSlope: 0.27004173 + outSlope: 0.27004173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013645987 + inSlope: -0.20549092 + outSlope: -0.20549092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.020495685 + inSlope: -0.39453304 + outSlope: -0.39453304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.03994819 + inSlope: -0.7004111 + outSlope: -0.7004111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.06718976 + inSlope: -0.772688 + outSlope: -0.772688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09146073 + inSlope: -0.5706714 + outSlope: -0.5706714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.109180525 + inSlope: -0.031836234 + outSlope: -0.031836234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.107356936 + inSlope: 0.08968805 + outSlope: 0.08968805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.09334213 + inSlope: 0.4374024 + outSlope: 0.4374024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.045900453 + inSlope: 0.9274552 + outSlope: 0.9274552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.012210794 + inSlope: 0.991022 + outSlope: 0.991022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.020167707 + inSlope: 0.90503573 + outSlope: 0.90503573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.07167085 + inSlope: 0.61731523 + outSlope: 0.61731523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.09751868 + inSlope: 0.012611203 + outSlope: 0.012611203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.09012002 + inSlope: -0.4416926 + outSlope: -0.4416926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0680725 + inSlope: -0.75236404 + outSlope: -0.75236404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.039962426 + inSlope: -0.6813748 + outSlope: -0.6813748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.022647526 + inSlope: -0.27011913 + outSlope: -0.27011913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.02195447 + inSlope: 0.0642266 + outSlope: 0.0642266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.026929304 + inSlope: 0.07803655 + outSlope: 0.07803655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.02715691 + inSlope: -0.0032573566 + outSlope: -0.0032573566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.026712148 + inSlope: 0.0759096 + outSlope: 0.0759096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.032217555 + inSlope: 0.16872317 + outSlope: 0.16872317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.037960358 + inSlope: -0.008449577 + outSlope: -0.008449577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.03165424 + inSlope: -0.37278214 + outSlope: -0.37278214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.013108227 + inSlope: -0.55276614 + outSlope: -0.55276614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0051968014 + inSlope: -0.40131968 + outSlope: -0.40131968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.013646421 + inSlope: -0.12674396 + outSlope: -0.12674396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.46437284 + inSlope: 0.46721038 + outSlope: 0.46721038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.44879916 + inSlope: 0.22701456 + outSlope: 0.22701456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.45877668 + inSlope: 0.22843795 + outSlope: 0.22843795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.42801565 + inSlope: 0.39043522 + outSlope: 0.39043522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.40660357 + inSlope: 0.36604244 + outSlope: 0.36604244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.38685364 + inSlope: 0.07351131 + outSlope: 0.07351131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.38623106 + inSlope: 0.16922234 + outSlope: 0.16922234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.37718603 + inSlope: 0.21587315 + outSlope: 0.21587315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.3385466 + inSlope: 1.129733 + outSlope: 1.129733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.23888002 + inSlope: 1.3874546 + outSlope: 1.3874546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.1631892 + inSlope: -0.11300983 + outSlope: -0.11300983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.20856929 + inSlope: -0.93231606 + outSlope: -0.93231606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.24045372 + inSlope: -0.928748 + outSlope: -0.928748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.30870354 + inSlope: -1.3487759 + outSlope: -1.3487759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.42104292 + inSlope: -1.7266457 + outSlope: -1.7266457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.49815717 + inSlope: 0.16709462 + outSlope: 0.16709462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.46437415 + inSlope: 0.50674397 + outSlope: 0.50674397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3385047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -1.3385047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2338543 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.2338543 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.62292284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.62292284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5763955 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.5763955 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.904458 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.904458 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060639 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8060639 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3384516 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -1.3384516 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45863408 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.45863408 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.529714 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.529714 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5764365 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.5764365 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90429544 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.90429544 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12709314 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.12709314 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4657366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.4657366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011404368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.011404368 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.0333334 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Backward.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Backward.anim.meta new file mode 100644 index 0000000..5eb0f05 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Backward.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 9e5bbc0b38e172547b9df5b65285bb88 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Backward.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Forward.anim b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Forward.anim new file mode 100644 index 0000000..7ae915f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Forward.anim @@ -0,0 +1,18489 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Walk_Forward + serializedVersion: 6 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 0 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.001398308 + inSlope: -0.056529682 + outSlope: -0.056529682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0032826308 + inSlope: -0.047236685 + outSlope: -0.047236685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0045474204 + inSlope: -0.055902064 + outSlope: -0.055902064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.010240033 + inSlope: -0.10233764 + outSlope: -0.10233764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0180865 + inSlope: -0.14266023 + outSlope: -0.14266023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.023342628 + inSlope: -0.18558283 + outSlope: -0.18558283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.030458689 + inSlope: -0.20674333 + outSlope: -0.20674333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.043127704 + inSlope: -0.15847549 + outSlope: -0.15847549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.04909831 + inSlope: 0.0032278337 + outSlope: 0.0032278337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.044285633 + inSlope: 0.1052015 + outSlope: 0.1052015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.031729843 + inSlope: 0.12121181 + outSlope: 0.12121181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.020408044 + inSlope: 0.13502997 + outSlope: 0.13502997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.015461784 + inSlope: 0.15928158 + outSlope: 0.15928158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.009789272 + inSlope: 0.16904727 + outSlope: 0.16904727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0041919667 + inSlope: 0.18249482 + outSlope: 0.18249482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0023770593 + inSlope: 0.15835801 + outSlope: 0.15835801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0063652354 + inSlope: 0.11803803 + outSlope: 0.11803803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.010246261 + inSlope: 0.08758508 + outSlope: 0.08758508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.012204242 + inSlope: 0.009145163 + outSlope: 0.009145163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0108559355 + inSlope: -0.07682748 + outSlope: -0.07682748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0070824125 + inSlope: -0.12473892 + outSlope: -0.12473892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0025400156 + inSlope: -0.1272096 + outSlope: -0.1272096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0013982335 + inSlope: -0.059073586 + outSlope: -0.059073586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.96174973 + inSlope: 0.15550731 + outSlope: 0.15550731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.92418194 + inSlope: -0.31576478 + outSlope: -0.31576478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.93660516 + inSlope: 0.32811302 + outSlope: 0.32811302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9448075 + inSlope: -0.32102823 + outSlope: -0.32102823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.9174314 + inSlope: 0.2341452 + outSlope: 0.2341452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.9578294 + inSlope: 0.18611346 + outSlope: 0.18611346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.058738444 + inSlope: 1.4207433 + outSlope: 1.4207433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.20327689 + inSlope: 1.5235345 + outSlope: 1.5235345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.3543624 + inSlope: 1.4415346 + outSlope: 1.4415346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.50439215 + inSlope: 1.653371 + outSlope: 1.653371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.7699763 + inSlope: 1.4766748 + outSlope: 1.4766748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 1.1273016 + inSlope: 1.4634455 + outSlope: 1.4634455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.593197 + inSlope: 1.3600202 + outSlope: 1.3600202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 1.6376597 + inSlope: 0.6669385 + outSlope: 0.6669385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08795968 + inSlope: 0.015470981 + outSlope: 0.015470981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.08953607 + inSlope: -0.026237147 + outSlope: -0.026237147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.08597782 + inSlope: -0.018751327 + outSlope: -0.018751327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.08637361 + inSlope: -0.06361418 + outSlope: -0.06361418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.08173688 + inSlope: -0.23784602 + outSlope: -0.23784602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.07051721 + inSlope: -0.31545395 + outSlope: -0.31545395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.060706615 + inSlope: -0.21983656 + outSlope: -0.21983656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.053806752 + inSlope: -0.02535247 + outSlope: -0.02535247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.05623716 + inSlope: -0.019121269 + outSlope: -0.019121269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.053870186 + inSlope: 0.03302199 + outSlope: 0.03302199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.06602149 + inSlope: 0.113890156 + outSlope: 0.113890156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.069025815 + inSlope: 0.10031104 + outSlope: 0.10031104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.07493928 + inSlope: -0.0031271689 + outSlope: -0.0031271689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.06403683 + inSlope: 0.0642334 + outSlope: 0.0642334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.07594371 + inSlope: 0.17436391 + outSlope: 0.17436391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.084427595 + inSlope: 0.10848811 + outSlope: 0.10848811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0879599 + inSlope: 0.052984443 + outSlope: 0.052984443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.026714258 + inSlope: -0.28707814 + outSlope: -0.28707814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.017144985 + inSlope: -0.27646792 + outSlope: -0.27646792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.008283063 + inSlope: -0.21676008 + outSlope: -0.21676008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.002694312 + inSlope: -0.13501203 + outSlope: -0.13501203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0007177396 + inSlope: -0.13089943 + outSlope: -0.13089943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.006032316 + inSlope: -0.19031897 + outSlope: -0.19031897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.013405673 + inSlope: -0.24487945 + outSlope: -0.24487945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.022357615 + inSlope: -0.22881654 + outSlope: -0.22881654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.028660107 + inSlope: -0.114546485 + outSlope: -0.114546485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.028330496 + inSlope: 0.080910206 + outSlope: 0.080910206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.024600033 + inSlope: 0.19816592 + outSlope: 0.19816592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.015119426 + inSlope: 0.3547292 + outSlope: 0.3547292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.00095141074 + inSlope: 0.4214311 + outSlope: 0.4214311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.01297598 + inSlope: 0.3801363 + outSlope: 0.3801363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.034805253 + inSlope: 0.31323618 + outSlope: 0.31323618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.054661803 + inSlope: 0.23700832 + outSlope: 0.23700832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.06620912 + inSlope: 0.1430301 + outSlope: 0.1430301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.070609316 + inSlope: 0.10352219 + outSlope: 0.10352219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0731106 + inSlope: 0.08989512 + outSlope: 0.08989512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.08303252 + inSlope: 0.015949918 + outSlope: 0.015949918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.08165813 + inSlope: -0.15409592 + outSlope: -0.15409592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.04462169 + inSlope: -0.38363487 + outSlope: -0.38363487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.026714237 + inSlope: -0.098493166 + outSlope: -0.098493166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0021254942 + inSlope: 0.066778496 + outSlope: 0.066778496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00010045571 + inSlope: 0.0475299 + outSlope: 0.0475299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0010431658 + inSlope: 0.038305726 + outSlope: 0.038305726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.002654171 + inSlope: 0.07379137 + outSlope: 0.07379137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0059625907 + inSlope: 0.0974793 + outSlope: 0.0974793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0091527905 + inSlope: 0.08193688 + outSlope: 0.08193688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.01142505 + inSlope: 0.07414855 + outSlope: 0.07414855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.014096028 + inSlope: 0.07887581 + outSlope: 0.07887581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.016683437 + inSlope: 0.056368176 + outSlope: 0.056368176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.017853906 + inSlope: 0.038662482 + outSlope: 0.038662482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.019260935 + inSlope: 0.001827227 + outSlope: 0.001827227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.017975722 + inSlope: -0.09426204 + outSlope: -0.09426204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.012976795 + inSlope: -0.1502797 + outSlope: -0.1502797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.007957071 + inSlope: -0.11544137 + outSlope: -0.11544137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.005280705 + inSlope: -0.05971186 + outSlope: -0.05971186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0039762817 + inSlope: -0.051613793 + outSlope: -0.051613793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0018397849 + inSlope: -0.06949569 + outSlope: -0.06949569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0006567687 + inSlope: -0.06712482 + outSlope: -0.06712482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0026352033 + inSlope: -0.05832444 + outSlope: -0.05832444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0045450646 + inSlope: -0.055095844 + outSlope: -0.055095844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0063082594 + inSlope: -0.06639995 + outSlope: -0.06639995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.008971728 + inSlope: -0.06615947 + outSlope: -0.06615947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.011814561 + inSlope: -0.0333966 + outSlope: -0.0333966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0129453335 + inSlope: -0.018229453 + outSlope: -0.018229453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0130298585 + inSlope: 0.044003107 + outSlope: 0.044003107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.01001179 + inSlope: 0.11653502 + outSlope: 0.11653502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0052608587 + inSlope: 0.11570312 + outSlope: 0.11570312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0022982508 + inSlope: 0.05214706 + outSlope: 0.05214706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.0017843861 + inSlope: 0.0018777158 + outSlope: 0.0018777158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0021730699 + inSlope: -0.005117229 + outSlope: -0.005117229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0021255342 + inSlope: 0.00071303267 + outSlope: 0.00071303267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9957636 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.9957636 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.076127894 + inSlope: -0.17875893 + outSlope: -0.17875893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.10192042 + inSlope: -0.5003531 + outSlope: -0.5003531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.1226563 + inSlope: -0.4495129 + outSlope: -0.4495129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.13188794 + inSlope: 0.0198448 + outSlope: 0.0198448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.12133331 + inSlope: 0.340959 + outSlope: 0.340959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.10915734 + inSlope: 0.25708786 + outSlope: 0.25708786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.10419412 + inSlope: 0.11920039 + outSlope: 0.11920039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.10121065 + inSlope: 0.031359833 + outSlope: 0.031359833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.102103464 + inSlope: 0.008884148 + outSlope: 0.008884148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.10061837 + inSlope: 0.094832905 + outSlope: 0.094832905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.09226791 + inSlope: 0.06252509 + outSlope: 0.06252509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.09163425 + inSlope: 0.044109225 + outSlope: 0.044109225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.08311932 + inSlope: 0.20173301 + outSlope: 0.20173301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.075223446 + inSlope: 0.23547338 + outSlope: 0.23547338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.06742109 + inSlope: 0.3076789 + outSlope: 0.3076789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.054711524 + inSlope: 0.33778763 + outSlope: 0.33778763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.044901922 + inSlope: 0.24150601 + outSlope: 0.24150601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.03861112 + inSlope: 0.18336084 + outSlope: 0.18336084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.032677867 + inSlope: 0.1952202 + outSlope: 0.1952202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.02559643 + inSlope: 0.27383554 + outSlope: 0.27383554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.014422169 + inSlope: 0.16962068 + outSlope: 0.16962068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.014288397 + inSlope: -0.21102104 + outSlope: -0.21102104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.028490225 + inSlope: -0.48568022 + outSlope: -0.48568022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.04666708 + inSlope: -0.43647116 + outSlope: -0.43647116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.065689236 + inSlope: -0.278086 + outSlope: -0.278086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.076127395 + inSlope: -0.15657197 + outSlope: -0.15657197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.85563356 + inSlope: -0.8929681 + outSlope: -0.8929681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.8946211 + inSlope: 0.3229182 + outSlope: 0.3229182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.7762285 + inSlope: 0.62907195 + outSlope: 0.62907195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.8475175 + inSlope: -0.8968235 + outSlope: -0.8968235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.8801266 + inSlope: -0.24864423 + outSlope: -0.24864423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.9763482 + inSlope: 0.009824142 + outSlope: 0.009824142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.949181 + inSlope: 0.5647288 + outSlope: 0.5647288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.9248868 + inSlope: 1.2988532 + outSlope: 1.2988532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.74853957 + inSlope: 0.64763695 + outSlope: 0.64763695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.8116924 + inSlope: -1.2627105 + outSlope: -1.2627105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.85563415 + inSlope: -0.6591243 + outSlope: -0.6591243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.022618 + inSlope: 3.912584 + outSlope: 3.912584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.10780148 + inSlope: 4.0545177 + outSlope: 4.0545177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.2476832 + inSlope: 3.8897557 + outSlope: 3.8897557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.51142937 + inSlope: 0.897987 + outSlope: 0.897987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.3614068 + inSlope: -1.9551888 + outSlope: -1.9551888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.23923333 + inSlope: -1.6012316 + outSlope: -1.6012316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.10017896 + inSlope: -1.3840957 + outSlope: -1.3840957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.004617516 + inSlope: -1.3594759 + outSlope: -1.3594759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.038464934 + inSlope: -1.2460834 + outSlope: -1.2460834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.07845471 + inSlope: -1.2181942 + outSlope: -1.2181942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.11967788 + inSlope: -1.2649074 + outSlope: -1.2649074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.16278186 + inSlope: -1.205045 + outSlope: -1.205045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2000142 + inSlope: -1.2504714 + outSlope: -1.2504714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2461466 + inSlope: -1.571352 + outSlope: -1.571352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.36565685 + inSlope: -1.5730247 + outSlope: -1.5730247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.40963933 + inSlope: -0.71714413 + outSlope: -0.71714413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.41346642 + inSlope: 0.5428319 + outSlope: 0.5428319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.31056222 + inSlope: 2.1028929 + outSlope: 2.1028929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.13842554 + inSlope: 3.159574 + outSlope: 3.159574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.02261926 + inSlope: 1.7370896 + outSlope: 1.7370896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3910795 + inSlope: 2.2906358 + outSlope: 2.2906358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6317854 + inSlope: 0.91976535 + outSlope: 0.91976535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.652838 + inSlope: 0.4502651 + outSlope: 0.4502651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6385061 + inSlope: -1.1744661 + outSlope: -1.1744661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5348066 + inSlope: -0.80240524 + outSlope: -0.80240524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.53001165 + inSlope: -0.10851325 + outSlope: -0.10851325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5163677 + inSlope: -0.17724672 + outSlope: -0.17724672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.49717006 + inSlope: -0.14167875 + outSlope: -0.14167875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.48982143 + inSlope: -0.20672825 + outSlope: -0.20672825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.44139153 + inSlope: -1.8099782 + outSlope: -1.8099782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.25650907 + inSlope: -2.9951556 + outSlope: -2.9951556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.15864027 + inSlope: -2.0008874 + outSlope: -2.0008874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.12311652 + inSlope: 0.022435248 + outSlope: 0.022435248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.16013601 + inSlope: 1.5872743 + outSlope: 1.5872743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.31080377 + inSlope: 2.4321728 + outSlope: 2.4321728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.39107975 + inSlope: 1.2041366 + outSlope: 1.2041366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.49718344 + inSlope: 1.9953659 + outSlope: 1.9953659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.36113554 + inSlope: 1.9740126 + outSlope: 1.9740126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.25155228 + inSlope: 1.2418262 + outSlope: 1.2418262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.21628198 + inSlope: 0.29779214 + outSlope: 0.29779214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.23169948 + inSlope: -1.6392545 + outSlope: -1.6392545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.3255656 + inSlope: -2.9704177 + outSlope: -2.9704177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.42972732 + inSlope: -2.4947965 + outSlope: -2.4947965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.49188536 + inSlope: -0.9517444 + outSlope: -0.9517444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.49317694 + inSlope: 0.0061784685 + outSlope: 0.0061784685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.45932752 + inSlope: 0.18181577 + outSlope: 0.18181577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.43629146 + inSlope: 0.020627493 + outSlope: 0.020627493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.43726736 + inSlope: -0.19025597 + outSlope: -0.19025597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.48057133 + inSlope: -1.2372465 + outSlope: -1.2372465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.53209853 + inSlope: -1.1834395 + outSlope: -1.1834395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.5594673 + inSlope: -0.34676626 + outSlope: -0.34676626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.5495256 + inSlope: -0.060353972 + outSlope: -0.060353972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.55923986 + inSlope: -0.06557803 + outSlope: -0.06557803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.53660417 + inSlope: 0.85071176 + outSlope: 0.85071176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.4971833 + inSlope: 0.5913115 + outSlope: 0.5913115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.41050348 + inSlope: 2.2160509 + outSlope: 2.2160509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5477519 + inSlope: 1.6155748 + outSlope: 1.6155748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.59207684 + inSlope: 1.3247268 + outSlope: 1.3247268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.63606703 + inSlope: 1.1518748 + outSlope: 1.1518748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.6688685 + inSlope: 0.27128053 + outSlope: 0.27128053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6104182 + inSlope: -1.2741702 + outSlope: -1.2741702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5692077 + inSlope: -1.3040061 + outSlope: -1.3040061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.52348447 + inSlope: -0.6804738 + outSlope: -0.6804738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.5238428 + inSlope: 0.014869275 + outSlope: 0.014869275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.55574214 + inSlope: 0.11988852 + outSlope: 0.11988852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5541092 + inSlope: -0.25668848 + outSlope: -0.25668848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.42365935 + inSlope: -2.8489578 + outSlope: -2.8489578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.30893087 + inSlope: -3.5818174 + outSlope: -3.5818174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.18487154 + inSlope: -2.145964 + outSlope: -2.145964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.16586652 + inSlope: 0.41361317 + outSlope: 0.41361317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.21244581 + inSlope: 1.412855 + outSlope: 1.412855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.26005685 + inSlope: 1.6961145 + outSlope: 1.6961145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.32552 + inSlope: 2.2566934 + outSlope: 2.2566934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.41050324 + inSlope: 1.2747451 + outSlope: 1.2747451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6567744 + inSlope: 1.6679655 + outSlope: 1.6679655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.4583734 + inSlope: 2.5173564 + outSlope: 2.5173564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.36467496 + inSlope: 2.6425157 + outSlope: 2.6425157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.2822057 + inSlope: 1.2164476 + outSlope: 1.2164476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.28357846 + inSlope: -0.82498 + outSlope: -0.82498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.33720437 + inSlope: -1.5724044 + outSlope: -1.5724044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.3884054 + inSlope: -1.6164253 + outSlope: -1.6164253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.44496605 + inSlope: -0.9064504 + outSlope: -0.9064504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.44883543 + inSlope: -0.117824085 + outSlope: -0.117824085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.49483526 + inSlope: -0.089682765 + outSlope: -0.089682765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.5116984 + inSlope: -0.30395073 + outSlope: -0.30395073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.5262776 + inSlope: -0.88060105 + outSlope: -0.88060105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.6395256 + inSlope: -2.320333 + outSlope: -2.320333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.79523015 + inSlope: -1.2666681 + outSlope: -1.2666681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.7851587 + inSlope: 0.7870076 + outSlope: 0.7870076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.71378857 + inSlope: 1.504452 + outSlope: 1.504452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.6567745 + inSlope: 0.85520846 + outSlope: 0.85520846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10101423 + inSlope: -0.008088872 + outSlope: -0.008088872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.1007446 + inSlope: -0.0012746083 + outSlope: -0.0012746083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.097617574 + inSlope: -0.16196218 + outSlope: -0.16196218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.08296004 + inSlope: -0.18998733 + outSlope: -0.18998733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.07746595 + inSlope: -0.17645502 + outSlope: -0.17645502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.06553435 + inSlope: -0.11820519 + outSlope: -0.11820519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.063316025 + inSlope: -0.051660635 + outSlope: -0.051660635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.06588271 + inSlope: 0.24553165 + outSlope: 0.24553165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.09238473 + inSlope: 0.30640027 + outSlope: 0.30640027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0948782 + inSlope: -0.0766754 + outSlope: -0.0766754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.09099696 + inSlope: -0.14106315 + outSlope: -0.14106315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08362393 + inSlope: -0.30117548 + outSlope: -0.30117548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.07091859 + inSlope: -0.23391645 + outSlope: -0.23391645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06802949 + inSlope: -0.046971776 + outSlope: -0.046971776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.06778714 + inSlope: -0.0018006548 + outSlope: -0.0018006548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.06790945 + inSlope: 0.037506144 + outSlope: 0.037506144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.07028755 + inSlope: 0.041647136 + outSlope: 0.041647136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.07068592 + inSlope: 0.0034753531 + outSlope: 0.0034753531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.07051924 + inSlope: 0.07277375 + outSlope: 0.07277375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.07553751 + inSlope: 0.21932083 + outSlope: 0.21932083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.09463828 + inSlope: 0.2381149 + outSlope: 0.2381149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.10101496 + inSlope: 0.09564989 + outSlope: 0.09564989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.95154655 + inSlope: -0.4459673 + outSlope: -0.4459673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.9635438 + inSlope: 0.21434425 + outSlope: 0.21434425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.9009437 + inSlope: 1.5335335 + outSlope: 1.5335335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.7664206 + inSlope: 1.5148864 + outSlope: 1.5148864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.81316906 + inSlope: -0.7406851 + outSlope: -0.7406851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.8303884 + inSlope: 0.26259726 + outSlope: 0.26259726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.8300526 + inSlope: -0.33755592 + outSlope: -0.33755592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.8748481 + inSlope: -0.3055483 + outSlope: -0.3055483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.9334295 + inSlope: -0.5544399 + outSlope: -0.5544399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.94710827 + inSlope: -0.26902354 + outSlope: -0.26902354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10048228 + inSlope: -1.209877 + outSlope: -1.209877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06015304 + inSlope: -1.2272093 + outSlope: -1.2272093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.01866831 + inSlope: -1.3540757 + outSlope: -1.3540757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.030118685 + inSlope: -1.548695 + outSlope: -1.548695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08457802 + inSlope: -1.6158061 + outSlope: -1.6158061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.13783908 + inSlope: -1.5045085 + outSlope: -1.5045085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1848786 + inSlope: -1.566391 + outSlope: -1.566391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.24226516 + inSlope: -1.8847779 + outSlope: -1.8847779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.40588787 + inSlope: -0.3735423 + outSlope: -0.3735423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.28828558 + inSlope: 2.0878458 + outSlope: 2.0878458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.21315758 + inSlope: 2.3892176 + outSlope: 2.3892176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1290045 + inSlope: 2.7896967 + outSlope: 2.7896967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0271778 + inSlope: 3.3257515 + outSlope: 3.3257515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.092712454 + inSlope: 3.6712074 + outSlope: 3.6712074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.21756934 + inSlope: 3.7171755 + outSlope: 3.7171755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.34052414 + inSlope: 3.1972322 + outSlope: 3.1972322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.43071818 + inSlope: 2.176805 + outSlope: 2.176805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.48564443 + inSlope: 0.7062056 + outSlope: 0.7062056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.4777986 + inSlope: -0.67725027 + outSlope: -0.67725027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4404944 + inSlope: -1.4569907 + outSlope: -1.4569907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.3806658 + inSlope: -1.7395985 + outSlope: -1.7395985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.32452115 + inSlope: -1.6500481 + outSlope: -1.6500481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.2706626 + inSlope: -1.4038942 + outSlope: -1.4038942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.19816412 + inSlope: -0.9998324 + outSlope: -0.9998324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.13141747 + inSlope: -0.9568621 + outSlope: -0.9568621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.10048185 + inSlope: -0.464033 + outSlope: -0.464033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5398045 + inSlope: -0.19228934 + outSlope: -0.19228934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.5549761 + inSlope: 0.06454737 + outSlope: 0.06454737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.548364 + inSlope: 0.16018684 + outSlope: 0.16018684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.3759359 + inSlope: 3.1467562 + outSlope: 3.1467562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.24980319 + inSlope: 3.116247 + outSlope: 3.116247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.16818613 + inSlope: 0.7509115 + outSlope: 0.7509115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.19974245 + inSlope: -1.1893921 + outSlope: -1.1893921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.24747896 + inSlope: -1.1602904 + outSlope: -1.1602904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.27709514 + inSlope: -1.1416771 + outSlope: -1.1416771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.32359073 + inSlope: -1.7182117 + outSlope: -1.7182117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.46260828 + inSlope: -1.8238541 + outSlope: -1.8238541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.5568687 + inSlope: -1.148849 + outSlope: -1.148849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.5898228 + inSlope: -0.46595028 + outSlope: -0.46595028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.587932 + inSlope: 0.08170101 + outSlope: 0.08170101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.5724411 + inSlope: 0.80430794 + outSlope: 0.80430794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.5307555 + inSlope: 0.955822 + outSlope: 0.955822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.52760947 + inSlope: -0.25958532 + outSlope: -0.25958532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.5385654 + inSlope: -0.07606743 + outSlope: -0.07606743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.44357273 + inSlope: 0.069601536 + outSlope: 0.069601536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.4571514 + inSlope: 0.32217216 + outSlope: 0.32217216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.47947168 + inSlope: 0.4115916 + outSlope: 0.4115916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5345079 + inSlope: 1.5116112 + outSlope: 1.5116112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.67994034 + inSlope: 2.5553083 + outSlope: 2.5553083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7676287 + inSlope: 1.9557418 + outSlope: 1.9557418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.8103231 + inSlope: 0.5048384 + outSlope: 0.5048384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.77456516 + inSlope: -0.8247829 + outSlope: -0.8247829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6456344 + inSlope: -1.8492582 + outSlope: -1.8492582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.42300266 + inSlope: -2.3320932 + outSlope: -2.3320932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3470664 + inSlope: -1.7522283 + outSlope: -1.7522283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.30618748 + inSlope: -0.48981813 + outSlope: -0.48981813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.38951176 + inSlope: 0.95771027 + outSlope: 0.95771027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.431978 + inSlope: 0.14445215 + outSlope: 0.14445215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.4426643 + inSlope: 0.052693564 + outSlope: 0.052693564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.55105346 + inSlope: 0.021615027 + outSlope: 0.021615027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.51822317 + inSlope: 0.26709968 + outSlope: 0.26709968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.47862968 + inSlope: 1.2805555 + outSlope: 1.2805555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.3402429 + inSlope: 2.923911 + outSlope: 2.923911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.22723156 + inSlope: 3.2925048 + outSlope: 3.2925048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.12074258 + inSlope: 2.197144 + outSlope: 2.197144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.08075526 + inSlope: 0.0646587 + outSlope: 0.0646587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.11643197 + inSlope: -1.7796001 + outSlope: -1.7796001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.19939527 + inSlope: -2.7354288 + outSlope: -2.7354288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.39694446 + inSlope: -2.8055258 + outSlope: -2.8055258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.485829 + inSlope: -2.3065486 + outSlope: -2.3065486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.6044057 + inSlope: -1.5127605 + outSlope: -1.5127605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.6515651 + inSlope: -1.2310126 + outSlope: -1.2310126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.6864732 + inSlope: -0.23551157 + outSlope: -0.23551157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.6231671 + inSlope: 1.1355283 + outSlope: 1.1355283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.5634492 + inSlope: 0.09325316 + outSlope: 0.09325316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.55813694 + inSlope: 0.13224375 + outSlope: 0.13224375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.55190957 + inSlope: 0.05037843 + outSlope: 0.05037843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4562837 + inSlope: -0.273318 + outSlope: -0.273318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.44470942 + inSlope: 0.05954057 + outSlope: 0.05954057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.44816193 + inSlope: 0.059126593 + outSlope: 0.059126593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.47075686 + inSlope: 0.77915 + outSlope: 0.77915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5297058 + inSlope: 0.6135169 + outSlope: 0.6135169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5581443 + inSlope: 0.3317212 + outSlope: 0.3317212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.56151295 + inSlope: -0.7449716 + outSlope: -0.7449716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.46558976 + inSlope: -1.4486444 + outSlope: -1.4486444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.38165462 + inSlope: -1.4680724 + outSlope: -1.4680724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.29889774 + inSlope: 0.16428533 + outSlope: 0.16428533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.3382397 + inSlope: 1.5623109 + outSlope: 1.5623109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.46543682 + inSlope: 1.3905748 + outSlope: 1.3905748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.47805956 + inSlope: -0.32555848 + outSlope: -0.32555848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.4576524 + inSlope: -0.08198754 + outSlope: -0.08198754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightFootQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.30938143 + inSlope: 0.27580887 + outSlope: 0.27580887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.28726617 + inSlope: 0.45055073 + outSlope: 0.45055073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.24673654 + inSlope: 0.14345884 + outSlope: 0.14345884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.24779718 + inSlope: -0.16567783 + outSlope: -0.16567783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.25656164 + inSlope: -0.4081234 + outSlope: -0.4081234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.29348353 + inSlope: -0.55768853 + outSlope: -0.55768853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.33878702 + inSlope: -0.1938142 + outSlope: -0.1938142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.3195607 + inSlope: 0.39332005 + outSlope: 0.39332005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2843443 + inSlope: -0.17800698 + outSlope: -0.17800698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.31002647 + inSlope: -0.22378656 + outSlope: -0.22378656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.32192034 + inSlope: -0.17618582 + outSlope: -0.17618582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.32654998 + inSlope: 0.14407142 + outSlope: 0.14407142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.309381 + inSlope: 0.13989069 + outSlope: 0.13989069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.103465185 + inSlope: -0.2065274 + outSlope: -0.2065274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.11619689 + inSlope: -0.2021793 + outSlope: -0.2021793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.12382805 + inSlope: -0.18402311 + outSlope: -0.18402311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.12953009 + inSlope: 0.07590652 + outSlope: 0.07590652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.12671842 + inSlope: 0.044301156 + outSlope: 0.044301156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.12450376 + inSlope: 0.11155267 + outSlope: 0.11155267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.09341782 + inSlope: 0.56077087 + outSlope: 0.56077087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.045508716 + inSlope: 0.8805959 + outSlope: 0.8805959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.013092851 + inSlope: 1.022423 + outSlope: 1.022423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.022652809 + inSlope: 1.071928 + outSlope: 1.071928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08993237 + inSlope: 0.8467238 + outSlope: 0.8467238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.12711886 + inSlope: 0.15508956 + outSlope: 0.15508956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12515655 + inSlope: -0.2923803 + outSlope: -0.2923803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.10762682 + inSlope: -0.6696422 + outSlope: -0.6696422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.04440135 + inSlope: -1.1633626 + outSlope: -1.1633626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0029562488 + inSlope: -1.1891733 + outSlope: -1.1891733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.03487686 + inSlope: -1.0028975 + outSlope: -1.0028975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.063903585 + inSlope: -0.7904122 + outSlope: -0.7904122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.08757096 + inSlope: -0.59342694 + outSlope: -0.59342694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.1034654 + inSlope: -0.23841602 + outSlope: -0.23841602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04801509 + inSlope: -1.3237113 + outSlope: -1.3237113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0038913777 + inSlope: -1.2925667 + outSlope: -1.2925667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.038156025 + inSlope: -1.2558734 + outSlope: -1.2558734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.14292702 + inSlope: -0.5677276 + outSlope: -0.5677276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.1546783 + inSlope: 0.24021955 + outSlope: 0.24021955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.1388422 + inSlope: 0.55092156 + outSlope: 0.55092156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.1179502 + inSlope: 0.6693503 + outSlope: 0.6693503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.09421884 + inSlope: 0.85665345 + outSlope: 0.85665345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.018513316 + inSlope: 1.3672673 + outSlope: 1.3672673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.030311206 + inSlope: 1.502815 + outSlope: 1.502815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.081674345 + inSlope: 1.5036595 + outSlope: 1.5036595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.17765002 + inSlope: 1.3456972 + outSlope: 1.3456972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.22026834 + inSlope: 1.12779 + outSlope: 1.12779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.30019808 + inSlope: 0.555461 + outSlope: 0.555461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.3181719 + inSlope: -0.4299686 + outSlope: -0.4299686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.2711055 + inSlope: -0.8957446 + outSlope: -0.8957446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.10142407 + inSlope: -1.5526313 + outSlope: -1.5526313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.04801539 + inSlope: -0.8011281 + outSlope: -0.8011281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22248617 + inSlope: -1.1424234 + outSlope: -1.1424234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.18440539 + inSlope: -1.0803764 + outSlope: -1.0803764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.11434181 + inSlope: -1.1675454 + outSlope: -1.1675454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.07262471 + inSlope: -1.1845596 + outSlope: -1.1845596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0022891462 + inSlope: -0.92407405 + outSlope: -0.92407405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.026233766 + inSlope: -0.64382076 + outSlope: -0.64382076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.040632237 + inSlope: 0.022273839 + outSlope: 0.022273839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.024748843 + inSlope: 0.92942333 + outSlope: 0.92942333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.02132932 + inSlope: 1.4055057 + outSlope: 1.4055057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.06895154 + inSlope: 1.2774651 + outSlope: 1.2774651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.1064937 + inSlope: 1.2176883 + outSlope: 1.2176883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.1501308 + inSlope: 1.5391715 + outSlope: 1.5391715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.20910512 + inSlope: 1.8924996 + outSlope: 1.8924996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.35457784 + inSlope: 2.457672 + outSlope: 2.457672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.51636094 + inSlope: 2.1108062 + outSlope: 2.1108062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6240655 + inSlope: 1.0673254 + outSlope: 1.0673254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.67132837 + inSlope: 0.25421917 + outSlope: 0.25421917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.6358205 + inSlope: -1.2699637 + outSlope: -1.2699637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.5250219 + inSlope: -1.6649925 + outSlope: -1.6649925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.36184648 + inSlope: -1.9822245 + outSlope: -1.9822245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2901207 + inSlope: -2.0903964 + outSlope: -2.0903964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.22248662 + inSlope: -1.0145085 + outSlope: -1.0145085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.013147787 + inSlope: 0.07904869 + outSlope: 0.07904869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.015782744 + inSlope: 0.12517852 + outSlope: 0.12517852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.021493021 + inSlope: 0.26720974 + outSlope: 0.26720974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.033596728 + inSlope: 0.3394908 + outSlope: 0.3394908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.044125743 + inSlope: 0.1374018 + outSlope: 0.1374018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.026129568 + inSlope: -0.7837205 + outSlope: -0.7837205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.009491187 + inSlope: -1.0377424 + outSlope: -1.0377424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.043053254 + inSlope: -0.5576853 + outSlope: -0.5576853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.046670206 + inSlope: 0.25635386 + outSlope: 0.25635386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.025963 + inSlope: 0.80438316 + outSlope: 0.80438316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.006955337 + inSlope: 1.0510408 + outSlope: 1.0510408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.044106416 + inSlope: 1.0241231 + outSlope: 1.0241231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.097618155 + inSlope: 0.52042997 + outSlope: 0.52042997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.123573855 + inSlope: 0.5867352 + outSlope: 0.5867352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.14904127 + inSlope: 0.73272455 + outSlope: 0.73272455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.17242216 + inSlope: 0.6317587 + outSlope: 0.6317587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.1911585 + inSlope: 0.78502834 + outSlope: 0.78502834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.22475736 + inSlope: 1.1542277 + outSlope: 1.1542277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.26810703 + inSlope: 1.0134834 + outSlope: 1.0134834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.29232293 + inSlope: 0.36504364 + outSlope: 0.36504364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.29244325 + inSlope: 0.10888329 + outSlope: 0.10888329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.30069655 + inSlope: -0.09321247 + outSlope: -0.09321247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.25820187 + inSlope: -1.6303769 + outSlope: -1.6303769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.18467583 + inSlope: -2.201601 + outSlope: -2.201601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.11142847 + inSlope: -1.9868649 + outSlope: -1.9868649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.05221829 + inSlope: -1.4742041 + outSlope: -1.4742041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.013148148 + inSlope: -0.58605057 + outSlope: -0.58605057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.83402807 + inSlope: -0.47840413 + outSlope: -0.47840413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.7850744 + inSlope: 0.03297689 + outSlope: 0.03297689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.84429884 + inSlope: -0.093650326 + outSlope: -0.093650326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.75880265 + inSlope: -0.7292203 + outSlope: -0.7292203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.692375 + inSlope: -0.62838525 + outSlope: -0.62838525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6774572 + inSlope: 0.48066217 + outSlope: 0.48066217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.8211752 + inSlope: 0.8244549 + outSlope: 0.8244549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.84489095 + inSlope: -0.2313357 + outSlope: -0.2313357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.83753145 + inSlope: -0.1865904 + outSlope: -0.1865904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5047025 + inSlope: -1.1941658 + outSlope: -1.1941658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.5715508 + inSlope: -0.66317075 + outSlope: -0.66317075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.6131415 + inSlope: -0.24522005 + outSlope: -0.24522005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.61218745 + inSlope: 0.29030713 + outSlope: 0.29030713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.5917899 + inSlope: 0.34222934 + outSlope: 0.34222934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.5332018 + inSlope: 0.6465543 + outSlope: 0.6465543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.4591827 + inSlope: 0.62086314 + outSlope: 0.62086314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.41149822 + inSlope: 1.2700728 + outSlope: 1.2700728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.22129017 + inSlope: 2.073491 + outSlope: 2.073491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.104639366 + inSlope: 0.96196 + outSlope: 0.96196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.089519665 + inSlope: 0.15374577 + outSlope: 0.15374577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.09438964 + inSlope: -0.22416347 + outSlope: -0.22416347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.10446389 + inSlope: -0.52979344 + outSlope: -0.52979344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.12970921 + inSlope: -1.2388288 + outSlope: -1.2388288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.18705244 + inSlope: -2.2015493 + outSlope: -2.2015493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.27647918 + inSlope: -2.7073164 + outSlope: -2.7073164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.44638854 + inSlope: -2.0574446 + outSlope: -2.0574446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.5047032 + inSlope: -0.87471795 + outSlope: -0.87471795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27426177 + inSlope: 0.20084916 + outSlope: 0.20084916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.28937346 + inSlope: 0.30935434 + outSlope: 0.30935434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.31211713 + inSlope: 0.2843048 + outSlope: 0.2843048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.3307446 + inSlope: 0.29024583 + outSlope: 0.29024583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3413421 + inSlope: -0.10522397 + outSlope: -0.10522397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.29813063 + inSlope: -0.21996695 + outSlope: -0.21996695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.27981675 + inSlope: -0.26505902 + outSlope: -0.26505902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.23571554 + inSlope: -0.32934865 + outSlope: -0.32934865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.21734363 + inSlope: -0.046070337 + outSlope: -0.046070337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.2174288 + inSlope: 0.15476243 + outSlope: 0.15476243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.23991233 + inSlope: 0.38879204 + outSlope: 0.38879204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.27767608 + inSlope: 0.039402135 + outSlope: 0.039402135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.27543798 + inSlope: -0.058673605 + outSlope: -0.058673605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08193644 + inSlope: 0.6807319 + outSlope: 0.6807319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.059245378 + inSlope: 0.8002279 + outSlope: 0.8002279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.028587911 + inSlope: 0.8757033 + outSlope: 0.8757033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.00086515164 + inSlope: 0.72251654 + outSlope: 0.72251654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.01957986 + inSlope: 0.50256884 + outSlope: 0.50256884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.032639433 + inSlope: 0.3290605 + outSlope: 0.3290605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.041517228 + inSlope: 0.11190646 + outSlope: 0.11190646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.040099867 + inSlope: -0.27756137 + outSlope: -0.27756137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.023013137 + inSlope: -0.7175088 + outSlope: -0.7175088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0077340533 + inSlope: -0.91536856 + outSlope: -0.91536856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.038011428 + inSlope: -0.82118213 + outSlope: -0.82118213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.10867648 + inSlope: -0.35271177 + outSlope: -0.35271177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.13477477 + inSlope: -0.15177546 + outSlope: -0.15177546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.14102954 + inSlope: 0.049370047 + outSlope: 0.049370047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.13793252 + inSlope: 0.03409798 + outSlope: 0.03409798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.1434082 + inSlope: 0.20616548 + outSlope: 0.20616548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.10201025 + inSlope: 0.56566095 + outSlope: 0.56566095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.08193624 + inSlope: 0.30110937 + outSlope: 0.30110937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13671504 + inSlope: 0.8927437 + outSlope: 0.8927437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.2698435 + inSlope: 0.5162941 + outSlope: 0.5162941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.2780317 + inSlope: -0.5035253 + outSlope: -0.5035253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.17834483 + inSlope: -1.0833628 + outSlope: -1.0833628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.110215664 + inSlope: -1.060382 + outSlope: -1.060382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.033998974 + inSlope: -1.1717141 + outSlope: -1.1717141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.004842716 + inSlope: -1.1300879 + outSlope: -1.1300879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.041340277 + inSlope: -1.0066708 + outSlope: -1.0066708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.09638206 + inSlope: -0.64037454 + outSlope: -0.64037454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.11464575 + inSlope: -0.39191347 + outSlope: -0.39191347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.12250961 + inSlope: -0.16252437 + outSlope: -0.16252437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.12548071 + inSlope: -0.009811927 + outSlope: -0.009811927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.12316374 + inSlope: 0.2625583 + outSlope: 0.2625583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.10797681 + inSlope: 0.5525864 + outSlope: 0.5525864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.086324655 + inSlope: 0.8013315 + outSlope: 0.8013315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.054554705 + inSlope: 1.0145347 + outSlope: 1.0145347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.018689012 + inSlope: 1.143405 + outSlope: 1.143405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.02167229 + inSlope: 1.2378714 + outSlope: 1.2378714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.103402294 + inSlope: 1.0931885 + outSlope: 1.0931885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.13671502 + inSlope: 0.49968964 + outSlope: 0.49968964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandT.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.18043631 + inSlope: 0.1332736 + outSlope: 0.1332736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.1668593 + inSlope: 0.32540065 + outSlope: 0.32540065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.15430048 + inSlope: 0.2882829 + outSlope: 0.2882829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.14764044 + inSlope: 0.18886374 + outSlope: 0.18886374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.13902813 + inSlope: 0.07855697 + outSlope: 0.07855697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.13000192 + inSlope: 0.28340894 + outSlope: 0.28340894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.09937581 + inSlope: 0.5781356 + outSlope: 0.5781356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.07903613 + inSlope: 0.69896775 + outSlope: 0.69896775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.052777935 + inSlope: 0.75607497 + outSlope: 0.75607497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.028631113 + inSlope: 0.49643192 + outSlope: 0.49643192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.019682476 + inSlope: 0.023526482 + outSlope: 0.023526482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.027062675 + inSlope: -0.26270053 + outSlope: -0.26270053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.037195846 + inSlope: -0.17099865 + outSlope: -0.17099865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.038462594 + inSlope: 0.017420774 + outSlope: 0.017420774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.036034465 + inSlope: -0.0041412637 + outSlope: -0.0041412637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.038738683 + inSlope: -0.12664658 + outSlope: -0.12664658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.048379738 + inSlope: -0.0035231486 + outSlope: -0.0035231486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.04471245 + inSlope: 0.26675805 + outSlope: 0.26675805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.03059586 + inSlope: 0.4615304 + outSlope: 0.4615304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.013943732 + inSlope: 0.5245838 + outSlope: 0.5245838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.004376393 + inSlope: 0.17890725 + outSlope: 0.17890725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.002016604 + inSlope: -0.7465792 + outSlope: -0.7465792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.045395516 + inSlope: -1.6931767 + outSlope: -1.6931767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.114895076 + inSlope: -1.864994 + outSlope: -1.864994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.16972846 + inSlope: -1.0553681 + outSlope: -1.0553681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.18525288 + inSlope: -0.16062182 + outSlope: -0.16062182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.18043655 + inSlope: 0.07224467 + outSlope: 0.07224467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.x + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3620444 + inSlope: -0.8223804 + outSlope: -0.8223804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.42587554 + inSlope: -1.2937517 + outSlope: -1.2937517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.52360123 + inSlope: -1.1714517 + outSlope: -1.1714517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.56638247 + inSlope: 0.16581507 + outSlope: 0.16581507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.50277585 + inSlope: 0.67945695 + outSlope: 0.67945695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.43999583 + inSlope: 1.4772513 + outSlope: 1.4772513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.32330886 + inSlope: 1.6272142 + outSlope: 1.6272142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.18155667 + inSlope: 1.4666092 + outSlope: 1.4666092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.13095729 + inSlope: 1.4706776 + outSlope: 1.4706776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.03895257 + inSlope: 1.2793669 + outSlope: 1.2793669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0017796196 + inSlope: 0.9938097 + outSlope: 0.9938097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.027301393 + inSlope: 0.4236953 + outSlope: 0.4236953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.030025996 + inSlope: -0.26336852 + outSlope: -0.26336852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.009743515 + inSlope: -0.9058789 + outSlope: -0.9058789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.03036594 + inSlope: -1.2701688 + outSlope: -1.2701688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.07493439 + inSlope: -1.4375033 + outSlope: -1.4375033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.1261995 + inSlope: -1.7949731 + outSlope: -1.7949731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.19459924 + inSlope: -2.2739587 + outSlope: -2.2739587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.2777966 + inSlope: -2.5116792 + outSlope: -2.5116792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.36204466 + inSlope: -1.2637177 + outSlope: -1.2637177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.y + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.47435853 + inSlope: -0.001630783 + outSlope: -0.001630783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.4411232 + inSlope: 0.9705439 + outSlope: 0.9705439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.362283 + inSlope: 1.153842 + outSlope: 1.153842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.29722565 + inSlope: 0.48011723 + outSlope: 0.48011723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.35546815 + inSlope: -0.79313964 + outSlope: -0.79313964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.4340368 + inSlope: -1.0516031 + outSlope: -1.0516031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.56043035 + inSlope: -1.101965 + outSlope: -1.101965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.65223664 + inSlope: -0.36134097 + outSlope: -0.36134097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.67869806 + inSlope: -0.07985562 + outSlope: -0.07985562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.6658488 + inSlope: 0.730263 + outSlope: 0.730263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.5475105 + inSlope: 1.1393096 + outSlope: 1.1393096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.5125392 + inSlope: 1.0972737 + outSlope: 1.0972737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.47435886 + inSlope: 0.5727038 + outSlope: 0.5727038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.z + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7818893 + inSlope: -0.36872146 + outSlope: -0.36872146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.74350137 + inSlope: 0.30420986 + outSlope: 0.30420986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.78397244 + inSlope: 0.14451738 + outSlope: 0.14451738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.80108035 + inSlope: 0.4128957 + outSlope: 0.4128957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.8180542 + inSlope: -0.10822967 + outSlope: -0.10822967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.772556 + inSlope: -0.31786412 + outSlope: -0.31786412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.73367107 + inSlope: -0.057777457 + outSlope: -0.057777457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.74546605 + inSlope: 0.5630674 + outSlope: 0.5630674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.7959621 + inSlope: 0.012002006 + outSlope: 0.012002006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.7856264 + inSlope: -0.19164439 + outSlope: -0.19164439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHandQ.w + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.14761426 + inSlope: 0.29675868 + outSlope: 0.29675868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.11509208 + inSlope: 0.37179542 + outSlope: 0.37179542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.101915635 + inSlope: 0.38356128 + outSlope: 0.38356128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.089521326 + inSlope: 0.20354345 + outSlope: 0.20354345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.08834607 + inSlope: -0.11665399 + outSlope: -0.11665399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.09729826 + inSlope: 0.06591025 + outSlope: 0.06591025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.083952054 + inSlope: 0.2809887 + outSlope: 0.2809887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.07856568 + inSlope: 0.000555329 + outSlope: 0.000555329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.08391503 + inSlope: -0.2037045 + outSlope: -0.2037045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.10245448 + inSlope: -0.31364477 + outSlope: -0.31364477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.12010934 + inSlope: -0.09661596 + outSlope: -0.09661596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.11685539 + inSlope: -0.014461789 + outSlope: -0.014461789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.12235584 + inSlope: 0.06061793 + outSlope: 0.06061793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.11641962 + inSlope: 0.31132212 + outSlope: 0.31132212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.10160104 + inSlope: 0.443686 + outSlope: 0.443686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.086840555 + inSlope: 0.18294218 + outSlope: 0.18294218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08940488 + inSlope: -0.26193288 + outSlope: -0.26193288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.10430276 + inSlope: -0.1536842 + outSlope: -0.1536842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.0996505 + inSlope: 0.17364927 + outSlope: 0.17364927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.09272614 + inSlope: 0.14608155 + outSlope: 0.14608155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.08991174 + inSlope: -0.12442821 + outSlope: -0.12442821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.10102134 + inSlope: -0.34317404 + outSlope: -0.34317404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.11279 + inSlope: -0.2546656 + outSlope: -0.2546656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.117999054 + inSlope: -0.22414997 + outSlope: -0.22414997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.12773332 + inSlope: -0.44422737 + outSlope: -0.44422737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.14761426 + inSlope: -0.29821324 + outSlope: -0.29821324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.002533879 + inSlope: -0.18619195 + outSlope: -0.18619195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0036725195 + inSlope: 0.061370015 + outSlope: 0.061370015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0066252137 + inSlope: 0.967012 + outSlope: 0.967012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.060794957 + inSlope: 1.4971497 + outSlope: 1.4971497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.106435195 + inSlope: 0.78835875 + outSlope: 0.78835875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.1133522 + inSlope: -0.18171877 + outSlope: -0.18171877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0943206 + inSlope: -0.90503544 + outSlope: -0.90503544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.053016502 + inSlope: -1.102562 + outSlope: -1.102562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.020816475 + inSlope: -0.9993259 + outSlope: -0.9993259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.013605224 + inSlope: -0.6265887 + outSlope: -0.6265887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.020956106 + inSlope: -0.05105599 + outSlope: -0.05105599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.017008957 + inSlope: 0.104059815 + outSlope: 0.104059815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.014018783 + inSlope: 0.058081772 + outSlope: 0.058081772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.013136836 + inSlope: -0.04257395 + outSlope: -0.04257395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.016857047 + inSlope: -0.28539783 + outSlope: -0.28539783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.032163344 + inSlope: -0.44237983 + outSlope: -0.44237983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.046349034 + inSlope: -0.3484615 + outSlope: -0.3484615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.05539413 + inSlope: -0.27138948 + outSlope: -0.27138948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.064441666 + inSlope: -0.7055213 + outSlope: -0.7055213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.102428906 + inSlope: -1.007133 + outSlope: -1.007133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.13158387 + inSlope: -0.38640162 + outSlope: -0.38640162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.12818898 + inSlope: 0.34219858 + outSlope: 0.34219858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.108770646 + inSlope: 0.9682966 + outSlope: 0.9682966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.063635856 + inSlope: 1.218803 + outSlope: 1.218803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.02751704 + inSlope: 0.7548462 + outSlope: 0.7548462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.013312755 + inSlope: 0.091668874 + outSlope: 0.091668874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.021405801 + inSlope: -0.24082969 + outSlope: -0.24082969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.029368067 + inSlope: -0.0712603 + outSlope: -0.0712603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.026156478 + inSlope: 0.16552112 + outSlope: 0.16552112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.01833333 + inSlope: 0.2746101 + outSlope: 0.2746101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.007849156 + inSlope: 0.3130079 + outSlope: 0.3130079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.002533879 + inSlope: 0.15574512 + outSlope: 0.15574512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.031939663 + inSlope: -0.7444231 + outSlope: -0.7444231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0071255583 + inSlope: -0.73286927 + outSlope: -0.73286927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.01691829 + inSlope: -0.89854157 + outSlope: -0.89854157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.05277722 + inSlope: -1.0080413 + outSlope: -1.0080413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08412104 + inSlope: -0.6156159 + outSlope: -0.6156159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.09381828 + inSlope: -0.26978728 + outSlope: -0.26978728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.10210686 + inSlope: -0.22080097 + outSlope: -0.22080097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.108538345 + inSlope: -0.07254873 + outSlope: -0.07254873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.10694344 + inSlope: 0.115639426 + outSlope: 0.115639426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.10082905 + inSlope: 0.09257578 + outSlope: 0.09257578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.100771725 + inSlope: 0.28772226 + outSlope: 0.28772226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.08164757 + inSlope: 0.9986024 + outSlope: 0.9986024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.034198195 + inSlope: 1.44351 + outSlope: 1.44351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.014586471 + inSlope: 1.2410848 + outSlope: 1.2410848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.04854079 + inSlope: 0.92844 + outSlope: 0.92844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.07648244 + inSlope: 0.8480432 + outSlope: 0.8480432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.13066858 + inSlope: 0.6698508 + outSlope: 0.6698508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.14973372 + inSlope: 0.6256559 + outSlope: 0.6256559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.18597451 + inSlope: 0.113682345 + outSlope: 0.113682345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.16681576 + inSlope: -0.40627956 + outSlope: -0.40627956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.15287247 + inSlope: -0.11296248 + outSlope: -0.11296248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.15928492 + inSlope: 0.36885867 + outSlope: 0.36885867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.17746304 + inSlope: 0.11030154 + outSlope: 0.11030154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.16663833 + inSlope: -0.77770203 + outSlope: -0.77770203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.12561627 + inSlope: -1.1980011 + outSlope: -1.1980011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.08677159 + inSlope: -0.96042407 + outSlope: -0.96042407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.04486398 + inSlope: -0.44472462 + outSlope: -0.44472462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.031939663 + inSlope: -0.19386426 + outSlope: -0.19386426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Spine Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12025684 + inSlope: 0.31922734 + outSlope: 0.31922734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.10029396 + inSlope: 0.18327019 + outSlope: 0.18327019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.097397916 + inSlope: 0.031259015 + outSlope: 0.031259015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.09821002 + inSlope: 0.020008724 + outSlope: 0.020008724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.09614519 + inSlope: -0.056948107 + outSlope: -0.056948107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.09986054 + inSlope: 0.0817828 + outSlope: 0.0817828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.090693004 + inSlope: 0.41952378 + outSlope: 0.41952378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.07189229 + inSlope: 0.4401029 + outSlope: 0.4401029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06135281 + inSlope: 0.14638273 + outSlope: 0.14638273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.062133443 + inSlope: -0.18801947 + outSlope: -0.18801947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.08819905 + inSlope: -0.32677957 + outSlope: -0.32677957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.09823423 + inSlope: -0.0638272 + outSlope: -0.0638272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.098741814 + inSlope: 0.052062254 + outSlope: 0.052062254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.09645709 + inSlope: -0.0130284205 + outSlope: -0.0130284205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.10187726 + inSlope: 0.05216148 + outSlope: 0.05216148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.09613294 + inSlope: 0.10311065 + outSlope: 0.10311065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.09500321 + inSlope: -0.041938953 + outSlope: -0.041938953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.098928876 + inSlope: 0.031388413 + outSlope: 0.031388413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.09291065 + inSlope: 0.1429625 + outSlope: 0.1429625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.08939804 + inSlope: 0.074847855 + outSlope: 0.074847855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.08792079 + inSlope: -0.06787452 + outSlope: -0.06787452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.093923 + inSlope: -0.3069708 + outSlope: -0.3069708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.12127656 + inSlope: -0.24307911 + outSlope: -0.24307911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.12459078 + inSlope: 0.01527999 + outSlope: 0.01527999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.12025788 + inSlope: 0.06499333 + outSlope: 0.06499333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.060767997 + inSlope: -0.8248068 + outSlope: -0.8248068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.033274435 + inSlope: -0.9383002 + outSlope: -0.9383002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0017853545 + inSlope: -1.2705069 + outSlope: -1.2705069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.05142603 + inSlope: -1.2858658 + outSlope: -1.2858658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.087509744 + inSlope: -0.6216179 + outSlope: -0.6216179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.092867225 + inSlope: 0.033213295 + outSlope: 0.033213295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.08529552 + inSlope: 0.1897533 + outSlope: 0.1897533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.080217004 + inSlope: 0.25745052 + outSlope: 0.25745052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.068132155 + inSlope: 0.694581 + outSlope: 0.694581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.03391161 + inSlope: 0.5678624 + outSlope: 0.5678624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.030274663 + inSlope: 0.029274693 + outSlope: 0.029274693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.031959962 + inSlope: 0.07355743 + outSlope: 0.07355743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.025370829 + inSlope: 0.20167966 + outSlope: 0.20167966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.018514646 + inSlope: 0.17996871 + outSlope: 0.17996871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.013372915 + inSlope: 0.33792606 + outSlope: 0.33792606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0040137414 + inSlope: 0.578827 + outSlope: 0.578827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.025215555 + inSlope: 0.6711594 + outSlope: 0.6711594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.04875774 + inSlope: 0.8350451 + outSlope: 0.8350451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.08088522 + inSlope: 1.1733675 + outSlope: 1.1733675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.12698224 + inSlope: 1.1551956 + outSlope: 1.1551956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.15789826 + inSlope: 0.42953837 + outSlope: 0.42953837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.1556181 + inSlope: -0.13891435 + outSlope: -0.13891435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.14863731 + inSlope: -0.13547152 + outSlope: -0.13547152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.14658667 + inSlope: -0.32568136 + outSlope: -0.32568136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.1269252 + inSlope: -0.19078675 + outSlope: -0.19078675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.13386753 + inSlope: 0.08271028 + outSlope: 0.08271028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.12453517 + inSlope: -0.27347398 + outSlope: -0.27347398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.11420761 + inSlope: -0.40391576 + outSlope: -0.40391576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.07925427 + inSlope: -0.552591 + outSlope: -0.552591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.06076803 + inSlope: -0.27729285 + outSlope: -0.27729285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12439283 + inSlope: -0.93041044 + outSlope: -0.93041044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.061331995 + inSlope: -0.96609503 + outSlope: -0.96609503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.007089441 + inSlope: -1.1784563 + outSlope: -1.1784563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.04959095 + inSlope: -1.253274 + outSlope: -1.253274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.09064105 + inSlope: -1.0608329 + outSlope: -1.0608329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.13412336 + inSlope: -0.07300906 + outSlope: -0.07300906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.12518042 + inSlope: 0.5066339 + outSlope: 0.5066339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.100347765 + inSlope: 0.6771908 + outSlope: 0.6771908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.080034375 + inSlope: 0.7011497 + outSlope: 0.7011497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.05360443 + inSlope: 1.1226318 + outSlope: 1.1226318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0051922346 + inSlope: 1.6011636 + outSlope: 1.6011636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.053139806 + inSlope: 1.6653521 + outSlope: 1.6653521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.15630625 + inSlope: 1.5544863 + outSlope: 1.5544863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.25946012 + inSlope: 1.4136285 + outSlope: 1.4136285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.30370557 + inSlope: 1.3279605 + outSlope: 1.3279605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.3858645 + inSlope: 0.87140703 + outSlope: 0.87140703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.40057302 + inSlope: -0.50051737 + outSlope: -0.50051737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.37768656 + inSlope: -0.6300523 + outSlope: -0.6300523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.33044457 + inSlope: -1.2014189 + outSlope: -1.2014189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.27847493 + inSlope: -1.7494859 + outSlope: -1.7494859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.2138122 + inSlope: -1.794697 + outSlope: -1.794697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.12439249 + inSlope: -0.51653993 + outSlope: -0.51653993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Chest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: UpperChest Twist Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.012302843 + inSlope: -0.031778924 + outSlope: -0.031778924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.011243545 + inSlope: 0.015942574 + outSlope: 0.015942574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.013365681 + inSlope: 0.06538096 + outSlope: 0.06538096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.015602277 + inSlope: 0.017156268 + outSlope: 0.017156268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.014509433 + inSlope: -0.018881049 + outSlope: -0.018881049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.01434354 + inSlope: 0.05966271 + outSlope: 0.05966271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.018486949 + inSlope: 0.09259055 + outSlope: 0.09259055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.020516245 + inSlope: -0.10677316 + outSlope: -0.10677316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0113687385 + inSlope: -0.24325612 + outSlope: -0.24325612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0042991717 + inSlope: -0.104968905 + outSlope: -0.104968905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.004370812 + inSlope: -0.040192828 + outSlope: -0.040192828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00161965 + inSlope: -0.05411047 + outSlope: -0.05411047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0007634465 + inSlope: 0.025416117 + outSlope: 0.025416117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0033140571 + inSlope: 0.00662107 + outSlope: 0.00662107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0012048512 + inSlope: -0.15500943 + outSlope: -0.15500943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.007019897 + inSlope: -0.23796906 + outSlope: -0.23796906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.014659751 + inSlope: -0.12960486 + outSlope: -0.12960486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.015660228 + inSlope: 0.046905342 + outSlope: 0.046905342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.011532733 + inSlope: 0.14295706 + outSlope: 0.14295706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0061297575 + inSlope: 0.14515933 + outSlope: 0.14515933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0018554431 + inSlope: 0.15504003 + outSlope: 0.15504003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.004206245 + inSlope: 0.21112618 + outSlope: 0.21112618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.012219632 + inSlope: 0.18657622 + outSlope: 0.18657622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.016644655 + inSlope: -0.07885623 + outSlope: -0.07885623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0069625457 + inSlope: -0.23015228 + outSlope: -0.23015228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0013011661 + inSlope: -0.12954445 + outSlope: -0.12954445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0016737486 + inSlope: 0.0053284764 + outSlope: 0.0053284764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0016563922 + inSlope: 0.114955634 + outSlope: 0.114955634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.005989961 + inSlope: 0.069491126 + outSlope: 0.069491126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.006289137 + inSlope: 0.0098325405 + outSlope: 0.0098325405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.006645463 + inSlope: 0.09024264 + outSlope: 0.09024264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.012305328 + inSlope: 0.08489775 + outSlope: 0.08489775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.015423704 + inSlope: -0.061121225 + outSlope: -0.061121225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.017461078 + inSlope: 0.034872696 + outSlope: 0.034872696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.013098857 + inSlope: 0.3118041 + outSlope: 0.3118041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.003325863 + inSlope: 0.50735307 + outSlope: 0.50735307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.02072468 + inSlope: 0.3632147 + outSlope: 0.3632147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.027540175 + inSlope: 0.08482348 + outSlope: 0.08482348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.026379578 + inSlope: -0.10342137 + outSlope: -0.10342137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.020645417 + inSlope: -0.39640144 + outSlope: -0.39640144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000047183268 + inSlope: -0.8710698 + outSlope: -0.8710698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0374259 + inSlope: -0.837749 + outSlope: -0.837749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.055897113 + inSlope: -0.48656544 + outSlope: -0.48656544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.069863595 + inSlope: -0.353538 + outSlope: -0.353538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.07946632 + inSlope: -0.0759312 + outSlope: -0.0759312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.07492568 + inSlope: 0.26465353 + outSlope: 0.26465353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.061822753 + inSlope: 0.3387023 + outSlope: 0.3387023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.05234554 + inSlope: 0.25743252 + outSlope: 0.25743252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.044660587 + inSlope: 0.18367484 + outSlope: 0.18367484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.04010054 + inSlope: -0.009969905 + outSlope: -0.009969905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.04532524 + inSlope: -0.31843877 + outSlope: -0.31843877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0613298 + inSlope: -0.46946096 + outSlope: -0.46946096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.076622635 + inSlope: -0.32159248 + outSlope: -0.32159248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.07993361 + inSlope: 0.19766508 + outSlope: 0.19766508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.06959161 + inSlope: 0.6527401 + outSlope: 0.6527401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.03641757 + inSlope: 0.76265144 + outSlope: 0.76265144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.018748172 + inSlope: 0.5303011 + outSlope: 0.5303011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0010641663 + inSlope: 0.50154996 + outSlope: 0.50154996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.01468849 + inSlope: 0.2767849 + outSlope: 0.2767849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.017388148 + inSlope: -0.09252703 + outSlope: -0.09252703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.008520031 + inSlope: -0.33073062 + outSlope: -0.33073062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.004660539 + inSlope: -0.35919818 + outSlope: -0.35919818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.01542653 + inSlope: -0.16148943 + outSlope: -0.16148943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05121721 + inSlope: 0.19651036 + outSlope: 0.19651036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.036983915 + inSlope: 0.23772317 + outSlope: 0.23772317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.011213252 + inSlope: 0.2724133 + outSlope: 0.2724133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0020819309 + inSlope: 0.2610374 + outSlope: 0.2610374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0061892443 + inSlope: 0.21408942 + outSlope: 0.21408942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.012190697 + inSlope: 0.11827233 + outSlope: 0.11827233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.014074066 + inSlope: -0.012385549 + outSlope: -0.012385549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.011364994 + inSlope: -0.11879779 + outSlope: -0.11879779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.006154214 + inSlope: -0.2200926 + outSlope: -0.2200926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0033078534 + inSlope: -0.3476345 + outSlope: -0.3476345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.017021425 + inSlope: -0.43075565 + outSlope: -0.43075565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.032024894 + inSlope: -0.43796113 + outSlope: -0.43796113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.060364343 + inSlope: -0.424384 + outSlope: -0.424384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.08701959 + inSlope: -0.3484257 + outSlope: -0.3484257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.12044179 + inSlope: -0.1234192 + outSlope: -0.1234192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.12354631 + inSlope: -0.086550236 + outSlope: -0.086550236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.12447865 + inSlope: 0.12225067 + outSlope: 0.12225067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.10574834 + inSlope: 0.4330529 + outSlope: 0.4330529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.058338985 + inSlope: 0.3125175 + outSlope: 0.3125175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.051225282 + inSlope: 0.106705256 + outSlope: 0.106705256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Neck Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.083509885 + inSlope: -0.29840422 + outSlope: -0.29840422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.07356308 + inSlope: -0.16329265 + outSlope: -0.16329265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.08156673 + inSlope: 0.40065545 + outSlope: 0.40065545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.09933407 + inSlope: 0.5344549 + outSlope: 0.5344549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.11719705 + inSlope: 0.54508996 + outSlope: 0.54508996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.1356734 + inSlope: 0.46854585 + outSlope: 0.46854585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.14843345 + inSlope: -0.03841795 + outSlope: -0.03841795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.1331122 + inSlope: -0.7453455 + outSlope: -0.7453455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.09874375 + inSlope: -0.8370231 + outSlope: -0.8370231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.077310674 + inSlope: -0.24861923 + outSlope: -0.24861923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.08216914 + inSlope: 0.34753394 + outSlope: 0.34753394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.10047962 + inSlope: 0.3842012 + outSlope: 0.3842012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.107782565 + inSlope: -0.104371354 + outSlope: -0.104371354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.09352153 + inSlope: -0.5872966 + outSlope: -0.5872966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.06862948 + inSlope: -0.69238174 + outSlope: -0.69238174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.04736275 + inSlope: -0.44981408 + outSlope: -0.44981408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.03864185 + inSlope: -0.009380296 + outSlope: -0.009380296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.04673738 + inSlope: 0.47042704 + outSlope: 0.47042704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.070003666 + inSlope: 0.71159446 + outSlope: 0.71159446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.09417701 + inSlope: 0.5428135 + outSlope: 0.5428135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.11686753 + inSlope: 0.47243124 + outSlope: 0.47243124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.13768664 + inSlope: 0.46477526 + outSlope: 0.46477526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.14785257 + inSlope: -0.019750297 + outSlope: -0.019750297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.13636997 + inSlope: -0.44704145 + outSlope: -0.44704145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.1180498 + inSlope: -0.303955 + outSlope: -0.303955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.116106294 + inSlope: 0.033545077 + outSlope: 0.033545077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.120286144 + inSlope: -0.021020383 + outSlope: -0.021020383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.114704944 + inSlope: -0.3047456 + outSlope: -0.3047456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.09996979 + inSlope: -0.4678831 + outSlope: -0.4678831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.08351271 + inSlope: -0.24685557 + outSlope: -0.24685557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Nod Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.046809155 + inSlope: -0.0009233504 + outSlope: -0.0009233504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.046839934 + inSlope: -0.0003373995 + outSlope: -0.0003373995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04683165 + inSlope: -0.12093581 + outSlope: -0.12093581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.054902323 + inSlope: -0.20003048 + outSlope: -0.20003048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.060167015 + inSlope: -0.08408207 + outSlope: -0.08408207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.060507793 + inSlope: 0.00017942628 + outSlope: 0.00017942628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.060155053 + inSlope: 0.16621181 + outSlope: 0.16621181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.049427006 + inSlope: 0.5654179 + outSlope: 0.5654179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.022460528 + inSlope: 0.9615228 + outSlope: 0.9615228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.01467451 + inSlope: 1.0756031 + outSlope: 1.0756031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.049246345 + inSlope: 0.6804646 + outSlope: 0.6804646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.060038816 + inSlope: -0.14910227 + outSlope: -0.14910227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.039306175 + inSlope: -0.83701885 + outSlope: -0.83701885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0042375466 + inSlope: -0.9237199 + outSlope: -0.9237199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.022275148 + inSlope: -0.590646 + outSlope: -0.590646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.035138845 + inSlope: -0.32232726 + outSlope: -0.32232726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.043763626 + inSlope: -0.25457793 + outSlope: -0.25457793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.05211072 + inSlope: -0.16788566 + outSlope: -0.16788566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.054956008 + inSlope: 0.02012955 + outSlope: 0.02012955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.050768744 + inSlope: 0.1203296 + outSlope: 0.1203296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.046934035 + inSlope: 0.060329303 + outSlope: 0.060329303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.046746794 + inSlope: -0.013274325 + outSlope: -0.013274325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.04781899 + inSlope: -0.19660132 + outSlope: -0.19660132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.059853557 + inSlope: -0.6818228 + outSlope: -0.6818228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.09327388 + inSlope: -0.8968706 + outSlope: -0.8968706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.11964493 + inSlope: -0.33840355 + outSlope: -0.33840355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.096061856 + inSlope: 0.60513115 + outSlope: 0.60513115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.07549201 + inSlope: 0.59087926 + outSlope: 0.59087926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.056669906 + inSlope: 0.44313622 + outSlope: 0.44313622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.045949623 + inSlope: 0.14789551 + outSlope: 0.14789551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.046810217 + inSlope: -0.01290888 + outSlope: -0.01290888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Tilt Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.111968786 + inSlope: 0.9061505 + outSlope: 0.9061505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.08176377 + inSlope: 0.8345711 + outSlope: 0.8345711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.056330707 + inSlope: 0.6843933 + outSlope: 0.6843933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.036137544 + inSlope: 0.4280038 + outSlope: 0.4280038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.027797118 + inSlope: 0.15775192 + outSlope: 0.15775192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.02562075 + inSlope: 0.1978156 + outSlope: 0.1978156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.014609407 + inSlope: 0.5137928 + outSlope: 0.5137928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.008632108 + inSlope: 0.70685744 + outSlope: 0.70685744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.032514423 + inSlope: 0.57108474 + outSlope: 0.57108474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.046704423 + inSlope: 0.27368855 + outSlope: 0.27368855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.050760325 + inSlope: -0.122981474 + outSlope: -0.122981474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.03850566 + inSlope: -0.76804036 + outSlope: -0.76804036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.00044239764 + inSlope: -1.3630697 + outSlope: -1.3630697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.05236568 + inSlope: -1.4858057 + outSlope: -1.4858057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.099496104 + inSlope: -1.2578738 + outSlope: -1.2578738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1362239 + inSlope: -1.0688491 + outSlope: -1.0688491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.1707527 + inSlope: -1.0386376 + outSlope: -1.0386376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.20546646 + inSlope: -0.9100636 + outSlope: -0.9100636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2672869 + inSlope: -0.082312025 + outSlope: -0.082312025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.27349678 + inSlope: -0.4477685 + outSlope: -0.4477685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.32296166 + inSlope: 0.56120044 + outSlope: 0.56120044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.1763664 + inSlope: 1.444541 + outSlope: 1.444541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.11197129 + inSlope: 0.34074426 + outSlope: 0.34074426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Head Turn Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Eye In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Close + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Jaw Left-Right + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0382267 + inSlope: -1.2282418 + outSlope: -1.2282418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0027146942 + inSlope: -0.4349953 + outSlope: -0.4349953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.009227013 + inSlope: -0.28070223 + outSlope: -0.28070223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.02142818 + inSlope: -1.1376393 + outSlope: -1.1376393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.066615604 + inSlope: -1.5018501 + outSlope: -1.5018501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.12155152 + inSlope: -0.9231065 + outSlope: -0.9231065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.12815604 + inSlope: 0.41151553 + outSlope: 0.41151553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.09411716 + inSlope: 1.0927212 + outSlope: 1.0927212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.055307962 + inSlope: 0.45422113 + outSlope: 0.45422113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.06383575 + inSlope: -0.47950155 + outSlope: -0.47950155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.08727473 + inSlope: -0.13244481 + outSlope: -0.13244481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0726654 + inSlope: 0.6925266 + outSlope: 0.6925266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.041106265 + inSlope: 1.3197721 + outSlope: 1.3197721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.015319428 + inSlope: 2.465682 + outSlope: 2.465682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.12327253 + inSlope: 3.307838 + outSlope: 3.307838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.23584184 + inSlope: 3.4906473 + outSlope: 3.4906473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.46986863 + inSlope: 3.2199218 + outSlope: 3.2199218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.5706438 + inSlope: 3.0014873 + outSlope: 3.0014873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.6699678 + inSlope: 2.595098 + outSlope: 2.595098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7436503 + inSlope: 2.6397915 + outSlope: 2.6397915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.8459539 + inSlope: 2.9487205 + outSlope: 2.9487205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9402317 + inSlope: 2.77313 + outSlope: 2.77313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 1.0308292 + inSlope: 1.7519065 + outSlope: 1.7519065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 1.0570256 + inSlope: -1.9179938 + outSlope: -1.9179938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9029631 + inSlope: -4.897947 + outSlope: -4.897947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.73049575 + inSlope: -5.4410644 + outSlope: -5.4410644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.3657931 + inSlope: -4.7914863 + outSlope: -4.7914863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.10892561 + inSlope: -2.7384896 + outSlope: -2.7384896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.038227018 + inSlope: -1.0604761 + outSlope: -1.0604761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09488209 + inSlope: -0.5338595 + outSlope: -0.5338595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.07708678 + inSlope: -0.5912417 + outSlope: -0.5912417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.055465978 + inSlope: -0.23630881 + outSlope: -0.23630881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.061332855 + inSlope: 0.23392454 + outSlope: 0.23392454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.07106095 + inSlope: 0.2517037 + outSlope: 0.2517037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0781131 + inSlope: 0.22898093 + outSlope: 0.22898093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.086326346 + inSlope: -0.117658176 + outSlope: -0.117658176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.07026923 + inSlope: -0.64775246 + outSlope: -0.64775246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.04314285 + inSlope: -0.52461237 + outSlope: -0.52461237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.035295073 + inSlope: 0.016241059 + outSlope: 0.016241059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.04422559 + inSlope: 0.11408738 + outSlope: 0.11408738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.042900898 + inSlope: -0.2242015 + outSlope: -0.2242015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.029278811 + inSlope: -0.52984655 + outSlope: -0.52984655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0075777853 + inSlope: -0.6689774 + outSlope: -0.6689774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.015319678 + inSlope: -0.6114212 + outSlope: -0.6114212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.033183616 + inSlope: -0.5268856 + outSlope: -0.5268856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.050445385 + inSlope: -0.47252756 + outSlope: -0.47252756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.06468548 + inSlope: -0.2089115 + outSlope: -0.2089115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.06437283 + inSlope: 0.046821505 + outSlope: 0.046821505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.06043879 + inSlope: -0.035074517 + outSlope: -0.035074517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.06390235 + inSlope: -0.0032295696 + outSlope: -0.0032295696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0606541 + inSlope: 0.33696583 + outSlope: 0.33696583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.041437946 + inSlope: 0.70187145 + outSlope: 0.70187145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.01386263 + inSlope: 1.6659806 + outSlope: 1.6659806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.06962737 + inSlope: 1.7940483 + outSlope: 1.7940483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.10574054 + inSlope: 0.568534 + outSlope: 0.568534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.10752966 + inSlope: 0.007637745 + outSlope: 0.007637745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.10624972 + inSlope: -0.0017670952 + outSlope: -0.0017670952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.107411854 + inSlope: -0.033738866 + outSlope: -0.033738866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.104000464 + inSlope: -0.1879518 + outSlope: -0.1879518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.09488171 + inSlope: -0.1367809 + outSlope: -0.1367809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14218844 + inSlope: 1.0672237 + outSlope: 1.0672237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.17776257 + inSlope: 0.9326422 + outSlope: 0.9326422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.2043646 + inSlope: -0.2869431 + outSlope: -0.2869431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.15863302 + inSlope: -3.658896 + outSlope: -3.658896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0395618 + inSlope: -4.594342 + outSlope: -4.594342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.14765644 + inSlope: -0.7112657 + outSlope: -0.7112657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.086979486 + inSlope: 1.804966 + outSlope: 1.804966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.027325362 + inSlope: 1.0423996 + outSlope: 1.0423996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.017486177 + inSlope: 1.1326034 + outSlope: 1.1326034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.048181526 + inSlope: 1.7405981 + outSlope: 1.7405981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09855369 + inSlope: 1.0123012 + outSlope: 1.0123012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.11566827 + inSlope: 0.26156792 + outSlope: 0.26156792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.10062868 + inSlope: -0.6416708 + outSlope: -0.6416708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.073213495 + inSlope: -0.84370553 + outSlope: -0.84370553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.044381674 + inSlope: -0.98883694 + outSlope: -0.98883694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.007291027 + inSlope: -1.2571111 + outSlope: -1.2571111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0394258 + inSlope: -1.0279548 + outSlope: -1.0279548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.06123931 + inSlope: -0.17490524 + outSlope: -0.17490524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.05108612 + inSlope: 0.47528228 + outSlope: 0.47528228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.029553836 + inSlope: -0.55593824 + outSlope: -0.55593824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.08814874 + inSlope: -2.3292813 + outSlope: -2.3292813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.18483922 + inSlope: -2.8401065 + outSlope: -2.8401065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.27748916 + inSlope: -0.41604084 + outSlope: -0.41604084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.2125753 + inSlope: 4.326736 + outSlope: 4.326736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.010959738 + inSlope: 3.8177302 + outSlope: 3.8177302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.04193986 + inSlope: 0.47674984 + outSlope: 0.47674984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.042743083 + inSlope: 0.23809326 + outSlope: 0.23809326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.057812754 + inSlope: 0.7029693 + outSlope: 0.7029693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.089607686 + inSlope: 0.95836794 + outSlope: 0.95836794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.14218871 + inSlope: 0.30727148 + outSlope: 0.30727148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.287574 + inSlope: 5.2050605 + outSlope: 5.2050605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.46107602 + inSlope: 6.269292 + outSlope: 6.269292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.7055268 + inSlope: 5.9699955 + outSlope: 5.9699955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.93051016 + inSlope: 0.8104868 + outSlope: 0.8104868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9131082 + inSlope: -0.37570238 + outSlope: -0.37570238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.8968387 + inSlope: -0.24875256 + outSlope: -0.24875256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.88887984 + inSlope: -1.727897 + outSlope: -1.727897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.7816456 + inSlope: -4.073083 + outSlope: -4.073083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.617341 + inSlope: -3.6150084 + outSlope: -3.6150084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.54064506 + inSlope: -1.613006 + outSlope: -1.613006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.5237243 + inSlope: 0.8192075 + outSlope: 0.8192075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.56442106 + inSlope: 1.3096054 + outSlope: 1.3096054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.670481 + inSlope: 1.7671978 + outSlope: 1.7671978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7796394 + inSlope: 1.5646863 + outSlope: 1.5646863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.833157 + inSlope: 1.1091316 + outSlope: 1.1091316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.85358155 + inSlope: 1.2167649 + outSlope: 1.2167649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.9142747 + inSlope: 1.2473018 + outSlope: 1.2473018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9270261 + inSlope: -0.8705773 + outSlope: -0.8705773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.8786965 + inSlope: -4.388988 + outSlope: -4.388988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6344271 + inSlope: -7.056102 + outSlope: -7.056102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.40828976 + inSlope: -6.1372137 + outSlope: -6.1372137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.2252795 + inSlope: -4.2215223 + outSlope: -4.2215223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.12685502 + inSlope: -1.6879253 + outSlope: -1.6879253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.11275107 + inSlope: 0.62119484 + outSlope: 0.62119484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.16826797 + inSlope: 2.62234 + outSlope: 2.62234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.287574 + inSlope: 1.7895857 + outSlope: 1.7895857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.049417727 + inSlope: 0.4237872 + outSlope: 0.4237872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.035291485 + inSlope: 0.40540376 + outSlope: 0.40540376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.022390807 + inSlope: 0.7177788 + outSlope: 0.7177788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.012560442 + inSlope: 2.228487 + outSlope: 2.228487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.12617499 + inSlope: 2.5115325 + outSlope: 2.5115325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.17999594 + inSlope: 0.09610832 + outSlope: 0.09610832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.13258219 + inSlope: -1.7076375 + outSlope: -1.7076375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.06615342 + inSlope: -1.5085931 + outSlope: -1.5085931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.032009326 + inSlope: -1.1448176 + outSlope: -1.1448176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.010167744 + inSlope: -1.1357348 + outSlope: -1.1357348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.043706328 + inSlope: -0.71912766 + outSlope: -0.71912766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.05810959 + inSlope: -0.2638785 + outSlope: -0.2638785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.05526159 + inSlope: 0.29382893 + outSlope: 0.29382893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.041709635 + inSlope: 0.39633948 + outSlope: 0.39633948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.028838972 + inSlope: 0.4605162 + outSlope: 0.4605162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.011008551 + inSlope: 0.5983691 + outSlope: 0.5983691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.011052339 + inSlope: 0.36995158 + outSlope: 0.36995158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.013654904 + inSlope: -0.2734568 + outSlope: -0.2734568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0071781343 + inSlope: -0.77752066 + outSlope: -0.77752066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.038179792 + inSlope: -0.005177945 + outSlope: -0.005177945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.007523276 + inSlope: 1.3933172 + outSlope: 1.3933172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.054707993 + inSlope: 2.0360146 + outSlope: 2.0360146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12821104 + inSlope: 0.72162783 + outSlope: 0.72162783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.10281655 + inSlope: -2.5824528 + outSlope: -2.5824528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.04395236 + inSlope: -2.3461113 + outSlope: -2.3461113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.053590745 + inSlope: 0.2865551 + outSlope: 0.2865551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.024848724 + inSlope: 0.49109495 + outSlope: 0.49109495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.020851105 + inSlope: -0.21552415 + outSlope: -0.21552415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.03921698 + inSlope: -0.4904444 + outSlope: -0.4904444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.053547367 + inSlope: -0.15301156 + outSlope: -0.15301156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.049417727 + inSlope: 0.061944447 + outSlope: 0.061944447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0048502316 + inSlope: -0.10295727 + outSlope: -0.10295727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0014183222 + inSlope: 0.7634246 + outSlope: 0.7634246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.055745207 + inSlope: 0.89110965 + outSlope: 0.89110965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.06082564 + inSlope: -1.1483586 + outSlope: -1.1483586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.020812029 + inSlope: -3.3970885 + outSlope: -3.3970885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.16564693 + inSlope: -1.8353937 + outSlope: -1.8353937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.1431716 + inSlope: 3.1703253 + outSlope: 3.1703253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.045708086 + inSlope: 5.856619 + outSlope: 5.856619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.24726965 + inSlope: 4.22537 + outSlope: 4.22537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.3273994 + inSlope: -1.8978721 + outSlope: -1.8978721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.12074485 + inSlope: -5.1474833 + outSlope: -5.1474833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.015766138 + inSlope: -3.4972606 + outSlope: -3.4972606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.11240592 + inSlope: -2.3619936 + outSlope: -2.3619936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.21203303 + inSlope: -1.1016428 + outSlope: -1.1016428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.24667527 + inSlope: -0.89862514 + outSlope: -0.89862514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.29651693 + inSlope: -0.82134795 + outSlope: -0.82134795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.3266979 + inSlope: -0.6800685 + outSlope: -0.6800685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.3418548 + inSlope: -0.77149755 + outSlope: -0.77149755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.37813103 + inSlope: -0.5659055 + outSlope: -0.5659055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.3795818 + inSlope: 0.07031153 + outSlope: 0.07031153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.3734436 + inSlope: 1.4218907 + outSlope: 1.4218907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.28478903 + inSlope: 4.471628 + outSlope: 4.471628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.075334795 + inSlope: 5.348559 + outSlope: 5.348559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.07178159 + inSlope: 5.1254196 + outSlope: 5.1254196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.26635987 + inSlope: 2.8816504 + outSlope: 2.8816504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.2638918 + inSlope: -1.6811695 + outSlope: -1.6811695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.15428181 + inSlope: -2.5675182 + outSlope: -2.5675182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.092723876 + inSlope: -1.6396008 + outSlope: -1.6396008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.044975195 + inSlope: -1.3181028 + outSlope: -1.3181028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.004850301 + inSlope: -0.60187185 + outSlope: -0.60187185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04963806 + inSlope: -1.740158 + outSlope: -1.740158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.10764333 + inSlope: -1.3987403 + outSlope: -1.3987403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.14288741 + inSlope: -1.368195 + outSlope: -1.368195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.19885634 + inSlope: -1.1957184 + outSlope: -1.1957184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.22260198 + inSlope: 0.24390647 + outSlope: 0.24390647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.18259591 + inSlope: 0.6967673 + outSlope: 0.6967673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.17615083 + inSlope: 1.0081125 + outSlope: 1.0081125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.11538841 + inSlope: 2.782364 + outSlope: 2.782364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.009340086 + inSlope: 2.5881863 + outSlope: 2.5881863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.057157326 + inSlope: 1.6275417 + outSlope: 1.6275417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.11784285 + inSlope: 1.4995892 + outSlope: 1.4995892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.17362148 + inSlope: 0.12133263 + outSlope: 0.12133263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.16521879 + inSlope: -0.51490843 + outSlope: -0.51490843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.13929425 + inSlope: -0.826802 + outSlope: -0.826802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.11009868 + inSlope: -0.92373323 + outSlope: -0.92373323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.07771204 + inSlope: -0.92809165 + outSlope: -0.92809165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.048225854 + inSlope: -0.52520895 + outSlope: -0.52520895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.042698085 + inSlope: 0.19765954 + outSlope: 0.19765954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.061403178 + inSlope: 0.6878903 + outSlope: 0.6878903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08855743 + inSlope: 0.097034484 + outSlope: 0.097034484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.0678721 + inSlope: -0.8010284 + outSlope: -0.8010284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.03515555 + inSlope: -1.3856016 + outSlope: -1.3856016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.024501361 + inSlope: -0.7821284 + outSlope: -0.7821284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.016986387 + inSlope: 0.18783131 + outSlope: 0.18783131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.011979272 + inSlope: -1.892699 + outSlope: -1.892699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.14316642 + inSlope: -2.6314113 + outSlope: -2.6314113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.18740675 + inSlope: 0.3022517 + outSlope: 0.3022517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.123016216 + inSlope: 1.3842849 + outSlope: 1.3842849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.09512106 + inSlope: 0.9201752 + outSlope: 0.9201752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.061671264 + inSlope: 0.682238 + outSlope: 0.682238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.049638532 + inSlope: 0.18049051 + outSlope: 0.18049051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.16408126 + inSlope: 1.0857943 + outSlope: 1.0857943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.107526936 + inSlope: 0.16001323 + outSlope: 0.16001323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.117220566 + inSlope: -0.6917776 + outSlope: -0.6917776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.15364544 + inSlope: -0.67102194 + outSlope: -0.67102194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.16195536 + inSlope: -0.14507867 + outSlope: -0.14507867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.16331735 + inSlope: -0.42164508 + outSlope: -0.42164508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.19006503 + inSlope: -0.6834296 + outSlope: -0.6834296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.20887932 + inSlope: 0.1882819 + outSlope: 0.1882819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.1775129 + inSlope: 0.9789415 + outSlope: 0.9789415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.14361656 + inSlope: 0.5407825 + outSlope: 0.5407825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.14146073 + inSlope: -0.05948819 + outSlope: -0.05948819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.14758244 + inSlope: -0.100272074 + outSlope: -0.100272074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.13645536 + inSlope: 0.12733486 + outSlope: 0.12733486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.132186 + inSlope: -0.1965886 + outSlope: -0.1965886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.16083905 + inSlope: -0.7305443 + outSlope: -0.7305443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.19143116 + inSlope: -1.91464 + outSlope: -1.91464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.28848177 + inSlope: -5.260618 + outSlope: -5.260618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.54213935 + inSlope: -4.271775 + outSlope: -4.271775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.5732669 + inSlope: 3.3292615 + outSlope: 3.3292615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.32018834 + inSlope: 5.84037 + outSlope: 5.84037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.18390885 + inSlope: 1.8624859 + outSlope: 1.8624859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.19602276 + inSlope: -0.031873286 + outSlope: -0.031873286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.18603376 + inSlope: 0.27974036 + outSlope: 0.27974036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.17737342 + inSlope: 0.32928702 + outSlope: 0.32928702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.16408126 + inSlope: 0.19938193 + outSlope: 0.19938193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.32693702 + inSlope: 3.4863753 + outSlope: 3.4863753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.44314954 + inSlope: 2.9691024 + outSlope: 2.9691024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5248772 + inSlope: 1.7636011 + outSlope: 1.7636011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.56072295 + inSlope: 1.2268505 + outSlope: 1.2268505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.6685965 + inSlope: 2.028347 + outSlope: 2.028347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.7418904 + inSlope: 2.7089415 + outSlope: 2.7089415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.8491926 + inSlope: 3.564883 + outSlope: 3.564883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9795492 + inSlope: 2.0119464 + outSlope: 2.0119464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.9833224 + inSlope: -1.8298405 + outSlope: -1.8298405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.85755986 + inSlope: -4.437656 + outSlope: -4.437656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5115555 + inSlope: -5.086969 + outSlope: -5.086969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.1997327 + inSlope: -4.2556086 + outSlope: -4.2556086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.06464017 + inSlope: -3.4859445 + outSlope: -3.4859445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.032663554 + inSlope: -2.3679976 + outSlope: -2.3679976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.09322646 + inSlope: -1.5458351 + outSlope: -1.5458351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.13571924 + inSlope: -0.7353994 + outSlope: -0.7353994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.11389657 + inSlope: 1.3956954 + outSlope: 1.3956954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.04920667 + inSlope: 0.89645606 + outSlope: 0.89645606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.05413278 + inSlope: -0.24086995 + outSlope: -0.24086995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.06526467 + inSlope: -0.63528323 + outSlope: -0.63528323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.096485026 + inSlope: -0.5319994 + outSlope: -0.5319994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.10073132 + inSlope: 0.1980224 + outSlope: 0.1980224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.083283514 + inSlope: 0.68541783 + outSlope: 0.68541783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.05503681 + inSlope: 1.0281022 + outSlope: 1.0281022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.014743365 + inSlope: 1.9120874 + outSlope: 1.9120874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.07243563 + inSlope: 3.0894895 + outSlope: 3.0894895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.1912224 + inSlope: 3.8174992 + outSlope: 3.8174992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.32693583 + inSlope: 2.035696 + outSlope: 2.035696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.017944135 + inSlope: -0.18850994 + outSlope: -0.18850994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0242278 + inSlope: -0.055833418 + outSlope: -0.055833418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.021666363 + inSlope: 0.010155264 + outSlope: 0.010155264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.023550782 + inSlope: -0.07948469 + outSlope: -0.07948469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.026965342 + inSlope: 0.010570668 + outSlope: 0.010570668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.022846071 + inSlope: 0.19428465 + outSlope: 0.19428465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.014013029 + inSlope: 0.30914843 + outSlope: 0.30914843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0022361723 + inSlope: 0.11190482 + outSlope: 0.11190482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.006552707 + inSlope: 0.3986986 + outSlope: 0.3986986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.024343733 + inSlope: 1.2212551 + outSlope: 1.2212551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0748643 + inSlope: 1.3064275 + outSlope: 1.3064275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.11143889 + inSlope: 0.7894777 + outSlope: 0.7894777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.13601021 + inSlope: 0.30271393 + outSlope: 0.30271393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.14767708 + inSlope: 0.22849455 + outSlope: 0.22849455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.15124318 + inSlope: 0.12150317 + outSlope: 0.12150317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.15577729 + inSlope: 0.15166137 + outSlope: 0.15166137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.16135395 + inSlope: -0.0778453 + outSlope: -0.0778453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.15058762 + inSlope: -0.44202685 + outSlope: -0.44202685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.13188548 + inSlope: -0.38272786 + outSlope: -0.38272786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.12507242 + inSlope: -0.21189217 + outSlope: -0.21189217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11775934 + inSlope: -0.21456969 + outSlope: -0.21456969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.110767774 + inSlope: -0.502946 + outSlope: -0.502946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.08422959 + inSlope: -0.43903702 + outSlope: -0.43903702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.081498615 + inSlope: -0.06120587 + outSlope: -0.06120587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.080149196 + inSlope: -0.017924888 + outSlope: -0.017924888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.080303624 + inSlope: -0.14231692 + outSlope: -0.14231692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.07066141 + inSlope: -0.4588706 + outSlope: -0.4588706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.049712244 + inSlope: -0.70759404 + outSlope: -0.70759404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.023488482 + inSlope: -0.76510227 + outSlope: -0.76510227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.0012945245 + inSlope: -0.6214735 + outSlope: -0.6214735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.017943103 + inSlope: -0.24972801 + outSlope: -0.24972801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.001884203 + inSlope: -1.3734181 + outSlope: -1.3734181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.04766481 + inSlope: -0.6478206 + outSlope: -0.6478206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.045072246 + inSlope: 1.2745008 + outSlope: 1.2745008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.037301928 + inSlope: 2.1881378 + outSlope: 2.1881378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.10080361 + inSlope: 1.2473775 + outSlope: 1.2473775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.12046043 + inSlope: 0.03605178 + outSlope: 0.03605178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.049360685 + inSlope: -2.171435 + outSlope: -2.171435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.041555278 + inSlope: -0.88948315 + outSlope: -0.88948315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.009938191 + inSlope: 1.3279305 + outSlope: 1.3279305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.04697342 + inSlope: 1.1611778 + outSlope: 1.1611778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.06747366 + inSlope: 0.4594058 + outSlope: 0.4594058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.07760048 + inSlope: 0.36195672 + outSlope: 0.36195672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.09160411 + inSlope: 0.50268 + outSlope: 0.50268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.111112475 + inSlope: 0.48444104 + outSlope: 0.48444104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.13348964 + inSlope: 0.23755176 + outSlope: 0.23755176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.13973697 + inSlope: -0.24931216 + outSlope: -0.24931216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.11686885 + inSlope: -1.5225767 + outSlope: -1.5225767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0382318 + inSlope: -2.4308555 + outSlope: -2.4308555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.04518817 + inSlope: -3.3401716 + outSlope: -3.3401716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.18444633 + inSlope: -1.2708764 + outSlope: -1.2708764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.12991343 + inSlope: 2.1115963 + outSlope: 2.1115963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.043673225 + inSlope: 2.69037 + outSlope: 2.69037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.04944473 + inSlope: 2.2513914 + outSlope: 2.2513914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.10641956 + inSlope: 1.3737311 + outSlope: 1.3737311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.13738036 + inSlope: -0.8321606 + outSlope: -0.8321606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.09639061 + inSlope: -1.3993614 + outSlope: -1.3993614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.04408969 + inSlope: -1.4741212 + outSlope: -1.4741212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0018842028 + inSlope: -0.6896066 + outSlope: -0.6896066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Upper Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.74872965 + inSlope: 2.2714734 + outSlope: 2.2714734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.86214876 + inSlope: 0.18634117 + outSlope: 0.18634117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.83686817 + inSlope: -0.7925328 + outSlope: -0.7925328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.7974754 + inSlope: -0.1385996 + outSlope: -0.1385996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.8167003 + inSlope: 1.0534806 + outSlope: 1.0534806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.8703053 + inSlope: -0.45372784 + outSlope: -0.45372784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.78645176 + inSlope: -4.5182824 + outSlope: -4.5182824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.5690865 + inSlope: -6.625868 + outSlope: -6.625868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.34472725 + inSlope: -5.8152146 + outSlope: -5.8152146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.1814054 + inSlope: -3.6499157 + outSlope: -3.6499157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.101399414 + inSlope: -1.5451467 + outSlope: -1.5451467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.07839563 + inSlope: -0.14273572 + outSlope: -0.14273572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.14194362 + inSlope: 2.0186882 + outSlope: 2.0186882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.35549188 + inSlope: 4.7244005 + outSlope: 4.7244005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5414231 + inSlope: 5.644141 + outSlope: 5.644141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.73176795 + inSlope: 6.0561323 + outSlope: 6.0561323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.9451652 + inSlope: 2.839227 + outSlope: 2.839227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.92104995 + inSlope: -1.7236984 + outSlope: -1.7236984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.83025193 + inSlope: -3.5481215 + outSlope: -3.5481215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.6845083 + inSlope: -3.5188994 + outSlope: -3.5188994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.5956586 + inSlope: -2.1435559 + outSlope: -2.1435559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.5415154 + inSlope: 0.9672891 + outSlope: 0.9672891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6595868 + inSlope: 2.397457 + outSlope: 2.397457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.74872714 + inSlope: 1.3371018 + outSlope: 1.3371018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.053544436 + inSlope: 0.73403597 + outSlope: 0.73403597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0780123 + inSlope: 0.26694098 + outSlope: 0.26694098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0713405 + inSlope: -1.0680232 + outSlope: -1.0680232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0068107457 + inSlope: -1.8270116 + outSlope: -1.8270116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.050460275 + inSlope: -1.2683414 + outSlope: -1.2683414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.07774534 + inSlope: -0.3927366 + outSlope: -0.3927366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.076642714 + inSlope: 0.6091749 + outSlope: 0.6091749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.037133683 + inSlope: 1.8593109 + outSlope: 1.8593109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.04731133 + inSlope: 1.2686349 + outSlope: 1.2686349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.047441967 + inSlope: -0.52775216 + outSlope: -0.52775216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.012127854 + inSlope: -0.39433795 + outSlope: -0.39433795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.021152772 + inSlope: 0.9120701 + outSlope: 0.9120701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.07293257 + inSlope: 0.8891837 + outSlope: 0.8891837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.08043173 + inSlope: -0.47874957 + outSlope: -0.47874957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.041015934 + inSlope: -1.0911922 + outSlope: -1.0911922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.007685618 + inSlope: -0.5696711 + outSlope: -0.5696711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0030378916 + inSlope: 0.0671064 + outSlope: 0.0671064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.012159382 + inSlope: 0.38818622 + outSlope: 0.38818622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.028916962 + inSlope: 0.93908894 + outSlope: 0.93908894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.07476533 + inSlope: 1.5002744 + outSlope: 1.5002744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.12893525 + inSlope: 2.1329389 + outSlope: 2.1329389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.21696128 + inSlope: 0.578177 + outSlope: 0.578177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.1674805 + inSlope: -1.6358074 + outSlope: -1.6358074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.10790745 + inSlope: -2.0606735 + outSlope: -2.0606735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.03010216 + inSlope: -1.7419355 + outSlope: -1.7419355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0082216095 + inSlope: -0.8947576 + outSlope: -0.8947576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.029548334 + inSlope: -0.45859405 + outSlope: -0.45859405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.038794555 + inSlope: -0.03193497 + outSlope: -0.03193497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.031677317 + inSlope: 0.46805874 + outSlope: 0.46805874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.0075906557 + inSlope: 0.8486558 + outSlope: 0.8486558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.024899682 + inSlope: 0.91701996 + outSlope: 0.91701996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.053544052 + inSlope: 0.42966443 + outSlope: 0.42966443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Lower Leg Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.18987535 + inSlope: -0.5521363 + outSlope: -0.5521363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.24420106 + inSlope: -1.5194969 + outSlope: -1.5194969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.3095797 + inSlope: -1.9443158 + outSlope: -1.9443158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.37382212 + inSlope: -1.915746 + outSlope: -1.915746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.46096998 + inSlope: 0.45976254 + outSlope: 0.45976254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.40664527 + inSlope: 3.568507 + outSlope: 3.568507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.22306953 + inSlope: 5.4576526 + outSlope: 5.4576526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.042801782 + inSlope: 5.8897963 + outSlope: 5.8897963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.16958351 + inSlope: 5.318738 + outSlope: 5.318738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.31178072 + inSlope: 1.2371606 + outSlope: 1.2371606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.25206083 + inSlope: -2.3051662 + outSlope: -2.3051662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.15810293 + inSlope: -2.4613132 + outSlope: -2.4613132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0879733 + inSlope: -2.5731134 + outSlope: -2.5731134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.013437869 + inSlope: -3.1928601 + outSlope: -3.1928601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.12488405 + inSlope: -2.9606376 + outSlope: -2.9606376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.21081388 + inSlope: -1.1035595 + outSlope: -1.1035595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.19845477 + inSlope: 0.90104747 + outSlope: 0.90104747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.15074402 + inSlope: 0.7065721 + outSlope: 0.7065721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.15134992 + inSlope: 1.4184653 + outSlope: 1.4184653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.05617959 + inSlope: 2.2198339 + outSlope: 2.2198339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0033609527 + inSlope: 1.8130116 + outSlope: 1.8130116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.06468786 + inSlope: 1.3145876 + outSlope: 1.3145876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0842783 + inSlope: -0.14655611 + outSlope: -0.14655611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0549175 + inSlope: -1.7898458 + outSlope: -1.7898458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0350448 + inSlope: -2.5900996 + outSlope: -2.5900996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.1177558 + inSlope: -2.016681 + outSlope: -2.016681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.16949016 + inSlope: -1.2155273 + outSlope: -1.2155273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.2050156 + inSlope: 0.13375147 + outSlope: 0.13375147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.18987416 + inSlope: 0.22712104 + outSlope: 0.22712104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.008368271 + inSlope: -0.49566314 + outSlope: -0.49566314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.024890376 + inSlope: 0.16927223 + outSlope: 0.16927223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0029165451 + inSlope: 0.96208036 + outSlope: 0.96208036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.03924832 + inSlope: 1.1405892 + outSlope: 1.1405892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.07895583 + inSlope: 0.8046371 + outSlope: 0.8046371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.09289079 + inSlope: -0.15523674 + outSlope: -0.15523674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.068606704 + inSlope: -1.3192633 + outSlope: -1.3192633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0049398975 + inSlope: -2.5623245 + outSlope: -2.5623245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.10221492 + inSlope: -3.6027837 + outSlope: -3.6027837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.23524566 + inSlope: -4.1772747 + outSlope: -4.1772747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.3806999 + inSlope: -2.7472892 + outSlope: -2.7472892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.41839826 + inSlope: 0.8213033 + outSlope: 0.8213033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.32594627 + inSlope: 2.46703 + outSlope: 2.46703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.25392953 + inSlope: 1.3183916 + outSlope: 1.3183916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.2380535 + inSlope: 0.56818897 + outSlope: 0.56818897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.21605028 + inSlope: 0.061570197 + outSlope: 0.061570197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.23394886 + inSlope: -0.4786713 + outSlope: -0.4786713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.24796173 + inSlope: 0.08696774 + outSlope: 0.08696774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.22815104 + inSlope: 0.27783313 + outSlope: 0.27783313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.22943954 + inSlope: -0.046846576 + outSlope: -0.046846576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.23127414 + inSlope: -0.49604312 + outSlope: -0.49604312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2625091 + inSlope: 1.0219388 + outSlope: 1.0219388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.163145 + inSlope: 3.449687 + outSlope: 3.449687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.032529965 + inSlope: 2.5257034 + outSlope: 2.5257034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0052353647 + inSlope: 1.3687036 + outSlope: 1.3687036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.058716923 + inSlope: 1.5044208 + outSlope: 1.5044208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.105530076 + inSlope: 1.0457573 + outSlope: 1.0457573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.12843409 + inSlope: 0.16046901 + outSlope: 0.16046901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.11622798 + inSlope: -0.81478626 + outSlope: -0.81478626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.07411504 + inSlope: -1.3655608 + outSlope: -1.3655608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.025190683 + inSlope: -1.237236 + outSlope: -1.237236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.008367398 + inSlope: -0.5033699 + outSlope: -0.5033699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Foot Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09943448 + inSlope: 0.18005332 + outSlope: 0.18005332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.10061293 + inSlope: -0.43561244 + outSlope: -0.43561244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.11992784 + inSlope: -0.76371205 + outSlope: -0.76371205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.15152708 + inSlope: -1.4444269 + outSlope: -1.4444269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.21622297 + inSlope: -3.606145 + outSlope: -3.606145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.39193672 + inSlope: -4.896468 + outSlope: -4.896468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.54265416 + inSlope: -1.2207404 + outSlope: -1.2207404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.4733194 + inSlope: 4.458062 + outSlope: 4.458062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.24545003 + inSlope: 3.1520321 + outSlope: 3.1520321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.26318395 + inSlope: -0.16866311 + outSlope: -0.16866311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.25669426 + inSlope: 0.98433363 + outSlope: 0.98433363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.19756171 + inSlope: 1.1860349 + outSlope: 1.1860349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.17762528 + inSlope: 0.6694744 + outSlope: 0.6694744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.15293008 + inSlope: 0.58894086 + outSlope: 0.58894086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.13836253 + inSlope: 0.34626016 + outSlope: 0.34626016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.12985541 + inSlope: -0.17759213 + outSlope: -0.17759213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.14168553 + inSlope: 0.06680541 + outSlope: 0.06680541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.12540169 + inSlope: -0.39080048 + outSlope: -0.39080048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.16773884 + inSlope: -1.6390591 + outSlope: -1.6390591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.23467231 + inSlope: -0.9225747 + outSlope: -0.9225747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.22924387 + inSlope: 1.2490829 + outSlope: 1.2490829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.15140018 + inSlope: 1.5976483 + outSlope: 1.5976483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.12273404 + inSlope: 0.37374374 + outSlope: 0.37374374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.1264839 + inSlope: 0.036183767 + outSlope: 0.036183767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.12032178 + inSlope: 0.20487967 + outSlope: 0.20487967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.10600743 + inSlope: 0.20086868 + outSlope: 0.20086868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.099434 + inSlope: 0.098601095 + outSlope: 0.098601095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Toes Up-Down + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.97533107 + inSlope: 0.45777616 + outSlope: 0.45777616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.9502772 + inSlope: 0.31725252 + outSlope: 0.31725252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.9389217 + inSlope: 0.66458166 + outSlope: 0.66458166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.87578344 + inSlope: 0.3373406 + outSlope: 0.3373406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.91619295 + inSlope: -0.7639325 + outSlope: -0.7639325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -1.0017793 + inSlope: -1.1413947 + outSlope: -1.1413947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -1.0885094 + inSlope: -0.53527063 + outSlope: -0.53527063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -1.0534962 + inSlope: 0.83613586 + outSlope: 0.83613586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.9760376 + inSlope: 0.74984026 + outSlope: 0.74984026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.95376337 + inSlope: 0.29730737 + outSlope: 0.29730737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.96215063 + inSlope: 0.2648337 + outSlope: 0.2648337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.9226363 + inSlope: 0.24226944 + outSlope: 0.24226944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.91153014 + inSlope: 0.34164637 + outSlope: 0.34164637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.8996338 + inSlope: -0.018879518 + outSlope: -0.018879518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.92594564 + inSlope: -0.3088563 + outSlope: -0.3088563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.9333792 + inSlope: -0.45422626 + outSlope: -0.45422626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.97533244 + inSlope: -0.2865754 + outSlope: -0.2865754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.56556976 + inSlope: 1.848843 + outSlope: 1.848843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.44679528 + inSlope: 1.3193681 + outSlope: 1.3193681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.41598377 + inSlope: 1.0293803 + outSlope: 1.0293803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.37816992 + inSlope: 1.4317338 + outSlope: 1.4317338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.32053486 + inSlope: 1.2927107 + outSlope: 1.2927107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.2919892 + inSlope: 0.01961121 + outSlope: 0.01961121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.31922743 + inSlope: -0.6980664 + outSlope: -0.6980664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.33852696 + inSlope: -0.34842166 + outSlope: -0.34842166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.34245554 + inSlope: -0.68029946 + outSlope: -0.68029946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.42668065 + inSlope: -0.8534327 + outSlope: -0.8534327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.44077578 + inSlope: -0.5269015 + outSlope: -0.5269015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.46180743 + inSlope: -0.84622943 + outSlope: -0.84622943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.52749956 + inSlope: -0.76197195 + outSlope: -0.76197195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.6061699 + inSlope: -1.0357416 + outSlope: -1.0357416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.6854154 + inSlope: -0.546252 + outSlope: -0.546252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.6424427 + inSlope: 1.0208141 + outSlope: 1.0208141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.60465974 + inSlope: 0.8231149 + outSlope: 0.8231149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.5875684 + inSlope: 0.17203838 + outSlope: 0.17203838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.598822 + inSlope: -0.10705049 + outSlope: -0.10705049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.58898884 + inSlope: 0.5213232 + outSlope: 0.5213232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.56557226 + inSlope: 0.35124776 + outSlope: 0.35124776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2814227 + inSlope: -1.5524366 + outSlope: -1.5524366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.43824235 + inSlope: -1.5892749 + outSlope: -1.5892749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.5263831 + inSlope: -0.5706472 + outSlope: -0.5706472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.4808551 + inSlope: 0.94410276 + outSlope: 0.94410276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.39859062 + inSlope: 1.5522771 + outSlope: 1.5522771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.2370264 + inSlope: 1.3063474 + outSlope: 1.3063474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.16800173 + inSlope: 0.99825317 + outSlope: 0.99825317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.092072606 + inSlope: 1.2688746 + outSlope: 1.2688746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.048000533 + inSlope: 1.4273303 + outSlope: 1.4273303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0030827436 + inSlope: 1.3219628 + outSlope: 1.3219628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.040130336 + inSlope: 1.0984977 + outSlope: 1.0984977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.076315925 + inSlope: 0.8515122 + outSlope: 0.8515122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.096897826 + inSlope: 0.25603956 + outSlope: 0.25603956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.093385205 + inSlope: -0.49053395 + outSlope: -0.49053395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.064195536 + inSlope: -1.1410733 + outSlope: -1.1410733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.017313665 + inSlope: -1.6025116 + outSlope: -1.6025116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.04263858 + inSlope: -1.593837 + outSlope: -1.593837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.08894215 + inSlope: -1.2359074 + outSlope: -1.2359074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.1250324 + inSlope: -1.2316917 + outSlope: -1.2316917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.22580805 + inSlope: -1.6555226 + outSlope: -1.6555226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.28142318 + inSlope: -0.8342247 + outSlope: -0.8342247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.28284806 + inSlope: 1.0382116 + outSlope: 1.0382116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.4134911 + inSlope: 0.17193095 + outSlope: 0.17193095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.4144996 + inSlope: 0.024012925 + outSlope: 0.024012925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.39177668 + inSlope: -0.6225873 + outSlope: -0.6225873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.30630827 + inSlope: -0.80948615 + outSlope: -0.80948615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.23970605 + inSlope: -0.44618875 + outSlope: -0.44618875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.21875916 + inSlope: -0.16686505 + outSlope: -0.16686505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.21670999 + inSlope: -0.0518885 + outSlope: -0.0518885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.21686436 + inSlope: 0.2395879 + outSlope: 0.2395879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.25005555 + inSlope: 0.0060535744 + outSlope: 0.0060535744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.23515041 + inSlope: -0.11149081 + outSlope: -0.11149081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.2521743 + inSlope: 0.6935906 + outSlope: 0.6935906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.2828477 + inSlope: 0.46010002 + outSlope: 0.46010002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.043690138 + inSlope: 0.5907431 + outSlope: 0.5907431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.023998698 + inSlope: 0.6247108 + outSlope: 0.6247108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0020427466 + inSlope: 0.6587578 + outSlope: 0.6587578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.019918494 + inSlope: 0.64203215 + outSlope: 0.64203215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0407594 + inSlope: 0.4601959 + outSlope: 0.4601959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.05059822 + inSlope: 0.15490474 + outSlope: 0.15490474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.05108638 + inSlope: -0.18308665 + outSlope: -0.18308665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.038392443 + inSlope: -0.39135802 + outSlope: -0.39135802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.024995847 + inSlope: -0.31315732 + outSlope: -0.31315732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.017515289 + inSlope: -0.20210868 + outSlope: -0.20210868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0115219345 + inSlope: -0.12208853 + outSlope: -0.12208853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.009376054 + inSlope: 0.26194453 + outSlope: 0.26194453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.028984921 + inSlope: 0.70338154 + outSlope: 0.70338154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.056268174 + inSlope: 0.6223105 + outSlope: 0.6223105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.07165565 + inSlope: -0.12159089 + outSlope: -0.12159089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.062366217 + inSlope: -0.4100291 + outSlope: -0.4100291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.044320356 + inSlope: -0.5657489 + outSlope: -0.5657489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.02464963 + inSlope: -0.586709 + outSlope: -0.586709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.005206421 + inSlope: -0.6094624 + outSlope: -0.6094624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.015981194 + inSlope: -0.66136 + outSlope: -0.66136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.038884245 + inSlope: -0.49505436 + outSlope: -0.49505436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.048984826 + inSlope: -0.017222166 + outSlope: -0.017222166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.040032372 + inSlope: 0.51208216 + outSlope: 0.51208216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.014845986 + inSlope: 0.81582713 + outSlope: 0.81582713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0143560935 + inSlope: 0.6064899 + outSlope: 0.6064899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.025586657 + inSlope: -0.03529398 + outSlope: -0.03529398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.012003184 + inSlope: -0.5917477 + outSlope: -0.5917477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.013863199 + inSlope: -0.7049744 + outSlope: -0.7049744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.03499511 + inSlope: -0.45474452 + outSlope: -0.45474452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.04417947 + inSlope: -0.13042 + outSlope: -0.13042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.043689765 + inSlope: 0.0073455456 + outSlope: 0.0073455456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7061415 + inSlope: 0.008488297 + outSlope: 0.008488297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.74368215 + inSlope: 0.7353525 + outSlope: 0.7353525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.7905217 + inSlope: 0.2446756 + outSlope: 0.2446756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.6978652 + inSlope: -1.0054293 + outSlope: -1.0054293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.56714505 + inSlope: -1.7089792 + outSlope: -1.7089792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.50508994 + inSlope: -2.2107522 + outSlope: -2.2107522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.33024728 + inSlope: -2.4716957 + outSlope: -2.4716957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.25498176 + inSlope: -2.1319923 + outSlope: -2.1319923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.14003819 + inSlope: -0.9780912 + outSlope: -0.9780912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.12290836 + inSlope: -0.1652199 + outSlope: -0.1652199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12902355 + inSlope: 0.49061933 + outSlope: 0.49061933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.28822017 + inSlope: 2.9562612 + outSlope: 2.9562612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.40297267 + inSlope: 3.55765 + outSlope: 3.55765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.5253968 + inSlope: 3.132823 + outSlope: 3.132823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6727047 + inSlope: 1.4147048 + outSlope: 1.4147048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.70614123 + inSlope: 0.50154674 + outSlope: 0.50154674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13842803 + inSlope: 0.043407973 + outSlope: 0.043407973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.13987496 + inSlope: -0.06329387 + outSlope: -0.06329387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.13420844 + inSlope: -0.07005728 + outSlope: -0.07005728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.13520448 + inSlope: 0.13609663 + outSlope: 0.13609663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.15115224 + inSlope: 0.16648112 + outSlope: 0.16648112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.15438029 + inSlope: 0.041060355 + outSlope: 0.041060355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.1538896 + inSlope: -0.16396591 + outSlope: -0.16396591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.14344923 + inSlope: -0.31074446 + outSlope: -0.31074446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.12717354 + inSlope: -0.010327622 + outSlope: -0.010327622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.13544393 + inSlope: -0.1287092 + outSlope: -0.1287092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.10081852 + inSlope: -0.7712837 + outSlope: -0.7712837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0724853 + inSlope: -0.7273997 + outSlope: -0.7273997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.052325215 + inSlope: -0.47942162 + outSlope: -0.47942162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.04052383 + inSlope: -0.5056644 + outSlope: -0.5056644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.018614266 + inSlope: -0.7359012 + outSlope: -0.7359012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.008536249 + inSlope: -0.6336379 + outSlope: -0.6336379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.02362827 + inSlope: -0.3641544 + outSlope: -0.3641544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.032813203 + inSlope: -0.3613618 + outSlope: -0.3613618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.04771905 + inSlope: -0.3916354 + outSlope: -0.3916354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.058922224 + inSlope: -0.17121972 + outSlope: -0.17121972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.05913371 + inSlope: 0.104448564 + outSlope: 0.104448564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.051958993 + inSlope: 0.5993036 + outSlope: 0.5993036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.019180115 + inSlope: 1.2667823 + outSlope: 1.2667823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.03249314 + inSlope: 1.4099958 + outSlope: 1.4099958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.074819595 + inSlope: 1.0359482 + outSlope: 1.0359482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.10155636 + inSlope: 0.70947707 + outSlope: 0.70947707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.12211802 + inSlope: 0.5530756 + outSlope: 0.5530756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.13842809 + inSlope: 0.24465045 + outSlope: 0.24465045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16305429 + inSlope: -1.1540935 + outSlope: -1.1540935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.1245845 + inSlope: -0.87418497 + outSlope: -0.87418497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.10477529 + inSlope: -0.34354612 + outSlope: -0.34354612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.101681426 + inSlope: -0.14342186 + outSlope: -0.14342186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.09521383 + inSlope: -0.28716916 + outSlope: -0.28716916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.08253682 + inSlope: -0.37886968 + outSlope: -0.37886968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.06995585 + inSlope: -0.04594873 + outSlope: -0.04594873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.07947356 + inSlope: 0.30441108 + outSlope: 0.30441108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.09024992 + inSlope: 0.027619153 + outSlope: 0.027619153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.08131484 + inSlope: -0.028502278 + outSlope: -0.028502278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08834977 + inSlope: 0.39077765 + outSlope: 0.39077765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10736668 + inSlope: 0.4342189 + outSlope: 0.4342189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.1172977 + inSlope: 0.3412553 + outSlope: 0.3412553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.13011704 + inSlope: 0.47023207 + outSlope: 0.47023207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.1486465 + inSlope: 0.39165875 + outSlope: 0.39165875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.15622762 + inSlope: -0.023416795 + outSlope: -0.023416795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.14708537 + inSlope: 0.06001103 + outSlope: 0.06001103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.16022836 + inSlope: 0.821967 + outSlope: 0.821967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.20188314 + inSlope: 1.4136226 + outSlope: 1.4136226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.25446987 + inSlope: 1.9973191 + outSlope: 1.9973191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3350377 + inSlope: 2.5905652 + outSlope: 2.5905652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.4271742 + inSlope: 2.219766 + outSlope: 2.219766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.48302212 + inSlope: 1.0105922 + outSlope: 1.0105922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.49454698 + inSlope: 0.3551434 + outSlope: 0.3551434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.50669837 + inSlope: 0.51919675 + outSlope: 0.51919675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.5291601 + inSlope: 0.62416804 + outSlope: 0.62416804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.54830956 + inSlope: -0.20323169 + outSlope: -0.20323169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.51561135 + inSlope: -2.0170925 + outSlope: -2.0170925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.4138367 + inSlope: -3.1275797 + outSlope: -3.1275797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.30710605 + inSlope: -2.8935606 + outSlope: -2.8935606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.22093283 + inSlope: -2.1607866 + outSlope: -2.1607866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.16305354 + inSlope: -0.868187 + outSlope: -0.868187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0817285 + inSlope: -1.0514678 + outSlope: -1.0514678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.046679575 + inSlope: -1.1084764 + outSlope: -1.1084764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0078300685 + inSlope: -1.2487044 + outSlope: -1.2487044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.036567397 + inSlope: -1.0973909 + outSlope: -1.0973909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.065329336 + inSlope: -0.47813988 + outSlope: -0.47813988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.06844339 + inSlope: 0.5192365 + outSlope: 0.5192365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.030713554 + inSlope: 1.9994748 + outSlope: 1.9994748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.064854935 + inSlope: 3.1701574 + outSlope: 3.1701574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.18063025 + inSlope: 2.1549423 + outSlope: 2.1549423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.20851775 + inSlope: -0.46009076 + outSlope: -0.46009076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.14995754 + inSlope: -1.5831718 + outSlope: -1.5831718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10297296 + inSlope: -0.75605893 + outSlope: -0.75605893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.09955361 + inSlope: 0.15969531 + outSlope: 0.15969531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.11361931 + inSlope: 0.4148659 + outSlope: 0.4148659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.12721133 + inSlope: 0.45066702 + outSlope: 0.45066702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.14366376 + inSlope: 0.13381463 + outSlope: 0.13381463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.13613228 + inSlope: -0.44225276 + outSlope: -0.44225276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.11418022 + inSlope: -0.3687833 + outSlope: -0.3687833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.11154672 + inSlope: 0.017568383 + outSlope: 0.017568383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.11535145 + inSlope: 0.21848111 + outSlope: 0.21848111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.12611212 + inSlope: -0.07814805 + outSlope: -0.07814805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11014156 + inSlope: -0.9178213 + outSlope: -0.9178213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06492406 + inSlope: -0.98381096 + outSlope: -0.98381096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.04455419 + inSlope: -0.3463688 + outSlope: -0.3463688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.04183279 + inSlope: -0.13675612 + outSlope: -0.13675612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.03543712 + inSlope: -0.66546947 + outSlope: -0.66546947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0025318693 + inSlope: -1.5274775 + outSlope: -1.5274775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.066394694 + inSlope: -1.1185732 + outSlope: -1.1185732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.07710336 + inSlope: 0.59782064 + outSlope: 0.59782064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.026540043 + inSlope: 1.7473403 + outSlope: 1.7473403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.03938588 + inSlope: 1.6240177 + outSlope: 1.6240177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.081727855 + inSlope: 0.63512796 + outSlope: 0.63512796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Left Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.0534219 + inSlope: 0.49541828 + outSlope: 0.49541828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.0369079 + inSlope: 0.98887944 + outSlope: 0.98887944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.93248695 + inSlope: 0.9886845 + outSlope: 0.9886845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.9316735 + inSlope: 0.16754673 + outSlope: 0.16754673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.881002 + inSlope: 0.5190191 + outSlope: 0.5190191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.9059748 + inSlope: -0.6041149 + outSlope: -0.6041149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.9228113 + inSlope: -0.117729455 + outSlope: -0.117729455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.9138234 + inSlope: 0.022695832 + outSlope: 0.022695832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.99122185 + inSlope: 0.14448634 + outSlope: 0.14448634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.9189081 + inSlope: -0.45485228 + outSlope: -0.45485228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -1.0778229 + inSlope: -1.3955784 + outSlope: -1.3955784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -1.1214379 + inSlope: -0.69697434 + outSlope: -0.69697434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.0822378 + inSlope: 0.7870898 + outSlope: 0.7870898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -1.0534259 + inSlope: 0.43217784 + outSlope: 0.43217784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.24322718 + inSlope: -0.61201656 + outSlope: -0.61201656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.28634688 + inSlope: -0.7884357 + outSlope: -0.7884357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.31619012 + inSlope: -1.3752204 + outSlope: -1.3752204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.37802824 + inSlope: -2.1094596 + outSlope: -2.1094596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.45682076 + inSlope: -1.7893761 + outSlope: -1.7893761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.49732 + inSlope: -0.51540637 + outSlope: -0.51540637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.4911812 + inSlope: 0.6551631 + outSlope: 0.6551631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.45364246 + inSlope: 0.97021407 + outSlope: 0.97021407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.4107439 + inSlope: 0.4204707 + outSlope: 0.4204707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.39846888 + inSlope: 0.17768921 + outSlope: 0.17768921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.3988722 + inSlope: 0.27678254 + outSlope: 0.27678254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.35583103 + inSlope: 0.68801665 + outSlope: 0.68801665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.3111282 + inSlope: 0.8238867 + outSlope: 0.8238867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.27965224 + inSlope: 0.9368899 + outSlope: 0.9368899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.20719825 + inSlope: 1.4483309 + outSlope: 1.4483309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.15211348 + inSlope: 1.3402886 + outSlope: 1.3402886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.117845654 + inSlope: 0.5091707 + outSlope: 0.5091707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.1181688 + inSlope: -0.19140497 + outSlope: -0.19140497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.130606 + inSlope: -0.5466384 + outSlope: -0.5466384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.15461135 + inSlope: -0.4839139 + outSlope: -0.4839139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.17040993 + inSlope: -0.40648338 + outSlope: -0.40648338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.19042441 + inSlope: -0.7384218 + outSlope: -0.7384218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.24323018 + inSlope: -0.3538817 + outSlope: -0.3538817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Shoulder Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2026422 + inSlope: 1.0400949 + outSlope: 1.0400949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.07930556 + inSlope: 1.6458004 + outSlope: 1.6458004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.018612288 + inSlope: 1.5522997 + outSlope: 1.5522997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.024181087 + inSlope: 0.9137605 + outSlope: 0.9137605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.042305082 + inSlope: 0.18697561 + outSlope: 0.18697561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.036646135 + inSlope: -0.46344906 + outSlope: -0.46344906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.01140848 + inSlope: -1.1905396 + outSlope: -1.1905396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.042723168 + inSlope: -1.8324903 + outSlope: -1.8324903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11075753 + inSlope: -1.9476409 + outSlope: -1.9476409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.17256588 + inSlope: -1.603476 + outSlope: -1.603476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.25223926 + inSlope: -1.0655869 + outSlope: -1.0655869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.355181 + inSlope: -0.86536837 + outSlope: -0.86536837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.4592095 + inSlope: -0.6184969 + outSlope: -0.6184969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.468229 + inSlope: 0.8321855 + outSlope: 0.8321855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.33102253 + inSlope: 1.2273014 + outSlope: 1.2273014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.24856697 + inSlope: 0.67378426 + outSlope: 0.67378426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.22611071 + inSlope: 0.6888908 + outSlope: 0.6888908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.20264088 + inSlope: 0.3520466 + outSlope: 0.3520466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.18309279 + inSlope: -0.3730881 + outSlope: -0.3730881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.15175664 + inSlope: -0.24106956 + outSlope: -0.24106956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.14288951 + inSlope: -0.054345798 + outSlope: -0.054345798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.14146736 + inSlope: 0.060679182 + outSlope: 0.060679182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.17548642 + inSlope: 0.6211476 + outSlope: 0.6211476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.2182595 + inSlope: 0.33032674 + outSlope: 0.33032674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.22315739 + inSlope: 0.19938672 + outSlope: 0.19938672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.33301342 + inSlope: 0.64752203 + outSlope: 0.64752203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.29745156 + inSlope: -0.91791534 + outSlope: -0.91791534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.20441929 + inSlope: -0.7323611 + outSlope: -0.7323611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.18309271 + inSlope: -0.31989774 + outSlope: -0.31989774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Front-Back + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.035802055 + inSlope: -0.37951824 + outSlope: -0.37951824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.048452664 + inSlope: -0.31324214 + outSlope: -0.31324214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.056684867 + inSlope: -0.22600755 + outSlope: -0.22600755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.063519835 + inSlope: -0.29204226 + outSlope: -0.29204226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07615435 + inSlope: -0.41727227 + outSlope: -0.41727227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.09133799 + inSlope: -0.21652323 + outSlope: -0.21652323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.09058923 + inSlope: 0.17092322 + outSlope: 0.17092322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.079943106 + inSlope: 0.18701781 + outSlope: 0.18701781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.07812138 + inSlope: -0.026918316 + outSlope: -0.026918316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.08173766 + inSlope: -0.008097254 + outSlope: -0.008097254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.077421 + inSlope: -0.10526755 + outSlope: -0.10526755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.08567904 + inSlope: -0.07486157 + outSlope: -0.07486157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.08241178 + inSlope: 0.35315666 + outSlope: 0.35315666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.062135264 + inSlope: 0.5411885 + outSlope: 0.5411885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.046332568 + inSlope: 0.37537092 + outSlope: 0.37537092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.029578561 + inSlope: 0.26538494 + outSlope: 0.26538494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.01941822 + inSlope: 0.33157596 + outSlope: 0.33157596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0074734967 + inSlope: 0.3440413 + outSlope: 0.3440413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0035178673 + inSlope: 0.30321252 + outSlope: 0.30321252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.012740667 + inSlope: 0.20919722 + outSlope: 0.20919722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.01746435 + inSlope: -0.10050698 + outSlope: -0.10050698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0060401876 + inSlope: -0.5626757 + outSlope: -0.5626757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.020047396 + inSlope: -0.76880455 + outSlope: -0.76880455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.045213446 + inSlope: -0.48363358 + outSlope: -0.48363358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.052289616 + inSlope: 0.121438496 + outSlope: 0.121438496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.037117567 + inSlope: 0.54674435 + outSlope: 0.54674435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.015839992 + inSlope: 0.3942973 + outSlope: 0.3942973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.010831067 + inSlope: -0.065540485 + outSlope: -0.065540485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.020209353 + inSlope: -0.3745643 + outSlope: -0.3745643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.03580205 + inSlope: -0.23388986 + outSlope: -0.23388986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Arm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.55694556 + inSlope: -1.0315776 + outSlope: -1.0315776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.52255964 + inSlope: -1.3113163 + outSlope: -1.3113163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.46952447 + inSlope: -1.3282285 + outSlope: -1.3282285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.4853748 + inSlope: 1.046418 + outSlope: 1.046418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5232371 + inSlope: 0.99164224 + outSlope: 0.99164224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.5765419 + inSlope: 0.98494506 + outSlope: 0.98494506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.69340324 + inSlope: 0.7534605 + outSlope: 0.7534605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.72457373 + inSlope: -0.14209013 + outSlope: -0.14209013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.70810694 + inSlope: 0.115602374 + outSlope: 0.115602374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.72563815 + inSlope: -0.36116287 + outSlope: -0.36116287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.6275723 + inSlope: -0.89863384 + outSlope: -0.89863384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5952746 + inSlope: -1.0593965 + outSlope: -1.0593965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.5569458 + inSlope: -0.5749309 + outSlope: -0.5749309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Stretch + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09039061 + inSlope: 0.24436018 + outSlope: 0.24436018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.09853595 + inSlope: 0.095565535 + outSlope: 0.095565535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.096761644 + inSlope: -0.2091062 + outSlope: -0.2091062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.08459553 + inSlope: -0.35860807 + outSlope: -0.35860807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.07285444 + inSlope: -0.2945695 + outSlope: -0.2945695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.06495757 + inSlope: -0.350898 + outSlope: -0.350898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.04946123 + inSlope: -0.5321716 + outSlope: -0.5321716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.029479453 + inSlope: -0.58111763 + outSlope: -0.58111763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.010720057 + inSlope: -0.5947329 + outSlope: -0.5947329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.010169403 + inSlope: -0.6119424 + outSlope: -0.6119424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.030076098 + inSlope: -0.49719036 + outSlope: -0.49719036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.04331542 + inSlope: -0.29207245 + outSlope: -0.29207245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.049547598 + inSlope: -0.12632264 + outSlope: -0.12632264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.051736936 + inSlope: 0.12712543 + outSlope: 0.12712543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.04107257 + inSlope: 0.6260396 + outSlope: 0.6260396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0100009935 + inSlope: 0.9701964 + outSlope: 0.9701964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.023607189 + inSlope: 0.7697737 + outSlope: 0.7697737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0413173 + inSlope: 0.44611204 + outSlope: 0.44611204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.053347994 + inSlope: 0.45316017 + outSlope: 0.45316017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.09275082 + inSlope: 0.6579734 + outSlope: 0.6579734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.13886401 + inSlope: 0.70048726 + outSlope: 0.70048726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.17732807 + inSlope: 0.16403896 + outSlope: 0.16403896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.17302796 + inSlope: -0.24666233 + outSlope: -0.24666233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.1608839 + inSlope: -0.15609276 + outSlope: -0.15609276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.16262177 + inSlope: 0.2781288 + outSlope: 0.2781288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.17942584 + inSlope: 0.3059192 + outSlope: 0.3059192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.18301639 + inSlope: -0.48301688 + outSlope: -0.48301688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.14722474 + inSlope: -1.3893774 + outSlope: -1.3893774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.09039112 + inSlope: -0.85250205 + outSlope: -0.85250205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Forearm Twist In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20749567 + inSlope: -0.7976728 + outSlope: -0.7976728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.18090658 + inSlope: -0.82095754 + outSlope: -0.82095754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.15276517 + inSlope: -0.7364565 + outSlope: -0.7364565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.13180947 + inSlope: -0.20819882 + outSlope: -0.20819882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.13888524 + inSlope: 0.39793772 + outSlope: 0.39793772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.18419431 + inSlope: 0.8574513 + outSlope: 0.8574513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.24167554 + inSlope: 0.65058947 + outSlope: 0.65058947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.27035275 + inSlope: -0.092385024 + outSlope: -0.092385024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.25212258 + inSlope: -0.38650972 + outSlope: -0.38650972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.21315077 + inSlope: -0.9396819 + outSlope: -0.9396819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.13216475 + inSlope: -1.1316963 + outSlope: -1.1316963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.07333295 + inSlope: -0.7147285 + outSlope: -0.7147285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.05157041 + inSlope: -0.5627916 + outSlope: -0.5627916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.03581352 + inSlope: -0.49920407 + outSlope: -0.49920407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.018290143 + inSlope: -0.5174848 + outSlope: -0.5174848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0013145368 + inSlope: -0.44659573 + outSlope: -0.44659573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.011482932 + inSlope: -0.39477327 + outSlope: -0.39477327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.02500368 + inSlope: -0.00054998696 + outSlope: -0.00054998696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.011519574 + inSlope: 0.94323516 + outSlope: 0.94323516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.03787863 + inSlope: 1.720494 + outSlope: 1.720494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.10318003 + inSlope: 1.7624291 + outSlope: 1.7624291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.1553739 + inSlope: 1.2385609 + outSlope: 1.2385609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.18575068 + inSlope: 0.7818206 + outSlope: 0.7818206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.2074953 + inSlope: 0.3261685 + outSlope: 0.3261685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand Down-Up + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06985296 + inSlope: 1.6615493 + outSlope: 1.6615493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.014467981 + inSlope: 1.8605412 + outSlope: 1.8605412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.05418313 + inSlope: 1.1519175 + outSlope: 1.1519175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.062326524 + inSlope: -0.37834072 + outSlope: -0.37834072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.02896042 + inSlope: -0.7904176 + outSlope: -0.7904176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.009632021 + inSlope: -0.6603774 + outSlope: -0.6603774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.015064748 + inSlope: -0.8102807 + outSlope: -0.8102807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0443867 + inSlope: -1.0912004 + outSlope: -1.0912004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.08781144 + inSlope: -1.4636203 + outSlope: -1.4636203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.14196138 + inSlope: -1.2009771 + outSlope: -1.2009771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.17562702 + inSlope: -0.18087606 + outSlope: -0.18087606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.17993498 + inSlope: 0.29414386 + outSlope: 0.29414386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.15601744 + inSlope: 0.8540061 + outSlope: 0.8540061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.12300124 + inSlope: 0.39141065 + outSlope: 0.39141065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.12992339 + inSlope: -0.5360315 + outSlope: -0.5360315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.15873669 + inSlope: -0.40820393 + outSlope: -0.40820393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.157137 + inSlope: 0.6505139 + outSlope: 0.6505139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.11536913 + inSlope: 1.38066 + outSlope: 1.38066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.065093 + inSlope: 1.407274 + outSlope: 1.407274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.02155087 + inSlope: 1.462837 + outSlope: 1.462837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.032429468 + inSlope: 1.8531239 + outSlope: 1.8531239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.101990715 + inSlope: 1.9791574 + outSlope: 1.9791574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.1643733 + inSlope: 1.8496677 + outSlope: 1.8496677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.225302 + inSlope: 1.7247026 + outSlope: 1.7247026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.27935347 + inSlope: 0.89892274 + outSlope: 0.89892274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.23664287 + inSlope: -2.2672775 + outSlope: -2.2672775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.13407826 + inSlope: -3.2266052 + outSlope: -3.2266052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.021535883 + inSlope: -2.6277728 + outSlope: -2.6277728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.04110641 + inSlope: -1.3708454 + outSlope: -1.3708454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.06985383 + inSlope: -0.43121013 + outSlope: -0.43121013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: Right Hand In-Out + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3385048 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -1.3385048 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23385501 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.23385501 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.45862255 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.52973765 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.81115097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57639545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.57639545 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.90445423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.80962366 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.4715216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.12716088 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.80865407 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.46572495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.01147902 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8060641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: LeftHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3384522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -1.3384522 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.23383965 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.6229234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Thumb.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45863408 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.45863408 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.529714 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.529714 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.81115156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Index.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57643646 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.57643646 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9042926 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.9042926 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8096237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Middle.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.47152027 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12709314 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.12709314 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8086541 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Ring.3 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4657373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.4657373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.1 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0114043495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.0114043495 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.Spread + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.8060633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.2 Stretched + path: + classID: 95 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: RightHand.Little.3 Stretched + path: + classID: 95 + script: {fileID: 0} + m_PPtrCurves: [] + m_SampleRate: 30 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: [] + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1.0333334 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: [] + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Forward.anim.meta b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Forward.anim.meta new file mode 100644 index 0000000..fc8824c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Forward.anim.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 2152f8e3746157f4ca3aba17d5963ca8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Animations/Other_Animations/Walk_Forward.anim + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Configs.meta b/Assets/ithappy/Creative_Characters_FREE/Configs.meta new file mode 100644 index 0000000..c8d7ca6 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Configs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 680a8a9553066154991a4cf78629b8ed +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Configs/SlotLibrary.asset b/Assets/ithappy/Creative_Characters_FREE/Configs/SlotLibrary.asset new file mode 100644 index 0000000..e5ccbd8 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Configs/SlotLibrary.asset @@ -0,0 +1,110 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a16f9f235a414383a767c55ae53046fb, type: 3} + m_Name: SlotLibrary + m_EditorClassIdentifier: + FullBodyCostumes: + - Slots: + - Type: 9 + GameObject: {fileID: 919132149155446097, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + - Type: 7 + GameObject: {fileID: 919132149155446097, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + - Slots: + - Type: 9 + GameObject: {fileID: 919132149155446097, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + - Type: 7 + GameObject: {fileID: 919132149155446097, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + Slots: + - Type: 1 + Groups: + - Type: 0 + Variants: + - {fileID: 919132149155446097, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + - Type: 2 + Groups: + - Type: 3 + Variants: + - {fileID: 919132149155446097, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + - {fileID: 919132149155446097, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + - {fileID: 919132149155446097, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + - Type: 9 + Groups: + - Type: 11 + Variants: + - {fileID: 919132149155446097, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + - Type: 12 + Variants: + - {fileID: 919132149155446097, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + - {fileID: 919132149155446097, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + - {fileID: 919132149155446097, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + - Type: 10 + Variants: + - {fileID: 919132149155446097, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + - Type: 10 + Groups: + - Type: 13 + Variants: + - {fileID: 919132149155446097, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + - {fileID: 919132149155446097, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + - Type: 15 + Variants: + - {fileID: 919132149155446097, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + - Type: 0 + Groups: + - Type: 2 + Variants: + - {fileID: 919132149155446097, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + - {fileID: 919132149155446097, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + - {fileID: 919132149155446097, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + - {fileID: 919132149155446097, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + - {fileID: 919132149155446097, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + - Type: 4 + Groups: + - Type: 4 + Variants: + - {fileID: 919132149155446097, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + - {fileID: 919132149155446097, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + - Type: 5 + Groups: + - Type: 5 + Variants: + - {fileID: 919132149155446097, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + - {fileID: 919132149155446097, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + - Type: 6 + Groups: + - Type: 6 + Variants: + - {fileID: 919132149155446097, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + - {fileID: 919132149155446097, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + - Type: 7 + Variants: + - {fileID: 919132149155446097, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + - Type: 7 + Groups: + - Type: 8 + Variants: + - {fileID: 919132149155446097, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + - Type: 9 + Variants: + - {fileID: 919132149155446097, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + - {fileID: 919132149155446097, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + - {fileID: 919132149155446097, guid: 59564854f919a404f8eeeb391b17c12e, type: 3} + - Type: 11 + Groups: + - Type: 14 + Variants: + - {fileID: 919132149155446097, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + - {fileID: 919132149155446097, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + - {fileID: 919132149155446097, guid: 0fc9184e885899c408b2467848981766, type: 3} + - Type: 16 + Variants: + - {fileID: 919132149155446097, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Configs/SlotLibrary.asset.meta b/Assets/ithappy/Creative_Characters_FREE/Configs/SlotLibrary.asset.meta new file mode 100644 index 0000000..bfe15f5 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Configs/SlotLibrary.asset.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 5659b2eb0e77a5644b5f73c68fb8e5d2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Configs/SlotLibrary.asset + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Materials.meta b/Assets/ithappy/Creative_Characters_FREE/Materials.meta new file mode 100644 index 0000000..409a7e8 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5cd01a9cf50b1c0438a02c0437038be7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Materials/Color.mat b/Assets/ithappy/Creative_Characters_FREE/Materials/Color.mat new file mode 100644 index 0000000..af705d8 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Materials/Color.mat @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1579796109126616956 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Color + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 601cef6ffead6614a8abd4f653eaaef5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 601cef6ffead6614a8abd4f653eaaef5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ithappy/Creative_Characters_FREE/Materials/Color.mat.meta b/Assets/ithappy/Creative_Characters_FREE/Materials/Color.mat.meta new file mode 100644 index 0000000..39c6a39 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Materials/Color.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: dbc0ac3b2e21dbd4aaface70d26b6083 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Materials/Color.mat + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Materials/Emission.mat b/Assets/ithappy/Creative_Characters_FREE/Materials/Emission.mat new file mode 100644 index 0000000..375281b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Materials/Emission.mat @@ -0,0 +1,139 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Emission + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _EMISSION + m_InvalidKeywords: [] + m_LightmapFlags: 3 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 601cef6ffead6614a8abd4f653eaaef5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 2800000, guid: 601cef6ffead6614a8abd4f653eaaef5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 601cef6ffead6614a8abd4f653eaaef5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6741832624698179018 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ithappy/Creative_Characters_FREE/Materials/Emission.mat.meta b/Assets/ithappy/Creative_Characters_FREE/Materials/Emission.mat.meta new file mode 100644 index 0000000..ff505ed --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Materials/Emission.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8d9728492f5172140873888face16c31 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Materials/Emission.mat + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Materials/Floor_checker.mat b/Assets/ithappy/Creative_Characters_FREE/Materials/Floor_checker.mat new file mode 100644 index 0000000..4cdfd65 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Materials/Floor_checker.mat @@ -0,0 +1,138 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7677348123413258198 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Floor_checker + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 10309, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 10, y: 10} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 10, y: 10} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 10309, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 10, y: 10} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ithappy/Creative_Characters_FREE/Materials/Floor_checker.mat.meta b/Assets/ithappy/Creative_Characters_FREE/Materials/Floor_checker.mat.meta new file mode 100644 index 0000000..1b1f00f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Materials/Floor_checker.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 1a7b1bad79c94ec409e3dc38d1ec9e5e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Materials/Floor_checker.mat + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Materials/Glass.mat b/Assets/ithappy/Creative_Characters_FREE/Materials/Glass.mat new file mode 100644 index 0000000..361610b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Materials/Glass.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Glass + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 601cef6ffead6614a8abd4f653eaaef5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 601cef6ffead6614a8abd4f653eaaef5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 1 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 1 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 0.34901962} + - _Color: {r: 1, g: 1, b: 1, a: 0.34901962} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5855040538816001425 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ithappy/Creative_Characters_FREE/Materials/Glass.mat.meta b/Assets/ithappy/Creative_Characters_FREE/Materials/Glass.mat.meta new file mode 100644 index 0000000..b577d9d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Materials/Glass.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4ba83d4bb5e700a4ead22c818c99b364 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Materials/Glass.mat + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes.meta new file mode 100644 index 0000000..b6c4072 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d459294bf5ac45a4b94954671ca66d5e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Base_Mesh.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Base_Mesh.fbx new file mode 100644 index 0000000..b2f3fee Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Base_Mesh.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Base_Mesh.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Base_Mesh.fbx.meta new file mode 100644 index 0000000..220a882 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Base_Mesh.fbx.meta @@ -0,0 +1,742 @@ +fileFormatVersion: 2 +guid: ad472b939cd48144e9521d873c2e3018 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 1 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Base_Mesh(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Accessories + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Body + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Faces + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Full_body + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Glasses + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Gloves + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hairstyle + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hat + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Mustache + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Outerwear + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Pants + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Shoes + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Skeleton + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775839, y: -0.0000009708203, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000001} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536478, z: 0.6942847, w: 0.14133374} + scale: {x: 1.0000017, y: 0.9999998, z: 1.0000062} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562262, y: -0.0068166386, z: 0.10785358, w: -0.99412185} + scale: {x: 0.99999875, y: 1.0000086, z: 1.0000046} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.3709127, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 1.0000025, y: 1.0000061, z: 1.0000057} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000044703473, y: -1, z: 0.000000029802315, w: -0.0000055432306} + scale: {x: 1.0000044, y: 1.0000036, z: 1.000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.23109381, y: 0.0000009749383, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.99999887, z: 0.99999976} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -9.947598e-14, w: 0.99998397} + scale: {x: 1, y: 0.99999994, z: 0.99999857} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318132, y: -1.00356396e-13, z: 1.4973924e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 1.0000019, z: 0.9999981} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 1.0691415e-13, z: -6.874035e-14, w: 1} + scale: {x: 0.99999934, y: 1.000001, z: 1.0000024} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.523311, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000038, y: 1.0000008, z: 1.0000015} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997697, y: 0.0089047095, z: 0.012638358, w: -0.99899805} + scale: {x: 0.999999, y: 1.0000083, z: 0.99999946} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.040146615, y: 0.71144766, z: -0.016868295, w: -0.70138854} + scale: {x: 1.0000058, y: 1.0000039, z: 1.0000007} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748665, y: 0.060721368, z: 0.14384605, w: 0.9858035} + scale: {x: 0.9999978, y: 1.0000027, z: 1.0000058} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013586493, y: -0.7854001, z: 0.0036521065, w: 0.61882854} + scale: {x: 0.9999998, y: 1.0000162, z: 0.9999979} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000016763802, y: 0.0088239, z: -0.00000005960463, w: 0.9999611} + scale: {x: 1.0000024, y: 1.0000042, z: 1.000003} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266445, y: -0.7618005, z: 0.0142324, w: 0.6476553} + scale: {x: 1.0000004, y: 1.0000083, z: 0.9999998} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000006798654, y: -0.06740823, z: 0.000000058673315, w: 0.9977255} + scale: {x: 0.99999815, y: 1.000003, z: 1.0000021} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192516, y: -0.71848434, z: 0.015462739, w: 0.6947996} + scale: {x: 1.0000018, y: 1.000012, z: 0.9999967} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000023096801, y: -0.014232845, z: -0.000000054016713, w: 0.99989873} + scale: {x: 1.0000007, y: 1.000001, z: 0.9999997} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764772, y: -0.6836665, z: 0.13569649, w: 0.7116913} + scale: {x: 1.000003, y: 1.0000207, z: 0.99999064} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345559, y: -0.7474379, z: 0.014610369, w: 0.6641053} + scale: {x: 1.000004, y: 1.0000163, z: 0.99999875} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: -0.000000005587934, y: -0.017694827, z: -0.000000037252896, w: 0.9998435} + scale: {x: 1.0000057, y: 1.0000085, z: 1.000005} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203917, y: -0.92116874, z: -0.3412194, w: 0.1568612} + scale: {x: 0.999985, y: 1.0000179, z: 1.0000101} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000017881393, y: 0.05642809, z: -0.000000074505806, w: 0.9984067} + scale: {x: 0.99999595, y: 1.0000005, z: 1.000006} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.523311, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000036, y: 1.0000007, z: 1.0000013} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041998025, y: 0.008904829, z: 0.012638299, w: 0.9989981} + scale: {x: 0.99999875, y: 1.0000052, z: 1.0000001} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.04014643, y: 0.71144766, z: -0.016867945, w: 0.70138866} + scale: {x: 1.0000033, y: 1.0000008, z: 1.0000007} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748736, y: -0.060721166, z: -0.14384638, w: 0.9858034} + scale: {x: 0.9999996, y: 1.0000036, z: 1.0000052} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013585455, y: -0.78540015, z: 0.0036510879, w: -0.61882854} + scale: {x: 0.99999875, y: 1.0000113, z: 1.0000055} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: 0.00000006332992, y: -0.008823959, z: 0.000000040978183, w: 0.99996114} + scale: {x: 1.0000012, y: 0.99999887, z: 1.0000007} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032748643, y: -0.7618004, z: 0.0142343, w: -0.64765537} + scale: {x: 1.0000013, y: 1.0000088, z: 1.0000067} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000002235174, y: 0.067408316, z: 0.000000005587935, w: 0.9977255} + scale: {x: 0.99999994, y: 1.0000002, z: 1.0000011} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028192392, y: 0.71848434, z: -0.015462939, w: 0.6947994} + scale: {x: 1.000002, y: 1.0000076, z: 1.0000029} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000025704503, y: 0.0142327845, z: 0.000000037252903, w: 0.9998988} + scale: {x: 1.0000037, y: 1.0000021, z: 1.0000007} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764765, y: 0.6836665, z: -0.13569641, w: 0.7116913} + scale: {x: 1.0000057, y: 1.0000165, z: 0.99999994} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346018, y: -0.74743783, z: 0.014609079, w: -0.66410536} + scale: {x: 1.0000035, y: 1.0000116, z: 1.0000046} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: -0.000000012107188, y: 0.017694673, z: -0.00000010803337, w: 0.9998435} + scale: {x: 1.0000035, y: 1.0000043, z: 1.0000046} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203859, y: -0.9211687, z: -0.34121972, w: -0.15686142} + scale: {x: 0.9999935, y: 1.0000166, z: 1.0000113} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.00000014901156, y: -0.05642814, z: 0.00000010430809, w: 0.99840665} + scale: {x: 0.9999976, y: 0.9999923, z: 0.9999978} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536484, z: 0.6942834, w: -0.14133367} + scale: {x: 1.0000012, y: 1.0000024, z: 1.0000058} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561472, y: -0.0068166303, z: 0.10785356, w: 0.9941218} + scale: {x: 1.0000006, y: 1.0000085, z: 1.0000044} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.3789612, w: 0.5987593} + scale: {x: 1.0000069, y: 1.0000018, z: 1.0000031} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: -0.00000007450579, y: -1, z: 0.00000005960463, w: 0.0000061690794} + scale: {x: 0.9999996, y: 0.9999971, z: 0.9999978} + - name: T_Shirt + parentName: Base_Mesh(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Base_Mesh.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Body.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Body.meta new file mode 100644 index 0000000..8c6473f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Body.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 32ff7b06b7c834f4fac7e0621ef72024 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Body/Body_010.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Body/Body_010.fbx new file mode 100644 index 0000000..cf04874 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Body/Body_010.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Body/Body_010.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Body/Body_010.fbx.meta new file mode 100644 index 0000000..edf6b4d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Body/Body_010.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 335f64e53b1ba9648aec09bc1a394a09 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Body_010(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Body_011 + parentName: Body_010(Clone) + position: {x: -0.000000008460748, y: 3.6263947e-10, z: -0.000000002174751} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton.001 + parentName: Body_010(Clone) + position: {x: -0, y: 0.000000002174751, z: 3.6263959e-10} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton.001 + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -2.2204466e-16, z: 2.220446e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: 3.076819e-14, y: 0.79327637, z: -0.0003130032} + rotation: {x: -0.24775836, y: -0.00000097082, z: 0.0000002482694, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000011, z: 1.0000001} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.097978055, y: 0.014953093, z: -0.028238077} + rotation: {x: -0.69055223, y: -0.14536469, z: 0.69428486, w: 0.14133382} + scale: {x: 0.99999845, y: 0.9999948, z: 1.000004} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: 0.000000004656613, y: 0.3396897, z: 0.0000000049794835} + rotation: {x: 0.0065622213, y: 0.006818318, z: -0.10785359, w: 0.9941218} + scale: {x: 0.9999976, y: 1, z: 1} + - name: LeftFoot + parentName: LeftLeg + position: {x: 9.313226e-10, y: 0.35952866, z: -0.0000000046857167} + rotation: {x: 0.37091157, y: -0.6002507, z: 0.37896147, w: 0.5987586} + scale: {x: 0.99999833, y: 1.0000023, z: 1.0000011} + - name: LeftToeBase + parentName: LeftFoot + position: {x: -0.0000000013188952, y: 0.13862461, z: 0.0000000013134809} + rotation: {x: -0.00000002766221, y: 1, z: 0.00000002235134, w: 0.0000055591254} + scale: {x: 1.0000006, y: 0.9999984, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238464} + rotation: {x: 0.6905538, y: -0.14536543, z: 0.6942834, w: -0.14133298} + scale: {x: 0.9999991, y: 0.9999944, z: 1.000005} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000038417056, y: 0.33968973, z: 0.0000000019535946} + rotation: {x: 0.0065621505, y: -0.0068173986, z: 0.1078536, w: 0.9941218} + scale: {x: 0.9999995, y: 1.0000004, z: 0.99999964} + - name: RightFoot + parentName: RightLeg + position: {x: 0.0000000029685907, y: 0.35952866, z: -0.000000008090865} + rotation: {x: 0.37091202, y: 0.60025007, z: -0.37896127, w: 0.5987591} + scale: {x: 1.0000017, y: 0.9999996, z: 0.9999987} + - name: RightToeBase + parentName: RightFoot + position: {x: 0.0000000010279564, y: 0.13862467, z: -0.0000000050662834} + rotation: {x: 0.0000000049355426, y: 1, z: -1.6393798e-12, w: -0.0000060359625} + scale: {x: 1.0000007, y: 0.9999997, z: 1} + - name: Spine + parentName: Hips + position: {x: 0.00000011318598, y: 0.102548085, z: 0.05647656} + rotation: {x: 0.23109372, y: 0.0000009749377, z: -0.00000023157038, w: 0.9729315} + scale: {x: 0.99999964, y: 0.99999845, z: 0.9999992} + - name: Spine1 + parentName: Spine + position: {x: 4.8280878e-20, y: 0.21461841, z: 0.0000000027939677} + rotation: {x: -0.005668318, y: 6.404422e-13, z: -8.861747e-14, w: 0.99998397} + scale: {x: 1, y: 0.9999997, z: 0.99999946} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105282} + rotation: {x: -0.5233112, y: 0.45552072, z: 0.5451752, w: 0.47056377} + scale: {x: 1.0000005, y: 0.9999984, z: 1.0000005} + - name: LeftArm + parentName: LeftShoulder + position: {x: 0.0000000011641532, y: 0.12703085, z: 0.000000004642061} + rotation: {x: 0.041997742, y: -0.008905246, z: -0.012638239, w: 0.9989981} + scale: {x: 0.9999987, y: 1.000001, z: 1.0000004} + - name: LeftForeArm + parentName: LeftArm + position: {x: -0.0000000037252903, y: 0.29205722, z: 0.00000006787013} + rotation: {x: 0.04014586, y: -0.71144766, z: 0.016867615, w: 0.7013887} + scale: {x: 0.9999999, y: 1.0000008, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000014954901, y: 0.23034161, z: -0.00000001839362} + rotation: {x: -0.061748788, y: 0.060721315, z: 0.14384556, w: 0.98580354} + scale: {x: 0.9999994, y: 0.9999999, z: 0.99999875} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.011883791, y: 0.10574207, z: 0.038882375} + rotation: {x: 0.013586636, y: -0.7854002, z: 0.0036523396, w: 0.61882836} + scale: {x: 1.0000001, y: 1.0000004, z: 1.0000004} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0.000000014901161, y: 0.0390153, z: -0.000000014901161} + rotation: {x: 0.0000040687587, y: 0.008824123, z: -0.0000002989664, w: 0.9999611} + scale: {x: 0.9999997, y: 0.9999993, z: 1.0000004} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013651021, y: 0.10667105, z: 0.0053756675} + rotation: {x: 0.00032752365, y: -0.7618005, z: 0.0142338285, w: 0.6476552} + scale: {x: 0.99999994, y: 0.99999887, z: 1.0000001} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 0.00000000547152, y: 0.0411212, z: 0.000000047792128} + rotation: {x: -0.00000003377902, y: -0.067407995, z: -0.0000000056006697, w: 0.9977255} + scale: {x: 0.99999934, y: 1.0000017, z: 0.9999995} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944853, y: 0.08885869, z: -0.05634245} + rotation: {x: -0.02819291, y: -0.71848446, z: 0.015462035, w: 0.6947995} + scale: {x: 0.99999994, y: 0.9999996, z: 1.0000005} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0, y: 0.0354249, z: 0.00000008032657} + rotation: {x: -0.0000014932364, y: -0.014235745, z: -0.0000004992394, w: 0.9998987} + scale: {x: 1.0000002, y: 1.0000001, z: 0.99999946} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.031583957, y: 0.09564325, z: -0.0061339037} + rotation: {x: 0.08764808, y: -0.68366647, z: 0.13569692, w: 0.7116912} + scale: {x: 1.0000004, y: 0.99999994, z: 1.0000002} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.01576494, y: 0.09492041, z: -0.026633088} + rotation: {x: -0.0093451515, y: -0.7474379, z: 0.01461027, w: 0.66410536} + scale: {x: 1.0000002, y: 1.0000001, z: 0.9999999} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000004656613, y: 0.04729877, z: -0.00000020733569} + rotation: {x: 0.00000020241991, y: -0.01769637, z: -0.00000036059498, w: 0.9998434} + scale: {x: 0.99999976, y: 0.99999887, z: 0.9999996} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.021660704, y: 0.043446235, z: 0.044851325} + rotation: {x: -0.10203665, y: 0.9211685, z: 0.3412201, w: -0.15686272} + scale: {x: 1.0000004, y: 1.0000008, z: 0.99999964} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: 0.000000019557774, y: 0.05241207, z: 0.000000063329935} + rotation: {x: -0.00000019915483, y: 0.056428287, z: 0.0000001249965, w: 0.99840665} + scale: {x: 0.9999996, y: 0.99999875, z: 1} + - name: Neck + parentName: Spine1 + position: {x: 1.4712759e-15, y: 0.29899055, z: -0.0016210992} + rotation: {x: 0.113181375, y: -2.2376986e-14, z: 1.00161666e-13, w: 0.9935743} + scale: {x: 1.0000005, y: 0.9999997, z: 1} + - name: Head + parentName: Neck + position: {x: -6.098637e-20, y: 0.09232267, z: -0.000000007450581} + rotation: {x: 0.0000003688035, y: -5.4210105e-20, z: 3.59142e-19, w: 1} + scale: {x: 0.9999993, y: 1.0000007, z: 1.0000005} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105282} + rotation: {x: 0.5233112, y: 0.45552072, z: 0.5451752, w: -0.47056377} + scale: {x: 1.0000005, y: 0.9999984, z: 1.0000005} + - name: RightArm + parentName: RightShoulder + position: {x: -0.0000000011641532, y: 0.12703085, z: 0.000000004642061} + rotation: {x: 0.041997705, y: 0.008905275, z: 0.012638223, w: 0.99899805} + scale: {x: 0.9999986, y: 1.000001, z: 1.0000004} + - name: RightForeArm + parentName: RightArm + position: {x: 0.0000000037252903, y: 0.29205722, z: 0.0000000676373} + rotation: {x: 0.040146075, y: 0.7114476, z: -0.016867355, w: 0.7013888} + scale: {x: 0.9999998, y: 0.99999934, z: 1.0000011} + - name: RightHand + parentName: RightForeArm + position: {x: -0.00000008779475, y: 0.23034145, z: 0.000000029569492} + rotation: {x: -0.061748795, y: -0.06072142, z: -0.14384536, w: 0.98580354} + scale: {x: 0.99999976, y: 1.0000004, z: 0.9999996} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011884104, y: 0.10574193, z: 0.038882393} + rotation: {x: 0.013585907, y: 0.7854002, z: -0.0036517968, w: 0.61882854} + scale: {x: 0.9999997, y: 1.0000004, z: 1.0000006} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.000000007450581, y: 0.039015263, z: 0.000000107102096} + rotation: {x: 0.000004076327, y: -0.008824126, z: 0.00000030036333, w: 0.9999611} + scale: {x: 1.0000005, y: 0.99999917, z: 0.99999964} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.013651151, y: 0.106670834, z: 0.005375687} + rotation: {x: 0.0003264471, y: 0.7618006, z: -0.014231693, w: 0.6476552} + scale: {x: 0.99999994, y: 0.99999934, z: 1.0000001} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000084983185, y: 0.041121256, z: 0.000000092954} + rotation: {x: 0.000000019923243, y: 0.06740801, z: 0.0000000067674804, w: 0.9977255} + scale: {x: 1.0000002, y: 0.9999999, z: 0.99999875} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944974, y: 0.08885871, z: -0.056342445} + rotation: {x: -0.028191939, y: 0.7184847, z: -0.015462749, w: 0.69479924} + scale: {x: 0.9999996, y: 0.99999946, z: 1.0000008} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0.000000014901161, y: 0.035424925, z: -0.00000015669502} + rotation: {x: -0.0000015033656, y: 0.014235751, z: 0.0000005020335, w: 0.9998987} + scale: {x: 1.000001, y: 1.0000001, z: 0.9999993} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583652, y: 0.095643096, z: -0.0061338833} + rotation: {x: 0.08764787, y: 0.68366647, z: -0.1356967, w: 0.71169126} + scale: {x: 1.0000004, y: 1, z: 1} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765304, y: 0.09492013, z: -0.026633058} + rotation: {x: -0.009345826, y: 0.74743783, z: -0.014609138, w: 0.66410536} + scale: {x: 1.0000006, y: 1.0000001, z: 0.99999994} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000007450581, y: 0.04729869, z: -0.00000004679896} + rotation: {x: 0.0000001985193, y: 0.01769637, z: 0.00000035989643, w: 0.9998434} + scale: {x: 0.9999993, y: 0.9999989, z: 1.0000001} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660542, y: 0.04344617, z: 0.044851337} + rotation: {x: 0.1020372, y: 0.921169, z: 0.34121877, w: 0.1568625} + scale: {x: 1.0000004, y: 1.0000012, z: 0.99999887} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000041909516, y: 0.0524121, z: -0.000000007450581} + rotation: {x: -0.00000020755007, y: -0.05642828, z: -0.00000012126529, w: 0.99840665} + scale: {x: 1.0000002, y: 0.9999976, z: 1.0000011} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Body/Body_010.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes.meta new file mode 100644 index 0000000..0bc37a9 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a63b61f28f6471d4eac95fb94ad9f281 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_001.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_001.fbx new file mode 100644 index 0000000..b3d170b Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_001.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_001.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_001.fbx.meta new file mode 100644 index 0000000..69a954a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_001.fbx.meta @@ -0,0 +1,522 @@ +fileFormatVersion: 2 +guid: c26456827c09dba47ae31941d87b6eb6 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Costume_13_001(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Costume_13_001 + parentName: Costume_13_001(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Costume_13_001(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.06332679, y: 0.05790209, z: 0.18569604, w: 0.97885346} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.06630025, y: -0.78213245, z: 0.07260323, w: 0.61530626} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.015757041, y: -0.760715, z: 0.04948228, w: 0.6470054} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.027553983, y: -0.7103214, z: 0.12914243, w: 0.69138014} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: 0.016827116, y: -0.74243546, z: 0.105706036, w: 0.6613114} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.18863572, y: -0.95492417, z: -0.19843529, w: 0.11471681} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.063326865, y: -0.057902068, z: -0.18569623, w: 0.97885346} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.066300236, y: -0.7821325, z: 0.07260317, w: -0.61530626} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.0157571, y: -0.7607149, z: 0.049482297, w: -0.6470055} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.027554043, y: 0.7103215, z: -0.12914236, w: 0.6913802} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: -0.016827164, y: -0.7424355, z: 0.105705895, w: -0.6613113} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.18863563, y: -0.95492417, z: -0.19843532, w: -0.11471668} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_001.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_002.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_002.fbx new file mode 100644 index 0000000..af45f6a Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_002.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_002.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_002.fbx.meta new file mode 100644 index 0000000..7d6006c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_002.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 6134248585b9bcf499ee2710961bc127 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Costume_13_002(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Costume_13_002 + parentName: Costume_13_002(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Costume_13_002(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Costumes/Costume_13_002.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories.meta new file mode 100644 index 0000000..46d268a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a66e1a829ad64eb4ebabd085f0f664dc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Clown_nose_001.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Clown_nose_001.fbx new file mode 100644 index 0000000..fa795d4 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Clown_nose_001.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Clown_nose_001.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Clown_nose_001.fbx.meta new file mode 100644 index 0000000..5dd3d21 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Clown_nose_001.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 9ca093b63b32bc6479e8706c849e1ee2 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Clown_nose_001(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Clown_nose_001 + parentName: Clown_nose_001(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Clown_nose_001(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Clown_nose_001.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Headphones_002.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Headphones_002.fbx new file mode 100644 index 0000000..7f79d0f Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Headphones_002.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Headphones_002.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Headphones_002.fbx.meta new file mode 100644 index 0000000..2e2f421 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Headphones_002.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 106c56f4b86971e4393de6fb97ee6cdb +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Headphones_002(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Headphones_002 + parentName: Headphones_002(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Headphones_002(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Headphones_002.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_003.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_003.fbx new file mode 100644 index 0000000..4b2c020 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_003.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_003.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_003.fbx.meta new file mode 100644 index 0000000..b01447a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_003.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 7f08cab61f953cd4693ac58a98b96079 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Mustache_003(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Mustache_003 + parentName: Mustache_003(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Mustache_003(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_003.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_011.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_011.fbx new file mode 100644 index 0000000..e4b159e Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_011.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_011.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_011.fbx.meta new file mode 100644 index 0000000..d17b89d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_011.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: b4d34f152c73703499b03a8b9beab646 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Mustache_011(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Mustache_011 + parentName: Mustache_011(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Mustache_011(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Mustache_011.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Pacifier_001.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Pacifier_001.fbx new file mode 100644 index 0000000..665a0e5 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Pacifier_001.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Pacifier_001.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Pacifier_001.fbx.meta new file mode 100644 index 0000000..623a376 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Pacifier_001.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: da1fb7324b7aa04488964cec50dec732 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Pacifier_001(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Pacifier_001 + parentName: Pacifier_001(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Pacifier_001(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Face Accessories/Pacifier_001.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces.meta new file mode 100644 index 0000000..528a377 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ad5df5c17e25cdb40a8f9a799290bf64 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_angry_003.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_angry_003.fbx new file mode 100644 index 0000000..d63d89f Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_angry_003.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_angry_003.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_angry_003.fbx.meta new file mode 100644 index 0000000..9581018 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_angry_003.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: e2a9edf3127d00246a60fb52ef4856b9 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Male_emotion_angry_003(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Male_emotion_angry_003 + parentName: Male_emotion_angry_003(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Male_emotion_angry_003(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_angry_003.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_happy_002.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_happy_002.fbx new file mode 100644 index 0000000..86af35e Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_happy_002.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_happy_002.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_happy_002.fbx.meta new file mode 100644 index 0000000..e05595d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_happy_002.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: e4f543c638ecbfd40b8dc37cd298e48a +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Male_emotion_happy_002(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Male_emotion_happy_002 + parentName: Male_emotion_happy_002(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Male_emotion_happy_002(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_happy_002.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_usual_001.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_usual_001.fbx new file mode 100644 index 0000000..4cd8528 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_usual_001.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_usual_001.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_usual_001.fbx.meta new file mode 100644 index 0000000..d7ddc5c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_usual_001.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 819bbc3929ae14e43b0d8405d65589f9 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Male_emotion_usual_001(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Male_emotion_usual_001 + parentName: Male_emotion_usual_001(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Male_emotion_usual_001(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Faces/Male_emotion_usual_001.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses.meta new file mode 100644 index 0000000..ac2c78e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5137678c0a02caa40a27e29e40f12979 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_004.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_004.fbx new file mode 100644 index 0000000..8dc6c07 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_004.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_004.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_004.fbx.meta new file mode 100644 index 0000000..e4fbe93 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_004.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 37ecfcaf8ce0c064d92bcec65eba3e31 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Glasses_004(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Glasses_004 + parentName: Glasses_004(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Glasses_004(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_004.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_006.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_006.fbx new file mode 100644 index 0000000..a05a1fa Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_006.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_006.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_006.fbx.meta new file mode 100644 index 0000000..ea95e6d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_006.fbx.meta @@ -0,0 +1,687 @@ +fileFormatVersion: 2 +guid: 8ce1c24b95f214d4bb53ebe8be080a49 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Glass + second: {fileID: 2100000, guid: 4ba83d4bb5e700a4ead22c818c99b364, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Glasses_006(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Glasses_006 + parentName: Glasses_006(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Glasses_006(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Glasses/Glasses_006.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves.meta new file mode 100644 index 0000000..d9ab5d4 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ae9435be13455964db620bb129755af5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_006.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_006.fbx new file mode 100644 index 0000000..db5aa43 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_006.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_006.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_006.fbx.meta new file mode 100644 index 0000000..dcbb175 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_006.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: ed3cc8f7b4705704db2e46eff03dd968 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Gloves_006(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Gloves_006 + parentName: Gloves_006(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Gloves_006(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.1102232e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.2477584, y: -0.0000009708205, z: 0.00000024826952, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000001} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.69055235, y: -0.14536478, z: 0.69428474, w: 0.14133382} + scale: {x: 0.99999845, y: 0.99999493, z: 1.0000046} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: 0.0065620965, y: 0.0068166656, z: -0.107853614, w: 0.9941218} + scale: {x: 0.99999785, y: 0.99999994, z: 1} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: 0.37091264, y: -0.60024947, z: 0.37896135, w: 0.5987593} + scale: {x: 0.9999982, y: 1.0000024, z: 1.0000013} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: -0.0000000013966587, y: 1, z: -0.00000003725293, w: 0.000005439916} + scale: {x: 1.0000006, y: 0.9999981, z: 1.0000004} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.145365, z: 0.69428337, w: -0.1413333} + scale: {x: 0.99999875, y: 0.999994, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.0065620895, y: -0.0068165944, z: 0.10785357, w: 0.9941218} + scale: {x: 0.99999964, y: 1.0000005, z: 0.99999976} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.3709124, y: 0.6002493, z: -0.3789613, w: 0.59875965} + scale: {x: 1.0000013, y: 0.9999994, z: 0.9999985} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.0000000046564015, y: 1, z: 3.3825238e-13, w: -0.000006155172} + scale: {x: 1.000001, y: 0.99999976, z: 1.0000001} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.23109376, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.99999964, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.0056683216, y: 4.2764544e-13, z: -6.044778e-14, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.9999996} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.52331096, y: 0.455521, z: 0.54517496, w: 0.47056407} + scale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.04199766, y: -0.008905036, z: -0.012638149, w: 0.99899805} + scale: {x: 0.9999988, y: 1.0000008, z: 1.0000004} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: 0.040145803, y: -0.71144754, z: 0.016867727, w: 0.7013889} + scale: {x: 1, y: 1.0000012, z: 1.0000007} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.06174881, y: 0.060721375, z: 0.14384514, w: 0.98580354} + scale: {x: 0.9999995, y: 0.9999998, z: 0.9999989} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013584944, y: -0.7854003, z: 0.0036508054, w: 0.6188284} + scale: {x: 1.0000004, y: 1.0000011, z: 1.0000004} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.000000012456934, y: 0.008824148, z: 0.000000015833113, w: 0.9999611} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.00032671538, y: -0.7618005, z: 0.014232798, w: 0.6476553} + scale: {x: 0.9999999, y: 0.9999991, z: 1.0000001} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.000000068520706, y: -0.06740804, z: -0.000000013068237, w: 0.9977255} + scale: {x: 0.99999946, y: 1.0000014, z: 0.9999996} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.02819265, y: -0.7184843, z: 0.015462317, w: 0.69479954} + scale: {x: 0.9999997, y: 0.9999998, z: 1.0000006} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000002025832, y: -0.014233044, z: -0.0000000726505, w: 0.99989873} + scale: {x: 1.0000004, y: 1.0000001, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.087648116, y: -0.6836664, z: 0.13569695, w: 0.7116912} + scale: {x: 1.0000006, y: 1.0000006, z: 1.0000002} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345731, y: -0.74743795, z: 0.01460911, w: 0.66410524} + scale: {x: 1.0000002, y: 1.0000005, z: 0.99999994} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000019793698, y: -0.017694853, z: 0.00000003481366, w: 0.9998435} + scale: {x: 0.9999998, y: 0.999999, z: 0.9999997} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: -0.10203781, y: 0.9211689, z: 0.34121907, w: -0.15686211} + scale: {x: 1.0000005, y: 1.0000008, z: 0.9999999} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000012266445, y: 0.056428105, z: 0.000000014924952, w: 0.99840665} + scale: {x: 0.9999994, y: 0.9999986, z: 0.9999999} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.113181375, y: -3.050584e-14, z: 1.1901714e-13, w: 0.9935743} + scale: {x: 1.0000005, y: 0.9999997, z: 1} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000034645177, y: -6.7762684e-21, z: 3.5914197e-19, w: 1} + scale: {x: 0.9999993, y: 1.0000007, z: 1.0000005} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.52331096, y: 0.455521, z: 0.54517496, w: -0.47056407} + scale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.04199766, y: 0.008905081, z: 0.012638238, w: 0.99899805} + scale: {x: 0.99999875, y: 1.0000008, z: 1.0000004} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.04014593, y: 0.7114475, z: -0.016867796, w: 0.7013889} + scale: {x: 0.9999999, y: 0.9999995, z: 1.000001} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748795, y: -0.0607213, z: -0.14384493, w: 0.9858036} + scale: {x: 0.9999999, y: 1.0000004, z: 0.99999964} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: 0.013586656, y: 0.7854002, z: -0.0036525456, w: 0.61882854} + scale: {x: 1, y: 1.000001, z: 1.0000006} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000011991253, y: -0.008824146, z: -0.000000013504707, w: 0.9999611} + scale: {x: 1.0000005, y: 0.99999905, z: 0.9999997} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: 0.0003279633, y: 0.7618005, z: -0.014234539, w: 0.64765525} + scale: {x: 0.9999999, y: 0.9999995, z: 1.0000001} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: 0.00000009176944, y: 0.06740804, z: 0.0000000100345385, w: 0.9977255} + scale: {x: 1.0000004, y: 0.9999998, z: 0.99999887} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028192887, y: 0.71848416, z: -0.015461473, w: 0.6947997} + scale: {x: 0.9999994, y: 0.9999996, z: 1.0000008} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.000000019035838, y: 0.014233045, z: 0.00000007637615, w: 0.99989873} + scale: {x: 1.0000011, y: 1.0000001, z: 0.9999995} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.087648, y: 0.68366647, z: -0.13569683, w: 0.7116912} + scale: {x: 1.0000005, y: 1.0000006, z: 0.99999994} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: -0.009345615, y: 0.7474379, z: -0.0146088265, w: 0.66410536} + scale: {x: 1.0000006, y: 1.0000004, z: 0.99999994} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: -5.2395677e-10, y: 0.017694853, z: -0.000000036443733, w: 0.9998435} + scale: {x: 0.99999934, y: 0.9999989, z: 1.0000001} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: 0.10203804, y: 0.92116916, z: 0.34121817, w: 0.15686229} + scale: {x: 1.0000005, y: 1.0000012, z: 0.9999991} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.00000012919415, y: -0.0564281, z: -0.0000000037312344, w: 0.99840665} + scale: {x: 1, y: 0.99999756, z: 1.000001} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_006.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_014.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_014.fbx new file mode 100644 index 0000000..463df0f Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_014.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_014.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_014.fbx.meta new file mode 100644 index 0000000..f8f36ed --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_014.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 47ba93e4fb1b05e418fa1918bf34ed85 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Gloves_014(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Gloves_014 + parentName: Gloves_014(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Gloves_014(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.1102232e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.2477584, y: -0.0000009708205, z: 0.00000024826952, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000001} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.69055235, y: -0.14536478, z: 0.69428474, w: 0.14133382} + scale: {x: 0.99999845, y: 0.99999493, z: 1.0000046} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: 0.0065620965, y: 0.0068166656, z: -0.107853614, w: 0.9941218} + scale: {x: 0.99999785, y: 0.99999994, z: 1} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: 0.37091264, y: -0.60024947, z: 0.37896135, w: 0.5987593} + scale: {x: 0.9999982, y: 1.0000024, z: 1.0000013} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: -0.0000000013966587, y: 1, z: -0.00000003725293, w: 0.000005439916} + scale: {x: 1.0000006, y: 0.9999981, z: 1.0000004} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.145365, z: 0.69428337, w: -0.1413333} + scale: {x: 0.99999875, y: 0.999994, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.0065620895, y: -0.0068165944, z: 0.10785357, w: 0.9941218} + scale: {x: 0.99999964, y: 1.0000005, z: 0.99999976} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.3709124, y: 0.6002493, z: -0.3789613, w: 0.59875965} + scale: {x: 1.0000013, y: 0.9999994, z: 0.9999985} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.0000000046564015, y: 1, z: 3.3825238e-13, w: -0.000006155172} + scale: {x: 1.000001, y: 0.99999976, z: 1.0000001} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.23109376, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.99999964, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.0056683216, y: 4.2764544e-13, z: -6.044778e-14, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.9999996} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.52331096, y: 0.455521, z: 0.54517496, w: 0.47056407} + scale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997664, y: -0.008905037, z: -0.01263815, w: 0.9989981} + scale: {x: 0.9999988, y: 1.0000008, z: 1.0000004} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: 0.040145796, y: -0.71144754, z: 0.016867723, w: 0.7013889} + scale: {x: 1, y: 1.0000012, z: 1.0000007} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748765, y: 0.06072136, z: 0.1438449, w: 0.9858036} + scale: {x: 0.9999995, y: 0.9999998, z: 0.9999989} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013586651, y: -0.7854002, z: 0.0036527761, w: 0.6188284} + scale: {x: 1.0000004, y: 1.0000011, z: 1.0000004} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.000000012456934, y: 0.008824148, z: 0.000000015833113, w: 0.9999611} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.00032661096, y: -0.7618005, z: 0.014232744, w: 0.6476553} + scale: {x: 0.9999999, y: 0.9999991, z: 1.0000001} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.000000068520706, y: -0.06740804, z: -0.000000013068237, w: 0.9977255} + scale: {x: 0.99999946, y: 1.0000014, z: 0.9999996} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192384, y: -0.7184843, z: 0.015461849, w: 0.69479966} + scale: {x: 0.9999997, y: 0.9999998, z: 1.0000006} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000002025832, y: -0.014233044, z: -0.0000000726505, w: 0.99989873} + scale: {x: 1.0000004, y: 1.0000001, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.087648116, y: -0.6836664, z: 0.13569695, w: 0.7116912} + scale: {x: 1.0000006, y: 1.0000006, z: 1.0000002} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009346096, y: -0.74743795, z: 0.014608788, w: 0.66410524} + scale: {x: 1.0000002, y: 1.0000005, z: 0.99999994} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000019793698, y: -0.017694853, z: 0.00000003481366, w: 0.9998435} + scale: {x: 0.9999998, y: 0.999999, z: 0.9999997} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: -0.10203877, y: 0.9211689, z: 0.3412191, w: -0.15686162} + scale: {x: 1.0000005, y: 1.0000008, z: 0.9999999} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000012266445, y: 0.056428105, z: 0.000000014924952, w: 0.99840665} + scale: {x: 0.9999994, y: 0.9999986, z: 0.9999999} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.113181375, y: -3.050584e-14, z: 1.1901714e-13, w: 0.9935743} + scale: {x: 1.0000005, y: 0.9999997, z: 1} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000034645177, y: -6.7762684e-21, z: 3.5914197e-19, w: 1} + scale: {x: 0.9999993, y: 1.0000007, z: 1.0000005} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.52331096, y: 0.455521, z: 0.54517496, w: -0.47056407} + scale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997664, y: 0.008905082, z: 0.012638239, w: 0.9989981} + scale: {x: 0.99999875, y: 1.0000008, z: 1.0000004} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.04014593, y: 0.7114475, z: -0.016867796, w: 0.7013889} + scale: {x: 0.9999999, y: 0.9999995, z: 1.000001} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748803, y: -0.060721286, z: -0.14384522, w: 0.98580354} + scale: {x: 0.9999999, y: 1.0000004, z: 0.99999964} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: 0.013585766, y: 0.78540033, z: -0.0036511188, w: 0.6188284} + scale: {x: 1, y: 1.000001, z: 1.0000006} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000011991253, y: -0.008824146, z: -0.000000013504707, w: 0.9999611} + scale: {x: 1.0000005, y: 0.99999905, z: 0.9999997} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: 0.0003273523, y: 0.76180065, z: -0.014233862, w: 0.6476552} + scale: {x: 0.9999999, y: 0.9999995, z: 1.0000001} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: 0.00000009176944, y: 0.06740804, z: 0.0000000100345385, w: 0.9977255} + scale: {x: 1.0000004, y: 0.9999998, z: 0.99999887} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028192194, y: 0.71848434, z: -0.015462598, w: 0.69479954} + scale: {x: 0.9999994, y: 0.9999996, z: 1.0000008} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.000000019035838, y: 0.014233045, z: 0.00000007637615, w: 0.99989873} + scale: {x: 1.0000011, y: 1.0000001, z: 0.9999995} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.087648, y: 0.68366647, z: -0.13569683, w: 0.7116912} + scale: {x: 1.0000005, y: 1.0000006, z: 0.99999994} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: -0.009346323, y: 0.7474379, z: -0.014608212, w: 0.6641055} + scale: {x: 1.0000006, y: 1.0000004, z: 0.99999994} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: -5.2395677e-10, y: 0.017694853, z: -0.000000036443733, w: 0.9998435} + scale: {x: 0.99999934, y: 0.9999989, z: 1.0000001} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: 0.10203747, y: 0.92116916, z: 0.34121835, w: 0.1568626} + scale: {x: 1.0000005, y: 1.0000012, z: 0.9999991} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.00000012919415, y: -0.0564281, z: -0.0000000037312344, w: 0.99840665} + scale: {x: 1, y: 0.99999756, z: 1.000001} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Gloves/Gloves_014.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle Single.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle Single.meta new file mode 100644 index 0000000..42d7803 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle Single.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 63f5ee49da6435f49a38264a0a933fdc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle Single/Hairstyle_Male_Single_006.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle Single/Hairstyle_Male_Single_006.fbx new file mode 100644 index 0000000..0201bd7 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle Single/Hairstyle_Male_Single_006.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle Single/Hairstyle_Male_Single_006.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle Single/Hairstyle_Male_Single_006.fbx.meta new file mode 100644 index 0000000..317f575 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle Single/Hairstyle_Male_Single_006.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 49afccecce4f7b446a34b4e3223cf8ff +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Hairstyle_Male_Single_006(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hairstyle_Male_Single_006 + parentName: Hairstyle_Male_Single_006(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Hairstyle_Male_Single_006(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle Single/Hairstyle_Male_Single_006.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle.meta new file mode 100644 index 0000000..7f68b5d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 150a0b9ffd9d08e42ab1042e71fcfdd8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_001.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_001.fbx new file mode 100644 index 0000000..6b8aebb Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_001.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_001.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_001.fbx.meta new file mode 100644 index 0000000..8f5df36 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_001.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: c00be380054f3aa469720cb9cd40ef14 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Hairstyle_Male_001(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hairstyle_Male_001 + parentName: Hairstyle_Male_001(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Hairstyle_Male_001(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_001.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_005.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_005.fbx new file mode 100644 index 0000000..6ecca7c Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_005.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_005.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_005.fbx.meta new file mode 100644 index 0000000..f4da7b6 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_005.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 634df7d5a6da6804f95f30ed030ec528 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Hairstyle_Male_005(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hairstyle_Male_005 + parentName: Hairstyle_Male_005(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Hairstyle_Male_005(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Hairstyle/Hairstyle_Male_005.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single.meta new file mode 100644 index 0000000..1c409f4 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4149120e75aa25e46bfde31a90565f0c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_008.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_008.fbx new file mode 100644 index 0000000..cb54f78 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_008.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_008.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_008.fbx.meta new file mode 100644 index 0000000..2927e32 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_008.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 96f9061b735e1454c8444afd2c8cabb1 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Hat_Single_008(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hat_Single_008 + parentName: Hat_Single_008(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Hat_Single_008(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.1102233e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.9486887e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708206, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000035506673, y: 0.35952854, z: -0.000000003608875} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000016262618, y: 0.13862465, z: -0.0000000030936462} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.000000113186076, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749385, z: -0.00000023157051, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 1.0926725e-19, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -7.1054274e-14, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 8.352626e-16, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -1.0341306e-13, z: 1.2148237e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: -5.9292306e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 1.038574e-13, z: -9.699719e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.9999988, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: -0, y: 0.29205698, z: -0.00000013015233} + rotation: {x: -0.040145848, y: 0.7114477, z: -0.016867746, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000013, z: 1.000001} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006345599, y: 0.23034137, z: -0.0000000044237822} + rotation: {x: -0.0617487, y: 0.060721263, z: 0.14384547, w: 0.9858035} + scale: {x: 0.99999934, y: 0.9999996, z: 0.9999991} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.011883732, y: 0.10574185, z: 0.038882367} + rotation: {x: 0.013586487, y: -0.7854001, z: 0.0036518187, w: 0.6188285} + scale: {x: 0.9999996, y: 1.000001, z: 0.9999998} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0.0000000037252903, y: 0.039015174, z: 0.00000009825453} + rotation: {x: 0.000000014901158, y: 0.008823929, z: 0.000000026077027, w: 0.9999611} + scale: {x: 0.99999994, y: 0.99999946, z: 1.0000005} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650899, y: 0.10667085, z: 0.005375669} + rotation: {x: 0.00032821667, y: -0.7618005, z: 0.014234783, w: 0.6476551} + scale: {x: 1, y: 0.99999934, z: 1.0000002} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: -0.000000005005859, y: 0.04112129, z: -0.000000046082278} + rotation: {x: 0.00000022258607, y: -0.06740808, z: -0.000000013969837, w: 0.99772555} + scale: {x: 0.9999992, y: 1.0000012, z: 0.99999976} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944666, y: 0.08885855, z: -0.05634245} + rotation: {x: -0.028192155, y: -0.7184842, z: 0.015463019, w: 0.69479966} + scale: {x: 0.9999994, y: 1.0000005, z: 1.0000002} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: 0.000000007450581, y: 0.035424843, z: -0.000000028405339} + rotation: {x: -0.000000055879347, y: -0.014233081, z: -0.00000021420416, w: 0.9998988} + scale: {x: 1.0000004, y: 1, z: 0.9999997} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158402, y: 0.09564299, z: -0.006133899} + rotation: {x: 0.08764789, y: -0.6836664, z: 0.13569662, w: 0.71169126} + scale: {x: 1.0000007, y: 1.0000011, z: 1.0000001} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764814, y: 0.09492021, z: -0.026633084} + rotation: {x: -0.00934667, y: -0.7474377, z: 0.014607195, w: 0.66410553} + scale: {x: 1, y: 1.0000008, z: 0.99999946} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: -9.313226e-10, y: 0.047298796, z: 0.000000012572855} + rotation: {x: 0.000000012107189, y: -0.017694945, z: 0.000000064261236, w: 0.9998435} + scale: {x: 1, y: 0.99999875, z: 0.9999997} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.021660822, y: 0.043445993, z: 0.04485131} + rotation: {x: 0.102038786, y: -0.9211689, z: -0.3412191, w: 0.15686159} + scale: {x: 1, y: 1.0000006, z: 1.0000002} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.00000006239861, y: 0.052411955, z: -0.000000029802322} + rotation: {x: 0.00000012665984, y: 0.056428082, z: 0.000000089406946, w: 0.99840665} + scale: {x: 0.9999991, y: 0.99999857, z: 0.99999964} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0, y: 0.29205698, z: -0.00000013038516} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033743266, y: 0.2303413, z: 0.000000028172508} + rotation: {x: -0.06174877, y: -0.060721226, z: -0.14384562, w: 0.9858035} + scale: {x: 1.0000001, y: 1.0000005, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883622, y: 0.10574177, z: 0.038882367} + rotation: {x: -0.013587334, y: -0.7854001, z: 0.003653115, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000008, z: 1.0000008} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: 0.000000011175871, y: 0.03901521, z: 0.00000008242205} + rotation: {x: 0.000000040978183, y: -0.008824019, z: -0.0000000037252894, w: 0.9999611} + scale: {x: 1.0000007, y: 0.9999996, z: 1} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.013650786, y: 0.10667072, z: 0.005375679} + rotation: {x: -0.0003274566, y: -0.7618005, z: 0.014233549, w: -0.64765525} + scale: {x: 1, y: 1, z: 1.0000008} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000033760443, y: 0.04112129, z: -0.000000066243956} + rotation: {x: 0.00000020861626, y: 0.067408204, z: 0.000000063329935, w: 0.99772555} + scale: {x: 1.0000002, y: 1, z: 0.99999934} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944607, y: 0.08885846, z: -0.056342445} + rotation: {x: -0.028193926, y: 0.7184838, z: -0.015460264, w: 0.6948001} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000012} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.035424896, z: 0.00000015483238} + rotation: {x: 0.000000046566118, y: 0.014233109, z: 0.00000029616052, w: 0.9998988} + scale: {x: 1.0000012, y: 1.0000005, z: 0.99999934} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031584017, y: 0.095642865, z: -0.0061338795} + rotation: {x: 0.087647825, y: 0.6836664, z: -0.1356966, w: 0.7116913} + scale: {x: 1.0000008, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.01576476, y: 0.094920106, z: -0.026633075} + rotation: {x: 0.009345827, y: -0.74743783, z: 0.014609103, w: -0.6641053} + scale: {x: 1.0000006, y: 1.0000008, z: 1.0000002} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.0000000027939677, y: 0.047298852, z: 0.000000051455572} + rotation: {x: -0.000000026077023, y: 0.017694676, z: -0.00000010244545, w: 0.9998435} + scale: {x: 0.99999946, y: 0.99999946, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660874, y: 0.04344591, z: 0.04485132} + rotation: {x: -0.1020387, y: -0.92116934, z: -0.3412177, w: -0.15686178} + scale: {x: 1.0000007, y: 1.0000014, z: 0.9999997} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.00000007543713, y: 0.052412048, z: -0.000000044703484} + rotation: {x: 0.000000022351736, y: -0.056428134, z: -0.00000010430811, w: 0.99840665} + scale: {x: 1.0000001, y: 0.9999978, z: 1.0000006} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000038999133, y: 0.35952857, z: 0.0000000017462298} + rotation: {x: 0.3709131, y: 0.6002493, z: -0.37896127, w: 0.59875923} + scale: {x: 1.0000015, y: 0.9999999, z: 0.9999982} + - name: RightToeBase + parentName: RightFoot + position: {x: 0.000000008581111, y: 0.13862467, z: -2.482352e-10} + rotation: {x: 0.000000044703473, y: -1, z: 0.000000014901158, w: 0.0000061988817} + scale: {x: 1.0000011, y: 1.0000001, z: 1.0000004} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_008.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_013.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_013.fbx new file mode 100644 index 0000000..a5e1221 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_013.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_013.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_013.fbx.meta new file mode 100644 index 0000000..c9b5eb5 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_013.fbx.meta @@ -0,0 +1,687 @@ +fileFormatVersion: 2 +guid: ce66d77ff5aabf548903d7b30693fbc0 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Glass + second: {fileID: 2100000, guid: 4ba83d4bb5e700a4ead22c818c99b364, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Hat_Single_013(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hat_Single_013 + parentName: Hat_Single_013(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Hat_Single_013(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.1102233e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.9486887e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708206, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000035506673, y: 0.35952854, z: -0.000000003608875} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000016262618, y: 0.13862465, z: -0.0000000030936462} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.000000113186076, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749385, z: -0.00000023157051, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 1.0926725e-19, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -7.1054274e-14, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 8.352626e-16, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -1.0341306e-13, z: 1.2148237e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: -5.9292306e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 1.038574e-13, z: -9.699719e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.9999988, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: -0, y: 0.29205698, z: -0.00000013015233} + rotation: {x: -0.040145848, y: 0.7114477, z: -0.016867746, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000013, z: 1.000001} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006345599, y: 0.23034137, z: -0.0000000044237822} + rotation: {x: -0.0617487, y: 0.060721263, z: 0.14384547, w: 0.9858035} + scale: {x: 0.99999934, y: 0.9999996, z: 0.9999991} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.011883732, y: 0.10574185, z: 0.038882367} + rotation: {x: 0.013586487, y: -0.7854001, z: 0.0036518187, w: 0.6188285} + scale: {x: 0.9999996, y: 1.000001, z: 0.9999998} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0.0000000037252903, y: 0.039015174, z: 0.00000009825453} + rotation: {x: 0.000000014901158, y: 0.008823929, z: 0.000000026077027, w: 0.9999611} + scale: {x: 0.99999994, y: 0.99999946, z: 1.0000005} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650899, y: 0.10667085, z: 0.005375669} + rotation: {x: 0.00032821667, y: -0.7618005, z: 0.014234783, w: 0.6476551} + scale: {x: 1, y: 0.99999934, z: 1.0000002} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: -0.000000005005859, y: 0.04112129, z: -0.000000046082278} + rotation: {x: 0.00000022258607, y: -0.06740808, z: -0.000000013969837, w: 0.99772555} + scale: {x: 0.9999992, y: 1.0000012, z: 0.99999976} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944666, y: 0.08885855, z: -0.05634245} + rotation: {x: -0.028192155, y: -0.7184842, z: 0.015463019, w: 0.69479966} + scale: {x: 0.9999994, y: 1.0000005, z: 1.0000002} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: 0.000000007450581, y: 0.035424843, z: -0.000000028405339} + rotation: {x: -0.000000055879347, y: -0.014233081, z: -0.00000021420416, w: 0.9998988} + scale: {x: 1.0000004, y: 1, z: 0.9999997} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158402, y: 0.09564299, z: -0.006133899} + rotation: {x: 0.08764789, y: -0.6836664, z: 0.13569662, w: 0.71169126} + scale: {x: 1.0000007, y: 1.0000011, z: 1.0000001} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764814, y: 0.09492021, z: -0.026633084} + rotation: {x: -0.00934667, y: -0.7474377, z: 0.014607195, w: 0.66410553} + scale: {x: 1, y: 1.0000008, z: 0.99999946} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: -9.313226e-10, y: 0.047298796, z: 0.000000012572855} + rotation: {x: 0.000000012107189, y: -0.017694945, z: 0.000000064261236, w: 0.9998435} + scale: {x: 1, y: 0.99999875, z: 0.9999997} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.021660822, y: 0.043445993, z: 0.04485131} + rotation: {x: 0.102038786, y: -0.9211689, z: -0.3412191, w: 0.15686159} + scale: {x: 1, y: 1.0000006, z: 1.0000002} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.00000006239861, y: 0.052411955, z: -0.000000029802322} + rotation: {x: 0.00000012665984, y: 0.056428082, z: 0.000000089406946, w: 0.99840665} + scale: {x: 0.9999991, y: 0.99999857, z: 0.99999964} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0, y: 0.29205698, z: -0.00000013038516} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033743266, y: 0.2303413, z: 0.000000028172508} + rotation: {x: -0.06174877, y: -0.060721226, z: -0.14384562, w: 0.9858035} + scale: {x: 1.0000001, y: 1.0000005, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883622, y: 0.10574177, z: 0.038882367} + rotation: {x: -0.013587334, y: -0.7854001, z: 0.003653115, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000008, z: 1.0000008} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: 0.000000011175871, y: 0.03901521, z: 0.00000008242205} + rotation: {x: 0.000000040978183, y: -0.008824019, z: -0.0000000037252894, w: 0.9999611} + scale: {x: 1.0000007, y: 0.9999996, z: 1} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.013650786, y: 0.10667072, z: 0.005375679} + rotation: {x: -0.0003274566, y: -0.7618005, z: 0.014233549, w: -0.64765525} + scale: {x: 1, y: 1, z: 1.0000008} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000033760443, y: 0.04112129, z: -0.000000066243956} + rotation: {x: 0.00000020861626, y: 0.067408204, z: 0.000000063329935, w: 0.99772555} + scale: {x: 1.0000002, y: 1, z: 0.99999934} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944607, y: 0.08885846, z: -0.056342445} + rotation: {x: -0.028193926, y: 0.7184838, z: -0.015460264, w: 0.6948001} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000012} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.035424896, z: 0.00000015483238} + rotation: {x: 0.000000046566118, y: 0.014233109, z: 0.00000029616052, w: 0.9998988} + scale: {x: 1.0000012, y: 1.0000005, z: 0.99999934} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031584017, y: 0.095642865, z: -0.0061338795} + rotation: {x: 0.087647825, y: 0.6836664, z: -0.1356966, w: 0.7116913} + scale: {x: 1.0000008, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.01576476, y: 0.094920106, z: -0.026633075} + rotation: {x: 0.009345827, y: -0.74743783, z: 0.014609103, w: -0.6641053} + scale: {x: 1.0000006, y: 1.0000008, z: 1.0000002} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.0000000027939677, y: 0.047298852, z: 0.000000051455572} + rotation: {x: -0.000000026077023, y: 0.017694676, z: -0.00000010244545, w: 0.9998435} + scale: {x: 0.99999946, y: 0.99999946, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660874, y: 0.04344591, z: 0.04485132} + rotation: {x: -0.1020387, y: -0.92116934, z: -0.3412177, w: -0.15686178} + scale: {x: 1.0000007, y: 1.0000014, z: 0.9999997} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.00000007543713, y: 0.052412048, z: -0.000000044703484} + rotation: {x: 0.000000022351736, y: -0.056428134, z: -0.00000010430811, w: 0.99840665} + scale: {x: 1.0000001, y: 0.9999978, z: 1.0000006} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000038999133, y: 0.35952857, z: 0.0000000017462298} + rotation: {x: 0.3709131, y: 0.6002493, z: -0.37896127, w: 0.59875923} + scale: {x: 1.0000015, y: 0.9999999, z: 0.9999982} + - name: RightToeBase + parentName: RightFoot + position: {x: 0.000000008581111, y: 0.13862467, z: -2.482352e-10} + rotation: {x: 0.000000044703473, y: -1, z: 0.000000014901158, w: 0.0000061988817} + scale: {x: 1.0000011, y: 1.0000001, z: 1.0000004} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_013.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_016.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_016.fbx new file mode 100644 index 0000000..ccbad7d Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_016.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_016.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_016.fbx.meta new file mode 100644 index 0000000..9d9bf78 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_016.fbx.meta @@ -0,0 +1,687 @@ +fileFormatVersion: 2 +guid: 59564854f919a404f8eeeb391b17c12e +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Glass + second: {fileID: 2100000, guid: 4ba83d4bb5e700a4ead22c818c99b364, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Hat_Single_013(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hat_Single_013 + parentName: Hat_Single_013(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Hat_Single_013(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.1102233e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.9486887e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708206, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000035506673, y: 0.35952854, z: -0.000000003608875} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000016262618, y: 0.13862465, z: -0.0000000030936462} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.000000113186076, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749385, z: -0.00000023157051, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 1.0926725e-19, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -7.1054274e-14, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 8.352626e-16, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -1.0341306e-13, z: 1.2148237e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: -5.9292306e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 1.038574e-13, z: -9.699719e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.9999988, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: -0, y: 0.29205698, z: -0.00000013015233} + rotation: {x: -0.040145848, y: 0.7114477, z: -0.016867746, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000013, z: 1.000001} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006345599, y: 0.23034137, z: -0.0000000044237822} + rotation: {x: -0.0617487, y: 0.060721263, z: 0.14384547, w: 0.9858035} + scale: {x: 0.99999934, y: 0.9999996, z: 0.9999991} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.011883732, y: 0.10574185, z: 0.038882367} + rotation: {x: 0.013586487, y: -0.7854001, z: 0.0036518187, w: 0.6188285} + scale: {x: 0.9999996, y: 1.000001, z: 0.9999998} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0.0000000037252903, y: 0.039015174, z: 0.00000009825453} + rotation: {x: 0.000000014901158, y: 0.008823929, z: 0.000000026077027, w: 0.9999611} + scale: {x: 0.99999994, y: 0.99999946, z: 1.0000005} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650899, y: 0.10667085, z: 0.005375669} + rotation: {x: 0.00032821667, y: -0.7618005, z: 0.014234783, w: 0.6476551} + scale: {x: 1, y: 0.99999934, z: 1.0000002} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: -0.000000005005859, y: 0.04112129, z: -0.000000046082278} + rotation: {x: 0.00000022258607, y: -0.06740808, z: -0.000000013969837, w: 0.99772555} + scale: {x: 0.9999992, y: 1.0000012, z: 0.99999976} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944666, y: 0.08885855, z: -0.05634245} + rotation: {x: -0.028192155, y: -0.7184842, z: 0.015463019, w: 0.69479966} + scale: {x: 0.9999994, y: 1.0000005, z: 1.0000002} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: 0.000000007450581, y: 0.035424843, z: -0.000000028405339} + rotation: {x: -0.000000055879347, y: -0.014233081, z: -0.00000021420416, w: 0.9998988} + scale: {x: 1.0000004, y: 1, z: 0.9999997} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158402, y: 0.09564299, z: -0.006133899} + rotation: {x: 0.08764789, y: -0.6836664, z: 0.13569662, w: 0.71169126} + scale: {x: 1.0000007, y: 1.0000011, z: 1.0000001} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764814, y: 0.09492021, z: -0.026633084} + rotation: {x: -0.00934667, y: -0.7474377, z: 0.014607195, w: 0.66410553} + scale: {x: 1, y: 1.0000008, z: 0.99999946} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: -9.313226e-10, y: 0.047298796, z: 0.000000012572855} + rotation: {x: 0.000000012107189, y: -0.017694945, z: 0.000000064261236, w: 0.9998435} + scale: {x: 1, y: 0.99999875, z: 0.9999997} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.021660822, y: 0.043445993, z: 0.04485131} + rotation: {x: 0.102038786, y: -0.9211689, z: -0.3412191, w: 0.15686159} + scale: {x: 1, y: 1.0000006, z: 1.0000002} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.00000006239861, y: 0.052411955, z: -0.000000029802322} + rotation: {x: 0.00000012665984, y: 0.056428082, z: 0.000000089406946, w: 0.99840665} + scale: {x: 0.9999991, y: 0.99999857, z: 0.99999964} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0, y: 0.29205698, z: -0.00000013038516} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033743266, y: 0.2303413, z: 0.000000028172508} + rotation: {x: -0.06174877, y: -0.060721226, z: -0.14384562, w: 0.9858035} + scale: {x: 1.0000001, y: 1.0000005, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883622, y: 0.10574177, z: 0.038882367} + rotation: {x: -0.013587334, y: -0.7854001, z: 0.003653115, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000008, z: 1.0000008} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: 0.000000011175871, y: 0.03901521, z: 0.00000008242205} + rotation: {x: 0.000000040978183, y: -0.008824019, z: -0.0000000037252894, w: 0.9999611} + scale: {x: 1.0000007, y: 0.9999996, z: 1} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.013650786, y: 0.10667072, z: 0.005375679} + rotation: {x: -0.0003274566, y: -0.7618005, z: 0.014233549, w: -0.64765525} + scale: {x: 1, y: 1, z: 1.0000008} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000033760443, y: 0.04112129, z: -0.000000066243956} + rotation: {x: 0.00000020861626, y: 0.067408204, z: 0.000000063329935, w: 0.99772555} + scale: {x: 1.0000002, y: 1, z: 0.99999934} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944607, y: 0.08885846, z: -0.056342445} + rotation: {x: -0.028193926, y: 0.7184838, z: -0.015460264, w: 0.6948001} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000012} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.035424896, z: 0.00000015483238} + rotation: {x: 0.000000046566118, y: 0.014233109, z: 0.00000029616052, w: 0.9998988} + scale: {x: 1.0000012, y: 1.0000005, z: 0.99999934} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031584017, y: 0.095642865, z: -0.0061338795} + rotation: {x: 0.087647825, y: 0.6836664, z: -0.1356966, w: 0.7116913} + scale: {x: 1.0000008, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.01576476, y: 0.094920106, z: -0.026633075} + rotation: {x: 0.009345827, y: -0.74743783, z: 0.014609103, w: -0.6641053} + scale: {x: 1.0000006, y: 1.0000008, z: 1.0000002} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.0000000027939677, y: 0.047298852, z: 0.000000051455572} + rotation: {x: -0.000000026077023, y: 0.017694676, z: -0.00000010244545, w: 0.9998435} + scale: {x: 0.99999946, y: 0.99999946, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660874, y: 0.04344591, z: 0.04485132} + rotation: {x: -0.1020387, y: -0.92116934, z: -0.3412177, w: -0.15686178} + scale: {x: 1.0000007, y: 1.0000014, z: 0.9999997} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.00000007543713, y: 0.052412048, z: -0.000000044703484} + rotation: {x: 0.000000022351736, y: -0.056428134, z: -0.00000010430811, w: 0.99840665} + scale: {x: 1.0000001, y: 0.9999978, z: 1.0000006} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000038999133, y: 0.35952857, z: 0.0000000017462298} + rotation: {x: 0.3709131, y: 0.6002493, z: -0.37896127, w: 0.59875923} + scale: {x: 1.0000015, y: 0.9999999, z: 0.9999982} + - name: RightToeBase + parentName: RightFoot + position: {x: 0.000000008581111, y: 0.13862467, z: -2.482352e-10} + rotation: {x: 0.000000044703473, y: -1, z: 0.000000014901158, w: 0.0000061988817} + scale: {x: 1.0000011, y: 1.0000001, z: 1.0000004} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Hat Single/Hat_Single_016.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat.meta new file mode 100644 index 0000000..8e19171 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7b57c1c78512eba4a8d7ef2dbdabdf26 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat/Hat_010.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat/Hat_010.fbx new file mode 100644 index 0000000..4957a21 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat/Hat_010.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat/Hat_010.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat/Hat_010.fbx.meta new file mode 100644 index 0000000..11a2642 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Hat/Hat_010.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: c8ef145d788d0804f9e31c8079352c06 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Hat_010(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hat_010 + parentName: Hat_010(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Hat_010(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Hat/Hat_010.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Mascots.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Mascots.meta new file mode 100644 index 0000000..d511eb2 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Mascots.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 37dc006e0aae6ea46a11a89ea575db40 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Mascots/Mascot_002.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Mascots/Mascot_002.fbx new file mode 100644 index 0000000..11c5e81 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Mascots/Mascot_002.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Mascots/Mascot_002.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Mascots/Mascot_002.fbx.meta new file mode 100644 index 0000000..90e5f64 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Mascots/Mascot_002.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 3e038445d159c3545bbcb19acc70593f +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Mascot_002(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Mascot_002 + parentName: Mascot_002(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Mascot_002(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Mascots/Mascot_002.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Outfit.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outfit.meta new file mode 100644 index 0000000..241b41c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outfit.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3bc0650fc9127b446911c94c27b84af1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Outfit/Outfit_010.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outfit/Outfit_010.fbx new file mode 100644 index 0000000..93cf9f4 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outfit/Outfit_010.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Outfit/Outfit_010.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outfit/Outfit_010.fbx.meta new file mode 100644 index 0000000..9d8552f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outfit/Outfit_010.fbx.meta @@ -0,0 +1,522 @@ +fileFormatVersion: 2 +guid: de746c65be1d3594384300bbc4f9e168 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Outfit_010(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Outfit_010 + parentName: Outfit_010(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Outfit_010(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.1102232e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.2477584, y: -0.0000009708205, z: 0.00000024826952, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000001} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.69055235, y: -0.14536478, z: 0.69428474, w: 0.14133382} + scale: {x: 0.99999845, y: 0.99999493, z: 1.0000046} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: 0.0065620965, y: 0.0068166656, z: -0.107853614, w: 0.9941218} + scale: {x: 0.99999785, y: 0.99999994, z: 1} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: 0.37091264, y: -0.60024947, z: 0.37896135, w: 0.5987593} + scale: {x: 0.9999982, y: 1.0000024, z: 1.0000013} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: -0.0000000013966587, y: 1, z: -0.00000003725293, w: 0.000005439916} + scale: {x: 1.0000006, y: 0.9999981, z: 1.0000004} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.145365, z: 0.69428337, w: -0.1413333} + scale: {x: 0.99999875, y: 0.999994, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.0065620895, y: -0.0068165944, z: 0.10785357, w: 0.9941218} + scale: {x: 0.99999964, y: 1.0000005, z: 0.99999976} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.3709124, y: 0.6002493, z: -0.3789613, w: 0.59875965} + scale: {x: 1.0000013, y: 0.9999994, z: 0.9999985} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.0000000046564015, y: 1, z: 3.3825238e-13, w: -0.000006155172} + scale: {x: 1.000001, y: 0.99999976, z: 1.0000001} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.23109376, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.99999964, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.0056683216, y: 4.2764544e-13, z: -6.044778e-14, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.9999996} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.52331096, y: 0.455521, z: 0.54517496, w: 0.47056407} + scale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.04199766, y: -0.008905036, z: -0.012638149, w: 0.99899805} + scale: {x: 0.9999988, y: 1.0000008, z: 1.0000004} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: 0.040145803, y: -0.71144754, z: 0.016867727, w: 0.7013889} + scale: {x: 1, y: 1.0000012, z: 1.0000007} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.06332686, y: 0.057902038, z: 0.18569629, w: 0.9788534} + scale: {x: 0.9999995, y: 0.9999998, z: 0.9999989} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.066300035, y: -0.7821326, z: 0.07260302, w: 0.6153062} + scale: {x: 1.0000004, y: 1.0000011, z: 1.0000004} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.000000012456934, y: 0.008824148, z: 0.000000015833113, w: 0.9999611} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.015756983, y: -0.76071495, z: 0.049482264, w: 0.64700544} + scale: {x: 0.9999999, y: 0.9999991, z: 1.0000001} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.000000068520706, y: -0.06740804, z: -0.000000013068237, w: 0.9977255} + scale: {x: 0.99999946, y: 1.0000014, z: 0.9999996} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.027553953, y: -0.7103214, z: 0.12914248, w: 0.69138014} + scale: {x: 0.9999997, y: 0.9999998, z: 1.0000006} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000002025832, y: -0.014233044, z: -0.0000000726505, w: 0.99989873} + scale: {x: 1.0000004, y: 1.0000001, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.087648116, y: -0.6836664, z: 0.13569695, w: 0.7116912} + scale: {x: 1.0000006, y: 1.0000006, z: 1.0000002} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: 0.016826883, y: -0.74243546, z: 0.10570575, w: 0.6613114} + scale: {x: 1.0000002, y: 1.0000005, z: 0.99999994} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000019793698, y: -0.017694853, z: 0.00000003481366, w: 0.9998435} + scale: {x: 0.9999998, y: 0.999999, z: 0.9999997} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: -0.18863569, y: 0.95492417, z: 0.19843517, w: -0.114716716} + scale: {x: 1.0000005, y: 1.0000008, z: 0.9999999} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000012266445, y: 0.056428105, z: 0.000000014924952, w: 0.99840665} + scale: {x: 0.9999994, y: 0.9999986, z: 0.9999999} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.113181375, y: -3.050584e-14, z: 1.1901714e-13, w: 0.9935743} + scale: {x: 1.0000005, y: 0.9999997, z: 1} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000034645177, y: -6.7762684e-21, z: 3.5914197e-19, w: 1} + scale: {x: 0.9999993, y: 1.0000007, z: 1.0000005} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.52331096, y: 0.455521, z: 0.54517496, w: -0.47056407} + scale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.04199766, y: 0.008905081, z: 0.012638238, w: 0.99899805} + scale: {x: 0.99999875, y: 1.0000008, z: 1.0000004} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.04014593, y: 0.7114475, z: -0.016867796, w: 0.7013889} + scale: {x: 0.9999999, y: 0.9999995, z: 1.000001} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.06332686, y: -0.05790204, z: -0.18569624, w: 0.9788534} + scale: {x: 0.9999999, y: 1.0000004, z: 0.99999964} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: 0.066300124, y: 0.78213257, z: -0.07260306, w: 0.6153062} + scale: {x: 1, y: 1.000001, z: 1.0000006} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000011991253, y: -0.008824146, z: -0.000000013504707, w: 0.9999611} + scale: {x: 1.0000005, y: 0.99999905, z: 0.9999997} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: 0.015756963, y: 0.76071495, z: -0.04948219, w: 0.64700544} + scale: {x: 0.9999999, y: 0.9999995, z: 1.0000001} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: 0.00000009176944, y: 0.06740804, z: 0.0000000100345385, w: 0.9977255} + scale: {x: 1.0000004, y: 0.9999998, z: 0.99999887} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.027553953, y: 0.7103214, z: -0.12914248, w: 0.69138014} + scale: {x: 0.9999994, y: 0.9999996, z: 1.0000008} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.000000019035838, y: 0.014233045, z: 0.00000007637615, w: 0.99989873} + scale: {x: 1.0000011, y: 1.0000001, z: 0.9999995} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.087648, y: 0.68366647, z: -0.13569683, w: 0.7116912} + scale: {x: 1.0000005, y: 1.0000006, z: 0.99999994} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.016826881, y: 0.74243546, z: -0.10570566, w: 0.6613114} + scale: {x: 1.0000006, y: 1.0000004, z: 0.99999994} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: -5.2395677e-10, y: 0.017694853, z: -0.000000036443733, w: 0.9998435} + scale: {x: 0.99999934, y: 0.9999989, z: 1.0000001} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: 0.18863572, y: 0.95492417, z: 0.19843517, w: 0.11471673} + scale: {x: 1.0000005, y: 1.0000012, z: 0.9999991} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.00000012919415, y: -0.0564281, z: -0.0000000037312344, w: 0.99840665} + scale: {x: 1, y: 0.99999756, z: 1.000001} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Outfit/Outfit_010.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear.meta new file mode 100644 index 0000000..f779e62 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 808c47abcc120dc4fb699b5b845b7d77 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_004.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_004.fbx new file mode 100644 index 0000000..e44d0dd Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_004.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_004.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_004.fbx.meta new file mode 100644 index 0000000..ca2e60a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_004.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: e79b799a85000cd4ea6d2332153cbd7b +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Outwear_004(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Outwear_004 + parentName: Outwear_004(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Outwear_004(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_004.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_043.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_043.fbx new file mode 100644 index 0000000..67ed36b Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_043.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_043.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_043.fbx.meta new file mode 100644 index 0000000..ccf3fd6 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_043.fbx.meta @@ -0,0 +1,522 @@ +fileFormatVersion: 2 +guid: d0367ce8ac8ac514a9278f7eb0ed66ac +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Outwear_043(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Outwear_043 + parentName: Outwear_043(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Outwear_043(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.1102232e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.2477584, y: -0.0000009708205, z: 0.00000024826952, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000001} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.69055235, y: -0.14536478, z: 0.69428474, w: 0.14133382} + scale: {x: 0.99999845, y: 0.99999493, z: 1.0000046} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: 0.0065620965, y: 0.0068166656, z: -0.107853614, w: 0.9941218} + scale: {x: 0.99999785, y: 0.99999994, z: 1} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: 0.37091264, y: -0.60024947, z: 0.37896135, w: 0.5987593} + scale: {x: 0.9999982, y: 1.0000024, z: 1.0000013} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: -0.0000000013966587, y: 1, z: -0.00000003725293, w: 0.000005439916} + scale: {x: 1.0000006, y: 0.9999981, z: 1.0000004} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.145365, z: 0.69428337, w: -0.1413333} + scale: {x: 0.99999875, y: 0.999994, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.0065620895, y: -0.0068165944, z: 0.10785357, w: 0.9941218} + scale: {x: 0.99999964, y: 1.0000005, z: 0.99999976} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.3709124, y: 0.6002493, z: -0.3789613, w: 0.59875965} + scale: {x: 1.0000013, y: 0.9999994, z: 0.9999985} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.0000000046564015, y: 1, z: 3.3825238e-13, w: -0.000006155172} + scale: {x: 1.000001, y: 0.99999976, z: 1.0000001} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.23109376, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.99999964, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.0056683216, y: 4.2764544e-13, z: -6.044778e-14, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.9999996} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.52331096, y: 0.455521, z: 0.54517496, w: 0.47056407} + scale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.04199766, y: -0.008905036, z: -0.012638149, w: 0.99899805} + scale: {x: 0.9999988, y: 1.0000008, z: 1.0000004} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: 0.040145803, y: -0.71144754, z: 0.016867727, w: 0.7013889} + scale: {x: 1, y: 1.0000012, z: 1.0000007} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.06332686, y: 0.057902038, z: 0.18569629, w: 0.9788534} + scale: {x: 0.9999995, y: 0.9999998, z: 0.9999989} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.066300035, y: -0.7821326, z: 0.07260302, w: 0.6153062} + scale: {x: 1.0000004, y: 1.0000011, z: 1.0000004} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.000000012456934, y: 0.008824148, z: 0.000000015833113, w: 0.9999611} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.015756983, y: -0.76071495, z: 0.049482264, w: 0.64700544} + scale: {x: 0.9999999, y: 0.9999991, z: 1.0000001} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.000000068520706, y: -0.06740804, z: -0.000000013068237, w: 0.9977255} + scale: {x: 0.99999946, y: 1.0000014, z: 0.9999996} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.027553953, y: -0.7103214, z: 0.12914248, w: 0.69138014} + scale: {x: 0.9999997, y: 0.9999998, z: 1.0000006} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000002025832, y: -0.014233044, z: -0.0000000726505, w: 0.99989873} + scale: {x: 1.0000004, y: 1.0000001, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.087648116, y: -0.6836664, z: 0.13569695, w: 0.7116912} + scale: {x: 1.0000006, y: 1.0000006, z: 1.0000002} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: 0.016826883, y: -0.74243546, z: 0.10570575, w: 0.6613114} + scale: {x: 1.0000002, y: 1.0000005, z: 0.99999994} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000019793698, y: -0.017694853, z: 0.00000003481366, w: 0.9998435} + scale: {x: 0.9999998, y: 0.999999, z: 0.9999997} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: -0.18863569, y: 0.95492417, z: 0.19843517, w: -0.114716716} + scale: {x: 1.0000005, y: 1.0000008, z: 0.9999999} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000012266445, y: 0.056428105, z: 0.000000014924952, w: 0.99840665} + scale: {x: 0.9999994, y: 0.9999986, z: 0.9999999} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.113181375, y: -3.050584e-14, z: 1.1901714e-13, w: 0.9935743} + scale: {x: 1.0000005, y: 0.9999997, z: 1} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000034645177, y: -6.7762684e-21, z: 3.5914197e-19, w: 1} + scale: {x: 0.9999993, y: 1.0000007, z: 1.0000005} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.52331096, y: 0.455521, z: 0.54517496, w: -0.47056407} + scale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.04199766, y: 0.008905081, z: 0.012638238, w: 0.99899805} + scale: {x: 0.99999875, y: 1.0000008, z: 1.0000004} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.04014593, y: 0.7114475, z: -0.016867796, w: 0.7013889} + scale: {x: 0.9999999, y: 0.9999995, z: 1.000001} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.06332686, y: -0.05790204, z: -0.18569624, w: 0.9788534} + scale: {x: 0.9999999, y: 1.0000004, z: 0.99999964} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: 0.066300124, y: 0.78213257, z: -0.07260306, w: 0.6153062} + scale: {x: 1, y: 1.000001, z: 1.0000006} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000011991253, y: -0.008824146, z: -0.000000013504707, w: 0.9999611} + scale: {x: 1.0000005, y: 0.99999905, z: 0.9999997} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: 0.015756963, y: 0.76071495, z: -0.04948219, w: 0.64700544} + scale: {x: 0.9999999, y: 0.9999995, z: 1.0000001} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: 0.00000009176944, y: 0.06740804, z: 0.0000000100345385, w: 0.9977255} + scale: {x: 1.0000004, y: 0.9999998, z: 0.99999887} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.027553953, y: 0.7103214, z: -0.12914248, w: 0.69138014} + scale: {x: 0.9999994, y: 0.9999996, z: 1.0000008} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.000000019035838, y: 0.014233045, z: 0.00000007637615, w: 0.99989873} + scale: {x: 1.0000011, y: 1.0000001, z: 0.9999995} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.087648, y: 0.68366647, z: -0.13569683, w: 0.7116912} + scale: {x: 1.0000005, y: 1.0000006, z: 0.99999994} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.016826881, y: 0.74243546, z: -0.10570566, w: 0.6613114} + scale: {x: 1.0000006, y: 1.0000004, z: 0.99999994} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: -5.2395677e-10, y: 0.017694853, z: -0.000000036443733, w: 0.9998435} + scale: {x: 0.99999934, y: 0.9999989, z: 1.0000001} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: 0.18863572, y: 0.95492417, z: 0.19843517, w: 0.11471673} + scale: {x: 1.0000005, y: 1.0000012, z: 0.9999991} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.00000012919415, y: -0.0564281, z: -0.0000000037312344, w: 0.99840665} + scale: {x: 1, y: 0.99999756, z: 1.000001} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_043.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_050.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_050.fbx new file mode 100644 index 0000000..cd6c139 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_050.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_050.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_050.fbx.meta new file mode 100644 index 0000000..2e6c911 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_050.fbx.meta @@ -0,0 +1,522 @@ +fileFormatVersion: 2 +guid: 5a531847cd74a654b97ef249cb9306d5 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Outwear_050(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Outwear_050 + parentName: Outwear_050(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Outwear_050(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.1102232e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.2477584, y: -0.0000009708205, z: 0.00000024826952, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000001} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.69055235, y: -0.14536478, z: 0.69428474, w: 0.14133382} + scale: {x: 0.99999845, y: 0.99999493, z: 1.0000046} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: 0.0065620965, y: 0.0068166656, z: -0.107853614, w: 0.9941218} + scale: {x: 0.99999785, y: 0.99999994, z: 1} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: 0.37091264, y: -0.60024947, z: 0.37896135, w: 0.5987593} + scale: {x: 0.9999982, y: 1.0000024, z: 1.0000013} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: -0.0000000013966587, y: 1, z: -0.00000003725293, w: 0.000005439916} + scale: {x: 1.0000006, y: 0.9999981, z: 1.0000004} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.145365, z: 0.69428337, w: -0.1413333} + scale: {x: 0.99999875, y: 0.999994, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.0065620895, y: -0.0068165944, z: 0.10785357, w: 0.9941218} + scale: {x: 0.99999964, y: 1.0000005, z: 0.99999976} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.3709124, y: 0.6002493, z: -0.3789613, w: 0.59875965} + scale: {x: 1.0000013, y: 0.9999994, z: 0.9999985} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.0000000046564015, y: 1, z: 3.3825238e-13, w: -0.000006155172} + scale: {x: 1.000001, y: 0.99999976, z: 1.0000001} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.23109376, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.99999964, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.0056683216, y: 4.2764544e-13, z: -6.044778e-14, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.9999996} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.52331096, y: 0.455521, z: 0.54517496, w: 0.47056407} + scale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.04199766, y: -0.008905036, z: -0.012638149, w: 0.99899805} + scale: {x: 0.9999988, y: 1.0000008, z: 1.0000004} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: 0.040145803, y: -0.71144754, z: 0.016867727, w: 0.7013889} + scale: {x: 1, y: 1.0000012, z: 1.0000007} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.06332686, y: 0.057902038, z: 0.18569629, w: 0.9788534} + scale: {x: 0.9999995, y: 0.9999998, z: 0.9999989} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.066300035, y: -0.7821326, z: 0.07260302, w: 0.6153062} + scale: {x: 1.0000004, y: 1.0000011, z: 1.0000004} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.000000012456934, y: 0.008824148, z: 0.000000015833113, w: 0.9999611} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.015756983, y: -0.76071495, z: 0.049482264, w: 0.64700544} + scale: {x: 0.9999999, y: 0.9999991, z: 1.0000001} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.000000068520706, y: -0.06740804, z: -0.000000013068237, w: 0.9977255} + scale: {x: 0.99999946, y: 1.0000014, z: 0.9999996} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.027553953, y: -0.7103214, z: 0.12914248, w: 0.69138014} + scale: {x: 0.9999997, y: 0.9999998, z: 1.0000006} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000002025832, y: -0.014233044, z: -0.0000000726505, w: 0.99989873} + scale: {x: 1.0000004, y: 1.0000001, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.087648116, y: -0.6836664, z: 0.13569695, w: 0.7116912} + scale: {x: 1.0000006, y: 1.0000006, z: 1.0000002} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: 0.016826883, y: -0.74243546, z: 0.10570575, w: 0.6613114} + scale: {x: 1.0000002, y: 1.0000005, z: 0.99999994} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000019793698, y: -0.017694853, z: 0.00000003481366, w: 0.9998435} + scale: {x: 0.9999998, y: 0.999999, z: 0.9999997} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: -0.18863569, y: 0.95492417, z: 0.19843517, w: -0.114716716} + scale: {x: 1.0000005, y: 1.0000008, z: 0.9999999} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000012266445, y: 0.056428105, z: 0.000000014924952, w: 0.99840665} + scale: {x: 0.9999994, y: 0.9999986, z: 0.9999999} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.113181375, y: -3.050584e-14, z: 1.1901714e-13, w: 0.9935743} + scale: {x: 1.0000005, y: 0.9999997, z: 1} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000034645177, y: -6.7762684e-21, z: 3.5914197e-19, w: 1} + scale: {x: 0.9999993, y: 1.0000007, z: 1.0000005} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.52331096, y: 0.455521, z: 0.54517496, w: -0.47056407} + scale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.04199766, y: 0.008905081, z: 0.012638238, w: 0.99899805} + scale: {x: 0.99999875, y: 1.0000008, z: 1.0000004} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.04014593, y: 0.7114475, z: -0.016867796, w: 0.7013889} + scale: {x: 0.9999999, y: 0.9999995, z: 1.000001} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.06332686, y: -0.05790204, z: -0.18569624, w: 0.9788534} + scale: {x: 0.9999999, y: 1.0000004, z: 0.99999964} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: 0.066300124, y: 0.78213257, z: -0.07260306, w: 0.6153062} + scale: {x: 1, y: 1.000001, z: 1.0000006} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000011991253, y: -0.008824146, z: -0.000000013504707, w: 0.9999611} + scale: {x: 1.0000005, y: 0.99999905, z: 0.9999997} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: 0.015756963, y: 0.76071495, z: -0.04948219, w: 0.64700544} + scale: {x: 0.9999999, y: 0.9999995, z: 1.0000001} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: 0.00000009176944, y: 0.06740804, z: 0.0000000100345385, w: 0.9977255} + scale: {x: 1.0000004, y: 0.9999998, z: 0.99999887} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.027553953, y: 0.7103214, z: -0.12914248, w: 0.69138014} + scale: {x: 0.9999994, y: 0.9999996, z: 1.0000008} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.000000019035838, y: 0.014233045, z: 0.00000007637615, w: 0.99989873} + scale: {x: 1.0000011, y: 1.0000001, z: 0.9999995} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.087648, y: 0.68366647, z: -0.13569683, w: 0.7116912} + scale: {x: 1.0000005, y: 1.0000006, z: 0.99999994} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.016826881, y: 0.74243546, z: -0.10570566, w: 0.6613114} + scale: {x: 1.0000006, y: 1.0000004, z: 0.99999994} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: -5.2395677e-10, y: 0.017694853, z: -0.000000036443733, w: 0.9998435} + scale: {x: 0.99999934, y: 0.9999989, z: 1.0000001} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: 0.18863572, y: 0.95492417, z: 0.19843517, w: 0.11471673} + scale: {x: 1.0000005, y: 1.0000012, z: 0.9999991} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.00000012919415, y: -0.0564281, z: -0.0000000037312344, w: 0.99840665} + scale: {x: 1, y: 0.99999756, z: 1.000001} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Outwear/Outwear_050.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants.meta new file mode 100644 index 0000000..9da4a25 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 438271c859c0581409a279979373165a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_009.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_009.fbx new file mode 100644 index 0000000..27f8473 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_009.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_009.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_009.fbx.meta new file mode 100644 index 0000000..1a8ff72 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_009.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 0f24f9714abd24a4596c28822aaa7a39 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Pants_009(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Pants_009 + parentName: Pants_009(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Pants_009(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_009.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_010.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_010.fbx new file mode 100644 index 0000000..b87f9df Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_010.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_010.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_010.fbx.meta new file mode 100644 index 0000000..85f8e9a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_010.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 67dfe8b1e1ed9b34c985396c6282c820 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Pants_010(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Pants_010 + parentName: Pants_010(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Pants_010(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Pants/Pants_010.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes.meta new file mode 100644 index 0000000..def124d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9c0c4e8360614c549a632d16e0cb28b3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_002.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_002.fbx new file mode 100644 index 0000000..ebe4df6 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_002.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_002.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_002.fbx.meta new file mode 100644 index 0000000..cf805bf --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_002.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 20384ecd8466c804eb14b502b62acc3b +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Shoe_Slippers_002(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Shoe_Slippers_002 + parentName: Shoe_Slippers_002(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Shoe_Slippers_002(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_002.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_005.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_005.fbx new file mode 100644 index 0000000..97f634e Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_005.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_005.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_005.fbx.meta new file mode 100644 index 0000000..07cf45b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_005.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: bfab5a5ca14002a469bd5912e025f274 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Shoe_Slippers_005(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Shoe_Slippers_005 + parentName: Shoe_Slippers_005(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Shoe_Slippers_005(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Slippers_005.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Sneakers_009.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Sneakers_009.fbx new file mode 100644 index 0000000..00ab47d Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Sneakers_009.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Sneakers_009.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Sneakers_009.fbx.meta new file mode 100644 index 0000000..b82049e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Sneakers_009.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 0fc9184e885899c408b2467848981766 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Shoe_Sneakers_009(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Shoe_Sneakers_009 + parentName: Shoe_Sneakers_009(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Shoe_Sneakers_009(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Shoes/Shoe_Sneakers_009.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Shorts.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shorts.meta new file mode 100644 index 0000000..aadda089c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shorts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ef574959a242e24eb11817c22bb8474 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Shorts/Shorts_003.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shorts/Shorts_003.fbx new file mode 100644 index 0000000..2450d59 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shorts/Shorts_003.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Shorts/Shorts_003.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shorts/Shorts_003.fbx.meta new file mode 100644 index 0000000..16ac19b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Shorts/Shorts_003.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 1e74168fbee4e5c4097912723ebf6de7 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Shorts_003(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Shorts_003 + parentName: Shorts_003(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: Skeleton + parentName: Shorts_003(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Shorts/Shorts_003.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Socks.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Socks.meta new file mode 100644 index 0000000..fde9845 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Socks.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6dcf0aeae9001cf46928dc6a556953ff +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Socks/Socks_008.fbx b/Assets/ithappy/Creative_Characters_FREE/Meshes/Socks/Socks_008.fbx new file mode 100644 index 0000000..3373392 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Meshes/Socks/Socks_008.fbx differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Meshes/Socks/Socks_008.fbx.meta b/Assets/ithappy/Creative_Characters_FREE/Meshes/Socks/Socks_008.fbx.meta new file mode 100644 index 0000000..ccc87d8 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Meshes/Socks/Socks_008.fbx.meta @@ -0,0 +1,682 @@ +fileFormatVersion: 2 +guid: 1ce007de4fc6e4645b0ea41258fde30a +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Color + second: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + materials: + materialImportMode: 2 + materialName: 1 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 1 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Socks_008(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Skeleton + parentName: Socks_008(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Root + parentName: Skeleton + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.000000067179414, y: -1.110223e-16, z: 1.110223e-16, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: Root + position: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + rotation: {x: -0.24775837, y: -0.0000009708205, z: 0.0000002482695, w: 0.9688219} + scale: {x: 1.0000012, y: 1.0000014, z: 1.0000002} + - name: LeftUpLeg + parentName: Hips + position: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + rotation: {x: -0.6905524, y: -0.14536476, z: 0.6942847, w: 0.14133373} + scale: {x: 0.99999857, y: 0.9999953, z: 1.0000048} + - name: LeftLeg + parentName: LeftUpLeg + position: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + rotation: {x: -0.006562248, y: -0.006816637, z: 0.10785358, w: -0.9941218} + scale: {x: 0.9999979, y: 1.0000004, z: 1.0000004} + - name: LeftFoot + parentName: LeftLeg + position: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + rotation: {x: -0.37091276, y: 0.6002493, z: -0.37896168, w: -0.5987593} + scale: {x: 0.99999815, y: 1.0000025, z: 1.0000014} + - name: LeftToeBase + parentName: LeftFoot + position: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + rotation: {x: 0.000000014901159, y: -1, z: -0.000000029802319, w: -0.000005483627} + scale: {x: 1.0000007, y: 0.99999815, z: 1.0000004} + - name: Spine + parentName: Hips + position: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + rotation: {x: 0.2310938, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + scale: {x: 0.9999997, y: 0.9999983, z: 0.9999991} + - name: Spine1 + parentName: Spine + position: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + rotation: {x: -0.005668327, y: 4.5474735e-13, z: -1.1368684e-13, w: 0.99998397} + scale: {x: 1, y: 0.9999998, z: 0.99999946} + - name: Neck + parentName: Spine1 + position: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + rotation: {x: 0.11318131, y: -4.1824424e-14, z: 1.3576863e-13, w: 0.9935744} + scale: {x: 1.0000005, y: 0.9999999, z: 0.9999998} + - name: Head + parentName: Neck + position: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + rotation: {x: 0.00000037997955, y: 5.4985442e-14, z: -2.0241675e-14, w: 1} + scale: {x: 0.99999934, y: 1.0000007, z: 1.0000006} + - name: LeftShoulder + parentName: Spine1 + position: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: -0.5233111, y: 0.45552087, z: 0.54517514, w: 0.47056386} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: LeftArm + parentName: LeftShoulder + position: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: -0.041997943, y: 0.008904843, z: 0.012638298, w: -0.99899805} + scale: {x: 0.99999875, y: 1.0000013, z: 1.0000001} + - name: LeftForeArm + parentName: LeftArm + position: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + rotation: {x: -0.04014582, y: 0.7114477, z: -0.016867692, w: -0.7013886} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000008} + - name: LeftHand + parentName: LeftForeArm + position: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + rotation: {x: -0.061748773, y: 0.060721293, z: 0.14384535, w: 0.9858035} + scale: {x: 0.9999992, y: 0.99999934, z: 0.99999934} + - name: LeftHandIndex1 + parentName: LeftHand + position: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + rotation: {x: 0.013585237, y: -0.7854001, z: 0.003650709, w: 0.6188286} + scale: {x: 1.0000004, y: 1.0000014, z: 1.0000005} + - name: LeftHandIndex2 + parentName: LeftHandIndex1 + position: {x: -0, y: 0.039015174, z: 0.000000013504177} + rotation: {x: -0.00000013411044, y: 0.00882393, z: -0.00000007078051, w: 0.99996114} + scale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + - name: LeftHandMiddle1 + parentName: LeftHand + position: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + rotation: {x: 0.0003266446, y: -0.7618006, z: 0.0142326895, w: 0.6476552} + scale: {x: 0.99999976, y: 0.9999991, z: 0.9999999} + - name: LeftHandMiddle2 + parentName: LeftHandMiddle1 + position: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + rotation: {x: 0.00000010896471, y: -0.06740804, z: -0.000000017695125, w: 0.9977255} + scale: {x: 0.99999917, y: 1.0000014, z: 0.99999964} + - name: LeftHandPinky1 + parentName: LeftHand + position: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + rotation: {x: -0.028192885, y: -0.7184843, z: 0.015462192, w: 0.69479966} + scale: {x: 0.9999996, y: 1.0000001, z: 1.0000004} + - name: LeftHandPinky2 + parentName: LeftHandPinky1 + position: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + rotation: {x: 0.00000015459953, y: -0.014232783, z: -0.0000001490116, w: 0.9998988} + scale: {x: 1.0000005, y: 1.0000005, z: 0.9999996} + - name: LeftHandProp + parentName: LeftHand + position: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + rotation: {x: 0.08764777, y: -0.6836664, z: 0.1356965, w: 0.7116914} + scale: {x: 1.0000005, y: 1.0000008, z: 0.99999994} + - name: LeftHandRing1 + parentName: LeftHand + position: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + rotation: {x: -0.009345962, y: -0.7474379, z: 0.014608886, w: 0.66410524} + scale: {x: 0.9999999, y: 1.0000006, z: 0.9999996} + - name: LeftHandRing2 + parentName: LeftHandRing1 + position: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + rotation: {x: 0.0000000037252894, y: -0.017694857, z: -0.000000028870993, w: 0.9998434} + scale: {x: 1.0000004, y: 0.9999996, z: 1} + - name: LeftHandThumb1 + parentName: LeftHand + position: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + rotation: {x: 0.10203821, y: -0.92116874, z: -0.34121966, w: 0.15686184} + scale: {x: 0.9999997, y: 1.0000011, z: 1.0000004} + - name: LeftHandThumb2 + parentName: LeftHandThumb1 + position: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + rotation: {x: 0.00000024959442, y: 0.056428008, z: 0.000000014901159, w: 0.9984067} + scale: {x: 0.9999994, y: 0.99999875, z: 1} + - name: RightShoulder + parentName: Spine1 + position: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + rotation: {x: 0.5233111, y: 0.4555208, z: 0.5451752, w: -0.4705639} + scale: {x: 1.0000008, y: 0.9999986, z: 1.0000007} + - name: RightArm + parentName: RightShoulder + position: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + rotation: {x: 0.041997943, y: 0.008904887, z: 0.012638208, w: 0.9989981} + scale: {x: 0.9999986, y: 1.0000012, z: 1.0000002} + - name: RightForeArm + parentName: RightArm + position: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + rotation: {x: 0.040146176, y: 0.71144766, z: -0.016867472, w: 0.7013887} + scale: {x: 1, y: 0.99999946, z: 1.0000012} + - name: RightHand + parentName: RightForeArm + position: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + rotation: {x: -0.061748773, y: -0.06072112, z: -0.14384681, w: 0.9858033} + scale: {x: 1, y: 1.0000007, z: 0.9999998} + - name: RightHandIndex1 + parentName: RightHand + position: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + rotation: {x: -0.013586196, y: -0.7854001, z: 0.0036521608, w: -0.61882854} + scale: {x: 0.99999964, y: 1.0000011, z: 1.0000012} + - name: RightHandIndex2 + parentName: RightHandIndex1 + position: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + rotation: {x: -0.000000059604638, y: -0.00882393, z: 0.0000000074505797, w: 0.99996114} + scale: {x: 1.0000005, y: 0.9999992, z: 0.99999994} + - name: RightHandMiddle1 + parentName: RightHand + position: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + rotation: {x: -0.00032730016, y: -0.76180047, z: 0.01423351, w: -0.6476553} + scale: {x: 0.9999998, y: 0.9999998, z: 1.0000006} + - name: RightHandMiddle2 + parentName: RightHandMiddle1 + position: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + rotation: {x: -0.00000004936009, y: 0.06740817, z: -0.000000036321577, w: 0.99772555} + scale: {x: 1.0000004, y: 1.0000005, z: 0.9999996} + - name: RightHandPinky1 + parentName: RightHand + position: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + rotation: {x: -0.028191758, y: 0.71848446, z: -0.015463652, w: 0.6947994} + scale: {x: 0.9999993, y: 0.9999998, z: 1.0000011} + - name: RightHandPinky2 + parentName: RightHandPinky1 + position: {x: -0, y: 0.03542494, z: -0.000000022817403} + rotation: {x: 0.00000023841858, y: 0.014232844, z: 0.000000063329935, w: 0.9998988} + scale: {x: 1.0000014, y: 1.0000005, z: 0.9999997} + - name: RightHandProp + parentName: RightHand + position: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + rotation: {x: 0.08764774, y: 0.6836665, z: -0.13569646, w: 0.71169126} + scale: {x: 1.0000007, y: 1.000001, z: 1.0000004} + - name: RightHandRing1 + parentName: RightHand + position: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + rotation: {x: 0.009346914, y: -0.7474379, z: 0.014607215, w: -0.6641054} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005} + - name: RightHandRing2 + parentName: RightHandRing1 + position: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + rotation: {x: 0.0000000167638, y: 0.017694702, z: -0.00000007357445, w: 0.9998435} + scale: {x: 0.9999996, y: 0.99999934, z: 1.0000005} + - name: RightHandThumb1 + parentName: RightHand + position: {x: 0.021660633, y: 0.043446, z: 0.044851314} + rotation: {x: -0.10203833, y: -0.9211691, z: -0.34121853, w: -0.15686165} + scale: {x: 1.0000006, y: 1.0000017, z: 0.9999998} + - name: RightHandThumb2 + parentName: RightHandThumb1 + position: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + rotation: {x: 0.0000001825392, y: -0.056428194, z: -0, w: 0.9984067} + scale: {x: 1, y: 0.99999726, z: 1.0000007} + - name: RightUpLeg + parentName: Hips + position: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + rotation: {x: 0.6905538, y: -0.14536482, z: 0.6942834, w: -0.14133367} + scale: {x: 0.9999988, y: 0.9999939, z: 1.000003} + - name: RightLeg + parentName: RightUpLeg + position: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + rotation: {x: 0.006561458, y: -0.0068166256, z: 0.10785359, w: 0.99412185} + scale: {x: 0.99999976, y: 1.0000011, z: 1.0000001} + - name: RightFoot + parentName: RightLeg + position: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + rotation: {x: 0.37091315, y: 0.6002493, z: -0.37896124, w: 0.59875923} + scale: {x: 1.0000013, y: 0.99999976, z: 0.99999815} + - name: RightToeBase + parentName: RightFoot + position: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + rotation: {x: 0.000000014901158, y: -1, z: 0.00000005960463, w: 0.000006139277} + scale: {x: 1.0000008, y: 1, z: 1.0000002} + - name: Socks_008 + parentName: Socks_008(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Meshes/Socks/Socks_008.fbx + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs.meta new file mode 100644 index 0000000..c8b9e05 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d1816ce03956ff146a06fa2c5dc5e01c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Base_Mesh.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Base_Mesh.prefab new file mode 100644 index 0000000..22a4b71 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Base_Mesh.prefab @@ -0,0 +1,440 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7312575046814370627 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8123965163915932741} + m_Layer: 0 + m_Name: Base_Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8123965163915932741 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7312575046814370627} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3948772839848745554} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3550633677708361145 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8123965163915932741} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8379253587731805635, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.x + value: 0.00059969723 + objectReference: {fileID: 0} + - target: {fileID: -8379253587731805635, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.y + value: 1.6339433 + objectReference: {fileID: 0} + - target: {fileID: -8379253587731805635, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.z + value: 0.014180191 + objectReference: {fileID: 0} + - target: {fileID: -8379253587731805635, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.16428672 + objectReference: {fileID: 0} + - target: {fileID: -8379253587731805635, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.21782446 + objectReference: {fileID: 0} + - target: {fileID: -8379253587731805635, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.14722747 + objectReference: {fileID: 0} + - target: {fileID: -8379253587731805635, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - target: {fileID: -5131445308505392996, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.x + value: -0.00005531311 + objectReference: {fileID: 0} + - target: {fileID: -5131445308505392996, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.y + value: 1.6503568 + objectReference: {fileID: 0} + - target: {fileID: -5131445308505392996, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.z + value: 0.002612561 + objectReference: {fileID: 0} + - target: {fileID: -5131445308505392996, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.14890778 + objectReference: {fileID: 0} + - target: {fileID: -5131445308505392996, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.19497657 + objectReference: {fileID: 0} + - target: {fileID: -5131445308505392996, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.13903981 + objectReference: {fileID: 0} + - target: {fileID: -5131445308505392996, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - target: {fileID: -3287904155548602526, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.x + value: 0.008912921 + objectReference: {fileID: 0} + - target: {fileID: -3287904155548602526, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.y + value: 1.0435348 + objectReference: {fileID: 0} + - target: {fileID: -3287904155548602526, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.z + value: -0.0063408017 + objectReference: {fileID: 0} + - target: {fileID: -3287904155548602526, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.7335049 + objectReference: {fileID: 0} + - target: {fileID: -3287904155548602526, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.10325909 + objectReference: {fileID: 0} + - target: {fileID: -3287904155548602526, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.10197218 + objectReference: {fileID: 0} + - target: {fileID: -3287904155548602526, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - target: {fileID: -2400787742401971714, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.x + value: 0.00292328 + objectReference: {fileID: 0} + - target: {fileID: -2400787742401971714, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.y + value: 1.1548384 + objectReference: {fileID: 0} + - target: {fileID: -2400787742401971714, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.z + value: -0.011422679 + objectReference: {fileID: 0} + - target: {fileID: -2400787742401971714, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.7399738 + objectReference: {fileID: 0} + - target: {fileID: -2400787742401971714, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.2947458 + objectReference: {fileID: 0} + - target: {fileID: -2400787742401971714, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.16405736 + objectReference: {fileID: 0} + - target: {fileID: -2400787742401971714, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - target: {fileID: -911478505428209132, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.x + value: -0.0000005364418 + objectReference: {fileID: 0} + - target: {fileID: -911478505428209132, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.y + value: 1.6383984 + objectReference: {fileID: 0} + - target: {fileID: -911478505428209132, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.z + value: -0.017683998 + objectReference: {fileID: 0} + - target: {fileID: -911478505428209132, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.14 + objectReference: {fileID: 0} + - target: {fileID: -911478505428209132, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.17642885 + objectReference: {fileID: 0} + - target: {fileID: -911478505428209132, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.13490401 + objectReference: {fileID: 0} + - target: {fileID: -911478505428209132, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - target: {fileID: -172240444564740621, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.x + value: 0.0018211603 + objectReference: {fileID: 0} + - target: {fileID: -172240444564740621, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.y + value: 0.88409114 + objectReference: {fileID: 0} + - target: {fileID: -172240444564740621, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.z + value: -0.012162611 + objectReference: {fileID: 0} + - target: {fileID: -172240444564740621, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.72850037 + objectReference: {fileID: 0} + - target: {fileID: -172240444564740621, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.94880724 + objectReference: {fileID: 0} + - target: {fileID: -172240444564740621, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.16969799 + objectReference: {fileID: 0} + - target: {fileID: -172240444564740621, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - target: {fileID: -150009337949190703, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.x + value: 0.00018265843 + objectReference: {fileID: 0} + - target: {fileID: -150009337949190703, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.y + value: 1.7094162 + objectReference: {fileID: 0} + - target: {fileID: -150009337949190703, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.z + value: -0.00580436 + objectReference: {fileID: 0} + - target: {fileID: -150009337949190703, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.21705824 + objectReference: {fileID: 0} + - target: {fileID: -150009337949190703, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.24826336 + objectReference: {fileID: 0} + - target: {fileID: -150009337949190703, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.16541538 + objectReference: {fileID: 0} + - target: {fileID: -150009337949190703, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - target: {fileID: 919132149155446097, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Name + value: Base_Mesh + objectReference: {fileID: 0} + - target: {fileID: 1630794972795428178, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - target: {fileID: 5128063986421979777, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.x + value: 0.0052225143 + objectReference: {fileID: 0} + - target: {fileID: 5128063986421979777, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.y + value: 0.12693259 + objectReference: {fileID: 0} + - target: {fileID: 5128063986421979777, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.z + value: 0.04254964 + objectReference: {fileID: 0} + - target: {fileID: 5128063986421979777, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.18724449 + objectReference: {fileID: 0} + - target: {fileID: 5128063986421979777, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.13123533 + objectReference: {fileID: 0} + - target: {fileID: 5128063986421979777, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.172425 + objectReference: {fileID: 0} + - target: {fileID: 5128063986421979777, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - target: {fileID: 5860230304046082045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.x + value: -0.0047417283 + objectReference: {fileID: 0} + - target: {fileID: 5860230304046082045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.y + value: 1.0844305 + objectReference: {fileID: 0} + - target: {fileID: 5860230304046082045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.z + value: -0.023291975 + objectReference: {fileID: 0} + - target: {fileID: 5860230304046082045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.23608255 + objectReference: {fileID: 0} + - target: {fileID: 5860230304046082045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.3706975 + objectReference: {fileID: 0} + - target: {fileID: 5860230304046082045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.15548646 + objectReference: {fileID: 0} + - target: {fileID: 5860230304046082045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - target: {fileID: 5866666021909216657, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: fac54571ff27f2b46b28cd6d82cd3c4c, type: 2} + - target: {fileID: 6761708314861323176, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.x + value: 0.010242268 + objectReference: {fileID: 0} + - target: {fileID: 6761708314861323176, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.y + value: 0.42012486 + objectReference: {fileID: 0} + - target: {fileID: 6761708314861323176, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.z + value: -0.02418321 + objectReference: {fileID: 0} + - target: {fileID: 6761708314861323176, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.2176464 + objectReference: {fileID: 0} + - target: {fileID: 6761708314861323176, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.46149895 + objectReference: {fileID: 0} + - target: {fileID: 6761708314861323176, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.14869611 + objectReference: {fileID: 0} + - target: {fileID: 6761708314861323176, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - target: {fileID: 8158258634736384266, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.x + value: 0.00059969723 + objectReference: {fileID: 0} + - target: {fileID: 8158258634736384266, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.y + value: 1.6565301 + objectReference: {fileID: 0} + - target: {fileID: 8158258634736384266, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.z + value: 0.008531332 + objectReference: {fileID: 0} + - target: {fileID: 8158258634736384266, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.15401177 + objectReference: {fileID: 0} + - target: {fileID: 8158258634736384266, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.16722608 + objectReference: {fileID: 0} + - target: {fileID: 8158258634736384266, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.1475231 + objectReference: {fileID: 0} + - target: {fileID: 8158258634736384266, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + - target: {fileID: 8293796529555187152, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.x + value: 0.0027686656 + objectReference: {fileID: 0} + - target: {fileID: 8293796529555187152, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.y + value: 1.633856 + objectReference: {fileID: 0} + - target: {fileID: 8293796529555187152, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Center.z + value: 0.011311948 + objectReference: {fileID: 0} + - target: {fileID: 8293796529555187152, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.1481348 + objectReference: {fileID: 0} + - target: {fileID: 8293796529555187152, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.18956184 + objectReference: {fileID: 0} + - target: {fileID: 8293796529555187152, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.14847228 + objectReference: {fileID: 0} + - target: {fileID: 8293796529555187152, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ad472b939cd48144e9521d873c2e3018, type: 3} +--- !u!4 &3948772839848745554 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_PrefabInstance: {fileID: 3550633677708361145} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Base_Mesh.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Base_Mesh.prefab.meta new file mode 100644 index 0000000..f0a6697 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Base_Mesh.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 5736e576bae68ca4393c5441179cace9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Base_Mesh.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Body.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Body.meta new file mode 100644 index 0000000..70f202e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Body.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6fcab800f7e184c4e9f204ab365a627d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Body/Body_010.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Body/Body_010.prefab new file mode 100644 index 0000000..d57db7b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Body/Body_010.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &1066065343405634811 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + propertyPath: m_Name + value: Body_010 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Body/Body_010.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Body/Body_010.prefab.meta new file mode 100644 index 0000000..485aad5 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Body/Body_010.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 7f6862d8aee10a042821738d523fc6fa +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Body/Body_010.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes.meta new file mode 100644 index 0000000..aa84afc --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df04f53c9030c9c459a82ae098e1fcf7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_001.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_001.prefab new file mode 100644 index 0000000..cb578e8 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_001.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &460100721514502086 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} + propertyPath: m_Name + value: Costume_13_001 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c26456827c09dba47ae31941d87b6eb6, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_001.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_001.prefab.meta new file mode 100644 index 0000000..a3ebb9e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_001.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 14f61ecc52af1b342818547159d19ac2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_001.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_002.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_002.prefab new file mode 100644 index 0000000..1305f8a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_002.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &3892765238990583852 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 6134248585b9bcf499ee2710961bc127, type: 3} + propertyPath: m_Name + value: Costume_13_002 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 6134248585b9bcf499ee2710961bc127, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_002.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_002.prefab.meta new file mode 100644 index 0000000..061c29c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_002.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 48013649fde2719469b91a7b7816e693 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Costumes/Costume_13_002.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories.meta new file mode 100644 index 0000000..a34b7af --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ece791a6bca5a3141903f66e3ebaae27 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Clown_nose_001.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Clown_nose_001.prefab new file mode 100644 index 0000000..860cdd2 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Clown_nose_001.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &2869775180538160514 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} + propertyPath: m_Name + value: Clown_nose_001 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9ca093b63b32bc6479e8706c849e1ee2, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Clown_nose_001.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Clown_nose_001.prefab.meta new file mode 100644 index 0000000..25163b4 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Clown_nose_001.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1241abf6489b71440abee7d82a88aafa +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Clown_nose_001.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Headphones_002.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Headphones_002.prefab new file mode 100644 index 0000000..1e54117 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Headphones_002.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &8615816309659006691 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} + propertyPath: m_Name + value: Headphones_002 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 106c56f4b86971e4393de6fb97ee6cdb, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Headphones_002.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Headphones_002.prefab.meta new file mode 100644 index 0000000..8e79b6f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Headphones_002.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: a1742c66ad9daff41889c1a586217fb8 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Headphones_002.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_003.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_003.prefab new file mode 100644 index 0000000..520b39c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_003.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &3661073071598495646 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + propertyPath: m_Name + value: Mustache_003 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_003.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_003.prefab.meta new file mode 100644 index 0000000..c6347c5 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_003.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 7e0f8c5b1b29e4b4895e1fe0b0659109 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_003.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_011.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_011.prefab new file mode 100644 index 0000000..e1e0c53 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_011.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &7753812623102487112 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: b4d34f152c73703499b03a8b9beab646, type: 3} + propertyPath: m_Name + value: Mustache_011 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b4d34f152c73703499b03a8b9beab646, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_011.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_011.prefab.meta new file mode 100644 index 0000000..dd7743d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_011.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: bc6466d27e0478a48a2f220fcc6f87a7 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Mustache_011.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Pacifier_001.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Pacifier_001.prefab new file mode 100644 index 0000000..24a3080 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Pacifier_001.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &7426288642371933859 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: da1fb7324b7aa04488964cec50dec732, type: 3} + propertyPath: m_Name + value: Pacifier_001 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: da1fb7324b7aa04488964cec50dec732, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Pacifier_001.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Pacifier_001.prefab.meta new file mode 100644 index 0000000..d1d1467 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Pacifier_001.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: ed065aba63e6d944b90f24b0b6fd9027 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Face Accessories/Pacifier_001.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces.meta new file mode 100644 index 0000000..24da83d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aea83310823470d4396b38262d0b6a74 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_angry_003.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_angry_003.prefab new file mode 100644 index 0000000..5edb2c5 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_angry_003.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &8959687537740648563 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + propertyPath: m_Name + value: Male_emotion_angry_003 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_angry_003.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_angry_003.prefab.meta new file mode 100644 index 0000000..592c07f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_angry_003.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f9821e37959e9bc4da8d0ee20ea33461 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_angry_003.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_happy_002.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_happy_002.prefab new file mode 100644 index 0000000..6e65611 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_happy_002.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &2042742590505942192 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + propertyPath: m_Name + value: Male_emotion_happy_002 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_happy_002.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_happy_002.prefab.meta new file mode 100644 index 0000000..a9e9369 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_happy_002.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f6318ad0b79a7484f93a73ad9fcd37d3 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_happy_002.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_usual_001.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_usual_001.prefab new file mode 100644 index 0000000..13f09e4 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_usual_001.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &1295885193536881428 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + propertyPath: m_Name + value: Male_emotion_usual_001 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_usual_001.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_usual_001.prefab.meta new file mode 100644 index 0000000..2d62484 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_usual_001.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 22c437e6b43db6d4dbe33a290654a86c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Faces/Male_emotion_usual_001.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses.meta new file mode 100644 index 0000000..c5cf02a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f23447133051054ea250cfac7235a9e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_004.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_004.prefab new file mode 100644 index 0000000..4a952cf --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_004.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &6679029305642159653 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} + propertyPath: m_Name + value: Glasses_004 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 37ecfcaf8ce0c064d92bcec65eba3e31, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_004.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_004.prefab.meta new file mode 100644 index 0000000..f7af533 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_004.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: bb9f5788dc0e32d448ca91b89991c1ce +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_004.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_006.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_006.prefab new file mode 100644 index 0000000..1e55585 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_006.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &5430318186660127414 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + propertyPath: m_Name + value: Glasses_006 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_006.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_006.prefab.meta new file mode 100644 index 0000000..31fbfbf --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_006.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 254f193832ea7e548a928137e81ecf2d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Glasses/Glasses_006.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves.meta new file mode 100644 index 0000000..119fbe3 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8a2ff4131665e9d44bb0e08a4b399769 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_006.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_006.prefab new file mode 100644 index 0000000..c81b227 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_006.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &4487902174928822100 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} + propertyPath: m_Name + value: Gloves_006 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3cc8f7b4705704db2e46eff03dd968, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_006.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_006.prefab.meta new file mode 100644 index 0000000..8a4c4bf --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_006.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 7f8db76a1fcaa484190470b5c4c30342 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_006.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_014.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_014.prefab new file mode 100644 index 0000000..88ca357 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_014.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &4938761665443739863 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} + propertyPath: m_Name + value: Gloves_014 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 47ba93e4fb1b05e418fa1918bf34ed85, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_014.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_014.prefab.meta new file mode 100644 index 0000000..5c71cd4 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_014.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 4f7df4398449d8e4dafc1cd8986d7217 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Gloves/Gloves_014.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle Single.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle Single.meta new file mode 100644 index 0000000..34a716e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle Single.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3fdabd5eb71764040ab3d19e5f973fde +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle Single/Hairstyle_Male_Single_006.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle Single/Hairstyle_Male_Single_006.prefab new file mode 100644 index 0000000..4e06f1d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle Single/Hairstyle_Male_Single_006.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &5408263523523425867 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + propertyPath: m_Name + value: Hairstyle_Male_Single_006 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle Single/Hairstyle_Male_Single_006.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle Single/Hairstyle_Male_Single_006.prefab.meta new file mode 100644 index 0000000..e01f1f9 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle Single/Hairstyle_Male_Single_006.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: a0c5efb12c3a1944695bdbad32e1847d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle Single/Hairstyle_Male_Single_006.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle.meta new file mode 100644 index 0000000..2fe537c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 08150e5adcda7a84486a43f92bf4a543 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_001.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_001.prefab new file mode 100644 index 0000000..767f91e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_001.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &2682216448176573790 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} + propertyPath: m_Name + value: Hairstyle_Male_001 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c00be380054f3aa469720cb9cd40ef14, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_001.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_001.prefab.meta new file mode 100644 index 0000000..df3a769 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_001.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: fe8b4546c13d09341a5c2f9a3ec95ca9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_001.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_005.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_005.prefab new file mode 100644 index 0000000..06d13eb --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_005.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &17551490236967302 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} + propertyPath: m_Name + value: Hairstyle_Male_005 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 634df7d5a6da6804f95f30ed030ec528, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_005.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_005.prefab.meta new file mode 100644 index 0000000..60bb2ec --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_005.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: cfee9492edf33f54bb86e5592b8b9879 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Hairstyle/Hairstyle_Male_005.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single.meta new file mode 100644 index 0000000..a1d9a02 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0025ef0e7864fa44e9ba3d9fcb7dbc00 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_008.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_008.prefab new file mode 100644 index 0000000..d601b8e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_008.prefab @@ -0,0 +1,67 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &2707555745060141706 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_Name + value: Hat_Single_008 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8630591308008188236, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 96f9061b735e1454c8444afd2c8cabb1, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_008.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_008.prefab.meta new file mode 100644 index 0000000..fe1b480 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_008.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 04ba1823c0442e04397b17ece6ad2966 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_008.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_013.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_013.prefab new file mode 100644 index 0000000..0ac7983 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_013.prefab @@ -0,0 +1,63 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &4524981872325240496 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_Name + value: Hat_Single_013 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_013.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_013.prefab.meta new file mode 100644 index 0000000..d9d86d7 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_013.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 24876fae2b076984dafefcb2ec5b67ad +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_013.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_016.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_016.prefab new file mode 100644 index 0000000..06aec70 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_016.prefab @@ -0,0 +1,75 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &4524981872325240496 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_Name + value: Hat_Single_016 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4014537993584373062, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_Mesh + value: + objectReference: {fileID: -6976336618207450407, guid: 59564854f919a404f8eeeb391b17c12e, type: 3} + - target: {fileID: 4014537993584373062, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_Materials.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5866666021909216657, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + propertyPath: m_Avatar + value: + objectReference: {fileID: 9000000, guid: 59564854f919a404f8eeeb391b17c12e, type: 3} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_016.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_016.prefab.meta new file mode 100644 index 0000000..b412b9f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_016.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 2cbe172211afeab47bc71d1d209768fd +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat Single/Hat_Single_016.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat.meta new file mode 100644 index 0000000..d7b9ed4 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cefede4a178c0bc478ce7b4f1d20ecc2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat/Hat_010.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat/Hat_010.prefab new file mode 100644 index 0000000..2d7911a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat/Hat_010.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &2713562949468928491 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + propertyPath: m_Name + value: Hat_010 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat/Hat_010.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat/Hat_010.prefab.meta new file mode 100644 index 0000000..a5fa40a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat/Hat_010.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: ffdfd160ef28c2f4aa96c8fb7ee0ade7 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Hat/Hat_010.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Mascots.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Mascots.meta new file mode 100644 index 0000000..b30147e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Mascots.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23dadbef382db8c4681bde655719271e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Mascots/Mascot_002.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Mascots/Mascot_002.prefab new file mode 100644 index 0000000..85d2acc --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Mascots/Mascot_002.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &9178358524416450396 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} + propertyPath: m_Name + value: Mascot_002 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 3e038445d159c3545bbcb19acc70593f, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Mascots/Mascot_002.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Mascots/Mascot_002.prefab.meta new file mode 100644 index 0000000..110e037 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Mascots/Mascot_002.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 859486e85bd401d4eacf38a2024738a5 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Mascots/Mascot_002.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outfit.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outfit.meta new file mode 100644 index 0000000..57cf392 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outfit.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 788eac0a284bfb9478925b8d1e948081 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outfit/Outfit_010.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outfit/Outfit_010.prefab new file mode 100644 index 0000000..e8fe78c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outfit/Outfit_010.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &7008779782869695111 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: de746c65be1d3594384300bbc4f9e168, type: 3} + propertyPath: m_Name + value: Outfit_010 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: de746c65be1d3594384300bbc4f9e168, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outfit/Outfit_010.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outfit/Outfit_010.prefab.meta new file mode 100644 index 0000000..aeccd14 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outfit/Outfit_010.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b252804b344d1ad499f624beedabf5e6 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Outfit/Outfit_010.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear.meta new file mode 100644 index 0000000..1946cfb --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 618366943a1de934d90bbffa02dfb047 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_004.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_004.prefab new file mode 100644 index 0000000..6e86e2a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_004.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &2544337999618454148 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + propertyPath: m_Name + value: Outwear_004 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_004.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_004.prefab.meta new file mode 100644 index 0000000..0898772 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_004.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 90ed5a8af4944eb44ba4e1bc591c3062 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_004.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_043.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_043.prefab new file mode 100644 index 0000000..67d0c73 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_043.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &1274913011386610293 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + propertyPath: m_Name + value: Outwear_043 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_043.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_043.prefab.meta new file mode 100644 index 0000000..17a681b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_043.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 83e41686b24440041aba19fbd14731ac +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_043.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_050.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_050.prefab new file mode 100644 index 0000000..49ee722 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_050.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &4206089728856988841 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + propertyPath: m_Name + value: Outwear_050 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_050.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_050.prefab.meta new file mode 100644 index 0000000..bc64f56 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_050.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: ab7cd47b77eacee4eb4dde92506d6d41 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Outwear/Outwear_050.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants.meta new file mode 100644 index 0000000..ceb6292 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a9bd638dc3b1a4447b336500c8e3f72d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_009.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_009.prefab new file mode 100644 index 0000000..25d6c57 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_009.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &8620457100091465891 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + propertyPath: m_Name + value: Pants_009 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_009.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_009.prefab.meta new file mode 100644 index 0000000..3afc077 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_009.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 2aa30706982122b40ab8815ec827662f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_009.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_010.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_010.prefab new file mode 100644 index 0000000..9e427f2 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_010.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &2503738517245285726 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} + propertyPath: m_Name + value: Pants_010 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 67dfe8b1e1ed9b34c985396c6282c820, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_010.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_010.prefab.meta new file mode 100644 index 0000000..9bd1f08 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_010.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 5ef1c7fcfd78a4248ba6a2dc864c9b7c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Pants/Pants_010.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes.meta new file mode 100644 index 0000000..6d44573 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 43fe13e35bc3a1c45b70d240cceb2d4d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_002.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_002.prefab new file mode 100644 index 0000000..edf6ae0 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_002.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &3252332469627985932 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} + propertyPath: m_Name + value: Shoe_Slippers_002 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 20384ecd8466c804eb14b502b62acc3b, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_002.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_002.prefab.meta new file mode 100644 index 0000000..2257672 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_002.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d8d908e1160656a45848352933ae4caa +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_002.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_005.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_005.prefab new file mode 100644 index 0000000..c7fac6f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_005.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &5283951005312747923 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} + propertyPath: m_Name + value: Shoe_Slippers_005 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bfab5a5ca14002a469bd5912e025f274, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_005.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_005.prefab.meta new file mode 100644 index 0000000..927a505 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_005.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: ce9bcbfdf19c4314b9076e7c4e8b9c6e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Slippers_005.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Sneakers_009.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Sneakers_009.prefab new file mode 100644 index 0000000..84c760d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Sneakers_009.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &6498983990584407807 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 0fc9184e885899c408b2467848981766, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fc9184e885899c408b2467848981766, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fc9184e885899c408b2467848981766, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fc9184e885899c408b2467848981766, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fc9184e885899c408b2467848981766, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fc9184e885899c408b2467848981766, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fc9184e885899c408b2467848981766, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fc9184e885899c408b2467848981766, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fc9184e885899c408b2467848981766, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fc9184e885899c408b2467848981766, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 0fc9184e885899c408b2467848981766, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 0fc9184e885899c408b2467848981766, type: 3} + propertyPath: m_Name + value: Shoe_Sneakers_009 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0fc9184e885899c408b2467848981766, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Sneakers_009.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Sneakers_009.prefab.meta new file mode 100644 index 0000000..4041eff --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Sneakers_009.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 69faa08bd86cacd499939897c6ac7378 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Shoes/Shoe_Sneakers_009.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shorts.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shorts.meta new file mode 100644 index 0000000..d1abf8c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shorts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c0a9a66ade3da2347aefcb3ab519d9d7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shorts/Shorts_003.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shorts/Shorts_003.prefab new file mode 100644 index 0000000..729093d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shorts/Shorts_003.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &5394732336116269750 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} + propertyPath: m_Name + value: Shorts_003 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1e74168fbee4e5c4097912723ebf6de7, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shorts/Shorts_003.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shorts/Shorts_003.prefab.meta new file mode 100644 index 0000000..229de1c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Shorts/Shorts_003.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 9ee1fee4171846f4192f28480783f17f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Shorts/Shorts_003.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Socks.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Socks.meta new file mode 100644 index 0000000..d9d9852 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Socks.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d207b5803d97c3c498ec6282f1930790 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Socks/Socks_008.prefab b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Socks/Socks_008.prefab new file mode 100644 index 0000000..0a5668e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Socks/Socks_008.prefab @@ -0,0 +1,59 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &423979828350261556 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + propertyPath: m_Name + value: Socks_008 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} diff --git a/Assets/ithappy/Creative_Characters_FREE/Prefabs/Socks/Socks_008.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Socks/Socks_008.prefab.meta new file mode 100644 index 0000000..4a68fff --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Prefabs/Socks/Socks_008.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f5101c4f11780bd4e96cc9e040681fe9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Prefabs/Socks/Socks_008.prefab + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Render_Pipeline_Convert.meta b/Assets/ithappy/Creative_Characters_FREE/Render_Pipeline_Convert.meta new file mode 100644 index 0000000..ca11b46 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Render_Pipeline_Convert.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 81256fa547a6d9940988924b28330049 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Render_Pipeline_Convert/Documentation.txt b/Assets/ithappy/Creative_Characters_FREE/Render_Pipeline_Convert/Documentation.txt new file mode 100644 index 0000000..1f63994 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Render_Pipeline_Convert/Documentation.txt @@ -0,0 +1,22 @@ +Welcome! Our models initially come with URP shaders. Depending on the package you choose, we have also created custom shaders (water, glass, etc.) in Built-In, URP and HDRP variants. + +1. Package "URP_to_BuiltIn_source.unitypackage". +For your convenience, we have created a .unitypackage called "URP_to_Built-In". This package automatically changes the shaders of all materials from URP to Built-In. To install this package: +- Open your project in Unity. +- Go to the Assets menu and open the "Render_Pipeline_Convert" folder. +- Double click on the "URP_to_Built-In" file. +- Click the "Import" button. +After .unitypackage makes the changes to the materials it will change the URP shader to Built-In. + +2. Package "URP_to_HDRP_source.unitypackage". +For your convenience, we have created a .unitypackage called "URP_to_HDRP". This package automatically changes the shaders of all materials from URP to HDRP. To install this package: +- Open your project in Unity. +- Go to the Assets menu and open the "Render_Pipeline_Convert" folder. +- Double click on the "URP_to_HDRP" file. +- Click the "Import" button. +After .unitypackage makes the changes to the materials it will change the URP shader to HDRP. + +Conclusion +We hope that this documentation will help you to easily customize our project to your needs. If you have any questions or problems, feel free to contact our support team on Discord. +Discord - https://discord.com/invite/kkCcXBEB2V + diff --git a/Assets/ithappy/Creative_Characters_FREE/Render_Pipeline_Convert/Documentation.txt.meta b/Assets/ithappy/Creative_Characters_FREE/Render_Pipeline_Convert/Documentation.txt.meta new file mode 100644 index 0000000..0d1a1d3 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Render_Pipeline_Convert/Documentation.txt.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b3edf626f9a56e6408d6fd33f0bd8e48 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Render_Pipeline_Convert/Documentation.txt + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Saved_Characters.meta b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters.meta new file mode 100644 index 0000000..fafb5f0 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05c67bf85ca36af43aeb8c758998fda0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_accueil.meta b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_accueil.meta new file mode 100644 index 0000000..787df9f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_accueil.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 18f7244fc6d02a2478326d913769e74b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_accueil/Character.prefab b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_accueil/Character.prefab new file mode 100644 index 0000000..245271f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_accueil/Character.prefab @@ -0,0 +1,3315 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7391340019242068 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2454901490377318227} + m_Layer: 0 + m_Name: LeftHandIndex1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2454901490377318227 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7391340019242068} + serializedVersion: 2 + m_LocalRotation: {x: 0.066300035, y: -0.7821326, z: 0.07260302, w: 0.6153062} + m_LocalPosition: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + m_LocalScale: {x: 1.0000004, y: 1.0000011, z: 1.0000004} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 152364661623093005} + m_Father: {fileID: 7351563899266088840} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &264558904099048137 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8392563628721651959} + - component: {fileID: 5229084029386100769} + - component: {fileID: 9184027496658246072} + - component: {fileID: 2481400962351891059} + - component: {fileID: 7215966803302086518} + - component: {fileID: 4236956267425915894} + m_Layer: 0 + m_Name: Character + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8392563628721651959 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 264558904099048137} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4252360140516124993} + - {fileID: 4815846794924329832} + - {fileID: 3188596673295834250} + - {fileID: 8515616909869596453} + - {fileID: 8455824333736343134} + - {fileID: 1155500273391539310} + - {fileID: 3714804925880252423} + - {fileID: 210345493572459933} + - {fileID: 7528811216335921865} + - {fileID: 4449340243715897993} + - {fileID: 4128735319813213677} + - {fileID: 9153831047232366451} + - {fileID: 2384428215798061656} + - {fileID: 4975037354248502616} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &5229084029386100769 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 264558904099048137} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Controller: {fileID: 9100000, guid: fac54571ff27f2b46b28cd6d82cd3c4c, type: 2} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!114 &9184027496658246072 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 264558904099048137} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a69a902533bc5af478efff13cc47894f, type: 3} + m_Name: + m_EditorClassIdentifier: + _faceMeshes: + - Type: 5 + Mesh: {fileID: -4389200089894859703, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} +--- !u!143 &2481400962351891059 +CharacterController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 264558904099048137} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Height: 1.8 + m_Radius: 0.4 + m_SlopeLimit: 45 + m_StepOffset: 0.3 + m_SkinWidth: 0.08 + m_MinMoveDistance: 0.001 + m_Center: {x: 0, y: 0.95, z: 0} +--- !u!114 &7215966803302086518 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 264558904099048137} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f75db5b538eef814b9775d744f05e3b5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_WalkSpeed: 1 + m_RunSpeed: 4 + m_RotateSpeed: 90 + m_Space: 1 + m_JumpHeight: 5 + m_HorizontalID: Hor + m_VerticalID: Vert + m_StateID: State + m_JumpID: IsJump + m_LookWeight: + weight: 1 + body: 0.3 + head: 0.7 + eyes: 1 +--- !u!114 &4236956267425915894 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 264558904099048137} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b2c67ce836140b4479603ebcf944cddd, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_JumpButton: Jump + m_RunKey: 304 + m_Camera: {fileID: 0} + m_MouseX: Mouse X + m_MouseY: Mouse Y + m_MouseScroll: Mouse ScrollWheel +--- !u!1 &268906562046771886 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5262417491081620891} + m_Layer: 0 + m_Name: RightForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5262417491081620891 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 268906562046771886} + serializedVersion: 2 + m_LocalRotation: {x: 0.087830655, y: 0.7063121, z: -0.123902895, w: 0.6914167} + m_LocalPosition: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + m_LocalScale: {x: 0.9999999, y: 0.9999995, z: 1.000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6008632365103847567} + m_Father: {fileID: 825786970329356601} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &280326845748209239 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5430594993520127381} + m_Layer: 0 + m_Name: Head + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5430594993520127381 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 280326845748209239} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000034645177, y: -6.7762684e-21, z: 3.5914197e-19, w: 1} + m_LocalPosition: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + m_LocalScale: {x: 0.9999993, y: 1.0000007, z: 1.0000005} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5259582835544520785} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &486002064721991848 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8455824333736343134} + - component: {fileID: 5492708423496244482} + m_Layer: 0 + m_Name: Glasses + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8455824333736343134 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 486002064721991848} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &5492708423496244482 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 486002064721991848} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4124652187440467762, guid: 8ce1c24b95f214d4bb53ebe8be080a49, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: 0, y: 1.6528329, z: 0.06327522} + m_Extent: {x: 0.12255523, y: 0.043662906, z: 0.09420191} + m_DirtyAABB: 0 +--- !u!1 &723689664074402297 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2469439230249753407} + m_Layer: 0 + m_Name: LeftHandMiddle1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2469439230249753407 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 723689664074402297} + serializedVersion: 2 + m_LocalRotation: {x: 0.015756983, y: -0.76071495, z: 0.049482264, w: 0.64700544} + m_LocalPosition: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + m_LocalScale: {x: 0.9999999, y: 0.9999991, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6107178213027355966} + m_Father: {fileID: 7351563899266088840} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &767632781927333929 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7244432680645136858} + m_Layer: 0 + m_Name: LeftHandRing1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7244432680645136858 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 767632781927333929} + serializedVersion: 2 + m_LocalRotation: {x: 0.016826883, y: -0.74243546, z: 0.10570575, w: 0.6613114} + m_LocalPosition: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + m_LocalScale: {x: 1.0000002, y: 1.0000005, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1380239006622630127} + m_Father: {fileID: 7351563899266088840} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1038768395654103020 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5606713444289690699} + m_Layer: 0 + m_Name: RightFoot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5606713444289690699 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1038768395654103020} + serializedVersion: 2 + m_LocalRotation: {x: 0.3709124, y: 0.6002493, z: -0.3789613, w: 0.59875965} + m_LocalPosition: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + m_LocalScale: {x: 1.0000013, y: 0.9999994, z: 0.9999985} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3248926797477333304} + m_Father: {fileID: 1003532064695825594} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1052303213535150549 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6811173225032426232} + m_Layer: 0 + m_Name: Hips + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6811173225032426232 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1052303213535150549} + serializedVersion: 2 + m_LocalRotation: {x: -0.2477584, y: -0.0000009708205, z: 0.00000024826952, w: 0.9688219} + m_LocalPosition: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + m_LocalScale: {x: 1.0000012, y: 1.0000014, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2929568128569261887} + - {fileID: 8901075941188635389} + - {fileID: 3597664165589966067} + m_Father: {fileID: 6292084560189011002} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1141768127870534739 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4055269597802169247} + m_Layer: 0 + m_Name: RightHandThumb2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4055269597802169247 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1141768127870534739} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000012919415, y: -0.0564281, z: -0.0000000037312344, w: 0.99840665} + m_LocalPosition: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + m_LocalScale: {x: 1, y: 0.99999756, z: 1.000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5142078414159597753} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1753523866703398520 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1155500273391539310} + - component: {fileID: 6023701920883217846} + m_Layer: 0 + m_Name: Gloves + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1155500273391539310 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1753523866703398520} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &6023701920883217846 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1753523866703398520} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -9073019736851073122, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: 0.533063, y: 1.1170818, z: 0.010015461} + m_Extent: {x: 0.03519118, y: 0.029712081, z: 0.022185031} + m_DirtyAABB: 0 +--- !u!1 &1973758918747448587 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4815846794924329832} + - component: {fileID: 4246892394963263306} + m_Layer: 0 + m_Name: Body + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4815846794924329832 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1973758918747448587} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &4246892394963263306 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1973758918747448587} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -964220427784028482, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: 0, y: 0.9187707, z: 0.0075713545} + m_Extent: {x: 0.72034204, y: 0.9105047, z: 0.17010164} + m_DirtyAABB: 0 +--- !u!1 &2002202334984265360 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 825786970329356601} + m_Layer: 0 + m_Name: RightArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &825786970329356601 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2002202334984265360} + serializedVersion: 2 + m_LocalRotation: {x: -0.18721196, y: 0.0034700148, z: 0.068893984, w: 0.9798945} + m_LocalPosition: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + m_LocalScale: {x: 0.99999875, y: 1.0000008, z: 1.0000004} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5262417491081620891} + m_Father: {fileID: 922354318091943124} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2423774232432495762 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2458647210568289185} + m_Layer: 0 + m_Name: LeftForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2458647210568289185 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2423774232432495762} + serializedVersion: 2 + m_LocalRotation: {x: 0.08783075, y: -0.70631206, z: 0.12390296, w: 0.69141674} + m_LocalPosition: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + m_LocalScale: {x: 1, y: 1.0000012, z: 1.0000007} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7351563899266088840} + m_Father: {fileID: 4242519174350869875} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2546080408792003126 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6107178213027355966} + m_Layer: 0 + m_Name: LeftHandMiddle2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6107178213027355966 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2546080408792003126} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000068520706, y: -0.06740804, z: -0.000000013068237, w: 0.9977255} + m_LocalPosition: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + m_LocalScale: {x: 0.99999946, y: 1.0000014, z: 0.9999996} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2469439230249753407} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2690392151558621966 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2384428215798061656} + m_Layer: 0 + m_Name: Skeleton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2384428215798061656 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2690392151558621966} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6292084560189011002} + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2753841942069162064 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4252360140516124993} + - component: {fileID: 735790214477194347} + m_Layer: 0 + m_Name: Accessories + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4252360140516124993 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2753841942069162064} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &735790214477194347 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2753841942069162064} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -3811569408259832331, guid: 7f08cab61f953cd4693ac58a98b96079, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: 0.0000003874302, y: 1.5999112, z: 0.13708764} + m_Extent: {x: 0.0654058, y: 0.024325788, z: 0.021152075} + m_DirtyAABB: 0 +--- !u!1 &2883719149702343692 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8452105501876409028} + m_Layer: 0 + m_Name: RightHandPinky1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8452105501876409028 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2883719149702343692} + serializedVersion: 2 + m_LocalRotation: {x: -0.027553953, y: 0.7103214, z: -0.12914248, w: 0.69138014} + m_LocalPosition: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + m_LocalScale: {x: 0.9999994, y: 0.9999996, z: 1.0000008} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6034038255410293907} + m_Father: {fileID: 6008632365103847567} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2937074977558037989 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5089274372359892448} + m_Layer: 0 + m_Name: RightHandProp + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5089274372359892448 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2937074977558037989} + serializedVersion: 2 + m_LocalRotation: {x: 0.087648, y: 0.68366647, z: -0.13569683, w: 0.7116912} + m_LocalPosition: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + m_LocalScale: {x: 1.0000005, y: 1.0000006, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6008632365103847567} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2949408736092587627 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7528811216335921865} + - component: {fileID: 2964680914709019140} + m_Layer: 0 + m_Name: Mustache + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7528811216335921865 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2949408736092587627} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2964680914709019140 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2949408736092587627} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 3131188959575262684, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: 0.03154619, y: 1.5339845, z: -0.017111944} + m_Extent: {x: 0.03154619, y: 0.01586008, z: 0.014986338} + m_DirtyAABB: 0 +--- !u!1 &3205789031809631439 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4449340243715897993} + - component: {fileID: 122448228752152518} + m_Layer: 0 + m_Name: Outerwear + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4449340243715897993 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3205789031809631439} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &122448228752152518 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3205789031809631439} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -3950228387462889971, guid: d0367ce8ac8ac514a9278f7eb0ed66ac, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: 0, y: 1.1599865, z: -0.022877201} + m_Extent: {x: 0.6318294, y: 0.34326705, z: 0.17959361} + m_DirtyAABB: 0 +--- !u!1 &3316221460419620834 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4128735319813213677} + - component: {fileID: 9167821187177692529} + m_Layer: 0 + m_Name: Pants + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4128735319813213677 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3316221460419620834} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &9167821187177692529 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3316221460419620834} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -987022824948863293, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: 0, y: 0.56631976, z: -0.03281797} + m_Extent: {x: 0.19081575, y: 0.3290207, z: 0.14223105} + m_DirtyAABB: 0 +--- !u!1 &3406534553883959613 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6292084560189011002} + m_Layer: 0 + m_Name: Root + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6292084560189011002 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3406534553883959613} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000067179414, y: -1.1102232e-16, z: 1.110223e-16, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6811173225032426232} + m_Father: {fileID: 2384428215798061656} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3505307190576018308 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4076691316872925442} + m_Layer: 0 + m_Name: Spine1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4076691316872925442 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3505307190576018308} + serializedVersion: 2 + m_LocalRotation: {x: -0.0056683216, y: 4.2764544e-13, z: -6.044778e-14, w: 0.99998397} + m_LocalPosition: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999996} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3193664668735946961} + - {fileID: 5259582835544520785} + - {fileID: 922354318091943124} + m_Father: {fileID: 3597664165589966067} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3545444748835413555 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3188596673295834250} + - component: {fileID: 7299961741072604250} + m_Layer: 0 + m_Name: Faces + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3188596673295834250 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3545444748835413555} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &7299961741072604250 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3545444748835413555} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -4389200089894859703, guid: e4f543c638ecbfd40b8dc37cd298e48a, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: 0, y: 1.6463236, z: 0.10857521} + m_Extent: {x: 0.07290544, y: 0.074917436, z: 0.016930778} + m_DirtyAABB: 0 +--- !u!1 &3637936930776993346 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 435194713325874110} + m_Layer: 0 + m_Name: LeftToeBase + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &435194713325874110 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3637936930776993346} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000013966587, y: 1, z: -0.00000003725293, w: 0.000005439916} + m_LocalPosition: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + m_LocalScale: {x: 1.0000006, y: 0.9999981, z: 1.0000004} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 9109196560306007491} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3642976267338415174 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3714804925880252423} + - component: {fileID: 3541288492205434161} + m_Layer: 0 + m_Name: Hairstyle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3714804925880252423 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3642976267338415174} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &3541288492205434161 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3642976267338415174} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -2315652163027026327, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: 0.036295235, y: 1.6684164, z: 0.045079947} + m_Extent: {x: 0.0135388, y: 0.02711153, z: 0.021457568} + m_DirtyAABB: 0 +--- !u!1 &3649399810525366870 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9153831047232366451} + - component: {fileID: 4046956690621398082} + m_Layer: 0 + m_Name: Shoes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9153831047232366451 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3649399810525366870} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &4046956690621398082 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3649399810525366870} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 2525575882034029105, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: 0, y: 0.26135036, z: -0.029352918} + m_Extent: {x: 0.17386709, y: 0.1926434, z: 0.07620901} + m_DirtyAABB: 0 +--- !u!1 &4010706384185295285 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3723899274786467855} + m_Layer: 0 + m_Name: LeftHandPinky1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3723899274786467855 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4010706384185295285} + serializedVersion: 2 + m_LocalRotation: {x: -0.027553953, y: -0.7103214, z: 0.12914248, w: 0.69138014} + m_LocalPosition: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + m_LocalScale: {x: 0.9999997, y: 0.9999998, z: 1.0000006} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4884654119113309300} + m_Father: {fileID: 7351563899266088840} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4267054714555253391 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7351563899266088840} + m_Layer: 0 + m_Name: LeftHand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7351563899266088840 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4267054714555253391} + serializedVersion: 2 + m_LocalRotation: {x: -0.06332686, y: 0.057902038, z: 0.18569629, w: 0.9788534} + m_LocalPosition: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + m_LocalScale: {x: 0.9999995, y: 0.9999998, z: 0.9999989} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2454901490377318227} + - {fileID: 2469439230249753407} + - {fileID: 3723899274786467855} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 3055521198877556684} + m_Father: {fileID: 2458647210568289185} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4271846406753726789 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6034038255410293907} + m_Layer: 0 + m_Name: RightHandPinky2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6034038255410293907 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4271846406753726789} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000019035838, y: 0.014233045, z: 0.00000007637615, w: 0.99989873} + m_LocalPosition: {x: -0, y: 0.03542494, z: -0.000000022817403} + m_LocalScale: {x: 1.0000011, y: 1.0000001, z: 0.9999995} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8452105501876409028} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4499502295551156676 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1678689209386956550} + m_Layer: 0 + m_Name: RightHandMiddle2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1678689209386956550 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4499502295551156676} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000009176944, y: 0.06740804, z: 0.0000000100345385, w: 0.9977255} + m_LocalPosition: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + m_LocalScale: {x: 1.0000004, y: 0.9999998, z: 0.99999887} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8552108406797711510} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4787039118845035227 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1380239006622630127} + m_Layer: 0 + m_Name: LeftHandRing2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1380239006622630127 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4787039118845035227} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000019793698, y: -0.017694853, z: 0.00000003481366, w: 0.9998435} + m_LocalPosition: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + m_LocalScale: {x: 0.9999998, y: 0.999999, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7244432680645136858} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4973987257955023948 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9109196560306007491} + m_Layer: 0 + m_Name: LeftFoot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9109196560306007491 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4973987257955023948} + serializedVersion: 2 + m_LocalRotation: {x: 0.37091264, y: -0.60024947, z: 0.37896135, w: 0.5987593} + m_LocalPosition: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + m_LocalScale: {x: 0.9999982, y: 1.0000024, z: 1.0000013} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 435194713325874110} + m_Father: {fileID: 2509321825632084293} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5049217541536502340 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6008632365103847567} + m_Layer: 0 + m_Name: RightHand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6008632365103847567 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5049217541536502340} + serializedVersion: 2 + m_LocalRotation: {x: -0.06332686, y: -0.05790204, z: -0.18569624, w: 0.9788534} + m_LocalPosition: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + m_LocalScale: {x: 0.9999999, y: 1.0000004, z: 0.99999964} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2022596617923788165} + - {fileID: 8552108406797711510} + - {fileID: 8452105501876409028} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 5142078414159597753} + m_Father: {fileID: 5262417491081620891} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5468759709719994641 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5142078414159597753} + m_Layer: 0 + m_Name: RightHandThumb1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5142078414159597753 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5468759709719994641} + serializedVersion: 2 + m_LocalRotation: {x: 0.18863572, y: 0.95492417, z: 0.19843517, w: 0.11471673} + m_LocalPosition: {x: 0.021660633, y: 0.043446, z: 0.044851314} + m_LocalScale: {x: 1.0000005, y: 1.0000012, z: 0.9999991} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4055269597802169247} + m_Father: {fileID: 6008632365103847567} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5647241200904538648 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 152364661623093005} + m_Layer: 0 + m_Name: LeftHandIndex2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &152364661623093005 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5647241200904538648} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000012456934, y: 0.008824148, z: 0.000000015833113, w: 0.9999611} + m_LocalPosition: {x: -0, y: 0.039015174, z: 0.000000013504177} + m_LocalScale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2454901490377318227} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5900944800121636633 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 706984289685969546} + m_Layer: 0 + m_Name: RightHandRing2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &706984289685969546 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5900944800121636633} + serializedVersion: 2 + m_LocalRotation: {x: -5.2395677e-10, y: 0.017694853, z: -0.000000036443733, w: 0.9998435} + m_LocalPosition: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + m_LocalScale: {x: 0.99999934, y: 0.9999989, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1322987376305102852} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6038480087906144139 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3193664668735946961} + m_Layer: 0 + m_Name: LeftShoulder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3193664668735946961 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6038480087906144139} + serializedVersion: 2 + m_LocalRotation: {x: -0.52331096, y: 0.455521, z: 0.54517496, w: 0.47056407} + m_LocalPosition: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + m_LocalScale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4242519174350869875} + m_Father: {fileID: 4076691316872925442} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6278952237290587009 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8106160153347402473} + m_Layer: 0 + m_Name: RightHandIndex2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8106160153347402473 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6278952237290587009} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000011991253, y: -0.008824146, z: -0.000000013504707, w: 0.9999611} + m_LocalPosition: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + m_LocalScale: {x: 1.0000005, y: 0.99999905, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2022596617923788165} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6480229315677868276 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3248926797477333304} + m_Layer: 0 + m_Name: RightToeBase + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3248926797477333304 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6480229315677868276} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000046564015, y: 1, z: 3.3825238e-13, w: -0.000006155172} + m_LocalPosition: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + m_LocalScale: {x: 1.000001, y: 0.99999976, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5606713444289690699} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6491708689793114094 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3597664165589966067} + m_Layer: 0 + m_Name: Spine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3597664165589966067 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6491708689793114094} + serializedVersion: 2 + m_LocalRotation: {x: 0.23109376, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + m_LocalPosition: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + m_LocalScale: {x: 0.99999964, y: 0.9999983, z: 0.9999991} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4076691316872925442} + m_Father: {fileID: 6811173225032426232} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6569970473057625007 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4242519174350869875} + m_Layer: 0 + m_Name: LeftArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4242519174350869875 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6569970473057625007} + serializedVersion: 2 + m_LocalRotation: {x: -0.18721196, y: -0.003470013, z: -0.06889398, w: 0.9798945} + m_LocalPosition: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + m_LocalScale: {x: 0.9999988, y: 1.0000008, z: 1.0000004} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2458647210568289185} + m_Father: {fileID: 3193664668735946961} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6760470616060121476 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8552108406797711510} + m_Layer: 0 + m_Name: RightHandMiddle1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8552108406797711510 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6760470616060121476} + serializedVersion: 2 + m_LocalRotation: {x: 0.015756963, y: 0.76071495, z: -0.04948219, w: 0.64700544} + m_LocalPosition: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + m_LocalScale: {x: 0.9999999, y: 0.9999995, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1678689209386956550} + m_Father: {fileID: 6008632365103847567} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6795320321746263083 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2022596617923788165} + m_Layer: 0 + m_Name: RightHandIndex1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2022596617923788165 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6795320321746263083} + serializedVersion: 2 + m_LocalRotation: {x: 0.066300124, y: 0.78213257, z: -0.07260306, w: 0.6153062} + m_LocalPosition: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + m_LocalScale: {x: 1, y: 1.000001, z: 1.0000006} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8106160153347402473} + m_Father: {fileID: 6008632365103847567} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6860215217861807678 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2929568128569261887} + m_Layer: 0 + m_Name: LeftUpLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2929568128569261887 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6860215217861807678} + serializedVersion: 2 + m_LocalRotation: {x: -0.69055235, y: -0.14536478, z: 0.69428474, w: 0.14133382} + m_LocalPosition: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + m_LocalScale: {x: 0.99999845, y: 0.99999493, z: 1.0000046} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2509321825632084293} + m_Father: {fileID: 6811173225032426232} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6907810431925929345 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 210345493572459933} + - component: {fileID: 2077007149270912553} + m_Layer: 0 + m_Name: Hat + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &210345493572459933 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6907810431925929345} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2077007149270912553 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6907810431925929345} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -25535521549600216, guid: c8ef145d788d0804f9e31c8079352c06, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: -0.000040709972, y: 1.7449982, z: -0.0074972957} + m_Extent: {x: 0.24683437, y: 0.15428466, z: 0.22682546} + m_DirtyAABB: 0 +--- !u!1 &6911156224649785100 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 922354318091943124} + m_Layer: 0 + m_Name: RightShoulder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &922354318091943124 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6911156224649785100} + serializedVersion: 2 + m_LocalRotation: {x: 0.52331096, y: 0.455521, z: 0.54517496, w: -0.47056407} + m_LocalPosition: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + m_LocalScale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 825786970329356601} + m_Father: {fileID: 4076691316872925442} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6999393690638638018 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8901075941188635389} + m_Layer: 0 + m_Name: RightUpLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8901075941188635389 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6999393690638638018} + serializedVersion: 2 + m_LocalRotation: {x: 0.6905538, y: -0.145365, z: 0.69428337, w: -0.1413333} + m_LocalPosition: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + m_LocalScale: {x: 0.99999875, y: 0.999994, z: 1.000003} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1003532064695825594} + m_Father: {fileID: 6811173225032426232} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7335619970448972814 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1322987376305102852} + m_Layer: 0 + m_Name: RightHandRing1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1322987376305102852 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7335619970448972814} + serializedVersion: 2 + m_LocalRotation: {x: 0.016826881, y: 0.74243546, z: -0.10570566, w: 0.6613114} + m_LocalPosition: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + m_LocalScale: {x: 1.0000006, y: 1.0000004, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 706984289685969546} + m_Father: {fileID: 6008632365103847567} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7506052874487688566 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 33766935221965508} + m_Layer: 0 + m_Name: LeftHandThumb2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &33766935221965508 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7506052874487688566} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000012266445, y: 0.056428105, z: 0.000000014924952, w: 0.99840665} + m_LocalPosition: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + m_LocalScale: {x: 0.9999994, y: 0.9999986, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3055521198877556684} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7630416913293482546 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4975037354248502616} + - component: {fileID: 2887313918187143052} + m_Layer: 0 + m_Name: T_Shirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4975037354248502616 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7630416913293482546} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2887313918187143052 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7630416913293482546} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 8454336951551918877, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: 0.067416795, y: 1.0399959, z: 0.039523456} + m_Extent: {x: 0.03413049, y: 0.041192055, z: 0.03339861} + m_DirtyAABB: 0 +--- !u!1 &7943654483063259108 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1003532064695825594} + m_Layer: 0 + m_Name: RightLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1003532064695825594 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7943654483063259108} + serializedVersion: 2 + m_LocalRotation: {x: 0.0065620895, y: -0.0068165944, z: 0.10785357, w: 0.9941218} + m_LocalPosition: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + m_LocalScale: {x: 0.99999964, y: 1.0000005, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5606713444289690699} + m_Father: {fileID: 8901075941188635389} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8894522153625426922 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3055521198877556684} + m_Layer: 0 + m_Name: LeftHandThumb1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3055521198877556684 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8894522153625426922} + serializedVersion: 2 + m_LocalRotation: {x: -0.18863569, y: 0.95492417, z: 0.19843517, w: -0.114716716} + m_LocalPosition: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + m_LocalScale: {x: 1.0000005, y: 1.0000008, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 33766935221965508} + m_Father: {fileID: 7351563899266088840} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8966175441722765442 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2509321825632084293} + m_Layer: 0 + m_Name: LeftLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2509321825632084293 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8966175441722765442} + serializedVersion: 2 + m_LocalRotation: {x: 0.0065620965, y: 0.0068166656, z: -0.107853614, w: 0.9941218} + m_LocalPosition: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + m_LocalScale: {x: 0.99999785, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9109196560306007491} + m_Father: {fileID: 2929568128569261887} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8971941078465595116 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4884654119113309300} + m_Layer: 0 + m_Name: LeftHandPinky2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4884654119113309300 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8971941078465595116} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000002025832, y: -0.014233044, z: -0.0000000726505, w: 0.99989873} + m_LocalPosition: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + m_LocalScale: {x: 1.0000004, y: 1.0000001, z: 0.9999996} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3723899274786467855} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9061701756077161391 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5259582835544520785} + m_Layer: 0 + m_Name: Neck + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5259582835544520785 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9061701756077161391} + serializedVersion: 2 + m_LocalRotation: {x: 0.113181375, y: -3.050584e-14, z: 1.1901714e-13, w: 0.9935743} + m_LocalPosition: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + m_LocalScale: {x: 1.0000005, y: 0.9999997, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5430594993520127381} + m_Father: {fileID: 4076691316872925442} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9072914470707578067 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 430836272937122201} + m_Layer: 0 + m_Name: LeftHandProp + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &430836272937122201 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9072914470707578067} + serializedVersion: 2 + m_LocalRotation: {x: 0.087648116, y: -0.6836664, z: 0.13569695, w: 0.7116912} + m_LocalPosition: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + m_LocalScale: {x: 1.0000006, y: 1.0000006, z: 1.0000002} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7351563899266088840} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9160334685460965054 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8515616909869596453} + - component: {fileID: 4834523559477563802} + m_Layer: 0 + m_Name: Full_body + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8515616909869596453 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9160334685460965054} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8392563628721651959} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &4834523559477563802 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9160334685460965054} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -8942535040821497803, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 6292084560189011002} + - {fileID: 6811173225032426232} + - {fileID: 2929568128569261887} + - {fileID: 2509321825632084293} + - {fileID: 9109196560306007491} + - {fileID: 435194713325874110} + - {fileID: 3597664165589966067} + - {fileID: 4076691316872925442} + - {fileID: 5259582835544520785} + - {fileID: 5430594993520127381} + - {fileID: 3193664668735946961} + - {fileID: 4242519174350869875} + - {fileID: 2458647210568289185} + - {fileID: 7351563899266088840} + - {fileID: 2454901490377318227} + - {fileID: 152364661623093005} + - {fileID: 2469439230249753407} + - {fileID: 6107178213027355966} + - {fileID: 3723899274786467855} + - {fileID: 4884654119113309300} + - {fileID: 430836272937122201} + - {fileID: 7244432680645136858} + - {fileID: 1380239006622630127} + - {fileID: 3055521198877556684} + - {fileID: 33766935221965508} + - {fileID: 922354318091943124} + - {fileID: 825786970329356601} + - {fileID: 5262417491081620891} + - {fileID: 6008632365103847567} + - {fileID: 2022596617923788165} + - {fileID: 8106160153347402473} + - {fileID: 8552108406797711510} + - {fileID: 1678689209386956550} + - {fileID: 8452105501876409028} + - {fileID: 6034038255410293907} + - {fileID: 5089274372359892448} + - {fileID: 1322987376305102852} + - {fileID: 706984289685969546} + - {fileID: 5142078414159597753} + - {fileID: 4055269597802169247} + - {fileID: 8901075941188635389} + - {fileID: 1003532064695825594} + - {fileID: 5606713444289690699} + - {fileID: 3248926797477333304} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6292084560189011002} + m_AABB: + m_Center: {x: -0.054614652, y: 1.2705848, z: -0.017527109} + m_Extent: {x: 0.03205956, y: 0.0647161, z: 0.010819305} + m_DirtyAABB: 0 diff --git a/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_accueil/Character.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_accueil/Character.prefab.meta new file mode 100644 index 0000000..e2cca65 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_accueil/Character.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f285bb23cfbb2004b9327c5520d8a719 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_contre.meta b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_contre.meta new file mode 100644 index 0000000..9804eab --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_contre.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b326a7c9262f9a0419872f192b36f9db +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_contre/Character.prefab b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_contre/Character.prefab new file mode 100644 index 0000000..93748fc --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_contre/Character.prefab @@ -0,0 +1,3315 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &105139750242218741 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4273589866182700628} + m_Layer: 0 + m_Name: LeftHandPinky2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4273589866182700628 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 105139750242218741} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000002025832, y: -0.014233044, z: -0.0000000726505, w: 0.99989873} + m_LocalPosition: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + m_LocalScale: {x: 1.0000004, y: 1.0000001, z: 0.9999996} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5361880835418760695} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &130488871313703096 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3202729295754567001} + - component: {fileID: 2068708579715717648} + m_Layer: 0 + m_Name: Hairstyle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3202729295754567001 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 130488871313703096} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2068708579715717648 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 130488871313703096} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -2315652163027026327, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: 0.036295235, y: 1.6684164, z: 0.045079947} + m_Extent: {x: 0.0135388, y: 0.02711153, z: 0.021457568} + m_DirtyAABB: 0 +--- !u!1 &419500930360201656 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7355585280703827563} + m_Layer: 0 + m_Name: RightHandThumb2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7355585280703827563 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 419500930360201656} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000012919415, y: -0.0564281, z: -0.0000000037312344, w: 0.99840665} + m_LocalPosition: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + m_LocalScale: {x: 1, y: 0.99999756, z: 1.000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2106381712962878445} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &463774878756189408 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7836731373447028906} + m_Layer: 0 + m_Name: RightHandProp + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7836731373447028906 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 463774878756189408} + serializedVersion: 2 + m_LocalRotation: {x: 0.087648, y: 0.68366647, z: -0.13569683, w: 0.7116912} + m_LocalPosition: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + m_LocalScale: {x: 1.0000005, y: 1.0000006, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1276889847869249262} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &483157500133473466 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8725704407515097629} + m_Layer: 0 + m_Name: RightArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8725704407515097629 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 483157500133473466} + serializedVersion: 2 + m_LocalRotation: {x: -0.18721196, y: 0.0034700148, z: 0.068893984, w: 0.9798945} + m_LocalPosition: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + m_LocalScale: {x: 0.99999875, y: 1.0000008, z: 1.0000004} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8758296212812565166} + m_Father: {fileID: 4093758063131466195} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &745719870850563586 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2422708146455636323} + m_Layer: 0 + m_Name: RightLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2422708146455636323 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 745719870850563586} + serializedVersion: 2 + m_LocalRotation: {x: 0.0065620895, y: -0.0068165944, z: 0.10785357, w: 0.9941218} + m_LocalPosition: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + m_LocalScale: {x: 0.99999964, y: 1.0000005, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9179713746227543674} + m_Father: {fileID: 2639351653699705451} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &864236964076217912 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3388411515409762778} + m_Layer: 0 + m_Name: RightHandIndex2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3388411515409762778 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 864236964076217912} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000011991253, y: -0.008824146, z: -0.000000013504707, w: 0.9999611} + m_LocalPosition: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + m_LocalScale: {x: 1.0000005, y: 0.99999905, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4953627069574939660} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1027468876681869033 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6222927532363529796} + m_Layer: 0 + m_Name: LeftHandIndex1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6222927532363529796 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1027468876681869033} + serializedVersion: 2 + m_LocalRotation: {x: 0.066300035, y: -0.7821326, z: 0.07260302, w: 0.6153062} + m_LocalPosition: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + m_LocalScale: {x: 1.0000004, y: 1.0000011, z: 1.0000004} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3058815107748849590} + m_Father: {fileID: 1456008330816844347} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1050482271647821998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 662359046406782241} + - component: {fileID: 3813917885223053487} + m_Layer: 0 + m_Name: Faces + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &662359046406782241 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1050482271647821998} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &3813917885223053487 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1050482271647821998} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -8518051590879840720, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: 0, y: 1.6419097, z: 0.11169827} + m_Extent: {x: 0.059825562, y: 0.059576392, z: 0.013103671} + m_DirtyAABB: 0 +--- !u!1 &1091580980568929156 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7091497995437150959} + - component: {fileID: 66525950490027381} + m_Layer: 0 + m_Name: Mustache + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7091497995437150959 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1091580980568929156} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &66525950490027381 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1091580980568929156} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 3131188959575262684, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: 0.03154619, y: 1.5339845, z: -0.017111944} + m_Extent: {x: 0.03154619, y: 0.01586008, z: 0.014986338} + m_DirtyAABB: 0 +--- !u!1 &1093113447970040421 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9045915782496309436} + m_Layer: 0 + m_Name: Neck + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9045915782496309436 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1093113447970040421} + serializedVersion: 2 + m_LocalRotation: {x: 0.113181375, y: -3.050584e-14, z: 1.1901714e-13, w: 0.9935743} + m_LocalPosition: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + m_LocalScale: {x: 1.0000005, y: 0.9999997, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8926997022933348494} + m_Father: {fileID: 1566315969365042184} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1147164698625578590 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8274744666007563595} + - component: {fileID: 8874842547937210267} + m_Layer: 0 + m_Name: Full_body + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8274744666007563595 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1147164698625578590} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &8874842547937210267 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1147164698625578590} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -8942535040821497803, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: -0.054614652, y: 1.2705848, z: -0.017527109} + m_Extent: {x: 0.03205956, y: 0.0647161, z: 0.010819305} + m_DirtyAABB: 0 +--- !u!1 &1209837107563461801 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 206558044248858245} + - component: {fileID: 2691762656538144105} + m_Layer: 0 + m_Name: Body + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &206558044248858245 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1209837107563461801} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2691762656538144105 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1209837107563461801} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -964220427784028482, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: 0, y: 0.9187707, z: 0.0075713545} + m_Extent: {x: 0.72034204, y: 0.9105047, z: 0.17010164} + m_DirtyAABB: 0 +--- !u!1 &1293311644980691623 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2106381712962878445} + m_Layer: 0 + m_Name: RightHandThumb1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2106381712962878445 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1293311644980691623} + serializedVersion: 2 + m_LocalRotation: {x: 0.18863572, y: 0.95492417, z: 0.19843517, w: 0.11471673} + m_LocalPosition: {x: 0.021660633, y: 0.043446, z: 0.044851314} + m_LocalScale: {x: 1.0000005, y: 1.0000012, z: 0.9999991} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7355585280703827563} + m_Father: {fileID: 1276889847869249262} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1655394045219259567 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3490510801761083155} + m_Layer: 0 + m_Name: LeftUpLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3490510801761083155 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1655394045219259567} + serializedVersion: 2 + m_LocalRotation: {x: -0.69055235, y: -0.14536478, z: 0.69428474, w: 0.14133382} + m_LocalPosition: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + m_LocalScale: {x: 0.99999845, y: 0.99999493, z: 1.0000046} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8696124429907989913} + m_Father: {fileID: 2117861698742084876} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1679534702691200934 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5999275267631713598} + m_Layer: 0 + m_Name: LeftFoot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5999275267631713598 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1679534702691200934} + serializedVersion: 2 + m_LocalRotation: {x: 0.37091264, y: -0.60024947, z: 0.37896135, w: 0.5987593} + m_LocalPosition: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + m_LocalScale: {x: 0.9999982, y: 1.0000024, z: 1.0000013} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3092749187070250721} + m_Father: {fileID: 8696124429907989913} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1723107526712337976 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1456008330816844347} + m_Layer: 0 + m_Name: LeftHand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1456008330816844347 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1723107526712337976} + serializedVersion: 2 + m_LocalRotation: {x: -0.06332686, y: 0.057902038, z: 0.18569629, w: 0.9788534} + m_LocalPosition: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + m_LocalScale: {x: 0.9999995, y: 0.9999998, z: 0.9999989} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6222927532363529796} + - {fileID: 591114295637152694} + - {fileID: 5361880835418760695} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 858799442567868884} + m_Father: {fileID: 721467785958873962} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1875079652876125134 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5440477682043712602} + - component: {fileID: 5254725512408023843} + m_Layer: 0 + m_Name: Hat + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5440477682043712602 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875079652876125134} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &5254725512408023843 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1875079652876125134} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -7955281462440156075, guid: ce66d77ff5aabf548903d7b30693fbc0, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: -0.0000015646219, y: 1.6748116, z: 0.003298983} + m_Extent: {x: 0.17382997, y: 0.18667483, z: 0.18681307} + m_DirtyAABB: 0 +--- !u!1 &1933667240548545069 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 591114295637152694} + m_Layer: 0 + m_Name: LeftHandMiddle1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &591114295637152694 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1933667240548545069} + serializedVersion: 2 + m_LocalRotation: {x: 0.015756983, y: -0.76071495, z: 0.049482264, w: 0.64700544} + m_LocalPosition: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + m_LocalScale: {x: 0.9999999, y: 0.9999991, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7964188213251261118} + m_Father: {fileID: 1456008330816844347} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1981199451525742614 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7425570194368757145} + m_Layer: 0 + m_Name: Spine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7425570194368757145 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1981199451525742614} + serializedVersion: 2 + m_LocalRotation: {x: 0.23109376, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + m_LocalPosition: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + m_LocalScale: {x: 0.99999964, y: 0.9999983, z: 0.9999991} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1566315969365042184} + m_Father: {fileID: 2117861698742084876} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2164678828680381500 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2658152042452943207} + m_Layer: 0 + m_Name: Root + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2658152042452943207 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2164678828680381500} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000067179414, y: -1.1102232e-16, z: 1.110223e-16, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2117861698742084876} + m_Father: {fileID: 9071554002623160230} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2250670766440501690 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 82255063170752515} + - component: {fileID: 961270502988614012} + m_Layer: 0 + m_Name: Glasses + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &82255063170752515 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2250670766440501690} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &961270502988614012 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2250670766440501690} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 8485970674117699935, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: 0.041846663, y: 1.6403041, z: 0.05109793} + m_Extent: {x: 0.006526828, y: 0.0059581995, z: 0.0023058467} + m_DirtyAABB: 0 +--- !u!1 &2279493035193539532 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4953627069574939660} + m_Layer: 0 + m_Name: RightHandIndex1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4953627069574939660 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2279493035193539532} + serializedVersion: 2 + m_LocalRotation: {x: 0.066300124, y: 0.78213257, z: -0.07260306, w: 0.6153062} + m_LocalPosition: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + m_LocalScale: {x: 1, y: 1.000001, z: 1.0000006} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3388411515409762778} + m_Father: {fileID: 1276889847869249262} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2333742771918571935 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1276889847869249262} + m_Layer: 0 + m_Name: RightHand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1276889847869249262 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2333742771918571935} + serializedVersion: 2 + m_LocalRotation: {x: -0.06332686, y: -0.05790204, z: -0.18569624, w: 0.9788534} + m_LocalPosition: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + m_LocalScale: {x: 0.9999999, y: 1.0000004, z: 0.99999964} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4953627069574939660} + - {fileID: 5851424151378179558} + - {fileID: 4954741239174852530} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 2106381712962878445} + m_Father: {fileID: 8758296212812565166} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2384060634655024990 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7036553469242176334} + m_Layer: 0 + m_Name: RightHandMiddle2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7036553469242176334 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2384060634655024990} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000009176944, y: 0.06740804, z: 0.0000000100345385, w: 0.9977255} + m_LocalPosition: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + m_LocalScale: {x: 1.0000004, y: 0.9999998, z: 0.99999887} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5851424151378179558} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2435344496346470728 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9071554002623160230} + m_Layer: 0 + m_Name: Skeleton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9071554002623160230 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2435344496346470728} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2658152042452943207} + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2966433848140719663 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6481256438627568256} + m_Layer: 0 + m_Name: RightHandRing1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6481256438627568256 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2966433848140719663} + serializedVersion: 2 + m_LocalRotation: {x: 0.016826881, y: 0.74243546, z: -0.10570566, w: 0.6613114} + m_LocalPosition: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + m_LocalScale: {x: 1.0000006, y: 1.0000004, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4531660375636141132} + m_Father: {fileID: 1276889847869249262} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3080492728504898206 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8758296212812565166} + m_Layer: 0 + m_Name: RightForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8758296212812565166 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3080492728504898206} + serializedVersion: 2 + m_LocalRotation: {x: 0.087830655, y: 0.7063121, z: -0.123902895, w: 0.6914167} + m_LocalPosition: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + m_LocalScale: {x: 0.9999999, y: 0.9999995, z: 1.000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1276889847869249262} + m_Father: {fileID: 8725704407515097629} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3142672125920960427 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6882336577345060054} + - component: {fileID: 7356581554470862748} + - component: {fileID: 2585828792548646896} + - component: {fileID: 9008906776964583704} + - component: {fileID: 5290908748189498107} + - component: {fileID: 1664986690228565752} + m_Layer: 0 + m_Name: Character + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6882336577345060054 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3142672125920960427} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5495654167319897951} + - {fileID: 206558044248858245} + - {fileID: 662359046406782241} + - {fileID: 8274744666007563595} + - {fileID: 82255063170752515} + - {fileID: 2221019844211385864} + - {fileID: 3202729295754567001} + - {fileID: 5440477682043712602} + - {fileID: 7091497995437150959} + - {fileID: 6345418660241937631} + - {fileID: 5466873568565719471} + - {fileID: 1907032043247911306} + - {fileID: 9071554002623160230} + - {fileID: 3422242068170014293} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &7356581554470862748 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3142672125920960427} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Controller: {fileID: 9100000, guid: fac54571ff27f2b46b28cd6d82cd3c4c, type: 2} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!114 &2585828792548646896 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3142672125920960427} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a69a902533bc5af478efff13cc47894f, type: 3} + m_Name: + m_EditorClassIdentifier: + _faceMeshes: + - Type: 1 + Mesh: {fileID: -8518051590879840720, guid: e2a9edf3127d00246a60fb52ef4856b9, type: 3} +--- !u!143 &9008906776964583704 +CharacterController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3142672125920960427} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Height: 1.8 + m_Radius: 0.4 + m_SlopeLimit: 45 + m_StepOffset: 0.3 + m_SkinWidth: 0.08 + m_MinMoveDistance: 0.001 + m_Center: {x: 0, y: 0.95, z: 0} +--- !u!114 &5290908748189498107 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3142672125920960427} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f75db5b538eef814b9775d744f05e3b5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_WalkSpeed: 1 + m_RunSpeed: 4 + m_RotateSpeed: 90 + m_Space: 1 + m_JumpHeight: 5 + m_HorizontalID: Hor + m_VerticalID: Vert + m_StateID: State + m_JumpID: IsJump + m_LookWeight: + weight: 1 + body: 0.3 + head: 0.7 + eyes: 1 +--- !u!114 &1664986690228565752 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3142672125920960427} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b2c67ce836140b4479603ebcf944cddd, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_JumpButton: Jump + m_RunKey: 304 + m_Camera: {fileID: 0} + m_MouseX: Mouse X + m_MouseY: Mouse Y + m_MouseScroll: Mouse ScrollWheel +--- !u!1 &3771241451245732517 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4531660375636141132} + m_Layer: 0 + m_Name: RightHandRing2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4531660375636141132 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3771241451245732517} + serializedVersion: 2 + m_LocalRotation: {x: -5.2395677e-10, y: 0.017694853, z: -0.000000036443733, w: 0.9998435} + m_LocalPosition: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + m_LocalScale: {x: 0.99999934, y: 0.9999989, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6481256438627568256} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3787546144030442258 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1566315969365042184} + m_Layer: 0 + m_Name: Spine1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1566315969365042184 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3787546144030442258} + serializedVersion: 2 + m_LocalRotation: {x: -0.0056683216, y: 4.2764544e-13, z: -6.044778e-14, w: 0.99998397} + m_LocalPosition: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999996} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3454726038963396821} + - {fileID: 9045915782496309436} + - {fileID: 4093758063131466195} + m_Father: {fileID: 7425570194368757145} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3817874615603547771 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2117861698742084876} + m_Layer: 0 + m_Name: Hips + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2117861698742084876 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3817874615603547771} + serializedVersion: 2 + m_LocalRotation: {x: -0.2477584, y: -0.0000009708205, z: 0.00000024826952, w: 0.9688219} + m_LocalPosition: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + m_LocalScale: {x: 1.0000012, y: 1.0000014, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3490510801761083155} + - {fileID: 2639351653699705451} + - {fileID: 7425570194368757145} + m_Father: {fileID: 2658152042452943207} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3818728683122114200 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7616065134030439192} + m_Layer: 0 + m_Name: RightHandPinky2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7616065134030439192 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3818728683122114200} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000019035838, y: 0.014233045, z: 0.00000007637615, w: 0.99989873} + m_LocalPosition: {x: -0, y: 0.03542494, z: -0.000000022817403} + m_LocalScale: {x: 1.0000011, y: 1.0000001, z: 0.9999995} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4954741239174852530} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4617670362962378527 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8926997022933348494} + m_Layer: 0 + m_Name: Head + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8926997022933348494 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4617670362962378527} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000034645177, y: -6.7762684e-21, z: 3.5914197e-19, w: 1} + m_LocalPosition: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + m_LocalScale: {x: 0.9999993, y: 1.0000007, z: 1.0000005} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 9045915782496309436} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4963615756018996376 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2639351653699705451} + m_Layer: 0 + m_Name: RightUpLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2639351653699705451 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4963615756018996376} + serializedVersion: 2 + m_LocalRotation: {x: 0.6905538, y: -0.145365, z: 0.69428337, w: -0.1413333} + m_LocalPosition: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + m_LocalScale: {x: 0.99999875, y: 0.999994, z: 1.000003} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2422708146455636323} + m_Father: {fileID: 2117861698742084876} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5381283847192076374 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1907032043247911306} + - component: {fileID: 2470405316857302083} + m_Layer: 0 + m_Name: Shoes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1907032043247911306 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5381283847192076374} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2470405316857302083 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5381283847192076374} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 2990419855401034948, guid: 0fc9184e885899c408b2467848981766, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: 0, y: 0.074177094, z: 0.041451298} + m_Extent: {x: 0.1897475, y: 0.0797529, z: 0.16199577} + m_DirtyAABB: 0 +--- !u!1 &5501741228382787933 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3422242068170014293} + - component: {fileID: 7245918909428919142} + m_Layer: 0 + m_Name: T_Shirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3422242068170014293 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5501741228382787933} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &7245918909428919142 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5501741228382787933} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 8454336951551918877, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: 0.067416795, y: 1.0399959, z: 0.039523456} + m_Extent: {x: 0.03413049, y: 0.041192055, z: 0.03339861} + m_DirtyAABB: 0 +--- !u!1 &5720141501858800308 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2221019844211385864} + - component: {fileID: 4241957501986727666} + m_Layer: 0 + m_Name: Gloves + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2221019844211385864 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5720141501858800308} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &4241957501986727666 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5720141501858800308} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -9073019736851073122, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: 0.533063, y: 1.1170818, z: 0.010015461} + m_Extent: {x: 0.03519118, y: 0.029712081, z: 0.022185031} + m_DirtyAABB: 0 +--- !u!1 &6060100459503672211 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5361880835418760695} + m_Layer: 0 + m_Name: LeftHandPinky1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5361880835418760695 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6060100459503672211} + serializedVersion: 2 + m_LocalRotation: {x: -0.027553953, y: -0.7103214, z: 0.12914248, w: 0.69138014} + m_LocalPosition: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + m_LocalScale: {x: 0.9999997, y: 0.9999998, z: 1.0000006} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4273589866182700628} + m_Father: {fileID: 1456008330816844347} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6089981033444042931 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4093758063131466195} + m_Layer: 0 + m_Name: RightShoulder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4093758063131466195 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6089981033444042931} + serializedVersion: 2 + m_LocalRotation: {x: 0.52331096, y: 0.455521, z: 0.54517496, w: -0.47056407} + m_LocalPosition: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + m_LocalScale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8725704407515097629} + m_Father: {fileID: 1566315969365042184} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6320585675419915920 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4954741239174852530} + m_Layer: 0 + m_Name: RightHandPinky1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4954741239174852530 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6320585675419915920} + serializedVersion: 2 + m_LocalRotation: {x: -0.027553953, y: 0.7103214, z: -0.12914248, w: 0.69138014} + m_LocalPosition: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + m_LocalScale: {x: 0.9999994, y: 0.9999996, z: 1.0000008} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7616065134030439192} + m_Father: {fileID: 1276889847869249262} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6427545133803625679 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3058815107748849590} + m_Layer: 0 + m_Name: LeftHandIndex2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3058815107748849590 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6427545133803625679} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000012456934, y: 0.008824148, z: 0.000000015833113, w: 0.9999611} + m_LocalPosition: {x: -0, y: 0.039015174, z: 0.000000013504177} + m_LocalScale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6222927532363529796} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6474592062357421025 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7964188213251261118} + m_Layer: 0 + m_Name: LeftHandMiddle2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7964188213251261118 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6474592062357421025} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000068520706, y: -0.06740804, z: -0.000000013068237, w: 0.9977255} + m_LocalPosition: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + m_LocalScale: {x: 0.99999946, y: 1.0000014, z: 0.9999996} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 591114295637152694} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6687405409835025661 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6761114079480826349} + m_Layer: 0 + m_Name: LeftHandRing1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6761114079480826349 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6687405409835025661} + serializedVersion: 2 + m_LocalRotation: {x: 0.016826883, y: -0.74243546, z: 0.10570575, w: 0.6613114} + m_LocalPosition: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + m_LocalScale: {x: 1.0000002, y: 1.0000005, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2565986537275426070} + m_Father: {fileID: 1456008330816844347} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6829497904178966241 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2565986537275426070} + m_Layer: 0 + m_Name: LeftHandRing2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2565986537275426070 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6829497904178966241} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000019793698, y: -0.017694853, z: 0.00000003481366, w: 0.9998435} + m_LocalPosition: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + m_LocalScale: {x: 0.9999998, y: 0.999999, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6761114079480826349} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6869517371307067169 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9179713746227543674} + m_Layer: 0 + m_Name: RightFoot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9179713746227543674 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6869517371307067169} + serializedVersion: 2 + m_LocalRotation: {x: 0.3709124, y: 0.6002493, z: -0.3789613, w: 0.59875965} + m_LocalPosition: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + m_LocalScale: {x: 1.0000013, y: 0.9999994, z: 0.9999985} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 890950179847237608} + m_Father: {fileID: 2422708146455636323} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6937375018416315460 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5851424151378179558} + m_Layer: 0 + m_Name: RightHandMiddle1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5851424151378179558 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6937375018416315460} + serializedVersion: 2 + m_LocalRotation: {x: 0.015756963, y: 0.76071495, z: -0.04948219, w: 0.64700544} + m_LocalPosition: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + m_LocalScale: {x: 0.9999999, y: 0.9999995, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7036553469242176334} + m_Father: {fileID: 1276889847869249262} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7162361120765368639 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 890950179847237608} + m_Layer: 0 + m_Name: RightToeBase + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &890950179847237608 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7162361120765368639} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000046564015, y: 1, z: 3.3825238e-13, w: -0.000006155172} + m_LocalPosition: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + m_LocalScale: {x: 1.000001, y: 0.99999976, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 9179713746227543674} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7184566345123830569 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5495654167319897951} + - component: {fileID: 6171616714388879741} + m_Layer: 0 + m_Name: Accessories + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5495654167319897951 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7184566345123830569} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &6171616714388879741 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7184566345123830569} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4554999278103424840, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: -0.00000053717383, y: 1.0059781, z: -0.03529916} + m_Extent: {x: 0.00000019275215, y: 0.0000004172325, z: 0.00000009126961} + m_DirtyAABB: 0 +--- !u!1 &7253986250990638299 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3454726038963396821} + m_Layer: 0 + m_Name: LeftShoulder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3454726038963396821 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7253986250990638299} + serializedVersion: 2 + m_LocalRotation: {x: -0.52331096, y: 0.455521, z: 0.54517496, w: 0.47056407} + m_LocalPosition: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + m_LocalScale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7292518587341704575} + m_Father: {fileID: 1566315969365042184} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7271153851944428611 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3092749187070250721} + m_Layer: 0 + m_Name: LeftToeBase + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3092749187070250721 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7271153851944428611} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000013966587, y: 1, z: -0.00000003725293, w: 0.000005439916} + m_LocalPosition: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + m_LocalScale: {x: 1.0000006, y: 0.9999981, z: 1.0000004} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5999275267631713598} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7791090740954310291 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3914510736203456406} + m_Layer: 0 + m_Name: LeftHandProp + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3914510736203456406 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7791090740954310291} + serializedVersion: 2 + m_LocalRotation: {x: 0.087648116, y: -0.6836664, z: 0.13569695, w: 0.7116912} + m_LocalPosition: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + m_LocalScale: {x: 1.0000006, y: 1.0000006, z: 1.0000002} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1456008330816844347} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7920553672785193121 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6345418660241937631} + - component: {fileID: 6677417267420236660} + m_Layer: 0 + m_Name: Outerwear + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6345418660241937631 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7920553672785193121} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &6677417267420236660 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7920553672785193121} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 1617087265200637012, guid: e79b799a85000cd4ea6d2332153cbd7b, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: 0, y: 1.1326982, z: -0.027165547} + m_Extent: {x: 0.3148561, y: 0.3061798, z: 0.16538973} + m_DirtyAABB: 0 +--- !u!1 &8114995776046519037 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 858799442567868884} + m_Layer: 0 + m_Name: LeftHandThumb1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &858799442567868884 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8114995776046519037} + serializedVersion: 2 + m_LocalRotation: {x: -0.18863569, y: 0.95492417, z: 0.19843517, w: -0.114716716} + m_LocalPosition: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + m_LocalScale: {x: 1.0000005, y: 1.0000008, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 79418753646671369} + m_Father: {fileID: 1456008330816844347} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8219522742993515895 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7292518587341704575} + m_Layer: 0 + m_Name: LeftArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7292518587341704575 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8219522742993515895} + serializedVersion: 2 + m_LocalRotation: {x: -0.18721196, y: -0.003470013, z: -0.06889398, w: 0.9798945} + m_LocalPosition: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + m_LocalScale: {x: 0.9999988, y: 1.0000008, z: 1.0000004} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 721467785958873962} + m_Father: {fileID: 3454726038963396821} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8227354836931375316 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5466873568565719471} + - component: {fileID: 2818630737952926175} + m_Layer: 0 + m_Name: Pants + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5466873568565719471 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8227354836931375316} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6882336577345060054} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2818630737952926175 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8227354836931375316} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -987022824948863293, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + m_Bones: + - {fileID: 2658152042452943207} + - {fileID: 2117861698742084876} + - {fileID: 3490510801761083155} + - {fileID: 8696124429907989913} + - {fileID: 5999275267631713598} + - {fileID: 3092749187070250721} + - {fileID: 7425570194368757145} + - {fileID: 1566315969365042184} + - {fileID: 9045915782496309436} + - {fileID: 8926997022933348494} + - {fileID: 3454726038963396821} + - {fileID: 7292518587341704575} + - {fileID: 721467785958873962} + - {fileID: 1456008330816844347} + - {fileID: 6222927532363529796} + - {fileID: 3058815107748849590} + - {fileID: 591114295637152694} + - {fileID: 7964188213251261118} + - {fileID: 5361880835418760695} + - {fileID: 4273589866182700628} + - {fileID: 3914510736203456406} + - {fileID: 6761114079480826349} + - {fileID: 2565986537275426070} + - {fileID: 858799442567868884} + - {fileID: 79418753646671369} + - {fileID: 4093758063131466195} + - {fileID: 8725704407515097629} + - {fileID: 8758296212812565166} + - {fileID: 1276889847869249262} + - {fileID: 4953627069574939660} + - {fileID: 3388411515409762778} + - {fileID: 5851424151378179558} + - {fileID: 7036553469242176334} + - {fileID: 4954741239174852530} + - {fileID: 7616065134030439192} + - {fileID: 7836731373447028906} + - {fileID: 6481256438627568256} + - {fileID: 4531660375636141132} + - {fileID: 2106381712962878445} + - {fileID: 7355585280703827563} + - {fileID: 2639351653699705451} + - {fileID: 2422708146455636323} + - {fileID: 9179713746227543674} + - {fileID: 890950179847237608} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2658152042452943207} + m_AABB: + m_Center: {x: 0, y: 0.56631976, z: -0.03281797} + m_Extent: {x: 0.19081575, y: 0.3290207, z: 0.14223105} + m_DirtyAABB: 0 +--- !u!1 &8278709153383040506 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 721467785958873962} + m_Layer: 0 + m_Name: LeftForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &721467785958873962 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8278709153383040506} + serializedVersion: 2 + m_LocalRotation: {x: 0.08783075, y: -0.70631206, z: 0.12390296, w: 0.69141674} + m_LocalPosition: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + m_LocalScale: {x: 1, y: 1.0000012, z: 1.0000007} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1456008330816844347} + m_Father: {fileID: 7292518587341704575} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8693106401475600305 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8696124429907989913} + m_Layer: 0 + m_Name: LeftLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8696124429907989913 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8693106401475600305} + serializedVersion: 2 + m_LocalRotation: {x: 0.0065620965, y: 0.0068166656, z: -0.107853614, w: 0.9941218} + m_LocalPosition: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + m_LocalScale: {x: 0.99999785, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5999275267631713598} + m_Father: {fileID: 3490510801761083155} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8727470325348829793 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 79418753646671369} + m_Layer: 0 + m_Name: LeftHandThumb2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &79418753646671369 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8727470325348829793} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000012266445, y: 0.056428105, z: 0.000000014924952, w: 0.99840665} + m_LocalPosition: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + m_LocalScale: {x: 0.9999994, y: 0.9999986, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 858799442567868884} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_contre/Character.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_contre/Character.prefab.meta new file mode 100644 index 0000000..3f9fc88 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_contre/Character.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e51f060e5ae20c04895fd4416f923509 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_pour.meta b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_pour.meta new file mode 100644 index 0000000..e4cfa37 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_pour.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 562f9ba9c3045ba4caed426820f463bd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_pour/Character.prefab b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_pour/Character.prefab new file mode 100644 index 0000000..c215a9b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_pour/Character.prefab @@ -0,0 +1,3315 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &14561007538524012 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6850254453891290569} + m_Layer: 0 + m_Name: Root + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6850254453891290569 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 14561007538524012} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000067179414, y: -1.1102232e-16, z: 1.110223e-16, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 835252554628657507} + m_Father: {fileID: 6352547390782116974} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &98691046925944294 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9180374996896190050} + m_Layer: 0 + m_Name: LeftShoulder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9180374996896190050 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 98691046925944294} + serializedVersion: 2 + m_LocalRotation: {x: -0.52331096, y: 0.455521, z: 0.54517496, w: 0.47056407} + m_LocalPosition: {x: -0.032184, y: 0.24856398, z: 0.0008105356} + m_LocalScale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 716571650226670172} + m_Father: {fileID: 7033671344023094688} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &448783239855796417 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2140345261420199150} + m_Layer: 0 + m_Name: RightArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2140345261420199150 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 448783239855796417} + serializedVersion: 2 + m_LocalRotation: {x: -0.18721196, y: 0.0034700148, z: 0.068893984, w: 0.9798945} + m_LocalPosition: {x: 4.656613e-10, y: 0.12703091, z: 0.000000037398422} + m_LocalScale: {x: 0.99999875, y: 1.0000008, z: 1.0000004} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3238567329470659055} + m_Father: {fileID: 1648988643334703381} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &535552460531486464 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3994876723785546610} + m_Layer: 0 + m_Name: LeftHandRing1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3994876723785546610 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 535552460531486464} + serializedVersion: 2 + m_LocalRotation: {x: 0.016826883, y: -0.74243546, z: 0.10570575, w: 0.6613114} + m_LocalPosition: {x: 0.015764875, y: 0.09492018, z: -0.026633084} + m_LocalScale: {x: 1.0000002, y: 1.0000005, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3780307407591442777} + m_Father: {fileID: 7560690618134884067} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &887831016052680646 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6912172550006322149} + m_Layer: 0 + m_Name: RightHandIndex1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6912172550006322149 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 887831016052680646} + serializedVersion: 2 + m_LocalRotation: {x: 0.066300124, y: 0.78213257, z: -0.07260306, w: 0.6153062} + m_LocalPosition: {x: -0.011883861, y: 0.10574183, z: 0.03888236} + m_LocalScale: {x: 1, y: 1.000001, z: 1.0000006} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3688740136613305860} + m_Father: {fileID: 2734486778557143980} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &921380638971894493 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5037686825477007591} + m_Layer: 0 + m_Name: RightHandRing1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5037686825477007591 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 921380638971894493} + serializedVersion: 2 + m_LocalRotation: {x: 0.016826881, y: 0.74243546, z: -0.10570566, w: 0.6613114} + m_LocalPosition: {x: -0.015765058, y: 0.09492007, z: -0.026633061} + m_LocalScale: {x: 1.0000006, y: 1.0000004, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6325743907362253663} + m_Father: {fileID: 2734486778557143980} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &935446065402374579 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6352547390782116974} + m_Layer: 0 + m_Name: Skeleton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6352547390782116974 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 935446065402374579} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6850254453891290569} + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &954817476105939914 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4174842030615444863} + - component: {fileID: 2950908750154513008} + m_Layer: 0 + m_Name: Pants + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4174842030615444863 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 954817476105939914} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2950908750154513008 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 954817476105939914} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -987022824948863293, guid: 0f24f9714abd24a4596c28822aaa7a39, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: 0, y: 0.56631976, z: -0.03281797} + m_Extent: {x: 0.19081575, y: 0.3290207, z: 0.14223105} + m_DirtyAABB: 0 +--- !u!1 &1037103165544937504 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3238567329470659055} + m_Layer: 0 + m_Name: RightForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3238567329470659055 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1037103165544937504} + serializedVersion: 2 + m_LocalRotation: {x: 0.087830655, y: 0.7063121, z: -0.123902895, w: 0.6914167} + m_LocalPosition: {x: -0.0000000037252903, y: 0.29205698, z: -0.00000012980308} + m_LocalScale: {x: 0.9999999, y: 0.9999995, z: 1.000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2734486778557143980} + m_Father: {fileID: 2140345261420199150} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1049754826995456062 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8947621343094699992} + m_Layer: 0 + m_Name: LeftHandPinky1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8947621343094699992 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1049754826995456062} + serializedVersion: 2 + m_LocalRotation: {x: -0.027553953, y: -0.7103214, z: 0.12914248, w: 0.69138014} + m_LocalPosition: {x: 0.011944725, y: 0.088858515, z: -0.056342445} + m_LocalScale: {x: 0.9999997, y: 0.9999998, z: 1.0000006} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7675158075925199653} + m_Father: {fileID: 7560690618134884067} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1216348312835935998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2315750527578526235} + - component: {fileID: 8859719297840670428} + m_Layer: 0 + m_Name: Shoes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2315750527578526235 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1216348312835935998} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &8859719297840670428 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1216348312835935998} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 2525575882034029105, guid: 1ce007de4fc6e4645b0ea41258fde30a, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: 0, y: 0.26135036, z: -0.029352918} + m_Extent: {x: 0.17386709, y: 0.1926434, z: 0.07620901} + m_DirtyAABB: 0 +--- !u!1 &1341491636947615167 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8014573732519446444} + - component: {fileID: 4459647325156400411} + - component: {fileID: 795095417052629819} + - component: {fileID: 1511665112030907368} + - component: {fileID: 5461402282910689633} + - component: {fileID: 632503749797604212} + m_Layer: 0 + m_Name: Character + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8014573732519446444 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1341491636947615167} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8757367288983235880} + - {fileID: 8191884706860782608} + - {fileID: 44909739404888080} + - {fileID: 7248024761894774770} + - {fileID: 8574200110032406163} + - {fileID: 558040316994252592} + - {fileID: 1956776137277795754} + - {fileID: 4297842955055504413} + - {fileID: 6651236955861982674} + - {fileID: 7588079999914078066} + - {fileID: 4174842030615444863} + - {fileID: 2315750527578526235} + - {fileID: 6352547390782116974} + - {fileID: 9061420620485558855} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &4459647325156400411 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1341491636947615167} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Controller: {fileID: 9100000, guid: fac54571ff27f2b46b28cd6d82cd3c4c, type: 2} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!114 &795095417052629819 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1341491636947615167} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a69a902533bc5af478efff13cc47894f, type: 3} + m_Name: + m_EditorClassIdentifier: + _faceMeshes: + - Type: 11 + Mesh: {fileID: -7927354642031663450, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} +--- !u!143 &1511665112030907368 +CharacterController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1341491636947615167} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Height: 1.8 + m_Radius: 0.4 + m_SlopeLimit: 45 + m_StepOffset: 0.3 + m_SkinWidth: 0.08 + m_MinMoveDistance: 0.001 + m_Center: {x: 0, y: 0.95, z: 0} +--- !u!114 &5461402282910689633 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1341491636947615167} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f75db5b538eef814b9775d744f05e3b5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_WalkSpeed: 1 + m_RunSpeed: 4 + m_RotateSpeed: 90 + m_Space: 1 + m_JumpHeight: 5 + m_HorizontalID: Hor + m_VerticalID: Vert + m_StateID: State + m_JumpID: IsJump + m_LookWeight: + weight: 1 + body: 0.3 + head: 0.7 + eyes: 1 +--- !u!114 &632503749797604212 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1341491636947615167} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b2c67ce836140b4479603ebcf944cddd, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_JumpButton: Jump + m_RunKey: 304 + m_Camera: {fileID: 0} + m_MouseX: Mouse X + m_MouseY: Mouse Y + m_MouseScroll: Mouse ScrollWheel +--- !u!1 &1362001970214806694 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6651236955861982674} + - component: {fileID: 2572772510239260211} + m_Layer: 0 + m_Name: Mustache + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6651236955861982674 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1362001970214806694} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2572772510239260211 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1362001970214806694} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 3131188959575262684, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: 0.03154619, y: 1.5339845, z: -0.017111944} + m_Extent: {x: 0.03154619, y: 0.01586008, z: 0.014986338} + m_DirtyAABB: 0 +--- !u!1 &1543174110931052112 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7033671344023094688} + m_Layer: 0 + m_Name: Spine1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7033671344023094688 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1543174110931052112} + serializedVersion: 2 + m_LocalRotation: {x: -0.0056683216, y: 4.2764544e-13, z: -6.044778e-14, w: 0.99998397} + m_LocalPosition: {x: 5.2516043e-20, y: 0.21461836, z: 0.0000000013969839} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999996} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9180374996896190050} + - {fileID: 4414493787979088753} + - {fileID: 1648988643334703381} + m_Father: {fileID: 8526007473360790139} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1551484800622373400 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4320823705569544171} + m_Layer: 0 + m_Name: RightHandThumb2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4320823705569544171 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1551484800622373400} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000012919415, y: -0.0564281, z: -0.0000000037312344, w: 0.99840665} + m_LocalPosition: {x: 0.000000037252903, y: 0.052412074, z: 0.000000044703484} + m_LocalScale: {x: 1, y: 0.99999756, z: 1.000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4514676961893007262} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1683554457653868482 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6775506350265510762} + m_Layer: 0 + m_Name: RightLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6775506350265510762 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1683554457653868482} + serializedVersion: 2 + m_LocalRotation: {x: 0.0065620895, y: -0.0068165944, z: 0.10785357, w: 0.9941218} + m_LocalPosition: {x: 0.0000000026193447, y: 0.33968964, z: -0.00000000175487} + m_LocalScale: {x: 0.99999964, y: 1.0000005, z: 0.99999976} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6351901143082089978} + m_Father: {fileID: 6786927211723890810} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1764060503712012142 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3780307407591442777} + m_Layer: 0 + m_Name: LeftHandRing2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3780307407591442777 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1764060503712012142} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000019793698, y: -0.017694853, z: 0.00000003481366, w: 0.9998435} + m_LocalPosition: {x: 0.000000006519258, y: 0.047298856, z: -0.00000010675285} + m_LocalScale: {x: 0.9999998, y: 0.999999, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3994876723785546610} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1963571957838010448 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5376373007090952038} + m_Layer: 0 + m_Name: LeftForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5376373007090952038 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1963571957838010448} + serializedVersion: 2 + m_LocalRotation: {x: 0.08783075, y: -0.70631206, z: 0.12390296, w: 0.69141674} + m_LocalPosition: {x: 0.0000000037252903, y: 0.29205698, z: -0.00000012957025} + m_LocalScale: {x: 1, y: 1.0000012, z: 1.0000007} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7560690618134884067} + m_Father: {fileID: 716571650226670172} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2516493741288809760 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 44909739404888080} + - component: {fileID: 5264515575022294881} + m_Layer: 0 + m_Name: Faces + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &44909739404888080 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2516493741288809760} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &5264515575022294881 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2516493741288809760} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -7927354642031663450, guid: 819bbc3929ae14e43b0d8405d65589f9, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: 0, y: 1.6449335, z: 0.11112382} + m_Extent: {x: 0.06859213, y: 0.069738805, z: 0.015396662} + m_DirtyAABB: 0 +--- !u!1 &2591823557466923555 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4297842955055504413} + - component: {fileID: 8064295468334275300} + m_Layer: 0 + m_Name: Hat + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4297842955055504413 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2591823557466923555} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &8064295468334275300 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2591823557466923555} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 6657998009922166292, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: 0.032321766, y: 1.7223923, z: 0.032711253} + m_Extent: {x: 0.038520873, y: 0.024942875, z: 0.047877543} + m_DirtyAABB: 0 +--- !u!1 &2863497619460770950 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7248024761894774770} + - component: {fileID: 5329326827690402247} + m_Layer: 0 + m_Name: Full_body + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7248024761894774770 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2863497619460770950} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &5329326827690402247 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2863497619460770950} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -8942535040821497803, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: -0.054614652, y: 1.2705848, z: -0.017527109} + m_Extent: {x: 0.03205956, y: 0.0647161, z: 0.010819305} + m_DirtyAABB: 0 +--- !u!1 &3054480534030476697 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4794062806850877809} + m_Layer: 0 + m_Name: LeftHandThumb1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4794062806850877809 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3054480534030476697} + serializedVersion: 2 + m_LocalRotation: {x: -0.18863569, y: 0.95492417, z: 0.19843517, w: -0.114716716} + m_LocalPosition: {x: -0.02166076, y: 0.043445963, z: 0.0448513} + m_LocalScale: {x: 1.0000005, y: 1.0000008, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6674310040889772749} + m_Father: {fileID: 7560690618134884067} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3228326931244938343 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 835252554628657507} + m_Layer: 0 + m_Name: Hips + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &835252554628657507 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3228326931244938343} + serializedVersion: 2 + m_LocalRotation: {x: -0.2477584, y: -0.0000009708205, z: 0.00000024826952, w: 0.9688219} + m_LocalPosition: {x: -7.754818e-25, y: 0.79327637, z: -0.00031300008} + m_LocalScale: {x: 1.0000012, y: 1.0000014, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4485258960885699087} + - {fileID: 6786927211723890810} + - {fileID: 8526007473360790139} + m_Father: {fileID: 6850254453891290569} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3328529325020641250 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8809503557535819710} + m_Layer: 0 + m_Name: LeftHandMiddle1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8809503557535819710 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3328529325020641250} + serializedVersion: 2 + m_LocalRotation: {x: 0.015756983, y: -0.76071495, z: 0.049482264, w: 0.64700544} + m_LocalPosition: {x: 0.013650959, y: 0.10667082, z: 0.005375662} + m_LocalScale: {x: 0.9999999, y: 0.9999991, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8092998781202254240} + m_Father: {fileID: 7560690618134884067} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3385030061720030748 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4485258960885699087} + m_Layer: 0 + m_Name: LeftUpLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4485258960885699087 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3385030061720030748} + serializedVersion: 2 + m_LocalRotation: {x: -0.69055235, y: -0.14536478, z: 0.69428474, w: 0.14133382} + m_LocalPosition: {x: -0.09797806, y: 0.014953093, z: -0.028238082} + m_LocalScale: {x: 0.99999845, y: 0.99999493, z: 1.0000046} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5996106669730003452} + m_Father: {fileID: 835252554628657507} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3416314064697697237 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5996106669730003452} + m_Layer: 0 + m_Name: LeftLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5996106669730003452 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3416314064697697237} + serializedVersion: 2 + m_LocalRotation: {x: 0.0065620965, y: 0.0068166656, z: -0.107853614, w: 0.9941218} + m_LocalPosition: {x: -0.0000000013387762, y: 0.33968964, z: 0.000000004645244} + m_LocalScale: {x: 0.99999785, y: 0.99999994, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1768185349790631233} + m_Father: {fileID: 4485258960885699087} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3529990813870789038 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8757367288983235880} + - component: {fileID: 4864625600752992906} + m_Layer: 0 + m_Name: Accessories + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8757367288983235880 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3529990813870789038} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &4864625600752992906 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3529990813870789038} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4554999278103424840, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: -0.00000053717383, y: 1.0059781, z: -0.03529916} + m_Extent: {x: 0.00000019275215, y: 0.0000004172325, z: 0.00000009126961} + m_DirtyAABB: 0 +--- !u!1 &3668210047735230617 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1768185349790631233} + m_Layer: 0 + m_Name: LeftFoot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1768185349790631233 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3668210047735230617} + serializedVersion: 2 + m_LocalRotation: {x: 0.37091264, y: -0.60024947, z: 0.37896135, w: 0.5987593} + m_LocalPosition: {x: 0.0000000033760443, y: 0.35952854, z: -0.0000000035215635} + m_LocalScale: {x: 0.9999982, y: 1.0000024, z: 1.0000013} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8975598184528138275} + m_Father: {fileID: 5996106669730003452} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3935368988166500456 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8092998781202254240} + m_Layer: 0 + m_Name: LeftHandMiddle2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8092998781202254240 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3935368988166500456} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000068520706, y: -0.06740804, z: -0.000000013068237, w: 0.9977255} + m_LocalPosition: {x: 1.7462298e-10, y: 0.04112126, z: 0.000000014424586} + m_LocalScale: {x: 0.99999946, y: 1.0000014, z: 0.9999996} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8809503557535819710} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3950020218863043717 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4267108894766089842} + m_Layer: 0 + m_Name: RightHandMiddle1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4267108894766089842 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3950020218863043717} + serializedVersion: 2 + m_LocalRotation: {x: 0.015756963, y: 0.76071495, z: -0.04948219, w: 0.64700544} + m_LocalPosition: {x: -0.0136510255, y: 0.10667075, z: 0.005375674} + m_LocalScale: {x: 0.9999999, y: 0.9999995, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3577430804016338124} + m_Father: {fileID: 2734486778557143980} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3994900406502988045 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1648988643334703381} + m_Layer: 0 + m_Name: RightShoulder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1648988643334703381 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3994900406502988045} + serializedVersion: 2 + m_LocalRotation: {x: 0.52331096, y: 0.455521, z: 0.54517496, w: -0.47056407} + m_LocalPosition: {x: 0.032184, y: 0.24856398, z: 0.0008105356} + m_LocalScale: {x: 1.0000006, y: 0.99999845, z: 1.0000005} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2140345261420199150} + m_Father: {fileID: 7033671344023094688} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4134769136341949214 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6786927211723890810} + m_Layer: 0 + m_Name: RightUpLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6786927211723890810 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4134769136341949214} + serializedVersion: 2 + m_LocalRotation: {x: 0.6905538, y: -0.145365, z: 0.69428337, w: -0.1413333} + m_LocalPosition: {x: 0.09797794, y: 0.014953091, z: -0.028238472} + m_LocalScale: {x: 0.99999875, y: 0.999994, z: 1.000003} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6775506350265510762} + m_Father: {fileID: 835252554628657507} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4266480973592679218 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4059987658910196060} + m_Layer: 0 + m_Name: LeftHandIndex1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4059987658910196060 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4266480973592679218} + serializedVersion: 2 + m_LocalRotation: {x: 0.066300035, y: -0.7821326, z: 0.07260302, w: 0.6153062} + m_LocalPosition: {x: 0.0118837925, y: 0.10574185, z: 0.038882356} + m_LocalScale: {x: 1.0000004, y: 1.0000011, z: 1.0000004} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6674770550348469178} + m_Father: {fileID: 7560690618134884067} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4308674050221965982 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7588079999914078066} + - component: {fileID: 1897553338138984211} + m_Layer: 0 + m_Name: Outerwear + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7588079999914078066 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4308674050221965982} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1897553338138984211 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4308674050221965982} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 9053217031431064551, guid: 5a531847cd74a654b97ef249cb9306d5, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: 0, y: 1.1937916, z: -0.04493793} + m_Extent: {x: 0.62131745, y: 0.31724364, z: 0.20754829} + m_DirtyAABB: 0 +--- !u!1 &4488479953581750247 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4414493787979088753} + m_Layer: 0 + m_Name: Neck + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4414493787979088753 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4488479953581750247} + serializedVersion: 2 + m_LocalRotation: {x: 0.113181375, y: -3.050584e-14, z: 1.1901714e-13, w: 0.9935743} + m_LocalPosition: {x: 1.7543814e-15, y: 0.29899067, z: -0.0016210787} + m_LocalScale: {x: 1.0000005, y: 0.9999997, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5068043754911625025} + m_Father: {fileID: 7033671344023094688} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4489858689981780112 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3577430804016338124} + m_Layer: 0 + m_Name: RightHandMiddle2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3577430804016338124 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4489858689981780112} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000009176944, y: 0.06740804, z: 0.0000000100345385, w: 0.9977255} + m_LocalPosition: {x: -0.0000000047148205, y: 0.04112123, z: -0.00000006533082} + m_LocalScale: {x: 1.0000004, y: 0.9999998, z: 0.99999887} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4267108894766089842} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4510501073442584883 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6674310040889772749} + m_Layer: 0 + m_Name: LeftHandThumb2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6674310040889772749 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4510501073442584883} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000012266445, y: 0.056428105, z: 0.000000014924952, w: 0.99840665} + m_LocalPosition: {x: -0.000000026077032, y: 0.052411955, z: 0.000000074505806} + m_LocalScale: {x: 0.9999994, y: 0.9999986, z: 0.9999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4794062806850877809} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4662970745627321911 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3688740136613305860} + m_Layer: 0 + m_Name: RightHandIndex2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3688740136613305860 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4662970745627321911} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000011991253, y: -0.008824146, z: -0.000000013504707, w: 0.9999611} + m_LocalPosition: {x: -0.0000000037252903, y: 0.03901518, z: 0.000000028871} + m_LocalScale: {x: 1.0000005, y: 0.99999905, z: 0.9999997} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6912172550006322149} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4980343927381060502 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1956776137277795754} + - component: {fileID: 3400622066315444075} + m_Layer: 0 + m_Name: Hairstyle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1956776137277795754 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4980343927381060502} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &3400622066315444075 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4980343927381060502} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -4695107088515116087, guid: 49afccecce4f7b446a34b4e3223cf8ff, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: 0.0025211126, y: 1.7263105, z: -0.018938772} + m_Extent: {x: 0.14709695, y: 0.17414433, z: 0.1779243} + m_DirtyAABB: 0 +--- !u!1 &5266620296968370598 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8396868289749739967} + m_Layer: 0 + m_Name: RightToeBase + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8396868289749739967 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5266620296968370598} + serializedVersion: 2 + m_LocalRotation: {x: 0.0000000046564015, y: 1, z: 3.3825238e-13, w: -0.000006155172} + m_LocalPosition: {x: 8.8216723e-10, y: 0.13862467, z: -4.3775117e-10} + m_LocalScale: {x: 1.000001, y: 0.99999976, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6351901143082089978} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5675464204878605238 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6674770550348469178} + m_Layer: 0 + m_Name: LeftHandIndex2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6674770550348469178 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5675464204878605238} + serializedVersion: 2 + m_LocalRotation: {x: -0.000000012456934, y: 0.008824148, z: 0.000000015833113, w: 0.9999611} + m_LocalPosition: {x: -0, y: 0.039015174, z: 0.000000013504177} + m_LocalScale: {x: 0.99999964, y: 0.9999991, z: 1.0000002} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4059987658910196060} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5871372255799996072 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9061420620485558855} + - component: {fileID: 8606093948285690674} + m_Layer: 0 + m_Name: T_Shirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9061420620485558855 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5871372255799996072} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &8606093948285690674 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5871372255799996072} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 8454336951551918877, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: 0.067416795, y: 1.0399959, z: 0.039523456} + m_Extent: {x: 0.03413049, y: 0.041192055, z: 0.03339861} + m_DirtyAABB: 0 +--- !u!1 &5999769900166929625 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6228236395581950267} + m_Layer: 0 + m_Name: LeftHandProp + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6228236395581950267 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5999769900166929625} + serializedVersion: 2 + m_LocalRotation: {x: 0.087648116, y: -0.6836664, z: 0.13569695, w: 0.7116912} + m_LocalPosition: {x: -0.03158396, y: 0.09564296, z: -0.006133903} + m_LocalScale: {x: 1.0000006, y: 1.0000006, z: 1.0000002} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7560690618134884067} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6333727803187521009 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4514676961893007262} + m_Layer: 0 + m_Name: RightHandThumb1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4514676961893007262 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6333727803187521009} + serializedVersion: 2 + m_LocalRotation: {x: 0.18863572, y: 0.95492417, z: 0.19843517, w: 0.11471673} + m_LocalPosition: {x: 0.021660633, y: 0.043446, z: 0.044851314} + m_LocalScale: {x: 1.0000005, y: 1.0000012, z: 0.9999991} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4320823705569544171} + m_Father: {fileID: 2734486778557143980} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6372240573644502159 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7560690618134884067} + m_Layer: 0 + m_Name: LeftHand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7560690618134884067 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6372240573644502159} + serializedVersion: 2 + m_LocalRotation: {x: -0.06332686, y: 0.057902038, z: 0.18569629, w: 0.9788534} + m_LocalPosition: {x: 0.00000006354556, y: 0.23034137, z: -0.000000009778887} + m_LocalScale: {x: 0.9999995, y: 0.9999998, z: 0.9999989} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4059987658910196060} + - {fileID: 8809503557535819710} + - {fileID: 8947621343094699992} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 4794062806850877809} + m_Father: {fileID: 5376373007090952038} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6701367727476793982 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6325743907362253663} + m_Layer: 0 + m_Name: RightHandRing2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6325743907362253663 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6701367727476793982} + serializedVersion: 2 + m_LocalRotation: {x: -5.2395677e-10, y: 0.017694853, z: -0.000000036443733, w: 0.9998435} + m_LocalPosition: {x: 0.000000006519258, y: 0.047298674, z: -0.00000003783498} + m_LocalScale: {x: 0.99999934, y: 0.9999989, z: 1.0000001} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5037686825477007591} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6769259951534200052 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8574200110032406163} + - component: {fileID: 4309254527834038608} + m_Layer: 0 + m_Name: Glasses + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8574200110032406163 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6769259951534200052} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &4309254527834038608 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6769259951534200052} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 8485970674117699935, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: 0.041846663, y: 1.6403041, z: 0.05109793} + m_Extent: {x: 0.006526828, y: 0.0059581995, z: 0.0023058467} + m_DirtyAABB: 0 +--- !u!1 &7072715089802787463 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6351901143082089978} + m_Layer: 0 + m_Name: RightFoot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6351901143082089978 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7072715089802787463} + serializedVersion: 2 + m_LocalRotation: {x: 0.3709124, y: 0.6002493, z: -0.3789613, w: 0.59875965} + m_LocalPosition: {x: -0.0000000040745363, y: 0.35952857, z: 0.0000000016589183} + m_LocalScale: {x: 1.0000013, y: 0.9999994, z: 0.9999985} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8396868289749739967} + m_Father: {fileID: 6775506350265510762} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7089204900958316492 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2709789385881535291} + m_Layer: 0 + m_Name: RightHandProp + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2709789385881535291 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7089204900958316492} + serializedVersion: 2 + m_LocalRotation: {x: 0.087648, y: 0.68366647, z: -0.13569683, w: 0.7116912} + m_LocalPosition: {x: 0.031583775, y: 0.095642895, z: -0.006133884} + m_LocalScale: {x: 1.0000005, y: 1.0000006, z: 0.99999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2734486778557143980} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7190601057079503489 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5068043754911625025} + m_Layer: 0 + m_Name: Head + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5068043754911625025 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7190601057079503489} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000034645177, y: -6.7762684e-21, z: 3.5914197e-19, w: 1} + m_LocalPosition: {x: 9.6561756e-20, y: 0.09232266, z: -0.000000022351742} + m_LocalScale: {x: 0.9999993, y: 1.0000007, z: 1.0000005} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4414493787979088753} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7279201249315626233 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8975598184528138275} + m_Layer: 0 + m_Name: LeftToeBase + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8975598184528138275 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7279201249315626233} + serializedVersion: 2 + m_LocalRotation: {x: -0.0000000013966587, y: 1, z: -0.00000003725293, w: 0.000005439916} + m_LocalPosition: {x: 0.0000000014312889, y: 0.13862465, z: -0.000000006484811} + m_LocalScale: {x: 1.0000006, y: 0.9999981, z: 1.0000004} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1768185349790631233} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7743364193629619252 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8526007473360790139} + m_Layer: 0 + m_Name: Spine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8526007473360790139 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7743364193629619252} + serializedVersion: 2 + m_LocalRotation: {x: 0.23109376, y: 0.0000009749384, z: -0.0000002315704, w: 0.9729315} + m_LocalPosition: {x: 0.00000011318602, y: 0.10254809, z: 0.05647655} + m_LocalScale: {x: 0.99999964, y: 0.9999983, z: 0.9999991} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7033671344023094688} + m_Father: {fileID: 835252554628657507} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8592007735386783223 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 716571650226670172} + m_Layer: 0 + m_Name: LeftArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &716571650226670172 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8592007735386783223} + serializedVersion: 2 + m_LocalRotation: {x: -0.18721196, y: -0.003470013, z: -0.06889398, w: 0.9798945} + m_LocalPosition: {x: -4.656613e-10, y: 0.12703091, z: 0.000000037398422} + m_LocalScale: {x: 0.9999988, y: 1.0000008, z: 1.0000004} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5376373007090952038} + m_Father: {fileID: 9180374996896190050} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8668532850636825471 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8191884706860782608} + - component: {fileID: 1707942635547923861} + m_Layer: 0 + m_Name: Body + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8191884706860782608 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8668532850636825471} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1707942635547923861 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8668532850636825471} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -964220427784028482, guid: 335f64e53b1ba9648aec09bc1a394a09, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: 0, y: 0.9187707, z: 0.0075713545} + m_Extent: {x: 0.72034204, y: 0.9105047, z: 0.17010164} + m_DirtyAABB: 0 +--- !u!1 &8679443465049619343 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3958886075139118106} + m_Layer: 0 + m_Name: RightHandPinky2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3958886075139118106 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8679443465049619343} + serializedVersion: 2 + m_LocalRotation: {x: 0.000000019035838, y: 0.014233045, z: 0.00000007637615, w: 0.99989873} + m_LocalPosition: {x: -0, y: 0.03542494, z: -0.000000022817403} + m_LocalScale: {x: 1.0000011, y: 1.0000001, z: 0.9999995} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6033825494463693726} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8736985159641197651 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 558040316994252592} + - component: {fileID: 5295412027226152742} + m_Layer: 0 + m_Name: Gloves + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &558040316994252592 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8736985159641197651} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8014573732519446444} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &5295412027226152742 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8736985159641197651} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: dbc0ac3b2e21dbd4aaface70d26b6083, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -9073019736851073122, guid: ad472b939cd48144e9521d873c2e3018, type: 3} + m_Bones: + - {fileID: 6850254453891290569} + - {fileID: 835252554628657507} + - {fileID: 4485258960885699087} + - {fileID: 5996106669730003452} + - {fileID: 1768185349790631233} + - {fileID: 8975598184528138275} + - {fileID: 8526007473360790139} + - {fileID: 7033671344023094688} + - {fileID: 4414493787979088753} + - {fileID: 5068043754911625025} + - {fileID: 9180374996896190050} + - {fileID: 716571650226670172} + - {fileID: 5376373007090952038} + - {fileID: 7560690618134884067} + - {fileID: 4059987658910196060} + - {fileID: 6674770550348469178} + - {fileID: 8809503557535819710} + - {fileID: 8092998781202254240} + - {fileID: 8947621343094699992} + - {fileID: 7675158075925199653} + - {fileID: 6228236395581950267} + - {fileID: 3994876723785546610} + - {fileID: 3780307407591442777} + - {fileID: 4794062806850877809} + - {fileID: 6674310040889772749} + - {fileID: 1648988643334703381} + - {fileID: 2140345261420199150} + - {fileID: 3238567329470659055} + - {fileID: 2734486778557143980} + - {fileID: 6912172550006322149} + - {fileID: 3688740136613305860} + - {fileID: 4267108894766089842} + - {fileID: 3577430804016338124} + - {fileID: 6033825494463693726} + - {fileID: 3958886075139118106} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 6325743907362253663} + - {fileID: 4514676961893007262} + - {fileID: 4320823705569544171} + - {fileID: 6786927211723890810} + - {fileID: 6775506350265510762} + - {fileID: 6351901143082089978} + - {fileID: 8396868289749739967} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6850254453891290569} + m_AABB: + m_Center: {x: 0.533063, y: 1.1170818, z: 0.010015461} + m_Extent: {x: 0.03519118, y: 0.029712081, z: 0.022185031} + m_DirtyAABB: 0 +--- !u!1 &8951140501998570819 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2734486778557143980} + m_Layer: 0 + m_Name: RightHand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2734486778557143980 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8951140501998570819} + serializedVersion: 2 + m_LocalRotation: {x: -0.06332686, y: -0.05790204, z: -0.18569624, w: 0.9788534} + m_LocalPosition: {x: -0.000000033832837, y: 0.2303413, z: 0.000000015133992} + m_LocalScale: {x: 0.9999999, y: 1.0000004, z: 0.99999964} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6912172550006322149} + - {fileID: 4267108894766089842} + - {fileID: 6033825494463693726} + - {fileID: 2709789385881535291} + - {fileID: 5037686825477007591} + - {fileID: 4514676961893007262} + m_Father: {fileID: 3238567329470659055} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9120519251591302333 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6033825494463693726} + m_Layer: 0 + m_Name: RightHandPinky1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6033825494463693726 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9120519251591302333} + serializedVersion: 2 + m_LocalRotation: {x: -0.027553953, y: 0.7103214, z: -0.12914248, w: 0.69138014} + m_LocalPosition: {x: -0.011944787, y: 0.08885849, z: -0.05634244} + m_LocalScale: {x: 0.9999994, y: 0.9999996, z: 1.0000008} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3958886075139118106} + m_Father: {fileID: 2734486778557143980} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9122991083221997256 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7675158075925199653} + m_Layer: 0 + m_Name: LeftHandPinky2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7675158075925199653 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9122991083221997256} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000002025832, y: -0.014233044, z: -0.0000000726505, w: 0.99989873} + m_LocalPosition: {x: -0.000000014901161, y: 0.03542474, z: 0.000000091735274} + m_LocalScale: {x: 1.0000004, y: 1.0000001, z: 0.9999996} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8947621343094699992} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_pour/Character.prefab.meta b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_pour/Character.prefab.meta new file mode 100644 index 0000000..d35fc93 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Saved_Characters/Papi_pour/Character.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 090006d94a8f11945a1c6a52e7c739cb +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Scenes.meta b/Assets/ithappy/Creative_Characters_FREE/Scenes.meta new file mode 100644 index 0000000..a409047 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scenes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aabe412e9e8be704eb5150375b7f1dfb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Scenes/Demonstration.unity b/Assets/ithappy/Creative_Characters_FREE/Scenes/Demonstration.unity new file mode 100644 index 0000000..c7b62b4 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scenes/Demonstration.unity @@ -0,0 +1,421 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 705507994} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &705507993 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 705507995} + - component: {fileID: 705507994} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &705507994 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 705507993} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 1 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &705507995 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 705507993} + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &836556382 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 836556386} + - component: {fileID: 836556385} + - component: {fileID: 836556384} + - component: {fileID: 836556383} + m_Layer: 0 + m_Name: Floor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!64 &836556383 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 836556382} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 4 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &836556384 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 836556382} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 1a7b1bad79c94ec409e3dc38d1ec9e5e, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &836556385 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 836556382} + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &836556386 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 836556382} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &963194225 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 963194228} + - component: {fileID: 963194227} + - component: {fileID: 963194226} + - component: {fileID: 963194229} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &963194226 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 963194225} + m_Enabled: 1 +--- !u!20 &963194227 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 963194225} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0, g: 0, b: 0, a: 1} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &963194228 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 963194225} + m_LocalRotation: {x: -0.54917574, y: 0.008275713, z: -0.005425878, w: -0.83564836} + m_LocalPosition: {x: 0.047171175, y: 6.538364, z: -2.95357} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &963194229 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 963194225} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b7f4329458cdb464796191393167d4f9, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SensitivityX: 0.05 + m_SensitivityY: 0.03 + m_Zoom: 0.1 + m_SensetivityZoom: 0.2 + m_MinAngle: 0 + m_MaxAngle: 60 + m_Offset: 1.5 + m_CameraSpeed: 70 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scenes/Demonstration.unity.meta b/Assets/ithappy/Creative_Characters_FREE/Scenes/Demonstration.unity.meta new file mode 100644 index 0000000..411eee0 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scenes/Demonstration.unity.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: c56691c4cbf7a9847961fcef21eed9fe +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scenes/Demonstration.unity + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts.meta new file mode 100644 index 0000000..488385e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f482e601dd5ed194da2deba6fd64b478 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller.meta new file mode 100644 index 0000000..406bcad --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f853990e5772f884290f13fd6d8555b0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/CharacterMover.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/CharacterMover.cs new file mode 100644 index 0000000..2da05ef --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/CharacterMover.cs @@ -0,0 +1,348 @@ +using System; +using UnityEngine; + +namespace Controller +{ + [RequireComponent(typeof(CharacterController))] + [RequireComponent(typeof(Animator))] + [DisallowMultipleComponent] + public class CharacterMover : MonoBehaviour + { + [Header("Movement")] + [SerializeField] + private float m_WalkSpeed = 1f; + [SerializeField] + private float m_RunSpeed = 4f; + [SerializeField, Range(0f, 360f)] + private float m_RotateSpeed = 90f; + [SerializeField] + private Space m_Space = Space.Self; + [SerializeField] + private float m_JumpHeight = 5f; + + [Header("Animator")] + [SerializeField] + private string m_HorizontalID = "Hor"; + [SerializeField] + private string m_VerticalID = "Vert"; + [SerializeField] + private string m_StateID = "State"; + [SerializeField] + private string m_JumpID = "IsJump"; + [SerializeField] + private LookWeight m_LookWeight = new(1f, 0.3f, 0.7f, 1f); + + private Transform m_Transform; + private CharacterController m_Controller; + private Animator m_Animator; + + private MovementHandler m_Movement; + private AnimationHandler m_Animation; + + private Vector2 m_Axis; + private Vector3 m_Target; + private bool m_IsRun; + private bool m_IsJump; + + private bool m_IsMoving; + + public Vector2 Axis => m_Axis; + public Vector3 Target => m_Target; + public bool IsRun => m_IsRun; + + private void OnValidate() + { + m_WalkSpeed = Mathf.Max(m_WalkSpeed, 0f); + m_RunSpeed = Mathf.Max(m_RunSpeed, m_WalkSpeed); + + m_Movement?.SetStats(m_WalkSpeed / 3.6f, m_RunSpeed / 3.6f, m_RotateSpeed, m_JumpHeight, m_Space); + } + + private void Awake() + { + m_Transform = transform; + m_Controller = GetComponent(); + m_Animator = GetComponent(); + + m_Movement = new MovementHandler(m_Controller, m_Transform, m_WalkSpeed, m_RunSpeed, m_RotateSpeed, m_JumpHeight, m_Space); + m_Animation = new AnimationHandler(m_Animator, m_HorizontalID, m_VerticalID, m_StateID, m_JumpID); + } + + private void Update() + { + m_Movement.Move(Time.deltaTime, in m_Axis, in m_Target, m_IsRun, m_IsJump, m_IsMoving, out var animAxis, out var isAir); + m_Animation.Animate(in animAxis, m_IsRun? 1f : 0f, isAir, Time.deltaTime); + + } + + private void OnAnimatorIK() + { + m_Animation.AnimateIK(in m_Target, m_LookWeight); + } + + public void SetInput(in Vector2 axis, in Vector3 target, in bool isRun, in bool isJump) + { + m_Axis = axis; + m_Target = target; + m_IsRun = isRun; + m_IsJump = isJump; + + if (m_Axis.sqrMagnitude < Mathf.Epsilon) + { + m_Axis = Vector2.zero; + m_IsMoving = false; + } + else + { + m_Axis = Vector3.ClampMagnitude(m_Axis, 1f); + m_IsMoving = true; + } + } + + private void OnControllerColliderHit(ControllerColliderHit hit) + { + if(hit.normal.y > m_Controller.stepOffset) + { + m_Movement.SetSurface(hit.normal); + } + } + + [Serializable] + private struct LookWeight + { + public float weight; + public float body; + public float head; + public float eyes; + + public LookWeight(float weight, float body, float head, float eyes) + { + this.weight = weight; + this.body = body; + this.head = head; + this.eyes = eyes; + } + } + + #region Handlers + private class MovementHandler + { + private readonly CharacterController m_Controller; + private readonly Transform m_Transform; + + private float m_WalkSpeed; + private float m_RunSpeed; + private float m_RotateSpeed; + private float m_JumpHeight; + + private Space m_Space; + + private readonly float m_Luft = 75f; + private readonly float m_JumpReload = 1f; + + private float m_TargetAngle; + private bool m_IsRotating = false; + + private Vector3 m_Normal; + private Vector3 m_GravityAcelleration = Physics.gravity; + + private float m_jumpTimer; + + public MovementHandler(CharacterController controller, Transform transform, float walkSpeed, float runSpeed, float rotateSpeed, float jumpHeight, Space space) + { + m_Controller = controller; + m_Transform = transform; + + m_WalkSpeed = walkSpeed; + m_RunSpeed = runSpeed; + m_RotateSpeed = rotateSpeed; + m_JumpHeight = jumpHeight; + + m_Space = space; + } + + public void SetStats(float walkSpeed, float runSpeed, float rotateSpeed, float jumpHeight, Space space) + { + m_WalkSpeed = walkSpeed; + m_RunSpeed = runSpeed; + m_RotateSpeed = rotateSpeed; + m_JumpHeight = jumpHeight; + + m_Space = space; + } + + public void SetSurface(in Vector3 normal) + { + m_Normal = normal; + } + + public void Move(float deltaTime, in Vector2 axis, in Vector3 target, bool isRun, bool isJump, bool isMoving, out Vector2 animAxis, out bool isAir) + { + var targetForward = Vector3.Normalize(target - m_Transform.position); + + ConvertMovement(in axis, in targetForward, out var movement); + CaculateGravity(isJump, deltaTime, out isAir); + Displace(deltaTime, in movement, isRun); + Turn(in targetForward, isMoving); + UpdateRotation(deltaTime); + + GenAnimationAxis(in movement, out animAxis); + } + + private void ConvertMovement(in Vector2 axis, in Vector3 targetForward, out Vector3 movement) + { + Vector3 forward; + Vector3 right; + + if (m_Space == Space.Self) + { + forward = new Vector3(targetForward.x, 0f, targetForward.z).normalized; + right = Vector3.Cross(Vector3.up, forward).normalized; + } + else + { + forward = Vector3.forward; + right = Vector3.right; + } + + movement = axis.x * right + axis.y * forward; + movement = Vector3.ProjectOnPlane(movement, m_Normal); + } + + private void Displace(float deltaTime, in Vector3 movement, bool isRun) + { + Vector3 displacement = (isRun ? m_RunSpeed : m_WalkSpeed) * movement; + displacement += m_GravityAcelleration; + displacement *= deltaTime; + + m_Controller.Move(displacement); + } + + private void CaculateGravity(bool isJump, float deltaTime, out bool isAir) + { + m_jumpTimer = Mathf.Max(m_jumpTimer - deltaTime, 0f); + + if (m_Controller.isGrounded) + { + if (isJump && m_jumpTimer <= 0) + { + var gravity = Physics.gravity; + var length = gravity.magnitude; + + m_GravityAcelleration += -(gravity / length) * Mathf.Sqrt(m_JumpHeight * 6f * length); + m_jumpTimer = m_JumpReload; + isAir = true; + + return; + } + + m_GravityAcelleration = Physics.gravity; + isAir = false; + + return; + } + + isAir = true; + + m_GravityAcelleration += Physics.gravity * deltaTime; + return; + } + + private void GenAnimationAxis(in Vector3 movement, out Vector2 animAxis) + { + if(m_Space == Space.Self) + { + animAxis = new Vector2(Vector3.Dot(movement, m_Transform.right), Vector3.Dot(movement, m_Transform.forward)); + } + else + { + animAxis = new Vector2(Vector3.Dot(movement, Vector3.right), Vector3.Dot(movement, Vector3.forward)); + } + } + + private void Turn(in Vector3 targetForward, bool isMoving) + { + var angle = Vector3.SignedAngle(m_Transform.forward, Vector3.ProjectOnPlane(targetForward, Vector3.up), Vector3.up); + + if (!m_IsRotating) + { + if (!isMoving && Mathf.Abs(angle) < m_Luft) + { + m_IsRotating = false; + return; + } + + m_IsRotating = true; + } + + m_TargetAngle = angle; + } + + private void UpdateRotation(float deltaTime) + { + if(!m_IsRotating) + { + return; + } + + var rotDelta = m_RotateSpeed * deltaTime; + if (rotDelta + Mathf.PI * 2f + Mathf.Epsilon >= Mathf.Abs(m_TargetAngle)) + { + rotDelta = m_TargetAngle; + m_IsRotating = false; + } + else + { + rotDelta *= Mathf.Sign(m_TargetAngle); + } + + m_Transform.Rotate(Vector3.up, rotDelta); + } + } + + private class AnimationHandler + { + private readonly Animator m_Animator; + + private readonly string m_HorizontalID; + private readonly string m_VerticalID; + private readonly string m_StateID; + private readonly string m_JumpID; + + private readonly float k_InputFlow = 4.5f; + + private float m_FlowState; + private Vector2 m_FlowAxis; + + public AnimationHandler(Animator animator, string horizontalID, string verticalID, string stateID, string jumpID) + { + m_Animator = animator; + + m_HorizontalID = horizontalID; + m_VerticalID = verticalID; + m_StateID = stateID; + m_JumpID = jumpID; + } + + public void Animate(in Vector2 axis, float state, bool isJump, float deltaTime) + { + + m_Animator.SetFloat(m_HorizontalID, m_FlowAxis.x); + m_Animator.SetFloat(m_VerticalID, m_FlowAxis.y); + + m_Animator.SetFloat(m_StateID, Mathf.Clamp01(m_FlowState)); + m_Animator.SetBool(m_JumpID, isJump); + + m_FlowAxis = Vector2.ClampMagnitude(m_FlowAxis + k_InputFlow * deltaTime * (axis - m_FlowAxis).normalized, 1f); + m_FlowState = Mathf.Clamp01(m_FlowState + k_InputFlow * deltaTime * Mathf.Sign(state - m_FlowState)); + } + + public void AnimateIK(in Vector3 target, in LookWeight lookWeight) + { + m_Animator.SetLookAtPosition(target); + m_Animator.SetLookAtWeight(lookWeight.weight, lookWeight.body, lookWeight.head, lookWeight.eyes); + } + } + #endregion + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/CharacterMover.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/CharacterMover.cs.meta new file mode 100644 index 0000000..2110e3c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/CharacterMover.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: f75db5b538eef814b9775d744f05e3b5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/CharacterMover.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/MovePlayerInput.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/MovePlayerInput.cs new file mode 100644 index 0000000..105913b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/MovePlayerInput.cs @@ -0,0 +1,86 @@ +using UnityEngine; + +namespace Controller +{ + [RequireComponent(typeof(CharacterMover))] + public class MovePlayerInput : MonoBehaviour + { + [Header("Character")] + [SerializeField] + private string m_HorizontalAxis = "Horizontal"; + [SerializeField] + private string m_VerticalAxis = "Vertical"; + [SerializeField] + private string m_JumpButton = "Jump"; + [SerializeField] + private KeyCode m_RunKey = KeyCode.LeftShift; + + [Header("Camera")] + [SerializeField] + private PlayerCamera m_Camera; + [SerializeField] + private string m_MouseX = "Mouse X"; + [SerializeField] + private string m_MouseY = "Mouse Y"; + [SerializeField] + private string m_MouseScroll = "Mouse ScrollWheel"; + + private CharacterMover m_Mover; + + private Vector2 m_Axis; + private bool m_IsRun; + private bool m_IsJump; + + private Vector3 m_Target; + private Vector2 m_MouseDelta; + private float m_Scroll; + + private void Awake() + { + m_Mover = GetComponent(); + + if(m_Camera == null ) + { + m_Camera = Camera.main == null ? null : Camera.main.GetComponent(); + } + if(m_Camera != null) { + m_Camera.SetPlayer(transform); + } + } + + private void Update() + { + GatherInput(); + SetInput(); + } + + public void GatherInput() + { + m_Axis = new Vector2(Input.GetAxis(m_HorizontalAxis), Input.GetAxis(m_VerticalAxis)); + m_IsRun = Input.GetKey(m_RunKey); + m_IsJump = Input.GetButton(m_JumpButton); + + m_Target = (m_Camera == null) ? Vector3.zero : m_Camera.Target; + m_MouseDelta = new Vector2(Input.GetAxis(m_MouseX), Input.GetAxis(m_MouseY)); + m_Scroll = Input.GetAxis(m_MouseScroll); + } + + public void BindMover(CharacterMover mover) + { + m_Mover = mover; + } + + public void SetInput() + { + if (m_Mover != null) + { + m_Mover.SetInput(in m_Axis, in m_Target, in m_IsRun, m_IsJump); + } + + if (m_Camera != null) + { + m_Camera.SetInput(in m_MouseDelta, m_Scroll); + } + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/MovePlayerInput.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/MovePlayerInput.cs.meta new file mode 100644 index 0000000..f10c39f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/MovePlayerInput.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: b2c67ce836140b4479603ebcf944cddd +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/MovePlayerInput.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/PlayerCamera.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/PlayerCamera.cs new file mode 100644 index 0000000..2795c14 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/PlayerCamera.cs @@ -0,0 +1,64 @@ +using UnityEngine; + +namespace Controller +{ + public abstract class PlayerCamera : MonoBehaviour + { + private const float MIN_DISTANCE = 1f; + private const float MAX_DISTANCE = 10f; + + private const float TARGET_DISTANCE = MAX_DISTANCE * 2f; + + protected Transform m_Player; + + [SerializeField, Range(0f, 1f)] + private float m_SensitivityX = 0.1f; + [SerializeField, Range(0f, 1f)] + private float m_SensitivityY = 0.1f; + + [SerializeField, Range(0f, 1f)] + private float m_Zoom = 0.5f; + [SerializeField, Range(0f, 1f)] + private float m_SensetivityZoom = 0.1f; + + [SerializeField, Range(0, 90f)] + private float m_MinAngle = 0f; + [SerializeField, Range(0, 90f)] + private float m_MaxAngle = 50f; + + protected Transform m_Target; + protected Transform m_Transform; + + protected Vector2 m_Angles; + protected float m_Distance; + + public Vector3 Target => m_Target.position; + public float TargetDistance => TARGET_DISTANCE; + + protected virtual void Awake() + { + m_Transform = transform; + + m_Target = new GameObject($"Target_{gameObject.name}").transform; + if(m_Transform.parent != null) + { + m_Target.transform.parent = m_Transform.parent; + } + } + + public void SetPlayer(Transform player) { + m_Player = player; + } + + public virtual void SetInput(in Vector2 delta, float scroll) + { + m_Angles += new Vector2(delta.y * m_SensitivityY, delta.x * m_SensitivityX) * 360f; + m_Angles.x = Mathf.Clamp(m_Angles.x, m_MinAngle, m_MaxAngle); + + m_Zoom += scroll * m_SensetivityZoom; + m_Zoom = Mathf.Clamp01(m_Zoom); + + m_Distance = (1f - m_Zoom) * (MAX_DISTANCE - MIN_DISTANCE) + MIN_DISTANCE; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/PlayerCamera.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/PlayerCamera.cs.meta new file mode 100644 index 0000000..ac30cf8 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/PlayerCamera.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 6e64ae1274b15fa4fbea3733685f5b29 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/PlayerCamera.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/ThirdPersonCamera.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/ThirdPersonCamera.cs new file mode 100644 index 0000000..610e0c0 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/ThirdPersonCamera.cs @@ -0,0 +1,65 @@ +using UnityEngine; + +namespace Controller +{ + public class ThirdPersonCamera : PlayerCamera + { + [SerializeField, Range(0f, 2f)] + private float m_Offset = 1.5f; + [SerializeField, Range(0f, 360f)] + private float m_CameraSpeed = 90f; + + private Vector3 m_LookPoint; + private Vector3 m_TargetPos; + + private void LateUpdate() + { + Move(Time.deltaTime); + } + + public override void SetInput(in Vector2 delta, float scroll) + { + base.SetInput(delta, scroll); + + var dir = new Vector3(0, 0, -m_Distance); + var rot = Quaternion.Euler(m_Angles.x, m_Angles.y, 0f); + + var playerPos = (m_Player == null) ? Vector3.zero : m_Player.position; + m_LookPoint = playerPos + m_Offset * Vector3.up; + m_TargetPos = m_LookPoint + rot * dir; + } + + private void Move(float deltaTime) + { + camera(); + target(); + + void camera() + { + var direction = m_TargetPos - m_Transform.position; + var delta = m_CameraSpeed * deltaTime; + + if(delta * delta > direction.sqrMagnitude) + { + m_Transform.position = m_TargetPos; + } + else + { + m_Transform.position += delta * direction.normalized; + } + + m_Transform.LookAt(m_LookPoint); + } + + void target() + { + if(m_Target == null) + { + return; + } + + m_Target.position = m_Transform.position + m_Transform.forward * TargetDistance; + } + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/ThirdPersonCamera.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/ThirdPersonCamera.cs.meta new file mode 100644 index 0000000..53eeebf --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/ThirdPersonCamera.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: b7f4329458cdb464796191393167d4f9 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Character_Controller/ThirdPersonCamera.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor.meta new file mode 100644 index 0000000..b1591dc --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e288d36454b64b945931064f52313219 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetLoader.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetLoader.cs new file mode 100644 index 0000000..720a1a2 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetLoader.cs @@ -0,0 +1,21 @@ +using System.Collections.Generic; +using System.Linq; +using UnityEditor; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor +{ + public static class AssetLoader + { + public static IEnumerable LoadAssets(string filter, string folder) + where T : Object + { + var assets = AssetDatabase.FindAssets(filter, new[] { folder }) + .Select(AssetDatabase.GUIDToAssetPath) + .Select(AssetDatabase.LoadAssetAtPath) + .ToArray(); + + return assets; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetLoader.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetLoader.cs.meta new file mode 100644 index 0000000..733ea9c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetLoader.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b259f0c39cff4c16a0d6aa27f0286f0b +timeCreated: 1733473579 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetLoader.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetsPath.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetsPath.cs new file mode 100644 index 0000000..8248d79 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetsPath.cs @@ -0,0 +1,36 @@ +namespace CharacterCustomizationTool.Editor +{ + public static class AssetsPath + { + public const string PackageName = "Creative_Characters_FREE"; + + public static string AnimationController => _root + "Animations/Animation_Controllers/Character_Movement.controller"; + public static string SavedCharacters => _root + "Saved_Characters/"; + public static string SlotLibrary => _root + "Configs/SlotLibrary.asset"; + + private static string _root = "Assets/ithappy/" + PackageName + "/"; + + public static void SetRoot(string root) + { + _root = root; + } + + public static class BaseMesh + { + public static readonly string[] Keywords = + { + "Base", + "Basic" + }; + + public static string Path => _root + "Meshes/"; + } + + public static class Folder + { + public static string Materials => _root + "Materials/"; + public static string Meshes => _root + "Meshes"; + public static string Faces => _root + "Meshes/Faces/"; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetsPath.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetsPath.cs.meta new file mode 100644 index 0000000..fa7926c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetsPath.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f2c2e9af7f6a4a1f957a9b57889e19c9 +timeCreated: 1712417480 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/AssetsPath.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character.meta new file mode 100644 index 0000000..ba6b4d2 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 82adddc3dfd448ad99ece633e5e75695 +timeCreated: 1735290032 \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/CustomizableCharacter.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/CustomizableCharacter.cs new file mode 100644 index 0000000..c494dd0 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/CustomizableCharacter.cs @@ -0,0 +1,194 @@ +using System.Collections.Generic; +using System.Linq; +using CharacterCustomizationTool.Editor.MaterialManagement; +using CharacterCustomizationTool.Editor.Randomizer; +using CharacterCustomizationTool.Editor.SlotValidation; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.Character +{ + public class CustomizableCharacter + { + private static readonly SlotType[] AlwaysEnabledParts = { SlotType.Body, SlotType.Faces }; + + private readonly List> _savedCombinations = new(); + private readonly GameObject _characterGameObject; + private readonly SlotValidator _slotValidator = new(); + + public SlotBase[] Slots { get; } + public int SavedCombinationsCount => _savedCombinations.Count; + + public CustomizableCharacter(SlotLibrary slotLibrary) + { + _characterGameObject = LoadBaseMesh(); + Slots = CreateSlots(slotLibrary); + } + + public GameObject InstantiateCharacter() + { + var character = Object.Instantiate(_characterGameObject, Vector3.zero, Quaternion.identity); + + return character; + } + + public void SelectPrevious(SlotType slotType) + { + GetSlotBy(slotType).SelectPrevious(); + } + + public void SelectNext(SlotType slotType) + { + GetSlotBy(slotType).SelectNext(); + } + + public bool IsToggled(SlotType slotType) + { + return GetSlotBy(slotType).IsEnabled; + } + + public void Toggle(SlotType type, bool isToggled) + { + GetSlotBy(type).Toggle(isToggled); + _slotValidator.Validate(this, type, isToggled); + } + + public void Draw(int previewLayer, Camera camera) + { + var materialProvider = new MaterialProvider(); + + foreach (var slot in Slots) + { + slot.Draw(materialProvider.MainColor, previewLayer, camera, 0); + } + } + + public void Randomize() + { + var randomCharacterGenerator = new RandomCharacterGenerator(); + randomCharacterGenerator.Randomize(this); + } + + public void SaveCombination() + { + var savedCombinations = Slots.Select(slot => new SavedSlot(slot.Type, slot.IsEnabled, slot.SelectedIndex)).ToList(); + _savedCombinations.Add(savedCombinations); + + while (_savedCombinations.Count > 4) + { + _savedCombinations.RemoveAt(0); + } + } + + public void LastCombination() + { + var lastSavedCombination = _savedCombinations.Last(); + if (IsSame()) + { + _savedCombinations.Remove(lastSavedCombination); + lastSavedCombination = _savedCombinations.Last(); + } + + foreach (var slot in Slots) + { + var savedCombination = lastSavedCombination.Find(c => c.SlotType == slot.Type); + + slot.Toggle(savedCombination.IsEnabled); + slot.Select(savedCombination.VariantIndex); + } + + _savedCombinations.Remove(lastSavedCombination); + } + + public bool IsSame() + { + var lastSavedCombination = _savedCombinations.Last(); + + return !Slots + .Select(slot => new { slot, savedCombination = lastSavedCombination.Find(c => c.SlotType == slot.Type) }) + .Where(t => t.slot.IsEnabled != t.savedCombination.IsEnabled || t.slot.SelectedIndex != t.savedCombination.VariantIndex) + .Select(t => t.slot) + .Any(); + } + + public void PickGroup(GroupType groupType, int index, bool isEnabled) + { + foreach (var slot in Slots) + { + if (slot.TryPickInGroup(groupType, index, isEnabled)) + { + break; + } + } + } + + public int GetVariantsCountInGroup(GroupType groupType) + { + foreach (var slot in Slots) + { + if (slot.TryGetVariantsCountInGroup(groupType, out var count)) + { + return count; + } + } + + return 0; + } + + public void ToDefault() + { + foreach (var slot in Slots) + { + if (slot.Type != SlotType.Body && slot.Type != SlotType.Faces) + { + slot.Toggle(false); + } + } + } + + public List GetSlotNames() + { + var partNames = _characterGameObject.transform + .Cast() + .Where(mesh => mesh.TryGetComponent(out _)) + .Select(mesh => new SlotName(mesh.name)).ToList(); + + return partNames; + } + + public static bool IsAlwaysEnabled(SlotType slotType) + { + return AlwaysEnabledParts.Contains(slotType); + } + + private SlotBase GetSlotBy(SlotType slotType) + { + return Slots.FirstOrDefault(s => s.Type == slotType); + } + + private static GameObject LoadBaseMesh() + { + var availableBaseMeshes = new List(); + + foreach (var keyword in AssetsPath.BaseMesh.Keywords) + { + var baseMeshes = AssetLoader.LoadAssets(keyword, AssetsPath.BaseMesh.Path); + availableBaseMeshes.AddRange(baseMeshes); + } + + var baseMesh = availableBaseMeshes.First(); + + return baseMesh; + } + + private static SlotBase[] CreateSlots(SlotLibrary slotLibrary) + { + var list = new List(); + list.Add(new FullBodySlot(slotLibrary.FullBodyCostumes)); + list.AddRange(slotLibrary.Slots.Select(s => new Slot(s.Type, s.Groups))); + + var sortedSlots = SlotSorter.Sort(list); + + return sortedSlots.ToArray(); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/CustomizableCharacter.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/CustomizableCharacter.cs.meta new file mode 100644 index 0000000..a765f23 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/CustomizableCharacter.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: eb14e4484b804470a44337b79a7e352d +timeCreated: 1735056168 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/CustomizableCharacter.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodySlot.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodySlot.cs new file mode 100644 index 0000000..080de82 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodySlot.cs @@ -0,0 +1,73 @@ +using System.Collections.Generic; +using System.Linq; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.Character +{ + public class FullBodySlot : SlotBase + { + private readonly List _variants; + + private FullBodyVariant _selected; + + public override string Name => "Full Body"; + public override GameObject Preview => _selected.PreviewObject; + public override int SelectedIndex => _variants.FindIndex(v => v.Name == _selected.Name); + public override int VariantsCount => _variants.Count; + public override (SlotType, Mesh)[] Meshes => _selected.Elements.Select(e => (e.Type, e.Mesh)).ToArray(); + + public FullBodySlot(FullBodyEntry[] fullBodyEntries) : base(SlotType.FullBody) + { + _variants = fullBodyEntries.Select(e => new FullBodyVariant(e)).ToList(); + _selected = _variants.First(); + } + + public override void SelectNext() + { + _selected = _variants[GetNextIndex()]; + } + + public override void SelectPrevious() + { + _selected = _variants[GetPreviousIndex()]; + } + + public override void Select(int index) + { + _selected = _variants[index]; + } + + public override bool TryGetVariantsCountInGroup(GroupType groupType, out int count) + { + if (groupType == GroupType.Costumes) + { + count = _variants.Count; + return true; + } + + count = 0; + return false; + } + + public override bool TryPickInGroup(GroupType groupType, int index, bool isEnabled) + { + if (!isEnabled || groupType != GroupType.Costumes) + { + return false; + } + + _selected = _variants[index]; + Toggle(true); + + return true; + } + + protected override void DrawSlot(Material material, int previewLayer, Camera camera, int submeshIndex) + { + foreach (var element in _selected.Elements) + { + DrawMesh(element.Mesh, material, previewLayer, camera, submeshIndex); + } + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodySlot.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodySlot.cs.meta new file mode 100644 index 0000000..86acb22 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodySlot.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8adf98cee48f47c099edca891fba555f +timeCreated: 1735290043 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodySlot.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodyVariant.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodyVariant.cs new file mode 100644 index 0000000..09d9acc --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodyVariant.cs @@ -0,0 +1,39 @@ +using System.Linq; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.Character +{ + public class FullBodyVariant + { + public FullBodyElement[] Elements { get; } + public GameObject PreviewObject { get; } + public string Name => Elements.First().Mesh.name; + + public FullBodyVariant(FullBodyEntry fullBodyEntry) + { + Elements = fullBodyEntry.Slots.Select(s => new FullBodyElement(s.Type, s.GameObject.GetComponentInChildren().sharedMesh)).ToArray(); + PreviewObject = PreviewCreator.CreateVariantPreview(GetPreviewMesh(Elements)); + } + + private static Mesh GetPreviewMesh(FullBodyElement[] elements) + { + var element = elements.FirstOrDefault(e => e.Type == SlotType.Hat) + ?? elements.FirstOrDefault(e => e.Type == SlotType.Outerwear) + ?? elements.First(); + + return element.Mesh; + } + } + + public class FullBodyElement + { + public SlotType Type { get; } + public Mesh Mesh { get; } + + public FullBodyElement(SlotType type, Mesh mesh) + { + Type = type; + Mesh = mesh; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodyVariant.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodyVariant.cs.meta new file mode 100644 index 0000000..a5a85f0 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodyVariant.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5936af340a884d9987333809fb1f3c4c +timeCreated: 1735290262 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/FullBodyVariant.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/PreviewCreator.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/PreviewCreator.cs new file mode 100644 index 0000000..cc4f092 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/PreviewCreator.cs @@ -0,0 +1,24 @@ +using CharacterCustomizationTool.Editor.MaterialManagement; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.Character +{ + public static class PreviewCreator + { + private static readonly MaterialProvider MaterialProvider = new(); + + public static GameObject CreateVariantPreview(Mesh mesh) + { + var variant = new GameObject(mesh.name); + + variant.AddComponent().sharedMesh = mesh; + variant.transform.position = Vector3.one * int.MaxValue; + variant.hideFlags = HideFlags.HideAndDontSave; + + var renderer = variant.AddComponent(); + renderer.sharedMaterial = MaterialProvider.MainColor; + + return variant; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/PreviewCreator.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/PreviewCreator.cs.meta new file mode 100644 index 0000000..b3c1c8c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/PreviewCreator.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8556696d659d49f28660a23959766758 +timeCreated: 1735298241 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/PreviewCreator.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/Slot.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/Slot.cs new file mode 100644 index 0000000..040ff0d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/Slot.cs @@ -0,0 +1,98 @@ +using System.Collections.Generic; +using System.Linq; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.Character +{ + public class Slot : SlotBase + { + private readonly SlotGroup[] _groups; + private readonly List _variants; + + private SlotVariant _selected; + + public override string Name => Type.ToString(); + public override GameObject Preview => _selected.PreviewObject; + public override int SelectedIndex => _variants.FindIndex(v => v.Name == _selected.Name); + public override int VariantsCount => _variants.Count; + + public override (SlotType, Mesh)[] Meshes => new[] + { + (Type, _selected.Mesh), + }; + + public Slot(SlotType type, SlotGroupEntry[] slotGroupEntries) : base(type) + { + _groups = slotGroupEntries.Select(TranslateGroup).ToArray(); + _variants = FlattenVariants(_groups); + _selected = _variants.First(); + } + + public override void SelectNext() + { + _selected = _variants[GetNextIndex()]; + } + + public override void SelectPrevious() + { + _selected = _variants[GetPreviousIndex()]; + } + + public override void Select(int index) + { + _selected = _variants[index]; + } + + public override bool TryGetVariantsCountInGroup(GroupType stepGroupType, out int count) + { + var group = _groups.FirstOrDefault(g => g.Type == stepGroupType); + if (group != null) + { + count = group.Variants.Length; + return true; + } + + count = 0; + return false; + } + + public override bool TryPickInGroup(GroupType groupType, int index, bool isEnabled) + { + if (!isEnabled || _groups.All(g => g.Type != groupType)) + { + return false; + } + + var mesh = _groups.First(g => g.Type == groupType).Variants[index].Mesh; + _selected = new SlotVariant(mesh); + Toggle(true); + + return true; + } + + protected override void DrawSlot(Material material, int previewLayer, Camera camera, int submeshIndex) + { + DrawMesh(_selected.Mesh, material, previewLayer, camera, submeshIndex); + } + + private static SlotGroup TranslateGroup(SlotGroupEntry entry) + { + var variants = entry.Variants + .Select(v => new SlotVariant(v.gameObject.GetComponentInChildren().sharedMesh)) + .ToArray(); + + return new SlotGroup(entry.Type, variants); + } + + private static List FlattenVariants(SlotGroup[] groups) + { + var variants = new List(); + foreach (var group in groups) + { + variants.AddRange(group.Variants); + } + + return variants; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/Slot.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/Slot.cs.meta new file mode 100644 index 0000000..16ce5fe --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/Slot.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 7be4a90f04ae0554bb98e8ad42eec182 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/Slot.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotBase.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotBase.cs new file mode 100644 index 0000000..93e9d04 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotBase.cs @@ -0,0 +1,73 @@ +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.Character +{ + public abstract class SlotBase + { + public abstract string Name { get; } + public abstract GameObject Preview { get; } + public abstract int SelectedIndex { get; } + public abstract int VariantsCount { get; } + public abstract (SlotType, Mesh)[] Meshes { get; } + + public SlotType Type { get; } + public bool IsEnabled { get; private set; } = true; + + protected SlotBase(SlotType type) + { + Type = type; + } + + public abstract void SelectNext(); + public abstract void SelectPrevious(); + public abstract void Select(int index); + public abstract bool TryGetVariantsCountInGroup(GroupType groupType, out int count); + public abstract bool TryPickInGroup(GroupType groupType, int index, bool isEnabled); + + public void Draw(Material material, int previewLayer, Camera camera, int submeshIndex) + { + if (IsEnabled) + { + DrawSlot(material, previewLayer, camera, submeshIndex); + } + } + + public bool IsOfType(SlotType type) + { + return Type == type; + } + + public void Toggle(bool isToggled) + { + IsEnabled = isToggled; + } + + protected abstract void DrawSlot(Material material, int previewLayer, Camera camera, int submeshIndex); + + protected int GetNextIndex() + { + var targetIndex = SelectedIndex + 1; + if (targetIndex >= VariantsCount) + { + targetIndex = 0; + } + + return targetIndex; + } + + protected int GetPreviousIndex() + { + var targetIndex = SelectedIndex - 1; + if (targetIndex < 0) + { + targetIndex = VariantsCount - 1; + } + return targetIndex; + } + + protected static void DrawMesh(Mesh mesh, Material material, int previewLayer, Camera camera, int submeshIndex) + { + Graphics.DrawMesh(mesh, new Vector3(0, -.01f, 0), Quaternion.identity, material, previewLayer, camera, submeshIndex); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotBase.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotBase.cs.meta new file mode 100644 index 0000000..31e7b8c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotBase.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4790fea957a0452c9b3fdafae8c50a85 +timeCreated: 1735299299 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotBase.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotGroup.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotGroup.cs new file mode 100644 index 0000000..6deab63 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotGroup.cs @@ -0,0 +1,14 @@ +namespace CharacterCustomizationTool.Editor.Character +{ + public class SlotGroup + { + public readonly GroupType Type; + public readonly SlotVariant[] Variants; + + public SlotGroup(GroupType type, SlotVariant[] variants) + { + Type = type; + Variants = variants; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotGroup.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotGroup.cs.meta new file mode 100644 index 0000000..62dad65 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotGroup.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a8574b612b164d90a75a3fe20a376234 +timeCreated: 1735291905 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotGroup.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotLibraryLoader.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotLibraryLoader.cs new file mode 100644 index 0000000..13e514b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotLibraryLoader.cs @@ -0,0 +1,12 @@ +using UnityEditor; + +namespace CharacterCustomizationTool.Editor.Character +{ + public static class SlotLibraryLoader + { + public static SlotLibrary LoadSlotLibrary() + { + return AssetDatabase.LoadAssetAtPath(AssetsPath.SlotLibrary); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotLibraryLoader.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotLibraryLoader.cs.meta new file mode 100644 index 0000000..d7b371f --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotLibraryLoader.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3c3cb4b19185480caba797a0824231a7 +timeCreated: 1735291150 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotLibraryLoader.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotVariant.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotVariant.cs new file mode 100644 index 0000000..d02aca5 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotVariant.cs @@ -0,0 +1,17 @@ +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.Character +{ + public class SlotVariant + { + public Mesh Mesh { get; } + public GameObject PreviewObject { get; } + public string Name => Mesh.name; + + public SlotVariant(Mesh mesh) + { + Mesh = mesh; + PreviewObject = PreviewCreator.CreateVariantPreview(mesh); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotVariant.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotVariant.cs.meta new file mode 100644 index 0000000..c562e41 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotVariant.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 2cea17fb1a249944b8f64f0a431b340d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Character/SlotVariant.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/CharacterCustomizationWindow.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/CharacterCustomizationWindow.cs new file mode 100644 index 0000000..cd922d3 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/CharacterCustomizationWindow.cs @@ -0,0 +1,253 @@ +using System.IO; +using System.Linq; +using CharacterCustomizationTool.Editor.Character; +using CharacterCustomizationTool.Editor.FaceEditor; +using CharacterCustomizationTool.Editor.MaterialManagement; +using Controller; +using UnityEditor; +using UnityEditor.Animations; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor +{ + public class CharacterCustomizationWindow : EditorWindow + { + private const string PreviewLayerName = "Character Preview"; + + private CustomizableCharacter _customizableCharacter; + private PartsEditor _partsEditor; + private Camera _camera; + private int _previewLayer; + private RenderTexture _renderTexture; + private string _prefabPath; + + [MenuItem("Tools/Character Customization")] + private static void Init() + { + FindRoot(); + var window = GetWindow("Character Customization"); + window.minSize = new Vector2(990, 655); + window.Show(); + } + + private void OnEnable() + { + _customizableCharacter = new CustomizableCharacter(SlotLibraryLoader.LoadSlotLibrary()); + _partsEditor = new PartsEditor(); + + LayerMaskUtility.CreateLayer(PreviewLayerName); + _previewLayer = LayerMask.NameToLayer(PreviewLayerName); + } + + private void OnGUI() + { + var rect = new Rect(10, 10, 300, 300); + + CreateRenderTexture(); + InitializeCamera(); + DrawCharacter(); + _partsEditor.OnGUI(new Rect(330, 10, position.width - 330, position.height), _customizableCharacter); + + GUI.DrawTexture(rect, _renderTexture, ScaleMode.StretchToFill, false); + + GUI.Label(new Rect(10, 320, 100, 25), "Prefab folder:"); + GUI.Label(new Rect(10, 345, 350, 25), AssetsPath.SavedCharacters); + _prefabPath = GUI.TextField(new Rect(10, 372, 300, 20), _prefabPath); + + var saveButtonRect = new Rect(10, 400, 300, 40); + if (GUI.Button(saveButtonRect, "Save Prefab")) + { + SavePrefab(); + } + + var randomizeButtonRect = new Rect(85, 450, 150, 30); + if (GUI.Button(randomizeButtonRect, "Randomize")) + { + Randomize(); + } + + var isZero = _customizableCharacter.SavedCombinationsCount == 0; + var isSame = false; + var lessThenTwo = false; + + if (!isZero) + { + isSame = _customizableCharacter.IsSame(); + lessThenTwo = _customizableCharacter.SavedCombinationsCount < 2; + } + + using (new EditorGUI.DisabledScope(isZero || (isSame && lessThenTwo))) + { + var lastButtonRect = new Rect(240, 450, 50, 30); + if (GUI.Button(lastButtonRect, "Last")) + { + _customizableCharacter.LastCombination(); + } + } + } + + private void SavePrefab() + { + var character = _customizableCharacter.InstantiateCharacter(); + var materialProvider = new MaterialProvider(); + + var enabledSlots = _customizableCharacter.Slots.Where(s => s.IsEnabled).ToArray(); + + foreach (var slot in enabledSlots) + { + foreach (var mesh in slot.Meshes) + { + var child = character.transform.Cast().First(t => t.name.StartsWith(mesh.Item1.ToString())); + if (child.TryGetComponent(out var skinnedMeshRenderer)) + { + skinnedMeshRenderer.sharedMesh = mesh.Item2; + skinnedMeshRenderer.sharedMaterial = materialProvider.MainColor; + skinnedMeshRenderer.localBounds = skinnedMeshRenderer.sharedMesh.bounds; + } + } + } + + FaceLoader.AddFaces(character); + AddAnimator(character); + AddMovementComponents(character); + + var prefabPath = AssetsPath.SavedCharacters + _prefabPath; + Directory.CreateDirectory(prefabPath); + var path = AssetDatabase.GenerateUniqueAssetPath($"{prefabPath}/Character.prefab"); + PrefabUtility.SaveAsPrefabAsset(character, path); + DestroyImmediate(character); + } + + private static void AddAnimator(GameObject character) + { + var controller = AssetDatabase.LoadAssetAtPath(AssetsPath.AnimationController); + var animator = character.GetComponent(); + animator.runtimeAnimatorController = controller; + animator.applyRootMotion = false; + } + + private static void AddMovementComponents(GameObject character) + { + AddCharacterController(character); + character.AddComponent(); + character.AddComponent(); + } + + private static void AddCharacterController(GameObject character) + { + var characterController = character.AddComponent(); + + characterController.center = new Vector3(0, .95f, 0); + characterController.radius = .4f; + characterController.height = 1.8f; + } + + private void Randomize() + { + _customizableCharacter.Randomize(); + _customizableCharacter.SaveCombination(); + } + + private void InitializeCamera() + { + if (_camera) + { + return; + } + + var cameraPivot = new GameObject("CameraPivot").transform; + cameraPivot.gameObject.hideFlags = HideFlags.HideAndDontSave; + + var cameraObject = new GameObject("PreviewCamera") + { + hideFlags = HideFlags.HideAndDontSave + }; + + _camera = cameraObject.AddComponent(); + _camera.targetTexture = _renderTexture; + _camera.clearFlags = CameraClearFlags.SolidColor; + _camera.renderingPath = RenderingPath.Forward; + _camera.enabled = false; + _camera.useOcclusionCulling = false; + _camera.cameraType = CameraType.Preview; + _camera.fieldOfView = 4.5f; + _camera.clearFlags = CameraClearFlags.SolidColor; + _camera.transform.SetParent(cameraPivot); + _camera.cullingMask = 1 << _previewLayer; + + cameraPivot.Rotate(Vector3.up, 150, Space.Self); + } + + private void CreateRenderTexture() + { + if (_renderTexture) + { + return; + } + + _renderTexture = new RenderTexture(300, 300, 30, RenderTextureFormat.ARGB32) + { + antiAliasing = 1 + }; + } + + private void DrawCharacter() + { + _camera.transform.localPosition = new Vector3(0, 1.1f, -36); + _customizableCharacter.Draw(_previewLayer, _camera); + _camera.Render(); + } + + private static void FindRoot() + { + var anchorAssetGuid = string.Empty; + + foreach (var keyword in AssetsPath.BaseMesh.Keywords) + { + var assetGuids = AssetDatabase.FindAssets(keyword); + + foreach (var guid in assetGuids) + { + if (AssetDatabase.GUIDToAssetPath(guid).Contains("Meshes")) + { + anchorAssetGuid = guid; + break; + } + } + + if (!string.IsNullOrEmpty(anchorAssetGuid)) + { + break; + } + } + + var anchorAssetPath = AssetDatabase.GUIDToAssetPath(anchorAssetGuid); + var pathParts = anchorAssetPath.Split('/'); + var packTitleParts = AssetsPath.PackageName.Split('_'); + var rootFound = false; + for (var i = pathParts.Length - 1; i >= 0; i--) + { + if (rootFound) + { + break; + } + + foreach (var part in packTitleParts) + { + rootFound = false; + + if (!pathParts[i].Contains(part)) + { + pathParts[i] = string.Empty; + break; + } + + rootFound = true; + } + } + + var root = string.Join("/", pathParts.Where(p => !string.IsNullOrEmpty(p)).ToArray()) + "/"; + AssetsPath.SetRoot(root); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/CharacterCustomizationWindow.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/CharacterCustomizationWindow.cs.meta new file mode 100644 index 0000000..12f0047 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/CharacterCustomizationWindow.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 09a7b34151da87d46a6e0cff3b379e11 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/CharacterCustomizationWindow.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor.meta new file mode 100644 index 0000000..38ff5cf --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: bf7c23847d84410d81a5e3b60afd39cf +timeCreated: 1733473101 \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FaceLoader.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FaceLoader.cs new file mode 100644 index 0000000..fb9bce9 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FaceLoader.cs @@ -0,0 +1,58 @@ +using System.Collections.Generic; +using System.Linq; +using CharacterCustomizationTool.FaceManagement; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.FaceEditor +{ + public static class FaceLoader + { + public static void AddFaces(GameObject gameObject) + { + var faceMeshes = AssetLoader.LoadAssets("t:Mesh", AssetsPath.Folder.Faces).ToArray(); + var maleFace = FilterBy("Male", faceMeshes); + var femaleFace = FilterBy("Female", faceMeshes); + + var groupedMaleFaces = Group(maleFace); + var groupedFemaleFaces = Group(femaleFace); + + var skinnedMeshRenderer = gameObject.transform + .Cast() + .First(t => t.name.StartsWith("Face")) + .GetComponent(); + + if (skinnedMeshRenderer.sharedMesh) + { + var facePicker = gameObject.AddComponent(); + + var nameSections = skinnedMeshRenderer.sharedMesh.name.Split("_"); + var groupedFaces = nameSections.First() == "Male" ? groupedMaleFaces : groupedFemaleFaces; + var faces = ChooseFaces(skinnedMeshRenderer.sharedMesh.name, groupedFaces); + + facePicker.SetFaces(faces); + } + } + + private static Mesh[] ChooseFaces(string faceName, Dictionary groupedFaces) + { + var faceKey = faceName.Split("_")[3]; + var faces = groupedFaces[faceKey]; + + return faces; + } + + private static IEnumerable FilterBy(string keyword, IEnumerable meshes) + { + return meshes.Where(m => m.name.StartsWith(keyword)).ToArray(); + } + + private static Dictionary Group(IEnumerable meshes) + { + var groupedMeshes = meshes + .GroupBy(m => m.name.Split("_")[3]) + .ToDictionary(g => g.Key, g => g.ToArray()); + + return groupedMeshes; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FaceLoader.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FaceLoader.cs.meta new file mode 100644 index 0000000..41da1c1 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FaceLoader.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9c4ca2ceb1694e368fdc48fb95737e0d +timeCreated: 1733473111 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FaceLoader.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FacePickerEditor.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FacePickerEditor.cs new file mode 100644 index 0000000..21a9f7d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FacePickerEditor.cs @@ -0,0 +1,39 @@ +using System; +using System.Linq; +using CharacterCustomizationTool.FaceManagement; +using UnityEditor; + +namespace CharacterCustomizationTool.Editor.FaceEditor +{ + [CustomEditor(typeof(FacePicker))] + public class FacePickerEditor : UnityEditor.Editor + { + public override void OnInspectorGUI() + { + base.OnInspectorGUI(); + + var facePicker = (FacePicker)target; + + var previousFace = facePicker.ActiveFace; + + var availableFaces = + Enum.GetValues(typeof(FaceType)) + .Cast() + .Where(facePicker.HasFace) + .ToArray(); + + var activeFaceIndex = Array.IndexOf(availableFaces, facePicker.ActiveFace); + + var newFaceIndex = EditorGUILayout.Popup("Face", activeFaceIndex, availableFaces.Select(f => f.ToString()).ToArray()); + var newFace = availableFaces[newFaceIndex]; + + if (newFace != previousFace) + { + facePicker.PickFace(newFace); + + EditorUtility.SetDirty(facePicker.gameObject); + AssetDatabase.SaveAssetIfDirty(facePicker.gameObject); + } + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FacePickerEditor.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FacePickerEditor.cs.meta new file mode 100644 index 0000000..2fe4e7b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FacePickerEditor.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: d12dd8e2ab416fc47b32a9c0579cfb40 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/FaceEditor/FacePickerEditor.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/GroupType.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/GroupType.cs new file mode 100644 index 0000000..c5dd1de --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/GroupType.cs @@ -0,0 +1,23 @@ +namespace CharacterCustomizationTool.Editor +{ + public enum GroupType + { + Body, + Costumes, + FaceAccessories, + Faces, + Glasses, + Gloves, + Hairstyle, + HairstyleSingle, + Hat, + HatSingle, + Mascots, + Outfit, + Outwear, + Pants, + Shoes, + Shorts, + Socks, + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/GroupType.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/GroupType.cs.meta new file mode 100644 index 0000000..48b5246 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/GroupType.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 7b59a73d0010b514bb4dc68df2e34a23 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/GroupType.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/LayerMaskUtility.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/LayerMaskUtility.cs new file mode 100644 index 0000000..19818a4 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/LayerMaskUtility.cs @@ -0,0 +1,50 @@ +using System; +using UnityEditor; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor +{ + public class LayerMaskUtility + { + public static void CreateLayer(string name) + { + if (string.IsNullOrEmpty(name)) + { + throw new ArgumentNullException(nameof(name), "New layer name string is either null or empty."); + } + + var tagManager = new SerializedObject(AssetDatabase.LoadAllAssetsAtPath("ProjectSettings/TagManager.asset")[0]); + var layerProps = tagManager.FindProperty("layers"); + var propCount = layerProps.arraySize; + + SerializedProperty firstEmptyProp = null; + + for (var i = 0; i < propCount; i++) + { + var layerProp = layerProps.GetArrayElementAtIndex(i); + var stringValue = layerProp.stringValue; + if (stringValue == name) + { + return; + } + + if (i < 8 || stringValue != string.Empty) + { + continue; + } + + firstEmptyProp ??= layerProp; + } + + if (firstEmptyProp == null) + { + Debug.LogError("Maximum limit of " + propCount + " layers exceeded. Layer \"" + name + "\" not created."); + + return; + } + + firstEmptyProp.stringValue = name; + tagManager.ApplyModifiedProperties(); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/LayerMaskUtility.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/LayerMaskUtility.cs.meta new file mode 100644 index 0000000..5504e65 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/LayerMaskUtility.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 496fab0852c0452fad73654ac2a8306d +timeCreated: 1737047512 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/LayerMaskUtility.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement.meta new file mode 100644 index 0000000..df5e241 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 0bf47c2abc5e479abe7e9c7250f2f869 +timeCreated: 1733383645 \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialOnDemand.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialOnDemand.cs new file mode 100644 index 0000000..f4b052b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialOnDemand.cs @@ -0,0 +1,35 @@ +using System; +using UnityEditor; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.MaterialManagement +{ + public class MaterialOnDemand + { + private readonly string[] _paths; + + private Material _value; + + public Material Value => _value ? _value : LoadMaterial(); + + public MaterialOnDemand(params string[] paths) + { + _paths = paths; + } + + private Material LoadMaterial() + { + foreach (var path in _paths) + { + var loadedMaterial = AssetDatabase.LoadAssetAtPath(path); + + if (loadedMaterial != null) + { + return loadedMaterial; + } + } + + throw new Exception(); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialOnDemand.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialOnDemand.cs.meta new file mode 100644 index 0000000..c7f3132 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialOnDemand.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 64d9492e12b140e5a5d41e01cd21f244 +timeCreated: 1733383656 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialOnDemand.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialPaths.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialPaths.cs new file mode 100644 index 0000000..b279f60 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialPaths.cs @@ -0,0 +1,20 @@ +using System.Linq; + +namespace CharacterCustomizationTool.Editor.MaterialManagement +{ + public static class MaterialPaths + { + private static readonly string[] MainColorNames = { "Material", "Color" }; + private static readonly string GlassName = "Glass"; + private static readonly string EmissionName = "Emission"; + + public static readonly string[] MainColorPaths = MainColorNames.Select(GetMaterialPath).ToArray(); + public static readonly string GlassPath = GetMaterialPath(GlassName); + public static readonly string EmissionPath = GetMaterialPath(EmissionName); + + private static string GetMaterialPath(string materialName) + { + return $"{AssetsPath.Folder.Materials}{materialName}.mat"; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialPaths.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialPaths.cs.meta new file mode 100644 index 0000000..7c05016 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialPaths.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: dcdec3d40fc84864a9f14ccc7367a694 +timeCreated: 1733383685 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialPaths.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialProvider.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialProvider.cs new file mode 100644 index 0000000..41817c8 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialProvider.cs @@ -0,0 +1,15 @@ +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.MaterialManagement +{ + public class MaterialProvider + { + private readonly MaterialOnDemand _mainColor = new(MaterialPaths.MainColorPaths); + private readonly MaterialOnDemand _glass = new(MaterialPaths.GlassPath); + private readonly MaterialOnDemand _emission = new(MaterialPaths.EmissionPath); + + public Material MainColor => _mainColor.Value; + public Material Glass => _glass.Value; + public Material Emission => _emission.Value; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialProvider.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialProvider.cs.meta new file mode 100644 index 0000000..755ae7b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialProvider.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 706da59b74ca42979c0359ece9905274 +timeCreated: 1733381019 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/MaterialManagement/MaterialProvider.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/PartsEditor.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/PartsEditor.cs new file mode 100644 index 0000000..7b5d532 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/PartsEditor.cs @@ -0,0 +1,118 @@ +using CharacterCustomizationTool.Editor.Character; +using UnityEditor; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor +{ + public class PartsEditor + { + private const float Width = 150; + + private Vector2 _scrollPosition; + + public void OnGUI(Rect rect, CustomizableCharacter character) + { + var slots = character.Slots; + using (new GUI.GroupScope(rect)) + { + using (var scrollViewScope = new GUILayout.ScrollViewScope(_scrollPosition)) + { + _scrollPosition = scrollViewScope.scrollPosition; + using (new GUILayout.HorizontalScope()) + { + const int step = 3; + var index = 0; + while (index < slots.Length) + { + using (new GUILayout.VerticalScope(GUILayout.Width(100))) + { + for (var i = index; i < index + step; i++) + { + if (i < slots.Length) + { + RenderPart(character, slots[i]); + } + } + } + index += step; + } + } + } + } + } + + private static void RenderPart(CustomizableCharacter character, SlotBase slot) + { + using (new GUILayout.VerticalScope(EditorStyles.helpBox, GUILayout.Width(Width))) + { + GUILayout.Label(slot.Name); + GUILayout.Box(AssetPreview.GetAssetPreview(slot.Preview)); + if (CustomizableCharacter.IsAlwaysEnabled(slot.Type)) + { + using (new EditorGUI.DisabledScope(true)) + { + RenderToggle(character, slot.Type); + } + } + else if (slot.Type == SlotType.FullBody) + { + RenderToggle(character, slot.Type); + } + else + { + using (new EditorGUI.DisabledScope(false)) + { + RenderToggle(character, slot.Type); + } + } + + using (new EditorGUI.DisabledScope(!slot.IsEnabled)) + { + using (new GUILayout.HorizontalScope(EditorStyles.helpBox, GUILayout.Width(Width))) + { + RenderLeftButton(character, slot.Type); + RenderCounter(slot); + RenderRightButton(character, slot.Type); + } + } + } + } + + private static void RenderToggle(CustomizableCharacter character, SlotType type) + { + var isToggled = EditorGUILayout.ToggleLeft("Enabled", character.IsToggled(type), GUILayout.Width(100)); + character.Toggle(type, isToggled); + } + + private static void RenderLeftButton(CustomizableCharacter character, SlotType slotType) + { + if (GUILayout.Button("<")) + { + character.SelectPrevious(slotType); + } + } + + private static void RenderRightButton(CustomizableCharacter character, SlotType slotType) + { + if (GUILayout.Button(">")) + { + character.SelectNext(slotType); + } + } + + private static void RenderCounter(SlotBase slot) + { + var style = new GUIStyle + { + alignment = TextAnchor.MiddleCenter, + normal = + { + textColor = Color.white + }, + fixedWidth = 70, + }; + + GUILayout.Label($"{slot.SelectedIndex + 1}/{slot.VariantsCount}", style); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/PartsEditor.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/PartsEditor.cs.meta new file mode 100644 index 0000000..6996b27 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/PartsEditor.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 5823a3186511e4043be688c233988ff0 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/PartsEditor.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer.meta new file mode 100644 index 0000000..5f1af56 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ccc51c69798f84d438888c8c9eef01e8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/RandomCharacterGenerator.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/RandomCharacterGenerator.cs new file mode 100644 index 0000000..ab3eff2 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/RandomCharacterGenerator.cs @@ -0,0 +1,49 @@ +using System; +using System.Linq; +using CharacterCustomizationTool.Editor.Character; +using CharacterCustomizationTool.Editor.Randomizer.Steps; +using CharacterCustomizationTool.Editor.Randomizer.Steps.Impl; + +namespace CharacterCustomizationTool.Editor.Randomizer +{ + public class RandomCharacterGenerator + { + private readonly IRandomizerStep[] _randomizerSteps = + { + new FaceStep(), + new BodyStep(), + new CostumesStep(), + new MascotsStep(), + new OutfitStep(), + new OutwearStep(), + new PantsStep(), + new ShortsStep(), + new SocksStep(), + new HatStep(), + new HatSingleStep(), + new FaceAccessoriesStep(), + new GlassesStep(), + new ShoesStep(), + new HairstyleSingleStep(), + new HairstyleStep(), + new GlovesStep(), + }; + + public void Randomize(CustomizableCharacter character) + { + character.ToDefault(); + + var groups = Enum.GetValues(typeof(GroupType)).Cast().ToArray(); + + foreach (var step in _randomizerSteps) + { + var variantsCount = character.GetVariantsCountInGroup(step.GroupType); + + var stepResult = step.Process(variantsCount, groups); + + groups = stepResult.AvailableGroups; + character.PickGroup(step.GroupType, stepResult.Index, stepResult.IsActive); + } + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/RandomCharacterGenerator.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/RandomCharacterGenerator.cs.meta new file mode 100644 index 0000000..6862222 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/RandomCharacterGenerator.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 90f894f9feef4ac9997c9a681333e648 +timeCreated: 1736350992 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/RandomCharacterGenerator.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/StepResult.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/StepResult.cs new file mode 100644 index 0000000..b676f4e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/StepResult.cs @@ -0,0 +1,16 @@ +namespace CharacterCustomizationTool.Editor.Randomizer +{ + public class StepResult + { + public int Index { get; } + public bool IsActive { get; } + public GroupType[] AvailableGroups { get; } + + public StepResult(int index, bool isActive, GroupType[] availableGroups) + { + Index = index; + IsActive = isActive; + AvailableGroups = availableGroups; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/StepResult.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/StepResult.cs.meta new file mode 100644 index 0000000..90b2690 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/StepResult.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: cd07b1e4f88a4af696f5614472c15f13 +timeCreated: 1736972446 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/StepResult.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps.meta new file mode 100644 index 0000000..4788e02 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 13350f8e69d34f0ab019a0b7ce981866 +timeCreated: 1736674860 \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/IRandomizerStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/IRandomizerStep.cs new file mode 100644 index 0000000..e4fd282 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/IRandomizerStep.cs @@ -0,0 +1,9 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps +{ + public interface IRandomizerStep + { + GroupType GroupType { get; } + + StepResult Process(int count, GroupType[] groups); + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/IRandomizerStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/IRandomizerStep.cs.meta new file mode 100644 index 0000000..f455ac3 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/IRandomizerStep.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: c471afe9dd44d074f99841183c4cf278 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/IRandomizerStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl.meta new file mode 100644 index 0000000..980ac12 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: fe8f5cfcc1874a58b1af97c477b086f4 +timeCreated: 1736674865 \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/BodyStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/BodyStep.cs new file mode 100644 index 0000000..40e71c2 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/BodyStep.cs @@ -0,0 +1,17 @@ +using System.Linq; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class BodyStep : IRandomizerStep + { + public GroupType GroupType => GroupType.Body; + + public StepResult Process(int count, GroupType[] groups) + { + var newGroups = groups.Where(g => g != GroupType.Body).ToArray(); + + return new StepResult(Random.Range(0, count), true, newGroups); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/BodyStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/BodyStep.cs.meta new file mode 100644 index 0000000..a1f2260 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/BodyStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: da95423e69334f7e96f7fe9f3db0ef5f +timeCreated: 1736599151 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/BodyStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/CostumesStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/CostumesStep.cs new file mode 100644 index 0000000..3363db6 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/CostumesStep.cs @@ -0,0 +1,22 @@ +using System; +using Random = UnityEngine.Random; + +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class CostumesStep : StepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.Costumes; + + protected override float Probability => .2f; + + public override StepResult Process(int count, GroupType[] groups) + { + if (Random.value > Probability) + { + return new StepResult(0, false, RemoveSelf(groups)); + } + + return new StepResult(Random.Range(0, count), true, Array.Empty()); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/CostumesStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/CostumesStep.cs.meta new file mode 100644 index 0000000..0d9fa03 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/CostumesStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f1cd3103d9d741ff9aed903f55545928 +timeCreated: 1736674915 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/CostumesStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceAccessoriesStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceAccessoriesStep.cs new file mode 100644 index 0000000..9a82590 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceAccessoriesStep.cs @@ -0,0 +1,16 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class FaceAccessoriesStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.FaceAccessories; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.Glasses, + GroupType.Shoes, + GroupType.HairstyleSingle, + GroupType.Hairstyle, + GroupType.Gloves, + }; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceAccessoriesStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceAccessoriesStep.cs.meta new file mode 100644 index 0000000..8988f37 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceAccessoriesStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f44888e8146b4a57b11907b4ef3f6d22 +timeCreated: 1736681858 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceAccessoriesStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceStep.cs new file mode 100644 index 0000000..8e73ff9 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceStep.cs @@ -0,0 +1,17 @@ +using System.Linq; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class FaceStep : IRandomizerStep + { + public GroupType GroupType => GroupType.Faces; + + public StepResult Process(int count, GroupType[] groups) + { + var newGroups = groups.Where(g => g != GroupType.Faces).ToArray(); + + return new StepResult(Random.Range(0, count), true, newGroups); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceStep.cs.meta new file mode 100644 index 0000000..d6806a2 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9d3b7299fb554507b6a7aa4398dd60db +timeCreated: 1736350792 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/FaceStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlassesStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlassesStep.cs new file mode 100644 index 0000000..d9eb861 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlassesStep.cs @@ -0,0 +1,15 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class GlassesStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.Glasses; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.Shoes, + GroupType.HairstyleSingle, + GroupType.Hairstyle, + GroupType.Gloves, + }; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlassesStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlassesStep.cs.meta new file mode 100644 index 0000000..8a0448b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlassesStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 42b88327cc4b4059a9900d7451f2b1ad +timeCreated: 1736681911 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlassesStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlovesStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlovesStep.cs new file mode 100644 index 0000000..824bde4 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlovesStep.cs @@ -0,0 +1,11 @@ +using System; + +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class GlovesStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.Gloves; + + protected override GroupType[] CompatibleGroups => Array.Empty(); + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlovesStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlovesStep.cs.meta new file mode 100644 index 0000000..daa3c60 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlovesStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 369aa049cb934312955bdfbcbfb0cf6c +timeCreated: 1736682133 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/GlovesStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleSingleStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleSingleStep.cs new file mode 100644 index 0000000..0f3cddc --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleSingleStep.cs @@ -0,0 +1,12 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class HairstyleSingleStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.HairstyleSingle; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.Gloves, + }; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleSingleStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleSingleStep.cs.meta new file mode 100644 index 0000000..aefca4c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleSingleStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4dbf3a338f2e4959976c21ad98480d91 +timeCreated: 1736682038 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleSingleStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleStep.cs new file mode 100644 index 0000000..ae04b47 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleStep.cs @@ -0,0 +1,12 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class HairstyleStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.Hairstyle; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.Gloves, + }; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleStep.cs.meta new file mode 100644 index 0000000..caea008 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: bd5070c46d6e4eba9378623e5ab9b2b0 +timeCreated: 1736682092 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HairstyleStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatSingleStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatSingleStep.cs new file mode 100644 index 0000000..15eccfb --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatSingleStep.cs @@ -0,0 +1,14 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class HatSingleStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.HatSingle; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.FaceAccessories, + GroupType.Shoes, + GroupType.Gloves, + }; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatSingleStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatSingleStep.cs.meta new file mode 100644 index 0000000..54f1bd0 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatSingleStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7b225042b1974444979dbc9e3040da4a +timeCreated: 1736681763 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatSingleStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatStep.cs new file mode 100644 index 0000000..6044e22 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatStep.cs @@ -0,0 +1,15 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class HatStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.Hat; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.FaceAccessories, + GroupType.Glasses, + GroupType.Shoes, + GroupType.Gloves, + }; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatStep.cs.meta new file mode 100644 index 0000000..e810c13 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 030380cece0448e394e70c7c7022f2a8 +timeCreated: 1736681665 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/HatStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/MascotsStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/MascotsStep.cs new file mode 100644 index 0000000..02e14d8 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/MascotsStep.cs @@ -0,0 +1,17 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class MascotsStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.Mascots; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.Pants, + GroupType.Shorts, + GroupType.FaceAccessories, + GroupType.Glasses, + GroupType.Shoes, + GroupType.Gloves, + }; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/MascotsStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/MascotsStep.cs.meta new file mode 100644 index 0000000..b73da4c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/MascotsStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 793ebe74e68a4bf0afaa3eb68e2387c9 +timeCreated: 1736676749 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/MascotsStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutfitStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutfitStep.cs new file mode 100644 index 0000000..5ff16e2 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutfitStep.cs @@ -0,0 +1,19 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class OutfitStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.Outfit; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.Hat, + GroupType.HatSingle, + GroupType.FaceAccessories, + GroupType.Glasses, + GroupType.Shoes, + GroupType.HairstyleSingle, + GroupType.Hairstyle, + GroupType.Gloves, + }; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutfitStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutfitStep.cs.meta new file mode 100644 index 0000000..ebdfebb --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutfitStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a9f1c016b047465b971475eddd6d9e6f +timeCreated: 1736677982 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutfitStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutwearStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutwearStep.cs new file mode 100644 index 0000000..1bfce57 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutwearStep.cs @@ -0,0 +1,21 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class OutwearStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.Outwear; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.Pants, + GroupType.Shorts, + GroupType.Hat, + GroupType.HatSingle, + GroupType.FaceAccessories, + GroupType.Glasses, + GroupType.Shoes, + GroupType.HairstyleSingle, + GroupType.Hairstyle, + GroupType.Gloves, + }; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutwearStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutwearStep.cs.meta new file mode 100644 index 0000000..c209108 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutwearStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 74f9991652aa46348c881d0e7908b073 +timeCreated: 1736678464 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/OutwearStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/PantsStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/PantsStep.cs new file mode 100644 index 0000000..0b1b53a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/PantsStep.cs @@ -0,0 +1,19 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class PantsStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.Pants; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.Hat, + GroupType.HatSingle, + GroupType.FaceAccessories, + GroupType.Glasses, + GroupType.Shoes, + GroupType.HairstyleSingle, + GroupType.Hairstyle, + GroupType.Gloves, + }; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/PantsStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/PantsStep.cs.meta new file mode 100644 index 0000000..a4d714c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/PantsStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2967f0c46bdd4c818e3a8a951b2652a2 +timeCreated: 1736678855 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/PantsStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShoesStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShoesStep.cs new file mode 100644 index 0000000..bd77c95 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShoesStep.cs @@ -0,0 +1,14 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class ShoesStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.Shoes; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.HairstyleSingle, + GroupType.Hairstyle, + GroupType.Gloves, + }; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShoesStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShoesStep.cs.meta new file mode 100644 index 0000000..263c0cb --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShoesStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 10cfdcedf32c4647a6b2f6c62d9529c4 +timeCreated: 1736681964 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShoesStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShortsStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShortsStep.cs new file mode 100644 index 0000000..7346e01 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShortsStep.cs @@ -0,0 +1,39 @@ +using System.Linq; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class ShortsStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.Shorts; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.Hat, + GroupType.HatSingle, + GroupType.FaceAccessories, + GroupType.Glasses, + GroupType.Shoes, + GroupType.HairstyleSingle, + GroupType.Hairstyle, + GroupType.Gloves, + }; + + public override StepResult Process(int count, GroupType[] groups) + { + var cannotProcess = !groups.Contains(GroupType); + groups = RemoveSelf(groups); + + if (cannotProcess || Random.value > Probability) + { + return new StepResult(0, false, groups); + } + + var newGroups = groups.Where(g => CompatibleGroups.Contains(g)).ToArray(); + var finalGroups = newGroups.ToList(); + finalGroups.Add(GroupType.Socks); + + return new StepResult(Random.Range(0, count), true, finalGroups.ToArray()); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShortsStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShortsStep.cs.meta new file mode 100644 index 0000000..f45cb6b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShortsStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2b73523352e7483bbe87c1ebc732a1ff +timeCreated: 1736679843 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/ShortsStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SlotStepBase.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SlotStepBase.cs new file mode 100644 index 0000000..fe52282 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SlotStepBase.cs @@ -0,0 +1,25 @@ +using System.Linq; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public abstract class SlotStepBase : StepBase, IRandomizerStep + { + protected abstract GroupType[] CompatibleGroups { get; } + + public override StepResult Process(int count, GroupType[] groups) + { + var cannotProcess = !groups.Contains(GroupType); + groups = RemoveSelf(groups); + + if (cannotProcess || Random.value > Probability) + { + return new StepResult(0, false, groups); + } + + var newGroups = groups.Where(g => CompatibleGroups.Contains(g)).ToArray(); + + return new StepResult(Random.Range(0, count), true, newGroups); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SlotStepBase.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SlotStepBase.cs.meta new file mode 100644 index 0000000..0a2ee25 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SlotStepBase.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c680eeb9d4824f80853cbb97cd228aab +timeCreated: 1736678645 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SlotStepBase.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SocksStep.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SocksStep.cs new file mode 100644 index 0000000..0442a65 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SocksStep.cs @@ -0,0 +1,21 @@ +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public class SocksStep : SlotStepBase, IRandomizerStep + { + public override GroupType GroupType => GroupType.Socks; + + protected override float Probability => .5f; + + protected override GroupType[] CompatibleGroups => new[] + { + GroupType.Hat, + GroupType.HatSingle, + GroupType.FaceAccessories, + GroupType.Glasses, + GroupType.Shoes, + GroupType.HairstyleSingle, + GroupType.Hairstyle, + GroupType.Gloves, + }; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SocksStep.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SocksStep.cs.meta new file mode 100644 index 0000000..769a49e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SocksStep.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 246406a9e2694ee199d27d33b1a5abd2 +timeCreated: 1736681519 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/SocksStep.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/StepBase.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/StepBase.cs new file mode 100644 index 0000000..1973132 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/StepBase.cs @@ -0,0 +1,18 @@ +using System.Linq; + +namespace CharacterCustomizationTool.Editor.Randomizer.Steps.Impl +{ + public abstract class StepBase : IRandomizerStep + { + public abstract GroupType GroupType { get; } + + protected virtual float Probability => .35f; + + public abstract StepResult Process(int count, GroupType[] groups); + + protected GroupType[] RemoveSelf(GroupType[] groups) + { + return groups.Where(g => g != GroupType).ToArray(); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/StepBase.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/StepBase.cs.meta new file mode 100644 index 0000000..25ebbec --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/StepBase.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3e2f5ffd08ce455b937d13c7d07ece65 +timeCreated: 1736685991 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/Randomizer/Steps/Impl/StepBase.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SavedSlot.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SavedSlot.cs new file mode 100644 index 0000000..21c0877 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SavedSlot.cs @@ -0,0 +1,16 @@ +namespace CharacterCustomizationTool.Editor +{ + public readonly struct SavedSlot + { + public readonly SlotType SlotType; + public readonly bool IsEnabled; + public readonly int VariantIndex; + + public SavedSlot(SlotType slotType, bool isEnabled, int variantIndex) + { + SlotType = slotType; + IsEnabled = isEnabled; + VariantIndex = variantIndex; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SavedSlot.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SavedSlot.cs.meta new file mode 100644 index 0000000..6e32dbc --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SavedSlot.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d8a7d8c640f54e72ad3e5c5ead02249b +timeCreated: 1673628957 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SavedSlot.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotLibrary.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotLibrary.cs new file mode 100644 index 0000000..5af8952 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotLibrary.cs @@ -0,0 +1,39 @@ +using System; +using UnityEngine; + +namespace CharacterCustomizationTool.Editor +{ + [CreateAssetMenu(menuName = "Character Customization Tool/Slot Library", fileName = "SlotLibrary")] + public class SlotLibrary : ScriptableObject + { + public FullBodyEntry[] FullBodyCostumes; + public SlotEntry[] Slots; + } + + [Serializable] + public class FullBodyEntry + { + public FullBodySlotEntry[] Slots; + } + + [Serializable] + public class FullBodySlotEntry + { + public SlotType Type; + public GameObject GameObject; + } + + [Serializable] + public class SlotEntry + { + public SlotType Type; + public SlotGroupEntry[] Groups; + } + + [Serializable] + public class SlotGroupEntry + { + public GroupType Type; + public GameObject[] Variants; + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotLibrary.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotLibrary.cs.meta new file mode 100644 index 0000000..3ef0dab --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotLibrary.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a16f9f235a414383a767c55ae53046fb +timeCreated: 1735210254 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotLibrary.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotName.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotName.cs new file mode 100644 index 0000000..3e8857d --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotName.cs @@ -0,0 +1,27 @@ +using System.Linq; +using CharacterCustomizationTool.Extensions; + +namespace CharacterCustomizationTool.Editor +{ + public class SlotName + { + private readonly string[] _nameSections; + + public SlotName(string name) + { + _nameSections = SplitName(name); + } + + public override string ToString() + { + return _nameSections.Aggregate((p, c) => p + c.ToCapital()); + } + + private static string[] SplitName(string name) + { + var nameParts = name.Split('_', '-'); + + return nameParts; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotName.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotName.cs.meta new file mode 100644 index 0000000..6e700c2 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotName.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 1ac16c79e660467b936803ef0169efdd +timeCreated: 1733399236 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotName.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotSorter.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotSorter.cs new file mode 100644 index 0000000..a460b18 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotSorter.cs @@ -0,0 +1,36 @@ +using System.Collections.Generic; +using System.Linq; +using CharacterCustomizationTool.Editor.Character; + +namespace CharacterCustomizationTool.Editor +{ + public static class SlotSorter + { + private static readonly List SlotTypesInOrder = new() + { + SlotType.Body, + SlotType.Faces, + SlotType.FullBody, + SlotType.Hat, + SlotType.Hairstyle, + SlotType.Mustache, + SlotType.Glasses, + SlotType.Accessories, + SlotType.Outerwear, + SlotType.TShirt, + SlotType.Gloves, + SlotType.Pants, + SlotType.Shoes, + }; + + public static IEnumerable Sort(IEnumerable slots) + { + var sortedSlots = SlotTypesInOrder + .Select(type => slots.FirstOrDefault(p => p.IsOfType(type))) + .Where(part => part != null) + .ToList(); + + return sortedSlots; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotSorter.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotSorter.cs.meta new file mode 100644 index 0000000..c712e75 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotSorter.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 946651c2f7d7440db7689bd355373b11 +timeCreated: 1735207107 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotSorter.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotType.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotType.cs new file mode 100644 index 0000000..b3adc42 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotType.cs @@ -0,0 +1,19 @@ +namespace CharacterCustomizationTool.Editor +{ + public enum SlotType + { + Accessories, + Body, + Faces, + FullBody, + Glasses, + Gloves, + Hairstyle, + Hat, + Mustache, + Outerwear, + Pants, + Shoes, + TShirt, + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotType.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotType.cs.meta new file mode 100644 index 0000000..1a2184b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotType.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: ca579a8e35fd3fa43b89069d3af55f56 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotType.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation.meta new file mode 100644 index 0000000..e914c49 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: c8907bb7b5054f0f965de24f526db4b3 +timeCreated: 1736328361 \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/FullBodyToggledRule.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/FullBodyToggledRule.cs new file mode 100644 index 0000000..5eb1c75 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/FullBodyToggledRule.cs @@ -0,0 +1,28 @@ +using System.Linq; +using CharacterCustomizationTool.Editor.Character; + +namespace CharacterCustomizationTool.Editor.SlotValidation +{ + public class FullBodyToggledRule : ISlotValidationRules + { + private readonly SlotType[] _slotExceptions = + { + SlotType.FullBody, + SlotType.Body, + SlotType.Faces, + }; + + public void Validate(CustomizableCharacter character, SlotType type, bool isToggled) + { + if (type != SlotType.FullBody || !isToggled) + { + return; + } + + foreach (var slot in character.Slots.Where(s => !_slotExceptions.Contains(s.Type))) + { + slot.Toggle(false); + } + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/FullBodyToggledRule.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/FullBodyToggledRule.cs.meta new file mode 100644 index 0000000..54c74b0 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/FullBodyToggledRule.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e8892e8bc6414128bef2a15222ef42e5 +timeCreated: 1736328372 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/FullBodyToggledRule.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/ISlotValidationRules.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/ISlotValidationRules.cs new file mode 100644 index 0000000..02abc5b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/ISlotValidationRules.cs @@ -0,0 +1,9 @@ +using CharacterCustomizationTool.Editor.Character; + +namespace CharacterCustomizationTool.Editor.SlotValidation +{ + public interface ISlotValidationRules + { + void Validate(CustomizableCharacter character, SlotType type, bool isToggled); + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/ISlotValidationRules.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/ISlotValidationRules.cs.meta new file mode 100644 index 0000000..ea2e596 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/ISlotValidationRules.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 113b8583712d407b82fec0990f671ae0 +timeCreated: 1736328556 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/ISlotValidationRules.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotToggledRule.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotToggledRule.cs new file mode 100644 index 0000000..91235ce --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotToggledRule.cs @@ -0,0 +1,25 @@ +using System.Linq; +using CharacterCustomizationTool.Editor.Character; + +namespace CharacterCustomizationTool.Editor.SlotValidation +{ + public class SlotToggledRule : ISlotValidationRules + { + private readonly SlotType[] _slotExceptions = + { + SlotType.FullBody, + SlotType.Body, + SlotType.Faces, + }; + + public void Validate(CustomizableCharacter character, SlotType type, bool isToggled) + { + if (_slotExceptions.Contains(type) || !isToggled) + { + return; + } + + character.Toggle(SlotType.FullBody, false); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotToggledRule.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotToggledRule.cs.meta new file mode 100644 index 0000000..0480bf4 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotToggledRule.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: dccaf01db21644c6b99b0de86d77381e +timeCreated: 1736329298 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotToggledRule.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotValidator.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotValidator.cs new file mode 100644 index 0000000..b1e0046 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotValidator.cs @@ -0,0 +1,21 @@ +using CharacterCustomizationTool.Editor.Character; + +namespace CharacterCustomizationTool.Editor.SlotValidation +{ + public class SlotValidator + { + private readonly ISlotValidationRules[] _slotValidationRules = + { + new FullBodyToggledRule(), + new SlotToggledRule(), + }; + + public void Validate(CustomizableCharacter character, SlotType type, bool isToggled) + { + foreach (var rule in _slotValidationRules) + { + rule.Validate(character, type, isToggled); + } + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotValidator.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotValidator.cs.meta new file mode 100644 index 0000000..881b8bf --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotValidator.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 59d0e64fe5d64ef2b950220f1d6fac4b +timeCreated: 1736972000 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Editor/SlotValidation/SlotValidator.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Extensions.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Extensions.meta new file mode 100644 index 0000000..5b33147 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Extensions.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 46f6dea928c34443a4e36826a6fb09cb +timeCreated: 1733505909 \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Extensions/StringExtensions.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/Extensions/StringExtensions.cs new file mode 100644 index 0000000..355fd9b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Extensions/StringExtensions.cs @@ -0,0 +1,17 @@ +using System; + +namespace CharacterCustomizationTool.Extensions +{ + public static class StringExtensions + { + public static string ToCapital(this string input) + { + return input switch + { + null => throw new ArgumentNullException(nameof(input)), + "" => throw new ArgumentException($"{nameof(input)} cannot be empty", nameof(input)), + _ => input[0].ToString().ToUpper() + input[1..] + }; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/Extensions/StringExtensions.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/Extensions/StringExtensions.cs.meta new file mode 100644 index 0000000..a22375b --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/Extensions/StringExtensions.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7f24b047b9794875916aec6705d2cf51 +timeCreated: 1733505919 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/Extensions/StringExtensions.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement.meta new file mode 100644 index 0000000..0632b5c --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: a07d0cfa9dec411f8f24674fd681a36a +timeCreated: 1733506199 \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceMesh.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceMesh.cs new file mode 100644 index 0000000..ef49de9 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceMesh.cs @@ -0,0 +1,19 @@ +using System; +using CharacterCustomizationTool.Extensions; +using UnityEngine; + +namespace CharacterCustomizationTool.FaceManagement +{ + [Serializable] + public class FaceMesh + { + public FaceType Type; + public Mesh Mesh; + + public FaceMesh(Mesh mesh) + { + Type = Enum.Parse(mesh.name.Split("_")[2].ToCapital()); + Mesh = mesh; + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceMesh.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceMesh.cs.meta new file mode 100644 index 0000000..e324ddf --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceMesh.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 61031a315ae149fd92a6cbff53bb99a8 +timeCreated: 1734350612 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceMesh.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FacePicker.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FacePicker.cs new file mode 100644 index 0000000..31e14b6 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FacePicker.cs @@ -0,0 +1,58 @@ +using System; +using System.Linq; +using CharacterCustomizationTool.Extensions; +using UnityEngine; + +namespace CharacterCustomizationTool.FaceManagement +{ + public class FacePicker : MonoBehaviour + { + [SerializeField, HideInInspector] + private FaceMesh[] _faceMeshes; + + private SkinnedMeshRenderer _faceRenderer; + + public FaceType ActiveFace => Enum.Parse(_faceRenderer.sharedMesh.name.Split("_")[2].ToCapital()); + + public void SetFaces(Mesh[] faceMeshes) + { + _faceMeshes = faceMeshes.Select(m => new FaceMesh(m)).ToArray(); + } + + public bool HasFace(FaceType face) + { + var faceMesh = _faceMeshes.FirstOrDefault(m => m.Type == face); + + return faceMesh != null; + } + + public void PickFace(FaceType faceType) + { + var faceMesh = _faceMeshes.FirstOrDefault(m => m.Type == faceType); + if (faceMesh == null) + { + throw new Exception($"Face not found: {faceType.ToString()}."); + } + + _faceRenderer.sharedMesh = faceMesh.Mesh; + } + + private void Start() + { + ValidateFields(); + } + + private void OnValidate() + { + ValidateFields(); + } + + private void ValidateFields() + { + _faceRenderer = transform + .Cast() + .First(t => t.name.StartsWith("Face")) + .GetComponent(); + } + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FacePicker.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FacePicker.cs.meta new file mode 100644 index 0000000..e94d19a --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FacePicker.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: a69a902533bc5af478efff13cc47894f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FacePicker.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceType.cs b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceType.cs new file mode 100644 index 0000000..9289349 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceType.cs @@ -0,0 +1,18 @@ +namespace CharacterCustomizationTool.FaceManagement +{ + public enum FaceType + { + Anger, + Angry, + Compassion, + Confuse, + Evil, + Happy, + Impatience, + Madness, + Neutral, + Sad, + Surprised, + Usual, + } +} \ No newline at end of file diff --git a/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceType.cs.meta b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceType.cs.meta new file mode 100644 index 0000000..bf1f612 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceType.cs.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: de89b91bb3f34946abf58874cd21d7fd +timeCreated: 1733506211 +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Scripts/FaceManagement/FaceType.cs + uploadId: 780839 diff --git a/Assets/ithappy/Creative_Characters_FREE/Textures.meta b/Assets/ithappy/Creative_Characters_FREE/Textures.meta new file mode 100644 index 0000000..1d4f25e --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Textures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d250840d52eb2e4d9aae7a94b421334 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ithappy/Creative_Characters_FREE/Textures/Textures.png b/Assets/ithappy/Creative_Characters_FREE/Textures/Textures.png new file mode 100644 index 0000000..7711c93 Binary files /dev/null and b/Assets/ithappy/Creative_Characters_FREE/Textures/Textures.png differ diff --git a/Assets/ithappy/Creative_Characters_FREE/Textures/Textures.png.meta b/Assets/ithappy/Creative_Characters_FREE/Textures/Textures.png.meta new file mode 100644 index 0000000..3117275 --- /dev/null +++ b/Assets/ithappy/Creative_Characters_FREE/Textures/Textures.png.meta @@ -0,0 +1,118 @@ +fileFormatVersion: 2 +guid: 601cef6ffead6614a8abd4f653eaaef5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 304841 + packageName: Creative Characters FREE - Animated Low Poly 3D Models + packageVersion: 2.2 + assetPath: Assets/ithappy/Creative_Characters_FREE/Textures/Textures.png + uploadId: 780839 diff --git a/OVRAssetBundles/OVRMasterBundle/OVRMasterBundle b/OVRAssetBundles/OVRMasterBundle/OVRMasterBundle new file mode 100644 index 0000000..c22e68a Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/OVRMasterBundle differ diff --git a/OVRAssetBundles/OVRMasterBundle/OVRMasterBundle.manifest b/OVRAssetBundles/OVRMasterBundle/OVRMasterBundle.manifest new file mode 100644 index 0000000..d687f3e --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/OVRMasterBundle.manifest @@ -0,0 +1,102 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 646272956 +HashAppended: 0 +AssetBundleManifest: + AssetBundleInfos: + Info_0: + Name: asset_resources + Dependencies: + Dependency_0: asset_shader0 + Dependency_1: asset_ttf0 + Dependency_2: asset_exr0 + Info_1: + Name: scene_interface test personnage + Dependencies: + Dependency_0: asset_resources + Dependency_1: asset_shader0 + Dependency_2: asset_prefab0 + Dependency_3: asset_prefab1 + Dependency_4: asset_controller0 + Dependency_5: asset_fbx0 + Dependency_6: asset_mat0 + Dependency_7: asset_mat1 + Dependency_8: asset_wav0 + Dependency_9: asset_asset0 + Dependency_10: asset_png0 + Dependency_11: asset_tga0 + Dependency_12: asset_exr0 + Dependency_13: asset_shadergraph0 + Info_2: + Name: asset_shader0 + Dependencies: {} + Info_3: + Name: asset_prefab0 + Dependencies: + Dependency_0: asset_prefab1 + Dependency_1: asset_controller0 + Dependency_2: asset_fbx0 + Dependency_3: asset_mat0 + Dependency_4: asset_wav0 + Dependency_5: asset_asset0 + Dependency_6: asset_png0 + Info_4: + Name: asset_prefab1 + Dependencies: + Dependency_0: asset_resources + Dependency_1: asset_controller0 + Dependency_2: asset_fbx0 + Dependency_3: asset_mat0 + Dependency_4: asset_wav0 + Dependency_5: asset_asset0 + Dependency_6: asset_png0 + Info_5: + Name: asset_controller0 + Dependencies: + Dependency_0: asset_fbx0 + Dependency_1: asset_anim0 + Info_6: + Name: asset_fbx0 + Dependencies: + Dependency_0: asset_shader0 + Dependency_1: asset_mat0 + Dependency_2: asset_png0 + Dependency_3: asset_tga0 + Dependency_4: asset_shadergraph0 + Info_7: + Name: asset_mat0 + Dependencies: + Dependency_0: asset_shader0 + Dependency_1: asset_png0 + Dependency_2: asset_tga0 + Info_8: + Name: asset_mat1 + Dependencies: + Dependency_0: asset_shader0 + Info_9: + Name: asset_wav0 + Dependencies: {} + Info_10: + Name: asset_asset0 + Dependencies: {} + Info_11: + Name: asset_png0 + Dependencies: {} + Info_12: + Name: asset_tga0 + Dependencies: {} + Info_13: + Name: asset_psd0 + Dependencies: {} + Info_14: + Name: asset_ttf0 + Dependencies: {} + Info_15: + Name: asset_exr0 + Dependencies: {} + Info_16: + Name: asset_shadergraph0 + Dependencies: {} + Info_17: + Name: asset_anim0 + Dependencies: {} diff --git a/OVRAssetBundles/OVRMasterBundle/asset_anim0 b/OVRAssetBundles/OVRMasterBundle/asset_anim0 new file mode 100644 index 0000000..6180863 Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_anim0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_anim0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_anim0.manifest new file mode 100644 index 0000000..696e660 --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_anim0.manifest @@ -0,0 +1,21 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 4109329636 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 8aa3e63232c6a4fdf056513a9591d65d + TypeTreeHash: + serializedVersion: 2 + Hash: 958b54fb77cc0a35b3bf79f07d0e96ea + IncrementalBuildHash: + serializedVersion: 2 + Hash: 278e89fb8e15e78e8c172a1f7cb237c0 +HashAppended: 0 +ClassTypes: +- Class: 74 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Packages/com.meta.xr.sdk.interaction/Runtime/Animations/Locomotion/SelectHospot.anim +Dependencies: [] diff --git a/OVRAssetBundles/OVRMasterBundle/asset_asset0 b/OVRAssetBundles/OVRMasterBundle/asset_asset0 new file mode 100644 index 0000000..fe8b6bf Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_asset0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_asset0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_asset0.manifest new file mode 100644 index 0000000..6de55ed --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_asset0.manifest @@ -0,0 +1,67 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 1270468116 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 4374e9a263d4be31124056257ff8b308 + TypeTreeHash: + serializedVersion: 2 + Hash: bc2069a2059b0923840b289dae768b97 + IncrementalBuildHash: + serializedVersion: 2 + Hash: 6a5152eb004261604538d52d62b55002 +HashAppended: 0 +ClassTypes: +- Class: 114 + Script: {fileID: 11500000, guid: c5af6ab9d1bd4a47970ad151090281f3, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4cfe1df7ed391a24fbe2a2d275e81b06, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} +- Class: 115 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.PoseDetection.FingerFeatureStateThreshold +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.PoseDetection.FingerFeatureThresholds +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.PoseDetection.ShapeRecognizer/FingerFeatureConfig +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.PoseDetection.ShapeRecognizer/FingerFeatureConfigList +- AssemblyName: Unity.RenderPipelines.Core.Runtime + ClassName: UnityEngine.Rendering.BoolParameter +- AssemblyName: Unity.RenderPipelines.Core.Runtime + ClassName: UnityEngine.Rendering.ClampedFloatParameter +- AssemblyName: Unity.RenderPipelines.Core.Runtime + ClassName: UnityEngine.Rendering.ClampedIntParameter +- AssemblyName: Unity.RenderPipelines.Core.Runtime + ClassName: UnityEngine.Rendering.ColorParameter +- AssemblyName: Unity.RenderPipelines.Core.Runtime + ClassName: UnityEngine.Rendering.MinFloatParameter +- AssemblyName: Unity.RenderPipelines.Core.Runtime + ClassName: UnityEngine.Rendering.TextureParameter +- AssemblyName: Unity.RenderPipelines.Universal.Runtime + ClassName: UnityEngine.Rendering.Universal.DownscaleParameter +- AssemblyName: Unity.RenderPipelines.Universal.Runtime + ClassName: UnityEngine.Rendering.Universal.HDRACESPresetParameter +- AssemblyName: Unity.RenderPipelines.Universal.Runtime + ClassName: UnityEngine.Rendering.Universal.NeutralRangeReductionModeParameter +- AssemblyName: Unity.RenderPipelines.Universal.Runtime + ClassName: UnityEngine.Rendering.Universal.TonemappingModeParameter +Assets: +- Packages/com.meta.xr.sdk.interaction/Runtime/DefaultSettings/Locomotion/LocomotionThumbFeatureStateThresholds.asset +- Packages/com.meta.xr.sdk.interaction/Runtime/DefaultSettings/PoseDetection/DefaultThumbFeatureStateThresholds.asset +- Packages/com.meta.xr.sdk.interaction/Runtime/DefaultSettings/Locomotion/LShape.asset +- Packages/com.meta.xr.sdk.interaction/Runtime/DefaultSettings/Locomotion/RelaxedCurl.asset +- Packages/com.meta.xr.sdk.interaction/Runtime/DefaultSettings/Locomotion/ExitMicroGesture.asset +- Assets/Scenes/Interface test personnage/GlobalVolumeProfile.asset +- Packages/com.meta.xr.sdk.interaction/Runtime/DefaultSettings/PoseDetection/DefaultFingerFeatureStateThresholds.asset +- Packages/com.meta.xr.sdk.interaction/Runtime/DefaultSettings/Locomotion/LocomotionMiddleFeatureStateThresholds.asset +- Packages/com.meta.xr.sdk.interaction/Runtime/DefaultSettings/Locomotion/LocomotionIndexFeatureStateThresholds.asset +Dependencies: [] diff --git a/OVRAssetBundles/OVRMasterBundle/asset_controller0 b/OVRAssetBundles/OVRMasterBundle/asset_controller0 new file mode 100644 index 0000000..cf2a699 Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_controller0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_controller0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_controller0.manifest new file mode 100644 index 0000000..e68adf3 --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_controller0.manifest @@ -0,0 +1,40 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 2517392005 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 98bda90b2ca8e04a2847f662a2a30ec0 + TypeTreeHash: + serializedVersion: 2 + Hash: ee737d6afc00fec93c1987e485ffa6bd + IncrementalBuildHash: + serializedVersion: 2 + Hash: c6c8f8b262abaf563c106b50a38ad8bb +HashAppended: 0 +ClassTypes: +- Class: 74 + Script: {instanceID: 0} +- Class: 91 + Script: {instanceID: 0} +- Class: 115 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSLeftAnimation.controller +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPlus/Animation/MetaQuestTouchPlusLeftAnimation.controller +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2LeftAnimation.controller +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPro/Animation/MetaQuestTouchProRightAnimation.controller +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForRift/Animation/OculusTouchRiftRightAnimation.controller +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSRightAnimation.controller +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2RightAnimation.controller +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Objects/UISet/Animations/Quest_Dark/PrimaryButton_Dark.controller +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPro/Animation/MetaQuestTouchProLeftAnimation.controller +- Packages/com.meta.xr.sdk.interaction/Runtime/Animations/Locomotion/TeleportHotspot.controller +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPlus/Animation/MetaQuestTouchPlusRightAnimation.controller +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForRift/Animation/OculusTouchRiftLeftAnimation.controller +Dependencies: +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_anim0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_fbx0 diff --git a/OVRAssetBundles/OVRMasterBundle/asset_exr0 b/OVRAssetBundles/OVRMasterBundle/asset_exr0 new file mode 100644 index 0000000..0b207ab Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_exr0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_exr0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_exr0.manifest new file mode 100644 index 0000000..0bc1c30 --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_exr0.manifest @@ -0,0 +1,26 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 1328859943 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 41a5f0f9a4fc2c1e88effe64c82e0706 + TypeTreeHash: + serializedVersion: 2 + Hash: 8a2495a88de0d3de1e83438e6f586662 + IncrementalBuildHash: + serializedVersion: 2 + Hash: 05c7174b1929253b8743aafc858a0a4d +HashAppended: 0 +ClassTypes: +- Class: 28 + Script: {instanceID: 0} +- Class: 89 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Assets/Scenes/Interface test personnage/Lightmap-0_comp_light.exr +- Assets/Scenes/Interface test personnage/ReflectionProbe-1.exr +- Assets/Scenes/Interface test personnage/ReflectionProbe-0.exr +- Assets/Images/qwantani_dusk_2_puresky_8k.exr +Dependencies: [] diff --git a/OVRAssetBundles/OVRMasterBundle/asset_fbx0 b/OVRAssetBundles/OVRMasterBundle/asset_fbx0 new file mode 100644 index 0000000..9cb781f Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_fbx0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_fbx0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_fbx0.manifest new file mode 100644 index 0000000..95691e6 --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_fbx0.manifest @@ -0,0 +1,78 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 1252094150 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 3d5205b1d6811ffa3949e892eec8214f + TypeTreeHash: + serializedVersion: 2 + Hash: 3d2c39ca734f68b3e568c3d30a78b1c2 + IncrementalBuildHash: + serializedVersion: 2 + Hash: 38972d99bce9ccbe981b8671695e8221 +HashAppended: 0 +ClassTypes: +- Class: 1 + Script: {instanceID: 0} +- Class: 4 + Script: {instanceID: 0} +- Class: 21 + Script: {instanceID: 0} +- Class: 23 + Script: {instanceID: 0} +- Class: 28 + Script: {instanceID: 0} +- Class: 33 + Script: {instanceID: 0} +- Class: 43 + Script: {instanceID: 0} +- Class: 48 + Script: {instanceID: 0} +- Class: 74 + Script: {instanceID: 0} +- Class: 90 + Script: {instanceID: 0} +- Class: 95 + Script: {instanceID: 0} +- Class: 137 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Packages/com.meta.xr.sdk.interaction/Runtime/Meshes/OVRHand_R.fbx +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPro/MetaQuestTouchPro_Left.fbx +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForQuestAndRiftS/Materials/OculusTouchForQuestAndRiftS_Material.fbx +- Packages/com.meta.xr.sdk.interaction/Runtime/Meshes/OVRHand_L.fbx +- Packages/com.meta.xr.sdk.interaction/Runtime/Meshes/Locomotion/LocomotionPointer.fbx +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPlus/MetaQuestTouchPlus_Left.fbx +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_MAT.fbx +- Packages/com.meta.xr.sdk.interaction/Runtime/Meshes/OpenXRRightHand.fbx +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Right.fbx +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPro/MetaQuestTouchPro_Right.fbx +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Left.fbx +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Left.fbx +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForRift/Materials/OculusTouchForRift_Material.fbx +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPlus/Materials/MetaQuestTouchPlusLeft_Material.fbx +- Packages/com.meta.xr.sdk.interaction/Runtime/Meshes/OpenXRLeftHand.fbx +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPro/Materials/MetaQuestProLeft_Material.fbx +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Right.fbx +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPlus/Materials/MetaQuestTouchPlusRight_Material.fbx +- Packages/com.meta.xr.sdk.interaction/Runtime/Meshes/OculusHandPinchArrowBlended.fbx +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForRift/Materials/pasted_touchPBS_MAT.fbx +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForRift/left_touch_controller_model_skel.fbx +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPro/Materials/MetaQuestProRight_Material.fbx +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPlus/MetaQuestTouchPlus_Right.fbx +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForRift/right_touch_controller_model_skel.fbx +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Objects/Props/Materials/DefaultMaterial.fbx +- Packages/com.meta.xr.sdk.interaction/Runtime/Meshes/Locomotion/LocomotionLocation.fbx +Dependencies: +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_mat0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_png0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_shader0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_shadergraph0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_tga0 diff --git a/OVRAssetBundles/OVRMasterBundle/asset_mat0 b/OVRAssetBundles/OVRMasterBundle/asset_mat0 new file mode 100644 index 0000000..df6ed99 Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_mat0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_mat0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_mat0.manifest new file mode 100644 index 0000000..978995d --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_mat0.manifest @@ -0,0 +1,60 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 2283662759 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: f68a3051e7387f0a4e59bc166ee6f1dd + TypeTreeHash: + serializedVersion: 2 + Hash: 8ed81b296f435bff7379a355cd1d66d9 + IncrementalBuildHash: + serializedVersion: 2 + Hash: f953c7a17ebfee4f4b0b94dcce5e448d +HashAppended: 0 +ClassTypes: +- Class: 21 + Script: {instanceID: 0} +- Class: 28 + Script: {instanceID: 0} +- Class: 48 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/OculusHandWire.mat +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForQuestAndRiftS/Materials/OculusTouchForQuestAndRiftS_Material.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Materials/RoundedBoxUI.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/ProceduralArcMaterial.mat +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPlus/Materials/MetaQuestTouchPlusMATphong_left.mat +- Packages/com.meta.xr.sdk.core/Editor/BuildingBlocks/BlockData/HandTracking/Materials/SystemGestureSkeletonBoneMaterial.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/PointerMaterial.mat +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPro/Materials/MetaQuestProLeft_Material.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/DistanceReticle.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/OculusHandPinchMaterial.mat +- Packages/com.meta.xr.sdk.core/Editor/BuildingBlocks/BlockData/HandTracking/Materials/SystemGestureHandMaterial.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/TeleportReticleMaterial.mat +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForRift/Materials/OculusTouchForRift_Material.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/TunnelingEffect.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Materials/LinearGradientUIDark.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/LocomotionIndicatorMaterial.mat +- Assets/Scenes/Interface test personnage/Black.mat +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPro/Materials/batteryIndicator_mat.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/OculusControllerRayCursor.mat +- Packages/com.meta.xr.sdk.core/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_MAT.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/OculusHand.mat +- Packages/com.meta.xr.sdk.core/Editor/BuildingBlocks/BlockData/HandTracking/Materials/SkeletonBoneMaterial.mat +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPro/Materials/MetaQuestProRight_Material.mat +- Packages/com.meta.xr.sdk.core/Meshes/MetaQuestTouchPlus/Materials/MetaQuestTouchPlusMATphong_right.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/OculusControllerRayMaterial.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/TransparentStandard.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/HotspotMaterial.mat +- Packages/com.unity.render-pipelines.universal/Runtime/Materials/Lit.mat +- Packages/com.meta.xr.sdk.core/Editor/BuildingBlocks/BlockData/HandTracking/Materials/DefaultHandMaterial.mat +- Packages/com.meta.xr.sdk.interaction/Runtime/Materials/Unlit Material.mat +Dependencies: +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_png0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_shader0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_tga0 diff --git a/OVRAssetBundles/OVRMasterBundle/asset_mat1 b/OVRAssetBundles/OVRMasterBundle/asset_mat1 new file mode 100644 index 0000000..4880b5c Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_mat1 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_mat1.manifest b/OVRAssetBundles/OVRMasterBundle/asset_mat1.manifest new file mode 100644 index 0000000..1ad313b --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_mat1.manifest @@ -0,0 +1,25 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 148370310 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 86f003e80e6552c2ac32d94ac33b3a15 + TypeTreeHash: + serializedVersion: 2 + Hash: 4afb0d898c1c22a5e88248733bd69457 + IncrementalBuildHash: + serializedVersion: 2 + Hash: 79bead97c1bc315b42a42c8f45ff1cfc +HashAppended: 0 +ClassTypes: +- Class: 21 + Script: {instanceID: 0} +- Class: 48 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Assets/Scenes/Interface test personnage/Ground.mat +Dependencies: +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_shader0 diff --git a/OVRAssetBundles/OVRMasterBundle/asset_png0 b/OVRAssetBundles/OVRMasterBundle/asset_png0 new file mode 100644 index 0000000..2dca096 Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_png0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_png0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_png0.manifest new file mode 100644 index 0000000..aeeaef4 --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_png0.manifest @@ -0,0 +1,40 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 2697712701 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 5dc1077455772f50c1c66e328a8245b9 + TypeTreeHash: + serializedVersion: 2 + Hash: 9f349c36d7a6532f767333f9299b3e74 + IncrementalBuildHash: + serializedVersion: 2 + Hash: 2b45fd1b9b862a29092d0148f03d49ca +HashAppended: 0 +ClassTypes: +- Class: 28 + Script: {instanceID: 0} +- Class: 213 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Packages/com.meta.xr.sdk.core/Textures/MetaQuestTouchPlus/MetaQuestTouchPlus_Normals.png +- Packages/com.meta.xr.sdk.core/Textures/MetaQuestTouchPlus/MetaQuestTouchPlus_Metallic.png +- Packages/com.meta.xr.sdk.core/Textures/MetaQuestTouchPlus/MetaQuestTouchPlus_Left_BaseColor_AO_AlphaRoughness.png +- Assets/Scenes/Interface test personnage/Lightmap-0_comp_dir.png +- Packages/com.meta.xr.sdk.core/Editor/BuildingBlocks/Icons/ovr_bb_icon.png +- Packages/com.meta.xr.sdk.core/Textures/MetaQuestTouchPlus/MetaQuestTouchPlus_Right_BaseColor_AO_AlphaRoughness.png +- Packages/com.meta.xr.sdk.core/Textures/MetaQuestTouchPro/controller_l_lo_Normal.png +- Packages/com.meta.xr.sdk.interaction/Runtime/Textures/RainbowGradient.png +- Packages/com.unity.render-pipelines.core/Editor/Icons/MipLevels/d_Volume@256.png +- Packages/com.meta.xr.sdk.interaction/Runtime/Textures/Reticle-Circle.png +- Packages/com.meta.xr.sdk.core/Textures/OculusTouchForRift/touchController_albedo.png +- Packages/com.meta.xr.sdk.core/Textures/MetaQuestTouchPro/controller_r_lo_Normal.png +- Packages/com.meta.xr.sdk.interaction/Runtime/Textures/fingers_glow_mask.png +- Packages/com.meta.xr.sdk.core/Textures/MetaQuestTouchPro/controller_r_lo_BaseColor.png +- Packages/com.meta.xr.sdk.core/Textures/MetaQuestTouchPro/controller_l_lo_BaseColor.png +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Textures/OCUIIconSet/OCUI_24_Filled_2x.png +- Packages/com.meta.xr.sdk.core/Textures/MetaQuestTouchPro/batteryIndicatorTexture32.png +- Packages/com.meta.xr.sdk.interaction/Runtime/Textures/Reticle-Dot.png +Dependencies: [] diff --git a/OVRAssetBundles/OVRMasterBundle/asset_prefab0 b/OVRAssetBundles/OVRMasterBundle/asset_prefab0 new file mode 100644 index 0000000..051ae79 Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_prefab0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_prefab0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_prefab0.manifest new file mode 100644 index 0000000..472052f --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_prefab0.manifest @@ -0,0 +1,432 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 2048475404 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 686735038a2ad58a6d3f08de836fabab + TypeTreeHash: + serializedVersion: 2 + Hash: d552005dbc93cab45a66af6fb200535f + IncrementalBuildHash: + serializedVersion: 2 + Hash: cc125624d8152b61eb8799a54d71230d +HashAppended: 0 +ClassTypes: +- Class: 1 + Script: {instanceID: 0} +- Class: 4 + Script: {instanceID: 0} +- Class: 21 + Script: {instanceID: 0} +- Class: 23 + Script: {instanceID: 0} +- Class: 28 + Script: {instanceID: 0} +- Class: 33 + Script: {instanceID: 0} +- Class: 43 + Script: {instanceID: 0} +- Class: 48 + Script: {instanceID: 0} +- Class: 54 + Script: {instanceID: 0} +- Class: 82 + Script: {instanceID: 0} +- Class: 83 + Script: {instanceID: 0} +- Class: 90 + Script: {instanceID: 0} +- Class: 91 + Script: {instanceID: 0} +- Class: 95 + Script: {instanceID: 0} +- Class: 114 + Script: {fileID: 11500000, guid: 8310d4698426ea24e923c8a77fe0f3a0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d3ea8c2b38a2e4abbaaa9caec105388a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 546c836d3c95db04182543d3541aeb12, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b07be626a8e824a5aaed89fffbde2fc7, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 194b7d1054b8fa64b9bdcea46d06c3a1, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8c187a71eebf18441816c16087a51cb6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 331d7f91e4f2d20498cb8079638deeda, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 6eb5e919275d29245bba9a1f0e849e6a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9a174518816f7e645860e70cf978ba1c, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8df81de6ba2e4e14c983a5a14b7957c0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 67fb2ae006d618c4180efcabc2481fcf, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: c5af6ab9d1bd4a47970ad151090281f3, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 635f432b0b5a8c44992364202b2f5d5b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: a63ea968be5c2084588e377a5dc05473, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: aed62bf3ae2456c408f247f96808ce96, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1cd9780be7e512049b4d33d5c9d0ac92, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: abee63302fdc2bb4f80efe129df0a723, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 78e0f69dd04ac2440a08fa31c8d96f83, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0c36d956bf264294ebb871f3b4e04372, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2606bf2f0c914a7aba4390f29ba2eb6e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 48f1fcbc5502d6448a5fdeb976b6fcd9, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0cf00a93483fd1b4ba357bf6f764d6e6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 998a5646185efb9488265f3a2f35a99a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 592ac3f1a010f3d48970c5beb7e4f68f, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 50f211aff3d26554691f0499eaa219e5, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: aebd5da9a8bd22243b407f1927f4965b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5abce8b5d04ce6e41a9cf7505269389d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 08f7cfb1f9629da4494ac0840f3a3cfd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8b2fc1498442023409ccd04c3abff60e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 6d9d81be1c5cd1942a7572d99a4fca60, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 69a56a590bc345b42b367a1c73088cce, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ec6a2955cc1374944a4634c6f312985a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2ff26c21ac005534e8af75f8427be9d1, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5a52cc62b98662b4e9ac356027b2b070, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 949e33eb3289ef04ebbeb5f045a5add6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3b07f2ca3663a6041b075ea23c02a6a4, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 86bd0d3098d25db4c9c839739557480b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9a8bb2498cdcda04c89df15c8ee19159, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3e2cb428b733e56478338c736189a0d5, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3eac11706db359b49bf0ea4b2576b331, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 6bcb907778a00234ea4e7aa9cf238631, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bebfb74b97b000d4899abbd61f49aa40, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ad374a43a946e7d4496818c6b194809f, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 838bf82eef6d73d42b59f428c4e33417, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4ae60cfa43388e449a7518f36418f81c, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0c6aa09f2d128af4d93fb9fc29ecec33, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9c2beb69c900ccf4984646ad420b1e17, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b14164f8f23faae4293baeb84485b3d6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 17cef50ab59738b47bdd5ba6901c9649, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f026be10edaad42429c52aa2200881dd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bffe606b408599b4fad696ddc889a943, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4cfe1df7ed391a24fbe2a2d275e81b06, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: a7b47e36715521d4e8a30d2c5b6e83e2, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d5e48d93b64a9ae4f9fd5a728c8f51af, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ee6b94f7bc105c24ea3746dc4141a7eb, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4855895ba1c44959a306beb7ae318fc2, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4f62acf90e41ded439f14c4e15871abd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 317e663e2bb60ea408fe22b908b59295, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1a379f34d4f4f2e408d34f14bfb753ce, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9fa76bd9e9d3a34429b6c90d00678855, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d4ad4f1ddee798f45a20be4efda35c8c, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d660178ed2b38ec4d9b564be11e400cc, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1a56054f6e3838f4e85dce4e71979800, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ae43f25c06eb2d9408a201216b4c3ed7, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2728d4cd2e5956445bcf3ded585c0ac0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 438e12c9002f2c8489c81a2d3472b18d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3673df66324d8f34d9433049c54de631, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b8667bbf66117438986bafc711f920ed, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1d2705674196dfc4da9c25fbacda72d8, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 38db45e6a1a371f42b564b61a03d9f5a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: cb028ce99f9700e4197a49bfdcd525dd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4733c5f009d26ad49b3685117b8d3eb4, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f1a03de1aafd166419d7fae7e1017875, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 98c98c657feb956428aa12a4b798bde6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b942c16a6d6a4edaad7c18c7d5762cdf, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b509fde79093393479908a63060c39eb, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 484167e684014224c9a8bff92b293c6a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 990692c9edb7a214d9b122856cf44929, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2cd6eda636b9144439141427c0beb50d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9dda6958e834dc644b949b1ff70e432b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 6d2303af7d4c7114681742031c4a0ac6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: be5585168c67af345b1074140733215b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d952c175ec3c6554199fd744548ce50a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ec3c4a8b42e65c348904e5170307b64e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: acb743c666c1ab34e928a0b62c2fa862, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 75d3a1facc5f29d4ea65d3af68af5c9e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 40fad7417847c0d488bea878535c9771, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 03190b23f0f30f74dacc4ed3992541b6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: c9baea8b9d474934191bc47580d2537c, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 038d627f7b72e904382b2b0f8fb30c29, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4183772a7ccf28946be25cca333a4c42, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f273abee0604ad2409c9bbc9a60e461e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: c62aefa44f5a8614bb49c5b2a6caaff0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3f372cf1215ef50499f9b9d82e05831a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3fcebab82b3c5dd4fac023079b7fed29, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d61ea23b9fd13af40afe326bb23ac1cd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9af9ea683544b184083cef283557012d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bf7605932bc514945adb3803a0be2ed9, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: c9940d31c819e704889d891a6ce925b0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: e06fe30fd4efa954b8f53ccc8da8f46b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1b6b944de90aa9047929c54d143ff2da, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4ac558de6fb637548a9e3e0483939688, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bea6571c974f89440b3379b928084e50, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: a7d153c984a90a6488110013f4cfd9c3, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5c67033f580359c4581dff1ccffcca91, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d92c1a7dc2e30b24da860439b4faf7b8, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 52fee213f8cdac6439fe123440931219, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f5626a0b1dc955a43be59ce7ea116678, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3952177e694781b48a591cf609642190, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1b3dc5cab0c7a68418a27104afd19f74, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 189ea817d962af84893a69754bc2b3f8, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 42bba106679662e4b925dca314de22c2, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 151f9be47337d9e4daef0b8725e30eab, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1dcabe7b065172d40991aecec9fc6555, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4dffc2a801520fb4cbe2c11894faf431, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: e00ff2c1207ec064cac7bc321bee406a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 7daff26e66096cd49a253ca3ab592c03, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8268085ebe170e64aa36672a45f0dd8d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8733ebe23f85185428441f8c331788fc, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: deb7533ca606ed241b3541310f39ba5d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9067480af55f5874d8f613b16812f968, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: be4f8a87204f80c46a1af01f7787fb0d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 417817ee9b785e341b31ce731f028317, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 488896fe86105104a8453d9f173cf62a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5e38df5678b37d6429ef2446d3589e00, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: aaa9829e545a541498f4d93a6a20924f, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5ab90b5d07fb7e240975058b36a342a4, type: 3} +- Class: 115 + Script: {instanceID: 0} +- Class: 135 + Script: {instanceID: 0} +- Class: 136 + Script: {instanceID: 0} +- Class: 137 + Script: {instanceID: 0} +- Class: 210 + Script: {instanceID: 0} +- Class: 212 + Script: {instanceID: 0} +- Class: 213 + Script: {instanceID: 0} +- Class: 222 + Script: {instanceID: 0} +- Class: 223 + Script: {instanceID: 0} +- Class: 224 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.DistantCandidateComputer`2 +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.DistantPointDetectorFrustums +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.HandJointsPose/WeightedJoint +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.Input.OneEuroFilterPropertyBlock +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.Locomotion.LocomotionGate/GateSection +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.MaterialPropertyVector +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.PokeInteractable/DragThresholdsConfig +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.PokeInteractable/MinThresholdsConfig +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.PokeInteractable/PositionPinningConfig +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.PokeInteractable/RecoilAssistConfig +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.PoseDetection.FingerFeatureStateProvider/FingerStateThresholds +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.PoseTravelData +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.ProgressCurve +- AssemblyName: UnityEngine.CoreModule + ClassName: UnityEngine.Events.ArgumentCache +- AssemblyName: UnityEngine.CoreModule + ClassName: UnityEngine.Events.PersistentCallGroup +- AssemblyName: UnityEngine.CoreModule + ClassName: UnityEngine.Events.PersistentListenerMode +- AssemblyName: UnityEngine.CoreModule + ClassName: UnityEngine.Events.UnityEvent +- AssemblyName: UnityEngine.CoreModule + ClassName: UnityEngine.Events.UnityEvent`1 +- AssemblyName: UnityEngine.CoreModule + ClassName: UnityEngine.RectOffset +- AssemblyName: UnityEngine.UI + ClassName: UnityEngine.UI.MaskableGraphic/CullStateChangedEvent +Assets: +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/OVRControllers.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Grab/ControllerGrabInteractor.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/Microgestures/TeleportMicrogestureInteractor.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/UseGrab/HandGrabUseInteractor.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Locomotion/ControllerStep.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Hands.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/Microgestures/TurnerMicrogesture.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Objects/UISet/Prefabs/Backplate/EmptyUIBackplateWithCanvas.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Locomotion/Locomotor.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/Controller/OVRControllersDataSource.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/BaseInteractors.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Poke/HandPokeInteractor.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/TouchHandGrab/HandSphereMap.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/HandGrab/ControllerHandGrabInteractor.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Locomotion/TunnelingEffect.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Locomotion/ArcVisual.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/DistanceHandGrab/Reticles/ReticleLine.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/DistanceHandGrab/DistanceHandGrabInteractor.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/OVRHmd.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Hands/OVRLeftHandVisual.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Poke/ControllerPokeInteractor.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Locomotion/LocomotionHandInteractorGroup.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Controllers.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Hands/OVRLeftHandSynthetic.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/TouchHandGrab/TouchHandGrabInteractor.prefab +- Packages/com.meta.xr.sdk.core/Prefabs/OVRControllerPrefab.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Locomotion/ControllerTurnerInteractor.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Locomotion/HandTurnerInteractor.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/Legacy/OVRInteractionComprehensive_legacy.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/Microgestures/StepMicrogesture.prefab +Dependencies: +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_asset0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_controller0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_fbx0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_mat0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_png0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_prefab1 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_wav0 diff --git a/OVRAssetBundles/OVRMasterBundle/asset_prefab1 b/OVRAssetBundles/OVRMasterBundle/asset_prefab1 new file mode 100644 index 0000000..0715ff6 Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_prefab1 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_prefab1.manifest b/OVRAssetBundles/OVRMasterBundle/asset_prefab1.manifest new file mode 100644 index 0000000..fb98534 --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_prefab1.manifest @@ -0,0 +1,441 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 3903142688 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: cb976993d3493237758384756bb84767 + TypeTreeHash: + serializedVersion: 2 + Hash: 6358d925a1e2c498019937f9cb94c66c + IncrementalBuildHash: + serializedVersion: 2 + Hash: 683f59131af23675d7bbaa615afded56 +HashAppended: 0 +ClassTypes: +- Class: 1 + Script: {instanceID: 0} +- Class: 4 + Script: {instanceID: 0} +- Class: 21 + Script: {instanceID: 0} +- Class: 23 + Script: {instanceID: 0} +- Class: 28 + Script: {instanceID: 0} +- Class: 33 + Script: {instanceID: 0} +- Class: 43 + Script: {instanceID: 0} +- Class: 48 + Script: {instanceID: 0} +- Class: 54 + Script: {instanceID: 0} +- Class: 82 + Script: {instanceID: 0} +- Class: 83 + Script: {instanceID: 0} +- Class: 90 + Script: {instanceID: 0} +- Class: 91 + Script: {instanceID: 0} +- Class: 95 + Script: {instanceID: 0} +- Class: 114 + Script: {fileID: 11500000, guid: 8310d4698426ea24e923c8a77fe0f3a0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d3ea8c2b38a2e4abbaaa9caec105388a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 546c836d3c95db04182543d3541aeb12, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b07be626a8e824a5aaed89fffbde2fc7, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 194b7d1054b8fa64b9bdcea46d06c3a1, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8c187a71eebf18441816c16087a51cb6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 331d7f91e4f2d20498cb8079638deeda, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 6eb5e919275d29245bba9a1f0e849e6a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9a174518816f7e645860e70cf978ba1c, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8df81de6ba2e4e14c983a5a14b7957c0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 67fb2ae006d618c4180efcabc2481fcf, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: c5af6ab9d1bd4a47970ad151090281f3, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 635f432b0b5a8c44992364202b2f5d5b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: a63ea968be5c2084588e377a5dc05473, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: aed62bf3ae2456c408f247f96808ce96, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1cd9780be7e512049b4d33d5c9d0ac92, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: abee63302fdc2bb4f80efe129df0a723, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 78e0f69dd04ac2440a08fa31c8d96f83, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0c36d956bf264294ebb871f3b4e04372, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2606bf2f0c914a7aba4390f29ba2eb6e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 48f1fcbc5502d6448a5fdeb976b6fcd9, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0cf00a93483fd1b4ba357bf6f764d6e6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 998a5646185efb9488265f3a2f35a99a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 592ac3f1a010f3d48970c5beb7e4f68f, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 50f211aff3d26554691f0499eaa219e5, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: aebd5da9a8bd22243b407f1927f4965b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 08f7cfb1f9629da4494ac0840f3a3cfd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8b2fc1498442023409ccd04c3abff60e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 6d9d81be1c5cd1942a7572d99a4fca60, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 69a56a590bc345b42b367a1c73088cce, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ec6a2955cc1374944a4634c6f312985a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2ff26c21ac005534e8af75f8427be9d1, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5a52cc62b98662b4e9ac356027b2b070, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 949e33eb3289ef04ebbeb5f045a5add6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 86bd0d3098d25db4c9c839739557480b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9a8bb2498cdcda04c89df15c8ee19159, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3e2cb428b733e56478338c736189a0d5, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3eac11706db359b49bf0ea4b2576b331, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 6bcb907778a00234ea4e7aa9cf238631, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: cb7623a8f0b49cf4dbaa40aea4d4be64, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bebfb74b97b000d4899abbd61f49aa40, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ad374a43a946e7d4496818c6b194809f, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 838bf82eef6d73d42b59f428c4e33417, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4ae60cfa43388e449a7518f36418f81c, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0c6aa09f2d128af4d93fb9fc29ecec33, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9c2beb69c900ccf4984646ad420b1e17, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b14164f8f23faae4293baeb84485b3d6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f026be10edaad42429c52aa2200881dd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bffe606b408599b4fad696ddc889a943, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4cfe1df7ed391a24fbe2a2d275e81b06, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d17425af5fc89a443bba05adbe10381a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: de76f7169412b8f4896235a1585d8939, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: a7b47e36715521d4e8a30d2c5b6e83e2, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d5e48d93b64a9ae4f9fd5a728c8f51af, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ee6b94f7bc105c24ea3746dc4141a7eb, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4855895ba1c44959a306beb7ae318fc2, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4f62acf90e41ded439f14c4e15871abd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1a379f34d4f4f2e408d34f14bfb753ce, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9fa76bd9e9d3a34429b6c90d00678855, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d4ad4f1ddee798f45a20be4efda35c8c, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d660178ed2b38ec4d9b564be11e400cc, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1a56054f6e3838f4e85dce4e71979800, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ae43f25c06eb2d9408a201216b4c3ed7, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2728d4cd2e5956445bcf3ded585c0ac0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 438e12c9002f2c8489c81a2d3472b18d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3673df66324d8f34d9433049c54de631, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b8667bbf66117438986bafc711f920ed, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1d2705674196dfc4da9c25fbacda72d8, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 38db45e6a1a371f42b564b61a03d9f5a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: cb028ce99f9700e4197a49bfdcd525dd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4733c5f009d26ad49b3685117b8d3eb4, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f1a03de1aafd166419d7fae7e1017875, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b942c16a6d6a4edaad7c18c7d5762cdf, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b509fde79093393479908a63060c39eb, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 484167e684014224c9a8bff92b293c6a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 990692c9edb7a214d9b122856cf44929, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2cd6eda636b9144439141427c0beb50d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9dda6958e834dc644b949b1ff70e432b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 6d2303af7d4c7114681742031c4a0ac6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: be5585168c67af345b1074140733215b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d952c175ec3c6554199fd744548ce50a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ec3c4a8b42e65c348904e5170307b64e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: acb743c666c1ab34e928a0b62c2fa862, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 75d3a1facc5f29d4ea65d3af68af5c9e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 40fad7417847c0d488bea878535c9771, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 03190b23f0f30f74dacc4ed3992541b6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: c9baea8b9d474934191bc47580d2537c, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 038d627f7b72e904382b2b0f8fb30c29, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4183772a7ccf28946be25cca333a4c42, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f273abee0604ad2409c9bbc9a60e461e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: c62aefa44f5a8614bb49c5b2a6caaff0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3f372cf1215ef50499f9b9d82e05831a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3fcebab82b3c5dd4fac023079b7fed29, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d61ea23b9fd13af40afe326bb23ac1cd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 925ef87c5bafc37469a2f7ec825dee4b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9af9ea683544b184083cef283557012d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bf7605932bc514945adb3803a0be2ed9, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8a0200d999c05c54fa27292e7f8616ee, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: c9940d31c819e704889d891a6ce925b0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: e06fe30fd4efa954b8f53ccc8da8f46b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1b6b944de90aa9047929c54d143ff2da, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4ac558de6fb637548a9e3e0483939688, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bea6571c974f89440b3379b928084e50, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: a7d153c984a90a6488110013f4cfd9c3, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5c67033f580359c4581dff1ccffcca91, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d92c1a7dc2e30b24da860439b4faf7b8, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3952177e694781b48a591cf609642190, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 189ea817d962af84893a69754bc2b3f8, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 42bba106679662e4b925dca314de22c2, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 151f9be47337d9e4daef0b8725e30eab, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1dcabe7b065172d40991aecec9fc6555, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4dffc2a801520fb4cbe2c11894faf431, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: e00ff2c1207ec064cac7bc321bee406a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 7daff26e66096cd49a253ca3ab592c03, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8268085ebe170e64aa36672a45f0dd8d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8733ebe23f85185428441f8c331788fc, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: deb7533ca606ed241b3541310f39ba5d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9067480af55f5874d8f613b16812f968, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: be4f8a87204f80c46a1af01f7787fb0d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 71c1514a6bd24e1e882cebbe1904ce04, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 417817ee9b785e341b31ce731f028317, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 488896fe86105104a8453d9f173cf62a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 97ad1841d31cfd844995732927b7c958, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5e38df5678b37d6429ef2446d3589e00, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: aaa9829e545a541498f4d93a6a20924f, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5ab90b5d07fb7e240975058b36a342a4, type: 3} +- Class: 115 + Script: {instanceID: 0} +- Class: 135 + Script: {instanceID: 0} +- Class: 136 + Script: {instanceID: 0} +- Class: 137 + Script: {instanceID: 0} +- Class: 210 + Script: {instanceID: 0} +- Class: 212 + Script: {instanceID: 0} +- Class: 213 + Script: {instanceID: 0} +- Class: 222 + Script: {instanceID: 0} +- Class: 224 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: +- AssemblyName: Oculus.Interaction.Samples + ClassName: Oculus.Interaction.MinMaxPair +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.DistantCandidateComputer`2 +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.DistantPointDetectorFrustums +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.HandJointsPose/WeightedJoint +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.Input.OneEuroFilterPropertyBlock +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.MaterialPropertyVector +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.PoseDetection.FingerFeatureStateProvider/FingerStateThresholds +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.PoseTravelData +- AssemblyName: Oculus.Interaction + ClassName: Oculus.Interaction.ProgressCurve +- AssemblyName: Oculus.VR + ClassName: OVRHand/MicrogestureType +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.FaceInfo_Legacy +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.FontAssetCreationSettings +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.KerningTable +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.TMP_Character +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.TMP_FontFeatureTable +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.TMP_FontWeightPair +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.VertexGradient +- AssemblyName: UnityEngine.CoreModule + ClassName: UnityEngine.Events.ArgumentCache +- AssemblyName: UnityEngine.CoreModule + ClassName: UnityEngine.Events.PersistentCallGroup +- AssemblyName: UnityEngine.CoreModule + ClassName: UnityEngine.Events.PersistentListenerMode +- AssemblyName: UnityEngine.CoreModule + ClassName: UnityEngine.Events.UnityEvent +- AssemblyName: UnityEngine.CoreModule + ClassName: UnityEngine.Events.UnityEvent`1 +- AssemblyName: UnityEngine.CoreModule + ClassName: UnityEngine.RectOffset +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.FaceInfo +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.Glyph +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.GlyphMetrics +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.GlyphRect +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.LowLevel.GlyphValueRecord +- AssemblyName: UnityEngine.UI + ClassName: UnityEngine.UI.AnimationTriggers +- AssemblyName: UnityEngine.UI + ClassName: UnityEngine.UI.Button/ButtonClickedEvent +- AssemblyName: UnityEngine.UI + ClassName: UnityEngine.UI.ColorBlock +- AssemblyName: UnityEngine.UI + ClassName: UnityEngine.UI.MaskableGraphic/CullStateChangedEvent +- AssemblyName: UnityEngine.UI + ClassName: UnityEngine.UI.Navigation +- AssemblyName: UnityEngine.UI + ClassName: UnityEngine.UI.SpriteState +Assets: +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/HandGrab/HandGrabInteractor.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/Microgestures/MicroGesturesLocomotionHandInteractorGroup.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Locomotion/LocomotionControllerInteractorGroup.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/Legacy/OVRControllerVisual.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Locomotion/ControllerSlide.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/Controller/OVRControllerVisual.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/DistanceHandGrab/Reticles/ReticleMesh.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Objects/UISet/Prefabs/Button/UnityUIButtonBased/PrimaryButton_IconAndLabel_UnityUIButton.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/DistanceHandGrab/ControllerDistanceGrabInteractor.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/OVRInteractionComprehensive.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Ray/ControllerRayInteractor.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/DistanceHandGrab/Reticles/ReticleIcon.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/OVRComprehensiveInteractors.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Hands/OVRRightHandVisual.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Locomotion/TeleportControllerInteractor.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Hmd.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/Hands/OVRHandsDataSource.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/OVRHands.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Hands/OVRRightHandSynthetic.prefab +- Packages/com.meta.xr.sdk.interaction.ovr/Runtime/Prefabs/OVRInteraction.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Ray/HandRayInteractor.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/DistanceHandGrab/Reticles/OVRRightHandReticle.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/DistanceHandGrab/Reticles/OVRLeftHandReticle.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/DistanceHandGrab/DistanceControllerHandGrabInteractor.prefab +- Packages/com.meta.xr.sdk.interaction/Runtime/Prefabs/Locomotion/TeleportHandInteractor.prefab +Dependencies: +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_asset0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_controller0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_fbx0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_mat0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_png0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_resources +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_wav0 diff --git a/OVRAssetBundles/OVRMasterBundle/asset_psd0 b/OVRAssetBundles/OVRMasterBundle/asset_psd0 new file mode 100644 index 0000000..f80466e Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_psd0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_psd0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_psd0.manifest new file mode 100644 index 0000000..6902625 --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_psd0.manifest @@ -0,0 +1,22 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 1828971525 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 1df224626b5e90537d23c74d8d3abdca + TypeTreeHash: + serializedVersion: 2 + Hash: 5527383dc91eba37123fc67ad6efaa19 + IncrementalBuildHash: + serializedVersion: 2 + Hash: 35618c9518dda769c12336cb13215f6b +HashAppended: 0 +ClassTypes: +- Class: 28 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Font Asset Icon.psd +- Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Text Component Icon.psd +Dependencies: [] diff --git a/OVRAssetBundles/OVRMasterBundle/asset_resources b/OVRAssetBundles/OVRMasterBundle/asset_resources new file mode 100644 index 0000000..94d43aa Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_resources differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_resources.manifest b/OVRAssetBundles/OVRMasterBundle/asset_resources.manifest new file mode 100644 index 0000000..7e80cf4 --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_resources.manifest @@ -0,0 +1,148 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 2727262422 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: ca408781015f569890d60583e67ccf4c + TypeTreeHash: + serializedVersion: 2 + Hash: a172d39707de1b11dd61764a79ba3126 + IncrementalBuildHash: + serializedVersion: 2 + Hash: 52f5d5011f9255a3e323c03bd37cba9e +HashAppended: 0 +ClassTypes: +- Class: 1 + Script: {instanceID: 0} +- Class: 4 + Script: {instanceID: 0} +- Class: 21 + Script: {instanceID: 0} +- Class: 28 + Script: {instanceID: 0} +- Class: 43 + Script: {instanceID: 0} +- Class: 48 + Script: {instanceID: 0} +- Class: 49 + Script: {instanceID: 0} +- Class: 74 + Script: {instanceID: 0} +- Class: 89 + Script: {instanceID: 0} +- Class: 90 + Script: {instanceID: 0} +- Class: 91 + Script: {instanceID: 0} +- Class: 95 + Script: {instanceID: 0} +- Class: 114 + Script: {fileID: 11500000, guid: 8922a6ca86889d84f8371a29d37b6dc8, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2705215ac5b84b70bacc50632be6e391, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 82874db8faf1071438bbcf855a2e8a93, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 84a92b25f83d49b9bc132d206b370281, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: a7d75bea1662418ab5f9e0c22110bc09, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: efa1458c2bc55e04b872c61942be2866, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ab2114bdc8544297b417dfefe9f1e410, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 71c1514a6bd24e1e882cebbe1904ce04, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3863570e7e6387a40ae4f323d83291e5, type: 3} +- Class: 115 + Script: {instanceID: 0} +- Class: 128 + Script: {instanceID: 0} +- Class: 137 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: +- AssemblyName: Meta.XR.ImmersiveDebugger.Interface + ClassName: Meta.XR.ImmersiveDebugger.DebugMember +- AssemblyName: Meta.XR.ImmersiveDebugger + ClassName: Meta.XR.ImmersiveDebugger.InspectedMember +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.FaceInfo_Legacy +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.FontAssetCreationSettings +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.KerningTable +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.TMP_Character +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.TMP_FontFeatureTable +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.TMP_FontWeightPair +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.TMP_Sprite +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.TMP_SpriteCharacter +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.TMP_SpriteGlyph +- AssemblyName: Unity.TextMeshPro + ClassName: TMPro.TMP_Style +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.FaceInfo +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.Glyph +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.GlyphMetrics +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.GlyphRect +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord +- AssemblyName: UnityEngine.TextCoreFontEngineModule + ClassName: UnityEngine.TextCore.LowLevel.GlyphValueRecord +Assets: +- Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat +- Assets/Resources/Materials/LinearGradientUILight.mat +- Assets/Resources/OVROverlayCanvasSettings.asset +- Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Green.mat +- Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Brown(Free + Version).prefab +- Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Green.png +- Assets/Resources/OVRPlatformToolSettings.asset +- Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Blue(Free + Version).prefab +- Assets/Resources/ImmersiveDebuggerSettings.asset +- Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Brown.png +- Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset +- Assets/Resources/Materials/RoundedBoxUI.mat +- Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Blue.mat +- Assets/Resources/Materials/LinearGradientUIDark.mat +- Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Yellow.png +- Assets/Resources/Stylized NPC - Peasant Nolant/Animator/Animator Controller.controller +- Assets/Resources/OculusRuntimeSettings.asset +- Assets/TextMesh Pro/Resources/TMP Settings.asset +- Assets/Resources/Stylized NPC - Peasant Nolant/Models/Peasant Nolant(Free Version).fbx +- Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Yellow(Free + Version).prefab +- Assets/Resources/Stylized NPC - Peasant Nolant/Prefabs/Peasant Nolant Green(Free + Version).prefab +- Assets/Resources/InputActions.asset +- Assets/Resources/Materials/backgrounds/bg01.mat +- Assets/Resources/Stylized NPC - Peasant Nolant/Textures/Peasant Nolant Blue.png +- Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset +- Assets/Resources/OVRBuildConfig.asset +- Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Yellow.mat +- Assets/Resources/Stylized NPC - Peasant Nolant/Materials/Peasant Nolant Brown.mat +- Assets/Resources/Materials/TriangleMask.mat +- Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat +- Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset +- Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset +- Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt +- Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt +Dependencies: +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_exr0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_shader0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_ttf0 diff --git a/OVRAssetBundles/OVRMasterBundle/asset_shader0 b/OVRAssetBundles/OVRMasterBundle/asset_shader0 new file mode 100644 index 0000000..9e5c353 Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_shader0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_shader0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_shader0.manifest new file mode 100644 index 0000000..fb0d0cd --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_shader0.manifest @@ -0,0 +1,33 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 543995864 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: e3a1c95668d52f35484fc74e67d3fbab + TypeTreeHash: + serializedVersion: 2 + Hash: bb8521372c98e74594d3b7eb1b0a7a88 + IncrementalBuildHash: + serializedVersion: 2 + Hash: e4543a7c7145dcf2af8f6832001d9f6e +HashAppended: 0 +ClassTypes: +- Class: 48 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Packages/com.meta.xr.sdk.core/Shaders/MetaLit.shader +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Materials/Shaders/LinearGradientUI.shader +- Packages/com.meta.xr.sdk.interaction/Runtime/Shaders/Locomotion/TransparentVertexTexture.shader +- Packages/com.meta.xr.sdk.interaction/Runtime/Shaders/Locomotion/Hotspot.shader +- Packages/com.meta.xr.sdk.core/Editor/BuildingBlocks/BlockData/HandTracking/Shaders/OculusSampleAlphaHandOutline.shader +- Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader +- Packages/com.meta.xr.sdk.interaction/Runtime/Shaders/OculusControllerRayShader.shader +- Packages/com.meta.xr.sdk.interaction/Runtime/Shaders/Locomotion/TunnelingEffect.shader +- Packages/com.meta.xr.sdk.core/Editor/BuildingBlocks/BlockData/RoomModel/Shaders/TransparentTexture.shader +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Materials/Shaders/RoundedBoxUI.shader +- Packages/com.meta.xr.sdk.interaction/Runtime/Shaders/OculusHandCursor.shader +- Packages/com.unity.render-pipelines.universal/Shaders/Lit.shader +- Packages/com.meta.xr.sdk.interaction/Runtime/Shaders/OculusHand.shader +Dependencies: [] diff --git a/OVRAssetBundles/OVRMasterBundle/asset_shadergraph0 b/OVRAssetBundles/OVRMasterBundle/asset_shadergraph0 new file mode 100644 index 0000000..4410d2e Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_shadergraph0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_shadergraph0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_shadergraph0.manifest new file mode 100644 index 0000000..a7c2ba3 --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_shadergraph0.manifest @@ -0,0 +1,23 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 2266570408 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: cedeceb49d7cdaec1cd1231528b4c0f9 + TypeTreeHash: + serializedVersion: 2 + Hash: 4afb0d898c1c22a5e88248733bd69457 + IncrementalBuildHash: + serializedVersion: 2 + Hash: 2295c40ece374a5408070d14497b535c +HashAppended: 0 +ClassTypes: +- Class: 21 + Script: {instanceID: 0} +- Class: 48 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Packages/com.unity.render-pipelines.universal/Shaders/AutodeskInteractive/AutodeskInteractive.shadergraph +Dependencies: [] diff --git a/OVRAssetBundles/OVRMasterBundle/asset_tga0 b/OVRAssetBundles/OVRMasterBundle/asset_tga0 new file mode 100644 index 0000000..2f55aa6 Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_tga0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_tga0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_tga0.manifest new file mode 100644 index 0000000..0091575 --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_tga0.manifest @@ -0,0 +1,22 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 3046709925 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 0449a58a035c0bff4d406b3efa2ac9bf + TypeTreeHash: + serializedVersion: 2 + Hash: 5527383dc91eba37123fc67ad6efaa19 + IncrementalBuildHash: + serializedVersion: 2 + Hash: 28f5815823b29544e96717a7e2ff07b6 +HashAppended: 0 +ClassTypes: +- Class: 28 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Packages/com.meta.xr.sdk.core/Textures/OculusTouchForQuestAndRiftS/OculusQuestTouchControllerTexture.tga +- Packages/com.meta.xr.sdk.core/Textures/OculusTouchForQuest2/OculusTouchForQuest2_AlbedoRoughness.tga +Dependencies: [] diff --git a/OVRAssetBundles/OVRMasterBundle/asset_ttf0 b/OVRAssetBundles/OVRMasterBundle/asset_ttf0 new file mode 100644 index 0000000..7270c6c Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_ttf0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_ttf0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_ttf0.manifest new file mode 100644 index 0000000..52ce7d4 --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_ttf0.manifest @@ -0,0 +1,27 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 2453529860 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 7747f142eb7f3ff1019c865b831d900f + TypeTreeHash: + serializedVersion: 2 + Hash: 7623a04346d220483f62bdfe72afea62 + IncrementalBuildHash: + serializedVersion: 2 + Hash: f5b748f6292e05029d142c866c94d0fc +HashAppended: 0 +ClassTypes: +- Class: 21 + Script: {instanceID: 0} +- Class: 28 + Script: {instanceID: 0} +- Class: 48 + Script: {instanceID: 0} +- Class: 128 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Assets/TextMesh Pro/Fonts/LiberationSans.ttf +Dependencies: [] diff --git a/OVRAssetBundles/OVRMasterBundle/asset_wav0 b/OVRAssetBundles/OVRMasterBundle/asset_wav0 new file mode 100644 index 0000000..6cc8cfa Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/asset_wav0 differ diff --git a/OVRAssetBundles/OVRMasterBundle/asset_wav0.manifest b/OVRAssetBundles/OVRMasterBundle/asset_wav0.manifest new file mode 100644 index 0000000..b563c7c --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/asset_wav0.manifest @@ -0,0 +1,24 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 2846876205 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 870dd8515d8fb6843eb223974d9ddee8 + TypeTreeHash: + serializedVersion: 2 + Hash: 9a2ca7bdbd1871f7131daf57de908e0c + IncrementalBuildHash: + serializedVersion: 2 + Hash: fb2dd9bad3d5050ff57633a3d5ec61e9 +HashAppended: 0 +ClassTypes: +- Class: 83 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Audio/Content/Interaction_BasicPoke_ButtonPress.wav +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Audio/Content/Interaction_BasicPoke_ButtonRelease.wav +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Audio/Content/Interaction_Locomotion_Enter.wav +- Packages/com.meta.xr.sdk.interaction/Runtime/Sample/Audio/Content/Interaction_Locomotion_Exit.wav +Dependencies: [] diff --git a/OVRAssetBundles/OVRMasterBundle/scene_interface test personnage b/OVRAssetBundles/OVRMasterBundle/scene_interface test personnage new file mode 100644 index 0000000..d4da3a7 Binary files /dev/null and b/OVRAssetBundles/OVRMasterBundle/scene_interface test personnage differ diff --git a/OVRAssetBundles/OVRMasterBundle/scene_interface test personnage.manifest b/OVRAssetBundles/OVRMasterBundle/scene_interface test personnage.manifest new file mode 100644 index 0000000..acf21e5 --- /dev/null +++ b/OVRAssetBundles/OVRMasterBundle/scene_interface test personnage.manifest @@ -0,0 +1,441 @@ +ManifestFileVersion: 0 +UnityVersion: 6000.0.58f2 +CRC: 3554006126 +Hashes: + AssetFileHash: + serializedVersion: 2 + Hash: 9c2a549b1decef39145187e1bd0d9f6f + TypeTreeHash: + serializedVersion: 2 + Hash: 48eaba3fff40dd477014696ae344ff93 + IncrementalBuildHash: + serializedVersion: 2 + Hash: 236cd08d3ee03453b1cc21680b0128c8 +HashAppended: 0 +ClassTypes: +- Class: 1 + Script: {instanceID: 0} +- Class: 4 + Script: {instanceID: 0} +- Class: 20 + Script: {instanceID: 0} +- Class: 21 + Script: {instanceID: 0} +- Class: 23 + Script: {instanceID: 0} +- Class: 28 + Script: {instanceID: 0} +- Class: 33 + Script: {instanceID: 0} +- Class: 43 + Script: {instanceID: 0} +- Class: 48 + Script: {instanceID: 0} +- Class: 54 + Script: {instanceID: 0} +- Class: 64 + Script: {instanceID: 0} +- Class: 65 + Script: {instanceID: 0} +- Class: 74 + Script: {instanceID: 0} +- Class: 81 + Script: {instanceID: 0} +- Class: 82 + Script: {instanceID: 0} +- Class: 83 + Script: {instanceID: 0} +- Class: 89 + Script: {instanceID: 0} +- Class: 90 + Script: {instanceID: 0} +- Class: 91 + Script: {instanceID: 0} +- Class: 95 + Script: {instanceID: 0} +- Class: 104 + Script: {instanceID: 0} +- Class: 108 + Script: {instanceID: 0} +- Class: 114 + Script: {fileID: 11500000, guid: 8310d4698426ea24e923c8a77fe0f3a0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5cc5c234723e3a54d8dd09b131117743, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d3ea8c2b38a2e4abbaaa9caec105388a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 546c836d3c95db04182543d3541aeb12, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b07be626a8e824a5aaed89fffbde2fc7, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 194b7d1054b8fa64b9bdcea46d06c3a1, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8c187a71eebf18441816c16087a51cb6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 331d7f91e4f2d20498cb8079638deeda, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9a174518816f7e645860e70cf978ba1c, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8df81de6ba2e4e14c983a5a14b7957c0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 67fb2ae006d618c4180efcabc2481fcf, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5178bc8574ce2bf4388e787a2e2af326, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: c5af6ab9d1bd4a47970ad151090281f3, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 635f432b0b5a8c44992364202b2f5d5b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: a63ea968be5c2084588e377a5dc05473, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: aed62bf3ae2456c408f247f96808ce96, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1cd9780be7e512049b4d33d5c9d0ac92, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: abee63302fdc2bb4f80efe129df0a723, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 54c16b381e28e8d479237771d234dbae, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 78e0f69dd04ac2440a08fa31c8d96f83, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0c36d956bf264294ebb871f3b4e04372, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 33ce5a919ad73a5478d19817ea6027dc, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2606bf2f0c914a7aba4390f29ba2eb6e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3ffe41fe81087fa41a2062cc69b99615, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0cf00a93483fd1b4ba357bf6f764d6e6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 998a5646185efb9488265f3a2f35a99a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 592ac3f1a010f3d48970c5beb7e4f68f, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 50f211aff3d26554691f0499eaa219e5, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: aebd5da9a8bd22243b407f1927f4965b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 08f7cfb1f9629da4494ac0840f3a3cfd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8b2fc1498442023409ccd04c3abff60e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5e617737c781e534eb8e2c4ace64b133, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 6d9d81be1c5cd1942a7572d99a4fca60, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 69a56a590bc345b42b367a1c73088cce, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ec6a2955cc1374944a4634c6f312985a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2ff26c21ac005534e8af75f8427be9d1, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5a52cc62b98662b4e9ac356027b2b070, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 949e33eb3289ef04ebbeb5f045a5add6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 86bd0d3098d25db4c9c839739557480b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ee10491ef6d5d1d49a270cf6b09bdc19, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9a8bb2498cdcda04c89df15c8ee19159, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3e2cb428b733e56478338c736189a0d5, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3eac11706db359b49bf0ea4b2576b331, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 6bcb907778a00234ea4e7aa9cf238631, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: cb7623a8f0b49cf4dbaa40aea4d4be64, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bebfb74b97b000d4899abbd61f49aa40, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ad374a43a946e7d4496818c6b194809f, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 838bf82eef6d73d42b59f428c4e33417, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4ae60cfa43388e449a7518f36418f81c, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: e08ab46e8fb05dc46b34e54466dc11e3, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0c6aa09f2d128af4d93fb9fc29ecec33, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9c2beb69c900ccf4984646ad420b1e17, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b14164f8f23faae4293baeb84485b3d6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2609c54f376cffc4da1ab9401cc1a36f, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f026be10edaad42429c52aa2200881dd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bffe606b408599b4fad696ddc889a943, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4cfe1df7ed391a24fbe2a2d275e81b06, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 43f86b14a27b52f4f9298c33015b5c26, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d17425af5fc89a443bba05adbe10381a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: df9f338034892c44ebb62d97894772f1, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: de76f7169412b8f4896235a1585d8939, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: a7b47e36715521d4e8a30d2c5b6e83e2, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d5e48d93b64a9ae4f9fd5a728c8f51af, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4462db6b836045640a882a2a4e4022f7, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 56549cdaaf4d81e4387b02698fd3daa0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ee6b94f7bc105c24ea3746dc4141a7eb, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4855895ba1c44959a306beb7ae318fc2, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4f62acf90e41ded439f14c4e15871abd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 317e663e2bb60ea408fe22b908b59295, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1a379f34d4f4f2e408d34f14bfb753ce, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: a2140d2b457bea84881488302059889b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9fa76bd9e9d3a34429b6c90d00678855, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 56c95b785ef8e2447a5a57e4cfaaedf4, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1464721f2283eb14e94a33e812b47be4, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d4ad4f1ddee798f45a20be4efda35c8c, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d660178ed2b38ec4d9b564be11e400cc, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1a56054f6e3838f4e85dce4e71979800, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 953054d108799b942815afb3405983ff, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ae43f25c06eb2d9408a201216b4c3ed7, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2728d4cd2e5956445bcf3ded585c0ac0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 438e12c9002f2c8489c81a2d3472b18d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3673df66324d8f34d9433049c54de631, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b8667bbf66117438986bafc711f920ed, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 7e933e81d3c20c74ea6fdc708a67e3a5, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1d2705674196dfc4da9c25fbacda72d8, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 38db45e6a1a371f42b564b61a03d9f5a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: cb028ce99f9700e4197a49bfdcd525dd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4733c5f009d26ad49b3685117b8d3eb4, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 73eac66b128fc8749a21623225c34541, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f1a03de1aafd166419d7fae7e1017875, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 98c98c657feb956428aa12a4b798bde6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b942c16a6d6a4edaad7c18c7d5762cdf, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: b509fde79093393479908a63060c39eb, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 484167e684014224c9a8bff92b293c6a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 990692c9edb7a214d9b122856cf44929, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 2cd6eda636b9144439141427c0beb50d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9dda6958e834dc644b949b1ff70e432b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 6d2303af7d4c7114681742031c4a0ac6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: be5585168c67af345b1074140733215b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d952c175ec3c6554199fd744548ce50a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: ec3c4a8b42e65c348904e5170307b64e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4bd1f1e23a51a7d428dd152466736b7a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: acb743c666c1ab34e928a0b62c2fa862, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 75d3a1facc5f29d4ea65d3af68af5c9e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 03190b23f0f30f74dacc4ed3992541b6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: c9baea8b9d474934191bc47580d2537c, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 038d627f7b72e904382b2b0f8fb30c29, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f273abee0604ad2409c9bbc9a60e461e, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: c62aefa44f5a8614bb49c5b2a6caaff0, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 3f372cf1215ef50499f9b9d82e05831a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: d61ea23b9fd13af40afe326bb23ac1cd, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9cf2a74d69b1c1e41916d2a7afdff5be, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 925ef87c5bafc37469a2f7ec825dee4b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9af9ea683544b184083cef283557012d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bf7605932bc514945adb3803a0be2ed9, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8a0200d999c05c54fa27292e7f8616ee, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: e06fe30fd4efa954b8f53ccc8da8f46b, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1b6b944de90aa9047929c54d143ff2da, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4ac558de6fb637548a9e3e0483939688, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bea6571c974f89440b3379b928084e50, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: a7d153c984a90a6488110013f4cfd9c3, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5c67033f580359c4581dff1ccffcca91, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: f5626a0b1dc955a43be59ce7ea116678, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 189ea817d962af84893a69754bc2b3f8, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 42bba106679662e4b925dca314de22c2, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 151f9be47337d9e4daef0b8725e30eab, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: bb86ba9d4c5126e48bfef9b0c9550e9d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 1dcabe7b065172d40991aecec9fc6555, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 4dffc2a801520fb4cbe2c11894faf431, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: e00ff2c1207ec064cac7bc321bee406a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5b023183069df224080314a560e6e1ff, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 7daff26e66096cd49a253ca3ab592c03, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8268085ebe170e64aa36672a45f0dd8d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 8733ebe23f85185428441f8c331788fc, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: deb7533ca606ed241b3541310f39ba5d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 9067480af55f5874d8f613b16812f968, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: be4f8a87204f80c46a1af01f7787fb0d, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 71c1514a6bd24e1e882cebbe1904ce04, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 417817ee9b785e341b31ce731f028317, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: efd927768041afd4d90e5d822283f0f4, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 488896fe86105104a8453d9f173cf62a, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 97ad1841d31cfd844995732927b7c958, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5e38df5678b37d6429ef2446d3589e00, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: aaa9829e545a541498f4d93a6a20924f, type: 3} +- Class: 114 + Script: {fileID: 11500000, guid: 5ab90b5d07fb7e240975058b36a342a4, type: 3} +- Class: 115 + Script: {instanceID: 0} +- Class: 128 + Script: {instanceID: 0} +- Class: 135 + Script: {instanceID: 0} +- Class: 136 + Script: {instanceID: 0} +- Class: 137 + Script: {instanceID: 0} +- Class: 157 + Script: {instanceID: 0} +- Class: 196 + Script: {instanceID: 0} +- Class: 210 + Script: {instanceID: 0} +- Class: 212 + Script: {instanceID: 0} +- Class: 213 + Script: {instanceID: 0} +- Class: 215 + Script: {instanceID: 0} +- Class: 222 + Script: {instanceID: 0} +- Class: 223 + Script: {instanceID: 0} +- Class: 224 + Script: {instanceID: 0} +- Class: 258 + Script: {instanceID: 0} +SerializeReferenceClassIdentifiers: [] +Assets: +- Assets/Scenes/Interface test personnage.unity +Dependencies: +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_asset0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_controller0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_exr0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_fbx0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_mat0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_mat1 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_png0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_prefab0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_prefab1 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_resources +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_shader0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_shadergraph0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_tga0 +- C:/Users/Denis/Documents/Unity/Interface Minimale 2025-10-26_23-16-10/Interface + Minimale/OVRAssetBundles/OVRMasterBundle/asset_wav0 diff --git a/Packages/manifest.json b/Packages/manifest.json new file mode 100644 index 0000000..815afff --- /dev/null +++ b/Packages/manifest.json @@ -0,0 +1,57 @@ +{ + "dependencies": { + "com.meta.xr.sdk.core": "81.0.0", + "com.meta.xr.sdk.interaction.ovr": "81.0.0", + "com.meta.xr.sdk.voice": "81.0.0", + "com.meta.xr.simulator": "81.0.0", + "com.unity.2d.sprite": "1.0.0", + "com.unity.ai.inference": "2.4.1", + "com.unity.ai.navigation": "2.0.9", + "com.unity.collab-proxy": "2.10.2", + "com.unity.ide.rider": "3.0.38", + "com.unity.ide.visualstudio": "2.0.25", + "com.unity.inputsystem": "1.14.2", + "com.unity.mobile.android-logcat": "1.4.6", + "com.unity.multiplayer.center": "1.0.0", + "com.unity.nuget.newtonsoft-json": "3.2.2", + "com.unity.render-pipelines.universal": "17.0.4", + "com.unity.test-framework": "1.5.1", + "com.unity.timeline": "1.8.9", + "com.unity.ugui": "2.0.0", + "com.unity.visualscripting": "1.9.9", + "com.unity.xr.management": "4.5.3", + "com.unity.xr.openxr": "1.15.1", + "com.unity.modules.accessibility": "1.0.0", + "com.unity.modules.ai": "1.0.0", + "com.unity.modules.androidjni": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.cloth": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.physics2d": "1.0.0", + "com.unity.modules.screencapture": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.terrainphysics": "1.0.0", + "com.unity.modules.tilemap": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.uielements": "1.0.0", + "com.unity.modules.umbra": "1.0.0", + "com.unity.modules.unityanalytics": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.unitywebrequesttexture": "1.0.0", + "com.unity.modules.unitywebrequestwww": "1.0.0", + "com.unity.modules.vehicles": "1.0.0", + "com.unity.modules.video": "1.0.0", + "com.unity.modules.vr": "1.0.0", + "com.unity.modules.wind": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } +} diff --git a/Packages/manifest.json.private.0 b/Packages/manifest.json.private.0 new file mode 100644 index 0000000..a2728bc --- /dev/null +++ b/Packages/manifest.json.private.0 @@ -0,0 +1,38 @@ +{ + "dependencies": { + "com.unity.collab-proxy": "2.10.2", + "com.unity.multiplayer.center": "1.0.0", + "com.unity.modules.accessibility": "1.0.0", + "com.unity.modules.ai": "1.0.0", + "com.unity.modules.androidjni": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.cloth": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.physics2d": "1.0.0", + "com.unity.modules.screencapture": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.terrainphysics": "1.0.0", + "com.unity.modules.tilemap": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.uielements": "1.0.0", + "com.unity.modules.umbra": "1.0.0", + "com.unity.modules.unityanalytics": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.unitywebrequesttexture": "1.0.0", + "com.unity.modules.unitywebrequestwww": "1.0.0", + "com.unity.modules.vehicles": "1.0.0", + "com.unity.modules.video": "1.0.0", + "com.unity.modules.vr": "1.0.0", + "com.unity.modules.wind": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } +} diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json new file mode 100644 index 0000000..139b0a9 --- /dev/null +++ b/Packages/packages-lock.json @@ -0,0 +1,600 @@ +{ + "dependencies": { + "com.meta.xr.sdk.core": { + "version": "81.0.0", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.meta.xr.sdk.interaction": { + "version": "81.0.0", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0", + "com.unity.textmeshpro": "3.0.6" + }, + "url": "https://packages.unity.com" + }, + "com.meta.xr.sdk.interaction.ovr": { + "version": "81.0.0", + "depth": 0, + "source": "registry", + "dependencies": { + "com.meta.xr.sdk.core": "81.0.0", + "com.meta.xr.sdk.interaction": "81.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.meta.xr.sdk.voice": { + "version": "81.0.0", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.meta.xr.simulator": { + "version": "81.0.0", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.2d.sprite": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.ai.inference": { + "version": "2.4.1", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.burst": "1.8.17", + "com.unity.dt.app-ui": "1.3.1", + "com.unity.collections": "2.4.3", + "com.unity.nuget.newtonsoft-json": "3.2.1", + "com.unity.modules.imageconversion": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ai.navigation": { + "version": "2.0.9", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.ai": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.burst": { + "version": "1.8.24", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.mathematics": "1.2.1", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.collab-proxy": { + "version": "2.10.2", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.collections": { + "version": "2.5.1", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.burst": "1.8.17", + "com.unity.test-framework": "1.4.5", + "com.unity.nuget.mono-cecil": "1.11.4", + "com.unity.test-framework.performance": "3.0.3" + }, + "url": "https://packages.unity.com" + }, + "com.unity.dt.app-ui": { + "version": "1.3.1", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.androidjni": "1.0.0", + "com.unity.modules.uielements": "1.0.0", + "com.unity.modules.screencapture": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ext.nunit": { + "version": "2.0.5", + "depth": 1, + "source": "builtin", + "dependencies": {} + }, + "com.unity.ide.rider": { + "version": "3.0.38", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "1.0.6" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.visualstudio": { + "version": "2.0.25", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.31" + }, + "url": "https://packages.unity.com" + }, + "com.unity.inputsystem": { + "version": "1.14.2", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.uielements": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.mathematics": { + "version": "1.3.2", + "depth": 2, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.mobile.android-logcat": { + "version": "1.4.6", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.multiplayer.center": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.uielements": "1.0.0" + } + }, + "com.unity.nuget.mono-cecil": { + "version": "1.11.4", + "depth": 2, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.nuget.newtonsoft-json": { + "version": "3.2.2", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.render-pipelines.core": { + "version": "17.0.4", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.burst": "1.8.20", + "com.unity.mathematics": "1.3.2", + "com.unity.ugui": "2.0.0", + "com.unity.collections": "2.4.3", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.rendering.light-transport": "1.0.1" + } + }, + "com.unity.render-pipelines.universal": { + "version": "17.0.4", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.render-pipelines.core": "17.0.4", + "com.unity.shadergraph": "17.0.4", + "com.unity.render-pipelines.universal-config": "17.0.3" + } + }, + "com.unity.render-pipelines.universal-config": { + "version": "17.0.3", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.render-pipelines.core": "17.0.3" + } + }, + "com.unity.rendering.light-transport": { + "version": "1.0.1", + "depth": 2, + "source": "builtin", + "dependencies": { + "com.unity.collections": "2.2.0", + "com.unity.mathematics": "1.2.4", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.searcher": { + "version": "4.9.3", + "depth": 2, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.shadergraph": { + "version": "17.0.4", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.render-pipelines.core": "17.0.4", + "com.unity.searcher": "4.9.3" + } + }, + "com.unity.test-framework": { + "version": "1.5.1", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.ext.nunit": "2.0.3", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.test-framework.performance": { + "version": "3.1.0", + "depth": 2, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.33", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.textmeshpro": { + "version": "5.0.0", + "depth": 2, + "source": "builtin", + "dependencies": { + "com.unity.ugui": "2.0.0" + } + }, + "com.unity.timeline": { + "version": "1.8.9", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ugui": { + "version": "2.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0" + } + }, + "com.unity.visualscripting": { + "version": "1.9.9", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.xr.core-utils": { + "version": "2.5.3", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.modules.xr": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.xr.legacyinputhelpers": { + "version": "2.1.12", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.modules.vr": "1.0.0", + "com.unity.modules.xr": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.xr.management": { + "version": "4.5.3", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.xr": "1.0.0", + "com.unity.xr.core-utils": "2.2.1", + "com.unity.modules.subsystems": "1.0.0", + "com.unity.xr.legacyinputhelpers": "2.1.11" + }, + "url": "https://packages.unity.com" + }, + "com.unity.xr.openxr": { + "version": "1.15.1", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.inputsystem": "1.6.3", + "com.unity.xr.core-utils": "2.3.0", + "com.unity.xr.management": "4.4.0", + "com.unity.xr.legacyinputhelpers": "2.1.2" + }, + "url": "https://packages.unity.com" + }, + "com.unity.modules.accessibility": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.ai": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.androidjni": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.animation": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.assetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.audio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.cloth": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.director": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.animation": "1.0.0" + } + }, + "com.unity.modules.hierarchycore": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imageconversion": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imgui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.jsonserialize": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.particlesystem": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics2d": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.screencapture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.subsystems": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.terrain": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.terrainphysics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.modules.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics2d": "1.0.0" + } + }, + "com.unity.modules.ui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.uielements": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.hierarchycore": "1.0.0" + } + }, + "com.unity.modules.umbra": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unityanalytics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.unitywebrequest": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unitywebrequestassetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestaudio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.audio": "1.0.0" + } + }, + "com.unity.modules.unitywebrequesttexture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestwww": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.vehicles": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.video": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.vr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } + }, + "com.unity.modules.wind": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.xr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.subsystems": "1.0.0" + } + } + } +} diff --git a/Packages/packages-lock.json.private.0 b/Packages/packages-lock.json.private.0 new file mode 100644 index 0000000..1adb01a --- /dev/null +++ b/Packages/packages-lock.json.private.0 @@ -0,0 +1,275 @@ +{ + "dependencies": { + "com.unity.collab-proxy": { + "version": "2.10.2", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.multiplayer.center": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.uielements": "1.0.0" + } + }, + "com.unity.modules.accessibility": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.ai": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.androidjni": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.animation": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.assetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.audio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.cloth": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.director": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.animation": "1.0.0" + } + }, + "com.unity.modules.hierarchycore": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imageconversion": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imgui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.jsonserialize": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.particlesystem": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics2d": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.screencapture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.subsystems": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.terrain": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.terrainphysics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.modules.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics2d": "1.0.0" + } + }, + "com.unity.modules.ui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.uielements": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.hierarchycore": "1.0.0" + } + }, + "com.unity.modules.umbra": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unityanalytics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.unitywebrequest": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unitywebrequestassetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestaudio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.audio": "1.0.0" + } + }, + "com.unity.modules.unitywebrequesttexture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestwww": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.vehicles": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.video": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.vr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } + }, + "com.unity.modules.wind": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.xr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.subsystems": "1.0.0" + } + } + } +} diff --git a/ProjectSettings/AudioManager.asset b/ProjectSettings/AudioManager.asset new file mode 100644 index 0000000..cc513b3 --- /dev/null +++ b/ProjectSettings/AudioManager.asset @@ -0,0 +1,20 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!11 &1 +AudioManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Volume: 1 + Rolloff Scale: 1 + Doppler Factor: 1 + Default Speaker Mode: 2 + m_SampleRate: 0 + m_DSPBufferSize: 1024 + m_VirtualVoiceCount: 512 + m_RealVoiceCount: 32 + m_EnableOutputSuspension: 1 + m_SpatializerPlugin: Meta XR Audio + m_AmbisonicDecoderPlugin: Meta XR Audio + m_DisableAudio: 0 + m_VirtualizeEffects: 1 + m_RequestedDSPBufferSize: 0 diff --git a/ProjectSettings/AudioManager.asset.private.0 b/ProjectSettings/AudioManager.asset.private.0 new file mode 100644 index 0000000..df1e809 --- /dev/null +++ b/ProjectSettings/AudioManager.asset.private.0 @@ -0,0 +1,20 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!11 &1 +AudioManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Volume: 1 + Rolloff Scale: 1 + Doppler Factor: 1 + Default Speaker Mode: 2 + m_SampleRate: 0 + m_DSPBufferSize: 1024 + m_VirtualVoiceCount: 512 + m_RealVoiceCount: 32 + m_EnableOutputSuspension: 1 + m_SpatializerPlugin: + m_AmbisonicDecoderPlugin: + m_DisableAudio: 0 + m_VirtualizeEffects: 1 + m_RequestedDSPBufferSize: 0 diff --git a/ProjectSettings/ClusterInputManager.asset b/ProjectSettings/ClusterInputManager.asset new file mode 100644 index 0000000..e7886b2 --- /dev/null +++ b/ProjectSettings/ClusterInputManager.asset @@ -0,0 +1,6 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!236 &1 +ClusterInputManager: + m_ObjectHideFlags: 0 + m_Inputs: [] diff --git a/ProjectSettings/DynamicsManager.asset b/ProjectSettings/DynamicsManager.asset new file mode 100644 index 0000000..fc90ab9 --- /dev/null +++ b/ProjectSettings/DynamicsManager.asset @@ -0,0 +1,36 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!55 &1 +PhysicsManager: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_Gravity: {x: 0, y: -9.81, z: 0} + m_DefaultMaterial: {fileID: 0} + m_BounceThreshold: 2 + m_SleepThreshold: 0.005 + m_DefaultContactOffset: 0.01 + m_DefaultSolverIterations: 6 + m_DefaultSolverVelocityIterations: 1 + m_QueriesHitBackfaces: 0 + m_QueriesHitTriggers: 1 + m_EnableAdaptiveForce: 0 + m_ClothInterCollisionDistance: 0.1 + m_ClothInterCollisionStiffness: 0.2 + m_ContactsGeneration: 1 + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + m_AutoSimulation: 1 + m_AutoSyncTransforms: 0 + m_ReuseCollisionCallbacks: 1 + m_ClothInterCollisionSettingsToggle: 0 + m_ClothGravity: {x: 0, y: -9.81, z: 0} + m_ContactPairsMode: 0 + m_BroadphaseType: 0 + m_WorldBounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 250, y: 250, z: 250} + m_WorldSubdivisions: 8 + m_FrictionType: 0 + m_EnableEnhancedDeterminism: 0 + m_EnableUnifiedHeightmaps: 1 + m_SolverType: 0 + m_DefaultMaxAngularSpeed: 50 diff --git a/ProjectSettings/DynamicsManager.asset.private.0 b/ProjectSettings/DynamicsManager.asset.private.0 new file mode 100644 index 0000000..b126ba8 --- /dev/null +++ b/ProjectSettings/DynamicsManager.asset.private.0 @@ -0,0 +1,37 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!55 &1 +PhysicsManager: + m_ObjectHideFlags: 0 + serializedVersion: 19 + m_Gravity: {x: 0, y: -9.81, z: 0} + m_DefaultMaterial: {fileID: 0} + m_BounceThreshold: 2 + m_DefaultMaxDepenetrationVelocity: 10 + m_SleepThreshold: 0.005 + m_DefaultContactOffset: 0.01 + m_DefaultSolverIterations: 6 + m_DefaultSolverVelocityIterations: 1 + m_QueriesHitBackfaces: 0 + m_QueriesHitTriggers: 1 + m_EnableAdaptiveForce: 0 + m_ClothInterCollisionDistance: 0.1 + m_ClothInterCollisionStiffness: 0.2 + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + m_SimulationMode: 0 + m_AutoSyncTransforms: 0 + m_ReuseCollisionCallbacks: 0 + m_InvokeCollisionCallbacks: 1 + m_ClothInterCollisionSettingsToggle: 0 + m_ClothGravity: {x: 0, y: -9.81, z: 0} + m_ContactPairsMode: 0 + m_BroadphaseType: 0 + m_FrictionType: 0 + m_EnableEnhancedDeterminism: 0 + m_ImprovedPatchFriction: 0 + m_GenerateOnTriggerStayEvents: 1 + m_SolverType: 0 + m_DefaultMaxAngularSpeed: 50 + m_ScratchBufferChunkCount: 4 + m_CurrentBackendId: 4072204805 + m_FastMotionThreshold: 3.4028235e+38 diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset new file mode 100644 index 0000000..6b3dcae --- /dev/null +++ b/ProjectSettings/EditorBuildSettings.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1045 &1 +EditorBuildSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Scenes: + - enabled: 0 + path: Assets/Scenes/Interface v1.unity + guid: 99c9720ab356a0642a771bea13969a05 + - enabled: 0 + path: Assets/Scenes/Interface v2.unity + guid: 0e0df047a90c3ee4ba4b9b3cd38b5459 + - enabled: 0 + path: Assets/Scenes/Interface v3.unity + guid: c6e70315f6619e94dbdbd404406e6c8c + - enabled: 0 + path: Assets/Scenes/Interface v4.unity + guid: 1066b13443f9307449e037f18a6f4733 + - enabled: 0 + path: Assets/Scenes/Interface test personnage.unity + guid: 0d0d476d295809c48aa1efaf1c678e65 + - enabled: 1 + path: Assets/Scenes/Interface v4_test.unity + guid: 12bab32da272a4e439a5c164efc629ed + m_configObjects: + com.unity.input.settings.actions: {fileID: -944628639613478452, guid: 052faaac586de48259a63d0c4782560b, type: 3} + com.unity.xr.management.loader_settings: {fileID: 11400000, guid: ce99cd364a5764642abfbda50b25a8ba, type: 2} + com.unity.xr.openxr.settings4: {fileID: 11400000, guid: 86b9354e750756f4abbd40c5fd4029f1, type: 2} + m_UseUCBPForAssetBundles: 0 diff --git a/ProjectSettings/EditorBuildSettings.asset.private.0 b/ProjectSettings/EditorBuildSettings.asset.private.0 new file mode 100644 index 0000000..7df81c6 --- /dev/null +++ b/ProjectSettings/EditorBuildSettings.asset.private.0 @@ -0,0 +1,9 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1045 &1 +EditorBuildSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Scenes: [] + m_configObjects: {} + m_UseUCBPForAssetBundles: 0 diff --git a/ProjectSettings/EditorSettings.asset b/ProjectSettings/EditorSettings.asset new file mode 100644 index 0000000..fc70035 --- /dev/null +++ b/ProjectSettings/EditorSettings.asset @@ -0,0 +1,49 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!159 &1 +EditorSettings: + m_ObjectHideFlags: 0 + serializedVersion: 14 + m_SerializationMode: 2 + m_LineEndingsForNewScripts: 0 + m_DefaultBehaviorMode: 0 + m_PrefabRegularEnvironment: {fileID: 0} + m_PrefabUIEnvironment: {fileID: 0} + m_SpritePackerMode: 0 + m_SpritePackerCacheSize: 10 + m_SpritePackerPaddingPower: 1 + m_Bc7TextureCompressor: 0 + m_EtcTextureCompressorBehavior: 1 + m_EtcTextureFastCompressor: 1 + m_EtcTextureNormalCompressor: 2 + m_EtcTextureBestCompressor: 4 + m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref + m_ProjectGenerationRootNamespace: + m_EnableTextureStreamingInEditMode: 1 + m_EnableTextureStreamingInPlayMode: 1 + m_EnableEditorAsyncCPUTextureLoading: 0 + m_AsyncShaderCompilation: 1 + m_PrefabModeAllowAutoSave: 1 + m_EnterPlayModeOptionsEnabled: 1 + m_EnterPlayModeOptions: 0 + m_GameObjectNamingDigits: 1 + m_GameObjectNamingScheme: 0 + m_AssetNamingUsesSpace: 1 + m_InspectorUseIMGUIDefaultInspector: 0 + m_UseLegacyProbeSampleCount: 0 + m_SerializeInlineMappingsOnOneLine: 1 + m_DisableCookiesInLightmapper: 0 + m_ShadowmaskStitching: 0 + m_AssetPipelineMode: 1 + m_RefreshImportMode: 0 + m_CacheServerMode: 0 + m_CacheServerEndpoint: + m_CacheServerNamespacePrefix: default + m_CacheServerEnableDownload: 1 + m_CacheServerEnableUpload: 1 + m_CacheServerEnableAuth: 0 + m_CacheServerEnableTls: 0 + m_CacheServerValidationMode: 2 + m_CacheServerDownloadBatchSize: 128 + m_EnableEnlightenBakedGI: 0 + m_ReferencedClipsExactNaming: 1 diff --git a/ProjectSettings/EditorSettings.asset.private.0 b/ProjectSettings/EditorSettings.asset.private.0 new file mode 100644 index 0000000..6a63f22 --- /dev/null +++ b/ProjectSettings/EditorSettings.asset.private.0 @@ -0,0 +1,49 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!159 &1 +EditorSettings: + m_ObjectHideFlags: 0 + serializedVersion: 14 + m_SerializationMode: 2 + m_LineEndingsForNewScripts: 2 + m_DefaultBehaviorMode: 0 + m_PrefabRegularEnvironment: {fileID: 0} + m_PrefabUIEnvironment: {fileID: 0} + m_SpritePackerMode: 0 + m_SpritePackerCacheSize: 10 + m_SpritePackerPaddingPower: 1 + m_Bc7TextureCompressor: 0 + m_EtcTextureCompressorBehavior: 1 + m_EtcTextureFastCompressor: 1 + m_EtcTextureNormalCompressor: 2 + m_EtcTextureBestCompressor: 4 + m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;asmref;rsp;java;cpp;c;mm;m;h + m_ProjectGenerationRootNamespace: + m_EnableTextureStreamingInEditMode: 1 + m_EnableTextureStreamingInPlayMode: 1 + m_EnableEditorAsyncCPUTextureLoading: 0 + m_AsyncShaderCompilation: 1 + m_PrefabModeAllowAutoSave: 1 + m_EnterPlayModeOptionsEnabled: 1 + m_EnterPlayModeOptions: 0 + m_GameObjectNamingDigits: 1 + m_GameObjectNamingScheme: 0 + m_AssetNamingUsesSpace: 1 + m_InspectorUseIMGUIDefaultInspector: 0 + m_UseLegacyProbeSampleCount: 0 + m_SerializeInlineMappingsOnOneLine: 1 + m_DisableCookiesInLightmapper: 0 + m_ShadowmaskStitching: 1 + m_AssetPipelineMode: 1 + m_RefreshImportMode: 0 + m_CacheServerMode: 0 + m_CacheServerEndpoint: + m_CacheServerNamespacePrefix: default + m_CacheServerEnableDownload: 1 + m_CacheServerEnableUpload: 1 + m_CacheServerEnableAuth: 0 + m_CacheServerEnableTls: 0 + m_CacheServerValidationMode: 2 + m_CacheServerDownloadBatchSize: 128 + m_EnableEnlightenBakedGI: 0 + m_ReferencedClipsExactNaming: 1 diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset new file mode 100644 index 0000000..a148e49 --- /dev/null +++ b/ProjectSettings/GraphicsSettings.asset @@ -0,0 +1,67 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!30 &1 +GraphicsSettings: + m_ObjectHideFlags: 0 + serializedVersion: 16 + m_Deferred: + m_Mode: 1 + m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} + m_DeferredReflections: + m_Mode: 1 + m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} + m_ScreenSpaceShadows: + m_Mode: 1 + m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} + m_DepthNormals: + m_Mode: 1 + m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} + m_MotionVectors: + m_Mode: 1 + m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} + m_LightHalo: + m_Mode: 1 + m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} + m_LensFlare: + m_Mode: 1 + m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} + m_VideoShadersIncludeMode: 2 + m_AlwaysIncludedShaders: + - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0} + m_PreloadedShaders: [] + m_PreloadShadersBatchTimeLimit: -1 + m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_CustomRenderPipeline: {fileID: 11400000, guid: 4b83569d67af61e458304325a23e5dfd, type: 2} + m_TransparencySortMode: 0 + m_TransparencySortAxis: {x: 0, y: 0, z: 1} + m_DefaultRenderingPath: 1 + m_DefaultMobileRenderingPath: 1 + m_TierSettings: [] + m_LightmapStripping: 0 + m_FogStripping: 0 + m_InstancingStripping: 0 + m_BrgStripping: 0 + m_LightmapKeepPlain: 1 + m_LightmapKeepDirCombined: 1 + m_LightmapKeepDynamicPlain: 1 + m_LightmapKeepDynamicDirCombined: 1 + m_LightmapKeepShadowMask: 1 + m_LightmapKeepSubtractive: 1 + m_FogKeepLinear: 1 + m_FogKeepExp: 1 + m_FogKeepExp2: 1 + m_AlbedoSwatchInfos: [] + m_RenderPipelineGlobalSettingsMap: + UnityEngine.Rendering.Universal.UniversalRenderPipeline: {fileID: 11400000, guid: 18dc0cd2c080841dea60987a38ce93fa, type: 2} + m_LightsUseLinearIntensity: 1 + m_LightsUseColorTemperature: 1 + m_LogWhenShaderIsCompiled: 0 + m_LightProbeOutsideHullStrategy: 0 + m_CameraRelativeLightCulling: 0 + m_CameraRelativeShadowCulling: 0 diff --git a/ProjectSettings/GraphicsSettings.asset.private.0 b/ProjectSettings/GraphicsSettings.asset.private.0 new file mode 100644 index 0000000..7c0ea0b --- /dev/null +++ b/ProjectSettings/GraphicsSettings.asset.private.0 @@ -0,0 +1,66 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!30 &1 +GraphicsSettings: + m_ObjectHideFlags: 0 + serializedVersion: 16 + m_Deferred: + m_Mode: 1 + m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} + m_DeferredReflections: + m_Mode: 1 + m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} + m_ScreenSpaceShadows: + m_Mode: 1 + m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} + m_DepthNormals: + m_Mode: 1 + m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} + m_MotionVectors: + m_Mode: 1 + m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} + m_LightHalo: + m_Mode: 1 + m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} + m_LensFlare: + m_Mode: 1 + m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} + m_VideoShadersIncludeMode: 2 + m_AlwaysIncludedShaders: + - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0} + m_PreloadedShaders: [] + m_PreloadShadersBatchTimeLimit: -1 + m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_CustomRenderPipeline: {fileID: 0} + m_TransparencySortMode: 0 + m_TransparencySortAxis: {x: 0, y: 0, z: 1} + m_DefaultRenderingPath: 1 + m_DefaultMobileRenderingPath: 1 + m_TierSettings: [] + m_LightmapStripping: 0 + m_FogStripping: 0 + m_InstancingStripping: 0 + m_BrgStripping: 0 + m_LightmapKeepPlain: 1 + m_LightmapKeepDirCombined: 1 + m_LightmapKeepDynamicPlain: 1 + m_LightmapKeepDynamicDirCombined: 1 + m_LightmapKeepShadowMask: 1 + m_LightmapKeepSubtractive: 1 + m_FogKeepLinear: 1 + m_FogKeepExp: 1 + m_FogKeepExp2: 1 + m_AlbedoSwatchInfos: [] + m_RenderPipelineGlobalSettingsMap: {} + m_LightsUseLinearIntensity: 0 + m_LightsUseColorTemperature: 0 + m_LogWhenShaderIsCompiled: 0 + m_LightProbeOutsideHullStrategy: 1 + m_CameraRelativeLightCulling: 0 + m_CameraRelativeShadowCulling: 0 diff --git a/ProjectSettings/InputManager.asset b/ProjectSettings/InputManager.asset new file mode 100644 index 0000000..b16147e --- /dev/null +++ b/ProjectSettings/InputManager.asset @@ -0,0 +1,487 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!13 &1 +InputManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Axes: + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: a + altPositiveButton: d + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: s + altPositiveButton: w + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: mouse 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: mouse 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: mouse 2 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: space + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse X + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse Y + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse ScrollWheel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 2 + joyNum: 0 + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 0 + type: 2 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 1 + type: 2 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 0 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 1 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 2 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 3 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: enter + altNegativeButton: + altPositiveButton: space + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Cancel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: escape + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Enable Debug Button 1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: joystick button 8 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Enable Debug Button 2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: backspace + altNegativeButton: + altPositiveButton: joystick button 9 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Reset + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Next + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: page down + altNegativeButton: + altPositiveButton: joystick button 5 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Previous + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: page up + altNegativeButton: + altPositiveButton: joystick button 4 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Validate + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Persistent + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: right shift + altNegativeButton: + altPositiveButton: joystick button 2 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Multiplier + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: joystick button 3 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 2 + axis: 6 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 2 + axis: 5 + joyNum: 0 diff --git a/ProjectSettings/InputManager.asset.private.0 b/ProjectSettings/InputManager.asset.private.0 new file mode 100644 index 0000000..8068b20 --- /dev/null +++ b/ProjectSettings/InputManager.asset.private.0 @@ -0,0 +1,296 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!13 &1 +InputManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Axes: + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: a + altPositiveButton: d + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: s + altPositiveButton: w + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: mouse 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: mouse 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: mouse 2 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: space + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse X + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse Y + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse ScrollWheel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 2 + joyNum: 0 + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 0 + type: 2 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 1 + type: 2 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 0 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 1 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 2 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 3 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: enter + altNegativeButton: + altPositiveButton: space + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Cancel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: escape + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + m_UsePhysicalKeys: 1 diff --git a/ProjectSettings/MemorySettings.asset b/ProjectSettings/MemorySettings.asset new file mode 100644 index 0000000..5b5face --- /dev/null +++ b/ProjectSettings/MemorySettings.asset @@ -0,0 +1,35 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!387306366 &1 +MemorySettings: + m_ObjectHideFlags: 0 + m_EditorMemorySettings: + m_MainAllocatorBlockSize: -1 + m_ThreadAllocatorBlockSize: -1 + m_MainGfxBlockSize: -1 + m_ThreadGfxBlockSize: -1 + m_CacheBlockSize: -1 + m_TypetreeBlockSize: -1 + m_ProfilerBlockSize: -1 + m_ProfilerEditorBlockSize: -1 + m_BucketAllocatorGranularity: -1 + m_BucketAllocatorBucketsCount: -1 + m_BucketAllocatorBlockSize: -1 + m_BucketAllocatorBlockCount: -1 + m_ProfilerBucketAllocatorGranularity: -1 + m_ProfilerBucketAllocatorBucketsCount: -1 + m_ProfilerBucketAllocatorBlockSize: -1 + m_ProfilerBucketAllocatorBlockCount: -1 + m_TempAllocatorSizeMain: -1 + m_JobTempAllocatorBlockSize: -1 + m_BackgroundJobTempAllocatorBlockSize: -1 + m_JobTempAllocatorReducedBlockSize: -1 + m_TempAllocatorSizeGIBakingWorker: -1 + m_TempAllocatorSizeNavMeshWorker: -1 + m_TempAllocatorSizeAudioWorker: -1 + m_TempAllocatorSizeCloudWorker: -1 + m_TempAllocatorSizeGfx: -1 + m_TempAllocatorSizeJobWorker: -1 + m_TempAllocatorSizeBackgroundWorker: -1 + m_TempAllocatorSizePreloadManager: -1 + m_PlatformMemorySettings: {} diff --git a/ProjectSettings/MultiplayerManager.asset b/ProjectSettings/MultiplayerManager.asset new file mode 100644 index 0000000..2a93664 --- /dev/null +++ b/ProjectSettings/MultiplayerManager.asset @@ -0,0 +1,7 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!655991488 &1 +MultiplayerManager: + m_ObjectHideFlags: 0 + m_EnableMultiplayerRoles: 0 + m_StrippingTypes: {} diff --git a/ProjectSettings/NavMeshAreas.asset b/ProjectSettings/NavMeshAreas.asset new file mode 100644 index 0000000..3b0b7c3 --- /dev/null +++ b/ProjectSettings/NavMeshAreas.asset @@ -0,0 +1,91 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!126 &1 +NavMeshProjectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + areas: + - name: Walkable + cost: 1 + - name: Not Walkable + cost: 1 + - name: Jump + cost: 2 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + m_LastAgentTypeID: -887442657 + m_Settings: + - serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.75 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_SettingNames: + - Humanoid diff --git a/ProjectSettings/NavMeshAreas.asset.private.0 b/ProjectSettings/NavMeshAreas.asset.private.0 new file mode 100644 index 0000000..2e2e369 --- /dev/null +++ b/ProjectSettings/NavMeshAreas.asset.private.0 @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!126 &1 +NavMeshProjectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + areas: + - name: Walkable + cost: 1 + - name: Not Walkable + cost: 1 + - name: Jump + cost: 2 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + m_LastAgentTypeID: -887442657 + m_Settings: + - serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.75 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_SettingNames: + - Humanoid diff --git a/ProjectSettings/PackageManagerSettings.asset b/ProjectSettings/PackageManagerSettings.asset new file mode 100644 index 0000000..be4a797 --- /dev/null +++ b/ProjectSettings/PackageManagerSettings.asset @@ -0,0 +1,43 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_EnablePreviewPackages: 0 + m_EnablePackageDependencies: 0 + m_AdvancedSettingsExpanded: 1 + m_ScopedRegistriesSettingsExpanded: 1 + oneTimeWarningShown: 0 + m_Registries: + - m_Id: main + m_Name: + m_Url: https://packages.unity.com + m_Scopes: [] + m_IsDefault: 1 + m_Capabilities: 7 + m_UserSelectedRegistryName: + m_UserAddingNewScopedRegistry: 0 + m_RegistryInfoDraft: + m_ErrorMessage: + m_Original: + m_Id: + m_Name: + m_Url: + m_Scopes: [] + m_IsDefault: 0 + m_Capabilities: 0 + m_Modified: 0 + m_Name: + m_Url: + m_Scopes: + - + m_SelectedScopeIndex: 0 diff --git a/ProjectSettings/PackageManagerSettings.asset.private.0 b/ProjectSettings/PackageManagerSettings.asset.private.0 new file mode 100644 index 0000000..0008aa5 --- /dev/null +++ b/ProjectSettings/PackageManagerSettings.asset.private.0 @@ -0,0 +1,40 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 53 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_EnablePreReleasePackages: 0 + m_AdvancedSettingsExpanded: 1 + m_ScopedRegistriesSettingsExpanded: 1 + m_SeeAllPackageVersions: 0 + m_DismissPreviewPackagesInUse: 0 + oneTimeWarningShown: 0 + oneTimeDeprecatedPopUpShown: 0 + m_Registries: + - m_Id: main + m_Name: + m_Url: https://packages.unity.com + m_Scopes: [] + m_IsDefault: 1 + m_Capabilities: 7 + m_ConfigSource: 0 + m_Compliance: + m_Status: 0 + m_Violations: [] + m_UserSelectedRegistryName: + m_UserAddingNewScopedRegistry: 0 + m_RegistryInfoDraft: + m_Modified: 0 + m_ErrorMessage: + m_UserModificationsInstanceId: -932 + m_OriginalInstanceId: -934 + m_LoadAssets: 0 diff --git a/ProjectSettings/Physics2DSettings.asset b/ProjectSettings/Physics2DSettings.asset new file mode 100644 index 0000000..6c5cf8a --- /dev/null +++ b/ProjectSettings/Physics2DSettings.asset @@ -0,0 +1,56 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!19 &1 +Physics2DSettings: + m_ObjectHideFlags: 0 + serializedVersion: 4 + m_Gravity: {x: 0, y: -9.81} + m_DefaultMaterial: {fileID: 0} + m_VelocityIterations: 8 + m_PositionIterations: 3 + m_VelocityThreshold: 1 + m_MaxLinearCorrection: 0.2 + m_MaxAngularCorrection: 8 + m_MaxTranslationSpeed: 100 + m_MaxRotationSpeed: 360 + m_BaumgarteScale: 0.2 + m_BaumgarteTimeOfImpactScale: 0.75 + m_TimeToSleep: 0.5 + m_LinearSleepTolerance: 0.01 + m_AngularSleepTolerance: 2 + m_DefaultContactOffset: 0.01 + m_JobOptions: + serializedVersion: 2 + useMultithreading: 0 + useConsistencySorting: 0 + m_InterpolationPosesPerJob: 100 + m_NewContactsPerJob: 30 + m_CollideContactsPerJob: 100 + m_ClearFlagsPerJob: 200 + m_ClearBodyForcesPerJob: 200 + m_SyncDiscreteFixturesPerJob: 50 + m_SyncContinuousFixturesPerJob: 50 + m_FindNearestContactsPerJob: 100 + m_UpdateTriggerContactsPerJob: 100 + m_IslandSolverCostThreshold: 100 + m_IslandSolverBodyCostScale: 1 + m_IslandSolverContactCostScale: 10 + m_IslandSolverJointCostScale: 10 + m_IslandSolverBodiesPerJob: 50 + m_IslandSolverContactsPerJob: 50 + m_AutoSimulation: 1 + m_QueriesHitTriggers: 1 + m_QueriesStartInColliders: 1 + m_CallbacksOnDisable: 1 + m_ReuseCollisionCallbacks: 0 + m_AutoSyncTransforms: 0 + m_AlwaysShowColliders: 0 + m_ShowColliderSleep: 1 + m_ShowColliderContacts: 0 + m_ShowColliderAABB: 0 + m_ContactArrowScale: 0.2 + m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} + m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} + m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} + m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff diff --git a/ProjectSettings/Physics2DSettings.asset.private.0 b/ProjectSettings/Physics2DSettings.asset.private.0 new file mode 100644 index 0000000..c00eeb4 --- /dev/null +++ b/ProjectSettings/Physics2DSettings.asset.private.0 @@ -0,0 +1,56 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!19 &1 +Physics2DSettings: + m_ObjectHideFlags: 0 + serializedVersion: 6 + m_Gravity: {x: 0, y: -9.81} + m_DefaultMaterial: {fileID: 0} + m_VelocityIterations: 8 + m_PositionIterations: 3 + m_BounceThreshold: 1 + m_MaxLinearCorrection: 0.2 + m_MaxAngularCorrection: 8 + m_MaxTranslationSpeed: 100 + m_MaxRotationSpeed: 360 + m_BaumgarteScale: 0.2 + m_BaumgarteTimeOfImpactScale: 0.75 + m_TimeToSleep: 0.5 + m_LinearSleepTolerance: 0.01 + m_AngularSleepTolerance: 2 + m_DefaultContactOffset: 0.01 + m_ContactThreshold: 0 + m_JobOptions: + serializedVersion: 2 + useMultithreading: 0 + useConsistencySorting: 0 + m_InterpolationPosesPerJob: 100 + m_NewContactsPerJob: 30 + m_CollideContactsPerJob: 100 + m_ClearFlagsPerJob: 200 + m_ClearBodyForcesPerJob: 200 + m_SyncDiscreteFixturesPerJob: 50 + m_SyncContinuousFixturesPerJob: 50 + m_FindNearestContactsPerJob: 100 + m_UpdateTriggerContactsPerJob: 100 + m_IslandSolverCostThreshold: 100 + m_IslandSolverBodyCostScale: 1 + m_IslandSolverContactCostScale: 10 + m_IslandSolverJointCostScale: 10 + m_IslandSolverBodiesPerJob: 50 + m_IslandSolverContactsPerJob: 50 + m_SimulationMode: 0 + m_SimulationLayers: + serializedVersion: 2 + m_Bits: 4294967295 + m_MaxSubStepCount: 4 + m_MinSubStepFPS: 30 + m_UseSubStepping: 0 + m_UseSubStepContacts: 0 + m_QueriesHitTriggers: 1 + m_QueriesStartInColliders: 1 + m_CallbacksOnDisable: 1 + m_ReuseCollisionCallbacks: 1 + m_AutoSyncTransforms: 0 + m_GizmoOptions: 10 + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff diff --git a/ProjectSettings/PresetManager.asset b/ProjectSettings/PresetManager.asset new file mode 100644 index 0000000..67a94da --- /dev/null +++ b/ProjectSettings/PresetManager.asset @@ -0,0 +1,7 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1386491679 &1 +PresetManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_DefaultPresets: {} diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset new file mode 100644 index 0000000..98a3c0d --- /dev/null +++ b/ProjectSettings/ProjectSettings.asset @@ -0,0 +1,947 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!129 &1 +PlayerSettings: + m_ObjectHideFlags: 0 + serializedVersion: 28 + productGUID: a4ce54a11908e8444b4b41da64354c41 + AndroidProfiler: 0 + AndroidFilterTouchesWhenObscured: 0 + AndroidEnableSustainedPerformanceMode: 0 + defaultScreenOrientation: 3 + targetDevice: 2 + useOnDemandResources: 0 + accelerometerFrequency: 60 + companyName: DefaultCompany + productName: Interface Minimale + defaultCursor: {fileID: 0} + cursorHotspot: {x: 0, y: 0} + m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} + m_ShowUnitySplashScreen: 1 + m_ShowUnitySplashLogo: 1 + m_SplashScreenOverlayOpacity: 1 + m_SplashScreenAnimation: 1 + m_SplashScreenLogoStyle: 1 + m_SplashScreenDrawMode: 0 + m_SplashScreenBackgroundAnimationZoom: 1 + m_SplashScreenLogoAnimationZoom: 1 + m_SplashScreenBackgroundLandscapeAspect: 1 + m_SplashScreenBackgroundPortraitAspect: 1 + m_SplashScreenBackgroundLandscapeUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenBackgroundPortraitUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenLogos: [] + m_VirtualRealitySplashScreen: {fileID: 0} + m_HolographicTrackingLossScreen: {fileID: 0} + defaultScreenWidth: 1024 + defaultScreenHeight: 768 + defaultScreenWidthWeb: 960 + defaultScreenHeightWeb: 600 + m_StereoRenderingPath: 2 + m_ActiveColorSpace: 1 + unsupportedMSAAFallback: 0 + m_SpriteBatchMaxVertexCount: 65535 + m_SpriteBatchVertexThreshold: 300 + m_MTRendering: 1 + mipStripping: 0 + numberOfMipsStripped: 0 + numberOfMipsStrippedPerMipmapLimitGroup: {} + m_StackTraceTypes: 010000000100000001000000010000000100000001000000 + iosShowActivityIndicatorOnLoading: -1 + androidShowActivityIndicatorOnLoading: -1 + iosUseCustomAppBackgroundBehavior: 0 + allowedAutorotateToPortrait: 1 + allowedAutorotateToPortraitUpsideDown: 1 + allowedAutorotateToLandscapeRight: 1 + allowedAutorotateToLandscapeLeft: 1 + useOSAutorotation: 1 + use32BitDisplayBuffer: 1 + preserveFramebufferAlpha: 0 + disableDepthAndStencilBuffers: 0 + androidStartInFullscreen: 1 + androidRenderOutsideSafeArea: 1 + androidUseSwappy: 0 + androidBlitType: 0 + androidResizeableActivity: 1 + androidDefaultWindowWidth: 1920 + androidDefaultWindowHeight: 1080 + androidMinimumWindowWidth: 400 + androidMinimumWindowHeight: 300 + androidFullscreenMode: 1 + androidAutoRotationBehavior: 1 + androidPredictiveBackSupport: 1 + androidApplicationEntry: 2 + defaultIsNativeResolution: 1 + macRetinaSupport: 1 + runInBackground: 1 + muteOtherAudioSources: 0 + Prepare IOS For Recording: 0 + Force IOS Speakers When Recording: 0 + audioSpatialExperience: 0 + deferSystemGesturesMode: 0 + hideHomeButton: 0 + submitAnalytics: 1 + usePlayerLog: 1 + dedicatedServerOptimizations: 1 + bakeCollisionMeshes: 0 + forceSingleInstance: 0 + useFlipModelSwapchain: 1 + resizableWindow: 0 + useMacAppStoreValidation: 0 + macAppStoreCategory: public.app-category.games + gpuSkinning: 1 + meshDeformation: 2 + xboxPIXTextureCapture: 0 + xboxEnableAvatar: 0 + xboxEnableKinect: 0 + xboxEnableKinectAutoTracking: 0 + xboxEnableFitness: 0 + visibleInBackground: 1 + allowFullscreenSwitch: 1 + fullscreenMode: 1 + xboxSpeechDB: 0 + xboxEnableHeadOrientation: 0 + xboxEnableGuest: 0 + xboxEnablePIXSampling: 0 + metalFramebufferOnly: 0 + xboxOneResolution: 0 + xboxOneSResolution: 0 + xboxOneXResolution: 3 + xboxOneMonoLoggingLevel: 0 + xboxOneLoggingLevel: 1 + xboxOneDisableEsram: 0 + xboxOneEnableTypeOptimization: 0 + xboxOnePresentImmediateThreshold: 0 + switchQueueCommandMemory: 1048576 + switchQueueControlMemory: 16384 + switchQueueComputeMemory: 262144 + switchNVNShaderPoolsGranularity: 33554432 + switchNVNDefaultPoolsGranularity: 16777216 + switchNVNOtherPoolsGranularity: 16777216 + switchGpuScratchPoolGranularity: 2097152 + switchAllowGpuScratchShrinking: 0 + switchNVNMaxPublicTextureIDCount: 0 + switchNVNMaxPublicSamplerIDCount: 0 + switchMaxWorkerMultiple: 8 + switchNVNGraphicsFirmwareMemory: 32 + vulkanNumSwapchainBuffers: 3 + vulkanEnableSetSRGBWrite: 0 + vulkanEnablePreTransform: 1 + vulkanEnableLateAcquireNextImage: 0 + vulkanEnableCommandBufferRecycling: 1 + loadStoreDebugModeEnabled: 0 + visionOSBundleVersion: 1.0 + tvOSBundleVersion: 1.0 + bundleVersion: 0.1.0 + preloadedAssets: + - {fileID: 11400000, guid: c048657e02144134cb64e7caa1563f50, type: 2} + - {fileID: -944628639613478452, guid: 052faaac586de48259a63d0c4782560b, type: 3} + metroInputSource: 0 + wsaTransparentSwapchain: 0 + m_HolographicPauseOnTrackingLoss: 1 + xboxOneDisableKinectGpuReservation: 1 + xboxOneEnable7thCore: 1 + vrSettings: + enable360StereoCapture: 0 + isWsaHolographicRemotingEnabled: 0 + enableFrameTimingStats: 0 + enableOpenGLProfilerGPURecorders: 1 + allowHDRDisplaySupport: 0 + useHDRDisplay: 0 + hdrBitDepth: 0 + m_ColorGamuts: 00000000 + targetPixelDensity: 30 + resolutionScalingMode: 0 + resetResolutionOnWindowResize: 0 + androidSupportedAspectRatio: 1 + androidMaxAspectRatio: 2.4 + androidMinAspectRatio: 1 + applicationIdentifier: + Android: fr.bob.lifprojet.riz.au.lait.interfaceunity.client + Standalone: com.Unity-Technologies.com.unity.template.urp-blank + iPhone: com.Unity-Technologies.com.unity.template.urp-blank + buildNumber: + Standalone: 0 + VisionOS: 0 + iPhone: 0 + tvOS: 0 + overrideDefaultApplicationIdentifier: 1 + AndroidBundleVersionCode: 1 + AndroidMinSdkVersion: 32 + AndroidTargetSdkVersion: 32 + AndroidPreferredInstallLocation: 0 + aotOptions: + stripEngineCode: 1 + iPhoneStrippingLevel: 0 + iPhoneScriptCallOptimization: 0 + ForceInternetPermission: 1 + ForceSDCardPermission: 0 + CreateWallpaper: 0 + androidSplitApplicationBinary: 0 + keepLoadedShadersAlive: 0 + StripUnusedMeshComponents: 0 + strictShaderVariantMatching: 0 + VertexChannelCompressionMask: 4054 + iPhoneSdkVersion: 988 + iOSSimulatorArchitecture: 0 + iOSTargetOSVersionString: 13.0 + tvOSSdkVersion: 0 + tvOSSimulatorArchitecture: 0 + tvOSRequireExtendedGameController: 0 + tvOSTargetOSVersionString: 13.0 + VisionOSSdkVersion: 0 + VisionOSTargetOSVersionString: 1.0 + uIPrerenderedIcon: 0 + uIRequiresPersistentWiFi: 0 + uIRequiresFullScreen: 1 + uIStatusBarHidden: 1 + uIExitOnSuspend: 0 + uIStatusBarStyle: 0 + appleTVSplashScreen: {fileID: 0} + appleTVSplashScreen2x: {fileID: 0} + tvOSSmallIconLayers: [] + tvOSSmallIconLayers2x: [] + tvOSLargeIconLayers: [] + tvOSLargeIconLayers2x: [] + tvOSTopShelfImageLayers: [] + tvOSTopShelfImageLayers2x: [] + tvOSTopShelfImageWideLayers: [] + tvOSTopShelfImageWideLayers2x: [] + iOSLaunchScreenType: 0 + iOSLaunchScreenPortrait: {fileID: 0} + iOSLaunchScreenLandscape: {fileID: 0} + iOSLaunchScreenBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreenFillPct: 100 + iOSLaunchScreenSize: 100 + iOSLaunchScreeniPadType: 0 + iOSLaunchScreeniPadImage: {fileID: 0} + iOSLaunchScreeniPadBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreeniPadFillPct: 100 + iOSLaunchScreeniPadSize: 100 + iOSLaunchScreenCustomStoryboardPath: + iOSLaunchScreeniPadCustomStoryboardPath: + iOSDeviceRequirements: [] + iOSURLSchemes: [] + macOSURLSchemes: [] + iOSBackgroundModes: 0 + iOSMetalForceHardShadows: 0 + metalEditorSupport: 1 + metalAPIValidation: 1 + metalCompileShaderBinary: 0 + iOSRenderExtraFrameOnPause: 0 + iosCopyPluginsCodeInsteadOfSymlink: 0 + appleDeveloperTeamID: + iOSManualSigningProvisioningProfileID: + tvOSManualSigningProvisioningProfileID: + VisionOSManualSigningProvisioningProfileID: + iOSManualSigningProvisioningProfileType: 0 + tvOSManualSigningProvisioningProfileType: 0 + VisionOSManualSigningProvisioningProfileType: 0 + appleEnableAutomaticSigning: 0 + iOSRequireARKit: 0 + iOSAutomaticallyDetectAndAddCapabilities: 1 + appleEnableProMotion: 0 + shaderPrecisionModel: 0 + clonedFromGUID: 3c72c65a16f0acb438eed22b8b16c24a + templatePackageId: com.unity.template.urp-blank@17.0.11 + templateDefaultScene: Assets/Scenes/SampleScene.unity + useCustomMainManifest: 0 + useCustomLauncherManifest: 0 + useCustomMainGradleTemplate: 0 + useCustomLauncherGradleManifest: 0 + useCustomBaseGradleTemplate: 0 + useCustomGradlePropertiesTemplate: 0 + useCustomGradleSettingsTemplate: 0 + useCustomProguardFile: 0 + AndroidTargetArchitectures: 2 + AndroidSplashScreenScale: 0 + androidSplashScreen: {fileID: 0} + AndroidKeystoreName: + AndroidKeyaliasName: + AndroidEnableArmv9SecurityFeatures: 0 + AndroidEnableArm64MTE: 0 + AndroidBuildApkPerCpuArchitecture: 0 + AndroidTVCompatibility: 0 + AndroidIsGame: 1 + androidAppCategory: 8 + useAndroidAppCategory: 1 + androidAppCategoryOther: + AndroidEnableTango: 0 + androidEnableBanner: 1 + androidUseLowAccuracyLocation: 0 + androidUseCustomKeystore: 0 + m_AndroidBanners: + - width: 320 + height: 180 + banner: {fileID: 0} + androidGamepadSupportLevel: 0 + AndroidMinifyRelease: 0 + AndroidMinifyDebug: 0 + AndroidValidateAppBundleSize: 1 + AndroidAppBundleSizeToValidate: 150 + AndroidReportGooglePlayAppDependencies: 1 + androidSymbolsSizeThreshold: 800 + m_BuildTargetIcons: [] + m_BuildTargetPlatformIcons: + - m_BuildTarget: iPhone + m_Icons: + - m_Textures: [] + m_Width: 180 + m_Height: 180 + m_Kind: 0 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 120 + m_Height: 120 + m_Kind: 0 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 167 + m_Height: 167 + m_Kind: 0 + m_SubKind: iPad + - m_Textures: [] + m_Width: 152 + m_Height: 152 + m_Kind: 0 + m_SubKind: iPad + - m_Textures: [] + m_Width: 76 + m_Height: 76 + m_Kind: 0 + m_SubKind: iPad + - m_Textures: [] + m_Width: 120 + m_Height: 120 + m_Kind: 3 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 80 + m_Height: 80 + m_Kind: 3 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 80 + m_Height: 80 + m_Kind: 3 + m_SubKind: iPad + - m_Textures: [] + m_Width: 40 + m_Height: 40 + m_Kind: 3 + m_SubKind: iPad + - m_Textures: [] + m_Width: 87 + m_Height: 87 + m_Kind: 1 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 58 + m_Height: 58 + m_Kind: 1 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 29 + m_Height: 29 + m_Kind: 1 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 58 + m_Height: 58 + m_Kind: 1 + m_SubKind: iPad + - m_Textures: [] + m_Width: 29 + m_Height: 29 + m_Kind: 1 + m_SubKind: iPad + - m_Textures: [] + m_Width: 60 + m_Height: 60 + m_Kind: 2 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 40 + m_Height: 40 + m_Kind: 2 + m_SubKind: iPhone + - m_Textures: [] + m_Width: 40 + m_Height: 40 + m_Kind: 2 + m_SubKind: iPad + - m_Textures: [] + m_Width: 20 + m_Height: 20 + m_Kind: 2 + m_SubKind: iPad + - m_Textures: [] + m_Width: 1024 + m_Height: 1024 + m_Kind: 4 + m_SubKind: App Store + - m_BuildTarget: Android + m_Icons: + - m_Textures: [] + m_Width: 432 + m_Height: 432 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 324 + m_Height: 324 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 216 + m_Height: 216 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 162 + m_Height: 162 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 108 + m_Height: 108 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 81 + m_Height: 81 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 192 + m_Height: 192 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 144 + m_Height: 144 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 96 + m_Height: 96 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 72 + m_Height: 72 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 48 + m_Height: 48 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 36 + m_Height: 36 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 192 + m_Height: 192 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 144 + m_Height: 144 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 96 + m_Height: 96 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 72 + m_Height: 72 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 48 + m_Height: 48 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 36 + m_Height: 36 + m_Kind: 0 + m_SubKind: + - m_BuildTarget: tvOS + m_Icons: + - m_Textures: [] + m_Width: 1280 + m_Height: 768 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 800 + m_Height: 480 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 400 + m_Height: 240 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 4640 + m_Height: 1440 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 2320 + m_Height: 720 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 3840 + m_Height: 1440 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 1920 + m_Height: 720 + m_Kind: 1 + m_SubKind: + m_BuildTargetBatching: [] + m_BuildTargetShaderSettings: [] + m_BuildTargetGraphicsJobs: + - m_BuildTarget: AndroidPlayer + m_GraphicsJobs: 1 + m_BuildTargetGraphicsJobMode: + - m_BuildTarget: AndroidPlayer + m_GraphicsJobMode: 1 + m_BuildTargetGraphicsAPIs: + - m_BuildTarget: iOSSupport + m_APIs: 10000000 + m_Automatic: 1 + - m_BuildTarget: AndroidPlayer + m_APIs: 150000000b000000 + m_Automatic: 0 + - m_BuildTarget: WindowsStandaloneSupport + m_APIs: 02000000 + m_Automatic: 0 + m_BuildTargetVRSettings: [] + m_DefaultShaderChunkSizeInMB: 16 + m_DefaultShaderChunkCount: 0 + openGLRequireES31: 0 + openGLRequireES31AEP: 0 + openGLRequireES32: 0 + m_TemplateCustomTags: {} + mobileMTRendering: + Android: 1 + iPhone: 1 + tvOS: 1 + m_BuildTargetGroupLightmapEncodingQuality: + - serializedVersion: 2 + m_BuildTarget: Android + m_EncodingQuality: 1 + m_BuildTargetGroupHDRCubemapEncodingQuality: [] + m_BuildTargetGroupLightmapSettings: [] + m_BuildTargetGroupLoadStoreDebugModeSettings: [] + m_BuildTargetNormalMapEncoding: + - m_BuildTarget: Android + m_Encoding: 1 + m_BuildTargetDefaultTextureCompressionFormat: + - serializedVersion: 3 + m_BuildTarget: Android + m_Formats: 03000000 + playModeTestRunnerEnabled: 0 + runPlayModeTestAsEditModeTest: 0 + actionOnDotNetUnhandledException: 1 + editorGfxJobOverride: 1 + enableInternalProfiler: 0 + logObjCUncaughtExceptions: 1 + enableCrashReportAPI: 0 + cameraUsageDescription: + locationUsageDescription: + microphoneUsageDescription: + bluetoothUsageDescription: + macOSTargetOSVersion: 11.0 + switchNMETAOverride: + switchNetLibKey: + switchSocketMemoryPoolSize: 6144 + switchSocketAllocatorPoolSize: 128 + switchSocketConcurrencyLimit: 14 + switchScreenResolutionBehavior: 2 + switchUseCPUProfiler: 0 + switchEnableFileSystemTrace: 0 + switchLTOSetting: 0 + switchApplicationID: 0x01004b9000490000 + switchNSODependencies: + switchCompilerFlags: + switchTitleNames_0: + switchTitleNames_1: + switchTitleNames_2: + switchTitleNames_3: + switchTitleNames_4: + switchTitleNames_5: + switchTitleNames_6: + switchTitleNames_7: + switchTitleNames_8: + switchTitleNames_9: + switchTitleNames_10: + switchTitleNames_11: + switchTitleNames_12: + switchTitleNames_13: + switchTitleNames_14: + switchTitleNames_15: + switchPublisherNames_0: + switchPublisherNames_1: + switchPublisherNames_2: + switchPublisherNames_3: + switchPublisherNames_4: + switchPublisherNames_5: + switchPublisherNames_6: + switchPublisherNames_7: + switchPublisherNames_8: + switchPublisherNames_9: + switchPublisherNames_10: + switchPublisherNames_11: + switchPublisherNames_12: + switchPublisherNames_13: + switchPublisherNames_14: + switchPublisherNames_15: + switchIcons_0: {fileID: 0} + switchIcons_1: {fileID: 0} + switchIcons_2: {fileID: 0} + switchIcons_3: {fileID: 0} + switchIcons_4: {fileID: 0} + switchIcons_5: {fileID: 0} + switchIcons_6: {fileID: 0} + switchIcons_7: {fileID: 0} + switchIcons_8: {fileID: 0} + switchIcons_9: {fileID: 0} + switchIcons_10: {fileID: 0} + switchIcons_11: {fileID: 0} + switchIcons_12: {fileID: 0} + switchIcons_13: {fileID: 0} + switchIcons_14: {fileID: 0} + switchIcons_15: {fileID: 0} + switchSmallIcons_0: {fileID: 0} + switchSmallIcons_1: {fileID: 0} + switchSmallIcons_2: {fileID: 0} + switchSmallIcons_3: {fileID: 0} + switchSmallIcons_4: {fileID: 0} + switchSmallIcons_5: {fileID: 0} + switchSmallIcons_6: {fileID: 0} + switchSmallIcons_7: {fileID: 0} + switchSmallIcons_8: {fileID: 0} + switchSmallIcons_9: {fileID: 0} + switchSmallIcons_10: {fileID: 0} + switchSmallIcons_11: {fileID: 0} + switchSmallIcons_12: {fileID: 0} + switchSmallIcons_13: {fileID: 0} + switchSmallIcons_14: {fileID: 0} + switchSmallIcons_15: {fileID: 0} + switchManualHTML: + switchAccessibleURLs: + switchLegalInformation: + switchMainThreadStackSize: 1048576 + switchPresenceGroupId: + switchLogoHandling: 0 + switchReleaseVersion: 0 + switchDisplayVersion: 1.0.0 + switchStartupUserAccount: 0 + switchSupportedLanguagesMask: 0 + switchLogoType: 0 + switchApplicationErrorCodeCategory: + switchUserAccountSaveDataSize: 0 + switchUserAccountSaveDataJournalSize: 0 + switchApplicationAttribute: 0 + switchCardSpecSize: -1 + switchCardSpecClock: -1 + switchRatingsMask: 0 + switchRatingsInt_0: 0 + switchRatingsInt_1: 0 + switchRatingsInt_2: 0 + switchRatingsInt_3: 0 + switchRatingsInt_4: 0 + switchRatingsInt_5: 0 + switchRatingsInt_6: 0 + switchRatingsInt_7: 0 + switchRatingsInt_8: 0 + switchRatingsInt_9: 0 + switchRatingsInt_10: 0 + switchRatingsInt_11: 0 + switchRatingsInt_12: 0 + switchLocalCommunicationIds_0: + switchLocalCommunicationIds_1: + switchLocalCommunicationIds_2: + switchLocalCommunicationIds_3: + switchLocalCommunicationIds_4: + switchLocalCommunicationIds_5: + switchLocalCommunicationIds_6: + switchLocalCommunicationIds_7: + switchParentalControl: 0 + switchAllowsScreenshot: 1 + switchAllowsVideoCapturing: 1 + switchAllowsRuntimeAddOnContentInstall: 0 + switchDataLossConfirmation: 0 + switchUserAccountLockEnabled: 0 + switchSystemResourceMemory: 16777216 + switchSupportedNpadStyles: 22 + switchNativeFsCacheSize: 32 + switchIsHoldTypeHorizontal: 0 + switchSupportedNpadCount: 8 + switchEnableTouchScreen: 1 + switchSocketConfigEnabled: 0 + switchTcpInitialSendBufferSize: 32 + switchTcpInitialReceiveBufferSize: 64 + switchTcpAutoSendBufferSizeMax: 256 + switchTcpAutoReceiveBufferSizeMax: 256 + switchUdpSendBufferSize: 9 + switchUdpReceiveBufferSize: 42 + switchSocketBufferEfficiency: 4 + switchSocketInitializeEnabled: 1 + switchNetworkInterfaceManagerInitializeEnabled: 1 + switchDisableHTCSPlayerConnection: 0 + switchUseNewStyleFilepaths: 0 + switchUseLegacyFmodPriorities: 0 + switchUseMicroSleepForYield: 1 + switchEnableRamDiskSupport: 0 + switchMicroSleepForYieldTime: 25 + switchRamDiskSpaceSize: 12 + switchUpgradedPlayerSettingsToNMETA: 0 + ps4NPAgeRating: 12 + ps4NPTitleSecret: + ps4NPTrophyPackPath: + ps4ParentalLevel: 11 + ps4ContentID: ED1633-NPXX51362_00-0000000000000000 + ps4Category: 0 + ps4MasterVersion: 01.00 + ps4AppVersion: 01.00 + ps4AppType: 0 + ps4ParamSfxPath: + ps4VideoOutPixelFormat: 0 + ps4VideoOutInitialWidth: 1920 + ps4VideoOutBaseModeInitialWidth: 1920 + ps4VideoOutReprojectionRate: 60 + ps4PronunciationXMLPath: + ps4PronunciationSIGPath: + ps4BackgroundImagePath: + ps4StartupImagePath: + ps4StartupImagesFolder: + ps4IconImagesFolder: + ps4SaveDataImagePath: + ps4SdkOverride: + ps4BGMPath: + ps4ShareFilePath: + ps4ShareOverlayImagePath: + ps4PrivacyGuardImagePath: + ps4ExtraSceSysFile: + ps4NPtitleDatPath: + ps4RemotePlayKeyAssignment: -1 + ps4RemotePlayKeyMappingDir: + ps4PlayTogetherPlayerCount: 0 + ps4EnterButtonAssignment: 2 + ps4ApplicationParam1: 0 + ps4ApplicationParam2: 0 + ps4ApplicationParam3: 0 + ps4ApplicationParam4: 0 + ps4DownloadDataSize: 0 + ps4GarlicHeapSize: 2048 + ps4ProGarlicHeapSize: 2560 + playerPrefsMaxSize: 32768 + ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ + ps4pnSessions: 1 + ps4pnPresence: 1 + ps4pnFriends: 1 + ps4pnGameCustomData: 1 + playerPrefsSupport: 0 + enableApplicationExit: 0 + resetTempFolder: 1 + restrictedAudioUsageRights: 0 + ps4UseResolutionFallback: 0 + ps4ReprojectionSupport: 0 + ps4UseAudio3dBackend: 0 + ps4UseLowGarlicFragmentationMode: 1 + ps4SocialScreenEnabled: 0 + ps4ScriptOptimizationLevel: 2 + ps4Audio3dVirtualSpeakerCount: 14 + ps4attribCpuUsage: 0 + ps4PatchPkgPath: + ps4PatchLatestPkgPath: + ps4PatchChangeinfoPath: + ps4PatchDayOne: 0 + ps4attribUserManagement: 0 + ps4attribMoveSupport: 0 + ps4attrib3DSupport: 0 + ps4attribShareSupport: 0 + ps4attribExclusiveVR: 0 + ps4disableAutoHideSplash: 0 + ps4videoRecordingFeaturesUsed: 0 + ps4contentSearchFeaturesUsed: 0 + ps4CompatibilityPS5: 0 + ps4AllowPS5Detection: 0 + ps4GPU800MHz: 1 + ps4attribEyeToEyeDistanceSettingVR: 0 + ps4IncludedModules: [] + ps4attribVROutputEnabled: 0 + monoEnv: + splashScreenBackgroundSourceLandscape: {fileID: 0} + splashScreenBackgroundSourcePortrait: {fileID: 0} + blurSplashScreenBackground: 1 + spritePackerPolicy: + webGLMemorySize: 32 + webGLExceptionSupport: 1 + webGLNameFilesAsHashes: 0 + webGLShowDiagnostics: 0 + webGLDataCaching: 1 + webGLDebugSymbols: 0 + webGLEmscriptenArgs: + webGLModulesDirectory: + webGLTemplate: APPLICATION:Default + webGLAnalyzeBuildSize: 0 + webGLUseEmbeddedResources: 0 + webGLCompressionFormat: 0 + webGLWasmArithmeticExceptions: 0 + webGLLinkerTarget: 1 + webGLThreadsSupport: 0 + webGLDecompressionFallback: 0 + webGLInitialMemorySize: 32 + webGLMaximumMemorySize: 2048 + webGLMemoryGrowthMode: 2 + webGLMemoryLinearGrowthStep: 16 + webGLMemoryGeometricGrowthStep: 0.2 + webGLMemoryGeometricGrowthCap: 96 + webGLEnableWebGPU: 0 + webGLPowerPreference: 2 + webGLWebAssemblyTable: 0 + webGLWebAssemblyBigInt: 0 + webGLCloseOnQuit: 0 + webWasm2023: 0 + scriptingDefineSymbols: + Android: USE_INPUT_SYSTEM_POSE_CONTROL;USE_STICK_CONTROL_THUMBSTICKS + Standalone: USE_INPUT_SYSTEM_POSE_CONTROL;USE_STICK_CONTROL_THUMBSTICKS + Windows Store Apps: USE_INPUT_SYSTEM_POSE_CONTROL;USE_STICK_CONTROL_THUMBSTICKS + additionalCompilerArguments: {} + platformArchitecture: {} + scriptingBackend: + Android: 1 + il2cppCompilerConfiguration: {} + il2cppCodeGeneration: {} + il2cppStacktraceInformation: {} + managedStrippingLevel: {} + incrementalIl2cppBuild: {} + suppressCommonWarnings: 1 + allowUnsafeCode: 0 + useDeterministicCompilation: 1 + additionalIl2CppArgs: + scriptingRuntimeVersion: 1 + gcIncremental: 1 + gcWBarrierValidation: 0 + apiCompatibilityLevelPerPlatform: {} + editorAssembliesCompatibilityLevel: 1 + m_RenderingPath: 1 + m_MobileRenderingPath: 1 + metroPackageName: Interface Minimale + metroPackageVersion: + metroCertificatePath: + metroCertificatePassword: + metroCertificateSubject: + metroCertificateIssuer: + metroCertificateNotAfter: 0000000000000000 + metroApplicationDescription: Interface Minimale + wsaImages: {} + metroTileShortName: + metroTileShowName: 0 + metroMediumTileShowName: 0 + metroLargeTileShowName: 0 + metroWideTileShowName: 0 + metroSupportStreamingInstall: 0 + metroLastRequiredScene: 0 + metroDefaultTileSize: 1 + metroTileForegroundText: 2 + metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} + metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} + metroSplashScreenUseBackgroundColor: 0 + syncCapabilities: 0 + platformCapabilities: {} + metroTargetDeviceFamilies: {} + metroFTAName: + metroFTAFileTypes: [] + metroProtocolName: + vcxProjDefaultLanguage: + XboxOneProductId: + XboxOneUpdateKey: + XboxOneSandboxId: + XboxOneContentId: + XboxOneTitleId: + XboxOneSCId: + XboxOneGameOsOverridePath: + XboxOnePackagingOverridePath: + XboxOneAppManifestOverridePath: + XboxOneVersion: 1.0.0.0 + XboxOnePackageEncryption: 0 + XboxOnePackageUpdateGranularity: 2 + XboxOneDescription: + XboxOneLanguage: + - enus + XboxOneCapability: [] + XboxOneGameRating: {} + XboxOneIsContentPackage: 0 + XboxOneEnhancedXboxCompatibilityMode: 0 + XboxOneEnableGPUVariability: 1 + XboxOneSockets: {} + XboxOneSplashScreen: {fileID: 0} + XboxOneAllowedProductIds: [] + XboxOnePersistentLocalStorageSize: 0 + XboxOneXTitleMemory: 8 + XboxOneOverrideIdentityName: + XboxOneOverrideIdentityPublisher: + vrEditorSettings: {} + cloudServicesEnabled: {} + luminIcon: + m_Name: + m_ModelFolderPath: + m_PortalFolderPath: + luminCert: + m_CertPath: + m_SignPackage: 1 + luminIsChannelApp: 0 + luminVersion: + m_VersionCode: 1 + m_VersionName: + hmiPlayerDataPath: + hmiForceSRGBBlit: 1 + embeddedLinuxEnableGamepadInput: 0 + hmiCpuConfiguration: + hmiLogStartupTiming: 0 + qnxGraphicConfPath: + apiCompatibilityLevel: 6 + captureStartupLogs: {} + activeInputHandler: 1 + windowsGamepadBackendHint: 0 + cloudProjectId: e3d7fc88-a41b-4d06-8a82-066a0d0494ed + framebufferDepthMemorylessMode: 0 + qualitySettingsNames: [] + projectName: Interface Minimale 2025-10-26_23-16-10 + organizationId: bababob1 + cloudEnabled: 0 + legacyClampBlendShapeWeights: 0 + hmiLoadingImage: {fileID: 0} + platformRequiresReadableAssets: 0 + virtualTexturingSupportEnabled: 0 + insecureHttpOption: 2 + androidVulkanDenyFilterList: [] + androidVulkanAllowFilterList: [] diff --git a/ProjectSettings/ProjectSettings.asset.private.0 b/ProjectSettings/ProjectSettings.asset.private.0 new file mode 100644 index 0000000..5e469da --- /dev/null +++ b/ProjectSettings/ProjectSettings.asset.private.0 @@ -0,0 +1,784 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!129 &1 +PlayerSettings: + m_ObjectHideFlags: 0 + serializedVersion: 28 + productGUID: 0fa6bc48f64b73c4986e64b32dbfe985 + AndroidProfiler: 0 + AndroidFilterTouchesWhenObscured: 0 + AndroidEnableSustainedPerformanceMode: 0 + defaultScreenOrientation: 4 + targetDevice: 2 + useOnDemandResources: 0 + accelerometerFrequency: 60 + companyName: DefaultCompany + productName: Interface Minimale (1) + defaultCursor: {fileID: 0} + cursorHotspot: {x: 0, y: 0} + m_SplashScreenBackgroundColor: {r: 0.12156863, g: 0.12156863, b: 0.1254902, a: 1} + m_ShowUnitySplashScreen: 1 + m_ShowUnitySplashLogo: 1 + m_SplashScreenOverlayOpacity: 1 + m_SplashScreenAnimation: 1 + m_SplashScreenLogoStyle: 1 + m_SplashScreenDrawMode: 0 + m_SplashScreenBackgroundAnimationZoom: 1 + m_SplashScreenLogoAnimationZoom: 1 + m_SplashScreenBackgroundLandscapeAspect: 1 + m_SplashScreenBackgroundPortraitAspect: 1 + m_SplashScreenBackgroundLandscapeUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenBackgroundPortraitUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenLogos: [] + m_VirtualRealitySplashScreen: {fileID: 0} + m_HolographicTrackingLossScreen: {fileID: 0} + defaultScreenWidth: 1920 + defaultScreenHeight: 1080 + defaultScreenWidthWeb: 960 + defaultScreenHeightWeb: 600 + m_StereoRenderingPath: 0 + m_ActiveColorSpace: 0 + unsupportedMSAAFallback: 0 + m_SpriteBatchMaxVertexCount: 65535 + m_SpriteBatchVertexThreshold: 300 + m_MTRendering: 1 + mipStripping: 0 + numberOfMipsStripped: 0 + numberOfMipsStrippedPerMipmapLimitGroup: {} + m_StackTraceTypes: 010000000100000001000000010000000100000001000000 + iosShowActivityIndicatorOnLoading: -1 + androidShowActivityIndicatorOnLoading: -1 + iosUseCustomAppBackgroundBehavior: 0 + allowedAutorotateToPortrait: 1 + allowedAutorotateToPortraitUpsideDown: 1 + allowedAutorotateToLandscapeRight: 1 + allowedAutorotateToLandscapeLeft: 1 + useOSAutorotation: 1 + use32BitDisplayBuffer: 1 + preserveFramebufferAlpha: 0 + disableDepthAndStencilBuffers: 0 + androidStartInFullscreen: 1 + androidRenderOutsideSafeArea: 1 + androidUseSwappy: 1 + androidBlitType: 0 + androidResizeableActivity: 1 + androidDefaultWindowWidth: 1920 + androidDefaultWindowHeight: 1080 + androidMinimumWindowWidth: 400 + androidMinimumWindowHeight: 300 + androidFullscreenMode: 1 + androidAutoRotationBehavior: 1 + androidPredictiveBackSupport: 1 + androidApplicationEntry: 2 + defaultIsNativeResolution: 1 + macRetinaSupport: 1 + runInBackground: 0 + muteOtherAudioSources: 0 + Prepare IOS For Recording: 0 + Force IOS Speakers When Recording: 0 + audioSpatialExperience: 0 + deferSystemGesturesMode: 0 + hideHomeButton: 0 + submitAnalytics: 1 + usePlayerLog: 1 + dedicatedServerOptimizations: 1 + bakeCollisionMeshes: 0 + forceSingleInstance: 0 + useFlipModelSwapchain: 1 + resizableWindow: 0 + useMacAppStoreValidation: 0 + macAppStoreCategory: public.app-category.games + gpuSkinning: 0 + meshDeformation: 0 + xboxPIXTextureCapture: 0 + xboxEnableAvatar: 0 + xboxEnableKinect: 0 + xboxEnableKinectAutoTracking: 0 + xboxEnableFitness: 0 + visibleInBackground: 1 + allowFullscreenSwitch: 1 + fullscreenMode: 1 + xboxSpeechDB: 0 + xboxEnableHeadOrientation: 0 + xboxEnableGuest: 0 + xboxEnablePIXSampling: 0 + metalFramebufferOnly: 0 + xboxOneResolution: 0 + xboxOneSResolution: 0 + xboxOneXResolution: 3 + xboxOneMonoLoggingLevel: 0 + xboxOneLoggingLevel: 1 + xboxOneDisableEsram: 0 + xboxOneEnableTypeOptimization: 0 + xboxOnePresentImmediateThreshold: 0 + switchQueueCommandMemory: 1048576 + switchQueueControlMemory: 16384 + switchQueueComputeMemory: 262144 + switchNVNShaderPoolsGranularity: 33554432 + switchNVNDefaultPoolsGranularity: 16777216 + switchNVNOtherPoolsGranularity: 16777216 + switchGpuScratchPoolGranularity: 2097152 + switchAllowGpuScratchShrinking: 0 + switchNVNMaxPublicTextureIDCount: 0 + switchNVNMaxPublicSamplerIDCount: 0 + switchMaxWorkerMultiple: 8 + switchNVNGraphicsFirmwareMemory: 32 + vulkanNumSwapchainBuffers: 3 + vulkanEnableSetSRGBWrite: 0 + vulkanEnablePreTransform: 0 + vulkanEnableLateAcquireNextImage: 0 + vulkanEnableCommandBufferRecycling: 1 + loadStoreDebugModeEnabled: 0 + visionOSBundleVersion: 1.0 + tvOSBundleVersion: 1.0 + bundleVersion: 1.0 + preloadedAssets: [] + metroInputSource: 0 + wsaTransparentSwapchain: 0 + m_HolographicPauseOnTrackingLoss: 1 + xboxOneDisableKinectGpuReservation: 1 + xboxOneEnable7thCore: 1 + vrSettings: + enable360StereoCapture: 0 + isWsaHolographicRemotingEnabled: 0 + enableFrameTimingStats: 0 + enableOpenGLProfilerGPURecorders: 1 + allowHDRDisplaySupport: 0 + useHDRDisplay: 0 + hdrBitDepth: 0 + m_ColorGamuts: 00000000 + targetPixelDensity: 30 + resolutionScalingMode: 0 + resetResolutionOnWindowResize: 0 + androidSupportedAspectRatio: 1 + androidMaxAspectRatio: 2.4 + androidMinAspectRatio: 1 + applicationIdentifier: {} + buildNumber: + Standalone: 0 + VisionOS: 0 + iPhone: 0 + tvOS: 0 + overrideDefaultApplicationIdentifier: 0 + AndroidBundleVersionCode: 1 + AndroidMinSdkVersion: 23 + AndroidTargetSdkVersion: 0 + AndroidPreferredInstallLocation: 1 + aotOptions: + stripEngineCode: 1 + iPhoneStrippingLevel: 0 + iPhoneScriptCallOptimization: 0 + ForceInternetPermission: 0 + ForceSDCardPermission: 0 + CreateWallpaper: 0 + androidSplitApplicationBinary: 0 + keepLoadedShadersAlive: 0 + StripUnusedMeshComponents: 0 + strictShaderVariantMatching: 0 + VertexChannelCompressionMask: 4054 + iPhoneSdkVersion: 988 + iOSSimulatorArchitecture: 0 + iOSTargetOSVersionString: 13.0 + tvOSSdkVersion: 0 + tvOSSimulatorArchitecture: 0 + tvOSRequireExtendedGameController: 0 + tvOSTargetOSVersionString: 13.0 + VisionOSSdkVersion: 0 + VisionOSTargetOSVersionString: 1.0 + uIPrerenderedIcon: 0 + uIRequiresPersistentWiFi: 0 + uIRequiresFullScreen: 1 + uIStatusBarHidden: 1 + uIExitOnSuspend: 0 + uIStatusBarStyle: 0 + appleTVSplashScreen: {fileID: 0} + appleTVSplashScreen2x: {fileID: 0} + tvOSSmallIconLayers: [] + tvOSSmallIconLayers2x: [] + tvOSLargeIconLayers: [] + tvOSLargeIconLayers2x: [] + tvOSTopShelfImageLayers: [] + tvOSTopShelfImageLayers2x: [] + tvOSTopShelfImageWideLayers: [] + tvOSTopShelfImageWideLayers2x: [] + iOSLaunchScreenType: 0 + iOSLaunchScreenPortrait: {fileID: 0} + iOSLaunchScreenLandscape: {fileID: 0} + iOSLaunchScreenBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreenFillPct: 100 + iOSLaunchScreenSize: 100 + iOSLaunchScreeniPadType: 0 + iOSLaunchScreeniPadImage: {fileID: 0} + iOSLaunchScreeniPadBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreeniPadFillPct: 100 + iOSLaunchScreeniPadSize: 100 + iOSLaunchScreenCustomStoryboardPath: + iOSLaunchScreeniPadCustomStoryboardPath: + iOSDeviceRequirements: [] + iOSURLSchemes: [] + macOSURLSchemes: [] + iOSBackgroundModes: 0 + iOSMetalForceHardShadows: 0 + metalEditorSupport: 1 + metalAPIValidation: 1 + metalCompileShaderBinary: 0 + iOSRenderExtraFrameOnPause: 0 + iosCopyPluginsCodeInsteadOfSymlink: 0 + appleDeveloperTeamID: + iOSManualSigningProvisioningProfileID: + tvOSManualSigningProvisioningProfileID: + VisionOSManualSigningProvisioningProfileID: + iOSManualSigningProvisioningProfileType: 0 + tvOSManualSigningProvisioningProfileType: 0 + VisionOSManualSigningProvisioningProfileType: 0 + appleEnableAutomaticSigning: 0 + iOSRequireARKit: 0 + iOSAutomaticallyDetectAndAddCapabilities: 1 + appleEnableProMotion: 0 + shaderPrecisionModel: 0 + clonedFromGUID: 00000000000000000000000000000000 + templatePackageId: + templateDefaultScene: + useCustomMainManifest: 0 + useCustomLauncherManifest: 0 + useCustomMainGradleTemplate: 0 + useCustomLauncherGradleManifest: 0 + useCustomBaseGradleTemplate: 0 + useCustomGradlePropertiesTemplate: 0 + useCustomGradleSettingsTemplate: 0 + useCustomProguardFile: 0 + AndroidTargetArchitectures: 2 + AndroidSplashScreenScale: 0 + androidSplashScreen: {fileID: 0} + AndroidKeystoreName: + AndroidKeyaliasName: + AndroidEnableArmv9SecurityFeatures: 0 + AndroidEnableArm64MTE: 0 + AndroidBuildApkPerCpuArchitecture: 0 + AndroidTVCompatibility: 0 + AndroidIsGame: 1 + androidAppCategory: 3 + useAndroidAppCategory: 1 + androidAppCategoryOther: + AndroidEnableTango: 0 + androidEnableBanner: 1 + androidUseLowAccuracyLocation: 0 + androidUseCustomKeystore: 0 + m_AndroidBanners: + - width: 320 + height: 180 + banner: {fileID: 0} + androidGamepadSupportLevel: 0 + AndroidMinifyRelease: 0 + AndroidMinifyDebug: 0 + AndroidValidateAppBundleSize: 1 + AndroidAppBundleSizeToValidate: 200 + AndroidReportGooglePlayAppDependencies: 1 + androidSymbolsSizeThreshold: 800 + m_BuildTargetIcons: [] + m_BuildTargetPlatformIcons: + - m_BuildTarget: Android + m_Icons: + - m_Textures: [] + m_Width: 432 + m_Height: 432 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 324 + m_Height: 324 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 216 + m_Height: 216 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 162 + m_Height: 162 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 108 + m_Height: 108 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 81 + m_Height: 81 + m_Kind: 2 + m_SubKind: + - m_Textures: [] + m_Width: 192 + m_Height: 192 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 144 + m_Height: 144 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 96 + m_Height: 96 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 72 + m_Height: 72 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 48 + m_Height: 48 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 36 + m_Height: 36 + m_Kind: 1 + m_SubKind: + - m_Textures: [] + m_Width: 192 + m_Height: 192 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 144 + m_Height: 144 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 96 + m_Height: 96 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 72 + m_Height: 72 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 48 + m_Height: 48 + m_Kind: 0 + m_SubKind: + - m_Textures: [] + m_Width: 36 + m_Height: 36 + m_Kind: 0 + m_SubKind: + m_BuildTargetBatching: [] + m_BuildTargetShaderSettings: [] + m_BuildTargetGraphicsJobs: [] + m_BuildTargetGraphicsJobMode: [] + m_BuildTargetGraphicsAPIs: [] + m_BuildTargetVRSettings: [] + m_DefaultShaderChunkSizeInMB: 16 + m_DefaultShaderChunkCount: 0 + openGLRequireES31: 0 + openGLRequireES31AEP: 0 + openGLRequireES32: 0 + m_TemplateCustomTags: {} + mobileMTRendering: + Android: 1 + VisionOS: 1 + iPhone: 1 + tvOS: 1 + m_BuildTargetGroupLightmapEncodingQuality: [] + m_BuildTargetGroupHDRCubemapEncodingQuality: [] + m_BuildTargetGroupLightmapSettings: [] + m_BuildTargetGroupLoadStoreDebugModeSettings: [] + m_BuildTargetNormalMapEncoding: [] + m_BuildTargetDefaultTextureCompressionFormat: [] + playModeTestRunnerEnabled: 0 + runPlayModeTestAsEditModeTest: 0 + actionOnDotNetUnhandledException: 1 + editorGfxJobOverride: 1 + enableInternalProfiler: 0 + logObjCUncaughtExceptions: 1 + enableCrashReportAPI: 0 + cameraUsageDescription: + locationUsageDescription: + microphoneUsageDescription: + bluetoothUsageDescription: + macOSTargetOSVersion: 11.0 + switchNMETAOverride: + switchNetLibKey: + switchSocketMemoryPoolSize: 6144 + switchSocketAllocatorPoolSize: 128 + switchSocketConcurrencyLimit: 14 + switchScreenResolutionBehavior: 2 + switchUseCPUProfiler: 0 + switchEnableFileSystemTrace: 0 + switchLTOSetting: 0 + switchApplicationID: 0x01004b9000490000 + switchNSODependencies: + switchCompilerFlags: + switchTitleNames_0: + switchTitleNames_1: + switchTitleNames_2: + switchTitleNames_3: + switchTitleNames_4: + switchTitleNames_5: + switchTitleNames_6: + switchTitleNames_7: + switchTitleNames_8: + switchTitleNames_9: + switchTitleNames_10: + switchTitleNames_11: + switchTitleNames_12: + switchTitleNames_13: + switchTitleNames_14: + switchTitleNames_15: + switchPublisherNames_0: + switchPublisherNames_1: + switchPublisherNames_2: + switchPublisherNames_3: + switchPublisherNames_4: + switchPublisherNames_5: + switchPublisherNames_6: + switchPublisherNames_7: + switchPublisherNames_8: + switchPublisherNames_9: + switchPublisherNames_10: + switchPublisherNames_11: + switchPublisherNames_12: + switchPublisherNames_13: + switchPublisherNames_14: + switchPublisherNames_15: + switchIcons_0: {fileID: 0} + switchIcons_1: {fileID: 0} + switchIcons_2: {fileID: 0} + switchIcons_3: {fileID: 0} + switchIcons_4: {fileID: 0} + switchIcons_5: {fileID: 0} + switchIcons_6: {fileID: 0} + switchIcons_7: {fileID: 0} + switchIcons_8: {fileID: 0} + switchIcons_9: {fileID: 0} + switchIcons_10: {fileID: 0} + switchIcons_11: {fileID: 0} + switchIcons_12: {fileID: 0} + switchIcons_13: {fileID: 0} + switchIcons_14: {fileID: 0} + switchIcons_15: {fileID: 0} + switchSmallIcons_0: {fileID: 0} + switchSmallIcons_1: {fileID: 0} + switchSmallIcons_2: {fileID: 0} + switchSmallIcons_3: {fileID: 0} + switchSmallIcons_4: {fileID: 0} + switchSmallIcons_5: {fileID: 0} + switchSmallIcons_6: {fileID: 0} + switchSmallIcons_7: {fileID: 0} + switchSmallIcons_8: {fileID: 0} + switchSmallIcons_9: {fileID: 0} + switchSmallIcons_10: {fileID: 0} + switchSmallIcons_11: {fileID: 0} + switchSmallIcons_12: {fileID: 0} + switchSmallIcons_13: {fileID: 0} + switchSmallIcons_14: {fileID: 0} + switchSmallIcons_15: {fileID: 0} + switchManualHTML: + switchAccessibleURLs: + switchLegalInformation: + switchMainThreadStackSize: 1048576 + switchPresenceGroupId: + switchLogoHandling: 0 + switchReleaseVersion: 0 + switchDisplayVersion: 1.0.0 + switchStartupUserAccount: 0 + switchSupportedLanguagesMask: 0 + switchLogoType: 0 + switchApplicationErrorCodeCategory: + switchUserAccountSaveDataSize: 0 + switchUserAccountSaveDataJournalSize: 0 + switchApplicationAttribute: 0 + switchCardSpecSize: -1 + switchCardSpecClock: -1 + switchRatingsMask: 0 + switchRatingsInt_0: 0 + switchRatingsInt_1: 0 + switchRatingsInt_2: 0 + switchRatingsInt_3: 0 + switchRatingsInt_4: 0 + switchRatingsInt_5: 0 + switchRatingsInt_6: 0 + switchRatingsInt_7: 0 + switchRatingsInt_8: 0 + switchRatingsInt_9: 0 + switchRatingsInt_10: 0 + switchRatingsInt_11: 0 + switchRatingsInt_12: 0 + switchLocalCommunicationIds_0: + switchLocalCommunicationIds_1: + switchLocalCommunicationIds_2: + switchLocalCommunicationIds_3: + switchLocalCommunicationIds_4: + switchLocalCommunicationIds_5: + switchLocalCommunicationIds_6: + switchLocalCommunicationIds_7: + switchParentalControl: 0 + switchAllowsScreenshot: 1 + switchAllowsVideoCapturing: 1 + switchAllowsRuntimeAddOnContentInstall: 0 + switchDataLossConfirmation: 0 + switchUserAccountLockEnabled: 0 + switchSystemResourceMemory: 16777216 + switchSupportedNpadStyles: 22 + switchNativeFsCacheSize: 32 + switchIsHoldTypeHorizontal: 1 + switchSupportedNpadCount: 8 + switchEnableTouchScreen: 1 + switchSocketConfigEnabled: 0 + switchTcpInitialSendBufferSize: 32 + switchTcpInitialReceiveBufferSize: 64 + switchTcpAutoSendBufferSizeMax: 256 + switchTcpAutoReceiveBufferSizeMax: 256 + switchUdpSendBufferSize: 9 + switchUdpReceiveBufferSize: 42 + switchSocketBufferEfficiency: 4 + switchSocketInitializeEnabled: 1 + switchNetworkInterfaceManagerInitializeEnabled: 1 + switchDisableHTCSPlayerConnection: 0 + switchUseNewStyleFilepaths: 1 + switchUseLegacyFmodPriorities: 0 + switchUseMicroSleepForYield: 1 + switchEnableRamDiskSupport: 0 + switchMicroSleepForYieldTime: 25 + switchRamDiskSpaceSize: 12 + switchUpgradedPlayerSettingsToNMETA: 0 + ps4NPAgeRating: 12 + ps4NPTitleSecret: + ps4NPTrophyPackPath: + ps4ParentalLevel: 11 + ps4ContentID: ED1633-NPXX51362_00-0000000000000000 + ps4Category: 0 + ps4MasterVersion: 01.00 + ps4AppVersion: 01.00 + ps4AppType: 0 + ps4ParamSfxPath: + ps4VideoOutPixelFormat: 0 + ps4VideoOutInitialWidth: 1920 + ps4VideoOutBaseModeInitialWidth: 1920 + ps4VideoOutReprojectionRate: 60 + ps4PronunciationXMLPath: + ps4PronunciationSIGPath: + ps4BackgroundImagePath: + ps4StartupImagePath: + ps4StartupImagesFolder: + ps4IconImagesFolder: + ps4SaveDataImagePath: + ps4SdkOverride: + ps4BGMPath: + ps4ShareFilePath: + ps4ShareOverlayImagePath: + ps4PrivacyGuardImagePath: + ps4ExtraSceSysFile: + ps4NPtitleDatPath: + ps4RemotePlayKeyAssignment: -1 + ps4RemotePlayKeyMappingDir: + ps4PlayTogetherPlayerCount: 0 + ps4EnterButtonAssignment: 2 + ps4ApplicationParam1: 0 + ps4ApplicationParam2: 0 + ps4ApplicationParam3: 0 + ps4ApplicationParam4: 0 + ps4DownloadDataSize: 0 + ps4GarlicHeapSize: 2048 + ps4ProGarlicHeapSize: 2560 + playerPrefsMaxSize: 32768 + ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ + ps4pnSessions: 1 + ps4pnPresence: 1 + ps4pnFriends: 1 + ps4pnGameCustomData: 1 + playerPrefsSupport: 0 + enableApplicationExit: 0 + resetTempFolder: 1 + restrictedAudioUsageRights: 0 + ps4UseResolutionFallback: 0 + ps4ReprojectionSupport: 0 + ps4UseAudio3dBackend: 0 + ps4UseLowGarlicFragmentationMode: 1 + ps4SocialScreenEnabled: 0 + ps4ScriptOptimizationLevel: 2 + ps4Audio3dVirtualSpeakerCount: 14 + ps4attribCpuUsage: 0 + ps4PatchPkgPath: + ps4PatchLatestPkgPath: + ps4PatchChangeinfoPath: + ps4PatchDayOne: 0 + ps4attribUserManagement: 0 + ps4attribMoveSupport: 0 + ps4attrib3DSupport: 0 + ps4attribShareSupport: 0 + ps4attribExclusiveVR: 0 + ps4disableAutoHideSplash: 0 + ps4videoRecordingFeaturesUsed: 0 + ps4contentSearchFeaturesUsed: 0 + ps4CompatibilityPS5: 0 + ps4AllowPS5Detection: 0 + ps4GPU800MHz: 1 + ps4attribEyeToEyeDistanceSettingVR: 0 + ps4IncludedModules: [] + ps4attribVROutputEnabled: 0 + monoEnv: + splashScreenBackgroundSourceLandscape: {fileID: 0} + splashScreenBackgroundSourcePortrait: {fileID: 0} + blurSplashScreenBackground: 1 + spritePackerPolicy: + webGLMemorySize: 32 + webGLExceptionSupport: 1 + webGLNameFilesAsHashes: 0 + webGLShowDiagnostics: 0 + webGLDataCaching: 1 + webGLDebugSymbols: 0 + webGLEmscriptenArgs: + webGLModulesDirectory: + webGLTemplate: APPLICATION:Default + webGLAnalyzeBuildSize: 0 + webGLUseEmbeddedResources: 0 + webGLCompressionFormat: 1 + webGLWasmArithmeticExceptions: 0 + webGLLinkerTarget: 1 + webGLThreadsSupport: 0 + webGLDecompressionFallback: 0 + webGLInitialMemorySize: 32 + webGLMaximumMemorySize: 2048 + webGLMemoryGrowthMode: 2 + webGLMemoryLinearGrowthStep: 16 + webGLMemoryGeometricGrowthStep: 0.2 + webGLMemoryGeometricGrowthCap: 96 + webGLEnableWebGPU: 0 + webGLPowerPreference: 2 + webGLWebAssemblyTable: 0 + webGLWebAssemblyBigInt: 0 + webGLCloseOnQuit: 0 + webWasm2023: 0 + scriptingDefineSymbols: {} + additionalCompilerArguments: {} + platformArchitecture: {} + scriptingBackend: {} + il2cppCompilerConfiguration: {} + il2cppCodeGeneration: {} + il2cppStacktraceInformation: {} + managedStrippingLevel: {} + incrementalIl2cppBuild: {} + suppressCommonWarnings: 1 + allowUnsafeCode: 0 + useDeterministicCompilation: 1 + additionalIl2CppArgs: + scriptingRuntimeVersion: 1 + gcIncremental: 1 + gcWBarrierValidation: 0 + apiCompatibilityLevelPerPlatform: {} + editorAssembliesCompatibilityLevel: 1 + m_RenderingPath: 1 + m_MobileRenderingPath: 1 + metroPackageName: Interface Minimale (1) + metroPackageVersion: + metroCertificatePath: + metroCertificatePassword: + metroCertificateSubject: + metroCertificateIssuer: + metroCertificateNotAfter: 0000000000000000 + metroApplicationDescription: Interface Minimale (1) + wsaImages: {} + metroTileShortName: + metroTileShowName: 0 + metroMediumTileShowName: 0 + metroLargeTileShowName: 0 + metroWideTileShowName: 0 + metroSupportStreamingInstall: 0 + metroLastRequiredScene: 0 + metroDefaultTileSize: 1 + metroTileForegroundText: 2 + metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} + metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} + metroSplashScreenUseBackgroundColor: 0 + syncCapabilities: 0 + platformCapabilities: {} + metroTargetDeviceFamilies: {} + metroFTAName: + metroFTAFileTypes: [] + metroProtocolName: + vcxProjDefaultLanguage: + XboxOneProductId: + XboxOneUpdateKey: + XboxOneSandboxId: + XboxOneContentId: + XboxOneTitleId: + XboxOneSCId: + XboxOneGameOsOverridePath: + XboxOnePackagingOverridePath: + XboxOneAppManifestOverridePath: + XboxOneVersion: 1.0.0.0 + XboxOnePackageEncryption: 0 + XboxOnePackageUpdateGranularity: 2 + XboxOneDescription: + XboxOneLanguage: + - enus + XboxOneCapability: [] + XboxOneGameRating: {} + XboxOneIsContentPackage: 0 + XboxOneEnhancedXboxCompatibilityMode: 0 + XboxOneEnableGPUVariability: 1 + XboxOneSockets: {} + XboxOneSplashScreen: {fileID: 0} + XboxOneAllowedProductIds: [] + XboxOnePersistentLocalStorageSize: 0 + XboxOneXTitleMemory: 8 + XboxOneOverrideIdentityName: + XboxOneOverrideIdentityPublisher: + vrEditorSettings: {} + cloudServicesEnabled: {} + luminIcon: + m_Name: + m_ModelFolderPath: + m_PortalFolderPath: + luminCert: + m_CertPath: + m_SignPackage: 1 + luminIsChannelApp: 0 + luminVersion: + m_VersionCode: 1 + m_VersionName: + hmiPlayerDataPath: + hmiForceSRGBBlit: 0 + embeddedLinuxEnableGamepadInput: 0 + hmiCpuConfiguration: + hmiLogStartupTiming: 0 + qnxGraphicConfPath: + apiCompatibilityLevel: 6 + captureStartupLogs: {} + activeInputHandler: 0 + windowsGamepadBackendHint: 0 + cloudProjectId: + framebufferDepthMemorylessMode: 0 + qualitySettingsNames: [] + projectName: + organizationId: + cloudEnabled: 0 + legacyClampBlendShapeWeights: 0 + hmiLoadingImage: {fileID: 0} + platformRequiresReadableAssets: 0 + virtualTexturingSupportEnabled: 0 + insecureHttpOption: 0 + androidVulkanDenyFilterList: [] + androidVulkanAllowFilterList: [] diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt new file mode 100644 index 0000000..0faef8d --- /dev/null +++ b/ProjectSettings/ProjectVersion.txt @@ -0,0 +1,2 @@ +m_EditorVersion: 6000.0.58f2 +m_EditorVersionWithRevision: 6000.0.58f2 (92dee566b325) diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset new file mode 100644 index 0000000..e5cf6e2 --- /dev/null +++ b/ProjectSettings/QualitySettings.asset @@ -0,0 +1,132 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!47 &1 +QualitySettings: + m_ObjectHideFlags: 0 + serializedVersion: 5 + m_CurrentQuality: 0 + m_QualitySettings: + - serializedVersion: 4 + name: Mobile + pixelLightCount: 1 + shadows: 2 + shadowResolution: 1 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 40 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 2 + globalTextureMipmapLimit: 0 + textureMipmapLimitSettings: [] + anisotropicTextures: 1 + antiAliasing: 4 + softParticles: 0 + softVegetation: 1 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 1 + useLegacyDetailDistribution: 1 + adaptiveVsync: 0 + vSyncCount: 0 + realtimeGICPUUsage: 100 + adaptiveVsyncExtraA: 0 + adaptiveVsyncExtraB: 0 + lodBias: 1 + maximumLODLevel: 0 + enableLODCrossFade: 1 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 256 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 11400000, guid: 5e6cbd92db86f4b18aec3ed561671858, type: 2} + terrainQualityOverrides: 0 + terrainPixelError: 1 + terrainDetailDensityScale: 1 + terrainBasemapDistance: 1000 + terrainDetailDistance: 80 + terrainTreeDistance: 5000 + terrainBillboardStart: 50 + terrainFadeLength: 5 + terrainMaxTrees: 50 + excludedTargetPlatforms: + - Standalone + - serializedVersion: 4 + name: PC + pixelLightCount: 1 + shadows: 2 + shadowResolution: 1 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 40 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 4 + globalTextureMipmapLimit: 0 + textureMipmapLimitSettings: [] + anisotropicTextures: 1 + antiAliasing: 0 + softParticles: 0 + softVegetation: 1 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 1 + useLegacyDetailDistribution: 1 + adaptiveVsync: 0 + vSyncCount: 0 + realtimeGICPUUsage: 100 + adaptiveVsyncExtraA: 0 + adaptiveVsyncExtraB: 0 + lodBias: 2 + maximumLODLevel: 0 + enableLODCrossFade: 1 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 256 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 11400000, guid: 4b83569d67af61e458304325a23e5dfd, type: 2} + terrainQualityOverrides: 0 + terrainPixelError: 1 + terrainDetailDensityScale: 1 + terrainBasemapDistance: 1000 + terrainDetailDistance: 80 + terrainTreeDistance: 5000 + terrainBillboardStart: 50 + terrainFadeLength: 5 + terrainMaxTrees: 50 + excludedTargetPlatforms: + - Android + - iPhone + m_TextureMipmapLimitGroupNames: [] + m_PerPlatformDefaultQuality: + Android: 0 + GameCoreScarlett: 1 + GameCoreXboxOne: 1 + Lumin: 0 + Nintendo Switch: 1 + PS4: 1 + PS5: 1 + Server: 0 + Stadia: 0 + Standalone: 1 + WebGL: 0 + Windows Store Apps: 0 + XboxOne: 0 + iPhone: 0 + tvOS: 0 diff --git a/ProjectSettings/QualitySettings.asset.private.0 b/ProjectSettings/QualitySettings.asset.private.0 new file mode 100644 index 0000000..55f0aea --- /dev/null +++ b/ProjectSettings/QualitySettings.asset.private.0 @@ -0,0 +1,341 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!47 &1 +QualitySettings: + m_ObjectHideFlags: 0 + serializedVersion: 5 + m_CurrentQuality: 5 + m_QualitySettings: + - serializedVersion: 4 + name: Very Low + pixelLightCount: 0 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 15 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + skinWeights: 1 + globalTextureMipmapLimit: 1 + textureMipmapLimitSettings: [] + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + useLegacyDetailDistribution: 0 + adaptiveVsync: 0 + vSyncCount: 0 + realtimeGICPUUsage: 25 + adaptiveVsyncExtraA: 0 + adaptiveVsyncExtraB: 0 + lodBias: 0.3 + maximumLODLevel: 0 + enableLODCrossFade: 1 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 4 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + terrainQualityOverrides: 0 + terrainPixelError: 1 + terrainDetailDensityScale: 1 + terrainBasemapDistance: 1000 + terrainDetailDistance: 80 + terrainTreeDistance: 5000 + terrainBillboardStart: 50 + terrainFadeLength: 5 + terrainMaxTrees: 50 + excludedTargetPlatforms: [] + - serializedVersion: 4 + name: Low + pixelLightCount: 0 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 20 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + skinWeights: 2 + globalTextureMipmapLimit: 0 + textureMipmapLimitSettings: [] + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + useLegacyDetailDistribution: 0 + adaptiveVsync: 0 + vSyncCount: 0 + realtimeGICPUUsage: 25 + adaptiveVsyncExtraA: 0 + adaptiveVsyncExtraB: 0 + lodBias: 0.4 + maximumLODLevel: 0 + enableLODCrossFade: 1 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 16 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + terrainQualityOverrides: 0 + terrainPixelError: 1 + terrainDetailDensityScale: 1 + terrainBasemapDistance: 1000 + terrainDetailDistance: 80 + terrainTreeDistance: 5000 + terrainBillboardStart: 50 + terrainFadeLength: 5 + terrainMaxTrees: 50 + excludedTargetPlatforms: [] + - serializedVersion: 4 + name: Medium + pixelLightCount: 1 + shadows: 1 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 20 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + skinWeights: 2 + globalTextureMipmapLimit: 0 + textureMipmapLimitSettings: [] + anisotropicTextures: 1 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + useLegacyDetailDistribution: 0 + adaptiveVsync: 0 + vSyncCount: 1 + realtimeGICPUUsage: 25 + adaptiveVsyncExtraA: 0 + adaptiveVsyncExtraB: 0 + lodBias: 0.7 + maximumLODLevel: 0 + enableLODCrossFade: 1 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 64 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + terrainQualityOverrides: 0 + terrainPixelError: 1 + terrainDetailDensityScale: 1 + terrainBasemapDistance: 1000 + terrainDetailDistance: 80 + terrainTreeDistance: 5000 + terrainBillboardStart: 50 + terrainFadeLength: 5 + terrainMaxTrees: 50 + excludedTargetPlatforms: [] + - serializedVersion: 4 + name: High + pixelLightCount: 2 + shadows: 2 + shadowResolution: 1 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 40 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 2 + globalTextureMipmapLimit: 0 + textureMipmapLimitSettings: [] + anisotropicTextures: 1 + antiAliasing: 0 + softParticles: 0 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + useLegacyDetailDistribution: 0 + adaptiveVsync: 0 + vSyncCount: 1 + realtimeGICPUUsage: 50 + adaptiveVsyncExtraA: 0 + adaptiveVsyncExtraB: 0 + lodBias: 1 + maximumLODLevel: 0 + enableLODCrossFade: 1 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 256 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + terrainQualityOverrides: 0 + terrainPixelError: 1 + terrainDetailDensityScale: 1 + terrainBasemapDistance: 1000 + terrainDetailDistance: 80 + terrainTreeDistance: 5000 + terrainBillboardStart: 50 + terrainFadeLength: 5 + terrainMaxTrees: 50 + excludedTargetPlatforms: [] + - serializedVersion: 4 + name: Very High + pixelLightCount: 3 + shadows: 2 + shadowResolution: 2 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 70 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 4 + globalTextureMipmapLimit: 0 + textureMipmapLimitSettings: [] + anisotropicTextures: 2 + antiAliasing: 2 + softParticles: 1 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + useLegacyDetailDistribution: 0 + adaptiveVsync: 0 + vSyncCount: 1 + realtimeGICPUUsage: 50 + adaptiveVsyncExtraA: 0 + adaptiveVsyncExtraB: 0 + lodBias: 1.5 + maximumLODLevel: 0 + enableLODCrossFade: 1 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 1024 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + terrainQualityOverrides: 0 + terrainPixelError: 1 + terrainDetailDensityScale: 1 + terrainBasemapDistance: 1000 + terrainDetailDistance: 80 + terrainTreeDistance: 5000 + terrainBillboardStart: 50 + terrainFadeLength: 5 + terrainMaxTrees: 50 + excludedTargetPlatforms: [] + - serializedVersion: 4 + name: Ultra + pixelLightCount: 4 + shadows: 2 + shadowResolution: 2 + shadowProjection: 1 + shadowCascades: 4 + shadowDistance: 150 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 255 + globalTextureMipmapLimit: 0 + textureMipmapLimitSettings: [] + anisotropicTextures: 2 + antiAliasing: 2 + softParticles: 1 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + useLegacyDetailDistribution: 0 + adaptiveVsync: 0 + vSyncCount: 1 + realtimeGICPUUsage: 100 + adaptiveVsyncExtraA: 0 + adaptiveVsyncExtraB: 0 + lodBias: 2 + maximumLODLevel: 0 + enableLODCrossFade: 1 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 4096 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 0} + terrainQualityOverrides: 0 + terrainPixelError: 1 + terrainDetailDensityScale: 1 + terrainBasemapDistance: 1000 + terrainDetailDistance: 80 + terrainTreeDistance: 5000 + terrainBillboardStart: 50 + terrainFadeLength: 5 + terrainMaxTrees: 50 + excludedTargetPlatforms: [] + m_TextureMipmapLimitGroupNames: [] + m_PerPlatformDefaultQuality: + Android: 2 + EmbeddedLinux: 5 + GameCoreScarlett: 5 + GameCoreXboxOne: 5 + Kepler: 5 + LinuxHeadlessSimulation: 5 + Nintendo Switch: 5 + Nintendo Switch 2: 5 + PS4: 5 + PS5: 5 + QNX: 5 + Server: 5 + Standalone: 5 + VisionOS: 5 + WebGL: 3 + Windows Store Apps: 5 + XboxOne: 5 + iPhone: 2 + tvOS: 2 diff --git a/ProjectSettings/SceneTemplateSettings.json b/ProjectSettings/SceneTemplateSettings.json new file mode 100644 index 0000000..ede5887 --- /dev/null +++ b/ProjectSettings/SceneTemplateSettings.json @@ -0,0 +1,121 @@ +{ + "templatePinStates": [], + "dependencyTypeInfos": [ + { + "userAdded": false, + "type": "UnityEngine.AnimationClip", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEditor.Animations.AnimatorController", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.AnimatorOverrideController", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEditor.Audio.AudioMixerController", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.ComputeShader", + "defaultInstantiationMode": 1 + }, + { + "userAdded": false, + "type": "UnityEngine.Cubemap", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.GameObject", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEditor.LightingDataAsset", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.LightingSettings", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.Material", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEditor.MonoScript", + "defaultInstantiationMode": 1 + }, + { + "userAdded": false, + "type": "UnityEngine.PhysicsMaterial", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.PhysicsMaterial2D", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.Rendering.VolumeProfile", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEditor.SceneAsset", + "defaultInstantiationMode": 1 + }, + { + "userAdded": false, + "type": "UnityEngine.Shader", + "defaultInstantiationMode": 1 + }, + { + "userAdded": false, + "type": "UnityEngine.ShaderVariantCollection", + "defaultInstantiationMode": 1 + }, + { + "userAdded": false, + "type": "UnityEngine.Texture", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.Texture2D", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.Timeline.TimelineAsset", + "defaultInstantiationMode": 0 + } + ], + "defaultDependencyTypeInfo": { + "userAdded": false, + "type": "", + "defaultInstantiationMode": 1 + }, + "newSceneOverride": 0 +} \ No newline at end of file diff --git a/ProjectSettings/ShaderGraphSettings.asset b/ProjectSettings/ShaderGraphSettings.asset new file mode 100644 index 0000000..ce8c243 --- /dev/null +++ b/ProjectSettings/ShaderGraphSettings.asset @@ -0,0 +1,19 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: de02f9e1d18f588468e474319d09a723, type: 3} + m_Name: + m_EditorClassIdentifier: + shaderVariantLimit: 128 + overrideShaderVariantLimit: 0 + customInterpolatorErrorThreshold: 32 + customInterpolatorWarningThreshold: 16 + customHeatmapValues: {fileID: 0} diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset new file mode 100644 index 0000000..24aa4df --- /dev/null +++ b/ProjectSettings/TagManager.asset @@ -0,0 +1,92 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!78 &1 +TagManager: + serializedVersion: 3 + tags: + - QDSUISection + - QDSUIAccentColor + - QDSUISecondaryButton + - QDSUIPrimaryButton + - QDSUITextSecondaryInvertedColor + - QDSUITextInvertedColor + - QDSUIToggleButton + - QDSUIIcon + - QDSUITextSecondaryColor + - QDSUIDestructiveButton + - QDSUISharedThemeColor + - QDSUIBorderlessButton + - QDSUIToggleBorderlessButton + - QDSUIBackplateGradient + - QDSUITooltip + - QDSUIToggleSwitch + - Locomotion + - LocoButton + - LocoText + - PassThroughButton + - PassThrough + - QDSUITextInputField + - SamplesInfoPanel + - QDSUIToggleCheckboxRadio + - MenuBoutons + - Debug + - FenetrePrefs + - FlecheBulleTexte + - Bulle3D + - Accueil + - HistoriqueMsg + - TextePrefab + - Pour + - Contre + - Scrollview + - Micro + - ChoisirLangue + - OptionDD + - Entree + - RemplissageBulle + layers: + - Default + - TransparentFX + - Ignore Raycast + - Overlay UI + - Water + - UI + - VR_Grab_Interaction + - VR_Touch_Interaction + - Character Preview + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + m_SortingLayers: + - name: Default + uniqueID: 0 + locked: 0 + m_RenderingLayers: + - Default + - Light Layer 1 + - Light Layer 2 + - Light Layer 3 + - Light Layer 4 + - Light Layer 5 + - Light Layer 6 + - Light Layer 7 diff --git a/ProjectSettings/TagManager.asset.private.0 b/ProjectSettings/TagManager.asset.private.0 new file mode 100644 index 0000000..eb5d9ae --- /dev/null +++ b/ProjectSettings/TagManager.asset.private.0 @@ -0,0 +1,45 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!78 &1 +TagManager: + serializedVersion: 3 + tags: [] + layers: + - Default + - TransparentFX + - Ignore Raycast + - + - Water + - UI + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + m_SortingLayers: + - name: Default + uniqueID: 0 + locked: 0 + m_RenderingLayers: + - Default diff --git a/ProjectSettings/TimeManager.asset b/ProjectSettings/TimeManager.asset new file mode 100644 index 0000000..558a017 --- /dev/null +++ b/ProjectSettings/TimeManager.asset @@ -0,0 +1,9 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!5 &1 +TimeManager: + m_ObjectHideFlags: 0 + Fixed Timestep: 0.02 + Maximum Allowed Timestep: 0.33333334 + m_TimeScale: 1 + Maximum Particle Timestep: 0.03 diff --git a/ProjectSettings/TimeManager.asset.private.0 b/ProjectSettings/TimeManager.asset.private.0 new file mode 100644 index 0000000..2e23a1f --- /dev/null +++ b/ProjectSettings/TimeManager.asset.private.0 @@ -0,0 +1,14 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!5 &1 +TimeManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + Fixed Timestep: + m_Count: 2822399 + m_Rate: + m_Denominator: 1 + m_Numerator: 141120000 + Maximum Allowed Timestep: 0.33333334 + m_TimeScale: 1 + Maximum Particle Timestep: 0.03 diff --git a/ProjectSettings/URPProjectSettings.asset b/ProjectSettings/URPProjectSettings.asset new file mode 100644 index 0000000..64a8674 --- /dev/null +++ b/ProjectSettings/URPProjectSettings.asset @@ -0,0 +1,15 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 247994e1f5a72c2419c26a37e9334c01, type: 3} + m_Name: + m_EditorClassIdentifier: + m_LastMaterialVersion: 10 diff --git a/ProjectSettings/UnityConnectSettings.asset b/ProjectSettings/UnityConnectSettings.asset new file mode 100644 index 0000000..a88bee0 --- /dev/null +++ b/ProjectSettings/UnityConnectSettings.asset @@ -0,0 +1,36 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!310 &1 +UnityConnectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 1 + m_Enabled: 0 + m_TestMode: 0 + m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events + m_EventUrl: https://cdp.cloud.unity3d.com/v1/events + m_ConfigUrl: https://config.uca.cloud.unity3d.com + m_DashboardUrl: https://dashboard.unity3d.com + m_TestInitMode: 0 + CrashReportingSettings: + m_EventUrl: https://perf-events.cloud.unity3d.com + m_Enabled: 0 + m_LogBufferSize: 10 + m_CaptureEditorExceptions: 1 + UnityPurchasingSettings: + m_Enabled: 0 + m_TestMode: 0 + UnityAnalyticsSettings: + m_Enabled: 0 + m_TestMode: 0 + m_InitializeOnStartup: 1 + m_PackageRequiringCoreStatsPresent: 0 + UnityAdsSettings: + m_Enabled: 0 + m_InitializeOnStartup: 1 + m_TestMode: 0 + m_IosGameId: + m_AndroidGameId: + m_GameIds: {} + m_GameId: + PerformanceReportingSettings: + m_Enabled: 0 diff --git a/ProjectSettings/VFXManager.asset b/ProjectSettings/VFXManager.asset new file mode 100644 index 0000000..3a95c98 --- /dev/null +++ b/ProjectSettings/VFXManager.asset @@ -0,0 +1,12 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!937362698 &1 +VFXManager: + m_ObjectHideFlags: 0 + m_IndirectShader: {fileID: 0} + m_CopyBufferShader: {fileID: 0} + m_SortShader: {fileID: 0} + m_StripUpdateShader: {fileID: 0} + m_RenderPipeSettingsPath: + m_FixedTimeStep: 0.016666668 + m_MaxDeltaTime: 0.05 diff --git a/ProjectSettings/VFXManager.asset.private.0 b/ProjectSettings/VFXManager.asset.private.0 new file mode 100644 index 0000000..a2a4a97 --- /dev/null +++ b/ProjectSettings/VFXManager.asset.private.0 @@ -0,0 +1,19 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!937362698 &1 +VFXManager: + m_ObjectHideFlags: 0 + m_IndirectShader: {fileID: 0} + m_CopyBufferShader: {fileID: 0} + m_SortShader: {fileID: 0} + m_StripUpdateShader: {fileID: 0} + m_EmptyShader: {fileID: 0} + m_RenderPipeSettingsPath: + m_FixedTimeStep: 0.016666668 + m_MaxDeltaTime: 0.05 + m_MaxScrubTime: 30 + m_MaxCapacity: 100000000 + m_CompiledVersion: 0 + m_RuntimeVersion: 0 + m_RuntimeResources: {fileID: 0} + m_BatchEmptyLifetime: 300 diff --git a/ProjectSettings/VersionControlSettings.asset b/ProjectSettings/VersionControlSettings.asset new file mode 100644 index 0000000..dca2881 --- /dev/null +++ b/ProjectSettings/VersionControlSettings.asset @@ -0,0 +1,8 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!890905787 &1 +VersionControlSettings: + m_ObjectHideFlags: 0 + m_Mode: Visible Meta Files + m_CollabEditorSettings: + inProgressEnabled: 1 diff --git a/ProjectSettings/VersionControlSettings.asset.private.0 b/ProjectSettings/VersionControlSettings.asset.private.0 new file mode 100644 index 0000000..979fd8e --- /dev/null +++ b/ProjectSettings/VersionControlSettings.asset.private.0 @@ -0,0 +1,7 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!890905787 &1 +VersionControlSettings: + m_ObjectHideFlags: 0 + m_Mode: Visible Meta Files + m_TrackPackagesOutsideProject: 0 diff --git a/ProjectSettings/WitConfigExports/1385662526600280_interface_v4_20251118_161402.zip b/ProjectSettings/WitConfigExports/1385662526600280_interface_v4_20251118_161402.zip new file mode 100644 index 0000000..7016743 Binary files /dev/null and b/ProjectSettings/WitConfigExports/1385662526600280_interface_v4_20251118_161402.zip differ diff --git a/ProjectSettings/WitConfigExports/1385662526600280_interface_v4_20251119_110248.zip b/ProjectSettings/WitConfigExports/1385662526600280_interface_v4_20251119_110248.zip new file mode 100644 index 0000000..82140e3 Binary files /dev/null and b/ProjectSettings/WitConfigExports/1385662526600280_interface_v4_20251119_110248.zip differ diff --git a/ProjectSettings/WitConfigExports/1385662526600280_interface_v4_20251119_110318.zip b/ProjectSettings/WitConfigExports/1385662526600280_interface_v4_20251119_110318.zip new file mode 100644 index 0000000..c855f34 Binary files /dev/null and b/ProjectSettings/WitConfigExports/1385662526600280_interface_v4_20251119_110318.zip differ diff --git a/ProjectSettings/WitConfigExports/1385662526600280_interface_v4_20251119_214635.zip b/ProjectSettings/WitConfigExports/1385662526600280_interface_v4_20251119_214635.zip new file mode 100644 index 0000000..0ba3dc8 Binary files /dev/null and b/ProjectSettings/WitConfigExports/1385662526600280_interface_v4_20251119_214635.zip differ diff --git a/ProjectSettings/WitConfigExports/1536577767664348_test_20251119_111502.zip b/ProjectSettings/WitConfigExports/1536577767664348_test_20251119_111502.zip new file mode 100644 index 0000000..9c3228a Binary files /dev/null and b/ProjectSettings/WitConfigExports/1536577767664348_test_20251119_111502.zip differ diff --git a/ProjectSettings/XRSettings.asset b/ProjectSettings/XRSettings.asset new file mode 100644 index 0000000..482590c --- /dev/null +++ b/ProjectSettings/XRSettings.asset @@ -0,0 +1,10 @@ +{ + "m_SettingKeys": [ + "VR Device Disabled", + "VR Device User Alert" + ], + "m_SettingValues": [ + "False", + "False" + ] +} \ No newline at end of file diff --git a/ProjectSettings/wit.config b/ProjectSettings/wit.config new file mode 100644 index 0000000..241546d --- /dev/null +++ b/ProjectSettings/wit.config @@ -0,0 +1 @@ +{"configSettings":[{"appID":"SharedServerToken","serverToken":"5O4Z2JEU5H7GX3JZD3L4CU77GX3DC2FW"},{"appID":"voiceSDK_fr","serverToken":""},{"appID":"1385662526600280","serverToken":"5O4Z2JEU5H7GX3JZD3L4CU77GX3DC2FW"},{"appID":"1536577767664348","serverToken":"YLULAK3ZI4E3RZ4V3JTXVOHFXD533ODZ"}]} \ No newline at end of file diff --git a/cloaked.conf b/cloaked.conf new file mode 100644 index 0000000..e69de29 diff --git a/hidden_changes.conf b/hidden_changes.conf new file mode 100644 index 0000000..3d976d2 --- /dev/null +++ b/hidden_changes.conf @@ -0,0 +1 @@ +.utmp diff --git a/ignore.conf b/ignore.conf new file mode 100644 index 0000000..8a58bbe --- /dev/null +++ b/ignore.conf @@ -0,0 +1,62 @@ +Library +library +Temp +temp +Obj +obj +Build +build +Builds +builds +UserSettings +usersettings +MemoryCaptures +memorycaptures +Logs +logs +**/Assets/AssetStoreTools +**/assets/assetstoretools +/Assets/Plugins/PlasticSCM* +/assets/plugins/PlasticSCM* +*.private +*.private.meta +^*.private.[0-9]+$ +^*.private.[0-9]+.meta$ +.vs +.vscode +.idea +.gradle +.utmp +ExportedObj +.consulo +*.csproj +*.unityproj +*.sln +*.suo +*.tmp +*.user +*.userprefs +*.pidb +*.booproj +*.svd +*.pdb +*.mdb +*.opendb +*.VC.db +*.pidb.meta +*.pdb.meta +*.mdb.meta +sysinfo.txt +crashlytics-build.properties +*.apk +*.aab +*.app +*.unitypackage +~UnityDirMonSyncFile~* +**/Assets/AddressableAssetsData/*/*.bin* +**/assets/addressableassetsdata/*/*.bin* +**/Assets/StreamingAssets/aa.meta +**/assets/streamingassets/*/aa/* +.DS_Store* +Thumbs.db +Desktop.ini